diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 559737f..60213d6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,7 +4,7 @@ on: push: branches: - public-server - - api8 + - api9 jobs: run_server_binary: @@ -14,7 +14,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.12' + python-version: '3.13' - name: Set execute permissions for wrapper run: chmod +x ./bombsquad_server @@ -32,7 +32,7 @@ jobs: if grep -E "Exception|RuntimeError" server-output.log; then echo "Error message found. Check server-output.log for details." exit 1 - elif ! grep -q "entering server-mode" server-output.log; then + elif ! grep -q "Server started" server-output.log; then echo "Success message not found in server's output." exit 1 fi diff --git a/README.md b/README.md index 5a3ca20..55fca3f 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # Bombsquad-Ballistica-Modded-Server -Modded server scripts to host ballistica (Bombsquad) server. Running on BS1.7.37 +Modded server scripts to host ballistica (BombSquad) server. Running on BS1.7.41 (API 9) `` -Migrated from API 7 TO API 8 , this might be unstable and missing some features. Use API 7 from this tag +Migrated from API 7 TO API 9 , this might be unstable and missing some features. Use API 7 from this tag `` [API7 ](https://github.com/imayushsaini/Bombsquad-Ballistica-Modded-Server/releases/tag/1.7.26) @@ -11,16 +11,16 @@ Migrated from API 7 TO API 8 , this might be unstable and missing some features. - Basic knowledge of Linux - A VPS (e.g. [Amazon Web Services](https://aws.amazon.com/), [Microsoft Azure](https://portal.azure.com/)) - Any Linux distribution. - - It is recommended to use Ubuntu. -- Python 3.10 + - It is recommended to use Ubuntu (minimum Ubuntu 22). +- Python 3.13 - 1 GB free Memory (Recommended 2 GB) ## Getting Started This assumes you are on Ubuntu or an Ubuntu based distribution. -Update and install `software-properties-common` +Install `software-properties-common` ``` -sudo apt update; sudo apt install software-properties-common -y +sudo apt install software-properties-common -y ``` Add python Deadsnakes PPA ``` @@ -30,13 +30,17 @@ Install Python 3.12 ``` sudo apt install python3-pip python3.12-dev python3.12-venv ``` +Update installed and existing packages +``` +sudo apt update && sudo apt upgrade +``` Create a tmux session. ``` tmux new -s 43210 ``` Download server files. ``` -git clone https://github.com/imayushsaini/Bombsquad-Ballistica-Modded-Server +git clone --depth=1 https://github.com/imayushsaini/Bombsquad-Ballistica-Modded-Server cd Bombsquad-Ballistica-Modded-Server ``` Now edit config.yaml in root dir change server name, port, admins, playlist, team name etc.. @@ -44,6 +48,7 @@ Making the server files executable. ``` chmod 777 bombsquad_server chmod 777 dist/bombsquad_headless +chmod 777 dist/bombsquad_headless_aarch64 ``` Starting the server ``` @@ -85,7 +90,7 @@ Here you can ban players, mute them, or disable their kick votes. - Allow server owners to join even when server is full by looking owner IP address which was used earlier(don't join by queue). - Auto kick fake accounts (unsigned/not verified by master server). - Auto enable/disable public queue when server is full. -- Auto night mode . +- Auto night mode. - Transparent Kickvote , can see who started kick vote for whom. - Kickvote msg to chat/screen , can choose to show kickvote start msg either as screen message or chat message. - Players IP Address and Device UUID tracking and banning. diff --git a/bombsquad_server b/bombsquad_server index 633bf89..c82f94d 100644 --- a/bombsquad_server +++ b/bombsquad_server @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.12 +#!/usr/bin/env python3.13 # Released under the MIT License. See LICENSE for details. # # pylint: disable=too-many-lines @@ -548,12 +548,14 @@ class ServerManagerApp: ) return except Exception as exc: - + json_path = os.path.abspath( + os.path.join(os.path.dirname(__file__), 'config.json') + ) print(f'{Clr.RED}Error loading config file:\n{exc}.{Clr.RST}', flush=True) - with open(self._ba_root_path + "/mods/defaults/config.toml", "r") as infile: + with open(self._ba_root_path + "/mods/defaults/config.json", "r") as infile: default_file = infile.read() - with open(self._config_path, "w") as outfile: + with open(json_path, "w") as outfile: outfile.write(default_file) print("config reset done") diff --git a/config.json b/config.json new file mode 100644 index 0000000..3c0dea9 --- /dev/null +++ b/config.json @@ -0,0 +1,44 @@ +{ + "party_name":"BombSquad Community Server", + "party_is_public":true, + "authenticate_clients":true, + "admins":[ + "pb-yOuRAccOuNtIdHErE", + "pb-aNdMayBeAnotherHeRE" + ], + "enable_default_kick_voting":true, + "port":43210, + "max_party_size":6, + "session_max_players_override":8, + "session_type":"ffa", + "playlist_code":12345, + "playlist_shuffle":true, + "auto_balance_teams":true, + "enable_telnet":false, + "teams_series_length":7, + "ffa_series_length":24, + "stats_url":"https://discord.gg/ucyaesh", + "clean_exit_minutes":60, + "unclean_exit_minutes":90, + "idle_exit_minutes":20, + "show_tutorial":false, + "team_names":[ + "ladoo", + "barfi" + ], + "team_colors":[ + [ + 0.8, + 0.0, + 0.6 + ], + [ + 0, + 1, + 0.8 + ] + ], + "enable_queue":true, + "protocol_version":35, + "player_rejoin_cooldown":10.0 +} \ No newline at end of file diff --git a/config.toml b/config.toml deleted file mode 100644 index a64cdc3..0000000 --- a/config.toml +++ /dev/null @@ -1,168 +0,0 @@ -# To configure your server, create a config.toml file in the same directory -# as the ballisticakit_server script. The config_template.toml file can be -# copied or renamed as a convenient starting point. - -# Uncomment any of these values to override defaults. - -# Name of our server in the public parties list. -party_name = "BombSquad Community Server" - -# If true, your party will show up in the global public party list -# Otherwise it will still be joinable via LAN or connecting by IP -# address. -#party_is_public = true - -# If true, all connecting clients will be authenticated through the -# master server to screen for fake account info. Generally this -# should always be enabled unless you are hosting on a LAN with no -# internet connection. -#authenticate_clients = true - -# IDs of server admins. Server admins are not kickable through the default -# kick vote system and they are able to kick players without a vote. To get -# your account id, enter 'getaccountid' in settings->advanced->enter-code. -admins = ["pb-yOuRAccOuNtIdHErE", "pb-aNdMayBeAnotherHeRE"] - -# Whether the default kick-voting system is enabled. -#enable_default_kick_voting = true - -# To be included in the public server list, your server MUST be -# accessible via an ipv4 address. By default, the master server will -# try to use the address your server contacts it from, but this may -# be an ipv6 address these days so you may need to provide an ipv4 -# address explicitly. -#public_ipv4_address = "123.123.123.123" - -# You can optionally provide an ipv6 address for your server for the -# public server list. Unlike ipv4, a server is not required to have -# an ipv6 address to appear in the list, but is still good to -# provide when available since more and more devices are using ipv6 -# these days. Your server's ipv6 address will be autodetected if -# your server uses ipv6 when communicating with the master server. You -# can pass an empty string here to explicitly disable the ipv6 -# address. -#public_ipv6_address = "123A::A123:23A1:A312:12A3:A213:2A13" - -# UDP port to host on. Change this to work around firewalls or run -# multiple servers on one machine. -# -# 43210 is the default and the only port that will show up in the -# LAN browser tab. -#port = 43210 - -# Max devices in the party. Note that this does *NOT* mean max -# players. Any device in the party can have more than one player on -# it if they have multiple controllers. Also, this number currently -# includes the server so generally make it 1 bigger than you need. -#max_party_size = 6 - -# Max players that can join a session. If present this will override -# the session's preferred max_players. if a value below 0 is given -# player limit will be removed. -#session_max_players_override = 8 - -# Options here are 'ffa' (free-for-all), 'teams' and 'coop' -# (cooperative) This value is ignored if you supply a playlist_code -# (see below). -#session_type = "ffa" - -# Playlist-code for teams or free-for-all mode sessions. -# To host your own custom playlists, use the 'share' functionality in the -# playlist editor in the regular version of the game. -# This will give you a numeric code you can enter here to host that -# playlist. -playlist_code = 12345 - -# Alternately, you can embed playlist data here instead of using -# codes. Make sure to set session_type to the correct type for the -# data here. -#playlist_inline = [] - -# Whether to shuffle the playlist or play its games in designated -# order. -#playlist_shuffle = true - -# If true, keeps team sizes equal by disallowing joining the largest -# team (teams mode only). -#auto_balance_teams = true - -# The campaign used when in co-op session mode. Do -# print(ba.app.campaigns) to see available campaign names. -#coop_campaign = "Easy" - -# The level name within the campaign used in co-op session mode. For -# campaign name FOO, do print(ba.app.campaigns['FOO'].levels) to see -# available level names. -#coop_level = "Onslaught Training" - -# Whether to enable telnet access. -# -# IMPORTANT: This option is no longer available, as it was being -# used for exploits. Live access to the running server is still -# possible through the mgr.cmd() function in the server script. Run -# your server through tools such as 'screen' or 'tmux' and you can -# reconnect to it remotely over a secure ssh connection. -#enable_telnet = false - -# Series length in teams mode (7 == 'best-of-7' series; a team must -# get 4 wins) -teams_series_length = 7 - -# Points to win in free-for-all mode (Points are awarded per game based on -# performance) -ffa_series_length = 24 - -# If you have a custom stats webpage for your server, you can use -# this to provide a convenient in-game link to it in the -# server-browser alongside the server name. -# -# if ${ACCOUNT} is present in the string, it will be replaced by the -# currently-signed-in account's id. To fetch info about an account, -# your back-end server can use the following url: -# https://legacy.ballistica.net/accountquery?id=ACCOUNT_ID_HERE -stats_url = "https://discord.gg/ucyaesh" - -# If present, the server subprocess will attempt to gracefully exit -# after this amount of time. A graceful exit can occur at the end of -# a series or other opportune time. Server-managers set to -# auto-restart (the default) will then spin up a fresh subprocess. -# This mechanism can be useful to clear out any memory leaks or -# other accumulated bad state in the server subprocess. -#clean_exit_minutes = 60 - -# If present, the server subprocess will shut down immediately after -# this amount of time. This can be useful as a fallback for -# clean_exit_time. The server manager will then spin up a fresh -# server subprocess if auto-restart is enabled (the default). -#unclean_exit_minutes = 90 - -# If present, the server subprocess will shut down immediately if -# this amount of time passes with no activity from any players. The -# server manager will then spin up a fresh server subprocess if -# auto-restart is enabled (the default). -#idle_exit_minutes = 20 - -# Should the tutorial be shown at the beginning of games? -#show_tutorial = false - -# Team names (teams mode only). -team_names = ["ladoo", "barfi"] - -# Team colors (teams mode only). -team_colors = [[0.8, 0.0, 0.6], [0, 1, 0.8]] - -# Whether to enable the queue where players can line up before -# entering your server. Disabling this can be used as a workaround -# to deal with queue spamming attacks. -#enable_queue = true - -# Protocol version we host with. Currently the default is 33 which -# still allows older 1.4 game clients to connect. Explicitly setting -# to 35 no longer allows those clients but adds/fixes a few things -# such as making camera shake properly work in net games. -#protocol_version = 35 - -# How many seconds individual players from a given account must wait -# before rejoining the game. This can help suppress exploits -# involving leaving and rejoining or switching teams rapidly. -#player_rejoin_cooldown = 10.0 diff --git a/dist/ba_data/data/langdata.json b/dist/ba_data/data/langdata.json index c58711e..42862cf 100644 --- a/dist/ba_data/data/langdata.json +++ b/dist/ba_data/data/langdata.json @@ -3,6 +3,7 @@ "Arabic": "العربية", "Belarussian": "Беларуская", "Chinese": "简体中文", + "ChineseSimplified": "简体中文", "ChineseTraditional": "繁體中文", "Croatian": "Hrvatski", "Czech": "Čeština", @@ -21,14 +22,19 @@ "Japanese": "日本語", "Korean": "한국어", "Malay": "Melayu", - "Persian": "فارسی‎", + "Persian": "⁦فارسی‎", + "PirateSpeak": "Pirate Speak", "Polish": "Polski", "Portuguese": "Português", + "PortugueseBrazil": "Português - Brasil", + "PortuguesePortugal": "Português - Portugal", "Romanian": "Română", "Russian": "Русский", "Serbian": "Српски", "Slovak": "Slovenčina ", "Spanish": "Español", + "SpanishLatinAmerica": "Español - Latinoamerica", + "SpanishSpain": "Español - España", "Swedish": "Svenska", "Tamil": "தமிழ்", "Thai": "ภาษาไทย", @@ -38,19 +44,27 @@ "Vietnamese": "Tiếng Việt " }, "translation_contributors": [ + "!101Asulil", "!edMedic💊", + "!ggMustaGD1", + "!GummyBoiYT", "!nobal", "!ParkuristTurist!", + "!яебалфантуврот!", "\"9۝ÅℳЇℜρℜѺ۝ƬǀGΞЯ", "\"Unknown\"", + "!SlashByte (Mass)", "3alTemp (Temp)", "/in/dev/", + "09332509847", "0Globalsters", "1.4.139", + "10009did", "11", "123", "123123123", "1234abcdS", + "1Kirito", "1Platinumpatty", "1SpaZ", "228варенье", @@ -61,12 +75,15 @@ "4e6yre4ek", "5PH3X", "99", + "@bombsquad_mkhuhgjaj", "@sametsunal", + "[<>]", "_DraXX", "_Fami", "Omar a", "Bruno A.", "Abdullah A.S", + "A296", "aaalligator", "aadesh", "Aaron", @@ -75,9 +92,11 @@ "Abdo", "Abduh", "Abdul", + "Abdulaziz", "Abdulloh", "Abe", "Ahmed abed", + "Abhay", "abhi", "AbhinaY", "Gifasa abidjahsi", @@ -91,10 +110,12 @@ "Roman Abramov", "AC", "Achref", + "ACrazyPenguin", "adan", "Adeel (AdeZ {@adez_})", "Adel", - "Rio Adi", + "AdemYzz", + "Rio adi", "Rayhan Adiansyah", "Yonas Adiel", "admin", @@ -105,6 +126,7 @@ "Aely", "Aenigmus", "Aether", + "AFKNoName", "Afrizal", "Aga<3", "Carlos Mario Agamez", @@ -115,8 +137,9 @@ "ariyan ahir", "AHMAD", "Aufan Ahmad", - "Ahmed", + "ahmed", "ahmedzabara", + "Aikx", "Collin Ainge", "Ajnaz", "Akash", @@ -126,6 +149,7 @@ "Aki", "Abdullah Akkan", "Berk Akkaya", + "Akmuhammet", "AkVoN", "AKYG", "mohammed al-abri", @@ -135,7 +159,10 @@ "Anna Alanis", "Manuel Alanis", "alanjijuoo7fudu@gmail.com", + "alanjosue", + "alayoupy", "albertojesusvaldesdelrey@gmail.com", + "Albrtz", "Alej0hio", "Pedro Alejandro", "Gabrijel Aleksić", @@ -149,18 +176,20 @@ "Alexistb2904", "Alexyze", "Algene123456", + "Algerino", "Alguien_201", - "Ali", + "ali", "Mohamed ali", "Shadiq Ali", - "Alireza", + "Alievil1", + "alireza", "alirezaalidokht", "AliSh8787", "ALISSON", "Virgile Allard", "Allinol", "ahmed alomari", - "Alonso", + "alonso", "Alp", "Alpcik910", "Alper", @@ -178,11 +207,13 @@ "Kidane Amen-Allah", "Amin", "amin.ir", - "Amir", + "amir", + "amir0799@gmail.com", "amir22games", "amir234", "amir80sas", "AmirMahdi.D :P", + "Amirreza", "amirsaman050", "Amirul", "Ange Kevin Amlaman", @@ -214,6 +245,7 @@ "krish angad", "Krishna D Angad", "vân anh", + "ANILBABATRPRO", "Aniol", "Daniel Felipe Silva dos Anjos", "Anmol", @@ -222,15 +254,18 @@ "Antonio", "Antoniom", "Lucas Antunes", + "AOMAD1987", "wassim aoufi", "apis", "Sagar April", + "AquaQw11", "Fernando Araise", "arda", "Hellmann Arias", "Muhammad Arief", "Arihant", "Arimaru", + "Arimo", "Arin", "arjanex", "Armando", @@ -241,6 +276,7 @@ "Artem", "Valentino Artizzu", "Arxyma", + "Ashes", "Ashik", "Ashish", "AskarBink", @@ -250,16 +286,19 @@ "Atalanta", "Atilla", "Atom", + "Attila", "Audacious7214", "Aufaghifari", + "Aulia", "Ausiàs", "autismo", "Autoskip", "Ryan Auxil", "Avamander", + "AvianJay", "Tel Aviv", "awase2020@gmail.com", - "sev alaslam Awd", + "sev alaslam awd", "Axel", "Aynursargi", "ayub", @@ -274,6 +313,7 @@ "Praveen Babu", "Badmoss", "Baechu", + "bag", "Balage8", "BalaguerM", "Peter Balind", @@ -285,7 +325,7 @@ "Ryan Bandura", "Bank", "Ibrahim Baraka", - "Kamil Barański", + "Kamil Barański (Limak09)", "Leonan Barcelos", "Bardiaghasedipour", "William Barnak", @@ -302,6 +342,8 @@ "Bato", "Florian Bauernfeind", "David BAUMANN", + "Bauti", + "bautielpro", "bayanus", "Wojtek Bałut", "Hi bbbbbbbbb", @@ -323,6 +365,7 @@ "BenVectorgames", "Benyamin", "benybrot96", + "BERAT01", "berkay", "Silvio Berlusconi", "Bernardiny", @@ -330,19 +373,25 @@ "Felix Bernhard", "Beroudzin", "Abhishek Bhardwaj", + "Bhxyu", + "Arthur Bianco", "Davide Bigotto", "bilibili@Medic药", "Bima", "Biytremni", "Blackcat2960", "BlackShadowQ", + "Bleed", "Daniel Block", "BlueBlur", + "bob", "bob bobber", + "Bobr", "Bombay De Bom", "BomBillo", "The Bomboler 💣", "bombsquad", + "El Furrito de BombSquad", "Wheezy bombsquad", "Bombsquadzueira", "Bomby", @@ -354,7 +403,7 @@ "Gianfranco Del Borrello", "Abel Borso", "Plasma Boson", - "Cristian Bote", + "Cristian Bote \"ZZAZZ\"", "Cristián Bote", "botris", "Botte", @@ -364,6 +413,7 @@ "Boxan", "Ali x boy", "boyhero7779", + "Hamza Baybars Boyraz", "Bořivoj", "Paul braga", "Sammy Braun", @@ -371,6 +421,7 @@ "Brendan", "Federico Brigante", "Anderson Brito", + "Nah bro", "Broi", "Brojas", "Brojasko", @@ -378,11 +429,12 @@ "Brunoazocar", "bsam", "Bsamhero", - "BSODPK", + "Bsodpk", "Bub", "Bubas", "Marvin Bublitz", "BudaCcm", + "Buddypall", "Vincent R. Buenaventura", "Buskebam", "Buto11", @@ -392,6 +444,7 @@ "Christoffer Bünner", "mvp aka cactus", "mvp aka legend (aka cactus) 🌵", + "Levi Cadimiel", "Cadødø", "Chris Laurence Cagoco", "Calet", @@ -403,21 +456,26 @@ "Fabio Cannavacciuolo", "CANOVER", "Fedrigo Canpanjoło", - "Carl", + "carl", "Yan Carlos", "CarlosE.", "mark Dave a carposo", "Fabricio de Carvalho", "Joshua Castañeda", "Lisandro Castellanos", + "Conroy Cat 2011", "Catjuanda05", "CatMax", + "Cattest", "Arthur Cazes", + "Ceaser", "CerdoGordo", "Ceren", "cflagos", + "cgaming", "chang", "Charlie", + "Pradip Chaudhari", "kalpesh chauhan", "chausony", "CheesySquad", @@ -427,6 +485,7 @@ "Vadim Choi", "Chris71/Chris71x", "Hans Christensen", + "Christian", "Attilio Cianci", "Kajus Cibulskis", "Mateusz Ciochoń", @@ -435,6 +494,7 @@ "Jerome Collet", "probably my. com", "Comrade", + "Blaze Corderz", "Stefano Corona", "Corrolot", "Francisco Law Cortez", @@ -446,9 +506,10 @@ "COVER", "crac", "CrazyBear", + "CRAZYCHEF", "Frederick Cretton", "Crispiymini", - "Crisroco10", + "crisroco10", "Cristhian", "Cristian", "Cristóbal", @@ -457,23 +518,26 @@ "Prashanth CrossFire", "Cryfter", "cuddles98", + "El famoso cukito", "cukomus", "CYCL0YT", "Filipec CZ", "D", "D-Mega", "Dada", + "daG0AT", "Daichi", "Daivaras", "Dajo6596YT", "Dakkat", "Mikkel Damgaard", - "DanAlfred", + "DanAlfred (SUBC1PYZH)", "Danco", "Dani", "Daniel", "Daniel3505", "DaniesAlex007", + "Danilix365", "Daniozo", "Dančo", "Iman Darius", @@ -486,12 +550,15 @@ "David", "Davide", "DavidPlayzLol", - "DavidPlayzLoll", + "Davidplayzloll", "DaymanLP", "DD87", "Ddávid", "Die or Dead", "Привет от детей DeadLine", + "DEATH", + "DEATHSTU/DJSTU", + "DEBANNER", "deepjith", "DEFENDER", "Defiant", @@ -506,12 +573,15 @@ "Ingegner Devecchi", "Dr : developer", "df", + "DFгульСпачибо", "Santanu Dhar", "DHRUVIL", "DIAbli", + "Diablo", "Guilherme Dias", "Diase7en", "ferbie Dicen", + "Diego", "Diego788", "DiegoGD", "DiGGDaGG", @@ -522,7 +592,9 @@ "Diprone", "djaber djafer", "Fadhil djibran", + "DJSTU", "Alexis Dk", + "dkod9vZ", "DKua", "dlw", "DMarci", @@ -536,8 +608,10 @@ "Gerardo Doro", "DottorMorte", "Doubleknig", + "Atakan Doğrul", "Dr", "Dragomir", + "Dragon", "Dreaming", "Drellsan", "DrGhast", @@ -550,27 +624,39 @@ "Dustin", "Paul Duvernay", "Emir İslam Dündar", + "Beny (Goofy e-mail)", "E.R.A.L", "Ebutahapro07tr", + "Ed89631", "Eder", + "Vishal from Eric's language edit", + "EditYusuFD", + "Edrees", "Edson", "Glen Edwards", "Amr Wassiem Eessa", + "Eeveelution", "ef", "EgorZH", "Ali ehs", + "eightyfoahh", "Eiva", "EK", "EKFH", "avatar por reina del carnaval en la que te lo mando el", "Rezk ElAdawy", + "ElAlienPVZ", + "Elbol19", "ElCatCaesar", + "ElCrashBndct173", + "ElDemon", "ElderLink", "elfree", "Elian", "Elmakyt", "ELMEX95", "Elsans320_YT", + "Mahmoud elshayeb", "Elskoser", "ElVolKo", "ali emad", @@ -590,8 +676,11 @@ "Enrico", "Entakos", "enzo", - "Era", - "Era0S", + "era", + "Bueno pero igual era", + "Era0S (Spazton)", + "EraOS", + "Erfan", "Eric-fan", "Erick", "Erik", @@ -599,23 +688,30 @@ "Jonas Ernst", "NO es", "Shayan Eskandari", - "Esmael", + "esmael", "Jose espinoza", "ethanmigueltrinidad", + "Eugen", "ExaYT", "Exelendary", "Abdullatif Badinjki ExPeRt 1420", "ExplosiveDinosaurs.com", "EXTENDOO", "Eyder", + "Eymen", + "F15fahd_lol", "fa9oly9", "Fabian", "Luca Facchinetti", "Facundo", "Jakub Fafek", + "Fahd", "Syed Fahrin (Mr.Lemoyne)", "faizal.faiz.ms@gmail.com", "Fakih", + "A BombSquad Fan", + "Eric I'm your number 1 fan", + "fancy", "FanDolz.", "Faqih", "Muhammad Faqih ''None''", @@ -637,6 +733,7 @@ "Fenyx", "Fernando", "David Fernández", + "Rashell Fernández", "FerranC", "FertileChannelHD", "FightBiscuit", @@ -660,12 +757,14 @@ "FREÂK", "Andrey Fridholm", "FriskTheHuman303", + "FRM1235", "Froshlee14", "FrostyXD", "FuckIndoDick", "Lukas Funk", "Gustavo FunnyGuard28", "fyroove", + "fyrooveCZ", "Erick G", "Roberto G", "George G.", @@ -695,10 +794,12 @@ "Gerry", "GG (9.2)", "ggMustaGD0", + "! ggMustaGD1", "Mohammad gh", "Onkar Ghagarum", "GHAIS", "Omar Ghali", + "Ghost 👿", "GhOsT_St3p", "GhostGamer", "Gian", @@ -706,12 +807,14 @@ "Gianluca11", "Aldi gibran", "Aidan Gil", + "Jorge Giménez", "Noe Marley Ginting", "Giovalli99", "Devecchi Giovanni", "DEVEGGHI GIOVANNI", "Giovanny", "Dc superhero girl", + "giuppy", "Givij", "Gleb", "Glu10free", @@ -720,29 +823,34 @@ "gman_4815", "God丶烛龙", "Colin Goeieman", + "golmanx", "박준서(PJS GoodNews)", "gowthamvelkarthik.k", "Nicola Grassi", "Dario Greggio", "Gerrit Grobler", "Oliver Grosskloss", + "gtex", + "gtexAndSoby", "Alexis Guijarro", "Guilherme", "Victor Guillemot", "Guillermo", + "GummyBoiYT", "SHOBHIT GUPTA", "Gurad", "Max Guskov", "Gustavo", "Rachmat Gusti", "Aditya Gwala", - "Tódor Gábor", + "Tódor Gábor (Joshua)", "Tymoteusz Górski", "Thomas Günther", "Hamza Emin GÜRLER", "Paşa Güven", "Muhammad H", "H.J.N", + "h4Nk1oZz", "Haasaani", "Hack", "HackPlayer697", @@ -751,11 +859,14 @@ "Haidar", "Joud haidar", "جود حيدر/joud haidar", + "Hajmoein", "Halox", "HamCam1015", "hamed", + "Alhasan Hamoud/Alretrox ❤️‍🔥🖤", "Zulfikar Hanif", "Happaphus", + "Franschieko Satya Haprabu", "Hariq", "harojan", "Harsh", @@ -778,34 +889,47 @@ "Christoffer Helmfridsson", "Hemra", "Julian Henkes", + "Henq", "henry", "Heraltes", "boy hero", "bsam hero", "herosteve22jajs", + "Charles hewitt", + "Heydeyl", + "HeyFang", "heymaxi", "HiImBrala", "Ayra Hikari", "Hiking", "Himesh", + "Himo", + "Himo381", "Yazan Hinnawi", "Daffaa Hisyaam", "Trung Hiếu", + "hbi78889999gj b hj", + "hj5700", "Nabil Hm", "Nguyen Dang Hieu Hoa", "Minh Hoang", + "Phan Le Minh Hoang", "Robin Hofmann", "hola", "holasoycuyo", "Sebasian Varela Holguin", "Holystone", "Jeremy Horbul", - "Hosein", + "hosein", "hoseinا", "HOSSAM", + "Ahmed Hossam", "Phan Lê Minh Hoàng", + "Hrach", + "Hubert", "Jorge Isaac Huertero", "Hussain", + "Hassan Samir Hussain", "Umair Hussain", "Hussam", "Huy", @@ -817,12 +941,15 @@ "iBearzGaming", "Iboyindyza", "Ibrahim", + "ForestORIG из IcE", "Iddrejiot", "idiomat738", "Ignacio", "IgnUp21", "Igomen15", "Igor", + "Ihan", + "Ihan7", "IL_SERGIO", "!YamGila (Syed Ilham)", "Iliya_bomB", @@ -840,35 +967,44 @@ "indieGEARgames", "Darkness indo", "Indohuman", + "Inicio", "IniSaya6666", "inkMedic", "inkMedic💊", "InvisibleDude", "Anestis Ioakimidis", "Dragomir Ioan", - "IorYou4600", + "IorYou4600 (V2)", "Isa", "IsaacStar ★", "Israelme03", "Tobias Dencker Israelsen", "Kegyes István", + "Fritz IT", "Itamar", "ivan", + "Ivanpinheiro", "iViietZ", "MOHD IZWAN", "J3zrel", "JaaJ", "Al jabbar", "Jacek", + "Jack", "Jack556", + "Jacob213", + "Jahnmi", "Jhon Jairo", "jakecato1602@gmail.com", "wahid jamaludin", "Jameszambrana", + "jamilgamer", "Tarun Jangra", "Aleksandar Janic", + "janobaez22", "Martin Jansson", "JasimGamer", + "Jasmine (kijiko)", "jason", "Javvaed", "Jbo", @@ -886,16 +1022,18 @@ "Jeulis", "Jewellbenj", "jgst2007@gmail.com", + "Jhon", "Jhoncat086@gmail.com", "Zhou Jianchu", "jimmy", + "JimmyYT", "Jiren", "jitues", "JJ", "JM", "Joan", "JoaoVitorBF", - "Joaquin", + "joaquin", "Lex Johannes", "John", "Ksteven john", @@ -903,6 +1041,7 @@ "Johnny", "Johnwick", "joke", + "jonas-bonas", "Jonatas", "Jonathan", "Jop", @@ -935,7 +1074,7 @@ "kalenk", "Adam Kalousek", "kalpesh", - "Kalyan", + "kalyan", "Kamal", "Aiman Aryan Kamarajan", "Kamil (Limak09)", @@ -949,13 +1088,18 @@ "Daniel Karami", "Karim", "Karlimero", + "shemas - Ebrahim Karram", "Kasra", + "katon", + "Kau5hik", + "Kaunyt", "Kaushik", "KawaiiON", "kazoo081", "kazooicek", "KD", "Kejuxs", + "Mahmut Keleşyılmaz", "Mani kelidari", "Kelly", "Kelmine", @@ -970,21 +1114,26 @@ "khalio", "$RICO$ KhevenMito", "Khwezi", + "Kian", + "kiasha", "kibro", "Kicken07", "Joop Kiefte", "killer", "killer313", + "Killerfox...Nima", "King", "KingCreeps", "kinnie", "kira", "kirill", "KirillMasich", + "Piotr Kiryk", "Kittycat41", "Dominic Klein", "Andrew Kmitto", "Philipp Koch", + "Koentro", "Kolmat", "komasio", "komasio71", @@ -1039,12 +1188,16 @@ "이지민 (Ji-Min Lee)", "legended", "Mick Lemmens", + "Lemon4ik", "Leo", "Mr. LeoLeo", "Leonid", + "Lepixhd", "Lester", + "Letrixito", "Szajkajkó Levente", "Szajkajó Levente", + "Levi (Ashes)", "Johannes Lex", "Gastón Lezcano", "Shuaibing Li", @@ -1067,6 +1220,7 @@ "LiteBalt", "LittleNyanCat", "Juunhao Liu", + "LivezynBR", "Lixar", "Lizz", "Lizzetc", @@ -1074,6 +1228,7 @@ "Lobinhofs", "Loex", "Loko", + "LoliPopa", "Longkencok", "longmouses", "杰瑞 longmouses", @@ -1086,6 +1241,7 @@ "mian louw", "69 lover", "Jordan Vega Loza", + "lshndnglnt", "Chenging Lu", "Chengming Lu", "João Lucas", @@ -1094,7 +1250,7 @@ "Ludicrouswizard", "satrio ludji", "Ludovico", - "Luis", + "Luis (GalaxyM4)", "Jose Luis", "Luis(GalaxtM4)", "luislinares", @@ -1103,10 +1259,12 @@ "Luka", "Luke", "Luke994", + "lukerloker", "Lukman", "Hermanni Luosujärvi", "Lurã", "Luthy", + "Luy", "Luytaris", "Geogre Lyu", "Be aware that m", @@ -1120,9 +1278,10 @@ "MadNightr", "Mads Beier Madsen", "Magomed", + "Magorik", "Mahan", "Ondřej Mahdalík", - "Mahdi", + "mahdi", "mahdimahabadi", "Mose saef maher", "Mahmoud", @@ -1136,21 +1295,25 @@ "Amirali Malekshahi", "EMILIO MALQUIN", "MAMAD", + "mamali", "Mamax400", "Wagdy mamdouh", + "mandarin", "Mani", "Manimutharu", "Manmath", "ManmathTheGreat", "Ahmed Mansy", "Manu", + "Leonardo Manuel", "Mapk58", + "Van Mapper", "Marcel", "Marchella", "Marcin", "Marco", "Marcolino", - "Filip Marek", + "filip marek", "Marcin Marek", "Margarrom", "Mariel", @@ -1159,6 +1322,8 @@ "Stefan Markovic", "Marouene", "Marošsko", + "MarshMallon", + "Marshmellon", "martin", "Philip Martin", "MartinZG007", @@ -1170,28 +1335,41 @@ "Mathias", "Mathieu", "matias", + "Matias26157", + "MatiasCW (MatiasMGz)", + "MatiasMG", + "MatiasMGz", + "MatiasOMG", + "MatiasOMGz", "matj1", "Eduardo de Matos", "Matteo", "Matthias", "Nepote Mattia", + "MatzE", "Ihsan Maulana ( @ihsanm27)", "Muhammad Akbar Maulana", "MAVIS", "Mavook", + "MaximohFox", "MazeMan111", "Federico Mazzone", "Andrea Mazzucchelli", + "McFer256", + "MCW", "Medic", "Medic别闹我有药", "Medic药", "German Medin", "Martin Medina", "Mehret Mehanzel", + "Mobin Mehdizadeh", "Mehmet", "Mehrdad", "Kevin Mejía", "Mell", + "Melt1ngAis", + "Meraj", "MereCrack", "Merengue", "Mert", @@ -1205,10 +1383,13 @@ "Miguelterrazas123", "Mikael", "mike", + "MIKEFOKING", + "Mikserol", "Milaner", "Milk3n", "Fabio Milocco", "mimis", + "mimomandi", "Mina", "minh123456789thcsvk", "MinhAn19203", @@ -1223,11 +1404,14 @@ "MKG", "mobin", "Mobina", + "Mochosquad", + "Haj moein", "Moh", "Mohamadali", "Mohamadamin", "Mohamed", - "Mohammad", + "seif mohamed", + "mohammad", "Mohammad.cur", "Mohammad11dembele", "MOHAMMADERFAN", @@ -1236,25 +1420,36 @@ "Mohammed", "MohammedTalal1st", "1n Mohhaamad", + "Ali Mohseni", "Shaygan mohsenian", "Moin", + "momo", + "pOpsi mOn", + "Popsie (or pOpsi mOn)", + "Ahmed this money", "MONIRIE", + "Charles Andrew Montalbo", "carlos montalvo", "Ederson Moraes", "Eduardo Moreira", "Danteo Moriarty", "Kabir morya", + "Morybuzz", "Moses", + "Cauã Moura", "Iasonasss Mourelatos", "mr", "mr.Dark", "Mr.Smoothy", "MR0000000001", + "mradio", + "mrbebra333", "MrDaniel715", "MrGlu10free", "Mrmaxmeier", "MrNexis", "MrS0meone", + "MrSaster2024", "Ivan Ms", "MSampic", "Msta", @@ -1263,6 +1458,8 @@ "Muhammed Muhsin", "MujtabaFR", "Muni", + "Munizxn", + "Mush", "mustardb", "Hisham Musthafa", "Mohammed Musthafa", @@ -1276,9 +1473,11 @@ "Samuel Mörling", "Luca Müller", "Nabil", - "Nacho", + "Omar Nabil", + "nacho", "Nagaarjun(pongal)", "Nahuelgomez1607", + "Your name", "Nasser", "Natasja", "Nathan", @@ -1291,11 +1490,12 @@ "nazroy", "Ndrio°o", "NecroMeerkat", + "nectio", "Neel", "Nel", "Nemeil", "E0/Era0S/Spazton neo", - "Era (Spazton neo)", + "Era (Spazton neo) (e)", "Era0S (Spazton neo)", "Era0S/Spazton neo/E0", "Mattia Nepote", @@ -1314,6 +1514,7 @@ "Niels", "Frederik Nielsen", "Nifujini", + "Lorenzo (aka night_skiesRBLX)", "Nikali2007", "NikeOvSky", "Nima", @@ -1321,6 +1522,7 @@ "طارق محمد رضا سعيد NinjaStarXD", "nino", "Nintendero65", + "Nithish (Rookie)", "Nizril", "Nnubes256", "Bu nny", @@ -1329,6 +1531,7 @@ "NofaseCZ", "Max Noisa", "Noisb", + "NoNameA14171274.", "NoNameC3698241", "None", "NOOBPEDAR", @@ -1337,18 +1540,23 @@ "noorjandle1", "Petter Nordlander", "Nose", + "NoTag", "NotBrojasAgain", "NotDiegoGD", "Ntinakos555", "NullWizard", "Dhimas Wildan Nz", "*** Adel NZ. ***", + "O.T.S.K.", + "Obada55555", "Odhalit", + "TORK OGHLAN", "Ognjen", + "ogre19", "okko", "Bastián Olea", "Nikita Oleshko", - "Omar", + "omar", "OmarBv", "omgxd5", "On3GaMs", @@ -1360,9 +1568,11 @@ "Oscar", "Osmanlı2002", "Osmanys", + "Ossd", "otd", "oualiabdou", "OyUnBoZaN (NEMUTLUTURKUMDİYENE)", + "Dmitry P.", "pablo", "pack", "PALASH", @@ -1372,6 +1582,7 @@ "PangpondTH", "PanKonKezo", "PantheRoP", + "Pappoliver72", "ParadoxPlayz", "Gavin Park", "Parkurist", @@ -1379,7 +1590,7 @@ "Pastis69", "Sagar patil", "pato", - "Patrick", + "patrick", "paulo", "Dominik Pavešić", "BARLAS PAVLOS-IASON", @@ -1394,6 +1605,7 @@ "PC432736", "PC607666", "PC912334", + "PC965064", "PC979802", "pebikristia", "Pedro", @@ -1406,10 +1618,11 @@ "Jura Perić", "Panumas Perkpin", "Pero", + "persian", "Khoi Pete", "Kacper Petryczko", "pett", - "Petulakulina", + "petulakulina", "Pez", "PGIGM", "Đào Xuân Phi", @@ -1422,6 +1635,7 @@ "Pinchidino", "pinguino", "Danilo \"Logan\" Pirrone", + "heorhii pitukh", "PivotStickfigure12", "Pixelcube", "PixelStudio", @@ -1454,13 +1668,18 @@ "psychatrickivi12", "pszlklismo", "Pulidomedia.com", + "PUNKBR", "haris purnama", "Deva Puspita", "GABRIEL PUTRICK", "Bodnár Péter", + "P💊llTek", + "药丸科技 | P💊llTek.cn", "Qellow", + "qoweawi", "Gangler Quentin", "Quezz3x", + "Qwerty15", "Qwsa", "QŴE", "Anbarasan R", @@ -1468,6 +1687,7 @@ "Felo Raafat", "Tim Rabatr", "Vinni The Rabbit", + "rabbitboom", "Radfrom", "RadicalGamer", "Radicool", @@ -1475,6 +1695,7 @@ "raghul", "khaled rahma", "Rayhan Rahmats", + "RaichuNc2008", "Raiyan", "Babang Raja", "Ralfreengz", @@ -1488,6 +1709,7 @@ "Ramzy", "Randlator", "Random_artz__", + "Ranera <3", "Rares", "rashid", "Yudha Febri Rastuama", @@ -1507,6 +1729,7 @@ "REDEJCR", "redyan", "De'Viren Reed", + "Ali Rehab", "Cornelius Reimann", "releaseHUN", "renas", @@ -1529,11 +1752,13 @@ "RieJoemar", "RiLa", "Rings3467", + "Ringsoul", "Jeroen Rinzema", "RioAdir", "Max Rios", "Rio枫叶", "RiPe16", + "riphoopfun", "Rishabh", "Rivki", "rizaldy", @@ -1556,11 +1781,13 @@ "Mario Roveda", "Roy", "Rubanen", - "Kaj Rumpff", + "Joris de Ruiter", + "kaj rumpff", "Dosta Rumson", "Hong Ruoyong", "Philip Ruppert", "Language Russia", + "RussianLover2008", "Ryan", "LiÇViN:Cviatkoú Kanstançin Rygoravič", "Ricky Joe S.Flores", @@ -1569,17 +1796,26 @@ "sahel", "Abdullah Saim", "Saints557", + "sakhayan741", "Audinta Sakti", + "Saldanha", + "saleh", "Bassam bu salh", "Bsam bu salh", "M. Rizki Agus Salim", "Salted", "Matteo Salvini", "Salvo04", + "SamComeli", + "Ali Sameer", "Samen", + "samin", "Samir", + "Sakude sammeel", "Samsep10l", + "Samuel", "San", + "Sanou", "SaNt0RiNiKits577YT", "Guilherme Santana", "Santiago", @@ -1594,15 +1830,20 @@ "sattar", "Saverio", "Jhon Rodel Sayo", + "Daniel Schniepp", "Christiaan Schriel", "Hendrik Schur", + "Scratchyli", + "SDIP_FGV", "SEBASTIAN2059", "Semen", "semethers", + "SENSEI", "JIN SEOWOO", "Mihai Serbanica", "Daniel Balam Cabrera Serrano", "Yefta Aditya Setiawan", + "Seyed", "Sg", "sgx", "Black Shadow", @@ -1610,7 +1851,9 @@ "shafay", "Manan Shah", "Fares Shaheen", + "Shahin", "shakesm", + "Mester Shams 🇮🇷", "Sharvesh", "Nalam Shashwath", "A sheep", @@ -1620,19 +1863,26 @@ "ShockedGaming", "Shogun", "Shayan Shokry", + "Alonso Sierra", "Dominik Sikora", + "Siltal", + "Erick Silva", "Leonardo Henrique da Silva", "Lucas Silva", "Sebastian Silva", "silver_volt4", "Aviv Simel", "Simotoring", + "SIRTACOOOOO", "Pawan Singh sisodiya", + "skibidibambam", "Skick", "SkillPro", "sks", "Max Sky", + "Slavik❤", "SlayTaniK", + "slcat", "Igor Slobodchuk", "Rasim Smaili", "Nicola Smaniotto", @@ -1647,6 +1897,8 @@ "SoK", "SoldierBS", "Unnamed Solicitude", + "Some1", + "SorenaPV", "SPT Sosat", "Soto", "spacechase26", @@ -1658,6 +1910,7 @@ "Spooc", "Spy", "SqdDoom", + "Sreejith", "sss", "ST", "Danny Stalman", @@ -1679,16 +1932,20 @@ "Stratex", "SYED EPIC STUDIOS", "SUBC1PYZH", + "suhail", "sun.4810", "Samet Sunal", "sundar", "Suprcat", "Indo sus", - "Sven", + "sven", "Shannon Sy", "syaifudib", "Daniel Sykora", + "Sylveon", + "SYSTEM-D-WIN", "Syumza", + "syxznb", "Sz™", "Jorge Luis Sánchez", "Kevin Nicola Ríos Sánchez", @@ -1697,6 +1954,7 @@ "Arung Taftazani", "taha", "Rasim Eren TAHMAZ", + "Tails", "Juancho Talarga", "Emre Talha(Alienus)", "talopl123", @@ -1704,6 +1962,7 @@ "Kaustubh Tando", "Kaustubh Tandon", "Tania", + "tank-sman", "Dmytro Tarasenko", "Tarma", "tarun", @@ -1735,8 +1994,11 @@ "thejoker190101", "TheLLage", "TheMikirog", + "Thenoroozi", + "thenoteasy", "Theo", "Thiago_TRZ", + "Thiosinaine", "ThirdStar248", "ThisIsBad", "Trevon Thrasher", @@ -1744,6 +2006,7 @@ "Cristian Ticu", "Robert Tieber", "TieDan", + "Tigas", "TIGEE", "Tim", "Tingis2", @@ -1751,27 +2014,31 @@ "Nishant Tiwari", "tjkffndeupwfbkh", "Juraj Tlach", + "TM-DoDo", "Toloche", "Tom", "Juan Pablo Montoya Tomalá", "Tomasekvata", "TomasNoobCz", + "Tommaso", "tomo", "tongtong", "Top 999", "Tory", - "TozeLeal", + "tozeleal", "Trung Hieu Le Tran", "Small Translation", "Translator", - "TrialTemp", + "TrialTemp (3alTemp)", "Trivago", "El Trolax", + "truong", "Quang Truøng", "tseringlama", "Konstantin Tsvetkov", "Kontantin Tsvetkov", "Tudikk", + "José Tumpay", "Romioza TV", "Jan Tymll", "Zacker Tz", @@ -1779,17 +2046,26 @@ "Buğra Türksal", "uDinnoo", "Cristian Ugalde", + "uhhihhycoo", "Atchy-Dalama--Ancelly Ulrich", "Syed Umar", + "Sylveon X Umbreon", + "Unarium", "Unknown", "Unlette659", + "uoniak", + "Cristopher Uriel", "Uros", "clarins usap", + "Usishshsis", "utyrrwq", "Uzinerz", + "Uładzisłaŭ", "Shohrux V", "Vader", + "VadimChoi", "Valentin", + "Valentino", "Valkan1975", "Ante Vekić", "Malte van het Veld", @@ -1799,18 +2075,24 @@ "Deepanshu Verma", "Jop Vernooij", "Veroyatnolevlev", + "Veve", "Via", "Vickey", "Victor", "paulo victor", + "VieAFKNoName", "Vigosl", "vijay", "vinicius", "Robin Vinith", "vinoth", "Vishal", + "VISHUUU", + "Vishuuu/Vishal3308", "Vitorinox", + "Vixyd_MamaTvoya", "VoidNumberZero", + "Vovchik", "Voxel", "Voxel25", "VTOR", @@ -1824,12 +2106,14 @@ "Shaiful Nezan Bin Abdul Wahid", "wahyu", "Vaibhav Wakchaure", + "Wakefield", "Simon Wang", "Will Wang", "WeanCZ", "Tilman Weber", "webparham", "Wesley", + "Whezzy", "whitipet", "wibi9424", "Wido2000", @@ -1840,36 +2124,50 @@ "wither", "Tobias Wohlfarth", "wojtekpolska", + "Wolf", "Doni Wolf", "Tommy Wong", "WonkaWoe", "Moury ji world", "worldbiomusic", + "wsdx233", "wsltshh", "Wurstkatze", "WurstSaft", "WynB", + "x7", "Xavier", "Francisco Xavier", "xbarix123897", "Peque XD", + "RompeCachetes XD", "Xem", + "Xetwy21", + "Xgyol", "Xizruh", "xxonx8", "Ajeet yadav", + "Taha yaghobi", "yahya", "Arda Yalın", "Yamir", "YannSonic", "Yantohrmnt401", + "Yarikent02", + "YarikMajorik", "Halil Yarkin", + "Yaromir", "Yaroslav (Spaz1)", + "YaroslavBu", "amr yasser", "Yatoku", + "Yeiberth", "YellowTractor", "YelowGlow", "Yasin YILMAZ", + "ykkaf", "Ymgfr", + "yo", "yoksoudraft", "Yones", "Kenneth Yoneyama", @@ -1879,10 +2177,11 @@ "ahmed youssef", "Yousuf", "Yovan182Sunbreaker", - "YRTKING", + "Yrtking", "All Star YT", "Dark Fgg5 YT", "Yudhis", + "Yugicchi", "yugo", "yullian", "YuriBombSquad", @@ -1907,8 +2206,10 @@ "zecharaiah", "ArShAm ZED", "Zeinab1391", + "Zen78905tyr", "Daniele Zennaro", "Zenotaiko", + "Zephyro", "zFliws", "zfuw668", "Alex Zhao", @@ -1923,10 +2224,15 @@ "Nagy Zoltán", "Lukáš Zounek", "ZOUZ", + "zPanxo", "ZpeedTube", + "Krivoy Zub", "Zwizard", + "zx4571", "|_Jenqa_|", "¥¥S.A.N.A¥", + "GURLER Çeviri", + "Éleftheros", "Danijel Ćelić", "Štěpán", "Cristian Țicu", @@ -1935,12 +2241,17 @@ "Яркин Абдулхалил", "Роман Абрамо", "Роман Абрамов", + "айтаана", "Андрей (Krays)", "Андрій", + "опять сахаян бахаян", + "сахаян бахаян", + "эмиэ сахаян бахаян", "Богдан", "опять Вильян", "Тот самый Вильян", "Влад", + "Віктор", "Даниил", "данил", "дибисяра", @@ -1950,12 +2261,16 @@ "Иван", "Юстин Иглин", "Игор", + "ИльяПро832", "Кирилл", + "саха тылыгар тылбаастаабыт киһи", "клаудкубес", "Климов", "Кирилл Климов", "Андрей Коваленко", "куатжан", + "сахаян лох", + "Марк", "Ваня Марков", "маталка", "Драган Милановић", @@ -1965,6 +2280,7 @@ "михаил", "boba (Бодік) доперекладав Укр мову", "Арсений Мостовщиков", + "ПашаСосиХуй", "Принцип", "Пук-пук пук-пук", "Пупсєль", @@ -1974,14 +2290,33 @@ "Рома", "Ромашка :3", "Кирилл Рябцев", + "ААААААА САХАЯН", + "айуу айа эмиэ сахаян", + "надоел уже этот сахаян", + "сахаян да сахаян", + "в смысле опять сахаян?", + "сахаян тугу да кынара суох", + "-конкретно сылайдым", + "сахаянтан мин конкретно сылайдым", + "ханнык дундук гугл переводчик туттубутуй?", + "ТыНяшкаЕслиЧитаешьЭто :>", + "улыbHuсь", "Ерасыл Фазылов (Paraxilius)", "ZEPT\"Александр Фартунов\"", + "ФОРЕСТ", + "Фортик", "!SW сосут мой член!", "Эмир", + "мин эмиэ", "Өмүрзаков Эрсултан", + "сахаян бүт эрэ", + "сахаян уоскуй эрэ", "Forton123 ютубер", + "Яромир", "Ярослав \"Noiseaholic\"", + "Б. Ярослав", "қуатжан", + "أيمن أبومايله", "اا", "احمدرضا", "احمد اسامه", @@ -1995,9 +2330,11 @@ "عبدالرحمن النجم", "امیرعلی", "اوتاكوDZ", + "ایرانی", "ایلی", "ایهان", "بساام", + "تستپط", "جود", "حسين حساني", "جود حيدر", @@ -2025,11 +2362,13 @@ "اللهم صل على محمد وآل محمد", "امیر محمد", "هادی مرادی", + "مملی", "سعید مهجوری", "مهدی", "سید احمد موسوی", "عادل ن.", "نریمان", + "آرشا نظری", "عادل نوروزی", "ه۶۹", "حسین وفایی‌فرد", @@ -2037,6 +2376,7 @@ "١٢٣٤٥", "٦٤٦٦٤٦٤٦", "علیرضا پودینه", + "۱وقحی.", "वेदाँश त्यागी", "லோகேஷ்", "അർഷഖ് ഹസ്സൻ", @@ -2044,6 +2384,7 @@ "แมวผงาด(JuniorMeowMeow)", "๖̶ζ͜͡zephyro", "ᗪ|乃|丂Я尺卂", + "₹alph‽", "✰ℭØØҜĬ£$✰", "JPnatu なつ", "クリーバー", @@ -2066,6 +2407,8 @@ "志夏。", "志夏君deron", "扎卡拉Zakara", + "月镜", + "杰瑞longmouses", "枫夜", "毛毛毛大毛", "炸弹朋友和Medic药", @@ -2073,6 +2416,7 @@ "盐焗汽水er", "神仙", "纳皮猪NapPig.com", + "药丸科技|PillTek.cn", "药药Medic", "蔚蓝枫叶", "陈星宇你就是歌姬吧", @@ -2098,7 +2442,9 @@ "일베저장소", "전감호", "BombsquadKorea 네이버 카페", + "F҉a҉d҉l҉i҉n҉e҉t҉", "Zona-BombSquad", + "‎༺Leͥgeͣnͫd༻", "CrazySquad", "Stazzy", "slida" diff --git a/dist/ba_data/data/languages/arabic.json b/dist/ba_data/data/languages/arabic.json index 685f195..f4d642b 100644 --- a/dist/ba_data/data/languages/arabic.json +++ b/dist/ba_data/data/languages/arabic.json @@ -1,13 +1,15 @@ { "accountSettingsWindow": { - "accountNameRules": "لا يمكن أن تحتوي أسماء الحسابات على رموز تعبيرية أو أحرف خاصة أخرى", + "accountNameRules": "اسماء الحسابات لا يمكن أن تحتوي على رموز تعبير، أو حروف خاصة", "accountProfileText": "معلومات اللاعبين", "accountsText": "حسابات", "achievementProgressText": "${TOTAL} من أصل ${COUNT} إنجازاتك: أنجزت", - "campaignProgressText": "تقدم الحملة [HARD]:${PROGRESS}", + "campaignProgressText": "تقدمك في المعسكر(في الوضع الصعب): ${PROGRESS}", "changeOncePerSeason": "يمكنك تغييره مرة واحدة في الموسم", "changeOncePerSeasonError": "يجب عليك الانتظار حتى الموسم القادم لتغيير هذا مجددا (${NUM} أيام )", + "createAnAccountText": "اصنع حساب", "customName": "الاسم المخصص", + "deleteAccountText": "حذف الحساب", "googlePlayGamesAccountSwitchText": "اذا اردت استخدام حساب غوغل بلاي اخر،\nقم بإستعمال تطبيق العاب غوغل بلاي لتحويله.", "linkAccountsEnterCodeText": "ادخل الرمز", "linkAccountsGenerateCodeText": "انشئ رمز", @@ -25,6 +27,7 @@ "setAccountNameDesc": "اختر اسم لحسابك\nيمكنك استعمال الاسم من أحد حساباتك المرتبطة\nأو إنشاء اسم فريد.", "signInInfoText": "،قم بتسجيل دخولك لتجمع بطاقات، وتتحدى اللاعبين حول العالم\n.ولمشاركة تقدمك عبر الأجهزة", "signInText": "تسجيل الدخول", + "signInWithAnEmailAddressText": "سجل الدخول بالبريد الألكتروني", "signInWithDeviceInfoText": "الحساب التلقائي متوفر فقط على هذا الجهاز", "signInWithDeviceText": "سجل دخولك بحساب الجهاز", "signInWithGameCircleText": "Game Circle سجل دخولك بواسطة", @@ -33,18 +36,18 @@ "signInWithTestAccountText": "تسجيل الدخول بحساب تجريبي", "signInWithText": "تسجيل دخول مع ${SERVICE}", "signInWithV2InfoText": "حساب يعمل على جميع المنصات", - "signInWithV2Text": "قم بتسجيل الدخول باستخدام حساب فرقة القنبلة", + "signInWithV2Text": "قم بتسجيل الدخول باستخدام حساب ${APP_NAME}", "signOutText": "تسجيل الخروج", "signingInText": "...جارٍ تسجيل دخولك", "signingOutText": "...جارٍ تسجيل خروجك", "testAccountWarningOculusText": "تحذير: انت تقوم بتسجيل الدخول باستخدام حساب تجريبي.\nسيستبدل بحساب حقيقي خلال هذا العام الذي من خلاله\nسوف تقدر على شراء البطاقات ومزايا أخرى.\n\nإلى الان يمكنك الحصول على جميع البطافات في اللعبة.\n(على الرغم من ذلك، قم بالحصول على حساب متقدم مجانا)", - "ticketsText": "بطاقاتك الحالية:${COUNT}", - "titleText": "الحساب", + "ticketsText": "${COUNT} :عدد روانقك", + "titleText": "حسابك", "unlinkAccountsInstructionsText": "حدد حسابا لإلغاء ربطه", "unlinkAccountsText": "إلغاء ربط الحسابات", - "unlinkLegacyV1AccountsText": "إلغاء ربط الحسابات القديمة (V1)", + "unlinkLegacyV1AccountsText": "إلغاء ربط الحسابات من الإصدار القديم (V1)", "v2LinkInstructionsText": "استخدم هذا الارتباط لإنشاء حساب أو تسجيل الدخول.", - "viaAccount": "(${NAME} عبر الحساب)", + "viaAccount": "(وهو ${NAME})", "youAreSignedInAsText": ": قمت بتسجيل الدخول كـ" }, "achievementChallengesText": "إنجازات التحديات", @@ -112,7 +115,7 @@ "descriptionComplete": "!سجلت 250 نقطة", "descriptionFull": "${LEVEL} سجِّل 250 نقطة في", "descriptionFullComplete": "${LEVEL} لقد سجَّلت 250 نقطة في", - "name": "معَلِّم ${LEVEL}" + "name": "اسطوري!! ${LEVEL}" }, "Last Stand Wizard": { "description": "سجل 500 نقطة", @@ -167,7 +170,7 @@ "description": "فُزْ بدون اي قوى خارقة", "descriptionComplete": "لقد فزتَ بدون أي قوى خارقة", "descriptionFull": "بدون اي قوى خارقة${LEVEL} فز في", - "descriptionFullComplete": "بدون اي قوى خارقة${LEVEL} لقد فزتَ في", + "descriptionFullComplete": "بدون اي تعزيزات${LEVEL} لقد فزتَ في", "name": "دقة القصف" }, "Pro Boxer": { @@ -238,7 +241,7 @@ "descriptionComplete": "أحرزت 500 نقطة", "descriptionFull": "${LEVEL} أحرز 500 نقطة في", "descriptionFullComplete": "${LEVEL} أحرزت 500 نقطة في", - "name": "${LEVEL} استاذ" + "name": "${LEVEL} اسطوري" }, "Runaround Wizard": { "description": "أحرز 1000 نقطة", @@ -256,7 +259,7 @@ "description": "فز بدون أن تموت", "descriptionComplete": "لقد فُزت بدون ان تموت", "descriptionFull": "بدون أن تموت ${LEVEL} فز", - "descriptionFullComplete": "بدون أن يموت ${LEVEL} لقد فزت", + "descriptionFullComplete": "بدون أن تموت ${LEVEL} لقد فزت", "name": "البقاء حيا" }, "Super Mega Punch": { @@ -338,20 +341,22 @@ }, "addToFavoritesText": "الإضافة إلى المفضلات", "addedToFavoritesText": ".إلى المفضلات '${NAME}' تمت إضافة", - "allText": "جميع", + "allText": "الكل", "allowText": "السماح", "alreadySignedInText": "تم تسجيل الدخول من حسابك من جهاز آخر.\n يرجى تبديل الحسابات أو إغلاق اللعبة على الأجهزة الأخرى\n وحاول مرة أخرى.", "apiVersionErrorText": "خطأ في تحميل الجزء ${NAME}; انه مخصص للإصدار رقم ${VERSION_USED}; يجب استخدام الإصدار ${VERSION_REQUIRED}.", + "applyText": "يختار", + "areYouSureText": "هل انت متأكد؟", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(\"ذاتي\" فعله فقط عندما تكون سماعات الأذن موصولة", "headRelativeVRAudioText": "صوت VR موافق مع حركة الرأس", - "musicVolumeText": "مستوى الموسيقى", - "soundVolumeText": "مستوى الموسيقى", - "soundtrackButtonText": "المقاطع الصوتية", - "soundtrackDescriptionText": "(اختر موسيقاك الخاصة لتعمل خلال اللعب)", + "musicVolumeText": "صوت المعازف", + "soundVolumeText": "صوت الأشياء", + "soundtrackButtonText": "المقطوعات الصوتية", + "soundtrackDescriptionText": "(أضف مقاطع صوتية لتسمعها أثناء لعبك)", "titleText": "الصوت" }, - "autoText": "تلقائيا", + "autoText": "تلقائي", "backText": "للخلف", "banThisPlayerText": "حظر هاذا الاعب", "bestOfFinalText": "الافضل في ${COUNT}", @@ -364,40 +369,49 @@ "boostText": "تقوية", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} تمّ ضبطه بالتطبيق ذاته", "buttonText": "زر", - "canWeDebugText": "هل ترغب ان تقوم فرقة القنبلة تلقائيا بالتبليغ عن المشاكل والاخطاء التقنية \nوالفنيه وبعض المعلومات الاساسية الى موفر اللعبة ؟ \n\nهذه البيانات لا تحتوي على اي معلومات شخصيه و هي تساعد على ابقاء\n اللعبه تعمل بشكل سلس و بدون اخطاء.", + "canWeDebugText": "هل ترغب ان تقوم ${APP_NAME} تلقائيا بالتبليغ\nعن الأخطاء التقنية، الفنية وبعض المعلومات الاساسية لمطور اللعبة؟\n\nهذه البيانات لا تحتوي على اية معلومات شخصية وهي تساعد\nعلى ابقاء العبة بشكل سلس وبدون أخطاء.", "cancelText": "إلغاء الأمر", "cantConfigureDeviceText": "المعذرة، ${DEVICE} لا يمكن تخصيصه", "challengeEndedText": "هذا التحدي قد انتهى", - "chatMuteText": "اسكات الدردشة", - "chatMutedText": "تم اسكات الدردشة", - "chatUnMuteText": "تحرير الدردشة", + "chatMuteText": "كتم المحادثة", + "chatMutedText": "المحادثة مكتومة", + "chatUnMuteText": "الغ كتم المحادثة", + "chests": { + "prizeOddsText": "احتمالات الجائزة", + "reduceWaitText": "قلل الانتظار", + "slotDescriptionText": "هذه الفتحة يمكنها أن تحمل كنزاً.\n\nاحصل على الكنوز عن طريق لعب مستويات في الحملات، الترتب في البطولات، و إكمال الانجازات.", + "slotText": "فتحة كنز ${NUM}", + "slotsFullWarningText": "تحذير: كل فتحات الكنوز ممتلئة.\nأي كنوز ستحصل عليها في هذه اللعبة سيتم خسارتها.", + "unlocksInText": "يُفتح في" + }, "choosingPlayerText": "<يختار لاعب>", + "claimText": "مطالبة", "codesExplainText": "يتم توفير الرموز من قبل المطور\n.لتحليل مشاكل الحساب وتصحيحها", "completeThisLevelToProceedText": "يجب أن تكمل هذه المرحلة ليتم الاجراء", "completionBonusText": "علاوة الاكمال", "configControllersWindow": { - "configureControllersText": "ضبط قبضات التحكّم", + "configureControllersText": "إعداد وحدات التحكم", "configureKeyboard2Text": "ضبط لوحة مفاتيح اللاعب الثاني", - "configureKeyboardText": "ضبط لوحة المفاتيخ", - "configureMobileText": "أجهزة المحمول كقبضة تحكّم", - "configureTouchText": "ضبط شاشة اللمس", + "configureKeyboardText": "ضبط لوحة المفاتيح", + "configureMobileText": "إعداد هاتف كذراع تحكم", + "configureTouchText": "إعداد أزرار اللمس", "ps3Text": "قبضات تحكّم PS3", - "titleText": "قبضات التحكم", + "titleText": "إعداد المُتَحكِمات", "wiimotesText": "Wiimotes", "xbox360Text": "يد ألعاب أكس بوكس 360" }, "configGamepadSelectWindow": { - "androidNoteText": "ملاحظة: إن دعم قبضات التحكم يتباين تبعاً للجهاز و نظام ال Android", + "androidNoteText": "لتعلم: أن وحدات التحكم المدعومة تتباين حسب الجهاز وإصدار الأندرويد.", "pressAnyButtonText": "اضغط أيّ زر على قبضة التحكّم التي تريد أن تضبطها", - "titleText": "ضبط قبضات التحكّم" + "titleText": "هيئ وحدات التحكم" }, "configGamepadWindow": { "advancedText": "خيارات متطوّرة", "advancedTitleText": "اعداد متقدم ليد الألعاب", - "analogStickDeadZoneDescriptionText": "(فعّل هذه إذا كانت شخصيّتك 'تنحرف' تحرّر عصى التحكّم)", + "analogStickDeadZoneDescriptionText": "(فعّل هذه إذا كانت شخصيّتك 'تنحرف' عندما تحرّر عصا التحكّم)", "analogStickDeadZoneText": "مجال الموت للعصى التماثلية", "appliesToAllText": "(تنطبق على جميع قبضات التحكّم من هذا النوع)", - "autoRecalibrateDescriptionText": "(فعّل هذه إذا كانت شخصيّتك لاتتحرّك بالسرعة العظما)", + "autoRecalibrateDescriptionText": "(فعّل هذه إذا كانت شخصيّتك لاتتحرّك بالسرعة العظمى)", "autoRecalibrateText": "ضبط آلي للعصى التماثلية", "axisText": "محور", "clearText": "محو", @@ -440,18 +454,18 @@ "keyboard2NoteText": "ملاحظة: يمكن لمعظم لوحات المفاتيح تسجيل عدد قليل من ضغطات المفاتيح في\nمرة واحدة، لذلك وجود لاعب لوحة المفاتيح الثانية قد تعمل بشكل أفضل\nإذا كان هناك لوحة مفاتيح منفصلة تعلق لهم لاستخدامها.\nلاحظ أنك ستظل بحاجة إلى تعيين مفاتيح فريدة إلى\nلاعبين اثنين حتى في هذه الحالة." }, "configTouchscreenWindow": { - "actionControlScaleText": "مقياس التحكم في العمل", - "actionsText": "أفعال", - "buttonsText": "الأزرار", - "dragControlsText": "< اسحب عناصر التحكم لإعادة وضعها >", - "joystickText": "عصا التحكم", - "movementControlScaleText": "مقياس مراقبة الحركة", - "movementText": "حركة", - "resetText": "إعادة تعيين", - "swipeControlsHiddenText": "إخفاء أيقونات السحب", - "swipeInfoText": "'انتقاد' الضوابط أسلوب تأخذ قليلا التعود على ولكن\nتجعل من السهل للعب دون النظر إلى الضوابط.", - "swipeText": "مسحة", - "titleText": "تهيئة شاشة اللمس" + "actionControlScaleText": "حجم المُفَعِّل", + "actionsText": "المُفعِّل", + "buttonsText": "زرّي", + "dragControlsText": "{ غير مكان أداتي التحكم بنقرهما وسحبهما حيث تشاء }", + "joystickText": "مُدور", + "movementControlScaleText": "حجم المُحرِك", + "movementText": "المُحرِك", + "resetText": "إعادة الأصل", + "swipeControlsHiddenText": "اخفِ أزرار التحكم", + "swipeInfoText": "اختيار الزر الـ\"مربع\" سيأخذ وقتك للتعود عليه\nإلا أنه يسهل اللعب دون النظر لزر التحكم.", + "swipeText": "مربع", + "titleText": "إعداد التحكم باللمس" }, "configureDeviceInSystemSettingsText": "${DEVICE} يُمكن تعديله في تطبيق إعدادات النظام.", "configureItNowText": "هل تريد تهيئته الآن؟", @@ -459,8 +473,8 @@ "connectMobileDevicesWindow": { "amazonText": "متجر تطبيقات أمازون", "appStoreText": "المتجر", - "bestResultsText": "لتحقيق أفضل النتائح ستحتاج اتصال انترنت سريع .. يمكنك \nزيادة السرعة بايقاف الاجهزة الاخرة المتصلة بالشبكة، أو اللعب \nقرب موزع الشبكة، أو الاتصال بمخدم اللعبة باستخدام الكابل \nالمباشر الى الشبكة", - "explanationText": "لاستخدام الهاتف الذكي أو الكمبيوتر اللوحي باعتبارها وحدة تحكم لاسلكية،\nتثبيت التطبيق \"${REMOTE_APP_NAME}\"عليه. أي عدد من الأجهزة\nيمكن الاتصال لعبة ${APP_NAME}عبر واي-في، وأنه مجاني!", + "bestResultsText": "لأداء أفضل يستحسن استعمال شبكة لاسلكية مستقرة ويمكنك زيادة \nاستقرار الشبكة بإطفاء الأجهزة اللاسلكية الأخرى(كالهواتف) واللعب\nقريبًا من موجهك(الراوتر) وكذا توصيل الجهاز المُستَضيف للمُلَاعَبَة\nبسلك إيثرنت متصل بالشبكة(الموجه) لزيادة سرعة الاتصال وتحسينه.", + "explanationText": "لاستعمال جوال أو لوحي(تابلت) كذراع تحكم لاسلكي فعليك\nبتثبيت تطبيق \"${REMOTE_APP_NAME}\" على الجهاز المراد استعماله كذراع.\nوهكذا يمكنك توصيل أكثر من جوال/لوحي بـ${APP_NAME} عبر الشبكة اللاسلكية.", "forAndroidText": "لأجهزة الأندرويد:", "forIOSText": "لنظام التشغيل أيفون:", "getItForText": "احصل على ${REMOTE_APP_NAME} لنظام التشغيل يوس في أبل أب ستور\nأو للأندرويد في متجر جوجل بلاي أو الأمازون أبستور", @@ -497,7 +511,7 @@ "powerRankingPointsToRankedText": "{اجمع} من {المتبقي} النقاط", "powerRankingText": "ترتيب الطاقة", "prizesText": "الجوائز", - "proMultInfoText": "اللاعبين الذين لديهم الترقية ${PRO}\nالحصول على ${PERCENT}٪ بوينت بوست هنا.", + "proMultInfoText": "يحصل اللاعبين المشتركين في ${PRO}\nعلى زيادة قدرها ${PERCENT}% في نقاطهم.", "seeMoreText": "المزيد . . .", "skipWaitText": "تخطي الإنتظار", "timeRemainingText": "الوقت المتبقي", @@ -510,24 +524,24 @@ }, "copyConfirmText": "نسخ إلى اللوحة", "copyOfText": "${NAME} نسخ", - "copyText": "ينسخ", + "copyText": "نسخ", "createEditPlayerText": "<اصنع او عدل حساب>", "createText": "اصنع", "creditsWindow": { - "additionalAudioArtIdeasText": "الأصوات الإضافية، الأعمال المبتكرة، والأفكار من قبل ${NAME}", - "additionalMusicFromText": "المعازف الإضافية من ${NAME}", + "additionalAudioArtIdeasText": "${NAME} الأصوات الإضافية، الأعمال المبتكرة، والأفكار من قبل", + "additionalMusicFromText": "${NAME} المعازف الإضافية من", "allMyFamilyText": "كل أصدقائي وعائلتي التي ساعدتني لتجربة اللعبة", - "codingGraphicsAudioText": "البرمجة، والرسومات، والأصوات انشأها ${NAME}", + "codingGraphicsAudioText": "${NAME} البرمجة، والرسومات، والأصوات انشأها", "languageTranslationsText": "مترجمي اللُّغات", "legalText": ":الحقوق القانونية", - "publicDomainMusicViaText": "معازف النطاق العام بواسطة ${NAME}", - "softwareBasedOnText": "هذه البرمجيات تعتمد على جزء من عمل ${NAME}", - "songCreditText": "${PERFORMER} تم تأديتها من قبل ${TITLE}\n نشر بواسطة ${PUBLISHER}،توزيع ${ARRANGER}، تم التأليف من قبل ${COMPOSER}\nبتصريح من ${SOURCE}", + "publicDomainMusicViaText": "${NAME} معازف النطاق العام بواسطة", + "softwareBasedOnText": "${NAME} هذه البرمجيات تعتمد على جزء من عمل", + "songCreditText": "${PERFORMER} تم تأديتها من قبل ${TITLE} \n ${PUBLISHER} نشر بواسطة ،${ARRANGER} توزيع ،${COMPOSER} تم التأليف من قبل \n ${SOURCE} بتصريح من", "soundAndMusicText": "الأصوات والمعازف:", - "soundsText": "تأثيرات الصوت من: (${SOURCE})", + "soundsText": "(${SOURCE}) :تأثيرات الصوت من", "specialThanksText": "شكر خاص:", - "thanksEspeciallyToText": "والشكر خاصةً لـ${NAME}", - "titleText": "فريق عمل ${APP_NAME}", + "thanksEspeciallyToText": "${NAME} والشكر خاصةً لـ", + "titleText": "مُساهِمي ${APP_NAME}", "whoeverInventedCoffeeText": "الشخص الذي اخترع القهوة" }, "currentStandingText": "تصنيفك الحالي هو #${RANK}", @@ -537,18 +551,18 @@ "debugText": "التصحيح", "debugWindow": { "reloadBenchmarkBestResultsText": "ملاحظة: فمن المستحسن أن قمت بتعيين إعدادات-> الرسومات-> القوام إلى 'عالية' أثناء اختبار هذا.", - "runCPUBenchmarkText": "قياس أداء المعالج", - "runGPUBenchmarkText": "قياس أداء معالج الرسوميات", - "runMediaReloadBenchmarkText": "قياس أداء وحدة تحميل الوسائط", - "runStressTestText": "تشغيل اختبار الإجهاد", + "runCPUBenchmarkText": "قس أداء المُعالج المركزي", + "runGPUBenchmarkText": "قس أداء معالج الرسوميات", + "runMediaReloadBenchmarkText": "قس أداء تحميل المحتوى", + "runStressTestText": "شغل الاختبار", "stressTestPlayerCountText": "عدد اللاعبين", "stressTestPlaylistDescriptionText": "اختبار الإجهاد قائمة التشغيل", - "stressTestPlaylistNameText": "اسم قائمة التشغيل", - "stressTestPlaylistTypeText": "نوع قائمة التشغيل", - "stressTestRoundDurationText": "مدة الجولة", - "stressTestTitleText": "اختبار الإجهاد", - "titleText": "معايير واختبارات الإجهاد", - "totalReloadTimeText": "إجمالي وقت إعادة التحميل: ${TIME} (راجع سجل للحصول على التفاصيل)" + "stressTestPlaylistNameText": "اسم قائمة الألعاب", + "stressTestPlaylistTypeText": "نوع قائمة الألعاب", + "stressTestRoundDurationText": "مدة الدورة الواحدة", + "stressTestTitleText": "محاكاة الضغط والإجهاد", + "titleText": "قياس الأداء والإجهاد والتحميل", + "totalReloadTimeText": "(راجع السجل للتفاصيل) ${TIME} :إجمال وقت إعادة تحميل الوسائط" }, "defaultGameListNameText": "الافتراضي ${PLAYMODE} قائمة التشغيل", "defaultNewGameListNameText": "قائمة تشغيل ${PLAYMODE}", @@ -556,6 +570,7 @@ "demoText": "عرض", "denyText": "رفض", "deprecatedText": "إهمال", + "descriptionText": "الوصف", "desktopResText": "جودة سطح المكتب", "deviceAccountUpgradeText": "تحذير:\nانت مسجل الدهول بحساب الجهاز (${NAME}).\nحسابات الجهاز (Device) سيتم حذفها في المستقبل.\nقم بالتطوير الى حساب V2 اذا اردت ان تقوم بحفظ تقدمك.", "difficultyEasyText": "سهل", @@ -563,12 +578,13 @@ "difficultyHardText": "صعب", "difficultyHardUnlockOnlyText": "لا يمكن فتح هذا المستوى إلا في الوضع الصعب.\n هل تعتقد أن لديك ما يلزم!؟!؟!", "directBrowserToURLText": "وجه متصفح الشابكة إلى العنوان التالي:", - "disableRemoteAppConnectionsText": "تعطيل اتصالات التطبيق عن بعد", + "disableRemoteAppConnectionsText": "منع الأجهزة المستعملة لتطبيق الحاكوم من الاتصال", "disableXInputDescriptionText": "يسمح أكثر من 4 وحدات تحكم ولكن قد لا تعمل كذلك.", "disableXInputText": "xinput تعطيل", - "disabledText": "معطل", - "discordFriendsText": "تريد المزيد من الناس للعب معهم؟\n!إنضم إلى سيرفر الديسكورد و أوجد اصدقاء جدد", - "discordJoinText": "إنضم إلى الديسكورد", + "disabledText": "مُعطّّل", + "discardText": "تجاهل", + "discordFriendsText": "أتبحث عن رفيق لتلعب معه؟\nإذن عليك بالديسكورد فإنه حيث تجد رفيقًا للعب!", + "discordJoinText": "انضم للديسكورد", "doneText": "تم", "drawText": "تعادل", "duplicateText": "مكرر", @@ -585,29 +601,29 @@ "titleText": "قائمة تشغيل محرر" }, "editProfileWindow": { - "accountProfileInfoText": "يحتوي هذا الملف الشخصي الفريد على اسم\nوأيقونة تعتمد على حسابك.\n\n${ICONS}\n\nانشئ ملف شخصي مخصص لاستعمال\nاسماء مختلفة أو أيقونات مخصصة.", - "accountProfileText": "(ملف تعريف الحساب)", - "availableText": "الاسم \"${NAME}\" متاح.", + "accountProfileInfoText": "يظهر هذا الـمُـعـرِّف اسـم الحـسـاب\nمع شارة تظهر نوع الحساب كهذه:\n\n${ICONS}\n\nانشئ مُعـرِّف جـديـد مـن الـقـائـمـة\nالسابقة لتغيير الاسم وتغيير الشارة.", + "accountProfileText": "(مُعرِّف حسابي)", + "availableText": ".متاح \"${NAME}\" الاسم", "characterText": "الشخصية", - "checkingAvailabilityText": "جار التحقق من التوفر ل \"${NAME}\" ...", - "colorText": "اللون", + "checkingAvailabilityText": "...\"${NAME}\" يُبحث عن توفر الاسم", + "colorText": "اللون الجذري", "getMoreCharactersText": "الحصول على المزيد من الشخصيات ...", "getMoreIconsText": "الحصول على المزيد من الرموز ...", - "globalProfileInfoText": "ملفات اللاعب العالمية مصممة لتملك\nاسم عالمي فريد. وأيضًا تتضمن أيقونات مخصصة", - "globalProfileText": "(ملف شخصي عالمي)", - "highlightText": "تسليط الضوء", - "iconText": "أيقونة", - "localProfileInfoText": "ملامح لاعب المحلي ليس لديهم رموز وأسمائهم\nغير مضمونة لتكون فريدة من نوعها. الترقية إلى ملف شخصي عام\nلحجز اسم فريد وإضافة رمز مخصص.", - "localProfileText": "(الملف الشخصي المحلي)", + "globalProfileInfoText": "تحجز المُعرّفات العالمية اسمًا فريدًا لك عالميًا\nوتـسـمـح لـك بإضــافــة شـارة أعــلـى اسـمـك.", + "globalProfileText": "(مُعرّف عالمي)", + "highlightText": "اللون الفرعي", + "iconText": "الشارة", + "localProfileInfoText": "المعرف المحلي هو معرف خاص على جهازك، ولا يخزن في الخوادم،\nحتى أن اسمه لا يكون فريدًا ومحجوزًا. ولا يمكنك إضافة شارات.\nفإن كنت تريد تلك الميزات فاجعل مُعرّفك عالميًا لتحجز اسمًا وتضيف شارة.", + "localProfileText": "(مُعَرِّف محلي)", "nameDescriptionText": "اسم اللاعب", "nameText": "الاسم", "profileAlreadyExistsText": ".يوجد ملف شخصي بهذا الإسم بالفِعل", "randomText": "عشوائي", - "titleEditText": "تعديل الملف الشخصي", - "titleNewText": "ملف شخصي جديد", - "unavailableText": "\"${NAME}\" غير متوفر؛ حاول اسم آخر.", - "upgradeProfileInfoText": "هذا سيحفظ اسم لاعب في جميع أنحاء العالم\nوتسمح لك بتعيين رمز مخصص لها.", - "upgradeToGlobalProfileText": "الترقية إلى الملف الشخصي العالمي" + "titleEditText": "عدل المُعرِّف", + "titleNewText": "أنشئ مُعرفًا", + "unavailableText": "\"${NAME}\" معرف محجوز، جرب اسمًا آخر.", + "upgradeProfileInfoText": "هذا سيحجز اسم المعرف عالميًا\nوسيسمح لك بوضع شارة على المعرف.", + "upgradeToGlobalProfileText": "جعل الملف عالميًا" }, "editSoundtrackWindow": { "cantDeleteDefaultText": "لا يمكنك حذف الصوت الافتراضي.", @@ -616,28 +632,28 @@ "cantSaveAlreadyExistsText": "يوجد مقطع صوتي بهذا الاسم.", "defaultGameMusicText": "<موسيقى اللعبة الافتراضية>", "defaultSoundtrackNameText": "الصوت الافتراضي", - "deleteConfirmText": "حذف الموسيقى التصويرية:\n\n'${NAME}'؟", - "deleteText": "حذف\nتسجيل صوتي", - "duplicateText": "مكرر\nتسجيل صوتي", - "editSoundtrackText": "محرر الموسيقى التصويرية", - "editText": "تصحيح\nتسجيل صوتي", + "deleteConfirmText": "حذف مسار الصوت:\n\n'${NAME}'؟", + "deleteText": "احذف\nالمقطع", + "duplicateText": "كرر\nالمقطع", + "editSoundtrackText": "محرر مسار الصوت", + "editText": "غير\nالمقطع", "fetchingITunesText": "جارٍ جلب قوائم تشغيل تطبيق الموسيقى ...", "musicVolumeZeroWarning": "تحذير: يتم ضبط مستوى صوت الموسيقى على 0", "nameText": "اسم", - "newSoundtrackNameText": "الموسيقى التصويرية ${COUNT}", + "newSoundtrackNameText": "${COUNT} مقطعي رقم", "newSoundtrackText": "موسيقى تصويرية جديدة:", - "newText": "الجديد\nتسجيل صوتي", + "newText": "اضف\nمقطعًا", "selectAPlaylistText": "حدد قائمة تشغيل", "selectASourceText": "مصدر الموسيقى", "testText": "اختبار", - "titleText": "الموسيقى التصويرية", + "titleText": "مسار الصوت", "useDefaultGameMusicText": "الافتراضي لعبة الموسيقى", "useITunesPlaylistText": "قائمة تشغيل تطبيق الموسيقى", "useMusicFileText": "ملف الموسيقى (mp3، الخ)", "useMusicFolderText": "مجلد ملفات الموسيقى" }, "editText": "تعديل", - "enabledText": "مفعل", + "enabledText": "مُفعّل", "endText": "إنهاء", "enjoyText": "استمتع", "epicDescriptionFilterText": "${DESCRIPTION} بحركة ملحمية بطيئة", @@ -649,6 +665,8 @@ "errorText": "خطا", "errorUnknownText": "خطا غير معروف", "exitGameText": "هل تريد الخروج من ${APP_NAME}؟", + "expiredAgoText": "تم انتهاء صلاحية ${T} منذ", + "expiresInText": "تنتهي صلاحيته في ${T}", "exportSuccessText": "تم تصدير ${NAME} '.", "externalStorageText": "تخزين خارجي", "failText": "فشل", @@ -659,7 +677,7 @@ "titleFolderText": "اختر مجلد", "useThisFolderButtonText": "استخدم هاذا المجلد" }, - "filterText": "مصفاة", + "filterText": "البحث", "finalScoreText": "النتيجة النهائية", "finalScoresText": "النتيجة النهائية", "finalTimeText": "الوقت النهائي", @@ -695,8 +713,8 @@ "gamesToText": "${WINCOUNT} من الألعاب إلى ${LOSECOUNT}", "gatherWindow": { "aboutDescriptionLocalMultiplayerExtraText": "تذكر: يمكن لأي جهاز في الحفلة الحصول علي\nاكثر من لاعب واحد إذا كان لديك ما يكفي من وحدات التحكم.", - "aboutDescriptionText": "استخدم علامات التبويب هذه لتجميع أحد الحفلات.\n\nتتيح لك الأطراف لعب الألعاب والبطولات\nمع أصدقائك عبر الأجهزة المختلفة.\n\nاستخدم الزر ${PARTY} في أعلى اليسار\nدردشة والتفاعل مع حزبكم.\n(على وحدة تحكم، اضغط ${BUTTON} بينما في القائمة)", - "aboutText": "حول", + "aboutDescriptionText": "استخدم علامات التبويب هذه لتجميع أحد الحفلات.\n\nتتيح لك الأطراف لعب الألعاب والبطولات\nمع أصدقائك عبر الأجهزة المختلفة.\n\nاستخدم الزر ${PARTY} في أعلى اليمين\nدردشة والتفاعل مع حزبكم.\n(على وحدة تحكم، اضغط ${BUTTON} بينما في القائمة)", + "aboutText": "الشرح", "addressFetchErrorText": "<خطأ في جلب العناوين>", "appInviteMessageText": "أرسل ${NAME} تذاكر ${COUNT} في ${APP_NAME}", "appInviteSendACodeText": "إرسال لهم رمز", @@ -709,10 +727,11 @@ "checkingText": "تدقيق...", "copyCodeConfirmText": "تم نسخ الرمز الى الحافظة", "copyCodeText": "نسخ الرمز", - "dedicatedServerInfoText": "للحصول على أفضل النتائج، قم بإعداد خادم مخصص. اطلع على bombsquadgame.com/server لمعرفة كيفية إجراء ذلك.", + "dedicatedServerInfoText": ".لتعرف كيف bombsquadgame.com/server لأداء أفضل، استضف المُلَاعَبة بخادم مخصص لذلك. راجع", + "descriptionShortText": "استخدم نافذة التجمع لكي تصنع حفلة", "disconnectClientsText": "سيؤدي هذا إلى فصل المشغل ${COUNT}\nفي حزبكم. هل أنت واثق؟", "earnTicketsForRecommendingAmountText": "سيتلقى الأصدقاء تذاكر بقيمة ${COUNT} إذا جربو اللعبة\n(وستتلقى ${YOU_COUNT} لكل من يفعل)", - "earnTicketsForRecommendingText": "مشاركة اللعبة\nلتذاكر مجانية ...", + "earnTicketsForRecommendingText": "شارك اللعبة\nمقابل الروانق...", "emailItText": "البريد الإلكتروني", "favoritesSaveText": "حفظ كمفضلة", "favoritesText": "المفضلة", @@ -722,10 +741,10 @@ "friendHasSentPromoCodeText": "${COUNT} ${APP_NAME} تذاكر من ${NAME}", "friendPromoCodeAwardText": "سوف تتلقى تذاكر ${COUNT} في كل مرة يتم استخدامها.", "friendPromoCodeExpireText": "ستنتهي صلاحية الشفرة خلال ${EXPIRE_HOURS} ساعة وتعمل فقط للاعبين الجدد.", - "friendPromoCodeInstructionsText": "لاستخدامها ، افتح ${APP_NAME} وانتقل إلى \"الإعدادات-> متقدم-> إدخال الرمز\".\nانظر bombsquadgame.com للحصول على روابط التحميل لجميع المنصات المدعومة.", - "friendPromoCodeRedeemLongText": "ويمكن استرداد قيمتها بمبلغ ${MAX_USES} من التذاكر المجانية بقيمة ${COUNT}.", + "friendPromoCodeInstructionsText": "لاستخدامها ، افتح ${APP_NAME} وانتقل إلى \"الإعدادات-> متقدم->إرسال المعلومات\".\nانظر bombsquadgame.com للحصول على روابط التحميل لجميع المنصات المدعومة.", + "friendPromoCodeRedeemLongText": "شخص كحد أقصى ${MAX_USES} رونقة ويمكن أن إرساله لـ ${COUNT} فهذا الرمز يعطيهم", "friendPromoCodeRedeemShortText": "ويمكن استبدالها ل ${COUNT} تذاكر في اللعبة.", - "friendPromoCodeWhereToEnterText": "(في \"الإعدادات -> متقدم -> أدخل الرمز\")", + "friendPromoCodeWhereToEnterText": "(في \"الإعدادات -> متقدم -> أرسل المعلومات\")", "getFriendInviteCodeText": "احصل على كود دعوة من صديق", "googlePlayDescriptionText": "دعوة لاعبين غوغل بلاي لحزبكم:", "googlePlayInviteText": "دعوة", @@ -733,17 +752,17 @@ "googlePlaySeeInvitesText": "راجع الدعوات", "googlePlayText": "غوغل بلاي", "googlePlayVersionOnlyText": "(الروبوت / جوجل اللعب الإصدار)", - "hostPublicPartyDescriptionText": "صنع حفلة عامة", + "hostPublicPartyDescriptionText": "استضافة مُلَاعَبَة عامة", "hostingUnavailableText": "صنع السيرفر غير متوفر", "inDevelopmentWarningText": "ملحوظة:\n\nاللعب عبر الإنترنت هي ميزة لا تزال تحت التطوير.\nحاليًا، يفضل أن يكون جميع اللاعبين\nمتصلين على نفس شبكة WI-FI.", "internetText": "انترنت", - "inviteAFriendText": "الأصدقاء ليس لديهم اللعبة؟ يمكنك دعوتهم إلى\nجربها وسيحصلون على ${COUNT} من التذاكر المجانية.", - "inviteFriendsText": "دعوة الاصدقاء", - "joinPublicPartyDescriptionText": "الإنضمام الى سيرفر عام", + "inviteAFriendText": "إن كان أصدقاؤك ليست لديهم اللعبة، فادعهم لتجربتها\nرونقة مجانية ${COUNT} وسيحصلون على", + "inviteFriendsText": "ادع أصدقائك", + "joinPublicPartyDescriptionText": "الانضمام لمُلَاعَبَة عامة", "localNetworkDescriptionText": "(الإنضمام الى سيرفر بالقرب منك (وايفاي,بلوتوث,الخ", "localNetworkText": "شبكة محليه", - "makePartyPrivateText": "اصنع حفلة خاصة", - "makePartyPublicText": "اصنع حزب بلدي العامة", + "makePartyPrivateText": "اجعل المُلَاعَبَة سريّة", + "makePartyPublicText": "اجعل المُلَاعَبَة عامة", "manualAddressText": "العنوان", "manualConnectText": "الاتصال", "manualDescriptionText": "الانضمام إلى الحزب عن طريق العنوان:", @@ -751,7 +770,7 @@ "manualJoinableFromInternetText": "هل أنت مشترك من الإنترنت ؟:", "manualJoinableNoWithAsteriskText": "لا*", "manualJoinableYesText": "نعم", - "manualRouterForwardingText": "* لإصلاح ذلك، حاول تهيئة الموجه لإعادة توجيه منفذ أودب ${PORT} إلى عنوانك المحلي", + "manualRouterForwardingText": "لعنوان جهازك UDP من نوع ${PORT} لإصلاح هذه المشكلة وجه المنفذ *", "manualText": "يدوي", "manualYourAddressFromInternetText": "عنوانك من الإنترنت:", "manualYourLocalAddressText": "عنوانك المباشر", @@ -765,31 +784,31 @@ "partyInviteGooglePlayExtraText": "(see the 'Google Play' tab in the 'Gather' window)", "partyInviteIgnoreText": "موافق", "partyInviteText": "تمت دعوة ${NAME}\nلك للانضمام إلى حزبهم!", - "partyNameText": "اسم المجموعة", + "partyNameText": "اسم المُلَاعَبَة", "partyServerRunningText": "سيرفرك يعمل", - "partySizeText": "حجم المجموعه", - "partyStatusCheckingText": "جار التحقق من الحالة ...", - "partyStatusJoinableText": "حزبك الآن غير قابل للانضمام من الإنترنت", + "partySizeText": "عدد الأشخاص", + "partyStatusCheckingText": "يُتحقق من الفعالية...", + "partyStatusJoinableText": "مُلَاعَبَتك ليست عامة ولا يمكن الانضمام لها", "partyStatusNoConnectionText": "غير قادر على الإتصال بالسيرفر", - "partyStatusNotJoinableText": "حزبكم ليست قابلة للانضمام من الإنترنت", - "partyStatusNotPublicText": "حزبكم ليس عام", - "pingText": "Ping", + "partyStatusNotJoinableText": "مُلَاعَبَتك ليست عامة ولا يمكن الانضمام لها", + "partyStatusNotPublicText": "مُلَاعَبَتك ليست عامة بعد", + "pingText": "الاستجابة", "portText": "البوابة", "privatePartyCloudDescriptionText": "السيرفرات الخاصة تعمل على خادم في الهواء؛ لا تحتاج تجهيز الراوتر اودي بي", "privatePartyHostText": "صنع حفلة خاصة", "privatePartyJoinText": "دخول حفلة خاصة", "privateText": "الخاص", - "publicHostRouterConfigText": "هذا قد يحتاج تجهيز منفذ اودي پي في الراوتر. لعمل اسهل، يمكنك صنع حفلة خاصة", + "publicHostRouterConfigText": "انشاء مُلَاعَبَة عامة يتطلب فتح بعض المنافذ في موجِهك(الراوتر). لتسهيل الأمر يمكنك استضافة مُلَاعَبَة سرية دون هذا التعقيد.", "publicText": "عام", "requestingAPromoCodeText": "جار طلب رمز ...", "sendDirectInvitesText": "إرسال دعوات مباشرة", - "shareThisCodeWithFriendsText": "شارك هذا الرمز مع الأصدقاء:", + "shareThisCodeWithFriendsText": "أرسل هذا الرمز لصديقك:", "showMyAddressText": "عرض عنواني", "startHostingPaidText": "صنع الحفلة الأن ب ${COST}", "startHostingText": "صنع الحفل", "startStopHostingMinutesText": "يمكنك بدأ وايقاف الحفلة مجانا خلال ${MINUTES} من الدقائق", "stopHostingText": "ايقاف التشغيل", - "titleText": "متعدد الاعبين", + "titleText": "الخوادم", "wifiDirectDescriptionBottomText": "إذا كانت جميع الأجهزة تحتوي على لوحة \"واي-في مباشر\"، فيجب أن تكون قادرة على استخدامها للعثور عليها\nوالتواصل مع بعضها البعض. مرة واحدة يتم توصيل جميع الأجهزة، يمكنك تشكيل الأطراف\nهنا باستخدام علامة التبويب \"الشبكة المحلية\"، تماما كما هو الحال مع شبكة واي فاي العادية.\n\nللحصول على أفضل النتائج، يجب أن يكون مضيف واي-في ديريكت أيضا مضيف الطرف ${APP_NAME}.", "wifiDirectDescriptionTopText": "واي فاي المباشر يمكن استخدامها لتوصيل أجهزة الروبوت مباشرة دون\nوالتي تحتاج إلى شبكة واي فاي. هذا يعمل بشكل أفضل على الروبوت 4.2 أو أحدث.\n\nلاستخدامه، افتح إعدادات واي-في وابحث عن \"واي-في ديريكت\" في القائمة.", "wifiDirectOpenWiFiSettingsText": "افتح إعدادات واي-فاي", @@ -811,15 +830,21 @@ "ticketPack4Text": "جمبو تذكرة حزمة", "ticketPack5Text": "ماموث تذكرة حزمة", "ticketPack6Text": "تذكرة حزمة هائلة", - "ticketsFromASponsorText": "شاهد اعلانا\nمن التذاكر ${COUNT} للحصول على", - "ticketsText": "${COUNT} بطاقات", - "titleText": "أحصل على تذاكر", + "ticketsFromASponsorText": "شاهد إعلانًا\nرونقة ${COUNT} لتحصيل", + "ticketsText": "رونقة ${COUNT}", + "titleText": "احصل على الروانق", "unavailableLinkAccountText": "عذرا، لا تتوفر عمليات الشراء على هذا النظام الأساسي.\nوكحل بديل، يمكنك ربط هذا الحساب بحساب في\nمنصة أخرى وجعل عمليات الشراء هناك.", "unavailableTemporarilyText": "هذا غير متوفر حاليا؛ الرجاء معاودة المحاولة في وقت لاحق.", "unavailableText": "عذرا، هذا غير متوفر.", "versionTooOldText": "عذرا، هذا الإصدار من اللعبة قديم جدا؛ يرجى تحديث إلى أحدث واحد.", - "youHaveShortText": "لديك ${COUNT}", - "youHaveText": "لديك ${COUNT} تذاكر" + "youHaveShortText": "${COUNT} تملك", + "youHaveText": "عندك ما عدده ${COUNT} رونقة" + }, + "goldPass": { + "desc1InfTokensText": "عملة رمزية لا نهائية", + "desc2NoAdsText": "لا إعلانات", + "desc3ForeverText": "إلى الأبد", + "goldPassText": "بطاقة المرور الذهبية" }, "googleMultiplayerDiscontinuedText": "\nعذرًا ، خدمة جوجل متعددة اللاعبين لم تعد متاحة.\n أنا أعمل على بديل بأسرع وقت ممكن.\n حتى ذلك الحين ، يرجى تجربة طريقة اتصال أخرى.\n -إريك", "googlePlayPurchasesNotAvailableText": "عمليات شراء جوجل بلاي غير متوفرة.\nقد تحتاج لتحديث تطبيق المتجر.", @@ -831,35 +856,35 @@ "fullScreenCtrlText": "الشاشه كامله (Ctrl-F)", "fullScreenText": "تكبير الشاشة", "gammaText": "غاما", - "highText": "عالي الدقة", - "higherText": "العالي", - "lowText": "منخفض", + "highText": "عالية", + "higherText": "أقصى جودة", + "lowText": "منخفضة", "maxFPSText": "أعلى معدل إطارات", - "mediumText": "متوسط", + "mediumText": "متوسطة", "neverText": "أبدا", - "resolutionText": "القرار", - "showFPSText": "اظهار عدد الكدرات في الثانية", - "texturesText": "القوام", - "titleText": "الرسومات", - "tvBorderText": "TV الحدود", + "resolutionText": "أبعاد الشاشة", + "showFPSText": "أظهر معدل الإطارات", + "texturesText": "الأسطح والمواد", + "titleText": "جودة المرئيات", + "tvBorderText": "تكبير الحواف", "verticalSyncText": "تزامن عمودي", - "visualsText": "صور" + "visualsText": "التأثيرات والمرئيات" }, "helpWindow": { - "bombInfoText": "القنبلة\nأقوى من اللكمات، لكن من\nالممكن أن تؤدي لإيذاء النفس\nلأفضل النتائج، ارمها\nنحو العدو قبل أن ينفذ الفتيل.", - "canHelpText": "تستطيع مساعدتك ${APP_NAME}.", - "controllersInfoText": "يمكنك لعب ${APP_NAME} مع أصدقائك عبر الشبكة، أو يمكنكم\nجميعًا اللعب على نفس الجهاز إذا كنت تمتلك أذرع تحكم كافية.\n${APP_NAME} تدعم أنواع متعددة من أذرع التحكم؛ حتى الهواتف يمكن استعمالها\nكذراع تحكم من خلال تطبيق ${REMOTE_APP_NAME}.\nلمزيد من المعلومات اذهب للإعدادات>التحكم.", - "controllersInfoTextRemoteOnly": "You can play ${APP_NAME} with friends over a network, or you\n can all play on the same device by using phones as\n controllers via the free '${REMOTE_APP_NAME}' app.", - "controllersText": "التحكم", - "controlsSubtitleText": "شخصية ${APP_NAME} الخاصة بك تحتوي على العديد من الخصائص أهمها:", - "controlsText": "وحدات التحكم", + "bombInfoText": "[القنبلة]\nيشـعل فتيل القنبلة فـي مخبأتك ويرمـي بأسـك.\nإلا أنـه قد يـقـتلـك أو يـجـرحـك، ولا يرضيك.\nفارم القنبلة قبل الفتيل، تنجو وتقتل من يرديك.\nإذا كنت يا قُنبل مستعدًا، فأهلك أعدائك مستبدًا.", + "canHelpText": "ولهذا وُجِدَت ${APP_NAME} لتساعدك.", + "controllersInfoText": "العب ${APP_NAME} عبر الشبكة مع أصدقائك، وإلا فيمكنك لعبها محليًا\nبنفس الجهاز مع أصدقائك إذا كان لديك وحدات تحكم كافية(أذرع البلايستيشن مثلًا)\n${APP_NAME} تدعم أغلبهم. بل حتى يمكنك استعمال جهازك الآخر كذراع تحكم\nعبر تحميل تطبيق \"${REMOTE_APP_NAME}\" الموجود في المتجر عليه.\nاطلع على الإعدادات -> المتحكمات للاستزادة.", + "controllersInfoTextRemoteOnly": "بالإمكان لعب ${APP_NAME} عبر الشبكة\nأو يمكنكم جميعًا اللعب بنفس الجهاز\nباستعمال تطبيق \"${REMOTE_APP_NAME}\" في المتجر.", + "controllersText": "أذرع اللعب", + "controlsSubtitleText": "في ${APP_NAME} لا تحتاج المشي على أربع لتفوز، هناك أربع أزرار تغنيك عن هذا وهي:", + "controlsText": "المُفعِّلات", "devicesInfoText": "يمكن تشغيل إصدار فر الذي يبلغ ${APP_NAME} عبر الشبكة\nالنسخة العادية، حتى سوط خارج الهواتف الإضافية، وأقراص،\nوأجهزة الكمبيوتر والحصول على اللعبة الخاصة بك على. بل يمكن أن يكون مفيدا ل\nربط نسخة منتظمة من اللعبة إلى الإصدار فر فقط ل\nالسماح للناس خارج لمشاهدة العمل.", "devicesText": "الأجهزة", - "friendsGoodText": "من الرائع أن تحظى بهم. ${APP_NAME} أكثر متعة عندما تلعب مع عدة لاعبين\nواللعبة تدعم اللعب مع 8 لاعبين في وقت واحد، مما يقودنا إلى:", - "friendsText": "الاصدقاء", - "jumpInfoText": "القفز\nقم بالقفز لعبور الحفر الصغيرة،\nولرمي الأشياء أبعد،\nوللتعبير عن مشاعر الفرح.", - "orPunchingSomethingText": ".أو ضرب شيء، ورميه من على الجرف، وتفجيره بالمرة بقنبلة لزجة", - "pickUpInfoText": "- امسك -\nالاستيلاء على الأعلام، والأعداء، أو أي شيء\nوإلا لا انسحب على الأرض.\nاضغط مرة أخرى لرمي.", + "friendsGoodText": "وما أحسن رفقتهم. فإنما تكمن متعة عالم ${APP_NAME} في\nأن تلعب مع صديق، وليس واحد، بل 8، فهم خير عون في قُنبلاء", + "friendsText": "أصدقائك", + "jumpInfoText": "[الوثبة]\nيستعمل للقفز وتخطي الصعاب.\nولرمي الأشياء لأعلى والمرور.\nوللتـعبير عن الفرحة والسـرور.", + "orPunchingSomethingText": "أو لكم شيء، وجعله يهوي من مكانِ سحيق، وألا تخطئه قنابلك بأن تلصق به هذه القنابل وتلاحقه بلا مهرب.", + "pickUpInfoText": "[المسكة]\nيمكنك إمساك الأعلام، أو أعاديك، أو\nأي شيء غير ثابت أو مثبت بالأرض\nاضغط الزر مجددًا لإفلات الشيء.", "powerupBombDescriptionText": "يتيح لك سوط من ثلاث قنابل\nفي صف واحد بدلا من واحد فقط.", "powerupBombNameText": "قنابل ثلاثية", "powerupCurseDescriptionText": "أعتقد من الجيد الإبتعاد عن هذا.\nإلا إذا كنت ستقوم بـ..؟", @@ -880,12 +905,12 @@ "powerupStickyBombsNameText": "قنابل لاصقة", "powerupsSubtitleText": "وبلا شك، لا توجد لعبة تكتمل بلا قدرات تعزيزية إضافية:", "powerupsText": "حزم تعزيزية", - "punchInfoText": "اللكم\nعندما تجري بسرعة\nتعطي اللكمات ضرر أكبر،\nلذا اركض وقم بالدوران كالرجل المجنون.", - "runInfoText": "الركض\nاضغط مطولًا على أي زر أعلاه لتشغيله، أيضًا بإمكانك استعمال الزر الخلفي لذراع التحكم للركض.\nيُمكنك الركض من الوصول للأماكن بشكل أسرع لكنه يصعب الإستدارة، لذا انتبه من المنحدرات.", - "someDaysText": "في بعض الأحيان تشعر وكأنك تريد ضرب شيء ما. تفجير شيء ما.", + "punchInfoText": "[القبضة]\nبقبضتك يمكنك ضرب ما تشاء، وكلما زاد\nزخم حركتك(بزيادة سرعتك مثلًا) زادت قوتها\nلذا دُر حول نفسك ثم اضرب بيد من حديد.", + "runInfoText": "[الركض]\nعلق يدك على أحد الأزرار الأربعة للركض بسرعة. ويمكنك الضغط على أزرار الكتف في أذرع الألعـاب للركض.\nيسرع الركض هروبك من مخاوفك، ووصولك لأرض أحلامك، لكن يصعب توجهك يمنة ويسرة لذا احذر المنحدرات.", + "someDaysText": "أحيانًا تشعر برغبة في تفريغ غضبك، أحزانك، والتخلص من مآسيك وهمومك. وتريد تفجير شيء ما.", "titleText": "${APP_NAME} كيفية لعب", - "toGetTheMostText": "للحصول على أقصى استفادة من هذه اللعبة، ستحتاج إلى:", - "welcomeText": "مرحبا بك في ${APP_NAME}!" + "toGetTheMostText": "ولتفعل ذلك، ولا تخطئ هدفك، فإنك ستحتاج لما يلي:", + "welcomeText": "حللت أهلًا وسهلًا في ${APP_NAME}!" }, "holdAnyButtonText": "<اضغط على أي زر>", "holdAnyKeyText": "<اضغط على أي مفتاح>", @@ -894,14 +919,15 @@ "importPlaylistSuccessText": "تم استيراد ${TYPE} قائمة تشغيل \"${NAME}\"", "importText": "استيراد", "importingText": "استيراد ...", - "inGameClippedNameText": "في اللعبة سوف يكون\n\"${NAME}\"", + "inGameClippedNameText": "هذا اسمك في اللعبة\n\"${NAME}\"", + "inboxText": "صندوق الوارد", "installDiskSpaceErrorText": "خطأ: تعذر إكمال التثبيت.\nقد تكون نفذت مساحه التخزين على جهازك.\nامسح بعض المساحة وحاول مرة أخرى.", "internal": { "arrowsToExitListText": "اضغط ${LEFT} أو ${RIGHT} للخروج من القائمة", "buttonText": "زر", "cantKickHostError": "لا يمكنك طرد المضيف.", "chatBlockedText": "${NAME} تم حظر الدردشة لمدة ${TIME} ثانية.", - "connectedToGameText": "انضم '${NAME}'", + "connectedToGameText": "\"${NAME}\"انضممت لـ", "connectedToPartyText": "انضم إلى حفلة ${NAME}!", "connectingToPartyText": "توصيل...", "connectionFailedHostAlreadyInPartyText": "فشل الاتصال؛ المضيف في حفله اخرى.", @@ -935,10 +961,10 @@ "kickIdlePlayersKickedText": "الركل ${NAME} لكونه خاملا.", "kickIdlePlayersWarning1Text": "سيتم ركل ${NAME} بمبلغ ${COUNT} ثانية إذا ظلت خاملة.", "kickIdlePlayersWarning2Text": "(يمكنك إيقاف هذا في إعدادات -> متقدم)", - "leftGameText": "يسار '${NAME}'.", + "leftGameText": "غادر '${NAME}'.", "leftPartyText": "غادر ${NAME} من الحفله.", "noMusicFilesInFolderText": "المجلد لا يحتوي على ملفات الموسيقى.", - "playerJoinedPartyText": "انضم ${NAME} إلى الحفله!", + "playerJoinedPartyText": "!لمُلَاعَبَتِك ${NAME} دخل", "playerLeftPartyText": "غادر ${NAME} الحفله.", "rejectingInviteAlreadyInPartyText": "رفض الدعوة (موجود بالفعل في أحد الحفلات).", "serverRestartingText": "السيرفر يعاد تشغيله . يرجى إعادة الدخول بعد لحظة ...", @@ -949,12 +975,14 @@ "timeOutText": "(من المرات في ${TIME} ثانية)", "touchScreenJoinWarningText": "لقد انضممت مع شاشة اللمس.\nإذا كان هذا خطأ، اضغط 'القائمة-> ترك لعبة' معها.", "touchScreenText": "شاشة اللمس", + "unableToCompleteTryAgainText": "عدم القدرة على إكمال هذا الآن.\nحاول لاحقاً.", "unableToResolveHostText": "خطأ: غير قادر على حل المضيف.", "unavailableNoConnectionText": "هذا غير متاح حاليا (لا يوجد اتصال بالإنترنت؟)", "vrOrientationResetCardboardText": "استخدام هذا لإعادة توجيه فر.\nللعب اللعبة سوف تحتاج إلى وحدة تحكم خارجية.", "vrOrientationResetText": "فر توجيه إعادة تعيين.", "willTimeOutText": "(سوف تنقضي المهلة إذا توقفت عن الحركة)" }, + "inventoryText": "المخزون", "jumpBoldText": "اقفز", "jumpText": "قفز", "keepText": "احتفظ", @@ -984,7 +1012,7 @@ "singlePlayerExamplesText": "لاعب واحد / التعاونية أمثلة", "versusExamplesText": "مقابل أمثلة" }, - "languageSetText": "اللغة الآن \"${LANGUAGE}\".", + "languageSetText": ".لغة للعبة \"${LANGUAGE}\" أصبحت", "lapNumberText": "جوله ${CURRENT}/${TOTAL}", "lastGamesText": "(آخر ${COUNT} مباراة)", "leaderboardsText": "المتصدرين", @@ -1001,8 +1029,11 @@ "seasonEndsMinutesText": "ينتهي الموسم بعد ${NUMBER} من الدقائق.", "seasonText": "الموسم ${NUMBER}", "tournamentLeagueText": "يجب أن تصل إلى الدوري ${NAME} للدخول في هذه البطولة.", - "trophyCountsResetText": "سيتم إعادة تعيين عدد الكوؤس في الموسم المقبل." + "trophyCountsResetText": "سيتم إعادة تعيين عدد الكوؤس في الموسم المقبل.", + "upToDateBonusDescriptionText": "اللاعبون الذين يستخدمون النسخة الحديثة من اللعبة سوف يحصلون على مكافأة بنسبة تقدر ${PERCENT}% هنا. سمينميني", + "upToDateBonusText": "مكافأة محدثة" }, + "learnMoreText": "معلومات أكثر", "levelBestScoresText": "أفضل النقاط على ${LEVEL}", "levelBestTimesText": "أفضل الأوقات على ${LEVEL}", "levelIsLockedText": "تم قفل ${LEVEL}.", @@ -1019,7 +1050,7 @@ "macControllerSubsystemMFiText": "المصممة خصيصا اي او اس / ماك", "macControllerSubsystemTitleText": "دعم جهاز التحكم", "mainMenu": { - "creditsText": "معلومات", + "creditsText": "عن قنبلاء", "demoMenuText": "عرض القائمة", "endGameText": "نهاية لعبة", "endTestText": "الاختبار النهائي", @@ -1040,12 +1071,14 @@ "mapSelectTitleText": "${GAME} خرائط", "mapText": "خرائط", "maxConnectionsText": "اتصالات مكتمل", - "maxPartySizeText": "أقصى حجم للحفلة", + "maxPartySizeText": "أقصى عدد للاعبين", "maxPlayersText": "عدد لاعبين مكتمل", "merchText": "ميرش!", "modeArcadeText": "وضع اللهو", "modeClassicText": "الوضع التقليدي", "modeDemoText": "الوضع التجريبي", + "moreSoonText": "سيأتي أكثر قريباً...", + "mostDestroyedPlayerText": "اللاعب الأكثر تضرراً", "mostValuablePlayerText": "أفضل لاعب", "mostViolatedPlayerText": "اللاعب الأكثر انتهاكاً", "mostViolentPlayerText": "أعنف اللاعبين", @@ -1061,7 +1094,8 @@ "nameSuicideKidFriendlyText": "${NAME} توفي عن طريق الخطأ.", "nameSuicideText": "${NAME} انتحر.", "nameText": "اسم", - "nativeText": "محلي", + "nativeText": "الدقة الأساسية", + "newExclaimText": "!جديد", "newPersonalBestText": "أفضل شخصية جديدة!", "newTestBuildAvailableText": "يتوفر اختبار اختبار أحدث! (${VERSION} بناء ${BUILD}).\nاحصل على ${ADDRESS}", "newText": "الجديد", @@ -1072,6 +1106,7 @@ "noContinuesText": "(لا يستمر)", "noExternalStorageErrorText": "لم يتم العثور على وحدة تخزين خارجية على هذا الجهاز", "noGameCircleText": "خطأ: لم يتم تسجيل الدخول الئ gamecircle", + "noMessagesText": "لا رسائل", "noPluginsInstalledText": "لا إضافات مثبتة", "noScoresYetText": "لا نقاط حتى الآن.", "noServersFoundText": "لا توجد اي سيرفرات.", @@ -1080,18 +1115,22 @@ "noValidMapsErrorText": "لا خرائط صالحة وجدت لهذا النوع اللعبة.", "notEnoughPlayersRemainingText": "لا يكفي اللاعبين المتبقين؛ الخروج وبدء لعبة جديدة.", "notEnoughPlayersText": "تحتاج على الأقل ${COUNT} لاعبين لبدء هذه اللعبة!", + "notEnoughTicketsText": "ليست تذاكر كافية!", "notNowText": "ليس الآن", - "notSignedInErrorText": "يجب ان تسجل الدخول لتفعل هذا", + "notSignedInErrorText": "سجّل الدخول بحساب للدخول لهذا.", "notSignedInGooglePlayErrorText": "عليك تسجيل الدخول لجوجل بلاي لتفعل هذا", - "notSignedInText": "لم تقم بتسجيل الدخول", + "notSignedInText": "أنت غير مُسجَّل", "notUsingAccountText": "ملاحظة: حساب ${SERVICE} متجاهل.\nقم بالتوجه الى 'الحساب -> تسجيل الدخول بواسطة ${SERVICE}' اذا اردت استعماله.", "nothingIsSelectedErrorText": "لا شئ تم اختياره!", "numberText": "#${NUMBER}", "offText": "إيقاف", - "okText": "حسنا", + "okText": "حسناً", "onText": "تشغيل", "oneMomentText": "لحظة واحدة...", "onslaughtRespawnText": "${PLAYER} سيخرج مجددا في الموجة ${WAVE}", + "openMeText": "افتحني!", + "openNowText": "افتح الآن", + "openText": "افتح", "orText": "${A} أو ${B}", "otherText": "آخر...", "outOfText": "(#${RANK} خرج من ${ALL})", @@ -1102,23 +1141,23 @@ "emptyText": "حفلتك فارغة", "hostText": "(مضيف)", "sendText": "إرسال", - "titleText": "الحفلة الخاصة بك" + "titleText": "مُلَاعَبَتُك" }, "pausedByHostText": "(متوقف مؤقتا من قبل المضيف )", "perfectWaveText": "المرحله المثالية", "pickUpText": "إلتقط", "playModes": { - "coopText": "اللعب التعاوني", - "freeForAllText": "الحرية-للجميع", - "multiTeamText": "فرق متعددة", - "singlePlayerCoopText": "لعب فردي / لعب تعاوني", - "teamsText": "فرق" + "coopText": "تَعاوُني", + "freeForAllText": "فَردانية جماعية", + "multiTeamText": "فِرَق", + "singlePlayerCoopText": "اللعب ضد الآلة(فرديًا أو تعاونيًا)", + "teamsText": "فريقين" }, - "playText": "لعب", + "playText": "أشكال اللعب", "playWindow": { - "oneToFourPlayersText": "1-4 لاعبين", - "titleText": "إلعب", - "twoToEightPlayersText": "2-8 لاعبين" + "oneToFourPlayersText": "١-٤ لاعبين", + "titleText": "اِلعب", + "twoToEightPlayersText": "٢-٨ لاعبين" }, "playerCountAbbreviatedText": "${COUNT}p", "playerDelayedJoinText": "${PLAYER} سيدخل ببداية الجولة القادمة", @@ -1127,29 +1166,29 @@ "playerLimitReachedText": "حد اللاعب ${COUNT} وصل", "playerProfilesWindow": { "cantDeleteAccountProfileText": "لايمكنك حذف حساب الملف الشخصي الخاص بك", - "deleteButtonText": "حذف\nالملف الشخصي", - "deleteConfirmText": "حذف '${PROFILE}'?", - "editButtonText": "تعديل\nالملف الشخصي", - "explanationText": "(اللاعب المخصص و المباراة لهذا الحساب)", - "newButtonText": "ملف شخصي\nجديد", - "titleText": "ملفات اللاعب الشخصي" + "deleteButtonText": "احذف\nالمُعرِف", + "deleteConfirmText": "؟'${PROFILE}' حذف", + "editButtonText": "عدِّل\nالمُعرِّف", + "explanationText": "(هذه هي الاسماء والمظاهر التي ستظهر بها للآخرين وتُحفَظ في حسابك)", + "newButtonText": "أنشئ\nمُعرِّفًا", + "titleText": "مُعرفات اللاعب" }, "playerText": "لاعب", "playlistNoValidGamesErrorText": "قائمة التشغيل هذه لا تحتوي على ألعاب مفتوحة صالحة", "playlistNotFoundText": "لم يتم العثور على قائمة التشغيل", "playlistText": "قائمة التشغيل", "playlistsText": "قائمة العب", - "pleaseRateText": "يرجى اتخاذ لحظة وتقييمه ${APP_NAME} اذا كنت تستمتع بلعبة\nاو كتابة مراجعة فهاذا يوفر معلومات مفيدة ويوفر التطوير\nفي المستقبل\n\n!شكرًا\nاريك—", - "pleaseWaitText": "الرجاء الانتظار . . .", + "pleaseRateText": "أهلًا!\nإن كنت مستمتعًا بلعب ${APP_NAME} فقيمها على المتجر\nفإن ذلك يحسّن اللعبة ويدعم تطويرها بانتشارها ويسعدنا سماع رأيك.\n\nوشكرًا\n-مطور اللعبة إيريك", + "pleaseWaitText": "انتظر...", "pluginClassLoadErrorText": "فشل في تشغيل الاضافة '${PLUGIN}': ${ERROR}", "pluginInitErrorText": "خطأ في بدء الاضافة '${PLUGIN}: ${ERROR}", - "pluginSettingsText": "إعدادات الإضافة", - "pluginsAutoEnableNewText": "تفعيل الإضافات الجديدة تلقائياً", + "pluginSettingsText": "إعدادات الإضافات", + "pluginsAutoEnableNewText": "فعِّل الإضافات الجديدة تلقائيًا", "pluginsDetectedText": "تم العثور على اضافات جديدة. اعد التشغيل لتفعيلها، او قم بتخصيصها في الاعدادات.", - "pluginsDisableAllText": "تعطيل كل الإضافات", - "pluginsEnableAllText": "تفعيل كل الإضافات", + "pluginsDisableAllText": "عطِّل كل الإضافات", + "pluginsEnableAllText": "فعِّل كل الإضافات", "pluginsRemovedText": "${NUM} لم تعد الاضافة موجودة.", - "pluginsText": "اضافات", + "pluginsText": "الإضافات والتعديلات", "practiceText": "تدريب", "pressAnyButtonPlayAgainText": "اضغط اي زر للعب مجددا...", "pressAnyButtonText": "اضغط أي زر للاستمرار...", @@ -1177,10 +1216,12 @@ "punchText": "لكمة", "purchaseForText": "${PRICE} إشتري اللعبة", "purchaseGameText": "إشتري اللعبة", + "purchaseNeverAvailableText": "عذرًا، المشتريات غير متوفرة في هذا الإصدار.\n حاول تسجيل الدخول إلى حسابك على منصة أخرى وإجراء عمليات شراء من هناك.", + "purchaseNotAvailableText": "عملية الشراء غير متوفرة", "purchasingText": "شراء...", "quitGameText": "خروج ${APP_NAME}?", "quittingIn5SecondsText": "جار الإقلاع خلال 5 ثوان ...", - "randomPlayerNamesText": "الأسماء الافتراضية", + "randomPlayerNamesText": "سويلم, هوازن, عود الحشى, ليلى, ديجور الليل, سارة, ضرغام, قطر الندى, قُطُز, الحسناء, تميم, السيف المهند, تمر, لؤلؤة, امرؤ القيس, زُهير, عدنان, الأحنف, السُلَيك, عنترة, أمير الصعاليك, سيبويه, عُروة, قُمري, زرزور, قيقب, جليبيب, حنظلة العدا, سكاكر, ياسمين, ملآن, جيّان, سليم, ليان, وردة المحبين, الفاتنة, العذراء, الخنساء, صخرة الوادي, الجوزاء, قُنبُل, صخر, إكليل الجبل, تماضر, تأبط شرًّا, فتّاك, راعية الفتنة, جرير, جسّاس, جميلة بنت جميل, زهران, الطائر الصدوح, الطائر بن لا أحد, غالب, دوحة, ديمة, وردة الوادي, رونقة المحبين, سكرة المحبين, جميلة النساء, المؤنسة, المهرة, الحُلوة, صهيب, فستق, موزة, عين السيح, لؤلؤ, جوهرة, لولو, الجميلة, وردة البستان, العنقاء, الشعرى اليمانية, سنونو شاحب الزور, الكريهة, الدرة المكنونة, سمكة النهر, سمسم, روعة, الدعسوقة, خنفساء, لجين, جيدانة, كلكع بن مُلكلع, سيف الدولة, وسوسة بنت موسوس, ابنة النهر, سُكَامة, سمرقند, زُحلوقة, عبير", "randomText": "عشوائي", "rankText": "مرتبة", "ratingText": "تقييم", @@ -1200,7 +1241,7 @@ "disconnected": "قطع الاتصال من السيرفر.", "dpad_fixed": "تم الاصلاح", "dpad_floating": "يطفو على السطح", - "dpad_position": "D- الوسادة الموقف", + "dpad_position": "D-Pad Position", "dpad_size": "قياس اللوحة", "dpad_type": "D- الوسادة نوع", "enter_an_address": "أدخل عنوانا", @@ -1215,9 +1256,10 @@ "searching": "جار البحث عن ألعاب بومبسكاد ...", "searching_caption": "اضغط على اسم لعبة للانضمام إليه.\nتأكد من أنك على نفس شبكة واي فاي مثل اللعبة.", "start": "بداية", - "version_mismatch": ".الإصداران لا يتطابقان\nتأكد من أن فرقة القنبلة و فرقة القنبلة للتحكم عن بعد\n.تم تحديثهما لآخر إصدار وحاول مجددًا" + "version_mismatch": "رقمي الإصدار لا يتطابقان\nتأكد أن رقم إصدار قُنبلاء وحاكوم قنبلاء\nبنفس رقم الإصدار ثم حاول ثانية." }, - "removeInGameAdsText": "إلغاء تأمين \"${PRO}\" في المتجر لإزالة الإعلانات داخل اللعبة.", + "removeInGameAdsText": ".من المتجر \"${PRO}\"إن أردت التخلص من هذه الإعلانات المزعجة فاشترك في", + "removeInGameAdsTokenPurchaseText": "عرض محدود: ادفع اي حزمة نقود لكي تزيل الاعلانات داخل اللعبة.", "renameText": "إعادة تسمية", "replayEndText": "نهاية الإعادة", "replayNameDefaultText": "إعادة اللعبة الأخيرة", @@ -1251,52 +1293,58 @@ }, "scoreWasText": "(كان ${COUNT})", "selectText": "اختيار", + "sendInfoDescriptionText": "ما سترسله سيرسل معه بيانات التطبيق والجهاز للمطور.\nيُرجى منك كتابة اسمك وسبب الإرسال.", "seriesWinLine1PlayerText": "الفوز", "seriesWinLine1TeamText": "الفوز", "seriesWinLine1Text": "الفوز", "seriesWinLine2Text": "سلسلة", "settingsWindow": { "accountText": "الحساب", - "advancedText": "المتقدمة", - "audioText": "صوت", - "controllersText": "التحكم", - "graphicsText": "رسوميات", + "advancedText": "الإعدادات الأخرى", + "audioText": "الأصوات", + "controllersText": "المُتَحكِمات", + "graphicsText": "المرئيات", "playerProfilesMovedText": "ملاحظة: انتقلت ملفات تعريف اللاعب إلى نافذة الحساب في القائمة الرئيسية.", - "titleText": "اعدادات" + "titleText": "الإعدادات" }, "settingsWindowAdvanced": { - "alwaysUseInternalKeyboardDescriptionText": "(بسيطة، وحدة تحكم ودية على الشاشة لوحة المفاتيح لتحرير النص)", - "alwaysUseInternalKeyboardText": "استخدم لوحة المفاتيح الداخلية دائما", - "benchmarksText": "المعايير و الإجهاد الاختبارات", - "disableCameraGyroscopeMotionText": "تعطيل الكاميرا جيروسكوب الحركة", + "alwaysUseInternalKeyboardDescriptionText": "(مُدمَجة ضمن اللعبة، جميلة، ويسهل استعمالها مع الأذرع، ولا تدعم العربية)", + "alwaysUseInternalKeyboardText": "استعمل لوحة المفاتيح المدمجة باللعبة", + "benchmarksText": "اختبارات الأداء", + "devToolsText": "أدوات المطورين", + "disableCameraGyroscopeMotionText": "تعطيل حركه الجيروسكوب للكاميرا", "disableCameraShakeText": "تعطيل اهتزاز الكاميرا", "disableThisNotice": "(يمكنك تعطيل هذا الإشعار في الإعدادات المتقدمة)", "enablePackageModsDescriptionText": "(تمكن قدرات التعديل الإضافية ولكن تعطيل شبكة اللعب)", "enablePackageModsText": "تمكين تعديل الحزمة المحلية", "enterPromoCodeText": "ادخل الرمز", - "forTestingText": "ملاحظة: هذه القيم هي فقط للاختبار وسيتم فقدانها عند خروج التطبيق.", - "helpTranslateText": "ترجمات ${APP_NAME} بلغات أخرى غير الإنجليزية هي جهود تعاونية مدعومة من قبل المجتمع.\nإذا كنت ترغب في المساهمة أو تصحيح ترجمة معينة، يرجى اتباع الرابط أدناه.\nشكرًا لك مقدمًا!", - "kickIdlePlayersText": "طرد اللاعبين غير النشطين", + "forTestingText": "اعلم: أن الأرقام التي تعدلها هنا لن تحفظ، وإنما عدل هذه الأرقام لتُجرب", + "helpTranslateText": "ترجمات ${APP_NAME} اللاإنجليزية هي اجتهاد مجتمع مترجمي\nكل لغة. فإن كنت تريد المُساهمة في الترجمة وتصحيحها فانقر على\nالزر بالأسفل والذي سيوجهك لرابط الترجمان. هذا وكان سعيكم مشكورًا!", + "insecureConnectionsDescriptionText": "غير موصى به، لكن قد يسمح باللعب عبر الإنترنت\nمن البلدان أو الشبكات المقيدة", + "insecureConnectionsText": "استخدم الاتصالات غير الآمنة", + "kickIdlePlayersText": "اطرد اللاعبين الخاملين", "kidFriendlyModeText": "وضع الأطفال (يقلل العنف، إلخ)", - "languageText": "لغة", - "moddingGuideText": "دليل التعديلات البرمجية", - "moddingToolsText": "أدوات التعديلات البرمجية", - "mustRestartText": ".يجب أن تقوم بإعادة تشغيل اللعبة لكي يعمل هذا", - "netTestingText": "اختبار الشبكة", - "resetText": "إعادة تعيين", + "languageText": "اللغة", + "moddingGuideText": "مرشد تصميم الإضافات", + "moddingToolsText": "أدوات التعديل", + "mustRestartText": "ليعمل هذا أغلق اللعبة وافتحها ثانية.", + "netTestingText": "اختبار الشبكة/الاتصال", + "resetText": "إعادة للأصل", + "sendInfoText": "إرسال بيانات", "showBombTrajectoriesText": "عرض مسارات القنبلة", - "showDemosWhenIdleText": "عرض العروض التوضيحية عند الخمول", - "showDevConsoleButtonText": "إظهار زر وحدة تحكم المطورين", - "showInGamePingText": "عرض التأخير الداخلي للعبة", + "showDemosWhenIdleText": "شغل شروحات اللعب عندما أخمل", + "showDeprecatedLoginTypesText": "أظهر أنواع تسجيلات الدخول القديمة", + "showDevConsoleButtonText": "أظهر زر فتح طرفية الأوامر", + "showInGamePingText": "أظهر سرعة الاتصال أثناء اللعب", "showPlayerNamesText": "إظهار اسماء اللاعبين", - "showUserModsText": "عرض مجلد التعديل", - "titleText": "المتقدمة", - "translationEditorButtonText": "${APP_NAME} محرر الترجمة", + "showUserModsText": "أخبرني بمكان إضافة التعديلات", + "titleText": "المزيد", + "translationEditorButtonText": "أداة ترجمة ${APP_NAME}", "translationFetchErrorText": "حالة الترجمة غير متاحة", - "translationFetchingStatusText": "جار التحقق من حالة الترجمة ...", - "translationInformMe": "ابلغني عندما تحتاج لغتي للتحديث", - "translationNoUpdateNeededText": "!اللُّغة العربية حتى الآن محدثة، هنيئًا لك", - "translationUpdateNeededText": "** !!اللُّغة الحالية بحاجةٍ إلى تحديث **", + "translationFetchingStatusText": "يُتحقق من حال الترجمة...", + "translationInformMe": "أبلغني برسالة عندما تحتاج العربية لتحديث", + "translationNoUpdateNeededText": "العربية محدثة، مرحى يا أخا العرب !", + "translationUpdateNeededText": "** العربية بحاجةٍ إلى تحديث لتحسينها **", "vrTestingText": "تجربة الواقع الإفتراضي" }, "shareText": "شارك", @@ -1323,7 +1371,7 @@ "Hockey": "الهوكي", "Keep Away": "ابتعد", "Marching": "يركض حول", - "Menu": "القائمة الرئيسية", + "Menu": "قائمة اللعبة", "Onslaught": "هجوم", "Race": "سباق", "Scary": "ملك التل", @@ -1334,25 +1382,26 @@ }, "spaceKeyText": "مسافة", "statsText": "النتائج", + "stopRemindingMeText": "توقف عن تذكيري", "storagePermissionAccessText": "وهذا يتطلب الوصول إلى التخزين", "store": { "alreadyOwnText": "!${NAME}أنت بالفعل تملك", - "bombSquadProNameText": "للمحترفين ${APP_NAME}", - "bombSquadProNewDescriptionText": "يزيل الإعلانات في اللعبة والشاشات المزعجة •\nيفتح المزيد من إعدادات اللعبة •\n:يتضمن هذا العرض أيضًا •", + "bombSquadProNameText": "${APP_NAME} الذهبية", + "bombSquadProNewDescriptionText": "• تفتح الكثير من الإعدادات والأشياء\n• تزيل الإعلانات والإزعاجات\nوستأخذ مع اشتراكك:", "buyText": "شراء", "charactersText": "الشخصيات", "comingSoonText": "قريبا...", - "extrasText": "إضافات", + "extrasText": "أخرى", "freeBombSquadProText": "فرقة القنبلة الآن أصبحت مجانية، لكن بما أنك اشتريتها\nبطاقات كشكر لك ​${COUNT} ستتلقى فرقة القنبلة القنبلة للمحترفين و\n!استمتع بالميزات الجديدة، وشكرًا لدعمك\n-إيريك", "holidaySpecialText": "خاص بالعطل", - "howToSwitchCharactersText": "(توجه الى \"${SETTINGS} -> ${PLAYER_PROFILES}\" لتخصيص الشخصيات)", - "howToUseIconsText": "(إنشاء ملفات تعريف لاعب العالمية (في إطار الحساب) لاستخدام هذه)", - "howToUseMapsText": "(استخدم هذه الخرائط في فرقك الخاصة / قوائم التشغيل المجانية للجميع)", - "iconsText": "رموز", + "howToSwitchCharactersText": "(${PLAYER_PROFILES} <- ${SETTINGS}لتغيير شخصيتك وتلوينها انتقل لـ)", + "howToUseIconsText": "(انشئ مُعرِّف عالمي لإضافة هذه لمظهر مُعرِّفك في الحساب)", + "howToUseMapsText": "(يمكنك استعمال هذه الأماكن في قوائم ألعابك التي أنشئتها)", + "iconsText": "الشارات", "loadErrorText": "تعذر تحميل الصفحة.\nتحقق من اتصالك بالإنترنت.", "loadingText": "جار التحميل", - "mapsText": "خرائط", - "miniGamesText": "ألعاب مصغرة", + "mapsText": "أماكن", + "miniGamesText": "اللُعَيبات", "oneTimeOnlyText": "(مرة واحدة فقط)", "purchaseAlreadyInProgressText": "هناك شراء لهذا العنصر قيد التقدم.", "purchaseConfirmText": "هل تريد شراء ${ITEM}؟", @@ -1364,21 +1413,21 @@ "saleText": "تخفيض السعر", "searchText": "بحث", "teamsFreeForAllGamesText": "فرق / مجانا للجميع الألعاب", - "totalWorthText": "*** ${TOTAL_WORTH} قيمة! ***", - "upgradeQuestionText": "ترقية؟", - "winterSpecialText": "عرض الشتاء", + "totalWorthText": "( !${TOTAL_WORTH} ما يعادل )", + "upgradeQuestionText": "هلّا اشتركت؟", + "winterSpecialText": "معروض الشتاء", "youOwnThisText": "- انت تملك هذا -" }, "storeDescriptionText": "لعبة لأكثر من 8 لاعبين!\n\nالعب مع اصدقائك (او الحاسوب) في بطولات من الميني جيمز المتفجرة كــإمساك بالعلم، الهوكي و المعركة البطيئة!\n\nتحكم بسيط و لعب باجهزة تحكم يجعلها سهلة لأكثر من 8 لاعبين ليدخلو المعركة; تستطيع ايضا استعمال اجهزة الهاتف كاجهزة تحكم من خلال التطبيق المجاني 'BombSquad Remote' !\n\nوقت رمي القنابل!\n\nتفقد www.froemling.net/bombsquad للمزيد من المعلومات.", "storeDescriptions": { "blowUpYourFriendsText": ".فجر أصدقائك", "competeInMiniGamesText": "تنافس في الألعاب المصغرة بدءا من السباق للطيران.", - "customize2Text": "تخصيص الشخصيات، الألعاب المصغرة، وحتى الموسيقى التصويرية.", + "customize2Text": "تخصيص الشخصيات، الألعاب المصغرة، وحتى مسارات الصوت.", "customizeText": "تخصيص الشخصيات وإنشاء قوائم التشغيل الخاصة بك لعبة صغيرة.", "sportsMoreFunText": "الرياضة أكثر متعة مع المتفجرات.", "teamUpAgainstComputerText": ".قم بالتعاون كفريق ضد الحاسوب" }, - "storeText": "متجر", + "storeText": "المتجر", "submitText": "ارسال", "submittingPromoCodeText": "تقديم الكود ...", "successText": "نجحت!", @@ -1392,20 +1441,35 @@ "testBuildValidatedText": "اختبار بناء تم التحقق منه؛ استمتع!", "thankYouText": "شكرا لدعمكم! استمتع باللعبة!!", "threeKillText": "القتل الثلاثي", + "ticketsDescriptionText": "يمكنك استخدام التذاكر لتقوم بإلغاء قفل الشخصيات، الخرائط، الألعاب المصغرة، و اكثر في المتجر.\n\nباستطاعتك العثور على التذاكر في الكنوز التي يتم كسبها في الحملات، البطولات، و الانجازات.", "timeBonusText": "مكافأة الوقت", "timeElapsedText": "الوقت المنقضي", "timeExpiredText": "انتهى الوقت", - "timeSuffixDaysText": "${COUNT}ي", - "timeSuffixHoursText": "${COUNT}س", - "timeSuffixMinutesText": "${COUNT}د", - "timeSuffixSecondsText": "${COUNT}ث", + "timeSuffixDaysText": "ي ${COUNT}", + "timeSuffixHoursText": "س ${COUNT}", + "timeSuffixMinutesText": "د ${COUNT}", + "timeSuffixSecondsText": "ث ${COUNT}", "tipText": "تلميح", - "titleText": "فرقة القنبلة", - "titleVRText": "فرقة القنبلة وا", + "titleText": "فرقه القنبله", + "titleVRText": "VR فرقه القنبله", + "tokens": { + "getTokensText": "احصل على التوكنز", + "notEnoughTokensText": "!التوكنز غير كافية", + "numTokensText": "توكنز ${COUNT}", + "openNowDescriptionText": "انت تملك توكينز تكفي\nلفتح هذا الآن - انت لا\nتحتاج للإنتظار", + "shinyNewCurrencyText": "عملة فرقة القنبلة اللماعة الجديدة.", + "tokenPack1Text": "حزمة التوكن الصغيرة", + "tokenPack2Text": "حزمة التوكن المتوسطة", + "tokenPack3Text": "حزمة التوكن الكبيرة", + "tokenPack4Text": "حزمة التوكن جامبو", + "tokensDescriptionText": "التوكنز يمكن استخدامها في عدة أغراض ، وهي تسريع وقت فتح الكنوز و لأغراض و ميزات اخرى في اللعبة و الحساب الشخصي أيضاً.\n\nيمكنك أن تفوز التوكنز في اللعبة أو تشتريهم في حزم. أو تقوم بشراء (البطاقة الذهبية) للحصول على عدد لا نهائي منها.", + "youHaveGoldPassText": ".Gold Pass أنت لديك\n.جميع عمليات شراء التوكن مجانية\n!استمتع" + }, "topFriendsText": "أفضل الأصدقاء", "tournamentCheckingStateText": "التحقق من حالة البطولة. أرجو الإنتظار...", "tournamentEndedText": "انتهت هذه البطولة. وسوف تبدأ واحدة جديدة قريبا.", "tournamentEntryText": "دخول البطولة", + "tournamentFinalStandingsText": "الترتيب النهائي", "tournamentResultsRecentText": "نتائج البطولة الأخيرة", "tournamentStandingsText": "ترتيب البطولة", "tournamentText": "المسابقة", @@ -1414,32 +1478,32 @@ "tournamentsText": "البطولات", "translations": { "characterNames": { - "Agent Johnson": "العميل جونسون", + "Agent Johnson": "جسّاس", "B-9000": "B-9000", "Bernard": "بيرنارد", - "Bones": "هيكل عظمي", + "Bones": "المُغضّرف", "Butch": "بوتش", "Easter Bunny": "أرنب عيد الفصح", "Flopsy": "فلوبسي", - "Frosty": "فروستي", + "Frosty": "ثُلجلج", "Gretel": "جريتل", "Grumbledorf": "الساحر", - "Jack Morgan": "جاك مورجان (قرصان)", - "Kronk": "كرونك", + "Jack Morgan": "القُبطان", + "Kronk": "صخر", "Lee": "لي", "Lucky": "سعيد الحظ", - "Mel": "ميل", + "Mel": "الطبّاخ", "Middle-Man": "الرجل المتوسط", "Minimus": "أدنى لا", - "Pascal": "پاسكال", - "Pixel": "بيكسل", + "Pascal": "بطريق", + "Pixel": "سكاكر", "Sammy Slam": "سامي سلام", "Santa Claus": "سانتا كلوس", "Snake Shadow": "نينجا", "Spaz": "سپاز", "Taobao Mascot": "ماسكوت تاوباو", "Todd McBurton": "تود بيرتون", - "Zoe": "زوي", + "Zoe": "فُستُق", "Zola": "زولا" }, "coopLevelNames": { @@ -1461,18 +1525,30 @@ "Uber Onslaught": "هجمة غزيرة", "Uber Runaround": "جولة جري غزيرة" }, + "displayItemNames": { + "${C} Tickets": "${C} تذاكر", + "${C} Tokens": "${C} توكنز", + "Chest": "كنز", + "L1 Chest": "كنز L1", + "L2 Chest": "كنز L2", + "L3 Chest": "كنز L3", + "L4 Chest": "كنز L4", + "L5 Chest": "كنز L5", + "L6 Chest": "كنز L6", + "Unknown Chest": "كنز غير معروف" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "يكون اختيار واحد لفترة من الوقت للفوز.\nقتل اختيار واحد لتصبح عليه.", - "Bomb as many targets as you can.": "فجر أكبر عدد من الأهداف على قدر استطاعتك.", + "Bomb as many targets as you can.": "ارمِ قنابلك نحو الأهداف.", "Carry the flag for ${ARG1} seconds.": "حمل العلم مقابل ${ARG1} ثانية.", "Carry the flag for a set length of time.": "احمل العلم لمدة محددة من الزمن", "Crush ${ARG1} of your enemies.": "سحق ${ARG1} من أعدائك.", "Defeat all enemies.": "هزيمة جميع الأعداء.", - "Dodge the falling bombs.": "تفادى القنابل.", + "Dodge the falling bombs.": "تفادى الشُهُب القنبلية من السماء.", "Final glorious epic slow motion battle to the death.": "آخر معركة ملحمية بطيئة حتى الموت.", "Gather eggs!": "جمع البيض!", "Get the flag to the enemy end zone.": "الحصول على العلم إلى المنطقة نهاية العدو.", - "How fast can you defeat the ninjas?": "كم من الوقت ستحتاج لهزيمة النينجا؟", + "How fast can you defeat the ninjas?": "اقض على المقاتلين والرماة بسرعة", "Kill a set number of enemies to win.": "قتل عدد معين من الأعداء للفوز.", "Last one standing wins.": "آخر واحد يبقى يفوز.", "Last remaining alive wins.": "آخر شخص يبقى حياً يفوز", @@ -1528,13 +1604,13 @@ "Hockey": "الهوكي", "Keep Away": "ابتعد", "King of the Hill": "ملك التل", - "Meteor Shower": "دش النيازك", + "Meteor Shower": "مزلج الشُهب", "Ninja Fight": "قتال النينجا", "Onslaught": "هجوم", - "Race": "السباق", - "Runaround": "يركض حول", - "Target Practice": "الممارسة المستهدفة", - "The Last Stand": "الموقف الأخير" + "Race": "سباق", + "Runaround": "السباق الدوراني", + "Target Practice": "مرحله تدريبيه: رمي القنابل", + "The Last Stand": "الوقفه الاخيره" }, "inputDeviceNames": { "Keyboard": "لوحة المفاتيح", @@ -1544,40 +1620,46 @@ "Arabic": "العربية", "Belarussian": "البيلاروسية", "Chinese": "الصينية المبسطة", - "ChineseTraditional": "التقليدية الصينية", + "ChineseSimplified": "الصين - مبسط", + "ChineseTraditional": "الصين - تقليدي", "Croatian": "الكرواتية", - "Czech": "تشيكي", - "Danish": "دانماركي", - "Dutch": "هولندي", + "Czech": "التشيكية", + "Danish": "الدنماركية", + "Dutch": "الهولندية", "English": "الإنجليزية", "Esperanto": "الاسبرانتو", "Filipino": "الفلبينية", "Finnish": "اللغة الفنلندية", "French": "الفرنسية", "German": "الألمانية", - "Gibberish": "رطانة", + "Gibberish": "الإنجليزية التجريبية", "Greek": "الإغريقية", "Hindi": "الهندية", "Hungarian": "الهنغارية", "Indonesian": "الأندونيسية", - "Italian": "الإيطالي", + "Italian": "الإيطالية", "Japanese": "اليابانية", "Korean": "الكورية", "Malay": "لغة الملايو", - "Persian": "اللغة الفارسية", - "Polish": "البولندي", + "Persian": "الفارسية", + "PirateSpeak": "لغة القراصنة", + "Polish": "البولندية", "Portuguese": "البرتغالية", - "Romanian": "روماني", + "PortugueseBrazil": "برتغالية - برازيلية", + "PortuguesePortugal": "البرتغاليه - البرتغال", + "Romanian": "الرومانية", "Russian": "الروسية", "Serbian": "الصربية", "Slovak": "السلوفاكية", "Spanish": "الإسبانية", - "Swedish": "اللغة السويدية", - "Tamil": "اللغةالتاميلية", - "Thai": "تايلاندي", - "Turkish": "اللغة التركية", - "Ukrainian": "الأوكراني", - "Venetian": "فينيسي", + "SpanishLatinAmerica": "اسبانيا - امريكا لاتينا", + "SpanishSpain": "الاسبانية - إسبانيا", + "Swedish": "السويدية", + "Tamil": "التاميلية", + "Thai": "التايلاندية", + "Turkish": "التركية", + "Ukrainian": "الأوكرانية", + "Venetian": "البندقية", "Vietnamese": "الفيتنامية" }, "leagueNames": { @@ -1636,6 +1718,7 @@ "Cheating detected; scores and prizes suspended for ${COUNT} days.": "الغش الكشف عنها. تم تعليق العشرات والجوائز لمدة ${COUNT} من الأيام.", "Could not establish a secure connection.": "تعذر إنشاء اتصال آمن.", "Daily maximum reached.": "الحد الأقصى اليومي الذي تم الوصول إليه.", + "Daily sign-in reward": "جائزة تسجيل الدخول اليومي", "Entering tournament...": "جار دخول البطولة ...", "Invalid code.": "الرمز غير صحيح.", "Invalid payment; purchase canceled.": "دفعة غير صالحة؛ تم إلغاء الشراء.", @@ -1645,11 +1728,14 @@ "Item unlocked!": "العنصر غير مقفلة!", "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "ربط مرفوض. ${ACCOUNT} يحتوي علي\nبيانات كبيرة والتي سيتم فقدانها.\nتستطيع الربط بالامر المعاكس اذا احببت\n(و فقدان بيانات هذا الحساب بالمقابل)", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "هل تريد ربط الحساب ${ACCOUNT} بهذا الحساب؟\nسيتم فقد جميع البيانات الموجودة في ${ACCOUNT}.\nهذا لا يمكن التراجع عنها. هل أنت واثق؟", + "Longer streaks lead to better rewards.": "الستريك الأطول يقود الى جائزة أفضل", "Max number of playlists reached.": "تم الوصول إلى أقصى عدد من قوائم التشغيل.", "Max number of profiles reached.": "تم الوصول إلى أقصى عدد من الملفات الشخصية.", "Maximum friend code rewards reached.": "تم الوصول إلى الحد الأقصى لمكافآت الرمز الصديق.", "Message is too long.": "الرسالة طويلة جدا", + "New tournament result!": "نتيجة بطولة جديدة!", "No servers are available. Please try again soon.": "لا توجد خوادم متاحة. من فضلك حاول لاحقا", + "No slots available. Free a slot and try again.": "لا يوجد اماكن فارغة متاحة. فرّغ فتحة وحاول مجدداً.", "Profile \"${NAME}\" upgraded successfully.": "تمت ترقية الملف الشخصي \"${NAME}\" بنجاح.", "Profile could not be upgraded.": "تعذر ترقية الملف الشخصي.", "Purchase successful!": "تم الشراء بنجاح!", @@ -1659,7 +1745,9 @@ "Sorry, this code has already been used.": "عذرا، تم استخدام هذه الشفرة من قبل.", "Sorry, this code has expired.": "عذرا، انتهت صلاحية هذا الرمز.", "Sorry, this code only works for new accounts.": "عذرا، لا تعمل هذه الشفرة إلا لحسابات جديدة.", + "Sorry, this has expired.": "عذراً، لقد تم انتهاء صلاحية هذا.", "Still searching for nearby servers; please try again soon.": "يزال البحث عن سيرفرات قريبة; من فضلك كرر المحاولة لاحقا", + "Streak: ${NUM} days": "الستريك: ${NUM} الأيام", "Temporarily unavailable; please try again later.": "غير متاح مؤقتا؛ الرجاء معاودة المحاولة في وقت لاحق.", "The tournament ended before you finished.": "انتهت البطولة قبل الانتهاء.", "This account cannot be unlinked for ${NUM} days.": "لا يمكن إلغاء ربط هذا الحساب بمبلغ ${NUM} من الأيام.", @@ -1670,19 +1758,28 @@ "Tournaments require ${VERSION} or newer": "تتطلب الدورات ${VERSION} أو أحدث", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "هل تريد إلغاء ربط ${ACCOUNT} من هذا الحساب؟\nسيتم إعادة تعيين جميع البيانات على ${ACCOUNT}.\n(باستثناء الإنجازات في بعض الحالات)", "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "تحذير: تم إصدار شكاوى تتعلق بالقرصنة ضد حسابك.\nسيتم حظر الحسابات التي تم العثور عليها عن طريق القرصنة. يرجى لعب عادل.", + "Wait reduced!": "قلل الانتظار!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "تحذير: هذه النسخة من اللعبة تقتصر على بيانات الحساب القديمة؛ قد تظهر بعض الأشياء مفقودة أو قديمة.\nيرجى الترقية إلى إصدار أحدث من اللعبة لرؤية بيانات حسابك الأخيرة.", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "هل تريد ربط حساب الجهاز بهذا الحساب؟\n\nحساب الجهاز هو ${ACCOUNT1}\nهذا الحساب هو ${ACCOUNT2}\n\nهذا سيسمح لك للحفاظ على التقدم المحرز الخاص بك.\nتحذير: لا يمكن التراجع عن ذلك!", "You already own this!": "كنت تملك هذا بالفعل!", "You can join in ${COUNT} seconds.": "يمكنك الانضمام في ${COUNT} ثانية.", "You don't have enough tickets for this!": "ليس لديك ما يكفي من تذاكر لهذا!", "You don't own that.": "أنت لا تملك ذلك.", "You got ${COUNT} tickets!": "لقد حصلت على تذاكر ${COUNT}!", + "You got ${COUNT} tokens!": "لقد حصلت على ${COUNT}توكنز!", "You got a ${ITEM}!": "لقد حصلت على ${ITEM}!", + "You got a chest!": "حصلت على كنز!", + "You got an achievement reward!": "لقد حصلت على جائزة إنجاز!", "You have been promoted to a new league; congratulations!": "لقد تم ترقيتك إلى الدوري الجديد. تهانينا!", + "You lost a chest! (All your chest slots were full)": "خسرت كنز! (كل فتحات الكنوز كانت ممتلئة)", + "You must update the app to view this.": "يجب عليك تحديث التطبيق لمشاهدة هذا", "You must update to a newer version of the app to do this.": "يجب تحديث إلى إصدار أحدث من التطبيق للقيام بذلك.", "You must update to the newest version of the game to do this.": "يجب عليك التحديث إلى الإصدار الأحدث من اللعبة للقيام بذلك.", "You must wait a few seconds before entering a new code.": "يجب الانتظار بضع ثوان قبل إدخال رمز جديد.", + "You placed #${RANK} in a tournament!": "لقد وضعت #${RANK} في بطولة!", "You ranked #${RANK} in the last tournament. Thanks for playing!": "لقد حصلت على الترتيب # ${RANK} في البطولة الأخيرة. شكرا للعب!", "Your account was rejected. Are you signed in?": "لقد حُذف حسابك.هل قمت بتسجيل دخولك?", + "Your ad views are not registering. Ad options will be limited for a while.": "لم يتم تسجيل مشاهداتك للإعلان. خيارات الإعلان سيكون محدود لفترة من الوقت", "Your copy of the game has been modified.\nPlease revert any changes and try again.": "تم تعديل نسختك من اللعبة.\nيرجى إعادة أي تغييرات وإعادة المحاولة.", "Your friend code was used by ${ACCOUNT}": "تم استخدام رمز صديقك بواسطة ${ACCOUNT}" }, @@ -1734,9 +1831,9 @@ }, "teamNames": { "Bad Guys": "الأشرار", - "Blue": "ازرق", + "Blue": "الزُرق", "Good Guys": "الأخيار", - "Red": "أحمر" + "Red": "الحُمر" }, "tips": { "A perfectly timed running-jumping-spin-punch can kill in a single hit\nand earn you lifelong respect from your friends.": "A توقيت تماما تشغيل القفز تدور لكمة يمكن أن تقتل في ضربة واحدة\nوكسب لك مدى الحياة الاحترام من أصدقائك.", @@ -1774,45 +1871,45 @@ "The head is the most vulnerable area, so a sticky-bomb\nto the noggin usually means game-over.": "الرأس هو المنطقة الأكثر ضعفا، لذلك قنبلة لزجة\nإلى نوجين يعني عادة لعبة أكثر.", "This level never ends, but a high score here\nwill earn you eternal respect throughout the world.": "هذا المستوى لا تنتهي أبدا، ولكن على درجة عالية هنا\nسوف كسب لك الاحترام الأبدية في جميع أنحاء العالم.", "Throw strength is based on the direction you are holding.\nTo toss something gently in front of you, don't hold any direction.": "وتستند قوة رمي على الاتجاه الذي عقد.\nلإرم شيء برفق أمامك، لا تحمل أي اتجاه.", - "Tired of the soundtrack? Replace it with your own!\nSee Settings->Audio->Soundtrack": "تعبت من الموسيقى التصويرية؟ استبدالها بنفسك!\nانظر إعدادات-> الصوت-> الموسيقى التصويرية", - "Try 'Cooking off' bombs for a second or two before throwing them.": "محاولة 'الطبخ قبالة' القنابل لمدة ثانية أو اثنين قبل رمي لهم.", - "Try tricking enemies into killing eachother or running off cliffs.": "محاولة خداع الأعداء في قتل بعضهم البعض أو الجري المنحدرات.", + "Tired of the soundtrack? Replace it with your own!\nSee Settings->Audio->Soundtrack": "تعبت من الموسيقى اللعبه؟ استبدالها بنفسك!\n ادخل إعدادات-> الصوت-> مسار الصوت", + "Try 'Cooking off' bombs for a second or two before throwing them.": "جرّب تأخير رمي القنبله لثانية أو ثانيتين قبل رميها.", + "Try tricking enemies into killing eachother or running off cliffs.": "حاول خداع الأعداء لجعلهم يقتلون بعضهم البعض أو يسقطون من المنحدرات", "Use the pick-up button to grab the flag < ${PICKUP} >": "استخدم زر البيك اب للاستيلاء على العلم <${PICKUP}", - "Whip back and forth to get more distance on your throws..": "سوط ذهابا وإيابا للحصول على مزيد من المسافة على رميات الخاص بك", - "You can 'aim' your punches by spinning left or right.\nThis is useful for knocking bad guys off edges or scoring in hockey.": "يمكنك 'تهدف' اللكمات الخاصة بك عن طريق الغزل اليسار أو اليمين.\nوهذا مفيد لضرب الأشرار من حواف أو التهديف في الهوكي.", + "Whip back and forth to get more distance on your throws..": "تحرّك ذهابًا وإيابًا للرمي لمسافات ابعد", + "You can 'aim' your punches by spinning left or right.\nThis is useful for knocking bad guys off edges or scoring in hockey.": "يمكنك توجيه ضرباتك عن طريق الدوران إلى اليسار أو اليمين.\nوهذا مفيد لإسقاط الأشرار من الحواف أو لتسجيل الأهداف في رياضة الهوكي.\"", "You can judge when a bomb is going to explode based on the\ncolor of sparks from its fuse: yellow..orange..red..BOOM.": "يمكنك تحديد وقت إنفجار القنبلة بناءً على لون الشرارة المنبعثة من فتيلها:\nأصفر..برتقالي..أحمر ثم بووم.", - "You can throw bombs higher if you jump just before throwing.": "يمكنك رمي القنابل أعلى إذا كنت القفز قبل رمي.", - "You take damage when you whack your head on things,\nso try to not whack your head on things.": "كنت تأخذ الضرر عندما كنت اجتز رأسك على الأشياء،\nوذلك في محاولة لا اجتز رأسك على الأشياء.", + "You can throw bombs higher if you jump just before throwing.": "يمكنك رمي القنابل أعلى إذا كنت تقفز قبل ان ترمي القنابل.", + "You take damage when you whack your head on things,\nso try to not whack your head on things.": "سوف تتلقي اضرار عندما تضرب راسك بالاشياء،\nفحاول انك تتجنب ضرب راسك في اي شي.", "Your punches do much more damage if you are running or spinning.": "لكماتك تؤثر بضرر اكبر اذا كنت تجري او تدور" } }, - "trophiesRequiredText": "جوائز ${NUMBER} هذا يحتاج على الاقل", + "trophiesRequiredText": "من الجوائز ${NUMBER} هذا يحتاج على الاقل", "trophiesText": "الجوائز", "trophiesThisSeasonText": "جوائز هذا الموسم", "tutorial": { "cpuBenchmarkText": "(CPU تشغيل البرنامج التعليمي بالسرعة المثيرة للسخرية (رئيسيا لتجريب سرعة", - "phrase01Text": "!مرحبا", - "phrase02Text": "!${APP_NAME} أهلا بك في", - "phrase03Text": "إليك بعض النصائح للتحكم بشخصيتك", - "phrase04Text": "درست فرقة القنبلة كثيرا من الاشياء فيزيائيا ${APP_NAME}**", - "phrase05Text": "...,على سبيل المثال, عندما تلكم", - "phrase06Text": "الضرر مبني على سرعة لكماتك", - "phrase07Text": "${NAME} كما ترى, نحن لا نتحرك لهذا بالكاد نصيب", - "phrase08Text": "الآن قم بالقفز والدوران لكسب زخم اكثر", + "phrase01Text": "!مرحبا صديقي", + "phrase02Text": "!${APP_NAME} أهلا و سهلا بك في لعبه", + "phrase03Text": "انا هنا لاقدم لك بعض النصائح علشان تتحكم بشخصيتك", + "phrase04Text": "في كثير حاجات في لعبه ${APP_NAME} تعتمد ميكانيكيات الفيزياء.", + "phrase05Text": "...,و كمثال على كلامي, عندما تلكم", + "phrase06Text": "الضرر يكون اقوي على حسب سرعة لكماتك", + "phrase07Text": "${NAME} زي ماتشوف ماتحركنا من مكاننا لهذا السبب ضربتنا لم توثر في", + "phrase08Text": "الآن قم بالقفز والدوران علشان تكتسب سرعة اكبر", "phrase09Text": "!آه هذا أفضل", "phrase10Text": "الجري يساعد ايضا", - "phrase11Text": "استمر في الضغط على اي زر للجري", + "phrase11Text": "استمر في الضغط على اي زر علشان تجري", "phrase12Text": "للحصول على لكمة رائعة اضافية, جرب الجري و الدوران", - "phrase13Text": "${NAME} أوبس؛ اعتذر بشأن هذا يا يا صاح", - "phrase14Text": "${NAME} يمكنك امساك ورمي الاشياء مثل الاعلام .. أو", - "phrase15Text": "أخيرا, هناك القنابل", + "phrase13Text": "${NAME} أوبس؛ اعتذر بشأن هذا يا", + "phrase14Text": "${NAME} يمكنك ان تمسك وترمي الاشياء مثل الاعلام .. أو", + "phrase15Text": "و الان, بنتحدث عن القنابل", "phrase16Text": "رمي القنابل يحتاج للتدريب", - "phrase17Text": "اوو! لم تكن رمية جيدة", + "phrase17Text": "اوتش! لم تكن رمية جيدة", "phrase18Text": "التحرك يساعدك على الرمي ابعد", "phrase19Text": "القفز يساعدك على الرمي اعلى", - "phrase20Text": "فجر\"قنابلك لمدى حتى أبعد من ذلك\"", + "phrase20Text": "أصب قنابلك لمدى ابعد.", "phrase21Text": "توقيت القنبلة يمكن أن يكون مخادعا", - "phrase22Text": "!بووم", + "phrase22Text": "دانغ", "phrase23Text": "جرب امساك القنبلة ليذوب الفتيل لثانية او اثنتين", "phrase24Text": "مرحى! لقد تم شواؤه بشكل رائع", "phrase25Text": "حسنا, هذا كل ما في الامر", @@ -1820,19 +1917,20 @@ "phrase27Text": "إن تذكرت تدريبك.. فستعود حيا", "phrase28Text": "...حسنا, ربما...", "phrase29Text": "!حظا سعيدا", - "randomName1Text": "فريد", - "randomName2Text": "هاني", - "randomName3Text": "باسل", - "randomName4Text": "كيفن", - "randomName5Text": "جوني", - "skipConfirmText": "حقا تريد تخطي البرنامج التعليمي؟ إلمس أو اضغط بإستمرار", - "skipVoteCountText": "تخطي اصوات ${COUNT}/${TOTAL}", + "randomName1Text": "بوت1", + "randomName2Text": "بوت2", + "randomName3Text": "بوت3", + "randomName4Text": "بوت4", + "randomName5Text": "بوت5", + "skipConfirmText": "هل انت متاكد من رغبتك في تخطي البرنامج التعليمي؟ إلمس أو اضغط بإستمرار", + "skipVoteCountText": "تصويتات ${COUNT}/${TOTAL}", "skippingText": "جاري تخطي البرنامج التعليمي....", "toSkipPressAnythingText": "(إلمس او إضغظ اي شئ لتخطي البرنامج التعليمي)" }, "twoKillText": "!قتل مزدوج", - "uiScaleText": "مقياس واجهة المستخدم", - "unavailableText": "غير متوفر", + "uiScaleText": "حجم الواجهة", + "unavailableText": "غير متاح", + "unclaimedPrizesText": "!انت تملك جوائز غير مستلمة", "unconfiguredControllerDetectedText": ":تم الكشف على يد تحكم غير مهيئة", "unlockThisInTheStoreText": "هذا يجب ان يفتح في المتجر", "unlockThisProfilesText": "لإنشاء أكثر من ${NUM} من الملفات الشخصية، تحتاج إلى:", @@ -1842,48 +1940,49 @@ "upFirstText": ":يصل اولا", "upNextText": ":${COUNT}التالي في اللعبة", "updatingAccountText": "تحديث الحساب الخاص بك....", - "upgradeText": "احصل على ترقية", + "upgradeText": "ترقية", "upgradeToPlayText": "في متجر اللعبة لتلعب هذا \"${PRO}\" اشتري", "useDefaultText": "استخدام الإفتراضي", - "userSystemScriptsCreateText": "إنشاء البرامج النصية لنظام المستخدم", - "userSystemScriptsDeleteText": "حذف البرامج النصية لنظام المستخدم", + "userSystemScriptsCreateText": "User System Scripts انشئ", + "userSystemScriptsDeleteText": "User System Scripts احذف", "usesExternalControllerText": "هذه اللعبة تستخدم يد تحكم خارجية للإدخال", "usingItunesText": "...استخدام تطبيق الموسيقى للموسيقى التصويرية", "v2AccountLinkingInfoText": "اذا اردت ربط حسابات V2، قم بالتوجه الى 'ادارة الحساب'.", - "validatingTestBuildText": "التحقق من صحة البناء", + "v2AccountRequiredText": ".طور حسابك و حاول مره ثانيه .V2 هذا يحتاج حساب", + "validatingTestBuildText": "التحقق من صحة التحديث...", "viaText": "عبر", "victoryText": "!النصر", - "voteDelayText": "ثانية ${NUMBER} لا يمكنك التصويت ثانية حتى", + "voteDelayText": "لا يمكنك التصويت مره ثانيه حتي تعبر ${NUMBER} ثانيه", "voteInProgressText": "التصويت بالفعل في التقدم", - "votedAlreadyText": "لقد صوت بالفعل", - "votesNeededText": "صوت مطلوب ${NUMBER}", + "votedAlreadyText": "لقد صوتت بالفعل", + "votesNeededText": "عدد الاصوات المطلوبه ${NUMBER}", "vsText": "ضد", - "waitingForHostText": "(للإستمرار ${HOST} انتظار)", - "waitingForPlayersText": "...انتظار اللاعيبين للإنضمام", - "waitingInLineText": "الانتظار في السطر (الطرف ممتلئ) ...", + "waitingForHostText": "(للمتابعه ${HOST} منتظرين)", + "waitingForPlayersText": "...بانتظار الاعبين للانضمام", + "waitingInLineText": "الانتظار في الدور (الغرفه مليانه) ...", "watchAVideoText": "شاهد فيديو", "watchAnAdText": "شاهد اعلان", "watchWindow": { - "deleteConfirmText": "\"${REPLAY}\"? حذف", - "deleteReplayButtonText": "حذف\nالإعادة", - "myReplaysText": "إعاداتي", - "noReplaySelectedErrorText": "لايوجد إعادة تم اختيارها", - "playbackSpeedText": "سرعة الاعادة: ${SPEED}", - "renameReplayButtonText": "إعادة تسمبة \n الإعادة", + "deleteConfirmText": "\"${REPLAY}\"? هل انت متاكد من رغبتك بالحذف", + "deleteReplayButtonText": "حذف\nالتسجيل", + "myReplaysText": "تسجيلاتي", + "noReplaySelectedErrorText": "لايوجد تسجيل تم اختيارها", + "playbackSpeedText": "سرعة التسجيل: ${SPEED}", + "renameReplayButtonText": "إعادة تسمبة \n التسجيل", "renameReplayText": ":الى \"${REPLAY}\" اعادة تسمية", - "renameText": "إعادة تسمية", - "replayDeleteErrorText": "خطا في حذف الإعادة", - "replayNameText": "اسم الإعادة", - "replayRenameErrorAlreadyExistsText": "اسم الإعادة موجود بالفعل", - "replayRenameErrorInvalidName": "لايمكن اعادة تسمية الإعادة; الاسم غير صالح", - "replayRenameErrorText": "خطا في اعادة تسمية الإعادة", - "sharedReplaysText": "الإعادة المشاركة", - "titleText": "شاهد", - "watchReplayButtonText": "شاهد\nالإعادة" + "renameText": "اعاده تسميه", + "replayDeleteErrorText": "حصل خطأ اثناء حذف التسجيل", + "replayNameText": "اسم التسجيل", + "replayRenameErrorAlreadyExistsText": "اسم التسجيل موجود رجاء اكتب اسم اخر", + "replayRenameErrorInvalidName": "ماتقدر تسمي التسجيل بسبب; الاسم مش صالح للاستخدام", + "replayRenameErrorText": "حصل خطا اثناء تسميه التسجيل", + "sharedReplaysText": "مشاركه التسجيل", + "titleText": "التسجيلات", + "watchReplayButtonText": "شاهد\nالتسجيلات" }, - "waveText": "موجة", - "wellSureText": "!حسنا طبعا", - "whatIsThisText": "ما هذا؟", + "waveText": "جوله", + "wellSureText": "!حسنا بالطبع", + "whatIsThisText": "ايش ذا؟", "wiimoteLicenseWindow": { "titleText": "DarwinRemoteحقوق التأليف والنشر ل" }, @@ -1899,14 +1998,14 @@ "thanksText": "DarwiinRemote شكرا لفريق\nلجعل هذا ممكنا", "titleText": "wiimote تثبيت" }, - "winsPlayerText": "${NAME} !يفوز", - "winsTeamText": "${NAME} !يفوز فريق", - "winsText": "${NAME} !يفوز", - "workspaceSyncErrorText": "فشل في مزامنة ${WORKSPACE}. القي نظرة على السجل للتفاصيل.", - "workspaceSyncReuseText": "لا يمكن مزامنة ${WORKSPACE}. اعادة استخدام النسخة المتزامنة السابقة.", - "worldScoresUnavailableText": "(النتيجة العالمية غير متوفرة (اتصل بالانترنت", - "worldsBestScoresText": "افضل نتيجة للعالم", - "worldsBestTimesText": "افضل اوقات العالم", + "winsPlayerText": "${NAME} !انتصر", + "winsTeamText": "${NAME} انتصر فريق", + "winsText": "${NAME} !انتصر", + "workspaceSyncErrorText": "فشل في مزامنة ${WORKSPACE}. القي نظرة على السجل لمزيد من التفاصيل.", + "workspaceSyncReuseText": "تعذّر مزامنة ${WORKSPACE}. يتم حالياً استخدام النسخة السابقة التي تم مزامنتها.", + "worldScoresUnavailableText": ".النتائج العالمية ليست متاحه", + "worldsBestScoresText": "افضل النتائج العالميه", + "worldsBestTimesText": "افضل اوقاتك على مستوى عالمي", "xbox360ControllersWindow": { "getDriverText": "احصل على تعريف", "macInstructions2Text": "لاستخدام وحدات تحكم لاسلكيا، سوف تحتاج أيضا المتلقي ذلك\nيأتي مع \"تحكم اكس بوكس 360 اللاسلكية ويندوز\".\nواحد المتلقي يسمح لك لربط ما يصل إلى 4 وحدات تحكم.\n\nهام: لن تعمل أجهزة الاستقبال التابعة لجهة خارجية مع برنامج التشغيل هذا؛\nتأكد من جهاز الاستقبال يقول 'مايكروسوفت' على ذلك، وليس 'الاكس بوكس 360'.\nمايكروسوفت لم تعد تبيع هذه بشكل منفصل، لذلك سوف تحتاج إلى الحصول عليها\nواحد المجمعة مع وحدة تحكم أو البحث إيباي آخر.\n\nإذا وجدت هذا مفيد، يرجى النظر في التبرع ل\nمطور برامج في موقعه.", @@ -1915,6 +2014,7 @@ "titleText": "استخدام يد تحكم Xbox 360 مع ${APP_NAME}:" }, "yesAllowText": "!نعم,اسمح", - "yourBestScoresText": "أفضل نقاطك", - "yourBestTimesText": "أفضل أوقاتك" + "yourBestScoresText": "أفضل نتائجك", + "yourBestTimesText": "أفضل أوقاتك", + "yourPrizeText": "جائزتك:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/belarussian.json b/dist/ba_data/data/languages/belarussian.json index 96c1de9..4b4d5c7 100644 --- a/dist/ba_data/data/languages/belarussian.json +++ b/dist/ba_data/data/languages/belarussian.json @@ -1,12 +1,14 @@ { "accountSettingsWindow": { "accountNameRules": "Імя акаўнта не можа ўтрымліваць эмоджы і іншыя спецыяльныя сымбалі", - "accountsText": "Акаўнты", + "accountsText": "el idioma", "achievementProgressText": "Дасягненні: ${COUNT} з ${TOTAL}", "campaignProgressText": "Прагрэс кампаніі (Цяжка): ${PROGRESS}", "changeOncePerSeason": "Вы можаце змяніць толькі адзін раз за сезон.", "changeOncePerSeasonError": "Трэба пачакаць наступнага сезона, каб зноў змяніць гэта (${NUM} days)", + "createAnAccountText": "Стварыць акаўнт", "customName": "Зрабіць імя", + "deleteAccountText": "Выдаліць уліковы запіс", "googlePlayGamesAccountSwitchText": "Калі вы жадаеце выкарыстоўваць іншы ўліковы запіс Google,\nвыберыце яго ў Google Play Games.", "linkAccountsEnterCodeText": "Увесцi Код", "linkAccountsGenerateCodeText": "Стварыць Код", @@ -24,6 +26,7 @@ "setAccountNameDesc": "Выберыце імя для адлюстравання для вашага ўліковага запісу.\nВы можаце выкарыстоўваць імя ў адным з звязаных\nуліковых запісаў альбо стварыць унікальнае прыстасаванае імя.", "signInInfoText": "Увайдзіце, каб збіраць квіткі, удзельнічаць у спаборніцтвах \nі сінхранізіраваць прагрэс паміж рознымі прыладамі.", "signInText": "Увайсці", + "signInWithAnEmailAddressText": "Увайсці з дапамогай адраса электроннай пошты", "signInWithDeviceInfoText": "(толькі аўтаматычны акаўнт даступны для гэтай прылады)", "signInWithDeviceText": "Увайсці з акаўнта прылады", "signInWithGameCircleText": "Увайсці з дапамогаю Game Circle", @@ -32,7 +35,7 @@ "signInWithTestAccountText": "Увайсці з тэст-акаўнта", "signInWithText": "Увайдзіце з дапамогай ${SERVICE}", "signInWithV2InfoText": "(уліковы запіс, які працуе на ўсіх платформах)", - "signInWithV2Text": "Увайдзіце з уліковым запісам BombSquad", + "signInWithV2Text": "Увайдзіце з дапамогай уліковага запісу ${APP_NAME}", "signOutText": "Выйсці", "signingInText": "Уваход...", "signingOutText": "Выхад...", @@ -343,6 +346,8 @@ "allowText": "Дазволіць", "alreadySignedInText": "Ваш уліковы запіс увайшоў з іншай прылады;\nкалі ласка, пераключыце ўліковыя запісы альбо зачыніце гульню на вашым\nіншыя прылады і паспрабуйце яшчэ раз", "apiVersionErrorText": "Нельга загрузіць модуль ${NAME}; ён прапануецца для api-версіі ${VERSION_USED}; мы карыстаемся ${VERSION_REQUIRED}.", + "applyText": "Ужыць", + "areYouSureText": "Вы ўпэўнены", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(\"Аўтаматычна\" працуе толькі калі ўстаўлены навушнікі)", "headRelativeVRAudioText": "H-R VR Аўдыя", @@ -364,14 +369,23 @@ "boostText": "Павышэнне", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} наладзіцца сам.", "buttonText": "Кнопка", - "canWeDebugText": "Ці жадаеце вы аўтаматычна паведамляць аб багах\nі аварыях распрацоўніку?\n\nГэтыя паведамленні не ўтрымліваюць асабістую інфармацыю\nі дапамагаюць палепшыць гульню.", + "canWeDebugText": "Хочаце, каб ${APP_NAME} аўтаматычна паведамляла\nпамылкі, збоі і асноўныя звесткі аб выкарыстанні для распрацоўшчыка?", "cancelText": "Зачыніць", "cantConfigureDeviceText": "Прабачце, ${DEVICE} не падтрымліваецца.", "challengeEndedText": "Спаборніцтва скончылася.", "chatMuteText": "Адключэнне гуку ў чаце", "chatMutedText": "Чат адключон", "chatUnMuteText": "Уключыць гук у чаце", + "chests": { + "prizeOddsText": "Прызавыя шанцы", + "reduceWaitText": "Паменшыць Час", + "slotDescriptionText": "Гэтая ячэйка можна храніць куфар.\n\nЗарабляй куфары гуляючы ў узроўні кампаніі, зарабляючы месцы ў турнірах, і робячы дасягнення.", + "slotText": "Ячэйка куфара ${NUM}", + "slotsFullWarningText": "УВАГА: Усё ячэйкі куфараў поўныя.\nДругія куфары якія вы заробіце будуць страчаны.", + "unlocksInText": "Адмыкае ў" + }, "choosingPlayerText": "<выбар гульца>", + "claimText": "Атрымаць", "codesExplainText": "Коды прадастаўляюцца распрацоўшчыкам\nдыягностыка і выпраўленне праблем з уліковым запісам.", "completeThisLevelToProceedText": "Вы павінны прайсці гэты\nўзровень, каб працягнуць!", "completionBonusText": "Бонус за праходжанне", @@ -568,6 +582,7 @@ "disableXInputDescriptionText": "Дазваляе больш за 4 кантролераў, але можа таксама не працаваць.", "disableXInputText": "Адключыць XInput", "disabledText": "Выключана", + "discardText": "Адмовіться", "discordFriendsText": "Хочаце шукаць новых людзей для гульні?\nДалучайцеся да нашага Discord і знайдзіце новых сяброў!", "discordJoinText": "Далучайцеся да Discord", "doneText": "Зроблена", @@ -651,6 +666,8 @@ "errorText": "Памылка", "errorUnknownText": "Невядомая памылка", "exitGameText": "Зачыніць ${APP_NAME}?", + "expiredAgoText": "Сапсаваўся ${T} таму", + "expiresInText": "Сапсуецца праз ${T}", "exportSuccessText": "'${NAME}' экспартуецца.", "externalStorageText": "Знешняя памяць", "failText": "Правал", @@ -713,6 +730,7 @@ "copyCodeConfirmText": "Код скапіяваны ў буфер абмену", "copyCodeText": "Скапіяваць код", "dedicatedServerInfoText": "Для дасягнення найлепшых вынікаў наладзьце спецыяльны сервер. Гл. Bombsquadgame.com/server, каб даведацца, як.", + "descriptionShortText": "Выкарыстайце акно збору каб сабраць групу.", "disconnectClientsText": "Гэта адлучыць ${COUNT} гульцоў з вашага\nлоббі. Вы ўпэўнены?", "earnTicketsForRecommendingAmountText": "Сябры атрымаюць ${COUNT} квіткоў, калі яны паспрабуюць гульню\n(вы таксама атрымаеце ${YOU_COUNT} квіткоў за кожнага сябра)", "earnTicketsForRecommendingText": "Падзяліцеся гульнёй, \nкаб атрымаць квіткі.", @@ -726,10 +744,10 @@ "friendPromoCodeAwardText": "Вы атрымаеце ${COUNT} квіткоў кожны раз, калі ён будзе выкарыстаны.", "friendPromoCodeExpireText": "Код дзейнічае ${EXPIRE_HOURS} гадзін(ы) і працуе толькі для новых гульцоў.", "friendPromoCodeInfoText": "Ён можа быць абменены на ${COUNT} квіткоў.\n\nЗайдзіце ў \"Налады->Дадатковыя->Увесці прома-код\", каб скарыстацца ім.\nНаведайце bombsquadgame.com, каб зладаваць гульню на любую платформу, якая падтрымліваецца.\nГэты код мінае праз ${EXPIRE_HOURS} гадзін(ы)(а) і ён дзейнічае толькі для новых гульцоў.", - "friendPromoCodeInstructionsText": "Каб выкарыстоўваць яго, адкрыйце ${APP_NAME} і перайдзіце ў раздзел \"Налады-> Дадатковыя-> Увесці код\".\nГлядзіце bombsquadgame.com для спасылкі на загрузку ўсіх падтрымліваемых платформаў.", + "friendPromoCodeInstructionsText": "Каб выкарыстаць яго, адкрыйце ${APP_NAME} і перайдзіце ў раздзел \"Налады-> Дадатковыя->Даслаць інфармацыю\".\nГлядзіце bombsquadgame.com каб знайсці спасылкі на спампоўку для ўсіх платформаў, што падтрымліваюцца.", "friendPromoCodeRedeemLongText": "Ён можа быць абменены на ${COUNT} квіткоў максімум ${MAX_USES} гульцамі.", "friendPromoCodeRedeemShortText": "Ён можа быць абменены на ${COUNT} квіткоў у гульні.", - "friendPromoCodeWhereToEnterText": "(у раздзеле \"Налады->Дадатковыя->Увядзіце код\")", + "friendPromoCodeWhereToEnterText": "(у раздзеле \"Налады->Дадатковыя->Даслаць інфармацыю\")", "getFriendInviteCodeText": "Атрымаць Код для Сяброў", "googlePlayDescriptionText": "Запрасіце гульцоў з Google Play у вашае лоббі.", "googlePlayInviteText": "Запрасіць", @@ -827,6 +845,12 @@ "youHaveShortText": "вы маеце ${COUNT}", "youHaveText": "вы маеце ${COUNT} квіткоў" }, + "goldPass": { + "desc1InfTokensText": "Бясконцыя жэтоны.", + "desc2NoAdsText": "Без рэкламы.", + "desc3ForeverText": "Назаўсёды.", + "goldPassText": "Залатой пропуск" + }, "googleMultiplayerDiscontinuedText": "Прабачце, мультігульны сервіс Гугл не даступны у гэты час.\nЯ клапачуся над гэтым з усёй скорасцю.\n\nДа таго часу, калі ласка паспрабуйце другое падключэнне", "googlePlayPurchasesNotAvailableText": "Пакупкі ў Google Play недаступныя.\nМагчыма, вам патрэбна абнавіць прыкладанне крамы.", "googlePlayServicesNotAvailableText": "Сэрвісы Google Play недаступныя.\nНекаторыя функцыі прыкладання могуць быць адключаныя.", @@ -901,6 +925,7 @@ "importText": "імпарт", "importingText": "Імпартырую...", "inGameClippedNameText": "У гульне будзе\n\"${NAME}\"", + "inboxText": "Уваходныя", "installDiskSpaceErrorText": "ПАМЫЛКА: Немагчыма закончыць усталёўку.\nХутчэй за ўсё, у вас на прыладзе закончылася \nмесца. Вызваліце нямнога і паспрабуйце яшчэ раз.", "internal": { "arrowsToExitListText": "націсніце ${LEFT} ці ${RIGHT}, каб закрыць спіс", @@ -955,12 +980,14 @@ "timeOutText": "(засталося ${TIME} секунд(ы))", "touchScreenJoinWarningText": "Вы зайшлі з сэнсарным экранам.\nКалі гэта была памылка, націсніце 'Меню -> Пакінуць Гульню'.", "touchScreenText": "Сэнсарны Экран", + "unableToCompleteTryAgainText": "Немагчыма гэта выпаўніць цяпер.\nПаспрабуйце яшчэ.", "unableToResolveHostText": "Памылка: немагчыма знайсцi хост.", "unavailableNoConnectionText": "Зараз гэта недаступна (няма інтэрнэт-злучэння?)", "vrOrientationResetCardboardText": "Скарыстайцеся гэтым, каб скінуць VR арыентацыю.\nКаб гуляць, вам спатрэбіцца знешні кантролер.", "vrOrientationResetText": "Скідванне арыентацыі VR.", "willTimeOutText": "(час скончыцца пры прастоі)" }, + "inventoryText": "Інвентар", "jumpBoldText": "ПРЫГАЙЦЕ!", "jumpText": "Прыгайце", "keepText": "Захаваць", @@ -1007,8 +1034,11 @@ "seasonEndsMinutesText": "Сезон скончыцца праз ${NUMBER} хвілін.", "seasonText": "Сезон ${NUMBER}", "tournamentLeagueText": "Вы павінны дасягнуць ${NAME} лігі, каб увайсці ў гэты турнір.", - "trophyCountsResetText": "Трафейныя ачкі знікнуць у наступным сезоне." + "trophyCountsResetText": "Трафейныя ачкі знікнуць у наступным сезоне.", + "upToDateBonusDescriptionText": "Гульцы з актуальнай версіяй гульні\n атрымліваюць ${PERCENT}% бонус тут.", + "upToDateBonusText": "Актуальны Бонус" }, + "learnMoreText": "Прачытайце больше", "levelBestScoresText": "Лепшыя вынікі на ўзроўні ${LEVEL}", "levelBestTimesText": "Лепшы час на ўзроўні ${LEVEL}", "levelFastestTimesText": "Самы хуткі на уроўні ${LEVEL}", @@ -1054,6 +1084,8 @@ "modeArcadeText": "Аркадны рэжым.", "modeClassicText": "Класічны рэжым.", "modeDemoText": "Дэмо рэжым", + "moreSoonText": "Скора будзе больш...", + "mostDestroyedPlayerText": "Самы Пабіты Гулец", "mostValuablePlayerText": "Самы Карысны Гулец", "mostViolatedPlayerText": "Самы Збіты Гулец", "mostViolentPlayerText": "Самы Жорсткі Гулец", @@ -1070,6 +1102,7 @@ "nameSuicideText": "${NAME} скончыў жыццё самагубствам.", "nameText": "Імя", "nativeText": "Родны", + "newExclaimText": "Новае!", "newPersonalBestText": "Новы асабісты рэкорд!", "newTestBuildAvailableText": "Новая тэставая зборка даступна! (${VERSION} build ${BUILD}).\nАтрымайце яе на ${ADDRESS}", "newText": "Новы", @@ -1080,6 +1113,7 @@ "noContinuesText": "(без працягу)", "noExternalStorageErrorText": "Знешняя памяць не знойдзена", "noGameCircleText": "Памылка: вы не ўвайшлі ў GameCircle", + "noMessagesText": "Няма паведамленняў.", "noPluginsInstalledText": "Убудовы не ўстаноўлены", "noProfilesErrorText": "У вас няма ніводнага профіля, таму вас будуць называць '${NAME}'.\nЗайдзіце ў \"Налады -> Профілі\", каб стварыць уласны профіль.", "noScoresYetText": "Вынікаў пакуль няма.", @@ -1089,6 +1123,7 @@ "noValidMapsErrorText": "Не знойдзена мап для гэтага тыпу гульні.", "notEnoughPlayersRemainingText": "Засталося вельмі мала гульцоў; пачніце новую гульню.", "notEnoughPlayersText": "Вам патрэбна не менш за ${COUNT} гульцоў, каб пачаць!", + "notEnoughTicketsText": "Не дастаткова квіткоў!", "notNowText": "Не Зараз", "notSignedInErrorText": "Вы павінны ўвайсці, каб выканаць гэта.", "notSignedInGooglePlayErrorText": "Вы павінны ўвайсці з Google Play, каб выканаць гэта.", @@ -1101,6 +1136,9 @@ "onText": "Уключана", "oneMomentText": "Адзін момант...", "onslaughtRespawnText": "${PLAYER} з'явіцца ў ${WAVE} хвалі", + "openMeText": "Адчыні Мяне!", + "openNowText": "Адчыніць Зараз", + "openText": "Адчыніць", "orText": "${A} ці ${B}", "otherText": "Іншае...", "outOfText": "(#${RANK} з ${ALL})", @@ -1187,6 +1225,8 @@ "punchText": "Ударыць", "purchaseForText": "Набыць за ${PRICE}", "purchaseGameText": "Набыць Гульню", + "purchaseNeverAvailableText": "На жаль, пакупкі недаступныя для гэтай зборкі.\nПаспрабуйце ўвайсці ў свой уліковы запіс на іншай платформе і рабіць пакупкі адтуль.", + "purchaseNotAvailableText": "Гэта купля не даступная.", "purchasingText": "Набыццё...", "quitGameText": "Зачыніць ${APP_NAME}?", "quittingIn5SecondsText": "Выхад праз 5 секунд...", @@ -1228,6 +1268,7 @@ "version_mismatch": "Старая версія.\nПераканайцеся, што вы маеце апошнія версіі\nBombSquad і BombSquad Remote." }, "removeInGameAdsText": "Купіце \"${PRO}\" у магазіне, каб выдаліць рэкламу.", + "removeInGameAdsTokenPurchaseText": "ЧАСОВАЯ ПРАПАНОВА: Купіце ЛЮБЫ пакет токенаў, каб выдаліць рэкламу ў гульні.", "renameText": "Перайменаваць", "replayEndText": "Закончыць Запіс", "replayNameDefaultText": "Запіс Апошняй Гульні", @@ -1261,6 +1302,7 @@ }, "scoreWasText": "(быў ${COUNT})", "selectText": "Выбраць", + "sendInfoDescriptionText": "Адпраўляе інфармацыю пра стан акаўнта і дадатку распрацоўшчыку.\nКалі ласка, пакіньце сваё імя ці прычыну адпраўкі.", "seriesWinLine1PlayerText": "ПЕРАМАГАЕ Ў", "seriesWinLine1TeamText": "ПЕРАМАГАЮЦЬ У", "seriesWinLine1Text": "ПЕРАМАГАЕ Ў", @@ -1279,6 +1321,7 @@ "alwaysUseInternalKeyboardDescriptionText": "(простая, зручная для кантролера клавіятура для рэдагавання тэксту)", "alwaysUseInternalKeyboardText": "Заўсёды карыстацца ўбудаванай клавіятурай", "benchmarksText": "Тэст Прадукцыйнасці і Тэст-Нагрузка", + "devToolsText": "Інструменты распрацоўшчыка", "disableCameraGyroscopeMotionText": "Адключыць рух гіраскопа камеры", "disableCameraShakeText": "Адключыць устрэсванне камеры", "disableThisNotice": "(вы можаце адключыць гэта апавяшчэнне ў дадатковых наладах)", @@ -1287,6 +1330,8 @@ "enterPromoCodeText": "Увесці код", "forTestingText": "Гэтыя значэнні выкарыстоўваюцца толькі для тэстаў і будуць згублены пры закрыцці гульні.", "helpTranslateText": "Пераклад ${APP_NAME} з англійскай мовы - намаганне супольнасці\nпадтрымкі. Калі вы жадаеце выправіць пераклад,\nпрайдзіце па спасылцы ніжэй. Дзякуй!", + "insecureConnectionsDescriptionText": "не рэкамендуецца, але можа дазволіць онлайн гульню\nз абмежаваных краін або сетак", + "insecureConnectionsText": "Выкарыстоўвайце небяспечныя злучэнні", "kickIdlePlayersText": "Выкідваць гульцоў, якія не дзейнічаюць", "kidFriendlyModeText": "Дзіцячы Рэжым (менш гвалту і г.д.)", "languageText": "Мова", @@ -1297,10 +1342,10 @@ "resetText": "Скінуць", "sendInfoText": "Даслаць інфармацыю", "showBombTrajectoriesText": "Паказваць Траекторыi Бомб", - "showDemosWhenIdleText": "Паказваць Дэма ў Рэжыме Чаканьня", + "showDemosWhenIdleText": "Паказваць дэма ў рэжыме чакання", "showDeprecatedLoginTypesText": "Паказаць састарэлыя тыпы ўваходу", - "showDevConsoleButtonText": "Паказаць Кнопку Кансолі Распрацоўніка", - "showInGamePingText": "Паказываць Пынг Гульні", + "showDevConsoleButtonText": "Паказаць кнопку кансолі распрацоўшчыка", + "showInGamePingText": "Паказваць пінг гульні", "showPlayerNamesText": "Паказваць Імёны Гульцоў", "showUserModsText": "Паказаць Тэчку З Модамі", "titleText": "Дадаткова", @@ -1347,6 +1392,7 @@ }, "spaceKeyText": "прабел", "statsText": "Статыстыка", + "stopRemindingMeText": "Перастаньце нагадваць мне", "storagePermissionAccessText": "Для гэтага неабходны доступ да сховішча", "store": { "alreadyOwnText": "У вас ужо ёсць ${NAME}!", @@ -1408,6 +1454,7 @@ "testBuildValidatedText": "Тэставая Зборка Праверана; Поспехаў!", "thankYouText": "Дзякуй за вашу падтрымку! Прыемнай гульні!!", "threeKillText": "ТРЫ ЗАБОЙСТВЫ!!", + "ticketsDescriptionText": "Білеты выкарыстоўвацца каб адкрыць персанажаў, карты, міні-гульні, і больш у краме.\n\nБілеты можна знайсці у куфарах атрыманных праз кампанію, турніры, і дасягненні.", "timeBonusText": "Бонус Часу", "timeElapsedText": "Прайшло Часу", "timeExpiredText": "Час Скончыўся", @@ -1418,10 +1465,24 @@ "tipText": "Парада", "titleText": "BombSquad", "titleVRText": "${ARG1}", + "tokens": { + "getTokensText": "Атрымайце жэтоны", + "notEnoughTokensText": "Не дастаткова квіткоў!", + "numTokensText": "${COUNT} Жэтоны", + "openNowDescriptionText": "У вас дастаткова жэтонаў\nадкрыць гэта зараз - вы не робіце\nтрэба пачакаць.", + "shinyNewCurrencyText": "Бліскучая новая валюта BombSquad's.", + "tokenPack1Text": "Малы набор жэтонаў", + "tokenPack2Text": "Сярэдні пакет жэтонаў", + "tokenPack3Text": "Вялікі набор жэтонаў", + "tokenPack4Text": "Велізарны набор жэтонаў", + "tokensDescriptionText": "Токены выкарыстоўвацца\nкаб паскорыць адчыненне куфараў\nі для іншых асаблівасцей.\n\nВы можаце выйграць токены ў гульні\n або купіць іх у наборах. Або купіць залаты пропуск для бясконцых токенаў і больш не слыхаць аб іх.", + "youHaveGoldPassText": "У вас ёсць залаты пропуск.\nУсе пакупкі жэтонаў бясплатныя.\nАтрымлівайце асалоду!" + }, "topFriendsText": "Топ Сяброў", "tournamentCheckingStateText": "Праверка статусу турніра; калі ласка, пачакайце...", "tournamentEndedText": "Гэты турнір скончыўся. Хутка пачнецца новы.", "tournamentEntryText": "Уваход у Турнір", + "tournamentFinalStandingsText": "Канчатковыя Месцы", "tournamentResultsRecentText": "Вынікі Нядаўніх Турніраў", "tournamentStandingsText": "Месцы ў Турніры", "tournamentText": "Турнір", @@ -1479,6 +1540,18 @@ "Uber Onslaught": "Убер Атака", "Uber Runaround": "Убер Бегатня" }, + "displayItemNames": { + "${C} Tickets": "${C} Білетаў0", + "${C} Tokens": "${C} Токенаў", + "Chest": "Куфар", + "L1 Chest": "Куфар У1", + "L2 Chest": "Куфар У2", + "L3 Chest": "Куфар У3", + "L4 Chest": "Куфар У4", + "L5 Chest": "Куфар У5", + "L6 Chest": "Куфар У6", + "Unknown Chest": "Невядомы Куфар" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Каб перамагчы, стань абраным на некаторы час.\nКаб стаць абраным, забей мінулага абранага.", "Bomb as many targets as you can.": "Падарвіце як мага больш мішэняў.", @@ -1583,6 +1656,7 @@ "Korean": "Карэйская", "Malay": "Малаі", "Persian": "Фарсі", + "PirateSpeak": "Пірацкая мова", "Polish": "Польская", "Portuguese": "Партугальская", "Romanian": "Румынская", @@ -1654,6 +1728,7 @@ "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Заўважана махлярства; ачкі і прызы забаронены на ${COUNT} дзён.", "Could not establish a secure connection.": "Немагчыма стварыць бяспечнае злучэнне.", "Daily maximum reached.": "Штодзённы максімум дасягнуты.", + "Daily sign-in reward": "Штодзённая ўзнагарода за ўваход", "Entering tournament...": "Уваход у турнір...", "Invalid code.": "Няправільны код.", "Invalid payment; purchase canceled.": "Несапраўдная аплата; купля адменена.", @@ -1663,11 +1738,14 @@ "Item unlocked!": "Элемент разблакаваны!", "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "ЗВЯЗАННЕ АДМЕНАВАНА. ${ACCOUNT} змяшчае\nважныя дадзеныя, якія ЎСЕ БУДУЦЬ СТРАЧЭНЫ.\nВы можаце зрабіць спасылку ў адваротным парадку, калі хочаце\n(і замест гэтага страціць дадзеныя ГЭТАГА ўліковага запісу)", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "Прывязаць уліковы запіс ${ACCOUNT} к гэтаму улiковаму запiсу?\nУсе існуючыя дадзеныя на ${ACCOUNT} будуць страчаны.\nГэта не можа быць адменена. Вы ўпэўнены?", + "Longer streaks lead to better rewards.": "Больш працяглыя серыі прыводзяць да лепшых узнагарод.", "Max number of playlists reached.": "Максімальная колькасць плэйлістаў дасягнута.", "Max number of profiles reached.": "Максімальная колькасць профіляў дасягнута.", "Maximum friend code rewards reached.": "Дасягнута максімальная ўзнагарода за код сябра.", "Message is too long.": "Паведамленне занадта доўгае.", + "New tournament result!": "Новы вынік турніру!", "No servers are available. Please try again soon.": "Няма даступных сервераў. Калі ласка, паспрабуйце яшчэ раз пазней.", + "No slots available. Free a slot and try again.": "Няма ячэек. Вызваліце слот і паспрабуйце яшчэ.", "Profile \"${NAME}\" upgraded successfully.": "Профіль \"${NAME}\" палепшаны паспяхова.", "Profile could not be upgraded.": "Профіль нельга палепшыць.", "Purchase successful!": "Аб'ект набыты паспяхова!", @@ -1677,7 +1755,9 @@ "Sorry, this code has already been used.": "Прабачце, гэты код ужо выкарыстоўваўся.", "Sorry, this code has expired.": "На жаль, срок дзеяння гэтага кода ўжо скончыўся.", "Sorry, this code only works for new accounts.": "Прабачце, гэты код працуе толькі на новых акаўнтах.", + "Sorry, this has expired.": "Прабачце, гэта сапсавалася.", "Still searching for nearby servers; please try again soon.": "Працягваецца пошук бліжэйшых сервераў; калі ласка, паспрабуйце яшчэ раз пазней.", + "Streak: ${NUM} days": "Серыя: ${NUM} дзён", "Temporarily unavailable; please try again later.": "Часова недаступны; калі ласка паспрабуйце зноў пазней.", "The tournament ended before you finished.": "Турнір скончыўся перад тым, як вы закончылі.", "This account cannot be unlinked for ${NUM} days.": "Немагчыма адлучыць гэты ўліковы запіс на працягу ${NUM} дзён.", @@ -1688,19 +1768,28 @@ "Tournaments require ${VERSION} or newer": "Для турніраў патрабуецца ${VERSION} або больш позняя версія", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "Адключыць ${ACCOUNT} ад гэтага ўліковага запісу?\nУсе дадзеныя на ${ACCOUNT} будуць скіданы.\n(за выключэннем дасягненняў у некаторых выпадках)", "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "УВАГА: на ваш уліковы запіс паступілі скаргі на ўзлом.\nБудуць забаронены ўліковыя запісы, якія будуць прызнаныя хакерскімі. Калі ласка, гуляйце сумленна.", + "Wait reduced!": "Час паменшаны!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "Папярэджанне: Гэтая версія гульні абмежаваная старымі дадзенымі ўліковага запісу; некаторыя рэчы могуць адсутнічаць або быць састарэлымі.\nКалі ласка, абнавіце гульню да новай версіі, каб убачыць апошнія дадзеныя вашага ўліковага запісу.", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "Ці жадаеце вы аб'яднаць ваш акаўнт на прыладзе з гэтым?\n\nВаш акаўнт на прыладзе - ${ACCOUNT1}\nГэты акаўнт - ${ACCOUNT2}\n\nГэта дазволіць вам сінхранізіраваць прагрэс.\nАсцярожна - гэта нельга адмяніць!", "You already own this!": "Вы ўжо маеце гэта!", "You can join in ${COUNT} seconds.": "Вы можаце далучыцца праз ${COUNT} секунд.", "You don't have enough tickets for this!": "У вас не хапае квіткоў!", "You don't own that.": "Вы не валодаеце гэтым.", "You got ${COUNT} tickets!": "Вы атрымалі ${COUNT} квіткоў!", + "You got ${COUNT} tokens!": "Вы атрымалі ${COUNT} токенаў!", "You got a ${ITEM}!": "Вы атрымалі ${ITEM}!", + "You got a chest!": "Вы атрымалі куфар!", + "You got an achievement reward!": "Вы атрымалі узнагароду дасягнення!", "You have been promoted to a new league; congratulations!": "Вас павысілі і перавялі ў іншую лігу; віншуем!", + "You lost a chest! (All your chest slots were full)": "Вы страцілі куфар! (Усе ячэйкі куфараў былі поўныя)", + "You must update the app to view this.": "Вы павінны абнавіць праграму, каб праглядзець гэта.", "You must update to a newer version of the app to do this.": "Вы павінны абнавіць гульню, каб зрабіць гэта.", "You must update to the newest version of the game to do this.": "Для гэтага неабходна абнавіць да новай версіі гульні.", "You must wait a few seconds before entering a new code.": "Пачакайце некалькі секунд, перад тым, як уводзіць новы код.", + "You placed #${RANK} in a tournament!": "Вы атрымалі #${RANK} месца ў турніры!", "You ranked #${RANK} in the last tournament. Thanks for playing!": "Ваш узровень у апошнім турніры: #${RANK}. Дзякуй за гульню!", "Your account was rejected. Are you signed in?": "Ваш уліковы запіс быў адхілены. Вы ўвайшлі ў сістэму?", + "Your ad views are not registering. Ad options will be limited for a while.": "Прагляды вашай рэкламы не рэгіструюцца. Некаторы час параметры рэкламы будуць абмежаваныя.", "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Ваша версія гульні была мадыфікавана.\nКалі ласка, адмяніце ўсе змены і паспрабуйце яшчэ раз.", "Your friend code was used by ${ACCOUNT}": "${ACCOUNT} выкарыстаў ваш сяброўскі код" }, @@ -1852,6 +1941,7 @@ "twoKillText": "ДВА ЗАБОЙСТВЫ!", "uiScaleText": "Маштаб КІ", "unavailableText": "недаступна", + "unclaimedPrizesText": "У вас незапатрабаваныя прызы!", "unconfiguredControllerDetectedText": "Невядомы кантролер знойдзены:", "unlockThisInTheStoreText": "Гэта павінна быць адкрыта ў магазіне.", "unlockThisProfilesText": "Каб стварыць больш за ${NUM} профіляў, вам трэба:", @@ -1870,6 +1960,7 @@ "usingItunesText": "Выкарыстанне музычнага прыкладання для саўндтрэка ...", "usingItunesTurnRepeatAndShuffleOnText": "Калі ласка, праверце, што ператасаванне і паўтор усяго ў iTunes ўключаны. ", "v2AccountLinkingInfoText": "Да прывязкі акаўнту V2, Нажміце 'Кіраваць акаўнтамі'.", + "v2AccountRequiredText": "Для гэтага патрабуецца ўліковы запіс V2. Абнавіце свой уліковы запіс і паўтарыце спробу.", "validatingTestBuildText": "Праверка Тэставай Зборкі...", "viaText": "праз", "victoryText": "Перамога!", @@ -1936,5 +2027,6 @@ }, "yesAllowText": "Так, Дазволіць!", "yourBestScoresText": "Вашыя Лепшыя Вынікі", - "yourBestTimesText": "Ваш Лепшы Час" + "yourBestTimesText": "Ваш Лепшы Час", + "yourPrizeText": "Ваш прыз:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/chinesesimplified.json b/dist/ba_data/data/languages/chinesesimplified.json new file mode 100644 index 0000000..ac9781f --- /dev/null +++ b/dist/ba_data/data/languages/chinesesimplified.json @@ -0,0 +1,1980 @@ +{ + "accountSettingsWindow": { + "accountNameRules": "账户名称不能包含Emoji表情符号或其他特殊符号!", + "accountsText": "账户", + "achievementProgressText": "完成了${TOTAL}个成就中的${COUNT}个", + "campaignProgressText": "战役进程 [困难] :${PROGRESS}", + "changeOncePerSeason": "在每个赛季中你只能更改它一次。", + "changeOncePerSeasonError": "你需要等到下个赛季才能对它再次更改 (还有${NUM}天)", + "createAnAccountText": "创建一个帐户", + "customName": "玩家姓名", + "deleteAccountText": "删除账户", + "googlePlayGamesAccountSwitchText": "如果你想登录另一个不同的谷歌账户,\n请使用 \"Play 游戏\" 来操作~", + "linkAccountsEnterCodeText": "输入代码", + "linkAccountsGenerateCodeText": "生成代码", + "linkAccountsInfoText": "(在不同的平台上同步游戏进程)", + "linkAccountsInstructionsNewText": "要关联两个帐户,首先,你需要在你第一个设备点“生成代码”\n,然后,你需要在第二个设备点“输入代码”输入第一个设备生成的代码。\n两个帐户数据将被两者共享。\n\n您最多可以关联${COUNT}个帐户。\n(包括自己的账户)\n\n重要提示:最好只关联自己的账户;\n如果你与朋友的账户关联了,那么\n你们将不能同时游玩线上模式。", + "linkAccountsText": "关联账户", + "linkedAccountsText": "已关联的账户:", + "manageAccountText": "管理账户", + "nameChangeConfirm": "是否更改账户名称为${NAME}?", + "resetProgressConfirmNoAchievementsText": "如果这样做,会重置你的单机模式的进程和\n本地的高分记录(不包括你的点券),\n还不能恢复,你确定吗?", + "resetProgressConfirmText": "如果这样做,会重置你的单机模式的进程,\n成就和本地的高分记录\n(不包括你的点券),还不能\n恢复,你确定吗?", + "resetProgressText": "重置游戏进程", + "setAccountName": "设置账户名称", + "setAccountNameDesc": "选择要为您的帐户显示的名称。\n您可以从链接的帐户选择\n或创建唯一的自定义名称。", + "signInInfoText": "登录以获取点券, 在线竞赛,\n并在不同设备上同步游戏进程。", + "signInText": "登录", + "signInWithAnEmailAddressText": "用邮箱注册", + "signInWithDeviceInfoText": "(仅适用于此设备的一个自动账户)", + "signInWithDeviceText": "用设备账户来登录", + "signInWithText": "使用 ${SERVICE} 登录", + "signInWithV2InfoText": "(账户在所有平台都通用)", + "signInWithV2Text": "使用${APP_NAME}渠道账号登录", + "signOutText": "登出", + "signingInText": "登录中...", + "signingOutText": "登出中...", + "ticketsText": "点券:${COUNT}", + "titleText": "账户", + "unlinkAccountsInstructionsText": "选择要取消关联的帐户", + "unlinkAccountsText": "取消关联账户", + "unlinkLegacyV1AccountsText": "取消关联旧版(V1)账户", + "v2LinkInstructionsText": "扫码或使用链接来登录或注册新账户", + "viaAccount": "(不可用名称 ${NAME})", + "youAreSignedInAsText": "你已登录为:" + }, + "achievementChallengesText": "成就挑战", + "achievementText": "成就", + "achievements": { + "Boom Goes the Dynamite": { + "description": "用 TNT 炸死三个坏蛋", + "descriptionComplete": "用 TNT 炸死了三个坏蛋", + "descriptionFull": "在${LEVEL}中用TNT炸死三个坏蛋", + "descriptionFullComplete": "在${LEVEL}中用 TNT 炸死了三个坏蛋", + "name": "发威吧!TNT!" + }, + "Boxer": { + "description": "不使用任何炸弹获得胜利", + "descriptionComplete": "没有使用任何炸弹就获胜了", + "descriptionFull": "在${LEVEL}中不用炸弹获胜", + "descriptionFullComplete": "在${LEVEL}中没用炸弹就获胜了", + "name": "拳皇" + }, + "Dual Wielding": { + "descriptionFull": "连接两个控制手柄(硬件或应用)", + "descriptionFullComplete": "已经连接两个控制手柄(硬件或应用)", + "name": "成双成对" + }, + "Flawless Victory": { + "description": "毫发无损地获胜", + "descriptionComplete": "毫发无损地获胜了", + "descriptionFull": "在${LEVEL}中毫发无损地获胜", + "descriptionFullComplete": "在${LEVEL}中毫发无损地获胜了", + "name": "完美获胜" + }, + "Free Loader": { + "descriptionFull": "开始一个“混战模式”游戏(2+玩家)", + "descriptionFullComplete": "已经开始一个“混战模式”游戏(2+玩家)", + "name": "揩油的人" + }, + "Gold Miner": { + "description": "用地雷杀死6个坏蛋", + "descriptionComplete": "用地雷杀死了6个坏蛋", + "descriptionFull": "在${LEVEL}中用地雷杀死6个坏蛋", + "descriptionFullComplete": "在${LEVEL}中用地雷杀死了6个坏蛋", + "name": "地雷专家" + }, + "Got the Moves": { + "description": "不用炸弹或拳头攻击就获胜", + "descriptionComplete": "没有用炸弹或拳头攻击就获胜了", + "descriptionFull": "在${LEVEL}中不用炸弹或拳头攻击就获胜", + "descriptionFullComplete": "在${LEVEL}中没有用炸弹或拳头攻击就获胜了", + "name": "走位是关键" + }, + "In Control": { + "descriptionFull": "连接一个控制手柄(硬件或应用)", + "descriptionFullComplete": "已经连接一个控制手柄(硬件或应用)", + "name": "掌控之中" + }, + "Last Stand God": { + "description": "得1000分", + "descriptionComplete": "得了1000分", + "descriptionFull": "在${LEVEL}中获得1000分", + "descriptionFullComplete": "在${LEVEL}中获得了1000分", + "name": "${LEVEL}之神" + }, + "Last Stand Master": { + "description": "得250分", + "descriptionComplete": "得了250分", + "descriptionFull": "在${LEVEL}中获得250分", + "descriptionFullComplete": "在${LEVEL}中获得了250分", + "name": "${LEVEL}的大师" + }, + "Last Stand Wizard": { + "description": "得了500分", + "descriptionComplete": "得了500分", + "descriptionFull": "在${LEVEL}中获得500分", + "descriptionFullComplete": "在${LEVEL}中获得了500分", + "name": "${LEVEL}的行家" + }, + "Mine Games": { + "description": "用地雷炸死3个坏蛋", + "descriptionComplete": "用地雷炸死了3个坏蛋", + "descriptionFull": "在${LEVEL}中用地雷炸死3个坏蛋", + "descriptionFullComplete": "在${LEVEL}中用地雷炸死了3个坏蛋", + "name": "地雷战" + }, + "Off You Go Then": { + "description": "把3个坏蛋扔出地图", + "descriptionComplete": "把3个坏蛋扔出地图", + "descriptionFull": "在${LEVEL}中把3个坏蛋扔出地图", + "descriptionFullComplete": "在${LEVEL}中把3个坏蛋扔出地图", + "name": "现在到你了" + }, + "Onslaught God": { + "description": "得5000分", + "descriptionComplete": "得了5000分", + "descriptionFull": "在${LEVEL}中获得5000分", + "descriptionFullComplete": "在${LEVEL}中获得了5000分", + "name": "${LEVEL}之神" + }, + "Onslaught Master": { + "description": "得500分", + "descriptionComplete": "得了500分", + "descriptionFull": "在${LEVEL}中得500分", + "descriptionFullComplete": "在${LEVEL} 中得到500分", + "name": "${LEVEL} 专家" + }, + "Onslaught Training Victory": { + "description": "打败所有敌人", + "descriptionComplete": "打败了所有敌人", + "descriptionFull": "在${LEVEL} 上打败所有敌人", + "descriptionFullComplete": "在${LEVEL} 上打败了所有敌人", + "name": "${LEVEL} 胜利" + }, + "Onslaught Wizard": { + "description": "得1000分", + "descriptionComplete": "得了1000分", + "descriptionFull": "在${LEVEL} 中得1000分", + "descriptionFullComplete": "在${LEVEL} 中得到了1000分", + "name": "${LEVEL} 之圣" + }, + "Precision Bombing": { + "description": "无道具获胜", + "descriptionComplete": "无道具获胜了", + "descriptionFull": "在${LEVEL} 中无道具获胜", + "descriptionFullComplete": "在${LEVEL} 中无道具获胜了", + "name": "精确爆炸" + }, + "Pro Boxer": { + "description": "不用任何炸弹就取胜", + "descriptionComplete": "不用任何炸弹就取胜了", + "descriptionFull": "在${LEVEL} 中不用炸弹就取胜", + "descriptionFullComplete": "在${LEVEL} 中不用炸弹就取胜了", + "name": "专业拳击手" + }, + "Pro Football Shutout": { + "description": "完爆坏人队(不让坏人队得分)", + "descriptionComplete": "完爆了坏人队(不让坏人队得分)", + "descriptionFull": "在${LEVEL} 中完爆坏人队(不让坏人队得分)", + "descriptionFullComplete": "在${LEVEL} 中完爆了坏人队(不让坏人队得分)", + "name": "无懈可击的${LEVEL}" + }, + "Pro Football Victory": { + "description": "赢得比赛", + "descriptionComplete": "赢得了比赛", + "descriptionFull": "赢得${LEVEL}", + "descriptionFullComplete": "赢得了${LEVEL}", + "name": "${LEVEL} 获胜" + }, + "Pro Onslaught Victory": { + "description": "打败所有敌人", + "descriptionComplete": "打败了所有敌人", + "descriptionFull": "在${LEVEL} 中打败所有坏蛋", + "descriptionFullComplete": "在${LEVEL} 中打败了所有坏蛋", + "name": "${LEVEL} 获胜" + }, + "Pro Runaround Victory": { + "description": "打败所有敌人", + "descriptionComplete": "打败了所有敌人", + "descriptionFull": "在${LEVEL} 中打败所有坏蛋", + "descriptionFullComplete": "在${LEVEL} 中打败了所有坏蛋", + "name": "${LEVEL} 取胜" + }, + "Rookie Football Shutout": { + "description": "完爆坏人队(不让坏人队得分)", + "descriptionComplete": "完爆了坏人队", + "descriptionFull": "在${LEVEL} 中完爆坏人队", + "descriptionFullComplete": "在${LEVEL} 中完爆了坏人队", + "name": "${LEVEL} 完胜" + }, + "Rookie Football Victory": { + "description": "赢得比赛", + "descriptionComplete": "赢得了比赛", + "descriptionFull": "赢得${LEVEL}", + "descriptionFullComplete": "赢得了${LEVEL}", + "name": "${LEVEL} 获胜" + }, + "Rookie Onslaught Victory": { + "description": "打败所有敌人", + "descriptionComplete": "打败了所有敌人", + "descriptionFull": "在${LEVEL} 中打败所有坏蛋", + "descriptionFullComplete": "在${LEVEL} 中打败了所有坏蛋", + "name": "${LEVEL} 获胜" + }, + "Runaround God": { + "description": "得2000分", + "descriptionComplete": "得了2000分", + "descriptionFull": "在${LEVEL} 中得到2000分", + "descriptionFullComplete": "在${LEVEL} 中得到了2000分", + "name": "${LEVEL} 之神" + }, + "Runaround Master": { + "description": "得500分", + "descriptionComplete": "得了500分", + "descriptionFull": "在${LEVEL} 中得到500分", + "descriptionFullComplete": "在${LEVEL} 中得到了500分", + "name": "${LEVEL} 大师" + }, + "Runaround Wizard": { + "description": "得1000分", + "descriptionComplete": "得了1000分", + "descriptionFull": "在${LEVEL} 得到1000分", + "descriptionFullComplete": "在${LEVEL} 中得到了1000分", + "name": "${LEVEL} 之圣" + }, + "Sharing is Caring": { + "descriptionFull": "成功和一个朋友分享游戏", + "descriptionFullComplete": "已经成功和一个朋友分享游戏", + "name": "独享不如分享" + }, + "Stayin' Alive": { + "description": "一直活着赢得比赛", + "descriptionComplete": "一直活着赢得了比赛", + "descriptionFull": "在${LEVEL} 中不死赢得比赛", + "descriptionFullComplete": "在${LEVEL} 中不死赢得了比赛", + "name": "不死之身" + }, + "Super Mega Punch": { + "description": "一拳造成100%的伤害", + "descriptionComplete": "一拳造成了100%的伤害", + "descriptionFull": "一拳造成了100%的伤害", + "descriptionFullComplete": "在${LEVEL}中一拳造成了100%的伤害", + "name": "无敌大拳头" + }, + "Super Punch": { + "description": "一拳造成50%的伤害", + "descriptionComplete": "一拳造成了50%的伤害", + "descriptionFull": "在${LEVEL}中一拳造成了50%的伤害", + "descriptionFullComplete": "在${LEVEL}中一拳造成50%的伤害", + "name": "大拳头" + }, + "TNT Terror": { + "description": "用TNT炸死6个坏蛋", + "descriptionComplete": "用TNT炸死了6个坏蛋", + "descriptionFull": "在${LEVEL}中用TNT炸死6个坏蛋", + "descriptionFullComplete": "在${LEVEL}中用TNT炸死了6个坏蛋", + "name": "恐怖TNT" + }, + "Team Player": { + "descriptionFull": "开始一个“团队”游戏(4+玩家)", + "descriptionFullComplete": "已经开始一个“团队”游戏(4+玩家)", + "name": "团队玩家" + }, + "The Great Wall": { + "description": "阻止所有坏蛋通过", + "descriptionComplete": "阻止了所有坏蛋", + "descriptionFull": "在${LEVEL}中阻止所有坏蛋通过", + "descriptionFullComplete": "在${LEVEL}中阻止了所有坏蛋", + "name": "铜墙铁壁" + }, + "The Wall": { + "description": "阻止所有坏蛋通过", + "descriptionComplete": "阻止了所有的坏蛋", + "descriptionFull": "在${LEVEL}中阻止所有坏蛋通过", + "descriptionFullComplete": "在${LEVEL}中阻止了所有的坏蛋", + "name": "铜墙铁壁" + }, + "Uber Football Shutout": { + "description": "不失分赢得比赛", + "descriptionComplete": "不失分赢得了比赛", + "descriptionFull": "在${LEVEL} 中不失分赢得比赛", + "descriptionFullComplete": "在${LEVEL} 中不失分赢得了比赛", + "name": "${LEVEL} 完胜" + }, + "Uber Football Victory": { + "description": "赢得比赛", + "descriptionComplete": "赢得比赛", + "descriptionFull": "在${LEVEL}中获胜", + "descriptionFullComplete": "在${LEVEL}中获胜", + "name": "${LEVEL} 获胜" + }, + "Uber Onslaught Victory": { + "description": "防御所有坏蛋", + "descriptionComplete": "防御了所有坏蛋", + "descriptionFull": "在 ${LEVEL} 中防御所有坏蛋", + "descriptionFullComplete": "在 ${LEVEL} 中防御了所有坏蛋", + "name": "${LEVEL} 获胜" + }, + "Uber Runaround Victory": { + "description": "打败所有敌人", + "descriptionComplete": "打败了所有敌人", + "descriptionFull": "在 ${LEVEL} 中打败所有敌人", + "descriptionFullComplete": "在 ${LEVEL} 中打败了所有敌人", + "name": "${LEVEL} 获胜" + } + }, + "achievementsRemainingText": "未完成成就:", + "achievementsText": "成就", + "achievementsUnavailableForOldSeasonsText": "抱歉,往届的成就细节不可用。", + "activatedText": "${THING} 已激活", + "addGameWindow": { + "getMoreGamesText": "获取更多游戏模式…", + "titleText": "添加比赛" + }, + "addToFavoritesText": "添加到收藏", + "addedToFavoritesText": "将'${NAME}'添加到收藏", + "allText": "全部", + "allowText": "允许", + "alreadySignedInText": "您的账号已在其他设备登录;\n请切换账号或者退出已登录的设备,\n然后再试一次", + "apiVersionErrorText": "无法加载模组${NAME};它的API版本为 ${VERSION_USED},我们需要 ${VERSION_REQUIRED}.", + "applyText": "应用", + "areYouSureText": "你确定吗?", + "audioSettingsWindow": { + "headRelativeVRAudioInfoText": "(“自动”仅在插入耳机时有效)", + "headRelativeVRAudioText": "头部相对VR音频", + "musicVolumeText": "音乐音量", + "soundVolumeText": "音效音量", + "soundtrackButtonText": "自定义背景音乐", + "soundtrackDescriptionText": "导入自定义背景音乐", + "titleText": "声音" + }, + "autoText": "自动", + "backText": "返回", + "banThisPlayerText": "禁掉该玩家", + "bestOfFinalText": "${COUNT}局决胜制最后得分", + "bestOfSeriesText": "${COUNT}决胜制:", + "bestRankText": "您的最佳是 #${RANK}", + "bestRatingText": "您的最高评价是 ${RATING}", + "bombBoldText": "炸弹", + "bombText": "炸弹", + "boostText": "加速", + "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME}在该应用程序自身中设置。", + "buttonText": "按钮", + "canWeDebugText": "当${APP_NAME}出现错误或崩溃时\n我们能否收集错误信息并上报给件开发者?\n\n这样有助于开发者修复bug并完善功能\n同时我们承诺,上报的信息不会包含你的个人信息", + "cancelText": "取消", + "cantConfigureDeviceText": "抱歉,${DEVICE}不可配置。", + "challengeEndedText": "此挑战已经结束。", + "chatMuteText": "屏蔽消息", + "chatMutedText": "聊天静音", + "chatUnMuteText": "取消屏蔽消息", + "chests": { + "prizeOddsText": "奖品概率", + "reduceWaitText": "减少开箱时间", + "slotDescriptionText": "这个空位可用于存放宝箱。\n\n通过完成战役关卡、\n在锦标赛中获得名次以及达成成就,\n即可获得宝箱。", + "slotText": "宝箱槽位 ${NUM}", + "slotsFullWarningText": "警告:宝箱槽位已满!\n本局游戏内获得的所有宝箱将无法保存。", + "unlocksInText": "解锁" + }, + "choosingPlayerText": "<选择玩家>", + "claimText": "领取", + "codesExplainText": "开发者会提供代码来\n诊断和修复账户问题", + "completeThisLevelToProceedText": "你需要先完成这一关", + "completionBonusText": "完成奖励", + "configControllersWindow": { + "configureControllersText": "手柄配置", + "configureKeyboard2Text": "键盘设置 P2", + "configureKeyboardText": "键盘配置", + "configureMobileText": "用移动设备作为控制器", + "configureTouchText": "触摸屏配置", + "ps3Text": "PS3手柄", + "titleText": "手柄", + "wiimotesText": "Wii手柄", + "xbox360Text": "Xbox360手柄" + }, + "configGamepadSelectWindow": { + "androidNoteText": "注意:是否支持手柄取决于您的设备和系统版本。", + "pressAnyButtonText": "按手柄上的任意按钮\n 您想要配置...", + "titleText": "手柄配置" + }, + "configGamepadWindow": { + "advancedText": "高级", + "advancedTitleText": "高级控制器设置", + "analogStickDeadZoneDescriptionText": "(释放摇杆角色出现“漂移”情况时调高)", + "analogStickDeadZoneText": "模拟摇杆盲区", + "appliesToAllText": "(适用于所有该类型手柄)", + "autoRecalibrateDescriptionText": "(角色未全速移动时有效)", + "autoRecalibrateText": "自动校准模拟摇杆", + "axisText": "轴", + "clearText": "清除", + "dpadText": "方向键", + "extraStartButtonText": "额外启动按钮", + "ifNothingHappensTryAnalogText": "如无反应,请尝试分配至模拟摇杆。", + "ifNothingHappensTryDpadText": "如无反应,请尝试分配至方向键。", + "ignoreCompletelyDescriptionText": "(避免这个控制器影响游戏或菜单)", + "ignoreCompletelyText": "已完全忽略", + "ignoredButton1Text": "已忽略 按键1", + "ignoredButton2Text": "已忽略 按键2", + "ignoredButton3Text": "已忽略 按键3", + "ignoredButton4Text": "已忽略 按键4", + "ignoredButtonDescriptionText": "(用于防止“主页”或“同步”按钮影响用户界面)", + "pressAnyAnalogTriggerText": "按任意模拟扳机...", + "pressAnyButtonOrDpadText": "按任意键或方向键...", + "pressAnyButtonText": "按任意键", + "pressLeftRightText": "按左或右", + "pressUpDownText": "按上或下", + "runButton1Text": "跑 按键1", + "runButton2Text": "跑 按键2", + "runTrigger1Text": "跑 扳机1", + "runTrigger2Text": "跑 扳机2", + "runTriggerDescriptionText": "(模拟扳机可实现变速奔跑)", + "secondHalfText": "用于设置显示为单一手柄的\n二合一手柄设备的\n第二部分。", + "secondaryEnableText": "启用", + "secondaryText": "从属手柄", + "startButtonActivatesDefaultDescriptionText": "(如果启动按钮更倾向为“菜单”按钮,则关闭此功能)", + "startButtonActivatesDefaultText": "启动按钮激活默认部件", + "titleText": "手柄设置", + "twoInOneSetupText": "二合一手柄设置", + "uiOnlyDescriptionText": "(阻止这个控制器加入游戏)", + "uiOnlyText": "限制菜单应用", + "unassignedButtonsRunText": "全部未分配按钮 跑", + "unsetText": "<未设置>", + "vrReorientButtonText": "虚拟按钮调整" + }, + "configKeyboardWindow": { + "configuringText": "配置${DEVICE}", + "keyboard2NoteText": "注:大多数键盘一次只能同时按几个按键,\n所以如果玩家另接一个单独的键盘,\n则两个键盘可帮助他们更好地玩游戏。\n请注意,即使在这种情况下,您也仍需\n为两个玩家分配独特的按键。" + }, + "configTouchscreenWindow": { + "actionControlScaleText": "动作键大小", + "actionsText": "动作", + "buttonsText": "按钮", + "dragControlsText": "<拖动手柄重新定位他们>", + "joystickText": "游戏摇杆", + "movementControlScaleText": "移动键大小", + "movementText": "移动", + "resetText": "重置", + "swipeControlsHiddenText": "隐藏滑动图标", + "swipeInfoText": "“滑动”式手柄是需要花点时间来适应的,但\n能不看手柄上的控制键玩游戏会更轻松。", + "swipeText": "滑动", + "titleText": "触摸屏配置" + }, + "configureDeviceInSystemSettingsText": "${DEVICE} 可以在系统设置中配置捏", + "configureItNowText": "现在立即配置吗?", + "configureText": "配置", + "connectMobileDevicesWindow": { + "amazonText": "亚马逊应用商店", + "appStoreText": "App Store", + "bestResultsText": "低延迟无线网可助你取得最佳成绩。要想降低无线网延迟,\n你可以关闭其他无线设备,\n或者在无线路由器附近玩,\n再或者将游戏主机连接以太网。", + "explanationText": "如果想把智能手机或平板设备作为控制器,请安装\n“${REMOTE_APP_NAME}”。通过无线网络,最多可\n以支持8个设备同时连接。最酷的是,这完全免费!", + "forAndroidText": "安卓", + "forIOSText": "iOS", + "getItForText": "iOS 用户可从App Store 获取 ${REMOTE_APP_NAME}\nAndroid 用户可以通过Google Play(中国无法正常获取)或者亚马逊应用商店(中国用户推荐使用)获取", + "googlePlayText": "Google Play", + "titleText": "把移动设备用作为游戏手柄" + }, + "continuePurchaseText": "花 ${PRICE}继续?", + "continueText": "继续", + "controlsText": "控制键", + "coopSelectWindow": { + "activenessAllTimeInfoText": "不提供所有时间的排名。", + "activenessInfoText": "倍数随玩游戏天数增加,\n随未玩游戏天数减少。", + "activityText": "活动", + "campaignText": "比赛", + "challengesInfoText": "获取完成迷你游戏的奖励。\n\n每完成一项挑战\n奖励和难度都会增加,\n每挑战失败或放弃挑战一次,奖励和难度都会降低。", + "challengesText": "挑战", + "currentBestText": "当前最高分", + "customText": "自定义", + "entryFeeText": "参赛", + "forfeitConfirmText": "要放弃挑战吗?", + "forfeitNotAllowedYetText": "尚不能放弃此挑战。", + "forfeitText": "放弃", + "multipliersText": "倍数", + "nextChallengeText": "下一挑战", + "nextPlayText": "下一次游戏", + "ofTotalTimeText": "${TOTAL}", + "playNowText": "立即开玩", + "pointsText": "分", + "powerRankingFinishedSeasonUnrankedText": "(已结束赛季,未排名)", + "powerRankingNotInTopText": "(${NUMBER}名以外)", + "powerRankingPointsEqualsText": "${NUMBER}分", + "powerRankingPointsMultText": "(x ${NUMBER} 分)", + "powerRankingPointsText": "${NUMBER} 分", + "powerRankingPointsToRankedText": "(${CURRENT}分 已获得 共${REMAINING}分)", + "powerRankingText": "能力排位", + "prizesText": "奖励", + "proMultInfoText": "${PRO}升级的玩家\n获得${PERCENT}%的得分提速。", + "seeMoreText": "更多……", + "skipWaitText": "跳过等待", + "timeRemainingText": "剩余时间", + "toRankedText": "排名", + "totalText": "总计", + "tournamentInfoText": "与联赛中的其他玩家\n争夺高分。\n\n锦标赛时间结束时\n高分玩家将赢得奖励。", + "welcome1Text": "欢迎来到${LEAGUE}。你可以通过\n在锦标赛中赚取星级、达成成就及\n赢得冠军来提升你的联赛排名。", + "welcome2Text": "你还可参加很多相同活动来赢取点券。\n点券可用于解锁新的角色、地图和\n迷你游戏,或进入锦标赛,或更多用途", + "yourPowerRankingText": "你的能力排位:" + }, + "copyConfirmText": "复制到剪贴板", + "copyOfText": "${NAME} 复制", + "copyText": "复制", + "createEditPlayerText": "<创建/编辑玩家>", + "createText": "创建", + "creditsWindow": { + "additionalAudioArtIdeasText": "添补音频、初期原图和创意:${NAME}", + "additionalMusicFromText": "添补背景音乐:${NAME}", + "allMyFamilyText": "帮助进行游戏测试的我的所有好友和家人", + "codingGraphicsAudioText": "编程、图形引擎和音频引擎:${NAME}", + "languageTranslationsText": "语言翻译:", + "legalText": "法律:", + "publicDomainMusicViaText": "版权公有音乐:${NAME}", + "softwareBasedOnText": "该软件部分基于${NAME}的工作", + "songCreditText": "${TITLE}演唱:${PERFORMER}\n作曲:${COMPOSER},改编:${ARRANGER},发行:${PUBLISHER},\n由${SOURCE}提供", + "soundAndMusicText": "音乐和音效", + "soundsText": "音乐(${SOURCE}):", + "specialThanksText": "特别感谢", + "thanksEspeciallyToText": "尤其感谢 ${NAME}", + "titleText": "${APP_NAME}制作团队", + "whoeverInventedCoffeeText": "发明咖啡的人" + }, + "currentStandingText": "您目前的排名是#${RANK}", + "customizeText": "自定义...", + "deathsTallyText": "${COUNT}次死亡", + "deathsText": "死亡", + "debugText": "调试", + "debugWindow": { + "reloadBenchmarkBestResultsText": "注意:建议您在调试阶段将设置->画面->纹理设置为“高”。", + "runCPUBenchmarkText": "运行CPU基准程序", + "runGPUBenchmarkText": "运行GPU基准程序", + "runMediaReloadBenchmarkText": "运行媒体重载基准程序", + "runStressTestText": "运行压力测试", + "stressTestPlayerCountText": "玩家计数", + "stressTestPlaylistDescriptionText": "压力测试列表", + "stressTestPlaylistNameText": "列表名称", + "stressTestPlaylistTypeText": "列表类型", + "stressTestRoundDurationText": "回合时长", + "stressTestTitleText": "压力测试", + "titleText": "基准程序和压力测试", + "totalReloadTimeText": "总计重载时间:${TIME}(详见日志)" + }, + "defaultGameListNameText": "默认${PLAYMODE}列表", + "defaultNewGameListNameText": "我的${PLAYMODE}列表", + "deleteText": "删除", + "demoText": "演示", + "denyText": "拒绝", + "deprecatedText": "已弃用", + "descriptionText": "内容", + "desktopResText": "桌面分辨率", + "deviceAccountUpgradeText": "紧急警告:\n你正在使用本地账户登录! (${NAME})\n此账户会在未来升级中被删除!!\n~如果想保持账号,请升级到v2账户~", + "difficultyEasyText": "简单", + "difficultyHardOnlyText": "仅限困难模式", + "difficultyHardText": "困难", + "difficultyHardUnlockOnlyText": "该关卡只可解锁在困难模式下解锁。\n你认为自己拥有夺冠的实力吗!?!?", + "directBrowserToURLText": "请打开网页浏览器访问以下链接:", + "disableRemoteAppConnectionsText": "禁止炸队手柄应用连接", + "disableXInputDescriptionText": "允许使用4个以上的控制器但可能不会正常工作", + "disableXInputText": "禁用XInput", + "disabledText": "禁用", + "discardText": "Discard", + "discordFriendsText": "想要结交新朋友一起玩吗?\n来加入我们的Discord吧!", + "discordJoinText": "加入Discord", + "doneText": "完成", + "drawText": "平局", + "duplicateText": "复制", + "editGameListWindow": { + "addGameText": "添加\n比赛", + "cantOverwriteDefaultText": "不可以覆盖默认的比赛列表!", + "cantSaveAlreadyExistsText": "已存在与此名字相同的比赛列表!", + "cantSaveEmptyListText": "不可以保存空白的比赛列表!", + "editGameText": "编辑\n比赛", + "listNameText": "比赛列表名称", + "nameText": "名称", + "removeGameText": "删除\n比赛", + "saveText": "保存", + "titleText": "列表编辑器" + }, + "editProfileWindow": { + "accountProfileInfoText": "此特殊玩家档案,\n可能含有其中一个图标:\n\n${ICONS}\n\n基于您的登录平台以显示\n相关图标。(其中一部分可能已经绝版)", + "accountProfileText": "(账户资料)", + "availableText": "\"${NAME}\"可用。", + "characterText": "角色", + "checkingAvailabilityText": "正在检查\"${NAME}\"是否可用…", + "colorText": "颜色", + "getMoreCharactersText": "获取更多角色...", + "getMoreIconsText": "获取更多图标...", + "globalProfileInfoText": "全球玩家档案可使玩家拥有全世界唯一的名称。\n档案也包括自定义图标。", + "globalProfileText": "(全球档案)", + "highlightText": "副颜色", + "iconText": "图标", + "localProfileInfoText": "本地玩家档案不含图标,且玩家名称不具唯一性。\n升级至全球档案,以拥有唯一的游戏名称,并添加自定义图标。\n#警告:切勿使用随机到的名称,被使用的可能性极大。", + "localProfileText": "(本地档案)", + "nameDescriptionText": "角色名称", + "nameText": "名称", + "profileAlreadyExistsText": "具有该名称的配置文件已存在", + "randomText": "随机", + "titleEditText": "编辑档案", + "titleNewText": "新建档案", + "unavailableText": "\"${NAME}\"不可用;请尝试另一名称。", + "upgradeProfileInfoText": "这可在全球范围内保存您的玩家名称,\n并可让您为自己的名称分配一个自定义图标。", + "upgradeToGlobalProfileText": "升级至全球档案" + }, + "editSoundtrackWindow": { + "cantDeleteDefaultText": "不能删除默认的背景音乐。", + "cantEditDefaultText": "不能编辑默认的背景音乐。请备份或是新建一个背景音乐列表。", + "cantOverwriteDefaultText": "不可以覆盖默认的背景音乐", + "cantSaveAlreadyExistsText": "这个名字的背景音乐已经存在!", + "defaultGameMusicText": "<默认游戏音乐>", + "defaultSoundtrackNameText": "默认自定义背景音乐", + "deleteConfirmText": "删除自定义背景音乐:\n\n'${NAME}'?", + "deleteText": "删除自定义\n背景音乐", + "duplicateText": "备份自定义\n背景音乐", + "editSoundtrackText": "自定义背景音乐编辑器", + "editText": "编辑自定义\n背景音乐", + "fetchingITunesText": "正在获得音乐应用播放列表", + "musicVolumeZeroWarning": "注意:现在音量为0", + "nameText": "名称", + "newSoundtrackNameText": "我的背景音乐${COUNT}", + "newSoundtrackText": "新的背景音乐:", + "newText": "创建背\n景音乐", + "selectAPlaylistText": "选择一个列表", + "selectASourceText": "音乐来源", + "testText": "测试", + "titleText": "自定义背景音乐", + "useDefaultGameMusicText": "默认游戏音乐", + "useITunesPlaylistText": "音乐应用播放列表", + "useMusicFileText": "音乐文件(mp3文件等)", + "useMusicFolderText": "音乐文件夹" + }, + "editText": "修改", + "enabledText": "启用", + "endText": "结束", + "enjoyText": "尽情享用吧!", + "epicDescriptionFilterText": "史诗级慢动作的 ${DESCRIPTION}。", + "epicNameFilterText": "史诗级 ${NAME}", + "errorAccessDeniedText": "访问被拒绝", + "errorDeviceTimeIncorrectText": "您设备的时间有 ${HOURS} 小时的误差。\n这会导致游戏出现问题。\n请检查您设备的时间和时区设置。", + "errorOutOfDiskSpaceText": "存储空间不足,无法保存游戏进度", + "errorSecureConnectionFailText": "无法建立安全的云链接,网络可能会连接失败", + "errorText": "啊呜,好像出错了喵...", + "errorUnknownText": "未知错误", + "exitGameText": "退出${APP_NAME}?", + "expiredAgoText": "${T} 前已过期", + "expiresInText": "${T} 后过期", + "exportSuccessText": "退出'${NAME}'", + "externalStorageText": "外部存储器", + "failText": "失败", + "fatalErrorText": "哎呀,有些文件丢失或损坏了喵~\n请尝试重装游戏,或者\n联系 ${EMAIL} 寻求帮助喵~", + "fileSelectorWindow": { + "titleFileFolderText": "选择一个文件或文件夹", + "titleFileText": "选择一个文件", + "titleFolderText": "选择一个文件夹", + "useThisFolderButtonText": "使用此文件夹" + }, + "filterText": "搜索", + "finalScoreText": "最后得分", + "finalScoresText": "最后得分", + "finalTimeText": "最终时间", + "finishingInstallText": "安装即将完成...", + "fireTVRemoteWarningText": "* 为获得更好的游戏体验,请使用\n游戏手柄或在您的手机和\n平板电脑上安装\n'${REMOTE_APP_NAME}'。", + "firstToFinalText": "${COUNT}局自由混战赛最后得分", + "firstToSeriesText": "${COUNT}局自由混战赛", + "fiveKillText": "五连杀!!!", + "flawlessWaveText": "完美的一波!", + "fourKillText": "四连杀!!!", + "friendScoresUnavailableText": "无法查看好友的得分。", + "gameLeadersText": "最高得分玩家数:${COUNT}", + "gameListWindow": { + "cantDeleteDefaultText": "您不能删除默认的比赛列表!", + "cantEditDefaultText": "不能编辑默认的比赛列表!复制或者新建一个。", + "cantShareDefaultText": "你不能分享默认列表", + "deleteConfirmText": "是否删除“${LIST}”?", + "deleteText": "删除\n比赛列表", + "duplicateText": "复制\n比赛列表", + "editText": "编辑\n比赛列表", + "newText": "新建\n比赛列表", + "pointsToWinText": "获胜点数", + "seriesLengthText": "列表长度", + "showTutorialText": "展示游戏基本教程", + "shuffleGameOrderText": "随机比赛模式", + "titleText": "自定义${TYPE}列表" + }, + "gameSettingsWindow": { + "addGameText": "添加比赛" + }, + "gamesToText": "${WINCOUNT}比${LOSECOUNT}", + "gatherWindow": { + "aboutDescriptionLocalMultiplayerExtraText": "请记住:如果你有足够多的游戏手柄,\n那你就可以让多个玩家用手柄同时游戏。", + "aboutDescriptionText": "这个选项卡是用来联机(开派对/房间)的喵~\n\n在派对中,你可以和朋友在不同的设备上\n一起玩游戏和比赛的喵~\n\n点击右上角的${PARTY}按钮\n来发起派对聊天和互动喵~\n(手柄请在菜单中时按${BUTTON}喵~)", + "aboutText": "关于", + "addressFetchErrorText": "<获取地址出错>", + "appInviteMessageText": "${NAME} 在${APP_NAME}中送给了您${COUNT} 点券", + "appInviteSendACodeText": "向他们发送一个代码", + "appInviteTitleText": "${APP_NAME} App 邀请码", + "bluetoothAndroidSupportText": "(适用于任何支持蓝牙功能的安卓设备)", + "bluetoothDescriptionText": "通过蓝牙来创建或加入比赛", + "bluetoothHostText": "通过蓝牙来创建游戏", + "bluetoothJoinText": "通过蓝牙来加入游戏", + "bluetoothText": "蓝牙", + "checkingText": "检查中...", + "copyCodeConfirmText": "代码已复制到粘贴板。", + "copyCodeText": "复制代码", + "dedicatedServerInfoText": "建立一个专用服务器来获得最佳效果,详情见 bombsquadgame.com/server 哦!", + "descriptionShortText": "使用多人游戏窗口来组建派对。", + "disconnectClientsText": "这将使派对中的${COUNT}位玩家\n断开连接。是否确定?", + "earnTicketsForRecommendingAmountText": "如果您的朋友们玩了这款游戏,他们将会收到 ${COUNT} 点券\n(每个畅游的朋友将让你收到 ${YOU_COUNT}点券)", + "earnTicketsForRecommendingText": "分享游戏来\n获取免费点券...", + "emailItText": "通过电子邮件发送", + "favoritesSaveText": "另存为收藏", + "favoritesText": "收藏", + "freeCloudServerAvailableMinutesText": "下一次免费云服务器将在 ${MINUTES} 分钟后可用。", + "freeCloudServerAvailableNowText": "当前免费云服务器可用!", + "freeCloudServerNotAvailableText": "无免费云服务器可用。", + "friendHasSentPromoCodeText": "从 ${NAME} 中获取 ${COUNT} 张 ${APP_NAME} 点券", + "friendPromoCodeAwardText": "每使用一次,你可收到${COUNT}张点券。", + "friendPromoCodeExpireText": "代码将在 ${EXPIRE_HOURS} 小时后失效,代码仅适用于新玩家。", + "friendPromoCodeInstructionsText": "请前往${APP_NAME}的“设置->高级->兑换礼包码”来兑换;\n要下载最新版,请访问www.bombsquad.cn(仅限中国大陆)", + "friendPromoCodeRedeemLongText": "达到${MAX_USES}人后,就不可获得${COUNT}免费点券。(防止玩家用来作弊)", + "friendPromoCodeRedeemShortText": "可在游戏中兑换${COUNT}免费点券。", + "friendPromoCodeWhereToEnterText": "(新用户可前往\"设置->高级->兑换礼包码\"中兑换)", + "getFriendInviteCodeText": "获取好友邀请码", + "googlePlayDescriptionText": "邀请Google Play玩家来加入你的派对", + "googlePlayInviteText": "邀请", + "googlePlayReInviteText": "如果你发出一个新邀请,\n则你的派对中的${COUNT}位Google Play玩家将断开连接。\n在发出的新邀请中再次邀请他们,让他们重回派对。", + "googlePlaySeeInvitesText": "查看邀请", + "googlePlayText": "Google Play", + "googlePlayVersionOnlyText": "(仅针对 Google Play 设备)", + "hostPublicPartyDescriptionText": "创建一个公开派对", + "hostingUnavailableText": "主机不可用", + "inDevelopmentWarningText": "注意:\n\n联网模式是一项新的并且还在开发特性,\n目前强烈建议所有玩家在同一个\n无线局域网下游戏。", + "internetText": "在线游戏", + "inviteAFriendText": "你的朋友还没下载?邀请他们\n一起玩,新玩家可获得${COUNT}张免费点券。", + "inviteFriendsText": "邀请朋友", + "joinPublicPartyDescriptionText": "加入一个公开派对", + "localNetworkDescriptionText": "加入一个局域网派对(通过wifi,蓝牙等各种方式)", + "localNetworkText": "本地网络", + "makePartyPrivateText": "将我的派对变成私人派对", + "makePartyPublicText": "将我的派对变成公开派对", + "manualAddressText": "地址", + "manualConnectText": "连接", + "manualDescriptionText": "加入派对,地址:", + "manualJoinSectionText": "使用地址加入", + "manualJoinableFromInternetText": "是否可从互联网连接?:", + "manualJoinableNoWithAsteriskText": "否*", + "manualJoinableYesText": "是", + "manualRouterForwardingText": "* 若要解决此问题,请尝试将您的路由器设置为将UDP端口${PORT}转发到你的本地地址(地址一般是192.168.*.*)", + "manualText": "手动", + "manualYourAddressFromInternetText": "互联网地址:", + "manualYourLocalAddressText": "本地地址:", + "nearbyText": "附近", + "noConnectionText": "<无连接>", + "noPartiesAddedText": "没有加入派对", + "otherVersionsText": "(其他版本)", + "partyCodeText": "派对代码", + "partyInviteAcceptText": "接受", + "partyInviteDeclineText": "拒绝", + "partyInviteIgnoreText": "忽略", + "partyInviteText": "${NAME}已邀请\n你加入他们的派对!", + "partyNameText": "派对名称", + "partyServerRunningText": "您的派对服务器正在运行。", + "partySizeText": "派对规模大小", + "partyStatusCheckingText": "检查中", + "partyStatusJoinableText": "你的派对现在可以从互联网上加入了", + "partyStatusNoConnectionText": "无法连接到服务器", + "partyStatusNotJoinableText": "你的派对不能从互联网上加入", + "partyStatusNotPublicText": "你的派对是私人的", + "pingText": "延迟", + "portText": "端口", + "privatePartyCloudDescriptionText": "私人服务器在官方的云服务器上运行;无需路由器配置", + "privatePartyHostText": "创建一个私人派对", + "privatePartyJoinText": "加入一个公开派对", + "privateText": "私人", + "publicHostRouterConfigText": "这可能需要配置路由器进行端口转发,为了更简单的选择,请使用私人派对", + "publicText": "公共", + "requestingAPromoCodeText": "正在请求代码…", + "sendDirectInvitesText": "直接邀请", + "shareThisCodeWithFriendsText": "与好友分享此代码:", + "showMyAddressText": "显示我的地址", + "startHostingPaidText": "创建需花费 ${COST}", + "startHostingText": "创建", + "startStopHostingMinutesText": "你还可以使用${MINUTES}分钟的免费服务器", + "stopHostingText": "停止主机", + "titleText": "多人游戏", + "wifiDirectDescriptionBottomText": "如果所有设备都设有 Wi-Fi Direct 面板,那他们应该可以使用通过它来找到彼此,\n然后相互连接。一旦所有设备都相互连接上了,你就可以通过“本地网络”选项卡\n在此组织派对,常规的无线局域网也是一样。\n\n如要取得最佳效果,Wi-Fi Direct 创建者也应是${APP_NAME} 派对的创建者", + "wifiDirectDescriptionTopText": "无需无线网络即可直接\n通过Wi-Fi Direct连接安卓设备。对于安装了Android 4.2或更高版本操作系统的设备效果更好。\n\n要使用该功能,可打开无线网络连接设置,然后在菜单中寻找'Wi-Fi Direct'。", + "wifiDirectOpenWiFiSettingsText": "打开无线网络连接设置", + "wifiDirectText": "Wi-Fi Direct", + "worksBetweenAllPlatformsText": "(所有平台之间运作)", + "youHaveBeenSentAPromoCodeText": "您已送出一个 ${APP_NAME} 兑换代码:" + }, + "getTicketsWindow": { + "freeText": "免费!", + "freeTicketsText": "免费点券", + "inProgressText": "一个交易正在进行;请稍后再试。", + "purchasesRestoredText": "购买恢复。", + "receivedTicketsText": "获得${COUNT}点券!", + "restorePurchasesText": "恢复购买", + "ticketPack1Text": "小型点券包", + "ticketPack2Text": "中等点券包", + "ticketPack3Text": "大型点券包", + "ticketPack4Text": "巨型点券包", + "ticketPack5Text": "猛犸象点券包", + "ticketPack6Text": "终极点券包", + "ticketsFromASponsorText": "观看广告\n白嫖${COUNT}个点券", + "ticketsText": "${COUNT}点券", + "titleText": "获得点券", + "unavailableLinkAccountText": "对不起,该平台上不可进行购买。\n您可将此帐户链接到另一个\n平台,以进行购买。", + "unavailableTemporarilyText": "该选项当前不可用;请稍后再试。", + "unavailableText": "对不起,该选项不可用。", + "versionTooOldText": "对不起,这个版本的游戏太旧了;请更新到新版本。", + "youHaveShortText": "您拥有${COUNT}", + "youHaveText": "你拥有${COUNT}点券" + }, + "goldPass": { + "desc1InfTokensText": "✨取之不尽的炸弹币", + "desc2NoAdsText": "❌移除广告", + "desc3ForeverText": "✅一次购买终身使用", + "goldPassText": "超级通行证" + }, + "googlePlayPurchasesNotAvailableText": "Google商店购买不可用!\n请安装谷歌框架或更新Google服务。", + "googlePlayServicesNotAvailableText": "Google Play服务不可用\n某些功能可能会被禁用", + "googlePlayText": "Google Play", + "graphicsSettingsWindow": { + "alwaysText": "总是", + "fullScreenCmdText": "全屏显示(Cmd+F)", + "fullScreenCtrlText": "全屏(Ctrl-F)", + "fullScreenText": "全屏", + "gammaText": "Gamma", + "highText": "高", + "higherText": "极高", + "lowText": "低", + "maxFPSText": "最大帧数限制", + "mediumText": "中", + "neverText": "关", + "resolutionText": "分辨率", + "showFPSText": "显示帧数", + "texturesText": "材质质量", + "titleText": "图像质量", + "tvBorderText": "UI缩进", + "verticalSyncText": "垂直同步", + "visualsText": "视觉" + }, + "helpWindow": { + "bombInfoText": "炸弹\n比拳头伤害高,但也能把自己送上西天。\n给你个建议:等引线快烧完的时候\n再把炸弹扔向敌人。", + "canHelpText": "${APP_NAME}小帮助可以帮你快速入门!", + "controllersInfoText": "你可以和好友在同一网络下玩${APP_NAME},或者\n如果你有足够多的手柄,那也可以在同一个设备上游戏。\n${APP_NAME}支持各种选择;你甚至可以通过免费的'${REMOTE_APP_NAME}'\n用手机作为游戏手柄。\n更多信息,请参见设置->手柄。", + "controllersInfoTextRemoteOnly": "你可以通过局域网与你的朋友们一起游玩${APP_NAME}\n或者你可以使用${REMOTE_APP_NAME}\n它会将你的手机作为手柄在同一个设备上与你的朋友一起游玩", + "controllersText": "手柄", + "controlsSubtitleText": "${APP_NAME}的角色基本操作如下:", + "controlsText": "控制键", + "devicesInfoText": "VR版${APP_NAME}可与\n普通版本联网游戏,所以掏出你所有的手机、平板电脑\n和电脑,大玩一场吧。你甚至还可以将\n普通版本的游戏连接至VR版,\n让游戏外的人也能看你玩。", + "devicesText": "设备", + "friendsGoodText": "哎,一个人玩?那咋行!${APP_NAME}就是要人多才好玩嘛~\n最多支持8人同时游戏,如果你有魔法可以改掉限制喵~快拉你的小伙伴一起玩吧", + "friendsText": "好友", + "jumpInfoText": "跳跃\n跳跃可以跳过鸿沟,\n或是把炸弹扔得更远,\n或是表达你难以掩盖的喜悦之情。", + "orPunchingSomethingText": "还可以用拳头攻击,或者把敌人举起来然后丢下去,或者更多好玩的...", + "pickUpInfoText": "拾起\n你可以拾起旗子,敌人,\n还有所有没固定在地上的东西,\n然后,再扔出去吧~", + "powerupBombDescriptionText": "将炸弹最大投掷数量\n三个愿望,一次满足", + "powerupBombNameText": "三连炸弹", + "powerupCurseDescriptionText": "最好不要接触它。\n...或者你想试试?", + "powerupCurseNameText": "诅咒", + "powerupHealthDescriptionText": "完全回血!\n想不到吧!", + "powerupHealthNameText": "医疗包", + "powerupIceBombsDescriptionText": "威力比普通炸弹小,但\n能将你的敌人冻住,\n让它们变成妙脆角!(或者你也可以", + "powerupIceBombsNameText": "冰冻弹", + "powerupImpactBombsDescriptionText": "威力比普通炸弹稍弱,但碰到外物后\n就会爆炸。(你扔出去后,再多碰一下就会...", + "powerupImpactBombsNameText": "触感弹", + "powerupLandMinesDescriptionText": "大特价,一包3个。居家旅行,防守阵地的不二选择,\n还可以阻止那些跑的飞快的敌人。\n或者你可以扔出去再打一下??", + "powerupLandMinesNameText": "地雷", + "powerupPunchDescriptionText": "让您变成专业拳击手\n更高!更快!更强!200%!", + "powerupPunchNameText": "拳击手套", + "powerupShieldDescriptionText": "能吸收一些伤害,关键时刻\n可能会有用。(记住,时间是敌人)", + "powerupShieldNameText": "能量护盾", + "powerupStickyBombsDescriptionText": "黏在任何碰到的东西上,然后\n就等着看烟花吧。(其实用力能甩飞...", + "powerupStickyBombsNameText": "黏黏炸弹", + "powerupsSubtitleText": "当然,没有道具的游戏很难通关:", + "powerupsText": "道具", + "punchInfoText": "拳击\n跑得越快,拳击的伤害\n越高。所以像疯子一样\n旋转跳跃吧!", + "runInfoText": "冲刺\n按住四个键中的一个即可冲刺,如果你用手柄可以将扳机设置为跑\n冲刺跑的虽快,但会造成转向困难。且冲且珍惜()", + "someDaysText": "当你想攻击别人时,你可以用各种炸弹", + "titleText": "${APP_NAME}帮助", + "toGetTheMostText": "要想最痛快地玩这个游戏,你需要:", + "welcomeText": "欢迎来到${APP_NAME}!" + }, + "holdAnyButtonText": "<按住任意按钮>", + "holdAnyKeyText": "<按住任何键>", + "hostIsNavigatingMenusText": "- ${HOST}像皇帝一样控制主菜单 -", + "importPlaylistCodeInstructionsText": "用代码来导入列表", + "importPlaylistSuccessText": "成功导入${TYPE}列表 '${NAME}'", + "importText": "导入", + "importingText": "导入中", + "inGameClippedNameText": "名字会是\n\"${NAME}\"", + "inboxText": "收件箱", + "installDiskSpaceErrorText": "错误:无法完成安装。\n您的设备可能是空间不足。\n腾出一些空间,然后重试。", + "internal": { + "arrowsToExitListText": "按${LEFT}或${RIGHT}退出列表", + "buttonText": "按钮", + "cantKickHostError": "你不能踢房主啊喂!", + "chatBlockedText": "玩家 ${NAME} 被禁言 ${TIME} 秒,有话慢点说", + "connectedToGameText": "加入 '${NAME}'", + "connectedToPartyText": "加入${NAME}的房间!", + "connectingToPartyText": "正在连接...", + "connectionFailedHostAlreadyInPartyText": "连接失败;创建者正在另一派对中。", + "connectionFailedPartyFullText": "连接出错:房间满员了…", + "connectionFailedText": "连接失败。", + "connectionFailedVersionMismatchText": "连接失败;创建者正在运行不同版本的游戏。\n请确保你们都安装了最新版本,然后再试一次。", + "connectionRejectedText": "连接被拒绝。", + "controllerConnectedText": "${CONTROLLER}已连接。", + "controllerDetectedText": "检测到1个手柄。", + "controllerDisconnectedText": "${CONTROLLER}断开连接。", + "controllerDisconnectedTryAgainText": "${CONTROLLER}断开连接。请尝试重新连接。", + "controllerForMenusOnlyText": "此控制器无法在游戏中使用", + "controllerReconnectedText": "${CONTROLLER}重新连接。", + "controllersConnectedText": "已连接${COUNT}个手柄。", + "controllersDetectedText": "检测到${COUNT}个手柄。", + "controllersDisconnectedText": "${COUNT}个手柄断开连接。", + "corruptFileText": "检测到已损坏的文件。请尝试重新安装,或发送电子邮件至${EMAIL}", + "errorPlayingMusicText": "播放音乐错误:${MUSIC}", + "errorResettingAchievementsText": "无法重置在线成就;请稍后再试。", + "hasMenuControlText": "${NAME}目前拥有菜单的控制权限。", + "incompatibleNewerVersionHostText": "房主运行着最新版本游戏。\n请更新您的游戏版本然后重试。", + "incompatibleVersionHostText": "创建者正在运行不同版本的游戏。\n请确保你们都安装了最新版本,然后再试一次。", + "incompatibleVersionPlayerText": "${NAME}正在运行不同版本的游戏。\n请确保你们都安装了最新版本,然后再试一次。", + "invalidAddressErrorText": "错误:无效的地址。", + "invalidNameErrorText": "错误:无效的名字", + "invalidPortErrorText": "错误:无效端口", + "invitationSentText": "已发出邀请。", + "invitationsSentText": "已发出${COUNT}个邀请。", + "joinedPartyInstructionsText": "有人加入了你的派对\n去“开始战斗”中开始一场游戏吧", + "keyboardText": "键盘", + "kickIdlePlayersKickedText": "${NAME}空闲,将其踢出。", + "kickIdlePlayersWarning1Text": "如果${NAME}仍然空闲,则将在${COUNT}秒后被踢出。", + "kickIdlePlayersWarning2Text": "(您可以在设置 ->高级中将其关闭)", + "leftGameText": "离开 '${NAME}'.", + "leftPartyText": "离开${NAME}的游戏", + "noMusicFilesInFolderText": "文件夹内没有音乐文件。", + "playerJoinedPartyText": "${NAME}加入了游戏!", + "playerLeftPartyText": "${NAME}离开了游戏。", + "rejectingInviteAlreadyInPartyText": "拒绝邀请(已经在派对中)。", + "serverRestartingText": "服务器自动重启中,请重新加入..", + "serverShuttingDownText": "服务器正在关机…", + "signInErrorText": "登录出错啦~", + "signInNoConnectionText": "哎呀,无法登录。(网络连接有故障?)", + "telnetAccessDeniedText": "错误:用户未得到telnet访问授权。", + "timeOutText": "(将在${TIME}秒内超出时限)", + "touchScreenJoinWarningText": "您已以触摸屏方式加入。\n如果这是一个错误,点击“菜单->离开游戏菜单”。", + "touchScreenText": "触摸屏", + "unableToCompleteTryAgainText": "现在无法完成。\n请重试。", + "unableToResolveHostText": "错误:请输入正确的地址", + "unavailableNoConnectionText": "哎呀,这个用不了呢(请等待连接主服务器)", + "vrOrientationResetCardboardText": "点击手机屏幕,重置VR定位。\n您需使用外部手柄来玩VR版炸弹小分队。", + "vrOrientationResetText": "VR定位重置。", + "willTimeOutText": "(若空闲则会超出时限)" + }, + "inventoryText": "库存", + "jumpBoldText": "跳", + "jumpText": "跳", + "keepText": "举起", + "keepTheseSettingsText": "要保留您的新设置吗?", + "keyboardChangeInstructionsText": "双击空格以更改控制器", + "keyboardNoOthersAvailableText": "无其他可用的控制器", + "keyboardSwitchText": "切换控制器为\"${NAME}\"", + "kickOccurredText": "踢出 ${NAME}", + "kickQuestionText": "你们说要不要踢 ${NAME}? 呢…", + "kickText": "踢出", + "kickVoteCantKickAdminsText": "无法踢出管理员.", + "kickVoteCantKickSelfText": "您不能踢出您自己.", + "kickVoteFailedNotEnoughVotersText": "没有足够玩家投票", + "kickVoteFailedText": "踢出玩家投票未成功", + "kickVoteStartedText": "踢出${NAME}的投票已被发起", + "kickVoteText": "投票踢出玩家", + "kickVotingDisabledText": "投票踢出已被禁用.", + "kickWithChatText": "在聊天框中输入 ${YES} 来同意,输入 ${NO} 来拒绝", + "killsTallyText": "${COUNT}次击杀", + "killsText": "击杀数", + "kioskWindow": { + "easyText": "简单", + "epicModeText": "史诗模式", + "fullMenuText": "完整菜单", + "hardText": "困难", + "mediumText": "中等", + "singlePlayerExamplesText": "单人游戏/合作模式样例", + "versusExamplesText": "对战模式样例" + }, + "languageSetText": "现在的语言是 \"${LANGUAGE}\"。", + "lapNumberText": "圈数:${CURRENT}/${TOTAL}", + "lastGamesText": "(最后${COUNT}局比赛)", + "leaderboardsText": "排行榜", + "league": { + "allTimeText": "所有时间", + "currentSeasonText": "当前赛季(${NUMBER})", + "leagueFullText": "${NAME}联赛", + "leagueRankText": "联赛排名", + "leagueText": "联赛", + "rankInLeagueText": "#${RANK}、${NAME}联赛${SUFFIX}", + "seasonEndedDaysAgoText": "赛季已于${NUMBER}天前结束。", + "seasonEndsDaysText": "赛季将于${NUMBER}天后结束。", + "seasonEndsHoursText": "赛季将于${NUMBER}小时后结束。", + "seasonEndsMinutesText": "赛季将于${NUMBER}分钟后结束。", + "seasonText": "第${NUMBER}赛季", + "tournamentLeagueText": "你一定要到${NAME}联赛参加这项赛事。", + "trophyCountsResetText": "奖杯计数将在下个赛季重置。", + "upToDateBonusDescriptionText": "运行最新版本的\n游戏在此处获得 ${PERCENT}% 奖金。", + "upToDateBonusText": "最新奖金" + }, + "learnMoreText": "更多信息", + "levelBestScoresText": "在 ${LEVEL}中的最佳成绩", + "levelBestTimesText": "在 ${LEVEL}中的最佳时间", + "levelIsLockedText": "${LEVEL}处于锁定状态。", + "levelMustBeCompletedFirstText": "必须先完成${LEVEL}。", + "levelText": "${NUMBER}关卡", + "levelUnlockedText": "关卡解锁!", + "livesBonusText": "生命奖励", + "loadingText": "载入中", + "loadingTryAgainText": "加载中请稍后再试", + "macControllerSubsystemBothText": "均可(不推荐)", + "macControllerSubsystemClassicText": "经典", + "macControllerSubsystemDescriptionText": "(如果你的手柄无法工作,请尝试更改此项)", + "macControllerSubsystemMFiNoteText": "已检测到 Made-for-iOS/Mac 手柄;\n你需要在 设置->手柄 中启用该设备", + "macControllerSubsystemMFiText": "Made-for-iOS/Mac", + "macControllerSubsystemTitleText": "手柄支持", + "mainMenu": { + "creditsText": "制作团队", + "demoMenuText": "演示菜单", + "endGameText": "结束", + "endTestText": "结束测试", + "exitGameText": "退出", + "exitToMenuText": "退出到菜单", + "howToPlayText": "小帮助", + "justPlayerText": "(仅${NAME})", + "leaveGameText": "离开游戏", + "leavePartyConfirmText": "你确定要离开?", + "leavePartyText": "离开派对", + "quitText": "离开游戏", + "resumeText": "回到游戏", + "settingsText": "设置" + }, + "makeItSoText": "应用", + "mapSelectGetMoreMapsText": "获取更多地图…", + "mapSelectText": "选择…", + "mapSelectTitleText": "${GAME}地图", + "mapText": "地图", + "maxConnectionsText": "最大连接数", + "maxPartySizeText": "最大派对人数", + "maxPlayersText": "最多人数", + "merchText": "来买周边吧~", + "modeArcadeText": "街机模式", + "modeClassicText": "经典模式", + "modeDemoText": "演示模式", + "moreSoonText": "更多内容即将推出...", + "mostDestroyedPlayerText": "被摧毁次数最多的球员", + "mostValuablePlayerText": "最具价值玩家", + "mostViolatedPlayerText": "最遭暴力玩家", + "mostViolentPlayerText": "最暴力玩家", + "moveText": "移动", + "multiKillText": "${COUNT}连杀!!", + "multiPlayerCountText": "${COUNT}名玩家", + "mustInviteFriendsText": "注意:你必须在“${GATHER}”面板中邀请好友,\n或连接多个\n手柄,和好友一起游戏。", + "nameBetrayedText": "${NAME}背叛了${VICTIM}", + "nameDiedText": "${NAME}寄了", + "nameKilledText": "${NAME}把${VICTIM}杀了", + "nameNotEmptyText": "名字不能为空", + "nameScoresText": "${NAME}得分咯!", + "nameSuicideKidFriendlyText": "${NAME}意外挂了。", + "nameSuicideText": "${NAME}自杀了。", + "nameText": "名称", + "nativeText": "本机", + "newExclaimText": "新品上新!", + "newPersonalBestText": "新个人记录!", + "newTestBuildAvailableText": "更新的测试版可供下载了!(${VERSION} build${BUILD})。\n到${ADDRESS}获取吧!", + "newText": "新建", + "newVersionAvailableText": "更新版本的 ${APP_NAME} 可供下载了! 版本号(${VERSION})", + "nextAchievementsText": "下一个成就:", + "nextLevelText": "下一关", + "noAchievementsRemainingText": "- '无'", + "noContinuesText": "(无可继续)", + "noExternalStorageErrorText": "该设备上未发现外部存储器", + "noGameCircleText": "错误:未登入GameCircle", + "noMessagesText": "无信息", + "noPluginsInstalledText": "没有安装插件", + "noScoresYetText": "还未有得分记录。", + "noServersFoundText": "未找到服务器", + "noThanksText": "不,谢谢", + "noTournamentsInTestBuildText": "温馨提示:测试版的锦标赛分数不能计入锦标赛哦!", + "noValidMapsErrorText": "该比赛类型中未发现有效地图。", + "notEnoughPlayersRemainingText": "剩余玩家不足,退出并开始新游戏。", + "notEnoughPlayersText": "你需要至少${COUNT}名玩家来开始这场比赛!", + "notEnoughTicketsText": "门票不够!", + "notNowText": "不是现在", + "notSignedInErrorText": "您必须登录到您的帐户。", + "notSignedInGooglePlayErrorText": "您必须通过Google Play登录。", + "notSignedInText": "(未登录)", + "notUsingAccountText": "注意:已忽略${SERVICE}账户的自动登录\n如果你想用它登录,前往“账户->使用${SERVICE}登录”~", + "nothingIsSelectedErrorText": "未选择任何内容!", + "numberText": "#${NUMBER}", + "offText": "关", + "okText": "好的", + "onText": "开", + "oneMomentText": "请稍候...", + "onslaughtRespawnText": "${PLAYER}将于第${WAVE}波后复活", + "openMeText": "打开我!", + "openNowText": "立即打开", + "openText": "打开", + "orText": "${A}或${B}", + "otherText": "其他。。。", + "outOfText": "(在${ALL}名玩家中位列#${RANK})", + "ownFlagAtYourBaseWarning": "你的旗帜必须在\n你自己的基地上才能得分!", + "partyWindow": { + "chatMessageText": "聊天消息", + "emptyText": "你的派对为空", + "hostText": "(创建者)", + "sendText": "发送", + "titleText": "你的派对" + }, + "pausedByHostText": "(创建者已暂停)", + "perfectWaveText": "完美的一波!", + "pickUpText": "捡起", + "playModes": { + "coopText": "合作", + "freeForAllText": "混战模式", + "multiTeamText": "多团队", + "singlePlayerCoopText": "单人游戏/合作模式", + "teamsText": "团队对抗" + }, + "playText": "开始战斗", + "playWindow": { + "oneToFourPlayersText": "适合1~4名玩家", + "titleText": "开始战斗", + "twoToEightPlayersText": "适合2~8名玩家" + }, + "playerCountAbbreviatedText": "${COUNT}名玩家", + "playerDelayedJoinText": "${PLAYER}将在下一回合开始时进入。", + "playerInfoText": "玩家资料", + "playerLeftText": "${PLAYER}离开了游戏。", + "playerLimitReachedText": "已达到${COUNT}名玩家上限;其他玩家不允许加入。", + "playerProfilesWindow": { + "cantDeleteAccountProfileText": "您无法删除您的帐户资料。", + "deleteButtonText": "删除\n档案", + "deleteConfirmText": "删除'${PROFILE}'?", + "editButtonText": "编辑\n档案", + "explanationText": "(为这个账号定制玩家名称和外观)", + "newButtonText": "创建\n档案", + "titleText": "玩家档案" + }, + "playerText": "玩家", + "playlistNoValidGamesErrorText": "此列表未包含有效的已解锁游戏。", + "playlistNotFoundText": "找不到列表", + "playlistText": "列表", + "playlistsText": "列表", + "pleaseRateText": "如果你喜欢 ${APP_NAME},请考虑花一点时间\n来评价一下它或为它写一篇评论。这将为我们提供\n有用的反馈建议,为游戏的未来开发给予支持。\n\n感谢您!\n-eric", + "pleaseWaitText": "请稍等...", + "pluginClassLoadErrorText": "加载'${PLUGIN}'插件时出错了耶: ${ERROR}", + "pluginInitErrorText": "初始化'${PLUGIN}'插件失败了: ${ERROR}", + "pluginSettingsText": "插件设置", + "pluginsAutoEnableNewText": "自动启用新插件", + "pluginsDetectedText": "新插件安装成功,请重启游戏或在设置中设置它们~", + "pluginsDisableAllText": "禁用所有插件", + "pluginsEnableAllText": "启用所有插件", + "pluginsRemovedText": "有${NUM}个插件被删除了...", + "pluginsText": "插件", + "practiceText": "练习", + "pressAnyButtonPlayAgainText": "按任意按钮再玩一次...", + "pressAnyButtonText": "按任意按钮继续...", + "pressAnyButtonToJoinText": "按任意按钮加入...", + "pressAnyKeyButtonPlayAgainText": "按任意键/按钮再玩一次...", + "pressAnyKeyButtonText": "按任意键/按钮继续......", + "pressAnyKeyText": "按任意键...", + "pressJumpToFlyText": "** 按连续跳跃以腾空 **", + "pressPunchToJoinText": "按下“出拳”来加入", + "pressToOverrideCharacterText": "按${BUTTONS}更换您的角色", + "pressToSelectProfileText": "按${BUTTONS}选择一个玩家", + "pressToSelectTeamText": "按下${BUTTONS}来选择一支队伍", + "promoCodeWindow": { + "codeText": "代码", + "enterText": "输入" + }, + "promoSubmitErrorText": "提交代码时出错; 检查您的互联网连接", + "ps3ControllersWindow": { + "macInstructionsText": "关闭PS3背面的电源开关,确保\n您的 Mac 上启用了蓝牙,然后通过USB连接线将您的手柄连接到\n您的 Mac 上使其配对。之后,您\n就可以使用该手柄上的主页按钮以有线(USB)或无线(蓝牙)模式\n将其连接到您的 Mac 上。\n\n在一些 Mac 上配对时可能会提示您输入蓝牙设备的密码。\n在此情况下,请参阅一下教程或搜索百度或Bing寻求帮助。\n\n\n\n\n无线连接的PS3手柄应该出现在\n Mac 上的“系统偏好设置”>“蓝牙”(MacOS Ventura以前适用)或“系统设置”>“蓝牙”(MacOS Ventura及以上适用)\n中的设备列表中。当您想要再次用你的PS3使用它们时,\n您可能需要关闭蓝牙或从该列表中移除它们。\n\n另外,请确保它们在未使用状态下时与蓝牙断开连接,以免其电池持续消耗。\n\nApple 宣称一台 Mac 最多可连接7个蓝牙设备,\n但通常情况下只能连接3至4个蓝牙设备,请视实际情况而定。", + "ouyaInstructionsText": "若要通过OUYA使用PS3手柄,仅需使用USB连接线\n将其连接配对。这样做可能会使您的其他手柄断开连接,因此\n您应该重新启动您的OUYA,然后拔下USB连接线。\n\n然后,你应该能够使用手柄的主页按钮\n以无线模式将其连接。结束游戏后,按住主页按钮\n10秒钟,以关闭手柄;否则,手柄将持续处于启动状态\n并消耗电池。", + "pairingTutorialText": "配对教程视频", + "titleText": "使用 PS3 手柄玩 ${APP_NAME}:" + }, + "punchBoldText": "拳击", + "punchText": "拳击", + "purchaseForText": "购买花费${PRICE}", + "purchaseGameText": "购买游戏", + "purchaseNeverAvailableText": "抱歉,此账户无法进行购买\n请使用其他平台的账户进行购买", + "purchaseNotAvailableText": "此交易不可用", + "purchasingText": "正在购买…", + "quitGameText": "退出${APP_NAME}?", + "quittingIn5SecondsText": "在5秒后退出...", + "randomPlayerNamesText": "企鹅王,企鹅骑士团成员,王♂の传人,挨揍使我快乐,一拳超人,二营长の意大利炮,雪糕,炸鸡翅,手柄玩家18子,寻找宝藏的海盗,炸弹投手,炸弹不是糖果,我是对面的,万有引力,鸟语花香,兔年大吉,小狗狗,大狗子,二狗子,三狗子,四狗子,五狗子,亚达哟,小猪配齐,汤姆猫,小灰机,炸弹大队队长,炸弹教主", + "randomText": "随机", + "rankText": "排行", + "ratingText": "排名", + "reachWave2Text": "进入第2波才可排名。", + "readyText": "准备", + "recentText": "最近", + "remoteAppInfoShortText": "与家人或者朋友们一起玩${APP_NAME}是非常有趣的!\n您可以连接一个或多个硬件控制器\n或者在手机、平板上安装${REMOTE_APP_NAME}APP程序\n把他们当做控制器使用。", + "remote_app": { + "app_name": "炸弹小分队手柄", + "app_name_short": "炸弹小分队手柄", + "button_position": "按钮位置", + "button_size": "按钮尺寸", + "cant_resolve_host": "无法解析主机。", + "capturing": "捕捉中…", + "connected": "已连接。", + "description": "使用手机或平板电脑作为炸弹小分队游戏手柄。\n一台电视或平板电脑上可同时连接8台设备,体验史诗级多人模式的疯狂游戏。", + "disconnected": "服务器断开连接", + "dpad_fixed": "固定", + "dpad_floating": "浮动", + "dpad_position": "方向键位置", + "dpad_size": "方向键尺寸", + "dpad_type": "方向键类型", + "enter_an_address": "输入地址", + "game_full": "游戏连接已满或不接受更多连接。", + "game_shut_down": "游戏关闭。", + "hardware_buttons": "硬件按钮", + "join_by_address": "通过地址…加入", + "lag": "延迟:${SECONDS}秒", + "reset": "恢复默认值", + "run1": "运行 1", + "run2": "运行 2", + "searching": "正在搜索炸弹小分队游戏…", + "searching_caption": "点击游戏名,进入游戏。\n确保和游戏处于相同的wifi网络下。", + "start": "开始", + "version_mismatch": "版本不匹配。\n确定 炸弹小分队 和 BombSquad Remote\n 为最新版本后,重新尝试。" + }, + "removeInGameAdsText": "在商店中解锁\"${PRO}\",以删除游戏中的广告。", + "removeInGameAdsTokenPurchaseText": "限时优惠:购买任何代币包以删除游戏内广告。", + "renameText": "重命名", + "replayEndText": "结束回放", + "replayNameDefaultText": "终场游戏回放", + "replayReadErrorText": "读取回放文件时出错。", + "replayRenameWarningText": "如果想保存回放文件,则以游戏来命名\"${REPLAY}\";否则文件将被覆盖。", + "replayVersionErrorText": "抱歉,该回放由不同版本的游戏制成,\n不能使用。", + "replayWatchText": "观看回放", + "replayWriteErrorText": "写入回放文件时出错。", + "replaysText": "回放", + "reportPlayerExplanationText": "利用此电子邮箱举报作弊、 不当言语或其他不良行为。\n请描述如下信息:", + "reportThisPlayerCheatingText": "作弊", + "reportThisPlayerLanguageText": "不当言语", + "reportThisPlayerReasonText": "举报内容是?", + "reportThisPlayerText": "举报该玩家", + "requestingText": "正在请求...", + "restartText": "重新启动", + "retryText": "请重试", + "revertText": "还原", + "runText": "运行", + "saveText": "保存", + "scanScriptsErrorText": "检查Mod文件时发现错误,报错见炸队日志文件喵", + "scanScriptsMultipleModulesNeedUpdatesText": "${PATH} 和 ${NUM} 个模组需要升级到API${API}才能使用喵~", + "scanScriptsSingleModuleNeedsUpdatesText": "${PATH} 需要升级到API${API}才能使用喵~", + "scoreChallengesText": "得分挑战", + "scoreListUnavailableText": "得分列表不可用。", + "scoreText": "得分", + "scoreUnits": { + "millisecondsText": "毫秒", + "pointsText": "分", + "secondsText": "秒" + }, + "scoreWasText": "(是${COUNT})", + "selectText": "选择", + "sendInfoDescriptionText": "在这里输入你想反馈给开发者的话...(记得附上姓名和原因)\n也可以输入礼包码来兑换礼包(专业版或者点券啥的)", + "seriesWinLine1PlayerText": "获得", + "seriesWinLine1TeamText": "获得", + "seriesWinLine1Text": "获得", + "seriesWinLine2Text": "冠军!", + "settingsWindow": { + "accountText": "账户", + "advancedText": "高级", + "audioText": "音效", + "controllersText": "控制器", + "graphicsText": "图像", + "playerProfilesMovedText": "注意:玩家档案已移至主菜单的「账号」窗口下", + "titleText": "设置" + }, + "settingsWindowAdvanced": { + "alwaysUseInternalKeyboardDescriptionText": "(一款简单、控制方便的用于英文文本编辑的屏幕键盘(打中文想都不要想))", + "alwaysUseInternalKeyboardText": "始终使用内置键盘", + "benchmarksText": "基准与压力测试", + "devToolsText": "开发工具", + "disableCameraGyroscopeMotionText": "禁用相机陀螺仪运动", + "disableCameraShakeText": "禁用相机抖动", + "disableThisNotice": "(可在高级设置中关闭此通知)", + "enterPromoCodeText": "输入兑换代码", + "forTestingText": "注意:这些数值仅用于测试,并会在应用程序退出时丢失。", + "helpTranslateText": "${APP_NAME}有中文汉化是咱们社区\n共同努力的成果。如果您希望参与翻译或对其提出更正,\n请点击这个按钮。十分感谢!", + "insecureConnectionsDescriptionText": "不推荐,但(也许会)允许\n受限国家/网络的线上游玩", + "insecureConnectionsText": "使用非私密链接", + "kickIdlePlayersText": "踢掉空闲玩家", + "kidFriendlyModeText": "低龄段友好模式(低暴力等)", + "languageText": "语言", + "moddingGuideText": "Mod文档", + "moddingToolsText": "Mod工具", + "mustRestartText": "必须重启游戏后生效喵", + "netTestingText": "网络测试", + "resetText": "恢复默认值", + "sendInfoText": "功能反馈/兑换礼包码", + "showBombTrajectoriesText": "显示炸弹轨迹", + "showDemosWhenIdleText": "当游戏空闲时播放演示画面", + "showDeprecatedLoginTypesText": "显示不推荐的登录类型", + "showDevConsoleButtonText": "显示开发者控制台按钮", + "showInGamePingText": "显示游戏延迟", + "showPlayerNamesText": "显示玩家名字", + "showUserModsText": "显示Mod文件夹", + "titleText": "高级", + "translationEditorButtonText": "${APP_NAME}翻译编辑器", + "translationFetchErrorText": "翻译状态不可用", + "translationFetchingStatusText": "正在检查翻译进度…", + "translationInformMe": "中文需要更新翻译时请通知我!", + "translationNoUpdateNeededText": "当前语言是最新的;喵呜!", + "translationUpdateNeededText": "**当前语言需要更新!!**", + "vrTestingText": "VR测试" + }, + "shareText": "分享", + "sharingText": "分享", + "showText": "显示", + "signInForPromoCodeText": "您必须登录到一个帐户, 代码才能生效", + "singleGamePlaylistNameText": "仅${GAME}", + "singlePlayerCountText": "一个玩家", + "sizeLargeText": "大", + "sizeMediumText": "中", + "sizeSmallText": "小", + "soloNameFilterText": "单挑模式 ${NAME}", + "soundtrackTypeNames": { + "CharSelect": "角色选择", + "Chosen One": "选定模式", + "Epic": "史诗模式游戏", + "Epic Race": "史诗级竞赛", + "FlagCatcher": "夺旗战", + "Flying": "快乐山区", + "Football": "运旗战", + "ForwardMarch": "突袭战", + "GrandRomp": "征服战", + "Hockey": "冰球战", + "Keep Away": "抓旗战", + "Marching": "塔防战", + "Menu": "主菜单", + "Onslaught": "冲锋战", + "Race": "竞赛", + "Scary": "山丘之王", + "Scores": "得分屏幕", + "Survival": "消除战", + "ToTheDeath": "死亡竞赛", + "Victory": "最终得分屏幕" + }, + "spaceKeyText": "空格", + "statsText": "详情", + "stopRemindingMeText": "别再提醒我", + "storagePermissionAccessText": "需要存储权限", + "store": { + "alreadyOwnText": "您已拥有${NAME}!", + "bombSquadProNameText": "${APP_NAME}专业版", + "bombSquadProNewDescriptionText": "• 移除游戏内广告和烦人页面\n• 解锁更多的游戏设置\n• 另外还包括:", + "buyText": "购买", + "charactersText": "人物", + "comingSoonText": "敬请期待……", + "extrasText": "额外部分", + "holidaySpecialText": "假期特献", + "howToSwitchCharactersText": "(进入\"${SETTINGS} -> ${PLAYER_PROFILES}\"指定和自定义人物)", + "howToUseIconsText": "(升级全球档案以使用图标)", + "howToUseMapsText": "(在团队/混战游戏中使用这些地图)", + "iconsText": "图标", + "loadErrorText": "无法加载页面。\n请检查您的网络连接。", + "loadingText": "加载中", + "mapsText": "地图", + "miniGamesText": "迷你游戏", + "oneTimeOnlyText": "(仅一次)", + "purchaseAlreadyInProgressText": "该物品的购买已在进行中。", + "purchaseConfirmText": "购买${ITEM}?", + "purchaseNotValidError": "购买无效。\n如果这是一个错误,请联系${EMAIL}。", + "purchaseText": "购买", + "saleBundleText": "捆绑销售!", + "saleExclaimText": "出售!", + "salePercentText": "(${PERCENT}%折扣)", + "saleText": "特卖", + "searchText": "搜索", + "teamsFreeForAllGamesText": "团队/混战游戏", + "totalWorthText": "*** 价值${TOTAL_WORTH}! ***", + "upgradeQuestionText": "升级专业版吗?", + "winterSpecialText": "冬季特献", + "youOwnThisText": "- 您已拥有 -" + }, + "storeDescriptionText": "8人派对游戏疯狂乱炸!\n\n在迷你型爆炸游戏炸飞你的基友(或机器人),如夺旗战、冰球战及史诗级慢动作死亡竞赛!\n\n控制简单,操作便捷,可轻松支持多达8人同时游戏;您甚至可以通过免费的“炸弹小分队手柄”应用将您的手机作为手柄使用!\n\n炸死他们吧。\n\n更多信息,请打开www.froemling.net/bombsquad。", + "storeDescriptions": { + "blowUpYourFriendsText": "炸飞你的朋友们", + "competeInMiniGamesText": "在竞速游戏、飞行游戏中一决高下吧", + "customize2Text": "支持自定义角色、游戏玩法,甚至背景音乐", + "customizeText": "选择角色并创建自己的游戏关卡吧", + "sportsMoreFunText": "加入炸药后游戏会变得更嗨皮。", + "teamUpAgainstComputerText": "或者和机器人PK" + }, + "storeText": "商店", + "submitText": "提交", + "submittingPromoCodeText": "正在提交代码...", + "successText": "成功", + "supportEmailText": "如果你在APP遇到任何问题\n请发邮件到${EMAIL}", + "teamNamesColorText": "团队名称/颜色。。。", + "telnetAccessGrantedText": "Telnet访问已启用。", + "telnetAccessText": "检测到Telnet访问;是否允许?", + "testBuildErrorText": "该测试版已失效;请检查是否存在新版本。", + "testBuildText": "测试版", + "testBuildValidateErrorText": "无法验证测试版。(无网络连接?)", + "testBuildValidatedText": "测试版已通过验证;尽请享用!", + "thankYouText": "感谢您的支持!尽情享受游戏!!", + "threeKillText": "三杀!!", + "ticketsDescriptionText": "门票可用于解锁商店中的角色、\n地图、迷你游戏等。\n\n门票可以在通过活动、\n锦标赛和成就赢得的箱子里找到。", + "timeBonusText": "时间奖励", + "timeElapsedText": "时间耗尽", + "timeExpiredText": "时间结束", + "timeSuffixDaysText": "${COUNT}天", + "timeSuffixHoursText": "${COUNT}时", + "timeSuffixMinutesText": "${COUNT}分", + "timeSuffixSecondsText": "${COUNT}秒", + "tipText": "提示", + "titleText": "炸弹小分队", + "titleVRText": "炸弹小分队 VR", + "tokens": { + "getTokensText": "购买炸弹币", + "notEnoughTokensText": "炸弹币不足哦", + "numTokensText": "${COUNT}个炸弹币", + "openNowDescriptionText": "您现在有足够的代币来\n打开它 - 您不需要\n等待。", + "shinyNewCurrencyText": "炸队的新型货币喵喵喵", + "tokenPack1Text": "小型炸币包", + "tokenPack2Text": "中型炸币包", + "tokenPack3Text": "大型炸币包", + "tokenPack4Text": "超大炸币包", + "tokensDescriptionText": "代币用于加速胸部解锁以及其他游戏和帐户功能。\n您可以在游戏中赢得代币,\n\n也可以打包购买。\n或者购买无限代币的Gold Pass,\n再也不会听说它们了。", + "youHaveGoldPassText": "你获得了黄金通行证\n所有花销全部免费啦!\n感谢你游玩本游戏!" + }, + "topFriendsText": "最佳好友", + "tournamentCheckingStateText": "检查锦标赛状态;请稍候……", + "tournamentEndedText": "本次锦标赛已经结束。一场新的锦标赛即将开始。", + "tournamentEntryText": "锦标赛入口", + "tournamentFinalStandingsText": "最终排名", + "tournamentResultsRecentText": "最近锦标赛结果", + "tournamentStandingsText": "锦标赛积分榜", + "tournamentText": "锦标赛", + "tournamentTimeExpiredText": "锦标赛时间结束", + "tournamentsDisabledWorkspaceText": "工作区启用时无法参加锦标赛!\n关闭工作区,才能进入锦标赛。", + "tournamentsText": "锦标赛", + "translations": { + "characterNames": { + "Agent Johnson": "约翰逊特工", + "B-9000": "B-9000", + "Bernard": "伯纳德", + "Bones": "骷髅", + "Butch": "牛仔邦奇", + "Easter Bunny": "复活兔", + "Flopsy": "萌兔耷拉", + "Frosty": "冰冰", + "Gretel": "格蕾特", + "Grumbledorf": "男巫", + "Jack Morgan": "杰克摩根", + "Kronk": "克罗克", + "Lee": "李", + "Lucky": "幸运儿", + "Mel": "梅尔", + "Middle-Man": "平衡之尊", + "Minimus": "迷你姆斯", + "Pascal": "巴斯卡", + "Pixel": "精灵", + "Sammy Slam": "萨米斯拉姆", + "Santa Claus": "圣诞老人", + "Snake Shadow": "蛇影", + "Spaz": "斯巴子", + "Taobao Mascot": "淘公仔", + "Todd McBurton": "托德马克波顿", + "Zoe": "佐伊", + "Zola": "佐拉" + }, + "coopLevelNames": { + "${GAME} Training": "${GAME}训练", + "Infinite ${GAME}": "无限${GAME}", + "Infinite Onslaught": "无限冲锋战", + "Infinite Runaround": "无限塔防战", + "Onslaught Training": "冲锋训练", + "Pro ${GAME}": "专业${GAME}", + "Pro Football": "专业橄榄球赛", + "Pro Onslaught": "专业冲锋战", + "Pro Runaround": "专业塔防战", + "Rookie ${GAME}": "新手${GAME}", + "Rookie Football": "新手橄榄球赛", + "Rookie Onslaught": "新手冲锋战", + "The Last Stand": "最终杀敌战", + "Uber ${GAME}": "高级${GAME}", + "Uber Football": "高级橄榄球赛", + "Uber Onslaught": "高级冲锋战", + "Uber Runaround": "高级塔防战" + }, + "displayItemNames": { + "${C} Tickets": "${C} 门票", + "${C} Tokens": "${C} 门票", + "Chest": "宝箱", + "L1 Chest": "一级宝箱", + "L2 Chest": "二级宝箱", + "L3 Chest": "三级宝箱", + "L4 Chest": "四级宝箱", + "L5 Chest": "五级宝箱", + "L6 Chest": "六级宝箱", + "Unknown Chest": "???宝箱" + }, + "gameDescriptions": { + "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "在一定时间内取代选定目标进而获得胜利。\n杀死选定目标并取而代之。", + "Bomb as many targets as you can.": "尽可能多地炸毁目标。", + "Carry the flag for ${ARG1} seconds.": "扛旗${ARG1}秒。", + "Carry the flag for a set length of time.": "在设定时长内扛旗。", + "Crush ${ARG1} of your enemies.": "粉碎${ARG1}敌人。", + "Defeat all enemies.": "打败所有的敌人。", + "Dodge the falling bombs.": "躲避下落的炸弹。", + "Final glorious epic slow motion battle to the death.": "在最后的荣耀史诗级慢动作大战中战斗至死。", + "Gather eggs!": "收集蛋吧!", + "Get the flag to the enemy end zone.": "扛旗进入敌人达阵区。", + "How fast can you defeat the ninjas?": "你能多快地打败忍者?", + "Kill a set number of enemies to win.": "杀死一定数量的敌人来获得胜利。", + "Last one standing wins.": "最终杀敌者获胜。", + "Last remaining alive wins.": "最终幸存者获胜。", + "Last team standing wins.": "最终杀敌团队获胜。", + "Prevent enemies from reaching the exit.": "阻止敌人到达出口。", + "Reach the enemy flag to score.": "触碰敌人的旗帜来得分。", + "Return the enemy flag to score.": "交回敌人的旗帜来得分。", + "Run ${ARG1} laps.": "跑${ARG1}圈。", + "Run ${ARG1} laps. Your entire team has to finish.": "跑${ARG1}圈。你的整个团队都得完成。", + "Run 1 lap.": "跑1圈。", + "Run 1 lap. Your entire team has to finish.": "跑1圈。你的整个团队都得完成。", + "Run real fast!": "快速奔跑!", + "Score ${ARG1} goals.": "${ARG1}进球得分。", + "Score ${ARG1} touchdowns.": "${ARG1}触地得分。", + "Score a goal.": "一次进球得分。", + "Score a touchdown.": "一次触地得分。", + "Score some goals.": "多次进球得分。", + "Secure all ${ARG1} flags.": "固定所有的${ARG1}旗帜。", + "Secure all flags on the map to win.": "固定地图上的所有旗帜来获得胜利。", + "Secure the flag for ${ARG1} seconds.": "固定旗帜${ARG1}秒。", + "Secure the flag for a set length of time.": "在设定时长内固定旗帜。", + "Steal the enemy flag ${ARG1} times.": "窃取敌人的旗帜${ARG1}次。", + "Steal the enemy flag.": "窃取敌人的旗帜。", + "There can be only one.": "仅单玩家可被选定。", + "Touch the enemy flag ${ARG1} times.": "触碰敌人的旗帜${ARG1}次。", + "Touch the enemy flag.": "触碰敌人的旗帜。", + "carry the flag for ${ARG1} seconds": "扛旗${ARG1}秒", + "kill ${ARG1} enemies": "杀死${ARG1}敌人", + "last one standing wins": "最终杀敌者获胜", + "last team standing wins": "最终杀敌团队获胜", + "return ${ARG1} flags": "交回${ARG1}旗帜", + "return 1 flag": "交回1面旗帜", + "run ${ARG1} laps": "跑${ARG1}圈", + "run 1 lap": "跑1圈", + "score ${ARG1} goals": "${ARG1}进球得分", + "score ${ARG1} touchdowns": "${ARG1}触地得分", + "score a goal": "一次进球得分", + "score a touchdown": "一次触地得分", + "secure all ${ARG1} flags": "固定所有的${ARG1}旗帜", + "secure the flag for ${ARG1} seconds": "固定旗帜${ARG1}秒", + "touch ${ARG1} flags": "触碰${ARG1}旗帜", + "touch 1 flag": "触碰1面旗帜" + }, + "gameNames": { + "Assault": "突袭战", + "Capture the Flag": "夺旗战", + "Chosen One": "选定模式", + "Conquest": "征服战", + "Death Match": "死亡竞赛", + "Easter Egg Hunt": "彩蛋猎人", + "Elimination": "消除战", + "Football": "运旗战", + "Hockey": "冰球战", + "Keep Away": "抓旗战", + "King of the Hill": "山丘之王", + "Meteor Shower": "流星战", + "Ninja Fight": "忍者大战", + "Onslaught": "冲锋战", + "Race": "竞速赛", + "Runaround": "塔防战", + "Target Practice": "目标训练", + "The Last Stand": "最终杀敌战" + }, + "inputDeviceNames": { + "Keyboard": "键盘", + "Keyboard P2": "键盘P2" + }, + "languages": { + "Arabic": "阿拉伯语", + "Belarussian": "白俄罗斯语", + "Chinese": "简体中文", + "ChineseSimplified": "简体中文", + "ChineseTraditional": "繁体中文", + "Croatian": "克罗地亚语", + "Czech": "捷克语", + "Danish": "丹麦语", + "Dutch": "荷兰语", + "English": "英语", + "Esperanto": "世界语", + "Filipino": "菲律宾语", + "Finnish": "芬兰语", + "French": "法语", + "German": "德语", + "Gibberish": "胡言乱语 - 用于测试", + "Greek": "希腊语", + "Hindi": "印度语", + "Hungarian": "匈牙利语", + "Indonesian": "印尼语", + "Italian": "意大利语", + "Japanese": "日本语", + "Korean": "朝鲜语", + "Malay": "马来语", + "Persian": "波斯文", + "PirateSpeak": "海盗语", + "Polish": "波兰语", + "Portuguese": "葡萄牙语", + "PortugueseBrazil": "葡萄牙语 - 巴西", + "PortuguesePortugal": "葡萄牙语 - 葡萄牙", + "Romanian": "罗马尼亚语", + "Russian": "俄语", + "Serbian": "塞尔维亚语", + "Slovak": "斯洛伐克语", + "Spanish": "西班牙语", + "SpanishLatinAmerica": "西班牙语 - 拉丁美洲", + "SpanishSpain": "西班牙语 - 西班牙", + "Swedish": "瑞典语", + "Tamil": "泰米尔语", + "Thai": "泰语", + "Turkish": "土耳其语", + "Ukrainian": "乌克兰语", + "Venetian": "威尼斯语", + "Vietnamese": "越南语" + }, + "leagueNames": { + "Bronze": "铜牌联赛", + "Diamond": "钻石联赛", + "Gold": "金牌联赛", + "Silver": "银牌联赛" + }, + "mapsNames": { + "Big G": "大G地图", + "Bridgit": "小桥地图", + "Courtyard": "庭院地图", + "Crag Castle": "岩城地图", + "Doom Shroom": "末日蘑菇地图", + "Football Stadium": "橄榄球场", + "Happy Thoughts": "快乐想法", + "Hockey Stadium": "曲棍球场地图", + "Lake Frigid": "寒湖地图", + "Monkey Face": "猴面地图", + "Rampage": "狂暴地图", + "Roundabout": "塔防地图", + "Step Right Up": "攻击地图", + "The Pad": "平板地图", + "Tip Top": "顶点地图", + "Tower D": "塔防地图", + "Zigzag": "蜿蜒地图" + }, + "playlistNames": { + "Just Epic": "仅限史诗级", + "Just Sports": "仅限运动类" + }, + "scoreNames": { + "Flags": "旗帜", + "Goals": "进球", + "Score": "得分", + "Survived": "幸存", + "Time": "时间", + "Time Held": "保持时间" + }, + "serverResponses": { + "A code has already been used on this account.": "该账户已使用代码。", + "A reward has already been given for that address.": "您已经领取过该奖励了", + "Account linking successful!": "账号连接成功!", + "Account unlinking successful!": "取消关联账户成功!", + "Accounts are already linked.": "账号已经连接。", + "Ad view could not be verified.\nPlease be sure you are running an official and up-to-date version of the game.": "广告加载失败。\n请验证你的游戏版本为官方最新版。", + "An error has occurred; (${ERROR})": "出现了一个错误; (${ERROR})", + "An error has occurred; please contact support. (${ERROR})": "出现了一个错误,请联系官方获取支持.(${ERROR})", + "An error has occurred; please contact support@froemling.net.": "发生了一个错误,请联系 support@froemling.net。", + "An error has occurred; please try again later.": "发生了一个错误, 请稍候再试", + "Are you sure you want to link these accounts?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\nThis cannot be undone!": "确定要链接这些账户?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\n此操作不可撤销!", + "BombSquad Pro unlocked!": "炸弹小分队专业版已解锁!", + "Can't link 2 accounts of this type.": "无法连接2个这种账号。", + "Can't link 2 diamond league accounts.": "无法连接两个钻石联赛账号。", + "Can't link; would surpass maximum of ${COUNT} linked accounts.": "无法连接,会超过上限 ${COUNT} 个账号。", + "Cheating detected; scores and prizes suspended for ${COUNT} days.": "发现作弊行为;得分及奖励在${COUNT}天内暂停。", + "Could not establish a secure connection.": "无法建立安全连接。", + "Daily maximum reached.": "已达今日上限。", + "Daily sign-in reward": "每日登录奖励", + "Entering tournament...": "进入锦标赛……", + "Invalid code.": "代码无效。", + "Invalid payment; purchase canceled.": "不可用的付款方式:交易取消", + "Invalid promo code.": "诶呀,代码好像无效了捏~", + "Invalid purchase.": "购买无效。", + "Invalid tournament entry; score will be ignored.": "由于你的联赛资料错误,分数会被忽略...", + "Item unlocked!": "项目已解除锁定!", + "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "连接账号行为取消。${ACCOUNT} 含有\n重要数据可能会丢失。\n如果你想要的话,你可以反向链接账号。\n(那样就会丢失这个账号的数据)", + "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "将帐户${ACCOUNT}关联到此帐户吗?\n${ACCOUNT}将共享数据。\n此操作不能撤销。", + "Longer streaks lead to better rewards.": "连续每日登录会获得更好的奖励", + "Max number of playlists reached.": "已达到最大列表数目。", + "Max number of profiles reached.": "已达到最大档案数目。", + "Maximum friend code rewards reached.": "邀请码奖励达到上限", + "Message is too long.": "诶呀,消息有点长捏~有话慢慢说", + "New tournament result!": "新的比赛结果!", + "No servers are available. Please try again soon.": "当前没有空余的服务器,请稍后再试", + "No slots available. Free a slot and try again.": "没有可用插槽。释放一个插槽并重试。", + "Profile \"${NAME}\" upgraded successfully.": "${NAME}档案升级成功。", + "Profile could not be upgraded.": "档案不可升级。", + "Purchase successful!": "购买成功!", + "Received ${COUNT} tickets for signing in.\nCome back tomorrow to receive ${TOMORROW_COUNT}.": "今日登录获得${COUNT}点券\n明日再来领取${TOMORROW_COUNT}点券", + "Server functionality is no longer supported in this version of the game;\nPlease update to a newer version.": "此版本的游戏不再支持服务器功能;\n请更新到较新版本。", + "Sorry, there are no uses remaining on this code.": "对不起,此代码已经无法继续使用了。", + "Sorry, this code has already been used.": "对不起,此代码已被使用。", + "Sorry, this code has expired.": "对不起,此代码已失效。", + "Sorry, this code only works for new accounts.": "此代码只能新用户使用啊喂!你是新用户嘛", + "Sorry, this has expired.": "抱歉,已过期。", + "Still searching for nearby servers; please try again soon.": "正在搜索附近的服务器,请稍后再试", + "Streak: ${NUM} days": "已连续登录${NUM}天", + "Temporarily unavailable; please try again later.": "目前暂不可用;请稍候再试!", + "The tournament ended before you finished.": "本次锦标赛在你完成之前结束。", + "This account cannot be unlinked for ${NUM} days.": "此帐户无法在${NUM}天内取消关联。", + "This code cannot be used on the account that created it.": "此代码不可在创建其的账户上使用。", + "This is currently unavailable; please try again later.": "当前不可用:请稍后再试", + "This requires version ${VERSION} or newer.": "这需要版本${VERSION}或更高版本。", + "Tournaments disabled due to rooted device.": "此设备已Root或遭到未经授权的修改,已禁用锦标赛。", + "Tournaments require ${VERSION} or newer": "比赛需要${VERSION}或更高版本", + "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "从此帐户取消 ${ACCOUNT} 的关联?\n${ACCOUNT}上的所有数据将被重置。\n(在某些情况下除成就外)", + "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "警告:针对您的帐户发出黑客投诉。\n被盗用的帐户将被禁止。请公平竞技。", + "Wait reduced!": "等待减少!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "警告:此版本的游戏仅限于旧帐户数据;内容可能缺失或过时。\n请升级到较新版本的游戏以查看您的最新帐户数据。", + "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "是否将您的设备帐户关联到此?\n\n您的设备账户为${ACCOUNT1}\n此帐户为${ACCOUNT2}\n\n您可保存现有进度。\n警告: 此操作不可撤消!", + "You already own this!": "你已拥有了!", + "You can join in ${COUNT} seconds.": "你在${COUNT} 秒后可以加入", + "You don't have enough tickets for this!": "你的点券不足!", + "You don't own that.": "你没有真正购买它呢..", + "You got ${COUNT} tickets!": "你获得了${COUNT}点券!", + "You got ${COUNT} tokens!": "您获得了${COUNT}代币!", + "You got a ${ITEM}!": "你获得了一个${ITEM}!", + "You got a chest!": "你有获得了一个宝箱!", + "You got an achievement reward!": "你获得了成就奖励!", + "You have been promoted to a new league; congratulations!": "你已被升级至一个新联赛等级;恭喜!", + "You lost a chest! (All your chest slots were full)": "你丢了一个宝箱!(你所有的宝箱槽都已满)", + "You must update the app to view this.": "您必须更新应用程序才能查看此内容", + "You must update to a newer version of the app to do this.": "你必须升级到最新版本才可以", + "You must update to the newest version of the game to do this.": "你必须更新到最新版来做到这一点。", + "You must wait a few seconds before entering a new code.": "你必须在输入新代码前稍等几秒。", + "You placed #${RANK} in a tournament!": "您在锦标赛中排名 #${RANK}!", + "You ranked #${RANK} in the last tournament. Thanks for playing!": "你在上一场锦标赛中排名#${RANK}。多谢玩赏本游戏!", + "Your account was rejected. Are you signed in?": "您的账号被拒绝。您是否已登录?", + "Your ad views are not registering. Ad options will be limited for a while.": "广告观看数据有误,暂时无法继续观看广告", + "Your copy of the game has been modified.\nPlease revert any changes and try again.": "你的游戏已被修改。\n请撤销修改并使用官方最新版再重试。", + "Your friend code was used by ${ACCOUNT}": "${ACCOUNT}使用了你的分享代码了哦~" + }, + "settingNames": { + "1 Minute": "1分钟", + "1 Second": "1秒钟", + "10 Minutes": "10分钟", + "2 Minutes": "2分钟", + "2 Seconds": "2秒钟", + "20 Minutes": "20分钟", + "4 Seconds": "4秒钟", + "5 Minutes": "5分钟", + "8 Seconds": "8秒钟", + "Allow Negative Scores": "允许负分", + "Balance Total Lives": "平衡总生命", + "Bomb Spawning": "生成炸弹", + "Chosen One Gets Gloves": "选定目标获取手套", + "Chosen One Gets Shield": "选定目标获取盾牌", + "Chosen One Time": "选定模式时间", + "Enable Impact Bombs": "启用冲击炸弹", + "Enable Triple Bombs": "启用三连炸弹", + "Entire Team Must Finish": "整个队伍必须一起通过(一人跑路全队遭殃)", + "Epic Mode": "史诗模式", + "Flag Idle Return Time": "旗帜闲置返回时间", + "Flag Touch Return Time": "旗帜触碰返回时间", + "Hold Time": "保持时间", + "Kills to Win Per Player": "每一玩家取胜击杀数", + "Laps": "圈数", + "Lives Per Player": "每一玩家生命", + "Long": "长", + "Longer": "更长", + "Mine Spawning": "地雷增生", + "No Mines": "无地雷", + "None": "无", + "Normal": "正常", + "Pro Mode": "专业模式", + "Respawn Times": "复活时间", + "Score to Win": "得分取胜", + "Short": "短", + "Shorter": "更短", + "Solo Mode": "单人模式", + "Target Count": "目标计数", + "Time Limit": "时限" + }, + "statements": { + "${TEAM} is disqualified because ${PLAYER} left": "${TEAM}被踢,因为 ${PLAYER}离开了(补药开全队通过)", + "Killing ${NAME} for skipping part of the track!": "杀死跳过部分赛道的${NAME}!", + "Warning to ${NAME}: turbo / button-spamming knocks you out.": "警告 ${NAME}: 超幅 / 散播按钮 将使你被踢出。补药用连点啊!" + }, + "teamNames": { + "Bad Guys": "坏人队", + "Blue": "蓝队", + "Good Guys": "好人队", + "Red": "红队" + }, + "tips": { + "A perfectly timed running-jumping-spin-punch can kill in a single hit\nand earn you lifelong respect from your friends.": "一记完美、及时的“跑跳旋转拳”可一次性击杀敌人,并\n助你一生享有好友的尊重。", + "Always remember to floss.": "地面上的辅助线可能会有用。", + "Create player profiles for yourself and your friends with\nyour preferred names and appearances instead of using random ones.": "请不要总是使用系统提供的随机档案,\n你可以在账户-玩家档案里创建自己的档案喵~", + "Curse boxes turn you into a ticking time bomb.\nThe only cure is to quickly grab a health-pack.": "诅咒之盒把你变成了一个定时炸弹。\n唯一的解决方法是迅速抢到医疗包。", + "Despite their looks, all characters' abilities are identical,\nso just pick whichever one you most closely resemble.": "尽管长相不同,所有人物的技能是相同的,\n所以只需随意挑选一个与你最相似的。", + "Don't get too cocky with that energy shield; you can still get yourself thrown off a cliff.": "不要因为拥有能量盾牌而狂妄自大;你仍然可能使自己坠入悬崖。", + "Don't run all the time. Really. You will fall off cliffs.": "不要一直奔跑,真的,你可能会坠入悬崖。", + "Don't spin for too long; you'll become dizzy and fall.": "不要旋转得太久,不然你会傻乎乎地眩晕并摔倒。", + "Hold any button to run. (Trigger buttons work well if you have them)": "按住任意按钮来奔跑。(如果你有的话,扳机按钮将会很有用)", + "Hold down any button to run. You'll get places faster\nbut won't turn very well, so watch out for cliffs.": "按住任意按钮来奔跑,比普通行走的速度会快得多。\n但是奔跑时不太好转弯,所以当心摔下悬崖。", + "Ice bombs are not very powerful, but they freeze\nwhoever they hit, leaving them vulnerable to shattering.": "冰冻炸弹伤害并不高,但它们能够冻结\n被伤到的人,然后他们身体会变得脆弱(一碰就碎)", + "If someone picks you up, punch them and they'll let go.\nThis works in real life too.": "如果有人把你抓起来了,出拳攻击他们,他们便会放手。\n这在现实生活中同样有效。", + "If you are short on controllers, install the '${REMOTE_APP_NAME}' app\non your mobile devices to use them as controllers.": "如果您缺控制器,可以在手机安装「${REMOTE_APP_NAME}」\n然后手机就可以当作控制器啦~", + "If you get a sticky-bomb stuck to you, jump around and spin in circles. You might\nshake the bomb off, or if nothing else your last moments will be entertaining.": "如果一个黏黏弹将你困住,你应该四处跳动并转圈。炸弹\n可能被抖落,或如果没有其他办法,你最后的时刻将是有趣的。", + "If you kill an enemy in one hit you get double points for it.": "如果你一击杀死一个敌人,你将获得双倍分数。", + "If you pick up a curse, your only hope for survival is to\nfind a health powerup in the next few seconds.": "如果你捡到一个诅咒之盒,你唯一的生存希望是\n在接下来的几秒内找到一个医疗包。", + "If you stay in one place, you're toast. Run and dodge to survive..": "如果你停留在一个地方,你就完了。为了生存而奔跑和躲避……", + "If you've got lots of players coming and going, turn on 'auto-kick-idle-players'\nunder settings in case anyone forgets to leave the game.": "如果众多玩家进进出出,在设置下打开“自动踢出闲置玩家”,以防\n任何玩家忘记离开游戏。", + "If your device gets too warm or you'd like to conserve battery power,\nturn down \"Visuals\" or \"Resolution\" in Settings->Graphics": "如果你的设备过热,或者你想要节省电池电量,\n则在设置->图形中调低“视觉效果”或“分辨率”", + "If your framerate is choppy, try turning down resolution\nor visuals in the game's graphics settings.": "如果你的帧速率不稳定,请尝试在游戏的\n图形设置中调低分辨率或视觉效果。", + "In Capture-the-Flag, your own flag must be at your base to score, If the other\nteam is about to score, stealing their flag can be a good way to stop them.": "在夺旗战中,你的旗帜必须位于你的基地才能得分,如果对方\n团队即将得分,窃取他们的旗帜是一个不错的阻止方法。", + "In hockey, you'll maintain more speed if you turn gradually.": "在冰球战中,逐渐转向将使你保持更快的速度。", + "It's easier to win with a friend or two helping.": "在拥有一名好友或两个帮扶的情况下更易获胜。", + "Jump just as you're throwing to get bombs up to the highest levels.": "就像你试图将炸弹扔到最高点那样跳起来。", + "Land-mines are a good way to stop speedy enemies.": "地雷是阻止高速敌人的一个很好的方式。", + "Many things can be picked up and thrown, including other players. Tossing\nyour enemies off cliffs can be an effective and emotionally fulfilling strategy.": "很多东西都可以捡起来并投掷,包括其他玩家。将你的\n敌人抛下悬崖可能是一个有效的且情感上可获得满足的策略。", + "No, you can't get up on the ledge. You have to throw bombs.": "不,你不能跳上塔台去。你必须要用炸弹炸死塔台上的人。", + "Players can join and leave in the middle of most games,\nand you can also plug and unplug controllers on the fly.": "玩家可在大多数游戏中途加入或离开,\n同时,你也可以在百忙中插上或拔出手柄。", + "Practice using your momentum to throw bombs more accurately.": "多加练习,你的炸弹技能会变得更精准", + "Punches do more damage the faster your fists are moving,\nso try running, jumping, and spinning like crazy.": "拳头跑得越快,拳击的伤害越高,\n所以请成为飞奔的拳击手吧。", + "Run back and forth before throwing a bomb\nto 'whiplash' it and throw it farther.": "在投掷炸弹之前来回跑动,\n以“鞭打”炸弹,并将其投掷更远。", + "Take out a group of enemies by\nsetting off a bomb near a TNT box.": "在TNT炸药箱附近引爆\n一个炸弹来消灭一群敌人。", + "The head is the most vulnerable area, so a sticky-bomb\nto the noggin usually means game-over.": "头部是最脆弱的区域,所以一个黏黏弹\n接触头部通常便意味着一个生命的结束。", + "This level never ends, but a high score here\nwill earn you eternal respect throughout the world.": "这一关卡永远不会结束,但是更高的得分将\n助你赢得全世界永恒的尊重。", + "Throw strength is based on the direction you are holding.\nTo toss something gently in front of you, don't hold any direction.": "投掷力量取决于你所保持的方向。\n如要向前方轻轻投掷某物,不要保持在任何方向。", + "Tired of the soundtrack? Replace it with your own!\nSee Settings->Audio->Soundtrack": "更换背景音乐?更换成你自己音乐吧!\n参见设置->音频->背景音乐", + "Try 'Cooking off' bombs for a second or two before throwing them.": "尝试在投掷之前将炸弹“爆燃”一秒或两秒。", + "Try tricking enemies into killing eachother or running off cliffs.": "试图诱使敌人互相厮杀或坠入悬崖。", + "Use the pick-up button to grab the flag < ${PICKUP} >": "使用拾取按钮来抢夺旗帜< ${PICKUP} >", + "Whip back and forth to get more distance on your throws..": "来回鞭打以投掷更远距离……", + "You can 'aim' your punches by spinning left or right.\nThis is useful for knocking bad guys off edges or scoring in hockey.": "你可以通过左转或右转“瞄准”出拳。\n这有利于将坏人击倒出边界或在冰球战中得分。", + "You can judge when a bomb is going to explode based on the\ncolor of sparks from its fuse: yellow..orange..red..BOOM.": "你可以根据导火线火花的颜色判断炸弹什么时候爆炸:\n黄色……橙色……红色……嘭。", + "You can throw bombs higher if you jump just before throwing.": "如果投弹前跳起,你将投掷更远。", + "You take damage when you whack your head on things,\nso try to not whack your head on things.": "当你用头部重击物体时将受到伤害,\n所以尽量不要用头部重击物体。", + "Your punches do much more damage if you are running or spinning.": "如果你奔跑或旋转,拳击的伤害将更高。" + } + }, + "trophiesRequiredText": "你必须要有至少 ${NUMBER} 个奖杯", + "trophiesText": "奖杯", + "trophiesThisSeasonText": "本赛季奖杯", + "tutorial": { + "cpuBenchmarkText": "以惊人的速度运行教程(主要用于测试CPU速度)", + "phrase01Text": "嗨,您好!", + "phrase02Text": "欢迎来到${APP_NAME}!", + "phrase03Text": "以下是用于控制你的角色的一些技巧:", + "phrase04Text": "${APP_NAME}的很多方面是以物理为基础的。", + "phrase05Text": "例如,当你出拳时,", + "phrase06Text": "伤害程度取决于你拳头的速度。", + "phrase07Text": "看到没?如果我们不动,这样几乎不会伤害${NAME}。", + "phrase08Text": "现在,让我们跳跃并旋转起来,以获得更快的速度。", + "phrase09Text": "啊,这样好多了。", + "phrase10Text": "奔跑也会发挥作用。", + "phrase11Text": "按住任意按钮来奔跑。", + "phrase12Text": "想成为一拳超人,可以尝试边跑边旋转。", + "phrase13Text": "啊;真抱歉啊,${NAME}。(狗头)", + "phrase14Text": "你可以捡起并投掷物体,如旗帜或${NAME}。", + "phrase15Text": "最后,还有炸弹。", + "phrase16Text": "投掷炸弹需要练习。", + "phrase17Text": "大家不要学我这样丢...", + "phrase18Text": "跑起来有助你投掷得更远。", + "phrase19Text": "跳跃有助你投掷得更高。", + "phrase20Text": "“鞭打”你的炸弹以抛出更远的距离。", + "phrase21Text": "你还要卡准时机丢出炸弹。", + "phrase22Text": "我靠。", + "phrase23Text": "可以让火线先燃烧一秒或两秒。", + "phrase24Text": "好耶!差点秒杀~", + "phrase25Text": "好了,教程先到这里吧。", + "phrase26Text": "先尝试一波吧,老铁!", + "phrase27Text": "记住刚刚的教程,你会活着回来的!", + "phrase28Text": "......好吧,也许...", + "phrase29Text": "祝好运!", + "randomName1Text": "弗雷德", + "randomName2Text": "哈里", + "randomName3Text": "比尔", + "randomName4Text": "查克", + "randomName5Text": "菲尔", + "skipConfirmText": "确定跳过教程?点击或按下按钮以确认。(注意你不用跟着点!)", + "skipVoteCountText": "${COUNT}/${TOTAL}跳过投票", + "skippingText": "跳过教程……", + "toSkipPressAnythingText": "(点击或按下任何按钮以跳过教程)" + }, + "twoKillText": "双杀!", + "uiScaleText": "UI缩放", + "unavailableText": "不可用", + "unclaimedPrizesText": "您还有未领取的奖品!", + "unconfiguredControllerDetectedText": "检测到未配置的手柄:", + "unlockThisInTheStoreText": "这必须在商店中解锁。", + "unlockThisProfilesText": "如需创建超过 ${NUM} 个玩家档案,你需要", + "unlockThisText": "你需要这些来解锁", + "unsupportedControllerText": "抱歉,游戏不兼容你的控制器\"${NAME}\"", + "unsupportedHardwareText": "抱歉,此版本的游戏不支持该硬件。", + "upFirstText": "进入第一局:", + "upNextText": "进入比赛${COUNT}第二局:", + "updatingAccountText": "更新您的帐户……", + "upgradeText": "升级", + "upgradeToPlayText": "在游戏商店中解锁\"${PRO}\",以体验该游戏。", + "useDefaultText": "使用默认值", + "userSystemScriptsCreateText": "创建并启用外挂载内核代码(会禁用锦标赛)", + "userSystemScriptsDeleteText": "停用并删除外挂载内核代码(对内核的更改将被删除!)", + "usesExternalControllerText": "该游戏使用外部手柄进行输入。", + "usingItunesText": "使用音乐应用设置背景音乐……", + "v2AccountLinkingInfoText": "要关联V2账户,请点击“管理账户”喵~", + "v2AccountRequiredText": "仅V2账户支持此功能,请先升级账户", + "validatingTestBuildText": "测试版验证中……", + "viaText": "渠道账户:", + "victoryText": "胜利!", + "voteDelayText": "${NUMBER} 秒内你不能发起另一个投票", + "voteInProgressText": "已经有一个投票在进行中了", + "votedAlreadyText": "你已经投过票啦!", + "votesNeededText": "通过需要 ${NUMBER} 个投票", + "vsText": "vs.", + "waitingForHostText": "(请等待${HOST}继续游戏)", + "waitingForPlayersText": "等待玩家的加入……", + "waitingInLineText": "正在排队等候(人满为患)...", + "watchAVideoText": "看一个小广告视频", + "watchAnAdText": "观看广告", + "watchWindow": { + "deleteConfirmText": "删除\"${REPLAY}\"?", + "deleteReplayButtonText": "删除\n回放", + "myReplaysText": "我的回放", + "noReplaySelectedErrorText": "未选择回放", + "playbackSpeedText": "回放速度: ${SPEED}", + "renameReplayButtonText": "重命名\n录像", + "renameReplayText": "重命名\"${REPLAY}\"至:", + "renameText": "重命名", + "replayDeleteErrorText": "删除回放错误。", + "replayNameText": "回放名称", + "replayRenameErrorAlreadyExistsText": "该名称的回放已经存在。", + "replayRenameErrorInvalidName": "无法重命名回放;名称无效。", + "replayRenameErrorText": "重命名回放错误。", + "sharedReplaysText": "共享回放", + "titleText": "观看回放", + "watchReplayButtonText": "观看\n回放" + }, + "waveText": "波", + "wellSureText": "确定!", + "whatIsThisText": "这啥玩意??", + "winsPlayerText": "${NAME}获胜!", + "winsTeamText": "${NAME}获胜!", + "winsText": "${NAME}获胜!", + "workspaceSyncErrorText": "同步${WORKSPACE}出错了啦,详情见日志文件", + "workspaceSyncReuseText": "同步${WORKSPACE}时出错,正在使用以前同步的数据....", + "worldScoresUnavailableText": "全球得分不可用。", + "worldsBestScoresText": "全球最高得分", + "worldsBestTimesText": "全球最佳时间", + "yesAllowText": "是的,允许!", + "yourBestScoresText": "你的最高得分", + "yourBestTimesText": "你的最佳时刻", + "yourPrizeText": "您的奖品:" +} \ No newline at end of file diff --git a/dist/ba_data/data/languages/chinesetraditional.json b/dist/ba_data/data/languages/chinesetraditional.json index 3e9c279..3393f3a 100644 --- a/dist/ba_data/data/languages/chinesetraditional.json +++ b/dist/ba_data/data/languages/chinesetraditional.json @@ -6,7 +6,9 @@ "campaignProgressText": "戰役進度[困難]: ${PROGRESS}", "changeOncePerSeason": "每一賽季只有一次更改機會", "changeOncePerSeasonError": "您必須等${NUM}天到下個賽季改變此選項", + "createAnAccountText": "建立一個帳戶", "customName": "自定義名稱", + "deleteAccountText": "刪除帳戶", "googlePlayGamesAccountSwitchText": "如果您想使用其他 Google 帳戶,\n使用 Google Play 遊戲應用程序進行切換。", "linkAccountsEnterCodeText": "輸入代碼", "linkAccountsGenerateCodeText": "生成代碼", @@ -23,6 +25,7 @@ "setAccountNameDesc": "選擇你要為你帳號使用的遊戲內名稱。\n你直接使用你其中一個已連結的賬戶的名稱或\n創造一個獨特的自定義名稱。", "signInInfoText": "登入得以收集票卷,完成線上\n和與其他裝置共享進度", "signInText": "登入", + "signInWithAnEmailAddressText": "以電郵登入", "signInWithDeviceInfoText": "一個這裝置現有的自動帳號", "signInWithDeviceText": "使用設備賬戶登入", "signInWithGameCircleText": "使用Game Circle登入", @@ -31,7 +34,7 @@ "signInWithTestAccountText": "用測試帳號登入", "signInWithText": "通過${SERVICE}登錄", "signInWithV2InfoText": "(可用於所有平臺的賬戶)", - "signInWithV2Text": "使用Bombsquad賬戶登入", + "signInWithV2Text": "以${APP_NAME}登入", "signOutText": "登出", "signingInText": "登入中…", "signingOutText": "登出中…", @@ -339,6 +342,8 @@ "allowText": "允許", "alreadySignedInText": "你的賬號已在其他設備上登錄\n請退出其他設備的登錄\n然後重試", "apiVersionErrorText": "無法加載模塊${NAME},它的API版本為${VERSION_USED},我們需要${VERSION_REQUIRED}。", + "applyText": "套用", + "areYouSureText": "確定?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(“自動”僅在插入耳機時有效)", "headRelativeVRAudioText": "頭戴式VR音頻", @@ -360,14 +365,24 @@ "boostText": "加速", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME}是在应用本身中配置的。", "buttonText": "按鈕", - "canWeDebugText": "你想要炸彈小分隊自動報告\n錯誤信息給開發人員嗎?\n\n信息中不包含個人信息\n可用於遊戲更加穩定", + "canWeDebugText": "你想要${APP_NAME}自動報告\n錯誤信息給開發人員嗎?\n\n信息中不包含個人信息\n可用於遊戲更加穩定", "cancelText": "取消", "cantConfigureDeviceText": "抱歉,${DEVICE}不可配置", "challengeEndedText": "此比賽挑戰已結束", "chatMuteText": "屏蔽消息", "chatMutedText": "屏蔽聊天信息", "chatUnMuteText": "取消屏蔽消息", + "chests": { + "prizeOddsText": "中獎機率", + "reduceWaitText": "減少等待", + "slotDescriptionText": "這個插槽可以容納一個箱子。\n\n透過玩戰役關卡贏取寶箱,\n參加比賽,並完成\n成就。", + "slotText": "寶箱槽 ${NUM}", + "slotsFullWarningText": "警告:您的所有寶箱槽都已滿。\n您在本遊戲中獲得的所有寶箱都將遺失。", + "unlocksInText": "解鎖" + }, "choosingPlayerText": "<選擇玩家>", + "claimText": "宣稱", + "codesExplainText": "代碼由開發者提供\n以診斷及改正帳戶問題。", "completeThisLevelToProceedText": "你需要先完成\n這一關", "completionBonusText": "完成獎勵", "configControllersWindow": { @@ -448,6 +463,7 @@ "swipeText": "滑動", "titleText": "觸屏操作設置" }, + "configureDeviceInSystemSettingsText": "${DEVICE}可以於系統設定中配置", "configureItNowText": "立即配置?", "configureText": "配置", "connectMobileDevicesWindow": { @@ -468,7 +484,7 @@ "activenessAllTimeInfoText": "不提供所有時間的排名", "activenessInfoText": "倍數隨著遊戲天數增加\n隨著離線天數減少", "activityText": "活動", - "campaignText": "比賽", + "campaignText": "徵戰", "challengesInfoText": "獲得完成迷你遊戲的獎勵\n\n每完成一項挑戰\n獎勵和難度就會隨之增加\n每挑戰失敗或放棄一次,獎勵和難度就會隨之下降", "challengesText": "挑戰", "currentBestText": "當前最高分", @@ -550,6 +566,7 @@ "demoText": "演示", "denyText": "拒絕", "deprecatedText": "棄用", + "descriptionText": "簡介", "desktopResText": "桌面分辨率", "deviceAccountUpgradeText": "警告:\n您已使用設備帳戶(${NAME})登錄。\n設備帳戶將在未來的更新中刪除。\n如果您想保留賬戶,請升級到 V2 帳戶。", "difficultyEasyText": "簡單", @@ -561,6 +578,7 @@ "disableXInputDescriptionText": "允許使用四個以上的控制器,但可能不會正常工作", "disableXInputText": "禁用XInput", "disabledText": "禁用", + "discardText": "丟棄", "discordFriendsText": "想要尋找新的朋友一起遊玩嗎?\n快來加入我們的Discord社區發現新夥伴!", "discordJoinText": "加入Discord社區", "doneText": "完成", @@ -595,6 +613,7 @@ "localProfileText": "(本地檔案)", "nameDescriptionText": "玩家名稱", "nameText": "名稱", + "profileAlreadyExistsText": "同樣名稱的使用者已存在!", "randomText": "隨機", "titleEditText": "編輯檔案", "titleNewText": "新建檔案", @@ -642,6 +661,8 @@ "errorText": "錯誤", "errorUnknownText": "未知錯誤", "exitGameText": "退出${APP_NAME}?", + "expiredAgoText": "${T} 前已過期", + "expiresInText": "${T} 後過期", "exportSuccessText": "退出'${NAME}'", "externalStorageText": "外部存儲器", "failText": "失敗", @@ -676,6 +697,8 @@ "duplicateText": "複製\n比賽列表", "editText": "編輯\n比賽列表", "newText": "新建\n比賽列表", + "pointsToWinText": "勝利分數", + "seriesLengthText": "遊戲長度", "showTutorialText": "顯示新手教程", "shuffleGameOrderText": "隨機比賽模式", "titleText": "自定義${TYPE}列表" @@ -701,6 +724,7 @@ "copyCodeConfirmText": "代碼已複製進剪切板", "copyCodeText": "複製此代碼", "dedicatedServerInfoText": "建立一個伺服器來獲取最佳效果,詳情見bombsquadgame.com/server", + "descriptionShortText": "使用「多人遊戲」視窗來創造多人遊戲。", "disconnectClientsText": "這將使派對中的${COUNT}位玩家斷開連接\n確定這麼做嗎?", "earnTicketsForRecommendingAmountText": "如果您的朋友們玩了這款遊戲,它們將會受到${COUNT}點券\n(每個遊玩的朋友會使你獲取${YOU_COUNT}點券)", "earnTicketsForRecommendingText": "分享遊戲來\n獲取免費點券...", @@ -713,10 +737,10 @@ "friendHasSentPromoCodeText": "從${NAME}中獲取到${COUNT}個${APP_NAME}點券", "friendPromoCodeAwardText": "每使用一次,你就會收到${COUNT}張點券", "friendPromoCodeExpireText": "此代碼將在${EXPIRE_HOURS}小時後失效,該代碼只對新玩家有效", - "friendPromoCodeInstructionsText": "要使用此代碼,可打開${APP_NAME}。通過“設置->高級設置->輸入促銷代碼”操作\n所有支持平台的下載鏈接可見bombsquadgame.com", + "friendPromoCodeInstructionsText": "要使用此代碼,可打開${APP_NAME}。通過“設置->高級設置->傳送資料”操作\n所有支持平台的下載鏈接可見bombsquadgame.com", "friendPromoCodeRedeemLongText": "達到${MAX_USES}人後就不能獲得${COUNT}免費點券(防止玩家作弊)", "friendPromoCodeRedeemShortText": "可在遊戲中兌換${COUNT}免費點券", - "friendPromoCodeWhereToEnterText": "(在“設置->高級設置->輸入促銷代碼”中)", + "friendPromoCodeWhereToEnterText": "(在 設置->高級設置->傳送資料 中)", "getFriendInviteCodeText": "獲取好友邀請碼", "googlePlayDescriptionText": "通過Google Play邀請玩家進入你的派對", "googlePlayInviteText": "邀請", @@ -812,6 +836,12 @@ "youHaveShortText": "你擁有 ${COUNT}", "youHaveText": "你擁有 ${COUNT}點券" }, + "goldPass": { + "desc1InfTokensText": "無限代幣", + "desc2NoAdsText": "零廣告", + "desc3ForeverText": "直到永遠。", + "goldPassText": "黃金通行證" + }, "googleMultiplayerDiscontinuedText": "抱歉,Google的多人遊戲服務不再可用。\n我將盡快更換新的替代服務。\n在此之前,請嘗試其他連接方法。\n-Eric", "googlePlayPurchasesNotAvailableText": "Google Play購買不可用\n你可能需要更新你的Google Play商店組件", "googlePlayServicesNotAvailableText": "Google play當前不可用\n一些功能將會被禁用", @@ -825,7 +855,7 @@ "highText": "高", "higherText": "最高", "lowText": "低", - "maxFPSText": "最大FPS", + "maxFPSText": "幀速上限", "mediumText": "中", "neverText": "關", "resolutionText": "分辨率", @@ -886,6 +916,7 @@ "importText": "導入", "importingText": "導入中...", "inGameClippedNameText": "名字會是\n\"${NAME}\"", + "inboxText": "收件匣", "installDiskSpaceErrorText": "錯誤:無法完成安裝\n你的設備磁盤空間不足\n請釋放一些空間後重試", "internal": { "arrowsToExitListText": "按${LEFT} 或 ${RIGHT} 退出列表", @@ -940,12 +971,14 @@ "timeOutText": "(將在${TIME} 秒後超出時限)", "touchScreenJoinWarningText": "你已以觸摸屏的方式加入\n如果這是一個錯誤,請手動退出遊戲", "touchScreenText": "觸摸屏", + "unableToCompleteTryAgainText": "現在無法完成此操作\n請稍後再試", "unableToResolveHostText": "錯誤:創建者網絡環境有問題", "unavailableNoConnectionText": "網絡連接故障", "vrOrientationResetCardboardText": "重置VR定位\n您需要用外部手柄來進行遊戲", "vrOrientationResetText": "VR定位重置", "willTimeOutText": "(若掛機則會超出時限)" }, + "inventoryText": "庫存", "jumpBoldText": "跳", "jumpText": "跳", "keepText": "舉起", @@ -992,8 +1025,11 @@ "seasonEndsMinutesText": "賽季將於${NUMBER}分鐘後結束", "seasonText": "第${NUMBER}賽季", "tournamentLeagueText": "你一定要到${NAME}聯賽後才能參加此賽事", - "trophyCountsResetText": "獎杯計數將於下個賽季重置" + "trophyCountsResetText": "獎杯計數將於下個賽季重置", + "upToDateBonusDescriptionText": "請使用最新遊戲版本\n來獲得${PERCENT}%額外賠率", + "upToDateBonusText": "最新版賠率" }, + "learnMoreText": "更多資訊...", "levelBestScoresText": "在${LEVEL}中的最高成績", "levelBestTimesText": "在${LEVEL}中的最佳時間", "levelIsLockedText": "${LEVEL}正在鎖定狀態", @@ -1037,6 +1073,8 @@ "modeArcadeText": "街機模式", "modeClassicText": "經典模式", "modeDemoText": "演示模式", + "moreSoonText": "更多內容即將推出...", + "mostDestroyedPlayerText": "被摧毀次數最多的球員", "mostValuablePlayerText": "最有價值的玩家", "mostViolatedPlayerText": "最遭受暴力的玩家", "mostViolentPlayerText": "最暴力的玩家", @@ -1053,6 +1091,7 @@ "nameSuicideText": "${NAME}自殺了.", "nameText": "名稱", "nativeText": "本機", + "newExclaimText": "全新!", "newPersonalBestText": "新個人最佳!", "newTestBuildAvailableText": "更新的測試版可供下載了! (${VERSION} 升級至 ${BUILD}).\n到${ADDRESS}獲取測試版", "newText": "新建", @@ -1063,6 +1102,7 @@ "noContinuesText": "(無可繼續)", "noExternalStorageErrorText": "該設備未發現外部存儲器", "noGameCircleText": "錯誤:未登錄GameCircle", + "noMessagesText": "沒有消息.", "noPluginsInstalledText": "未安裝插件", "noScoresYetText": "沒有得分記錄", "noServersFoundText": "未找到服務器", @@ -1071,6 +1111,7 @@ "noValidMapsErrorText": "沒有發現該比賽類型的有效地圖", "notEnoughPlayersRemainingText": "剩餘玩家不足,退出並開始新遊戲", "notEnoughPlayersText": "至少需要${COUNT}名玩家來開始遊戲", + "notEnoughTicketsText": "票不夠了!", "notNowText": "不是現在", "notSignedInErrorText": "你必須登入來進行該操作.", "notSignedInGooglePlayErrorText": "您必須通過Google Play登錄", @@ -1083,6 +1124,9 @@ "onText": "開", "oneMomentText": "請等待", "onslaughtRespawnText": "${PLAYER}將於${WAVE}波復活", + "openMeText": "打開我!", + "openNowText": "即時打開", + "openText": "打開", "orText": "${A} 或 ${B}", "otherText": "其他", "outOfText": "(在${ALL}名玩家中位列#${RANK})", @@ -1168,10 +1212,12 @@ "punchText": "拳擊", "purchaseForText": "購買花費 ${PRICE}", "purchaseGameText": "購買遊戲", + "purchaseNeverAvailableText": "抱歉, 此版本並不支援遊戲購物。\n請於另一個平台上登入你的帳號,並於該處進行購買。", + "purchaseNotAvailableText": "此產品目前缺貨。。。", "purchasingText": "正在購買...", "quitGameText": "退出 ${APP_NAME}?", "quittingIn5SecondsText": "將於5秒後退出...", - "randomPlayerNamesText": "Reol,爆破鬼才,ZACK,炸蛋小分隊,隊友摧毀者,炸彈吞噬者,TNT的朋友,冰凍使者,田所浩二,拳擊高手,創世神,炸彈人,機械狂人,大發明家,吹噓海盜,末日預言者", + "randomPlayerNamesText": "爆破鬼才,ZACK,炸蛋小分隊,隊友摧毀者,炸彈吞噬者,TNT的朋友,冰凍使者,拳擊高手,創世神,炸彈人,機械狂人,大發明家,吹噓海盜,末日預言者", "randomText": "隨機", "rankText": "排行", "ratingText": "排名", @@ -1209,6 +1255,7 @@ "version_mismatch": "版本不匹配\n確保Bombsquad與Bombsquad手柄都是\n最新版本後重試" }, "removeInGameAdsText": "在商店中解鎖\"${PRO}\",以刪除遊戲中的廣告", + "removeInGameAdsTokenPurchaseText": "!!限時優惠!! 購買任何代幣包以移除廣告", "renameText": "重命名", "replayEndText": "結束回放", "replayNameDefaultText": "終場遊戲回放", @@ -1242,6 +1289,7 @@ }, "scoreWasText": "(是 ${COUNT})", "selectText": "選擇", + "sendInfoDescriptionText": "把帳戶狀態以及遊戲狀態資料給予開發者。\n必須包括你的名稱,以及傳送資料理由。", "seriesWinLine1PlayerText": "贏得", "seriesWinLine1TeamText": "贏得", "seriesWinLine1Text": "贏得", @@ -1259,6 +1307,7 @@ "alwaysUseInternalKeyboardDescriptionText": "(注意:遊戲內置輸入法只能讓輸入英文字符和部分符號)", "alwaysUseInternalKeyboardText": "使用遊戲內置輸入法", "benchmarksText": "基準/壓力測試", + "devToolsText": "開發工具", "disableCameraGyroscopeMotionText": "禁用陀螺儀畫面抖動", "disableCameraShakeText": "禁止畫面抖動", "disableThisNotice": "(可在高級設置中關閉此通知)", @@ -1267,14 +1316,20 @@ "enterPromoCodeText": "輸入促銷代碼", "forTestingText": "注意:這些數值僅用於測試,並會在退出遊戲後重置", "helpTranslateText": "${APP_NAME}的非英語翻譯是其他玩家\n共同努力的成果,如果你希望參與遊戲文本翻譯或修正\n請點擊以下連接。感謝大家對遊戲翻譯提出的貢獻", + "insecureConnectionsDescriptionText": "可以開放來自受限制國家或互聯網的網上遊玩\n因安全隱憂並不建議使用", + "insecureConnectionsText": "使用公開網絡連接", "kickIdlePlayersText": "自動踢出掛機玩家", "kidFriendlyModeText": "兒童模式(低暴力等)", "languageText": "語言", "moddingGuideText": "修改指南", + "moddingToolsText": "改裝工具", "mustRestartText": "你必須重啟遊戲才能生效", "netTestingText": "網絡連接測試", "resetText": "恢復默認", + "sendInfoText": "傳送資料", "showBombTrajectoriesText": "顯示炸彈軌跡", + "showDemosWhenIdleText": "掛機時展示遊戲示範", + "showDeprecatedLoginTypesText": "展示廢舊的登入選項", "showDevConsoleButtonText": "顯示開發控制臺按鈕", "showInGamePingText": "顯示遊戲內延遲", "showPlayerNamesText": "顯示玩家名稱", @@ -1284,7 +1339,7 @@ "translationFetchErrorText": "翻譯狀態不可用", "translationFetchingStatusText": "檢查翻譯進度...", "translationInformMe": "我的語言翻譯可更新時通知我", - "translationNoUpdateNeededText": "當前語言翻譯文本是最新的", + "translationNoUpdateNeededText": "當前語言翻譯文本是最新的!帥呀!", "translationUpdateNeededText": "**當前語言翻譯文本需要更新**", "vrTestingText": "VR 調試" }, @@ -1295,6 +1350,9 @@ "signInWithGameCenterText": "使用Game Center\n來登錄", "singleGamePlaylistNameText": "僅 ${GAME}", "singlePlayerCountText": "1 玩家", + "sizeLargeText": "大", + "sizeMediumText": "中", + "sizeSmallText": "小", "soloNameFilterText": "單挑模式 ${NAME}", "soundtrackTypeNames": { "CharSelect": "角色選擇", @@ -1320,6 +1378,7 @@ }, "spaceKeyText": "空格", "statsText": "統計", + "stopRemindingMeText": "別再提醒我了", "storagePermissionAccessText": "需要存儲權限", "store": { "alreadyOwnText": "您已擁有${NAME}!", @@ -1355,7 +1414,7 @@ "winterSpecialText": "冬季特售", "youOwnThisText": "-您已擁有-" }, - "storeDescriptionText": "8人派对游戏尽显疯狂!\n\n在爆炸类迷你游戏中炸飞您的好友(或电脑),如夺旗战、冰球战及史诗级慢动作死亡竞赛!\n\n简单的控制和广泛的手柄支持可轻松允许多达8人参与游戏;您甚至可以通过免费的“BombSquad Remote”应用将您的移动设备作为手柄使用!\n\n投射炸弹!\n\n更多信息,请登录www.froemling.net/bombsquad。", + "storeDescriptionText": "瘋狂的8人派對遊戲!!!\n\n在錦標賽或大小遊戲中(包括但不限於奪旗,冰球,慢動作的死亡競賽)用炸彈炸毁你的朋友(或人機)吧!\n\n簡易的控制模式以及廣泛的控制器支援令召集8個人變得相當容易;甚至可以用 BombSquad Remote 手機程式來用手機作為控制器!\n\n爆炸就是藝術!!\n\n更多資訊請查看www.froemling.net/bombsquad", "storeDescriptions": { "blowUpYourFriendsText": "炸飛你的朋友", "competeInMiniGamesText": "在從競速到飛行的迷你遊戲中一決高下", @@ -1378,6 +1437,7 @@ "testBuildValidatedText": "測試版已通過驗證,盡情享用", "thankYouText": "感謝你的支持!盡情享受遊戲!", "threeKillText": "三殺!!", + "ticketsDescriptionText": "點券可以解鎖新角色,新遊戲,新地圖\n以及更多在商店找到的東西\n\n你可以透過贏取寶箱來獲得更多點券\n( 方法包括:徵戰、錦標賽、成就)", "timeBonusText": "時間獎勵", "timeElapsedText": "時間耗盡", "timeExpiredText": "時間結束", @@ -1386,12 +1446,26 @@ "timeSuffixMinutesText": "${COUNT}分", "timeSuffixSecondsText": "${COUNT}秒", "tipText": "提示", - "titleText": "BombSquad", + "titleText": "炸彈小分隊", "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "獲得代幣...", + "notEnoughTokensText": "代幣不足!", + "numTokensText": "${COUNT}代幣", + "openNowDescriptionText": "您有足夠的代幣\n現在打開這個 - 你不\n需要等待。", + "shinyNewCurrencyText": "炸彈小分隊 閃亮亮 的全新遊戲幣!!", + "tokenPack1Text": "50代幣", + "tokenPack2Text": "500代幣", + "tokenPack3Text": "1200代幣", + "tokenPack4Text": "2600代幣", + "tokensDescriptionText": "代幣能夠加速寶箱解鎖\n或其他遊戲及帳戶有關功能\n\n你可以於遊戲中贏取代幣或\n購買代幣包\n另外亦可以購買黃金通行證以得到無限代幣", + "youHaveGoldPassText": "你有黃金通行證\n所有費用已豁免\n盡情享用!!" + }, "topFriendsText": "最佳好友", "tournamentCheckingStateText": "檢查錦標賽狀態中,請稍後...", "tournamentEndedText": "此錦標賽已結束。新的錦標賽已開始", "tournamentEntryText": "錦標賽入口", + "tournamentFinalStandingsText": "最終排名", "tournamentResultsRecentText": "最近錦標賽結果", "tournamentStandingsText": "錦標賽積分榜", "tournamentText": "錦標賽", @@ -1447,6 +1521,18 @@ "Uber Onslaught": "高級衝鋒戰", "Uber Runaround": "高級塔防戰" }, + "displayItemNames": { + "${C} Tickets": "${C}點券", + "${C} Tokens": "${C}代幣", + "Chest": "寶箱", + "L1 Chest": "壹等寶箱", + "L2 Chest": "貳等寶箱", + "L3 Chest": "參等寶箱", + "L4 Chest": "肆等寶箱", + "L5 Chest": "伍等寶箱", + "L6 Chest": "陸等寶箱", + "Unknown Chest": "寶箱等級: 不明!" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "在一定時間內取代選定目標進而取得勝利\n殺死選定目標並取而代之", "Bomb as many targets as you can.": "盡可能多的摧毀炸毀", @@ -1551,6 +1637,7 @@ "Korean": "朝鮮語", "Malay": "馬來語", "Persian": "波斯文", + "PirateSpeak": "海盜口語", "Polish": "波蘭語", "Portuguese": "葡萄牙語", "Romanian": "羅馬尼亞語", @@ -1573,23 +1660,23 @@ "Silver": "銀牌" }, "mapsNames": { - "Big G": "大G", - "Bridgit": "小橋", + "Big G": "大G賽道", + "Bridgit": "布里吉特橋", "Courtyard": "庭院", - "Crag Castle": "岩城", - "Doom Shroom": "蘑菇雲", + "Crag Castle": "雙子岩城", + "Doom Shroom": "末日蘑菇谷", "Football Stadium": "橄欖球場", - "Happy Thoughts": "飛行地帶", + "Happy Thoughts": "快樂仙境", "Hockey Stadium": "冰球場", - "Lake Frigid": "寒湖", + "Lake Frigid": "冰湖賽道", "Monkey Face": "猴面", - "Rampage": "狂暴", - "Roundabout": "塔防", - "Step Right Up": "攻擊", - "The Pad": "平板", - "Tip Top": "頂點", - "Tower D": "塔防", - "Zigzag": "蜿蜒" + "Rampage": "狂暴擂台", + "Roundabout": "馬蹄木塔", + "Step Right Up": "對立戰地", + "The Pad": "平板高塔", + "Tip Top": "頂峰據點", + "Tower D": "D氏城堡", + "Zigzag": "蜿蜒地帶" }, "playlistNames": { "Just Epic": "僅限史詩級", @@ -1622,6 +1709,7 @@ "Cheating detected; scores and prizes suspended for ${COUNT} days.": "發現賬號作弊行為;得分及獎勵在${COUNT}天內暫停", "Could not establish a secure connection.": "無法建立安全連接", "Daily maximum reached.": "已達今日上限", + "Daily sign-in reward": "每天登入獎勵", "Entering tournament...": "進入錦標賽...", "Invalid code.": "代碼無效", "Invalid payment; purchase canceled.": "不可用的付款方式:交易取消", @@ -1631,11 +1719,14 @@ "Item unlocked!": "項目已解除綁定", "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "連接賬號行為取消,${ACCOUNT}含有\n的重要數據可能會丟失\n如果想要關聯的話,你可以反向鏈接賬號\n(最好用自己的賬號進行關聯)", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "確定將${ACCOUNT}關聯到此賬戶嗎\n${ACCOUNT}將共享數據\n可在30天后取消", + "Longer streaks lead to better rewards.": "連勝越長,獎勵越好", "Max number of playlists reached.": "已達到最大列表數", "Max number of profiles reached.": "已達到最大檔案數", "Maximum friend code rewards reached.": "邀請碼獎勵達到上限", "Message is too long.": "消息過長", + "New tournament result!": "新的比賽結果!", "No servers are available. Please try again soon.": "當前沒有空餘的伺服器,請稍後再試", + "No slots available. Free a slot and try again.": "沒有可用空位。釋放一個插槽並重試。", "Profile \"${NAME}\" upgraded successfully.": "\"${NAME}\"檔案升級成功", "Profile could not be upgraded.": "檔案不可升級", "Purchase successful!": "購買成功", @@ -1645,7 +1736,9 @@ "Sorry, this code has already been used.": "對不起,此代碼已被使用", "Sorry, this code has expired.": "對不起,此代碼已失效", "Sorry, this code only works for new accounts.": "對不起,此代碼僅適用於新用戶", + "Sorry, this has expired.": "抱歉,此物品已經過期。", "Still searching for nearby servers; please try again soon.": "正在查詢附近的伺服器,請稍後再試", + "Streak: ${NUM} days": "連勝: ${NUM}天", "Temporarily unavailable; please try again later.": "目前暫不可用,請稍後再試", "The tournament ended before you finished.": "本次錦標賽將於在你完成之前結束了", "This account cannot be unlinked for ${NUM} days.": "此賬戶在${NUM}天內無法取消關聯", @@ -1656,19 +1749,28 @@ "Tournaments require ${VERSION} or newer": "比賽需要${VERSION}或更高的版本", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "從此賬戶上取消${ACCOUNT}的關聯?\n${ACCOUNT}上的數據將會被重置\n(在某些情況下成就除外)", "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "警告:針對你的賬戶發出黑客控訴\n被盜用的賬戶將被禁止。請公平競技", + "Wait reduced!": "等待減少!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "警告:本版本遊戲僅限舊帳號資料;東西可能會遺失或過時。\n請升級到較新版本的遊戲才能查看您最新的帳戶資料。", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "是否經你的賬戶連接到此?\n\n你的賬戶為${ACCOUNT1}\n此賬戶為${ACCOUNT2}\n\n你可以保存現有進度\n警告:此操作可在30天后取消", "You already own this!": "你已擁有這個", "You can join in ${COUNT} seconds.": "你可以在${COUNT}秒後加入", "You don't have enough tickets for this!": "你的點券不足", "You don't own that.": "你尚未擁有", "You got ${COUNT} tickets!": "你獲得了${COUNT}點券", + "You got ${COUNT} tokens!": "你獲得了${COUNT}代幣", "You got a ${ITEM}!": "你獲得了一個${ITEM}!", + "You got a chest!": "你獲得了一個寶箱!", + "You got an achievement reward!": "你獲得了一個成就獎項!", "You have been promoted to a new league; congratulations!": "你已經被升級至一個全新的聯賽:恭喜", + "You lost a chest! (All your chest slots were full)": "你失去了一個箱子! (您的所有寶箱槽都已滿)", + "You must update the app to view this.": "您必須更新應用程式才能查看此內容", "You must update to a newer version of the app to do this.": "你必須先更新遊戲才能這麼做", "You must update to the newest version of the game to do this.": "你必須更新到最新版本才可以執行此操作", "You must wait a few seconds before entering a new code.": "你必須要在輸入新代碼前等待一會", + "You placed #${RANK} in a tournament!": "你於錦標賽中得到第${RANK}名!", "You ranked #${RANK} in the last tournament. Thanks for playing!": "你在上一場錦標賽中排名#${RANK},繼續加油", "Your account was rejected. Are you signed in?": "你的髒號被拒絕,您是否已登陸?", + "Your ad views are not registering. Ad options will be limited for a while.": "您的廣告瀏覽量未記錄。 廣告選項將在一段時間內受到限制。", "Your copy of the game has been modified.\nPlease revert any changes and try again.": "您的遊戲副本已更改\n請恢復任何更改並重試", "Your friend code was used by ${ACCOUNT}": "${ACCOUNT}已使用您的促銷代碼" }, @@ -1725,51 +1827,51 @@ "Red": "紅隊" }, "tips": { - "A perfectly timed running-jumping-spin-punch can kill in a single hit\nand earn you lifelong respect from your friends.": "一记完美、及时的“跑跳旋转拳”可一次性击杀敌人,并\n助你一生享有好友的尊重。", - "Always remember to floss.": "地面上的辅助线可能会有用。", - "Create player profiles for yourself and your friends with\nyour preferred names and appearances instead of using random ones.": "使用首选名称和外观,而非采用随机形式\n来为自己和好友创建玩家档案。", - "Curse boxes turn you into a ticking time bomb.\nThe only cure is to quickly grab a health-pack.": "诅咒之盒把你变成了一个定时炸弹。\n唯一的解决方法是迅速抢占一个生命值包。", - "Despite their looks, all characters' abilities are identical,\nso just pick whichever one you most closely resemble.": "尽管长相不同,所有人物的技能是相同的,\n所以只需随意挑选一个与你最相似的。", - "Don't get too cocky with that energy shield; you can still get yourself thrown off a cliff.": "不要因为拥有能量盾牌而狂妄自大;你仍然可能使自己坠入悬崖。", - "Don't run all the time. Really. You will fall off cliffs.": "不要总是奔跑。真的。你可能会坠入悬崖。", - "Don't spin for too long; you'll become dizzy and fall.": "不要旋转得太久,不然你会眩晕并摔倒。", - "Hold any button to run. (Trigger buttons work well if you have them)": "按住任意按钮来奔跑。(如果你有的话,扳机按钮将会很有用)", - "Hold down any button to run. You'll get places faster\nbut won't turn very well, so watch out for cliffs.": "按住任意按钮来奔跑。你将会更快地抵达一些地方,\n但是转弯效果并不好,所以当心悬崖。", - "Ice bombs are not very powerful, but they freeze\nwhoever they hit, leaving them vulnerable to shattering.": "寒冰炸弹并非很厉害,但它们能够冻结\n任何被击中者,使他们极易粉碎。", - "If someone picks you up, punch them and they'll let go.\nThis works in real life too.": "如果有人将你提起,出拳攻击他们,他们便会放手。\n这在现实生活中同样有效。", + "A perfectly timed running-jumping-spin-punch can kill in a single hit\nand earn you lifelong respect from your friends.": "及時進行跑跳旋轉會打出完美的必殺拳,\n效率高, 而且會令你的朋友尊重你一世。", + "Always remember to floss.": "好孩子早晚刷牙,並且要善用牙線。", + "Create player profiles for yourself and your friends with\nyour preferred names and appearances instead of using random ones.": "為自己與朋友製作玩家檔案並使用自己的愛稱及外貌,\n相對於隨機名稱更為易辨認。", + "Curse boxes turn you into a ticking time bomb.\nThe only cure is to quickly grab a health-pack.": "詛咒之盒把你變成了一個定時炸彈。\n唯一的解決方法是迅速搶佔一個急救包。", + "Despite their looks, all characters' abilities are identical,\nso just pick whichever one you most closely resemble.": "儘管長相不同,所有人物的技能是相同的\n所以只需隨意挑選一個與你最相似的。", + "Don't get too cocky with that energy shield; you can still get yourself thrown off a cliff.": "不要因為擁有能量盾牌而狂妄自大;你仍然可能使自己墜入懸崖。", + "Don't run all the time. Really. You will fall off cliffs.": "不要總是奔跑。真的。你可能會墜入懸崖。", + "Don't spin for too long; you'll become dizzy and fall.": "不要旋轉得太久,不然你會眩暈並摔倒。", + "Hold any button to run. (Trigger buttons work well if you have them)": "按住任意按鈕來奔跑。(如果你有的話,扳機按鈕將會很有用)", + "Hold down any button to run. You'll get places faster\nbut won't turn very well, so watch out for cliffs.": "按住任意按鈕來奔跑。你將會更快地抵達一些地方,\n但是轉彎效果並不好,所以當心懸崖。", + "Ice bombs are not very powerful, but they freeze\nwhoever they hit, leaving them vulnerable to shattering.": "冰彈傷害力較低,但具有凍結效果\n被擊中者會無法動彈並變得極易粉碎。", + "If someone picks you up, punch them and they'll let go.\nThis works in real life too.": "如果有人將你捉住,出拳攻擊他們,他們便會放手。\n這在現實生活中同樣奏效。", "If you are short on controllers, install the '${REMOTE_APP_NAME}' app\non your mobile devices to use them as controllers.": "如果您缺控制器,在手機上安裝「${REMOTE_APP_NAME}」\n並用手機當控制器。", - "If you get a sticky-bomb stuck to you, jump around and spin in circles. You might\nshake the bomb off, or if nothing else your last moments will be entertaining.": "如果一个黏黏弹将你困住,你应该四处跳动并转圈。你可能\n将炸弹抖落,或如果没有其他办法,你最后的时刻将是有趣的。", - "If you kill an enemy in one hit you get double points for it.": "如果你一击杀死一个敌人,你将获得双倍积分。", - "If you pick up a curse, your only hope for survival is to\nfind a health powerup in the next few seconds.": "如果你捡到一个诅咒之盒,你唯一的生存希望是\n在接下来的几秒内找到一个生命值提升器。", - "If you stay in one place, you're toast. Run and dodge to survive..": "如果你停留在一个地方,你就完了。为了生存而奔跑和躲避……", - "If you've got lots of players coming and going, turn on 'auto-kick-idle-players'\nunder settings in case anyone forgets to leave the game.": "如果众多玩家进进出出,在设置下打开“自动踢出闲置玩家”,以防\n任何玩家忘记离开游戏。", - "If your device gets too warm or you'd like to conserve battery power,\nturn down \"Visuals\" or \"Resolution\" in Settings->Graphics": "如果你的设备过热,或者你想要节省电池电量,\n则在设置->图形中调低“视觉效果”或“分辨率”", - "If your framerate is choppy, try turning down resolution\nor visuals in the game's graphics settings.": "如果你的帧速率不稳定,请尝试在游戏的\n图形设置中调低分辨率或视觉效果。", - "In Capture-the-Flag, your own flag must be at your base to score, If the other\nteam is about to score, stealing their flag can be a good way to stop them.": "在夺旗战中,你的旗帜必须位于你的基地才能得分,如果对方\n团队即将得分,窃取他们的旗帜是一个不错的阻止方法。", - "In hockey, you'll maintain more speed if you turn gradually.": "在冰球战中,逐渐转向将使你保持更快的速度。", - "It's easier to win with a friend or two helping.": "在拥有一名好友或两个帮扶的情况下更易获胜", - "Jump just as you're throwing to get bombs up to the highest levels.": "就像你试图将炸弹扔到最高点那样跳起来。", - "Land-mines are a good way to stop speedy enemies.": "地雷是阻止高速敌人的一个很好的方式。", - "Many things can be picked up and thrown, including other players. Tossing\nyour enemies off cliffs can be an effective and emotionally fulfilling strategy.": "很多东西都可以捡起来并投掷,包括其他玩家。将你的\n敌人抛下悬崖可能是一个有效的且情感上可获得满足的策略。", - "No, you can't get up on the ledge. You have to throw bombs.": "不,你不能在岩脊上起身。你必须要投掷炸弹", - "Players can join and leave in the middle of most games,\nand you can also plug and unplug controllers on the fly.": "玩家可在大多数游戏中途加入或离开,\n同时,你也可以在百忙中插上或拔出手柄。", - "Practice using your momentum to throw bombs more accurately.": "练习借助你的力量更准确地投掷炸弹。", - "Punches do more damage the faster your fists are moving,\nso try running, jumping, and spinning like crazy.": "拳头跑得越快,拳击的伤害越高,\n所以请成为飞奔的拳击手吧。", - "Run back and forth before throwing a bomb\nto 'whiplash' it and throw it farther.": "在投掷炸弹之前来回跑动,\n以“鞭打”炸弹,并将其投掷更远。", - "Take out a group of enemies by\nsetting off a bomb near a TNT box.": "在TNT炸药箱附近引爆\n一个炸弹来消灭一群敌人。", - "The head is the most vulnerable area, so a sticky-bomb\nto the noggin usually means game-over.": "头部是最脆弱的区域,所以一个黏黏弹\n接触头部通常便意味着游戏结束。", - "This level never ends, but a high score here\nwill earn you eternal respect throughout the world.": "这一关卡永远不会结束,但是更高的得分将\n助你赢得全世界永恒的尊重。", - "Throw strength is based on the direction you are holding.\nTo toss something gently in front of you, don't hold any direction.": "投掷力量取决于你所保持的方向。\n如要向前方轻轻投掷某物,不要保持在任何方向。", - "Tired of the soundtrack? Replace it with your own!\nSee Settings->Audio->Soundtrack": "更换背景音乐?更换成你自己音乐吧!\n参见设置->音频->背景音乐", - "Try 'Cooking off' bombs for a second or two before throwing them.": "尝试在投掷之前将炸弹“爆燃”一秒或两秒。", - "Try tricking enemies into killing eachother or running off cliffs.": "试图诱使敌人互相厮杀或坠入悬崖。", - "Use the pick-up button to grab the flag < ${PICKUP} >": "使用拾取按钮来抢夺旗帜< ${PICKUP} >", - "Whip back and forth to get more distance on your throws..": "来回鞭打以投掷更远距离……", - "You can 'aim' your punches by spinning left or right.\nThis is useful for knocking bad guys off edges or scoring in hockey.": "你可以通过左转或右转“瞄准”出拳。\n这有利于将坏人击倒出边界或在冰球战中得分。", - "You can judge when a bomb is going to explode based on the\ncolor of sparks from its fuse: yellow..orange..red..BOOM.": "你可以根据导火线火花的颜色判断炸弹什么时候爆炸:\n黄色……橙色……红色……嘭。", - "You can throw bombs higher if you jump just before throwing.": "如果投弹前跳起,你将投掷更远。", - "You take damage when you whack your head on things,\nso try to not whack your head on things.": "当你用头部重击物体时将受到伤害,\n所以尽量不要用头部重击物体。", - "Your punches do much more damage if you are running or spinning.": "如果你奔跑或旋转,拳击的伤害将更高。" + "If you get a sticky-bomb stuck to you, jump around and spin in circles. You might\nshake the bomb off, or if nothing else your last moments will be entertaining.": "如果一個黏黏彈將你困住,你應該四處跳動並轉圈。你\n有機會將炸彈抖落,或如果沒有其他辦法,你最後的時刻將是有趣的。", + "If you kill an enemy in one hit you get double points for it.": "如果你一擊秒殺一個敵人,你將獲得雙倍積分。", + "If you pick up a curse, your only hope for survival is to\nfind a health powerup in the next few seconds.": "如果你撿到一個詛咒之盒,你唯一的生存希望是\n在接下來的幾秒內找到一個生命值提升器。", + "If you stay in one place, you're toast. Run and dodge to survive..": "如果你停留在一個地方,你就完了。為了生存而奔跑和躲避……", + "If you've got lots of players coming and going, turn on 'auto-kick-idle-players'\nunder settings in case anyone forgets to leave the game.": "如果眾多玩家進進出出,在設置下打開“自動踢出閒置玩家”,\n以防任何玩家忘記離開遊戲。", + "If your device gets too warm or you'd like to conserve battery power,\nturn down \"Visuals\" or \"Resolution\" in Settings->Graphics": "如果你的設備過熱,或者你想要節省電池電量,\n則在設置->圖形中調低“視覺效果”或“分辨率”", + "If your framerate is choppy, try turning down resolution\nor visuals in the game's graphics settings.": "如果你的幀速率不穩定,請嘗試在遊戲的\n圖形設置中調低分辨率或視覺效果。", + "In Capture-the-Flag, your own flag must be at your base to score, If the other\nteam is about to score, stealing their flag can be a good way to stop them.": "在奪旗戰中,你的旗幟必須位於你的基地才能得分,\n如果敵隊即將得分,竊取他們的旗幟是一個不錯的阻止方法。", + "In hockey, you'll maintain more speed if you turn gradually.": "在冰球戰中,逐漸轉向將使你保持更快的速度。", + "It's easier to win with a friend or two helping.": "在擁有一名好友或兩個幫扶的情況下更易獲勝", + "Jump just as you're throwing to get bombs up to the highest levels.": "就像你試圖將炸彈扔到最高點那樣跳起來。", + "Land-mines are a good way to stop speedy enemies.": "地雷是阻止高速敵人的一個很好的方式。", + "Many things can be picked up and thrown, including other players. Tossing\nyour enemies off cliffs can be an effective and emotionally fulfilling strategy.": "很多東西都可以撿起來並投擲,包括其他玩家。將你的\n敵人拋下懸崖可能是一個有效的且情感上可獲得滿足的策略。", + "No, you can't get up on the ledge. You have to throw bombs.": "不,你不能在攀上岩脊。你必須要投擲炸彈", + "Players can join and leave in the middle of most games,\nand you can also plug and unplug controllers on the fly.": "玩家可在大多數遊戲中途加入或離開,\n同時,你也可以在百忙中插上或拔出手柄。", + "Practice using your momentum to throw bombs more accurately.": "練習借助你的力量更準確地投擲炸彈。", + "Punches do more damage the faster your fists are moving,\nso try running, jumping, and spinning like crazy.": "拳頭跑得越快,拳擊的傷害越高,\n所以請成為飛奔的拳擊手吧。", + "Run back and forth before throwing a bomb\nto 'whiplash' it and throw it farther.": "在投擲炸彈之前來回跑動,\n以“鞭打”炸彈,並將其投擲更遠。", + "Take out a group of enemies by\nsetting off a bomb near a TNT box.": "在TNT炸藥箱附近引爆\n一個炸彈來消滅一群敵人。", + "The head is the most vulnerable area, so a sticky-bomb\nto the noggin usually means game-over.": "頭部是最脆弱的區域,所以一個黏黏彈\n接觸頭部通常便意味著遊戲結束。", + "This level never ends, but a high score here\nwill earn you eternal respect throughout the world.": "這一關卡永遠不會結束,但是更高的\n得分將助你贏得永世之敬畏。", + "Throw strength is based on the direction you are holding.\nTo toss something gently in front of you, don't hold any direction.": "投擲力量取決於你所保持的方向。\n如要向前方輕輕投擲某物,不要保持在任何方向。", + "Tired of the soundtrack? Replace it with your own!\nSee Settings->Audio->Soundtrack": "不喜歡預設的音樂? 換成自己的音樂吧! \n參見 設置->音頻->背景音樂", + "Try 'Cooking off' bombs for a second or two before throwing them.": "嘗試在投擲之前將炸彈“爆燃”一秒或兩秒。", + "Try tricking enemies into killing eachother or running off cliffs.": "試圖誘使敵人互相殘殺或墜入懸崖。", + "Use the pick-up button to grab the flag < ${PICKUP} >": "使用拾取按鈕來搶奪旗幟< ${PICKUP} >", + "Whip back and forth to get more distance on your throws..": "來回鞭打以投擲更遠距離……", + "You can 'aim' your punches by spinning left or right.\nThis is useful for knocking bad guys off edges or scoring in hockey.": "你可以通過左轉或右轉“瞄准”出拳。\n這有利於將壞人擊倒出邊界或在冰球戰中得分。", + "You can judge when a bomb is going to explode based on the\ncolor of sparks from its fuse: yellow..orange..red..BOOM.": "你可你可以根據導火線火花的顏色判斷炸彈什麼時候爆炸:\n黃色……橙色……紅色……嘭。", + "You can throw bombs higher if you jump just before throwing.": "如果投彈前跳起,你將投擲更遠。", + "You take damage when you whack your head on things,\nso try to not whack your head on things.": "當你用頭部重擊物體時將受到傷害,\n所以盡量不要用頭部重擊物體。", + "Your punches do much more damage if you are running or spinning.": "如果你奔跑或旋轉,拳擊的傷害將更高。" } }, "trophiesRequiredText": "你至少要擁有${NUMBER}個獎杯", @@ -1778,46 +1880,48 @@ "tutorial": { "cpuBenchmarkText": "以驚人的速度來運行遊戲教程(用於測試CPU上限)", "phrase01Text": "嘿,夥計", - "phrase02Text": "歡迎來到${APP_NAME}!", - "phrase03Text": "以下適用於此遊戲的一些技巧", - "phrase04Text": "${APP_NAME}在很多情況下還是很物理的", + "phrase02Text": "歡迎遊玩${APP_NAME}!", + "phrase03Text": "以下有一些適用於此遊戲的技巧:", + "phrase04Text": "${APP_NAME}在很多情況下是相當講求物理學的。", "phrase05Text": "比如,當你出拳時", "phrase06Text": "拳頭的傷害取決於你它的速度", - "phrase07Text": "看到了嗎,如果我們不動,這樣幾乎不會造成傷害${NAME}", + "phrase07Text": "看到了嗎?如果我們動也不動,我們幾乎無法傷害${NAME}。", "phrase08Text": "現在,讓我們跳躍並旋轉起來,以獲得更快的速度", - "phrase09Text": "啊,這樣就好多了", + "phrase09Text": "啊,這樣就好多了。", "phrase10Text": "奔跑也會發揮作用", "phrase11Text": "按住任意按鈕來奔跑", "phrase12Text": "如果要完成一個很棒的出拳,請持續奔跑和旋轉", - "phrase13Text": "humm 關於${NAME}我很抱歉", + "phrase13Text": "抱歉囉${NAME}, 犧牲是需要的。", "phrase14Text": "你可以撿起投擲物品,如炸彈、旗幟或${NAME}", - "phrase15Text": "最後還有炸彈", + "phrase15Text": "最後,當然有炸彈", "phrase16Text": "投擲炸彈需要練習", - "phrase17Text": "ahh這一次貌似並不漂亮", + "phrase17Text": "哎呀,這一次貌似並不漂亮", "phrase18Text": "移動有助於你投擲的更遠", "phrase19Text": "跳躍有助於你投擲的更高", "phrase20Text": "甩炸彈會讓你把炸彈投擲到更遠的位置", "phrase21Text": "把握好時間可能會十分困難", - "phrase22Text": "¿", + "phrase22Text": "我呸。", "phrase23Text": "嘗試將導火線控制的更加精準", - "phrase24Text": "OHHHHH爆炸就是藝術", - "phrase25Text": "OK已經很不錯了", - "phrase26Text": "現在去完成你的任務吧,兄弟", - "phrase27Text": "記住你的訓練,你會活著回來的", - "phrase28Text": "也許...是吧", - "phrase29Text": "祝你好運", - "randomName1Text": "Fred", - "randomName2Text": "Harry", - "randomName3Text": "Bill", - "randomName4Text": "Chuck", - "randomName5Text": "Phil", + "phrase24Text": "OHHHHH爆炸就是藝術!!!", + "phrase25Text": "OK, 教程來到這裏差不多了。", + "phrase26Text": "現在去完成你的任務吧,兄弟!", + "phrase27Text": "記住你的訓練,你會活著回來的!", + "phrase28Text": "應該會...吧", + "phrase29Text": "祝你好運 :)", + "randomName1Text": "弗雷迪", + "randomName2Text": "哈利", + "randomName3Text": "比爾", + "randomName4Text": "查克", + "randomName5Text": "菲利浦", "skipConfirmText": "確定要跳過教程?再次按下按鈕來確定", "skipVoteCountText": "${COUNT}/${TOTAL} 跳過投票", "skippingText": "跳過教程...", "toSkipPressAnythingText": "(按下任意鍵來跳過教程)" }, "twoKillText": "雙殺!", + "uiScaleText": "介面大小", "unavailableText": "不可用", + "unclaimedPrizesText": "您有無人領會的獎品!", "unconfiguredControllerDetectedText": "檢測到未配置的手柄", "unlockThisInTheStoreText": "這必須從商店解鎖", "unlockThisProfilesText": "如需創建超過${NUM}個檔案,你需要", @@ -1830,9 +1934,12 @@ "upgradeText": "升級", "upgradeToPlayText": "你必須在商店裡解鎖${PRO}以體驗此內容", "useDefaultText": "使用默認值", + "userSystemScriptsCreateText": "創建用家自訂程式碼", + "userSystemScriptsDeleteText": "拆除用家自訂程式碼", "usesExternalControllerText": "該遊戲使用外部手柄進行接入", "usingItunesText": "使用音樂軟件設置背景音樂...", "v2AccountLinkingInfoText": "要鏈接 V2 帳戶,請使用“管理帳戶”按鈕。", + "v2AccountRequiredText": "此需要V2帳戶。請更新帳戶後再試。", "validatingTestBuildText": "測試版驗證中", "viaText": "其他賬戶", "victoryText": "勝利!", @@ -1899,5 +2006,6 @@ }, "yesAllowText": "是的,允許!", "yourBestScoresText": "最佳分數", - "yourBestTimesText": "最佳時間" + "yourBestTimesText": "最佳時間", + "yourPrizeText": "獎勵:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/croatian.json b/dist/ba_data/data/languages/croatian.json index 5599836..287e512 100644 --- a/dist/ba_data/data/languages/croatian.json +++ b/dist/ba_data/data/languages/croatian.json @@ -7,7 +7,9 @@ "campaignProgressText": "Napredak kampanje[Teško]: ${PROGRESS}", "changeOncePerSeason": "Ovo možeš promjeniti samo jednom po sezoni.", "changeOncePerSeasonError": "Moraš pričekati sljedeču sezonu da promjeniš ovo(${NUM} days)", + "createAnAccountText": "Napravi racun", "customName": "Prilagođeno ime", + "deleteAccountText": "Izbriši račun", "googlePlayGamesAccountSwitchText": "Ako želite koristiti drugi Google račun,\nidite u aplikaciju Google Play Igre za promijeniti račun.", "linkAccountsEnterCodeText": "Unesi kod", "linkAccountsGenerateCodeText": "Stvori kod", @@ -25,6 +27,7 @@ "setAccountNameDesc": "Odaberi koje ime da se prikaže za tvoj račun.\nMožeš koristiti ime jednog od tvojih povezanih računa\nili kreirati vlastito prilagođeno ime.", "signInInfoText": "Prijavi se da možeš dobivati kupone, natjecati\nse online, i dijeliti napredak između uređaja.", "signInText": "Prijavi se", + "signInWithAnEmailAddressText": "Uloguj se sa email adresom", "signInWithDeviceInfoText": "(automatski profil dostupan samo na ovom uređaju)", "signInWithDeviceText": "Prijavi se sa profilom uređaja", "signInWithGameCircleText": "Prijavi se sa Game Circle", @@ -337,10 +340,12 @@ "getMoreGamesText": "Još igara...", "titleText": "Dodaj igru" }, + "addToFavoritesText": "Dodaj u omiljene", "allText": "Sve", "allowText": "Dopusti", "alreadySignedInText": "Tvoj akaunt je prijavljen sa drugog uredjaja;\nmolimo promenite akaunt ili zatvori igru na\ntvom drugom uredjaju i probaj opet.", "apiVersionErrorText": "Nemoguće je učitati modul ${NAME}; napravljen je za ${VERSION_USED} verziju aplikacije; potrebna je verzija ${VERSION_REQUIRED}.", + "areYouSureText": "Dali si siguran?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(\"Automatski\" omogućuje ovo samo kad su slušalice priključene)", "headRelativeVRAudioText": "VR relativni zvuk", @@ -370,6 +375,9 @@ "chatMuteText": "Stišaj Chat", "chatMutedText": "Chat Stišan", "chatUnMuteText": "Upali Chat", + "chests": { + "reduceWaitText": "Skrati cekanje" + }, "choosingPlayerText": "", "completeThisLevelToProceedText": "Moraš završiti ovu\nrazinu da nastaviš!", "completionBonusText": "Završni bonus", @@ -553,6 +561,7 @@ "demoText": "Demo", "denyText": "Odbij", "deprecatedText": "Zastareno", + "descriptionText": "Diskripcija", "desktopResText": "Desktop rezolucija", "deviceAccountUpgradeText": "Upozorenje:\nPrijavljeni ste s uređajnim računom\n(${NAME}).\nUređajni računi će biti izbrisani u budućem ažuriranju.", "difficultyEasyText": "Lagano", @@ -564,6 +573,7 @@ "disableXInputDescriptionText": "Dozvoljava više od 4 kontrolera ali možda neće raditi dobro.", "disableXInputText": "Isključi XInput", "disabledText": "Deaktiviraj", + "discordJoinText": "Pridruzi se diskordu", "doneText": "Gotovo", "drawText": "Neriješeno", "duplicateText": "Dupliciraj", @@ -597,6 +607,7 @@ "localProfileText": "(Lokalni profil)", "nameDescriptionText": "Ime Igrača", "nameText": "Ime", + "profileAlreadyExistsText": "Profil sa tim imenom već postoji", "randomText": "nasumično", "titleEditText": "Uredi Profil", "titleNewText": "Novi Profil", @@ -750,6 +761,7 @@ "manualYourLocalAddressText": "Tvoja lokalna adresa:", "nearbyText": "Blizu", "noConnectionText": "", + "noPartiesAddedText": "Nema zurki dodanih", "otherVersionsText": "(druge verzije)", "partyCodeText": "Grupna šifra", "partyInviteAcceptText": "Prihvati", @@ -815,6 +827,12 @@ "youHaveShortText": "imaš ${COUNT}", "youHaveText": "imaš ${COUNT} kupona" }, + "goldPass": { + "desc1InfTokensText": "Beskonacno tokena", + "desc2NoAdsText": "Nema reklama", + "desc3ForeverText": "Zauvjek.", + "goldPassText": "Zlatna propusnica" + }, "googleMultiplayerDiscontinuedText": "Oprostite, Google Play Games servis za partije u igrama više ne postoji.\nTrenutno radim na zamjeni što je brže moguće.\nTo tada, priključujte se u partije na druge načine.\n-Eric", "googlePlayPurchasesNotAvailableText": "Google Play kupnje nisu dostupne.\nMožda ćete trebati ažurirati svoju trgovinu aplikacija.", "googlePlayServicesNotAvailableText": "Google Play Services nije dostupan.\nNeke funkcionalnosti aplikacije mogu biti isključene.", @@ -823,6 +841,7 @@ "alwaysText": "Uvijek", "fullScreenCmdText": "Cijeli ekran (Cmd-F)", "fullScreenCtrlText": "Cijeli ekran (Ctrl-F)", + "fullScreenText": "Puni zaslon", "gammaText": "Svjetlina(Gamma)", "highText": "Visoko", "higherText": "Više", @@ -1066,13 +1085,16 @@ "noContinuesText": "(bez nastavaka)", "noExternalStorageErrorText": "Vanjska pohrana nije pronađena", "noGameCircleText": "Greška: nisi prijavljen u GameCircle", + "noMessagesText": "Nema poruka.", "noProfilesErrorText": "Nemaš profila igrača, pa ti je samo ime '${NAME}' na raspolaganju. \nPođi pod Postavke->Profili igrača da sebi napraviš profil. ", "noScoresYetText": "Još nema rezultata.", + "noServersFoundText": "Nema nađenih servera.", "noThanksText": "Ne hvala", "noTournamentsInTestBuildText": "UPOZORENJE: Turnirski bodovi od ove test gradnje će biti ignorirani.", "noValidMapsErrorText": "Nijedna ispravna mapa nije pronađena za ovu igru.", "notEnoughPlayersRemainingText": "Nije ostalo dovoljno igrača; iziđi i započni novu igru.", "notEnoughPlayersText": "Trebaš najmanje ${COUNT} igrača da započneš ovu igru!", + "notEnoughTicketsText": "Nemaš dovoljno kupona!", "notNowText": "Ne sad", "notSignedInErrorText": "Moraš se prijaviti da uradiš ovo.", "notSignedInGooglePlayErrorText": "Moraš se ulogovati preko Google pleja da uradiš ovo.", @@ -1085,6 +1107,9 @@ "onText": "Uključeno", "oneMomentText": "Jedan trenutak...", "onslaughtRespawnText": "${PLAYER} će se ponovno pojaviti u naletu ${WAVE}", + "openMeText": "Otvori me!", + "openNowText": "Otvori sada", + "openText": "Otvori", "orText": "${A} ili ${B}", "otherText": "Drugo...", "outOfText": "(#${RANK} od ${ALL})", @@ -1390,10 +1415,15 @@ "tipText": "Savjet", "titleText": "BombSquad", "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "Nabavi tokene", + "notEnoughTokensText": "Nemas dovoljno tokena!" + }, "topFriendsText": "Prijatelji s najboljim rezultatima", "tournamentCheckingStateText": "Provjeravam stanje turnira; molim pričekaj...", "tournamentEndedText": "Ovaj turnir je završio. Novi će započeti ubrzo.", "tournamentEntryText": "Kotizacija", + "tournamentFinalStandingsText": "Finalna rijesenja", "tournamentResultsRecentText": "Nedavni Rezultati turnira", "tournamentStandingsText": "Poredak", "tournamentText": "Turnir", @@ -1637,6 +1667,7 @@ "Max number of profiles reached.": "Max broj dosegao profila.", "Maximum friend code rewards reached.": "Maksimalne nagrade od prijateljskih kodova dostignute.", "Message is too long.": "Poruka je prevelika.", + "New tournament result!": "Novi rezultat turnira!", "No servers are available. Please try again soon.": "Nema dostupnih servera. Pokušajte opet kasnije.", "Profile \"${NAME}\" upgraded successfully.": "Profil \"${NAME}\" uspjesno upgrajdovan", "Profile could not be upgraded.": "Profil se ne može ažurirati.", @@ -1873,15 +1904,15 @@ "titleText": "DarwiinRemote Copyright" }, "wiimoteListenWindow": { - "listeningText": "Tražim Wiimote-ove...", - "pressText": "Pritisni Wiimote tipke 1 i 2 istovremeno.", - "pressText2": "Na novijim Wiimote-ovima s ugrađenim Motion Plus-om, umjesto njih pritisni crvenu 'sync' tipku na poleđini." + "listeningText": "Tražim Wiimote-ove... ", + "pressText": "Pritisni Wiimote tipke 1 i 2 istovremeno. ", + "pressText2": "Na novijim Wiimote-ovima s ugrađenim Motion Plus-om, umjesto njih pritisni crvenu 'sync' tipku na poleđini. " }, "wiimoteSetupWindow": { "copyrightText": "DarwiinRemote Copyright", "listenText": "Traži", "macInstructionsText": "Provjeri da je tvoj Wii isključen, a Bluetooth uključen\nna tvome Macu, pa pritisni 'Traži'. Podrška za Wiimote-ove\nmože biti malo nestabilna, pa ćeš možda morati pokušati nekoliko puta\nprije nego što uspostaviš vezu.\n\nBluetooth bi trebao podržati do 7 povezanih uređaja,\nmada bi tvoja udaljenost mogla varirati.\n\nBombSquad podržava originalne Wiimote-ove, Nunchuk-ove,\ni Classic Controller.\nNoviji Wii Remote Plus sada radi,\nali ne s dodacima.", - "thanksText": "Hvala DarwiinRemote timu\nšto je ovo omogućio.", + "thanksText": "Hvala DarwiinRemote timu\nšto je ovo omogućio. ", "titleText": "Podešavanje Wiimote-ova" }, "winsPlayerText": "${NAME} pobjeđuje!", diff --git a/dist/ba_data/data/languages/czech.json b/dist/ba_data/data/languages/czech.json index d3a5cd7..0979ac5 100644 --- a/dist/ba_data/data/languages/czech.json +++ b/dist/ba_data/data/languages/czech.json @@ -7,7 +7,9 @@ "campaignProgressText": "Postup kampaně [Těžká]: ${PROGRESS}", "changeOncePerSeason": "Lze změnit pouze jednou za sezónu.", "changeOncePerSeasonError": "Chcete-li toto změnit znovu, musíte počkat na další sezónu (${NUM} days)", + "createAnAccountText": "Založit účet", "customName": "Vlastní jméno", + "deleteAccountText": "Smazat Účet", "googlePlayGamesAccountSwitchText": "Pokud chcete použít jiný Google účet,\npoužijte pro změnu aplikaci Google Play Hry.", "linkAccountsEnterCodeText": "Vložit kód", "linkAccountsGenerateCodeText": "Generovat kód", @@ -35,7 +37,7 @@ "signInWithTestAccountText": "Přihlásit se s testovacím účtem", "signInWithText": "Přihlásit se s ${SERVICE}", "signInWithV2InfoText": "(účet který funguje na všech platformách)", - "signInWithV2Text": "Přihlášení s BombSquad účtem", + "signInWithV2Text": "Přihlášení s ${APP_NAME} účtem", "signOutText": "Odhlásit se", "signingInText": "Přihlašuji se...", "signingOutText": "Odhlašuji se...", @@ -347,6 +349,8 @@ "allowText": "Povolit", "alreadySignedInText": "Tento účet je používán v jiném zařízení;\npřepněte prosím účet nebo v druhém\nzařízení hru zavřete, poté to zkuste znova.", "apiVersionErrorText": "Nelze načíst modul ${NAME}; je vytvořen pro API verze ${VERSION_USED}; je potřeba ${VERSION_REQUIRED}.", + "applyText": "Použít", + "areYouSureText": "Jste si jistí?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(\"Auto\" zapněte pouze když jsou připojeny sluchátka)", "headRelativeVRAudioText": "Head-Relative VR Audio", @@ -371,14 +375,23 @@ "boostText": "Zrychlit", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} je nastaven v aplikaci sám.", "buttonText": "tlačitko", - "canWeDebugText": "Chtěli byste, aby BombSquad automaticky hlásil \nchyby, pády a základní info o používání vývojáři?\n\nTato data neobsahují žádné osobní informace a napomáhají,\naby hra běžela hladce a bez chyb.", + "canWeDebugText": "Chtěli byste, aby ${APP_NAME} automaticky hlásil \nchyby, pády a základní info o používání vývojáři?\n\nTato data neobsahují žádné osobní informace a napomáhají,\naby hra běžela hladce a bez chyb.", "cancelText": "Zrušit", "cantConfigureDeviceText": "Omlouváme se, ale ${DEVICE} není nastavitelné", "challengeEndedText": "Tato výzva již skončila.", "chatMuteText": "Ztlumit Chat", "chatMutedText": "Chat ztlumen", "chatUnMuteText": "Obnovit chat", + "chests": { + "prizeOddsText": "Šance na výhru", + "reduceWaitText": "Zkrať čekání", + "slotDescriptionText": "Toto je místo pro truhlu.\n\nTruhly lze získat hraním kampaně,\numístěním v turnajích a získáním\ntrofejí.", + "slotText": "Místo pro truhlu ${NUM}", + "slotsFullWarningText": "VAROVÁNÍ: Všechna místa pro truhly jsou obsazená.\nV této hře ztrácíte možnost získat další truhlu.", + "unlocksInText": "Otevře se Za" + }, "choosingPlayerText": "", + "claimText": "Získat", "codesExplainText": "Kódy jsou zřizovány vývojářem za účelem\ndiagnózy a opravy problémů s účty.", "completeThisLevelToProceedText": "Musíte dokončit\ntento level, abyste mohli pokračovat!", "completionBonusText": "Bonus za dokončení", @@ -575,6 +588,7 @@ "disableXInputDescriptionText": "Povolí více než 4 ovladače, ale nemusí fungovat tak dobře.", "disableXInputText": "Vypnout XInput", "disabledText": "Zakázáno", + "discardText": "Zbavit se", "discordFriendsText": "Chcete najít nové lidi na hraní?\nPřipojte se k našemu Discordu a najděte nové přátele!", "discordJoinText": "Připoj se k Discordu", "doneText": "Hotovo", @@ -659,6 +673,8 @@ "errorText": "Chyba", "errorUnknownText": "neznámá chyba", "exitGameText": "Ukončit ${APP_NAME}?", + "expiredAgoText": "Vypršel před ${T}", + "expiresInText": "Vyprší za ${T}", "exportSuccessText": "„${NAME}“ úspěšně exportován.", "externalStorageText": "Externí úložiště", "failText": "Neúspěch", @@ -721,6 +737,7 @@ "copyCodeConfirmText": "Kód zkopírován do schránky", "copyCodeText": "Zkopírovat kód", "dedicatedServerInfoText": "Pro dosažení nejlepších výsledků nastavte dedikovaný server.\nZjistěte více na bombsquadgame.com/server", + "descriptionShortText": "K založení party použijte okno Klubovna.", "disconnectClientsText": "Tímto se odpojí ${COUNT} hráč/ů\nve Vaší partě. Jste si jisti?", "earnTicketsForRecommendingAmountText": "Přátelé získají ${COUNT} tiketů když zkusí tuto hru\n(a ty získáš ${YOU_COUNT} za každého, kdo to udělá)", "earnTicketsForRecommendingText": "Sdílet hru\nza kupóny zdarma...", @@ -833,6 +850,12 @@ "youHaveShortText": "Máte ${COUNT}", "youHaveText": "Máte ${COUNT} kupónů" }, + "goldPass": { + "desc1InfTokensText": "Nekonečně tokenů.", + "desc2NoAdsText": "Žádné reklamy.", + "desc3ForeverText": "Navždy.", + "goldPassText": "Gold Pass" + }, "googleMultiplayerDiscontinuedText": "Omlouvám se, služba pro více hráčů Google již není k dispozici.\nPracuji co nejrychleji na výměně.\nDo té doby zkuste jiný způsob připojení.\n- Eric", "googlePlayPurchasesNotAvailableText": "Nákupy na Google Play nejsou k dispozici.\nMožná budete muset aktualizovat Obchod Play.", "googlePlayServicesNotAvailableText": "Služby Google Play nejsou dostupné.\nNěkteré funkce mohou být zakázány.", @@ -907,6 +930,7 @@ "importText": "Importovat", "importingText": "Probíhá importování...", "inGameClippedNameText": "Ve hře bude vidět jako\n„${NAME}“", + "inboxText": "Pošta", "installDiskSpaceErrorText": "CHYBA: Není možné dokončit instalaci.\nMožná nemáte dostatek volného místa na Vašem zařízení.\nUvolněte nějaké místo a zkuste to znovu.", "internal": { "arrowsToExitListText": "stiskněte ${LEFT} nebo ${RIGHT} pro opuštění seznamu", @@ -961,12 +985,14 @@ "timeOutText": "(vyprší za ${TIME} sekund)", "touchScreenJoinWarningText": "Připojili jste se s dotykovou obrazovkou.\nJestli je toto omylem, klepněte na Menu->Opustit hru.", "touchScreenText": "Dotyková obrazovka", + "unableToCompleteTryAgainText": "Toto nebylo možné nyní dokončit.\nZkuste to prosím znovu.", "unableToResolveHostText": "Chyba: Nezdařilo se spojit s hostitelem", "unavailableNoConnectionText": "Toto je momentálně nedostupné (žádné internetové připojení?)", "vrOrientationResetCardboardText": "Použitjte pro reset orientace ve VR.\nPro hraní hry budete potřebovat externí ovladač.", "vrOrientationResetText": "VR orientace resetována.", "willTimeOutText": "(vyprší, když je neaktivní)" }, + "inventoryText": "Inventář", "jumpBoldText": "SKOK", "jumpText": "Skok", "keepText": "Zachovat", @@ -1013,8 +1039,11 @@ "seasonEndsMinutesText": "Sezóna končí za ${NUMBER} minut.", "seasonText": "Sezóna ${NUMBER}", "tournamentLeagueText": "Musíte být v lize ${NAME}, abyste se mohli zúčastnit tohoto turnaje.", - "trophyCountsResetText": "Počet pohárů se resetuje příští sezónu." + "trophyCountsResetText": "Počet pohárů se resetuje příští sezónu.", + "upToDateBonusDescriptionText": "Hráči, kteří hrají aktuální verzi této\nhry získají ${PERCENT}% bonus.", + "upToDateBonusText": "Aktualizační bonus" }, + "learnMoreText": "Zjistit Více", "levelBestScoresText": "Nejlepší skóre na ${LEVEL}", "levelBestTimesText": "Nejlepší čas na ${LEVEL}", "levelFastestTimesText": "Nejrychleji v ${LEVEL}", @@ -1060,6 +1089,8 @@ "modeArcadeText": "Arkádový mód", "modeClassicText": "Klasický mód", "modeDemoText": "Ukázkový mód", + "moreSoonText": "Další již brzy ...", + "mostDestroyedPlayerText": "Nejvíce rozdrcený hráč", "mostValuablePlayerText": "Nejcennější hráč", "mostViolatedPlayerText": "Nejvíce obětovaný hráč", "mostViolentPlayerText": "Nejnásilnější hráč", @@ -1076,6 +1107,7 @@ "nameSuicideText": "${NAME} páchá sebevraždu.", "nameText": "Jméno", "nativeText": "Nativní", + "newExclaimText": "Nově!", "newPersonalBestText": "Nový osobní rekord!", "newTestBuildAvailableText": "Novější testovací build je dostupný! (${VERSION} build ${BUILD}).\nZískejte ho na ${ADDRESS}", "newText": "Nový", @@ -1086,6 +1118,7 @@ "noContinuesText": "(bez pokračování)", "noExternalStorageErrorText": "Žádné externí úložiště nebylo na tomto zařízení nalezeno", "noGameCircleText": "Chyba: nejste přihlášeni do Game Circle", + "noMessagesText": "Žádné zprávy.", "noPluginsInstalledText": "Nenainstalovány žádné pluginy", "noProfilesErrorText": "Nemáte žádné herní profily, takže Vám bylo podstrčeno jméno '${NAME}'.\nJděte do Nastavení->Herní Profily pro vytvoření svého profilu.", "noScoresYetText": "Zatím žádné výsledky.", @@ -1095,6 +1128,7 @@ "noValidMapsErrorText": "Nebyly nalezeny žádné platné mapy pro tento typ hry.", "notEnoughPlayersRemainingText": "Zbývá nedostatečný počet hráčů; ukončete a začněte novou hru", "notEnoughPlayersText": "Potřebujete nejméně ${COUNT} hráčů pro spuštění této hry!", + "notEnoughTicketsText": "Nedostatek ticketů!", "notNowText": "Teď ne", "notSignedInErrorText": "Pro tuto akci se musíte přihlásit", "notSignedInGooglePlayErrorText": "Pro tuto akci se musíte přihlásit přes Google Play", @@ -1107,6 +1141,9 @@ "onText": "Zap", "oneMomentText": "Chvilku strpení...", "onslaughtRespawnText": "${PLAYER} se oživí ve vlně ${WAVE}", + "openMeText": "Otevři Mě!", + "openNowText": "Otevřte hned", + "openText": "Otevřít", "orText": "${A} nebo ${B}", "otherText": "Ostatní...", "outOfText": "(#${RANK} z ${ALL})", @@ -1194,6 +1231,8 @@ "punchText": "Praštit", "purchaseForText": "Koupit za ${PRICE}", "purchaseGameText": "Zakoupit hru", + "purchaseNeverAvailableText": "Bohužel, transakce nejsou dostupné na této sestavě.\nZkuste přihlásit svůj účet na jiné platformě a na ní provést nákup.", + "purchaseNotAvailableText": "Tento nákup není dostupný.", "purchasingText": "Probíhá transakce...", "quitGameText": "Ukončit ${APP_NAME}?", "quittingIn5SecondsText": "Ukončuji za 5 sekund...", @@ -1235,6 +1274,7 @@ "version_mismatch": "Neshoda verzí.\nUjistěte se, že BombSquad a BombSquad Ovladač\njsou aktualizované na poslední verzi, a zkuste to znovu." }, "removeInGameAdsText": "Odemkněte „${PRO}“ v obchodě pro odstranění reklam ve hře.", + "removeInGameAdsTokenPurchaseText": "LIMITOVANÁ NABÍDKA: Zakoupením JAKÉHOKOLI balíčku tokenů odstraníte reklamy.", "renameText": "Přejmenovat", "replayEndText": "Ukončit Záznam", "replayNameDefaultText": "Záznam Poslední Hry", @@ -1296,6 +1336,8 @@ "enterPromoCodeText": "Zadat kód", "forTestingText": "Poznámka: Tyto hodnoty sou pouze pro test. Obnoví se po restartu.", "helpTranslateText": "Jiné než anglické verze ${APP_NAME} jsou komunitně\npodporovanou záležitostí. Pokud byste chtěli přidat\nnebo opravit překlad, následujte odkaz níže. Předem děkujeme!", + "insecureConnectionsDescriptionText": "není doporučeno, ale může povolit online hru\n v zakázaných zemích nebo sítích", + "insecureConnectionsText": "Použít nezabezpečené připojení", "kickIdlePlayersText": "Vykopnout neaktivní hráče", "kidFriendlyModeText": "Dětský mód (snížené násilí, atd.)", "languageText": "Jazyk", @@ -1356,6 +1398,7 @@ }, "spaceKeyText": "mezera", "statsText": "Statistiky", + "stopRemindingMeText": "Dále Nepřipomínat", "storagePermissionAccessText": "Toto vyžaduje přístup k úložišti", "store": { "alreadyOwnText": "Už vlastníš ${NAME}!", @@ -1369,7 +1412,7 @@ "extrasText": "Bonusy", "freeBombSquadProText": "BombSquad je nyní zdarma, ale pokud jste si ho dříve zakoupili,\ndostáváte BombSquad Pro upgrade a ${COUNT} kupónů jako poděkování.\nUžijte si nové možnosti a díky za podporu!\n- Eric", "gameUpgradesText": "Vylepšení hry", - "holidaySpecialText": "Vánoční speciál", + "holidaySpecialText": "Sváteční Speciál", "howToSwitchCharactersText": "(jděte do ${SETTINGS} -> ${PLAYER_PROFILES} k použití nebo úpravě postav)", "howToUseIconsText": "(vytvořte si globální herní účet (v okně účtů) abyste je mohli použít)", "howToUseMapsText": "(použijte tyto mapy ve vlastních týmových/všichni proti všem seznamech)", @@ -1417,6 +1460,7 @@ "testBuildValidatedText": "Testovací build Ověřen; Užívejte!", "thankYouText": "Děkujeme Vám za podporu! Užijte si hru!!", "threeKillText": "TŘI ZABITÍ!!!", + "ticketsDescriptionText": "Kupóny mohou být použity na odemykání postav,\nmap, miniher a mnoho dalšího v obchodě.\n\nKupóny lze nalézt v truhlách vyhraných díky\nkampaním, turnajům a trofejím.", "timeBonusText": "Časový bonus", "timeElapsedText": "Uplynulý čas", "timeExpiredText": "Čas vypršel", @@ -1427,10 +1471,24 @@ "tipText": "Tip", "titleText": "BombSquad", "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "Získat Tokeny", + "notEnoughTokensText": "Nedostatek tokenů!", + "numTokensText": "${COUNT} Tokenů", + "openNowDescriptionText": "Máte dostatek tokenů na \nOtevření nyní - Netřeba\nčekat.", + "shinyNewCurrencyText": "Nová blištivá měna BombSquadu.", + "tokenPack1Text": "Malý Tokenový Balíček", + "tokenPack2Text": "Střední Tokenový Balíček", + "tokenPack3Text": "Velký Tokenový Balíček", + "tokenPack4Text": "Obrovský Tokenový Balíček", + "tokensDescriptionText": "Tokeny se používají na urychlení odemykání\ntruhel a na další funkce hry a účtu.\n\nTokeny můžete vyhrát ve hře nebo si je zakoupit\nv balíčcích. Nebo si můžete koupit Gold Pass pro\nnekonečný počet tokenů a nemusíte se o ně starat.", + "youHaveGoldPassText": "Vlastníte Gold Pass.\nVšechny nákupy za tokeny jsou zdarma.\nUžívejte!" + }, "topFriendsText": "Nejlepší přátelé", "tournamentCheckingStateText": "Zjišťuji stav turnaje; chvilku strpení...", "tournamentEndedText": "Tento turnaj již skončil. Brzy ale začne další.", "tournamentEntryText": "Vstup do turnaje", + "tournamentFinalStandingsText": "Konečné umístění", "tournamentResultsRecentText": "Výsledky předchozích turnajů", "tournamentStandingsText": "Pořadí v turnaji", "tournamentText": "Turnaj", @@ -1486,6 +1544,18 @@ "Uber Onslaught": "Útok - Megatěžké", "Uber Runaround": "Obrana - Megatěžká" }, + "displayItemNames": { + "${C} Tickets": "${C} Ticketů", + "${C} Tokens": "${C} Tokenů", + "Chest": "Truhla", + "L1 Chest": "Truhla L1", + "L2 Chest": "Truhla L2", + "L3 Chest": "Truhla L3", + "L4 Chest": "Truhla L4", + "L5 Chest": "Truhla L5", + "L6 Chest": "Truhla L6", + "Unknown Chest": "Neznámá truhla" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Buďte vyvoleným dostatečně dlouho, abyste vyhráli.\nZabijte vyvoleného, abyste se jím stali.", "Bomb as many targets as you can.": "Odpalte tolik cílů, kolik dokážete.", @@ -1590,6 +1660,7 @@ "Korean": "Korejština", "Malay": "Malajština", "Persian": "Perština", + "PirateSpeak": "Řeč pirátů", "Polish": "Polština", "Portuguese": "Portugalština", "Romanian": "Rumunština", @@ -1661,6 +1732,7 @@ "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Detekováno podvádění; skóre a ceny pozastaveny na ${COUNT} dní", "Could not establish a secure connection.": "Nelze navázat bezpečné připojení.", "Daily maximum reached.": "Dosaženo denní maximum.", + "Daily sign-in reward": "Denní odměna za přihlášení", "Entering tournament...": "Vstupujete do turnaje...", "Invalid code.": "Neplatný kód.", "Invalid payment; purchase canceled.": "Neplatná platební maetoda; platba zrušena.", @@ -1670,11 +1742,14 @@ "Item unlocked!": "Položka odemčena!", "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "PROPOJENÍ ZAMÍTNUTO. ${ACCOUNT} obsahuje\nznačná data, která by byla ZCELA ZTRACENA.\nPokud chcete, můžete připojit účet v opačném\npořadí (a ztratit tak data TOHOTO účtu)", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "Chcete spojit účet ${ACCOUNT} s tímto účtem?\nVšechna data na účtě ${ACCOUNT} budou smazána.\nTuto akci nelze navrátit zpět. Jste si jisti?", + "Longer streaks lead to better rewards.": "Delší série přihláśení vede k lepším odměnám.", "Max number of playlists reached.": "Dosazano maximalniho počtu playlistů", "Max number of profiles reached.": "Dosaženo maximalního počtu profilů", "Maximum friend code rewards reached.": "Dosaženo maximum odměn za kódy přátel.", "Message is too long.": "Zpráva je příliš dlouhá.", + "New tournament result!": "Nový výsledek turnaje!", "No servers are available. Please try again soon.": "Žádné servery nejsou nyní dostupné. Zkuste to prosím později.", + "No slots available. Free a slot and try again.": "Všechna místa obsazená. Uvolněte místo a zkuste to znovu.", "Profile \"${NAME}\" upgraded successfully.": "Profil „${NAME}“ byl úspěšně povýšen.", "Profile could not be upgraded.": "Profil nelze povýšit.", "Purchase successful!": "Nákup úspěšný!", @@ -1684,7 +1759,9 @@ "Sorry, this code has already been used.": "Omlouváme se, ale tento kód již byl použit.", "Sorry, this code has expired.": "Omlouváme se, ale platnost tohoto kódu vypršela.", "Sorry, this code only works for new accounts.": "Omlouváme se, ale tento kód je platný pouze pro nové účty.", + "Sorry, this has expired.": "Promiň, vypršela platnost.", "Still searching for nearby servers; please try again soon.": "Stále se vyhledávají lokální servery; zkuste to prosím později.", + "Streak: ${NUM} days": "Série: ${NUM} dní", "Temporarily unavailable; please try again later.": "Dočasně nedostupné; zkuste to prosím později.", "The tournament ended before you finished.": "Turnaj skončil než jste ho stihli dokončit.", "This account cannot be unlinked for ${NUM} days.": "Tento účet nelze odpojit po dobu ${NUM} dnů.", @@ -1695,19 +1772,28 @@ "Tournaments require ${VERSION} or newer": "Turnaje vyžadují ${VERSION} nebo novější", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "Odpojit ${ACCOUNT} od tohoto účtu?\nVeškerá data na účtě ${ACCOUNT} se resetují.\n(výjimka jsou v některých případech Trofeje)", "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "VAROVÁNÍ: Byla proti Vám vznesena obvinění z podvádění ve hře.\nÚčty, o kterých se prokáže, že používají hacky, budou zabanovány. Hrajte prosím férově.", + "Wait reduced!": "Čekání zkráceno!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "Upozornění: Tato verze hry je omezená starými daty účtu; některé věcy mohou chybět nebo jsou zastaralé.\nProsím aktualizujte si hru na nejnovější verzi,aby jste viděli nejnovější data na svém účtu.", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "Přejete si propojit Váš účet zařízení k tomuto?\n\nÚčet vašeho zařízení je ${ACCOUNT1}\nTento účet je ${ACCOUNT2}\n\nTato akce Vám umožní zachovat si stávající postup.\nVarování: Nelze vrátit zpět!", "You already own this!": "Toto již vlastníte!", "You can join in ${COUNT} seconds.": "Připojit se můžete až za ${COUNT} sek.", "You don't have enough tickets for this!": "Na toto nemáte dostatek kupónů!", "You don't own that.": "Toto nevlastníte.", "You got ${COUNT} tickets!": "Získali jste ${COUNT} kupónů!", + "You got ${COUNT} tokens!": "Máš ${COUNT} tokenů!", "You got a ${ITEM}!": "Získali jste ${ITEM}!", + "You got a chest!": "Získal jste truhlu!", + "You got an achievement reward!": "Dostali jste odměnu za trofej!", "You have been promoted to a new league; congratulations!": "Byli jste povýšeni do další ligy; gratulujeme!", + "You lost a chest! (All your chest slots were full)": "Ztratil jste truhlu! (Všechna místa byla obsazena)", + "You must update the app to view this.": "Pro zobrazení aktualizujte aplikaci.", "You must update to a newer version of the app to do this.": "Musíte aktualizovat na novější verzi aplikace k udělání tohoto.", "You must update to the newest version of the game to do this.": "Vaše verze hry tuto akci nepodporuje, aktualizujte hru na nejnovější verzi.", "You must wait a few seconds before entering a new code.": "Před zadáním nového kódu počkejte pár sekund.", + "You placed #${RANK} in a tournament!": "V turnaji jste byl #${RANK}!", "You ranked #${RANK} in the last tournament. Thanks for playing!": "V posledním turnaji jste se umístili na #${RANK} pozici. Děkujeme za hraní!", "Your account was rejected. Are you signed in?": "Váš účet byl odmítnut. Jste přihlášeni?", + "Your ad views are not registering. Ad options will be limited for a while.": "Nezaznamenali jsme sledování reklamy. Nastavení reklamy budou chvíli omezené.", "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Vaše kopie hry byla pozměněna.\nVraťte prosím všechny změny a zkuste to znovu.", "Your friend code was used by ${ACCOUNT}": "Váš kód pro přátele byl použit hráčem ${ACCOUNT}" }, @@ -1859,6 +1945,7 @@ "twoKillText": "DVĚ ZABITÍ!!!", "uiScaleText": "Velikost UI", "unavailableText": "Nedostupné", + "unclaimedPrizesText": "Máte Nevyzvednuté Odměny!", "unconfiguredControllerDetectedText": "Zaznamenán nenakonfigurovaný ovladač:", "unlockThisInTheStoreText": "Toto musí být nejdříve odemknuto v obchodě.", "unlockThisProfilesText": "Pro vytvoření více než ${NUM} profilů, potřebujete:", @@ -1877,6 +1964,7 @@ "usingItunesText": "Používám aplikaci hudby pro soundtrack...", "usingItunesTurnRepeatAndShuffleOnText": "Ujistěte se prosím, že je zaplý shuffle, a opakovat VŠE v iTunes,", "v2AccountLinkingInfoText": "Pro propojení V2 účtů stiskněte tlačítko „Spravovat účet“", + "v2AccountRequiredText": "Toto vyžaduje V2 účet. Upgradujte svůj účet a zkuste to znovu.", "validatingTestBuildText": "Ověřuji testovací build...", "viaText": "skrze", "victoryText": "Vítězství!", @@ -1943,5 +2031,6 @@ }, "yesAllowText": "Ano, povolit!", "yourBestScoresText": "Vaše nejlepší skóre", - "yourBestTimesText": "Váš nejlepší čas" + "yourBestTimesText": "Váš nejlepší čas", + "yourPrizeText": "Vaše cena:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/dutch.json b/dist/ba_data/data/languages/dutch.json index d7481a5..e63784a 100644 --- a/dist/ba_data/data/languages/dutch.json +++ b/dist/ba_data/data/languages/dutch.json @@ -7,7 +7,9 @@ "campaignProgressText": "Campagne Voortgang [Moeilijk]: ${PROGRESS}", "changeOncePerSeason": "U kunt dit maar een keer per seizoen wijzigen.", "changeOncePerSeasonError": "U moet wachten tot het volgende seizoen om dit te veranderen (${NUM} dagen)", + "createAnAccountText": "Maak een account", "customName": "Aangepaste naam", + "deleteAccountText": "Verwijder Account", "deviceSpecificAccountText": "U gebruikt nu het apparaat-specifieke account: ${NAME}", "googlePlayGamesAccountSwitchText": "Als je een ander Google-account \nwilt gebruiken, gebruik dan de Google Play Games-app om over te schakelen.", "linkAccountsEnterCodeText": "Voer Code In", @@ -26,16 +28,17 @@ "setAccountName": "Stel account naam in", "setAccountNameDesc": "Selecteer de naam om weer te geven voor uw account.\nU kan de naam gebruiken van een van de verbonden accounts\nof maak een unieke naam aan.", "signInInfoText": "Log in om tickets te verzamelen, online te concurreren,\nen om je voortgang te delen tussen apparaten.", - "signInText": "Log In", + "signInText": "Inloggen", + "signInWithAnEmailAddressText": "Inloggen met e-mailadres", "signInWithDeviceInfoText": "(een automatisch account is alleen beschikbaar op dit apparaat)", - "signInWithDeviceText": "Log in met apparaat account", + "signInWithDeviceText": "Inloggen met apparaat account", "signInWithGameCircleText": "Log in met Game Circle", "signInWithGooglePlayText": "Log in met Google Play", "signInWithTestAccountInfoText": "(oudere account type; gebruik device account gaat door)", "signInWithTestAccountText": "Log in met test account", - "signInWithText": "Log in met ${SERVICE}", + "signInWithText": "Inloggen met ${SERVICE}", "signInWithV2InfoText": "(een account dat op alle platforms werkt)", - "signInWithV2Text": "Inloggen met een BombSquad rekening", + "signInWithV2Text": "Inloggen met een ${APP_NAME} account", "signOutText": "Log Uit", "signingInText": "Inloggen...", "signingOutText": "Uitloggen...", @@ -347,6 +350,8 @@ "allowText": "Toestaan", "alreadySignedInText": "Uw account is al ingelogd op een ander apparaat;\nVerander van account of sluit het spel op uw andere\napparaten en probeer het opnieuw.", "apiVersionErrorText": "Kan module ${NAME} niet laden; deze gebruikt api-versie ${VERSION_USED}; benodigd is ${VERSION_REQUIRED}.", + "applyText": "Toepassen", + "areYouSureText": "Weet je het zeker?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(\"Auto\" activeert dit alleen als een koptelefoon is aangesloten)", "headRelativeVRAudioText": "Hoofd-Relatieve VR Geluid", @@ -371,14 +376,23 @@ "boostText": "Boost", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} is geconfigureerd in de app zelf.", "buttonText": "knop", - "canWeDebugText": "Wilt u dat BombSquad automatisch bugs, crashes,\nen basisgebruik info naar de ontwikkelaar rapporteert?\n\nDeze gegevens bevatten geen persoonlijke informatie\nen helpen om het spel soepel en bug-vrij te houden.", + "canWeDebugText": "Wilt u dat ${APP_NAME} automatisch bugs, crashes,\nen basisgebruik info naar de ontwikkelaar rapporteert?\n\nDeze gegevens bevatten geen persoonlijke informatie\nen helpen om het spel soepel en bug-vrij te houden.", "cancelText": "Annuleer", "cantConfigureDeviceText": "Sorry, $ {DEVICE} niet configureerbaar.", "challengeEndedText": "Deze uitdaging is beëindigd.", "chatMuteText": "Chat negeren", "chatMutedText": "berichten gedempt", "chatUnMuteText": "maak de chat ongedaan", + "chests": { + "prizeOddsText": "Prijs Kansen", + "reduceWaitText": "Verminder Wachttijd", + "slotDescriptionText": "Hier is plek voor een schatkist.\n\nVerdien schatkisten door campagnelevels te spelen,\nje te plaatsen in toernooien en met het voltooien\nvan prestaties.", + "slotText": "Schatkist plaats ${NUM}", + "slotsFullWarningText": "WAARSCHUWING: Al je schatkist plaatsen zijn vol.\nElke schatkist die je dit spel nog verdient, gaat verloren.", + "unlocksInText": "Ontgrendeld Over" + }, "choosingPlayerText": "", + "claimText": "Claim", "codesExplainText": "Codes worden door de \nontwikkelaar verstrekt om accountproblemen te diagnosticeren en te corrigeren.", "completeThisLevelToProceedText": "U moet dit level voltooien\nom door te gaan!", "completionBonusText": "Voltooiing Bonus", @@ -574,6 +588,7 @@ "demoText": "demonstratie", "denyText": "Weigeren", "deprecatedText": "Verouderd", + "descriptionText": "Beschrijving", "desktopResText": "Bureaublad Resolutie", "deviceAccountUpgradeText": "Waarschuwing: u bent ingelogd met een apparaataccount (${NAME}). \nApparaataccounts worden in een toekomstige update verwijderd. \nUpgrade naar een V2-account als u uw voortgang wilt \nbehouden.", "difficultyEasyText": "Makkelijk", @@ -585,6 +600,7 @@ "disableXInputDescriptionText": "Staat meer dan 4 controllers toe, maar werkt misschien niet helemaal goed.", "disableXInputText": "Schakel XInput uit", "disabledText": "Gehandicapt", + "discardText": "Gooi weg", "discordFriendsText": "Wil je op zoek naar nieuwe mensen om mee te spelen? \nSluit je aan bij onze Discord en vind nieuwe vrienden!", "discordJoinText": "Sluit je aan bij de onenigheid", "doneText": "Klaar", @@ -621,6 +637,7 @@ "localProfileText": "(lokaal profiel)", "nameDescriptionText": "Speler Naam", "nameText": "Naam", + "profileAlreadyExistsText": "Een profiel met dat naam bestaat al.", "randomText": "willekeurig", "titleEditText": "Profiel Aanpassen", "titleNewText": "Nieuw Profiel", @@ -672,6 +689,8 @@ "errorText": "Fout", "errorUnknownText": "onbekende fout", "exitGameText": "${APP_NAME} Verlaten?", + "expiredAgoText": "${T} geleden verlopen", + "expiresInText": "Verloopt over ${T}", "exportSuccessText": "'${NAME}' geëxporteerd.", "externalStorageText": "Externe Opslag", "failText": "Faal", @@ -708,6 +727,8 @@ "editText": "Bewerk\nSpeellijst", "gameListText": "Spellen Lijst", "newText": "Nieuwe\nSpeellijst", + "pointsToWinText": "Punten om te winnen", + "seriesLengthText": "Series lengte", "showTutorialText": "Uitleg Weergeven", "shuffleGameOrderText": "Willekeurige Spel Volgorde", "titleText": "Pas ${TYPE} Speellijst aan" @@ -736,6 +757,7 @@ "copyCodeConfirmText": "Code gekopieerd naar klembord", "copyCodeText": "Kopieer Code", "dedicatedServerInfoText": "Voor het beste resultaat, zet dan een dedicated server op. Zie bombsquadgame.com/server om te leren hoe.", + "descriptionShortText": "Gebruik het Verzamel venster om een partij samen te stellen", "disconnectClientsText": "Hierdoor verbreekt de verbinding met ${COUNT} spelers(s)\nvan uw partij. Weet u het zeker?", "earnTicketsForRecommendingAmountText": "Vrienden ontvangen ${COUNT} tickets als ze het spel proberen\n(en jij ontvangt ${YOU_COUNT} voor elke vriend die dit doet)", "earnTicketsForRecommendingText": "Deel de game \nVoor gratis tickets...", @@ -748,10 +770,10 @@ "friendHasSentPromoCodeText": "${COUNT} ${APP_NAME} tickets van ${NAME}", "friendPromoCodeAwardText": "Je krijgt ${COUNT} tickets elke keer het is gebruikt.", "friendPromoCodeExpireText": "Deze code zal vervallen in ${EXPIRE_HOURS} uren en werkt alleen met nieuwe spelers.", - "friendPromoCodeInstructionsText": "Om het te gebruiken, open je ${APP_NAME} en ga je naar 'Instellingen-> Geavanceerd-> Voer code in'.\nZie bombsquadgame.com voor downloadlinks voor alle ondersteunde platforms.", + "friendPromoCodeInstructionsText": "Om het te gebruiken, open je ${APP_NAME} en ga je naar 'Instellingen-> Geavanceerd-> Stuur info'.\nZie bombsquadgame.com voor downloadlinks voor alle ondersteunde platforms.", "friendPromoCodeRedeemLongText": "Het kan ingewisseld worden voor ${COUNT} gratis tickets met tot en met ${MAX_USES} mensen.", "friendPromoCodeRedeemShortText": "Het kan ingewisseld worden voor ${COUNT} in het spel", - "friendPromoCodeWhereToEnterText": "(in \"Instellingen-> Geavanceerd-> Voer code in\")", + "friendPromoCodeWhereToEnterText": "(in \"Instellingen-> Geavanceerd-> Stuur info\")", "getFriendInviteCodeText": "Krijg een uitnodigingscode", "googlePlayDescriptionText": "Nodig Google Play spelers uit voor uw partij:", "googlePlayInviteText": "Uitnodigen", @@ -857,6 +879,12 @@ "youHaveShortText": "Je hebt ${COUNT}", "youHaveText": "U heeft ${COUNT} tickets" }, + "goldPass": { + "desc1InfTokensText": "Oneindig tokens.", + "desc2NoAdsText": "Geen reclame.", + "desc3ForeverText": "Voor altijd.", + "goldPassText": "Goud pas" + }, "googleMultiplayerDiscontinuedText": "Sorry, de Google Play multi-player functie is nu even niet beschikbaar. \nIk werk hard aan een vervanger. \nProbeer nu alsjeblieft een andere connectie mogelijkheid.\n-Eric", "googlePlayPurchasesNotAvailableText": "Google Play-aankopen zijn niet beschikbaar. \nMogelijk moet u uw winkel-app updaten.", "googlePlayServicesNotAvailableText": "Google Play-services zijn niet beschikbaar. \nSommige app-functionaliteit is mogelijk uitgeschakeld.", @@ -882,7 +910,7 @@ "visualsText": "Visuele" }, "helpWindow": { - "bombInfoText": "- Bom -\nSterker dan slagen, maar kan\nresulteren in ernstige zelfverwonding.\nVoor het beste resultaat, gooi richting\nvijand voordat lont op raakt.", + "bombInfoText": "- Bom -\nSterker dan slaan, maar kan\nresulteren in ernstige zelfverwonding.\nVoor het beste resultaat, gooi richting\nvijand voordat de lont op raakt.", "canHelpText": "${APP_NAME} kan helpen.", "controllersInfoText": "U kan ${APP_NAME} spelen met vrienden via een netwerk, of u\nkan het allemaal op hetzelfde apparaat spelen als u genoeg controllers hebt.\n${APP_NAME} ondersteunt er een verscheidenheid van; u kunt zelfs uw telefoons\nals controller gebruiken met de gratis '${REMOTE_APP_NAME}' app.\nZie Instellingen->Controllers voor meer info.", "controllersInfoTextFantasia": "Een speler kan de afstandbediening gebruiken als controller,\nmaar gamepads zijn sterk aanbevolen. Je kunt ook mobiele-apparaten\ngebruiken als controllers via de gratis 'Bombsquad Remote' app.\nZie 'Controllers' onder 'Instellingen' voor meer info.", @@ -898,7 +926,7 @@ "friendsText": "Vrienden", "jumpInfoText": "- Springen -\nSpring over kleine openingen,\nom dingen hoger te gooien, en om\ngevoelens van vreugde uit te drukken.", "orPunchingSomethingText": "Of iets slaan, van een klif gooien, en op de weg naar beneden opblazen met een kleverige bom.", - "pickUpInfoText": "- Op Pakken -\nPak vlaggen, vijanden, of iets\nanders niet vastgeschroefd aan de\ngrond. Druk opnieuw om te gooien.", + "pickUpInfoText": "- Op Pakken -\nPak vlaggen, vijanden, of iets\nanders dat niet vast zit aan de\ngrond. Druk opnieuw om te gooien.", "powerupBombDescriptionText": "Laat u drie bommen opzwepen\nachter elkaar in plaats van maar een.", "powerupBombNameText": "Drievoudige-Bommen", "powerupCurseDescriptionText": "Waarschijnlijk wilt u deze te vermijden.\n  ...of toch niet?", @@ -934,6 +962,7 @@ "importText": "Importeer", "importingText": "Aan het importeren...", "inGameClippedNameText": "zal in-game worden\n\"${NAME}\"", + "inboxText": "Inbox", "installDiskSpaceErrorText": "FOUT: Niet in staat om de installatie te voltooien.\nHet kan zijn dat er gaan ruimte meer is op uw apparaat.\nMaak wat vrij en probeer opnieuw.", "internal": { "arrowsToExitListText": "druk ${LEFT} of ${RIGHT} om de lijst te verlaten", @@ -990,12 +1019,14 @@ "touchScreenJoinWarningText": "U doet mee met een aanraakscherm.\nAls dit een vergissing was, druk er mee op 'Menu->Verlaat Spel'.", "touchScreenText": "TouchScreen", "trialText": "proefperiode", + "unableToCompleteTryAgainText": "Voltooien op dit moment mislukt.\nProbeer het later nog eens.", "unableToResolveHostText": "Error: kan de host niet resolven.", "unavailableNoConnectionText": "Dit is momenteel niet beschikbaar (geen internet verbinding?)", "vrOrientationResetCardboardText": "Hiermee reset je de VR oriëntatie.\nOm het spel te spelen heb je een externe controller nodig.", "vrOrientationResetText": "VR oriëntatie reset.", "willTimeOutText": "(totdat u inactief bent)" }, + "inventoryText": "Inventaris", "jumpBoldText": "SPRING", "jumpText": "Spring", "keepText": "houd", @@ -1042,8 +1073,11 @@ "seasonEndsMinutesText": "Seizoen eindigt in ${NUMBER} minuten.", "seasonText": "Seizoen ${NUMBER}", "tournamentLeagueText": "Haal de ${NAME} competitie om aan dit toernooi mee te doen.", - "trophyCountsResetText": "Trofee telling reset in het volgende seizoen." + "trophyCountsResetText": "Trofee telling reset in het volgende seizoen.", + "upToDateBonusDescriptionText": "Spelers met een recente versie van het\nspel krijgen hier een ${PERCENT}% bonus.", + "upToDateBonusText": "Up-To-Date Bonus" }, + "learnMoreText": "Meer informatie", "levelBestScoresText": "Beste scores voor ${LEVEL}", "levelBestTimesText": "Beste tijden voor ${LEVEL}", "levelFastestTimesText": "Snelste tijden in ${LEVEL}", @@ -1090,6 +1124,8 @@ "modeArcadeText": "Speelhal Modus", "modeClassicText": "Klassieke Modus", "modeDemoText": "Demo Modus", + "moreSoonText": "Binnenkort meer...", + "mostDestroyedPlayerText": "Meest Vernietigde Speler", "mostValuablePlayerText": "Meest Waardevolle Speler", "mostViolatedPlayerText": "Meest Geschonden Speler", "mostViolentPlayerText": "Meest Gewelddadige Speler", @@ -1106,6 +1142,7 @@ "nameSuicideText": "${NAME} pleegde zelfmoord.", "nameText": "Naam", "nativeText": "van apparaat", + "newExclaimText": "Nieuw!", "newPersonalBestText": "Nieuw persoonlijk record!", "newTestBuildAvailableText": "Er is een nieuwere testversie beschikbaar! (${VERSION} build ${BUILD}).\nDownload hier ${ADDRESS}", "newText": "Nieuw", @@ -1117,6 +1154,7 @@ "noExternalStorageErrorText": "Geen externe opslag gevonden op dit apparaat", "noGameCircleText": "Fout: niet aangemeld bij GameCircle", "noJoinCoopMidwayText": "Je kan niet halverwegen inspringen bij coöperatieve spellen.", + "noMessagesText": "Geen berichten.", "noPluginsInstalledText": "Geen plug-ins geïnstalleerd", "noProfilesErrorText": "U heeeft geen speler profielen, dus zit u vast aan '${NAME}'.\nGa naar Instellingen->Speler Profielen om een profiel te maken voor uzelf.", "noScoresYetText": "Nog geen scores.", @@ -1126,6 +1164,7 @@ "noValidMapsErrorText": "Geen geldige gebieden gevonden voor dit speltype.", "notEnoughPlayersRemainingText": "Niet genoeg spelers over; stop en start een nieuw spel.", "notEnoughPlayersText": "U heeft minstens ${COUNT} spelers nodig om dit spel te starten!", + "notEnoughTicketsText": "Onvoldoende tickets!", "notNowText": "Niet Nu", "notSignedInErrorText": "Je moet inloggen om dit te doen.", "notSignedInGooglePlayErrorText": "Je moet ingelogd zijn met Google Play om dit te doen.", @@ -1138,6 +1177,9 @@ "onText": "Aan", "oneMomentText": "Een Moment..", "onslaughtRespawnText": "${PLAYER} zal respawnen in golf ${WAVE}", + "openMeText": "Maak Mij Open!", + "openNowText": "Nu Openen", + "openText": "Openen", "orText": "${A} of ${B}", "otherText": "Andere ...", "outOfText": "(#${RANK} van de ${ALL})", @@ -1231,6 +1273,8 @@ "punchText": "Slaan", "purchaseForText": "Koop voor ${PRICE}", "purchaseGameText": "Koop Spel", + "purchaseNeverAvailableText": "Sorry, aankopen zijn niet beschikbaar voor deze build.\nProbeer in te loggen op uw account op een ander platform en daar aankopen te doen.", + "purchaseNotAvailableText": "Deze aankoop is niet beschikbaar.", "purchasingText": "Aanschaffen...", "quitGameText": "${APP_NAME} Verlaten?", "quittingIn5SecondsText": "Sluiten in 5 seconden...", @@ -1273,6 +1317,7 @@ "version_mismatch": "Versie ongelijk.\nZorg er voor dat BombSquad en BombSquad Afstandsbediening\nde nieuwste versie zijn en probeer het opnieuw." }, "removeInGameAdsText": "Koop \"${PRO}\" in de winkel om de in-game advertenties te verwijderen.", + "removeInGameAdsTokenPurchaseText": "TIJDELIJK AANBOD: Koop een willekeurig token paket om de in-game advertenties te verwijderen.", "renameText": "Hernoemen", "replayEndText": "Stop Herhaling", "replayNameDefaultText": "Herhaling Laatste Spel", @@ -1307,6 +1352,7 @@ }, "scoreWasText": "(was ${COUNT})", "selectText": "Selecteren", + "sendInfoDescriptionText": "Stuurt account en app status info naar de developer. \nVergeet niet je naam of reden voor het sturen.", "seriesWinLine1PlayerText": "WINT DE", "seriesWinLine1TeamText": "WINT DE", "seriesWinLine1Text": "WINT DE", @@ -1323,9 +1369,10 @@ }, "settingsWindowAdvanced": { "alwaysUseInternalKeyboardDescriptionText": "(een simpele, controller-vriendelijke toetsenbord op het scherm voor tekstbewerking)", - "alwaysUseInternalKeyboardText": "Gebruik altijd Interne Toetsenbord", + "alwaysUseInternalKeyboardText": "Gebruik altijd interne toetsenbord", "benchmarksText": "Maatstaven en Stress-Testen", - "disableCameraGyroscopeMotionText": "Schakel de Camera Gyroscoop beweging uit", + "devToolsText": "Dev Tools", + "disableCameraGyroscopeMotionText": "Schakel de camera gyroscoop beweging uit", "disableCameraShakeText": "Schakel schuddende camera uit", "disableThisNotice": "(U kunt deze melding uitschakelen in de geavanceerde instellingen)", "enablePackageModsDescriptionText": "(Geeft extra aanpassingsmogelijkheden maar deactiveert net-spel)", @@ -1334,16 +1381,21 @@ "forTestingText": "Let op: deze waarden zijn alleen voor testen en zullen verloren gaan als de app gesloten wordt.", "helpTranslateText": "${APP_NAME}'s niet-Engelse vertalingen is een gezamenlijke\ninspanning van de gemeenschap. Als u daar aan wilt bijdragen of een vertaling\nwilt corrigeren, klik dan op de link hieronder. Bij voorbaat dank!", "helpTranslateTextScale": 1.0, - "kickIdlePlayersText": "Verstoot Afwezige Spelers", + "insecureConnectionsDescriptionText": "niet aanbevolen, maar zou online spelen kunnen toestaan\nvanuit beperkte landen en netwerken", + "insecureConnectionsText": "Gebruik onveilige connecties", + "kickIdlePlayersText": "Verstoot afwezige spelers", "kidFriendlyModeText": "Kind Vriendelijke Modus (minder geweld, etc.)", "languageText": "Taal", "languageTextScale": 1.0, "moddingGuideText": "Aanpasgids", + "moddingToolsText": "Modding Tools", "mustRestartText": "U moet het spel herstarten voordat dit effect heeft.", "netTestingText": "Netwerk Testen", "resetText": "Reset", + "sendInfoText": "Stuur Informatie", "showBombTrajectoriesText": "Baan van de bom weergeven", - "showDemosWhenIdleText": "Toon demo's wanneer deze niet actief zijn", + "showDemosWhenIdleText": "Toon demo's wanneer je inactief gaat", + "showDeprecatedLoginTypesText": "Laat vervallen login types zien", "showDevConsoleButtonText": "Toon dev-consoleknop", "showInGamePingText": "Toon in-game ping", "showPlayerNamesText": "Toon Namen Spelers", @@ -1354,7 +1406,7 @@ "translationFetchingStatusText": "vertaalstatus controleren...", "translationInformMe": "Meld het wanneer mijn taal updates nodig heeft.", "translationNoUpdateNeededText": "De huidige taal is up to date; woohoo!", - "translationUpdateNeededText": "** de huidige taal heeft updates nodig!! **", + "translationUpdateNeededText": "** De huidige taal heeft updates nodig!! **", "vrTestingText": "VR Testen" }, "shareText": "Deel", @@ -1364,6 +1416,9 @@ "signInWithGameCenterText": "Om een Game Center account te gebruiken,\nlogt u in bij de Game Center app.", "singleGamePlaylistNameText": "Alleen ${GAME}", "singlePlayerCountText": "1 speler", + "sizeLargeText": "Groot", + "sizeMediumText": "Medium", + "sizeSmallText": "Klein", "soloNameFilterText": "Solo ${NAME}", "soundtrackTypeNames": { "CharSelect": "Karakter selectie", @@ -1389,6 +1444,7 @@ }, "spaceKeyText": "spatie", "statsText": "stats", + "stopRemindingMeText": "Niet Meer Herinneren", "storagePermissionAccessText": "Dit vereist toegang tot opslag", "store": { "alreadyOwnText": "U bent al de eigenaar van ${NAME}!", @@ -1452,6 +1508,7 @@ "testBuildValidatedText": "Test Versie Gevalideerd; Veel Plezier!", "thankYouText": "Bedankt voor uw ondersteuning! Veel plezier met het spel!!", "threeKillText": "DRIEDUBBELE DOOD!!", + "ticketsDescriptionText": "Tickets kunnen worden gebruikt om in de winkel karakters, \nspeelvelden, mini-spellen en meer beschikbaar te maken.\n\nTickets kunnen in schatkisten worden gevonden,\ndie je kan winnen in campagnes, toernooien en prestaties.", "timeBonusText": "Tijd Bonus", "timeElapsedText": "Tijd Verstreken", "timeExpiredText": "Tijd Verstreken", @@ -1462,10 +1519,24 @@ "tipText": "Tip", "titleText": "BombSquad", "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "Krijg Tokens", + "notEnoughTokensText": "Niet genoeg tokens!", + "numTokensText": "${COUNT} Tokens", + "openNowDescriptionText": "Je hebt voldoende tokens\nom nu te openen - je hoeft\nNiet te wachten.", + "shinyNewCurrencyText": "BombSquad's glimmende nieuwe valuta.", + "tokenPack1Text": "Klein Token Pakje", + "tokenPack2Text": "Middelgroot Token Pakje", + "tokenPack3Text": "Grote Token Pak", + "tokenPack4Text": "Jumbo Token Pak", + "tokensDescriptionText": "Tokens worden gebruikt om schatkisten sneller te openen\nen voor andere spel- en account opties.\n\nJe kan tokens winnen in het spel of kopen\nin pakketten. Of koop een Gouden Pas voor een oneindig\naantal tokens en om nooit meer van ze te horen.", + "youHaveGoldPassText": "Je hebt een Gouden Pas.\nAlle token aankopen zijn gratis.\nGeniet!" + }, "topFriendsText": "Top Vrienden", "tournamentCheckingStateText": "Toernooi status nakijken; even geduld aub...", "tournamentEndedText": "Dit toernooi is beëindigd. Er zal snel een nieuwe beginnen.", "tournamentEntryText": "Toernooi Inschrijving", + "tournamentFinalStandingsText": "Eindstand", "tournamentResultsRecentText": "Recente Toernooi Uitslagen", "tournamentStandingsText": "Toernooi Stand", "tournamentText": "Toernooi", @@ -1539,6 +1610,18 @@ "Uber Onslaught": "Uber Afslachting", "Uber Runaround": "Uber Omlopen" }, + "displayItemNames": { + "${C} Tickets": "${C} Tickets", + "${C} Tokens": "${C} Tokens", + "Chest": "Schatkist", + "L1 Chest": "L1 Schatkist", + "L2 Chest": "L2 Schatkist", + "L3 Chest": "L3 Schatkist", + "L4 Chest": "L4 Schatkist", + "L5 Chest": "L5 Schatkist", + "L6 Chest": "L6 Schatkist", + "Unknown Chest": "Onbekende Schatkist" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Ben de uitverkorene voor een bepaalde tijd om te winnen.\nDood de uitverkorene om het te worden.", "Bomb as many targets as you can.": "Bombardeer zo veel mogelijk doelwitten als u kan.", @@ -1622,7 +1705,7 @@ "languages": { "Arabic": "Arabisch", "Belarussian": "Belarusian", - "Chinese": "Vereenvoudigd Chinees", + "Chinese": "Vereenvoudigd Chinees ", "ChineseTraditional": "Traditioneel Chinees", "Croatian": "Kroatisch", "Czech": "Tsjechisch", @@ -1644,6 +1727,7 @@ "Korean": "Koreaans", "Malay": "Maleis", "Persian": "Perzisch", + "PirateSpeak": "Piraat Praat", "Polish": "Pools", "Portuguese": "Portugees", "Romanian": "Roemeens", @@ -1718,6 +1802,7 @@ "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Valsspelen ontdekt; scores en prijzen geschorst voor ${COUNT} dagen.", "Could not establish a secure connection.": "Kon geen beveiligde verbinding tot stand brengen.", "Daily maximum reached.": "Dagelijkse maximum bekijkt.", + "Daily sign-in reward": "Dagelijkse inlog beloning", "Entering tournament...": "Toernooi betreden...", "Invalid code.": "Ongeldige code.", "Invalid payment; purchase canceled.": "Ongeldige betaling; aankoop geannuleerd.", @@ -1727,11 +1812,14 @@ "Item unlocked!": "item ontgrendeld!", "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "LINKENDE ONTKENNING. ${ACCOUNT} bevat\nsignificante gegevens die ALLES ZIJN VERLOREN.\nJe kunt in omgekeerde volgorde linken als je wilt\n(en verlies de gegevens van DIT account in plaats daarvan)", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "Verbind account ${ACCOUNT} aan dit account?\nAlle bestaande data op ${ACCOUNT} zal verloren gaan.\nDit kan niet ongedaan worden gemaakt. Weet je het zeker?", + "Longer streaks lead to better rewards.": "Langere reeksen leiden tot betere beloningen.", "Max number of playlists reached.": "Maximaal aantal speellijsten bereikt.", "Max number of profiles reached.": "Maximaal aantal profielen bereikt.", "Maximum friend code rewards reached.": "Maximum vriend code beloning behaald", "Message is too long.": "Bericht is te lang.", + "New tournament result!": "Nieuwe toernooi uitslag!", "No servers are available. Please try again soon.": "Er zijn geen servers beschikbaar. Probeer het binnenkort opnieuw.", + "No slots available. Free a slot and try again.": "Geen plaatsen beschikbaar. Maak er een vrij en probeer opnieuw.", "Profile \"${NAME}\" upgraded successfully.": "Profiel \"${NAME}\" is succesvol opgewaardeerd.", "Profile could not be upgraded.": "Profiel kon niet worden opgewaardeerd.", "Purchase successful!": "Aankoop succesvol!", @@ -1741,7 +1829,9 @@ "Sorry, this code has already been used.": "Sorry, deze code is al gebruikt.", "Sorry, this code has expired.": "Sorry, deze code is verlopen.", "Sorry, this code only works for new accounts.": "Sorry, deze code werkt alleen op nieuwe accounts.", + "Sorry, this has expired.": "Sorry, dit is verlopen.", "Still searching for nearby servers; please try again soon.": "Nog steeds op zoek naar servers in de buurt; probeer het snel opnieuw.", + "Streak: ${NUM} days": "Reeks: ${NUM} dagen", "Temporarily unavailable; please try again later.": "Tijdelijk niet beschikbaar; probeer het later opnieuw.", "The tournament ended before you finished.": "Het toernooi eindigde voordat u klaar was.", "This account cannot be unlinked for ${NUM} days.": "Dit account kan gedurende ${NUM} dagen niet worden ontkoppeld.", @@ -1752,19 +1842,28 @@ "Tournaments require ${VERSION} or newer": "toernooi vereist ${VERSION} of nieuwer", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "Koppel ${ACCOUNT} los van dit account?\nAlle gegevens over ${ACCOUNT} worden opnieuw ingesteld.\n(behalve voor prestaties in sommige gevallen)", "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "WAARSCHUWING: klachten over hacking zijn afgegeven tegen uw account.\nAccounts die hacken blijken te zijn, worden verbannen. Speel alsjeblieft eerlijk.", + "Wait reduced!": "Wachttijd verminderd!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "Waarschuwing: Deze versie van het spel is beperkt tot oude accountgegevens; gegevens kunnen ontbreken of verouderd lijken.\nUpgrade naar een nieuwere versie van het spel om je meest recente accountgegevens te bekijken.", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "Wilt u uw apparaat account hieraan koppelen?\n\nUw apparaat account is ${ACCOUNT1}\nDit account is ${ACCOUNT2}\n\nDit zal u toelaten om uw bestaande vooruitgang te houden.\nWaarschuwing: dit kan niet ongedaan gemaakt worden!", "You already own this!": "U bezit dit al!", "You can join in ${COUNT} seconds.": "Je kan meedoen in ${COUNT} seconden.", "You don't have enough tickets for this!": "U heeft hier niet genoeg tickets voor!", "You don't own that.": "Je bezit dat niet.", - "You got ${COUNT} tickets!": "U krijgt ${COUNT} tickets!", - "You got a ${ITEM}!": "U hebt een ${ITEM}!", + "You got ${COUNT} tickets!": "Je krijgt ${COUNT} tickets!", + "You got ${COUNT} tokens!": "Je krijgt ${COUNT} tokens!", + "You got a ${ITEM}!": "Je krijgt een ${ITEM}!", + "You got a chest!": "Je hebt een schatkist!", + "You got an achievement reward!": "Je krijgt een prestatie beloning!", "You have been promoted to a new league; congratulations!": "U bent gepromoveerd naar een nieuwe competitie; gefeliciteerd!", + "You lost a chest! (All your chest slots were full)": "Je bent een schatkist verloren! (Alle plaatsen waren vol)", + "You must update the app to view this.": "Je moet de app updaten om dit te bekijken.", "You must update to a newer version of the app to do this.": "Om dit te kunnen doen moet u de app updaten naar een nieuwere versie.", "You must update to the newest version of the game to do this.": "Je moet dit bijwerken naar de nieuwste versie van het spel.", "You must wait a few seconds before entering a new code.": "U moet een paar seconden wachten voordat een nieuwe code ingevoerd kan worden.", + "You placed #${RANK} in a tournament!": "Je hebt plaats #${RANK} in een toernooi!", "You ranked #${RANK} in the last tournament. Thanks for playing!": "U eindigde op rang #${RANK} in het laatste toernooi. Bedankt voor het spelen!", "Your account was rejected. Are you signed in?": "Je account is geweigerd. Ben je ingelogd?", + "Your ad views are not registering. Ad options will be limited for a while.": "Je bekeken advertenties worden niet geregistreerd. Advertentie opties worden voorlopig beperkt.", "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Uw versie van het spel is aangepast.\nMaakt de veranderingen ongedaan en probeer het opnieuw.", "Your friend code was used by ${ACCOUNT}": "Uw Vriend code is gebruikt door ${ACCOUNT}" }, @@ -1918,7 +2017,9 @@ "toSkipPressAnythingText": "(tik of druk op iets om de les over te slaan)" }, "twoKillText": "TWEE VLIEGEN IN 1 KLAP!", + "uiScaleText": "UI-Schaal", "unavailableText": "niet beschikbaar", + "unclaimedPrizesText": "Je hebt niet-opgehaalde prijzen!", "unconfiguredControllerDetectedText": "Niet geconfigureerde controller ontdekt:", "unlockThisInTheStoreText": "Hiervoor moet een aankoop gedaan worden in de winkel.", "unlockThisProfilesText": "Om meer dan ${NUM} profielen te maken heb je nodig:", @@ -1931,10 +2032,13 @@ "upgradeText": "Opwaarderen", "upgradeToPlayText": "Ontgrendel \"${PRO}\" in de winkel binnen het spel om dit te spelen.", "useDefaultText": "Gebruik Standaard", + "userSystemScriptsCreateText": "Maak Gebruiker Systeem Scripts", + "userSystemScriptsDeleteText": "Verwijder Gebruiker Systeem Scripts", "usesExternalControllerText": "Dit spel maakt gebruik van een externe controller als input.", "usingItunesText": "De muziek app wordt gebruikt voor de muziek...", "usingItunesTurnRepeatAndShuffleOnText": "Zorg er er voor dat shuffle AAN staat en herhalen op ALLES staat in iTunes.", "v2AccountLinkingInfoText": "Om V2-accounts te koppelen, gebruikt u de knop 'Account beheren'.", + "v2AccountRequiredText": "Dit vereist een V2 account, upgrade uw account en probeer opnieuw.", "validatingBetaText": "Beta wordt Gevalideerd...", "validatingTestBuildText": "Valideren Test Versie...", "viaText": "via", @@ -2012,5 +2116,6 @@ }, "yesAllowText": "Ja, Toestaan!", "yourBestScoresText": "Uw Beste Scores", - "yourBestTimesText": "Uw Beste Tijden" + "yourBestTimesText": "Uw Beste Tijden", + "yourPrizeText": "Jouw prijs:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/english.json b/dist/ba_data/data/languages/english.json index a387548..685e055 100644 --- a/dist/ba_data/data/languages/english.json +++ b/dist/ba_data/data/languages/english.json @@ -6,7 +6,9 @@ "campaignProgressText": "Campaign Progress [Hard]: ${PROGRESS}", "changeOncePerSeason": "You can only change this once per season.", "changeOncePerSeasonError": "You must wait until next season to change this again (${NUM} days)", + "createAnAccountText": "Create an Account", "customName": "Custom Name", + "deleteAccountText": "Delete Account", "googlePlayGamesAccountSwitchText": "If you want to use a different Google account,\nuse the Google Play Games app to switch.", "linkAccountsEnterCodeText": "Enter Code", "linkAccountsGenerateCodeText": "Generate Code", @@ -28,7 +30,7 @@ "signInWithDeviceText": "Sign in with device account", "signInWithText": "Sign in with ${SERVICE}", "signInWithV2InfoText": "(an account that works on all platforms)", - "signInWithV2Text": "Sign in with a BombSquad account", + "signInWithV2Text": "Sign in with a ${APP_NAME} account", "signOutText": "Sign Out", "signingInText": "Signing in...", "signingOutText": "Signing out...", @@ -336,6 +338,8 @@ "allowText": "Allow", "alreadySignedInText": "Your account is signed in from another device;\nplease switch accounts or close the game on your\nother devices and try again.", "apiVersionErrorText": "Can't load module ${NAME}; it targets api-version ${VERSION_USED}; we require ${VERSION_REQUIRED}.", + "applyText": "Apply", + "areYouSureText": "Are you sure?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(\"Auto\" enables this only when headphones are plugged in)", "headRelativeVRAudioText": "Head-Relative VR Audio", @@ -358,14 +362,23 @@ "boostText": "Boost", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} is configured in the app itself.", "buttonText": "button", - "canWeDebugText": "Would you like BombSquad to automatically report\nbugs, crashes, and basic usage info to the developer?\n\nThis data contains no personal information and helps\nkeep the game running smoothly and bug-free.\n", + "canWeDebugText": "Would you like ${APP_NAME} to automatically report\nbugs, crashes, and basic usage info to the developer?\n\nThis data contains no personal information and helps\nkeep the game running smoothly and bug-free.\n", "cancelText": "Cancel", "cantConfigureDeviceText": "Sorry, ${DEVICE} is not configurable.", "challengeEndedText": "This challenge has ended.", "chatMuteText": "Mute Chat", "chatMutedText": "Chat Muted", "chatUnMuteText": "Unmute Chat", + "chests": { + "prizeOddsText": "Prize Odds", + "reduceWaitText": "Reduce Wait", + "slotDescriptionText": "This slot can hold a chest.\n\nEarn chests by playing campaign levels,\nplacing in tournaments, and completing\nachievements.", + "slotText": "Chest Slot ${NUM}", + "slotsFullWarningText": "WARNING: All your chest slots are full.\nAny chests you earn this game will be lost.", + "unlocksInText": "Unlocks In" + }, "choosingPlayerText": "", + "claimText": "Claim", "codesExplainText": "Codes are provided by the developer to\ndiagnose and correct account issues.", "completeThisLevelToProceedText": "You must complete\nthis level to proceed!", "completionBonusText": "Completion Bonus", @@ -563,6 +576,7 @@ "disableXInputDescriptionText": "Allows more than 4 controllers but may not work as well.", "disableXInputText": "Disable XInput", "disabledText": "Disabled", + "discardText": "Discard", "discordFriendsText": "Want to look for new people to play with?\nJoin our Discord and find new friends!", "discordJoinText": "Join the Discord", "doneText": "Done", @@ -645,6 +659,8 @@ "errorText": "Error", "errorUnknownText": "unknown error", "exitGameText": "Exit ${APP_NAME}?", + "expiredAgoText": "Expired ${T} ago", + "expiresInText": "Expires in ${T}", "exportSuccessText": "'${NAME}' exported.", "externalStorageText": "External Storage", "failText": "Fail", @@ -704,6 +720,7 @@ "copyCodeConfirmText": "Code copied to clipboard.", "copyCodeText": "Copy Code", "dedicatedServerInfoText": "For best results, set up a dedicated server. See bombsquadgame.com/server to learn how.", + "descriptionShortText": "Use the gather window to assemble a party.", "disconnectClientsText": "This will disconnect the ${COUNT} player(s)\nin your party. Are you sure?", "earnTicketsForRecommendingAmountText": "Friends will receive ${COUNT} tickets if they try the game\n(and you will receive ${YOU_COUNT} for each who does)", "earnTicketsForRecommendingText": "Share the game\nfor free tickets...", @@ -813,6 +830,12 @@ "youHaveShortText": "you have ${COUNT}", "youHaveText": "you have ${COUNT} tickets" }, + "goldPass": { + "desc1InfTokensText": "Infinite tokens.", + "desc2NoAdsText": "No ads.", + "desc3ForeverText": "Forever.", + "goldPassText": "Gold Pass" + }, "googlePlayPurchasesNotAvailableText": "Google Play purchases are not available.\nYou may need to update your store app.", "googlePlayServicesNotAvailableText": "Google Play Services is not available.\nSome app functionality may be disabled.", "googlePlayText": "Google Play", @@ -894,6 +917,7 @@ "importText": "Import", "importingText": "Importing...", "inGameClippedNameText": "in-game will be\n\"${NAME}\"", + "inboxText": "Inbox", "installDiskSpaceErrorText": "ERROR: Unable to complete the install.\nYou may be out of space on your device.\nClear some space and try again.", "internal": { "arrowsToExitListText": "press ${LEFT} or ${RIGHT} to exit list", @@ -948,12 +972,14 @@ "timeOutText": "(times out in ${TIME} seconds)", "touchScreenJoinWarningText": "You have joined with the touchscreen.\nIf this was a mistake, tap 'Menu->Leave Game' with it.", "touchScreenText": "TouchScreen", + "unableToCompleteTryAgainText": "Unable to complete this right now.\nPlease try again.", "unableToResolveHostText": "Error: unable to resolve host.", "unavailableNoConnectionText": "This is currently unavailable (no internet connection?)", "vrOrientationResetCardboardText": "Use this to reset the VR orientation.\nTo play the game you'll need an external controller.", "vrOrientationResetText": "VR orientation reset.", "willTimeOutText": "(will time out if idle)" }, + "inventoryText": "Inventory", "jumpBoldText": "JUMP", "jumpText": "Jump", "keepText": "Keep", @@ -1000,8 +1026,11 @@ "seasonEndsMinutesText": "Season ends in ${NUMBER} minutes.", "seasonText": "Season ${NUMBER}", "tournamentLeagueText": "You must reach ${NAME} league to enter this tournament.", - "trophyCountsResetText": "Trophy counts will reset next season." + "trophyCountsResetText": "Trophy counts will reset next season.", + "upToDateBonusDescriptionText": "Players running a recent version of the\ngame receive a ${PERCENT}% bonus here.", + "upToDateBonusText": "Up-To-Date Bonus" }, + "learnMoreText": "Learn More", "levelBestScoresText": "Best scores on ${LEVEL}", "levelBestTimesText": "Best times on ${LEVEL}", "levelIsLockedText": "${LEVEL} is locked.", @@ -1045,6 +1074,8 @@ "modeArcadeText": "Arcade Mode", "modeClassicText": "Classic Mode", "modeDemoText": "Demo Mode", + "moreSoonText": "More coming soon...", + "mostDestroyedPlayerText": "Most Destroyed Player", "mostValuablePlayerText": "Most Valuable Player", "mostViolatedPlayerText": "Most Violated Player", "mostViolentPlayerText": "Most Violent Player", @@ -1061,6 +1092,7 @@ "nameSuicideText": "${NAME} committed suicide.", "nameText": "Name", "nativeText": "Native", + "newExclaimText": "New!", "newPersonalBestText": "New personal best!", "newTestBuildAvailableText": "A newer test build is available! (${VERSION} build ${BUILD}).\nGet it at ${ADDRESS}", "newText": "New", @@ -1071,6 +1103,7 @@ "noContinuesText": "(no continues)", "noExternalStorageErrorText": "No external storage found on this device", "noGameCircleText": "Error: not logged into GameCircle", + "noMessagesText": "No messages.", "noPluginsInstalledText": "No Plugins Installed", "noScoresYetText": "No scores yet.", "noServersFoundText": "No servers found.", @@ -1079,6 +1112,7 @@ "noValidMapsErrorText": "No valid maps found for this game type.", "notEnoughPlayersRemainingText": "Not enough players remaining; exit and start a new game.", "notEnoughPlayersText": "You need at least ${COUNT} players to start this game!", + "notEnoughTicketsText": "Not enough tickets!", "notNowText": "Not Now", "notSignedInErrorText": "You must sign in to do this.", "notSignedInGooglePlayErrorText": "You must sign in with Google Play to do this.", @@ -1091,6 +1125,9 @@ "onText": "On", "oneMomentText": "One Moment...", "onslaughtRespawnText": "${PLAYER} will respawn in wave ${WAVE}", + "openMeText": "Open Me!", + "openNowText": "Open Now", + "openText": "Open", "orText": "${A} or ${B}", "otherText": "Other...", "outOfText": "(#${RANK} out of ${ALL})", @@ -1177,6 +1214,8 @@ "punchText": "Punch", "purchaseForText": "Purchase for ${PRICE}", "purchaseGameText": "Purchase Game", + "purchaseNeverAvailableText": "Sorry, purchases are not available on this build.\nTry signing into your account on another platform and making purchases from there.", + "purchaseNotAvailableText": "This purchase is not available.", "purchasingText": "Purchasing...", "quitGameText": "Quit ${APP_NAME}?", "quittingIn5SecondsText": "Quitting in 5 seconds...", @@ -1218,6 +1257,7 @@ "version_mismatch": "Version mismatch.\nMake sure BombSquad and BombSquad Remote\nare the latest versions and try again." }, "removeInGameAdsText": "Unlock \"${PRO}\" in the store to remove in-game ads.", + "removeInGameAdsTokenPurchaseText": "LIMITED TIME OFFER: Purchase ANY token pack to remove in-game ads.", "renameText": "Rename", "replayEndText": "End Replay", "replayNameDefaultText": "Last Game Replay", @@ -1276,6 +1316,8 @@ "enterPromoCodeText": "Enter Code", "forTestingText": "Note: these values are only for testing and will be lost when the app exits.", "helpTranslateText": "${APP_NAME}'s non-English translations are a community\nsupported effort. If you'd like to contribute or correct\na translation, follow the link below. Thanks in advance!", + "insecureConnectionsDescriptionText": "not recommended, but may allow online play\nfrom restricted countries or networks", + "insecureConnectionsText": "Use insecure connections", "kickIdlePlayersText": "Kick idle players", "kidFriendlyModeText": "Kid-Friendly Mode (reduced violence, etc)", "languageText": "Language", @@ -1335,6 +1377,7 @@ }, "spaceKeyText": "space", "statsText": "Stats", + "stopRemindingMeText": "Stop Reminding Me", "storagePermissionAccessText": "This requires storage access", "store": { "alreadyOwnText": "You already own ${NAME}!", @@ -1344,7 +1387,6 @@ "charactersText": "Characters", "comingSoonText": "Coming Soon...", "extrasText": "Extras", - "freeBombSquadProText": "BombSquad is now free, but since you originally purchased it you are\nreceiving the BombSquad Pro upgrade and ${COUNT} tickets as a thank-you.\nEnjoy the new features, and thank you for your support!\n-Eric", "holidaySpecialText": "Holiday Special", "howToSwitchCharactersText": "(go to \"${SETTINGS} -> ${PLAYER_PROFILES}\" to assign & customize characters)", "howToUseIconsText": "(create global player profiles (in the account window) to use these)", @@ -1393,6 +1435,7 @@ "testBuildValidatedText": "Test Build Validated; Enjoy!", "thankYouText": "Thank you for your support! Enjoy the game!!", "threeKillText": "TRIPLE KILL!!", + "ticketsDescriptionText": "Tickets can be used to unlock characters,\nmaps, minigames, and more in the store.\n\nTickets can be found in chests won through\ncampaigns, tournaments, and achievements.", "timeBonusText": "Time Bonus", "timeElapsedText": "Time Elapsed", "timeExpiredText": "Time Expired", @@ -1403,10 +1446,24 @@ "tipText": "Tip", "titleText": "BombSquad", "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "Get Tokens", + "notEnoughTokensText": "Not enough tokens!", + "numTokensText": "${COUNT} Tokens", + "openNowDescriptionText": "You have enough tokens to\nopen this now - you don't\nneed to wait.", + "shinyNewCurrencyText": "BombSquad's shiny new currency.", + "tokenPack1Text": "Small Token Pack", + "tokenPack2Text": "Medium Token Pack", + "tokenPack3Text": "Large Token Pack", + "tokenPack4Text": "Jumbo Token Pack", + "tokensDescriptionText": "Tokens are used to speed up chest unlocks\nand for other game and account features.\n\nYou can win tokens in the game or buy them\nin packs. Or buy a Gold Pass for infinite\ntokens and never hear about them again.", + "youHaveGoldPassText": "You have a Gold Pass.\nAll token purchases are free.\nEnjoy!" + }, "topFriendsText": "Top Friends", "tournamentCheckingStateText": "Checking tournament state; please wait...", "tournamentEndedText": "This tournament has ended. A new one will start soon.", "tournamentEntryText": "Tournament Entry", + "tournamentFinalStandingsText": "Final Standings", "tournamentResultsRecentText": "Recent Tournament Results", "tournamentStandingsText": "Tournament Standings", "tournamentText": "Tournament", @@ -1462,6 +1519,18 @@ "Uber Onslaught": null, "Uber Runaround": null }, + "displayItemNames": { + "${C} Tickets": null, + "${C} Tokens": null, + "Chest": null, + "L1 Chest": null, + "L2 Chest": null, + "L3 Chest": null, + "L4 Chest": null, + "L5 Chest": null, + "L6 Chest": null, + "Unknown Chest": null + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": null, "Bomb as many targets as you can.": null, @@ -1544,8 +1613,8 @@ "languages": { "Arabic": null, "Belarussian": null, - "Chinese": "Chinese Simplified", - "ChineseTraditional": "Chinese Traditional", + "ChineseSimplified": "Chinese - Simplified", + "ChineseTraditional": "Chinese - Traditional", "Croatian": null, "Czech": null, "Danish": null, @@ -1566,13 +1635,16 @@ "Korean": null, "Malay": null, "Persian": null, + "PirateSpeak": "Pirate Speak", "Polish": null, - "Portuguese": null, + "PortugueseBrazil": "Portuguese - Brazil", + "PortuguesePortugal": "Portuguese - Portugal", "Romanian": null, "Russian": null, "Serbian": null, "Slovak": null, - "Spanish": null, + "SpanishLatinAmerica": "Spanish - Latin America", + "SpanishSpain": "Spanish - Spain", "Swedish": null, "Tamil": null, "Thai": null, @@ -1637,6 +1709,7 @@ "Cheating detected; scores and prizes suspended for ${COUNT} days.": null, "Could not establish a secure connection.": null, "Daily maximum reached.": null, + "Daily sign-in reward": null, "Entering tournament...": null, "Invalid code.": null, "Invalid payment; purchase canceled.": null, @@ -1646,11 +1719,14 @@ "Item unlocked!": null, "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": null, "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": null, + "Longer streaks lead to better rewards.": null, "Max number of playlists reached.": null, "Max number of profiles reached.": null, "Maximum friend code rewards reached.": null, "Message is too long.": null, + "New tournament result!": null, "No servers are available. Please try again soon.": null, + "No slots available. Free a slot and try again.": null, "Profile \"${NAME}\" upgraded successfully.": null, "Profile could not be upgraded.": null, "Purchase successful!": null, @@ -1660,7 +1736,9 @@ "Sorry, this code has already been used.": null, "Sorry, this code has expired.": null, "Sorry, this code only works for new accounts.": null, + "Sorry, this has expired.": null, "Still searching for nearby servers; please try again soon.": null, + "Streak: ${NUM} days": null, "Temporarily unavailable; please try again later.": null, "The tournament ended before you finished.": null, "This account cannot be unlinked for ${NUM} days.": null, @@ -1671,19 +1749,28 @@ "Tournaments require ${VERSION} or newer": null, "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": null, "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": null, + "Wait reduced!": null, + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": null, "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": null, "You already own this!": null, "You can join in ${COUNT} seconds.": null, "You don't have enough tickets for this!": null, "You don't own that.": null, "You got ${COUNT} tickets!": null, + "You got ${COUNT} tokens!": null, "You got a ${ITEM}!": null, + "You got a chest!": null, + "You got an achievement reward!": null, "You have been promoted to a new league; congratulations!": null, + "You lost a chest! (All your chest slots were full)": null, + "You must update the app to view this.": null, "You must update to a newer version of the app to do this.": null, "You must update to the newest version of the game to do this.": null, "You must wait a few seconds before entering a new code.": null, + "You placed #${RANK} in a tournament!": null, "You ranked #${RANK} in the last tournament. Thanks for playing!": null, "Your account was rejected. Are you signed in?": null, + "Your ad views are not registering. Ad options will be limited for a while.": null, "Your copy of the game has been modified.\nPlease revert any changes and try again.": null, "Your friend code was used by ${ACCOUNT}": null }, @@ -1834,6 +1921,7 @@ "twoKillText": "DOUBLE KILL!", "uiScaleText": "UI Scale", "unavailableText": "unavailable", + "unclaimedPrizesText": "You have unclaimed prizes!", "unconfiguredControllerDetectedText": "Unconfigured controller detected:", "unlockThisInTheStoreText": "This must be unlocked in the store.", "unlockThisProfilesText": "To create more than ${NUM} profiles, you need:", @@ -1851,6 +1939,7 @@ "usesExternalControllerText": "This game uses an external controller for input.", "usingItunesText": "Using Music App for soundtrack...", "v2AccountLinkingInfoText": "To link V2 accounts, use the 'Manage Account' button.", + "v2AccountRequiredText": "This requires a V2 account. Upgrade your account and try again.", "validatingTestBuildText": "Validating Test Build...", "viaText": "via", "victoryText": "Victory!", @@ -1885,21 +1974,6 @@ "waveText": "Wave", "wellSureText": "Well Sure!", "whatIsThisText": "What is this?", - "wiimoteLicenseWindow": { - "titleText": "DarwiinRemote Copyright" - }, - "wiimoteListenWindow": { - "listeningText": "Listening For Wiimotes...", - "pressText": "Press Wiimote buttons 1 and 2 simultaneously.\n", - "pressText2": "On newer Wiimotes with Motion Plus built in, press the red 'sync' button on the back instead." - }, - "wiimoteSetupWindow": { - "copyrightText": "DarwiinRemote Copyright", - "listenText": "Listen", - "macInstructionsText": "Make sure your Wii is off and Bluetooth is enabled\non your Mac, then press 'Listen'. Wiimote support can\nbe a bit flaky, so you may have to try a few times\nbefore you get a connection.\n\nBluetooth should handle up to 7 connected devices,\nthough your mileage may vary.\n\nBombSquad supports the original Wiimotes, Nunchuks,\nand the Classic Controller.\nThe newer Wii Remote Plus now works too\nbut not with attachments.", - "thanksText": "Thanks to the DarwiinRemote team\nFor making this possible.\n", - "titleText": "Wiimote Setup" - }, "winsPlayerText": "${NAME} Wins!", "winsTeamText": "${NAME} Wins!", "winsText": "${NAME} Wins!", @@ -1910,5 +1984,6 @@ "worldsBestTimesText": "World's Best Times", "yesAllowText": "Yes, Allow!", "yourBestScoresText": "Your Best Scores", - "yourBestTimesText": "Your Best Times" + "yourBestTimesText": "Your Best Times", + "yourPrizeText": "Your prize:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/filipino.json b/dist/ba_data/data/languages/filipino.json index 1e4e724..73a28af 100644 --- a/dist/ba_data/data/languages/filipino.json +++ b/dist/ba_data/data/languages/filipino.json @@ -1,12 +1,14 @@ { "accountSettingsWindow": { - "accountNameRules": "Bawal ang pangalan na may emoji o mga ibang nakakaibang titik.", + "accountNameRules": "Ang pangalan ay hindi dapat naglalaman ng emoji o ano mang uri ng simbolo", "accountsText": "Mga Account", "achievementProgressText": "Mga Nakamtan: ${COUNT} sa ${TOTAL}", "campaignProgressText": "Ang Progreso sa Kampanya [Mahirap]: ${PROGRESS}", "changeOncePerSeason": "Mapapalit mo lang ito isang beses kada season", "changeOncePerSeasonError": "Kailangan mo muna maghintay ng susunod na panahon para mapalitan ito. (${NUM} na araw)", + "createAnAccountText": "Gumawa ng account", "customName": "Sariling Pangalan", + "deleteAccountText": "Burahin ang Account", "googlePlayGamesAccountSwitchText": "Kung gusto mong gamitin ang iba ninyong Google Account, \nkailangan mo gamitin ang Google Play Games app upang maipalit ito.", "linkAccountsEnterCodeText": "Ilagay ang Kowd", "linkAccountsGenerateCodeText": "Gumawa ng Kowd", @@ -19,21 +21,21 @@ "nameChangeConfirm": "Ipalitan ang pangalan ng iyong account sa ${NAME}?", "resetProgressConfirmNoAchievementsText": "Ibabalik nito sa dati ang iyong pag-usad,\nat lokal na mga iskor (parehas lamang ang bilang ng iyong tiket).\nHindi ito maibabalik. Ipagpatuloy pa rin?", "resetProgressConfirmText": "Maaaring maulit ang iyong pag-usad,\nmga nakamtan, at lokal na mga matataas na iskor\n(ngunit Hindi ang mga tiket). Hindi na ito maibabalik sa dati\nulit. Ipagpatuloy pa rin?", - "resetProgressText": "Magpanibago ng Progreso", + "resetProgressText": "Ulitin ang Progreso", "setAccountName": "Itakda ang Pangalan ng Account", "setAccountNameDesc": "Piliin ang pangalan na ipapakita para sa iyong account.\nMaaari mong gamitin ang pangalan mula sa isa sa iyong mga naka-link \nna account o lumikha ng isang natatanging pasadyang pangalan.", "signInInfoText": "Pumasok o gumawa nang account para kumolekta ng mga ticket, makipagkompetensya online,\nat makabahagi ng pag-usad sa iba't ibang mga device.", "signInText": "Pumasok sa account", "signInWithAnEmailAddressText": "Pumasok gamit ang email address", - "signInWithDeviceInfoText": "(automatic account na magagamit lamang sa device na ito)", + "signInWithDeviceInfoText": "(kusang account na ginagamit lamang sa device na ito.)", "signInWithDeviceText": "Pumasok gamit ang device account", "signInWithGameCircleText": "Pumasok sa account gamit ang Game Circle", "signInWithGooglePlayText": "Pumasok sa account gamit ang Google Play", "signInWithTestAccountInfoText": "(uri ng legacy account; gamitin ang mga account ng device na pasulong)", "signInWithTestAccountText": "Pumasok gamit ang test account", - "signInWithText": "Mag sign in gamit ang ${SERVICE}", - "signInWithV2InfoText": "(ang account na gumagana sa lahat ng platforms)", - "signInWithV2Text": "Pumasok gamit ang BombSquad account", + "signInWithText": "Pumasok gamit ang ${SERVICE}", + "signInWithV2InfoText": "(ang account na pwede gamitin sa lahat ng plataporma)", + "signInWithV2Text": "Pumasok gamit ang ${APP_NAME} account", "signOutText": "Umalis", "signingInText": "Pumapasok sa account...", "signingOutText": "Umaalis sa account...", @@ -43,8 +45,8 @@ "unlinkAccountsText": "Tanggalin ang mga account", "unlinkLegacyV1AccountsText": "Tanggalin ang mga Legacy (V1) na mga Account", "v2LinkInstructionsText": "Gamitin ang link na ito para gumawa ng account o pumasok sa account.", - "viaAccount": "(sa pamamagitan ng manlalaro ${NAME})", - "youAreSignedInAsText": "Nakapasok bilang si:" + "viaAccount": "(sa pamamagitan ng ${NAME})", + "youAreSignedInAsText": "Nakapasok bilang:" }, "achievementChallengesText": "Mga Hamon sa Pagkamit", "achievementText": "Nakamtan", @@ -341,6 +343,8 @@ "allowText": "Payagin", "alreadySignedInText": "Ang iyong account ay naka-sign in mula sa isa pang device;\nMangyaring lumipat ng mga accounts o isara ang laro sa iyong\niba pang mga device at subukan muli.", "apiVersionErrorText": "Hindi ma-load ang module ${NAME}; naka-target ang api-version ${VERSION_USED}; kailangan namin ${VERSION_REQUIRED}", + "applyText": "Gamitin", + "areYouSureText": "Sigurado ka ba?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(Lalabas ang “Auto” ng ito kapag nakasaksak ang headphones)", "headRelativeVRAudioText": "Head-Relative VR Audio", @@ -363,14 +367,23 @@ "boostText": "Palakasin", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} naka-configure ito sa mismong app.", "buttonText": "pindutan", - "canWeDebugText": "Gusto mo ba na ang BombSquad ay automatic na mag report ng\nbugs, crashes, at mga basic usage na info na i-sent sa developer?\n\nHindi ito naglalaman ng mga personal information at makatulong ito\npara ang laro ay gumagana at bug-free.", + "canWeDebugText": "Gusto mo ba na ang ${APP_NAME} ay automatic na mag report ng\nbugs, crashes, at mga basic usage na info na i-sent sa developer?\n\nHindi ito naglalaman ng mga personal information at makatulong ito\npara ang laro ay gumagana at bug-free.", "cancelText": "Kanselahin", "cantConfigureDeviceText": "Pasensya na, ang ${DEVICE} na ito ay hindi ma-configure.", "challengeEndedText": "Natapos na ang challenge na ito.", "chatMuteText": "Tahimikin Ang Chat Mo", "chatMutedText": "Na-mute ang Chat", "chatUnMuteText": "Ipaganahin Mo Na ang Chat", + "chests": { + "prizeOddsText": "Premyong Panumbasan", + "reduceWaitText": "Magbawas ng Oras", + "slotDescriptionText": "Ito'y pinaglalaman ng mga baul.\n\nMagtipon ng mga baul sa pamamagitan \nng paglalaro ng kampanya, paligsahan, \nat pagkuha ng mga nakamtan.", + "slotText": "Puwang ng Baul ${NUM}", + "slotsFullWarningText": "BABALA: Lahat ng mga patlang ng baul ay puno na. \nAng mga baul na natanggap sa ngayon ay mawawala.", + "unlocksInText": "Magbubukas sa loob ng" + }, "choosingPlayerText": "", + "claimText": "Ikunin", "codesExplainText": "Binigay ng isang taong gumagawa ng larong ito ang mga kowd \npara kilalanin at maitama ang mga problema sa account.", "completeThisLevelToProceedText": "Tapusin mo muna\nang antas na ito bago tumuloy!", "completionBonusText": "Bonus sa Pagkumpleto nito:", @@ -425,7 +438,7 @@ "secondaryEnableText": "Paganahin", "secondaryText": "Pangalawang Controller", "startButtonActivatesDefaultDescriptionText": "(i-off ito kung ang iyong start button ay higit pa sa isang ‘menu’ button)", - "startButtonActivatesDefaultText": "Start Button Activates Defualt Widget", + "startButtonActivatesDefaultText": "Ang Pindutang Pagsisimulahin Ay Binubukas Ang Default Widget", "titleText": "Setup ng Controller", "twoInOneSetupText": "2-in-1 na Setup ng Controller", "uiOnlyDescriptionText": "(pigilan ang controller na ito mula sa aktwal na pagsali sa isang laro)", @@ -515,23 +528,23 @@ "createText": "Gumawa", "creditsWindow": { "additionalAudioArtIdeasText": "Adisyonal na Pagtugtugin, Sining Pang-aga, at Pagharaya ni ${NAME}", - "additionalMusicFromText": "Adisyonal musika galing kay ${NAME}", + "additionalMusicFromText": "Adisyonal musika galing sa ${NAME}", "allMyFamilyText": "Lahat sa aking kaibigan at pamilya ko na tumulong sa play test", "codingGraphicsAudioText": "Pagkukudigo, Paggrapikan, at Pagtugtugin ni ${NAME}", "languageTranslationsText": "Pagsasalin Ng Wika:", "legalText": "Ligal:", "publicDomainMusicViaText": "Public-domain music mula sa ${NAME}", "softwareBasedOnText": "Ang software na ito ay batay sa bahagi ng gawain ng ${NAME}", - "songCreditText": "${TITLE} Ginawa ni ${PERFORMER}\nBinubuo ni ${COMPOSER}, Inayos ni ${ARRANGER}, Na-publish ni ${PUBLISHER},\nSa kagandahang-loob ng ${SOURCE}", + "songCreditText": "${TITLE} Pinagbigkas ng ${PERFORMER}\nBinubuo ni ${COMPOSER}, Inayos ni ${ARRANGER}, Inilathala ng ${PUBLISHER},\nSa kagandahang-loob ng ${SOURCE}", "soundAndMusicText": "Tunog at Musika", "soundsText": "Mga Tunog (${SOURCE}):", "specialThanksText": "Espesyal Na Pasasalamat:", - "thanksEspeciallyToText": "Salamat, lalo na kay ${NAME}", - "titleText": "${APP_NAME} Mga Kredito", + "thanksEspeciallyToText": "Salamat, lalo na ang ${NAME}", + "titleText": "${APP_NAME} Karangalan", "whoeverInventedCoffeeText": "At ang sino man na nag-imbento ng kape" }, "currentStandingText": "Ang kasalukuyang tayo mo ay #${RANK}", - "customizeText": "I-customize...", + "customizeText": "Ayusin...", "deathsTallyText": "${COUNT} pagkamatay", "deathsText": "Pagkamatay", "debugText": "debug", @@ -550,11 +563,11 @@ "titleText": "Benchmarks at Stress Test", "totalReloadTimeText": "Kabuuhang reload time: ${TIME} (tingnan Ang log para sa mga detalye)" }, - "defaultGameListNameText": "Default ${PLAYMODE} Playlist", - "defaultNewGameListNameText": "Ang aking ${PLAYMODE} Playlist", + "defaultGameListNameText": "Orihinal Na Laruhang Pang-${PLAYMODE}", + "defaultNewGameListNameText": "Ang Aking Laruhang Pang-${PLAYMODE}", "deleteText": "Tanggalin", "demoText": "Demo", - "denyText": "Tanggihan", + "denyText": "Tanggihin", "deprecatedText": "Hindi Na Uso", "descriptionText": "Paglalarawan", "desktopResText": "Desktop Res", @@ -568,6 +581,7 @@ "disableXInputDescriptionText": "Pumayag ng higit sa 4 na controllers ngunit maaaring hindi mabuti ang kalagay", "disableXInputText": "Disable XInput", "disabledText": "Naka-disabled", + "discardText": "Iwaksi", "discordFriendsText": "Gusto mong may kalaro kang mga tao na gusto mo?\nSumali sa aming Discord server at hanapin mo ang kaibiganin mo!", "discordJoinText": "Sumali sa Discord", "doneText": "Tapusin", @@ -594,19 +608,19 @@ "colorText": "kulay", "getMoreCharactersText": "Bumili ng Higit pang mga Karakter...", "getMoreIconsText": "Bumili ng Higit pang Tatak...", - "globalProfileInfoText": "Ang mga karakter ng manlalaro na panglahatan ay garantisadong magkaroon ng magkaiba na pangalan sa buong mundo.\nMayroon din silang mga ibang tatak.", + "globalProfileInfoText": "Ang mga karakter ng manlalaro na panglahatan ay garantisadong magkaroon \nng magkaiba na pangalan sa buong mundo. Mayroon din silang ibang tatak.", "globalProfileText": "(karakter para sa mundo)", "highlightText": "Pangalawang Kulay", "iconText": "tatak", - "localProfileInfoText": "Ang mga karakter ng lokal na manlalaro\nay wala silang tatak at ang kanilang \nmga pangalan ay hindi garantisadong pambihira. Idakila para maging isang pinakasikat na karakter at makalaan ng isang pambihira na pangalan at madagdag ang iyong sariling tatak para sa buong mundo.", + "localProfileInfoText": "Ang mga karakter ng lokal na manlalaro ay wala silang tatak at ang kanilang \nmga pangalan ay hindi garantisadong pambihira. Idakila iyong pinakasikat\n na karakter at ang sariling pambihirang pangalan at tatak para sa buong mundo.", "localProfileText": "(lokal na karakter)", "nameDescriptionText": "Pangalan Ng Manlalaro", "nameText": "Pangalan", "profileAlreadyExistsText": "Mayroon nang isang manlalaro na may ganyang pangalan.", - "randomText": "Basta-basta", + "randomText": "basta-basta", "titleEditText": "Ayusin Ang Profile", "titleNewText": "Bagong Profile", - "unavailableText": "Meron na o Hindi wasto ang \"${NAME}\" na ito; subukin tawagin ng ibang pangalan.", + "unavailableText": "Meron na o Hindi wasto ang \"${NAME}\" na ito; subukin ang ibang pangalan.", "upgradeProfileInfoText": "Irereserba nito ang pangalan ng iyong manlalaro sa buong mundo\nat nagbibigay-daan sa iyong magtalaga ng ibang tatak dito.", "upgradeToGlobalProfileText": "Taasin sa Global na Profile" }, @@ -650,6 +664,8 @@ "errorText": "Error", "errorUnknownText": "error na ‘di malaman", "exitGameText": "Exit mula sa ${APP_NAME}?", + "expiredAgoText": "Tinapos na noong ${T}", + "expiresInText": "Magtatapos sa ${T}", "exportSuccessText": "Na-export ang '${NAME}'.", "externalStorageText": "External na Storage", "failText": "Bigo", @@ -687,11 +703,11 @@ "pointsToWinText": "Puntos Upang Maitupad", "seriesLengthText": "Haba ng Serye", "showTutorialText": "Ipakita Ang Tutorial", - "shuffleGameOrderText": "I-shuffle Ang Kaayusan Ng Laro", - "titleText": "Ayusin Ang ${TYPE} Playlists" + "shuffleGameOrderText": "Paghalu-haluin Ang Kaayusan Ng Laro", + "titleText": "Ayusin Ang Playlist ng ${TYPE}" }, "gameSettingsWindow": { - "addGameText": "Maglagay ng Laro" + "addGameText": "Magdagdag ng Laro" }, "gamesToText": "${WINCOUNT} na laro kontra sa ${LOSECOUNT}", "gatherWindow": { @@ -711,6 +727,7 @@ "copyCodeConfirmText": "Nakopya na ang kowd sa clipboard.", "copyCodeText": "Kopyahin ang kowd", "dedicatedServerInfoText": "Para sa pinakamahusay na mga resulta, mag-set up ng nakalaang server. Tingnan ang bombsquadgame.com/server para malaman kung paano.", + "descriptionShortText": "Ipamahala ang panig \"Sumama\" upang magtipun-tipon ng isang partido.", "disconnectClientsText": "Ididiskonekta nito ang ${COUNT} (mga) manlalaro\nsa iyong partido. Sigurado ka ba?", "earnTicketsForRecommendingAmountText": "Makakatanggap ang mga kaibigan ng ${COUNT} na tiket kung susubukan nila ang laro\n(at makakatanggap ka ng ${YOU_COUNT} para sa bawat gagawa)", "earnTicketsForRecommendingText": "Ibahagi ang laro\npara makatanggap ng mga libreng tiket…", @@ -822,6 +839,12 @@ "youHaveShortText": "mayroon kang ${COUNT}", "youHaveText": "mayroon kang ${COUNT} na tiket" }, + "goldPass": { + "desc1InfTokensText": "Walang hanggang Sagisag", + "desc2NoAdsText": "Walang mga ad.", + "desc3ForeverText": "Magpakailanman.", + "goldPassText": "Gintong Pahintulot" + }, "googleMultiplayerDiscontinuedText": "Pasensya na, hindi na available ang multiplayer na serbisyo ng Google.\nGumagawa ako ng kapalit sa lalong madaling panahon.\nHanggang doon, mangyaring sumubok ng ibang paraan ng koneksyon.\n-Eric", "googlePlayPurchasesNotAvailableText": "Hindi puwede ang mga pagbili sa Google Play nito.\nMaaaring kailanganin mong ibaguhin ang iyong store app.", "googlePlayServicesNotAvailableText": "Hindi pwede ang Google Play Services sa ngayon.\n‘Di magagana ang takbo ng ilang mga app.", @@ -849,7 +872,7 @@ "helpWindow": { "bombInfoText": "- Bomba -\nMas malakas pa sa suntok, ngunit\nmaaaring magresulta sa matinding pananakit sa sarili.\nPara sa pinakamahusay na mga resulta, ihagis mo patungo sa\nkalaban bago ito'y sumabog.", "bombInfoTextScale": 0.5, - "canHelpText": "Makakatulong ang ${APP_NAME}.", + "canHelpText": "Makakatulong ang ${APP_NAME} para sa iyo.", "controllersInfoText": "Maaari mong laruin ang ${APP_NAME} kasama ng mga kaibigan sa isang network, o ikaw\nlahat ay maaaring maglaro sa parehong device kung mayroon kang sapat na mga controller.\nSinusuportahan ng ${APP_NAME} ang iba't ibang mga ito; maaari ka ring gumamit ng mga telepono\nbilang mga controller sa pamamagitan ng libreng '${REMOTE_APP_NAME}' app.\nTingnan ang Mga Setting->Controller para sa higit pang impormasyon.", "controllersInfoTextRemoteOnly": "Maaari mong laruin ang ${APP_NAME} kasama ng mga kaibigan sa isang network, o ikaw\nlahat ay maaaring maglaro sa parehong device sa pamamagitan ng paggamit ng mga phones bilang\nmga controller sa pamamagitan ng libreng '${REMOTE_APP_NAME}' app.", "controllersText": "Mga Controllers", @@ -861,24 +884,24 @@ "friendsText": "Mga Kaibigan", "jumpInfoText": "-Tumalon-\nTumalon upang tumawid sa maliliit na puwang,\nupang ihagis ang mga bagay na mas mataas, at\nupang ipahayag ang damdamin ng kagalakan.", "jumpInfoTextScale": 0.5, - "orPunchingSomethingText": "O sumuntok ng isang bagay, itinapon ito sa isang bangin, at pinasabog ito habang pababa gamit ang isang malagkit na bomba.", + "orPunchingSomethingText": "O sumuntok ng isang bagay, maghagis sa isang bangin, at pinasabog habang pababa gamit ang isang malagkit na bomba.", "pickUpInfoText": "- Pulutin -\nKunin ang mga flag, mga kaaway, o anumang bagay\nkung hindi ay hindi naka-bold sa lupa.\nPindutin muli upang ihagis.", "pickUpInfoTextScale": 0.5, "powerupBombDescriptionText": "Payagan kang maglabas ng tatlong bomba\nsa isang hilera sa halip na isa lamang.", "powerupBombNameText": "Tatlong-Bomba", "powerupCurseDescriptionText": "Malamang na gusto mong iwasan ang mga ganito.\n ...o sige lang?", "powerupCurseNameText": "Sumpa", - "powerupHealthDescriptionText": "Ibangon ka sa buong kalusugan.\nHindi mo naisip nito.", - "powerupHealthNameText": "Medikal-Pakete", - "powerupIceBombsDescriptionText": "Mas mahina kaysa sa mga normal na bomba\nngunit nagyelo ang iyong mga kalaban\nat partikular na mabasag.", + "powerupHealthDescriptionText": "Ibangon ka sa mapunong kalusugan.\nNaasahan mo naman.", + "powerupHealthNameText": "Pakete-Medikal", + "powerupIceBombsDescriptionText": "Mas mahina kaysa sa mga bombang karaniwan\nngunit nagyelo ang iyong mga kalaban\nat partikular na mabasag sila.", "powerupIceBombsNameText": "Bombang-Yelo", "powerupImpactBombsDescriptionText": "Medyo mahina kaysa sa regular\nbomba, ngunit sumasabog ito kapag nabagsak.", "powerupImpactBombsNameText": "Bombang-Gatilyo", - "powerupLandMinesDescriptionText": "Ang mga ito ay dumating sa mga pakete ng 3;\nKapaki-pakinabang para sa base defense o\npaghinto ng mga mabibilis na kalaban.", + "powerupLandMinesDescriptionText": "Ito ay naglalaman sa dami ng 3;\nKapaki-pakinabang para sa pagdepensa o\npaghinto ng mga mabibilis na kalaban.", "powerupLandMinesNameText": "Mina", "powerupPunchDescriptionText": "Ang iyong mga suntok ay mas mahirap,\nmas mabilis, mas mahusay, at mas malakas.", "powerupPunchNameText": "Guwantes", - "powerupShieldDescriptionText": "Pumigil na pagsakit\nkaya hindi mo kailangan.", + "powerupShieldDescriptionText": "Pumigil na pagsakit\nPara mas guminhawa.", "powerupShieldNameText": "Enrhiyang-Kalasag", "powerupStickyBombsDescriptionText": "Dumikit sa anumang matamaan nila.\nIto’y naging pagtawanan.", "powerupStickyBombsNameText": "Bombang-Malagkit", @@ -900,6 +923,7 @@ "importText": "I-Import", "importingText": "Nag-Iimport…", "inGameClippedNameText": "Sa in-game ay naging\n\"${NAME}\"", + "inboxText": "Inbaks", "installDiskSpaceErrorText": "ERROR: Hindi makumpleto ang pag-install.\nMaaaring wala ka nang espasyo sa iyong device.\nMag-clear ng ilang espasyo at subukang muli.", "internal": { "arrowsToExitListText": "pindutin ang ${LEFT} o ${RIGHT} upang mawala sa listahan", @@ -910,7 +934,7 @@ "connectedToPartyText": "Sumali sa party ni ${NAME}!", "connectingToPartyText": "Nagdudugtong….", "connectionFailedHostAlreadyInPartyText": "Nabigo ang koneksyon; nasa ibang party ang host.", - "connectionFailedPartyFullText": "Nabigo ang koneksyon; puno na ang party.", + "connectionFailedPartyFullText": "Nabigo ang koneksyon; puno na po.", "connectionFailedText": "Nabigo ang koneksyon.", "connectionFailedVersionMismatchText": "Nabigo ang koneksyon; nagpapatakbo ang host ng ibang bersyon ng laro.\nTiyaking pareho kayong napapanahon at subukang muli sumali.", "connectionRejectedText": "Tinanggihan ang koneksyon.", @@ -937,29 +961,31 @@ "invitationsSentText": "${COUNT} (na) imbitasyon ang napadala.", "joinedPartyInstructionsText": "May sumali sa iyong partido.\nPumunta sa 'Maglaro' para magsimula ng laro.", "keyboardText": "Keyboard", - "kickIdlePlayersKickedText": "na-kicked si ${NAME} dahil sa pagiging idle.", - "kickIdlePlayersWarning1Text": "I-kikick si ${NAME} sa loob ng ${COUNT} (na) segundo kung idle pa rin.", - "kickIdlePlayersWarning2Text": "(maaari mong i-off ito sa Mga Setting -> Advanced)", + "kickIdlePlayersKickedText": "nalayas si ${NAME} dahil hindi gumagalaw.", + "kickIdlePlayersWarning1Text": "Lalayas si ${NAME} sa loob ng ${COUNT} (na) segundo kung hindi pa rin gumagalaw.", + "kickIdlePlayersWarning2Text": "(maaari mong isara ito sa \"Mga Setting\" -> \"Mga Iba Pa\")", "leftGameText": "Umalis ka sa '${NAME}'.", "leftPartyText": "Umalis ka sa party ni ${NAME}.", "noMusicFilesInFolderText": "Walang mga file ng musika ang folder.", "playerJoinedPartyText": "Sumali si ${NAME} sa party mo!", "playerLeftPartyText": "Umalis si ${NAME} sa party mo.", - "rejectingInviteAlreadyInPartyText": "Pagtanggi sa imbitasyon (nasa isang party na).", - "serverRestartingText": "Nagre-restart ang server. Mangyaring sumali muli sa isang saglit…", + "rejectingInviteAlreadyInPartyText": "Natanggi ang imbitasyon (nasa isang party ka na).", + "serverRestartingText": "Umuulit ang server. Mangyaring sumali muli sa isang saglit…", "serverShuttingDownText": "Nagsasara ang server...", - "signInErrorText": "Error sa pag-sign in.", + "signInErrorText": "May problema sa pagpasok sa account.", "signInNoConnectionText": "Hindi makapag-sign in. (walang koneksyon ang Wi-Fi mo?)", "telnetAccessDeniedText": "ERROR: ang user ay hindi nagbigay ng access sa telnet.", "timeOutText": "(time out sa ${TIME} segundo)", "touchScreenJoinWarningText": "Sumali ka gamit ang touchscreen.\nKung ito ay isang pagkakamali, i-tap ang 'Menu->Umalis sa Laro' kasama nito.", "touchScreenText": "TouchScreen", + "unableToCompleteTryAgainText": "Hindi maaaring maitapos ito sa ngayon.\nMaaaring mo ulitin.", "unableToResolveHostText": "Error: hindi malutas ang host.", "unavailableNoConnectionText": "Ito’y kasalukuyang hindi magagamit (walang koneksyon sa internet?)", "vrOrientationResetCardboardText": "Gamitin ito upang i-reset ang oryentasyon ng VR.\nUpang maglaro ng laro kakailanganin mo ng isang panlabas na controller.", "vrOrientationResetText": "Pag-reset ng oryentasyon ng VR.", "willTimeOutText": "(magta-time out kung idle)" }, + "inventoryText": "Imbentaryo", "jumpBoldText": "TALON", "jumpText": "Talon", "keepText": "Panatilihin", @@ -967,17 +993,17 @@ "keyboardChangeInstructionsText": "I-double press space para mapalitan ang mga keyboard.", "keyboardNoOthersAvailableText": "Walang ibang mga keyboard na magagamit.", "keyboardSwitchText": "Nagpapalit ng keyboard sa \"${NAME}\".", - "kickOccurredText": "na-kicked si ${NAME}", - "kickQuestionText": "I-Kick si ${NAME}?", - "kickText": "I-Kick", - "kickVoteCantKickAdminsText": "Hindi ma-kick ang mga admin.", - "kickVoteCantKickSelfText": "Hindi mo ma-kick ng sarili mo.", - "kickVoteFailedNotEnoughVotersText": "Hindi marami ang mga manlalaro para sa isang boto.", - "kickVoteFailedText": "Nabigo ang kick-vote.", - "kickVoteStartedText": "Sinimulan na ang isang kick vote para kay ${NAME}.", - "kickVoteText": "Bumoto sa Pagki-kick", + "kickOccurredText": "Napalayas si ${NAME} dito.", + "kickQuestionText": "Palayasin si ${NAME}?", + "kickText": "Palayasin", + "kickVoteCantKickAdminsText": "Hindi pwedeng palayasin ang Mga Ninuno dito.", + "kickVoteCantKickSelfText": "Hindi mo mailayas ang iyong sarili.", + "kickVoteFailedNotEnoughVotersText": "Konti ang mga naglalaro upang magbutuhan.", + "kickVoteFailedText": "Hindi maipalayas mula sa pagbutuhan.", + "kickVoteStartedText": "Sinimulan ang butuhan upang palayasin dito si ${NAME}.", + "kickVoteText": "Bumoto para Ipalayas", "kickVotingDisabledText": "Naka-disable ang kick voting.", - "kickWithChatText": "I-type ang ${YES} sa chat para sa oo at ${NO} para sa hindi.", + "kickWithChatText": "Pindutin ang ${YES} sa iyong puwang salitahan kung oo at ${NO} kung hindi.", "killsTallyText": "${COUNT} pinatay", "killsText": "Pinatay", "kioskWindow": { @@ -991,7 +1017,7 @@ }, "languageSetText": "Ang wika ay \"${LANGUAGE}\" sa ngayon.", "lapNumberText": "Ikot ${CURRENT}/${TOTAL}", - "lastGamesText": "(huling ${COUNT} na laro)", + "lastGamesText": "(sa huling ${COUNT} na laro)", "leaderboardsText": "Ranggo Ng Mga Pasimuno", "league": { "allTimeText": "Lahat Ng Oras", @@ -1002,12 +1028,15 @@ "rankInLeagueText": "#${RANK}, ${NAME} ${SUFFIX} na Liga", "seasonEndedDaysAgoText": "Tumapos na ang season noong ${NUMBER} na araw.", "seasonEndsDaysText": "Matatapos ang season sa ${NUMBER} (na) araw.", - "seasonEndsHoursText": "Matatapos ang season sa ${NUMBER} (na) oras.", + "seasonEndsHoursText": "Matatapos ang season na ito sa ${NUMBER} (na) oras.", "seasonEndsMinutesText": "Matatapos ang season sa ${NUMBER} (na) minuto.", "seasonText": "Ika-${NUMBER} na season", "tournamentLeagueText": "Dapat mong maabot ang liga ng ${NAME} upang makapasok sa paligsahan na ito.", - "trophyCountsResetText": "Ire-reset ang mga bilang ng tropeo sa susunod na season." + "trophyCountsResetText": "Ire-reset ang mga bilang ng tropeo sa susunod na season.", + "upToDateBonusDescriptionText": "Ang mga naglalaro ng mas bagong bersyon ng laro \nna ito ay tatanggap ng ${PERCENT}% na abono rito.", + "upToDateBonusText": "Abono sa Makabago" }, + "learnMoreText": "Alamin", "levelBestScoresText": "Pinakamahusay na mga iskor sa ${LEVEL}", "levelBestTimesText": "Pinakamahusay na lahat sa ${LEVEL}", "levelIsLockedText": "Naka-lock ang ${LEVEL}.", @@ -1024,7 +1053,7 @@ "macControllerSubsystemMFiText": "Made-for-iOS/Mac", "macControllerSubsystemTitleText": "Suporta sa Controller", "mainMenu": { - "creditsText": "Mga Kredito", + "creditsText": "Karangalan", "demoMenuText": "Demo na Menu", "endGameText": "Itigil ang Laro", "endTestText": "Itigil ang Test", @@ -1051,6 +1080,8 @@ "modeArcadeText": "Arcade na Mode", "modeClassicText": "Klasikong Mode", "modeDemoText": "Mode na Demo", + "moreSoonText": "Marami pang darating...", + "mostDestroyedPlayerText": "Pinakanapinsalang Manlalaro", "mostValuablePlayerText": "Pinakamalupit sa lahat", "mostViolatedPlayerText": "Pinakanakawawa sa lahat", "mostViolentPlayerText": "Pinakamadugo sa lahat", @@ -1067,6 +1098,7 @@ "nameSuicideText": "Nagpakamatay si ${NAME}.", "nameText": "Pangalan", "nativeText": "Natural", + "newExclaimText": "Bagong-bago!", "newPersonalBestText": "Bagong personal na pinakamahusay!", "newTestBuildAvailableText": "Available ang isang mas bagong pagsubok na build! (${VERSION} build ${BUILD}).\nKunin ito sa ${ADDRESS}", "newText": "Gumawa ng Bago", @@ -1074,9 +1106,10 @@ "nextAchievementsText": "Mga Susunod na Nakamit:", "nextLevelText": "Susunod na Antas", "noAchievementsRemainingText": "- wala", - "noContinuesText": "(hindi i-continue)", + "noContinuesText": "(walang tuluyan)", "noExternalStorageErrorText": "Walang nakitang external na storage sa device na ito", "noGameCircleText": "Error: hindi naka-log in sa GameCircle", + "noMessagesText": "Walang mga message.", "noPluginsInstalledText": "Hindi Nakabit ang mga Plugin", "noScoresYetText": "Wala pang score.", "noServersFoundText": "Walang nahanap na servers.", @@ -1085,6 +1118,7 @@ "noValidMapsErrorText": "Walang nakitang valid na mapa para sa ganitong uri ng laro.", "notEnoughPlayersRemainingText": "Hindi marami na manlalaro ang natitira; umalis at magsimula ng bagong laro.", "notEnoughPlayersText": "Kailangan mo ng atleast ${COUNT} na manlalaro upang simulan ang larong ito!", + "notEnoughTicketsText": "Kulang ang iyong bilang ng tiket!", "notNowText": "Hindi muna ngayon", "notSignedInErrorText": "Dapat kang mag-sign in para magawa ito.", "notSignedInGooglePlayErrorText": "Dapat kang mag-sign in gamit ang Google Play para magawa ito.", @@ -1097,10 +1131,13 @@ "onText": "Nakabuksan", "oneMomentText": "Saglit lang…", "onslaughtRespawnText": "Ang ${PLAYER} ay respawn sa ika-${WAVE} na yugto", + "openMeText": "Buksan Mo 'Ko!", + "openNowText": "Ibuksan Ngayon", + "openText": "Ibuksan", "orText": "${A} o ${B}", "otherText": "Iba Pa…", "outOfText": "(#${RANK} sa ${ALL})", - "ownFlagAtYourBaseWarning": "Ang iyong sariling watawat ay dapat na\nsa iyong base upang makapuntos!", + "ownFlagAtYourBaseWarning": "Ang iyong sariling watawat ay dapat na\nsa lagayan nito upang makapuntos!", "packageModsEnabledErrorText": "Ang network-play ay hindi pinapayagan habang ang local-package-mods ay pinagana (tingnan ang Mga Setting->Advanced)", "partyWindow": { "chatMessageText": "Mensahe", @@ -1144,7 +1181,7 @@ "playlistNotFoundText": "hindi nahanap ang playlist", "playlistText": "Playlist", "playlistsText": "Mga Playlist", - "pleaseRateText": "Kung nae-enjoy mo ang ${APP_NAME}, mangyaring isaalang-alang ang \npagkuha na sandali lang at i-rate ito o pagsulat ng isang pagsusuri. Nagbibigay ito ngkapaki-pakinabang na feedback at \ntumutulong sa pagsuporta sa pag-unlad sa hinaharap.\n\nsalamat!\n-eric", + "pleaseRateText": "Kung nasasaya ka sa larong ${APP_NAME} na ito, mangyaring isaalang-alang\numisip sa isang sandali at i-grado ito o sumulat ng isang pagsusuri. Nagbibigay ito ng kapaki-pakinabang na puna at\ntumutulong ito sa pagsuporta sa aming pag-uunlad sa hinaharap.\n\nsalamat po!\n-eric", "pleaseWaitText": "Hintay lang…", "pluginClassLoadErrorText": "Error sa paglo-load ang '${PLUGIN}' na klaseng plugin : ${ERROR}", "pluginInitErrorText": "Error sa pagsisimula ang '${PLUGIN}' na plugin: ${ERROR}", @@ -1162,9 +1199,9 @@ "pressAnyKeyButtonPlayAgainText": "Pindutin ang anumang key/button para maglaro muli...", "pressAnyKeyButtonText": "Pindutin ang anumang key/button para magpatuloy...", "pressAnyKeyText": "Pindutin ang anumang key…", - "pressJumpToFlyText": "** Pindutin ang tumalon nang paulit-ulit upang lumipad **", + "pressJumpToFlyText": "** Pindutin ang pindutang \"tumalon\" nang paulit-ulit upang lumipad **", "pressPunchToJoinText": "Pindutin ang SUNTOK para sumali...", - "pressToOverrideCharacterText": "pindutin ang ${BUTTONS} upang i-override ang iyong karakter", + "pressToOverrideCharacterText": "pindutin ang ${BUTTONS} upang mapalitan ang iyong itsura ng karakter", "pressToSelectProfileText": "pindutin ang ${BUTTONS} upang pumili ng manlalaro", "pressToSelectTeamText": "pindutin ang ${BUTTONS} para pumili ng team", "promoCodeWindow": { @@ -1182,6 +1219,8 @@ "punchText": "Suntok", "purchaseForText": "Ipagbili ng ${PRICE}", "purchaseGameText": "Ibili ang laro", + "purchaseNeverAvailableText": "Pasensya na, ang pagbibili rito ay ipinagbawal sa pangangatawan na ito.\nSubukang pumasok sa iyong account sa ibang plataporma at bumili doon", + "purchaseNotAvailableText": "Hindi mo maaaring bumili ito.", "purchasingText": "Nagbabayad...", "quitGameText": "Ihinto ang ${APP_NAME}?", "quittingIn5SecondsText": "Humihinto sa loob ng 5 segundo...", @@ -1209,7 +1248,7 @@ "dpad_size": "Laki ng D-Pad", "dpad_type": "Uri ng D-Pad", "enter_an_address": "Maglagay ng Address", - "game_full": "Ang laro ay puno na o hindi tumatanggap ng mga koneksyon.", + "game_full": "Ang laro ay alinman puno na o hindi tumatanggap ng mga koneksyon.", "game_shut_down": "Nagsara ang laro.", "hardware_buttons": "Mga Pindutan ng Hardware", "join_by_address": "Sumali sa pamamagitan ng Address...", @@ -1223,6 +1262,7 @@ "version_mismatch": "Hindi tugma ang bersyon.\nTiyaking BombSquad at BombSquad Remote\nay ang mga pinakabagong bersyon at subukang muli." }, "removeInGameAdsText": "I-unlock ang \"${PRO}\" sa tindahan upang alisin ang mga in-game na ad.", + "removeInGameAdsTokenPurchaseText": "TAKDANG PAGHAHANDOG:Bumili ng KAHIT ANONG paketeng sagisag para mawala ang mga in-game ads.", "renameText": "I-palitan", "replayEndText": "Itigil Ang Replay", "replayNameDefaultText": "Replay ng Huling Laro", @@ -1277,12 +1317,14 @@ "devToolsText": "Kagamitan sa Paggawa", "disableCameraGyroscopeMotionText": "Itigil ang mosyong dyayroskop ng larawan", "disableCameraShakeText": "Huwag paganahin ang alog ng larawan", - "disableThisNotice": "(maaari mong ipatigil ang paunwa na ito sa setting \"Mga Iba Pa\")", + "disableThisNotice": "(maaari mong ipatigil ang paunawa na ito sa setting \"Mga Iba Pa\")", "enablePackageModsDescriptionText": "(nagpapagana ng mga karagdagang kakayahan sa pag-modding ngunit hindi pinapagana ang net-play)", "enablePackageModsText": "Paganahin ang Lokal na Package Mods", "enterPromoCodeText": "Ilagay ang Kowd", "forTestingText": "Tandaan: ang mga value na ito ay para lamang sa pagsusuri at mawawala ito kapag umalis ka sa larong ito.", - "helpTranslateText": "Ang mga pagsasalin na hindi Ingles ng ${APP_NAME} ay isang komunidad\nsuportadong pagsisikap. Kung gusto mong mag-ambag o magtama\nisang pagsasalin, sundan ang link sa ibaba. Salamat!", + "helpTranslateText": "Ang mga pagsasalin na bukod sa Ingles ng ${APP_NAME} ay isang pagsisikap na \nsuporta ng komunidad dito sa larong ito. Kung gusto mong mag-ambag o magtama \nng isa o higit pang pagsasalin, sundan ang link sa ibaba. Salamat po muli!", + "insecureConnectionsDescriptionText": "Hindi ito irerekomenda, ngunit pwede maglaro nang online \nmula sa ibang bansa o network na limitado.", + "insecureConnectionsText": "Gumamit ng koneksyong walang seguridad", "kickIdlePlayersText": "Ipalayas ang mga manlalarong hindi gumagalaw", "kidFriendlyModeText": "Pamamaraang Pambata (walang tinding karahasan, atbp)", "languageText": "Wika", @@ -1321,16 +1363,16 @@ "soloNameFilterText": "Pinag-iisang ${NAME}", "soundtrackTypeNames": { "CharSelect": "Pagpili ng Karakter", - "Chosen One": "Piniling Isa", + "Chosen One": "Ang Piniling Isa", "Epic": "Larong Madakila", "Epic Race": "Dakilang Takbuhan", "FlagCatcher": "Agawang Bandila", - "Flying": "Masayang Isip", + "Flying": "Isipang Masaya", "Football": "Rugbi", - "ForwardMarch": "Pag-atake", + "ForwardMarch": "Dadaluhungin", "GrandRomp": "Pagsakop", "Hockey": "Haki", - "Keep Away": "Layuan Mo", + "Keep Away": "Hawakang Bandila", "Marching": "Bantayan", "Menu": "Pangunahing Menu", "Onslaught": "Pagsalakay", @@ -1343,6 +1385,7 @@ }, "spaceKeyText": "space", "statsText": "Katayuan", + "stopRemindingMeText": "Itigil ang paalala", "storagePermissionAccessText": "Nangangailangan ito ng pagpasok sa storage", "store": { "alreadyOwnText": "Nabili mo na ang ${NAME}!", @@ -1364,10 +1407,10 @@ "miniGamesText": "Mga Lalaruhin", "oneTimeOnlyText": "(isang beses lang)", "purchaseAlreadyInProgressText": "Ang isang nabilhin ng item na ito ay isinasagawa na.", - "purchaseConfirmText": "Bilhin ang ${ITEM}?", + "purchaseConfirmText": "Bilhin ang ${ITEM} na ito?", "purchaseNotValidError": "Hindi wasto ang nabilhin.\nMakipag-ugnayan kay ${EMAIL} kung ito ay isang error.", "purchaseText": "Bilhin", - "saleBundleText": "Diskwento ng Bundle!", + "saleBundleText": "Diskwento ng Balutan!", "saleExclaimText": "Diskwento!", "salePercentText": "(${PERCENT}% diskwento)", "saleText": "BAWAS", @@ -1385,25 +1428,26 @@ "customize2Text": "I-customize ang mga character, mini-game, at maging ang mga soundtrack.", "customizeText": "I-customize ang mga character at gumawa ng sarili mong mga mini-game playlist.", "sportsMoreFunText": "Mas masaya ang sports na may pampasabog.", - "teamUpAgainstComputerText": "Makipagtulungan laban sa computer." + "teamUpAgainstComputerText": "Makipagtulungan laban sa kumukusa." }, "storeText": "Tindahan", "submitText": "Ipasa", "submittingPromoCodeText": "Pinapasa ang Kowd...", - "successText": "Wakas!", + "successText": "Matagumpay!", "supportEmailText": "Pag may problema sa app, \npaki-email ang ${EMAIL}.", - "teamNamesColorText": "Mga Pangalan/Kulay ng Team…", + "teamNamesColorText": "Mga Pangalan/Kulay ng Kampihan…", "telnetAccessGrantedText": "Pinagana ang pag-access sa Telnet..", "telnetAccessText": "Natuklasan ang pag-access sa Telnet; payagan?", "testBuildErrorText": "Ang test build na ito ay hindi na aktibo; mangyaring suriin para sa isang bagong bersyon.", "testBuildText": "Test Build", - "testBuildValidateErrorText": "Hindi ma-validate ang test build. (walang koneksyon sa internet?)", - "testBuildValidatedText": "Na-validate ang Test Build; Tamasahin!", - "thankYouText": "Salamat sa iyong suporta! Tangkilikin ang laro!!", + "testBuildValidateErrorText": "Hindi nawasto ang test build. (walang koneksyon sa internet?)", + "testBuildValidatedText": "Napawasto ang Test Build; Tamasahin!", + "thankYouText": "Salamat po sa iyong pagsuporta! Tangkilikin ang laro na ito!!", "threeKillText": "TRIPLENG PAGPATAY!!", - "timeBonusText": "Bonus sa Oras", + "ticketsDescriptionText": "Ang tiket ay magagamit upang magamit ang mga karakter, \nmapa, lalaruhin, at iba pa sa tindahan.\n\nAng tiket ay maaaring mahanap sa mga baul mula sa pagtagumpay \nsa kampanya, paligsahan, at mga makamtan.", + "timeBonusText": "Sigla sa Oras", "timeElapsedText": "Oras Na Lumipas", - "timeExpiredText": "Tapos Na!", + "timeExpiredText": "Lagpas Na!", "timeSuffixDaysText": "${COUNT}d", "timeSuffixHoursText": "${COUNT}h", "timeSuffixMinutesText": "${COUNT}m", @@ -1411,14 +1455,28 @@ "tipText": "Isang Payo", "titleText": "BombSquad", "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "Bumili Ng Mga Sagisag", + "notEnoughTokensText": "Hindi sapat ang iyong mga sagisag para rito!", + "numTokensText": "${COUNT} Mga Sagisag", + "openNowDescriptionText": "May sapat kang token para \nmabuksan mo na ito ngayon – \nhindi mo na kailangang maghintay.", + "shinyNewCurrencyText": "Isang makintab na bagong pera ng BombSquad.", + "tokenPack1Text": "Maliit-Paketeng Sagisag", + "tokenPack2Text": "Katamtamang Paketeng Sagisag", + "tokenPack3Text": "Malaking Paketeng Sagisag", + "tokenPack4Text": "Pinakamalaking Paketeng Sagisag", + "tokensDescriptionText": "Ang Sagisag ay ginagamit upang bumilis ang pagbuksan ng \nmga baul at para sa ibang katangiang ng account at larong ito.\n\nMaaari kang manalo ng mga sagisag \nsa mga laruhin o bumili ang mga pakete nito. \nO kaya bumili ng \"Gintong Pahintulot\" upang mawalang-hanggan", + "youHaveGoldPassText": "Mayroon ka nang Gintong Pahintulot.\nLahat ng mga pagbili ng mga Sagisag ay libre na.\nIkasaya mo na!" + }, "topFriendsText": "Pinakamataas sa mga Kaibigan", "tournamentCheckingStateText": "Sinusuri ang estado ng paligsahan; pakihintay...", "tournamentEndedText": "Natapos na ang paligsahan na ito. Magsisimula ng bago mamaya.", "tournamentEntryText": "Pagpasok sa Paligsahan", + "tournamentFinalStandingsText": "Pinaka-tapos na Standing", "tournamentResultsRecentText": "Mga Resulta ng Kamakailang Paligsahan", - "tournamentStandingsText": "Mga Paninindigan sa Paligsahan", + "tournamentStandingsText": "Mga Puwesto sa Paligsahan", "tournamentText": "Paligsahan", - "tournamentTimeExpiredText": "Na-expire Na Ang Oras Ng Paligsahan", + "tournamentTimeExpiredText": "Natapos Na Ang Oras Ng Paligsahan Na Ito", "tournamentsDisabledWorkspaceText": "Hindi ka pwede maglaro ng mga paligsahan kapag aktibo ang mga workspace. \nIsara muna ang iyong workspace at ulitin ang larong ito upang makipaglaro sa paligsahan.", "tournamentsText": "Mga Paligsahan", "translations": { @@ -1470,24 +1528,36 @@ "Uber Onslaught": "Kasukdulang Pagsalakay", "Uber Runaround": "Kasukdulang Bantayan" }, + "displayItemNames": { + "${C} Tickets": "${C} Tickets", + "${C} Tokens": "${C} Tokens", + "Chest": "Chest", + "L1 Chest": "L1 Chest", + "L2 Chest": "L2 Chest", + "L3 Chest": "L3 Chest", + "L4 Chest": "L4 Chest", + "L5 Chest": "L5 Chest", + "L6 Chest": "L6 Chest", + "Unknown Chest": "Hindi kilala na chest" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Maging ang napili ng tiyak na oras para manalo.\nPatayin ang napili para maging isa nito.", - "Bomb as many targets as you can.": "Bomba ng maraming target hangga't maaari mo.", + "Bomb as many targets as you can.": "Bombahin ang maraming patamaan hangga't maaari mo.", "Carry the flag for ${ARG1} seconds.": "Hawakan ang bandila sa loob ng ${ARG1} segundo.", "Carry the flag for a set length of time.": "Hawakan ang bandila para sa isang nakatakdang haba ng oras.", "Crush ${ARG1} of your enemies.": "Patayin ang ${ARG1} ng iyong mga kalaban", - "Defeat all enemies.": "Talunin ang lahat ng iyong mga kalaban", + "Defeat all enemies.": "Talunin ang lahat ng mga kalaban.", "Dodge the falling bombs.": "Iwasan ang bumabagsak na bomba.", - "Final glorious epic slow motion battle to the death.": "Huling maluwalhating epic slow motion na labanan hanggang kamatayan.", + "Final glorious epic slow motion battle to the death.": "Ito na ang huling maluwalhating na labanan sa isang dakilang pabagalang galaw hanggang sa kamatayan.", "Gather eggs!": "Ipunin ng mga itlog!", - "Get the flag to the enemy end zone.": "Kunin ang bandila patungo sa dulong lugar ng kalaban.", + "Get the flag to the enemy end zone.": "Hawakin ang bandila patungo sa dulong lugar ng kalaban.", "How fast can you defeat the ninjas?": "Gaano kabilis mo matatalo ang mga ninja?", "Kill a set number of enemies to win.": "Pumatay ng isang set na bilang ng mga kalaban upang manalo.", - "Last one standing wins.": "Kung sino ang huling nakatayo ang siyang mananalo.", + "Last one standing wins.": "Kung sino ang huling nabuhay ang siyang mananalo.", "Last remaining alive wins.": "Kung sino ang huling natitirang buhay ang siyang mananalo.", "Last team standing wins.": "Kung sino ang huling katayuan ng koponan ang siyang mananalo", "Prevent enemies from reaching the exit.": "Pigilan ang mga kalaban na makarating at makalabas sa labasan.", - "Reach the enemy flag to score.": "Abutin ang bandila ng kalaban upang maka-iskor.", + "Reach the enemy flag to score.": "Ihawak ang bandila ng kalaban upang maka-iskor.", "Return the enemy flag to score.": "Ibalik ang watawat ng kalaban upang maka-iskor.", "Run ${ARG1} laps.": "Tumakbo ng ${ARG1} ikot", "Run ${ARG1} laps. Your entire team has to finish.": "Tumakbo ng {ARG1} ikot. Kailangang matapos ang iyong buong team na ito.", @@ -1510,8 +1580,8 @@ "Touch the enemy flag.": "Humawak sa bandera ng iyong kalaban.", "carry the flag for ${ARG1} seconds": "Hawakan ang bandila ng ${ARG1} segundo", "kill ${ARG1} enemies": "patayin ang ${ARG1} na mga kalaban.", - "last one standing wins": "kung sino ang huling nakatayo ang siyang mananalo", - "last team standing wins": "ang huling grupo ay mananalo", + "last one standing wins": "kung sino ang huling nabuhay ang siyang mananalo", + "last team standing wins": "ang huling grupong buhay ay mananalo", "return ${ARG1} flags": "Magnakaw ng ${ARG1} na mga bandera", "return 1 flag": "ibalik ang 1 bandila", "run ${ARG1} laps": "Tumakbo ng ${ARG1} ikot", @@ -1526,16 +1596,16 @@ "touch 1 flag": "humawak ng 1 bandila" }, "gameNames": { - "Assault": "Pag hawak ng bandila", + "Assault": "Dadaluhungin", "Capture the Flag": "Agawang Bandila", - "Chosen One": "Piniling Isa", + "Chosen One": "Ang Piniling Isa", "Conquest": "Pagsakop", "Death Match": "Laban ng Kamatayan", "Easter Egg Hunt": "Paghahanap ng mga Easter Egg", "Elimination": "Pagbabawasan", "Football": "Putbol", "Hockey": "Hockey", - "Keep Away": "Layuan Mo", + "Keep Away": "Hawakang Bandila", "King of the Hill": "Hari ng Burol", "Meteor Shower": "Ulan ng mga Bulalakaw", "Ninja Fight": "Labanan ng mga Ninja", @@ -1547,13 +1617,14 @@ }, "inputDeviceNames": { "Keyboard": "Keyboard", - "Keyboard P2": "Keyboard F2" + "Keyboard P2": "Keyboard P2" }, "languages": { "Arabic": "Wikang Arabik", "Belarussian": "Wikang Belaruso", - "Chinese": "Wikang Tsino", - "ChineseTraditional": "Wikang Tsinong Tradisyonal", + "Chinese": "Wikang Tsino ", + "ChineseSimplified": "Wikang Tsino - Pangkaraniwan", + "ChineseTraditional": "Wikang Tsino - Tradisyonal", "Croatian": "Wikang Kroatyano", "Czech": "Wikang Tsek", "Danish": "Wikang Denmark", @@ -1564,7 +1635,7 @@ "Finnish": "Wikang Finnish", "French": "Wikang Pranses", "German": "Wikang Alemanya", - "Gibberish": "Hindi Maintindihan nito", + "Gibberish": "Pagyayapyap", "Greek": "Wikang Griyego", "Hindi": "Wikang Indiyano", "Hungarian": "Wikang Hanggaryan", @@ -1574,13 +1645,18 @@ "Korean": "Wikang Koreano", "Malay": "Wikang Malay", "Persian": "Wikang Persyano", + "PirateSpeak": "Salitang Pirata", "Polish": "Wikang Polish", "Portuguese": "Wikang Portuges", + "PortugueseBrazil": "Wikang Portuges - Brasil", + "PortuguesePortugal": "Wikang Portuges - Portugal", "Romanian": "Wikang Rumano", "Russian": "Wikang Ruso", "Serbian": "Wikang Serbyan", "Slovak": "Wikang Eslobako", "Spanish": "Wikang Espanyol", + "SpanishLatinAmerica": "Wikang Espanyol - Amerikanong Latino", + "SpanishSpain": "Wikang Espanyol - Espanya", "Swedish": "Wikang Suweko", "Tamil": "Wikang Tamil", "Thai": "Wikang Thai", @@ -1602,7 +1678,7 @@ "Crag Castle": "Kastilyong Bangin", "Doom Shroom": "Itim na Kabute", "Football Stadium": "Istadyum", - "Happy Thoughts": "Masayan na mga Isip", + "Happy Thoughts": "Isipang Masaya", "Hockey Stadium": "Istadyum ng Hockey", "Lake Frigid": "Lawang Yelo", "Monkey Face": "Mukha ng Unggoy", @@ -1645,6 +1721,7 @@ "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Natukoy ang pagdadaya; nasuspinde ang mga iskor at premyo sa loob ng ${COUNT} (na) araw.", "Could not establish a secure connection.": "Hindi makapagtatag ng secure na koneksyon.", "Daily maximum reached.": "Naabot na ang pang-araw-araw ng request.", + "Daily sign-in reward": "Pangaraw-araw na gantimpala", "Entering tournament...": "Papasok sa paligsahan…", "Invalid code.": "Di-wasto ang kowd.", "Invalid payment; purchase canceled.": "Di-wastong pagbabayad; kinansela ang pagbili.", @@ -1654,11 +1731,14 @@ "Item unlocked!": "Na-unlock ang aytem!", "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "TINANGGI ANG PAG-LINK. ang ${ACCOUNT} na ito\nay may makabuluhang data na maaaring MAWAWALA LAHAT.\nMaaari kang mag-link sa kabaligtaran na pagkakasunud-sunod kung gusto mo\n(at sa halip ay mawala ang data ng account na ITO)", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "I-link ang account na ${ACCOUNT} sa account na ito?\nMawawala ang lahat ng umiiral na data sa ${ACCOUNT}.\nHindi na ito maaaring bawiin. Sigurado ka ba?", + "Longer streaks lead to better rewards.": "sunod-sunod mong buksan ang larong ito, mas malaking gantimpala.", "Max number of playlists reached.": "Naabot na ang maximum na bilang ng mga playlist.", "Max number of profiles reached.": "Naabot na ang maximum na bilang ng mga profile.", "Maximum friend code rewards reached.": "Naabot ang maximum na mga reward sa kowd ng kaibigan.", "Message is too long.": "Ang mensahe ay napakahaba.", + "New tournament result!": "Mga bagong resulta ng tournament!", "No servers are available. Please try again soon.": "Walang makakuha na mga server. Pakisubukang muli sa lalong madaling oras.", + "No slots available. Free a slot and try again.": "Walang magagamit na mga puwang. Magbakante ng slot at subukang muli.", "Profile \"${NAME}\" upgraded successfully.": "Matagumpay na na-upgrade ang profile na \"${NAME}\".", "Profile could not be upgraded.": "Hindi ma-upgrade ang profile.", "Purchase successful!": "Matagumpay ang pagbili!", @@ -1668,7 +1748,9 @@ "Sorry, this code has already been used.": "Pasensya na, nagamit na ang kowd na ito.", "Sorry, this code has expired.": "Pasensya na, nag-expire na ang kowd na ito.", "Sorry, this code only works for new accounts.": "Pasensya na, gumagana lang ang kowd na ito para sa mga bagong account.", + "Sorry, this has expired.": "Pasensya na, ito ay na-expire.", "Still searching for nearby servers; please try again soon.": "Naghahanap pa rin ng mga kalapit na server; mangyaring subukan muli sa lalong madaling oras.", + "Streak: ${NUM} days": "Pagsunod-sunod: ${NUM} na araw", "Temporarily unavailable; please try again later.": "Pansamantalang hindi magagamit; Subukang muli mamaya.", "The tournament ended before you finished.": "Natapos ang tournament bago ka natapos.", "This account cannot be unlinked for ${NUM} days.": "Ang account na ito ay hindi maaaring i-unlink sa loob ng ${NUM} (na) araw.", @@ -1679,19 +1761,28 @@ "Tournaments require ${VERSION} or newer": "Ang mga paligsahan ay nangangailangan ng ${VERSION} o mas bago", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "I-unlink ang ${ACCOUNT} mula sa account na ito?\nIre-reset ang lahat ng data sa ${ACCOUNT}.\n(maliban sa mga nakamit sa ilang pagkakataon)", "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "BABALA: ang mga reklamo ng pag-hack ay inilabas laban sa iyong account.\nIpagbabawal ang mga account na makikitang nagha-hack. Mangyaring maglaro ng patas.", + "Wait reduced!": "Nabawasan ang hintay!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "Babala: Ang bersyon ng larong ito ay nakatakda sa lumang data; mayroong pagkawala o kupas ang nasa larawan.\nPakiusap na mapalitan ng bagong bersyon ang laro na ito upang matanawin ang kasalukuyang data.", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "Gusto mo bang i-link ang iyong device account sa isang ito?\n\nAng iyong device account ay ${ACCOUNT1}\nAng account na ito ay ${ACCOUNT2}\n\nPapayagan ka nitong panatilihin ang iyong progress.\nBabala: hindi na ito maaaring bawiin!", "You already own this!": "Nabili mo na ito!", "You can join in ${COUNT} seconds.": "Makakasali ka sa loob ng ${COUNT} segundo.", "You don't have enough tickets for this!": "Hindi sapat ang tickets mo para dito!", "You don't own that.": "Hindi sayo iyan.", "You got ${COUNT} tickets!": "Nakakuha ka ng ${COUNT} tickets!", + "You got ${COUNT} tokens!": "May nakuha ka na ${COUNT} tokens!", "You got a ${ITEM}!": "Nakakuha ka ng ${ITEM}!", + "You got a chest!": "Mayroon na ka chest!", + "You got an achievement reward!": "May bago kang gantimpala sa tagumpay!", "You have been promoted to a new league; congratulations!": "Na-promote ka sa isang bagong liga; congrats!", + "You lost a chest! (All your chest slots were full)": "May nawalan ka na chest! (Lahat ng chest slot mo ay puno)", + "You must update the app to view this.": "Kailangan mong baguhin muna ang bersyon ng app na ito upang maitignan ito.", "You must update to a newer version of the app to do this.": "Kailangang magbago sa mas mabagong bersyon ng app para magawa ito.", "You must update to the newest version of the game to do this.": "Kailangang magbago sa pinakabagong bersyon ng laro upang magawa ito.", "You must wait a few seconds before entering a new code.": "Dapat kang maghintay ng ilang segundo bago maglagay ng bagong code.", - "You ranked #${RANK} in the last tournament. Thanks for playing!": "Ikaw ay niraranggo ng #${RANK} sa huling paligsahan. Salamat sa paglalaro!", + "You placed #${RANK} in a tournament!": "Nag place ka ng #${RANK} sa paligsahan!", + "You ranked #${RANK} in the last tournament. Thanks for playing!": "Ikaw ay niraranggo ng #${RANK} sa huling paligsahan. Salamat po sa paglalaro!", "Your account was rejected. Are you signed in?": "Tinanggihan ang iyong account. Naka-sign in ka ba?", + "Your ad views are not registering. Ad options will be limited for a while.": "Ang bilang ng iyong pagnood ng adbertismo ay hindi napaoarehistro. Ang iyong opsyon sa pagnood ay saglit na limitado.", "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Ang iyong kopya ng laro ay na-modified.\nMangyaring ibalik ang anumang mga pagbabago at subukang muli.", "Your friend code was used by ${ACCOUNT}": "Ang code ng iyong kaibigan ay ginamit ng ${ACCOUNT}" }, @@ -1749,13 +1840,13 @@ }, "tips": { "A perfectly timed running-jumping-spin-punch can kill in a single hit\nand earn you lifelong respect from your friends.": "Ang isang perpektong oras na takbo-talon-ikot-suntok ay maaaring makapatay sa isang tama\nat magkaroon ka ng panghabambuhay na paggalang mula sa iyong mga kaibigan.", - "Always remember to floss.": "Laging tandaan na magpasikat.", - "Create player profiles for yourself and your friends with\nyour preferred names and appearances instead of using random ones.": "Ang \"Sumpa\" ay ginagawa kang isang sasabuging bomba.\nAng tanging lunas ay ang mabilisang kumuha ng \"Medikal-Pakete\".", + "Always remember to floss.": "Laban-laban lang!", + "Create player profiles for yourself and your friends with\nyour preferred names and appearances instead of using random ones.": "Gumawa ng mga karakter para sa iyong sarili at sa mga kaibigan mo na\nmayroong kanyang-kanyang pangalan at itsura kaysa ano-ano ang pinagpilian mo.", "Curse boxes turn you into a ticking time bomb.\nThe only cure is to quickly grab a health-pack.": "Ang \"Sumpa\" ay ginagawa kang isang masasaboh na bomba.\nAng tanging lunas ay ang mabilisang kumuha ng health-pack.", "Despite their looks, all characters' abilities are identical,\nso just pick whichever one you most closely resemble.": "Sa kabila ng kanilang hitsura, lahat ng kakayahan ng mga karakter ay magkaparehas lamang,\nkaya pumili lang kung alin ang pinakahawig mo.", "Don't get too cocky with that energy shield; you can still get yourself thrown off a cliff.": "Huwag masyadong maangas sa paggalaw na mayroon kang enerhiyang kalasag; pwede ka pa rin nilang ihagis mula sa isang plataporma.", "Don't run all the time. Really. You will fall off cliffs.": "Talagang huwag tumakbo sa lahat ng oras. Mahuhulog ka.", - "Don't spin for too long; you'll become dizzy and fall.": "Huwag paikutin Ang iyong sarili nang masyadong mahaba; mahihilo at matumba ka.", + "Don't spin for too long; you'll become dizzy and fall.": "Huwag paikutin Ang iyong sarili nang masyadong matagal; mahihilo at matumba ka.", "Hold any button to run. (Trigger buttons work well if you have them)": "Pindutin ang anumang pindutan upang tumakbo. (Mahusay na gumagana gamit ang mga pindutang kalabitan kung mayroon ka nito)", "Hold down any button to run. You'll get places faster\nbut won't turn very well, so watch out for cliffs.": "Pindutin nang matagal ang anumang pindutan para tumakbo. Mas mabilis kang makarating\nngunit hindi lumiko nang mahusay, kaya mag-ingat sa matalim na mga gilid", "Ice bombs are not very powerful, but they freeze\nwhoever they hit, leaving them vulnerable to shattering.": "Ang mga Bombang Yelo ay hindi masyadong malakas, ngunit makatigil at magyeyelo\nkung sino man ang kanilang natamaan na madaling maisira.", @@ -1763,7 +1854,7 @@ "If you are short on controllers, install the '${REMOTE_APP_NAME}' app\non your mobile devices to use them as controllers.": "Kung kulang ka sa mga controller, gamitin ang '${REMOTE_APP_NAME}'\nsa iyong mga gadyet upang gamitin ang mga ito bilang mga controller.", "If you get a sticky-bomb stuck to you, jump around and spin in circles. You might\nshake the bomb off, or if nothing else your last moments will be entertaining.": "Kung nakadikit sa iyo ang isang Bombang Malagkit, tumalon at umikot ka. Baka\nmaialis mo ang bomba mula sa iyong sarili, dili kaya'y nakakaaliw Ang iyong huling sandali.", "If you kill an enemy in one hit you get double points for it.": "Kapag pumatay ka ng isang kalaban sa isang tama lamang, makakakuha ka ng dobleng puntos.", - "If you pick up a curse, your only hope for survival is to\nfind a health powerup in the next few seconds.": "Kung 'di sinadyabg nakakuha ka ng Sumpa, ang tanging pag-asa mo para mabuhay ay\nmaghanap ng Medikal-Pakete sa susunod na 5 segundo.", + "If you pick up a curse, your only hope for survival is to\nfind a health powerup in the next few seconds.": "Kung 'di mo sinadyang nakuha ng Sumpa, ang tanging pag-asa mo para mabuhay ay\nmaghanap ng Medikal-Pakete sa susunod na 5 segundo.", "If you stay in one place, you're toast. Run and dodge to survive..": "Kung manatili ka sa isang lugar, wala ka na. Tumakbo at umigtad para mabuhay..", "If you've got lots of players coming and going, turn on 'auto-kick-idle-players'\nunder settings in case anyone forgets to leave the game.": "Kung marami kang manlalaro na dumarating at pupunta, buksan ang 'Ipalayas ang manlalarong hindi gumagalaw’\nsa ilalim ng mga setting kung sakaling may makakalimutang umalis sa laro.", "If your device gets too warm or you'd like to conserve battery power,\nturn down \"Visuals\" or \"Resolution\" in Settings->Graphics": "Kung masyadong mainit ang iyong device o gusto mong makatipid ng baterya,\nhanggahan ang \"Biswal” o \"Resolusyon\" sa Mga Setting->Grapika", @@ -1777,13 +1868,13 @@ "No, you can't get up on the ledge. You have to throw bombs.": "Hindi ka makakahawak sa ungos. Kailangan mong maghagis ng bomba.", "Players can join and leave in the middle of most games,\nand you can also plug and unplug controllers on the fly.": "Maaaring sumali at umalis ang mga manlalaro sa gitna ng karamihan ng mga laro,\nat maaari mo ring isaksak at magpatanggal ang mga controller nang mabilis.", "Practice using your momentum to throw bombs more accurately.": "Magsanay gamit ang iyong pag-udyok para maghagis ng mga bomba nang mas wasto.", - "Punches do more damage the faster your fists are moving,\nso try running, jumping, and spinning like crazy.": "Ang mga suntok ay mas nagdudulot ng pagsaktan sa mas mabilis na paggalaw ng iyong mga kamao,\nkaya subukang tumakbo, tumalon, at umiikot na parang baliw.", + "Punches do more damage the faster your fists are moving,\nso try running, jumping, and spinning like crazy.": "Ang mga suntok ay mas nagdudulot ng pagsaktan sa mas mabilis na paggalaw ng iyong mga kamay,\nkaya subukang tumakbo, tumalon, at umiikot na parang baliw.", "Run back and forth before throwing a bomb\nto 'whiplash' it and throw it farther.": "Patakbong pabalik-balik bago maghagis ng bomba\nupang ‘ma-ikot’ ito at ihagis ito nang mas malayo.", "Take out a group of enemies by\nsetting off a bomb near a TNT box.": "Magpatay ang isang grupo ng mga kalaban sa pamamagitan ng\npagsabog ng bomba malapit sa isang kahong TNT.", "The head is the most vulnerable area, so a sticky-bomb\nto the noggin usually means game-over.": "Ang ulo ay ang pinakamatalban na parte, kaya isang Bombang Malagkit \nna lumapag sa ulo mo ay dedma ka na.", "This level never ends, but a high score here\nwill earn you eternal respect throughout the world.": "Ang anyas na ito ay hindi kailanman nagtatapos, ngunit isang mataas na iskor dito\nbibigyan ka ng walang hanggang paggalang mula sa buong mundo.", "Throw strength is based on the direction you are holding.\nTo toss something gently in front of you, don't hold any direction.": "Ang lakas ng paghagis ay batay sa direksyon na iyong hinahawakan.\nUpang ihagis ang isang bagay nang malumanay sa harap mo, huwag maitungo sa anumang direksyon.", - "Tired of the soundtrack? Replace it with your own!\nSee Settings->Audio->Soundtrack": "Pagod na sa mga soundtrack? Palitan nito ng iyong sarili!\nTingnan ang Mga Setting->Tutugan->Mga Soundtrack", + "Tired of the soundtrack? Replace it with your own!\nSee Settings->Audio->Soundtrack": "Pagod na sa mga soundtrack? Palitan nito ng iyong sarili!\nTignan ang Mga Setting->Tugtugan->Mga Soundtrack", "Try 'Cooking off' bombs for a second or two before throwing them.": "Try mo \"Itiisin” ang mga bomba sa isang segundo o dalawa bago mo ihagis.", "Try tricking enemies into killing eachother or running off cliffs.": "Subukang linlangin ang mga kalaban sa pagsuntok sa isa't isa o pahulog sa mga gilid.", "Use the pick-up button to grab the flag < ${PICKUP} >": "Gamitin ang pindutang \"Pulutin\" para makunin ang bandera < ${PICKUP} >", @@ -1834,19 +1925,20 @@ "randomName3Text": "Stephen", "randomName4Text": "Joshua", "randomName5Text": "Villar", - "skipConfirmText": "Sure ka ba na i-skip ang tutorial? Tap o pindutin para ma i-confirm.", + "skipConfirmText": "Sigurado ka ba na laktawin ang tutorial? I-tap o pindutin para sigurado ka.", "skipVoteCountText": "${COUNT}/${TOTAL} boto na gustong laktawan", - "skippingText": "Nilalaktawan ang tutorial", + "skippingText": "Nilalaktawan ang tutorial...", "toSkipPressAnythingText": "(i-tap o pindutin ang anuman para laktawan ang tutorial)" }, "twoKillText": "DOBLENG PAGPATAY!!", - "uiScaleText": "UI Scale", + "uiScaleText": "Sukat Ng UI", "unavailableText": "hindi pwede", + "unclaimedPrizesText": "May mga premyo ka pang hindi nakukuha!", "unconfiguredControllerDetectedText": "Naktuklas ang hindi naka-configure na controller:", "unlockThisInTheStoreText": "Ito ay dapat na naka-unlock sa tindahan.", "unlockThisProfilesText": "Upang lumikha ng higit sa ${NUM} na mga profile, kailangan mo:", "unlockThisText": "Upang i-unlock ito, kailangan mo ng:", - "unsupportedControllerText": "Sorry, ang pangalan na \"${NAME}\" ay hindi pa supported.", + "unsupportedControllerText": "Pasensya na, ang pangalan na \"${NAME}\" ay hindi naipataguyod.", "unsupportedHardwareText": "Pasensya na, ang hardware na ito ay hindi suportado ng build na ito ng laro.", "upFirstText": "Bumangon muna:", "upNextText": "Susunod sa larong ${COUNT}:", @@ -1859,6 +1951,7 @@ "usesExternalControllerText": "Gumagamit ang larong ito ng external na controller para sa input.", "usingItunesText": "Paggamit ng Music App para sa soundtrack...", "v2AccountLinkingInfoText": "Upang ma-link ang mga V2 account mo, dumeretso ka sa “I-Manage ang Account“.", + "v2AccountRequiredText": "Kailangan Ang iyong V2 account para rito. Itaas ang grado ng iyong account at ulitin.", "validatingTestBuildText": "Pinapatunayan ang Test Build...", "viaText": "via", "victoryText": "Panalo!", @@ -1902,19 +1995,19 @@ "pressText2": "Sa mas bagong Wiimotes na may built in na Motion Plus, pindutin na lang ang pulang 'sync' na button sa likod." }, "wiimoteSetupWindow": { - "copyrightText": "Copyright ni DarwinRemote", + "copyrightText": "Copyright ni DarwinRemote ", "listenText": "Makinig", "macInstructionsText": "Tiyaking naka-off ang iyong Wii at naka-enable ang Bluetooth\nsa iyong Mac, pagkatapos ay pindutin ang 'Makinig'. Maaari ang suporta ng Wiimote\nmaging medyo patumpik-tumpik, kaya maaaring kailanganin mong subukan ng ilang beses\nbago ka magkaroon ng koneksyon.\n\nDapat hawakan ng Bluetooth ang hanggang 7 konektadong device,\nkahit na ang iyong mileage ay maaaring mag-iba.\n\nSinusuportahan ng BombSquad ang orihinal na Wiimotes, Nunchuks,\nat ang Klasikong Controller.\nGumagana na rin ang mas bagong Wii Remote Plus\nngunit hindi sa mga kalakip.", "thanksText": "Salamat sa DarwiinRemote team\nPara maging posible ito.", - "titleText": "Pag-setup ng Wiimote" + "titleText": "Pag-setup ng Wiimote " }, "winsPlayerText": "Nanalo si ${NAME}!", "winsTeamText": "Nanalo ang ${NAME}!", "winsText": "${NAME} Nanalo!", "workspaceSyncErrorText": "Error sa pag-sync ng ${WORKSPACE}. Tingnan ang log para sa mga detalye.", "workspaceSyncReuseText": "Hindi ma-sync ang ${WORKSPACE}. Muling paggamit ng nakaraang naka-sync na bersyon.", - "worldScoresUnavailableText": "Ang mga score sa buong Mundo ay hindi makuha.", - "worldsBestScoresText": "Pinakamahusay na Iskor ng Mundo", + "worldScoresUnavailableText": "Hindi makuha ang mga pandaigdigang iskor.", + "worldsBestScoresText": "Pinakamahusay na Iskor sa Mundo", "worldsBestTimesText": "Oras ng Pinakamabilis sa Mundo", "xbox360ControllersWindow": { "getDriverText": "Kunin ang Driver", @@ -1925,5 +2018,6 @@ }, "yesAllowText": "Sige!", "yourBestScoresText": "Pinakamataas Mong Iskor", - "yourBestTimesText": "Pinakamabilis Mong Oras" + "yourBestTimesText": "Pinakamabilis Mong Oras", + "yourPrizeText": "Premyo mo:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/french.json b/dist/ba_data/data/languages/french.json index f27a008..4e10f0f 100644 --- a/dist/ba_data/data/languages/french.json +++ b/dist/ba_data/data/languages/french.json @@ -7,7 +7,9 @@ "campaignProgressText": "Progression de la campagne [Difficile]: ${PROGRESS}", "changeOncePerSeason": "Vous ne pouvez changer cela qu'une fois par saison.", "changeOncePerSeasonError": "Vous devez attendre la prochaine saison pour le modifier à nouveau (${NUM} jours)", + "createAnAccountText": "Créer un compte", "customName": "Nom personnalisé", + "deleteAccountText": "Supprimer le compte", "googlePlayGamesAccountSwitchText": "Si vous voulez utiliser un autre compte Google, \nutilisez l'application Google Play Games pour le changer.", "linkAccountsEnterCodeText": "Entrer code", "linkAccountsGenerateCodeText": "Générez votre code", @@ -26,6 +28,7 @@ "setAccountNameDesc": "Sélectionnez le nom à afficher pour votre compte.\nVous pouvez utiliser le nom d'un de vos comptes\n associés ou créer un nom personnalisé unique.", "signInInfoText": "Connectez-vous pour gagner des tickets, participer aux tournois en ligne,\net partager votre progression entre plusieurs appareils.", "signInText": "Connexion", + "signInWithAnEmailAddressText": "Connectez-vous avec une adresse e-mail", "signInWithDeviceInfoText": "(un compte généré automatiquement utilisable seulement sur cet appareil)", "signInWithDeviceText": "Connectez-vous avec le compte de cet appareil", "signInWithGameCircleText": "Connectez-vous avec Game Circle", @@ -34,7 +37,7 @@ "signInWithTestAccountText": "Connectez-vous avec un compte test", "signInWithText": "Connectez-vous avec ${SERVICE}", "signInWithV2InfoText": "(un compte qui fonctionne sur toutes les plateformes)", - "signInWithV2Text": "Connectez-vous avec un compte Bombsquad", + "signInWithV2Text": "Connectez-vous avec un compte ${APP_NAME}", "signOutText": "Se déconnecter", "signingInText": "Connexion...", "signingOutText": "Déconnexion...", @@ -346,6 +349,8 @@ "allowText": "Autoriser", "alreadySignedInText": "Votre compte est connecté sur un autre appareil;\nveuillez changer de compte ou fermez le jeu sur \nles autres appareils et réessayez.", "apiVersionErrorText": "Impossible de charger le jeu ${NAME}; sa version api est ${VERSION_USED}; nous demandons la version ${VERSION_REQUIRED}.", + "applyText": "Appliquer", + "areYouSureText": "Êtes-vous sûr ?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(\"Auto\" s'active seulement quand un casque est branché)", "headRelativeVRAudioText": "Son à position relative (RV)", @@ -371,14 +376,23 @@ "boostText": "Accroître", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} est configuré dans sa propre application.", "buttonText": "bouton", - "canWeDebugText": "Voulez-vous que BombSquad envoie automatiquement un rapport des bugs, \ncrashs et certaines informations relatives au jeu au développeur?\n\nCes rapports ne contiendront aucune information personnelle \net aideront à maintenir un jeu sans bugs ni ralentissements.", + "canWeDebugText": "Voulez-vous que ${APP_NAME} envoie automatiquement un rapport des bugs, \ncrashs et certaines informations relatives au jeu au développeur?\n\nCes rapports ne contiendront aucune information personnelle \net aideront à maintenir un jeu sans bugs ni ralentissements.", "cancelText": "Annuler", "cantConfigureDeviceText": "Désolé, ${DEVICE} ne peut pas être configuré.", "challengeEndedText": "Ce défi est terminé.", "chatMuteText": "Tchat muet", "chatMutedText": "Tchat muet", "chatUnMuteText": "Réactiver tchat", + "chests": { + "prizeOddsText": "Chances de prix", + "reduceWaitText": "Réduire l'attente", + "slotDescriptionText": "Cet emplacement peut contenir un coffre.\n\nGagnez des coffres en jouant à des niveaux\nde campagne, en participant à des tournois\net en terminant les succès.", + "slotText": "Coffre n° ${NUM}", + "slotsFullWarningText": "ATTENTION: tous vos coffres sont pleins.\nLes coffres gagnés dans ce jeu seront perdus.", + "unlocksInText": "Se débloque dans" + }, "choosingPlayerText": "", + "claimText": "Réclamer", "codesExplainText": "Les codes sont fournis par le développeur pour \ndiagnostiquer et corriger les problèmes de compte.", "completeThisLevelToProceedText": "Vous devez compléter ce \nniveau pour continuer!", "completionBonusText": "Bonus de fin", @@ -574,6 +588,7 @@ "demoText": "Démo", "denyText": "Refuser", "deprecatedText": "Obsolète", + "descriptionText": "Description", "desktopResText": "Résolution de l'Ordinateur", "deviceAccountUpgradeText": "Avertissement:\nVous etes connecté avec un compte d'appareil (${NAME}).\nLes comptes d'appareils seront enlevés dans une future mise à jour.\nMettez à jour vers un compte V2 si vous voulez garder votre progression.", "difficultyEasyText": "Facile", @@ -585,6 +600,7 @@ "disableXInputDescriptionText": "Permet plus que 4 manettes mais risque de malfonctionner.", "disableXInputText": "Désactiver XInput", "disabledText": "Désactivé", + "discardText": "Rejeter", "discordFriendsText": "Vous voulez chercher de nouvelles personnes avec qui jouer ? \nRejoignez notre Discord et trouvez de nouveaux amis !", "discordJoinText": "Rejoignez le Discord", "doneText": "Terminé", @@ -673,6 +689,8 @@ "errorText": "Erreur", "errorUnknownText": "erreur inconnue", "exitGameText": "Quitter ${APP_NAME}?", + "expiredAgoText": "Expiré il y a ${T}", + "expiresInText": "Expire dans ${T}", "exportSuccessText": "'${NAME}' exporté.", "externalStorageText": "Stockage Externe", "failText": "Échec", @@ -739,6 +757,7 @@ "copyCodeConfirmText": "Le code a bien été copié dans le presse-papier.", "copyCodeText": "Copier le code", "dedicatedServerInfoText": "Pour un meilleur résultat, créez un server dédié. Voir bombsquadgame.com/server pour plus d'infos.", + "descriptionShortText": "Utilisez la fenêtre de regroupement pour constituer un groupe.", "disconnectClientsText": "Ceci déconnectera le(s) ${COUNT} joueur(s)\nde votre partie. Êtes-vous sûr?", "earnTicketsForRecommendingAmountText": "Vos amis recevront ${COUNT} tickets si ils essayent le jeu\n(et vous recevrez ${YOU_COUNT} pour chacun d'entre eux qui le feront)", "earnTicketsForRecommendingText": "Partagez le jeu pour \ndes tickets gratuits...", @@ -751,10 +770,10 @@ "friendHasSentPromoCodeText": "${COUNT} tickets ${APP_NAME} de la part de ${NAME}", "friendPromoCodeAwardText": "Vous recevrez ${COUNT} tickets à chaque fois qu'il sera utilisé.", "friendPromoCodeExpireText": "Ce code expirera dans ${EXPIRE_HOURS} heures et ne fonctionne que pour les nouveaux joueurs.", - "friendPromoCodeInstructionsText": "Pour l'utiliser, ouvrez ${APP_NAME} puis aller dans \"Paramètres->Avancé->Entrer code\".\nAllez sur bombsquadgame.com pour les liens de téléchargement pour toutes les plateformes supportées.", + "friendPromoCodeInstructionsText": "Pour l'utiliser, ouvrez ${APP_NAME} puis allez dans \"Paramètres -> Avancé -> Entrer code\".\nAllez sur bombsquadgame.com pour les liens de téléchargement pour toutes les plateformes supportées.", "friendPromoCodeRedeemLongText": "Peut être utilisé pour ${COUNT} tickets gratuits jusqu'à ${MAX_USES} personnes maximum.", "friendPromoCodeRedeemShortText": "Il peut-être utilisé pour ${COUNT} tickets dans le jeu.", - "friendPromoCodeWhereToEnterText": "(dans \"Paramètres->Avancé->Entrer code\")", + "friendPromoCodeWhereToEnterText": "(dans \"Paramètres -> Avancé -> Envoyer information\")", "getFriendInviteCodeText": "Obtenir un Code pour Inviter mes Amis", "googlePlayDescriptionText": "Invitez des joueurs Google Play à votre partie:", "googlePlayInviteText": "Inviter", @@ -860,6 +879,12 @@ "youHaveShortText": "vous avez ${COUNT}", "youHaveText": "vous avez ${COUNT} tickets" }, + "goldPass": { + "desc1InfTokensText": "Jetons infini.", + "desc2NoAdsText": "Aucune publicités.", + "desc3ForeverText": "Pour toujours.", + "goldPassText": "Pass d'or" + }, "googleMultiplayerDiscontinuedText": "Désolé, le service multijoueur de Google n'est plus disponible.\nJe travaille sur un moyen de le remplacer aussi vite que possible.\nEn attendant, veuillez essayer une nouvelle méthode de connexion.\n-Eric", "googlePlayPurchasesNotAvailableText": "Les achats Google Play ne sont pas disponibles.\nVous avez peut-être besoin de mettre à jour votre Google play", "googlePlayServicesNotAvailableText": "Les services Google Play sont indisponibles.\nCertaines fonctions de l'application peuvent être désactivées.", @@ -947,6 +972,7 @@ "importText": "Importer", "importingText": "Importation...", "inGameClippedNameText": "dans le jeu sera\n\"${NAME}\"", + "inboxText": "Messages", "installDiskSpaceErrorText": "ERREUR: Incapable de compléter l'installation.\nL'appareil manque paut-être d'espace.\nLibérez de l'espace et ressayez.", "internal": { "arrowsToExitListText": "appuyez sur ${LEFT} ou ${RIGHT} pour quitter la liste", @@ -1003,12 +1029,14 @@ "touchScreenJoinWarningText": "Vous avez joint avec l'écran tactile.\nSi c'était une erreur, touchez 'Menu->Quitter le Jeu'.", "touchScreenText": "Écran Tactile", "trialText": "test", + "unableToCompleteTryAgainText": "Impossible de terminer l'opération.\nRéessayez plus tard.", "unableToResolveHostText": "Erreur: impossible de résoudre l'hôte.", "unavailableNoConnectionText": "Pas disponible à l'instant (pas de connexion internet?)", "vrOrientationResetCardboardText": "Utilisez ceci pour réinitialiser l'orientation RV.\nPour jouer au jeu vous aurez besoin d'un contrôleur externe.", "vrOrientationResetText": "Réinitialiser l'orientation RV.", "willTimeOutText": "(expirera si inactive)" }, + "inventoryText": "Inventaire", "jumpBoldText": "SAUT", "jumpText": "Saut", "keepText": "Garder", @@ -1055,8 +1083,11 @@ "seasonEndsMinutesText": "La saison se termine dans ${NUMBER} minutes.", "seasonText": "Saison ${NUMBER}", "tournamentLeagueText": "Vous devez atteindre la ligue ${NAME} pour participer à ce tournoi.", - "trophyCountsResetText": "Les trophées seront remis à zéro la saison suivante." + "trophyCountsResetText": "Les trophées seront remis à zéro la saison suivante.", + "upToDateBonusDescriptionText": "Les joueurs qui utilisent une version récente\ndu jeu reçoivent un bonus de ${PERCENT}%.", + "upToDateBonusText": "à jour = bonus" }, + "learnMoreText": "En savoir plus", "levelBestScoresText": "Meilleurs scores dans ${LEVEL}", "levelBestTimesText": "Meilleurs temps dans ${LEVEL}", "levelFastestTimesText": "Meilleurs temps en ${LEVEL}", @@ -1103,6 +1134,8 @@ "modeArcadeText": "Mode Arcade", "modeClassicText": "Mode classique", "modeDemoText": "Mode Demo", + "moreSoonText": "Plus à venir bientôt...", + "mostDestroyedPlayerText": "Joueur le plus détruit", "mostValuablePlayerText": "Meilleur joueur", "mostViolatedPlayerText": "Joueur le plus violenté", "mostViolentPlayerText": "Joueur le plus violent", @@ -1119,6 +1152,7 @@ "nameSuicideText": "${NAME} s'est suicidé.", "nameText": "Nom", "nativeText": "Native", + "newExclaimText": "Nouveau !", "newPersonalBestText": "Nouveau record personnel!", "newTestBuildAvailableText": "Une nouvelle version test est disponible ! (${VERSION} ${BUILD}).\nObtenez à ${ADDRESS}", "newText": "Nouveau", @@ -1130,6 +1164,7 @@ "noExternalStorageErrorText": "Aucun stockage externe a été trouvé pour cet appareil", "noGameCircleText": "Erreur: vous n'êtes pas connecté au GameCircle", "noJoinCoopMidwayText": "Vous ne pouvez pas rejoindre une partie co-cop en plein milieu.", + "noMessagesText": "Aucun message.", "noPluginsInstalledText": "Aucun Plug-in installé", "noProfilesErrorText": "Vous avez aucun profil de joueur, vous êtes donc coincés avec '${NAME}'.\nAllez à Paramètres->Profils des Joueurs pour vous créer un profil.", "noScoresYetText": "Aucun score pour le moment.", @@ -1139,6 +1174,7 @@ "noValidMapsErrorText": "Aucune carte valide a été trouvée pour ce type de jeu.", "notEnoughPlayersRemainingText": "Pas assez de joueurs restant; quittez et commencez un nouveau jeu.", "notEnoughPlayersText": "Vous avez besoin d'au moins ${COUNT} joueurs pour commencer ce jeu!", + "notEnoughTicketsText": "Pas assez de tickets!", "notNowText": "Pas maintenant", "notSignedInErrorText": "Vous devez vous connecter pour faire ceci.", "notSignedInGooglePlayErrorText": "Vous devez vous connecter avec Google Play pour faire ceci.", @@ -1151,6 +1187,9 @@ "onText": "Activé", "oneMomentText": "Juste un moment...", "onslaughtRespawnText": "${PLAYER} réapparaîtra à la vague ${WAVE}", + "openMeText": "Ouvrez-moi !", + "openNowText": "Ouvrir mnt", + "openText": "Ouvrir", "orText": "${A} ou ${B}", "otherText": "Autre...", "outOfText": "(#${RANK} sur ${ALL})", @@ -1244,6 +1283,8 @@ "punchText": "Frapper", "purchaseForText": "Achetez pour ${PRICE}", "purchaseGameText": "Acheter le Jeu", + "purchaseNeverAvailableText": "Désolé, les achats son indisponible sur cette version.\nEssayez de vous connecter à votre compte sur un autre appareil et effectuer un achat depuis ce dernier.", + "purchaseNotAvailableText": "Cet achat est indisponible.", "purchasingText": "Achat en cours...", "quitGameText": "Quitter ${APP_NAME}?", "quittingIn5SecondsText": "Le jeu fermera dans 5 secondes...", @@ -1286,6 +1327,7 @@ "version_mismatch": "Mauvaise version.\nVérifiez que BombSquad et BombSquad Remote \nsont mis à jour et réessayez." }, "removeInGameAdsText": "Débloquez \"${PRO}\" dans le magasin pour enlever les annonces.", + "removeInGameAdsTokenPurchaseText": "OFFRE À DURÉE LIMITÉE: achetez UN pack de jetons pour retirer les pubs.", "renameText": "Renommer", "replayEndText": "Terminer la Reprise", "replayNameDefaultText": "Reprise du Match Précédent", @@ -1320,6 +1362,7 @@ }, "scoreWasText": "(A été ${COUNT})", "selectText": "Sélectionner", + "sendInfoDescriptionText": "Envoyez des informations sur l'état du compte et de l'application au développeur.\nVeuillez inclure votre nom ou la raison de l'envoi.", "seriesWinLine1PlayerText": "A GAGNÉ LA", "seriesWinLine1TeamText": "A GAGNÉ LA", "seriesWinLine1Text": "A GAGNÉ", @@ -1339,14 +1382,17 @@ "alwaysUseInternalKeyboardDescriptionText": "(un simple clavier sur l'écran pour taper du texte)", "alwaysUseInternalKeyboardText": "Toujours utiliser le clavier interne", "benchmarksText": "Benchmarks et Tests de Stress", + "devToolsText": "Outils de développeur", "disableCameraGyroscopeMotionText": "Désactiver le mouvement de gyroscope de la caméra", - "disableCameraShakeText": "Désactiver le tremblement de la camera", + "disableCameraShakeText": "Désactiver le tremblement de la caméra", "disableThisNotice": "(vous pouvez désactiver cette notification dans les paramètres avancés)", "enablePackageModsDescriptionText": "(activer plusieurs capabilités des mods mais désactiver le jeu en réseau)", "enablePackageModsText": "Activer les Packages Mods Locaux", "enterPromoCodeText": "Entrez code", "forTestingText": "Note: ces valeurs sont exclusivement pour les tests et seront perdus à la fermeture de l'application.", "helpTranslateText": "Les traductions de ${APP_NAME} proviennent des efforts de \nla communauté. Si vous voulez contribuer ou corriger une \ntraduction, suivez le lien ci-dessous. Merci d'avance!", + "insecureConnectionsDescriptionText": "Non recommandé, mais peut permettre le jeu en ligne \ndepuis des pays ou des réseaux restreints.", + "insecureConnectionsText": "Utilisez des connexions non sécurisées", "kickIdlePlayersText": "Déconnecter les joueurs inactifs", "kidFriendlyModeText": "Mode Enfant-Gentil (moins de violence, etc)", "languageText": "Langue", @@ -1355,10 +1401,12 @@ "mustRestartText": "Vous devez redémarrer le jeu pour que les changements prennent effet.", "netTestingText": "Tester Votre Réseau", "resetText": "Réinitialiser", + "sendInfoText": "Envoyer des informations", "showBombTrajectoriesText": "Montrer les trajectoires de bombe", - "showDemosWhenIdleText": "Afficher les démos en cas d'inactivité", - "showDevConsoleButtonText": "Afficher le Bouton de la Console de Développeur", - "showInGamePingText": "Afficher La Latence En Jeu", + "showDemosWhenIdleText": "Afficher les démonstrations en cas d'inactivité", + "showDeprecatedLoginTypesText": "Afficher les types de connexions obsolètes", + "showDevConsoleButtonText": "Afficher le bouton de la console de développeur", + "showInGamePingText": "Afficher la latence en jeu", "showPlayerNamesText": "Montrer les Noms des Joueurs", "showUserModsText": "Montrer le Dossier des Mods", "titleText": "Avancé", @@ -1366,8 +1414,8 @@ "translationFetchErrorText": "statut de la traduction indisponible", "translationFetchingStatusText": "vérification du statut de la traduction...", "translationInformMe": "M'avertir quand ma langue a besoin de mises à jour", - "translationNoUpdateNeededText": "ce langage est à jour; woohoo!", - "translationUpdateNeededText": "** ce langage à besoin des modifications!! **", + "translationNoUpdateNeededText": "Cette langue est à jour; youpi !", + "translationUpdateNeededText": "** Cette langue a besoin de modification ! **", "vrTestingText": "Test de la RV" }, "shareText": "Partager", @@ -1405,6 +1453,7 @@ }, "spaceKeyText": "espace", "statsText": "Stats", + "stopRemindingMeText": "Ne plus me le rappeler", "storagePermissionAccessText": "Cette action a besoin de l'accès au stockage", "store": { "alreadyOwnText": "Vous avez déja acheté ${NAME}!", @@ -1468,6 +1517,7 @@ "testBuildValidatedText": "Version Test Validée; Amusez-Vous!", "thankYouText": "Merci pour votre soutien! Amusez-vous!!", "threeKillText": "TRIPLE MEURTRE!!!", + "ticketsDescriptionText": "Utilisez les tickets pour débloquer des personnages,\ncartes, mini-jeux, et d'autres dans la boutique.\n\nTrouvez les tickets dans des coffres gagnés grâce aux\ncampagnes, tournois et succès.", "timeBonusText": "Bonus de Temps", "timeElapsedText": "Temps Passé", "timeExpiredText": "Temps Expiré", @@ -1478,10 +1528,24 @@ "tipText": "Conseil", "titleText": "BombSquad", "titleVRText": "RV BombSquad", + "tokens": { + "getTokensText": "Obtenir des jetons", + "notEnoughTokensText": "Vous n'avez pas assez de jetons !", + "numTokensText": "${COUNT} Jetons", + "openNowDescriptionText": "Vous avez assez de jetons pour\nouvrir ceci maintenant - vous n’avez\npas besoin d’attendre.", + "shinyNewCurrencyText": "La nouvelle monnaie brillante de BombSquad.", + "tokenPack1Text": "Petit paquet de jeton", + "tokenPack2Text": "Paquet de jeton moyen", + "tokenPack3Text": "Grand paquet de jeton", + "tokenPack4Text": "Paquet géant de jeton", + "tokensDescriptionText": "Les jetons permettent d'accélérer le déblocage des coffres\net pour d'autres fonctionnalités du jeu et du compte.\n\nVous pouvez gagner des jetons dans le jeu ou les acheter\nen packs. Ou achetez un Pass Or pour des jetons infinis\net n'en entendez plus jamais parler.", + "youHaveGoldPassText": "Vous avez un pass d'or.\nTout les achats de jeton sont gratuit.\nProfitez-en !" + }, "topFriendsText": "Les amis les mieux classés", "tournamentCheckingStateText": "Vérification de l'état du tournoi; attendez SVP...", "tournamentEndedText": "Ce tournoi est terminé. Un nouveau commencera bientôt.", "tournamentEntryText": "Inscription au Tournoi", + "tournamentFinalStandingsText": "Classement final", "tournamentResultsRecentText": "Résultats des Tournois Récents", "tournamentStandingsText": "Classements du Tournoi", "tournamentText": "Tournoi", @@ -1555,6 +1619,18 @@ "Uber Onslaught": "Bousculade Uber", "Uber Runaround": "Défense du portail Uber" }, + "displayItemNames": { + "${C} Tickets": "${C} Tickets", + "${C} Tokens": "${C} Jetons", + "Chest": "Coffre", + "L1 Chest": "Coffre N1", + "L2 Chest": "Coffre N2", + "L3 Chest": "Coffre N3", + "L4 Chest": "Coffre N4", + "L5 Chest": "Coffre N5", + "L6 Chest": "Coffre N6", + "Unknown Chest": "Coffre inconnu" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Restez l'élu pendant un certain temps pour gagner.\nTuez l'élu pour devenir l'élu.", "Bomb as many targets as you can.": "Bombardez autant de cibles que vous pouvez.", @@ -1660,6 +1736,7 @@ "Korean": "Coréen", "Malay": "Malais", "Persian": "Persan", + "PirateSpeak": "Parole de pirate", "Polish": "Polonais", "Portuguese": "Portugais", "Romanian": "Roumain", @@ -1734,6 +1811,7 @@ "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Tricherie détectée, scores et prix suspendus pour ${COUNT} jours.", "Could not establish a secure connection.": "Impossible d'établir une connexion sécurisé.", "Daily maximum reached.": "Limite quotidienne atteinte.", + "Daily sign-in reward": "Décompense de connexion quotidienne", "Entering tournament...": "Accès au tournoi...", "Invalid code.": "Code invalide.", "Invalid payment; purchase canceled.": "Payement invalide. Achat annulé.", @@ -1743,11 +1821,14 @@ "Item unlocked!": "Article débloqué!", "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "LIEN REFUSÉ. ${ACCOUNT} contient des\ndonnées importantes qui seraient perdus.\nVous pouvez lier dans l'ordre inverse si vous le souhaitez\n(et perdre les données de CE compte à la place)", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "Lier le compte ${ACCOUNT} à ce compte?\nToutes les données existantes sur ${ACCOUNT} seront perdues.\nCela ne peut pas être annulé. Vous en êtes sûr", + "Longer streaks lead to better rewards.": "Des séquences plus longues mènent à de meilleures récompenses.", "Max number of playlists reached.": "Nombre maximum de playlists atteint.", "Max number of profiles reached.": "Nombre maximum de profils atteint.", "Maximum friend code rewards reached.": "Maximum récompenses de code ami atteint.", "Message is too long.": "Message trop long.", + "New tournament result!": "Nouveau résultat du tournoi!", "No servers are available. Please try again soon.": "Aucun serveur disponible. S'il vous plaît réessayez plus tard.", + "No slots available. Free a slot and try again.": "Aucun emplacement libre. Libérez-en un et réessayez.", "Profile \"${NAME}\" upgraded successfully.": "Le profil \"${NAME}\" à été mis à jour.", "Profile could not be upgraded.": "Le profil ne peut pas être mis à jour.", "Purchase successful!": "Achat réussi!", @@ -1757,7 +1838,9 @@ "Sorry, this code has already been used.": "Désolé, ce code a déjà été utilisé.", "Sorry, this code has expired.": "Désolé, ce code a expiré.", "Sorry, this code only works for new accounts.": "Désolé, ce code fonctionne seulement pour les nouveaux comptes.", + "Sorry, this has expired.": "Désolé, il a expiré.", "Still searching for nearby servers; please try again soon.": "Recherche de serveurs à proximité en cours; s'il vous plaît réessayez plus tard.", + "Streak: ${NUM} days": "Série : ${NUM} jours", "Temporarily unavailable; please try again later.": "Temporairement indisponible; veuillez réessayer plus tard.", "The tournament ended before you finished.": "Le tournoi s'est terminé avant que vous finissiez.", "This account cannot be unlinked for ${NUM} days.": "Ce compte ne peux pas être dissocié pendant ${NUM} jours.", @@ -1768,19 +1851,28 @@ "Tournaments require ${VERSION} or newer": "Les tournois nécessitent ${VERSION} ou plus récent", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "Dissocier ${ACCOUNT} de ce compte?\nToutes les données sur ${ACCOUNT} seront réinitialisées.\n(à l'exception des achèvements dans certains cas)", "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "ATTENTION: des plaintes de piratage/tricherie ont été émises contre votre compte.\nLes comptes piratés sont interdits et bannis. S'il vous plaît, jouez fair play", + "Wait reduced!": "Attente réduite!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "Attention : Cette version du jeu est limitée aux anciennes données de compte ; des éléments pourraient manquer ou être obsolètes.\nVeuillez mettre le jeu à jour dans une version plus récente pour voir vos dernières données de compte.", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "Voulez-vous lier votre compte d'appareil à celui-ci?\n\nVotre compte d'appareil est ${ACCOUNT1}\nCe compte est ${ACCOUNT2}\n\nCeci vous permet de garder votre progression.\nAttention: ceci est permanent!", "You already own this!": "Vous possédez déjà ceci!", "You can join in ${COUNT} seconds.": "Vous pouvez rejoindre dans ${COUNT} secondes.", "You don't have enough tickets for this!": "Vous n'avez pas assez de tickets pour ça!", "You don't own that.": "Cela ne vous appartient pas!", "You got ${COUNT} tickets!": "Vous avez reçu ${COUNT} tickets!", + "You got ${COUNT} tokens!": "Vous obtenez ${COUNT} jetons!", "You got a ${ITEM}!": "Vous avez reçu un ${ITEM}!", + "You got a chest!": "Tu as un coffre!", + "You got an achievement reward!": "Vous recevez une récompense de succès!", "You have been promoted to a new league; congratulations!": "Vous avez été promu à une ligue supérieure; félicitations!", + "You lost a chest! (All your chest slots were full)": "Vous perdez un coffre! (Tous vos coffres étaient pleins)", + "You must update the app to view this.": "Mettez à jour l'app pour voir ceci.", "You must update to a newer version of the app to do this.": "L'app doit être mise à jour pour faire ceci.", "You must update to the newest version of the game to do this.": "Vous devez mettre à jour vers une version plus récente pour faire ça.", "You must wait a few seconds before entering a new code.": "Vous devez attendre quelques secondes avant d'entrer un nouveau code.", + "You placed #${RANK} in a tournament!": "Vous avez placé #${RANK} dans un tournoi!", "You ranked #${RANK} in the last tournament. Thanks for playing!": "Vous avez été classé #${RANK} au dernier tournoi. Merci d'avoir participé!", "Your account was rejected. Are you signed in?": "Votre compte a été rejeté. Êtes-vous connecté?", + "Your ad views are not registering. Ad options will be limited for a while.": "Vos vues pubs ne sont pas enregistrées. Les options pubs seront limitées pendant un temps.", "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Votre copie du jeu a été modifié.\nRéinitialisez tous changements et réessayez.", "Your friend code was used by ${ACCOUNT}": "Votre code d'ami a été utilisé par ${ACCOUNT}" }, @@ -1936,6 +2028,7 @@ "twoKillText": "DOUBLE MEURTRE!", "uiScaleText": "Échelle UI", "unavailableText": "indisponible", + "unclaimedPrizesText": "Vous avez des prix non réclamés !", "unconfiguredControllerDetectedText": "Contrôleur non-configuré détecté:", "unlockThisInTheStoreText": "Cela doit être débloqué dans le magasin.", "unlockThisProfilesText": "Pour créer plus de ${NUM} profiles, vous avez besoin de:", @@ -1948,10 +2041,13 @@ "upgradeText": "Mise à jour", "upgradeToPlayText": "Débloquez \"${PRO}\" dans le magasin pour jouer ceci.", "useDefaultText": "Utilisez le Défaut", + "userSystemScriptsCreateText": "Créer un script système d'utilisateur", + "userSystemScriptsDeleteText": "Script système de suppression d'utilisateur", "usesExternalControllerText": "Ce jeu utilise un contrôleur externe pour l'input.", "usingItunesText": "Utilisez Music App pour la bande-son...", "usingItunesTurnRepeatAndShuffleOnText": "Vérifiez que 'Lecture Aléatoire'='ACTIF' et 'Reprise'='TOUT' dans iTunes.", "v2AccountLinkingInfoText": "Pour lier des comptes V2, utilisez le bouton 'Gérer compte'.", + "v2AccountRequiredText": "Ceci requière un compte V2. Veuillez mettre à jour votre compte et essayez à nouveau.", "validatingBetaText": "Validation de la beta...", "validatingTestBuildText": "Validation de la Version Test...", "viaText": "via", @@ -2021,5 +2117,6 @@ }, "yesAllowText": "Oui, Autoriser!", "yourBestScoresText": "Vos meilleurs scores", - "yourBestTimesText": "Vos meilleurs temps" + "yourBestTimesText": "Vos meilleurs temps", + "yourPrizeText": "Votre prix:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/german.json b/dist/ba_data/data/languages/german.json index ae233de..e58facc 100644 --- a/dist/ba_data/data/languages/german.json +++ b/dist/ba_data/data/languages/german.json @@ -1,13 +1,15 @@ { "accountSettingsWindow": { - "accountNameRules": "Der Konto Name darf kein Emoji oder andere spezielle Zeichen enthalten", + "accountNameRules": "Der Konto Name kann keine Emojis oder andere spezielle Zeichen enthalten", "accountProfileText": "Benutzerprofil", - "accountsText": "Konten", + "accountsText": "Accounts", "achievementProgressText": "Erfolge: ${COUNT} von ${TOTAL}", "campaignProgressText": "Kampagnen Fortschritt [Schwer]: ${PROGRESS}", "changeOncePerSeason": "Du kannst dies nur einmal pro Saison ändern.", - "changeOncePerSeasonError": "Du musst warten bis du das wieder in der nächsten Saison ändern kannst. (${NUM} Tage)", + "changeOncePerSeasonError": "Du musst warten auf die nächste Saison warten um dies zu ändern. (${NUM} Tage)", + "createAnAccountText": "Konto erstellen", "customName": "Benutzerdefinierter Name", + "deleteAccountText": "Account löschen", "googlePlayGamesAccountSwitchText": "Wenn Sie ein anderes Google-Konto verwenden möchten,\nVerwenden Sie die Google Play Games-App, um zu wechseln.", "linkAccountsEnterCodeText": "Code eingeben", "linkAccountsGenerateCodeText": "Code generieren", @@ -26,14 +28,16 @@ "setAccountNameDesc": "Wählen Sie den Namen aus, der für Ihr Konto angezeigt werden soll.\nSie können den Namen von einem Ihrer verlinkten\nKonten benutzen oder erstellen Sie einen einzigartigen benutzerdefinierten Name.", "signInInfoText": "Melde dich an, um deinen Fortschritt in der Cloud zu speichern,\nTickets zu verdienen und an Turnieren teilzunehmen.", "signInText": "Anmelden", + "signInWithAnEmailAddressText": "Gib eine E-Mail Adresse an.", "signInWithDeviceInfoText": "(ein automatisches Konto, das du nur auf diesem Gerät benutzen kannst)", "signInWithDeviceText": "Mit Gerät-Konto einloggen", "signInWithGameCircleText": "Mit Game Circle einloggen", "signInWithGooglePlayText": "Mit Google Play anmelden", "signInWithTestAccountInfoText": "(veraltete Kontoart, benutze Geräte-Kontos)", "signInWithTestAccountText": "Mit Testkonto einloggen", + "signInWithText": "Gib es an mit${SERVICE}", "signInWithV2InfoText": "(Ein Account der auf allen Plattformen funktioniert)", - "signInWithV2Text": "Einloggen mit einem BombSquad Account", + "signInWithV2Text": "Einloggen mit einem ${APP_NAME} Account", "signOutText": "Abmelden", "signingInText": "Anmelden...", "signingOutText": "Abmelden...", @@ -346,6 +350,8 @@ "allowText": "Erlauben", "alreadySignedInText": "Dein Account wird schon von einem anderen Gerät verwendet;\nbitte wechsle den Account oder schließe das Spiel auf\ndeinem anderen Gerät und versuche es nochmal.", "apiVersionErrorText": "Das Modul ${NAME} kann nicht geladen werden. Es benutzt API-Version ${VERSION_USED}, aber wir brauchen ${VERSION_REQUIRED}.", + "applyText": "Anwenden", + "areYouSureText": "Bist du dir sicher?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(\"Auto\" erlaubt das nur, wenn Kopfhörer angeschlossen sind)", "headRelativeVRAudioText": "Kopf-Orientiertes VR Audio", @@ -370,14 +376,24 @@ "boostText": "Boost", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} ist in der App konfiguriert.", "buttonText": "Taste", - "canWeDebugText": "Möchtest du, dass BombSquad automatisch Fehler, Abstürze\nund Benutzeraktivitäten an den Entwickler sendet?\n\nDiese Daten enthalten keinerlei persönliche Informationen\nund helfen, das Spiel reibungslos und fehlerfrei zu erhalten.", + "canWeDebugText": "Möchtest du, dass ${APP_NAME} automatisch Fehler, Abstürze\nund Benutzeraktivitäten an den Entwickler sendet?\n\nDiese Daten enthalten keinerlei persönliche Informationen\nund helfen, das Spiel reibungslos und fehlerfrei zu erhalten.", "cancelText": "Abbrechen", "cantConfigureDeviceText": "Entschuldigung, ${DEVICE} ist nicht konfigurierbar.", "challengeEndedText": "Diese Herausforderung ist beendet.", "chatMuteText": "Chat stummschalten", "chatMutedText": "Chat stumm", "chatUnMuteText": "Chat aktivieren", + "chests": { + "prizeOddsText": "Preis Chancen", + "reduceWaitText": "Wartezeit verkürzen", + "slotDescriptionText": "Hier könnte eine Truhe sein.\n\nVerdiene Truhen, indem du Kampagnenlevels spielst,\nin Turnieren gewinnst und durch das Erreichen von \nErfolgen.", + "slotText": "Truhen Slot ${NUM}", + "slotsFullWarningText": "WARNUNG: Alle Ihre Truhenplätze sind voll.\nAlle Truhen, die du in diesem Spiel verdienst, sind verloren.", + "unlocksInText": "Freigeschaltet In" + }, "choosingPlayerText": "", + "claimText": "Beanspruchen", + "codesExplainText": "Die Codes werden verwaltet von dem Entwickler,\nDieser diagnostiziert und korrigiert Kontenprobleme.", "completeThisLevelToProceedText": "Du musst dieses Level\nabschließen um fortzufahren!", "completionBonusText": "Bewältigungsbonus", "configControllersWindow": { @@ -467,6 +483,7 @@ "titleText": "Touchscreen einstellen", "touchControlsScaleText": "Touch Steuerung Skalierung" }, + "configureDeviceInSystemSettingsText": "${DEVICE} kann in der System Settings App eingestellt werden.", "configureItNowText": "Konfiguriere es jetzt?", "configureText": "Konfigurieren", "connectMobileDevicesWindow": { @@ -580,6 +597,7 @@ "demoText": "Demo", "denyText": "Verweigern", "deprecatedText": "Veraltet", + "descriptionText": "Beschreibung", "desktopResText": "Desktop Auflösung", "deviceAccountUpgradeText": "Achtung:\nDu bist mit einem Gerät-Konto angemeldet (${NAME}).\nGerät-Konten werden in einem kommendem Update entfernt.\nVerbessere zu einem V2 Konto, wenn du deinen Fortschritt behalten willst.", "difficultyEasyText": "Leicht", @@ -591,7 +609,9 @@ "disableXInputDescriptionText": "Erlaubt mehr als 4 Controller aber kann schlechter funktionieren.", "disableXInputText": "XInput deaktivieren", "disabledText": "Deaktiviert", + "discardText": "Verwerfen", "discordFriendsText": "Suchst du neue Leute mit denen du spielen kannst? Trete unserem Discord bei und finde neue Freunde!", + "discordJoinText": "Treten Sie Discord bei", "doneText": "Fertig", "drawText": "Unentschieden", "duplicateText": "dublizieren", @@ -678,6 +698,8 @@ "errorText": "Fehler", "errorUnknownText": "unbekannter Fehler", "exitGameText": "${APP_NAME} verlassen?", + "expiredAgoText": "Seit ${T} ausgelaufen", + "expiresInText": "Läuft aus in ${T}", "exportSuccessText": "'${NAME}' exportiert.", "externalStorageText": "externer Datenspeicher", "failText": "Fehlgeschlagen", @@ -715,6 +737,7 @@ "gameListText": "Spieleliste", "newText": "Neue\nPlaylist", "pointsToWinText": "Punkte um zu Gewinnen", + "seriesLengthText": "Serienlänge", "showTutorialText": "Tutorial anzeigen", "shuffleGameOrderText": "Zufällige Spielreihenfolge", "titleText": "${TYPE}-Playlists bearbeiten" @@ -743,6 +766,7 @@ "copyCodeConfirmText": "Veranstalten Sie eine private Party", "copyCodeText": "Code kopieren", "dedicatedServerInfoText": "Das beste Ergebnis wird mit einem dedizierten Server erreicht. Auf bombsquadgame.com/server steht wie es geht.", + "descriptionShortText": "Nutz das Party Fenster um eine Party zu kreieren.", "disconnectClientsText": "Dadurch werden die ${COUNT} Spieler in Ihrer\nParty getrennt. Sind Sie sicher ?", "earnTicketsForRecommendingAmountText": "Freunde bekommen ${COUNT} Tickets, wenn sie das Spiel ausprobieren.\n(Du bekommst ${YOU_COUNT} für jeden, der es tut.)", "earnTicketsForRecommendingText": "Empfehle das Spiel an Freunde \nund ihr bekommt beide Tickets.", @@ -756,10 +780,10 @@ "friendPromoCodeAwardText": "Du bekommst ${COUNT} Tickets bei jeder Verwendung.", "friendPromoCodeExpireText": "Der Code wird in ${EXPIRE_HOURS} Stunden ungültig und funktioniert nur für neue Spieler.", "friendPromoCodeInfoText": "Kann für ${COUNT} Tickets eingelöst werden.\n\nGehe zu \"Einstellungen -> Erweitert -> Gutscheincode eingeben\" im Spiel um den Code einzulösen.\nBesuche bombsquadgame.com um das Spiel für alle unterstützten Platformen herunterzuladen.\nDieser Code wird in ${EXPIRE_HOURS} Stunden ungültig und kann nur von neuen Spielern eingelöst werden.", - "friendPromoCodeInstructionsText": "Um ihn einzulösen, öffne ${APP_NAME} und gehe zu \"Einstellungen->Erweitert->Gutscheincode eingeben\".\nAuf bombsquadgame.com findest du Links zum Download für alle unterstützten Plattformen.", + "friendPromoCodeInstructionsText": "Um ihn einzulösen,öffne ${APP_NAME} und gehe zu \"Einstellungen->erweitert-Information senden\".Auf bombsquad.com findest du Links zum Download für alle unterstützen\n Plattformen.", "friendPromoCodeRedeemLongText": "Er kann für ${COUNT} kostenlose Tickets von bis zu ${MAX_USES} Personen eingelöst werden.", "friendPromoCodeRedeemShortText": "Es kann im Spiel für ${COUNT} eingelöst werden.", - "friendPromoCodeWhereToEnterText": "(in \"Einstellungen->Erweitert->Gutscheincode eingeben\")", + "friendPromoCodeWhereToEnterText": "(In \"Einstellungen->erweitert->Informationen senden\")", "getFriendInviteCodeText": "Bekomme einen Einladungscode für Freunde", "googlePlayDescriptionText": "Lade Google Play Freunde zu deiner Party ein:", "googlePlayInviteText": "Einladen", @@ -791,6 +815,7 @@ "manualYourLocalAddressText": "Deine Lokale Adresse", "nearbyText": "In der Nähe", "noConnectionText": "", + "noPartiesAddedText": "Keine Partys ergänzt", "otherVersionsText": "(andere Versionen)", "partyCodeText": "Party Code", "partyInviteAcceptText": "Akzeptieren", @@ -863,6 +888,12 @@ "youHaveShortText": "Du hast ${COUNT}", "youHaveText": "Du hast ${COUNT} Tickets" }, + "goldPass": { + "desc1InfTokensText": "Unendliche Token.", + "desc2NoAdsText": "Keine Werbung.", + "desc3ForeverText": "Dauerhaft.", + "goldPassText": "Gold Pass" + }, "googleMultiplayerDiscontinuedText": "Sorry, Googles Multiplayerservice ist nicht länger verfügbar.\nIch arbeite so schnell wie möglich an einem Ersatz.\nBis dahin, versuche bitte eine andere Verbindungsmethode.\n-Eric", "googlePlayPurchasesNotAvailableText": "Google Play-Käufe sind nicht verfügbar.\nMöglicherweise müssen Sie Ihre Store-App aktualisieren.", "googlePlayServicesNotAvailableText": "Google Play-Dienste sind nicht verfügbar.\nEinige App-Funktionen sind möglicherweise deaktiviert.", @@ -959,6 +990,7 @@ "importText": "Importieren", "importingText": "Wird importiert...", "inGameClippedNameText": "Im Spiel angezeigter Name wird \n\"${NAME}\"", + "inboxText": "Nachrichten", "installDiskSpaceErrorText": "ERROR: Installation wurde nicht abgeschlossen.\nEs ist nicht genug Speicherplatz verfügbar.\nVersuche es erneut, nachdem genügend Speicher freigegeben wurde.", "internal": { "arrowsToExitListText": "drücke ${LEFT} oder ${RIGHT}, um die Liste zu verlassen", @@ -1015,12 +1047,14 @@ "touchScreenJoinWarningText": "Du bist mit dem Touchscreen beigetreten.\nWenn das ein Versehen war, drücke 'Menü->Spiel Beenden' damit.", "touchScreenText": "TouchScreen", "trialText": "Testversion", + "unableToCompleteTryAgainText": "Diese Aktion ist gerade nicht möglich. \nBitte versuche es später erneut", "unableToResolveHostText": "Fehler: Verbindung zum Host konnte nicht aufgelöst werden.", "unavailableNoConnectionText": "Zurzeit nicht verfügbar. (Keine Internetverbindung?)", "vrOrientationResetCardboardText": "Benutze dies,um die VR orientierung zurückzusetzen.\nUm das Spiel spielen zu können, brauchst du einen externen controller.", "vrOrientationResetText": "Kalibriere VR Orientierung.", "willTimeOutText": "(wird unterbrochen, wenn keine Eingabe)" }, + "inventoryText": "Inventar", "jumpBoldText": "SPRING", "jumpText": "Spring", "keepText": "Halten", @@ -1067,8 +1101,11 @@ "seasonEndsMinutesText": "Die Saison endet in ${NUMBER} Minuten.", "seasonText": "Saison ${NUMBER}", "tournamentLeagueText": "Du musst die ${NAME} Liga erreichen um dieses Turnier zu spielen.", - "trophyCountsResetText": "Die Trophäenzahl wird nächste Season zurückgesetzt." + "trophyCountsResetText": "Die Trophäenzahl wird nächste Season zurückgesetzt.", + "upToDateBonusDescriptionText": "Spiele mit den neuesten Bombsquad Version \nerhalten hier einen ${PERCENT}%igen Bonus.", + "upToDateBonusText": "Aktuell-Bonus" }, + "learnMoreText": "Erfahre mehr", "levelBestScoresText": "Bestes Ergebnis bei ${LEVEL}", "levelBestTimesText": "Beste Zeiten bei ${LEVEL}", "levelFastestTimesText": "Schnellste Zeit auf ${LEVEL}", @@ -1115,6 +1152,8 @@ "modeArcadeText": "Arcade-Modus", "modeClassicText": "Klassischer Modus", "modeDemoText": "Demo Modus", + "moreSoonText": "Mehr ist in Arbeit...", + "mostDestroyedPlayerText": "Meist zerstörter Spieler", "mostValuablePlayerText": "Wertvollster Spieler", "mostViolatedPlayerText": "Meist getöteter Spieler", "mostViolentPlayerText": "Brutalster Spieler", @@ -1131,6 +1170,7 @@ "nameSuicideText": "${NAME} begeht Selbstmord.", "nameText": "Name", "nativeText": "Native Einstellung", + "newExclaimText": "Neu!", "newPersonalBestText": "Neuer persönlicher Rekord!", "newTestBuildAvailableText": "Ein neuerer Test-Build ist erhältlich (${VERSION} Build ${BUILD}).\nZu holen auf ${ADDRESS}", "newText": "Neu", @@ -1142,6 +1182,8 @@ "noExternalStorageErrorText": "Kein externer Datenspeicher auf dem Gerät gefunden", "noGameCircleText": "Fehler: nicht in GameCircle eingeloggt", "noJoinCoopMidwayText": "Koop-Spiele können nicht während des Spiels betreten werden.", + "noMessagesText": "Keine Nachrichten.", + "noPluginsInstalledText": "Keine Plugins installiert", "noProfilesErrorText": "Du hast kein Spielerprofil, deshalb ist dein Name \"${NAME}\".\nGehe zu Einstellungen->Spielerprofile um ein Profil anzulegen.", "noScoresYetText": "Noch kein Punktestand.", "noServersFoundText": "Keine Server gefunden.", @@ -1150,6 +1192,7 @@ "noValidMapsErrorText": "Keine gültigen Karten für diesen Spieltyp gefunden.", "notEnoughPlayersRemainingText": "Nicht genug Spieler übrig; Spiel verlassen oder neues Spiel starten.", "notEnoughPlayersText": "Du benötigst mindestens ${COUNT} Spieler, um dieses Spiel zu starten.", + "notEnoughTicketsText": "Nicht genügend Tickets!", "notNowText": "Nicht jetzt", "notSignedInErrorText": "Du musst dich hierfür einloggen.", "notSignedInGooglePlayErrorText": "Hierfür musst du dich mit Google Play anmelden", @@ -1162,6 +1205,9 @@ "onText": "An", "oneMomentText": "Einen Moment...", "onslaughtRespawnText": "${PLAYER} steigt in Welle ${WAVE} wieder ein", + "openMeText": "Öffne mich!", + "openNowText": "Jetzt öffnen", + "openText": "Öffnen", "orText": "${A} oder ${B}", "otherText": "Sonstiges...", "outOfText": "(#${RANK} von ${ALL})", @@ -1257,6 +1303,8 @@ "punchText": "Schlagen", "purchaseForText": "Für ${PRICE} kaufen", "purchaseGameText": "Spiel kaufen", + "purchaseNeverAvailableText": "Sorry, Einkäufe sind auf dieser Plattform nicht möglich.\nLog dich in einen anderen Account einer anderen Plattform ein, und versuche dies von dort aus erneut.", + "purchaseNotAvailableText": "Dieser Einkauf ist nicht möglich.", "purchasingText": "Bezahlt...", "quitGameText": "${APP_NAME} beenden?", "quittingIn5SecondsText": "Verlasse das Spiel in 5 Sekunden...", @@ -1299,6 +1347,7 @@ "version_mismatch": "Versionskonflikt.\nVersuch es mit den aktuellen Versionen von\nBombSquad und BombSquad Remote noch einmal." }, "removeInGameAdsText": "Schalte \"${PRO}\" im Store frei, um Werbung zu entfernen.", + "removeInGameAdsTokenPurchaseText": "FÜR LIMITIERTE ZEIT: kaufe IRGENDEIN Token Pack und die Werbungen werden entfernt.", "renameText": "Name ändern", "replayEndText": "Wiederholung beenden", "replayNameDefaultText": "Letztes Spiel ansehen", @@ -1332,6 +1381,7 @@ }, "scoreWasText": "(war ${COUNT})", "selectText": "Auswählen", + "sendInfoDescriptionText": "Senden Sie Konto- und App-informationen zum Entwickler.\nBitte ergänzen Sie Ihren Namen und den Grund des Sendens", "seriesWinLine1PlayerText": "GEWINNT DIE", "seriesWinLine1Scale": 0.65, "seriesWinLine1TeamText": "GEWINNT DIE", @@ -1353,24 +1403,32 @@ }, "settingsWindowAdvanced": { "alwaysUseInternalKeyboardDescriptionText": "(Eine einfache, Controller-freundliche Bildschirmtastatur für Texte)", - "alwaysUseInternalKeyboardText": "Immer interne Tastatur benutzen", + "alwaysUseInternalKeyboardText": "Immer die interne Tastatur benutzen", "benchmarksText": "Benchmarks & Stress-Tests", + "devToolsText": "Entwicklungswerkzeuge", "disableCameraGyroscopeMotionText": "Deaktivieren Sie die Kamera-Gyroskop-Bewegung", - "disableCameraShakeText": "Deaktivieren Sie Camera Shake", + "disableCameraShakeText": "Deaktivieren Sie Kamera-Bewegungen.", "disableThisNotice": "(Du kannst diese Notiz in den erweiterten Einstellungen ändern.)", "enablePackageModsDescriptionText": "(Aktiviert installierte Mods aber deaktiviert den Mehrspielermodus)", "enablePackageModsText": "Local Package Mods aktivieren", "enterPromoCodeText": "Gutscheincode eingeben", "forTestingText": "Wichtig: Diese Werte sind nur für Tests und werden später wieder zurückgesetzt.", "helpTranslateText": "${APP_NAME}'s Übersetzungen sind der Community zu\nverdanken. Wenn du eine Übersetzung hinzufügen oder \nverbessern willst, folge dem Link unten. Danke im Voraus!", + "insecureConnectionsDescriptionText": "nicht empfohlen, kann dir jedoch die Online Play Funktion\nin eingeschränkten Ländern ermöglichen", + "insecureConnectionsText": "Instabile Verbindungen verwenden", "kickIdlePlayersText": "Inaktive Spieler verbannen", "kidFriendlyModeText": "Kinderfreundlicher Modus (Reduzierte Gewalt, etc.)", "languageText": "Sprache", "moddingGuideText": "Modding Anleitung", + "moddingToolsText": "Modding Werkzeuge", "mustRestartText": "Das Spiel muss neugestartet werden um die Änderungen wirksam zu machen.", "netTestingText": "Netzwerk Tests", "resetText": "Zurücksetzen", + "sendInfoText": "Information senden", "showBombTrajectoriesText": "Zeige die Bomben-Flugbahn", + "showDemosWhenIdleText": "Zeigen sie Abstimmungen, when sie inaktiv sind", + "showDeprecatedLoginTypesText": "Zeigen sie Login-Möglichkeiten", + "showDevConsoleButtonText": "Zeigen sie den Konsolen-Knopf", "showInGamePingText": "Zeige Ping im Spiel", "showPlayerNamesText": "Zeige Spielernamen", "showUserModsText": "Zeige Mods-Ordner", @@ -1379,8 +1437,8 @@ "translationFetchErrorText": "Übersetzungsstatus nicht verfügbar....", "translationFetchingStatusText": "prüfe Übersetzungsstatus...", "translationInformMe": "Informiere mich, wenn meine Sprache Updates benötigt.", - "translationNoUpdateNeededText": "Die ausgewählte Sprache ist aktuell; Juhuuu!", - "translationUpdateNeededText": "** die ausgewählte Sprache ist nicht aktuell!! **", + "translationNoUpdateNeededText": "Die aktuelle Sprache ist auf dem neuesten Stand; Juhuuu!", + "translationUpdateNeededText": "** Die ausgewählte Sprache benötigt Updates!! **", "vrTestingText": "VR Tests" }, "shareText": "Teilen", @@ -1418,6 +1476,7 @@ }, "spaceKeyText": "Leer", "statsText": "Statistiken", + "stopRemindingMeText": "Nicht mehr erinnern", "storagePermissionAccessText": "Dies benötigt Zugriff auf deinen Speicher", "store": { "alreadyOwnText": "Du besitzt bereits ${NAME}!", @@ -1469,6 +1528,8 @@ "storeText": "Laden", "submitText": "Bestätigen", "submittingPromoCodeText": "Code wird übertragen...", + "successText": "Erfolg!", + "supportEmailText": "Wenn du irgendwelche Probleme mit der App hast, \nKontaktiere bitte den Entwickler ${EMAIL}", "teamNamesColorText": "Team Namen/Farben...", "teamsText": "Teams", "telnetAccessGrantedText": "Telnet Zugang aktiviert.", @@ -1479,6 +1540,7 @@ "testBuildValidatedText": "Testversion ist gültig; Viel Spaß!", "thankYouText": "Vielen Dank für deine Hilfe und viel Spaß!!", "threeKillText": "DREIFACH KILL!!", + "ticketsDescriptionText": "Tickets können zum Freischalten von Charakteren\nKarten, Minispiele und mehr im Shop freizuschalten.\n\nTickets können in Truhen gefunden werden, die durch\nKampagnen, Turnieren und Erfolge gewonnen werden.", "timeBonusText": "Zeitbonus", "timeElapsedText": "Vergangene Zeit", "timeExpiredText": "Zeit abgelaufen!", @@ -1489,10 +1551,24 @@ "tipText": "Tipp", "titleText": "BombSquad", "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "Hole Token", + "notEnoughTokensText": "Nicht genug Token!", + "numTokensText": "${COUNT} Token", + "openNowDescriptionText": "Du hast genug Münzen\num jetzt zu öffnen - du brauchst nicht \nzu warten.", + "shinyNewCurrencyText": "Bombsquad's neue glänzende Währung.", + "tokenPack1Text": "Kleines Token Paket", + "tokenPack2Text": "Mittleres Token Paket", + "tokenPack3Text": "Großes Token Paket", + "tokenPack4Text": "Riesen Token Paket", + "tokensDescriptionText": "Token werden verwendet, um die Freischaltung von Truhen zu beschleunigen\nund für andere Spiel- und Kontofunktionen.\n\nDu kannst Token im Spiel gewinnen oder sie\nin Paketen kaufen. Oder kaufe einen Gold Pass\nfür unendlich viele.", + "youHaveGoldPassText": "Du hast den Gold Pass.\nAlle Token-Einkäufe sind kostenlos.\nViel Spaß!" + }, "topFriendsText": "Top Freunde", "tournamentCheckingStateText": "Überprüfe Turnier Status; Bitte warten...", "tournamentEndedText": "Dieses Turnier ist zu Ende. Ein Neues startet bald.", "tournamentEntryText": "Turnier beitreten", + "tournamentFinalStandingsText": "Endstand", "tournamentResultsRecentText": "Neueste Turnierergebnisse", "tournamentStandingsText": "Tournier Tabelle", "tournamentText": "Turnier", @@ -1566,6 +1642,18 @@ "Uber Onslaught": "Unmöglich heftiger Angriff", "Uber Runaround": "Unmöglich an der Nase herumführen" }, + "displayItemNames": { + "${C} Tickets": "${C} Tickets", + "${C} Tokens": "${C} Tokens", + "Chest": "Truhe", + "L1 Chest": "L1 Truhe", + "L2 Chest": "L2 Truhe", + "L3 Chest": "L3 Truhe", + "L4 Chest": "L4 Truhe", + "L5 Chest": "L5 Truhe", + "L6 Chest": "L6 Truhe", + "Unknown Chest": "Unbekannte Truhe" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Sei eine Zeit lang der Auserwählte, um zu gewinnen.\nTöte ihn, um selbst zum Auserwählten zu werden.", "Bomb as many targets as you can.": "Zerbombe so viele Ziele wie Du kannst.", @@ -1671,6 +1759,7 @@ "Korean": "Koreanisch", "Malay": "Malaiisch", "Persian": "Persisch", + "PirateSpeak": "Piratensprache", "Polish": "Polnisch", "Portuguese": "Portugiesisch", "Romanian": "Rumänisch", @@ -1745,6 +1834,7 @@ "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Cheating erkannt; deine Punkte und Preise sind für ${COUNT} Tage gesperrt.", "Could not establish a secure connection.": "Konnte keine sichere Verbindung herstellen.", "Daily maximum reached.": "Tageslimit erreicht.", + "Daily sign-in reward": "Tägliche Login Belohnung", "Entering tournament...": "Trete Turnier bei...", "Invalid code.": "Ungültiger Code", "Invalid payment; purchase canceled.": "Ungültige Zahlung; Einkauf abgebrochen.", @@ -1754,11 +1844,14 @@ "Item unlocked!": "Gegenstand freigeschaltet!", "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "VERLINKUNG VERWEIGERT. ${ACCOUNT} beinhaltet\nwichtige Daten, die ALLE VERLOREN wären.\nDu kannst andersherum verlinken, wenn du willst\n(Du würdest stattdessen DIESE Account-Daten verlieren)", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "Den Account ${ACCOUNT} mit diesem Account verknüpfen?\nJeglicher Fortschritt des Accounts ${ACCOUNT} wird verloren gehen!\nDies kann nicht rückgängig gemacht werden! Fortfahren?", + "Longer streaks lead to better rewards.": "Je länger die Streaks, desto besser die Belohnung.", "Max number of playlists reached.": "Max Anzahl von Wiedergabelisten erreicht.", "Max number of profiles reached.": "Max Anzahl der Profile erreicht.", "Maximum friend code rewards reached.": "Maximale Anzahl an Einladungsbelohnungen erreicht.", "Message is too long.": "Nachricht ist zu lang.", + "New tournament result!": "Neues Turnier Ergebnis!", "No servers are available. Please try again soon.": "Keine Server verfügbar. Schau nachher noch einmal vorbei.", + "No slots available. Free a slot and try again.": "Keine Slots mehr verfügbar. Mach einen Slot frei und versuche es noch einmal", "Profile \"${NAME}\" upgraded successfully.": "Profil \"${NAME}\" erfolgreich aktualisiert.", "Profile could not be upgraded.": "Profil konnte nicht aktualisiert werden.", "Purchase successful!": "Einkauf erfolgreich!", @@ -1768,7 +1861,9 @@ "Sorry, this code has already been used.": "Tut uns leid, dieser Code wurde bereits eingelöst.", "Sorry, this code has expired.": "Tut uns leid, dieser Code ist nicht mehr gültig.", "Sorry, this code only works for new accounts.": "Tut uns leid, dieser Code kann nur mit einem neuen Account eingelöst werden.", + "Sorry, this has expired.": "Sorry, das ist abgelaufen.", "Still searching for nearby servers; please try again soon.": "Suche immernoch nach Servern in der Nähe; schau nachher noch einmal vorbei.", + "Streak: ${NUM} days": "Streak: ${NUM} Tage", "Temporarily unavailable; please try again later.": "Vorübergehend nicht verfügbar. Bitte versuche es später noch einmal.", "The tournament ended before you finished.": "Das Turnier endete bevor du ins Ziel kamst.", "This account cannot be unlinked for ${NUM} days.": "Dieser Account kann nicht für ${NUM} Tage entknüpft werden.", @@ -1779,19 +1874,28 @@ "Tournaments require ${VERSION} or newer": "Turniere benötigen Version ${VERSION} oder neuer", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "Den Account ${ACCOUNT} von diesem Account entknüpfen?\nJeglicher Fortschritt auf ${ACCOUNT} wird zurückgesetzt.\n(außer Erfolge in manchen Fällen)", "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "Beschwerden von Hacking sind für deinen Account aufgetreten.\nAccount, welche des Hackings verdächtigt werden, werden gesperrt. Bitte spiele gerecht.", + "Wait reduced!": "Wartezeit verkürzt!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "Warnung: Diese Version des Spiels verwendet veraltete Kontodaten. Einige Inhalte könnten fehlen oder nicht aktuell sein.\nBitte aktualisiere auf eine neuere Version, um deine aktuellen Kontodaten anzuzeigen.", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "Willst du deinen Gerät-Account mit diesem Account verlinken?\n\nDein Gerät-Account: ${ACCOUNT1}\nDieser Account: ${ACCOUNT2}\n\nDies wird dir ermöglichen, deinen Fortschritt zu behalten.\nAchtung: Du kannst es nicht rückgängig machen!", "You already own this!": "Du besitzt es bereits!", "You can join in ${COUNT} seconds.": "Du kannst in ${COUNT} Sekunden beitreten", "You don't have enough tickets for this!": "Du hast nicht genug Tickets dafür!", "You don't own that.": "Du besitzt das nicht.", "You got ${COUNT} tickets!": "Du hast ${COUNT} Tickets!", + "You got ${COUNT} tokens!": "Du hast ${COUNT} Token bekommen!", "You got a ${ITEM}!": "Du kriegst ein ${ITEM}!", + "You got a chest!": "Du hast eine Truhe bekommen!", + "You got an achievement reward!": "Du hast eine Belohnung für einen Erfolg erhalten!", "You have been promoted to a new league; congratulations!": "Du bist eine Liga aufgestiegen; Glückwunsch!", + "You lost a chest! (All your chest slots were full)": "Du hast eine Truhe verloren! (Alle Truhen Slots waren besetzt)", + "You must update the app to view this.": "Aktualisiere die App um es anzuzeigen.", "You must update to a newer version of the app to do this.": "Du musst deine Version updaten, um dies zu tun.", "You must update to the newest version of the game to do this.": "Du musst zur neusten Version des Spiels updaten um dies zu tun.", "You must wait a few seconds before entering a new code.": "Du musst ein wenig warten bevor du einen neuen Code eingeben kannst.", + "You placed #${RANK} in a tournament!": "Du bist #${RANK} in einem Turnier geworden!", "You ranked #${RANK} in the last tournament. Thanks for playing!": "Du hast den #${RANK} Platz im letzten Turnier erreicht. Danke fürs Spielen!", "Your account was rejected. Are you signed in?": "Dein Account wurde abgelehnt. Bist du eingeloggt?", + "Your ad views are not registering. Ad options will be limited for a while.": "Deine Anzeigenaufrufe werden derzeit nicht erfasst. Die Auswahl an Anzeigenoptionen ist vorübergehend eingeschränkt.", "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Die Kopie dieses Spiels wurde modifiziert.\nÄnderungen rückgängig machen & neu versuchen.", "Your friend code was used by ${ACCOUNT}": "Dein Freundschafts-Code wurde von ${ACCOUNT} verwendet." }, @@ -1945,11 +2049,14 @@ "toSkipPressAnythingText": "(beliebige Taste drücken um Tutorial zu überspringen)" }, "twoKillText": "DOPPEL KILL!", + "uiScaleText": "UI Wert", "unavailableText": "nicht verfügbar", + "unclaimedPrizesText": "Es warten noch Belohnungen auf dich!", "unconfiguredControllerDetectedText": "Unkonfigurierter Controller erkannt:", "unlockThisInTheStoreText": "Das muss im Store freigeschaltet werden.", "unlockThisProfilesText": "Um mehr als ${NUM} Profile zu erstellen, brauchst du:", "unlockThisText": "Um das zu entsperren brauchst du:", + "unsupportedControllerText": "Der Controller \"${NAME}\" wird nicht unterstützt", "unsupportedHardwareText": "Entschuldigung, diese Hardware wird nicht unterstützt.", "upFirstText": "Zuerst:", "upNextText": "Als Nächstes in Spiel ${COUNT}:", @@ -1957,12 +2064,16 @@ "upgradeText": "Verbessern", "upgradeToPlayText": "Upgrade auf \"${PRO}\" im Store um das zu Spielen.", "useDefaultText": "Standard benutzen", + "userSystemScriptsCreateText": "Erschaffen Sie Benutzer-System-Scripts", + "userSystemScriptsDeleteText": "Löschen Sie Benutzer-System-Scripts", "usesExternalControllerText": "Das Spiel nutzt einen externen Controller für die Eingaben.", "usingItunesText": "benutze Musik-App für Hintergrundmusik...", "usingItunesTurnRepeatAndShuffleOnText": "Stelle sicher, dass iTunes ZUFÄLLIG wiedergibt und ALLE wiederholt.", "v2AccountLinkingInfoText": "Um V2 Kontos zu verknüpfen, benutze den 'Konto Verwalten' Knopf.", + "v2AccountRequiredText": "Dazu wird ein V2 Account benötigt. Upgrade dein Account und versuche es erneut.", "validatingBetaText": "Verifizieren der Beta...", "validatingTestBuildText": "Bestätige Testversion...", + "viaText": "über", "victoryText": "Sieg!", "voteDelayText": "Die nächste Abstimmung kann erst in ${NUMBER} Sekunden gestartet werden.", "voteInProgressText": "Es wird bereits eine Abstimmung durchgeführt.", @@ -2038,5 +2149,6 @@ }, "yesAllowText": "Ja, erlauben!", "yourBestScoresText": "Deine besten Punktzahlen", - "yourBestTimesText": "Deine besten Zeiten" + "yourBestTimesText": "Deine besten Zeiten", + "yourPrizeText": "Deine Belohnung:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/gibberish.json b/dist/ba_data/data/languages/gibberish.json index 0e2b081..0481f76 100644 --- a/dist/ba_data/data/languages/gibberish.json +++ b/dist/ba_data/data/languages/gibberish.json @@ -1,14 +1,16 @@ { "accountRejectedText": "You ac woefije obj acwoew. Aj cowier wore cs?", "accountSettingsWindow": { - "accountNameRules": "Acoief coej. woejf. cwoef ocoweofwjfj c wjefowfowef wocjoweffz", + "accountNameRules": "Acoief coej. woejf. cwoef ocoweofwjfj c wjefowfowef wocjowedffz", "accountProfileText": "(acczntl prfflzlf)", "accountsText": "Acctntzz", "achievementProgressText": "Achilfjasdflz: ${COUNT} ouzt of ${TOTAL}", "campaignProgressText": "Cmapghan Progflzl: ${PROGRESS}", "changeOncePerSeason": "owe c wow chofu wefwoefjwofjowcowfwf.", "changeOncePerSeasonError": "You cows ow woefj woifjwo ec oweo fowijf owiejf (${NUM} cowefwe)", + "createAnAccountText": "Crjoiew an Acoiejfdf", "customName": "Cow oj wojNaoa", + "deleteAccountText": "Delft Cosdfsdf", "deviceSpecificAccountText": "Crrlzfjowf uznfl a divwfo-zpijfwo ancnfo ${NAME}", "googlePlayGamesAccountSwitchText": "If cows objc aw;eoifjw efoGoogl coweijwoejr,\nOc wore aero two cw oerjwoer jo gw spoeor.", "linkAccountsEnterCodeText": "Enrlr Cfdsz", @@ -37,7 +39,7 @@ "signInWithTestAccountText": "Sjc weo fwtjwoefj cowefwf", "signInWithText": "Sign fit cweof ${SERVICE}", "signInWithV2InfoText": "(an zofj c woof woke wo Eire wf ofjjowg)", - "signInWithV2Text": "Sngo cow erwoj CBombSOudds acorjds.", + "signInWithV2Text": "Sngo cow erwoj ${APP_NAME} acorjds.", "signOutText": "Sgngz Ozt", "signingInText": "Sgngngn infz..", "signingOutText": "Sngning ozt..", @@ -350,6 +352,8 @@ "allowText": "Alzéow", "alreadySignedInText": "Yr co wcowief woeijo wife ewf;\norc woeful oj ceofjwoejfowief\nocjwoef weofwocijweofw.", "apiVersionErrorText": "Cznt lzdz mdls ${NAME}; zt tarng faptr ${VERSION_USED}; wz rojafoqrz ${VERSION_REQUIRED}.", + "applyText": "Appcfwf", + "areYouSureText": "A foe fwocijwe?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(\"Aztoz\" enablez thz onlzl when hedifphz arnz plzzdd inz)", "headRelativeVRAudioText": "Hzad Rlztefijv VRZ Azdjfozl", @@ -374,14 +378,24 @@ "boostText": "Bfzesf", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} ís cónfigúred ín thé ápp itszlf.", "buttonText": "béttzn", - "canWeDebugText": "Woíld yoí lúké BombZqíád to áítomátúcálly réport\nbígz, crázhéz, ánd bázúc ízágé únfo to thé dévélopér?\n\nThúz dátá contáúnz no pérzonál únformátúon ánd hélpz\nkéép thé gámé rínnúng zmoothly ánd bíg-fréép.", + "canWeDebugText": "Woíld yoí lúké ${APP_NAME} to áítomátúcálly réport\nbígz, crázhéz, ánd bázúc ízágé únfo to thé dévélopér?\n\nThúz dátá contáúnz no pérzonál únformátúon ánd hélpz\nkéép thé gámé rínnúng zmoothly ánd bíg-fréép.", "cancelText": "Czéanczel", "cantConfigureDeviceText": "Sórry, ${DEVICE} ús nút cónfígúrzble.", "challengeEndedText": "Thzl cowfo jan fa eofnwoefnw.", "chatMuteText": "Mmof wChad", "chatMutedText": "Chad mamba", "chatUnMuteText": "Unobiaje Chafb", + "chests": { + "levelChestText": "LR${NUM} Czfjwer", + "prizeOddsText": "Pzoierj Odfsds", + "reduceWaitText": "Roijwoef Wjwore", + "slotDescriptionText": "THowi fwoeifj wo pwoejr s.\n\nWOewr c woej fjpwoe ow erja otjfpoweijr,\nocjwpeo. cowiej rrhpag, and pco wejrwpot\ncaowej cowiers.", + "slotText": "Chsof sdlfjoef ${NUM}", + "slotsFullWarningText": "WARNINEF: All owe fwoe fowior ;woeffufll.\nAOcn weow eroapoghwpeoi we. owejpwoejowe.", + "unlocksInText": "Ucowefij If" + }, "choosingPlayerText": "", + "claimText": "Clwefijwe", "codesExplainText": "Cody wc woeir wcpwep oijwoeifj\nwoe wefjwe ofiwjeocijwoerer.", "completeThisLevelToProceedText": "Yóz múst cómplítz\nthís lével tú próceed!", "completionBonusText": "Cúmplezión Búnís", @@ -598,6 +612,7 @@ "disableXInputDescriptionText": "Allow mor wow ejo4 cow oeicjwo cobu oaf woejfowie jowrj", "disableXInputText": "Dio cow eofwije", "disabledText": "Dfewfczfwef", + "discardText": "Dfwecwer", "discordFriendsText": "Weor owe fwjeowi cow fowijfowjdfdf?\nJJowjef c jewel dODIj c jdjfosijfdfs!", "discordJoinText": "JWeoj wc c wwdofijsd", "doneText": "Dónz", @@ -688,6 +703,8 @@ "errorText": "Errórz", "errorUnknownText": "unknznlz errzzz", "exitGameText": "$Excej ${APP_NAME}", + "expiredAgoText": "Expiofwef ${T} awoifje", + "expiresInText": "Expoijfwe f in ${T}", "exportSuccessText": "'${NAME}' woejpcj", "externalStorageText": "Extzljrzl Stjrfjzfgz", "failText": "Fáilz", @@ -755,6 +772,7 @@ "copyCodeText": "Cpoef Cwfdf", "copyConfirmText": "COpic for cowejwdf.", "dedicatedServerInfoText": "For code wocj woiejfowiejf, loci joweijf owiejfw. Se eocwj efowiejo wcoweijf woeifowoco er.", + "descriptionShortText": "Us fow cower. gowf pwoij df odfj g pawor aryh cowier.", "disconnectClientsText": "Thz wlzl dicntjf thz ${COUNT} pljflaf (s)\ninc yrrz prthra. Arz yrz fsrru?", "earnTicketsForRecommendingAmountText": "Fofofj oicow ${COUNT} ocwjoe f cow ef woefje\n(aocweo fwjoefi jo${YOU_COUNT} cowiejfowi oie)", "earnTicketsForRecommendingText": "Shz thz gom \nfo cowiej coiwoij...", @@ -879,6 +897,12 @@ "youHaveShortText": "you hv f ${COUNT}", "youHaveText": "yz hv ${COUNT} tickrrz" }, + "goldPass": { + "desc1InfTokensText": "Infowef oTjwof.", + "desc2NoAdsText": "Nz Weft", + "desc3ForeverText": "Fejrwoijfz.", + "goldPassText": "Goose Ppzif" + }, "googleMultiplayerDiscontinuedText": "Sowoer Gojf wel wouwen weoioc long wf won.\nI wow oe wefwjr pif g wfpawouja c oeij fw ocjaoiejowr.\nUntil. cowier oa j fapefij cpoypt ao coonnec awoiery.\n-Ercff", "googlePlayPurchasesNotAvailableText": "Weofiiwj woe woerd wieofjwe\ncome foe rj eofiaj cpwoe jrowjer..dd", "googlePlayServicesNotAvailableText": "GOowf cpw ef A coweij woerj.\nWomb woof cape wgwoijc we coowiejrerdss.", @@ -975,6 +999,7 @@ "importText": "Icwefwe", "importingText": "Imcowiew..", "inGameClippedNameText": "ic weof owef\n\"${NAME}\"", + "inboxText": "Iboiwjef", "installDiskSpaceErrorText": "ERROR: Unzlbj ao ppc pwef oj oinosjs.\nYos may aoefo wocw oeitjoidosdfdve.\nCjfewf wocjdo spac ando ro gaing.", "internal": { "arrowsToExitListText": "préss ${LEFT} ór ${RIGHT} tó exút lzst", @@ -1031,12 +1056,14 @@ "touchScreenJoinWarningText": "Yz hv jofndsf woijt iafh doctoucohdsf.\nIf oth dfawas do oasdf osdft mwne owijf oadsjf.", "touchScreenText": "TóuchScrzén", "trialText": "tríál", + "unableToCompleteTryAgainText": "Unweojw cowe rwpor oijwe fwoer noww.\nPlze fow cowe gagainf.", "unableToResolveHostText": "Error: cow e fwjeociwjeorir.", "unavailableNoConnectionText": "Tho fiw ficj woiejf paowejf (no itnwotower connecotjs?)", "vrOrientationResetCardboardText": "Us this to weoojeif co VR owfjow ego\nTz pc we fwotj oa ocw eoowf eo awoifoacoincwr.", "vrOrientationResetText": "VR ooiwjfowif rnefz.", "willTimeOutText": "(wzlf tmz oat if idle)" }, + "inventoryText": "Inoejowfjwf", "jumpBoldText": "JZMP", "jumpText": "Júmp", "keepText": "Kéepz", @@ -1084,8 +1111,11 @@ "seasonEndsMinutesText": "Seaonf woeo cowi fj${NUMBER} mcoinwefoij.", "seasonText": "Seocwofj ${NUMBER}", "tournamentLeagueText": "Yzz mff erwr ${NAME} leg foic woefin woef oeijfwfew.", - "trophyCountsResetText": "Trphy cofo wuecw owef owioiafowf." + "trophyCountsResetText": "Trphy cofo wuecw owef owioiafowf.", + "upToDateBonusDescriptionText": "Plwefj cowe fowc woer weoirjo\nc woejf weowerj r ${PERCENT}% ocw edfh.", + "upToDateBonusText": "Up-Ff-Odfjw DbJfdjs." }, + "learnMoreText": "Loweifj cowe", "levelBestScoresText": "Bsfwo cowiejo ef${LEVEL}", "levelBestTimesText": "Best wfm coi ${LEVEL}", "levelFastestTimesText": "Fztjst tmzf on ${LEVEL}", @@ -1132,6 +1162,8 @@ "modeArcadeText": "Aroc Mofwfz", "modeClassicText": "Cjwofej mDofd", "modeDemoText": "Dfwocij Mmdff", + "moreSoonText": "Morew owjeo zoonwf...", + "mostDestroyedPlayerText": "Mowe Sfewo f Cpwowjef", "mostValuablePlayerText": "Móst Válúablz Pláyér", "mostViolatedPlayerText": "Móst Víoláted Pláyer", "mostViolentPlayerText": "Móst Víolznt Pláyér", @@ -1148,6 +1180,7 @@ "nameSuicideText": "${NAME} cómmittéd súizide.", "nameText": "Noiwjfe", "nativeText": "Nztvvz", + "newExclaimText": "Nwefw1!", "newPersonalBestText": "Néw pérsónzl bést!", "newTestBuildAvailableText": "A nwlf tat blfjl is aviflflzblz! (${VERSION} blzd ${BUILD}).\nGzt iz tat ${ADDRESS}", "newText": "Ncw", @@ -1159,6 +1192,7 @@ "noExternalStorageErrorText": "Nz xtenrlf stlfsdf fnff onf thz dfvfojfzz", "noGameCircleText": "Errór: nút lúggzd íntó Góme Cúrclz", "noJoinCoopMidwayText": "Có-óp gúmzs cán't bz jóinzd mídwáy.", + "noMessagesText": "No wwoej wced", "noPluginsInstalledText": "No Plugiwue sowiej fwdf", "noProfilesErrorText": "Yoú hávz nó pláyerz prófilzs, só yóu're stzck wíth '${NAME}'.\nGó tz Sétzings->Pláyerz Prófiles tú mzke yóurszlf á prófile.", "noScoresYetText": "Nz scrrlz ytz.", @@ -1168,6 +1202,7 @@ "noValidMapsErrorText": "Nó válíd máps fóund fúr thzs gáme typz.", "notEnoughPlayersRemainingText": "Nt zefwnoef plrjr rmeinging; exit anfo iwfj owjf oj ga emga;", "notEnoughPlayersText": "Yf nfdf a taflew ${COUNT} pfo wotj wofijow afo game!", + "notEnoughTicketsText": "Not Fowej Tickewerwe!", "notNowText": "Nót Núw", "notSignedInErrorText": "Yz mst bz snginf intof yrrz accnt tz dz thzz.", "notSignedInGooglePlayErrorText": "Ym fij cow fj wo cowe toiw jcoj ojwoefj owi.", @@ -1180,6 +1215,9 @@ "onText": "Ón", "oneMomentText": "One Mmcowmerz..", "onslaughtRespawnText": "${PLAYER} wúll réspawn das wávz ${WAVE}", + "openMeText": "Opwef cMF", + "openNowText": "Opzef Nweer", + "openText": "Opwefw", "orText": "${A} orz ${B}", "otherText": "Ofowiejf....", "outOfText": "(#${RANK} oút ófz ${ALL})", @@ -1275,6 +1313,8 @@ "punchText": "Púzch", "purchaseForText": "Púrcháse fúrz ${PRICE}", "purchaseGameText": "Púrchúze Gáme", + "purchaseNeverAvailableText": "Some f , zf w owe f;woef fjsdgoiwejf sldfjsdjfsdf.\nGJ who woe roe rwhe gpwepgoi elf. dfoifj g;weoi jwo. fwjgw theorieorjdsd f woof wdofjf.", + "purchaseNotAvailableText": "Thief o c;weo weoifj weft odin other.", "purchasingText": "Prjrcjfz...", "quitGameText": "Qcoifj ${APP_NAME}", "quittingIn5SecondsText": "Quéttzng ín 5 sécznds...", @@ -1318,6 +1358,7 @@ "version_mismatch": "Veroi jmoiowoejf\nMkac aot co boaisoijero caoioisd fjaoer\nadc ot oacouweotu vowe ron aga." }, "removeInGameAdsText": "Unlkjfj \"${PRO}\" in cowj wje of wejfoiwfoo oifoiwjef.", + "removeInGameAdsTokenPurchaseText": "LWEFJOE COJW EREFW: Pruwo cwoi Ao fogjwe cwoe reowj owie ain-gm woafj owwrds.", "renameText": "Rzngmlz", "replayEndText": "Enz Rpllz", "replayNameDefaultText": "Lzts Gmzl Rplzlz", @@ -1386,6 +1427,8 @@ "enterPromoCodeText": "Eznter Cdzs", "forTestingText": "Ntz: thz vlarj farz olflf rzz tsffcn anz wllz bz llfsf whnzl thzz app exrtzz.", "helpTranslateText": "${APP_NAME} lngalsdf transaldflksdfj arz fjocdmaosdf\nsprnarted effrztzs. Ifsdf oud'fu likzz to cmdfoasdf corectsf\na sd fjafdsoijdf, flfowefj thz fljlnkdd blzljf. Thansdlfn in andncas!", + "insecureConnectionsDescriptionText": "now come fowdifjowdf ckwdf , c,woer\no woef owiefjw f cpawp a;oiweroijdf", + "insecureConnectionsText": "Sefu cwoe co wi cwodijfdfd", "kickIdlePlayersText": "Kzkck Idlzlf Plzjrs", "kidFriendlyModeText": "Krz-Frjijglfz-Mzdz (rdfjifz voioifjf, fz)", "languageText": "Lnglfjslfd", @@ -1446,6 +1489,7 @@ }, "spaceKeyText": "spzz", "statsText": "Sfawfwf", + "stopRemindingMeText": "Stoij fPRo wwcoe Pfm", "storagePermissionAccessText": "Tho cowefj woiejowefw.", "store": { "alreadyOwnText": "Yorz alrlfzl wozl ${NAME}!", @@ -1509,6 +1553,7 @@ "testBuildValidatedText": "Tst Bjldf Vlaldkfsf; Enjzjf!", "thankYouText": "Thánk yóu fór yóur súppórt! Enjóy thé gáme!!", "threeKillText": "TRÍPLZ KÚLL!!", + "ticketsDescriptionText": "Towfjwef cowej rocw eoi woujcoiwu eor, gowbof\nocowo wper ewrjwefow fowije ostrooiwjeofwrs.\n\nToco weo jweori weotwocoiw eowijoer oiwejf\nCow eower gpaogj woef owjefapef wigowijeo iw we.", "timeBonusText": "Tíme Bónús", "timeElapsedText": "Tíme Elápszd", "timeExpiredText": "Tzmz Exprireizdd", @@ -1519,10 +1564,24 @@ "tipText": "Tízp", "titleText": "Bmbmsqdz", "titleVRText": "BomboFjof VR", + "tokens": { + "getTokensText": "Gje Cowjerr", + "notEnoughTokensText": "Nt come. fowijodifj!", + "numTokensText": "${COUNT} Tlwefjwf", + "openNowDescriptionText": "Yowu cw oeo we ofiwjeroj\ncow eoowe rwo oweifuwef\now w oeijrer.", + "shinyNewCurrencyText": "Boiwfw wet fwoeifj wofz ofwroru.", + "tokenPack1Text": "Smeow Tlwkf Pcer", + "tokenPack2Text": "Mfowefj howei roweirdf", + "tokenPack3Text": "Lwofiw lw wore doijfdf", + "tokenPack4Text": "JWfowji howei oweirjdf", + "tokensDescriptionText": "Towefjw cowe rowjf. fa;weof wegogowijeoiwjf\nfow ef cowiej roweir gjpgoj fw eojrweio ga;oijw\n\nYoucwe orwe c weowherapogpouggj foiwejow\nagpo cpaowerp.. Thgapoeiwjj cowejrhghapjzoejf\nwoicw eo wor apojpcowieo g gjeiwroeijds.", + "youHaveGoldPassText": "You who owe rowjfosijdf.\nAlf wo cwoerpwer rwoer f.\nCwjodi!" + }, "topFriendsText": "Tóp Fríendz", "tournamentCheckingStateText": "Chkfjfowef oitwof oweifja oef pawoej owef...", "tournamentEndedText": "This foil jefoi weoa echo sd. An ewoifj wo oowifjowe soon.", "tournamentEntryText": "Tnofjwfe oecowiejw", + "tournamentFinalStandingsText": "Fiowefj Stdfijwef", "tournamentResultsRecentText": "Rcnet Touaofius aRamalsdf.", "tournamentStandingsText": "Tzewfjwoij Stndfalfjz", "tournamentText": "Tanfowijfowef", @@ -1562,6 +1621,22 @@ "Zoe": "Zob", "Zola": "Zlefw" }, + "chestNames": { + "Chest": "Czjofwf", + "L1": "LZ1", + "L1 Chest": "LX1 CHzer", + "L2": "LZ2", + "L2 Chest": "LX2 CHzer", + "L3": "LZ3", + "L3 Chest": "LX3 CHzer", + "L4": "LZ4", + "L4 Chest": "LX4 CHzer", + "L5": "LZ5", + "L5 Chest": "LX5 CHzer", + "L6": "LZ6", + "L6 Chest": "LX6 CHzer", + "Unknown Chest": "Ucwoejrwer Cjoefwijf" + }, "coopIconNames": { "Infinite\nOnslaught": "Infíníte\nÓnsláught", "Infinite\nRunaround": "Ínfíníte\nRúnaróúnd", @@ -1597,6 +1672,18 @@ "Uber Onslaught": "Ubzr Onzláught", "Uber Runaround": "Ubúr Runáround" }, + "displayItemNames": { + "${C} Tickets": "${C} Towfijwezz", + "${C} Tokens": "${C} Tjowefjdfzzz", + "Chest": "Cjoziejr", + "L1 Chest": "LZ1 Cohwerd", + "L2 Chest": "LZ2 Cjzoerr", + "L3 Chest": "LZ3 Coijewr", + "L4 Chest": "LZ4 Cheowrd", + "L5 Chest": "LZ5 Coewer", + "L6 Chest": "LZ6 Cowiejrer", + "Unknown Chest": "Unoweijr Coizjerer" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Bé thé chósen ónz fór a léngth éf tíme tó wzn.\nKzll thé chósen óne tz bécome út.", "Bomb as many targets as you can.": "Bmb ojwe fo cj woef weoijcoj ofz.", @@ -1680,8 +1767,9 @@ "languages": { "Arabic": "Aroijwe", "Belarussian": "Blfrurzfozz", - "Chinese": "Choifwef Soimcwoef", - "ChineseTraditional": "Cheifwoefjw Trwwefsdfs", + "Chinese": "Chweoifwej - Sompefwe", + "ChineseSimplified": "CHowef - Smpfoewfdf", + "ChineseTraditional": "Choweijwer - Transitiondsf", "Croatian": "Crrlzlrrs", "Czech": "Czffef", "Danish": "Dnailöş", @@ -1702,13 +1790,18 @@ "Korean": "Kornesnzn", "Malay": "FJwoerjjdf", "Persian": "Psdfsdf", + "PirateSpeak": "Pirafw ef ocOSIf", "Polish": "Pzlishz", "Portuguese": "Portuguenejs", + "PortugueseBrazil": "Powerower - Brfoisjfewfd", + "PortuguesePortugal": "Porwofweuf - Poweijfdffz", "Romanian": "Rmrfoijfzf", "Russian": "Rzznrsn", "Serbian": "Socowiejf", "Slovak": "Zokkis", "Spanish": "Snaddies", + "SpanishLatinAmerica": "Spoweijwe. - Ljf foewfij oAmweroijd", + "SpanishSpain": "Spwoefj - Zpfwjefdf", "Swedish": "Swdiiszh", "Tamil": "Tmfiewf", "Thai": "Thzff", @@ -1776,7 +1869,9 @@ "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Chowcj eof weoc jco; oe jwoeijf wojcwjeowfj woejf o${COUNT} dzf.", "Could not establish a secure connection.": "Cjfoi cn ooi a tac c oweocoicoinr.", "Daily maximum reached.": "Dfilaf möaksokato ravhgedök.", + "Daily sign-in reward": "Dilse Sf wcowe owOSDfwrd", "Entering tournament...": "Ernwoefijweo jfowjefw...", + "Higher streaks lead to better rewards.": "Hfweo lstor fljit f ob oijtow rewrds.", "Invalid code.": "Invflijf cddz.", "Invalid payment; purchase canceled.": "Info ejcwpeopwer; purwup cowefjwef.", "Invalid promo code.": "Ivnfjfo pmpwf cdffz.", @@ -1785,11 +1880,14 @@ "Item unlocked!": "Iwerw cowefjwoeijwer!", "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "LINKING FOFJWEF. ${ACCOUNT} o iwjof\nowe oijwe c woeoijwf oAL FJOEJI OCJW.\nYou off leojwoer wcowe foiwjefojweoiwf\n(a c owfw oefjTHIS c weoojw oesf)", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "Lcjwe fwofj o ${ACCOUNT} to cowejfweof?\nAll wefoiwejtthosjic w ${ACCOUNT} cowiejf tjsl.\nThis wefowondot onsof. Aojr tyocu wsure?", + "Longer streaks lead to better rewards.": "LFowe jewoi ewr c weorj eowr efoiwjersr", "Max number of playlists reached.": "Möaks nfmow oijeplyalfaf rcnoahfd.", "Max number of profiles reached.": "Möks fresadora c owiejfowe rafgexed.", "Maximum friend code rewards reached.": "Cmwoe oc wo Ego wel jacoweij weer möaksiöas.", "Message is too long.": "CMew ociwje owe el.", + "New tournament result!": "Nwef toaiwjowcw orursllsst!", "No servers are available. Please try again soon.": "Ns seroiejwc wefjwoe wj. Ple wer wfwef ewfowes.", + "No slots available. Free a slot and try again.": "Nz sliejfwo capoejw f. Fizi cowie rw gjwoe woerdd.", "Profile \"${NAME}\" upgraded successfully.": "Profjojf \"${NAME}\" oupfuap coj woijsfsf.", "Profile could not be upgraded.": "Profojfo coild onot foj bupfrade.", "Purchase successful!": "Pcjofj scwcserfflz!", @@ -1799,7 +1897,9 @@ "Sorry, this code has already been used.": "Srrc, thiz codds has aoiwjre bndd usdd.", "Sorry, this code has expired.": "Sorrro, thi cowf ahs arowjers.", "Sorry, this code only works for new accounts.": "Srror, this cod ojfowf work for know accarrn.", + "Sorry, this has expired.": "Sorrr, wot wf coijwoe rjexpirrd.", "Still searching for nearby servers; please try again soon.": "Stjowf sera cj focnwoeir eserevers; pell cutlery a gao cốn.", + "Streak: ${NUM} days": "Srowefj ${NUM} wsdfdsf", "Temporarily unavailable; please try again later.": "Tmwoef wf oucwof wf; cowejf awoj cwoijers.", "The tournament ended before you finished.": "Thf weoijw oeij aoejf aowejf owjeof aiwjeofjwef.", "This account cannot be unlinked for ${NUM} days.": "Th ow co ref w owjoso o ${NUM} dyafsoef.", @@ -1810,19 +1910,28 @@ "Tournaments require ${VERSION} or newer": "Toijfw qojwce ${VERSION} or wcoiwej", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "Uncljwf ${ACCOUNT} cowed wthosijf?\nAll cowejt ocjiwf ${ACCOUNT} cowiest dois.\n(expo fowefj etwohoa tand Costers)", "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "WARNOEF: com owe fw epfojwe. cj weo fjwefo wejfo wef jocij eowiefwef.\nCoaj owe fwefjwoo oweoifwoe fj ewrj woc. Ppel fwo c worywwr.", + "Wait reduced!": "Woer rowicjowijer!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "Weofwief: T wof weio ocwe gipwoej. gowef apf wiefhp woiefpf weof wociwjeoirower odfowfjowjfdf.\nOW fw ef wejotiewt hgpgoregpw98g4g f wocow eij agoiweo g ghgpw gpwoepoipatajfwe owefwef.", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "Wocj weo ocj woiej fowj ofj aioj ojt;oi df joijwotijs?\n\nYoc uweof c owej owijf ${ACCOUNT1}\nThoci wef coj woeijf ${ACCOUNT2}\n\nThoc jweo owej fow cwi efod odo focwoe.\nWocj fo : cwo c weof odo fauoino!", "You already own this!": "Yz fwowefoi coiweno fjoz!", "You can join in ${COUNT} seconds.": "You won cowier fwoef ${COUNT} coiwejf.", "You don't have enough tickets for this!": "Yz dfoiwf ahv weoj fwoitjoicker fz thzz!", "You don't own that.": "You loci jeff jwoefwe.", - "You got ${COUNT} tickets!": "Y zfowej f${COUNT{ ticeofjwe!", + "You got ${COUNT} tickets!": "Y zfowej f${COUNT} ticeofjwe!", + "You got ${COUNT} tokens!": "You got ${COUNT} tokewfjwf!", "You got a ${ITEM}!": "Yzz gtzz z ${ITEM}!", + "You got a chest!": "Yor foiwje rgo c chserser!!!", + "You got an achievement reward!": "You cowe owf woef weg;oai cower jower!", "You have been promoted to a new league; congratulations!": "Yf co efoj woef woecj owejfoiwef lfj ; congaroiwjf woes!", + "You lost a chest! (All your chest slots were full)": "Ycowe wo sowfweo ! (ALlco weofi wf o; cwoer orul)", + "You must update the app to view this.": "Yowu cow woef jwowo ejwe;oij wofjwoed.", "You must update to a newer version of the app to do this.": "Yz mocu upc oig owc owt oc o ca; ;apc oi oj ;oj.", "You must update to the newest version of the game to do this.": "Yocwe fweoowo weotjosij;ow. woeower weroso taotoautats.", "You must wait a few seconds before entering a new code.": "Yzz msfgt wt a fz cwcfwf bfrrzz entef wcnfz cdszz.", + "You placed #${RANK} in a tournament!": "Yozu c wpefo wef j #${RANK} oci wef wocwj otjwerd.", "You ranked #${RANK} in the last tournament. Thanks for playing!": "Yz wf ooiwef #${RANK} ofijwe oijw oijef . Thansf afpaflalay!", "Your account was rejected. Are you signed in?": "Yoew cowcjwe woe woeiowirwo eirjw co weoijfow ej?", + "Your ad views are not registering. Ad options will be limited for a while.": "Ywer f wefi wue fiwe ifwiuehriweurhd, Abd fiwe fiwheigiweir hfsdfdsf,", "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Yr coijw epowf oief oaefoiwfowjef\nPlejasefoaw efojw oefjwoejo aciowejrow.", "Your friend code was used by ${ACCOUNT}": "Yrrj cof owf owcjowj fwoafeof ${ACCOUNT}" }, @@ -1978,6 +2087,7 @@ "twoKillText": "DÓÚBLZ KÍLL!", "uiScaleText": "SUFwfef", "unavailableText": "unavlfldsfjlbz", + "unclaimedPrizesText": "You c weo inp xo fowe fwiejrpdof!", "unconfiguredControllerDetectedText": "Uncónfzgúred cúntrzllír dítzctíd:", "unlockThisInTheStoreText": "Thz mf voi eunlcoef owef joiefsfrwe.", "unlockThisProfilesText": "To cowier co we ${NUM} pcoer, cow oicoj:", @@ -1996,6 +2106,7 @@ "usingItunesText": "Ufwefw Mfwoef co ef srnweoicjowe...", "usingItunesTurnRepeatAndShuffleOnText": "Plzelz mkdk srzlc shfflds isON anz andpreld is ALZ unz iTunes", "v2AccountLinkingInfoText": "To ljeowirj V2 sojowe, use fo 'Mnawefw Acoiwo' bons.", + "v2AccountRequiredText": "Thaw cw eo iwefio V2 Oicwe j. PC wepfo woj welag Wofiwj iowjoejfdffd.", "validatingBetaText": "Válúdztíng Bztá...", "validatingTestBuildText": "Vldfjdfoi jtese-bsdfasfd...", "viaText": "sdf", @@ -2039,7 +2150,7 @@ }, "wiimoteListenWindow": { "listeningText": "Líszéngng Fúr Wíímztes...", - "pressText": "Prész Wíimzte bóttzns 1 azd 2 símultáneoúsly.", + "pressText": "Prész Wíimzte bóttzns 1 azd 2 símultáneoúsly.\n", "pressText2": "Onz néwer Wiímótes wíth Moóión Plús búilt ón, przss thé réd 'sync' búttón ón thé bzck ónstzad.", "pressText2Scale": 0.55, "pressTextScale": 1.0 @@ -2050,7 +2161,7 @@ "listenText": "Lústzn", "macInstructionsText": "Makú zurú your Wáá áz off and Bluútooth áz únablúd\non your Mac, thún prúzz 'Láztún'. Wáámotú zupport can\nbú a bát flaky, zo you may havú to try a fúw támúz\nbúforú you gút a connúctáon.\n\nBluútooth zhould handlú up to 7 connúctúd dúvácúz,\nthough your málúagú may vary.\n\nBombZquad zupportz thú orágánal Wáámotúz, Nunchukz,\nand thú Clazzác Controllúr.\nThú núwúr Wáá Rúmotú Pluz now workz too\nbut not wáth attachmúntz.", "macInstructionsTextScale": 0.7, - "thanksText": "Thznks té thz DérwiinRémote táam\nFúr máking thés pzsséble.", + "thanksText": "Thznks té thz DérwiinRémote táam\nFúr máking thés pzsséble.\n", "thanksTextScale": 0.8, "titleText": "Wzimóte Sztúp" }, @@ -2076,5 +2187,6 @@ }, "yesAllowText": "Yús, Allúwz!", "yourBestScoresText": "Yózr Bést Scúrzszz", - "yourBestTimesText": "Yózr Bést Tímés" + "yourBestTimesText": "Yózr Bést Tímés", + "yourPrizeText": "Yowe ppwefdzz:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/greek.json b/dist/ba_data/data/languages/greek.json index 98b9a95..f473ff8 100644 --- a/dist/ba_data/data/languages/greek.json +++ b/dist/ba_data/data/languages/greek.json @@ -6,7 +6,9 @@ "campaignProgressText": "Πρόοδος Ιστορίας [Δύσκολο]: ${PROGRESS}", "changeOncePerSeason": "Μπορείτε να το αλλάξετε μόνο μία φορά ανά σεζόν.", "changeOncePerSeasonError": "Πρέπει να περιμένετε μέχρι την επόμενη σεζόν για να το αλλάξετε ξανά (${NUM} days)", + "createAnAccountText": "Δημιουργήστε έναν Λογαριασμό", "customName": "Προσαρμοσμένο Όνομα", + "deleteAccountText": "Διαγραφή λογαριασμού", "googlePlayGamesAccountSwitchText": "Αν θέλετε να χρησιμοποιείσετε έναν διφορετικό λογαριασμό Google,\nχρησιμοποιείστε την εφαρμογή Google Play Games γιανα αλλάξετε.", "linkAccountsEnterCodeText": "Εισάγετε Κωδικό", "linkAccountsGenerateCodeText": "Δημιουργήστε Κωδικό", @@ -24,6 +26,7 @@ "setAccountNameDesc": "Επιλέξτε το όνομα που θα φαίνεται στο λογαριασμό σας. Μπορείτε\nνα χρησιμοποιήσετε το όνομα ενός από τους δεσμευμένους σας\nλογαριασμούς ή να δημιουργήσετε ένα μοναδικό, προσαρμοσμένο όνομα.", "signInInfoText": "Συνδεθείτε για να συλλέξετε εισητήρια, να συναγωνιστείτε στο διαδίκτυο\nκαι να μοιραστείτε τη πρόοδο σας ανάμεσα σε διάφορες συσκευές.", "signInText": "Σύνδεση", + "signInWithAnEmailAddressText": "Συνδεθείτε με μία διεύθυνση email", "signInWithDeviceInfoText": "(ένας λογαριασμός μονάχα διαθέσιμος από αυτή τη συσκευή)", "signInWithDeviceText": "Σύνδεση με λογαριασμό συσκευής", "signInWithGameCircleText": "Σύνδεση με Game Circle", @@ -32,7 +35,7 @@ "signInWithTestAccountText": "Σύνδεση με δοκιμαστικό λογαριασμό", "signInWithText": "Σύνδεση μέσω ${SERVICE}", "signInWithV2InfoText": "ένας λογαριασμός που λειτουργεί σε όλες τις πλατφορμες", - "signInWithV2Text": "Συνδεθείτε με ένα λογαριασμό BombSquad", + "signInWithV2Text": "Συνδεθείτε με έναν λογαριασμό ${APP_NAME}", "signOutText": "Αποσύνδεση", "signingInText": "Σύνδεση...", "signingOutText": "Αποσύνδεση...", @@ -340,6 +343,8 @@ "allowText": "Να Επιτρέπεται", "alreadySignedInText": "Ο λογαριασμός σας είναι συνδεδεμένος από άλλη συσκευή.\nΠαρακαλώ, άλλαξε το λογαριασμό σας ή απενεργοποίησε \nτο παιχνίδι από τις άλλες συσκευες σας και ξαναπροσπάθηστε.", "apiVersionErrorText": "Can't load module ${NAME}; it targets api-version ${VERSION_USED}; we require ${VERSION_REQUIRED}.", + "applyText": "Εφαρμογή", + "areYouSureText": "Είστε σίγουροι;", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(Το \"Αυτόματο\" ενεργοποιεί αυτό μόνο όταν έχουν συνδεθεί ακουστικά)", "headRelativeVRAudioText": "Ρυθμίσεις σχετικές με VR ακουστικά", @@ -361,14 +366,23 @@ "boostText": "Ώθηση", "bsRemoteConfigureInAppText": "Το ${REMOTE_APP_NAME} είναι οριστικοποιημένο στην εφαρμογή από μόνο του.", "buttonText": "κουμπί", - "canWeDebugText": "Θα θέλατε το BombSquad να στέλνει αυτόματη αναφορά σφαλμάτων,\nκατάρρευσης, και πληροφορίες βασικής χρήσης στο δημιουργό του;\n\nΤα δεδομένα δε περιέχουν προσωπικές σας πληροφορίες και\nβοηθούν το παιχνίδι να τρέχει ομαλά χωρίς σφάλματα.", + "canWeDebugText": "Θα θέλατε το ${APP_NAME} να στέλνει αυτόματη αναφορά σφαλμάτων,\nκατάρρευσης, και πληροφορίες βασικής χρήσης στο δημιουργό του;\n\nΤα δεδομένα δε περιέχουν προσωπικές σας πληροφορίες και\nβοηθούν το παιχνίδι να τρέχει ομαλά χωρίς σφάλματα.", "cancelText": "Άκυρο", "cantConfigureDeviceText": "Συγνώμη, η συσκευή ${DEVICE} είναι μη οριστικοποιήσιμη.", "challengeEndedText": "Αυτή η πρόκληση έχει τελειώσει.", "chatMuteText": "Σίγαση Συζήτησης", "chatMutedText": "Συζήτηση σε Σίγαση", "chatUnMuteText": "Απενεργοποίηση Σίγασης", + "chests": { + "prizeOddsText": "Πιθανότητες βραβείων", + "reduceWaitText": "Μείωστε την παραμονή", + "slotDescriptionText": "Αυτή η θέση μπορεί να κρατήσει ένα σεντούκι.\n\nΝικήστε σεντούκια παίζοντας επίπεδα ιστορίας,\nσυμμετέχοντας σε τουρνουά, και ολοκληρώνοντας\nεπιτεύγματα.", + "slotText": "Θέση σεντουκιού ${NUM}", + "slotsFullWarningText": "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Όλες οι θέσεις σεντουκιών σας είναι γεμάτες.\nΟποιαδήποτε σεντούκια κερδίσετε σε αυτό το παιχνίδι θα χαθούν.", + "unlocksInText": "Ξεκλειδώνεται Σε" + }, "choosingPlayerText": "<επιλογή παίκτη>", + "claimText": "Διεκδήκηση", "codesExplainText": "Οι κωδικοί παρέχονται από τον δημιουργό για τη\nδιάγνωση και την επιδιόρθωση προβλημάτων λογαριασμού.", "completeThisLevelToProceedText": "Πρέπει να ολοκληρώσετε αυτό\nτο επίπεδο για να προχωρήσετε!", "completionBonusText": "Μπόνους Ολοκλήρωσης", @@ -554,6 +568,7 @@ "demoText": "Επίδειξη", "denyText": "Απαγόρευση", "deprecatedText": "Καταργήθηκε", + "descriptionText": "Περιγραφή", "desktopResText": "Ανάλυση Σταθερού Η/Υ", "deviceAccountUpgradeText": "Προσοχή:\nΧρησιμοποιειτέ ένα λογαριασμό συσκευής(${NAME}).\nΟι λογαριασμοί συσκευών θα αφαιρεθούν σε μέλλουσα ενημέρωση.\nΑναβαθμίστε σε ένα λογαριασμό V2 αν θέλετε να διατηρήσετε την πρόοδο σας.", "difficultyEasyText": "Εύκολο", @@ -565,6 +580,7 @@ "disableXInputDescriptionText": "Επιτρέπει περισσότερα από 4 χειριστήρια αλλά μπορεί να μη λειτουργήσει.", "disableXInputText": "Απενεργοποίηση XIinput", "disabledText": "Απενεργοποιημένο", + "discardText": "Απόρριψη", "discordFriendsText": "Θέλετε να βρείτε νέους φίλους για να παίξετε;\nΜπείτε στο Discord μας και βρείτε νέους φίλους!", "discordJoinText": "Μπείτε στο Discord", "doneText": "Έγινε", @@ -647,6 +663,8 @@ "errorText": "Σφάλμα", "errorUnknownText": "άγνωστο σφάλμα", "exitGameText": "Έξοδος από το ${APP_NAME};", + "expiredAgoText": "Έληξε πριν από ${T}", + "expiresInText": "Λήγει σε ${T}", "exportSuccessText": "Έγινε εξαγωγή του στοιχείου '${NAME}'.", "externalStorageText": "Εξωτερικός Αποθηκευτικός Χώρος", "failText": "Αποτυχία", @@ -708,6 +726,7 @@ "copyCodeConfirmText": "Ο κωδικός αντιγράφηκε στο πρόχειρο.", "copyCodeText": "Αντιγράψτε τον κωδικό", "dedicatedServerInfoText": "Για καλύτερα αποτελέσματα, οργανώστε έναν σταθερό διακομιστή. Βλέπε bombsquadgame.com/server.", + "descriptionShortText": "Χρησιμοποιήστε το παράθυρο συγκέντρωσης για να φτιάξετε ένα πάρτυ.", "disconnectClientsText": "Συνεχίζοντας θα αποσυνδεθούν ${COUNT} παίκης/ες\nαπο τη συγκέντρωσή σας. Είστε σίγουροι?", "earnTicketsForRecommendingAmountText": "Οι φίλοι σας θα λάβουν ${COUNT} εισητήρια αν δοκιμάσουν το παιχνίδι\n(και εσείς θα λάβετε ${YOU_COUNT} για τον καθένα)", "earnTicketsForRecommendingText": "Μοιραστείτε το παιχνίδι\nγια δωρεάν εισητήρια...", @@ -720,10 +739,10 @@ "friendHasSentPromoCodeText": "${COUNT} εισητήρια ${APP_NAME} από ${NAME}", "friendPromoCodeAwardText": "Θα λάμβάνετε από ${COUNT} εισητήρια για κάθε χρήση.", "friendPromoCodeExpireText": "Αυτός ο κωδικός λήγει σε ${EXPIRE_HOURS} ώρες και λειτουργεί μόνο για νέα μέλη.", - "friendPromoCodeInstructionsText": "Για να το αξιοποιήσετε, ανοίξτε το ${APP_NAME} και ακολουθήστε το \"Ρυθμίσεις->Σύνθετες->Εισαγωγή Κωδικού\".\nΒλέπε bombsquadgame.com για συνδέσμους της εφαρμογής σε όλες τις υποστηριζόμενες πλατφόρμες.", + "friendPromoCodeInstructionsText": "Για να το αξιοποιήσετε, ανοίξτε το ${APP_NAME} και ακολουθήστε το \"Ρυθμίσεις->Σύνθετες->Αποστολή Πληροφοριών\".\nΒλέπε bombsquadgame.com για συνδέσμους της εφαρμογής σε όλες τις υποστηριζόμενες πλατφόρμες.", "friendPromoCodeRedeemLongText": "Μπορεί να εξαργυρωθεί για ${COUNT} δωρεάν εισητήρια από έως ${MAX_USES} άτομα.", "friendPromoCodeRedeemShortText": "Μπορεί να εξαργυρωθεί για ${COUNT} εισητήρια στο παιχνίδι.", - "friendPromoCodeWhereToEnterText": "(στο \"Ρυθμίσεις->Σύνθετες->Εισαγωγή Κωδικού\")", + "friendPromoCodeWhereToEnterText": "(στο \"Ρυθμίσεις->Σύνθετες->Αποστολή Πληροφοριών\")", "getFriendInviteCodeText": "Αποκτήστε Κωδικό Πρόσκλησης Φίλων", "googlePlayDescriptionText": "Προσκάλεσε Google Play παίκτες στη συγκέντρωσή σας:", "googlePlayInviteText": "Πρόσκληση", @@ -819,6 +838,12 @@ "youHaveShortText": "έχετε ${COUNT}", "youHaveText": "έχετε ${COUNT} εισιτήρια" }, + "goldPass": { + "desc1InfTokensText": "Άπειρα κέρματα.", + "desc2NoAdsText": "Καθόλου διαφημίσεις.", + "desc3ForeverText": "Για πάντα.", + "goldPassText": "Χρυσό Πάσο" + }, "googleMultiplayerDiscontinuedText": "Συγνώμη, φαίνεται πως η υπηρεσία πολλών παικτών της Google δεν είναι πλέον διαθέσιμη.\nΠροσπαθώ να βρω αντικατάσταση όσο πιο γρήγορα γίνεται.\nΜέχρι τότε, παρακαλώ δοκιμάστε άλλο τρόπο σύνδεσης.\n-Eric", "googlePlayPurchasesNotAvailableText": "Οι αγορές Google Play δεν είναι διαθέσιμες.\nΜπορεί να χρειάζεται να ενημερώσετε την εφαρμογή σας.", "googlePlayServicesNotAvailableText": "Οι υπηρεσίες Google Play δεν είναι διαθέσιμες.\nΚάποιες λειτουργείες μπορεί να είναι απενεργοποιμένες.", @@ -897,6 +922,7 @@ "importText": "Εισαγωγή", "importingText": "Εισαγωγή...", "inGameClippedNameText": "θα εμφανίζεται ως\n\"${NAME}\"", + "inboxText": "Εισερχόμενα", "installDiskSpaceErrorText": "ΣΦΑΛΜΑ: Αδύνατη η ολοκλήρωση της εγκατάστασης.\nΕνδέχεται να ξεμείνατε από αποθηκευτικό χώρο στη\nσυσκεύη. Αδειάστε λίγο χώρο και ξαναπροσπαθήστε.", "internal": { "arrowsToExitListText": "πατήστε ${LEFT} ή ${RIGHT} για έξοδο από τη λίστα", @@ -951,12 +977,14 @@ "timeOutText": "(ο χρόνος λήγει σε ${TIME} δευτερόλεπτα)", "touchScreenJoinWarningText": "Έχετε ενταχθεί με την οθόνη αφής.\nΑν συνέβη καταλάθος πατήστε με αυτή στο 'Μενού->Έξοδος Παιχνιδιού'.", "touchScreenText": "Οθόνη Αφής", + "unableToCompleteTryAgainText": "Δεν μπορεί να ολοκληρωθεί αυτό τώρα.\nΠαρακαλώ προσαπθήστε ξανά.", "unableToResolveHostText": "Σφάλμα: αδύνατη η επίλυση του οικοδεσπότη.", "unavailableNoConnectionText": "Αυτό είναι προς το παρόν μη διαθέσιμο (χωρίς πρόσβαση στο διαδίκτυο;)", "vrOrientationResetCardboardText": "Χρησιμοποιήστε το για την επαναφορά το προσανατολισμού VR.\nΓια να παίξετε το παιχνίδι θα χρειαστείτε ένα εξωτερικό χειριστήριο.", "vrOrientationResetText": "Έγινε επαναφορά του VR προσανατολισμού.", "willTimeOutText": "(θα σταματήσει αν παραμείνει αδρανής)" }, + "inventoryText": "Αποθήκη", "jumpBoldText": "ΑΛΜΑ", "jumpText": "Άλμα", "keepText": "Κράτησέ τες", @@ -1003,8 +1031,11 @@ "seasonEndsMinutesText": "Η σεζόν λήγει σε ${NUMBER} λεπτά.", "seasonText": "Σεζόν ${NUMBER}", "tournamentLeagueText": "Πρέπει να φτάσετε στην κατηγορία ${NAME} για να συμμετάσχετε σε αυτό το τουρνουά.", - "trophyCountsResetText": "Ο αριθμός των βραβείων θα υποστεί επαναφορά στην επόμενη σεζόν." + "trophyCountsResetText": "Ο αριθμός των βραβείων θα υποστεί επαναφορά στην επόμενη σεζόν.", + "upToDateBonusDescriptionText": "Οι παίκτες που τρέχουν μία πρόσφατη έκδοση του παιχνιδιού\nλαμβάνουν ένα μπόνους ${PERCENT}% εδώ.", + "upToDateBonusText": "Μπόνους εκσυγχρονισμού" }, + "learnMoreText": "Μάθετε Περισσότερα", "levelBestScoresText": "Οι υψηλότερες βαθμολογίες στο επίπεδο ${LEVEL}", "levelBestTimesText": "Οι καλύτεροι χρόνοι στο επίπεδο ${LEVEL}", "levelIsLockedText": "Το επίπεδο ${LEVEL} είναι κλειδωμένο.", @@ -1048,6 +1079,8 @@ "modeArcadeText": "Λειτουργία \"Arcade\"", "modeClassicText": "Κλασσική λειτουργία", "modeDemoText": "Δοκιμαστική λειτουργία", + "moreSoonText": "Περισσότερα έρχονται σύντομα...", + "mostDestroyedPlayerText": "Πιο Κατεστραμμένος", "mostValuablePlayerText": "Πολυτιμότερος Παίκτης", "mostViolatedPlayerText": "Πιο Ξυλοδαρμένος Παίκτης", "mostViolentPlayerText": "Πιο Βίαιος Παίκτης", @@ -1255,6 +1288,7 @@ }, "scoreWasText": "(ήταν ${COUNT})", "selectText": "Επιλογή", + "sendInfoDescriptionText": "Στέλνει πληροφορίες λογαριασμού και κατάστασης εφαρμογής στον δημιουργό.\nΠαρακαλούμε να συμπεριλάβετε το όνομά σας ή την αιτία αποστολής.", "seriesWinLine1PlayerText": "ΚΕΡΔΙΣΕ ΤΗ", "seriesWinLine1TeamText": "ΚΕΡΔΙΣΕ ΤΗ", "seriesWinLine1Text": "ΚΕΡΔΙΣΕ ΤΗ", @@ -1270,8 +1304,9 @@ }, "settingsWindowAdvanced": { "alwaysUseInternalKeyboardDescriptionText": "(ένα απλό, φιλικό με τα χειριστήρια πληκτρολόγιο οθόνης για επεξεργασία κειμένου)", - "alwaysUseInternalKeyboardText": "Πάντα να Χρησιμοποιείται το Εσωτερικό Πληκτρολόγιο", + "alwaysUseInternalKeyboardText": "Πάντα να χρησιμοποιείται το εσωτερικό πληκτρολόγιο", "benchmarksText": "Έλεγχοι Απόδοσης & Κόπωσης", + "devToolsText": "Εργαλεία Δημιουργού", "disableCameraGyroscopeMotionText": "Απενεργοποιήστε γυροσκοπική κίνηση της κάμερας", "disableCameraShakeText": "Απενεργοποιήστε το κούνημα της κάμερας", "disableThisNotice": "(μπορείτε να απενεργοποιήσετε αυτή τήν ειδοποίηση στις σύνθετες ρυθμίσεις)", @@ -1280,7 +1315,7 @@ "enterPromoCodeText": "Εισαγωγή Κωδικού", "forTestingText": "Σημείωση: αυτές οι τιμές είναι μονάχα για έλεγχο και θα χαθούν όταν πραγματοποιηθεί έξοδος από την εφαρμογή.", "helpTranslateText": "Οι μη Αγγλικές μεταφράσεις του ${APP_NAME} είναι υποστιριζόμενες\nαπό την κοινότητα. Αν θα θέλατε να συνεισφέρετε ή να διορθώσετε μια\nμετάφραση ακολουθήστε τον παρακάτω σύνδεσμο. Ευχαριστώ προκαταβολικά!", - "kickIdlePlayersText": "Αποβολή Άπραγων Παικτών", + "kickIdlePlayersText": "Αποβολή άπραγων παικτών", "kidFriendlyModeText": "Λειτουργία για Παιδιά (μειωμένη βία, κτλ)", "languageText": "Γλώσσα", "moddingGuideText": "Οδηγός Τροποποίησης", @@ -1288,10 +1323,12 @@ "mustRestartText": "Για να λειτουργήσει, πρέπει να επανεκκινήσετε το παιχνίδι.", "netTestingText": "Έλεγχος Δικτύου", "resetText": "Επαναφορά", + "sendInfoText": "Αποστολή πληροφοριών", "showBombTrajectoriesText": "Εμφάνιση Πορείας Βόμβας", - "showDemosWhenIdleText": "Προβολή Ντέμο Σε Αδράνεια", - "showDevConsoleButtonText": "Εμφάνιση κονσόλας προγραμματιστών", - "showInGamePingText": "Εμφάνιση Καθυστέρησης Εντός-Παιχνιδιού", + "showDemosWhenIdleText": "Προβολή ντέμο σε αδράνεια", + "showDeprecatedLoginTypesText": "Εμφάνιση καταργημένων τύπων εισόδου", + "showDevConsoleButtonText": "Εμφάνιση κουμπιού κονσόλας προγραμματιστών", + "showInGamePingText": "Εμφάνιση καθυστέρησης εντός-παιχνιδιού", "showPlayerNamesText": "Προβολή Ονομάτων Παικτών", "showUserModsText": "Προβολή Φακέλου Πακέτων Τροποποίησης", "titleText": "Σύνθετες", @@ -1299,8 +1336,8 @@ "translationFetchErrorText": "κατάσταση μεταφράσεων μη διαθέσιμη", "translationFetchingStatusText": "έλεγχος κατάστασης μεταφράσεων...", "translationInformMe": "Πληροφόρησέ με όταν η γλώσσα μου χρειάζεται ενημερώσεις", - "translationNoUpdateNeededText": "η συγγεκριμμένη γλώσσα είναι ενημερωμένη, γιούπι!", - "translationUpdateNeededText": "** η συγκεκριμένη γλώσσα χρειάζεται ενημερώσεις!! **", + "translationNoUpdateNeededText": "Η συγκεκριμένη γλώσσα είναι ενημερωμένη, γιούπι!", + "translationUpdateNeededText": "** Η συγκεκριμένη γλώσσα χρειάζεται ενημερώσεις!! **", "vrTestingText": "Έλεγχος VR" }, "shareText": "Κοινοποίηση", diff --git a/dist/ba_data/data/languages/hindi.json b/dist/ba_data/data/languages/hindi.json index ea5a1bf..3bfa7d4 100644 --- a/dist/ba_data/data/languages/hindi.json +++ b/dist/ba_data/data/languages/hindi.json @@ -7,7 +7,9 @@ "campaignProgressText": "अभियान प्रगति [कठिन]: ${PROGRESS}", "changeOncePerSeason": "आप केवल प्रति सीजन इसे एक बार बदल सकते हैं।", "changeOncePerSeasonError": "आपको इसे फिर से बदलने के लिए अगले सीज़न तक इंतजार करना होगा (${NUM} दिन)", + "createAnAccountText": "खाता बनाएं", "customName": "अनुकूल नाम", + "deleteAccountText": "खाता हटा दो", "googlePlayGamesAccountSwitchText": "अगर आप किसी भिन्न Google खाते का उपयोग करना चाहते हैं,\n स्विच करने के लिए Google Play गेम्स ऐप का उपयोग करें।", "linkAccountsEnterCodeText": "कोड डालीए", "linkAccountsGenerateCodeText": "काेड उत्पन्न करे", @@ -25,6 +27,7 @@ "setAccountNameDesc": "अपने खाते के लिए प्रदर्शित करने के लिए नाम चुनें। \nआप अपने लिंक किए गए किसी एक से नाम का उपयोग कर सकते हैं \nखातों या अनन्य कस्टम नाम बनाएं", "signInInfoText": "सभी यंत्रों पर अपनी प्रगति को संग्रहीत करने के लिए, \nटिकट कमाने, टूर्नामेंट में प्रतिस्पर्धा करने के लिए साइन इन करें |", "signInText": "साइन इन", + "signInWithAnEmailAddressText": "ईमेल पते से साइन इन करें", "signInWithDeviceInfoText": "(एक स्वचालित खता जिसका सिर्फ इस यंत्र से प्रयोग किया जा सकता है)", "signInWithDeviceText": "इस डिवाइस के साथ साइन इन करें", "signInWithGameCircleText": "Game circle के साथ प्रवेश करे", @@ -33,7 +36,7 @@ "signInWithTestAccountText": "परीक्षण के खाते से साइन इन करें", "signInWithText": "${SERVICE} से साइन इन करे।", "signInWithV2InfoText": "(एक खाता जो सभी प्लेटफार्मों पर काम करता है)", - "signInWithV2Text": "BombSquad खाते से साइन इन करें", + "signInWithV2Text": "${APP_NAME} खाते से साइन इन करें", "signOutText": "साइन आउट", "signingInText": "साइन इन हो रहा है...", "signingOutText": "साइन आउट हो रहा है...", @@ -344,6 +347,8 @@ "allowText": "अनुमति दें", "alreadySignedInText": "आपका खाता किसी अन्य डिवाइस से साइन किया गया है; \nकृपया खातों को स्विच करें या अपने गेम को अन्य डिवाइस \nपर बंद करें और फिर से प्रयास करें", "apiVersionErrorText": "${NAME} मौड्यूल लोड नहीं हो पाया ; यह एपीआई - संस्करण ${VERSION_USED} पे काम करने का प्रयास कर रहा है ; हमें संस्करण ${VERSION_REQUIRED} चाहिए |", + "applyText": "अवदेना करे", + "areYouSureText": "क्या आप निश्चित हो", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(\"स्वयं\" इसे तभी शुरू करेगा जब हैडफ़ोन लगें हों)", "headRelativeVRAudioText": "सर के सापेक्ष वीआर ध्वनि", @@ -365,14 +370,23 @@ "boostText": "प्रोत्साहन", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} को एप्लीकेशन के अन्दर से ही कॉन्फ़िगर करें |", "buttonText": "बटन", - "canWeDebugText": "क्या आप बोम्ब-स्क्वाड को अपने आप खराबियों व \nआधारभूत उपयोग कि जानकारी भेजना चाहते हैं ? \n\nइस जानकारी में कुछ भी व्यक्तिगत नहीं होता है व \nयह गेम को सुचारू रूप से बिना खराबियों के चलने में सहायता करता है |", + "canWeDebugText": "क्या आप ${APP_NAME} को अपने आप खराबियों व \nआधारभूत उपयोग कि जानकारी भेजना चाहते हैं ? \n\nइस जानकारी में कुछ भी व्यक्तिगत नहीं होता है व \nयह गेम को सुचारू रूप से बिना खराबियों के चलने में सहायता करता है |", "cancelText": "रद्द करें", "cantConfigureDeviceText": "माफ़ करें  ${DEVICE} कांफिग्युरेब्ल नहीं है |", "challengeEndedText": "यह चुनौती समाप्त हो चूकि हैं", "chatMuteText": "बातचीत मौन करें", "chatMutedText": "बातचीत मौन हो गई है", "chatUnMuteText": "बातचीत दोबारा शुरू करें", + "chests": { + "prizeOddsText": "पुरस्कार की संभावना", + "reduceWaitText": "इंतज़ार कम करें", + "slotDescriptionText": "यह स्लॉट एक संदूक रख सकता है।\n\nअभियान स्तर खेलकर चेस्ट अर्जित करें,\nटूर्नामेंट में जगह बनाना, और पूरा करना\nउपलब्धियाँ.", + "slotText": "चेस्ट स्लॉट ${NUM}", + "slotsFullWarningText": "चेतावनी: आपके सभी चेस्ट स्लॉट भरे हुए हैं।\nइस गेम में आप जो भी चेस्ट अर्जित करेंगे वह खो जाएगा।", + "unlocksInText": "में अनलॉक करता है" + }, "choosingPlayerText": "<खिलाड़ी चुना जा रहा है>", + "claimText": "दावा", "codesExplainText": "खाता समस्याओं के निदान और सुधार के लिए डेवलपर \nद्वारा कोड प्रदान किए जाते हैं ।", "completeThisLevelToProceedText": "आपको यह पड़ाव पार करना पड़ेगा आगे बढ़ने के लिए !", "completionBonusText": "पूर्णता पुरस्कार", @@ -569,6 +583,7 @@ "disableXInputDescriptionText": "4 नियंत्रकों से अधिक की अनुमति देता है लेकिन साथ ही साथ काम नहीं कर सकते", "disableXInputText": "Xinput अक्षम करें", "disabledText": "डिसेबल्ड", + "discardText": "खारिज करना", "discordFriendsText": "क्या आप खेलने के लिए नए लोगों की तलाश करना चाहते हैं? \n हमारे डिस्कोर्ड में शामिल हों और नए दोस्त खोजें!", "discordJoinText": "डिस्कोर्ड में शामिल हों", "doneText": "हो गया", @@ -652,6 +667,8 @@ "errorText": "त्रुटी", "errorUnknownText": "अज्ञात त्रुटी", "exitGameText": "${APP_NAME} से निकास करें ?", + "expiredAgoText": "${T} पहले समाप्त हो गया", + "expiresInText": "${T} में समाप्त होता है", "exportSuccessText": "'${NAME}' निर्यात हुआ", "externalStorageText": "बाहरी संचयन", "failText": "असफल", @@ -687,6 +704,7 @@ "editText": "प्लेलिस्ट को \nसंपादित करें", "newText": "नयी \nप्लेलिस्ट", "pointsToWinText": "पौइनटस जीतने के लिए", + "seriesLengthText": "श्रृंखला की लंबाई", "showTutorialText": "ट्युटोरियल दिखाएँ", "shuffleGameOrderText": "गेम के क्रमांक को मिलाएं", "titleText": "${TYPE} प्लेलिस्ट को अपने हिसाब से बदलें" @@ -713,6 +731,7 @@ "copyCodeConfirmText": "कोड को क्लिपबोर्ड पर कॉपी किया गया है", "copyCodeText": "कोड को कॉपी करें", "dedicatedServerInfoText": "श्रेष्ठ परिणामों के लिए, एक समर्पित सर्वर सेट करें. कैसे जानने के लिए bombsquadgame.com/server देखें.", + "descriptionShortText": "किसी पार्टी को इकट्ठा करने के लिए एकत्रित विंडो का उपयोग करें।", "disconnectClientsText": "यह आपके पार्टी में ${COUNT} \nखिलाड़ियों का सम्बन्ध तोड़ देगा", "earnTicketsForRecommendingAmountText": "यदि वे गेम को आज़माते हैं तो दोस्तों को ${COUNT} \nटिकट मिलेंगे (और आप प्रत्येक के लिए ${YOU_COUNT} प्राप्त करेंगे)", "earnTicketsForRecommendingText": "मुफ्त के टिकेट \nके लिए गेम को बाटें...", @@ -725,10 +744,10 @@ "friendHasSentPromoCodeText": "${COUNT} ${APP_NAME} टिकेट मिले ${NAME} से", "friendPromoCodeAwardText": "आपको ${COUNT} टिकेट मिलेंगे हर बार इसका प्रयोग किया जाता है", "friendPromoCodeExpireText": "आपका कोड सिर्क नयें खिलाड़ियों के लिए चलेगा और ${EXPIRE_HOURS} घंटों के बाद काम करना बंद कर देगा", - "friendPromoCodeInstructionsText": "इसका प्रयोग करने के लिए, ${APP_NAME} खोले और फिर \"सेटिंग->उन्नत सेटिंग->कोड डालें\" में जाएँ \nअधिक जानकारी के लिए bombsquadgame.com व डाउनलोड करने के लिए पे जाएँ |", + "friendPromoCodeInstructionsText": "इसका उपयोग करने के लिए, ${APP_NAME} खोलें और \"सेटिंग्स->उन्नत->जानकारी भेजें\" पर जाएँ।\nसभी समर्थित प्लेटफ़ॉर्म के लिए डाउनलोड लिंक के लिए bombsquadgame.com देखें।", "friendPromoCodeRedeemLongText": "यह ${COUNT} मुफ्त के टिकेट के लिए प्रयोग किया जा सकता है अधकतम  ${MAX_USES} लोगों के द्वारा |", "friendPromoCodeRedeemShortText": "यह ${COUNT} मुफ्त के टिकेट के लिए प्रयोग किया जा सकता है गेम के अन्दर |", - "friendPromoCodeWhereToEnterText": "(\"सेटिंग->उन्नत सेटिंग->कोड डालें\" में जाएँ )", + "friendPromoCodeWhereToEnterText": "(\"सेटिंग्स->उन्नत->जानकारी भेजें\" में)", "getFriendInviteCodeText": "दोस्त आमंत्रण कोड पायें", "googlePlayDescriptionText": "गूगल प्ले के खिलाड़ियों को अपनी पार्टी में आमंत्रण दें:", "googlePlayInviteText": "आमंत्रण दें", @@ -825,6 +844,12 @@ "youHaveShortText": "आपके पास ${COUNT} हैं", "youHaveText": "आपके पास ${COUNT} टिकेट हैं" }, + "goldPass": { + "desc1InfTokensText": "अनगिनत टोकन.", + "desc2NoAdsText": "कोई विज्ञापन नहीं.", + "desc3ForeverText": "हमेशा के लिए.", + "goldPassText": "गोल्ड पास" + }, "googleMultiplayerDiscontinuedText": "क्षमा करें, गूगल की एक साथ खेलने की सेवा अब उपलब्ध नहीं है। \nमैं जितनी जल्दी हो सके एक प्रतिस्थापन पर काम कर रहा हूं।\nतब तक, कृपया दूसरी जुडने की विधि आज़माएँ। \n-Eric", "googlePlayPurchasesNotAvailableText": "गूगल प्ले से ख़रीदारी उपलब्ध नहीं हैं।\nआपको अपना स्टोर ऐप अपडेट करना पड़ सकता है।", "googlePlayServicesNotAvailableText": "गूगल प्ले सर्विसेज उपलब्ध नहीं है।\nऐप की कुछ कार्यक्षमता अक्षम हो सकती है।", @@ -899,6 +924,7 @@ "importText": "आयात करें", "importingText": "आयात कर रहा है...", "inGameClippedNameText": "खेल में होगा \n\"${NAME}\"", + "inboxText": "इनबॉक्स", "installDiskSpaceErrorText": "त्रुटी: इनस्टॉल ख़तम नहीं कर पाया | \nआपके यंत्र पे जगह ख़तम हो सकती है | \nजगह खली कर के फिर से प्रयास करें |", "internal": { "arrowsToExitListText": "सूचि से बाहर निकलने केलिए ${LEFT} या ${RIGHT} दबाएँ", @@ -953,12 +979,14 @@ "timeOutText": "(समय ख़तम होने में ${TIME} सेकंड)", "touchScreenJoinWarningText": "आपने टच स्क्रीन से जोड़ा है | \nअगर यह गलती से हुआ है तो 'मेनू -> गेम छोड़ें' से बाहर निकल जाएँ |", "touchScreenText": "टच स्क्रीन", + "unableToCompleteTryAgainText": "इसे अभी पूरा करने में असमर्थ।\nकृपया पुन: प्रयास करें।", "unableToResolveHostText": "त्रुटि: होस्ट को हल करने में असमर्थ हैं।", "unavailableNoConnectionText": "यह अभी उपलब्ध नहीं है | (इन्टरनेट कनेक्शन है ना ?)", "vrOrientationResetCardboardText": "वी-आर अनुस्थापन रिसेट करने के लिए इसका प्रयोग करें | \nगेम खेलने के लिए आपको एक बाहरी नियंत्रक चाहिए होगा |", "vrOrientationResetText": "वी-आर अनुस्थापन रिसेट", "willTimeOutText": "(समय ख़तम हो जायेगा अगर आलसी रहेंगे)" }, + "inventoryText": "भंडार", "jumpBoldText": "कूदें", "jumpText": "कूदें", "keepText": "रखें", @@ -1005,8 +1033,11 @@ "seasonEndsMinutesText": "सीज़न ख़तम होगा ${NUMBER} मिनटों में |", "seasonText": "सीज़न संख्या ${NUMBER}", "tournamentLeagueText": "इस प्रतियोगिता में हिस्सा लेने के लिए आपको ${NAME} संघ तक पहले पहुंचना होगा", - "trophyCountsResetText": "ट्रॉफी कि संख्या अगले सीज़न में रिसेट हो जायेगी" + "trophyCountsResetText": "ट्रॉफी कि संख्या अगले सीज़न में रिसेट हो जायेगी", + "upToDateBonusDescriptionText": "खिलाड़ी इसका नवीनतम संस्करण चला रहे हैं\nगेम को यहां ${PERCENT}% बोनस प्राप्त होता है।", + "upToDateBonusText": "नवीनतम बोनस" }, + "learnMoreText": "और अधिक जानें", "levelBestScoresText": "${LEVEL} पर सर्वश्रेष्ठ स्कोर", "levelBestTimesText": "${LEVEL} पर सबसे अच्छे समय", "levelFastestTimesText": "सबसे तेज़ ${LEVEL} स्तर पे", @@ -1052,6 +1083,8 @@ "modeArcadeText": "आर्केड मोड", "modeClassicText": "क्लासिक मोड", "modeDemoText": "डेमो मोड", + "moreSoonText": "और अधिक जल्द ही आ रहा है...", + "mostDestroyedPlayerText": "सर्वाधिक नष्ट खिलाड़ी", "mostValuablePlayerText": "सबसे ज्यादा कीमती खिलाड़ी", "mostViolatedPlayerText": "सबसे ज्यादा उल्लंघित खिलाड़ी", "mostViolentPlayerText": "सबसे ज्यादा हिंसात्मक खिलाड़ी", @@ -1068,6 +1101,7 @@ "nameSuicideText": "${NAME} ने आत्म-हत्या कर ली |", "nameText": "नाम", "nativeText": "मूलभूत", + "newExclaimText": "ताज़ा!", "newPersonalBestText": "नया निजी उत्तम अंक !", "newTestBuildAvailableText": "एक नया परीक्षा का संस्करण उपलब्ध है ! \n(${VERSION} बिल्ड ${BUILD}). इसे ${ADDRESS} से पायें |", "newText": "नया", @@ -1078,6 +1112,7 @@ "noContinuesText": "(कोई जारी रखना नहीं)", "noExternalStorageErrorText": "कोई बाहरी संचयन करने कि जगह नहीं मिली", "noGameCircleText": "त्रुटी: गेम-सर्किल में लॉग-इन नहीं हैं |", + "noMessagesText": "कोई संदेश नहीं.", "noPluginsInstalledText": "कोई प्लगइन इंस्टॉल नहीं है", "noProfilesErrorText": "आपकी कोई खिलाड़ी पार्श्वचित्र नहीं है, इसलिए आप '${NAME}' नाम के साथ फंसे हैं |\nसेटिंग -> खिलाड़ी पार्श्वचित्र में जाके अपने लिए पार्श्वचित्र बनायें |", "noScoresYetText": "अभी तक कोई स्कोर नहीं है |", @@ -1087,6 +1122,7 @@ "noValidMapsErrorText": "इस गेम ढंग के लिए कोई नक्शा नहीं मिला", "notEnoughPlayersRemainingText": "पर्याप्त खिलाड़ी बाकी नहीं हैं; बंद कर के नया गेम शुरू करें |", "notEnoughPlayersText": "आपको कम से कम ${COUNT} खिलाड़ी चाहिए गेम शुरू करने के लिए !", + "notEnoughTicketsText": "पर्याप्त टिकट नहीं!", "notNowText": "अभी नहीं", "notSignedInErrorText": "यह करने के लिए आपको अपने खाते में साइन इन करना पड़ेगा", "notSignedInGooglePlayErrorText": "आपको गूगल प्ले से साइन इन करना पड़ेगा यह करने के लिए |", @@ -1099,6 +1135,9 @@ "onText": "चालू करें", "oneMomentText": "एक क्षण...", "onslaughtRespawnText": "${PLAYER} फिर से जिन्दा होगा लहर ${WAVE} में", + "openMeText": "मुझे खोलो!", + "openNowText": "अभी खोलें", + "openText": "खुला", "orText": "${A} या ${B}", "otherText": "अन्य", "outOfText": "(${ALL} में से #${RANK})", @@ -1185,6 +1224,8 @@ "punchText": "मुक्का", "purchaseForText": "${PRICE} के भाव पे खरीदें", "purchaseGameText": "गेम खरीदें", + "purchaseNeverAvailableText": "क्षमा करें, इस बिल्ड पर खरीदारी उपलब्ध नहीं है।\nकिसी अन्य प्लेटफ़ॉर्म पर अपने खाते में साइन इन करने और वहां से खरीदारी करने का प्रयास करें।", + "purchaseNotAvailableText": "यह ख़रीदना संभव नहीं है|", "purchasingText": "खरीद रहे हैं...", "quitGameText": "${APP_NAME} को बंद कर दें ?", "quittingIn5SecondsText": "५ सेकंड में बंद कर रहे हैं...", @@ -1226,6 +1267,7 @@ "version_mismatch": "संस्करण मेल नहीं खा रहे हैं | \nयह सुनिश्चित कर लें कि बोम्ब-स्क्वाड गेम और \nरिमोट पर नवीनतम संस्करण है और पुनः प्रयास करें |" }, "removeInGameAdsText": "${PRO} को भंडार में खरीदें गेम के बीच आने वाले एड्स को हटाने के लिए |", + "removeInGameAdsTokenPurchaseText": "सीमित समय की पेशकश: इन-गेम विज्ञापनों को हटाने के लिए कोई भी टोकन पैक खरीदें।", "renameText": "नाम बदलें", "replayEndText": "रीप्ले बंद करें", "replayNameDefaultText": "आखिरी गेम का रीप्ले", @@ -1277,6 +1319,7 @@ "alwaysUseInternalKeyboardDescriptionText": "(एक साधारण, नियंत्रक से आसानी इ प्रयोग हो जाने वाला कीबोर्ड)", "alwaysUseInternalKeyboardText": "हमेशा गेम के कीबोर्ड का प्रयोग करें", "benchmarksText": "बेंचमार्क व तनाव परीक्षण", + "devToolsText": "देव उपकरण", "disableCameraGyroscopeMotionText": "कैमरा गायरोस्कोप गतिवान बंद करे", "disableCameraShakeText": "कैमरा की हलचल बंद करे", "disableThisNotice": "(आप उन्नत सेटिंग में इस नोटिस को अक्षम कर सकते हैं)", @@ -1285,6 +1328,8 @@ "enterPromoCodeText": "कोड डालें", "forTestingText": "टिपण्णी: यह संख्याएं सिर्फ परीक्षण के लिए हैं, और एप्लीकेशन के बंद होने पर खो जायेंगी |", "helpTranslateText": "${APP_NAME} के अनुवाद एक सामुदायिक प्रयास का परिणाम हैं | \nअगर आप इसमें अपना योगदान देना चाहते हैं \nया कुछ ठीक करना चाहते हैं तो निचे दी गयी लिंक को देखें | धन्यवाद !", + "insecureConnectionsDescriptionText": "अनुशंसित नहीं है,\nलेकिन प्रतिबंधित देशों या नेटवर्कों से ऑनलाइन खिलाड़ियों को अनुमति दे सकता है है", + "insecureConnectionsText": "असुरक्षित कनेक्शन का उपयोग करें", "kickIdlePlayersText": "निष्क्रिय खिलाडियों को बाहर निकाल दें", "kidFriendlyModeText": "बच्चों के अनुकूल करें (कम हिंसा, आदि)", "languageText": "भाषा", @@ -1296,6 +1341,7 @@ "sendInfoText": "खबर बेजिए", "showBombTrajectoriesText": "बोम्ब का पथ दिखाएँ", "showDemosWhenIdleText": "निष्क्रिय होने पर डेमो दिखाएं", + "showDeprecatedLoginTypesText": "अप्रचलित लॉगिन प्रकार दिखाएँ", "showDevConsoleButtonText": "डेव कंसोल बटन दिखाएँ", "showInGamePingText": "गेम पिंग में दिखाएं", "showPlayerNamesText": "खिलाड़ी का नाम दिखाएँ", @@ -1344,6 +1390,7 @@ }, "spaceKeyText": "स्पेस", "statsText": "स्टैट्‍स", + "stopRemindingMeText": "मुझे याद दिलाना बंद करो", "storagePermissionAccessText": "इसमें संग्रहण एक्सेस की आवश्यकता है", "store": { "alreadyOwnText": "आपके पास ${NAME} पहले से ही है!", @@ -1353,7 +1400,7 @@ "charactersText": "पात्र", "comingSoonText": "जल्द आ रहा है...", "extrasText": "अतिरिक्त", - "freeBombSquadProText": "बम्ब्सक्वाड अब नि:शुल्क है, लेकिन जब से आपने मूल रूप से इसे खरीदा था \nतब आप हैं बम्ब्सक्वाड प्रो उन्नयन और ${COUNT} टिकट आपको धन्यवाद के रूप में दिए जा रहे हैं। \nनई सुविधाओं का आनंद लें, और अपने समर्थन के लिए धन्यवाद! \n-एरिक", + "freeBombSquadProText": "बम्ब्सक्वाड अब नि:शुल्क है, लेकिन जब से आपने मूल रूप से इसे खरीदा था \nतब आप हैं बम्ब्सक्वाड प्रो उन्नयन और ${COUNT} टिकट आपको धन्यवाद के रूप में दिए जा रहे हैं। \nनई सुविधाओं का आनंद लें, और अपने समर्थन के लिए धन्यवाद! \n-एरिक ", "holidaySpecialText": "छुट्टी विशेष", "howToSwitchCharactersText": "(पात्र असाइन और कस्टमाइज़ करने के लिए जाएं \"${SETTINGS} -> ${PLAYER_PROFILES}\" पर)", "howToUseIconsText": "(इन का उपयोग करने के लिए वैश्विक खिलाड़ी प्रोफाइल (खाता विंडो में) बनाएं)", @@ -1402,6 +1449,7 @@ "testBuildValidatedText": "परीक्षण निर्माण मान्य; आनंद लें!", "thankYouText": "आपके सहयोग के लिए धन्यवाद! खेल का लुफ्त उठाओ!!", "threeKillText": "तिहरा हत्या!!", + "ticketsDescriptionText": "टिकटों का उपयोग पात्रों को अनलॉक करने के लिए किया जा सकता है,\nस्टोर में मानचित्र, मिनीगेम्स और बहुत कुछ।\n\nटिकट जीते गए चेस्ट में पाए जा सकते हैं\nअभियान, टूर्नामेंट और उपलब्धियाँ।", "timeBonusText": "समय बोनस", "timeElapsedText": "समय बीता", "timeExpiredText": "समय समाप्त", @@ -1412,10 +1460,24 @@ "tipText": "टिप", "titleText": "बमस्क्वाड", "titleVRText": "बमस्क्वाड व.र.", + "tokens": { + "getTokensText": "टोकन ले", + "notEnoughTokensText": "पर्याप्त टोकन नहीं है!", + "numTokensText": "${COUNT} टोकन", + "openNowDescriptionText": "आपके पास पर्याप्त टोकन हैं\nइसे अभी खोलें - आप ऐसा नहीं करेंगे\nइंतजार करने की जरूरत है.", + "shinyNewCurrencyText": "बॉम्बस्क्वाड की चमकदार नई मुद्रा।", + "tokenPack1Text": "छोटा टोकन पैक", + "tokenPack2Text": "मध्यम टोकन पैक", + "tokenPack3Text": "बड़ा टोकन पैक", + "tokenPack4Text": "जंबो टोकन पैक", + "tokensDescriptionText": "चेस्ट अनलॉक को तेज़ करने के लिए टोकन का उपयोग किया जाता है\nऔर अन्य गेम और खाता सुविधाओं के लिए।\n\nआप गेम में टोकन जीत सकते हैं या उन्हें खरीद सकते हैं\nपैक्स में. या अनंत के लिए एक गोल्ड पास खरीदें\nटोकन और उनके बारे में फिर कभी नहीं सुनना।", + "youHaveGoldPassText": "आपके पास गोल्ड पास है।\nसभी टोकन खरीद निःशुल्क हैं।\nआनंद ले!" + }, "topFriendsText": "अच्छे दोस्त", "tournamentCheckingStateText": "प्रतियोगिता की जांच हो रही है; कृपया प्रतीक्षा करें...", "tournamentEndedText": "यह प्रतियोगिता समाप्त हो गया है। एक नया जल्द ही शुरू होगा।", "tournamentEntryText": "प्रतियोगिता प्रवेश", + "tournamentFinalStandingsText": "अंतिम स्थिति", "tournamentResultsRecentText": "हालिया प्रतियोगिता परिणाम", "tournamentStandingsText": "प्रतियोगिता स्टैंडिंग्स", "tournamentText": "प्रतियोगिता", @@ -1471,6 +1533,18 @@ "Uber Onslaught": "महा हमला", "Uber Runaround": "महा रनराउंड" }, + "displayItemNames": { + "${C} Tickets": "${C} टिकट", + "${C} Tokens": "${C} टोकन", + "Chest": "छाती", + "L1 Chest": "एल1 छाती", + "L2 Chest": "एल2 छाती", + "L3 Chest": "एल3 छाती", + "L4 Chest": "एल4 छाती", + "L5 Chest": "एल5 छाती", + "L6 Chest": "एल6 छाती", + "Unknown Chest": "अज्ञात छाती" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "जीतने के लिए लंबे समय तक चुने गए व्यक्ति बनें। \nइसे चुनने के लिए चुने हुए को मार डालो।", "Bomb as many targets as you can.": "जितना संभव हो उतने लक्ष्य पर बम मारें ।", @@ -1575,6 +1649,7 @@ "Korean": "कोरियाई", "Malay": "मलय", "Persian": "फ़ारसी", + "PirateSpeak": "डाकू भाषा", "Polish": "पोलिश", "Portuguese": "पुर्तगाली", "Romanian": "रोमानियाई", @@ -1646,6 +1721,7 @@ "Cheating detected; scores and prizes suspended for ${COUNT} days.": "धोखाधड़ी का पता चला; स्कोर और पुरस्कार ${COUNT} दिनों के लिए निलंबित कर दिए गए हैं।", "Could not establish a secure connection.": "एक सुरक्षित कनेक्शन स्थापित नहीं कर सका।", "Daily maximum reached.": "दैनिक अधिकतम पहुंच गया।", + "Daily sign-in reward": "दैनिक साइन-इन इनाम", "Entering tournament...": "टूर्नामेंट में प्रवेश ...", "Invalid code.": "अमान्य कोड।", "Invalid payment; purchase canceled.": "अमान्य भुगतान; खरीद रद्द।", @@ -1655,11 +1731,14 @@ "Item unlocked!": "सामग्री अनलॉक!", "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "जुड़ाव अस्वीकृत। ${ACCOUNT} में महत्वपूर्ण डेटा शामिल है \nजो सभी खो जाएंगे। यदि आप चाहते हैं \nतो आप विपरीत क्रम में लिंक कर सकते हैं \n(और इसके बजाय इस खाते का डेटा खो दें)", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "इस खाते में ${ACCOUNT} खाता लिंक करें? \n${ACCOUNT} पर मौजूद सभी डेटा खो जाएंगे। \nइसे असंपादित नहीं किया जा सकता है। क्या आपको यकीन है?", + "Longer streaks lead to better rewards.": "लंबी स्ट्रीक्स से बेहतर पुरस्कार मिलते हैं।", "Max number of playlists reached.": "प्लेलिस्ट की अधिकतम संख्या तक पहुंच गई।", "Max number of profiles reached.": "प्रोफाइल की अधिकतम संख्या तक पहुंच गया।", "Maximum friend code rewards reached.": "अधिकतम मित्र कोड पुरस्कार पहुंचे।", "Message is too long.": "संदेश बहुत लंबा है।", + "New tournament result!": "नया टूर्नामेंट परिणाम!", "No servers are available. Please try again soon.": "कोई सर्वर उपलब्ध नहीं हैं। कृपया शीघ्र ही पुन: प्रयास करें।", + "No slots available. Free a slot and try again.": "कोई स्लॉट उपलब्ध नहीं है. एक स्लॉट खाली करें और पुनः प्रयास करें।", "Profile \"${NAME}\" upgraded successfully.": "प्रोफाइल \"${NAME}\" सफलतापूर्वक अपग्रेड किया गया।", "Profile could not be upgraded.": "प्रोफ़ाइल को अपग्रेड नहीं किया जा सका।", "Purchase successful!": "खरीद सफल!", @@ -1669,7 +1748,9 @@ "Sorry, this code has already been used.": "क्षमा करें, यह कोड पहले ही इस्तेमाल हो चुका है।", "Sorry, this code has expired.": "क्षमा करें, यह कोड समाप्त हो गया है।", "Sorry, this code only works for new accounts.": "क्षमा करें, यह कोड केवल नए खातों के लिए काम करता है।", + "Sorry, this has expired.": "क्षमा करें, इसकी समय सीमा समाप्त हो गई है.", "Still searching for nearby servers; please try again soon.": "अभी भी आस-पास के सर्वर खोज रहे हैं; कृपया जल्द ही पुन: प्रयास करें।", + "Streak: ${NUM} days": "स्ट्रीक: ${NUM} दिन", "Temporarily unavailable; please try again later.": "अस्थाई रूप से अनुपलब्ध; बाद में पुन: प्रयास करें।", "The tournament ended before you finished.": "टूर्नामेंट समाप्त होने से पहले समाप्त हो गया।", "This account cannot be unlinked for ${NUM} days.": "यह खाता ${NUM} दिनों के लिए अनलिंक नहीं किया जा सकता है।", @@ -1680,19 +1761,28 @@ "Tournaments require ${VERSION} or newer": "टूर्नामेंटों को ${VERSION} या नए की आवश्यकता होती है", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "इस खाते से ${ACCOUNT} अनलिंक करें? ${ACCOUNT} \nपर मौजूद सभी डेटा रीसेट हो जाएंगे। \n(कुछ मामलों में उपलब्धियों को छोड़कर)", "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "चेतावनी: आपके खाते के खिलाफ हैकिंग की शिकायतें जारी की गई हैं। \nहैकिंग के लिए पाए गए खातों पर प्रतिबंध लगा दिया जाएगा। कृपया ईमानदार से खेलें।", + "Wait reduced!": "इंतज़ार कम हुआ!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "चेतावनी: गेम का यह संस्करण पुराने खाता डेटा तक सीमित है; चीज़ें गुम या पुरानी लग सकती हैं।\nकृपया अपना नवीनतम खाता डेटा देखने के लिए गेम के नए संस्करण में अपग्रेड करें।", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "क्या आप अपने डिवाइस खाते को इस से लिंक करना चाहते हैं? \n\nआपका डिवाइस खाता ${ACCOUNT1} है \nयह खाता ${ACCOUNT2} है \n\nयह आपको अपनी मौजूदा प्रगति को रखने की अनुमति देगा। \nचेतावनी: इसे पूर्ववत नहीं किया जा सकता है", "You already own this!": "आप पहले से ही इसे खरीद चुके है!", "You can join in ${COUNT} seconds.": "आप ${COUNT} सेकंड में शामिल हो सकते हैं।", "You don't have enough tickets for this!": "आपके पास इसके लिए पर्याप्त टिकट नहीं हैं!", "You don't own that.": "आप उसका स्वामित्व नहीं रखते हैं।", "You got ${COUNT} tickets!": "आपको ${COUNT} टिकट मिल गए हैं!", + "You got ${COUNT} tokens!": "आपको ${COUNT} टोकन मिल गए!", "You got a ${ITEM}!": "आपको ${ITEM} मिला है!", + "You got a chest!": "तुम्हें एक संदूक मिल गया!", + "You got an achievement reward!": "आपको एक उपलब्धि पुरस्कार मिला!", "You have been promoted to a new league; congratulations!": "आपको एक नए लीग में पदोन्नत किया गया है; बधाई!", + "You lost a chest! (All your chest slots were full)": "आपने एक संदूक खो दिया! (आपके सभी चेस्ट स्लॉट भरे हुए थे)", + "You must update the app to view this.": "इसे देखने के लिए आपको ऐप को अपडेट करना होगा।", "You must update to a newer version of the app to do this.": "ऐसा करने के लिए आपको ऐप के एक नए संस्करण में अपडेट करना होगा।", "You must update to the newest version of the game to do this.": "ऐसा करने के लिए आपको गेम के नवीनतम संस्करण में अपडेट करना होगा।", "You must wait a few seconds before entering a new code.": "नया कोड दर्ज करने से पहले आपको कुछ सेकंड इंतजार करना होगा।", + "You placed #${RANK} in a tournament!": "आपने एक टूर्नामेंट में #${RANK} रखा!", "You ranked #${RANK} in the last tournament. Thanks for playing!": "आपने पिछले टूर्नामेंट में #${RANK} रैंक किया था। खेलने के लिए शुक्रिया!", "Your account was rejected. Are you signed in?": "आपका खाता अस्वीकृत कर दिया गया है। क्या आप हस्ताक्षरित हैं?", + "Your ad views are not registering. Ad options will be limited for a while.": "आपके विज्ञापन दृश्य पंजीकृत नहीं हो रहे हैं. विज्ञापन विकल्प कुछ समय के लिए सीमित रहेंगे।", "Your copy of the game has been modified.\nPlease revert any changes and try again.": "खेल की आपकी प्रति संशोधित कर दी गई है। \nकृपया किसी भी बदलाव को वापस करें और पुनः प्रयास करें।", "Your friend code was used by ${ACCOUNT}": "आपका मित्र कोड ${ACCOUNT} द्वारा उपयोग किया गया था" }, @@ -1843,6 +1933,7 @@ "twoKillText": "दोहरी हत्या", "uiScaleText": "यू आई सकेल", "unavailableText": "उपलब्ध नहीं", + "unclaimedPrizesText": "आपके पास लावारिस पुरस्कार हैं!", "unconfiguredControllerDetectedText": "बिना विन्यास वाले नियंत्रक का पता चला:", "unlockThisInTheStoreText": "यह स्टोर में अनलॉक होना चाहिए।", "unlockThisProfilesText": "${NUM} प्रोफ़ाइल बनाने के लिए, आपको इसकी आवश्यकता है:", @@ -1860,6 +1951,7 @@ "usesExternalControllerText": "यह गेम इनपुट के लिए बाहरी नियंत्रक का उपयोग करता है।", "usingItunesText": "गाने के लिए संगीत ऐप का उपयोग कर रहे है ...", "v2AccountLinkingInfoText": "V2 खातों को लिंक करने के लिए, 'खाता प्रबंधित करें' बटन का उपयोग करें।", + "v2AccountRequiredText": "इसके लिए V2 खाते की आवश्यकता है। अपना खाता अपग्रेड करें और पुनः प्रयास करें।", "validatingTestBuildText": "परीक्षण निर्माण मान्य ...", "viaText": "के जरिए", "victoryText": "विजय!", @@ -1927,5 +2019,6 @@ }, "yesAllowText": "हाँ, आज्ञा दें", "yourBestScoresText": "आपका बेस्ट स्कोर।", - "yourBestTimesText": "आपका सर्वोत्तम समय" + "yourBestTimesText": "आपका सर्वोत्तम समय", + "yourPrizeText": "आपका पुरस्कार:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/hungarian.json b/dist/ba_data/data/languages/hungarian.json index af3416e..a6c9436 100644 --- a/dist/ba_data/data/languages/hungarian.json +++ b/dist/ba_data/data/languages/hungarian.json @@ -3,17 +3,19 @@ "accountNameRules": "A fiók neve nem tartalmazhat emojikat és más speciális karaktereket", "accountProfileText": "(Felhasználó profilok)", "accountsText": "Fiókok", - "achievementProgressText": "Eredmènyek: ${COUNT} a(z) ${TOTAL}-ból/ből.", + "achievementProgressText": "Eredmények: ${COUNT} a(z) ${TOTAL}-ból/ből.", "campaignProgressText": "Kampány haladás(nehéz mód): ${PROGRESS}", "changeOncePerSeason": "Ebben a szezonban ezt csak egyszer változtathatod meg.", "changeOncePerSeasonError": "Várj a következő szezonig, hogy ezt megint megváltoztasd (${NUM} nap)", + "createAnAccountText": "Fiók létrehozása", "customName": "Egyedi név", + "deleteAccountText": "Fiók Törlése", "deviceSpecificAccountText": "Csak erről az eszközről lehet elérni ezt a profilt: ${NAME}", "googlePlayGamesAccountSwitchText": "Ha másik Google fiókot használnál, használd a Google Játékok alkalmazást.", "linkAccountsEnterCodeText": "Írd Be A Kódot", "linkAccountsGenerateCodeText": "Kód Generálása", "linkAccountsInfoText": "(vidd át előrehaladásodat akár több eszközre is)", - "linkAccountsInstructionsNewText": "Két fiók összekapcsolásához az első fiókon hozz létre egy kódot\nés írd be a második fiókba. Az adatok a\na második fiókon majd megosztják egymással.\n(Az első fiókból származó adatok elveszhetnek)\n\nÖsszesen akár ${COUNT} fiókot is összekapcsolhat.\n\nFONTOS:\nCsak a tulajdonodban lévő fiókokat kapcsold össze;\nHa összekapcsolsz egyet az egyik barátodéval, nem fogtok tudni egyszerre online játszani.", + "linkAccountsInstructionsNewText": "Két fiók összekapcsolásához az első fiókon hozz létre egy kódot\nés írd be a második fiókba. Az adatok a\na második fiókon majd megosztják egymással.\n(Az első fiókból származó adatok elvesznek)\n\nÖsszesen akár ${COUNT} fiókot is összekapcsolhat.\n\nFONTOS:\nCsak a tulajdonodban lévő fiókokat kapcsold össze;\nHa összekapcsolsz egyet az egyik barátodéval, nem fogtok tudni egyszerre online játszani.", "linkAccountsInstructionsText": "Hogy párosíts két profilt, generálj egy kódot\naz egyiken majd írd be a kapott kódot a másikon.\nAz előrehaladás és a megvásárolt dolgok is párosításra kerülnek .\nÖsszesen ${COUNT} profilt tudsz összehangolni.\n\nFONTOS:Csak olyan profilt csatlakoztass ami a tiéd!\nHogyha profilt csatlakoztatsz a barátaiddal\nakkor nem fogsz tudni játszani azonos időben!\n\nLégy óvatos!Ezt a lépést nem lehet visszavonni!", "linkAccountsText": "Profilok Párosítása", "linkedAccountsText": "Párosított Profilok:", @@ -22,11 +24,12 @@ "resetProgressConfirmNoAchievementsText": "Ez visszaállítja a co-op haladásodat és \nhelyi legmagasabb pontszámaidat (de a jegyeidet nem). \nEz nem vissza vonható. Biztos vagy benne?", "resetProgressConfirmText": "Ez visszaállítja a co-op haladásodat,\nteljesítményeidet és helyi legmagasabb pontszámaidat\n(de a jegyeidet nem). Ez nem vissza vonható.\nBiztos vagy benne?", "resetProgressText": "Haladás visszaállítása", - "setAccountName": "Állítsa be a fiók nevét", + "setAccountName": "Állítsd be a fiók nevét", "setAccountNameDesc": "Válassza ki a megjeleníteni kívánt fiók nevét.\nHasználhatja a nevét az egyik kapcsoltól\nfiókokat, vagy egyedi egyedi nevet hozhat létre.", "signInInfoText": "Lépj be, hogy tudj jegyeket gyűjteni, online versenyezni\nés elérni az eredményeidet akár több eszközről is.", "signInText": "Bejelentkezés", - "signInWithDeviceInfoText": "(Autómatikus fiók csak ezen az eszközön elérhető)", + "signInWithAnEmailAddressText": "Jelentkezz be egy email címmel", + "signInWithDeviceInfoText": "(Automatikus fiók csak ezen az eszközön elérhető)", "signInWithDeviceText": "Bejelentkezés az eszköz felhasználójával.", "signInWithGameCircleText": "Lépj be a Game Circle fiókodba", "signInWithGooglePlayText": "Belépés Google fiókkal", @@ -34,7 +37,7 @@ "signInWithTestAccountText": "Bejelentkezés teszt felhasználóval", "signInWithText": "Bejelentkezés ${SERVICE}-(v)al /-(v)el", "signInWithV2InfoText": "(egy fiók, amely minden platformon működik)", - "signInWithV2Text": "Jelentkezz be BombSquad fiókkal", + "signInWithV2Text": "Jelentkezzen be egy ${APP_NAME} fiókkal", "signOutText": "Kijelentkezés", "signingInText": "Bejelentkezés...", "signingOutText": "Kijelentkezés...", @@ -47,7 +50,7 @@ "unlinkAccountsText": "Fiókok leválasztása", "unlinkLegacyV1AccountsText": "(V1) fiókok lecsatolása", "v2LinkInstructionsText": "Használd ezt a linket fiók létrehozásához vagy bejelentkezéshez.", - "viaAccount": "(számlán keresztül ${NAME})", + "viaAccount": "(${NAME} fiókon keresztül )", "youAreSignedInAsText": "Eként vagy bejelentkezve:" }, "achievementChallengesText": "Teljesítmény kihívások", @@ -58,7 +61,7 @@ "descriptionComplete": "Megöltél 3 rosszfiút TNT-vel", "descriptionFull": "Ölj meg 3 rosszfiút TNT-vel a(z) ${LEVEL}-n", "descriptionFullComplete": "Megöltél 3 rosszfiút TNT-vel a(z) ${LEVEL}-n", - "name": "Bumm Megy a Dinamit" + "name": "Bumm! Megy a Dinamit" }, "Boxer": { "description": "Nyerj bombák használata nélkül", @@ -68,7 +71,7 @@ "name": "Boxoló" }, "Dual Wielding": { - "descriptionFull": "Csatlakoztass 2 kontrollert(hardvert vagy applikáció)", + "descriptionFull": "Csatlakoztass 2 kontrollert (hardvert vagy applikációt)", "descriptionFullComplete": "2 kontroller csatlakoztatva (hardver vagy applikáció)", "name": "Dupla Hadonászás" }, @@ -345,6 +348,8 @@ "allowText": "Engedélyezés", "alreadySignedInText": "A fiókoddal be vagy jelentkezve egy másik eszközről;\nkérlek cserélj fiókot vagy zárd be a játékot \na másik eszközön és próbáld újra", "apiVersionErrorText": "Nem lehet betölteni a ${NAME} modult jelenlegi verzió:${VERSION_USED}; szükséges verió:${VERSION_REQUIRED}.", + "applyText": "Alkalmaz", + "areYouSureText": "Biztos vagy benne?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(\"Automatikus\" csak akkor érhető el ha csatlakoztatva van egy fejhallgató)", "headRelativeVRAudioText": "Head-Relative hangzás", @@ -366,14 +371,22 @@ "boostText": "Boost", "bsRemoteConfigureInAppText": "A(z) ${REMOTE_APP_NAME} a saját alkalmazásában konfigurálódik.", "buttonText": "Gomb", - "canWeDebugText": "Szeretnéd, ha a BombSquad automatikusan jelentené a hibákat, \ncrash-eléseket, és általános használati infókat a fejlesztőknek?\n\nEz az adat nem tartalmaz személyes információkat és segít\na játék sima és hibamentes futásának megtartásában.", + "canWeDebugText": "Szeretné, ha a(z) ${APP_NAME} automatikusan bejelentené a hibákat, \nösszeomlásokat és alapvető használati információkat a fejlesztőnek?\n\nEzek az adatok nem tartalmaznak személyes adatokat és segítséget nyújtanak\nhogy a játék zökkenőmentesen és hibamentesen működjön.", "cancelText": "Mégse", "cantConfigureDeviceText": "Bocs, ${DEVICE} nem beállítható.", "challengeEndedText": "Ez a kihívás már végét ért.", "chatMuteText": "Chat némítása", "chatMutedText": "Chat némítva", "chatUnMuteText": "Chat némítás feloldása", + "chests": { + "prizeOddsText": "A nyeremények lehetnek:", + "reduceWaitText": "Idő csökkentése", + "slotDescriptionText": "Ez a retesz egy láda tárolására alkalmas.\n\nLádákat szerezhetsz a kampány pályákról, \nversenyekről és \nmérföldkövek eléréséért.", + "slotText": "${NUM}. Láda rekesz", + "slotsFullWarningText": "Figyelem! A láda tartó reteszeid tele vannak. \nBármilyen láda, amit ebben a játékban szerzel, el fog veszni." + }, "choosingPlayerText": "", + "claimText": "Begyűjtés", "codesExplainText": "A kódokkal diagnosztizálni és javítani tudod az esetlegesen felmerülő,\n fiókoddal kapcsolatos problémákat.", "completeThisLevelToProceedText": "Teljesítened kell ezt\na szintet a folytatáshoz!", "completionBonusText": "Befejezési Bónusz", @@ -558,8 +571,9 @@ "demoText": "Demo", "denyText": "Megtagad", "deprecatedText": "Elavult", + "descriptionText": "Leírás", "desktopResText": "Asztali Felbontás", - "deviceAccountUpgradeText": "Hé!\nEgy eszközfiókkal vagy bejelentkezve (${NAME}). Egy jövőbeli frissítésben az ezeket az eszközfiókokat eltávolítjuk.\nFejleszd fiókod V2-es fiókra ha meg szeretnéd tartani a haladásod és a többi cuccaidat.\n.", + "deviceAccountUpgradeText": "Hé!\nEgy eszközfiókkal vagy bejelentkezve (${NAME}). \nEgy jövőbeli frissítésben az ezeket az eszközfiókokat eltávolítjuk.\nFejleszd fiókod V2-es fiókra ha meg szeretnéd tartani a haladásod és a többi cuccaidat.", "difficultyEasyText": "Könnyű", "difficultyHardOnlyText": "Csak Nehéz Mód", "difficultyHardText": "Nehéz", @@ -569,6 +583,7 @@ "disableXInputDescriptionText": "Engedélyezi ,hogy 4-nél több kontroller is csatlakozhasson ,viszont nem biztos a hibátlan működés.", "disableXInputText": "XInput kikapcsolása", "disabledText": "Kikapcsolva", + "discardText": "Elvetés", "discordFriendsText": "Szeretnél barátokat találni?\nCsatlakozz a Discord szerverünkre!", "discordJoinText": "Csatlakozás a discord szerverre", "doneText": "Elvégezve", @@ -643,8 +658,8 @@ "enabledText": "Bekapcsolva", "endText": "Befejezés", "enjoyText": "Jó Játékot!", - "epicDescriptionFilterText": "${DESCRIPTION} A hatalmas lassú mozgásban", - "epicNameFilterText": "Hatalmas ${NAME}", + "epicDescriptionFilterText": "${DESCRIPTION} Az epikus lassú mozgásban", + "epicNameFilterText": "Epikus ${NAME}", "errorAccessDeniedText": "hozzáférés megtagadva", "errorDeviceTimeIncorrectText": "Az eszközöd rossz időt mutat ennyi órával:${HOURS}.\nEz okozhat problémákat is.\nKérjük ellenőrizd az időt és idő-zónát a beállításokban.", "errorOutOfDiskSpaceText": "Kifogyott a szabadhelyből", @@ -652,6 +667,8 @@ "errorText": "Hiba", "errorUnknownText": "ismeretlen hiba", "exitGameText": "Kilépsz a ${APP_NAME}-ból?", + "expiredAgoText": "Lejárt: ${T} óta", + "expiresInText": "Lejár ${T} múlva", "exportSuccessText": "'${NAME}' áthelyezve.", "externalStorageText": "Külső Tárhely", "failText": "Bukta", @@ -714,6 +731,7 @@ "copyCodeConfirmText": "Vágólapra másolva.", "copyCodeText": "Kód másolása", "dedicatedServerInfoText": "A legjobb eredményért, csinálj dedikált szerver.Útmutató:bombsquadgame.com/server", + "descriptionShortText": "A \"Toborzás\" ablakban összeállíthatsz egy csapatot.", "disconnectClientsText": "Ez le fogja csatlakoztatni a ${COUNT} játékost\na társaságodból. Biztos vagy benne?", "earnTicketsForRecommendingAmountText": "A barátaid kapni fognak ${COUNT} jegyet ha kipróbálják a játékot\n(és te is kapni fogsz ${YOU_COUNT} jegyet minden barátok általi kipróbálás után)", "earnTicketsForRecommendingText": "Terjeszd a játékot\ningyenes jegyekért...", @@ -727,7 +745,7 @@ "friendPromoCodeAwardText": "${COUNT} jegyet fogsz kapni minden egyes használásnál.", "friendPromoCodeExpireText": "Ez a kód ${EXPIRE_HOURS} óra múlva lejár és csak új játékosok használhatják.", "friendPromoCodeInfoText": "Ez a kód ${COUNT} jegyet ér.\n\nMenj a \"Beállítások->Haladó->Promóciós Kód Beírása\" a játékban, hogy aktiváld.\nLátogasd meg a bombsquadgame.com nevű weboldalt, a letöltési linkek eléréséhez.\nEz a kód csak ${EXPIRE_HOURS} óráig érvényes és csak új játékosok számára elérhető.", - "friendPromoCodeInstructionsText": "Hogy használhasd, nyisd meg a ${APP_NAME}-ot, menj a \"Beállítások->Haladó>Promóciós Kód Beírása\" menüpontba.\nÍrd be a kódod majd kattints a \"Küldés\" gombra. Látogasd meg a bombsquadgame.com weboldalt letöltési linkekért, és a támogatott eszközök listájáért.", + "friendPromoCodeInstructionsText": "A használatához nyissa meg a ${APP_NAME} alkalmazást, és lépjen a \"Beállítások->Speciális->Információ küldése\" menüpontra.\nA bombsquadgame.com oldalon megtalálja az összes támogatott platform letöltési linkjét.", "friendPromoCodeRedeemLongText": "${COUNT} jegyet ér és maximum ${MAX_USES} ember használhatja.", "friendPromoCodeRedeemShortText": "${COUNT} jegyet ér a játékon belül.", "friendPromoCodeWhereToEnterText": "(itt \"Beállítások->Haladó->Promóciós Kód Beírása\")", @@ -830,6 +848,12 @@ "youHaveShortText": "${COUNT} jegyed van", "youHaveText": "Neked ${COUNT} jegyed van." }, + "goldPass": { + "desc1InfTokensText": "Végtelen token.", + "desc2NoAdsText": "Nincsenek reklámok.", + "desc3ForeverText": "Örökké.", + "goldPassText": "Arany Pass." + }, "googleMultiplayerDiscontinuedText": "Bocsánat, A Google-nek a többjátékos szervisze többé nem elérhető.\nÉn most egy cserén dolgozok.\nAddig, Kérlek Válasz egy Másik Kapcsolódási lehetőséget.\n-Eric", "googlePlayPurchasesNotAvailableText": "A Google Play vásárlások nem elérhetőek.\nTalán frissíteni kell a vásárló alakalmazásod", "googlePlayServicesNotAvailableText": "A Google Play Szolgáltatások nem elérhetőek.\nNéhány része a játéknak talán le vannak tiltva", @@ -904,6 +928,7 @@ "importText": "Importálás", "importingText": "Bemásolás...", "inGameClippedNameText": "játékbeli alak:\n\"${NAME}\"", + "inboxText": "Bejövő", "installDiskSpaceErrorText": "Hiba: Nem lehet teljesíteni a telepítést.\nTalán kifogytál a szabadhelyből az eszközödön.\nTakaríts egy kis helyet, és próbáld újra.", "internal": { "arrowsToExitListText": "nyomj ${LEFT}-t vagy ${RIGHT}-t a lista bezárásához", @@ -958,12 +983,14 @@ "timeOutText": "(Kifagyás ${TIME} másodpercen belül)", "touchScreenJoinWarningText": "Az érintőképernyővel csatlakoztál.\nHa ez egy hiba, akkor menj ide: Menü->Játék Elhagyása.", "touchScreenText": "Érintőképernyő", + "unableToCompleteTryAgainText": "Nem sikerült.\nKérlek próbáld újra.", "unableToResolveHostText": "Hiba: a host nem elérhető.", "unavailableNoConnectionText": "Ez a funkció nem elérhető (Nincs internet kapcsolat?).", "vrOrientationResetCardboardText": "Használd ezt, hogy visszaállíts a VR orientációkat.\nHogy játszhass csatlakoztatnod kell egy kontrollert.", "vrOrientationResetText": "VR orientáció újraindítása.", "willTimeOutText": "(lejár az idő, ha tétlen)" }, + "inventoryText": "Eszköztár", "jumpBoldText": "UGORJ", "jumpText": "Ugorj", "keepText": "Tartsd", @@ -986,7 +1013,7 @@ "killsText": "Ölések", "kioskWindow": { "easyText": "Könnyű", - "epicModeText": "Hatalmas mód", + "epicModeText": "Epikus mód", "fullMenuText": "Teljes menü", "hardText": "Nehéz", "mediumText": "Közepes", @@ -1010,8 +1037,11 @@ "seasonEndsMinutesText": "Szezonból hátralévő idő:${NUMBER} perc.", "seasonText": "Szezon ${NUMBER}", "tournamentLeagueText": "Hogy ebbe a tornába be tudj nevezni,el kell érned ezt a ligát:${NAME}", - "trophyCountsResetText": "A trófeák a következő szezonban lenullázódnak." + "trophyCountsResetText": "A trófeák a következő szezonban lenullázódnak.", + "upToDateBonusDescriptionText": "Ha legújabb verzióval játszol,\n${PERCENT}%-os bónuszt kapsz.", + "upToDateBonusText": "\"Legújabb verzió\" bónusz" }, + "learnMoreText": "Tudj meg többet", "levelBestScoresText": "Legjobb eredmények a ${LEVEL}-es szinten.", "levelBestTimesText": "Legjobb időeredmények a ${LEVEL}-es szinten", "levelFastestTimesText": "Legjobb idők a ${LEVEL}-n", @@ -1057,6 +1087,8 @@ "modeArcadeText": "Árkád mód", "modeClassicText": "Klasszikus mód", "modeDemoText": "Demó mód", + "moreSoonText": "Nemsokára több tartalom érkezik!", + "mostDestroyedPlayerText": "Legtöbbször megsemmisített játékos", "mostValuablePlayerText": "Legértékesebb Játékos", "mostViolatedPlayerText": "Legtöbbször Megölt Játékos", "mostViolentPlayerText": "Legerőszakosabb Játékos", @@ -1073,6 +1105,7 @@ "nameSuicideText": "${NAME} öngyilkosságot követett el.", "nameText": "Név", "nativeText": "Eredeti", + "newExclaimText": "Új!", "newPersonalBestText": "Új személyi rekord!", "newTestBuildAvailableText": "Egy újabb teszt szerkezet elérhető! (${VERSION} build ${BUILD}).\nSzerezd meg a ${ADDRESS}-n", "newText": "Új", @@ -1083,6 +1116,7 @@ "noContinuesText": "(újraéledés nélkül)", "noExternalStorageErrorText": "Nincs megtalálható külső tárhely ezen az eszközön", "noGameCircleText": "Hiba: nincs bejelentkezve egy JátékKörbe", + "noMessagesText": "Nincsenek üzenetek.", "noPluginsInstalledText": "Nincsenek hozzáadva pluginok", "noProfilesErrorText": "Nincs játékos profilod, tehát te most '${NAME}'-val nyomulsz.\nMenj a Beállítások->Játékos Profilok-ba hogy csinálj magadnak egy profilt-", "noScoresYetText": "Nincs még pontod.", @@ -1092,6 +1126,7 @@ "noValidMapsErrorText": "Nem található pálya ehhez a játéktípushoz.", "notEnoughPlayersRemainingText": "Nincs elég játékos. Lépj ki és kezdj egy új játékot.", "notEnoughPlayersText": "A játék elindításához, minimum ${COUNT} játékos szükséges!", + "notEnoughTicketsText": "Nincs elég jegyed!", "notNowText": "Most Nem", "notSignedInErrorText": "Be kell jelentkezned a művelethez.", "notSignedInGooglePlayErrorText": "Be kell jelentkezned Google Play-el a művelethez.", @@ -1104,6 +1139,9 @@ "onText": "Be", "oneMomentText": "Egy pillanat...", "onslaughtRespawnText": "${PLAYER} újraéled a következő körben (${WAVE})", + "openMeText": "Nyiss ki!", + "openNowText": "Azonnali kinyitás", + "openText": "Kinyitás", "orText": "${A} vagy ${B}", "otherText": "Egyéb...", "outOfText": "(#${RANK} a ${ALL}-ból/-ből)", @@ -1190,6 +1228,8 @@ "punchText": "Ütés", "purchaseForText": "Megvétel ennyiért:${PRICE}", "purchaseGameText": "Játék megvásárlása", + "purchaseNeverAvailableText": "Sajnos ezen a builden nem lehet vásárolni.\n Próbáljon meg bejelentkezni fiókjába egy másik platformon, és onnan vásárolni.", + "purchaseNotAvailableText": "Ez a vásárlás nem elérhető.", "purchasingText": "Vásárlás folyamatban...", "quitGameText": "Kilépsz a ${APP_NAME}-ból?", "quittingIn5SecondsText": "Kilépés 5 másodpercen belül...", @@ -1231,6 +1271,7 @@ "version_mismatch": "Verzió hiba.\nLégy biztos abban hogy a BombSqad Irányító\na legújabb verzióval rendelkezik, és próbáld újra." }, "removeInGameAdsText": "Old fel a \"${PRO}\"-t az áruházból hogy eltávolítsd a játékbeli reklámokat.", + "removeInGameAdsTokenPurchaseText": "Korlátozott idejű ajánlat: Vásárold meg bármelyik token csomagot, hogy eltávolítsd a reklámokat.", "renameText": "Átnevezés", "replayEndText": "Visszajátszás Befejezése", "replayNameDefaultText": "Utolsó Játék visszajátszás", @@ -1264,6 +1305,7 @@ }, "scoreWasText": "(${COUNT} volt)", "selectText": "Válassz", + "sendInfoDescriptionText": "Fiók- és alkalmazásállapot-információkat küld el a fejlesztőnek.\nKérjük, adja meg a nevét vagy a küldés okát.", "seriesWinLine1PlayerText": "NYERTE MEG A", "seriesWinLine1TeamText": "NYERTE MEG A", "seriesWinLine1Text": "NYERTE MEG A", @@ -1280,17 +1322,20 @@ }, "settingsWindowAdvanced": { "alwaysUseInternalKeyboardDescriptionText": "(kontroller barát billentyűzet a szöveg szerkesztéséhez)", - "alwaysUseInternalKeyboardText": "Használjon Belső Billentyűzetet", + "alwaysUseInternalKeyboardText": "Mindig Használjon Belső Billentyűzetet", "benchmarksText": "Teljesítmény és Stressz Teszt", - "disableCameraGyroscopeMotionText": "Kamera Gyroscope kikapcsolása", - "disableCameraShakeText": "Kamera rázást Kikapcsolni", + "devToolsText": "Fejlesztői Eszközök", + "disableCameraGyroscopeMotionText": "Kamera Giroszkóp mozgás kikapcsolása", + "disableCameraShakeText": "Kamera rázás kikapcsolása", "disableThisNotice": "(kikapcsolhatod ezt a beállítások menüben)", "enablePackageModsDescriptionText": "(engedélyez a plusz helyeket a modoknak, viszont letiltja a hálózati játékot)", "enablePackageModsText": "Helyi Modok Engedélyezése ", "enterPromoCodeText": "Kód beírása", "forTestingText": "Megj.:ezek az értékek csak tesztek és az alkalmazás bezárásával együtt törlődnek.", "helpTranslateText": "A ${APP_NAME} nem Angol fordításait a közösség végzi.\nHa szeretnél fordítani vagy hibát javítani akkor \nhasználd ezt a linket. Előre is köszönöm!", - "kickIdlePlayersText": "Tétlen Játékosok Kirúgása", + "insecureConnectionsDescriptionText": "nem ajánlott, de engedélyezheti az online játékot \nkorlátozott országokból vagy hálózatokból", + "insecureConnectionsText": "Nem biztonságos kapcsolatok használata", + "kickIdlePlayersText": "Rúgd a tétlen játékosokat", "kidFriendlyModeText": "Gyerekbarát Mód (erőszak csökkentése,stb.)", "languageText": "Nyelv", "moddingGuideText": "Modolási Útmutató", @@ -1298,10 +1343,12 @@ "mustRestartText": "Újra kell indítanod a játékot a módosítások érvénybe lépéséhez.", "netTestingText": "Hálózat Tesztelése", "resetText": "Visszaállítás", + "sendInfoText": "Kűldj Infót", "showBombTrajectoriesText": "Bomba Pályájának Mutatása", - "showDemosWhenIdleText": "Demók lejátszása tétlenség esetén", - "showDevConsoleButtonText": "A fejlesztői konzol gombjának megjelenítése", - "showInGamePingText": "Ping mutatása játékban", + "showDemosWhenIdleText": "Demók megjelenítése üresjáratban", + "showDeprecatedLoginTypesText": "Elavult bejelentkezési típúsok megjelenítése", + "showDevConsoleButtonText": "A fejlesztői konzol gomb megjelenítése", + "showInGamePingText": "A játékon belüli ping megjelenítése", "showPlayerNamesText": "Játékos Név Mutatása", "showUserModsText": "Mod Mappák Mutatása", "titleText": "Haladó", @@ -1309,8 +1356,8 @@ "translationFetchErrorText": "fordítási státusz elérhetetlen", "translationFetchingStatusText": "Fordítási státusz ellenőrzése...", "translationInformMe": "Értesítsen, ha a nyelvem fordítását frissíteni kell", - "translationNoUpdateNeededText": "A jelenlegi nyelv naprakész; woohoo!", - "translationUpdateNeededText": "**a jelenlegi nyelv frissítésre szorul!!**", + "translationNoUpdateNeededText": "Az aktuális nyelv naprakész; woohoo!", + "translationUpdateNeededText": "** A jelenlegi nyelv frissítésre szorul!! **", "vrTestingText": "VR Tesztelése" }, "shareText": "Megosztás", @@ -1327,8 +1374,8 @@ "soundtrackTypeNames": { "CharSelect": "Karakter Választás", "Chosen One": "A kiválasztott", - "Epic": "Hatalmas Módú Játékok", - "Epic Race": "Hatalmas Verseny", + "Epic": "Epikus Módú Játékok", + "Epic Race": "Epikus Verseny", "FlagCatcher": "Szerezd meg a Zászlót", "Flying": "Boldog Gondolatok", "Football": "Football", @@ -1409,6 +1456,7 @@ "testBuildValidatedText": "A Teszt Verzió Naprakész;Élvezd!", "thankYouText": "Köszi a támogatást. Jó játékot!", "threeKillText": "TRIPLA ÖLÉS!", + "ticketsDescriptionText": "A jegyekkel karaktereket,\npályákat,\nés minijátékokat tudsz feloldani. \n\nJegyekhez a ládákból tudsz jutni.", "timeBonusText": "Idő Bónusz", "timeElapsedText": "Eltelt Idő", "timeExpiredText": "Lejárt az idő", @@ -1419,10 +1467,23 @@ "tipText": "Tipp", "titleText": "BombSquad", "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "Szerezz Tokeneket", + "notEnoughTokensText": "Nincs elég tokened!", + "numTokensText": "${COUNT} Tokenek", + "shinyNewCurrencyText": "BombSquad fényes új fizetőeszköze.", + "tokenPack1Text": "Kicsi Token Csomag", + "tokenPack2Text": "Közepes Token Csomag", + "tokenPack3Text": "Nagy Token Csomag", + "tokenPack4Text": "Óriás Token Csomag", + "tokensDescriptionText": "A tokenekkel a ládák \nkinyitási idejét rövidítheted le,\nés még néhány más dolgot\ntudsz velük csinálni.\n\nTokeneket nyerni, vagy vásárolni is tudsz.", + "youHaveGoldPassText": "Megvan az Arany Pass.\nMinden token vásárlás ingyenes.\nÉlvezd!" + }, "topFriendsText": "Top Barátok", "tournamentCheckingStateText": "Torna állapotának ellenőrzése;Kérlek várj...", "tournamentEndedText": "Ez a torna befejeződött.Az új torna hamarosan kezdődik.", "tournamentEntryText": "Belépés a Tornába", + "tournamentFinalStandingsText": "Végleges állás", "tournamentResultsRecentText": "Legutóbbi Tornában elért helyezésed", "tournamentStandingsText": "Torna Állása", "tournamentText": "Bajnokság", @@ -1478,6 +1539,18 @@ "Uber Onslaught": "Über Támadás", "Uber Runaround": "Über Szaladgálás" }, + "displayItemNames": { + "${C} Tickets": "${C} jegy", + "${C} Tokens": "${C} token", + "Chest": "Láda", + "L1 Chest": "1-es szintű láda", + "L2 Chest": "2-es szintű láda", + "L3 Chest": "3-as szintű láda", + "L4 Chest": "4-es szintű láda", + "L5 Chest": "5-ös szintű láda", + "L6 Chest": "6-os szintű láda", + "Unknown Chest": "Ismeretlen láda" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Légy a kiválasztott egy ideig hogy nyerj.\nÖld meg a kiválasztottat, hogy te légy az.", "Bomb as many targets as you can.": "Bombázz annyi célpontot, amennyit csak tudsz.", @@ -1486,7 +1559,7 @@ "Crush ${ARG1} of your enemies.": "Zúzz szét ${ARG1}-t az ellenségeidből.", "Defeat all enemies.": "Győzz le minden ellenséget.", "Dodge the falling bombs.": "Térj ki minden hulló bomba elől.", - "Final glorious epic slow motion battle to the death.": "A végső dicső hatalmas lassú mozgásos csata a halálig.", + "Final glorious epic slow motion battle to the death.": "A végső dicső epikus csata a halálig.", "Gather eggs!": "Gyűjts tojásokat!", "Get the flag to the enemy end zone.": "Juttasd el a zászlót az ellenséges zóna végére.", "How fast can you defeat the ninjas?": "Milyen gyorsan győzöd le a ninja-kat?", @@ -1582,6 +1655,7 @@ "Korean": "Koreai", "Malay": "Maláj", "Persian": "Perzsa", + "PirateSpeak": "Kalóznyelv", "Polish": "Lengyel", "Portuguese": "Portugál", "Romanian": "Román", @@ -1623,7 +1697,7 @@ "Zigzag": "Zigzag" }, "playlistNames": { - "Just Epic": "Csak Hatalmas", + "Just Epic": "Csak Epikus", "Just Sports": "Csak Sportok" }, "scoreNames": { @@ -1653,6 +1727,7 @@ "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Csalás észlelve; a pontok és nyeremények felfüggesztve ${COUNT} napig.", "Could not establish a secure connection.": "Nem lehet megbízható kapcsolatot létesíteni.", "Daily maximum reached.": "Napi maximum elérve.", + "Daily sign-in reward": "Napi belépésért járó jutalom", "Entering tournament...": "Belépés a tornába...", "Invalid code.": "Hibás kód.", "Invalid payment; purchase canceled.": "Érvénytelen fizetési mód; fizetés visszavonva.", @@ -1662,11 +1737,14 @@ "Item unlocked!": "Elem feloldva!", "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "KAPCSOLAT FENNTARTVA. ${ACCOUNT} tartalmaz\njelentős adatok, amelyek MINDEN elvesznének.\nÖsszekapcsolhatja az ellenkező sorrendben, ha szeretné\n(és ehelyett elveszíti a fiók adatait)", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "Összekötöd a/az ${ACCOUNT} fiókot ehhez a fiókhoz?\nMinden létező adat a/az ${ACCOUNT} fiókon elveszik.\nEzt nem tudod majd visszavonni. Biztos vagy benne?", + "Longer streaks lead to better rewards.": "Naponta egyre jobb jutalmakat kapsz.", "Max number of playlists reached.": "Maximum listaszám elérve.", "Max number of profiles reached.": "Maximum profilszám elérve.", "Maximum friend code rewards reached.": "Maximum barát kód elérve.", "Message is too long.": "Az üzenet túl hosszú.", + "New tournament result!": "Új verseny eredmény!", "No servers are available. Please try again soon.": "A szerverek nem elérhetőek. Kérlek próbáld újra később.", + "No slots available. Free a slot and try again.": "Nincs több rekesz. Szabadíts fel egyet, és próbáld újra", "Profile \"${NAME}\" upgraded successfully.": "A \"${NAME}\" profil teljes körűvé fejlesztve.", "Profile could not be upgraded.": "A profilt nem lehet frissíteni.", "Purchase successful!": "Vásárlás sikeres!", @@ -1676,7 +1754,9 @@ "Sorry, this code has already been used.": "Ezt a kódot már használták.", "Sorry, this code has expired.": "Ez a kód már lejárt.", "Sorry, this code only works for new accounts.": "Ezt a kódot csak új játékosok használhatják.", + "Sorry, this has expired.": "Bocsi, ez már lejárt.", "Still searching for nearby servers; please try again soon.": "Keresés közeli szerverek iránt...", + "Streak: ${NUM} days": "${NUM} napos széria", "Temporarily unavailable; please try again later.": "Jelenleg elérhetetlen; kérlek próbáld újra később.", "The tournament ended before you finished.": "A torna lezárult mielőtt te befejezted volna.", "This account cannot be unlinked for ${NUM} days.": "Ezt a fiókot nem tudod leválasztani ${NUM} napig.", @@ -1687,19 +1767,27 @@ "Tournaments require ${VERSION} or newer": "A versenyhez ${VERSION} verzió vagy újabb szükséges.", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "Leválasztod ${ACCOUNT} erről a fiókról?\nAz összes adat innen: ${ACCOUNT} törölve lesz. \n(Kivéve a mérföldkövek egyes esetekben)", "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "FIGYELMEZTETÉS: fiókod ellen panaszok érkeztek csalásért.\nA csaláson kapott fiókok tiltva lesznek. Kérlek játsz tisztességesen.", + "Wait reduced!": "Várakozási idő csökkentve!", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "Szeretnéd hogy a készülék felhasználója ez legyen?\n\nA készülék mostani felhasználója: ${ACCOUNT1}\nEz a felhasználó: ${ACCOUNT2}\n\nEz megtartja a mostani teljesítményed.\nVigyázat: ez nem visszavonható!", "You already own this!": "Már birtoklod ezt!", "You can join in ${COUNT} seconds.": "Beléphetsz ${COUNT} másodperc múlva.", "You don't have enough tickets for this!": "Nincs elég jegyed a vásárláshoz!", "You don't own that.": "Te nem rendelkezel ezzel.", "You got ${COUNT} tickets!": "Kaptál ${COUNT} jegyet!", + "You got ${COUNT} tokens!": "${COUNT} tokened van.", "You got a ${ITEM}!": "Kaptál egy ${ITEM}-t!", + "You got a chest!": "Kaptál egy ládát!", + "You got an achievement reward!": "Jutalmat kaptál a teljesítményedért!", "You have been promoted to a new league; congratulations!": "Feljutottál egy új ligába; Gratulálunk!", + "You lost a chest! (All your chest slots were full)": "Elvesztettél egy ládát! (minden ládatartó rekeszed tele van)", + "You must update the app to view this.": "Frissítsd az alkalmazást, hogy ezt megnézhesd.", "You must update to a newer version of the app to do this.": "Frissítened kell a játékot az újabb verzióra, hogy megtehesd ezt.", "You must update to the newest version of the game to do this.": "Frissítened kell a játék legújabb verziójára hogy ezt meg tudd tenni.", "You must wait a few seconds before entering a new code.": "Várnod kell pár másodpercet egy új kód beírásához.", + "You placed #${RANK} in a tournament!": "#${RANK}-dik/ik lettél a versenyen!", "You ranked #${RANK} in the last tournament. Thanks for playing!": "Az előző tornában elért helyezésed:#${RANK}.Köszönjük a játékot!", "Your account was rejected. Are you signed in?": "Fiókod elutasítva. Be vagy jelentkezve?", + "Your ad views are not registering. Ad options will be limited for a while.": "A hirdetésmegtekintések nem regisztrálódnak. A hirdetési lehetőségek egy ideig korlátozottak lesznek.", "Your copy of the game has been modified.\nPlease revert any changes and try again.": "A játékod módosítva lett.\nÁllíts vissza minden módosítást és próbáld újra.", "Your friend code was used by ${ACCOUNT}": "A promóciós kódod használva volt ${ACCOUNT} által" }, @@ -1722,7 +1810,7 @@ "Enable Impact Bombs": "Ragadós Bomba engedélyezve", "Enable Triple Bombs": "Háromszoros Bomba engedélyezve", "Entire Team Must Finish": "Az Egész csapatnak be kell érnie", - "Epic Mode": "Hatalmas Mód", + "Epic Mode": "Epikus Mód", "Flag Idle Return Time": "Zászló Tétlen Visszatérés Idő", "Flag Touch Return Time": "Zászló Érintés Visszatérési Idő", "Hold Time": "Kitartási Idő", @@ -1815,18 +1903,18 @@ "phrase04Text": "Sok tárgy a ${APP_NAME}-ban FIZIKÁRA alapszik.", "phrase05Text": "Például, ha ütsz...", "phrase06Text": "..a sérülés az őkleid gyorsaságán múlik.", - "phrase07Text": "Látod? Nem mozdultunk, szóval ez alig sebezte meg ${NAME}-t.", + "phrase07Text": "Látod? Nem mozdultunk, szóval ez alig sebezte meg ${NAME}et.", "phrase08Text": "Most ugorjunk és pörögjünk hogy sebességre tegyünk szert.", "phrase09Text": "Áh, így jobb.", "phrase10Text": "A futás is segít.", - "phrase11Text": "Tartsd lenyomva AKÀRMELYIK gombot a futáshoz.", + "phrase11Text": "Tartsd lenyomva AKÁRMELYIK gombot a futáshoz.", "phrase12Text": "Extra-király ütésért, próbálj futni és pörögni.", "phrase13Text": "Hopsz; bocs ezért ${NAME}", - "phrase14Text": "Feltudsz venni és eldobni dolgokat, csak úgy mint a zászlót... vagy ${NAME}-t.", - "phrase15Text": "Végül, van bomba.", + "phrase14Text": "Fel tudsz venni és eldobni dolgokat, csak úgy mint a zászlót... vagy ${NAME}ot.", + "phrase15Text": "Végül, van a bomba.", "phrase16Text": "A bomba dobás gyakorlatot vesz igénybe.", - "phrase17Text": "Áú! Nem nagyon jódobás!", - "phrase18Text": "Mozgás segít távolabbra dobni.", + "phrase17Text": "Áú! Nem valami jó dobás!", + "phrase18Text": "A mozgás segít távolabbra dobni.", "phrase19Text": "Az ugrás segít magasabbra dobni.", "phrase20Text": "\"Ostorozz\" a bombáddal, hogy még messzebbre is dobd.", "phrase21Text": "Beidőzíteni a bombádat, trükkös lehet.", @@ -1834,7 +1922,7 @@ "phrase23Text": "Próbáld meg \"kisütni\" a kanócot egy vagy két másodpercre.", "phrase24Text": "Hurrá! Jól megsült.", "phrase25Text": "Jólvan, ez csak erről szól.", - "phrase26Text": "Kapd el őket, tigris!", + "phrase26Text": "Kapd el őket, te vadállat!", "phrase27Text": "Emlékezz az edzésedre, és élve jössz vissza!", "phrase28Text": "...jah, talán...", "phrase29Text": "Sok szerencsét!", @@ -1866,9 +1954,10 @@ "userSystemScriptsCreateText": "Felhasználói rendszer-scriptek létrehozása", "userSystemScriptsDeleteText": "Felhasználói rendszer-scriptek törlése", "usesExternalControllerText": "Ez a játék egy külső vezérlőt használ bemenet gyanánt.", - "usingItunesText": "Itunes használása a zenéhez...", + "usingItunesText": "Itunes használata a zenéhez...", "usingItunesTurnRepeatAndShuffleOnText": "Kérlek bizonyosodj meg arról, hogy a keverés BE van kapcsolva és az ismétlés MINDEN-re van állítva az iTunes-on.", "v2AccountLinkingInfoText": "Hogy V2-es fiókot kapcsolj, menj a 'fiók kezelése' gombra.", + "v2AccountRequiredText": "Ehhez V2 fiókra van szükség. Fejleszd a fiókodat és próbáld meg újra.", "validatingTestBuildText": "Teszt Szerkezet Érvényesítése...", "viaText": "via", "victoryText": "Győzelem!", @@ -1935,5 +2024,6 @@ }, "yesAllowText": "Igen, Engedélyez!", "yourBestScoresText": "A legjobb pontjaid", - "yourBestTimesText": "A legjobb időid" + "yourBestTimesText": "A legjobb időid", + "yourPrizeText": "A jutalmad:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/indonesian.json b/dist/ba_data/data/languages/indonesian.json index 08891d4..85220b4 100644 --- a/dist/ba_data/data/languages/indonesian.json +++ b/dist/ba_data/data/languages/indonesian.json @@ -1,13 +1,15 @@ { "accountSettingsWindow": { - "accountNameRules": "Emoji atau karakter spesial lainnya tidak dapat digunakan untuk nama akun", + "accountNameRules": "Nama akun tidak boleh berisi emoji atau karakter khusus lainnya", "accountProfileText": "(profil akun)", "accountsText": "Akun", - "achievementProgressText": "Penghargaan: ${COUNT} dari ${TOTAL}", + "achievementProgressText": "Pencapaian: ${COUNT} dari ${TOTAL}", "campaignProgressText": "Kemajuan Ekspedisi [Sulit]: ${PROGRESS}", "changeOncePerSeason": "Kamu hanya dapat mengganti ini sekali per musim.", "changeOncePerSeasonError": "Kamu harus menunggu sampai musim berikutnya untuk menggantinya lagi (${NUM} hari)", + "createAnAccountText": "Buat akun", "customName": "Nama Khusus", + "deleteAccountText": "Hapus Akun", "googlePlayGamesAccountSwitchText": "Jika kamu ingin menggunakan akun Google yang lain,\ngunakan aplikasi Google Play Games untuk mengganti.", "linkAccountsEnterCodeText": "Masukkan kode", "linkAccountsGenerateCodeText": "Buat Kode", @@ -18,13 +20,14 @@ "linkedAccountsText": "Akun yang Tertaut:", "manageAccountText": "Manajemen Akun", "nameChangeConfirm": "Ganti namamu menjadi ${NAME}?", - "resetProgressConfirmNoAchievementsText": "Tindakan ini akan mengatur ulang kemajuan co-op dan\nskor tertinggi Kamu (kecuali tiket).\nTidak dapat dibatalkan. Apakah Kamu yakin?", - "resetProgressConfirmText": "Ini akan mengatur ulang kemajuan co-op,\npencapaian, dan skor tertinggi Kamu\n(kecuali tiket). Ini tidak dapat\ndibatalkan. Kamu yakin?", - "resetProgressText": "Atur Ulang kemajuan", + "resetProgressConfirmNoAchievementsText": "Tindakan ini akan mengatur ulang kemajuan co-op dan\nskor tertinggi kamu (kecuali tiketmu).\nIni tidak dapat dibatalkan. Apakah kamu yakin?", + "resetProgressConfirmText": "Ini akan mengatur ulang kemajuan co-op,\npencapaian, dan skor tertinggi kamu\n(kecuali tiketmu). Ini tidak dapat\ndibatalkan. Apakah kamu yakin?", + "resetProgressText": "Atur Ulang Kemajuan", "setAccountName": "Pasang Nama Akun", - "setAccountNameDesc": "Pilih nama yang ditampilkan untuk akun Kamu.\nGunakan nama dari akun yang tersambung atau\nbuatlah nama khusus baru.", - "signInInfoText": "Masuk untuk mendapatkan tiket, bermain daring,\ndan membagikan kemajuan permaian antar perangkat.", + "setAccountNameDesc": "Pilih nama yang ditampilkan untuk akun kamu.\nGunakan nama dari akun yang tersambung atau\nbuatlah nama khusus baru.", + "signInInfoText": "Masuk untuk mengumpulkan tiket, berkompetisi online,\ndan berbagi kemajuan di seluruh perangkat.", "signInText": "Masuk", + "signInWithAnEmailAddressText": "Masuk dengan alamat email", "signInWithDeviceInfoText": "(akun otomatis hanya tersedia untuk perangkat ini)", "signInWithDeviceText": "Masuk menggunakan akun perangkat", "signInWithGameCircleText": "Masuk dengan LingkarPermainan", @@ -32,15 +35,15 @@ "signInWithTestAccountInfoText": "(akun tipe lama; gunakan akun device untuk kedepannya)", "signInWithTestAccountText": "Masuk menggunakan akun percobaan", "signInWithText": "Masuk dengan ${SERVICE}", - "signInWithV2InfoText": "(Akun yang berfungsi di semua akun)", - "signInWithV2Text": "Daftar dengan akun bombsquad", + "signInWithV2InfoText": "(akun yang berfungsi di semua akun)", + "signInWithV2Text": "Daftar dengan akun ${APP_NAME}", "signOutText": "Keluar", "signingInText": "Sedang masuk...", "signingOutText": "Sedang keluar...", "ticketsText": "Tiket:${COUNT}", "titleText": "Akun", "unlinkAccountsInstructionsText": "Pilih akun yang akan diputuskan.", - "unlinkAccountsText": "Memutus Akun.", + "unlinkAccountsText": "Putuskan Akun", "unlinkLegacyV1AccountsText": "Putuskan tautan Akun lama (V1)", "v2LinkInstructionsText": "Gunakan tautan ini untuk membuat akun atau masuk.", "viaAccount": "(melalui akun ${NAME})", @@ -64,13 +67,13 @@ "name": "Petinju" }, "Dual Wielding": { - "descriptionFull": "hubungkan 2 pengontrol (perangkat keras atau aplikasi)", - "descriptionFullComplete": "2 pengontrol terhubung (perangkat keras atau aplikasi)", + "descriptionFull": "Hubungkan 2 pengontrol (perangkat keras atau aplikasi)", + "descriptionFullComplete": "2 Pengontrol terhubung (perangkat keras atau aplikasi)", "name": "Dua Tangan" }, "Flawless Victory": { "description": "Menangkan pertandingan tanpa terkena serangan", - "descriptionComplete": "Menang Tanpa terkena Serangan", + "descriptionComplete": "Menang tanpa terkena serangan", "descriptionFull": "Menangkan ${LEVEL} tanpa terkena serangan", "descriptionFullComplete": "Memenangkan ${LEVEL} tanpa terkena serangan", "name": "Kemenangan Mutlak" @@ -92,11 +95,11 @@ "descriptionComplete": "Memenangkan pertandingan tanpa memukul dan bom", "descriptionFull": "Menangkan ${LEVEL} tanpa memukul dan tanpa menggunakan bom", "descriptionFullComplete": "Memenangkan ${LEVEL} tanpa memukul dan tanpa bom", - "name": "Got the Moves" + "name": "Mendapatkan Pergerakan" }, "In Control": { "descriptionFull": "hubungkan pengontrol (perangkat keras atau aplikasi)", - "descriptionFullComplete": "pengontrol terhubung (perangkat keras atau aplikasi)", + "descriptionFullComplete": "Pengontrol terhubung (perangkat keras atau aplikasi)", "name": "Terkendali" }, "Last Stand God": { @@ -163,17 +166,17 @@ "name": "Penyihir ${LEVEL}" }, "Precision Bombing": { - "description": "Menang tanpa mengambil kekuatan tambahan", - "descriptionComplete": "Memenangkan permainan tanpa mengambil kekuatan tambahan", - "descriptionFull": "Menangkan ${LEVEL} tanpa mengambil power-up", - "descriptionFullComplete": "Memenangkan ${LEVEL} tanpa mengambil power-up", + "description": "Menang tanpa kotak bonus", + "descriptionComplete": "Menangkan permainan tanpa mengambil kotak bonus", + "descriptionFull": "Menang ${LEVEL} tanpa mengambil kotak bonus", + "descriptionFullComplete": "Menangkan ${LEVEL} tanpa mengambil kotak bonus", "name": "Pengebom Jitu" }, "Pro Boxer": { "description": "Menang tanpa menggunakan bom", - "descriptionComplete": "Menang tanpa menggunakan bom", - "descriptionFull": "Menangkan ${LEVEL} tanpa menggunakan bom", - "descriptionFullComplete": "Memenangkan ${LEVEL} tanpa menggunakan bom", + "descriptionComplete": "Menangkan permainan tanpa menggunakan bom", + "descriptionFull": "Selesaikan ${LEVEL} tanpa menggunakan bom", + "descriptionFullComplete": "Selesaikan ${LEVEL} tanpa menggunakan bom", "name": "Petinju Handal" }, "Pro Football Shutout": { @@ -230,7 +233,7 @@ "descriptionComplete": "Mencetak skor 2000 poin", "descriptionFull": "Cetak skor 2000 poin pada ${LEVEL}", "descriptionFullComplete": "Mencetak skor 2000 poin pada ${LEVEL}", - "name": "Rajanya ${LEVEL}" + "name": "Dewanya ${LEVEL}" }, "Runaround Master": { "description": "Cetak skor 500 poin", @@ -249,27 +252,27 @@ "Sharing is Caring": { "descriptionFull": "Berhasil berbagi permainan dengan teman", "descriptionFullComplete": "Berhasil berbagi permainan dengan teman", - "name": "Berbagi adalah Peduli" + "name": "Berbagi berarti Peduli" }, "Stayin' Alive": { - "description": "Menangkan permainan tanpa mati", - "descriptionComplete": "Memenangkan permainan tanpa mati", - "descriptionFull": "Menangkan ${LEVEL} tanpa mati", - "descriptionFullComplete": "Memenangkan ${LEVEL} tanpa mati", + "description": "Menang tanpa mati", + "descriptionComplete": "Menangkan permainan tanpa mati", + "descriptionFull": "Menang ${LEVEL} tanpa mati", + "descriptionFullComplete": "Menangkan ${LEVEL} tanpa mati", "name": "Bertahan Hidup" }, "Super Mega Punch": { - "description": "Buat 100% damage dengan satu pukulan", - "descriptionComplete": "Membuat 100% damage dengan satu pukulan", - "descriptionFull": "Buat 100% damage dengan satu pukulan pada ${LEVEL}", - "descriptionFullComplete": "Membuat 100% damage dengan satu pukulan pada ${LEVEL}", + "description": "Buat 100% kerusakan dengan satu pukulan", + "descriptionComplete": "Membuat 100% kerusakan dengan satu pukulan", + "descriptionFull": "Buat 100% kerusakan dengan satu pukulan pada ${LEVEL}", + "descriptionFullComplete": "Membuat 100% kerusakan dengan satu pukulan pada ${LEVEL}", "name": "Tinjuan Mega Super" }, "Super Punch": { - "description": "Buat 50% damage dengan satu pukulan", - "descriptionComplete": "Membuat 50% damage dengan satu pukulan", - "descriptionFull": "Buat 50% damage dengan satu pukulan pada ${LEVEL}", - "descriptionFullComplete": "Membuat 50% damage dengan satu pukulan pada ${LEVEL}", + "description": "Buat 50% kerusakan dengan satu pukulan", + "descriptionComplete": "Membuat 50% kerusakan dengan satu pukulan", + "descriptionFull": "Buat 50% kerusakan dengan satu pukulan pada ${LEVEL}", + "descriptionFullComplete": "Membuat 50% kerusakan dengan satu pukulan pada ${LEVEL}", "name": "Tinjuan Super" }, "TNT Terror": { @@ -282,7 +285,7 @@ "Team Player": { "descriptionFull": "Mulai permainan tim dengan 4+ pemain", "descriptionFullComplete": "Memulai permainan tim dengan 4+ pemain", - "name": "Pemain tim" + "name": "Pemain Tim" }, "The Great Wall": { "description": "Hentikan semua musuh", @@ -300,9 +303,9 @@ }, "Uber Football Shutout": { "description": "Menang tanpa memperbolehkan musuh mencetak skor", - "descriptionComplete": "Menang tanpa memperbolehkan musuh mencetak skor", - "descriptionFull": "Menangkan ${LEVEL} tanpa memperbolehkan musuh mencetak skor", - "descriptionFullComplete": "Memenangkan ${LEVEL} tanpa memperbolehkan musuh mencetak skor", + "descriptionComplete": "Menangkan tanpa memperbolehkan musuh mencetak skor", + "descriptionFull": "Menang ${LEVEL} tanpa memperbolehkan musuh mencetak skor", + "descriptionFullComplete": "Menangkan ${LEVEL} tanpa memperbolehkan musuh mencetak skor", "name": "${LEVEL} Beres" }, "Uber Football Victory": { @@ -327,27 +330,29 @@ "name": "Juara ${LEVEL}" } }, - "achievementsRemainingText": "Achievement Tersisa:", - "achievementsText": "Achievement", - "achievementsUnavailableForOldSeasonsText": "Maaf, spesifik achievement tidak tersedia untuk musim lama.", - "activatedText": "${THING} telah aktif", + "achievementsRemainingText": "Pencapaian Tersisa:", + "achievementsText": "Pencapaian", + "achievementsUnavailableForOldSeasonsText": "Maaf, pencapaian spesifik tidak tersedia untuk musim lama.", + "activatedText": "${THING} telah aktif.", "addGameWindow": { - "getMoreGamesText": "Game Lain...", - "titleText": "Tambah Game" + "getMoreGamesText": "Dapatkan Permainan Lain...", + "titleText": "Tambah Permainan" }, "addToFavoritesText": "Tambahkan ke Favorit", - "addedToFavoritesText": "Tambah '${NAME}' ke dalam Favorit", + "addedToFavoritesText": "Tambah '${NAME}' ke dalam Favorit.", "allText": "Semua", "allowText": "Izinkan", "alreadySignedInText": "Akunmu telah masuk di perangkat lain;\nSilakan beralih akun atau menutup permainanmu \ndi perangkat lain dan coba lagi.", "apiVersionErrorText": "Modul ${NAME} gagal dimuat; Menarget api-version ${VERSION_USED}; kami membutuhkan ${VERSION_REQUIRED}.", + "applyText": "Terapkan", + "areYouSureText": "Apakah kamu yakin?", "audioSettingsWindow": { - "headRelativeVRAudioInfoText": "(\"Auto\" nyalakan ini hanya jika menggunakan headphone)", + "headRelativeVRAudioInfoText": "(\"Otomatis\" nyalakan ini hanya jika menggunakan headphone)", "headRelativeVRAudioText": "VR Audio Head-Relative", "musicVolumeText": "Volume Musik", "soundVolumeText": "Volume Suara", "soundtrackButtonText": "Pengiring lagu", - "soundtrackDescriptionText": "(masukkan musik Kamu untuk diputar saat permainan)", + "soundtrackDescriptionText": "(masukkan musik kamu untuk diputar saat permainan)", "titleText": "Audio" }, "autoText": "Otomatis", @@ -355,29 +360,39 @@ "banThisPlayerText": "Melarang Pemain Ini", "bestOfFinalText": "Terbaik dari ${COUNT} Final", "bestOfSeriesText": "Terbaik dari ${COUNT}:", + "bestOfUseFirstToInstead": 0, "bestRankText": "Urutan terbaikmu #${RANK}", - "bestRatingText": "Rating terbaikmu ${RATING}", + "bestRatingText": "Nilai terbaikmu ${RATING}", "bombBoldText": "BOM", "bombText": "Bom", "boostText": "Dorongan", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} dikonfigurasi di aplikasinya sendiri.", "buttonText": "tombol", - "canWeDebugText": "Bolehkah BombSquad mengirim informasi kerusakan\ndan info penggunaan ke pengembang secara otomatis? \n\nData pribadi tidak akan dikirim dan\nmembantu game berjalan lebih baik.", + "canWeDebugText": "Bolehkah ${APP_NAME} untuk\nsecara otomatis melaporkan\nbug, kerusakan, dan\ninfo penggunaan dasar\nkepada pengembang?", "cancelText": "Batal", "cantConfigureDeviceText": "Maaf, ${DEVICE} tidak dapat dikonfigurasi.", - "challengeEndedText": "Tantangan selesai", - "chatMuteText": "Abaikan Percakapan", - "chatMutedText": "Percakapan Diabaikan", - "chatUnMuteText": "Menampilkan kembali percakapan", + "challengeEndedText": "Tantangan selesai.", + "chatMuteText": "Bisukan Percakapan", + "chatMutedText": "Percakapan Dibisukan", + "chatUnMuteText": "Tampilkan kembali percakapan", + "chests": { + "prizeOddsText": "Peluang Hadiah", + "reduceWaitText": "Kurangi Menunggu", + "slotDescriptionText": "Slot ini dapat menahan peti.\n\nDapatkan peti dengan memainkan level kampanye,\njuara di turnamen, dan menyelesaikan\npencapaian.", + "slotText": "Slot Peti ${NUM}", + "slotsFullWarningText": "PERINGATAN: Semua slot petimu penuh.\nPeti apa pun yang kamu peroleh dalam permainan ini akan hilang.", + "unlocksInText": "Terbuka dalam" + }, "choosingPlayerText": "", + "claimText": "Klaim", "codesExplainText": "Kode telah disediakan oleh pengembang\nuntuk didiagnosa dan memperbaiki isu akun.", - "completeThisLevelToProceedText": "Kamu harus menyelesaikan\nlevel ini untuk dapat lanjut!", - "completionBonusText": "Bonus Kelengkapan", + "completeThisLevelToProceedText": "Kamu harus menyelesaikan\nlevel ini untuk melanjutkan!", + "completionBonusText": "Bonus Penyelesaian", "configControllersWindow": { "configureControllersText": "Atur Pengontrol", "configureKeyboard2Text": "Atur Keyboard Player 2", "configureKeyboardText": "Atur Keyboard", - "configureMobileText": "Perangkat ponsel sebagai pengontrol", + "configureMobileText": "Perangkat Ponsel sebagai Pengontrol", "configureTouchText": "Atur Kontrol Layar", "ps3Text": "Pengontrol PS3", "titleText": "Pengontrol", @@ -385,79 +400,79 @@ "xbox360Text": "Pengontrol Xbox 360" }, "configGamepadSelectWindow": { - "androidNoteText": "Catatan: pengontrol dapat digunakan berdasarkan versi Android Kamu.", - "pressAnyButtonText": "Tekan tombol kontroller yang\n ingin Kamu atur,,,", + "androidNoteText": "Catatan: pengontrol yang didukung bervariasi berdasarkan perangkat dan versi Android.", + "pressAnyButtonText": "Tekan tombol apapun di pengontrol\n yang ingin kamu atur...", "titleText": "Konfigurasi Pengontrol" }, "configGamepadWindow": { "advancedText": "Lanjutan", "advancedTitleText": "Pengaturan Pengontrol Lanjutan", - "analogStickDeadZoneDescriptionText": "(nyalakan ini jika karaktermu ngedrift saat kamu melepaskan analog stik)", - "analogStickDeadZoneText": "Analog Stick Zona Mati", - "appliesToAllText": "(Berlakukan ke semua kontrol tipe ini)", + "analogStickDeadZoneDescriptionText": "(nyalakan ini jika karaktermu ngedrift saat kamu melepaskan stik analog)", + "analogStickDeadZoneText": "Stik Analog Zona Mati", + "appliesToAllText": "(terapkan ke semua pengontrol tipe ini)", "autoRecalibrateDescriptionText": "(nyalakan ini jika karaktermu tidak bergerak dengan kecepatan penuh)", - "autoRecalibrateText": "Otomatis kalibrasi kembali stik analog", + "autoRecalibrateText": "Otomatis Kalibrasi Stik Analog", "axisText": "axis", "clearText": "hapus", "dpadText": "dpad", - "extraStartButtonText": "Tambahan tombol start", - "ifNothingHappensTryAnalogText": "Jika tidak terjadi apa-apa,coba berlakukan stik analog langsung", - "ifNothingHappensTryDpadText": "Jika tidak terjadi apa-apa,coba berlakukan ke d-pad langsung", - "ignoreCompletelyDescriptionText": "Cegah pengontrol ini untuk mempengaruhi game atau menu", + "extraStartButtonText": "Tambahan Tombol Start", + "ifNothingHappensTryAnalogText": "Jika tidak terjadi apa-apa, coba tetapkan ke stik analog.", + "ifNothingHappensTryDpadText": "Jika tidak terjadi apa-apa, coba tetapkan ke d-pad.", + "ignoreCompletelyDescriptionText": "(cegah pengontrol ini untuk mempengaruhi game atau menu)", "ignoreCompletelyText": "Abaikan Sepenuhnya", - "ignoredButton1Text": "Abaikan tombol 1", - "ignoredButton2Text": "Abaikan tombol 2", - "ignoredButton3Text": "Abaikan tombol 3", - "ignoredButton4Text": "Abaikan tombol 4", - "ignoredButtonDescriptionText": "(Gunakan ini untuk mencegah tombol 'home' atau 'sync' yang mempengaruhi UI)", - "pressAnyAnalogTriggerText": "Tekan Tombol analog....", - "pressAnyButtonOrDpadText": "Tekan Tombol dpad", + "ignoredButton1Text": "Abaikan Tombol 1", + "ignoredButton2Text": "Abaikan Tombol 2", + "ignoredButton3Text": "Abaikan Tombol 3", + "ignoredButton4Text": "Abaikan Tombol 4", + "ignoredButtonDescriptionText": "(gunakan ini untuk mencegah tombol 'home' atau 'sync' dari mempengaruhi UI)", + "pressAnyAnalogTriggerText": "Tekan tombol analog....", + "pressAnyButtonOrDpadText": "Tekan tombol dpad", "pressAnyButtonText": "Tekan tombol", - "pressLeftRightText": "Tekan Tombol kiri atau kanan", + "pressLeftRightText": "Tekan tombol kiri atau kanan", "pressUpDownText": "Tekan tombol atas atau bawah..", - "runButton1Text": "Jalankan tombol 1", - "runButton2Text": "Jalankan tombol 2", - "runTrigger1Text": "Jalankan pelatuk 1", - "runTrigger2Text": "Jalankan pelatuk 2", - "runTriggerDescriptionText": "(Analog memungkinkan kamu untuk lari pada berbagai kecepatan)", - "secondHalfText": "Gunakan ini untuk pengontrol kedua dari\n2-pengontrol-dalam-1 alat yang\nditunjukan sebagai pengontrol tunggal", + "runButton1Text": "Jalankan Tombol 1", + "runButton2Text": "Jalankan Tombol 2", + "runTrigger1Text": "Jalankan Pelatuk 1", + "runTrigger2Text": "Jalankan Pelatuk 2", + "runTriggerDescriptionText": "(analog memungkinkan kamu untuk lari pada berbagai kecepatan)", + "secondHalfText": "Gunakan ini untuk pengontrol kedua dari\n2-pengontrol-dalam-1 alat yang\nditunjukkan sebagai pengontrol tunggal.", "secondaryEnableText": "Aktifkan", - "secondaryText": "Pengontrol kedua", - "startButtonActivatesDefaultDescriptionText": "(Matikan jika tombol start Kamu lebih dari tombol 'menu')", - "startButtonActivatesDefaultText": "Tombol start mengaktifkan widget biasanya", + "secondaryText": "Pengontrol Sekunder", + "startButtonActivatesDefaultDescriptionText": "(matikan jika tombol start kamu lebih dari tombol 'menu')", + "startButtonActivatesDefaultText": "Tombol Start Mengaktifkan Widget Asal", "titleText": "Pengaturan Pengontrol", "twoInOneSetupText": "Pengaturan Pengontrol 2-dalam-1", - "uiOnlyDescriptionText": "(Cegah kontrol ini dari mengikuti permainan yang asli)", - "uiOnlyText": "Batas untuk menu guna", - "unassignedButtonsRunText": "Tidak berlakukan semua tombol lari", + "uiOnlyDescriptionText": "(cegah pengontrol ini dari bergabung sebuah permainan sebenarnya)", + "uiOnlyText": "Batas untuk Guna Menu", + "unassignedButtonsRunText": "Tidak Berlakukan Semua Tombol Lari", "unsetText": "", - "vrReorientButtonText": "Tombol reorientasi VR" + "vrReorientButtonText": "Tombol Reorientasi VR" }, "configKeyboardWindow": { - "configuringText": "Mengaturi ${DEVICE}", - "keyboard2NoteText": "Catatan: beberapa keyboard hanya dapat memasukan beberapa tombol yang ditekan pada satu waktu,\njadi memiliki keyboard pemain kedua mungkin bekerja lebih baik\njika ada pemisah keyboard yang terpasang untuk digunakan\nPerlu dicatat bahwa Kamu masih butuh memasukan tombol unik untuk\nkedua pemain di kasus ini" + "configuringText": "Mengatur ${DEVICE}", + "keyboard2NoteText": "Catatan: beberapa keyboard hanya dapat memasukan beberapa tombol yang ditekan pada satu waktu,\njadi memiliki keyboard pemain kedua mungkin bekerja lebih baik\njika ada pemisah keyboard yang terpasang untuk digunakan.\nPerlu dicatat bahwa kamu masih butuh memasukkan tombol unik untuk\nkedua pemain di kasus ini" }, "configTouchscreenWindow": { - "actionControlScaleText": "Ukuran kontrol aksi", + "actionControlScaleText": "Skala Kontrol Aksi", "actionsText": "Aksi", "buttonsText": "tombol", "dragControlsText": "< geser kontrol untuk memposisikannya >", - "joystickText": "joystick", - "movementControlScaleText": "Skala kontrol penggerak", + "joystickText": "joystik", + "movementControlScaleText": "Skala Kontrol Penggerak", "movementText": "Pergerakan", - "resetText": "Kembalikan ke awal", - "swipeControlsHiddenText": "Sembunyikan ikon geser", - "swipeInfoText": "Model kontrol 'geser' membutuhkan penggunaan sedikit \nnamun membuat mudah untuk bermain tanpa melihat pengontrol", + "resetText": "Ulangi", + "swipeControlsHiddenText": "Sembunyikan Ikon Geser", + "swipeInfoText": "Gaya kontrol 'geser' butuh sedikit terbiasa namun \nmembuat mudah untuk bermain tanpa melihat pengontrol.", "swipeText": "geser", - "titleText": "Atur layar sentuh" + "titleText": "Atur Layar Sentuh" }, "configureDeviceInSystemSettingsText": "${DEVICE} dapat dikonfigurasikan pada aplikasi Pengaturan Sistem.", "configureItNowText": "Atur sekarang?", "configureText": "Konfigurasi", "connectMobileDevicesWindow": { "amazonText": "Amazon Appstore", - "appStoreText": "App store", - "bestResultsText": "Untuk hasil yang lebih baik, Kamu membutuhkan jaringan Wi-Fi yang bebas lag.\nKamu dapat menurunkan lag Wi-Fi dengan cara mematikan alat wireless lainnya,\ndengan bermain dekat dengan router Wi-Fi dan dengan menyambungkan ke host\ngame langsung ke jaringan via ethernet", + "appStoreText": "App Store", + "bestResultsText": "Untuk hasil yang lebih baik, kamu membutuhkan jaringan Wi-Fi yang bebas lag.\nKamu dapat menurunkan lag Wi-Fi dengan cara mematikan perangkat nirkabel lainnya,\ndengan bermain dekat dengan router Wi-Fi dan dengan menyambungkan ke host\ngame langsung ke jaringan via ethernet.", "explanationText": "Untuk menggunakan smartphone atau tablet sebagai pengontrol,\npasang \"${REMOTE_APP_NAME}\" app. Alat apapun dapat tersambung ke\n${APP_NAME} game melalui Wi-Fi, dan ini gratis!", "forAndroidText": "Untuk Android:", "forIOSText": "Untuk iOS:", @@ -470,40 +485,40 @@ "controlsText": "Kontrol", "coopSelectWindow": { "activenessAllTimeInfoText": "Ini akan tidak berlaku ke ranking semua waktu.", - "activenessInfoText": "Kelipatan ini naik di hari ketika Kamu bermain\ndan turun di haru ketika Kamu tidak bermain", + "activenessInfoText": "Kelipatan ini naik di hari ketika kamu bermain\ndan turun di hari ketika kamu tidak bermain", "activityText": "Aktivitas", - "campaignText": "Ekspedisi", - "challengesInfoText": "Dapatkan hadiah dengan menyelesaikan mini games\n\nHadiah dan tingkat kesulitan level bertambah\nsaat tantangan terselesaikan \ndan berkurang jika waktu habis atau menyerah", + "campaignText": "Kampanye", + "challengesInfoText": "Dapatkan hadiah dengan menyelesaikan mini games.\n\nHadiah dan tingkat kesulitan level bertambah\nsetiap kali tantangan terselesaikan dan\nberkurang jika waktu habis atau menyerah.", "challengesText": "Tantangan", - "currentBestText": "Terbaik saat ini", + "currentBestText": "Terbaik Saat Ini", "customText": "Kustom", "entryFeeText": "Masuk", - "forfeitConfirmText": "Kehilangan tantangan ini??", - "forfeitNotAllowedYetText": "Tantangan ini belum dapat hiang", - "forfeitText": "Kehilangan", + "forfeitConfirmText": "Menyerah tantangan ini?", + "forfeitNotAllowedYetText": "Tantangan ini belum dapat menyerah.", + "forfeitText": "Menyerah", "multipliersText": "Kelipatan", - "nextChallengeText": "Tantangan berikutnya", - "nextPlayText": "Permainan berikutnya", - "ofTotalTimeText": "Dari ${TOTAL}", - "playNowText": "Main sekarang", + "nextChallengeText": "Tantangan Berikut", + "nextPlayText": "Permainan Berikut", + "ofTotalTimeText": "dari ${TOTAL}", + "playNowText": "Main Sekarang", "pointsText": "Poin", - "powerRankingFinishedSeasonUnrankedText": "(Sesi berakhir tidak terangking)", + "powerRankingFinishedSeasonUnrankedText": "(musim berakhir tak berperingkat)", "powerRankingNotInTopText": "(tidak di atas ${NUMBER})", "powerRankingPointsEqualsText": "= ${NUMBER} poin", "powerRankingPointsMultText": "(x ${NUMBER} poin)", "powerRankingPointsText": "${NUMBER} poin", "powerRankingPointsToRankedText": "(${CURRENT} dari ${REMAINING} poin)", - "powerRankingText": "Rangking power", + "powerRankingText": "Peringkat Kekuatan", "prizesText": "Hadiah", - "proMultInfoText": "Pemain dengan peningkatan ${PRO}\nmendapatkan sebuah ${PERCENT}% poin tambahan disini.", + "proMultInfoText": "Pemain dengan peningkatan ${PRO}\nmendapatkan sebuah ${PERCENT}% poin tambahan di sini.", "seeMoreText": "Lebih...", "skipWaitText": "Lewati Tunggu", - "timeRemainingText": "Waktu tersisa", - "toRankedText": "untuk Peringkat", + "timeRemainingText": "Waktu Tersisa", + "toRankedText": "Ke Peringkat", "totalText": "Total", - "tournamentInfoText": "Bersaing untuk skor tinggi dengan\npemain lain di liga Kamu.\n\nHadiah diberikan ke atas\npapan skor", - "welcome1Text": "Selamat datang di ${LEAGUE}.Kamu dapat tingkatkan \nranking liga dengan dapatkan peringkat berlian, selesaikan \npenghargaan dan menenangkan piala di turnamen", - "welcome2Text": "Kamu juga dapat mendapatkan tiket dari aktivitas yang sama.\nTiket dapat digunakan untuk membuka karakter baru, peta, dan\nmini games,untuk masuk liga, dan lainnya", + "tournamentInfoText": "Bersaing untuk skor tinggi dengan\npemain lain di liga kamu.\n\nHadiah diberikan pada pemain skor\ntertinggi ketika waktu turnamen berakhir.", + "welcome1Text": "Selamat datang di ${LEAGUE}. Kamu dapat meningkatkan \nperingkat liga dengan mendapatkan nilai berlian, selesaikan \npencapaian, dan menenangkan piala di turnamen.", + "welcome2Text": "Kamu juga bisa mendapatkan tiket dari aktivitas yang sama.\nTiket dapat digunakan untuk membuka karakter baru, peta, dan\nmini-games, untuk masuk turnamen, dan lainnya.", "yourPowerRankingText": "Peringkat Kekuatan Kamu:" }, "copyConfirmText": "Tersalin ke papan klip.", @@ -512,13 +527,13 @@ "createEditPlayerText": "", "createText": "Buat", "creditsWindow": { - "additionalAudioArtIdeasText": "Audio tambahan,Early Artwork, dan ide dari ${NAME}", - "additionalMusicFromText": "Musik Tambahan Dari ${NAME}", - "allMyFamilyText": "Semua teman saya dan keluarga saya yang menolong untuk memainkan test", - "codingGraphicsAudioText": "Koding, Grafik, Dan audio dari ${NAME}", - "languageTranslationsText": "Penerjemah bahasa:", + "additionalAudioArtIdeasText": "Audio Tambahan, Karya Seni Awal, dan Ide oleh ${NAME}", + "additionalMusicFromText": "Musik tambahan dari ${NAME}", + "allMyFamilyText": "Semua teman saya dan keluarga saya yang menolong untuk coba memainkan", + "codingGraphicsAudioText": "Koding, Grafik, Dan Audio oleh ${NAME}", + "languageTranslationsText": "Penerjemah Bahasa:", "legalText": "Legal:", - "publicDomainMusicViaText": "Musik publik dominan via ${NAME}", + "publicDomainMusicViaText": "Musik Domain Publik via ${NAME}", "softwareBasedOnText": "Software ini berasal dari bagian kerja dari ${NAME}", "songCreditText": "${TITLE} Dimainkan oleh ${PERFORMER}\nKomposisi oleh ${COMPOSER}, Aransemen oleh ${ARRANGER}, Publikasi oleh ${PUBLISHER},\nSumber dari ${SOURCE}", "soundAndMusicText": "Suara & Musik:", @@ -538,9 +553,9 @@ "runCPUBenchmarkText": "Menjalankan CPU Benchmark", "runGPUBenchmarkText": "Jalankan GPU Benchmark", "runMediaReloadBenchmarkText": "Menjalankan Media-Reload Benchmark", - "runStressTestText": "Menjalankan test stress", + "runStressTestText": "Menjalankan uji stres", "stressTestPlayerCountText": "Jumlah Pemain", - "stressTestPlaylistDescriptionText": "Daftar Putar Stres Tes", + "stressTestPlaylistDescriptionText": "Daftar Putar Uji Stres", "stressTestPlaylistNameText": "Nama Daftar Putar", "stressTestPlaylistTypeText": "Tipe Daftar Putar", "stressTestRoundDurationText": "Durasi Permainan", @@ -554,25 +569,27 @@ "demoText": "Demo", "denyText": "Tolak", "deprecatedText": "Usang", + "descriptionText": "Keterangan", "desktopResText": "Resolusi Desktop", "deviceAccountUpgradeText": "Peringatan:\nKamu masuk dengan akun perangkat (${NAME}).\nAkun perangkat akan dihilangkan pada pembaharuan yg akan datang.\nTingkatkan ke akun V2 jika kamu ingin pertahankan kemajuanmu.", "difficultyEasyText": "Mudah", "difficultyHardOnlyText": "Khusus Mode Sulit", "difficultyHardText": "Sulit", - "difficultyHardUnlockOnlyText": "Level ekspedisi ini khusus untuk mode sulit. \nKamu pikir kamu bisa!?!?!", - "directBrowserToURLText": "dimohon langsung ke web-browser untuk URL:", + "difficultyHardUnlockOnlyText": "Level ini hanya dapat dibuka di mode sulit. \nKamu pikir kamu bisa!?!?!", + "directBrowserToURLText": "Mohon langsung ke web-browser untuk URL:", "disableRemoteAppConnectionsText": "Matikan Koneksi App-Remot", - "disableXInputDescriptionText": "Izinkan lebih dari 4 pengontrol tapi mungkin agak lemot.", + "disableXInputDescriptionText": "Izinkan lebih dari 4 pengontrol tapi mungkin tidak bekerja dengan baik.", "disableXInputText": "Blokir XInput", "disabledText": "Dimatikan", - "discordFriendsText": "Ingin mencari teman baru untuk bermain?\nGabung ke Discord kami dan temukan teman baru kamu!", + "discardText": "Buang", + "discordFriendsText": "Ingin mencari teman baru untuk bermain?\nGabung ke Discord kami dan temukan teman baru!", "discordJoinText": "Gabung ke Discord", "doneText": "Selesai", "drawText": "Seri", "duplicateText": "Duplikat", "editGameListWindow": { "addGameText": "Tambah\nPermainan", - "cantOverwriteDefaultText": "Tidak dapat mengubah daftar putar asal!", + "cantOverwriteDefaultText": "Tidak dapat menimpa daftar putar asal!", "cantSaveAlreadyExistsText": "Daftar Putar dengan nama ini sudah ada!", "cantSaveEmptyListText": "Tidak dapat menyimpan daftar putar kosong!", "editGameText": "Ubah\nPermainan", @@ -583,42 +600,43 @@ "titleText": "Penyusun Daftar Putar" }, "editProfileWindow": { - "accountProfileInfoText": "Profil spesial ini mengikuti nama\ndan ikon sesuai akun Kamu.\n\n${ICONS}\n\nBuat profil lain untuk menggunakan\nnama dan ikon yang berbeda.", - "accountProfileText": "(Profil Akun)", + "accountProfileInfoText": "Profil spesial ini mengikuti nama\ndan ikon sesuai akun kamu.\n\n${ICONS}\n\nBuat profil lain untuk menggunakan\nnama dan ikon yang berbeda.", + "accountProfileText": "(profil akun)", "availableText": "Nama ini \"${NAME}\" tersedia.", - "characterText": "Karakter", - "checkingAvailabilityText": "Memeriksa Ketersediaan \"${NAME}\"...", + "characterText": "karakter", + "checkingAvailabilityText": "Memeriksa ketersediaan \"${NAME}\"...", "colorText": "warna", - "getMoreCharactersText": "Dapatkan karakter lain...", - "getMoreIconsText": "Dapatkan ikon lain...", + "getMoreCharactersText": "Dapatkan Karakter Lain...", + "getMoreIconsText": "Dapatkan Ikon Lain...", "globalProfileInfoText": "Profil pemain global dijamin untuk memiliki nama unik\ndi seluruh dunia. Termasuk juga ikon lain.", - "globalProfileText": "(Profil Global)", + "globalProfileText": "(profil global)", "highlightText": "highlight", "iconText": "ikon", "localProfileInfoText": "Profile lokal tidak mempunyai ikon dan nama \ntidak terjamin unik. Tingkatkan ke profil global \nuntuk mendapatkan nama unik dan dapat menambahkan ikon kustom.", - "localProfileText": "(Profil lokal)", + "localProfileText": "(profil lokal)", "nameDescriptionText": "Nama Pemain", "nameText": "Nama", - "randomText": "Acak", + "profileAlreadyExistsText": "Profil dengan nama tersebut sudah ada.", + "randomText": "acak", "titleEditText": "Ubah Profil", "titleNewText": "Profil Baru", "unavailableText": "\"${NAME}\" tidak tersedia; coba nama lain.", - "upgradeProfileInfoText": "Ini akan jadi nama Kamu dalam game ini\ndan memungkinkan Kamu untuk menetapkan ikon kustom.", + "upgradeProfileInfoText": "Ini akan jadi nama kamu dalam game ini\ndan memungkinkan kamu untuk menetapkan ikon kustom.", "upgradeToGlobalProfileText": "Tingkatkan ke Profil Global" }, "editSoundtrackWindow": { "cantDeleteDefaultText": "Kamu tidak dapat menghapus soundtrack asal.", "cantEditDefaultText": "Tidak dapat mengubah soundtrack asal. Gandakan atau buat soundtrack baru.", - "cantOverwriteDefaultText": "tidak dapat menimpa soundtrack asal", - "cantSaveAlreadyExistsText": "Soundtrack dengan nama ini telah digunakan!", + "cantOverwriteDefaultText": "Tidak dapat menimpa soundtrack asal", + "cantSaveAlreadyExistsText": "Soundtrack dengan nama itu telah ada!", "defaultGameMusicText": "", "defaultSoundtrackNameText": "Soundtrack Asal", "deleteConfirmText": "Hapus Soundtrack:\n\n'${NAME}'?", "deleteText": "Hapus\nSoundtrack", - "duplicateText": "Gandakan\nSoundtrack", - "editSoundtrackText": "Pengaturan Soundtrack", + "duplicateText": "Duplikat\nSoundtrack", + "editSoundtrackText": "Editor Soundtrack", "editText": "Ubah\nSoundtrack", - "fetchingITunesText": "Mengambil playlist Music App...", + "fetchingITunesText": "mengambil daftar putar Apl. Musik...", "musicVolumeZeroWarning": "Perhatian: suara musik menjadi 0", "nameText": "Nama", "newSoundtrackNameText": "Soundtrack saya ${COUNT}", @@ -630,8 +648,8 @@ "titleText": "Soundtrack", "useDefaultGameMusicText": "Musik Game Asal", "useITunesPlaylistText": "Daftar Putar Apl. Musik", - "useMusicFileText": "Data Musik (mp3, dll)", - "useMusicFolderText": "berkas dari Data Musik" + "useMusicFileText": "File Musik (mp3, dll)", + "useMusicFolderText": "Berkas dari File Musik" }, "editText": "Edit", "enabledText": "Dinyalakan", @@ -640,16 +658,18 @@ "epicDescriptionFilterText": "${DESCRIPTION} dalam slow-motion yang epik.", "epicNameFilterText": "${NAME} Epik", "errorAccessDeniedText": "akses ditolak", - "errorDeviceTimeIncorrectText": "Waktu di perangkatmu berbeda ${HOURS} jam.\nIni akan menyebabkan masalah.\nSilahkan cek pengaturan jam dan zona waktu anda.", + "errorDeviceTimeIncorrectText": "Waktu di perangkatmu berbeda ${HOURS} jam.\nIni akan menyebabkan masalah.\nSilahkan cek pengaturan jam dan zona waktu kamu.", "errorOutOfDiskSpaceText": "media penyimpanan tidak cukup", "errorSecureConnectionFailText": "Tidak bisa mendirikan koneksi aman; fungsi jaringan mungkin gagal.", "errorText": "Kesalahan!", "errorUnknownText": "kesalahan tak teridentifikasi", "exitGameText": "Keluar dari ${APP_NAME}?", - "exportSuccessText": "'${NAME}' TEREXPORT", + "expiredAgoText": "Kadaluarsa ${T} yang lalu", + "expiresInText": "Kadaluarsa dalam ${T}", + "exportSuccessText": "'${NAME}' terekspor.", "externalStorageText": "Penyimpanan Eksternal", "failText": "Gagal", - "fatalErrorText": "O-ow, sesuatu hilang atau rusak. \nCoba install ulang BombSquad atau kontak\n${EMAIL} untuk bantuan.", + "fatalErrorText": "O-ow, sesuatu hilang atau rusak.\nCoba pasang ulang BombSquad atau hubungi\n${EMAIL} untuk bantuan.", "fileSelectorWindow": { "titleFileFolderText": "Pilih File atau Folder", "titleFileText": "Ambil File", @@ -657,56 +677,59 @@ "useThisFolderButtonText": "Gunakan Folder" }, "filterText": "Filter", - "finalScoreText": "Skor Final", - "finalScoresText": "Skor Final", - "finalTimeText": "Waktu Final", - "finishingInstallText": "Selesai menginstall, tunggu sebentar...", - "fireTVRemoteWarningText": "* Untuk mempermudah, gunakan\npengontrol permainan atau pasang\naplikasi '${REMOTE_APP_NAME}'\ndi HP atau tabletmu.", - "firstToFinalText": "Final Pertama Mencapai ${COUNT}", - "firstToSeriesText": "Pertama Mencapai ${COUNT}", + "finalScoreText": "Skor Akhir", + "finalScoresText": "Skor Akhir", + "finalTimeText": "Waktu Akhir", + "finishingInstallText": "Selesai memasang; tunggu sebentar...", + "fireTVRemoteWarningText": "* Untuk pengalaman lebih baik, gunakan\npengontrol permainan atau pasang\naplikasi '${REMOTE_APP_NAME}'\ndi HP dan tabletmu.", + "firstToFinalText": "Pertama Mencapai ${COUNT} Akhir", + "firstToSeriesText": "Pertama Mencapai ${COUNT} Seri", "fiveKillText": "MATI LIMA!!", "flawlessWaveText": "Gelombang Mulus!", "fourKillText": "MATI EMPAT!!", "friendScoresUnavailableText": "Skor teman tidak tersedia.", "gameCenterText": "PusatGame", "gameCircleText": "LingkaranGame", - "gameLeadersText": "Pemimpin Game ${COUNT}", + "gameLeadersText": "Pemimpin ${COUNT} Permainan", "gameListWindow": { "cantDeleteDefaultText": "Kamu tidak dapat menghapus daftar putar asal.", "cantEditDefaultText": "Tidak dapat mengubah Daftar Putar asal! Gandakan atau buat baru.", - "cantShareDefaultText": "Kamu tidak dapat bagikan playlist semula", + "cantShareDefaultText": "Kamu tidak dapat bagikan playlist semula.", "deleteConfirmText": "Hapus \"${LIST}\"?", "deleteText": "Hapus\nDaftar Putar", - "duplicateText": "Gandakan\nDaftar Putar", + "duplicateText": "Duplikat\nDaftar Putar", "editText": "Ubah\nDaftar Putar", "newText": "Buat\nDaftar Putar", + "pointsToWinText": "Poin Untuk Menang", + "seriesLengthText": "Panjang Seri", "showTutorialText": "Lihat Panduan", "shuffleGameOrderText": "Acak Urutan Game", "titleText": "Ubah ${TYPE} Daftar Putar" }, "gameSettingsWindow": { - "addGameText": "Tambah Game" + "addGameText": "Tambah Permainan" }, - "gamesToText": "${WINCOUNT} menang lawan ${LOSECOUNT} menang", + "gamesToText": "${WINCOUNT} menang lawan ${LOSECOUNT}", "gatherWindow": { - "aboutDescriptionLocalMultiplayerExtraText": "Catatan: tiap perangkat dapat punya lebih dari\nsatu pemain jika memang ada pengontrol yang cukup.", - "aboutDescriptionText": "Gunakan tab ini untuk mengadakan acara.\n\nDengan adanya acara, Kamu dapat bermain\ndengan teman di perangkat yang berbeda.\n\nGunakan tombol ${PARTY} di kanan atas\nuntuk chat dan berinteraksi di acara. \n(pada pengontrol, tekan ${BUTTON} saat di menu)", - "aboutText": "Perihal", + "aboutDescriptionLocalMultiplayerExtraText": "Ingat: tiap perangkat dalam acara dapat punya lebih\ndari satu pemain jika memang ada pengontrol yang cukup.", + "aboutDescriptionText": "Gunakan tab ini untuk mengadakan acara.\n\nDengan adanya acara, kamu dapat bermain\ndengan teman di perangkat yang berbeda.\n\nGunakan tombol ${PARTY} di kanan atas\nuntuk chat dan berinteraksi di acara. \n(pada pengontrol, tekan ${BUTTON} saat di menu)", + "aboutText": "Tentang", "addressFetchErrorText": "", "appInviteMessageText": "${NAME} mengirim ${COUNT} tiket ke ${APP_NAME}", "appInviteSendACodeText": "Kirimkan Kode", "appInviteTitleText": "Undangan Aplikasi ${APP_NAME}", - "bluetoothAndroidSupportText": "(bekerja dengan semua Android yang punya Bluetooth)", + "bluetoothAndroidSupportText": "(bekerja dengan semua Android yang mendukung Bluetooth)", "bluetoothDescriptionText": "Buat/ikut acara lewat Bluetooth:", - "bluetoothHostText": "Adakan acara!", - "bluetoothJoinText": "Ikut acara!", + "bluetoothHostText": "Adakan acara lewat Bluetooth", + "bluetoothJoinText": "Ikut acara lewat Bluetooth", "bluetoothText": "Bluetooth", "checkingText": "memeriksa...", "copyCodeConfirmText": "Kode disalin ke papan klip.", "copyCodeText": "Salin Kode", - "dedicatedServerInfoText": "Untuk hasil terbaik, buatlah server yang bagus. Lihat bombsquadgame.com/server untuk membuatnya", + "dedicatedServerInfoText": "Untuk hasil terbaik, buatlah server khusus. Lihat bombsquadgame.com/server untuk mempelajari caranya.", + "descriptionShortText": "Gunakan jendela bersama untuk mengadakan pesta.", "disconnectClientsText": "Ini akan memutuskan sambungan ${COUNT} pemain\ndi acaramu. Apa kamu yakin?", - "earnTicketsForRecommendingAmountText": "Teman Kamu akan mendapatkan ${COUNT} tiket jika mereka memainkan game ini\n(dan Kamu akan mendapatkan ${YOU_COUNT} untuk setiap mereka memainkan game ini)", + "earnTicketsForRecommendingAmountText": "Teman akan mendapatkan ${COUNT} tiket jika mereka memainkan game ini\n(dan kamu akan mendapatkan ${YOU_COUNT} untuk setiap mereka yang bermain)", "earnTicketsForRecommendingText": "Bagikan permainan\nuntuk tiket gratis...", "emailItText": "Lewat Surel", "favoritesSaveText": "Simpan Sebagai Favorit", @@ -717,40 +740,40 @@ "friendHasSentPromoCodeText": "${COUNT} ${APP_NAME} tiket dari ${NAME}", "friendPromoCodeAwardText": "Kamu akan mendapatkan ${COUNT} tiket setiap kode ini digunakan.", "friendPromoCodeExpireText": "kode ini akan berakhir dalam ${EXPIRE_HOURS} jam dan hanya berlaku untuk pemain baru.", - "friendPromoCodeInstructionsText": "Untuk menggunakannya, buka ${APP_NAME} dan buka \"Pengaturan-> Lanjutan-> Masukkan Kode\".\nLihat bombsquadgame.com untuk tautan unduhan untuk semua platform yang didukung.", - "friendPromoCodeRedeemLongText": "ini dapat digunakan untuk ${COUNT} tiket gratis hingga batas maksimal ${MAX_USES} orang.", - "friendPromoCodeRedeemShortText": "ini dapat digunkanan untuk mendapatkan ${COUNT} tiket.", - "friendPromoCodeWhereToEnterText": "(di \"Pengaturan-> Lanjutan-> Masukkan Kode\")", + "friendPromoCodeInstructionsText": "Untuk menggunakan, buka ${APP_NAME} dan pergi ke \"Pengaturan->Lanjutan->Kirim Info\".\nKunjungi bombsquadgame.com untuk link unduhan untuk semua platform yang didukung.", + "friendPromoCodeRedeemLongText": "Ini dapat ditukarkan untuk ${COUNT} tiket gratis hingga batas maksimal ${MAX_USES} orang.", + "friendPromoCodeRedeemShortText": "Ini dapat ditukarkan untuk ${COUNT} tiket dalam permainan.", + "friendPromoCodeWhereToEnterText": "(di \"Pengaturan->Lanjutan->Kirim Info\")", "getFriendInviteCodeText": "Dapatkan Kode Undangan Teman", "googlePlayDescriptionText": "Undang pemain Google Play ke acaramu:", "googlePlayInviteText": "Undang", - "googlePlayReInviteText": "Ada ${COUNT} pemain Google Play di acaramu\nyang akan terputus jika Kamu undang ulang. \nJangan lupa masukan mereka ke undangan.", + "googlePlayReInviteText": "Ada ${COUNT} pemain Google Play di acaramu\nyang akan terputus jika kamu undang ulang. \nMasukkan mereka ke undangan baru untuk mengundang mereka lagi.", "googlePlaySeeInvitesText": "Lihat Undangan", "googlePlayText": "Google Play", "googlePlayVersionOnlyText": "(versi Android / Google Play)", - "hostPublicPartyDescriptionText": "Selenggarakan Acara Publik", + "hostPublicPartyDescriptionText": "Buat Acara Publik", "hostingUnavailableText": "Hosting Tidak Tersedia", - "inDevelopmentWarningText": "Catatan:\n\nBermain dalam jaringan masih baru dan dalam\nperkembangan. Sementara, sangat disarankan para\npemain ada di jaringan Wi-Fi yang sama.", + "inDevelopmentWarningText": "Catatan:\n\nBermain dalam jaringan masih baru dan dalam\npengembangan. Untuk sekarang, sangat disarankan para\npemain ada di jaringan Wi-Fi yang sama.", "internetText": "Internet", - "inviteAFriendText": "Teman Kamu belum memainkan ini? undang mereka sekarang\ndan mereka akan mendapatkan ${COUNT} tiket gratis.", + "inviteAFriendText": "Temanmu belum memiliki permainan? Undang mereka untuk\nmencoba dan mereka akan mendapatkan ${COUNT} tiket gratis.", "inviteFriendsText": "Undang Teman", "joinPublicPartyDescriptionText": "Gabung dengan Acara Publik", "localNetworkDescriptionText": "Bergabunglah dengan Acara Terdekat (LAN, Bluetooth, dll.)", "localNetworkText": "Jaringan Lokal", - "makePartyPrivateText": "Buat acaraku pribadi", - "makePartyPublicText": "Buat acaraku publik", + "makePartyPrivateText": "Buat Acaraku Pribadi", + "makePartyPublicText": "Buat Acaraku Publik", "manualAddressText": "Alamat", "manualConnectText": "Hubungkan", "manualDescriptionText": "Ikut acara di alamat:", "manualJoinSectionText": "Gabung Berdasarkan Alamat", - "manualJoinableFromInternetText": "Apakah Kamu dapat bergabung internet?:", + "manualJoinableFromInternetText": "Apakah kamu dapat bergabung dari internet?:", "manualJoinableNoWithAsteriskText": "TIDAK*", "manualJoinableYesText": "YA", - "manualRouterForwardingText": "*untuk memperbaiki, coba dengan mengkonfigurasi router ke UDP port ${PORT} ke alamat lokal Kamu", + "manualRouterForwardingText": "*untuk memperbaiki, coba dengan mengkonfigurasi router forward ke UDP port ${PORT} ke alamat lokal kamu", "manualText": "Manual", - "manualYourAddressFromInternetText": "Alamat Kamu dari internet:", - "manualYourLocalAddressText": "Alamat lokal Kamu:", - "nearbyText": "Dekat", + "manualYourAddressFromInternetText": "Alamat kamu dari internet:", + "manualYourLocalAddressText": "Alamat lokal kamu:", + "nearbyText": "Terdekat", "noConnectionText": "", "noPartiesAddedText": "Tidak ada Acara yang Ditambahkan", "otherVersionsText": "(Versi lain)", @@ -760,15 +783,15 @@ "partyInviteGooglePlayExtraText": "(Lihat tab 'Google Play' di jendela 'Berkumpul')", "partyInviteIgnoreText": "Abaikan", "partyInviteText": "${NAME} mengundangmu\nke acaranya!", - "partyNameText": "Nama acara", + "partyNameText": "Nama Acara", "partyServerRunningText": "Server acara Anda sedang berjalan.", "partySizeText": "ukuran acara", "partyStatusCheckingText": "memeriksa status...", "partyStatusJoinableText": "sekarang orang lain dapat gabung ke acaramu dari internet", - "partyStatusNoConnectionText": "Tidak dapat terhubung ke server", - "partyStatusNotJoinableText": "orang lain gak dapat gabung ke acaramu lewat internet", + "partyStatusNoConnectionText": "tidak dapat terhubung ke server", + "partyStatusNotJoinableText": "orang lain tidak dapat gabung ke acaramu lewat internet", "partyStatusNotPublicText": "acaramu bukan acara publik", - "pingText": "Ping", + "pingText": "ping", "portText": "Port", "privatePartyCloudDescriptionText": "Acara pribadi dijalankan di server cloud khusus; tidak diperlukan konfigurasi router.", "privatePartyHostText": "Adakan Acara Pribadi", @@ -778,20 +801,20 @@ "publicText": "Publik", "requestingAPromoCodeText": "Memesan Kode...", "sendDirectInvitesText": "Kirim Undangan", - "shareThisCodeWithFriendsText": "Bagikan kode ini ke teman-teman mu!", + "shareThisCodeWithFriendsText": "Bagikan kode ini ke teman-teman mu:", "showMyAddressText": "Tunjukkan Alamatku", "startHostingPaidText": "Host Sekarang Dengan ${COST}", "startHostingText": "Host", "startStopHostingMinutesText": "Anda dapat memulai dan menghentikan hosting gratis untuk ${MINUTES} menit berikutnya.", "stopHostingText": "Hentikan Hosting", "titleText": "Gabung", - "wifiDirectDescriptionBottomText": "Jika semua perangkat punya tab 'Wi-Fi Direct', maka seharusnya semua dapat saling\nkoneksi. Ketika sudah konek semua, buat team\ndi tab 'Jaringan Lokal', seperti Wi-Fi biasa.\n\nUntuk hasil maksimal, host Wi-Fi Direct juga harus sebagai host team di ${APP_NAME}.", - "wifiDirectDescriptionTopText": "Wi-Fi Direct dapat digunakan untuk koneksi Android tanpa hotspot.\nBekerja paling bagus pada Android 4.2 lebih.\n\nUntuk itu, buka Pengaturan Wi-Fi dan pilih 'Wi-Fi Direct' di menu.", + "wifiDirectDescriptionBottomText": "Jika semua perangkat punya 'Wi-Fi Direct' panel, mereka seharusnya bisa menggunakannya\nuntuk mencari dan terhubung satu sama lain. Ketika semua perangkat telah terhubung, kamu dapat\nbuat acara di sini menggunakan tab 'Jaringan Lokal', sama seperti dengan jaringan Wi-Fi biasa.\n\nUntuk hasil maksimal, host Wi-Fi Direct juga harus sebagai host acara di ${APP_NAME}.", + "wifiDirectDescriptionTopText": "Wi-Fi Direct dapat digunakan untuk koneksi Android tanpa hotspot.\nBekerja paling bagus pada Android 4.2 atau lebih baru.\n\nUntuk itu, buka Pengaturan Wi-Fi dan pilih 'Wi-Fi Direct' di menu.", "wifiDirectOpenWiFiSettingsText": "Buka Pengaturan Wi-Fi", "wifiDirectText": "Wi-Fi Direct", "worksBetweenAllPlatformsText": "(bekerja antar platform)", "worksWithGooglePlayDevicesText": "(bekerja antar perangkat yang menggunakan versi Android) ", - "youHaveBeenSentAPromoCodeText": "Kamu telah mengirim sebuah kode promo ${APP_NAME}!" + "youHaveBeenSentAPromoCodeText": "Kamu telah mengirim sebuah ${APP_NAME} kode promo:" }, "getTicketsWindow": { "freeText": "Gratis!", @@ -807,17 +830,23 @@ "ticketPack5Text": "Paket Tiket Raksasa", "ticketPack6Text": "Paket Tiket Berlimpah", "ticketsFromASponsorText": "Tonton iklan\nuntuk ${COUNT} tiket", - "ticketsText": "${COUNT} tiket", + "ticketsText": "${COUNT} Tiket", "titleText": "Dapatkan Tiket", "unavailableLinkAccountText": "Maaf, pembelian tidak dapat dilakukan di perangkat ini.\nsebagai antisipasi, kamu dapat menautkan akun ini ke perangkat\nlain dan melakukan pembelian di sana.", - "unavailableTemporarilyText": "mohon maaf, saat ini layanan tidak tersedia; mohon dicoba lagi lain waktu.", + "unavailableTemporarilyText": "Mohon maaf, saat ini layanan tidak tersedia; mohon dicoba lagi lain waktu.", "unavailableText": "Maaf, tidak tersedia.", "versionTooOldText": "Maaf, versi permainan ini terlalu usang; silahkan perbaharui dengan yang terbaru.", "youHaveShortText": "kamu memiliki ${COUNT}", "youHaveText": "kamu memiliki ${COUNT} tiket" }, + "goldPass": { + "desc1InfTokensText": "Token tidak terbatas.", + "desc2NoAdsText": "Tidak ada iklan.", + "desc3ForeverText": "Selamanya.", + "goldPassText": "Tiket Emas" + }, "googleMultiplayerDiscontinuedText": "Maaf, Google's multiplayer service tidak lagi tersedia.\nSaya sedang bekerja pada penggantian secepat mungkin.\nHingga saat itu, silakan coba metode koneksi lainnya.\n-Eric", - "googlePlayPurchasesNotAvailableText": "Pembayaran Google Play tidak tersedia.\nMungkin perlu memperbaharui Playstore anda.", + "googlePlayPurchasesNotAvailableText": "Pembayaran Google Play tidak tersedia.\nKamu perlu memperbaharui apl. Store mu.", "googlePlayServicesNotAvailableText": "Layanan Google Play tidak tersedia.\nBeberapa fungsi dari aplikasi mungkin padam.", "googlePlayText": "Google Play", "graphicsSettingsWindow": { @@ -841,42 +870,43 @@ "visualsText": "Visual" }, "helpWindow": { - "bombInfoText": "- Bomb -\nLebih kuat dari Tinju, tapi\ndapat menjadi bom bunuh diri.\nCoba untuk melempar sebelum\nsumbu akan habis.", - "canHelpText": "${APP_NAME} Solusinya!", - "controllersInfoText": "Kamu dapat bermain ${APP_NAME} dengan temanmu melalui sebuah\nJaringan, atau kamu dapat bermain dalam perangkat yang sama\njika kamu memiliki kontrol yang cukup. ${APP_NAME} menyediakan\npengontrol digital melalui aplikasi '${REMOTE_APP_NAME}'.\nlihat di Pengaturan -> Kontrol untuk info lebih lanjut.", - "controllersInfoTextRemoteOnly": "Anda bisa bermain ${APP_NAME} bersama dengan teman melalui jaringan, \natau kalian semua bisa bermain di perangkat yang sama dengan menggunakan ponsel sebagai pengontrol melalui aplikasi \n'${REMOTE_APP_NAME}' gratis.", - "controllersText": "Kontrol", - "controlsSubtitleText": "karakter ${APP_NAME} Memiliki beberapa gerakan dasar:", + "bombInfoText": "- Bomb -\nLebih kuat dari Tinju, tapi\ndapat menjadi bom bunuh diri.\nCoba untuk melempar sebelum\nsumbunya habis.", + "bombInfoTextScale": 0.5, + "canHelpText": "${APP_NAME} dapat menolong!", + "controllersInfoText": "Kamu dapat bermain ${APP_NAME} dengan temanmu melalui sebuah jaringan, atau kamu \ndapat bermain dalam perangkat yang sama jika kamu memiliki pengontrol yang cukup.\n${APP_NAME} mendukung berbagai macam pengontrol; kamu bahkan dapat menggunakan ponsel \nsebagai pengontrol melalui apl. gratis '${REMOTE_APP_NAME}'.\nLihat di Pengaturan->Pengontrol untuk info lebih lanjut.", + "controllersInfoTextRemoteOnly": "Kamu bisa bermain ${APP_NAME} bersama dengan teman melalui jaringan, atau kalian\nsemua bisa bermain di perangkat yang sama dengan menggunakan ponsel sebagai \npengontrol melalui aplikasi '${REMOTE_APP_NAME}' gratis.", + "controllersText": "Pengontrol", + "controlsSubtitleText": "Karakter bersahabatmu ${APP_NAME} memiliki beberapa gerakan dasar:", "controlsText": "Kontrol", - "devicesInfoText": "Versi VR dari ${APP_NAME} dapat dimainkan lewat jaringan dengan\nversi reguler. Jadi siapkan ponsel, Tablet atau Komputermu\ndan Mainkan Game ini! Fitur ini juga dapat menjadi menyenangkan\ndengan cara mengizinkan orang lain melihat permainan Kamu saat\nmenggunakan VR!", + "devicesInfoText": "Versi VR dari ${APP_NAME} dapat dimainkan lewat jaringan dengan\nversi reguler. Jadi siapkan ponsel, Tablet, dan Komputermu\ndan mainkan game ini. Fitur ini juga dapat menjadi menyenangkan\ndengan cara mengizinkan orang lain melihat permainan kamu saat\nmenggunakan VR!", "devicesText": "Perangkat", - "friendsGoodText": "Sangat diperlukan. ${APP_NAME} Sangat menyenangkan dengan beberapa\npemain (maksimal 8 pemain) dalam sekali permainan.", + "friendsGoodText": "Sangat diperlukan. ${APP_NAME} sangat menyenangkan dengan beberapa\npemain (maksimal 8 pemain) dalam sekali permainan.", "friendsText": "Teman", - "jumpInfoText": "- Lompat -\nLompat untuk melewati gundukan,\nmelempar lebih jauh, dan\nmengekspresikan kebehagiaan Kamu.", + "jumpInfoText": "- Lompat -\nLompat untuk melewati celah,\nmelempar lebih jauh, dan\nmengekspresikan kebehagiaan kamu.", "orPunchingSomethingText": "Atau menghajar sesuatu, melemparnya ke Jurang, dan meledakannya dengan beberapa bom mematikan.", "pickUpInfoText": "- Angkat -\nMengangkat Bendera, Musuh, atau\napapun yang tidak melekat di tanah.\nTekan sekali lagi untuk melempar.", - "powerupBombDescriptionText": "Memberikan Kamu 3 bom sekaligus.\nLebih baik dari pada 1.", + "powerupBombDescriptionText": "Memberikan kamu 3 bom sekaligus\nlebih baik dari pada satu.", "powerupBombNameText": "Bomb Beruntun", "powerupCurseDescriptionText": "Hindari ini segera jika kamu \ntidak ingin mati!", "powerupCurseNameText": "Kutukan", - "powerupHealthDescriptionText": "Mengembalikan darah Kamu\nseperti semula.", + "powerupHealthDescriptionText": "Mengembalikan darah kamu\nseperti semula.", "powerupHealthNameText": "Kotak Medis", - "powerupIceBombsDescriptionText": "Lebih lemah dari bom biasa\ntapi membuat musuh Kamu beku,\npanik, gelisah, dan rapuh.", + "powerupIceBombsDescriptionText": "Lebih lemah dari bom biasa\ntapi membuat musuh kamu beku,\ndan rapuh.", "powerupIceBombsNameText": "Bom Beku", "powerupImpactBombsDescriptionText": "Sedikit lebih lemah dari bom\nbiasa, tapi akan meledak saat terbentur.", "powerupImpactBombsNameText": "Bom Pemicu", - "powerupLandMinesDescriptionText": "berisi 3 paket; berguna untuk\nbertahan atau menghentikan\nlangkah musuhmu.", + "powerupLandMinesDescriptionText": "Berisi 3 paket; Berguna untuk\nbertahan atau menghentikan\nlangkah musuhmu.", "powerupLandMinesNameText": "Ranjau", "powerupPunchDescriptionText": "Membuat tinjumu lebih kuat,\nlebih cepat, bahkan lebih baik.", "powerupPunchNameText": "Sarung Tinju", - "powerupShieldDescriptionText": "menahan beberapa serangan\nsehingga darah Kamu tidak berkurang.", + "powerupShieldDescriptionText": "Menahan beberapa serangan\nsehingga darah kamu tidak berkurang.", "powerupShieldNameText": "Energi Pelindung", "powerupStickyBombsDescriptionText": "Lengket ke apapun yang tersentuh.\nSungguh Menjijikkan.", "powerupStickyBombsNameText": "Bom Lengket", "powerupsSubtitleText": "Jelas sekali, tidak ada game yang bakal seru tanpa Kekuatan Tambahan:", "powerupsText": "Kekuatan Tambahan", - "punchInfoText": "- Tinju -\nTinju lebih merusak saat\nKamu bergerak cepat. Jadi lari\ndan berputarlah seperti orang gila.", - "runInfoText": "- Lari -\nSEMUA tombol dapat digunakan untuk lari. Kecuali tombol pusar Kamu, haha. Lari\ndapat membuat Kamu cepat tapi sulit untuk berbelok, jadi hati-hati dengan jurang.", + "punchInfoText": "- Tinju -\nTinju lebih merusak saat\nkamu bergerak cepat. Jadi lari\ndan berputarlah seperti orang gila.", + "runInfoText": "- Lari -\nSEMUA tombol dapat digunakan untuk lari. Lari dapat membuat kamu cepat tapi\nsulit untuk berbelok, jadi hati-hati dengan jurang.", "someDaysText": "Terkadang, kamu ingin sekali menghajar sesuatu atau menghancurkan sesuatu.", "titleText": "Bantuan ${APP_NAME}", "toGetTheMostText": "Untuk menikmati game ini, kamu perlu menyiapkan:", @@ -885,71 +915,74 @@ "holdAnyButtonText": "", "holdAnyKeyText": "", "hostIsNavigatingMenusText": "- ${HOST} sedang merenung untuk memilih menu -", - "importPlaylistCodeInstructionsText": "Masukan kode untuk mengimpor playlist :", + "importPlaylistCodeInstructionsText": "Masukan kode untuk mengimpor daftar putar:", "importPlaylistSuccessText": "Terimpor ${TYPE} daftar putar '${NAME}'", "importText": "Impor", "importingText": "Mengimpor...", "inGameClippedNameText": "dalam game akan\n\"${NAME}\"", - "installDiskSpaceErrorText": "ERROR: Gagal menginstall. \nMungkin penyimpanan Kamu terlalu penuh. \nMohon hapus beberapa file dan coba lagi.", + "inboxText": "Kotak Masuk", + "installDiskSpaceErrorText": "KESALAHAN: Gagal memasang. \nMungkin penyimpanan kamu terlalu penuh. \nMohon hapus beberapa file dan coba lagi.", "internal": { "arrowsToExitListText": "tekan ${LEFT} atau ${RIGHT} untuk keluar", - "buttonText": "Tombol", - "cantKickHostError": "Kamu tak dapat mengeluarkan host", + "buttonText": "tombol", + "cantKickHostError": "Kamu tak dapat mengeluarkan host.", "chatBlockedText": "${NAME} di blokir chatnya selama ${TIME} detik.", "connectedToGameText": "'${NAME}' Bergabung", "connectedToPartyText": "Bergabung ke team ${NAME}!", "connectingToPartyText": "Menyambung...", - "connectionFailedHostAlreadyInPartyText": "Sambungan Gagal, Host sedang dalam team lain.", + "connectionFailedHostAlreadyInPartyText": "Sambungan gagal; host sedang dalam team lain.", "connectionFailedPartyFullText": "Koneksi gagal; acara sudah penuh", "connectionFailedText": "Gagal Menghubungkan.", - "connectionFailedVersionMismatchText": "Gagal menghubungkan; Host sedang menjalankan versi lain dari game ini.\nPastikan kamu memperbarui game lalu coba lagi.", + "connectionFailedVersionMismatchText": "Gagal menghubungkan; host sedang menjalankan versi lain dari game ini.\nPastikan kalian berdua sudah memperbaharui lalu coba lagi.", "connectionRejectedText": "Sambungan ditolak.", "controllerConnectedText": "${CONTROLLER} tersambung.", "controllerDetectedText": "1 pengontrol terdeteksi.", "controllerDisconnectedText": "${CONTROLLER} terputus.", "controllerDisconnectedTryAgainText": "${CONTROLLER} terputus. Silahkan menghubungkan kembali.", - "controllerForMenusOnlyText": "Pengontrol ini tidak dapat digunakan untuk bermain, hanya untuk memilih menu.", + "controllerForMenusOnlyText": "Pengontrol ini tidak dapat digunakan untuk bermain; hanya untuk memilih menu.", "controllerReconnectedText": "${CONTROLLER} terhubung kembali.", "controllersConnectedText": "${COUNT} pengontrol terhubung.", "controllersDetectedText": "${COUNT} pengontrol terdeteksi.", "controllersDisconnectedText": "${COUNT} pengontrol terputus.", - "corruptFileText": "Data rusak terdeteksi. dimohon untuk pasang ulang, atau kirimkan surel ke ${EMAIL}", + "corruptFileText": "Data rusak terdeteksi. Mohon untuk pasang ulang, atau kirimkan surel ke ${EMAIL}", "errorPlayingMusicText": "Gagal memutar musik: ${MUSIC}", - "errorResettingAchievementsText": "Tidak dapat mengulang Online Achievments; dimohon coba lagi.", + "errorResettingAchievementsText": "Tidak dapat mengulang pencapaian online; mohon coba lagi lain waktu.", "hasMenuControlText": "${NAME} mempunyai kendali menu.", "incompatibleNewerVersionHostText": "Host menggunakan versi baru dari game ini\nSilakan perbarui dan coba lagi", - "incompatibleVersionHostText": "Host berjalan dengan versi yang berbeda dengan game.\nPastikan Kamu up-to-date dan coba lagi", + "incompatibleVersionHostText": "Host berjalan dengan versi yang berbeda dengan game.\nPastikan kalian berdua memperbaharui dan coba lagi.", "incompatibleVersionPlayerText": "${NAME} menjalankan versi game yang berbeda.\nPastikan versi game kalian sama dan coba lagi.", - "invalidAddressErrorText": "Error: alamat tidak jelas.", - "invalidNameErrorText": "Error: nama tidak jelas.", - "invalidPortErrorText": "Error: port tidak jelas.", + "invalidAddressErrorText": "Kesalahan: alamat tidak jelas.", + "invalidNameErrorText": "Kesalahan: nama tidak jelas.", + "invalidPortErrorText": "Kesalahan: port tidak jelas.", "invitationSentText": "Undangan terkirim.", "invitationsSentText": "${COUNT} undangan terkirim.", "joinedPartyInstructionsText": "Seseorang bergabung di acaramu.\nTekan 'Main' untuk mulai permainan.", "keyboardText": "Keyboard", - "kickIdlePlayersKickedText": "Mengeluarkan ${NAME} karena diam.", - "kickIdlePlayersWarning1Text": "${NAME} akan dikeluarkan dalam ${COUNT} detik jika masih diam.", - "kickIdlePlayersWarning2Text": "(Kamu dapat mematikan ini di Pengaturan -> Lanjutan)", + "kickIdlePlayersKickedText": "Mengeluarkan ${NAME} karena nganggur.", + "kickIdlePlayersWarning1Text": "${NAME} akan dikeluarkan dalam ${COUNT} detik jika masih nganggur.", + "kickIdlePlayersWarning2Text": "(kamu dapat mematikan ini di Pengaturan -> Lanjutan)", "leftGameText": "Keluar '${NAME}'.", "leftPartyText": "Keluar dari acara ${NAME}'", "noMusicFilesInFolderText": "Folder tidak memiliki file musik.", "playerJoinedPartyText": "${NAME} bergabung ke acara!", "playerLeftPartyText": "${NAME} keluar dari acara.", "rejectingInviteAlreadyInPartyText": "Membatalkan undangan (sudah ada di acara).", - "serverRestartingText": "Memulai ulang. Silakan masuk dalam beberapa saat lagi", + "serverRestartingText": "Server memulai ulang. Silahkan gabung dalam beberapa saat lagi...", "serverShuttingDownText": "Server sedang menutup...", - "signInErrorText": "Gagal masuk", + "signInErrorText": "Gagal masuk.", "signInNoConnectionText": "Gagal masuk. (apa jaringanmu tidak terkoneksi internet?)", - "telnetAccessDeniedText": "ERROR: pengguna tidak mengizinkan akses telnet.", + "telnetAccessDeniedText": "KESALAHAN: pengguna tidak mengizinkan akses telnet.", "timeOutText": "(waktu akan habis dalam ${TIME} detik lagi)", - "touchScreenJoinWarningText": "Kamu telah bergabung dengan layar sentuh.\nJika ini kesalahan. tekan 'Menu->Mode Penonton' saja", + "touchScreenJoinWarningText": "Kamu telah bergabung dengan layar sentuh.\nJika ini kesalahan, tekan 'Menu->Tinggalkan Permainan' dengan itu.", "touchScreenText": "Layar Sentuh", - "unableToResolveHostText": "Error:Tidak dapat menyambung pada server", + "unableToCompleteTryAgainText": "Tidak dapat menyelesaikannya saat ini.\nSilakan coba lagi.", + "unableToResolveHostText": "Kesalahan: tidak dapat menyambung pada server.", "unavailableNoConnectionText": "Maaf, layanan tidak tersedia (apa jaringanmu tidak terkoneksi internet?)", - "vrOrientationResetCardboardText": "Gunakan ini untuk mengulang orientasi VR.\nUntuk memainkan game ini Kamu harus mempunyai kontroller eksternal.", - "vrOrientationResetText": "Atur ulang orientasi VR", - "willTimeOutText": "(waktu habis jika diam)" + "vrOrientationResetCardboardText": "Gunakan ini untuk mengulang orientasi VR.\nUntuk memainkan game ini kamu harus mempunyai pengontrol eksternal.", + "vrOrientationResetText": "Atur ulang orientasi VR.", + "willTimeOutText": "(waktu habis jika nganggur)" }, + "inventoryText": "Inventaris", "jumpBoldText": "LOMPAT", "jumpText": "Lompat", "keepText": "Simpan", @@ -960,13 +993,13 @@ "kickOccurredText": "${NAME} dikeluarkan.", "kickQuestionText": "Keluarkan ${NAME}?", "kickText": "Keluarkan", - "kickVoteCantKickAdminsText": "Admin tidak dapat dikeluarkan", - "kickVoteCantKickSelfText": "Kamu tidak dapat mengeluarkan dirimu sendiri", + "kickVoteCantKickAdminsText": "Admin tidak dapat dikeluarkan.", + "kickVoteCantKickSelfText": "Kamu tidak dapat mengeluarkan dirimu sendiri.", "kickVoteFailedNotEnoughVotersText": "Tidak cukup pemain untuk pengambilan suara.", - "kickVoteFailedText": "Pengambilan suara untuk mengeluarkan pemain gagal", + "kickVoteFailedText": "Pengambilan suara untuk mengeluarkan pemain gagal.", "kickVoteStartedText": "Pengambilan suara untuk mengeluarkan ${NAME} sudah dimulai.", - "kickVoteText": "Tentukan suara untuk mengeluarkan", - "kickVotingDisabledText": "Pengambilan suara untuk mengeluarkan pemain di nonaktifkan", + "kickVoteText": "Tentukan Suara untuk Mengeluarkan", + "kickVotingDisabledText": "Pengambilan suara untuk mengeluarkan pemain di nonaktifkan.", "kickWithChatText": "Ketik ${YES} di kolom obrolan jika setuju dan ${NO} jika tidak setuju.", "killsTallyText": "${COUNT} pembunuhan", "killsText": "Pembunuhan", @@ -976,12 +1009,12 @@ "fullMenuText": "Semua Menu", "hardText": "Sulit", "mediumText": "Sedang", - "singlePlayerExamplesText": "Coontoh Main Sendiri / Berteman", + "singlePlayerExamplesText": "Satu Pemain / Contoh Mabar", "versusExamplesText": "Contoh Versus" }, - "languageSetText": "Bahasa yang sedang digunakan adalah \"${LANGUAGE}\".", + "languageSetText": "Bahasa saat ini adalah \"${LANGUAGE}\".", "lapNumberText": "Putaran ${CURRENT}/${TOTAL}", - "lastGamesText": "(${COUNT} game terakhir)", + "lastGamesText": "(${COUNT} permainan terakhir)", "leaderboardsText": "Papan Juara", "league": { "allTimeText": "Keseluruhan", @@ -990,28 +1023,31 @@ "leagueRankText": "Peringkat Liga", "leagueText": "Liga", "rankInLeagueText": "#${RANK}, ${NAME} Liga${SUFFIX}", - "seasonEndedDaysAgoText": "Musim berakhir ${NUMBER} hari yang lalu", - "seasonEndsDaysText": "Musim berakhir ${NUMBER} hari lagi", - "seasonEndsHoursText": "Musim berakhir ${NUMBER} jam lagi", + "seasonEndedDaysAgoText": "Musim berakhir ${NUMBER} hari yang lalu.", + "seasonEndsDaysText": "Musim berakhir ${NUMBER} hari lagi.", + "seasonEndsHoursText": "Musim berakhir ${NUMBER} jam lagi.", "seasonEndsMinutesText": "Musim berakhir ${NUMBER} menit lagi", "seasonText": "Musim ${NUMBER}", - "tournamentLeagueText": "Kamu harus berada di liga ${NAME} untuk memasukinya", - "trophyCountsResetText": "Hitungan trofimu akan diulang di musim berikutnya" + "tournamentLeagueText": "Kamu harus berada di liga ${NAME} untuk memasuki turnamen ini.", + "trophyCountsResetText": "Hitungan trofimu akan diulang di musim berikutnya.", + "upToDateBonusDescriptionText": "Pemain yang menjalankan versi terbaru\npermainan menerima bonus ${PERCENT}% di sini.", + "upToDateBonusText": "Bonus Terkini" }, + "learnMoreText": "Pelajari Lebih Lanjut", "levelBestScoresText": "Skor terbaik di ${LEVEL}", "levelBestTimesText": "Waktu terbaik di ${LEVEL}", "levelFastestTimesText": "Waktu tercepat pada ${LEVEL}", "levelHighestScoresText": "Skor tertinggi pada ${LEVEL}", - "levelIsLockedText": "${LEVEL} terbuka.", - "levelMustBeCompletedFirstText": "Selesaikan ${LEVEL} dulu.", + "levelIsLockedText": "${LEVEL} terkunci.", + "levelMustBeCompletedFirstText": "Selesaikan ${LEVEL} terlebih dahulu.", "levelText": "Level ${NUMBER}", "levelUnlockedText": "Level Terbuka!", "livesBonusText": "Nyawa Tambahan", "loadingText": "memuat", - "loadingTryAgainText": "Memuat; Coba lagi nanti.. sabar ya..", + "loadingTryAgainText": "Memuat; coba lagi dalam beberapa saat...", "macControllerSubsystemBothText": "Keduanya (Tidak direkomendasikan)", "macControllerSubsystemClassicText": "Klasik", - "macControllerSubsystemDescriptionText": "Coba ubah ini jika pengontrol Kamu tidak bekerja", + "macControllerSubsystemDescriptionText": "(coba ubah ini jika pengontrol kamu tidak bekerja)", "macControllerSubsystemMFiNoteText": "Pengontrol yang dibuat-untuk-ios/Mac terdeteksi;\nKamu mungkin ingin mengaktifkanya melalui Pengaturan -> Pengontrol", "macControllerSubsystemMFiText": "Dibuat-untuk-iOS/Mac", "macControllerSubsystemTitleText": "Dukungan pengontrol", @@ -1019,65 +1055,70 @@ "creditsText": "Kredit", "demoMenuText": "Menu Demo", "endGameText": "Akhiri Permainan", - "endTestText": "Akhiri Pengetesan", + "endTestText": "Akhiri Uji Coba", "exitGameText": "Keluar dari Permainan", - "exitToMenuText": "Ke Menu?", + "exitToMenuText": "Keluar ke Menu?", "howToPlayText": "Cara bermain", "justPlayerText": "(Hanya ${NAME})", - "leaveGameText": "Mode Penonton", - "leavePartyConfirmText": "Yakin Ingin Keluar?", - "leavePartyText": "Keluar", + "leaveGameText": "Keluar Permainan", + "leavePartyConfirmText": "Yakin keluar dari acara?", + "leavePartyText": "Keluar Acara", "quitText": "Berhenti", "resumeText": "Lanjutkan", "settingsText": "Pengaturan" }, "makeItSoText": "Jadilah Demikian", - "mapSelectGetMoreMapsText": "Arena Lainnya", - "mapSelectText": "Pilih", - "mapSelectTitleText": "Arena ${GAME}", - "mapText": "Arena", + "mapSelectGetMoreMapsText": "Dapatkan Peta Lainnya...", + "mapSelectText": "Pilih...", + "mapSelectTitleText": "Peta ${GAME}", + "mapText": "Peta", "maxConnectionsText": "Koneksi maksimal", "maxPartySizeText": "Besar Ukuran Maksimal", "maxPlayersText": "Jumlah Pemain Maksimal", "merchText": "Merchandise!", - "modeArcadeText": "Mode Arcade", + "modeArcadeText": "Mode Arkade", "modeClassicText": "Mode Klasik", "modeDemoText": "Mode Demo", + "moreSoonText": "Akan segera hadir lebih banyak..", + "mostDestroyedPlayerText": "Banyak Pemain Dihancurkan", "mostValuablePlayerText": "Pemain Terunggul", "mostViolatedPlayerText": "Pemain Teraniaya", "mostViolentPlayerText": "Pemain Terkejam", "moveText": "Gerak", - "multiKillText": "${COUNT} MATI!!", + "multiKillText": "${COUNT} MATI!!!", "multiPlayerCountText": "${COUNT} pemain", - "mustInviteFriendsText": "CATATAN: kamu harus mengundang teman di\nopsi \"${GATHER}\" atau pasang\npengontrol untuk bermain di mode multi-pemain", - "nameBetrayedText": "${NAME} membunuh rekannya ${VICTIM}", + "mustInviteFriendsText": "Catatan: kamu harus mengundang teman di\nopsi \"${GATHER}\" panel atau pasang\npengontrol untuk bermain di mode multi-pemain.", + "nameBetrayedText": "${NAME} membunuh rekannya ${VICTIM}.", "nameDiedText": "${NAME} meninggal.", - "nameKilledText": "${NAME} membunuh ${VICTIM}", - "nameNotEmptyText": "Nama harus diisi!", - "nameScoresText": "${NAME} mencetak poin!", + "nameKilledText": "${NAME} membunuh ${VICTIM}.", + "nameNotEmptyText": "Nama tidak boleh kosong!", + "nameScoresText": "${NAME} Mencetak Poin!", "nameSuicideKidFriendlyText": "${NAME} meninggal tiba-tiba.", "nameSuicideText": "${NAME} bunuh diri.", "nameText": "Nama", "nativeText": "Asli", + "newExclaimText": "Baru!", "newPersonalBestText": "Rekor Pribadi Baru!", - "newTestBuildAvailableText": "Uji coba baru tersedia! (${VERSION} bangun ${BUILD}).\nDapatkan di ${ADDRESS}", + "newTestBuildAvailableText": "Uji coba baru tersedia! (${VERSION} build ${BUILD}).\nDapatkan di ${ADDRESS}", "newText": "Baru", - "newVersionAvailableText": "Versi ${APP_NAME} terbaru tersedia", - "nextAchievementsText": "Pencapaian berikutnya:", + "newVersionAvailableText": "Versi ${APP_NAME} terbaru tersedia! (${VERSION})", + "nextAchievementsText": "Pencapaian Berikutnya:", "nextLevelText": "Level Berikutnya", "noAchievementsRemainingText": "- tidak ada", "noContinuesText": "(tidak dapat melanjutkan)", - "noExternalStorageErrorText": "Tidak ada penyimpanan eksternal", + "noExternalStorageErrorText": "Tidak ada penyimpanan eksternal di perangkat ini", "noGameCircleText": "Kesalahan: tidak masuk ke LingkaranGame", - "noPluginsInstalledText": "Tidak ada plugin yang terinstal", + "noMessagesText": "Tidak ada pesan.", + "noPluginsInstalledText": "Tidak ada plugin yang terpasang", "noProfilesErrorText": "Kamu tidak punya profil pemain, jadi '${NAME}' dipakai. \nMasuk Pengaturan->Profil Pemain untuk membuat profil. ", "noScoresYetText": "Belum ada skor.", "noServersFoundText": "Server tidak ditemukan.", "noThanksText": "Tidak, Terima kasih", - "noTournamentsInTestBuildText": "PERHATIAN: Skor turnamen dari build tes ini akan di abaikan", - "noValidMapsErrorText": "Tidak ada arena valid untuk game ini.", + "noTournamentsInTestBuildText": "PERINGATAN: Skor turnamen dari build uji coba ini akan di abaikan.", + "noValidMapsErrorText": "Tidak ada peta valid untuk tipe permainan ini.", "notEnoughPlayersRemainingText": "Tidak ada pemain tersisa; keluar dan main ulang.", "notEnoughPlayersText": "Kamu butuh sedikitnya ${COUNT} pemain untuk memulai permainan!", + "notEnoughTicketsText": "Tiket tidak cukup!", "notNowText": "Jangan Sekarang", "notSignedInErrorText": "Kamu harus masuk untuk lakukan ini.", "notSignedInGooglePlayErrorText": "Kamu harus masuk pakai Google Play untuk lakukan ini.", @@ -1090,26 +1131,29 @@ "onText": "Nyala", "oneMomentText": "Sebentar...", "onslaughtRespawnText": "${PLAYER} akan bangkit pada gelombang ${WAVE}", + "openMeText": "Buka Aku!", + "openNowText": "Buka Sekarang", + "openText": "Buka", "orText": "${A} atau ${B}", "otherText": "Lainnya...", "outOfText": "(#${RANK} dari ${ALL})", - "ownFlagAtYourBaseWarning": "Benderamu harus\nberada di basismu!", + "ownFlagAtYourBaseWarning": "Benderamu harus\nberada di basismu untuk mencetak skor!", "packageModsEnabledErrorText": "Game yang melalui jaringan tidak diperbolehkan ketika mod-paket-lokal diaktifkan (lihat Pengaturan->Lanjutan) ", "partyWindow": { "chatMessageText": "Pesan Obrolan", - "emptyText": "acaramu kosong", - "hostText": "(pembuat)", + "emptyText": "Acaramu kosong", + "hostText": "(pemilik)", "sendText": "Kirim", - "titleText": "acaramu" + "titleText": "Acaramu" }, "pausedByHostText": "(terhenti oleh pemilik)", "perfectWaveText": "Gelombang Sempurna!", "pickUpText": "Ambil", "playModes": { - "coopText": "Koloni", - "freeForAllText": "Saling bunuh", + "coopText": "Mabar", + "freeForAllText": "Bebas-untuk-Semua", "multiTeamText": "Multi-Tim", - "singlePlayerCoopText": "Pemain Tunggal / Lawan komputer", + "singlePlayerCoopText": "Pemain Tunggal / Mabar", "teamsText": "Tim" }, "playText": "Main", @@ -1121,7 +1165,7 @@ "playerCountAbbreviatedText": "${COUNT}p", "playerDelayedJoinText": "${PLAYER} akan masuk pada ronde berikutnya.", "playerInfoText": "Info Pemain", - "playerLeftText": "${PLAYER} meninggalkan game.", + "playerLeftText": "${PLAYER} meninggalkan permainan.", "playerLimitReachedText": "Batas pemain ${COUNT} tercapai; tidak dapat bergabung lagi.", "playerProfilesWindow": { "cantDeleteAccountProfileText": "Kamu tidak dapat menghapus akun profilmu.", @@ -1133,19 +1177,19 @@ "titleText": "Profil Pemain" }, "playerText": "Pemain", - "playlistNoValidGamesErrorText": "Playlist ini mempunyai game terbuka yang tidak valid.", - "playlistNotFoundText": "Daftar Putar tidak ditemukan", + "playlistNoValidGamesErrorText": "Daftar putar ini berisi permainan terbuka yang tidak valid.", + "playlistNotFoundText": "daftar Putar tidak ditemukan", "playlistText": "Daftar Putar", "playlistsText": "Daftar Putar", - "pleaseRateText": "Jika Kamu menyukai ${APP_NAME}, yuk luangkan waktu sejenak untuk menilai dan membubuhkan komentar. Ini akan membantu kami untuk menyempurnakan permainan yang akan datang.\n\nterima kasih!\n-eric", + "pleaseRateText": "Jika kamu menyukai ${APP_NAME}, yuk luangkan waktu sejenak \nuntuk menilai atau membubuhkan komentar. Ini akan membantu \nkami menyempurnakan dan mendukung permainan dalam pengembangan ke depannya.\n\nterima kasih!\n-eric", "pleaseWaitText": "Mohon tunggu...", - "pluginClassLoadErrorText": "Error saat memuat class plugin '${PLUGIN}':${ERROR}", - "pluginInitErrorText": "Error saat menjalankan plugin '${PLUGIN}': ${ERROR}", + "pluginClassLoadErrorText": "Kesalahan saat memuat class plugin '${PLUGIN}': ${ERROR}", + "pluginInitErrorText": "Kesalahan saat menjalankan plugin '${PLUGIN}': ${ERROR}", "pluginSettingsText": "Pengaturan Plugin", "pluginsAutoEnableNewText": "Otomatis nyalakan Plugin", - "pluginsDetectedText": "Plugin baru terdeteksi. Mulai ulang game untuk mengaktifkan pluginnya, atau mengaturnya di pengaturan.", - "pluginsDisableAllText": "Matikan semua Plugin", - "pluginsEnableAllText": "Nyalakan semua Plugin", + "pluginsDetectedText": "Plugin baru terdeteksi. Mulai ulang untuk mengaktifkan pluginnya, atau mengaturnya di pengaturan.", + "pluginsDisableAllText": "Matikan Semua Plugin", + "pluginsEnableAllText": "Nyalakan Semua Plugin", "pluginsRemovedText": "${NUM} plugin tidak lagi ditemukan.", "pluginsText": "Plugin", "practiceText": "Latihan", @@ -1157,24 +1201,28 @@ "pressAnyKeyText": "Tekan apa saja...", "pressJumpToFlyText": "** Tekan tombol lompat terus menerus untuk terbang **", "pressPunchToJoinText": "tekan PUKUL untuk bergabung..", - "pressToOverrideCharacterText": "tekan ${BUTTONS} untuk menimpa karaktermu.", + "pressToOverrideCharacterText": "tekan ${BUTTONS} untuk menimpa karaktermu", "pressToSelectProfileText": "tekan ${BUTTONS} untuk memilih pemain", "pressToSelectTeamText": "tekan ${BUTTONS} untuk memilih tim", "promoCodeWindow": { "codeText": "Kode", "enterText": "Masuk" }, - "promoSubmitErrorText": "Kesalahan saat mengirim kode; periksa koneksi internet Kamu", + "promoSubmitErrorText": "Kesalahan saat mengirim kode; periksa koneksi internetmu", "ps3ControllersWindow": { - "macInstructionsText": "Matikan daya pada bagian belakang PS3-mu, pastikan\nBluetooth aktif pada Mac-mu, lalu hubungkan kontrollermu\nke Mac-mu dengan kabel USB untuk memasangkannya. Sekarang, Kamu\ndapat menggunakan kontrollermu dengan kabel USB atau Bluetooth.\n\nPada beberapa perangkat Mac, Kamu mungkin akan dimintai kata sandi ketika memasangkannya.\nJika ini terjadi, lihat beberapa petunjuk atau gunakan google untuk meminta bantuan.\n\n\n\n\n\nKontroller PS3 yang terhubung dengan jaringan akan terlihat pada daftar perangkat\ndalam System Preferences->Bluetooth. Kamu mungkin harus menghapusnya\ndalam daftar tersebut ketika Kamu ingin menggunakan kontroller PS3mu kembali.\n\nDan pastikan untuk memutuskannya dari Bluetooth ketika sedang tidak\ndigunakan atau baterainya akan secara otomatis terkuras.\n\nBluetooth biasanya menangani sampai 7 perangkat yang terhubung,\nmeski jarak tempuhmu berbeda.", - "ouyaInstructionsText": "Untuk menggunakan kontroller PS3mu dengan OUYA, hubungkan saja dengan kabel USB\nsekali untuk memasangkannya. Melakukan ini akan memutuskan kontrollermu yang lain, jadi\nKamu harus mengulang OUYA-mu dan cabut kabel USB.\n\nSekarang Kamu seharusnya dapat menggunakan kontrollermu untuk\nmenghubungkannya dengan jaringan. Ketika Kamu sudah selesai bermain, tekan tombol HOME\nselama 10 detik untuk mematikan kontroller; jika itu tetap menyala\nmaka bateraimu akan terkuras habis.", + "macInstructionsText": "Matikan daya pada bagian belakang PS3-mu, pastikan\nBluetooth aktif pada Mac-mu, lalu hubungkan kontrollermu\nke Mac-mu dengan kabel USB untuk memasangkannya. Sekarang, kamu\ndapat menggunakan kontrollermu dengan kabel USB atau Bluetooth.\n\nPada beberapa perangkat Mac, kamu mungkin akan dimintai kata sandi ketika memasangkannya.\nJika ini terjadi, lihat beberapa petunjuk atau gunakan google untuk meminta bantuan.\n\n\n\n\n\nKontroller PS3 yang terhubung dengan jaringan akan terlihat pada daftar perangkat\ndalam System Preferences->Bluetooth. Kamu mungkin harus menghapusnya\ndalam daftar tersebut ketika kamu ingin menggunakan kontroller PS3mu kembali.\n\nDan pastikan untuk memutuskannya dari Bluetooth ketika sedang tidak\ndigunakan atau baterainya akan secara otomatis terkuras.\n\nBluetooth biasanya menangani sampai 7 perangkat yang terhubung,\nmeski jarak tempuhmu berbeda.", + "macInstructionsTextScale": 0.7, + "ouyaInstructionsText": "Untuk menggunakan kontroller PS3mu dengan OUYA, hubungkan saja dengan kabel USB\nsekali untuk memasangkannya. Melakukan ini akan memutuskan pengontrol yang lain, jadi\nKamu harus mengulang OUYA-mu dan cabut kabel USB.\n\nSekarang kamu seharusnya dapat menggunakan pengontrol untuk\nmenghubungkannya dengan jaringan. Ketika kamu sudah selesai bermain, tekan tombol HOME\nselama 10 detik untuk mematikan pengontrol; jika itu tetap menyala\nmaka bateraimu akan terkuras habis.", + "ouyaInstructionsTextScale": 0.7, "pairingTutorialText": "memasangkan video petunjuk", - "titleText": "Menggunakan Kontroller PS3 dengan ${APP_NAME}:" + "titleText": "Menggunakan Pengontrol PS3 dengan ${APP_NAME}:" }, "punchBoldText": "PUKUL", "punchText": "Pukul", "purchaseForText": "Membeli dengan ${PRICE}", "purchaseGameText": "Membeli Game", + "purchaseNeverAvailableText": "Maaf, pembelian tidak tersedia pada versi ini.\nCoba masuk ke akun kamu di platform lain dan lakukan pembelian dari sana.", + "purchaseNotAvailableText": "Pembelian ini tidak tersedia.", "purchasingText": "Membeli...", "quitGameText": "Keluar ${APP_NAME}?", "quittingIn5SecondsText": "Keluar dalam 5 detik...", @@ -1182,10 +1230,10 @@ "randomText": "Acak", "rankText": "Peringkat", "ratingText": "Nilai", - "reachWave2Text": "Raih gelombang 2 untuk dapat peringkat", - "readyText": "Siap", + "reachWave2Text": "Raih gelombang 2 untuk dapat peringkat.", + "readyText": "siap", "recentText": "Terbaru", - "remoteAppInfoShortText": "${APP_NAME} akan menyenangkan ketika dimainkan dengan keluarga & teman.\nHubungkan satu atau lebih kontroller atau install app\n${REMOTE_APP_NAME} pada ponsel atau tablet untuk menggunakannya\nsebagai kontroller.", + "remoteAppInfoShortText": "${APP_NAME} akan menyenangkan ketika dimainkan dengan keluarga & teman.\nHubungkan satu atau lebih pengontrol atau pasang apl.\n${REMOTE_APP_NAME} pada ponsel atau tablet untuk menggunakannya\nsebagai pengontrol.", "remote_app": { "app_name": "Remot BombSquad", "app_name_short": "RemotBS", @@ -1195,7 +1243,7 @@ "capturing": "Menangkap…", "connected": "Terhubung.", "description": "Gunakan ponsel atau tabletmu sebagai pengontrol BombSquad.\nLebih dari 8 perangkat dapat terhubung sekaligus untuk keseruan multipemain lokal yang epik di sebuah TV atau tablet", - "disconnected": "Diputus server", + "disconnected": "Diputus oleh server.", "dpad_fixed": "tetap", "dpad_floating": "mengambang", "dpad_position": "Posisi D-Pad", @@ -1203,7 +1251,7 @@ "dpad_type": "Tipe D-Pad", "enter_an_address": "Masukkan Alamat", "game_full": "Permainan sudah penuh atau tidak menerima koneksi.", - "game_shut_down": "Permainan sudah berakhir", + "game_shut_down": "Permainan sudah berakhir.", "hardware_buttons": "Tombol Perangkat keras", "join_by_address": "Masuk pakai Alamat...", "lag": "Lag: ${SECONDS} detik", @@ -1211,32 +1259,33 @@ "run1": "Lari 1", "run2": "Lari 2", "searching": "Mencari BombSquad...", - "searching_caption": "Ketuk nama permainan yang kamu inginkan.\nPastikan Kamu berada di jaringan wifi yang sama dengan permainan tersebut.", + "searching_caption": "Ketuk nama permainan yang kamu ingin bergabung.\nPastikan kamu berada di jaringan wifi yang sama dengan permainan tersebut.", "start": "Mulai", "version_mismatch": "Versi tidak sama.\nPastikan kamu menggunakan BombSquad dan Remot BombSquad\ndengan versi terbaru dan coba lagi." }, - "removeInGameAdsText": "Buka \"${PRO}\" di toko untuk menghilangkan iklan game", + "removeInGameAdsText": "Buka \"${PRO}\" di toko untuk menghilangkan iklan game.", + "removeInGameAdsTokenPurchaseText": "PENAWARAN WAKTU TERBATAS: Beli paket token APAPUN untuk menghapus iklan dalam game.", "renameText": "Mengubah Nama", "replayEndText": "Akhiri Replay", - "replayNameDefaultText": "Replay Game Terakhir", - "replayReadErrorText": "Error membaca file replay.", - "replayRenameWarningText": "Ubah nama \"${REPLAY}\" setelah game jika Kamu ingin menyimpannya; jika tidak itu akan ditimpa.", - "replayVersionErrorText": "Maaf, replay ini dibuat dalam\nversi game yang berbeda dan tidak dapat digunakan", + "replayNameDefaultText": "Replay Permainan Terakhir", + "replayReadErrorText": "Kesalahan membaca file replay.", + "replayRenameWarningText": "Ubah nama \"${REPLAY}\" setelah permainan jika kamu ingin menyimpannya; jika tidak itu akan ditimpa.", + "replayVersionErrorText": "Maaf, replay ini dibuat dalam\nversi game yang berbeda dan tidak dapat digunakan.", "replayWatchText": "Nonton Replay", - "replayWriteErrorText": "Error menulis file replay", + "replayWriteErrorText": "Kesalahan menulis file replay.", "replaysText": "Replay", "reportPlayerExplanationText": "Gunakan alamat surel ini untuk melaporkan tindakan curang, kata-kata yang tidak pantas, atau kelakuan buruk lainnya.\nTolong jelaskan dibawah ini:", "reportThisPlayerCheatingText": "Curang", "reportThisPlayerLanguageText": "Bahasa Yang Tidak Pantas", - "reportThisPlayerReasonText": "Apa yang ingin Kamu laporkan?", - "reportThisPlayerText": "Laporkan pemain ini", + "reportThisPlayerReasonText": "Apa yang ingin kamu laporkan?", + "reportThisPlayerText": "Laporkan Pemain Ini", "requestingText": "Meminta...", "restartText": "Ulangi", "retryText": "Ulangi", "revertText": "Kembali", "runText": "Lari", "saveText": "Simpan", - "scanScriptsErrorText": "Kesalahan saat memindai skrip; lihat log untuk detailnya.", + "scanScriptsErrorText": "Kesalahan saat memindai skrip. Lihat log untuk detailnya.", "scanScriptsMultipleModulesNeedUpdatesText": "${PATH} dan ${NUM} modul lain perlu di perbaharui untuk api ${API}.", "scanScriptsSingleModuleNeedsUpdatesText": "${PATH} perlu di perbaharui untuk api ${API}.", "scoreChallengesText": "Tantangan Skor", @@ -1249,6 +1298,7 @@ }, "scoreWasText": "(adalah ${COUNT})", "selectText": "Pilih", + "sendInfoDescriptionText": "Mengirimkan informasi akun dan status aplikasi ke pengembang.\nHarap sertakan nama atau alasan pengiriman Anda.", "seriesWinLine1PlayerText": "MEMENANGKAN", "seriesWinLine1TeamText": "MEMENANGKAN", "seriesWinLine1Text": "MEMENANGKAN", @@ -1264,37 +1314,43 @@ "titleText": "Pengaturan" }, "settingsWindowAdvanced": { - "alwaysUseInternalKeyboardDescriptionText": "(keyboard dari BombSquad)", - "alwaysUseInternalKeyboardText": "Gunakan Keyboard Internal", - "benchmarksText": "Tes Stres dan Benchmark", - "disableCameraGyroscopeMotionText": "Nonaktikan Gerakkan Kamera Giroskop", - "disableCameraShakeText": "Nonaktifkan Gerakkan Kamera", - "disableThisNotice": "(Kamu dapat matikan peringatan ini di pengaturan tambahan)", + "alwaysUseInternalKeyboardDescriptionText": "(simpel, bersahabat dengan pengontrol keyboard pada layar untuk mengubah teks)", + "alwaysUseInternalKeyboardText": "Selalu gunakan keyboard internal", + "benchmarksText": "Uji Coba Stres & Benchmark", + "devToolsText": "Alat Pengembang", + "disableCameraGyroscopeMotionText": "Nonaktifkan gerakan giroskop kamera", + "disableCameraShakeText": "Nonaktifkan goyangan kamera", + "disableThisNotice": "(kamu dapat matikan peringatan ini di pengaturan tambahan)", "enablePackageModsDescriptionText": "(menyalakan kapabilitas modding ekstra menyebabkan kamu tidak dapat bermain di internet)", "enablePackageModsText": "Izinkan Paket Mod Lokal", "enterPromoCodeText": "Masukkan Kode", - "forTestingText": "NB: jumlah ini hanya untuk tes dan akan hilang saat keluar", - "helpTranslateText": "Terjemahan ${APP_NAME} selain Bahasa Inggris adalah bantuan \nkomunitas. Jika Kamu ingin membantu atau mengoreksi berkas\nterjemahan, silahkan masuk ke situs berikut. Terima kasih!", - "kickIdlePlayersText": "Keluarkan Pemain Diam", + "forTestingText": "NB: jumlah ini hanya untuk uji coba dan akan hilang saat aplikasi keluar.", + "helpTranslateText": "Terjemahan ${APP_NAME} selain Bahasa Inggris adalah bantuan \nkomunitas. Jika kamu ingin membantu atau mengoreksi berkas\nterjemahan, silahkan masuk ke situs berikut. Terima kasih!", + "insecureConnectionsDescriptionText": "tidak disarankan, tapi memungkinkan bermain daring\ndalam negara atau jaringan yang dibatasi", + "insecureConnectionsText": "Gunakan koneksi tidak aman", + "kickIdlePlayersText": "Mengeluarkan pemain yang menganggur", "kidFriendlyModeText": "Mode Dibawah Umur (kekerasan rendah, dll)", "languageText": "Bahasa", "moddingGuideText": "Cara Me-Modding", + "moddingToolsText": "Alat Modding", "mustRestartText": "Kamu harus memulai ulang permainan untuk menerapkan perubahan.", - "netTestingText": "Tes Jaringan", - "resetText": "Atur ulang", + "netTestingText": "Uji Coba Jaringan", + "resetText": "Atur Ulang", + "sendInfoText": "Kirim Info", "showBombTrajectoriesText": "Lihat Lintasan Bom", - "showDemosWhenIdleText": "Tampilkan Demo saat tidak bergerak", - "showDevConsoleButtonText": "Tampilkan tombol Dev Console", - "showInGamePingText": "Tampilkan Ping dalam permainan", + "showDemosWhenIdleText": "Tampilkan demo saat menganggur", + "showDeprecatedLoginTypesText": "Tampilkan jenis login yang tidak digunakan lagi", + "showDevConsoleButtonText": "Tampilkan tombol konsol pengembang", + "showInGamePingText": "Tampilkan ping dalam permainan", "showPlayerNamesText": "Tunjukkan Nama Pemain", "showUserModsText": "Lihat Folder Mod", "titleText": "Lanjutan", "translationEditorButtonText": "Penyunting Translasi ${APP_NAME}", - "translationFetchErrorText": "status translasi tidak tersedia.", + "translationFetchErrorText": "status terjemahan tidak tersedia.", "translationFetchingStatusText": "memeriksa status terjemahan...", - "translationInformMe": "Beritahu saya jika bahasa yang saya gunakan harus diperbarui", - "translationNoUpdateNeededText": "Bahasa saat ini sudah yang terbaru; woohoo!", - "translationUpdateNeededText": "** bahasa ini perlu diperbaharui! **", + "translationInformMe": "Beritahu saya jika bahasa yang saya gunakan harus diperbaharui", + "translationNoUpdateNeededText": "Bahasa saat ini adalah yang terkini; Woohoo!", + "translationUpdateNeededText": "** Bahasa saat ini perlu diperbaharui!! **", "vrTestingText": "Percobaan VR" }, "shareText": "Bagikan", @@ -1304,6 +1360,9 @@ "signInWithGameCenterText": "Untuk menggunakan akun Game Center,\nmasuk ke Game Center dahulu.", "singleGamePlaylistNameText": "Hanya ${GAME}", "singlePlayerCountText": "1 pemain", + "sizeLargeText": "Besar", + "sizeMediumText": "Sedang", + "sizeSmallText": "Kecil", "soloNameFilterText": "Solo ${NAME}", "soundtrackTypeNames": { "CharSelect": "Pemilihan Karakter", @@ -1317,7 +1376,7 @@ "GrandRomp": "Penaklukan", "Hockey": "Hoki", "Keep Away": "Menjauh", - "Marching": "Bolak-Balik", + "Marching": "Berlarian", "Menu": "Menu Utama", "Onslaught": "Pembantaian", "Race": "Balapan", @@ -1329,6 +1388,7 @@ }, "spaceKeyText": "spasi", "statsText": "Statistik", + "stopRemindingMeText": "Berhenti mengingatkan ku", "storagePermissionAccessText": "Ini membutuhkan akses penyimpanan", "store": { "alreadyOwnText": "Kamu sudah punya ${NAME}!", @@ -1340,8 +1400,8 @@ "extrasText": "Extra", "freeBombSquadProText": "BombSquad sekarang gratis, karena dulu Kamu membelinya\nKamu mendapat tingkatan BombSquad Pro dan ${COUNT} tiket sebagai ucapan terima kasih.\nNikmati fitur barunya, dan terima kasih atas dukungannya!\n-Eric", "holidaySpecialText": "Spesial Liburan", - "howToSwitchCharactersText": "pergi ke \"${SETTINGS} -> ${PLAYER_PROFILES}\" untuk mengubah karakter", - "howToUseIconsText": "(Buatlah profil pemain global (dalam jendela akun) untuk menggunakan ini)", + "howToSwitchCharactersText": "(pergi ke \"${SETTINGS} -> ${PLAYER_PROFILES}\" untuk mengubah karakter)", + "howToUseIconsText": "(buatlah profil pemain global (dalam jendela akun) untuk menggunakan ini)", "howToUseMapsText": "(gunakan peta ini di tim/daftar putar bebasmu)", "iconsText": "Simbol", "loadErrorText": "Tidak dapat memuat halaman.\nCek koneksi internetmu.", @@ -1351,7 +1411,7 @@ "oneTimeOnlyText": "(sekali saja)", "purchaseAlreadyInProgressText": "Pembelian barang ini sedang dalam proses.", "purchaseConfirmText": "Beli ${ITEM}?", - "purchaseNotValidError": "Pembelian tidak valid.\nHubungi ${EMAIL} jika ini adalah error.", + "purchaseNotValidError": "Pembelian tidak valid.\nHubungi ${EMAIL} jika ini adalah kesalahan.", "purchaseText": "Membeli", "saleBundleText": "Paket Promo!", "saleExclaimText": "Dijual!", @@ -1362,9 +1422,9 @@ "totalWorthText": "*** ${TOTAL_WORTH} nilai! ***", "upgradeQuestionText": "Tingkatkan?", "winterSpecialText": "Spesial Musim Dingin", - "youOwnThisText": "- Kamu sudah memiliki ini -" + "youOwnThisText": "- kamu sudah memiliki ini -" }, - "storeDescriptionText": "Permainan dengan 8 pemain!\n\nLedakkan temanmu (atau komputer) dalam turnamen ledakkan seperti Ambil-Bendera, Bom-Hoki, dan Pertarungan-Mematikan-Epik-Gerakkan-Lambat\n\nDukungan pengontrol Sederhana dan pengontrol luas membuatnya mudah untuk 8 orang untuk beraksi; Kamu juga dapat menggunakan perangkat ponselmu sebagai pengontrol dengan aplikasi ‘BombSquad Remote’!\n\nAwas Bom!\n\nKunjungi www.froemling.net/bombsquad untuk informasi lebih lanjut.", + "storeDescriptionText": "Permainan dengan 8 pemain!\n\nLedakkan temanmu (atau komputer) dalam turnamen ledakkan seperti Ambil-Bendera, Bom-Hoki, dan Pertarungan-Mematikan-Epik-Gerakkan-Lambat\n\nDukungan pengontrol Sederhana dan pengontrol luas membuatnya mudah untuk 8 orang untuk beraksi; kamu juga dapat menggunakan perangkat ponselmu sebagai pengontrol dengan aplikasi ‘BombSquad Remote’!\n\nAwas Bom!\n\nKunjungi www.froemling.net/bombsquad untuk informasi lebih lanjut.", "storeDescriptions": { "blowUpYourFriendsText": "Meledakkan temanmu.", "competeInMiniGamesText": "Bersaing dalam mini-game mulai dari balapan sampai terbang.", @@ -1378,34 +1438,49 @@ "submittingPromoCodeText": "Menyerahkan Kode ...", "successText": "Sukses!", "supportEmailText": "Jika kamu mengalami masalah apa pun pada\naplikasi, mohon segera kirim email ${EMAIL}.", - "teamNamesColorText": "Nama Tim / Warna ...", + "teamNamesColorText": "Nama Tim / Warna...", "telnetAccessGrantedText": "Akses telnet aktif.", "telnetAccessText": "Akses telnet terdekteksi; izinkan?", "testBuildErrorText": "Percobaan ini tidak aktif lagi; tolong cek versi barunya.", "testBuildText": "Percobaan", - "testBuildValidateErrorText": "Tidak dapat mengesahkan percobaan. (Tidak tersedia koneksi internet?)", + "testBuildValidateErrorText": "Tidak dapat mengesahkan percobaan. (tak tersedia koneksi internet?)", "testBuildValidatedText": "Percobaan Sah; Nikmati!", - "thankYouText": "Terima kasih atas dukungan mu! Nikmati gamenya!!", - "threeKillText": "KEJAM ! 3 TERBUNUH", + "thankYouText": "Terima kasih atas dukunganmu! Nikmati permainannya!!", + "threeKillText": "3 TERBUNUH!!", + "ticketsDescriptionText": "Tiket dapat digunakan untuk membuka kunci karakter,\npeta, minigame, dan lainnya di toko.\n\nTiket dapat ditemukan di peti yang dimenangkan\nkampanye, turnamen, dan prestasi.", "timeBonusText": "Bonus Waktu", "timeElapsedText": "Waktu Berlalu", - "timeExpiredText": "Berakhir", + "timeExpiredText": "Waktu Berakhir", "timeSuffixDaysText": "${COUNT}h", "timeSuffixHoursText": "${COUNT}j", "timeSuffixMinutesText": "${COUNT}m", "timeSuffixSecondsText": "${COUNT}d", "tipText": "Petunjuk", - "titleText": "BomSquad", + "titleText": "BombSquad", "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "Dapatkan Token", + "notEnoughTokensText": "Token tidak cukup!", + "numTokensText": "${COUNT} Token", + "openNowDescriptionText": "Kamu punya token yang\nCukup untuk membukanya \n-Kamu tidak perlu menunggu.", + "shinyNewCurrencyText": "Mata uang baru BombSquad yang berkilauan.", + "tokenPack1Text": "Token Kemasan Kecil", + "tokenPack2Text": "Token Kemasan Sedang", + "tokenPack3Text": "Token Kemasan Besar", + "tokenPack4Text": "Token Kemasan Jumbo", + "tokensDescriptionText": "Token digunakan untuk mempercepat pembukaan peti\ndan untuk fitur game dan akun lainnya.\n\nAnda dapat memenangkan token dalam game atau membelinya dalam kemasan.\nAtau beli Tiket Emas tanpa batas token\ndan tidak pernah mendengarnya lagi.", + "youHaveGoldPassText": "Kamu mempunyai Tiket Emas.\nSemua pembelian token gratis.\nSelamat menikmati!" + }, "topFriendsText": "Teman Terbaik", "tournamentCheckingStateText": "Memeriksa keadaan turnamen; harap tunggu...", - "tournamentEndedText": "Turnamen sudah berakhir. Turnamen yang baru akan mulai segera.", + "tournamentEndedText": "Turnamen sudah berakhir. Turnamen yang baru akan segera dimulai.", "tournamentEntryText": "Biaya Masuk Turnamen", + "tournamentFinalStandingsText": "Klasemen Akhir", "tournamentResultsRecentText": "Hasil Turnamen Terbaru", "tournamentStandingsText": "Hasil Terbaik Turnamen", "tournamentText": "Turnamen", "tournamentTimeExpiredText": "Waktu Turnamen Berakhir", - "tournamentsDisabledWorkspaceText": "Turnamen telah dinonaktifkan saat workspace(plugin/mod) aktif.\nUntuk mengaktifkan turnamen kembali, nonaktifkan dulu workspace anda dan mulai ulang gamenya.", + "tournamentsDisabledWorkspaceText": "Turnamen telah dinonaktifkan saat workspace(plugin/mod) aktif.\nUntuk mengaktifkan turnamen kembali, nonaktifkan dulu workspace kamu dan mulai ulang.", "tournamentsText": "Turnamen", "translations": { "characterNames": { @@ -1434,7 +1509,7 @@ "Spaz": "Spaz", "Taobao Mascot": "Maskot Taobao", "Todd": "Todd", - "Todd McBurton": "Rambo", + "Todd McBurton": "Todd McBurton", "Xara": "Xara", "Zoe": "Zoe", "Zola": "Zola" @@ -1443,9 +1518,9 @@ "${GAME} Training": "Latihan ${GAME}", "Infinite ${GAME}": "${GAME} Tanpa Batas", "Infinite Onslaught": "Pembantaian Tanpa Batas", - "Infinite Runaround": "Penjaga Tanpa Batas", + "Infinite Runaround": "Berlarian Tanpa Batas", "Onslaught Training": "Latihan Pembantaian", - "Pro ${GAME}": "${GAME} Profesional", + "Pro ${GAME}": "${GAME} Ahli", "Pro Football": "Rugby Ahli", "Pro Onslaught": "Pembantaian Ahli", "Pro Runaround": "Penjaga Ahli", @@ -1453,10 +1528,22 @@ "Rookie Football": "Rugby Pemula", "Rookie Onslaught": "Pembantaian Pemula", "The Last Stand": "Usaha Terakhir", - "Uber ${GAME}": "${GAME} Master", + "Uber ${GAME}": "${GAME} Uber", "Uber Football": "Rugby Uber", "Uber Onslaught": "Pembantaian Uber", - "Uber Runaround": "Master Penjaga" + "Uber Runaround": "Penjaga Uber" + }, + "displayItemNames": { + "${C} Tickets": "${C} Tiket", + "${C} Tokens": "${C} Token", + "Chest": "Peti", + "L1 Chest": "Peti Level 1", + "L2 Chest": "Peti Level 2", + "L3 Chest": "Peti Level 3", + "L4 Chest": "Peti Level 4", + "L5 Chest": "Peti Level 5", + "L6 Chest": "Peti Level 6", + "Unknown Chest": "Peti Misterius" }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Jadilah 'yang terpilih' dalam waktu yang ditentukan.\nBunuh 'yang terpilih' untuk menjadi 'yang terpilih'.", @@ -1469,26 +1556,26 @@ "Final glorious epic slow motion battle to the death.": "Pertarungan slow motion epik hingga kematian menjemput.", "Gather eggs!": "Kumpulkan telur!", "Get the flag to the enemy end zone.": "Bawa bendera sampai ujung lapangan.", - "How fast can you defeat the ninjas?": "Secepat apa kamu bisa mengalahkan para ninja?", + "How fast can you defeat the ninjas?": "Secepat apa kamu bisa kalahkan para ninja?", "Kill a set number of enemies to win.": "Hancurkan sejumlah musuh.", "Last one standing wins.": "Terakhir hidup menang.", "Last remaining alive wins.": "Terakhir hidup menang.", - "Last team standing wins.": "Habisi tim lawan.", + "Last team standing wins.": "Tim terakhir hidup menang.", "Prevent enemies from reaching the exit.": "Tahan musuh jangan sampai finish.", "Reach the enemy flag to score.": "Sentuh bendera lawan untuk skor.", - "Return the enemy flag to score.": "Kembalikan bendera musuh untuk menskor.", + "Return the enemy flag to score.": "Kembalikan bendera musuh untuk mencetak skor.", "Run ${ARG1} laps.": "Lari ${ARG1} putaran.", "Run ${ARG1} laps. Your entire team has to finish.": "Lari ${ARG1} putaran. Seluruh tim harus mencapai finish.", "Run 1 lap.": "Lari 1 putaran.", "Run 1 lap. Your entire team has to finish.": "Lari 1 putaran. Seluruh tim harus mencapai finish.", - "Run real fast!": "Lari! Ada Anjing!", + "Run real fast!": "Lari dengan cepat!", "Score ${ARG1} goals.": "Masukan ${ARG1} gol.", "Score ${ARG1} touchdowns.": "Cetak ${ARG1} touchdown.", "Score a goal.": "Cetak 1 Gol.", "Score a touchdown.": "Cetak 1 touchdown.", "Score some goals.": "Cetak beberapa gol.", "Secure all ${ARG1} flags.": "Amankan ${ARG1} bendera.", - "Secure all flags on the map to win.": "Amankan semua bendera di arena untuk menang.", + "Secure all flags on the map to win.": "Amankan semua bendera di peta untuk menang.", "Secure the flag for ${ARG1} seconds.": "Amankan bendera selama ${ARG1} detik.", "Secure the flag for a set length of time.": "Amankan bendera selama waktu yang ditentukan.", "Steal the enemy flag ${ARG1} times.": "Curi bendera musuh ${ARG1} kali.", @@ -1497,9 +1584,9 @@ "Touch the enemy flag ${ARG1} times.": "Sentuh bendera musuh ${ARG1} kali.", "Touch the enemy flag.": "Sentuh bendera musuh.", "carry the flag for ${ARG1} seconds": "bawa bendera selama ${ARG1} detik", - "kill ${ARG1} enemies": "Bunuh ${ARG1} musuh.", + "kill ${ARG1} enemies": "bunuh ${ARG1} musuh", "last one standing wins": "terakhir hidup menang", - "last team standing wins": "habisi tim lawan", + "last team standing wins": "tim terakhir hidup menang", "return ${ARG1} flags": "kembalikan ${ARG1} bendera", "return 1 flag": "kembalikan 1 bendera", "run ${ARG1} laps": "lari ${ARG1} putaran", @@ -1519,7 +1606,7 @@ "Chosen One": "Yang Terpilih", "Conquest": "Penguasaan", "Death Match": "Pertarungan Kematian", - "Easter Egg Hunt": "Memburu Easter Egg", + "Easter Egg Hunt": "Memburu Telur Paskah", "Elimination": "Eliminasi", "Football": "Rugby", "Hockey": "Hoki", @@ -1528,8 +1615,8 @@ "Meteor Shower": "Hujan Meteor", "Ninja Fight": "Perang Ninja", "Onslaught": "Pembantaian", - "Race": "Balap Liar", - "Runaround": "Jangan Kabur", + "Race": "Balapan", + "Runaround": "Berlarian", "Target Practice": "Sasaran Tembak", "The Last Stand": "Penyintas Terakhir" }, @@ -1540,8 +1627,8 @@ "languages": { "Arabic": "Arab", "Belarussian": "Belarusia", - "Chinese": "Mandarin (disederhanakan)", - "ChineseTraditional": "Cina tradisional", + "Chinese": "Mandarin (disederhanakan) ", + "ChineseTraditional": "Mandarin Tradisional", "Croatian": "Kroasia", "Czech": "Ceko", "Danish": "Denmark", @@ -1562,6 +1649,7 @@ "Korean": "Korea", "Malay": "Bahasa Malaysia", "Persian": "Persia", + "PirateSpeak": "Omongan Bajak Laut", "Polish": "Polandia", "Portuguese": "Portugis", "Romanian": "Romania", @@ -1587,7 +1675,7 @@ "Big G": "G Besar", "Bridgit": "Jembatan", "Courtyard": "Tempat Pengadilan", - "Crag Castle": "Kastil karang", + "Crag Castle": "Kastil Karang", "Doom Shroom": "Jamur Gelap", "Football Stadium": "Stadion Rugby", "Happy Thoughts": "Pikiran Bahagia", @@ -1615,72 +1703,87 @@ "Time Held": "Lama Kuasa" }, "serverResponses": { - "A code has already been used on this account.": "Sebuah kode sudah digunakan pada aku ini.", + "A code has already been used on this account.": "Sebuah kode sudah digunakan pada akun ini.", "A reward has already been given for that address.": "Hadiah telah diberikan ke alamat tersebut.", "Account linking successful!": "Berhasil menghubungkan akun!", "Account unlinking successful!": "Pemutusan akun berhasil!", "Accounts are already linked.": "Akun sudah dihubungkan.", - "Ad view could not be verified.\nPlease be sure you are running an official and up-to-date version of the game.": "Menonton iklan tidak dapat diverifikasi.\nPastikan Anda menjalankan versi game yang resmi dan terbaru.", + "Ad view could not be verified.\nPlease be sure you are running an official and up-to-date version of the game.": "Menonton iklan tidak dapat diverifikasi.\nPastikan kamu menjalankan versi game yang resmi dan terbaru.", "An error has occurred; (${ERROR})": "Sebuah kesalahan telah terjadi; (${ERROR})", "An error has occurred; please contact support. (${ERROR})": "Sebuah kesalahan telah terjadi; tolong hubungi dukungan. (${ERROR})", - "An error has occurred; please contact support@froemling.net.": "Sebuah error telah terjadi; tolong hubungi support@froemling.net.", - "An error has occurred; please try again later.": "Sebuah error telah terjadi; mohon coba lagi nanti.", + "An error has occurred; please contact support@froemling.net.": "Sebuah kesalahan telah terjadi; tolong hubungi support@froemling.net.", + "An error has occurred; please try again later.": "Sebuah kesalahan telah terjadi; mohon coba lagi nanti.", "Are you sure you want to link these accounts?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\nThis cannot be undone!": "Kamu yakin ingin menghubungkan akun ini?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\nIni tidak dapat ditunda!", "BombSquad Pro unlocked!": "BombSquad Pro terbuka!", - "Can't link 2 accounts of this type.": "Tidak dapat menghubungkan 2 tipe akun ini.", + "Can't link 2 accounts of this type.": "Tidak dapat menghubungkan 2 akun dari tipe ini.", "Can't link 2 diamond league accounts.": "Tidak dapat menghubungkan 2 akun liga berlian.", "Can't link; would surpass maximum of ${COUNT} linked accounts.": "Tidak dapat menghubungkan; akan melampaui batas maksimum ${COUNT} akun yang dihubungkan.", - "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Kecurangan terdeteksi; skor dan hadiah ditahan selama ${COUNT} hari", + "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Kecurangan terdeteksi; skor dan hadiah ditahan selama ${COUNT} hari.", "Could not establish a secure connection.": "Tidak dapat menyeimbangkan koneksi yang aman.", "Daily maximum reached.": "Batas maksimal tercapai.", + "Daily sign-in reward": "Hadiah masuk harian", "Entering tournament...": "Memasuki turnamen...", - "Invalid code.": "Kode Salah", + "Invalid code.": "Kode salah.", "Invalid payment; purchase canceled.": "Pembayaran tidak valid; pembelian dibatalkan.", - "Invalid promo code.": "Promo kode salah.", + "Invalid promo code.": "Kode promo salah.", "Invalid purchase.": "Pembelian tidak valid.", "Invalid tournament entry; score will be ignored.": "Masukkan turnamen tidak valid; skor akan diabaikan.", "Item unlocked!": "Item dibuka!", - "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "PENAUTAN DITOLAK. ${ACCOUNT} berisi\ndata penting yang SEMUANYA AKAN HILANG.\nKamu dapat menautkannya dalam urutan yang berlawanan jika Kamu mau\n(dan kehilangan data akun INI sebagai gantinya)", + "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "PENAUTAN DITOLAK. ${ACCOUNT} berisi\ndata penting yang SEMUANYA AKAN HILANG.\nKamu dapat menautkannya dalam urutan yang berlawanan jika kamu mau\n(dan kehilangan data akun INI sebagai gantinya)", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "Menghubungkan akun ${ACCOUNT} ke akun ini?\nSemua data yang ada di ${ACCOUNT} akan hilang.\nIni tidak dapat dibatalkan. Apa kamu yakin?", + "Longer streaks lead to better rewards.": "Kemenangan yang lebih panjang akan menghasilkan hadiah yang lebih baik.", "Max number of playlists reached.": "Batas maksimum daftar putar tercapai.", "Max number of profiles reached.": "Batas maksimum profil tercapai.", "Maximum friend code rewards reached.": "Batas maksimum hadiah kode teman tercapai.", "Message is too long.": "Pesan terlalu panjang.", - "No servers are available. Please try again soon.": "Tidak ada server yang Tersedia. silakan coba lagi nanti", + "New tournament result!": "Hasil turnamen baru!", + "No servers are available. Please try again soon.": "Tidak ada server yang tersedia. Silahkan coba lagi nanti.", + "No slots available. Free a slot and try again.": "Tidak ada slot tersedia. Kosongkan slot dan coba lagi.", "Profile \"${NAME}\" upgraded successfully.": "Profil \"${NAME}\" berhasil ditingkatkan.", - "Profile could not be upgraded.": "Profile tidak dapat di tingkatkan.", + "Profile could not be upgraded.": "Profil tidak dapat di tingkatkan.", "Purchase successful!": "Pembelian sukses!", "Received ${COUNT} tickets for signing in.\nCome back tomorrow to receive ${TOMORROW_COUNT}.": "Menerima ${COUNT} tiket untuk masuk.\nSilahkan kembali besok untuk menerima ${TOMORROW_COUNT}.", "Server functionality is no longer supported in this version of the game;\nPlease update to a newer version.": "Server tidak lagi mendukung permainan dengan versi ini;\nSilahkan perbarui ke versi yang lebih baru.", "Sorry, there are no uses remaining on this code.": "Maaf, kode ini tidak dapat dipakai lagi", - "Sorry, this code has already been used.": "Maaf,kode ini sudah digunakan", + "Sorry, this code has already been used.": "Maaf, kode ini sudah digunakan.", "Sorry, this code has expired.": "Maaf, kode ini sudah kadaluarsa.", "Sorry, this code only works for new accounts.": "Maaf, kode ini hanya berlaku untuk akun baru.", - "Still searching for nearby servers; please try again soon.": "Masih mencari server terdekat; silahkan coba lagi nanti", - "Temporarily unavailable; please try again later.": "Sedang tidak ada; mohon coba lagi nanti.", - "The tournament ended before you finished.": "Turnamen berakhir sebelum Kamu selesai.", + "Sorry, this has expired.": "Maaf, ini sudah kadaluarsa.", + "Still searching for nearby servers; please try again soon.": "Masih mencari server terdekat; silahkan coba lagi nanti.", + "Streak: ${NUM} days": "Beruntun: ${NUM} hari", + "Temporarily unavailable; please try again later.": "Sementara tidak tersedia; mohon coba lagi nanti.", + "The tournament ended before you finished.": "Turnamen berakhir sebelum kamu selesai.", "This account cannot be unlinked for ${NUM} days.": "Akun ini tidak dapat diputuskan untuk ${NUM} hari.", "This code cannot be used on the account that created it.": "Kode ini tidak dapat dipakai di akun yang membuatnya.", - "This is currently unavailable; please try again later.": "Ini saat ini tidak tersedia; silahkan coba lagi nanti.", - "This requires version ${VERSION} or newer.": "Ini membutuhkan versi ${VERSION} atau versi yang baru.", - "Tournaments disabled due to rooted device.": "Turnamen dinonaktifkan karena perangkat yang di-rooting.", + "This is currently unavailable; please try again later.": "Saat ini tidak tersedia; silahkan coba lagi nanti.", + "This requires version ${VERSION} or newer.": "Ini membutuhkan versi ${VERSION} atau yang lebih baru.", + "Tournaments disabled due to rooted device.": "Turnamen dinonaktifkan karena perangkat telah di-rooting.", "Tournaments require ${VERSION} or newer": "Turnamen membutuhkan ${VERSION} atau lebih baru", - "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "Memutus ${ACCOUNT} dari akun ini?\nSemua data dari ${ACCOUNT} akan disetel ulang.\n(kecuali penghargaan di beberapa kasus)", - "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "PERINGATAN: keluhan tentang kecurangan telah diajukan terhadap akun Kamu.\nAkun yang ditemukan curang akan dilarang. Silakan bermain adil.", - "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "Apakah Kamu mau menghubungkan akun perangkatmu dengan yang ini>\n\nAkun perangkatmu adalah ${ACCOUNT1}\nAkun ini adalah ${ACCOUNT2}\n\nIni akan mengizinkanmu untuk menyimpan datamu.\nPeringatan: ini tidak dapat dibatalkan!", + "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "Memutus ${ACCOUNT} dari akun ini?\nSemua data dari ${ACCOUNT} akan disetel ulang.\n(kecuali untuk pencapaian di beberapa kasus)", + "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "PERINGATAN: keluhan tentang kecurangan telah diajukan terhadap akun kamu.\nAkun yang ditemukan curang akan dilarang. Mohon bermain adil.", + "Wait reduced!": "Waktu menunggu dikurangi!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "Peringatan: Versi game ini terbatas hanya ke data akun lama; beberapa hal mungkin tidak ada atau terlihat jadul.\nMohon untuk perbarui ke versi terbaru untuk melihat data baru akunmu.", + "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "Apakah kamu mau menghubungkan akun perangkatmu dengan yang ini?\n\nAkun perangkatmu adalah ${ACCOUNT1}\nAkun ini adalah ${ACCOUNT2}\n\nIni akan mengizinkanmu untuk menyimpan kemajuanmu.\nPeringatan: ini tidak dapat dibatalkan!", "You already own this!": "Kamu sudah mempunyai ini!", - "You can join in ${COUNT} seconds.": "Kamu dapat bergabung lagi pada ${COUNT} detik", + "You can join in ${COUNT} seconds.": "Kamu dapat bergabung lagi pada ${COUNT} detik.", "You don't have enough tickets for this!": "Kamu tidak mempunyai cukup tiket untuk ini!", "You don't own that.": "Kamu tidak memiliki itu.", "You got ${COUNT} tickets!": "Kamu dapat ${COUNT} tiket!", + "You got ${COUNT} tokens!": "Kamu dapat ${COUNT} token!", "You got a ${ITEM}!": "Kamu dapat ${ITEM}!", + "You got a chest!": "Kamu dapat peti!", + "You got an achievement reward!": "Kamu dapat hadiah pencapaian!", "You have been promoted to a new league; congratulations!": "Kamu dipromosikan ke liga yang baru; selamat!", - "You must update to a newer version of the app to do this.": "Kamu harus perbarui app ke versi yang baru untuk melakukan ini.", + "You lost a chest! (All your chest slots were full)": "Kamu kehilangan peti! (Semua slot petimu penuh)", + "You must update the app to view this.": "Kamu harus perbarui aplikasi agar dapat melihat ini.", + "You must update to a newer version of the app to do this.": "Kamu harus perbarui apl. ke versi yang baru untuk melakukan ini.", "You must update to the newest version of the game to do this.": "Kamu harus memperbaharui ke versi permainan yang lebih baru untuk melakukan ini.", "You must wait a few seconds before entering a new code.": "Kamu harus menunggu beberapa detik sebelum memasukkan kode yang baru.", + "You placed #${RANK} in a tournament!": "Kamu berada di peringkat #${RANK} pada turnamen!", "You ranked #${RANK} in the last tournament. Thanks for playing!": "Kamu peringkat ke #${RANK} pada turnament terakhir. Terima kasih sudah bermain!", - "Your account was rejected. Are you signed in?": "Akunmu ditolak. Apakah Kamu terdaftar?", - "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Salinan gamemu telah dimodifikasi.\nMohon kembalikan perubahan apapun dan coba lagi.", + "Your account was rejected. Are you signed in?": "Akunmu ditolak. Apakah kamu terdaftar?", + "Your ad views are not registering. Ad options will be limited for a while.": "Penayang iklan kamu tidak ter-registrasi. Opsi iklan mungkin terbatas untuk sementara waktu.", + "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Salinan permainan kamu telah dimodifikasi.\nMohon kembalikan perubahan apapun dan coba lagi.", "Your friend code was used by ${ACCOUNT}": "Kode temanmu digunakan oleh ${ACCOUNT}" }, "settingNames": { @@ -1696,38 +1799,38 @@ "Allow Negative Scores": "Izinkan Skor Bernilai Negatif", "Balance Total Lives": "Total Nyawa Seimbang", "Bomb Spawning": "Bom Muncul", - "Chosen One Gets Gloves": "Yang Terpilih Mendapat Sarung Tinju", - "Chosen One Gets Shield": "Terpilih akan mendapatkan perisai", - "Chosen One Time": "Waktu Yang Terpilih", - "Enable Impact Bombs": "Izinkan Dampak Bom", + "Chosen One Gets Gloves": "Yang Terpilih Mendapatkan Sarung Tinju", + "Chosen One Gets Shield": "Yang Terpilih Mendapatkan Perisai", + "Chosen One Time": "Waktu Terpilih", + "Enable Impact Bombs": "Izinkan Bom Bentur", "Enable Triple Bombs": "Izinkan Bom Beruntun", - "Entire Team Must Finish": "Seluruh Tim Harus Melewati Finish", + "Entire Team Must Finish": "Seluruh Tim Harus Mencapai Finish", "Epic Mode": "Mode Epik", - "Flag Idle Return Time": "Waktu Bendera Diam Kembali", + "Flag Idle Return Time": "Waktu Bendera Nganggur Kembali", "Flag Touch Return Time": "Waktu Bendera Sentuh Kembali", "Hold Time": "Waktu Tunggu", "Kills to Win Per Player": "Pembunuhan untuk Para Pemain", - "Laps": "Lap", + "Laps": "Putaran", "Lives Per Player": "Nyawa Tiap Pemain", "Long": "Lama", "Longer": "Lama Sekali", "Mine Spawning": "Ranjau Muncul", "No Mines": "Tidak Ada Ranjau", "None": "Tak Satupun", - "Normal": "Sedang", + "Normal": "Normal", "Pro Mode": "Mode Ahli", - "Respawn Times": "Jeda Hingga Kembali", - "Score to Win": "Skor menang", + "Respawn Times": "Muncul Kembali Hingga", + "Score to Win": "Skor Menang", "Short": "Pendek", - "Shorter": "Pendek sekali", - "Solo Mode": "Mode Solo", + "Shorter": "Pendek Sekali", + "Solo Mode": "Mode Tunggal", "Target Count": "Jumlah Target", - "Time Limit": "Batas waktu" + "Time Limit": "Batas Waktu" }, "statements": { "${TEAM} is disqualified because ${PLAYER} left": "${TEAM} didiskualifikasi karena ${PLAYER} meninggalkan permainan", - "Killing ${NAME} for skipping part of the track!": "Membunuh ${NAME} Karena melewati bagian permainan ini!", - "Warning to ${NAME}: turbo / button-spamming knocks you out.": "Peringatan ke ${NAME}: turbo / tombol-spamming menjatuhkan Kamu." + "Killing ${NAME} for skipping part of the track!": "Membunuh ${NAME} karena melewati bagian permainan ini!", + "Warning to ${NAME}: turbo / button-spamming knocks you out.": "Peringatan ke ${NAME}: turbo / spam tombol menjatuhkanmu." }, "teamNames": { "Bad Guys": "Si Jahat", @@ -1736,50 +1839,50 @@ "Red": "Merah" }, "tips": { - "A perfectly timed running-jumping-spin-punch can kill in a single hit\nand earn you lifelong respect from your friends.": "Lari-lompat-putar-dan pukul yang sempurna dan pada waktu yang tepat dapat\nmembunuh hanya dengan sekali serangan dan dapatkan penghargaan dari temanmu.", + "A perfectly timed running-jumping-spin-punch can kill in a single hit\nand earn you lifelong respect from your friends.": "Lari-lompat-putar-dan pukul yang sempurna dan pada waktu yang tepat dapat\nmembunuh hanya dengan sekali serangan dan dapatkan kehormatan dari temanmu.", "Always remember to floss.": "Selalu ingat untuk buang air.", "Create player profiles for yourself and your friends with\nyour preferred names and appearances instead of using random ones.": "Buat profil pemain untuk teman dan dirimu sendiri dengan\nnama dan penampilan yang kamu sukai daripada menggunakan yang acak.", "Curse boxes turn you into a ticking time bomb.\nThe only cure is to quickly grab a health-pack.": "Kotak Terkutuk membuatmu menjadi bom waktu.\nSatu-satunya obat adalah mencari kotak medis.", "Despite their looks, all characters' abilities are identical,\nso just pick whichever one you most closely resemble.": "Selain penampilannya, semua kemampuan karakter sama,\npilih saja yang cocok untukmu.", - "Don't get too cocky with that energy shield; you can still get yourself thrown off a cliff.": "Jangan terlalu sombong dengan perisai energi; Kamu masih dapat dibuang ke dalam jurang.", - "Don't run all the time. Really. You will fall off cliffs.": "Jangan selalu berlari atau Kamu akan jatuh ke jurang.", - "Don't spin for too long; you'll become dizzy and fall.": "Jangan putar terlalu lama; kamu akan pusing dan jatuh.", + "Don't get too cocky with that energy shield; you can still get yourself thrown off a cliff.": "Jangan terlalu sombong dengan perisai energi; kamu masih dapat dibuang ke dalam jurang.", + "Don't run all the time. Really. You will fall off cliffs.": "Jangan selalu berlari. Beneran nih. Kamu akan jatuh ke jurang.", + "Don't spin for too long; you'll become dizzy and fall.": "Jangan berputar terlalu lama; kamu akan pusing dan jatuh.", "Hold any button to run. (Trigger buttons work well if you have them)": "Tahan tombol apa saja untuk lari.", "Hold down any button to run. You'll get places faster\nbut won't turn very well, so watch out for cliffs.": "Tahan tombol apa saja untuk lari. Kamu akan menjadi lebih cepat\ntapi tidak dapat berbelok dengan lancar, hati-hati dengan jurang.", "Ice bombs are not very powerful, but they freeze\nwhoever they hit, leaving them vulnerable to shattering.": "Bom es tidak cukup kuat, tetapi mereka membekukan\napapun yang mereka kena dan membuat orang mudah dihancurkan.", "If someone picks you up, punch them and they'll let go.\nThis works in real life too.": "Jika seseorang mengangkatmu, pukul dia dan dia akan melepaskanmu.\nIni bekerja didunia nyata juga.", - "If you are short on controllers, install the '${REMOTE_APP_NAME}' app\non your mobile devices to use them as controllers.": "Jika Kamu tidak mempunyai kontroller, pasang app '${REMOTE_APP_NAME}\npada perangkat handphonemu untuk menggunakannya sebagai kontroller.", - "If you get a sticky-bomb stuck to you, jump around and spin in circles. You might\nshake the bomb off, or if nothing else your last moments will be entertaining.": "", - "If you kill an enemy in one hit you get double points for it.": "Jika Kamu membunuh musuh dengan sekali serangan maka Kamu akan mendapat poin ganda.", - "If you pick up a curse, your only hope for survival is to\nfind a health powerup in the next few seconds.": "Jika Kamu mengambil kutukan, satu-satunya harapanmu untuk hidup adalah\nmenemukan kotak medis dalam 5 detik.", - "If you stay in one place, you're toast. Run and dodge to survive..": "Jika Kamu berdiam diri saja, maka Kamu akan tamat. Lari dan menghindar untuk tetap hidup..", - "If you've got lots of players coming and going, turn on 'auto-kick-idle-players'\nunder settings in case anyone forgets to leave the game.": "Jika Kamu mendapatkan banyak pemain yang masuk dan bergabung dalam permainan, aktifkan 'keluarkan pemain diam'\npada pengaturan untuk jaga-jaga jika seseorang lupa meninggalkan permainan.", - "If your device gets too warm or you'd like to conserve battery power,\nturn down \"Visuals\" or \"Resolution\" in Settings->Graphics": "Jika perangkatmu mulai panas atau Kamu mau menghemat baterai,\nturunkan \"Visual\" atau \"Resolusi\" pada Pengaturan->Grafis", + "If you are short on controllers, install the '${REMOTE_APP_NAME}' app\non your mobile devices to use them as controllers.": "Jika Kamu tidak mempunyai pengontrol, pasang apl. '${REMOTE_APP_NAME}\npada perangkat hand phonemu untuk menggunakannya sebagai pengontrol.", + "If you get a sticky-bomb stuck to you, jump around and spin in circles. You might\nshake the bomb off, or if nothing else your last moments will be entertaining.": "Jika bomb lengket menempel padamu, coba melompat-lompat dan berputar secara melingkar. Kamu mungkin\ndapat menyingkirkan bomb itu, atau tidak, momen terakhirmu akan menghibur.", + "If you kill an enemy in one hit you get double points for it.": "Jika kamu membunuh musuh dengan sekali serangan maka kamu akan mendapat poin ganda.", + "If you pick up a curse, your only hope for survival is to\nfind a health powerup in the next few seconds.": "Jika kamu mengambil kutukan, satu-satunya harapanmu untuk hidup adalah\nmenemukan kotak medis dalam 5 detik.", + "If you stay in one place, you're toast. Run and dodge to survive..": "Jika kamu berdiam diri, maka kamu akan tamat. Lari dan menghindar untuk tetap hidup..", + "If you've got lots of players coming and going, turn on 'auto-kick-idle-players'\nunder settings in case anyone forgets to leave the game.": "Jika kamu mendapatkan banyak pemain yang masuk dan bergabung dalam permainan, aktifkan 'otomatis keluarkan pemain nganggur'\npada pengaturan untuk jaga-jaga jika seseorang lupa meninggalkan permainan.", + "If your device gets too warm or you'd like to conserve battery power,\nturn down \"Visuals\" or \"Resolution\" in Settings->Graphics": "Jika perangkatmu mulai panas atau kamu mau menghemat baterai,\nturunkan \"Visual\" atau \"Resolusi\" pada Pengaturan->Grafis", "If your framerate is choppy, try turning down resolution\nor visuals in the game's graphics settings.": "Jika framerate-mu lemah, coba turunkan resolusi\natau visual dalam pengaturan grafis permainan.", "In Capture-the-Flag, your own flag must be at your base to score, If the other\nteam is about to score, stealing their flag can be a good way to stop them.": "Dalam Ambil-Benderanya, benderamu sendiri harus ada pada bentengmu untuk mencetak skor, jika tim lain\nakan mencetak skor, mengambil benderanya adalah cara yang bagus untuk menghentikannnya.", - "In hockey, you'll maintain more speed if you turn gradually.": "Dalam hoki, Kamu dapat mempertahankan kecepatanmu jika Kamu berbelok secara bertahap.", + "In hockey, you'll maintain more speed if you turn gradually.": "Dalam hoki, kamu dapat mempertahankan kecepatanmu jika kamu berbelok secara bertahap.", "It's easier to win with a friend or two helping.": "Lebih mudah menang jika dibantu teman.", "Jump just as you're throwing to get bombs up to the highest levels.": "Lompat sambil melempar bom untuk membuat bom melambung tinggi.", "Land-mines are a good way to stop speedy enemies.": "Ranjau adalah cara yang bagus untuk menghentikan musuh yang cepat.", "Many things can be picked up and thrown, including other players. Tossing\nyour enemies off cliffs can be an effective and emotionally fulfilling strategy.": "Banyak hal yang dapat diambil dan dilempar, termasuk pemain lain. Membuang\nmusuhmu ke jurang akan lebih efektif.", "No, you can't get up on the ledge. You have to throw bombs.": "Tidak, Kamu tidak dapat melewati pembatas. Kamu harus melempar bom.", - "Players can join and leave in the middle of most games,\nand you can also plug and unplug controllers on the fly.": "Pemain dapat masuk dan keluar ditengah-tengah permainan,\ndan Kamu juga dapat menyambung dan memutuskan kontroller.", + "Players can join and leave in the middle of most games,\nand you can also plug and unplug controllers on the fly.": "Pemain dapat masuk dan keluar ditengah-tengah permainan,\ndan kamu juga dapat menyambung dan memutuskan pengontrol.", "Practice using your momentum to throw bombs more accurately.": "Latihan menggunakan momentum-mu untuk melempar bom lebih akurat.", - "Punches do more damage the faster your fists are moving,\nso try running, jumping, and spinning like crazy.": "Pukulan mendapatkan lebih banyak serangan ketika Kamu\nberlari, melompat, dan berputar.", + "Punches do more damage the faster your fists are moving,\nso try running, jumping, and spinning like crazy.": "Pukulan mendapatkan lebih banyak serangan ketika kamu\nberlari, melompat, dan berputar.", "Run back and forth before throwing a bomb\nto 'whiplash' it and throw it farther.": "Lari maju mundur untuk melempar bom\nsangat jauh.", "Take out a group of enemies by\nsetting off a bomb near a TNT box.": "Hancurkan sekumpulan musuh dengan\nmemasang TNT dan meledakkannya dengan bom.", "The head is the most vulnerable area, so a sticky-bomb\nto the noggin usually means game-over.": "Kepala adalah tempat yang paling rapuh, jadi menempelkannya dengan bom-lengket\nakan membuat musuhmu \"GAME OVER\".", "This level never ends, but a high score here\nwill earn you eternal respect throughout the world.": "Level ini tidak akan pernah berakhir, tetapi skor\nakan membuat semua takjub didunia ini.", - "Throw strength is based on the direction you are holding.\nTo toss something gently in front of you, don't hold any direction.": "Kekuatan lemparan tergantung dimana Kamu melempar.\nJika Kamu ingin melempar lebih lembut, jangan terlalu banyak bergerak.", + "Throw strength is based on the direction you are holding.\nTo toss something gently in front of you, don't hold any direction.": "Kekuatan lemparan tergantung dimana kamu melempar.\nJika kamu ingin melempar lebih lembut, jangan terlalu banyak bergerak.", "Tired of the soundtrack? Replace it with your own!\nSee Settings->Audio->Soundtrack": "Bosan dengan soundtrack lama? Ganti dengan milikmu sendiri!\nLihat Pengaturan->Suara->Soundtrack", - "Try 'Cooking off' bombs for a second or two before throwing them.": "Cobalah menunggu sumbu bom-mu mati lalu lempar.", + "Try 'Cooking off' bombs for a second or two before throwing them.": "Cobalah menunggu sumbu bom-mu terbakar beberapa detik lalu lempar.", "Try tricking enemies into killing eachother or running off cliffs.": "Cobalah menipu musuhmu dengan membuatnya saling membunuh atau lari ke jurang.", "Use the pick-up button to grab the flag < ${PICKUP} >": "Gunakkan tombol ambil untuk mengambil bendera < ${PICKUP} >", "Whip back and forth to get more distance on your throws..": "Jalan maju mundur untuk melempar lebih jauh..", "You can 'aim' your punches by spinning left or right.\nThis is useful for knocking bad guys off edges or scoring in hockey.": "Kamu dapat 'mengarahkan' tinjuanmu dengan memutar ke kiri atau ke kanan.\nIni berguna untuk memukul musuh di tepian atau membuat gol di permainan hoki.", "You can judge when a bomb is going to explode based on the\ncolor of sparks from its fuse: yellow..orange..red..BOOM.": "Kamu dapat memperkirakan bom yang akan meledak dengan melihat warna percikan bom itu sendiri:\nKuning..Jingga..Merah..DUARRR.", "You can throw bombs higher if you jump just before throwing.": "Kamu dapat melempar bom lebih tinggi jika kamu melompat sebelum melemparnya.", - "You take damage when you whack your head on things,\nso try to not whack your head on things.": "Kamu akan kesakitan jika kamu menabrakan kepalamu ke benda lain,\nJadi,Jangan tabrakan kepalamu ke benda lain.", + "You take damage when you whack your head on things,\nso try to not whack your head on things.": "Kamu akan kesakitan jika kamu menabrakkan kepalamu ke benda lain,\nJadi, jangan tabrakan kepalamu ke benda lain.", "Your punches do much more damage if you are running or spinning.": "Pukulanmu akan lebih sakit jika kamu lari atau berputar-putar." } }, @@ -1787,53 +1890,55 @@ "trophiesText": "Piala", "trophiesThisSeasonText": "Piala Musim Ini", "tutorial": { - "cpuBenchmarkText": "Proses tutorial dengan kecepatan super cepat(CPU test)", - "phrase01Text": "Hai, apa kabar?", + "cpuBenchmarkText": "Proses tutorial dengan kecepatan super cepat (terutama uji coba kecepatan CPU)", + "phrase01Text": "Hai, apa kabar?", "phrase02Text": "Selamat Datang di ${APP_NAME}", "phrase03Text": "Ada sedikit tips untuk mengontrol karaktermu:", - "phrase04Text": "Banyak hal di ${APP_NAME} yang didasarkan pada FISIKA", - "phrase05Text": "Misalnya, ketika kamu meninju....", - "phrase06Text": "... kecepatan lenganmu memengaruhi tinjuanmu.", - "phrase07Text": "Lihat? Kamu hanya diam, jadi ${NAME} hanya kegelian", - "phrase08Text": "Sekarang, cobalah lompat sembari berputar supaya lebih cepat.", - "phrase09Text": "Hmm, lebih baik", - "phrase10Text": "Berlari juga membantu", + "phrase04Text": "Banyak hal di ${APP_NAME} yang didasarkan pada hukum FISIKA", + "phrase05Text": "Misalnya, ketika kamu meninju....", + "phrase06Text": "..kekuatan tinjuan-mu itu berdasarkan kecepatan ayunan lenganmu.", + "phrase07Text": "Tuh kan? Dia ngga gerak, si ${NAME} cuma kegelian.", + "phrase08Text": "Sekarang, coba lompat sambil berputar untuk dapat kecepatan lebih.", + "phrase09Text": "Nah, lebih nikmat.", + "phrase10Text": "Berlari juga membantu.", "phrase11Text": "Tahan tombol APA SAJA untuk berlari.", "phrase12Text": "Untuk tinjuan super maut, cobalah lari dan berputar.", - "phrase13Text": "Ups, maaf ya ${NAME}!", - "phrase14Text": "Kamu dapat mengangkat lalu melempar barang, bendera, atau mungkin.... ${NAME}", + "phrase13Text": "Ups, maaf ya ${NAME}.", + "phrase14Text": "Kamu dapat mengangkat dan melempar barang, bendera, bahkan.. Si ${NAME}", "phrase15Text": "Yang terakhir, BOM.", "phrase16Text": "Melempar bom butuh latihan.", - "phrase17Text": "Eh! Lemparanmu sangat buruk!", - "phrase18Text": "Lempar bom sambil lari juga membantu.", - "phrase19Text": "Lompat membuat lemparanmu makin tinggi.", + "phrase17Text": "Ouch! Lemparanmu payah.", + "phrase18Text": "Lempar bom sambil jalan juga membantu.", + "phrase19Text": "Melompat membuat lemparanmu makin tinggi.", "phrase20Text": "Lempar sambil berputar untuk lemparan terjauh.", - "phrase21Text": "Mengatur waktu bom dapat jadi sulit.", + "phrase21Text": "Prediksi waktu bom itu cukup sulit.", "phrase22Text": "Yah, meleset", "phrase23Text": "Tunggu bom hingga matang, lalu lempar.", - "phrase24Text": "Horee! Kerja Bagus.", - "phrase25Text": "Yap, sepertinya itu saja.", + "phrase24Text": "Yay! Kerja Bagus.", + "phrase25Text": "Yap, kayaknya itu aja.", "phrase26Text": "Hantam mereka, Joe!", - "phrase27Text": "Ingat latihanmu, agar kamu dapat kembali hidup-hidup!", - "phrase28Text": "... em, mungkin sih...", - "phrase29Text": "Semoga beruntung kawan !", + "phrase27Text": "Ingat latihanmu, supaya kamu DAPAT kembali hidup-hidup!", + "phrase28Text": "...ehm, mungkin sih...", + "phrase29Text": "Semoga beruntung kawan!", "randomName1Text": "Ucup", "randomName2Text": "Asep", "randomName3Text": "Galang", - "randomName4Text": "Suci", - "randomName5Text": "Aldi", + "randomName4Text": "Udin", + "randomName5Text": "Agus", "skipConfirmText": "Yakin ingin melompati pembelajaran? Tekan apa saja untuk konfirmasi.", - "skipVoteCountText": "${COUNT} dari ${TOTAL} suara untuk melewati pembelajaran", - "skippingText": "Melewati pembelajaran...", + "skipVoteCountText": "${COUNT} dari ${TOTAL} suara untuk melewati latihan", + "skippingText": "melewati latihan...", "toSkipPressAnythingText": "(tekan apa saja untuk melompati pembelajaran)" }, "twoKillText": "PEMBUNUHAN GANDA!", + "uiScaleText": "Skala UI", "unavailableText": "tidak tersedia", + "unclaimedPrizesText": "Kamu punya hadiah yang belum diterima!", "unconfiguredControllerDetectedText": "Pengontrol belum terkonfigurasi terdeteksi:", "unlockThisInTheStoreText": "Tersedia di toko terdekat.", - "unlockThisProfilesText": "Untuk membuat lebih dari ${NUM} profil, Kamu memerlukan:", - "unlockThisText": "Untuk buka ini,kamu membutuhkan:", - "unsupportedControllerText": "Maaf, kontroler \"${NAME}\" tidak mendukung.", + "unlockThisProfilesText": "Untuk membuat lebih dari ${NUM} profil, kamu membutuhkan:", + "unlockThisText": "Untuk buka ini, kamu membutuhkan:", + "unsupportedControllerText": "Maaf, pengontrol \"${NAME}\" tidak didukung.", "unsupportedHardwareText": "Maaf, perangkat ini tidak mendukung build permainan ini.", "upFirstText": "Game pertama:", "upNextText": "${COUNT} game berikutnya:", @@ -1841,11 +1946,14 @@ "upgradeText": "Tingkatkan", "upgradeToPlayText": "Buka \"${PRO}\" di toko game untuk bermain.", "useDefaultText": "Gunakan Default", + "userSystemScriptsCreateText": "Buat Skrip Sistem Pengguna", + "userSystemScriptsDeleteText": "Hapus Skrip Sistem Pengguna", "usesExternalControllerText": "Game ini menggunakan pengontrol external untuk input.", "usingItunesText": "Menggunakan soundtrack dari aplikasi Musik", "usingItunesTurnRepeatAndShuffleOnText": "Tolong pastikan lagu diacak dan diulang di iTunes. ", "v2AccountLinkingInfoText": "Untuk menautkan akun V2, gunakan tombol 'Manajemen Akun'.", - "validatingTestBuildText": "Memvalidasi Bangunan Tes...", + "v2AccountRequiredText": "Membutuhkan akun V2. Upgrade akunmu dan coba lagi.", + "validatingTestBuildText": "Memvalidasi Tes Build...", "viaText": "melalui", "victoryText": "Menang!", "voteDelayText": "Kamu tidak dapat memulai pemilihan suara dalam ${NUMBER} detik", @@ -1863,17 +1971,17 @@ "deleteReplayButtonText": "Hapus\nReplay", "myReplaysText": "Replayku", "noReplaySelectedErrorText": "Tidak Ada Replay Terpilih", - "playbackSpeedText": "Kecepatan Putar Ulang: ${SPEED}", - "renameReplayButtonText": "Ganti\nNama", - "renameReplayText": "Mengubah nama\"${REPLAY}\" ke", + "playbackSpeedText": "Kecepatan Pemutaran: ${SPEED}", + "renameReplayButtonText": "Ganti Nama\nReplay", + "renameReplayText": "Mengubah nama \"${REPLAY}\" menjadi:", "renameText": "Ganti Nama", - "replayDeleteErrorText": "Galat menghapus replay", - "replayNameText": "Nama Replay", - "replayRenameErrorAlreadyExistsText": "Replay dengan nama yang sudah ada", - "replayRenameErrorInvalidName": "Tidak dapat menganti nama replay; nama invailid", - "replayRenameErrorText": "Error mengganti nama replay", - "sharedReplaysText": "Replay dibagikan", - "titleText": "Nonton", + "replayDeleteErrorText": "Kesalahan menghapus replay.", + "replayNameText": "Nama Rekaman", + "replayRenameErrorAlreadyExistsText": "Rekaman dengan nama tersebut sudah ada", + "replayRenameErrorInvalidName": "Tidak dapat mengganti nama rekaman; nama tidak valid", + "replayRenameErrorText": "Error mengganti nama rekaman", + "sharedReplaysText": "Replay Yang Dibagikan", + "titleText": "Tonton", "watchReplayButtonText": "Lihat\nReplay" }, "waveText": "Gelombang", @@ -1897,10 +2005,10 @@ "winsPlayerText": "${NAME} Menang!", "winsTeamText": "${NAME} Menang!", "winsText": "${NAME} Menang!", - "workspaceSyncErrorText": "Menyinkronkan ke ${WORKSPACE} error. Lihat log untuk lebih detailnya.", + "workspaceSyncErrorText": "Kesalahan menyinkronkan ke ${WORKSPACE}. Lihat log untuk lebih detailnya.", "workspaceSyncReuseText": "Tidak bisa menyinkronkan ${WORKSPACE}. Menggunakan kembali versi sinkronan sebelumnya.", "worldScoresUnavailableText": "Skor Dunia tidak tersedia.", - "worldsBestScoresText": "Nilai Terbaik Dunia", + "worldsBestScoresText": "Nilai Publik Terbaik", "worldsBestTimesText": "Waktu Terbaik Dunia", "xbox360ControllersWindow": { "getDriverText": "Dapatkan Driver", @@ -1911,6 +2019,7 @@ "titleText": "Menggunakan pengontrol Xbox 360 dengan ${APP_NAME}:" }, "yesAllowText": "Ya, Izinkan!", - "yourBestScoresText": "Skor terbaikmu", - "yourBestTimesText": "Waktu Terbaikmu" + "yourBestScoresText": "Skor Terbaikmu", + "yourBestTimesText": "Waktu Terbaikmu", + "yourPrizeText": "Hadiahmu:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/italian.json b/dist/ba_data/data/languages/italian.json index e765904..af0d014 100644 --- a/dist/ba_data/data/languages/italian.json +++ b/dist/ba_data/data/languages/italian.json @@ -7,7 +7,9 @@ "campaignProgressText": "Progresso Campagna [Difficile]: ${PROGRESS}", "changeOncePerSeason": "Puoi cambiare questa cosa solo una volta a stagione.", "changeOncePerSeasonError": "Devi aspettare la prossima stagione per apportare delle modifiche (${NUM} days)", + "createAnAccountText": "Crea un'Account", "customName": "Nome Personalizzato", + "deleteAccountText": "Elimina Account", "deviceSpecificAccountText": "Stai usando un account automaticamente generato: ${NAME}", "googlePlayGamesAccountSwitchText": "Se desideri utilizzare un'altro account Google,\nutilizza l'app Google Play Games.", "linkAccountsEnterCodeText": "Inserisci il codice", @@ -20,7 +22,7 @@ "manageAccountText": "Gestisci Account", "nameChangeConfirm": "Confermi di voler modificare il tuo nome in ${NAME}?", "notLoggedInText": "", - "resetProgressConfirmNoAchievementsText": "Stai per cancellare i tuoi progressi in\nmodalità cooperativa, i tuoi obbiettivi, i tuoi punteggi\nlocali (ma non i tuoi biglietti). \n\nL'operazione è irreversibile: continuare?", + "resetProgressConfirmNoAchievementsText": "Stai per cancellare i tuoi progressi in modalità cooperativa,\ni tuoi obiettivi ed i tuoi punteggi locali (ma non i tuoi biglietti). \nL'operazione è irreversibile: continuare?", "resetProgressConfirmText": "Stai per cancellare i tuoi progressi in\nmodalità cooperativa, i tuoi punteggi\nlocali e i tuoi obiettivi (ma non i tuoi biglietti).\nL'operazione è irreversibile: continuare?", "resetProgressText": "Cancella Progressi", "setAccountName": "Inserisci un nome utente", @@ -36,7 +38,7 @@ "signInWithTestAccountText": "Accedi con un account di prova", "signInWithText": "Accedi con ${SERVICE}", "signInWithV2InfoText": "(un account che funziona su tutte le piattaforme)", - "signInWithV2Text": "Effettua l'accesso con un account di BombSquad", + "signInWithV2Text": "Accedi con un account ${APP_NAME}", "signOutText": "Esci", "signingInText": "Accesso in corso...", "signingOutText": "Uscita in corso...", @@ -336,7 +338,7 @@ }, "achievementsRemainingText": "Trofei rimasti:", "achievementsText": "Trofei", - "achievementsUnavailableForOldSeasonsText": "Mi dispiace, ma gli obbiettivi non sono disponibili per le stagioni vecchie.", + "achievementsUnavailableForOldSeasonsText": "Mi dispiace, ma gli obiettivi non sono disponibili per le stagioni vecchie.", "activatedText": "${THING} attivato.", "addGameWindow": { "getMoreGamesText": "Ottieni Giochi...", @@ -348,6 +350,8 @@ "allowText": "Consenti", "alreadySignedInText": "Il tuo account è collegato da un altro dispositivo;\ncambia account o chiudi il gioco nel tuo altro\ndispositivo e riprova.", "apiVersionErrorText": "Impossibile caricare il modulo ${NAME}; sono installate le API versione ${VERSION_USED}; è richiesta la ${VERSION_REQUIRED}.", + "applyText": "Applica", + "areYouSureText": "Vuoi davvero procedere?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(\"Auto\" abilitalo solo quando sono connesse delle cuffie)", "headRelativeVRAudioText": "Audio VR Head-Relative", @@ -372,14 +376,23 @@ "boostText": "Potenziamento", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} è configurato nell'app stessa.", "buttonText": "pulsante", - "canWeDebugText": "Vorresti che BombSquad segnalasse automaticamente bug, errori\ne informazioni sull'utilizzo direttamente allo sviluppatore?\n\nQuesti dati non contengono informazioni personali e aiutano a \nmantenere il gioco privo di bug e rallentamenti.", + "canWeDebugText": "Vorresti che ${APP_NAME} segnalasse automaticamente bug, errori\ne informazioni sull'utilizzo direttamente allo sviluppatore?\n\nQuesti dati non contengono informazioni personali e aiutano a \nmantenere il gioco privo di bug e rallentamenti.", "cancelText": "Annulla", "cantConfigureDeviceText": "Spiacente, ${DEVICE} non è configurabile.", "challengeEndedText": "Questa sfida è finita.", "chatMuteText": "Silenzia Chat", "chatMutedText": "Chat Silenziata", "chatUnMuteText": "Smuta Chat", + "chests": { + "prizeOddsText": "Possibilità di vincita", + "reduceWaitText": "Diminiusci Attesa", + "slotDescriptionText": "Questo spazio può tenere un forziere.\n\nOttieni casse giocando livelli nella campagna,\nclassificandoti nei tornei, e completando\nobiettivi.", + "slotText": "Slot Forziere ${NUM}", + "slotsFullWarningText": "ATTENZIONE: Tutti gli spazi per casse sono pieni.\nLe casse che otterrai in questa partita saranno perse.", + "unlocksInText": "Si Sblocca Tra" + }, "choosingPlayerText": "", + "claimText": "Ottieni", "codesExplainText": "i codici sono forniti dallo sviluppatore per\nscoprire e correggere problemi all'account.", "completeThisLevelToProceedText": "Devi completare questo\nlivello per procedere!", "completionBonusText": "Competizione bonus", @@ -516,7 +529,7 @@ "toRankedText": "Al prossimo livello", "totalText": "Totale", "tournamentInfoText": "Competi per punteggi alti con\naltri giocatori della tua lega.\n\nI premi sono assegnati ai giocatori con\ni punteggi più alti quando il tempo del torneo scade.", - "welcome1Text": "Benvenuto in ${LEAGUE}. Puoi migliorare il tuo\n livello lega guadagnando stelle, completando\n obbiettivi, e vincendo i trofei.", + "welcome1Text": "Benvenuto in ${LEAGUE}. Puoi migliorare il tuo\n livello lega guadagnando stelle, completando\n obiettivi, e vincendo i trofei.", "welcome2Text": "Puoi anche guadagnare biglietti con molte attività simili.\nI biglietti possono essere usato per sbloccare nuovi capitoli, mappe e\nmini-giochi, per entrare nei tornei ed altro.", "yourPowerRankingText": "La tua posizione assoluta" }, @@ -587,6 +600,7 @@ "disableXInputDescriptionText": "Permette l'uso di più di 4 pulsantiere, ma potrebbe anche non funzionare.", "disableXInputText": "Disabilita XInput", "disabledText": "DISABILITATO", + "discardText": "Butta", "discordFriendsText": "Cerchi altri con cui giocare?\nEntra nel nostro server Discord e fatti nuovi amici!", "discordJoinText": "Entra nel server Discord", "doneText": "Fatto", @@ -675,6 +689,8 @@ "errorText": "Errore", "errorUnknownText": "errore sconosciuto", "exitGameText": "Uscire da ${APP_NAME}?", + "expiredAgoText": "Scaduta ${T} fa", + "expiresInText": "Scade tra ${T}", "exportSuccessText": "'${NAME}' esportato", "externalStorageText": "Memoria Esterna", "failText": "Perso", @@ -741,6 +757,7 @@ "copyCodeConfirmText": "Codice copiato negli appunti!", "copyCodeText": "Copia il codice", "dedicatedServerInfoText": "Per risultati migliori, crea un server dedicato. Vedi bombsquadgame.com/server per scoprire come.", + "descriptionShortText": "Utilizza la finestra raduna per creare un party.", "disconnectClientsText": "Questo disconnetterà ${COUNT} giocatore/i\nnel tuo gruppo. Sei sicuro?", "earnTicketsForRecommendingAmountText": "I tuoi amici riceveranno ${COUNT} biglietti se proveranno il gioco\n(anche tu riceverai ${YOU_COUNT} biglietti per ogni amico che lo farà)", "earnTicketsForRecommendingText": "Condividi il gioco\nper biglietti gratis...", @@ -860,6 +877,12 @@ "youHaveShortText": "Hai ${COUNT}", "youHaveText": "Hai ${COUNT} biglietti" }, + "goldPass": { + "desc1InfTokensText": "Gettoni infiniti.", + "desc2NoAdsText": "Niente pubblicità.", + "desc3ForeverText": "Per sempre.", + "goldPassText": "Pass d'Oro" + }, "googleMultiplayerDiscontinuedText": "Mi dispiace, il servizio multiplayer di Google non è più disponibile.\nSto lavorando per sostituirlo il più velocemente possibile.\nFino a quando non troverò una soluzione, prova un altro metodo per connetterti.\n-Eric", "googlePlayPurchasesNotAvailableText": "Gli acquisti Google Play non sono disponibili.\nPotresti dover aggiornare lo store.", "googlePlayServicesNotAvailableText": "Google Play Services non è disponibile.\nAlcune funzionalità dell'app saranno disattivate.", @@ -938,6 +961,7 @@ "importText": "Importa", "importingText": "Importando...", "inGameClippedNameText": "Nel gioco ci sarà\n\"${NAME}\"", + "inboxText": "Posta", "installDiskSpaceErrorText": "ERRORE: Impossibile completare l'installazione. \nPotresti aver esaurito lo spazio sul tuo dispositivo. \nLibera un po' di spazio e prova di nuovo.", "internal": { "arrowsToExitListText": "Premi ${LEFT} o ${RIGHT} per uscire dalla serie", @@ -994,12 +1018,14 @@ "touchScreenJoinWarningText": "Ti sei unito al gioco con il touchscreen.\nSe è stato un errore, premi 'Menu->Lascia Gioco'.", "touchScreenText": "TouchScreen", "trialText": "prova", + "unableToCompleteTryAgainText": "Impossibile completare ciò al momento.\nPerfavore riprovare.", "unableToResolveHostText": "Errore: impossibile connettersi all'host", "unavailableNoConnectionText": "Non è al momento disponibile (dipende dalla tua connessione?)", "vrOrientationResetCardboardText": "Usa questo per ripristinare l'orientamento del VR.\nPer giocare avrai bisogno di un controller esterno.", "vrOrientationResetText": "Ripristina orientamento VR.", "willTimeOutText": "(se inattivo potrai riprendere il controllo)" }, + "inventoryText": "Inventario", "jumpBoldText": "SALTO", "jumpText": "Salta", "keepText": "Mantieni", @@ -1046,8 +1072,11 @@ "seasonEndsMinutesText": "La stagione finisce tra ${NUMBER} minuti.", "seasonText": "Stagione ${NUMBER}", "tournamentLeagueText": "Devi raggiungere la lega ${NAME} per partecipare a questo torneo.", - "trophyCountsResetText": "Il numero dei trofei verra azzerato la prossima stagione." + "trophyCountsResetText": "Il numero dei trofei verra azzerato la prossima stagione.", + "upToDateBonusDescriptionText": "I giocatori che utilizzano una versione recente del\ngioco otterranno un bonus del ${PERCENT}% qui.", + "upToDateBonusText": "Bonus Aggiornato" }, + "learnMoreText": "Scopri di più", "levelBestScoresText": "Miglior punteggio in ${LEVEL}", "levelBestTimesText": "Miglior tempo in ${LEVEL}", "levelFastestTimesText": "Tempo migliore su ${LEVEL}", @@ -1094,6 +1123,8 @@ "modeArcadeText": "Modalità Arcade", "modeClassicText": "Modalità Classica", "modeDemoText": "Modalità Demo", + "moreSoonText": "Di più in arrivo...", + "mostDestroyedPlayerText": "Giocatore più distrutto", "mostValuablePlayerText": "Giocatore Più Bravo", "mostViolatedPlayerText": "Giocatore Più Ucciso", "mostViolentPlayerText": "Giocatore Più Violento", @@ -1110,6 +1141,7 @@ "nameSuicideText": "${NAME} si è suicidato.", "nameText": "Nome", "nativeText": "Nativa", + "newExclaimText": "Novità!", "newPersonalBestText": "Nuovo record personale!", "newTestBuildAvailableText": "Una nuova versione beta è disponibile (${VERSION} build ${BUILD}).\nScaricala da ${ADDRESS}", "newText": "Nuovo", @@ -1121,6 +1153,7 @@ "noExternalStorageErrorText": "Nessun archiviatore esterno trovato su questo dispositivo", "noGameCircleText": "Errore: non hai effettuato il login su GameCircle", "noJoinCoopMidwayText": "Non puoi entrare in una partita cooperativa già iniziata.", + "noMessagesText": "Nessun messaggio.", "noPluginsInstalledText": "Nessun Plugin Installato", "noProfilesErrorText": "Non hai un profilo giocatore, quindi sei bloccato con '${NAME}'.\nVai su Impostazioni > Profili giocatore per creare un profilo personale.", "noScoresYetText": "Ancora nessun punteggio.", @@ -1130,6 +1163,7 @@ "noValidMapsErrorText": "Non sono state trovate mappe valide per questo tipo di gioco.", "notEnoughPlayersRemainingText": "Non ci sono più abbastanza giocatori: esci e inizia un'altra partita.", "notEnoughPlayersText": "Hai bisogno di almeno ${COUNT} giocatori per iniziare questa partita!", + "notEnoughTicketsText": "Non hai abbastanza biglietti fra", "notNowText": "Non ora", "notSignedInErrorText": "Per fare questo, devi accedere.", "notSignedInGooglePlayErrorText": "Per fare questo devi accedere a Google Play.", @@ -1142,6 +1176,9 @@ "onText": "Attiva", "oneMomentText": "Un Momento...", "onslaughtRespawnText": "${PLAYER} ritornerà all'ondata ${WAVE}", + "openMeText": "Aprimi!", + "openNowText": "Apri Ora", + "openText": "Apri", "orText": "${A} o ${B}", "otherText": "Altro", "outOfText": "(#${RANK} su ${ALL})", @@ -1235,6 +1272,8 @@ "punchText": "Pugno", "purchaseForText": "Acquista per ${PRICE}", "purchaseGameText": "Acquista il gioco", + "purchaseNeverAvailableText": "Purtroppo, gli acquisti non sono disponibili su questa versione.\nProva ad accedere al tuo account su un'altra piattaforma e fare gli acquisti lì.", + "purchaseNotAvailableText": "Non disponibile per l'acquisto.", "purchasingText": "Acquisto in corso...", "quitGameText": "Uscire da ${APP_NAME}?", "quittingIn5SecondsText": "Uscendo in 5 secondi...", @@ -1277,6 +1316,7 @@ "version_mismatch": "Incompatibilità di versione.\nAssicurati che BombSquad e BombSquad Remote\nsiano alla stessa versione e riprova." }, "removeInGameAdsText": "Sblocca \"${PRO}\" nel negozio per rimuovere le pubblicità.", + "removeInGameAdsTokenPurchaseText": "PER UN TEMPO LIMITATO: Acquista QUALSIASI pacco di gettoni per rimuovere la pubblicità.", "renameText": "Rinomina", "replayEndText": "Fine Replay", "replayNameDefaultText": "Replay Ultima Partita", @@ -1338,6 +1378,8 @@ "enterPromoCodeText": "Inserisci il Codice", "forTestingText": "Note: questi valori sono solo di prova e saranno cancellati uscendo dalla app.", "helpTranslateText": "Le traduzioni di ${APP_NAME} sono un contributo\ndella comunità. Se vuoi contribuire o correggere una\ntraduzione, segui il link qui sotto. Grazie in anticipo!", + "insecureConnectionsDescriptionText": "non è consigliato, ma potrebbe consentire\ndi giocare online da regioni o reti protette", + "insecureConnectionsText": "Usa connessioni non sicure", "kickIdlePlayersText": "Caccia i giocatori inattivi", "kidFriendlyModeText": "Modalità per bambini (violenza ridotta e altro)", "languageText": "Lingua", @@ -1398,6 +1440,7 @@ }, "spaceKeyText": "spazio", "statsText": "statistiche", + "stopRemindingMeText": "Non Ricordarmelo Più", "storagePermissionAccessText": "Richiede l'accesso alla memoria locale", "store": { "alreadyOwnText": "Hai già acquistato ${NAME}!", @@ -1461,6 +1504,7 @@ "testBuildValidatedText": "Build Di Prova Validata; Divertiti!", "thankYouText": "Grazie per il supporto! Goditi il gioco!!", "threeKillText": "TRIPLA UCCISIONE!!", + "ticketsDescriptionText": "I Biglietti si usano per sbloccare personaggi,\nmappe, minigiochi, ed altro nel negozio.\n\nI Biglietti si possono trovare nei forzieri e vincere\nnelle campagne, nei tornei, e con gli obiettivi trofeo.", "timeBonusText": "Bonus Tempo", "timeElapsedText": "Tempo trascorso", "timeExpiredText": "Tempo Scaduto", @@ -1471,10 +1515,24 @@ "tipText": "Consiglio", "titleText": "BombSquad", "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "Ottieni Gettoni", + "notEnoughTokensText": "Non hai abbastanza gettoni!", + "numTokensText": "${COUNT} Gettoni", + "openNowDescriptionText": "Hai gettoni sufficienti\nper aprire ora - non\nserve aspettare.", + "shinyNewCurrencyText": "La nuovissima valuta di BombSquad.", + "tokenPack1Text": "Pacco di Gettoni Mini", + "tokenPack2Text": "Pacco di Gettoni Medio", + "tokenPack3Text": "Pacco di Gettoni Grande", + "tokenPack4Text": "Pacco di Gettoni Enorme", + "tokensDescriptionText": "I gettoni si usano per accelerare lo sblocco dei forzieri\ne per altri acquisti di gioco o legati all'account.\n\nPuoi vincere gettoni nel gioco, o acquistali\ndai pacchetti. Oppure acquista un Pass Oro per ottenere\ngettoni infiniti senza più preoccupazioni.", + "youHaveGoldPassText": "Hai un Pass d'Oro.\nTutti gli acquisti di gettoni sono gratuiti.\nDivertiti!" + }, "topFriendsText": "Gli amici migliori", "tournamentCheckingStateText": "Controllo stato torneo in corso; attendere...", "tournamentEndedText": "Questo torneo è finito. Ne partirà un altro a breve.", "tournamentEntryText": "Partecipa al Torneo", + "tournamentFinalStandingsText": "Posizioni Finali", "tournamentResultsRecentText": "Risultati recenti del torneo", "tournamentStandingsText": "Classifica del torneo", "tournamentText": "Torneo", @@ -1548,6 +1606,18 @@ "Uber Onslaught": "Assalto Ultra", "Uber Runaround": "Girotondo Ultra" }, + "displayItemNames": { + "${C} Tickets": "${C} Biglietti", + "${C} Tokens": "${C} Gettoni", + "Chest": "Forziere", + "L1 Chest": "Forziere Lv.1", + "L2 Chest": "Forziere Lv.2", + "L3 Chest": "Forziere Lv.3", + "L4 Chest": "Forziere Lv.4", + "L5 Chest": "Forziere Lv.5", + "L6 Chest": "Forziere Lv.6", + "Unknown Chest": "Forziere Ignoto" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Per vincere, sii il prescelto per un determinato tempo.\nUccidi il prescelto per diventarlo.", "Bomb as many targets as you can.": "Bombarda più bersagli che puoi.", @@ -1653,6 +1723,7 @@ "Korean": "Koreano", "Malay": "Malese", "Persian": "Persiano", + "PirateSpeak": "Piratese", "Polish": "Polacco", "Portuguese": "Portoghese", "Romanian": "Rumeno", @@ -1727,6 +1798,7 @@ "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Individuato imbroglio: punteggi e premi sospesi per ${COUNT} giorni.", "Could not establish a secure connection.": "Impossibile stabilire una connessione sicura.", "Daily maximum reached.": "Limite massimo giornaliero raggiunto.", + "Daily sign-in reward": "Premio d'accesso giornaliero", "Entering tournament...": "Entrando nel torneo...", "Invalid code.": "Codice non valido.", "Invalid payment; purchase canceled.": "Pagamento non valido; acquisto annullato.", @@ -1736,11 +1808,14 @@ "Item unlocked!": "Oggetto sbloccato!", "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "Collegamento rifiutato. ${ACCOUNT} contiene\ndati importanti che verranno TUTTI PERSI.\nPuoi collegarlo nell'ordine opposto se preferisci\n(e perdere i dati di QUESTO account)", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "Vuoi davvero collegare l'account ${ACCOUNT} a questo account?\nTutti i dati presenti in ${ACCOUNT} andranno persi.\nLa procedura non può essere annullata. Sei sicuro?", + "Longer streaks lead to better rewards.": "Le sequenze lunghe danno premi migliori.", "Max number of playlists reached.": "Numero massimo di playlist raggiunto.", "Max number of profiles reached.": "Numero massimo di profili raggiunto.", "Maximum friend code rewards reached.": "Numero massimo di richieste d'amicizia inviate", "Message is too long.": "Il messaggio è troppo lungo.", + "New tournament result!": "Nuovi risultati del torneo!", "No servers are available. Please try again soon.": "Nessun server disponibile,prova più tardi.", + "No slots available. Free a slot and try again.": "Nessuno slot disponibile. Liberane uno e riprova.", "Profile \"${NAME}\" upgraded successfully.": "Il profilo \"${NAME}\" è stato aggiornato con successo.", "Profile could not be upgraded.": "Il profilo non è potuto essere aggiornato.", "Purchase successful!": "Acquistato con successo!", @@ -1750,7 +1825,9 @@ "Sorry, this code has already been used.": "Spiacente, questo codice è già stato usato.", "Sorry, this code has expired.": "Spiacente, questo codice è scaduto.", "Sorry, this code only works for new accounts.": "Spiacente, questo codice funziona solo per nuovi account.", + "Sorry, this has expired.": "Spiacente, è scaduto.", "Still searching for nearby servers; please try again soon.": "Continuo a cercare dei server.Per favore prova più tardi.", + "Streak: ${NUM} days": "Sequenza: ${NUM} giorni", "Temporarily unavailable; please try again later.": "Al momento non disponibile; prova più tardi.", "The tournament ended before you finished.": "Il torneo è terminato prima che tu abbia finito.", "This account cannot be unlinked for ${NUM} days.": "Questo account non può essere scollegato per ${NUM} giorni.", @@ -1761,19 +1838,28 @@ "Tournaments require ${VERSION} or newer": "I tornei richiedono ${VERSION} o superiore", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "Scollegare l'account ${ACCOUNT} da questo account?\nTutti i dati su ${ACCOUNT} andranno cancellati.\n(eccetto per i trofei in alcuni casi)", "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "ATTENZIONE: tentativi di hacking sono stati segnalati per il tuo account.\nGli account scoperti in tentativi di hacking saranno bannati. Gioca pulito.", + "Wait reduced!": "Tempo d'attesa ridotto!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "Attenzione: Questa versione del gioco può accedere solo a vecchi dati account; potrebbero mancare o non essere aggiornati.\nPassa ad una versione più recente del gioco per visualizzare gli ultimi dati account.", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "Vuoi collegare il tuo account di dispositivo a questo?\n\nIl tuo account di dispositivo è ${ACCOUNT1}\nQuesto account è ${ACCOUNT2}\n\nQuesta operazione ti permetterà di conservare i tuoi progressi esistenti.\nAttenzione: l'operazione non può essere annullata!", "You already own this!": "È già tuo!", "You can join in ${COUNT} seconds.": "Potrai entrare in ${COUNT} secondi", "You don't have enough tickets for this!": "Non hai abbastanza biglietti per questo!", "You don't own that.": "Non lo possiedi", "You got ${COUNT} tickets!": "Hai ${COUNT} biglietti!", + "You got ${COUNT} tokens!": "Hai ottenuto ${COUNT} gettoni!", "You got a ${ITEM}!": "Hai ricevuto un ${ITEM}!", + "You got a chest!": "Hai ottenuto un forziere!", + "You got an achievement reward!": "Hai ottenuto un premio da un trofeo!", "You have been promoted to a new league; congratulations!": "Sei stato promosso a una nuova lega, Congratulazioni!", + "You lost a chest! (All your chest slots were full)": "Hai perso un forziere! (I tuoi slot forziere erano pieni)", + "You must update the app to view this.": "Aggiorna l'app per visualizzare.", "You must update to a newer version of the app to do this.": "Devi aggiornare a una versione nuova dell'app per poter fare questo.", "You must update to the newest version of the game to do this.": "Devi aggiornare ad una nuova versione del gioco per fare ciò.", "You must wait a few seconds before entering a new code.": "Devi aspettare qualche secondo prima di inserire un nuovo codice.", + "You placed #${RANK} in a tournament!": "Hai raggiunto #${RANK}° posto in un torneo!", "You ranked #${RANK} in the last tournament. Thanks for playing!": "Sei il numero ${RANK} dell'ultimo torneo. Grazie per aver giocato!", "Your account was rejected. Are you signed in?": "Il tuo account è stato rifiutato. Sei già iscritto?", + "Your ad views are not registering. Ad options will be limited for a while.": "Le visualizzazioni dei tuoi annunci non vengono registrate. Le opzioni degli annunci saranno limitate per un po'.", "Your copy of the game has been modified.\nPlease revert any changes and try again.": "La tua copia del gioco è stata modificata.\nPer favore, annulla le modifiche e riprova.", "Your friend code was used by ${ACCOUNT}": "Il tuo codice amico è stato usato da ${ACCOUNT}" }, @@ -1815,7 +1901,7 @@ "Short": "Breve", "Shorter": "Più breve", "Solo Mode": "Modalità Testa a Testa", - "Target Count": "Numero dì obbiettivi", + "Target Count": "Numero dì obiettivi", "Time Limit": "Tempo limite" }, "statements": { @@ -1929,6 +2015,7 @@ "twoKillText": "DOPPIA UCCISIONE!", "uiScaleText": "Dimensione Interfaccia", "unavailableText": "non disponibile", + "unclaimedPrizesText": "Hai premi da riscattare!", "unconfiguredControllerDetectedText": "Rilevato controller non configurato:", "unlockThisInTheStoreText": "Deve essere sbloccato nel negozio", "unlockThisProfilesText": "Per creare più di ${NUM} profili, ti serve:", @@ -1947,6 +2034,7 @@ "usingItunesText": "Sto usando una app musicale per la colonna sonora...", "usingItunesTurnRepeatAndShuffleOnText": "Per favore, assicurati che la riproduzione casuale sia ATTIVA e che la ripetizione sia su TUTTO su iTunes.", "v2AccountLinkingInfoText": "Per collegare degli account V2, usa il tasto 'Gestisci Account'.", + "v2AccountRequiredText": "Questo richiede un account V2. Aggiorna il tuo account e riprova.", "validatingBetaText": "Sto convalidando la beta...", "validatingTestBuildText": "Convalida Build Di Prova...", "viaText": "utilizzando", @@ -1971,7 +2059,7 @@ "renameReplayButtonText": "Rinomina\nReplay", "renameReplayText": "Rinomina \"${REPLAY}\" in:", "renameText": "Rinomina", - "replayDeleteErrorText": "Errore cancellazione replay.", + "replayDeleteErrorText": "Errore eliminazione del replay.", "replayNameText": "Nome Replay", "replayRenameErrorAlreadyExistsText": "Esiste già un replay con questo nome.", "replayRenameErrorInvalidName": "Impossibile rinominare replay; nome invalido.", @@ -2025,5 +2113,6 @@ }, "yesAllowText": "Sì, permetti!", "yourBestScoresText": "I tuoi punteggi migliori", - "yourBestTimesText": "I tuoi tempi migliori" + "yourBestTimesText": "I tuoi tempi migliori", + "yourPrizeText": "Il tuo premio:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/korean.json b/dist/ba_data/data/languages/korean.json index 94e04cb..760d0d1 100644 --- a/dist/ba_data/data/languages/korean.json +++ b/dist/ba_data/data/languages/korean.json @@ -7,7 +7,9 @@ "campaignProgressText": "캠페인 진행 상황 [어려움]: ${PROGRESS}", "changeOncePerSeason": "한 시즌마다 바꿀수 있습니다.", "changeOncePerSeasonError": "다음 시즌으로 바뀔때까지 (${NUM} 일)기다려야 계정 이름을 바꿀수 있습니다.", + "createAnAccountText": "계정 만들기", "customName": "이름 맞춤설정", + "deleteAccountText": "계정 삭제", "googlePlayGamesAccountSwitchText": "다른 Google 계정을 전환하려면,\nGoogle Play 앱을 사용하세요", "linkAccountsEnterCodeText": "코드 입력", "linkAccountsGenerateCodeText": "코드 생성", @@ -25,6 +27,7 @@ "setAccountNameDesc": "당신 계정에 보여질 이름을 선택해주시오.\n연동된 계정 중 하나에서 이름을 사용하거나,\n또는 자기만의 독창적인 이름을 만들어서 사용할 수 있습니다.", "signInInfoText": "로그인해서 티켓을 수집하고 온라인으로 겨루며\n여러 기기에서 진행 상황을 공유하세요.", "signInText": "로그인", + "signInWithAnEmailAddressText": "이메일 주소로 로그인", "signInWithDeviceInfoText": "(자동 계정은 이 기기에서만 이용할 수 있습니다)", "signInWithDeviceText": "기기 계정으로 로그인", "signInWithGameCircleText": "Game Circle로 로그인", @@ -33,7 +36,7 @@ "signInWithTestAccountText": "테스트 계정으로 로그인", "signInWithText": "${SERVICE}로 로그인하기", "signInWithV2InfoText": "(모든 플랫폼에서 작동하는 계정입니다)", - "signInWithV2Text": "BombSquad 계정으로 로그인", + "signInWithV2Text": "${APP_NAME} 계정으로 로그인", "signOutText": "로그아웃", "signingInText": "로그인 중...", "signingOutText": "로그아웃 중...", @@ -342,6 +345,8 @@ "allowText": "허용", "alreadySignedInText": "귀하의 계정은 다른 기기에서 로그인되었습니다. \n계정을 전환하거나 다른 기기에서 게임을 종료하고 \n다시 시도하십시오.", "apiVersionErrorText": "${NAME} 모듈을 불러올 수 없습니다; ${VERSION_USED} api 버전입니다; ${VERSION_REQUIRED} 버전이 필요합니다.", + "applyText": "적용", + "areYouSureText": "정말?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(헤드폰이 연결된 때에만 '자동'이 이 옵션을 활성화합니다)", "headRelativeVRAudioText": "머리 비례 VR 오디오", @@ -363,14 +368,22 @@ "boostText": "증가", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME}(은)는 앱 자체에 구성되어 있습니다.", "buttonText": "버튼", - "canWeDebugText": "BombSquad가 버그, 충돌 및 기본 사용 정보를\n자동으로 개발자에게 신고하도록 하시겠습니까?\n\n이 데이터에 개인 정보는 포함되지 않으며 게임이\n버그 없이 원활하게 실행되도록 하는 데 도움이 됩니다.", + "canWeDebugText": "${APP_NAME}가 버그, 충돌 및 기본 사용 정보를\n자동으로 개발자에게 신고하도록 하시겠습니까?\n\n이 데이터에 개인 정보는 포함되지 않으며 게임이\n버그 없이 원활하게 실행되도록 하는 데 도움이 됩니다.", "cancelText": "취소", "cantConfigureDeviceText": "죄송합니다만 ${DEVICE}(은)는 구성할 수 없습니다.", "challengeEndedText": "이 챌린지는 종료되었습니다.", "chatMuteText": "채팅 음소거", "chatMutedText": "채팅 음소거됨.", "chatUnMuteText": "채팅 음소거 해제", + "chests": { + "prizeOddsText": "상금 확률", + "reduceWaitText": "대기 시간 단축", + "slotDescriptionText": "이 슬롯은 상자를 보관할 수 있습니다.\n\n캠페인 레벨을 플레이하고,\n토너먼트에서 순위를 매기고,\n업적을 달성하여 상자를 획득하세요.", + "slotText": "상자 슬롯 ${NUM}", + "slotsFullWarningText": "경고: 모든 상자 슬롯이 찼습니다.\n이 게임에서 획득한 상자는 모두 사라지게 됩니다." + }, "choosingPlayerText": "<플레이어 선택>", + "claimText": "청구", "codesExplainText": "계정 문제를 진단하고 수정하기 위해\n개발자가 코드를 제공합니다.", "completeThisLevelToProceedText": "계속 진행하려면 이 레벨을\n완료해야 합니다!", "completionBonusText": "완료 보너스", @@ -555,6 +568,7 @@ "demoText": "체험판", "denyText": "거부", "deprecatedText": "더 이상 사용되지 않음", + "descriptionText": "설명", "desktopResText": "데스크톱 해상도", "deviceAccountUpgradeText": "경고:\n 기기 계정(${NAME})으로 로그인하셨습니다.\n 기기 계정은 향후 업데이트에서 제거되기에\n 진행 상황을 유지하려면 V2 계정으로 업그레이드하세요.", "difficultyEasyText": "쉬움", @@ -566,6 +580,7 @@ "disableXInputDescriptionText": "4개 이상의 컨트롤러를 허용하지만 아마 잘 작동하지 않을 것입니다.", "disableXInputText": "엑스인풋 컨트롤러 비활성화", "disabledText": "비활성화만", + "discardText": "버리기", "discordFriendsText": "함께 플레이할 새로운 친구를 찾고 싶으신가요?\n디스코드에 가입하여 새로운 친구를 찾아보세요!", "discordJoinText": "디스코드 가입", "doneText": "완료", @@ -600,6 +615,7 @@ "localProfileText": "(로컬 프로필)", "nameDescriptionText": "플레이어 이름", "nameText": "이름", + "profileAlreadyExistsText": "해당 이름을 가진 프로필이 이미 존재합니다.", "randomText": "무작위", "titleEditText": "프로필 편집", "titleNewText": "새 프로필", @@ -647,6 +663,8 @@ "errorText": "오류", "errorUnknownText": "알 수 없는 오류", "exitGameText": "${APP_NAME}를 종료하시겠습니까?", + "expiredAgoText": "만료 ${T} 전", + "expiresInText": "${T} 남았습니다.", "exportSuccessText": "'${NAME}' 를 내보냈습니다.", "externalStorageText": "외부 저장소", "failText": "실패", @@ -681,6 +699,8 @@ "duplicateText": "플레이 목록\n복사", "editText": "플레이 목록\n편집", "newText": "새\n플레이 목록", + "pointsToWinText": "승리 포인트", + "seriesLengthText": "시리즈 길이", "showTutorialText": "튜토리얼 보기", "shuffleGameOrderText": "게임 순서 섞기", "titleText": "${TYPE} 플레이 목록 커스터마이징" @@ -706,6 +726,7 @@ "copyCodeConfirmText": "코드가 클립보드에 복사되었습니다.", "copyCodeText": "코드 복사", "dedicatedServerInfoText": "최선의 결과를 위해 전용 서버를 구축하세요. 자세한 사항은 bombsquadgame.com/server를 참조해주십시오.", + "descriptionShortText": "파티 모집 창을 이용해 파티를 구성하세요.", "disconnectClientsText": "파티 내의 플레이어 ${COUNT}명의 연결이\n끊어집니다. 괜찮습니까?", "earnTicketsForRecommendingAmountText": "친구들은 게임을 시도하면 티켓 ${COUNT}장을 받습니다\n(귀하는 각각의 친구에 대해서 ${YOU_COUNT}장을 받습니다)", "earnTicketsForRecommendingText": "게임을 공유하고\n무료 티켓을 받으세요...", @@ -718,10 +739,10 @@ "friendHasSentPromoCodeText": "${NAME} 님이 ${APP_NAME} 티켓 ${COUNT}장을 보냄", "friendPromoCodeAwardText": "코드가 사용될 때마다 귀하는 티켓 ${COUNT}장을 받습니다.", "friendPromoCodeExpireText": "이 코드는 ${EXPIRE_HOURS}시간 후 만료되며 신규 플레이어에게만 적용됩니다.", - "friendPromoCodeInstructionsText": "사용하려면 ${APP_NAME} 앱을 열고 '설정->고급->코드 입력'으로 이동합니다.\n지원되는 모든 플랫폼의 다운로드 링크는 bombsquadgame.com에서 확인하세요.", + "friendPromoCodeInstructionsText": "사용하려면 ${APP_NAME}을 열고 \"설정->고급->정보 보내기\"로 이동합니다.\n지원되는 모든 플랫폼의 다운로드 링크는 bombsquadgame.com을 참조하세요.", "friendPromoCodeRedeemLongText": "최대 ${MAX_USES}명의 사람이 무료 티켓 ${COUNT}장과 교환할 수 있습니다.", "friendPromoCodeRedeemShortText": "게임에서 티켓 ${COUNT}장과 교환할 수 있습니다.", - "friendPromoCodeWhereToEnterText": "('설정->고급->코드 입력')", + "friendPromoCodeWhereToEnterText": "(\"설정->고급->정보 보내기\")", "getFriendInviteCodeText": "친구 초대 코드 받기", "googlePlayDescriptionText": "Google Play 플레이어들을 파티에 초대하세요.", "googlePlayInviteText": "초대", @@ -817,6 +838,12 @@ "youHaveShortText": "티켓 보유량: ${COUNT}", "youHaveText": "보유량: ${COUNT} 티켓" }, + "goldPass": { + "desc1InfTokensText": "무한한 토큰.", + "desc2NoAdsText": "광고 없음.", + "desc3ForeverText": "영원히.", + "goldPassText": "골든 패스" + }, "googleMultiplayerDiscontinuedText": "죄송하지만, 구글의 멀티플레이어 서비스는 더이상 이용할수가 없어요.\n지금 대체제에 가능한 빨리 작업중이에요.\n그 때까지는, 다른 접속 방법을 사용해주세요.\n-Eric", "googlePlayPurchasesNotAvailableText": "구매가 되지 않았습니다.\n아마 스토어 앱을 업데이트 해야 합니다.", "googlePlayServicesNotAvailableText": "Google Play 서비스를 사용할 수 없습니다.\n 일부 앱 기능이 비활성화될 수 있습니다.", @@ -891,6 +918,7 @@ "importText": "불러오기", "importingText": "불러오는 중...", "inGameClippedNameText": "게임 내에서는 다음과 같이 보여질 것입니다.\n\"${NAME}\"", + "inboxText": "받은 편지함", "installDiskSpaceErrorText": "오류: 설치를 완료할 수 없습니다.\n기기에 공간이 부족한 것 같습니다.\n공간을 확보한 후 다시 시도해보세요.", "internal": { "arrowsToExitListText": "목록에서 나가려면 ${LEFT} 또는 ${RIGHT}를 누르세요", @@ -945,12 +973,14 @@ "timeOutText": "(${TIME}초 후 시간 초과)", "touchScreenJoinWarningText": "터치스크린을 이용해 가입했습니다.\n실수로 그러신 경우 '메뉴->게임 나가기'를 누르세요.", "touchScreenText": "터치스크린", + "unableToCompleteTryAgainText": "지금은 완료할 수 없습니다.\n다시 시도해 주세요.", "unableToResolveHostText": "오류: 호스트를 확인할 수 없습니다.", "unavailableNoConnectionText": "이 기능은 현재 이용할 수 없습니다 (인터넷에 연결되지 않았습니까?)", "vrOrientationResetCardboardText": "이것을 이용해 VR 방향을 재설정합니다.\n게임을 플레이하려면 외부 컨트롤러가 필요합니다.", "vrOrientationResetText": "VR 방향이 재설정되었습니다.", "willTimeOutText": "(부재 중이면 시간 초과가 됩니다)" }, + "inventoryText": "인벤토리", "jumpBoldText": "점프", "jumpText": "점프", "keepText": "유지", @@ -997,8 +1027,11 @@ "seasonEndsMinutesText": "시즌은 ${NUMBER}분 후 종료됩니다.", "seasonText": "시즌 ${NUMBER}", "tournamentLeagueText": "이 토너먼트에 참가하려면 ${NAME} 리그에 도달해야 합니다.", - "trophyCountsResetText": "트로피 수는 다음 시즌에 초기화됩니다." + "trophyCountsResetText": "트로피 수는 다음 시즌에 초기화됩니다.", + "upToDateBonusDescriptionText": "최신 버전의 게임을 실행하면 플레이어는 여기에서 \n${PERCENT}%의 보너스를 받습니다.", + "upToDateBonusText": "최신 보너스" }, + "learnMoreText": "더 알아보기", "levelBestScoresText": "${LEVEL}의 최고 점수", "levelBestTimesText": "${LEVEL}의 최고 시간", "levelIsLockedText": "${LEVEL}(은)는 잠겼습니다.", @@ -1042,6 +1075,8 @@ "modeArcadeText": "아케이드 모드", "modeClassicText": "클래식 모드", "modeDemoText": "데모 모드", + "moreSoonText": "더 많은 내용이 곧 다가옵니다...", + "mostDestroyedPlayerText": "가장 많이 파괴된 플레이어", "mostValuablePlayerText": "가장 뛰어난 플레이어", "mostViolatedPlayerText": "가장 비참한 플레이어", "mostViolentPlayerText": "가장 난폭한 플레이어", @@ -1058,6 +1093,7 @@ "nameSuicideText": "${NAME} 님이 자살했습니다.", "nameText": "이름", "nativeText": "기본", + "newExclaimText": "신규!", "newPersonalBestText": "새 개인 최고 기록!", "newTestBuildAvailableText": "새 테스트 빌드가 나왔습니다! (${VERSION} 빌드 ${BUILD}).\n${ADDRESS}에서 다운로드 하세요", "newText": "새", @@ -1068,6 +1104,7 @@ "noContinuesText": "(계속 없음)", "noExternalStorageErrorText": "이 기기에서 외부 저장소를 찾지 못했습니다.", "noGameCircleText": "오류: GameCircle에 로그인되지 않았습니다", + "noMessagesText": "메시지 없음.", "noPluginsInstalledText": "설치된 플러그인 없음", "noScoresYetText": "아직 점수 없음.", "noServersFoundText": "서버를 찾을수 없음.", @@ -1076,6 +1113,7 @@ "noValidMapsErrorText": "이 게임 유형에 유효한 지도를 찾지 못했습니다.", "notEnoughPlayersRemainingText": "남은 플레이어가 충분하지 않습니다. 게임을 종료한 후 새로 시작하세요.", "notEnoughPlayersText": "이 게임을 시작하려면 ${COUNT}명 이상의 플레이어가 필요합니다!", + "notEnoughTicketsText": "티켓이 부족합니다!", "notNowText": "다음에", "notSignedInErrorText": "이 작업을 하려면 로그인해야 합니다.", "notSignedInGooglePlayErrorText": "이 작업을 하려면 Google Play로 로그인해야 합니다.", @@ -1088,6 +1126,9 @@ "onText": "켬", "oneMomentText": "잠시만요...", "onslaughtRespawnText": "${PLAYER} 님은 ${WAVE} 웨이브에서 부활합니다", + "openMeText": "나를 열어줘!", + "openNowText": "당장 열기", + "openText": "열기", "orText": "${A} 또는 ${B}", "otherText": "기타...", "outOfText": "(#${RANK} / ${ALL})", @@ -1173,6 +1214,8 @@ "punchText": "펀치", "purchaseForText": "${PRICE}에 구입", "purchaseGameText": "게임 구입", + "purchaseNeverAvailableText": "죄송합니다. 이 빌드에서는 구매가 불가능합니다.\n다른 플랫폼에서 계정에 로그인하여 해당 플랫폼에서 구매를 시도해 보세요.", + "purchaseNotAvailableText": "해당 구매는 불가능합니다.", "purchasingText": "구입 중...", "quitGameText": "${APP_NAME}를 종료하시겠습니까?", "quittingIn5SecondsText": "5초 후 종료됩니다...", @@ -1214,6 +1257,7 @@ "version_mismatch": "버전이 일치하지 않습니다.\nBombSquad 및 BombSquad Remote가\n최신 버전인지 확인한 후 다시 시도하세요." }, "removeInGameAdsText": "게임 내 광고를 제거하려면 상점에서 \"${PRO}\"를 잠금 해제하세요.", + "removeInGameAdsTokenPurchaseText": "기간 한정 특가: 토큰 팩을 구매하면 게임 내 광고를 제거할 수 있습니다.", "renameText": "이름 바꾸기", "replayEndText": "다시 보기 종료", "replayNameDefaultText": "마지막 게임 다시 보기", @@ -1247,6 +1291,7 @@ }, "scoreWasText": "(이전: ${COUNT})", "selectText": "선택", + "sendInfoDescriptionText": "계정 및 앱 상태 정보를 개발자에게 전송합니다.\n이름이나 전송 이유를 포함하세요.", "seriesWinLine1PlayerText": "님이 시리즈에서", "seriesWinLine1TeamText": "팀이 시리즈에서", "seriesWinLine1Text": "님이 시리즈에서", @@ -1264,6 +1309,7 @@ "alwaysUseInternalKeyboardDescriptionText": "(간편하고 사용하기 쉬운 텍스트 편집용 온스크린 키보드)", "alwaysUseInternalKeyboardText": "언제나 내부 키보드를 사용함", "benchmarksText": "벤치마크 및 스트레스 테스트", + "devToolsText": "개발자 도구", "disableCameraGyroscopeMotionText": "시야 자이로스코프 동작 비활성 하기", "disableCameraShakeText": "화면 진동 비활성하기", "disableThisNotice": "(고급설정에서 이 알림을 중지 할 수 있습니다)", @@ -1272,15 +1318,20 @@ "enterPromoCodeText": "코드 입력", "forTestingText": "참고: 이 값들은 테스트용으로 앱을 종료하면 없어집니다.", "helpTranslateText": "${APP_NAME}의 비영어권 번역은 커뮤니티에서 지원된\n결과입니다. 공헌하거나 번역을 교정하고 싶으면\n아래 링크를 이용하세요. 감사합니다!", + "insecureConnectionsDescriptionText": "권장하지는 않지만, 제한된 국가 또는 네트워크에서 온라인 플레이\n를 허용할 수 있습니다.", + "insecureConnectionsText": "보안이 취약한 연결 사용", "kickIdlePlayersText": "부재 중 플레이어 추방", "kidFriendlyModeText": "어린이 보호 모드 (폭력 순화 등)", "languageText": "언어", "moddingGuideText": "모딩 가이드", + "moddingToolsText": "모딩 도구", "mustRestartText": "이 설정이 적용되려면 게임을 다시 시작해야 합니다.", "netTestingText": "네트워크 테스트", "resetText": "재설정", + "sendInfoText": "정보 보내기", "showBombTrajectoriesText": "폭탄 궤적 표시", "showDemosWhenIdleText": "유휴 상태일 때 데모 표시", + "showDeprecatedLoginTypesText": "더 이상 사용되지 않는 로그인 유형 표시", "showDevConsoleButtonText": "개발자 콘솔 버튼 보이기", "showInGamePingText": "인게임 핑 보이기", "showPlayerNamesText": "플레이어 이름 표시", @@ -1301,6 +1352,9 @@ "signInWithGameCenterText": "Game Center 계정을 이용하려면\nGame Center 앱으로 로그인하세요.", "singleGamePlaylistNameText": "${GAME}만", "singlePlayerCountText": "1 플레이어", + "sizeLargeText": "대형", + "sizeMediumText": "중간", + "sizeSmallText": "작음", "soloNameFilterText": "솔로 ${NAME}", "soundtrackTypeNames": { "CharSelect": "캐릭터 선택", @@ -1385,6 +1439,7 @@ "testBuildValidatedText": "테스트 빌드 확인 완료. 즐거운 시간 되세요!", "thankYouText": "지원해주셔서 감사합니다! 즐거운 시간 되세요!!", "threeKillText": "트리플 킬!!", + "ticketsDescriptionText": "티켓은 상점에서 캐릭터, 맵, 미니게임 등을 잠금 해제하는 데 사\n용할 수 있습니다.\n\n티켓은 캠페인, 토너먼트, 업적을 통해 획득한 상자에서 찾을 수 \n있습니다.", "timeBonusText": "시간 보너스", "timeElapsedText": "시간 경과", "timeExpiredText": "시간 종료", @@ -1395,10 +1450,23 @@ "tipText": "팁", "titleText": "BombSquad", "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "토큰 얻기", + "notEnoughTokensText": "토큰이 부족합니다!", + "numTokensText": "${COUNT}개 토큰", + "shinyNewCurrencyText": "BombSquad의 반짝이는 새로운 화폐.", + "tokenPack1Text": "작은 토큰 팩", + "tokenPack2Text": "중간 토큰 팩", + "tokenPack3Text": "큰 토큰 팩", + "tokenPack4Text": "엄청 큰 토큰 팩", + "tokensDescriptionText": "토큰은 상자 잠금 해제 속도를 높이고\n다른 게임 및 계정 기능에 사용됩니다.\n\n게임에서 토큰을 얻거나\n팩으로 구매할 수 있습니다. 또는 무한한 토큰을 위해 골드 패스를 구매하면\n다시는 그 토큰에 대해서는 듣지 못할 겁니다.", + "youHaveGoldPassText": "골드 패스가 있습니다.\n모든 토큰 구매는 무료입니다.\n즐기세요!" + }, "topFriendsText": "절친들", "tournamentCheckingStateText": "토너먼트 상태를 확인 중입니다. 잠시 기다리세요...", "tournamentEndedText": "이 토너먼트는 종료되었습니다. 새 토너먼트가 곧 시작됩니다.", "tournamentEntryText": "토너먼트 참가", + "tournamentFinalStandingsText": "최종 순위", "tournamentResultsRecentText": "최근 토너먼트 결과", "tournamentStandingsText": "토너먼트 성적", "tournamentText": "토너먼트", @@ -1454,6 +1522,18 @@ "Uber Onslaught": "슈퍼 맹습", "Uber Runaround": "슈퍼 행군" }, + "displayItemNames": { + "${C} Tickets": "${C} 티켓", + "${C} Tokens": "${C} 토큰", + "Chest": "상자", + "L1 Chest": "레벨 1 상자", + "L2 Chest": "레벨 2 상자", + "L3 Chest": "레벨 3 상자", + "L4 Chest": "레벨 4 상자", + "L5 Chest": "레벨 5 상자", + "L6 Chest": "레벨 6 상자", + "Unknown Chest": "알려지지 않은 상자" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "승리하려면 일정 시간 동안 선택된 자가 되세요.\n그 지위를 뺏으려면 선택된 자를 처치하세요.", "Bomb as many targets as you can.": "가능한 한 많은 목표에 폭탄을 던지세요.", @@ -1558,6 +1638,7 @@ "Korean": "한국어", "Malay": "말레이어", "Persian": "페르시아어", + "PirateSpeak": "해적의 말", "Polish": "폴란드어", "Portuguese": "포르투갈어", "Romanian": "루마니아어", @@ -1629,6 +1710,7 @@ "Cheating detected; scores and prizes suspended for ${COUNT} days.": "부정행위 사용이 감지되었습니다. ${COUNT}일 간 점수 및 상품이 중지됩니다.", "Could not establish a secure connection.": "보안 연결을 수립할 수 없습니다.", "Daily maximum reached.": "일일 한도에 도달했습니다.", + "Daily sign-in reward": "매일 로그인 보상", "Entering tournament...": "토너먼트에 참가 중...", "Invalid code.": "잘못된 코드.", "Invalid payment; purchase canceled.": "구매 무효화; 구매가 취소되었습니다.", @@ -1638,11 +1720,14 @@ "Item unlocked!": "아이템 잠금해제!", "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "연동 거부됨. ${ACCOUNT} 에 모두 지워질 \n매우 중요한 데이터가 있습니다.\n원한다면 반대 순서로 연동이 가능합니다\n(이 계정의 데이터가 지워지는 대신에)", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "${ACCOUNT} 을 이 계정에 연동하시겠습니까?\n${ACCOUNT} 계정에 있는 모든 데이터가 삭제됩니다.\n이 동작은 번복할 수 없습니다. 확실합니까?", + "Longer streaks lead to better rewards.": "연속 기록이 길수록 보상도 더 좋습니다.", "Max number of playlists reached.": "최대 플레이 목록 수에 도달했습니다.", "Max number of profiles reached.": "최대 프로필 수에 도달했습니다.", "Maximum friend code rewards reached.": "최대의 친구 코드 보상에 도달했습니다.", "Message is too long.": "메시지가 너무 깁니다.", + "New tournament result!": "새로운 토너먼트 결과!", "No servers are available. Please try again soon.": "가능한 서버가 없습니다. 나중에 다시 시도해주십시오.", + "No slots available. Free a slot and try again.": "이용 가능한 슬롯이 없습니다. 슬롯을 비우고 다시 시도하세요.", "Profile \"${NAME}\" upgraded successfully.": "프로필 \"${NAME}\" 업그레이드 성공.", "Profile could not be upgraded.": "프로필을 업그레이드하지 못했습니다.", "Purchase successful!": "구매 성공!", @@ -1652,7 +1737,9 @@ "Sorry, this code has already been used.": "죄송합니다만 이 코드는 이미 사용되었습니다.", "Sorry, this code has expired.": "죄송합니다만 이 코드는 만료되었습니다.", "Sorry, this code only works for new accounts.": "죄송합니다만 이 코드는 새 계정에만 유효합니다.", + "Sorry, this has expired.": "죄송해요, 이건 만료됐어요.", "Still searching for nearby servers; please try again soon.": "아직 근처에 있는 서버를 찾는 중입니다; 나중에 다시 시도해주십시오.", + "Streak: ${NUM} days": "연속 기록: ${NUM}일", "Temporarily unavailable; please try again later.": "일시적으로 사용불가; 나중에 다시 시도하세요.", "The tournament ended before you finished.": "귀하가 완료하기 전에 토너먼트가 종료되었습니다.", "This account cannot be unlinked for ${NUM} days.": "이 계정은 ${NUM} 일 동안 연동 해제가 불가능합니다.", @@ -1663,19 +1750,27 @@ "Tournaments require ${VERSION} or newer": "토너먼트는 ${VERSION} 또는 그 보다 새로운 버전이 필요합니다.", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "이 계정에서 ${ACCOUNT} 의 연동을 해제하시겠습니까?\n${ACCOUNT} 에 있는 모든 데이터가 초기화됩니다.\n(일부 상황에서 도전과제 빼고는)", "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "경고: 당신 계정에 해킹 관련 경고가 전해졌습니다.\n해킹 중인 걸로 밝혀진 계정은 즉시 차단됩니다. 제발 게임만은 공정하게 합시다.", + "Wait reduced!": "대기 시간이 단축됐습니다!", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "귀하의 기기를 이 계정에 연동하시겠습니까?\n\n귀하의 기기 계정: ${ACCOUNT1}\n이 계정: ${ACCOUNT2}\n\n이로써 기존 진행 상황을 유지할 수 있습니다.\n경고: 이 작업은 취소할 수 없습니다!", "You already own this!": "이미 소유 중입니다!", "You can join in ${COUNT} seconds.": "${COUNT} 초 후에 참가할 수 있습니다.", "You don't have enough tickets for this!": "티켓이 충분하지 않습니다!", "You don't own that.": "이미 소유하지 않았습니다.", "You got ${COUNT} tickets!": "티켓 ${COUNT}장을 받았습니다!", + "You got ${COUNT} tokens!": "${COUNT}개의 토큰을 얻었습니다!", "You got a ${ITEM}!": "${ITEM}(을)를 받았습니다!", + "You got a chest!": "상자를 얻었습니다!", + "You got an achievement reward!": "업적 보상을 받았습니다!", "You have been promoted to a new league; congratulations!": "새 리그로 승격되었습니다. 축하합니다!", + "You lost a chest! (All your chest slots were full)": "상자를 하나 잃어버렸어요!(상자 슬롯이 모두 가득 찼어요)", + "You must update the app to view this.": "이 내용을 보려면 앱을 업데이트해야 합니다.", "You must update to a newer version of the app to do this.": "이 작업을 하려면 새 앱 버전으로 업데이트해야 합니다.", "You must update to the newest version of the game to do this.": "이 작업을 하려면 새로운 게임 버전으로 업데이트해야 합니다.", "You must wait a few seconds before entering a new code.": "새 코드를 입력하기 전에 수초 간 기다려야 합니다.", + "You placed #${RANK} in a tournament!": "토너먼트에서 #${RANK}를 달성했습니다!", "You ranked #${RANK} in the last tournament. Thanks for playing!": "마지막 토너먼트에서 #${RANK}위에 랭크되었습니다. 플레이해주셔서 감사합니다!", "Your account was rejected. Are you signed in?": "계정이 거부되었습니다. 로그인 되어있으시나요?", + "Your ad views are not registering. Ad options will be limited for a while.": "광고 조회수가 올라가지 않습니다. 당분간은 광고가 제한됩니다.", "Your copy of the game has been modified.\nPlease revert any changes and try again.": "게임 사본이 수정되었습니다.\n변경 사항을 되돌린 후 다시 시도해주십시오.", "Your friend code was used by ${ACCOUNT}": "${ACCOUNT} 님이 친구 코드를 사용했습니다" }, @@ -1824,6 +1919,7 @@ "toSkipPressAnythingText": "(튜토리얼을 건너뛰려면 아무거나 누르세요)" }, "twoKillText": "더블 킬!", + "uiScaleText": "Ui 크기", "unavailableText": "이용할 수 없음", "unconfiguredControllerDetectedText": "구성되지 않은 컨트롤러가 검색됨:", "unlockThisInTheStoreText": "상점에서 잠금 해제해야 합니다.", @@ -1837,10 +1933,13 @@ "upgradeText": "업그레이드", "upgradeToPlayText": "플레이하려면 상점에서 \"${PRO}\"를 잠금 해제하세요.", "useDefaultText": "기본값 사용", + "userSystemScriptsCreateText": "사용자 시스템 스크립트 생성", + "userSystemScriptsDeleteText": "사용자 시스템 스크립트 삭제", "usesExternalControllerText": "이 게임은 외부 컨트롤러를 입력용으로 사용합니다.", "usingItunesText": "사운트트랙에 음악 앱 사용 중...", "usingItunesTurnRepeatAndShuffleOnText": "iTunes에서 임의 재생이 켜져있고 반복은 모두로 되어 있는지 확인해주십시오.", "v2AccountLinkingInfoText": "V2 계정을 연결하려면 '계정 관리' 버튼을 누르세요.", + "v2AccountRequiredText": "여기에는 V2 계정을 필요로 합니다. 계정을 업그레이드하고 다시 시도하세요.", "validatingTestBuildText": "테스트 빌드 확인 중...", "viaText": "통하여 로그인 함", "victoryText": "승리!", @@ -1907,5 +2006,6 @@ }, "yesAllowText": "예, 허용합니다!", "yourBestScoresText": "내 최고 점수", - "yourBestTimesText": "내 최고 시간" + "yourBestTimesText": "내 최고 시간", + "yourPrizeText": "경품:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/malay.json b/dist/ba_data/data/languages/malay.json index 1eee755..ff2bef0 100644 --- a/dist/ba_data/data/languages/malay.json +++ b/dist/ba_data/data/languages/malay.json @@ -5,9 +5,11 @@ "achievementProgressText": "Pencapaian: ${COUNT} daripada ${TOTAL}", "campaignProgressText": "Perkembangan Kempen [Susah]: ${PROGRESS}", "changeOncePerSeason": "Anda hanya boleh menukar ini sekali sahaja pada setiap musim.", - "changeOncePerSeasonError": "Anda mesti menunggu sehingga musim depan untuk menukarkannya lagi (${NUM} hari)", + "changeOncePerSeasonError": "Anda mesti menunggu sehingga musim seterusnya untuk menukarnya lagi (${NUM} hari)", + "createAnAccountText": "Buat Akaun", "customName": "Nama Tersuai", - "googlePlayGamesAccountSwitchText": "Jika anda ingin menggunakan akaun Google lain,\ngunakan apl Permainan Google Play untuk bertukar.", + "deleteAccountText": "Padamkan Akaun", + "googlePlayGamesAccountSwitchText": "Jika anda ingin menggunakan akaun Google lain,\ngunakan aplikasi Google Play Games untuk bertukar.", "linkAccountsEnterCodeText": "Masukkan Kod", "linkAccountsGenerateCodeText": "Hasilkan Kod", "linkAccountsInfoText": "(kongsi perkembangan melalui platform yang berbeza)", @@ -23,6 +25,7 @@ "setAccountNameDesc": "Pilih nama untuk dipaparkan untuk akaun anda.\nAnda boleh menggunakan nama itu dari salah satu akaun pautan anda \natau buat nama tersuai unik.", "signInInfoText": "Daftar masuk untuk dapatkan tiket, bersaing dalam talian,\ndan kongsi perkembangan melalui peranti.", "signInText": "Daftar Masuk", + "signInWithAnEmailAddressText": "Daftar masuk dengan e-mel", "signInWithDeviceInfoText": "(akaun automatik yang hanya tersedia untuk peranti ini)", "signInWithDeviceText": "Daftar masuk dengan akaun peranti", "signInWithGameCircleText": "Daftar masuk dengan Game Circle", @@ -31,7 +34,7 @@ "signInWithTestAccountText": "Daftar masuk dengan akaun ujian", "signInWithText": "Daftar masuk dengan ${SERVICE}", "signInWithV2InfoText": "(akaun yang berfungsi untuk semua platform)", - "signInWithV2Text": "Log masuk dengan akaun BombSquad", + "signInWithV2Text": "Daftar masuk dengan akaun ${APP_NAME}", "signOutText": "Daftar Keluar", "signingInText": "Mendaftar masuk...", "signingOutText": "Mendaftar keluar...", @@ -40,7 +43,7 @@ "unlinkAccountsInstructionsText": "Pilih akaun untuk nyahpaut", "unlinkAccountsText": "Nyahpaut Akaun", "unlinkLegacyV1AccountsText": "Nyahsambung Akaun Legacy (V1)", - "v2LinkInstructionsText": "Gunakan pautan ini untuk mencipta akaun atau daftar masuk", + "v2LinkInstructionsText": "Gunakan pautan ini untuk buat akaun baru atau daftar masuk.", "viaAccount": "(melalui akaun ${NAME})", "youAreSignedInAsText": "Anda didaftar masuk sebagai:" }, @@ -52,7 +55,7 @@ "descriptionComplete": "Membunuh 3 orang jahat dengan TNT", "descriptionFull": "Bunuh 3 orang jahat dengan TNT di ${LEVEL}", "descriptionFullComplete": "Membunuh 3 musuh dengan TNT di ${LEVEL}", - "name": "Letupan Dinamit" + "name": "Haa Meletup Dinamit" }, "Boxer": { "description": "Menang tanpa menggunakan apa-apa bom", @@ -82,7 +85,7 @@ "description": "Bunuh 6 orang jahat dengan periuk-api", "descriptionComplete": "Menerajangi 6 musuh dengan periuk api", "descriptionFull": "Lempang 6 musuh dengan periuk api di ${LEVEL}", - "descriptionFullComplete": "Terlempang 6 musuh dengan periuk api di ${LEVEL}", + "descriptionFullComplete": "Melempang 6 musuh dengan periuk api di ${LEVEL}", "name": "Pelombong Emas" }, "Got the Moves": { @@ -119,18 +122,18 @@ "name": "Ahli Sihir ${LEVEL}" }, "Mine Games": { - "description": "Lempang 3 musuh dengan periuk api", - "descriptionComplete": "Sepak 3 musuh dengan periuk api", + "description": "Sepak 3 musuh dengan periuk api", + "descriptionComplete": "Menyepak 3 musuh dengan periuk api", "descriptionFull": "Sepak 3 musuh dengan periuk api di ${LEVEL}", "descriptionFullComplete": "Menyepak 3 musuh dengan periuk api di ${LEVEL}", - "name": "Permainan Periuk Api" + "name": "Nah Bom Lantai" }, "Off You Go Then": { - "description": "Buang 3 musuh", + "description": "Buang/jatuhkan 3 orang jahat dari peta/tapak permainan", "descriptionComplete": "Membuang 3 orang jahat", - "descriptionFull": "Buang 3 musuh di ${LEVEL}", - "descriptionFullComplete": "Membuang 3 musuh ${LEVEL}", - "name": "Abang Aziz jatuh bot" + "descriptionFull": "Buang/jatuhkan 3 musuh dari peta/tapak permainan di ${LEVEL}", + "descriptionFullComplete": "Membuang 3 musuh di ${LEVEL}", + "name": "Gi Main Jauh-jauh" }, "Onslaught God": { "description": "Dapatkan 5000 mata", @@ -151,7 +154,7 @@ "descriptionComplete": "Mengalahkan semua serangan", "descriptionFull": "Kalahkan semua serangan di ${LEVEL}", "descriptionFullComplete": "Mengalahkan semua serangan di ${LEVEL}", - "name": "Berjaya ${LEVEL}" + "name": "Kemenangan ${LEVEL}" }, "Onslaught Wizard": { "description": "Skorkan 1000 mata", @@ -162,23 +165,23 @@ }, "Precision Bombing": { "description": "Menang tanpa sebarang kuasa tambahan", - "descriptionComplete": "Menang tanpa kuasa tambahan", - "descriptionFull": "Menangkan ${LEVEL} tanpa sebarang kuasa tambahan", - "descriptionFullComplete": "Menang ${LEVEL} tanpa kuasa tambahan", - "name": "Pengeboman tepat" + "descriptionComplete": "Memenangi tanpa sebarang kuasa tambahan", + "descriptionFull": "Menang ${LEVEL} tanpa sebarang kuasa tambahan", + "descriptionFullComplete": "Memenangi ${LEVEL} tanpa kuasa tambahan", + "name": "Pengeboman Tepat" }, "Pro Boxer": { "description": "Menang tanpa menggunakan bom", - "descriptionComplete": "Monang tanpa menggunakan bom", - "descriptionFull": "Lengkapkan ${LEVEL} tanpa menggunakan bom", - "descriptionFullComplete": "Selesai level ${LEVEL} tanpa menggunakan bom", + "descriptionComplete": "Memenangi tanpa menggunakan bom", + "descriptionFull": "Lengkapkan ${LEVEL} tanpa menggunakan sebarang bom", + "descriptionFullComplete": "Melengkapkan level ${LEVEL} tanpa menggunakan sebarang bom", "name": "Peninju Pro" }, "Pro Football Shutout": { "description": "Menang tanpa membiarkan penjahat mendapat markah", - "descriptionComplete": "Memonangi tanpa membiarkan penjahat mendapat markah", + "descriptionComplete": "Memenangi tanpa membiarkan penjahat mendapat markah", "descriptionFull": "Menangkan level ${LEVEL} tanpa membiarkan penjahat mendapat markah", - "descriptionFullComplete": "Menang ${LEVEL} tanpa membiarkan penjahat mendapat markah", + "descriptionFullComplete": "Memenangi ${LEVEL} tanpa membiarkan penjahat mendapat markah", "name": "${LEVEL} Menutup" }, "Pro Football Victory": { @@ -189,15 +192,15 @@ "name": "${LEVEL} Kemenangan" }, "Pro Onslaught Victory": { - "description": "Kalahkan semua tahap", - "descriptionComplete": "Telah mengalahkan semua gelombang", + "description": "Kalahkan semua tahap serangan", + "descriptionComplete": "Mengalahkan semua tahap serangan", "descriptionFull": "Kalahkan semua gelombang ${LEVEL}", "descriptionFullComplete": "Telah mengalahkan semua gelombang ${LEVEL}", "name": "${LEVEL} Kemenangan" }, "Pro Runaround Victory": { "description": "Lengkapkan semua gelombang", - "descriptionComplete": "Telah selesai semua gelombang", + "descriptionComplete": "Menyelesaikan semua serangan", "descriptionFull": "Lengkapkan semua gelombang pada ${LEVEL}", "descriptionFullComplete": "Telah selesai semua gelombang pada ${LEVEL}", "name": "pemenang ${LEVEL}" @@ -339,6 +342,8 @@ "allowText": "Benarkan", "alreadySignedInText": "Akaun anda didaftar masuk dari peranti lain;\nsila tukar akaun atau tutupkan permainan pada\nperanti itu dan cuba lagi.", "apiVersionErrorText": "Tidak dapat memuatkan modul ${NAME}; ia menyasarkan versi api ${VERSION_USED}; kami memerlukan ${VERSION_REQUIRED}.", + "applyText": "Memohon", + "areYouSureText": "Adakah awak pasti?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(\"Automatik\" menghidupkan ini apabila fon kepala dimasukkan)", "headRelativeVRAudioText": "Audio VR Set-Kelapa Relatif", @@ -360,14 +365,23 @@ "boostText": "Tingkatkan", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} dapat ditatarajah di aplikasinya", "buttonText": "butang", - "canWeDebugText": "Adakah anda mahu BombSquad melaporkan pepijat, kerosakan, dan\nmaklumat penggunaan asas kepada pembangun secara automatik?\n\nData ini tidak mengandungi maklumat peribadi dan membantu\npermainan selalu berjalan dengan lancar dan bebas pepijat.", + "canWeDebugText": "Adakah anda mahu ${APP_NAME} melaporkan secara automatik pepijat, ranap sistem \ndan maklumat penggunaan asas kepada pembangun?\n \nData ini tidak mengandungi maklumat peribadi dan membantu \npermainan selalu berjalan lancar dan bebas pepijat.", "cancelText": "Batal", "cantConfigureDeviceText": "Maaf, ${DEVICE} tidak dapat diatur.", "challengeEndedText": "Cabaran ini telah tamat", "chatMuteText": "Senyapkan Perbualan", "chatMutedText": "Perbualan Disenyapkan", "chatUnMuteText": "Nyahsenyapkan Perbualan", + "chests": { + "prizeOddsText": "Peluang Hadiah", + "reduceWaitText": "Kurangkan Tunggu", + "slotDescriptionText": "Slot ini boleh memuatkan peti.\n\nPeroleh peti dengan bermain peringkat kempen,\nmenempatkan dalam kejohanan, dan melengkapkan\npencapaian.", + "slotText": "Slot Peti ${NUM}", + "slotsFullWarningText": "AMARAN: Semua slot peti anda penuh.\nMana-mana peti yang anda perolehi dalam permainan ini akan hilang.", + "unlocksInText": "Dibuka Dalam" + }, "choosingPlayerText": "", + "claimText": "Tuntut", "codesExplainText": "Kod disediakan oleh pembangun untuk\nmendiagnosis dan membaiki masalah akaun.", "completeThisLevelToProceedText": "Anda mesti menyelasaikan\nperingkat ini untuk teruskan!", "completionBonusText": "Bonus Penyelesaian", @@ -413,55 +427,55 @@ "pressAnyButtonText": "Tekan mana-mana butang...", "pressLeftRightText": "Tekan kiri atau kanan...", "pressUpDownText": "Tekan bawah atau atas...", - "runButton1Text": "Butang Jalankan 1", - "runButton2Text": "Butang Jalankan 2", - "runTrigger1Text": "Jalankan Pencetus 1", - "runTrigger2Text": "Jalankan Pencetus 2", + "runButton1Text": "Butang Lari 1", + "runButton2Text": "Butang Lari 2", + "runTrigger1Text": "Pencetus Larian 1", + "runTrigger2Text": "Pencetus Larian 2", "runTriggerDescriptionText": "(pencetus analog membolehkan anda berlari pada kelajuan yang berbeza)", - "secondHalfText": "Gunakan ini untuk mengkonfigurasi pengawal kedua\ndalam peranti, 2-pengawal-dalam-1 yang\nmuncul sebagai pengawal tunggal.", - "secondaryEnableText": "Dayakan", - "secondaryText": "Pengawal Kedua", + "secondHalfText": "Gunakan ini untuk mengkonfigurasi pengawal kedua\ndalam peranti, 2-alat kawalan-dalam-1 yang\nmuncul sebagai alat kawalan tunggal.", + "secondaryEnableText": "Aktifkan", + "secondaryText": "Alat Kawalan Kedua", "startButtonActivatesDefaultDescriptionText": "(matikan ini jika butang mula anda lebih kepada butang 'menu')", "startButtonActivatesDefaultText": "Butang Mula Mengaktifkan Widget Biasa", - "titleText": "Setup Pengawal", - "twoInOneSetupText": "Persediaan Pengawal 2-dalam-1", - "uiOnlyDescriptionText": "(halang pengawal ini daripada menyertai permainan)", - "uiOnlyText": "Had kepada Penggunaan Menu", + "titleText": "Penetap Alat Kawalan", + "twoInOneSetupText": "Penetap Alat Kawalan 2-dalam-1", + "uiOnlyDescriptionText": "(menghalang alat kawalan ini daripada menyertai permainan)", + "uiOnlyText": "Hadkan kepada Penggunaan Menu sahaja", "unassignedButtonsRunText": "Semua Butang yang Tidak Ditugaskan Dijalankan", "unsetText": "", "vrReorientButtonText": "Butang VR Reorient" }, "configKeyboardWindow": { "configuringText": "Mengkonfigurasi ${DEVICE}", - "keyboard2NoteText": "Nota: kebanyakan papan kekunci boleh mendaftarkan beberapa tekanan kekunci dalam\nsesuatu masa, jadi papan kekunci kedua mungkin boleh berfungsi dengan lebih baik\njika terdapat papan kekunci berasingan yang dilampirkan untuk mereka gunakan.\nAmbil perhatian bahawa anda masih perlu memberikan kunci unik kepada\ndua pemain walaupun dalam kes itu." + "keyboard2NoteText": "Nota: kebanyakan papan kekunci hanya boleh mengesan beberapa tekanan kekunci sahaja dalam\nsesuatu masa, jadi papan kekunci kedua mungkin boleh berfungsi dengan lebih baik\njika terdapat papan kekunci berasingan yang dilampirkan untuk mereka gunakan.\nAmbil perhatian bahawa anda masih perlu memberikan kunci unik kepada\ndua pemain walaupun dalam kes itu." }, "configTouchscreenWindow": { "actionControlScaleText": "Skala Kawalan Aksi", "actionsText": "Aksi", "buttonsText": "butang", "dragControlsText": "< seret kawalan untuk ubah kedudukan >", - "joystickText": "kayu ria", - "movementControlScaleText": "Skala Kawalan Gerakan", + "joystickText": "Kayu Bedik (Joystick)", + "movementControlScaleText": "Skala Kawalan Pergerakan", "movementText": "Pergerakan", "resetText": "Tetap Semula", - "swipeControlsHiddenText": "Sembunyikan Ikon Sapu", - "swipeInfoText": "Gaya kawalan 'sapu' sangat sedikit digunakan tapi ia\nmembuatkan lebih senang bermain tanpa melihat kawalan", - "swipeText": "sapu", + "swipeControlsHiddenText": "Sembunyikan Ikon Kawalan Yang Mengggunakan Seret", + "swipeInfoText": "Gaya kawalan 'seret' mungkin susah untuk dibiasakan tapi ia\nmembuatkan lebih senang bermain tanpa melihat pada kawalan.", + "swipeText": "seret", "titleText": "Atur Skrin Sentuhan" }, - "configureDeviceInSystemSettingsText": "${DEVICE} boleh diatur di apl Tetapan Sistem", + "configureDeviceInSystemSettingsText": "${DEVICE} boleh diatur di aplikasi Tetapan Sistem.", "configureItNowText": "Aturnya sekarang?", "configureText": "Atur", "connectMobileDevicesWindow": { "amazonText": "Amazon AppStore", "appStoreText": "App Store", - "bestResultsText": "Untuk hasil terbaik, anda memerlukan rangkaian Wi-Fi yang bebas lambat.\nAnda boleh mengurangkan kelambatan Wi-Fi dengan mematikan peranti wayarles,\ndengan bermain berdekatan dengan penghala Wi-Fi anda, dan dengan menyambungkan\nhos permainan ke rangkaian melalui ethernet.", - "explanationText": "Untuk menggunakan telefon pintar atau tablet sebagai alat kawalan tanpa\nwayar, pasang aplikasi \"${REMOTE_APP_NAME}\" padanya. Banyak peranti boleh\nsambung ke satu permainan ${APP_NAME} melalui Wi-Fi, dan percuma!", - "forAndroidText": "Untuk Android:", - "forIOSText": "Untuk iOS:", + "bestResultsText": "Untuk hasil terbaik, anda memerlukan rangkaian Wi-Fi yang bebas lambat.\nAnda boleh mengurangkan kelambatan Wi-Fi dengan mematikan peranti tanpa wayar lain (peranti lain yang guna Wi-Fi),\ndengan bermain berdekatan dengan router/pengahala Wi-Fi anda, dan dengan menyambungkan\nhos permainan ke rangkaian melalui ethernet.", + "explanationText": "Untuk menggunakan telefon pintar atau tablet sebagai alat kawalan tanpa\nwayar, pasang aplikasi \"${REMOTE_APP_NAME}\" padanya. Banyak peranti boleh\nsambung ke satu permainan ${APP_NAME} melalui Wi-Fi, dan ianya percuma!", + "forAndroidText": "untuk Android:", + "forIOSText": "untuk iOS:", "getItForText": "Dapatkan ${REMOTE_APP_NAME} bagi iOS di Apple App Store\natau untuk Android di Google Play Store atau Amazon Appstore", "googlePlayText": "Google Play", - "titleText": "Menggunakan Peranti Mudah Alih sebagai Pengawal:" + "titleText": "Menggunakan Peranti Mudah Alih (telefon pintar/tablet) sebagai Alat Kawalan:" }, "continuePurchaseText": "Teruskan untuk ${PRICE}?", "continueText": "Teruskan", @@ -471,17 +485,17 @@ "activenessInfoText": "Pengganda ini meningkat pada hari apabila anda\nbermain dan jatuh pada hari apabila anda tidak.", "activityText": "Aktiviti", "campaignText": "Kempen", - "challengesInfoText": "Dapat hadiah apabila melengkapkan permainan mini.\n\nHadiah dan tahap kesukaran meningkat\nsetiap kali cabaran selesai dan\nberkurangan apabila tamat tempoh atau dilucuthakkan.", + "challengesInfoText": "Dapat hadiah apabila melengkapkan permainan mini.\n\nHadiah dan tahap kesukaran meningkat\nsetiap kali satu cabaran diselesaikan dan\nberkurangan pabila satu tamat tempoh atau dilucuthakkan.", "challengesText": "Cabaran", - "currentBestText": "Yang Terbaik", + "currentBestText": "Yang Terbaik Semasa", "customText": "Ubah suai", "entryFeeText": "Kemasukan", "forfeitConfirmText": "Hilang cabaran ini?", - "forfeitNotAllowedYetText": "Cabaran ini tidak boleh diketepikan lagi.", + "forfeitNotAllowedYetText": "Cabaran ini belum boleh diketepikan lagi.", "forfeitText": "Mengalah", "multipliersText": "Pengganda", "nextChallengeText": "Cabaran Seterusnya", - "nextPlayText": "Main Seterusnya", + "nextPlayText": "Permainan Seterusnya", "ofTotalTimeText": "daripada ${TOTAL}", "playNowText": "Main sekarang", "pointsText": "Mata", @@ -500,19 +514,19 @@ "toRankedText": "Untuk Peringkat", "totalText": "jumlah", "tournamentInfoText": "Bersaing untuk markah tinggi dengan\npemain lain dalam liga anda.\n\nHadiah diberikan kepada markah tertinggi\npemain apabila masa kejohanan tamat.", - "welcome1Text": "Selamat datang ke ${LEAGUE}. Anda boleh memperbaiki\nkedudukan liga dengan memperoleh penarafan bintang, melengkapkan\npencapaian, dan memenangi trofi dalam kejohanan.", - "welcome2Text": "Anda juga boleh mendapatkan tiket daripada banyak aktiviti yang sama.\nTiket boleh digunakan untuk membuka kunci aksara baharu, peta dan\npermainan mini, untuk menyertai kejohanan dan banyak lagi.", - "yourPowerRankingText": "Kedudukan Terhebat Anda:" + "welcome1Text": "Selamat datang ke ${LEAGUE}. Anda boleh memperbaikkan\nkedudukan liga dengan memperoleh penarafan bintang, melengkapkan\npencapaian, dan memenangi trofi dalam kejohanan.", + "welcome2Text": "Anda juga boleh mendapatkan tiket daripada banyak aktiviti yang sama.\nTiket boleh digunakan untuk membuka kunci aksara(karakter) baharu, peta dan\npermainan mini, untuk menyertai kejohanan dan banyak lagi.", + "yourPowerRankingText": "Kedudukan Kuasa Anda:" }, - "copyConfirmText": "Disalin ke papan keratan.", + "copyConfirmText": "Dah disalin ke papan keratan (clipboard).", "copyOfText": "Salinan ${NAME}", - "copyText": "Salinan", - "createEditPlayerText": "", - "createText": "Cipta", + "copyText": "Salin", + "createEditPlayerText": "", + "createText": "Buat", "creditsWindow": { "additionalAudioArtIdeasText": "Audio Tambahan, Hasil Kerja Awal, dan Idea oleh ${NAME}", "additionalMusicFromText": "Muzik tambahan dari ${NAME}", - "allMyFamilyText": "Seluruh kawan dan keluarga saya yang tolong main uji", + "allMyFamilyText": "Semua kawan dan keluarga saya yang tolong uji permainan", "codingGraphicsAudioText": "Aturcara, Grafik, dan Audio oleh ${NAME}", "languageTranslationsText": "Penerjemah Bahasa:", "legalText": "Sah:", @@ -524,61 +538,63 @@ "specialThanksText": "Terima Kasih Banyak kepada:", "thanksEspeciallyToText": "Terima kasih terutamanya kepada ${NAME}", "titleText": "Penghargaan ${APP_NAME}", - "whoeverInventedCoffeeText": "Sesiapa yang buatkan kopi" + "whoeverInventedCoffeeText": "Sesiapapun yang buat kopi" }, "currentStandingText": "Kedudukan semasa anda adalah #${RANK}", "customizeText": "Ubahsuai...", - "deathsTallyText": "${COUNT} meninggal", - "deathsText": "Meninggal", - "debugText": "nyahpep..izzat", + "deathsTallyText": "${COUNT} kematian", + "deathsText": "Kematian", + "debugText": "nyahpepijat (debug)", "debugWindow": { - "reloadBenchmarkBestResultsText": "Nota: adalah disyorkan agar anda menetapkan Tetapan->Grafik->Tekstur kepada 'Tinggi' semasa menguji ini.", + "reloadBenchmarkBestResultsText": "Nota: Disyorkan untuk anda menetapkan Tetapan->Grafik->Tekstur kepada 'Tinggi' semasa menguji ni.", "runCPUBenchmarkText": "Jalankan Penanda Aras CPU", "runGPUBenchmarkText": "Jalankan Penanda Aras GPU", "runMediaReloadBenchmarkText": "Jalankan Penanda Aras Muat Semula Media", "runStressTestText": "Jalankan ujian tekanan", "stressTestPlayerCountText": "Kiraan Pemain", - "stressTestPlaylistDescriptionText": "Ujian Tekanan Senarai Main", - "stressTestPlaylistNameText": "Nama Senarai Main", - "stressTestPlaylistTypeText": "Jenis Senarai Main", + "stressTestPlaylistDescriptionText": "Ujian Tekanan Senarai Permainan", + "stressTestPlaylistNameText": "Nama Senarai Permainan", + "stressTestPlaylistTypeText": "Jenis Senarai Permainan", "stressTestRoundDurationText": "Tempoh Pusingan", "stressTestTitleText": "Ujian Tekanan", "titleText": "Penanda Aras & Ujian Tekanan", "totalReloadTimeText": "Jumlah masa muat semula: ${TIME} (lihat log untuk butiran)" }, - "defaultGameListNameText": "Senarai Main ${PLAYMODE} biasa", - "defaultNewGameListNameText": "Senarai Main ${PLAYMODE} Saya", + "defaultGameListNameText": "Senarai Permain ${PLAYMODE} Biasa", + "defaultNewGameListNameText": "Senarai Permainan ${PLAYMODE} Saya", "deleteText": "Buang", "demoText": "Demo", "denyText": "Nafikan", "deprecatedText": "Ditamatkan", - "desktopResText": "Desktop Res", - "deviceAccountUpgradeText": "Amaran:\nAnda telah log masuk dengan akaun peranti (${NAME}).\nAkaun peranti akan dialih keluar dalam kemas \nkini akan datang.", + "descriptionText": "Keterangan", + "desktopResText": "Resolusi Desktop", + "deviceAccountUpgradeText": "Amaran:\nAnda telah log masuk dengan akaun peranti (${NAME}).\nAkaun peranti akan dibuang dalam kemas kini (update) yang akan datang.\nNaik taraf kepada akaun V2 kalau anda mahu simpan kemajuan/data permainan (progress) anda.", "difficultyEasyText": "Mudah", "difficultyHardOnlyText": "Mod Susah Sahaja", "difficultyHardText": "Susah", - "difficultyHardUnlockOnlyText": "Tahap ini hanya dapat dibuka dalam mod sukar.\nAdakah anda mempunyai apa yang diperlukan!?!?!", - "directBrowserToURLText": "Sila arahkan pelayar web ke URL berikut:", - "disableRemoteAppConnectionsText": "Lumpuhkan Sambungan Apl Jauh", - "disableXInputDescriptionText": "Membenarkan lebih daripada 4 pengawal tetapi mungkin tidak berfungsi juga.", + "difficultyHardUnlockOnlyText": "Tahap ini hanya dapat dibuka dalam mod susah.\nAdakah anda rasa anda cukup berani dan cekap untuknya!?!?!", + "directBrowserToURLText": "Sila arahkan pelayar web (Web-browser) ke URL berikut:", + "disableRemoteAppConnectionsText": "Matikan Sambungan Aplikasi-Alat-Kawalan", + "disableXInputDescriptionText": "Membenarkan lebih daripada 4 alat kawalan tetapi mungkin tidak berfungsi juga.", "disableXInputText": "Lumpuhkan XInput", "disabledText": "Dimatikan", + "discardText": "Buang", "discordFriendsText": "Mahu seseorang untuk bermain bersama?\nSertai Discord kami dan cari rakan baharu!", "discordJoinText": "Sertai Discord", "doneText": "Selesai", "drawText": "Seri", - "duplicateText": "Pendua", + "duplicateText": "Gandakan", "editGameListWindow": { "addGameText": "Tambah\nPermainan", - "cantOverwriteDefaultText": "Tidak boleh menulis ganti senarai main biasa!", + "cantOverwriteDefaultText": "Tidak boleh ubah suai senarai permainan biasa!", "cantSaveAlreadyExistsText": "Senarai main dengan nama itu sudah ada!", - "cantSaveEmptyListText": "Tidak dapat menyimpan senarai main kosong!", - "editGameText": "Sunting\nPermainan", - "listNameText": "Nama Senarai Main", + "cantSaveEmptyListText": "Tidak dapat menyimpan senarai main yang kosong!", + "editGameText": "Sunting (Edit) \nPermainan", + "listNameText": "Nama Senarai Permainan", "nameText": "Nama", "removeGameText": "Buang\nPermainan", "saveText": "Simpan senarai", - "titleText": "Editor Senarai Main" + "titleText": "Editor/Penyunting Senarai Permainan" }, "editProfileWindow": { "accountProfileInfoText": "Profil istimewa ini mempunyai nama\ndan ikon berdasarkan akaun anda.\n\n${ICONS}\n\nBuat profil tersuai untuk menggunakan\nnama yang berbeza atau ikon tersuai.", @@ -587,27 +603,28 @@ "characterText": "watak", "checkingAvailabilityText": "Menyemak ketersediaan untuk \"${NAME}\"...", "colorText": "warna", - "getMoreCharactersText": "Dapatkan Lebih Banyak Watak...", + "getMoreCharactersText": "Dapatkan Lebih Banyak Watak/Karakter...", "getMoreIconsText": "Dapatkan Lebih Banyak Ikon...", "globalProfileInfoText": "Profil pemain global dijamin nama\nunik di seluruh dunia. Ia juga termasuk ikon tersuai.", "globalProfileText": "(profil global)", "highlightText": "sorotan", "iconText": "ikon", - "localProfileInfoText": "Profil pemain tempatan tidak mempunyai ikon dan namanya\ntidak dijamin unik. Tingkatkan ke profil global\nuntuk menempah nama unik dan menambahkan ikon sesuai.", + "localProfileInfoText": "Profil pemain tempatan tidak mempunyai ikon dan namanya\ntidak dijamin unik. Naik taraf ke profil global\nuntuk menempah nama unik dan menambahkan ikon tersuai.", "localProfileText": "(profil lokal)", "nameDescriptionText": "Nama Pemain", "nameText": "Nama", + "profileAlreadyExistsText": "Profil dengan nama itu dah ada.", "randomText": "rawak", "titleEditText": "Sunting profil", - "titleNewText": "Profil Baru", - "unavailableText": "\"${NAME}\" tidak tersedia; cuba nama lain.", + "titleNewText": "Profil Baharu", + "unavailableText": "\"${NAME}\" tidak tersedia (dah ada orang pakai); cuba nama lain.", "upgradeProfileInfoText": "Ini akan menyimpan nama pemain anda di seluruh dunia\ndan membolehkan anda memberikan ikon khusus kepadanya.", "upgradeToGlobalProfileText": "Naik taraf kepada Profil Global" }, "editSoundtrackWindow": { "cantDeleteDefaultText": "Anda tidak boleh memadamkan runut bunyi terbiasa.", "cantEditDefaultText": "Tidak boleh mengedit runut bunyi biasa. Duplikasikan nya atau buat yang baharu.", - "cantOverwriteDefaultText": "Tidak dapat menulis ganti runut bunyi biasa", + "cantOverwriteDefaultText": "Tidak dapat menu ganti default soundtrack", "cantSaveAlreadyExistsText": "Lagu dengan nama itu sudah wujud!", "defaultGameMusicText": "", "defaultSoundtrackNameText": "Runut Bunyi Biasa", @@ -644,6 +661,8 @@ "errorText": "Ralat", "errorUnknownText": "ralat tidak diketahui", "exitGameText": "Keluar daripada ${APP_NAME}?", + "expiredAgoText": "Tamat tempoh ${T} yang lalu", + "expiresInText": "Tamat tempoh dalam ${T}", "exportSuccessText": "'${NAME}' dieksport.", "externalStorageText": "Storan Luaran", "failText": "Gagal", @@ -705,6 +724,7 @@ "copyCodeConfirmText": "Kod telah disalin.", "copyCodeText": "Salin Kod", "dedicatedServerInfoText": "Untuk pengalaman yang lebih baik, tetapkan pelayan berdedikasi. Lihat di bombsquadgame.com/server untuk mengetahui caranya.", + "descriptionShortText": "Gunakan tetingkap berkumpul untuk memasang parti.", "disconnectClientsText": "Ini akan memutuskan sambungan ${COUNT} pemain\ndi parti anda. Anda pasti?", "earnTicketsForRecommendingAmountText": "Rakan anda akan menerima ${COUNT} tiket jika mereka cuba main\n(anda akan menerima ${YOU_COUNT} tiket untuk setiap yang cuba)", "earnTicketsForRecommendingText": "Kongsi permainan\nuntuk tiket percuma...", @@ -717,10 +737,10 @@ "friendHasSentPromoCodeText": "${COUNT} ${APP_NAME} tiket daripada ${NAME}", "friendPromoCodeAwardText": "Anda akan menerima ${COUNT} tiket setiap kali kod digunakan.", "friendPromoCodeExpireText": "Kod akan tamat tempoh dalam ${EXPIRE_HOURS} jam dan cuma berfungsi untuk pemain baru.", - "friendPromoCodeInstructionsText": "Untuk gunakan kod, buka ${APP_NAME} dan pergi ke \"Tetapan->Lanjutan->Masukkan Kod\".\nLihat di bombsquadgame.com untuk pautan muat turun untuk semua platform yang disokong.", + "friendPromoCodeInstructionsText": "Untuk menggunakan kod, buka ${APP_NAME} dan pergi ke \"Tetapan->Lanjutan->Hantar Maklumat\".\nLihat ke bombsquadgame.com untuk pautan muat turun untuk semua platform yang disokong.", "friendPromoCodeRedeemLongText": "Ia boleh ditebus untuk ${COUNT} tiket percuma oleh sebanyak ${MAX_USES} orang.", "friendPromoCodeRedeemShortText": "Ia boleh ditebus untuk ${COUNT} tiket di dalam permainan.", - "friendPromoCodeWhereToEnterText": "(tebus di \"Tetapan->Lanjutan->Masukkan Kod\")", + "friendPromoCodeWhereToEnterText": "(dalam \"Tetapan->Lanjutan->Hantar Maklumat\")", "getFriendInviteCodeText": "Dapatkan Kod Jemputan Rakan", "googlePlayDescriptionText": "Jemput pemain Google Play ke parti anda:", "googlePlayInviteText": "Jemput", @@ -816,6 +836,12 @@ "youHaveShortText": "anda mempunyai ${COUNT} tiket", "youHaveText": "anda mempunyai ${COUNT} tiket" }, + "goldPass": { + "desc1InfTokensText": "Token tak terhingga.", + "desc2NoAdsText": "Tiada iklan.", + "desc3ForeverText": "Selama-lamanya.", + "goldPassText": "Pas Emas" + }, "googleMultiplayerDiscontinuedText": "Maaf, perkhidmatan berbilang pemain Google tidak lagi tersedia.\nSaya sedang mencari pengganti secepat mungkin.\nSementara itu, sila cuba kaedah sambungan lain.\n-Eric", "googlePlayPurchasesNotAvailableText": "Pembelian Google Play tidak tersedia.\nAnda mungkin perlu mengemas kini apl kedai anda.", "googlePlayServicesNotAvailableText": "Perkhidmatan Google Play tidak tersedia.\nSesetengah fungsi apl mungkin dilumpuhkan.", @@ -859,9 +885,9 @@ "powerupBombNameText": "Bom Bertiga", "powerupCurseDescriptionText": "Anda mungkin mahu elakkan diri\ndaripada ini... atau tidak?", "powerupCurseNameText": "Sumpah", - "powerupHealthDescriptionText": "Pulihkan nyawa penuh.\nAnda mungkin tidak terfikir.", + "powerupHealthDescriptionText": "Penuhkan bar nyawa.\nMesti xleh teka an? An?", "powerupHealthNameText": "Pek Rawatan", - "powerupIceBombsDescriptionText": "Lebih lemah daripada bom biasa\ntapi membekukan musuh anda\ndan terutamanya memecahkan.", + "powerupIceBombsDescriptionText": "Lebih lemah daripada bom biasa\ntapi membekukan musuh dan\nsenang dipecahkan.", "powerupIceBombsNameText": "Bom Ais", "powerupImpactBombsDescriptionText": "Lemah sikit daripada bom biasa,\ntapi ia letup bila dihentam.", "powerupImpactBombsNameText": "Bom Pencetus", @@ -871,7 +897,7 @@ "powerupPunchNameText": "Sarung Tangan Tinju", "powerupShieldDescriptionText": "Menyerap kerosakan\njadi jangan takut.", "powerupShieldNameText": "Perlindungan Tenaga", - "powerupStickyBombsDescriptionText": "Melekat di mana sahaja ia kena.\nMenghasilkan keseronokan.", + "powerupStickyBombsDescriptionText": "Melekat di mana sahaja ia kena.\nBoleh jadi lawak.", "powerupStickyBombsNameText": "Bom Melekit", "powerupsSubtitleText": "Sudah tentu; tiada permainan yang selesai tanpa kuasa tambahan", "powerupsText": "Kuasa Tambahan", @@ -884,15 +910,16 @@ }, "holdAnyButtonText": "", "holdAnyKeyText": "", - "hostIsNavigatingMenusText": "- ${HOST} sedang melayari menu -", - "importPlaylistCodeInstructionsText": "Gunakan kod berikut untuk import senarai main ini mana-mana:", + "hostIsNavigatingMenusText": "- ${HOST} tengah mungkin tengah pilih² game macam bos -", + "importPlaylistCodeInstructionsText": "Gunakan kod berikut untuk import senarai permainan ini mana-mana:", "importPlaylistSuccessText": "Senarai main ${TYPE} '${NAME}' diimport", "importText": "Import", "importingText": "Mengimport...", "inGameClippedNameText": "dalam permainan dilihat\n\"${NAME}\"", + "inboxText": "Peti masuk", "installDiskSpaceErrorText": "RALAT: Tidak dapat menyelesaikan pemasangan.\nAnda mungkin kehabisan storan pada peranti anda.\nKosongkan sikit ruang dan cuba lagi.", "internal": { - "arrowsToExitListText": "tekan ${LEFT} atau ${RIGHT} untuk terkeluar senarai", + "arrowsToExitListText": "tekan ${LEFT} atau ${RIGHT} untuk keluar senarai", "buttonText": "butang", "cantKickHostError": "Anda tidak boleh menendang penganjur.", "chatBlockedText": "${NAME} disekat beburak selamo ${TIME} saat.", @@ -944,12 +971,14 @@ "timeOutText": "(masa tamat dalam ${TIME} saat)", "touchScreenJoinWarningText": "Anda telah bergabung dengan skrin sentuh.\nJika ini satu kesilapan, ketik 'Menu->Tinggalkan Permainan' dengannya.", "touchScreenText": "Skrin-Sesentuh", + "unableToCompleteTryAgainText": "Tidak dapat menyelesaikan ini sekarang.\nSila cuba lagi.", "unableToResolveHostText": "Ralat: tidak dapat menyelesaikan hos.", "unavailableNoConnectionText": "Ini tidak tersedia pada masa ini (tiada sambungan internet?)", "vrOrientationResetCardboardText": "Gunakan ini untuk menetapkan semula orientasi VR.\nUntuk bermain permainan, anda memerlukan pengawal lain.", "vrOrientationResetText": "Tetapan semula orientasi VR.", "willTimeOutText": "(tamat masa jika terbiar)" }, + "inventoryText": "Inventori", "jumpBoldText": "LOMPAT", "jumpText": "Lompat", "keepText": "Simpan", @@ -996,8 +1025,11 @@ "seasonEndsMinutesText": "Musim tamat dalam ${NUMBER} minit.", "seasonText": "Musim ${NUMBER}", "tournamentLeagueText": "Anda mesti mencapai liga ${NAME} untuk menyertai kejohanan ini.", - "trophyCountsResetText": "Kiraan trofi akan ditetapkan semula musim depan." + "trophyCountsResetText": "Kiraan trofi akan ditetapkan semula musim depan.", + "upToDateBonusDescriptionText": "Pemain yang menjalankan versi terbaru\npermainan menerima bonus ${PERCENT}% di sini.", + "upToDateBonusText": "Bonus Terkini" }, + "learnMoreText": "Ketahui lebih lanjut", "levelBestScoresText": "Markah terbaik pada ${LEVEL}", "levelBestTimesText": "Masa terbaik di ${LEVEL}", "levelIsLockedText": "${LEVEL} dikunci.", @@ -1041,6 +1073,8 @@ "modeArcadeText": "Mod arked", "modeClassicText": "Mod Klasik", "modeDemoText": "Demo Mode", + "moreSoonText": "Lagi Akan Datang...", + "mostDestroyedPlayerText": "Pemain Paling Musnah", "mostValuablePlayerText": "Pemain yang amat berharga", "mostViolatedPlayerText": "Pemain Paling Banyak Mati", "mostViolentPlayerText": "Pemain Paling Ganas", @@ -1050,13 +1084,14 @@ "mustInviteFriendsText": "Nota: anda mesti menjemput rakan masuk\npanel \"${GATHER}\" atau lampirkan\npengawal untuk bermain berbilang pemain.", "nameBetrayedText": "${NAME} mengkhianati ${VICTIM}.", "nameDiedText": "${NAME} mati.", - "nameKilledText": "${NAME} membunuhkan ${VICTIM}.", + "nameKilledText": "${NAME} membunuh ${VICTIM}.", "nameNotEmptyText": "Nama tidak boleh kosong!", "nameScoresText": "Markah ${NAME}!", "nameSuicideKidFriendlyText": "${NAME} secara tidak sengaja mati.", "nameSuicideText": "${NAME} membunuh diri.", "nameText": "Nama", "nativeText": "Asal", + "newExclaimText": "Baru!", "newPersonalBestText": "Terbaik peribadi baru!", "newTestBuildAvailableText": "Binaan ujian yang lebih baharu tersedia! (${VERSION} bina ${BUILD}).\nDapatkannya di ${ADDRESS}", "newText": "Baru", @@ -1067,6 +1102,7 @@ "noContinuesText": "(tidak boleh bersambung)", "noExternalStorageErrorText": "Tiada storan luaran ditemui pada peranti ini", "noGameCircleText": "Ralat: tidak log masuk ke GameCircle", + "noMessagesText": "Tiada mesej.", "noPluginsInstalledText": "Tiada Pemalam Yang Dipasang", "noScoresYetText": "Tiada markah lagi.", "noServersFoundText": "Tiada pelayan yang ditemui.", @@ -1075,6 +1111,7 @@ "noValidMapsErrorText": "Tiada peta yang sah ditemui untuk jenis permainan ini.", "notEnoughPlayersRemainingText": "Tidak cukup pemain yang tinggal; keluar dan mulakan permainan baharu.", "notEnoughPlayersText": "Anda memerlukan sekurang-kurangnya ${COUNT} pemain untuk memulakan permainan ini!", + "notEnoughTicketsText": "Ticket tidak mencukupi!", "notNowText": "Bukan sekarang", "notSignedInErrorText": "Anda mesti log masuk untuk melakukan ini.", "notSignedInGooglePlayErrorText": "Anda mesti log masuk dengan Google Play untuk melakukan ini.", @@ -1087,6 +1124,9 @@ "onText": "Hidup", "oneMomentText": "Tunggu Seketika...", "onslaughtRespawnText": "${PLAYER} akan muncul semula dalam gelombang ${WAVE}", + "openMeText": "Buka Saya!", + "openNowText": "Buka Sekarang", + "openText": "Buka", "orText": "${A} atau ${B}", "otherText": "Lain-lain...", "outOfText": "(#${RANK} daripada ${ALL})", @@ -1172,6 +1212,8 @@ "punchText": "Lempeng", "purchaseForText": "Beli dengan harga ${PRICE}", "purchaseGameText": "Permainan Belian", + "purchaseNeverAvailableText": "Maaf, pembelian tidak tersedia pada binaan ini.\nCuba log masuk ke akaun anda di platform lain dan buat pembelian dari sana.", + "purchaseNotAvailableText": "Pembelian ini tidak tersedia.", "purchasingText": "Membeli...", "quitGameText": "Blah ${APP_NAME}?", "quittingIn5SecondsText": "Berhenti dalam 5 saat...", @@ -1213,6 +1255,7 @@ "version_mismatch": "Versi tidak sepadan.\nPastikan BombSquad dan BombSquad Remote\nadalah verisi terkini dan cuba lagi." }, "removeInGameAdsText": "Buka kunci \"${PRO}\" di kedai untuk mengalih keluar iklan dalam permainan.", + "removeInGameAdsTokenPurchaseText": "TAWARAN MASA TERHAD: Beli SEBARANG pek token untuk mengalih keluar iklan dalam permainan.", "renameText": "Namakan semula", "replayEndText": "Tamatkan Rakaman ulang", "replayNameDefaultText": "Main Ulang Permainan Terakhir", @@ -1246,6 +1289,7 @@ }, "scoreWasText": "(telah ${COUNT})", "selectText": "Pilih", + "sendInfoDescriptionText": "Menghantar maklumat keadaan akaun dan apl kepada pembangun.\nSila sertakan nama atau sebab anda untuk menghantar.", "seriesWinLine1PlayerText": "MEMENANGI", "seriesWinLine1TeamText": "MEMENANGI", "seriesWinLine1Text": "MENANGKAN", @@ -1261,27 +1305,33 @@ }, "settingsWindowAdvanced": { "alwaysUseInternalKeyboardDescriptionText": "(papan kekunci skrin yang ringkas dan mesra)", - "alwaysUseInternalKeyboardText": "Gunakan Papan Kekunci Dalaman", + "alwaysUseInternalKeyboardText": "Gunakan papan kekunci dalaman", "benchmarksText": "Penanda Aras & Ujian Tekanan", - "disableCameraGyroscopeMotionText": "Lumpuhkan Pergerakan Giroskop Kamera", - "disableCameraShakeText": "Lumpuhkan Goncangan Kamera", + "devToolsText": "Alat Pembangun", + "disableCameraGyroscopeMotionText": "Tutup pergerakan giroskop kamera", + "disableCameraShakeText": "Tutup goncangan kamera", "disableThisNotice": "(anda boleh mematikan pemberitahuan ini di tetapan lanjutan)", "enablePackageModsDescriptionText": "(menghidupkan kecekapan mod tambahan tapi mematikan permainan rangkaian)", "enablePackageModsText": "Hidupkan Pakej Mod Tempatan", "enterPromoCodeText": "Masukkan Kod", "forTestingText": "Peringatan: nilai ini hanya untuk ujian dan akan hilang apabila aplikasi ditutup.", "helpTranslateText": "terjemahan ${APP_NAME} selain Inggeris adalah usaha sokongan\nkomuniti. Jika anda ingin membantu menyumbang atau memperbetulkan \nterjemahan, sila ke pautan di bawah. Terima kasih!", - "kickIdlePlayersText": "Keluarkan Pemain yang Duduk Diam", + "insecureConnectionsDescriptionText": "tidak disyorkan, tetapi mungkin membenarkan permainan\ndalam talian daripada negara atau rangkaian terhad", + "insecureConnectionsText": "Gunakan sambungan yang tidak selamat", + "kickIdlePlayersText": "Tendang pemain terbiar", "kidFriendlyModeText": "Mod Mesra (kurangkan kekerasan, dll)", "languageText": "Bahasa", "moddingGuideText": "Panduan Menge-mod", - "mustRestartText": "Anda perlu memula semula permainan untuk dapat berkesan.", + "moddingToolsText": "Alat Modding", + "mustRestartText": "Anda perlu tutup dan buka semula game ni kalau nak bende ni berfungsi.", "netTestingText": "Ujian Rangkaian", "resetText": "Tetap Semula", + "sendInfoText": "Hantar Maklumat", "showBombTrajectoriesText": "Tunjukkan Trajektori Bom", - "showDemosWhenIdleText": "Tunjukkan Demo Apabila Melahu", - "showDevConsoleButtonText": "Tunjukkan Butang Konsol Pembangun", - "showInGamePingText": "Tunjukkan Ping Dalam Permainan", + "showDemosWhenIdleText": "Tunjukkan demo apabila melahu", + "showDeprecatedLoginTypesText": "Tunjukkan jenis log masuk yang ditamatkan", + "showDevConsoleButtonText": "Tunjukkan butang konsol pembangun", + "showInGamePingText": "Tunjukkan ping dalam permainan", "showPlayerNamesText": "Tunjukkan Nama Pemain", "showUserModsText": "Tunjukkan Pelipat Mod", "titleText": "Lanjutan", @@ -1289,8 +1339,8 @@ "translationFetchErrorText": "status terjemahan tidak tersedia", "translationFetchingStatusText": "memeriksa status terjemahan...", "translationInformMe": "Beritahu saya apabila bahasa saya perlu dikemaskini", - "translationNoUpdateNeededText": "bahasa semasa telah dikemaskini; sting aku yahoo", - "translationUpdateNeededText": "** bahasa semasa perlu dikemaskini **", + "translationNoUpdateNeededText": "Bahasa semasa adalah terkini; woohoo!", + "translationUpdateNeededText": "** Bahasa semasa memerlukan kemas kini!! **", "vrTestingText": "Cubaan VR" }, "shareText": "Kongsi", @@ -1300,6 +1350,9 @@ "signInWithGameCenterText": "Untuk menggunakan akaun Game Center,\nlog masuk dengan aplikasi Game Center.", "singleGamePlaylistNameText": "Cuma ${GAME}", "singlePlayerCountText": "1 pemain", + "sizeLargeText": "Besar", + "sizeMediumText": "Sederhana", + "sizeSmallText": "Kecil", "soloNameFilterText": "Solo ${NAME}", "soundtrackTypeNames": { "CharSelect": "Pemilihan watak", @@ -1325,9 +1378,10 @@ }, "spaceKeyText": "space", "statsText": "Statistik", + "stopRemindingMeText": "Berhenti Mengingatkan Saya", "storagePermissionAccessText": "Ini memerlukan akses storan", "store": { - "alreadyOwnText": "Anda telah memiliki ${NAME}!", + "alreadyOwnText": "Anda dah ada ${NAME}!", "bombSquadProNameText": "${APP_NAME} Pro", "bombSquadProNewDescriptionText": "• Buang iklan dan timbulan pembelian\n• Membuka kunci lebih banyak tetapan permainan\n• Juga termasuk:", "buyText": "Beli", @@ -1337,15 +1391,15 @@ "freeBombSquadProText": "BombSquad kini percuma, tapi sejak anda membelinya secara sah anda menerima\npenaiktarafan BombSquad Pro dan ${COUNT} tiket sebagai tanda terima kasih.\nNikmatilah ciri-ciri baru, dan terima kasih atas sokongan anda!\n- Eric", "holidaySpecialText": "Istimewa Cuti Perayaan", "howToSwitchCharactersText": "(pergi ke \"${SETTINGS} -> ${PLAYER_PROFILES}\" untuk urus & ubahsuai watak)", - "howToUseIconsText": "(cipta profil pemain global (di tetingkap akaun) untuk gunakan ini)", + "howToUseIconsText": "(cipta profil pemain global (di window akaun) untuk gunakan ini)", "howToUseMapsText": "(gunakan peta ini di senarai main pasukan/bebas untuk semua anda)", "iconsText": "Ikon", "loadErrorText": "Tidak dapat memuatkan halaman.\nSila periksa sambungan internet.", - "loadingText": "memuat", + "loadingText": "loading jap", "mapsText": "Peta", - "miniGamesText": "Permainan Kecil", + "miniGamesText": "Permainan Tambahan", "oneTimeOnlyText": "(satu masa sahaja)", - "purchaseAlreadyInProgressText": "Pembelian item ini dalam pembelian.", + "purchaseAlreadyInProgressText": "Pembelian item tengah dalam proses.", "purchaseConfirmText": "Beli ${ITEM}?", "purchaseNotValidError": "Pembelian tidak sah.\nHubungi ${EMAIL} jika ini disebabkan ralat.", "purchaseText": "Beli", @@ -1383,6 +1437,7 @@ "testBuildValidatedText": "Binaan Ujian Disahkan; Sting aku yahoo!", "thankYouText": "Terima kasih atas sokongan anda! Nikmati permainan!!", "threeKillText": "PEMBUNUHAN TIGA KALI GANDA!!", + "ticketsDescriptionText": "Tiket boleh digunakan untuk membuka kunci aksara,\npeta, permainan kecil dan banyak lagi di kedai.\n\nTiket boleh didapati di peti yang dimenangi\nkempen, kejohanan dan pencapaian.", "timeBonusText": "Bonus Masa", "timeElapsedText": "Masa Berlalu", "timeExpiredText": "Masa Tamat", @@ -1393,15 +1448,29 @@ "tipText": "Tip", "titleText": "BombSquad", "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "Dapatkan Token", + "notEnoughTokensText": "Tidak mencukupi token!", + "numTokensText": "${COUNT} Token", + "openNowDescriptionText": "Anda mempunyai cukup token untuk\nmembuka ini sekarang - anda tidak\nperlu menunggu.", + "shinyNewCurrencyText": "Mata wang baharu berkilat BombSquad.", + "tokenPack1Text": "Pek Token Kecil", + "tokenPack2Text": "Pek Token Sederhana", + "tokenPack3Text": "Pek Token Besar", + "tokenPack4Text": "Pek Token Jumbo", + "tokensDescriptionText": "Token digunakan untuk mempercepatkan buka kunci peti\ndan untuk ciri permainan dan akaun lain.\n\nAnda boleh memenangi token dalam permainan atau membelinya\ndalam pek. Atau beli Pas Emas untuk\ntoken tak terhingga dan tidak pernah mendengar tentangnya lagi.", + "youHaveGoldPassText": "Anda mempunyai Pas Emas.\nSemua pembelian token adalah percuma.\nNikmati!" + }, "topFriendsText": "Rakan Karib", "tournamentCheckingStateText": "Memeriksa keadaan kejohanan; sila tunggu...", "tournamentEndedText": "Kejohanan ini telah berakhir. Yang baru akan dimulakan tidak lama lagi.", "tournamentEntryText": "Kemasukan Kejohanan", + "tournamentFinalStandingsText": "Kedudukan Akhir", "tournamentResultsRecentText": "Keputusan Kejohanan Terkini", "tournamentStandingsText": "Kedudukan Kejohanan", "tournamentText": "Kejohanan", "tournamentTimeExpiredText": "Masa Kejohanan Tamat", - "tournamentsDisabledWorkspaceText": "Kejohanan dilumpuhkan apabila ruang kerja aktif.\nUntuk mendayakan semula kejohanan, lumpuhkan ruang kerja anda dan mulakan semula.", + "tournamentsDisabledWorkspaceText": "Kejohanan dilumpuhkan apabila ruang kerja aktif.\nUntuk buka semula kejohanan, tutup ruang kerja anda dan tutup-bukak semula game ni.", "tournamentsText": "Kejohanan", "translations": { "characterNames": { @@ -1452,10 +1521,22 @@ "Uber Onslaught": "Berserang Urban", "Uber Runaround": "Lari padang Urban" }, + "displayItemNames": { + "${C} Tickets": "${C} Tiket", + "${C} Tokens": "${C} Token", + "Chest": "Peti", + "L1 Chest": "L1 Peti", + "L2 Chest": "L2 Peti", + "L3 Chest": "L3 Peti", + "L4 Chest": "L4 Peti", + "L5 Chest": "L5 Peti", + "L6 Chest": "L6 Peti", + "Unknown Chest": "Peti tidak diketahui" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Jadilah orang yang terpilih untuk masa yang lama untuk menang.\nBunuh orang terpilih untuk menjadinya.", "Bomb as many targets as you can.": "Bom seberapa banyak sasaran yang anda boleh.", - "Carry the flag for ${ARG1} seconds.": "Bawa bendera selama ${ARG1} saat.", + "Carry the flag for ${ARG1} seconds.": "Pegang bendera selama ${ARG1} saat.", "Carry the flag for a set length of time.": "Bawa bendera untuk jangka masa yang ditetapkan.", "Crush ${ARG1} of your enemies.": "Hancurkan ${ARG1} lawan anda.", "Defeat all enemies.": "Kalahkan semua lawan.", @@ -1463,12 +1544,12 @@ "Final glorious epic slow motion battle to the death.": "Pertempuran gerakan perlahan epik terakhir yang terkoncat hingga mati.", "Gather eggs!": "Kumpul tolo!", "Get the flag to the enemy end zone.": "Dapatkan bendera ke zon hujung musuh.", - "How fast can you defeat the ninjas?": "Seberapa pantas anda boleh mengalahkan ninja?", + "How fast can you defeat the ninjas?": "Seberapa pantas mana anda boleh mengalahkan semua ninja?", "Kill a set number of enemies to win.": "Bunuh beberapa set musuh untuk menang.", "Last one standing wins.": "Yang terakhir bertahan menang.", - "Last remaining alive wins.": "Yang tinggal terakhir hidup menang.", + "Last remaining alive wins.": "Yang terakhir bertahan menang.", "Last team standing wins.": "Pasukan terakhir bertahan menang.", - "Prevent enemies from reaching the exit.": "Menghalang musuh daripada sampai ke pintu keluar.", + "Prevent enemies from reaching the exit.": "Halang musuh daripada sampai ke pintu keluar.", "Reach the enemy flag to score.": "Sentuh bendera musuh untuk menjaringkan gol.", "Return the enemy flag to score.": "Kembalikan bendera musuh untuk menerima mata.", "Run ${ARG1} laps.": "Telah berlari ${ARG1} pusingan.", @@ -1484,9 +1565,9 @@ "Secure all ${ARG1} flags.": "Lindungi semua bendera ${ARG1}.", "Secure all flags on the map to win.": "Lindungi semua bendera pada peta untuk menang.", "Secure the flag for ${ARG1} seconds.": "Selamatkan bendera dalam ${ARG1} saat", - "Secure the flag for a set length of time.": "Selamatkan bendera untuk jangka masa yang ditetapkan.", + "Secure the flag for a set length of time.": "Lindungi bendera dalam jangka masa yang ditetapkan.", "Steal the enemy flag ${ARG1} times.": "Curi bendera musuh ${ARG1} kali.", - "Steal the enemy flag.": "Curi bendera lawan.", + "Steal the enemy flag.": "Curi bendera pihak lawan.", "There can be only one.": "Hanya boleh ada satu.", "Touch the enemy flag ${ARG1} times.": "Sentuh bendera musuh sebanyak ${ARG1} kali.", "Touch the enemy flag.": "Sentuh bendera musuh.", @@ -1496,9 +1577,9 @@ "last team standing wins": "pasukan terakhir bertahan menang", "return ${ARG1} flags": "kembalikan bendera ${ARG1}.", "return 1 flag": "pulangkan 1 bendera", - "run ${ARG1} laps": "pusingan ke ${ARG1} larian", + "run ${ARG1} laps": "lari sebanyak ${ARG1} pusingan", "run 1 lap": "lari 1 pusingan", - "score ${ARG1} goals": "menjaringkan ${ARG1} gol.", + "score ${ARG1} goals": "menjaringkan ${ARG1} gol", "score ${ARG1} touchdowns": "skor ${ARG1} pendaratan", "score a goal": "menjaringkan gol", "score a touchdown": "skorkan gol", @@ -1525,7 +1606,7 @@ "Race": "Perlumbaan", "Runaround": "Berlarian", "Target Practice": "Praktis Sasaran", - "The Last Stand": "Yang Terakhir" + "The Last Stand": "Yang Terakhir Berdiri" }, "inputDeviceNames": { "Keyboard": "Papan kekunci", @@ -1534,19 +1615,20 @@ "languages": { "Arabic": "Bahasa Arab", "Belarussian": "Bahasa Belarus", - "Chinese": "Bahasa Cina", - "ChineseTraditional": "Bahasa Tradisional Cina", + "Chinese": "Bahasa Cina (Dimudahkan) ", + "ChineseSimplified": "Bahasa Cina - Dimudahkan", + "ChineseTraditional": "Bahasa Cina - Tradisional", "Croatian": "Bahasa Kroatia", "Czech": "Bahasa Czech", "Danish": "Bahasa Denmark", "Dutch": "Bahasa Belanda", "English": "Bahasa Inggeris", "Esperanto": "Bahasa Esperanto", - "Filipino": "Filipina", + "Filipino": "Bahasa Filipina", "Finnish": "Bahasa Finland", "French": "Bahasa Perancis", "German": "Bahasa Jerman", - "Gibberish": "Karut", + "Gibberish": "Bahasa Mengarut/Tah Ape-ape", "Greek": "Bahasa Yunani", "Hindi": "Bahasa Hindi", "Hungarian": "Bahasa Hungari", @@ -1556,13 +1638,18 @@ "Korean": "Bahasa Korea", "Malay": "Melayu", "Persian": "Bahasa Farsi", + "PirateSpeak": "Bahasa Lanun", "Polish": "Bahasa Poland", "Portuguese": "Bahasa Portugis", + "PortugueseBrazil": "Bahasa Portugis Brazil", + "PortuguesePortugal": "Bahasa Portugis Portugal", "Romanian": "Bahasa Romania", "Russian": "Bahasa Rusia", "Serbian": "Bahasa Serbia", "Slovak": "Bahasa Slovak", "Spanish": "Bahasa Sepanyol", + "SpanishLatinAmerica": "Spanyol - Latin Amerika", + "SpanishSpain": "Bahasa Spanyol - Spain", "Swedish": "Bahasa Sweden", "Tamil": "Bahasa Tamil", "Thai": "Bahasa Thai", @@ -1579,7 +1666,7 @@ }, "mapsNames": { "Big G": "G Besar", - "Bridgit": "Jambatan", + "Bridgit": "Jambatan Sultan Abdul Halim Muadzam Shah (Cetak rompak punye)", "Courtyard": "Halaman Mahkamah", "Crag Castle": "Istana Batu", "Doom Shroom": "Cendawan Malapetaka", @@ -1588,7 +1675,7 @@ "Hockey Stadium": "Stadium Hoki", "Lake Frigid": "Tasik Beku", "Monkey Face": "Muka Monyet", - "Rampage": "Amukan", + "Rampage": "Huru-harawan", "Roundabout": "Bulatan", "Step Right Up": "Langkah Ke Atas", "The Pad": "Lapang", @@ -1609,14 +1696,14 @@ "Time Held": "Masa Dijalankan" }, "serverResponses": { - "A code has already been used on this account.": "Kod telah digunakan pada akaun ini.", + "A code has already been used on this account.": "Suatu kod telah digunakan pada akaun ini.", "A reward has already been given for that address.": "Ganjaran telah pun diberikan untuk alamat itu.", "Account linking successful!": "Pemautan akaun berjaya!", "Account unlinking successful!": "Penyahpautan akaun berjaya!", "Accounts are already linked.": "Akaun sudah dipautkan.", "Ad view could not be verified.\nPlease be sure you are running an official and up-to-date version of the game.": "Paparan iklan mengacau tidak dapat disahkan.\nSila pastikan anda menjalankan versi permainan yang rasmi dan terkini.", "An error has occurred; (${ERROR})": "Ralat telah berlaku; (${ERROR})", - "An error has occurred; please contact support. (${ERROR})": "Ralat telah berlaku; sila hubungi sokongan. (${ERROR})", + "An error has occurred; please contact support. (${ERROR})": "Ralat telah berlaku; sila hubungi bantuan. (${ERROR})", "An error has occurred; please contact support@froemling.net.": "Ralat telah berlaku; sila hubungi support@froemling.net.", "An error has occurred; please try again later.": "Ralat telah berlaku; sila cuba sebentar lagi.", "Are you sure you want to link these accounts?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\nThis cannot be undone!": "Adakah anda pasti mahu memautkan akaun ini?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\nPerkara ini tidak boleh diubah semula .!", @@ -1627,6 +1714,7 @@ "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Penipuan dikesan; markah dan hadiah digantung selama ${COUNT} hari.", "Could not establish a secure connection.": "Tidak dapat mewujudkan sambungan selamat.", "Daily maximum reached.": "Maksimum harian dicapai.", + "Daily sign-in reward": "Ganjaran log masuk harian", "Entering tournament...": "Memasuki kejohanan...", "Invalid code.": "Kod tidak sah.", "Invalid payment; purchase canceled.": "Pembayaran tidak sah; pembelian dibatalkan.", @@ -1636,11 +1724,14 @@ "Item unlocked!": "Item dibuka!", "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "MEMAUT DITOLAK. ${ACCOUNT} mengandungi\ndata penting yang akan KESEMUANYA HILANG.\nAnda boleh memaut dalam susunan yang bertentangan jika anda mahu\n(dan akan menghilangan data akaun INI sebagai ganti)", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "Pautkan akaun ${ACCOUNT} ke akaun ini?\nSemua data sedia ada pada ${ACCOUNT} akan hilang.\nPerkara ini tidak boleh diubah. Adakah anda pastis?", + "Longer streaks lead to better rewards.": "Coretan yang lebih panjang membawa kepada ganjaran yang lebih baik.", "Max number of playlists reached.": "Bilangan maksimum senarai main dicapai.", "Max number of profiles reached.": "Bilangan profil maksimum dicapai.", "Maximum friend code rewards reached.": "Ganjaran kod rakan telah maksimum dicapai.", "Message is too long.": "Mesej terlalu panjang.", + "New tournament result!": "Keputusan kejohanan baharu!", "No servers are available. Please try again soon.": "Tiada pelayan tersedia. Nanti cuba lagi, sebentar lagi.", + "No slots available. Free a slot and try again.": "Tiada slot tersedia. Kosongkan slot dan cuba lagi.", "Profile \"${NAME}\" upgraded successfully.": "Profil \"${NAME}\" berjaya dinaik taraf.", "Profile could not be upgraded.": "Profil tidak dapat ditingkatkan.", "Purchase successful!": "Pembelian berjaya!", @@ -1650,7 +1741,9 @@ "Sorry, this code has already been used.": "Maaf, kod ini telah digunakan.", "Sorry, this code has expired.": "Maaf, kod ini telah tamat tempoh.", "Sorry, this code only works for new accounts.": "Maaf, kod ini hanya berfungsi untuk akaun baharu.", + "Sorry, this has expired.": "Maaf, ini telah tamat tempoh.", "Still searching for nearby servers; please try again soon.": "Masih mencari pelayan berdekatan; sila cuba lagi nanti.", + "Streak: ${NUM} days": "Rentetan: ${NUM} hari", "Temporarily unavailable; please try again later.": "Tidak tersedia buat sementara waktu; sila cuba sebentar lagi.", "The tournament ended before you finished.": "Kejohanan tamat sebelum anda tamat.", "This account cannot be unlinked for ${NUM} days.": "Akaun ini tidak boleh dinyahpautkan selama ${NUM} hari.", @@ -1661,19 +1754,28 @@ "Tournaments require ${VERSION} or newer": "Kejohanan memerlukan ${VERSION} atau lebih baharu", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "Nyahpaut ${ACCOUNT} daripada akaun ini?\nSemua data pada ${ACCOUNT} akan ditetapkan semula.\n(kecuali untuk pencapaian dalam kes tertentu)", "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "AMARAN: aduan penggodaaman telah dikeluarkan terhadap akaun anda.\nAkaun yang didapati menggodam akan diharamkan. Tolong main adil.", + "Wait reduced!": "Tunggu dikurangkan!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "Amaran: Versi permainan ini terhad kepada data akaun lama; beberapa perkara mungkin kelihatan hilang atau tidak terkini.\nSila naik taraf ke versi permainan yang lebih baharu untuk melihat data akaun terkini anda.", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "Adakah anda ingin memautkan akaun peranti anda ke akaun ini?\n\nAkaun peranti anda ialah ${ACCOUNT1}\nAkaun ini ialah ${ACCOUNT2}\n\nIni akan membolehkan anda mengekalkan data sedia ada anda.\nAmaran: ini tidak boleh dibaiki semula!", "You already own this!": "Anda sudah memiliki ini!", "You can join in ${COUNT} seconds.": "Anda boleh menyertai dalam ${COUNT} saat.", "You don't have enough tickets for this!": "Anda tidak mempunyai tiket yang mencukupi untuk ini!", "You don't own that.": "Anda tidak memilikinya.", "You got ${COUNT} tickets!": "Anda mendapat ${COUNT} tiket!", + "You got ${COUNT} tokens!": "Anda mendapat ${COUNT} token!", "You got a ${ITEM}!": "Anda mendapat ${ITEM}!", + "You got a chest!": "Anda mendapat peti!", + "You got an achievement reward!": "Anda mendapat ganjaran pencapaian!", "You have been promoted to a new league; congratulations!": "Anda telah dinaikkan pangkat ke liga baharu; tahniah!", + "You lost a chest! (All your chest slots were full)": "Anda kehilangan peti! (Semua slot peti anda penuh)", + "You must update the app to view this.": "Anda mesti mengemas kini aplikasi untuk melihat ini.", "You must update to a newer version of the app to do this.": "Anda mesti mengemas kini kepada versi apl yang lebih baharu untuk melakukan ini.", "You must update to the newest version of the game to do this.": "Anda mesti mengemas kini kepada versi terbaharu permainan untuk melakukan ini.", "You must wait a few seconds before entering a new code.": "Anda mesti menunggu beberapa saat sebelum memasukkan kod baharu.", + "You placed #${RANK} in a tournament!": "Anda meletakkan #${RANK} dalam kejohanan!", "You ranked #${RANK} in the last tournament. Thanks for playing!": "Anda menduduki #${RANK} dalam kejohanan terakhir. Terima kasih kerana bermain!", "Your account was rejected. Are you signed in?": "Akaun anda telah ditolak. Adakah anda telah log masuk?", + "Your ad views are not registering. Ad options will be limited for a while.": "Iklan anda tak dapat masuk. Butang/pilihan untuk melihat iklan akan terhad buat sementara waktu.", "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Salinan permainan anda telah diubah suai.\nSila kembalikan sebarang perubahan dan cuba lagi.", "Your friend code was used by ${ACCOUNT}": "Kod rakan anda telah digunakan oleh ${ACCOUNT}" }, @@ -1694,10 +1796,10 @@ "Chosen One Gets Shield": "Yang Terpilih Dapat Perisai", "Chosen One Time": "Masa Bagi Yg Terpilih", "Enable Impact Bombs": "Dayakan Bom Kesan", - "Enable Triple Bombs": "Dayakan Triple Bombs", - "Entire Team Must Finish": "Seluruh Pasukan Mesti Selesai", + "Enable Triple Bombs": "Bolehkan Triple Bombs", + "Entire Team Must Finish": "Seluruh Pasukan Mesti Habiskan", "Epic Mode": "Mod Epik", - "Flag Idle Return Time": "Tandakan Masa Pulang Terbiar", + "Flag Idle Return Time": "Masa Bendera Auto Pulang", "Flag Touch Return Time": "Tandakan Masa Pulang Sentuh", "Hold Time": "Tahan Masa", "Kills to Win Per Player": "Memukul untuk Menang Setiap Pemain", @@ -1730,15 +1832,15 @@ "Red": "Merah" }, "tips": { - "A perfectly timed running-jumping-spin-punch can kill in a single hit\nand earn you lifelong respect from your friends.": "Pukulan lari-lompat-putaran yang tepat pada masanya boleh menyepak dalam satu pukulan\ndan mendapat penghormatan sepanjang hayat daripada rakan-rakan anda.", + "A perfectly timed running-jumping-spin-punch can kill in a single hit\nand earn you lifelong respect from your friends.": "Aksi lari-lompat-putaran-tumbuk! yang tepat pada masanya boleh mnghapuskan dalam satu pukulan\ndan mendapat penghormatan sepanjang hayat daripada rakan-rakan anda.", "Always remember to floss.": "Jangan lupa untuk floss.", "Create player profiles for yourself and your friends with\nyour preferred names and appearances instead of using random ones.": "Buat profil pemain untuk diri sendiri dan rakan anda\ndengan penampilan pilihan anda dan bukannya menggunakan nama secara rawak.", "Curse boxes turn you into a ticking time bomb.\nThe only cure is to quickly grab a health-pack.": "Kotak sumpahan mengubah anda menjadi bom masa yang berdetik.\nSatu-satunya ubat adalah dengan mengambil pek kesihatan.", - "Despite their looks, all characters' abilities are identical,\nso just pick whichever one you most closely resemble.": "Rupa mereka berbeza, tetapi kebolehan watak adalah sama,\njadi pilih sahaja yang mana satu yang paling anda sukai.", - "Don't get too cocky with that energy shield; you can still get yourself thrown off a cliff.": "Tolong jangan sombong dengan perisai tenaga itu; anda masih boleh tercampak dari tebing.", + "Despite their looks, all characters' abilities are identical,\nso just pick whichever one you most closely resemble.": "Rupa mereka berbeza, tetapi kebolehan watak adalah hampir sama,\njadi pilih sahaja yang mana satu yang paling anda sukai.", + "Don't get too cocky with that energy shield; you can still get yourself thrown off a cliff.": "Tolong jangan sombong dengan perisai tenaga tu; anda masih boleh tercampak dari tebing.", "Don't run all the time. Really. You will fall off cliffs.": "Jangan berlari sepanjang masa. Den koba ni. Anda akan jatuh dari tebing.", "Don't spin for too long; you'll become dizzy and fall.": "Jangan berputar terlalu lama; anda akan menjadi pening dan jatuh.", - "Hold any button to run. (Trigger buttons work well if you have them)": "Tahan sebarang butang untuk dijalankan. (Butang pencetus berfungsi dengan baik jika anda memilikinya)", + "Hold any button to run. (Trigger buttons work well if you have them)": "Tahan sebarang butang untuk lari. (Butang pencetus berfungsi dengan baik jika anda memilikinya)", "Hold down any button to run. You'll get places faster\nbut won't turn very well, so watch out for cliffs.": "Tahan mana-mana butang untuk dijalankan. Anda akan berjalan lebih cepat\ntetapi tidak akan menjadi lebih baik, jadi hati-hati dengan tebing.", "Ice bombs are not very powerful, but they freeze\nwhoever they hit, leaving them vulnerable to shattering.": "Bom ais tidak begitu kuat, tetapi ia membeku\nsesiapa sahaja yang mereka pukul, menyebabkan mereka terdedah kepada kehancuran.", "If someone picks you up, punch them and they'll let go.\nThis works in real life too.": "Jika seseorang mengangkat anda, tumbuk mereka dan mereka akan melepaskannya.\nIni juga berfungsi dalam kehidupan sebenar.", @@ -1756,39 +1858,39 @@ "Jump just as you're throwing to get bombs up to the highest levels.": "Lompat semasa anda melontar untuk melontarkan bom sehingga ke tahap tertinggi.", "Land-mines are a good way to stop speedy enemies.": "Periuk api adalah cara yang baik untuk menghentikan musuh yang pantas.", "Many things can be picked up and thrown, including other players. Tossing\nyour enemies off cliffs can be an effective and emotionally fulfilling strategy.": "Banyak benda boleh diangkat dan dilempar termasuk pemain lain. Melambung\nlawan anda dari tebing boleh menjadi strategi yang berkesan dan memuaskan emosi.", - "No, you can't get up on the ledge. You have to throw bombs.": "Tidak, anda tidak boleh bangun di atas belebas. Anda perlu baling bom.", - "Players can join and leave in the middle of most games,\nand you can also plug and unplug controllers on the fly.": "Pemain boleh menyertai dan keluar di tengah-tengah kebanyakan permainan,\ndan anda juga boleh pasang dan cabut pengawal dengan cepat.", + "No, you can't get up on the ledge. You have to throw bombs.": "Tidak, anda tidak boleh panjat ke atas tapak tu. Anda perlu baling bom.", + "Players can join and leave in the middle of most games,\nand you can also plug and unplug controllers on the fly.": "Pemain boleh menyertai dan keluar di tengah-tengah kebanyakan permainan,\ndan anda juga boleh pasang dan cabut alat kawalan dengan cepat.", "Practice using your momentum to throw bombs more accurately.": "Berlatih menggunakan momentum anda untuk melontar bom dengan lebih tepat.", - "Punches do more damage the faster your fists are moving,\nso try running, jumping, and spinning like crazy.": "Tumbukan lebih merosakkan lebih cepat penumbuk anda bergerak,\njadi cuba berlari, melompat dan berputar seperti orang tak siuman.", - "Run back and forth before throwing a bomb\nto 'whiplash' it and throw it farther.": "Berlari ke sana ke mari sebelum melontar bom\nuntuk 'whiplash' dan membuangnya lebih jauh.", - "Take out a group of enemies by\nsetting off a bomb near a TNT box.": "Keluarkan sekumpulan musuh dengan\nmelancarkan bom berhampiran kotak TNT.", + "Punches do more damage the faster your fists are moving,\nso try running, jumping, and spinning like crazy.": "Tumbukan jadi lagi kuat lebih cepat penumbuk anda bergerak,\njadi cuba berlari, melompat dan berputar seperti orang gila.", + "Run back and forth before throwing a bomb\nto 'whiplash' it and throw it farther.": "Berlari kebelakang dan kedepan sebelum baling bom\nuntuk 'whiplash' dan membalingnya lebih jauh.", + "Take out a group of enemies by\nsetting off a bomb near a TNT box.": "Kalahkan sekumpulan musuh dengan\nmelancarkan bom berhampiran kotak TNT.", "The head is the most vulnerable area, so a sticky-bomb\nto the noggin usually means game-over.": "Kepala adalah kawasan yang paling terdedah, jadi bom melekit\nkepada orang biasanya bermaksud game-over.", "This level never ends, but a high score here\nwill earn you eternal respect throughout the world.": "Tahap ini tidak pernah berakhir, tetapi skor tinggi di sini\nakan memberi anda penghormatan kekal di seluruh dunia.", - "Throw strength is based on the direction you are holding.\nTo toss something gently in front of you, don't hold any direction.": "Kekuatan lontaran adalah berdasarkan arah yang anda tuju.\nUntuk melemparkan sesuatu, jangan tuju ke sebarang arah.", + "Throw strength is based on the direction you are holding.\nTo toss something gently in front of you, don't hold any direction.": "Kekuatan lontaran adalah berdasarkan arah yang anda tuju.\nUntuk melemparkan sesuatu dengan lembut di depan anda, jangan tuju ke sebarang arah.", "Tired of the soundtrack? Replace it with your own!\nSee Settings->Audio->Soundtrack": "Bosan dengan runut bunyi? Gantikan dengan pilihan anda sendiri!\nLihat Tetapan->Audio->Runut Bunyi", - "Try 'Cooking off' bombs for a second or two before throwing them.": "Cuba 'Memasak' bom selama satu atau dua saat sebelum melontarkannya.", - "Try tricking enemies into killing eachother or running off cliffs.": "Cuba menipu musuh untuk memukul satu sama lain atau melarikan diri dari tebing.", + "Try 'Cooking off' bombs for a second or two before throwing them.": "Cuba 'didihkan' bom selama satu atau dua saat dulu sebelum baling.", + "Try tricking enemies into killing eachother or running off cliffs.": "Cuba memperdayakan musuh untuk membunuh satu sama lain atau berlari sampai jatuh tebing.", "Use the pick-up button to grab the flag < ${PICKUP} >": "Gunakan butang ambil untuk mengambil bendera < ${PICKUP} >", "Whip back and forth to get more distance on your throws..": "Bergerak ke sana ke mari untuk mendapatkan lebih jarak pada lontaran anda..", - "You can 'aim' your punches by spinning left or right.\nThis is useful for knocking bad guys off edges or scoring in hockey.": "Anda boleh 'membidik' pukulan anda dengan berputar ke kiri atau kanan.\nIni berguna untuk mengetuk orang jahat dari tepi atau menjaringkan gol dalam hoki.", - "You can judge when a bomb is going to explode based on the\ncolor of sparks from its fuse: yellow..orange..red..BOOM.": "Anda boleh menilai bila bom akan meletup berdasarkan\nwarna percikan api dari fiusnya: kuning..oren..merah..BOOM.", - "You can throw bombs higher if you jump just before throwing.": "Anda boleh melontar bom lebih tinggi jika anda melompat sebelum melontar.", - "You take damage when you whack your head on things,\nso try to not whack your head on things.": "Anda menerima kesakitan apabila anda terhantuk kepala anda pada sesuatu,\njadi cuba untuk tidak memeningkan kepala anda.", - "Your punches do much more damage if you are running or spinning.": "Tumbukan anda menghasilkan lebih banyak kesakitan jika anda berlari atau berputar." + "You can 'aim' your punches by spinning left or right.\nThis is useful for knocking bad guys off edges or scoring in hockey.": "Anda boleh 'membidik/aim' pukulan anda dengan berputar ke kiri atau kanan.\nIni berguna untuk mengetuk orang jahat dari tepi atau menjaringkan gol dalam hoki.", + "You can judge when a bomb is going to explode based on the\ncolor of sparks from its fuse: yellow..orange..red..BOOM.": "Anda boleh menilai bila bom akan meletup berdasarkan\nwarna percikan api dari sumbunya: kuning..oren..merah..BOOOO000M.", + "You can throw bombs higher if you jump just before throwing.": "Anda boleh baling bom lebih tinggi kalau anda lompat sebelum melontar.", + "You take damage when you whack your head on things,\nso try to not whack your head on things.": "Anda menerima kesakitan/damage apabila anda terhantuk kepala anda pada sesuatu,\njadi cuba untuk tidak hantukkan kepala anda.", + "Your punches do much more damage if you are running or spinning.": "Tumbukan anda memberikan lebih banyak kesakitan/damage jika anda berlari atau berputar." } }, - "trophiesRequiredText": "Ini memerlukan sekurang-kurangnya ${NUMBER} trofi.", + "trophiesRequiredText": "Ini memerlukan sekurang-kurangnya ${NUMBER} piala.", "trophiesText": "Piala", "trophiesThisSeasonText": "Trofi Musim Ini", "tutorial": { "cpuBenchmarkText": "Menjalankan tutorial pada kelajuan menggelikan (menguji kelajuan CPU)", - "phrase01Text": "Hi lombu", + "phrase01Text": "Hai awak! Ye, awak!", "phrase02Text": "Selamat datang ke ${APP_NAME}!", "phrase03Text": "Berikut ialah beberapa petua untuk mengawal watak anda:", "phrase04Text": "Banyak perkaro dalam ${APP_NAME} berasaskan FIZIK.", "phrase05Text": "Contohnya, apabila anda menumbuk,..", "phrase06Text": "..kerosakan adalah berdasarkan kelajuan penumbuk anda.", - "phrase07Text": "Nampak taak? Kami tidak bergerak, jadi hampir tidak mencederakan ${NAME}.", + "phrase07Text": "Nampak taak? Kite tidak bergerak, jadi hampir tidak mencederakan ${NAME}.", "phrase08Text": "Sekarang mari melompat dan berputar untuk mendapatkan lebih kelajuan.", "phrase09Text": "Aah, itu lebih baik.", "phrase10Text": "Berlari juga membantu.", @@ -1803,12 +1905,12 @@ "phrase19Text": "Melompat membantu anda melontar lebih tinggi.", "phrase20Text": "\"Sebat\" bom anda untuk lontaran lebih lama.", "phrase21Text": "Mengangar bom anda boleh menjadi rumit.", - "phrase22Text": "Iyam.", + "phrase22Text": "Aduhai.", "phrase23Text": "Cuba \"memasak\" fius selama satu atau dua saat.", "phrase24Text": "Sting aku! Elok dimasak.", "phrase25Text": "Dah, itu sahaja.", "phrase26Text": "Sekarang pergi selamatkan abang Aziz, dekat bot!", - "phrase27Text": "Ingat latihan anda, dan jangan tingal solat lima waktu", + "phrase27Text": "Ingat latihan anda, dan jangan tinggal solat lima waktu", "phrase28Text": "...selamat maju jaya...", "phrase29Text": "Semoga berjaya!", "randomName1Text": "Syed", @@ -1816,14 +1918,16 @@ "randomName3Text": "Ilham", "randomName4Text": "Abang Irfan", "randomName5Text": "Jasini", - "skipConfirmText": "Taknak tengok tutorial? Ketik atau tekan untuk mengesahkan.", + "skipConfirmText": "Taknak tengok tutorial? Tekan untuk mengesahkan.", "skipVoteCountText": "${COUNT}/${TOTAL} langkau undi", "skippingText": "ponteng tutorial...", "toSkipPressAnythingText": "(ketik atau tekan apa-apa untuk melangkau tutorial)" }, "twoKillText": "PEMBUNUHAN BERGANDA!", + "uiScaleText": "Skala UI", "unavailableText": "tidak ada", - "unconfiguredControllerDetectedText": "Pengawal tidak dikonfigurasikan dikesan:", + "unclaimedPrizesText": "Anda mempunyai hadiah yang belum dituntut!", + "unconfiguredControllerDetectedText": "Alat kawalan tidak dikonfigurasikan dikesan:", "unlockThisInTheStoreText": "Ini mesti dibuka kunci di kedai.", "unlockThisProfilesText": "Untuk membuat lebih daripada ${NUM} profil, anda memerlukan:", "unlockThisText": "Untuk membuka kunci ini, anda memerlukan:", @@ -1835,9 +1939,12 @@ "upgradeText": "Naik Taraf", "upgradeToPlayText": "Buka kunci \"${PRO}\" dalam gedung di dalam permainan untuk mainkan ini.", "useDefaultText": "Gunakan seperti Biasa", + "userSystemScriptsCreateText": "Cipta Skrip Sistem Pengguna", + "userSystemScriptsDeleteText": "Padam Skrip Sistem Pengguna", "usesExternalControllerText": "Permainan ini menggunakan pengawal luaran untuk input.", "usingItunesText": "Menggunakan Apl Muzik untuk runut bunyi...", "v2AccountLinkingInfoText": "Untuk memautkan akaun V2, gunakan butang 'Urus Akaun'.", + "v2AccountRequiredText": "Ini memerlukan akaun V2. Tingkatkan akaun anda dan cuba lagi.", "validatingTestBuildText": "Mengesahkan Binaan Ujian...", "viaText": "melalui", "victoryText": "Kemenangan!", @@ -1850,28 +1957,28 @@ "waitingForPlayersText": "menunggu pemain menyertai...", "waitingInLineText": "Menunggu dalam barisan (parti penuh)...", "watchAVideoText": "Tonton Video", - "watchAnAdText": "Tengok iklan Adabi", + "watchAnAdText": "Tonton iklan", "watchWindow": { "deleteConfirmText": "Padamkan \"${REPLAY}\"?", "deleteReplayButtonText": "Padam\nMain semula", - "myReplaysText": "Tayangan Ulang Saya", - "noReplaySelectedErrorText": "Tiada Main Ulang Dipilih", + "myReplaysText": "Tayangan Ulangan Saya", + "noReplaySelectedErrorText": "Tiada Tayangan Ulangan Dipilih", "playbackSpeedText": "Kelajuan Main Semula: ${SPEED}", - "renameReplayButtonText": "Namakan\nMain semula", + "renameReplayButtonText": "Namakan\nTayangan Ulangan", "renameReplayText": "Namakan semula \"${REPLAY}\" kepada:", "renameText": "Namakan semula", "replayDeleteErrorText": "Ralat memadamkan ulang tayang.", - "replayNameText": "Nama Main Semula", + "replayNameText": "Nama Tayangan Ulangan", "replayRenameErrorAlreadyExistsText": "Tayangan semula dengan nama itu sudah wujud.", - "replayRenameErrorInvalidName": "Tidak boleh menamakan semula main semula; nama tidak sah.", - "replayRenameErrorText": "Ralat menamakan main semula.", - "sharedReplaysText": "Main Semula Dikongsi", + "replayRenameErrorInvalidName": "Tidak boleh menamakan semula tayangan; nama tidak sah.", + "replayRenameErrorText": "Ralat menamakan tayangan permainan.", + "sharedReplaysText": "Tayangan Permainan Yang Dikongsi", "titleText": "Tonton", - "watchReplayButtonText": "Tonton\nMain Semula" + "watchReplayButtonText": "Tonton Tayangan\nPermainan" }, - "waveText": "Gelombang musuh", + "waveText": "Serangan", "wellSureText": "Baiklah!", - "whatIsThisText": "Apakah Ini?", + "whatIsThisText": "Abende ni?", "wiimoteLicenseWindow": { "titleText": "Hak Cipta DarwiinRemote" }, @@ -1904,5 +2011,6 @@ }, "yesAllowText": "Ya, Benarkan!", "yourBestScoresText": "Markah Terbaik Anda", - "yourBestTimesText": "Masa Terbaik Anda" + "yourBestTimesText": "Masa Terbaik Anda", + "yourPrizeText": "Hadiah anda:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/persian.json b/dist/ba_data/data/languages/persian.json index 1f5ce11..d35d641 100644 --- a/dist/ba_data/data/languages/persian.json +++ b/dist/ba_data/data/languages/persian.json @@ -2,12 +2,14 @@ "accountSettingsWindow": { "accountNameRules": "نام حساب کاربری نمیتونه شکلک و نویسه های ویژه داشته باشه جیگر", "accountProfileText": "(مشخصات حساب)", - "accountsText": "حساب های کاربری", + "accountsText": "حساب ها", "achievementProgressText": "${TOTAL}/${COUNT} :دستاوردها", "campaignProgressText": "${PROGRESS} :[سخت]‎ پیشروی در بازی اصلی", "changeOncePerSeason": ".فقط یه‌ بار در هر فصل می‌تونی این مورد رو تغییر بدی", "changeOncePerSeasonError": "(روز تا فصل بعد‎ ${NUM}) برای تغییر مجدد این گزینه باید تا فصل بعد صبر کنی", + "createAnAccountText": "یک حساب کاربری ایجاد کنید", "customName": "نام سفارشی", + "deleteAccountText": "حذف حساب کاربری", "googlePlayGamesAccountSwitchText": "اگه میخوای از حساب های مختلف گوگل استفاده کنی از بازی های گوگل برای عوض کردن استفاده کن", "linkAccountsEnterCodeText": "کد را وارد کنید", "linkAccountsGenerateCodeText": "ایجاد کد", @@ -18,14 +20,14 @@ "linkedAccountsText": ":حساب های متصل شده", "manageAccountText": "مدیریت حساب", "nameChangeConfirm": "تغییر کند؟‎ ${NAME} نام شما به", - "resetProgressConfirmNoAchievementsText": "همهٔ پیشروی‌های شما در بخش همکاری و امتیازات\nشما پاک خواهد شد. (به استثنای بلیت‌های شما)\nاین کار برگشت‌پذیر نیست. آیا مطمئنید؟", - "resetProgressConfirmText": "همهٔ پیشروی‌ها در بخش همکاری، دستاوردها\n.و امتیازات بالای شما پاک خواهد شد\n(به استثنای بلیت‌های شما)\nاین کار برگشت‌ پذیر نیست. آیا مطمئنید؟", + "resetProgressConfirmNoAchievementsText": "همهٔ پیشروی‌های شما در بخش همکاری و امتیازات\nشما پاک خواهد شد. (به استثنای بلیط های شما)\nاین کار برگشت‌پذیر نیست. آیا مطمئنید؟", + "resetProgressConfirmText": "همهٔ پیشروی‌ها در بخش همکاری، دستاوردها\n.و امتیازات بالای شما پاک خواهد شد\n(بلیط های شما تحت تاثیر قرار نخواهد گرفت)\nاین کار برگشت‌ پذیر نیست. آیا مطمئنید؟", "resetProgressText": "بازنشانی پیشروی", "setAccountName": "تنظیم نام اکانت", "setAccountNameDesc": "نامی که می‌خواهید برای این حساب نمایش داده شود را انتخاب کنید\nمی‌توانید از یکی از نام‌های حساب‌های وصل‌شده استفاده کنید\nیا یک نام جدید بسازید", "signInInfoText": "به حسابتان وصل شوید تا بلیت جمع کنید، آنلاین رقابت کنید \n.و پیشرفت خود را در دستگاه ها به اشتراک بگذارید", "signInText": "ورود به حساب", - "signInWithAnEmailAddressText": "ورود با آدرس ایمیل", + "signInWithAnEmailAddressText": "ورود با ایمیل", "signInWithDeviceInfoText": "(یک حساب خودکار فقط از این دستگاه در دسترس می‌باشد)", "signInWithDeviceText": "وصل شدن با اکانت دستگاه", "signInWithGameCircleText": "وصل شدن از طریق حوزهٔ بازی", @@ -34,15 +36,15 @@ "signInWithTestAccountText": "ورود با حساب آزمایشی", "signInWithText": "با ${SERVICE} وارد شوید", "signInWithV2InfoText": "یک حساب که روی همه سیستم عامل ها کار میکنه", - "signInWithV2Text": "ورود به سیستم با حساب بمب اسکواد", + "signInWithV2Text": "ورود به سیستم با حساب ${APP_NAME}", "signOutText": "خروج از حساب", - "signingInText": "در حال اتصال…", + "signingInText": "در حال ورود...", "signingOutText": "در حال خروج…", "ticketsText": "${COUNT} :بلیت‌ها", "titleText": "حساب کاربری", "unlinkAccountsInstructionsText": "یک حساب را برای جداسازی انتخاب کنید", "unlinkAccountsText": "جداسازی حساب‌ها", - "unlinkLegacyV1AccountsText": "لغو پیوند حساب‌های قدیمی (V1)", + "unlinkLegacyV1AccountsText": "(V1) لغو پیوند حساب‌های قدیمی", "v2LinkInstructionsText": "استفاده از این لینک برای ایجاد یک حساب کاربری و یا ورود به سیستم.", "viaAccount": "(${NAME} از طریق حساب)", "youAreSignedInAsText": ":با این اکانت وصل شدی" @@ -51,311 +53,313 @@ "achievementText": "دستاورد", "achievements": { "Boom Goes the Dynamite": { - "description": ".نابود کن TNT سه حریف را با", - "descriptionComplete": "!ترکوندی TNT سه نفر رو با", - "descriptionFull": "از بین ببر TNT با ${LEVEL} سه نفر رو توی", - "descriptionFullComplete": "از بین بردی TNT با ${LEVEL} سه نفر رو توی", + "description": "⁦از بین ببر TNT ۳ حریف رو با", + "descriptionComplete": "⁦از بین بردی TNT ۳ حریف رو با", + "descriptionFull": "⁦از بین ببر TNT در ${LEVEL} ۳ حریف رو با", + "descriptionFullComplete": "‎از بین بردی TNT در ${LEVEL} ۳ حریف رو با", "name": "!ترکوندی" }, "Boxer": { - "description": "بدون استفاده از هیچ بمبی برنده شو", + "description": "بدون استفاده از بمب برنده شو", "descriptionComplete": "بدون استفاده از بمب برنده شدی", "descriptionFull": "را بدون استفاده از هیچ بمبی کامل کن ${LEVEL} مرحلهٔ", - "descriptionFullComplete": "را بدون استفاده از بمب کامل کردی ${LEVEL} مرحلهٔ", - "name": "بوکسور!" + "descriptionFullComplete": "${LEVEL} رو بدون استفاده از بمب کامل کردی", + "name": "بوکسر" }, "Dual Wielding": { - "descriptionFull": "(‏دو دستهٔ به بازی وصل کن ‏(سخت‌افزاری یا نرم‌افزاری", - "descriptionFullComplete": "(دو دستهٔ به بازی وصل کردی (سخت‌افزار یا نرم‌افزار", + "descriptionFull": "(واقعی یا مجازی) ‏۲ دسته به بازی وصل کن", + "descriptionFullComplete": "(واقعی یا مجازی) ۲ دسته به بازی وصل کردی", "name": "دوتایی" }, "Flawless Victory": { "description": "بدون هیچ آسیبی برنده شو", "descriptionComplete": "بدون هیچ آسیبی برنده شدی", - "descriptionFull": "را بدون هیچ آسیبی برنده شو ${LEVEL} مرحلهٔ", - "descriptionFullComplete": "رو بدون هیچ آسیبی برنده شدی ${LEVEL} مرحلهٔ", + "descriptionFull": "${LEVEL} رو بدون هیچ آسیبی برنده شو", + "descriptionFullComplete": "${LEVEL} رو بدون هیچ آسیبی برنده شدی", "name": "پیروزی بی‌نقص" }, "Free Loader": { - "descriptionFull": "یک بازی به سبک تک به تک را با ۲+ بازیکن شروع کن", - "descriptionFullComplete": "یک بازی تک به تک را با ۲+ بازیکن شروع کردی", - "name": "بارگذار رایگان" + "descriptionFull": "یه بازی تک‌به‌تک رو با +۲ بازیکن راه بنداز", + "descriptionFullComplete": "یه بازی تک‌به‌تک رو با +۲ بازیکن راه انداختی", + "name": "تک‌به‌تک‌باز" }, "Gold Miner": { - "description": "شش بچه بد را با مین زمینی نابود کن", - "descriptionComplete": "شش بچه بد را با مین زمینی نابود کردی", - "descriptionFull": "با مین زمینی از بین ببر ${LEVEL} شش حریف را در مرحلهٔ", - "descriptionFullComplete": "با مین زمینی نابود کردی ${LEVEL} شش حریف را در مرحلهٔ", + "description": "۶ حریف رو با مین زمینی از بین ببر", + "descriptionComplete": "۶ حریف رو با مین زمینی از بین بردی", + "descriptionFull": "۶ حریف رو در ${LEVEL} با مین زمینی از بین ببر", + "descriptionFullComplete": "۶ حریف رو در ${LEVEL} با مین زمینی از بین بردی", "name": "مین‌گذار طلایی" }, "Got the Moves": { "description": "بدون استفاده از مشت یا بمب برنده شو", - "descriptionComplete": "بدون استفاده از هیچ مشت یا بمبی برنده شدی", - "descriptionFull": "را بدون مشت یا بمب برنده شو ${LEVEL} بازی", - "descriptionFullComplete": "را بدون مشت یا بمب برنده شدی ${LEVEL} بازی", - "name": "عجب حرکاتی بابا ورزشکار!" + "descriptionComplete": "بدون استفاده از مشت یا بمب برنده شدی", + "descriptionFull": "${LEVEL} رو بدون مشت یا بمب برنده شو", + "descriptionFullComplete": "${LEVEL} رو بدون مشت یا بمب برنده شدی", + "name": "حرکت خفنی زدی" }, "In Control": { - "descriptionFull": "(یک دستهٔ به بازی وصل کن (سخت‌افزاری یا نرم‌افزاری", - "descriptionFullComplete": "(یک دستهٔ بازی وصل کردی (سخت‌افزار یا نرم‌افزار", - "name": "تحت کنترل" + "descriptionFull": "(واقعی یا مجازی) یه دسته به بازی وصل کن", + "descriptionFullComplete": "(واقعی یا مجازی) یه دسته به بازی وصل کردی", + "name": "دسته‌باز" }, "Last Stand God": { "description": "‏۱۰۰۰ امتیاز بگیر", "descriptionComplete": "‏۱۰۰۰ امتیاز گرفتی‏", - "descriptionFull": "‏۱۰۰۰ امتیاز بگیر ${LEVEL} در مرحلهٔ", - "descriptionFullComplete": "‏۱۰۰۰ امتیاز گرفتی‏ ${LEVEL} در مرحلهٔ", - "name": "${LEVEL} خدا" + "descriptionFull": "‏در ${LEVEL} ۱۰۰۰ امتیاز بگیر", + "descriptionFullComplete": "‏در ${LEVEL} ۱۰۰۰ امتیاز گرفتی", + "name": "خدای ${LEVEL}" }, "Last Stand Master": { "description": "‏۲۵۰ امتیاز بگیر", "descriptionComplete": "‏۲۵۰ امتیاز گرفتی", - "descriptionFull": "‏۲۵۰ امتیاز بگیر ${LEVEL} در مرحلهٔ", - "descriptionFullComplete": "‏۲۵۰ امتیاز گرفتی ${LEVEL} در مرحلهٔ", - "name": "${LEVEL} استاد" + "descriptionFull": "‏در ${LEVEL} ۲۵۰ امتیاز بگیر", + "descriptionFullComplete": "‏در ${LEVEL} ۲۵۰ امتیاز گرفتی", + "name": "استاد ${LEVEL}" }, "Last Stand Wizard": { "description": "‏۵۰۰ امتیاز بگیر", "descriptionComplete": "‏۵۰۰ امتیاز گرفتی", - "descriptionFull": "‏۵۰۰ امتیاز بگیر ${LEVEL} در مرحلهٔ", - "descriptionFullComplete": "‏۵۰۰ امتیاز گرفتی ${LEVEL} در مرحلهٔ", - "name": "${LEVEL} جادوگر" + "descriptionFull": "‏در ${LEVEL} ۵۰۰ امتیاز بگیر", + "descriptionFullComplete": "‏در ${LEVEL} ۵۰۰ امتیاز گرفتی", + "name": "جادوگر ${LEVEL}" }, "Mine Games": { - "description": "سه حریف را با مین زمینی از بین ببر", - "descriptionComplete": "سه حریف را با مین زمینی از بین بردی", - "descriptionFull": "با مین از بین ببر ${LEVEL} سه حریف را در مرحلهٔ", - "descriptionFullComplete": "با مین از بین بردی ${LEVEL} سه حریف را در مرحلهٔ", - "name": "مین بازی" + "description": "۳ حریف رو با مین زمینی از بین ببر", + "descriptionComplete": "۳ حریف رو با مین زمینی از بین بردی", + "descriptionFull": "۳ حریف رو در ${LEVEL} با مین زمینی از بین ببر", + "descriptionFullComplete": "۳ حریف رو در ${LEVEL} با مین زمینی از بین بردی‎", + "name": "بازی‌های مین" }, "Off You Go Then": { - "description": "سه تا حریف از نقشه بنداز بیرون", - "descriptionComplete": "سه تا حریف رو از نقشه انداختی بیرون", - "descriptionFull": "بنداز پایین ${LEVEL} سه حریف رو از نقشه در مرحله", - "descriptionFullComplete": "از نقشه انداختی پایین ${LEVEL} سه حریف رو در مرحله", - "name": "حالا میتونی بری" + "description": "۳ حریف رو از نقشه بیرون بنداز", + "descriptionComplete": "۳ حریف رو از نقشه بیرون انداختی", + "descriptionFull": "۳ حریف رو در ${LEVEL} از نقشه بیرون بنداز", + "descriptionFullComplete": "۳ حریف رو در ${LEVEL} از نقشه بیرون انداختی", + "name": "حالا می‌تونی بری" }, "Onslaught God": { - "description": "پنج هزار امتیاز بگیر", - "descriptionComplete": "پنج هزار امتیاز گرفتی", - "descriptionFull": "بگیر${LEVEL}پنج هزار امتیاز در مرحله ی", - "descriptionFullComplete": "گرفتی${LEVEL}پنج هزار امتیاز در مرحله ی", - "name": "${LEVEL} خدا" + "description": "۵۰۰۰ امتیاز بگیر", + "descriptionComplete": "۵۰۰۰ امتیاز گرفتی", + "descriptionFull": "در ${LEVEL} ۵۰۰۰ امتیاز بگیر", + "descriptionFullComplete": "در ${LEVEL} ۵۰۰۰ امتیاز گرفتی", + "name": "خدای ${LEVEL}" }, "Onslaught Master": { - "description": "پونصد امتیاز بگیر", - "descriptionComplete": "پانصد امتیاز گرفتی", - "descriptionFull": "بگیر ${LEVEL} پانصد امتیاز در مرحله ی", - "descriptionFullComplete": "گرفتی ${LEVEL} پانصد امتیاز در مرحله ی", - "name": "${LEVEL} استاد" + "description": "۵۰۰ امتیاز بگیر", + "descriptionComplete": "۵۰۰ امتیاز گرفتی", + "descriptionFull": "در ${LEVEL} ۵۰۰ امتیاز بگیر", + "descriptionFullComplete": "در ${LEVEL} ۵۰۰ امتیاز گرفتی", + "name": "استاد ${LEVEL}" }, "Onslaught Training Victory": { - "description": "همه موج ها رو رد کن", - "descriptionComplete": "همه موج ها رو رد کردی", - "descriptionFull": "رد کن ${LEVEL} همه موج ها رو تو مرحله", - "descriptionFullComplete": "رد کردی ${LEVEL} همه موج ها رو توی مرحله", - "name": "${LEVEL} پیروزی" + "description": "همه‌ی موج‌ها رو شکست بده", + "descriptionComplete": "همه‌ی موج‌ها رو شکست دادی", + "descriptionFull": "همه‌ی موج‌های ${LEVEL} رو شکست بده", + "descriptionFullComplete": "همه‌ی موج‌های ${LEVEL} رو شکست دادی", + "name": "پیروزی در ${LEVEL}" }, "Onslaught Wizard": { - "description": "هزار امتیاز بگیر", - "descriptionComplete": "هزار امتیاز گرفتی", - "descriptionFull": "بگیر ${LEVEL} هزار امتیاز در مرحله ی", - "descriptionFullComplete": "گرفتی ${LEVEL} هزار امتیاز در مرحله ی", - "name": "${LEVEL} جادوگر" + "description": "۱۰۰۰ امتیاز بگیر", + "descriptionComplete": "۱۰۰۰ امتیاز گرفتی", + "descriptionFull": "در ${LEVEL} ۱۰۰۰ امتیاز بگیر", + "descriptionFullComplete": "در ${LEVEL} ۱۰۰۰ امتیاز گرفتی", + "name": "جادوگر ${LEVEL}" }, "Precision Bombing": { - "description": "بدون گرفتن هیچ جعبه ی کمکی ای برنده شو", - "descriptionComplete": "بدون گرفتن هیچ جعبه ی کمکی ای برنده شدی", - "descriptionFull": "رو بدون گرفتن قدرتی برنده شو ${LEVEL} مرحله", - "descriptionFullComplete": "رو بدون گرفتن قدرتی برنده شدی ${LEVEL} مرحله", - "name": "بمب باران دقیق" + "description": "بدون گرفتن هیچ قدرتی برنده شو", + "descriptionComplete": "بدون گرفتن هیچ قدرتی برنده شدی", + "descriptionFull": "${LEVEL} رو بدون گرفتن هیچ قدرتی برنده شو", + "descriptionFullComplete": "${LEVEL} رو بدون گرفتن هیچ قدرتی برنده شدی", + "name": "بمب‌باران دقیق" }, "Pro Boxer": { "description": "بدون استفاده از هیچ بمبی برنده شو", "descriptionComplete": "بدون استفاده از هیچ بمبی برنده شدی", - "descriptionFull": "رو بدون استفاده از هیچ بمبی تمام کن ${LEVEL} مرحله ی", - "descriptionFullComplete": "رو بدون استفاده از هر بمبی تمام کردی ${LEVEL} مرحله", + "descriptionFull": "${LEVEL} رو بدون استفاده از هیچ بمبی کامل کن", + "descriptionFullComplete": "${LEVEL} رو بدون استفاده از هیچ بمبی کامل کردی", "name": "مشت‌زن حرفه‌ای" }, "Pro Football Shutout": { - "description": "بدون اینکه اجازه بدی حریف امتیاز بگیره برنده شو", - "descriptionComplete": "بدون اینکه اجازه بدی حریف امتیاز بگیره برنده شدی", - "descriptionFull": "اجازه نده حریف امتیاز بگیره و برنده شو ${LEVEL} در مرحله", - "descriptionFullComplete": "اجازه ندادی حریف امتیاز بگیره و برنده شدی ${LEVEL} در مرحله", - "name": "${LEVEL} امتیاز ندادن" + "description": "بدون اینکه بزاری حریف امتیاز بگیره، برنده شو", + "descriptionComplete": "بدون اینکه بزاری حریف امتیاز بگیره، برنده شدی", + "descriptionFull": "در ${LEVEL} بدون اینکه بزاری حریف امتیاز بگیره، برنده شو", + "descriptionFullComplete": "در ${LEVEL} بدون اینکه بزاری حریف امتیاز بگیره، برنده شدی", + "name": "دوازه‌بسته در ${LEVEL}" }, "Pro Football Victory": { "description": "برنده شو", - "descriptionComplete": "! برنده شدی", - "descriptionFull": "برنده شو ${LEVEL} در مرحله", - "descriptionFullComplete": "برنده شدی ${LEVEL} در مرحله", - "name": "${LEVEL} پیروزی" + "descriptionComplete": "برنده شدی", + "descriptionFull": "در ${LEVEL} برنده شو", + "descriptionFullComplete": "در ${LEVEL} برنده شدی", + "name": "پیروزی در ${LEVEL}" }, "Pro Onslaught Victory": { - "description": "همه ی موج ها را بگذران", - "descriptionComplete": "همه ی موج ها را گذراندی", - "descriptionFull": "همه ی موج ها را بگذران ${LEVEL} در مرحله", - "descriptionFullComplete": "همه ی موج ها را گذراندی ${LEVEL} در مرحله", - "name": "${LEVEL} پیروزی" + "description": "همه‌ی موج‌ها رو شکست بده", + "descriptionComplete": "همه‌ی موج‌ها رو شکست دادی", + "descriptionFull": "همه‌ی موج‌های ${LEVEL} رو شکست بده", + "descriptionFullComplete": "همه‌ی موج‌های ${LEVEL} رو شکست دادی", + "name": "پیروزی در ${LEVEL}" }, "Pro Runaround Victory": { - "description": "همه ی موج ها را بگذران", - "descriptionComplete": "همه ی موج ها را گذراندی", - "descriptionFull": "همه ی موج ها را بگذران ${LEVEL} در مرحله", - "descriptionFullComplete": "همه ی موج ها را گذراندی ${LEVEL} در مرحله", - "name": "${LEVEL} پیروزی" + "description": "همه‌ی موج‌ها رو کامل کن", + "descriptionComplete": "همه‌ی موج‌ها رو کامل کردی", + "descriptionFull": "همه‌ی موج‌های ${LEVEL} رو کامل کن", + "descriptionFullComplete": "همه‌ی موج‌های ${LEVEL} رو کامل کردی", + "name": "پیروزی در ${LEVEL}" }, "Rookie Football Shutout": { - "description": "برنده شو و اجازه نده حریف امتیاز بگیره", - "descriptionComplete": "برنده شدی و اجازه ندادی حریف امتیاز بگیره", - "descriptionFull": "برنده شو و اجازه نده حریف امتیاز بگیره ${LEVEL} در مرحله", - "descriptionFullComplete": "برنده شدی و اجازه ندادی حریف امتیاز بگیره ${LEVEL} در مرحله", - "name": "${LEVEL} بدون امتیاز دادن" + "description": "بدون اینکه بزاری حریف امتیاز بگیره، برنده شو", + "descriptionComplete": "بدون اینکه بزاری حریف امتیاز بگیره، برنده شدی", + "descriptionFull": "در ${LEVEL} بدون اینکه بزاری حریف امتیاز بگیره، برنده شو", + "descriptionFullComplete": "در ${LEVEL} بدون اینکه بزاری حریف امتیاز بگیره، برنده شدی", + "name": "دروازه‌بسته در ${LEVEL}" }, "Rookie Football Victory": { "description": "برنده شو", "descriptionComplete": "برنده شدی", - "descriptionFull": "برنده شو ${LEVEL} در مرحله", - "descriptionFullComplete": "برنده شدی ${LEVEL} در مرحله", - "name": "${LEVEL} پیروزی" + "descriptionFull": "در ${LEVEL} برنده شو", + "descriptionFullComplete": "در ${LEVEL} برنده شدی", + "name": "پیروزی در ${LEVEL}" }, "Rookie Onslaught Victory": { - "description": "همه ی موج ها را بگذران", - "descriptionComplete": "همه ی موج ها را گذراندی", - "descriptionFull": "همه ی موج ها را بگذران ${LEVEL} در مرحله", - "descriptionFullComplete": "همه ی موج ها را گذراندی ${LEVEL} در مرحله", - "name": "${LEVEL} پیروزی" + "description": "همه‌ی موج‌ها رو شکست بده", + "descriptionComplete": "همه‌ی موج‌ها رو شکست دادی", + "descriptionFull": "همه‌ی موج‌های ${LEVEL} رو شکست بده", + "descriptionFullComplete": "همه‌ی موج‌های ${LEVEL} رو شکست دادی", + "name": "پیروزی در ${LEVEL}" }, "Runaround God": { - "description": "دو هزار امتیاز بگیر", - "descriptionComplete": "دو هزار امتیاز گرفتی", - "descriptionFull": "دو هزار امتیاز بگیر ${LEVEL} در مرحله", - "descriptionFullComplete": "دو هزار امتیاز گرفتی ${LEVEL} در مرحله", - "name": "${LEVEL} خدا" + "description": "۲۰۰۰ امتیاز بگیر", + "descriptionComplete": "۲۰۰۰ امتیاز گرفتی", + "descriptionFull": "در ${LEVEL} ۲۰۰۰ امتیاز بگیر", + "descriptionFullComplete": "در ${LEVEL} ۲۰۰۰ امتیاز گرفتی", + "name": "خدای ${LEVEL}" }, "Runaround Master": { - "description": "پانصد امتیاز بگیر", - "descriptionComplete": "پانصد امتیاز گرفتی", - "descriptionFull": "پونصد امتیاز بگیر ${LEVEL} در مرحله", - "descriptionFullComplete": "پونصد امتیاز گرفتی ${LEVEL} در مرحله", - "name": "${LEVEL} استاد" + "description": "۵۰۰ امتیاز بگیر", + "descriptionComplete": "۵۰۰ امتیاز گرفتی", + "descriptionFull": "در ${LEVEL} ۵۰۰ امتیاز بگیر", + "descriptionFullComplete": "در ${LEVEL} ۵۰۰ امتیاز گرفتی", + "name": "استاد ${LEVEL}" }, "Runaround Wizard": { - "description": "هزار امتیاز بگیر", - "descriptionComplete": "هزار امتیاز گرفتی", - "descriptionFull": "هزار امتیاز بگیر ${LEVEL} در مرحله", - "descriptionFullComplete": "هزار امتیاز گرفتی ${LEVEL} در مرحله", - "name": "${LEVEL} جادوگر" + "description": "۱۰۰۰ امتیاز بگیر", + "descriptionComplete": "۱۰۰۰ امتیاز گرفتی", + "descriptionFull": "در ${LEVEL} ۱۰۰۰ امتیاز بگیر", + "descriptionFullComplete": "در ${LEVEL} ۱۰۰۰ امتیاز گرفتی", + "name": "جادوگر ${LEVEL}" }, "Sharing is Caring": { - "descriptionFull": "بازی را با یک دوست به اشتراک بگذار", - "descriptionFullComplete": "بازی را با یک دوست به اشتراک گذاشتی", - "name": "به اشتراک‌گذاشتن یه‌جور مراقبت است" + "descriptionFull": "بازی رو با یکی از دوستات به اشتراک بگذار", + "descriptionFullComplete": "بازی رو با دوستت به اشتراک گذاشتی", + "name": "بازی با دوستا می‌چسبه" }, "Stayin' Alive": { - "description": "بدون از بین‌رفتن برنده‌شو", - "descriptionComplete": "بدون از بین‌رفتن برنده شدی", - "descriptionFull": "بدون از بین رفتن شو ${LEVEL} در مرحله", - "descriptionFullComplete": "بدون از بین رفتن برنده شدی ${LEVEL} در مرحله", + "description": "بدون از بین رفتن برنده شو", + "descriptionComplete": "بدون از بین رفتن برنده شدی", + "descriptionFull": "در ${LEVEL} بدون از بین رفتن شو", + "descriptionFullComplete": "در ${LEVEL} بدون از بین رفتن برنده شدی", "name": "زنده ماندن" }, "Super Mega Punch": { - "description": "فقط با یک مشت، یکی رو نابود کن", - "descriptionComplete": "فقط با یک مشت، یه نفرو کشتی", - "descriptionFull": "فقط با یک مشت، یه نفر رو نابود کن ${LEVEL} در مرحله", - "descriptionFullComplete": "فقط با یک مشت، یه نفر رو کشتی ${LEVEL} در مرحله", + "description": "با یه مشت حریف رو از بین ببر", + "descriptionComplete": "با یه مشت حریف رو از بین بردی", + "descriptionFull": "در ${LEVEL} با یه مشت حریف رو از بین ببر", + "descriptionFullComplete": "در ${LEVEL} با یه مشت حریف رو از بین بردی", "name": "مشت خیلی فوق‌العاده" }, "Super Punch": { "description": "با یک مشت، نصف جون یه نفر رو ببر", "descriptionComplete": "با یک مشت، نصف جون یه نفر رو بردی", - "descriptionFull": "با یک مشت، نصف جون یه نفر رو ببر ${LEVEL} در مرحله", - "descriptionFullComplete": "با یک مشت، نصف جون یه نفر رو بردی ${LEVEL} در مرحله", + "descriptionFull": "در ${LEVEL} با یه مشت نصف جون حریف رو بگیر", + "descriptionFullComplete": "در ${LEVEL} با یه مشت نصف جون حریف رو گرفتی", "name": "مشت فوق‌العاده" }, "TNT Terror": { - "description": "نابود کنTNT شش حریف رو با", - "descriptionComplete": "نابود کردی TNT شش حریف رو با", - "descriptionFull": "نابود کن TNT شش حریف رو با ${LEVEL} در مرحله", - "descriptionFullComplete": "نابود کردی TNT شش حریف رو با ${LEVEL} در مرحله", + "description": "⁦از بین ببر TNT ۶ حریف رو با", + "descriptionComplete": "⁦از بین بردی TNT ۶ حریف رو با", + "descriptionFull": "⁦از بین ببر TNT در ${LEVEL} ۶ حریف رو با", + "descriptionFullComplete": "⁦از بین بردی TNT در ${LEVEL} ۶ حریف رو با", "name": "TNT وحشت" }, "Team Player": { - "descriptionFull": "یه بازی تیمی با چهارتا از دوستات شروع کن", - "descriptionFullComplete": "یه بازی تیمی با چهارتا از دوستات شروع کردی", + "descriptionFull": "یه بازی تیمی رو با +۴ بازیکن راه بنداز", + "descriptionFullComplete": "یه بازی تیمی رو با +۴ بازیکن راه انداختی", "name": "بازیکن تیم" }, "The Great Wall": { - "description": "جلوی تک تک حریف ها رو بگیر", - "descriptionComplete": "جلوی تک تک حریف ها رو گرفتی", - "descriptionFull": "جلوی تک تک حریف ها رو بگیر ${LEVEL} در مرحله", - "descriptionFullComplete": "جلوی تک تک حریف ها رو گرفتی ${LEVEL} در مرحله", + "description": "جلوی تک‌تک حریف‌ها رو بگیر", + "descriptionComplete": "جلوی تک‌تک حریف‌ها رو گرفتی", + "descriptionFull": "در ${LEVEL} جلوی تک‌تک حریف‌ها رو بگیر", + "descriptionFullComplete": "در ${LEVEL} جلوی تک‌تک حریف‌ها رو گرفتی", "name": "دیوار بزرگ" }, "The Wall": { "description": "جلوی تک تک حریف ها رو بگیر", "descriptionComplete": "جلوی تک تک حریف ها رو گرفتی", - "descriptionFull": "جلوی تک تک حریف ها رو بگیر ${LEVEL} در مرحله", - "descriptionFullComplete": "جلوی تک تک حریف ها رو بگیر ${LEVEL} در مرحله", + "descriptionFull": "در ${LEVEL} جلوی تک‌تک حریف‌ها رو بگیر", + "descriptionFullComplete": "در ${LEVEL} جلوی تک‌تک حریف‌ها رو گرفتی", "name": "دیوار" }, "Uber Football Shutout": { - "description": "برنده شو و اجازه نده حریف امتیاز بگیره", - "descriptionComplete": "برنده شدی و اجازه ندادی حریف امتیاز بگیره", - "descriptionFull": "برنده شو و اجازه نده حریف امتیاز بگیره ${LEVEL} در مرحله", - "descriptionFullComplete": "برنده شدی و اجازه ندادی حریف امتیاز بگیره ${LEVEL} در مرحله", - "name": "${LEVEL} بدون امتیاز دادن" + "description": "بدون اینکه بزاری حریف امتیاز بگیره، برنده شو", + "descriptionComplete": "بدون اینکه بزاری حریف امتیاز بگیره، برنده شدی", + "descriptionFull": "در ${LEVEL} بدون اینکه بزاری حریف امتیاز بگیره، برنده شو", + "descriptionFullComplete": "در ${LEVEL} بدون اینکه بزاری حریف امتیاز بگیره، برنده شدی", + "name": "دروازه‌بسته در ${LEVEL}" }, "Uber Football Victory": { "description": "برنده شو", "descriptionComplete": "برنده شدی", "descriptionFull": "برنده شو ${LEVEL} در مرحله", - "descriptionFullComplete": "برنده شدی ${LEVEL} در مرحله", - "name": "${LEVEL} پیروزی" + "descriptionFullComplete": "در ${LEVEL} برنده شدی", + "name": "پیروزی در ${LEVEL}" }, "Uber Onslaught Victory": { - "description": "تمام موج ها رو بگذران", - "descriptionComplete": "تمام موج ها رو گذراندی", - "descriptionFull": "تمام موج ها رو بگذران ${LEVEL} در مرحله", - "descriptionFullComplete": "تمام موج ها رو گذراندی ${LEVEL} در مرحله", - "name": "${LEVEL} پیروزی" + "description": "همه‌ی موج‌ها رو شکست بده", + "descriptionComplete": "همه‌ی موج‌ها رو شکست دادی", + "descriptionFull": "همه‌ی موج‌های ${LEVEL} رو شکست بده", + "descriptionFullComplete": "همه‌ی موج‌های ${LEVEL} رو شکست دادی", + "name": "پیروزی در ${LEVEL}" }, "Uber Runaround Victory": { - "description": "همه ی موج ها رو بگذران", - "descriptionComplete": "همه ی موج ها رو گذرونی", - "descriptionFull": "همه ی موج ها رو بگذران ${LEVEL} در مرحله", - "descriptionFullComplete": "همه ی موج ها رو گذروندی ${LEVEL} در مرحله", - "name": "${LEVEL} پیروزی" + "description": "همه‌ی موج‌ها رو کامل کن", + "descriptionComplete": "همه‌ی موج‌ها رو کامل کردی", + "descriptionFull": "همه‌ی موج‌های ${LEVEL} رو کامل کن", + "descriptionFullComplete": "همه‌ی موج‌های ${LEVEL} رو کامل کردی", + "name": "پیروزی در ${LEVEL}" } }, - "achievementsRemainingText": "دستاورد های باقیمانده:", + "achievementsRemainingText": ":دستاوردهای باقی‌مانده", "achievementsText": "دستاوردها", "achievementsUnavailableForOldSeasonsText": "ببخشید، دستاوردهای مخصوص فصل گذشته در دسترس نیستند", - "activatedText": "${THING} فعال شد.", + "activatedText": "⁦.فعال شد ${THING}", "addGameWindow": { - "getMoreGamesText": "...بازی های بیشتر", + "getMoreGamesText": "بازی‌های بیشتر…", "titleText": "افزودن بازی" }, - "addToFavoritesText": "اضافه کردن به مورد علاقه ها", + "addToFavoritesText": "افزودن به مورد علاقه‌ها", "addedToFavoritesText": "اضافه شد '${NAME}' به مورد علاقه ها", "allText": "همه", "allowText": "اجازه دادن", "alreadySignedInText": "این حساب کاربری توسط یک دستگاه دیگر در حال استفاده می باشد.\nلطفا از حساب کاربری دیگری استفاده کنید یا بازی را \nدر بقیه دستگاه هایتان ببندید و دوباره امتحان کنید.", "apiVersionErrorText": "نیاز داریم ${VERSION_REQUIRED} است. به ورژن ${VERSION_USED} بالا نمی آید. هدفش ${NAME} مدل", + "applyText": "اعمال کردن", + "areYouSureText": "مطمئنی؟", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(به صورت خودکار فعال شود وقتی که هدفون متصل است)", "headRelativeVRAudioText": "(صدای واقعیت مجازی(مخصوص هدفون", "musicVolumeText": "صدای موسیقی", "soundVolumeText": "صدای بازی", - "soundtrackButtonText": "تراک های موسیقی", + "soundtrackButtonText": "موسیقی‌متن", "soundtrackDescriptionText": "(موسیقی مورد نظر خود را برای هنگام بازی تعیین کنید)", "titleText": "صدا" }, "autoText": "خودکار", "backText": "بازگشت", "banThisPlayerText": "این بازیکن را محروم کن", - "bestOfFinalText": "${COUNT} برترین های نهایی از", - "bestOfSeriesText": "${COUNT} برترین های مجموعه از", + "bestOfFinalText": "‎بازی - نهایی ${COUNT} برترین در", + "bestOfSeriesText": ":‎بازی ${COUNT} برترین در", "bestRankText": "است #${RANK} برترین رتبه ی شما", "bestRatingText": "است ${RATING} بهترین امتیاز شما", "bombBoldText": "بمب", @@ -363,25 +367,34 @@ "boostText": "تقویت", "bsRemoteConfigureInAppText": "در خود برنامه تنظیم شده است ${REMOTE_APP_NAME} برنامه", "buttonText": "دکمه", - "canWeDebugText": "آیا مایلید که بازی، اتوماتیک خرابی ها \nو باگ ها را به نویسنده ی بازی گزارش دهد ؟\n\nداده ای که فرستاده میشود حاوی هیچ یک از\n اطلاعات شخصی شما نیست و باعث میشود بازی روان تر شود", + "canWeDebugText": "آیا مایلید که ${APP_NAME} اتوماتیک خرابی ها \nو باگ ها را به نویسنده ی بازی گزارش دهد ؟\n\nداده ای که فرستاده میشود حاوی هیچ یک از\n اطلاعات شخصی شما نیست و باعث میشود بازی روان تر شود", "cancelText": "لغو", "cantConfigureDeviceText": "قابل تنظیم نیست ${DEVICE} متاسفانه دستگاه", "challengeEndedText": "این چالش به پایان رسیده است", - "chatMuteText": "گفتگو رو بیصدا کن", - "chatMutedText": "گفتگو بیصدا شد", + "chatMuteText": "گفتگو رو بی‌صدا کن", + "chatMutedText": "گفتگو بی‌صدا شد", "chatUnMuteText": "گفتگو رو صدادار کن", + "chests": { + "prizeOddsText": "جایزه خفن", + "reduceWaitText": "کاهش انتظار", + "slotDescriptionText": "این مکان می تواند یک صندوق را نگه دارد\n\nبا بازی سطوح کمپین،\nقرار گرفتن در مسابقات و تکمیل\nدستاوردها صندوق بدست آورید", + "slotText": "محل صندوق ${NUM}", + "slotsFullWarningText": "هشدار: تمام محل های صندوق شما پر است.\n هر صندوق ای که در این بازی به دست آورید از بین خواهد رفت", + "unlocksInText": "باز می کند" + }, "choosingPlayerText": "<انتخاب بازیکن>", + "claimText": "دریافت", "codesExplainText": "کدها توسط توسعه دهنده ارائه می شوند\n مشکلات حساب را تشخیص و تصحیح کنید.", "completeThisLevelToProceedText": "برای ادامه باید این مرحله را تمام کنید", "completionBonusText": "پاداش به اتمام رساندن", "configControllersWindow": { - "configureControllersText": "تنظیم دسته ها", + "configureControllersText": "پیکربندی دسته‌ها", "configureKeyboard2Text": "تنظیمات کیبورد بازیکن دوم", "configureKeyboardText": "تنظیمات کیبورد", - "configureMobileText": "گوشی همراه به‌عنوان دستهٔ بازی", - "configureTouchText": "تنظیمات صفحه لمسی", + "configureMobileText": "گوشی به‌عنوان دسته‌ی بازی", + "configureTouchText": "پیکربندی صفحه‌ی لمسی", "ps3Text": "PS3 دسته", - "titleText": "دسته ها", + "titleText": "دسته‌ها", "wiimotesText": "ها Wiimote", "xbox360Text": "Xbox 360 دسته" }, @@ -443,11 +456,11 @@ "actionControlScaleText": "اندازه ی دکمه ها", "actionsText": "اعمال", "buttonsText": "کلید ها", - "dragControlsText": "<دکمه ها را بکشید و موقعیتشان را تعیین کنید>", + "dragControlsText": "⁦< دکمه‌ها را بکشید و موقعیتشان را تعیین کنید >", "joystickText": "دکمه ی حرکت", "movementControlScaleText": "اندازه ی دکمه ی حرکت", "movementText": "حرکت", - "resetText": "بازگرداندن", + "resetText": "بازنشانی", "swipeControlsHiddenText": "مخفی کردن دکمه ی حرکت", "swipeInfoText": "کمی طول میکشد به این نوع حرکت عادت کنید\nولی راحت باشید و بدون نگاه کردن به آن بازی کنید", "swipeText": "حرکت جاروبی", @@ -461,7 +474,7 @@ "appStoreText": "فروشگاه برنامه", "bestResultsScale": 0.65, "bestResultsText": "برای بهترین نتایج شما به یک شبکه وای‌فای بدون لَگ نیاز دارید\nبرای رفع لگ می‌توانید بقیه دستگاه‌های متصل به وای‌فای را خاموش کنید\nیا نزدیک مودم بازی کنید و یا با شبکه محلی به شبکه وصل شوید و میزبان\nبازی را مستقیماً وصل کنید", - "explanationText": "برای استفاده کردن از یک گوشی هوشمند یا تبلت به عنوان دسته ی بی سیم\nرا بر روی آن نصب کنید. هر تعداد دلخواه گوشی ${REMOTE_APP_NAME} برنامه\nتوسط وای فای به صورت رایگان وصل شوند ${APP_NAME} به برنامه", + "explanationText": "برای استفاده از یک گوشی هوشمند یا تبلت به‌عنوان دسته‌ی بی‌سیم\nبرنامه‌ی ${REMOTE_APP_NAME} را بر روی آن نصب کنید. هر تعداد دلخواه گوشی\nمی‌توانند به ${APP_NAME} روی وای‌فای به‌صورت رایگان وصل شوند.", "forAndroidText": "برای اندروید", "forIOSText": "iOS برای", "getItForText": "را برای آی‌اواس از فروشگاه برنامه‌های اپل ${REMOTE_APP_NAME} برنامهٔ\nیا برای اندروید از فروشگاه گوگل پلی و یا فروشگاه برنامهٔ آمازون دریافت کنید.", @@ -475,7 +488,7 @@ "activenessAllTimeInfoText": "بر روی رده‌بندی کلی اِعمال نمی‌شود.", "activenessInfoText": "این افزاینده در روزهایی که بازی می‌کنید افزایش می‌یابد\nو در روزهایی که بازی نمی‌کنید کاهش می‌یابد.", "activityText": "فعالیت", - "campaignText": "عملیات", + "campaignText": "پیشروی", "challengesInfoText": "برای کامل کردن مینی‌بازی‌ها جایزه بگیرید.\n\nهرگاه چالشی را انجام می‌دهید، جایزه‌ها و\nسختی مراحل افزایش می‌یابد و هرگاه چالشی\nباطل شود یا به هدر رود، کاهش می‌یابد.", "challengesText": "چالش‌ها", "currentBestText": "بهترین امتیاز کنونی", @@ -492,9 +505,9 @@ "pointsText": "امتیازات", "powerRankingFinishedSeasonUnrankedText": "(فصل بدون رده‌بندی پایان یافته)", "powerRankingNotInTopText": "(نفر برتر نیستید ${NUMBER} بین)", - "powerRankingPointsEqualsText": "= امتیاز ${NUMBER}", + "powerRankingPointsEqualsText": "⁦= امتیاز ${NUMBER}", "powerRankingPointsMultText": "(x ${NUMBER} امتیاز)", - "powerRankingPointsText": "امتیاز ${NUMBER}", + "powerRankingPointsText": "⁦امتیاز ${NUMBER}", "powerRankingPointsToRankedText": "(امتیاز ${REMAINING} از ${CURRENT})", "powerRankingText": "رتبه‌بندی قدرت", "prizesText": "جایزه‌ها", @@ -503,7 +516,7 @@ "skipWaitText": "توقف انتظار", "timeRemainingText": "زمان باقی‌مانده", "toRankedText": "تا رتبه‌بندی شوید", - "totalText": "در مجموع", + "totalText": "⁦مجموع", "tournamentInfoText": "بر سر امتیاز بیشتر با بازیکنان در\nلیگ خود رقابت کنید.\n\nهنگامی که زمان مسابقه تمام شود، جایزه به\nنفرات برتر با امتیازهای بالا داده می‌شود.", "welcome1Text": "خوش آمدید. شما می‌توانید ${LEAGUE} به لیگ\nبا گرفتن امتیاز، کامل کردن دستاوردها یا گرفتن جام\n.در مسابقات رتبهٔ خود را بهبود بخشید", "welcome2Text": "همچنین می‌توانید از راه‌های مشابه بلیت جمع‌آوری کنید.\nبلیت‌ها می‌توانند برای باز کردن بازیکنان جدید، نقشه‌ها، مینی‌بازی‌ها یا برای ورود در مسابقه‌ها و موارد\nبیشتر مورد استفاده قرار گیرند.", @@ -517,32 +530,32 @@ "creditsWindow": { "additionalAudioArtIdeasText": "${NAME} صداهای افزوده، کارهای هنری و ایده‌های ابتدایی توسط", "additionalMusicFromText": "${NAME} موسیقی‌های افزوده از", - "allMyFamilyText": "همهٔ دوستان و خانواده‌ام که با بازی نسخهٔ آزمایشی کمک کردند", + "allMyFamilyText": "همه‌ی دوستان و خانواده‌ام که با بازی نسخه‌ی آزمایشی کمک کردند", "codingGraphicsAudioText": "${NAME} کدگذاری، گرافیک و صدا توسط", - "languageTranslationsText": "مترجمان زبان‌ها:", + "languageTranslationsText": "⁦ترجمه‌گران⁦:", "legalText": "حقوقی:", - "publicDomainMusicViaText": "${NAME} موسیقی خاصهٔ مردم از", - "softwareBasedOnText": "میباشد ${NAME} این نرم افزار در بخش هایی الهام گرفته از", - "songCreditText": "اجرا شده و ${PERFORMER} توسط ${TITLE} آهنگ\n.می باشد ${COMPOSER}تنظیم شده و نوشته ی${ARRANGER}انتشار یافته، توسط${PUBLISHER}توسط\n${SOURCE} ادب و مهربانی", + "publicDomainMusicViaText": "${NAME} موسیقی دامنه‌عمومی از", + "softwareBasedOnText": "⁦می‌باشد ${NAME} این نرم‌افزار در بخش‌هایی الهام‌گرفته از", + "songCreditText": "⁦اجرا شده و ${PERFORMER} ⁦توسط ${TITLE} آهنگ\n.⁦می‌باشد ${COMPOSER} ⁦تنظیم شده و نوشته‌ی ${ARRANGER} ⁦انتشار یافته، توسط ${PUBLISHER} توسط\n${SOURCE} ادب و مهربانی", "soundAndMusicText": "صدا & آهنگ:", - "soundsText": "(${SOURCE})صداها :", - "specialThanksText": "تشکر ویژه:", - "thanksEspeciallyToText": "${NAME} تشکر مخصوص از", - "titleText": "${APP_NAME} درباره", + "soundsText": "⁦صداها (${SOURCE}):", + "specialThanksText": "سپاس ویژه:", + "thanksEspeciallyToText": "${NAME} سپاس ویژه از", + "titleText": "درباره‌ی ${APP_NAME}", "whoeverInventedCoffeeText": "هر کسی که قهوه را اختراع کرد!" }, "currentStandingText": "است #${RANK} رتبه ی کنونی شما", "customizeText": "...سفارشی کردن", - "deathsTallyText": "مرگ ${COUNT}", - "deathsText": "مرگ و میرها", + "deathsTallyText": "⁦مرگ ${COUNT}", + "deathsText": "مرگ‌ها", "debugText": "رفع اشكال", "debugWindow": { "reloadBenchmarkBestResultsText": "تذکر: توصیه میشود که در قسمت تنظیمات>گرافیک، کیفیت بافت را آخر ببرید در هنگام تست این", - "runCPUBenchmarkText": "را بسنجید CPU عملکرد", + "runCPUBenchmarkText": "CPU اجرای سنجش", "runGPUBenchmarkText": "را بسنجید GPU عملکرد", - "runMediaReloadBenchmarkText": "بارگذاری رسانه را بسنجید", + "runMediaReloadBenchmarkText": "اجرای سنجش بارگذاری رسانه", "runStressTestText": "اجرای تست استرس", - "stressTestPlayerCountText": "شمارش بازیکن", + "stressTestPlayerCountText": "شمار بازیکنان", "stressTestPlaylistDescriptionText": "لیست بازی تست استرس", "stressTestPlaylistNameText": "نام لیست بازی", "stressTestPlaylistTypeText": "نوع لیست بازی", @@ -551,9 +564,9 @@ "titleText": "معیارها و تست‌های استرس", "totalReloadTimeText": "مجموع زمان بارگذاری: ${TIME} (برای جزئیات گزارش را مشاهده کنید)" }, - "defaultGameListNameText": "به صورت پیشفرض ${PLAYMODE} لیست بازی", - "defaultNewGameListNameText": "من ${PLAYMODE} لیست بازی", - "deleteText": "پاک کن", + "defaultGameListNameText": "⁦پیش‌فرض ⁦${PLAYMODE}⁦ لیست", + "defaultNewGameListNameText": "⁦من ⁦${PLAYMODE}⁦ لیست", + "deleteText": "پاک کردن", "demoText": "نسخه آزمایشی", "denyText": "نپذیرفتن", "deprecatedText": "ناراحت شد", @@ -568,12 +581,13 @@ "disableRemoteAppConnectionsText": "غیر فعال کردن ارتباطات از راه دور برنامه", "disableXInputDescriptionText": "اجازه می‌دهد به بیش از 4 کنترل کننده اما ممکن است کار نکند.", "disableXInputText": "غیرفعال کردن ورودی ایکس", - "disabledText": "غیر فعال شده", + "disabledText": "غیرفعال", + "discardText": "دور انداختن", "discordFriendsText": "دنبال آدم‌های جدید می‌گردید تا با آنها بازی کنید؟\nبه دیسکورد ما بپیوندید و دوستان جدید پیدا کنید!", "discordJoinText": "پیوستن به دیسکورد", "doneText": "انجام شد", - "drawText": "برابر", - "duplicateText": "تکراری", + "drawText": "مساوی", + "duplicateText": "روگرفتن", "editGameListWindow": { "addGameText": "افزودن\nبازی", "cantOverwriteDefaultText": "نمیشه لیست پیشفرض رو بازنویسی کرد", @@ -588,28 +602,28 @@ }, "editProfileWindow": { "accountProfileInfoText": "این نمایۀ ویژه دارای یک نام\n.و تندیس بر اساس حسابتان است\n\n${ICONS}\n\nنمایه‌های سفارشی بسازید تا از نام‌ها\n.و تندیس‌های مختلف استفاده کرده باشید", - "accountProfileText": "(نمایهٔ حساب)", + "accountProfileText": "(نمایه‌ی حساب)", "availableText": ".در دسترس میباشد \"${NAME}\" نام", "characterText": "بازیکن", "checkingAvailabilityText": "...\"${NAME}\" بررسی برای در دسترس بودن نام", "colorText": "رنگ", - "getMoreCharactersText": "...بازیکن های بیشتر", + "getMoreCharactersText": "بازیکن‌های بیشتر...", "getMoreIconsText": "... تندیس های بیشتر", "globalProfileInfoText": "ضمانت می‌شود که نمایه‌های جهانی بازیکنان، نام‌های یکتا\n.دارند. همچنین یک تندیس سفارشی ضمیمهٔ آن‌ها است", - "globalProfileText": "(نمایهٔ جهانی)", + "globalProfileText": "(نمایه‌ی جهانی)", "highlightText": "بخش درخشان", "iconText": "تندیس", "localProfileInfoText": "نمایه‌های محلی بازیکنان تندیس ندارند و ضمانت نمی‌شود\nکه نام آن‌ها یکتا باشد. نمایه را جهانی کنید تا\n.نامی یکتا و تندیسی سفارشی داشته باشید", - "localProfileText": "(نمایهٔ محلی)", + "localProfileText": "(نمایه‌ی محلی)", "nameDescriptionText": "نام بازیکن", "nameText": "نام", "profileAlreadyExistsText": "نمایه ای با این نام از قبل وجود دارد.", "randomText": "تصادفی", "titleEditText": "ویرایش نمایه", - "titleNewText": "نمایهٔ جدید", - "unavailableText": ".در دسترس نمی‌باشد؛ نامی دیگر امتحان کنید «${NAME}» نام", - "upgradeProfileInfoText": "این کار نام بازیکن شما را در جهان ذخیره میکند\n.و اجازه میدهد که تندیسی سفارشی به آن دهید", - "upgradeToGlobalProfileText": "ارتقا به نمایهٔ جهانی" + "titleNewText": "نمایه‌ی جدید", + "unavailableText": ".⁦در دسترس نمی‌باشد. نامی دیگر امتحان کنید \"${NAME}\"", + "upgradeProfileInfoText": "این کار نام بازیکن شما را جهانی رزرو می‌کند\n.و اجازه می‌دهد که تندیسی سفارشی به آن بدهید", + "upgradeToGlobalProfileText": "ارتقا به نمایه‌ی جهانی" }, "editSoundtrackWindow": { "cantDeleteDefaultText": "نمیتوانید صدای پیشفرض را حذف کنید", @@ -639,24 +653,26 @@ "useMusicFolderText": "پوشه ی فایل های موسیقی" }, "editText": "ویرایش", - "enabledText": "فعال شده", + "enabledText": "فعال", "endText": "پایان", "enjoyText": "لذت ببرید", - "epicDescriptionFilterText": "در حماسهٔ حرکت آهسته ${DESCRIPTION}", - "epicNameFilterText": "${NAME} حماسهٔ", + "epicDescriptionFilterText": "‎${DESCRIPTION}‎ در حرکت آهسته‌ی‏‏ حماسی", + "epicNameFilterText": "⁦حماسی ⁦${NAME}⁦", "errorAccessDeniedText": "دسترسی رد شد", "errorDeviceTimeIncorrectText": "ساعت گوشی‌تان ${HOURS} ساعت خطا دارد.\nممکن است مشکل به‌وجود بیاید.\nلطفاً ساعت و منطقه زمانی گوشی‌تان را بررسی کنید.", "errorOutOfDiskSpaceText": "حافظه جا ندارد", "errorSecureConnectionFailText": "قادر به ایجاد اتصال ابری امن نیست. عملکرد شبکه ممکن است خراب شود.", "errorText": "خطا", "errorUnknownText": "خطای ناشناخته", - "exitGameText": "؟${APP_NAME} خروج از", + "exitGameText": "خروج از ${APP_NAME}؟", + "expiredAgoText": "‎پیش منقضی شد ${T}‎", + "expiresInText": "‎دیگر منقضی می‌شود ‎${T}‎", "exportSuccessText": "منتقل شد ${NAME}", "externalStorageText": "حافظه ی خارجی", "failText": "باختی", "fatalErrorText": ".اوه اوه؛ فایلی خراب یا گم شده\nلطفا برنامه را از اول نصب کنید یا\n.در تماس باشید ${EMAIL} برای کمک با", "fileSelectorWindow": { - "titleFileFolderText": "یه فایل یا پوشه را انتخاب نمایید", + "titleFileFolderText": "یک فایل یا پوشه را انتخاب نمایید", "titleFileText": "یک فایل انتخاب نمایید", "titleFolderText": "یک پوشه انتخاب نمایید", "useThisFolderButtonText": "استفاده از این پوشه" @@ -665,20 +681,20 @@ "finalScoreText": "امتیاز نهایی", "finalScoresText": "امتیازهای نهایی", "finalTimeText": "زمان نهایی", - "finishingInstallText": "...در حال اتمام نصب؛ یه لحظه", + "finishingInstallText": "در حال اتمام نصب؛ یه لحظه...", "fireTVRemoteWarningText": "برای یک تجربه ی بهتر، از دسته ها*\n'${REMOTE_APP_NAME}' یا برنامه\nبر روی گوشی های هوشمند یا تبلت\n.خود استفاده کنید", - "firstToFinalText": "فینال ${COUNT} اولین در", - "firstToSeriesText": "مجموعه ${COUNT} اولین در", - "fiveKillText": "!!پنج نفر رو کشتی", + "firstToFinalText": "‎نهایی ${COUNT} اول تا", + "firstToSeriesText": "‎مجموعه‌بازی ${COUNT} اول تا", + "fiveKillText": "!!!پنج نفر رو کشتی", "flawlessWaveText": "!یک موج بدون عیب", "fourKillText": "!!چهار نفر رو نابود کردی", "friendScoresUnavailableText": "امتیاز دوستان در دسترس نیست", "gameCenterText": "مرکز بازی", "gameCircleText": "GameCircle", - "gameLeadersText": "نفر برتر بازی ${COUNT}", + "gameLeadersText": "${COUNT} پیشتازان بازی", "gameListWindow": { "cantDeleteDefaultText": "نمیتوانید لیست بازی پیش فرض را حذف کنید", - "cantEditDefaultText": "نمیتوانید لیست بازی پیش فرض را دست کاری کنید. آن را کپی کنید یا یه لیست جدید بسازید", + "cantEditDefaultText": "نمی‌توانید لیست بازی پیش‌فرض را دست کاری کنید. آن را کپی کنید یا یک لیست جدید بسازید.", "cantShareDefaultText": "شما نمیتونید لیست بازی پیش فرض رو به اشتراک بگذارید", "deleteConfirmText": "؟ \"${LIST}\" حذف", "deleteText": "حذف\nلیست بازی", @@ -686,39 +702,40 @@ "editText": "ویرایش\nلیست بازی", "newText": "لیست بازی\nجدید", "pointsToWinText": "امتیاز برای برنده شدن", - "seriesLengthText": "طول سریال", + "seriesLengthText": "طول مجموعه‌بازی", "showTutorialText": "نمایش آموزش", - "shuffleGameOrderText": "ترتیب تصادفی بازی ها", - "titleText": "${TYPE} تنظیم لیست های" + "shuffleGameOrderText": "ترتیب تصادفی بازی‌ها", + "titleText": "سفارشی‌سازی لیست‌های ${TYPE}" }, "gameSettingsWindow": { "addGameText": "افزودن بازی" }, - "gamesToText": "${LOSECOUNT} بازی به ${WINCOUNT}", + "gamesToText": "${LOSECOUNT}⁦ بازی به ${WINCOUNT}", "gatherWindow": { "aboutDescriptionLocalMultiplayerExtraText": "فراموش نکنید: هردستگاه در یک گروه میتواند بیشتر\n.از یک بازیکن داشته باشد اگر به اندازه ی کافی دسته دارید", - "aboutDescriptionText": ".از این صفحات برای تشکیل یک گروه استفاده کنید\n\nگروه به شما این امکان را میدهد که بازی ها و مسابقات\n.را با دوستانتان بر روی گوشی های متفاوت بازی کنید\n\nدر گوشه ی بالای سمت راست استفاده کنید ${PARTY}از دکمه ی\n.تا با گروه چت و تعامل کنید\n(را هنگامی که در منو هستید فشار دهید${BUTTON} با دسته، دکمه ی)", + "aboutDescriptionText": ".از این زبانه‌ها برای تشکیل یک پارتی استفاده کنید\n\nپارتی به شما این امکان را می‌دهد که بازی‌ها و مسابقات\n.را با دوستانتان بر روی گوشی‌های متفاوت بازی کنید\n\n⁦در گوشه‌ی بالای سمت راست استفاده کنید ${PARTY} از دکمه‌ی\n.تا با پارتی چت و تعامل کنید\n(⁦را هنگامی که در منو هستید فشار دهید ${BUTTON} با دسته، دکمه‌ی)", "aboutText": "درباره", - "addressFetchErrorText": "<خطا در اتصال به آدرس>", - "appInviteMessageText": "${APP_NAME}بلیط فرستاده در برنامه ی ${COUNT}برای شما ${NAME}", + "addressFetchErrorText": "⁦<خطا در اتصال به آدرس>", + "appInviteMessageText": "${APP_NAME}بلیت فرستاده در برنامه ی ${COUNT}برای شما ${NAME}", "appInviteSendACodeText": "برایشان یه کد ارسال کن", "appInviteTitleText": "${APP_NAME} دعوت به", "bluetoothAndroidSupportText": "(کار میکنه با هر دستگاه اندرویدی که از بلوتوث پشتیبانی میکنه)", "bluetoothDescriptionText": "میزبان/مهمان شدن یک گروه با بلوتوث :", "bluetoothHostText": "میزبانی با بلوتوث", - "bluetoothJoinText": "ملحق شدن با بلوتوث", + "bluetoothJoinText": "پیوستن با بلوتوث", "bluetoothText": "بلوتوث", "checkingText": "...در حال چک کردن", "copyCodeConfirmText": "کد در کلیپ بورد کپی شد.", "copyCodeText": "کپی کردن کد", - "dedicatedServerInfoText": "برای نتیجه بهتر،یه سرور اختصاصی بزنید.به سایت زیر برین bombsquadgame.com/serverتا بفهمین چطوری", + "dedicatedServerInfoText": ".‎را ببینید bombsquadgame.com/server برای نتیجه‌ی بهتر، یک سرور اختصاصی بالا بیاورید. برای یاد گرفتن چگونگی کار", + "descriptionShortText": "از بخش شبکه با دوستان برای تشکیل پارتی استفاده کنید.", "disconnectClientsText": "بازیکن را از ${COUNT} این کار ارتباط\nبازی قطع میکند. مطمئنید؟", "earnTicketsForRecommendingAmountText": ".بلیط خواهند گرفت اگر این بازی را امتحان کنند ${COUNT} دوستانتان\n(بلیط به ازای هر کدامشان میگیرید${YOU_COUNT}و شما هم)", "earnTicketsForRecommendingText": "به اشتراک گذاری بازی\nبرای بلیط های رایگان", "emailItText": "ایمیلش کن", "favoritesSaveText": "ذخیره به‌عنوان مورد علاقه", "favoritesText": "مورد علاقه‌ها", - "freeCloudServerAvailableMinutesText": "سرور ابری رایگان بعدی در عرض ${MINUTES} دقیقه در دسترس است.", + "freeCloudServerAvailableMinutesText": ".‎دقیقه‌ی دیگر در دسترس است ${MINUTES} سرور ابری رایگان بعدی", "freeCloudServerAvailableNowText": "!سرور ابری رایگان در دسترس است", "freeCloudServerNotAvailableText": ".سرورهای ابری رایگان در دسترس نیست", "friendHasSentPromoCodeText": "${NAME}از طرف ${APP_NAME}بلیطِ بازی ${COUNT}", @@ -727,9 +744,9 @@ "friendPromoCodeInstructionsText": ".را باز کنید و به قسمت تنظیمات>پیشرفته>فرستادن اطلاعات بروید${APP_NAME}برای استفاده از کد، برنامه\n.سر بزنید تا لینک دانلود بازی برای سیستم عامل های مختلف بازی را بگیرید BombSquadgame.com به سایت", "friendPromoCodeRedeemLongText": ".بلیط رایگان به دست آورند${COUNT}نفر میتوانند از این کد استفاده کنند تا${MAX_USES}", "friendPromoCodeRedeemShortText": ".بلیط در بازی بگیرید${COUNT}با این کد میتوانید", - "friendPromoCodeWhereToEnterText": "(در بخش تنظیمات>پیشرفته>فرستادن اطلاعات)", + "friendPromoCodeWhereToEnterText": "(\"در \"تنظیمات > پیشرفته > فرستادن اطلاعات)", "getFriendInviteCodeText": "گرفتن کد برای دعوت دوستان", - "googlePlayDescriptionText": ":دعوت از بازیکنان گوگل پلی برای ملحق شدن به گروه شما", + "googlePlayDescriptionText": ":دعوت از بازیکنان گوگل پلی برای پیوستن به پارتی شما", "googlePlayInviteText": "دعوت", "googlePlayReInviteText": "بازیکن از گوگل پلی در گروه شما هستند${COUNT}\n.که ارتباط‌شان قطع می‌شود اگر یک دعوت جدید را شروع کنید\n.آن ها را هم در دعوت جدید، ضمیمه کنید", "googlePlaySeeInvitesText": "دیدن دعوت ها", @@ -739,57 +756,57 @@ "hostingUnavailableText": "میزبانی در دسترس نیست", "inDevelopmentWarningText": ":تذکر\n\n.بازی شبکه‌ای یک ویژگی جدید و درحال گسترشه\nاکنون شدیداً توصیه می‌شود همه بازیکنان\n.در یک شبکه وای‌فای مشترک باشند", "internetText": "اینترنت", - "inviteAFriendText": "رفیقات این بازی رو ندارند؟ دعوتشون کن\n.بلیط رایگان بگیرند${COUNT}بیان بازی کننده و", + "inviteAFriendText": "دوستات این بازی رو ندارند؟ دعوتشون کن\n.تا بلیت رایگان دریافت کنند${COUNT} بیان بازی کنن و", "inviteFriendsText": "دعوت دوستان", - "joinPublicPartyDescriptionText": "پیوستن به سرور های عمومی", - "localNetworkDescriptionText": "به یک سرور دیگر از طریق LAN , Bluetooth , etc بپیوندید", + "joinPublicPartyDescriptionText": "پیوستن به یک سرور عمومی", + "localNetworkDescriptionText": "(.وای‌فای، بلوتوث، و غیره) به یه پارتی نزدیکت وصل شو", "localNetworkText": "شبکه محلی", - "makePartyPrivateText": "گروه من رو از عمومی خارج کن", - "makePartyPublicText": "گروه بازی من رو عمومی کن", - "manualAddressText": "آدرس", + "makePartyPrivateText": "پارتی من را خصوصی کن", + "makePartyPublicText": "پارتی من را عمومی کن", + "manualAddressText": "نشانی", "manualConnectText": "وصل شدن", - "manualDescriptionText": ":ملحق شدن به یک گروه با آدرس", + "manualDescriptionText": ":پیوستن به یک پارتی با نشانی", "manualJoinSectionText": "پیوستن با نشانی", - "manualJoinableFromInternetText": ":کسی میتوانداز طریق اینترنت به شما ملحق شود؟", + "manualJoinableFromInternetText": "⁦کسی می‌تواند از طریق اینترنت به شما ملحق شود؟:", "manualJoinableNoWithAsteriskText": "خیر*", "manualJoinableYesText": "بلی", - "manualRouterForwardingText": "را به آدرس محلی بفرستد${PORT} برای حل این مشکل، روتر خود را تنظیم کنید تا یو دی پی پورت", + "manualRouterForwardingText": "⁦را به نشانی محلی شما بفرستد UDP ${PORT} ‏*برای حل این مشکل، روتر خود را تنظیم کنید تا درگاه", "manualText": "بطور دستی", - "manualYourAddressFromInternetText": ":آدرس شما در اینترنت", - "manualYourLocalAddressText": ":آدرس محلی شما", + "manualYourAddressFromInternetText": "⁦نشانی شما در اینترنت:", + "manualYourLocalAddressText": "⁦نشانی محلی شما:", "nearbyText": "افراد نزدیک", "noConnectionText": "<اتصال برقرار نیست>", - "noPartiesAddedText": "هیچ مهمانی ای اضافه نشده است", + "noPartiesAddedText": "هیچ پارتی‌ای اضافه نشده‌است", "otherVersionsText": "(نسخه های دیگر)", - "partyCodeText": "کد گروه", + "partyCodeText": "کد پارتی", "partyInviteAcceptText": "پذیرفتن", "partyInviteDeclineText": "نپذیرفتن", "partyInviteGooglePlayExtraText": "(صفحه گوگل‌پلی را در صفحه \"شبکه با دوستان\" ببینید)", "partyInviteIgnoreText": "نادیده گرفتن", "partyInviteText": "شما را دعوت کرده${NAME} \nتا به گروهشان ملحق شوید", - "partyNameText": "نام گروه", - "partyServerRunningText": ".سرور گروه شما در حال اجراست", + "partyNameText": "نام پارتی", + "partyServerRunningText": ".سرور پارتی شما در حال اجراست", "partySizeText": "اندازه دسته", "partyStatusCheckingText": "در حال چک کردن وضعیت...", "partyStatusJoinableText": "گروه شما حالا دیگه از طریق اینترنت قابل اتصال برای بقیه است.", "partyStatusNoConnectionText": "عدم توانایی برقراری ارتباط با سرور", "partyStatusNotJoinableText": "گروه شما قابل اتصال از طریق اینترنت نیست", - "partyStatusNotPublicText": "گروه بازی شما در اینترنت عمومی نیست", + "partyStatusNotPublicText": "پارتی شما عمومی نیست", "pingText": "پینگ", "portText": "درگاه", "privatePartyCloudDescriptionText": ".گروه‌های خصوصی بر روی سرورهای ابری اختصاصی اجرا می شوند; و نیازی به پیکربندی روتر/مودم نیست", - "privatePartyHostText": "میزبانی گروه خصوصی", - "privatePartyJoinText": "ملحق شدن به سرور خصوصی", + "privatePartyHostText": "میزبانی پارتی خصوصی", + "privatePartyJoinText": "پیوستن به سرور خصوصی", "privateText": "خصوصی", "publicHostRouterConfigText": "این ممکن است نیاز به پیکربندی انتقال پورت در روتر شما داشته باشد. برای یک گزینه آسانتر ، یک سرور خصوصی برگزار کنید.", "publicText": "عمومی", "requestingAPromoCodeText": "...درخواست یک کد", "sendDirectInvitesText": "ارسال دعوت مستقیم", "shareThisCodeWithFriendsText": ":اشتراک این کد با دوستان", - "showMyAddressText": "آدرس من رو نشون بده", + "showMyAddressText": "نشانی من رو نشون بده", "startHostingPaidText": "${COST} میزبانی اکنون برای", "startHostingText": "میزبان", - "startStopHostingMinutesText": "شما می توانید میزبانی رایگان را برای ${MINUTES}  دقیقه دیگر شروع کرده و متوقف کنید.", + "startStopHostingMinutesText": ".‎‎دقیقه‌ی دیگر شروع کرده و متوقف کنید ‎${MINUTES} می‌توانید میزبانی رایگان را تا", "stopHostingText": "میزبانی را متوقف کنید", "titleText": "شبکه با دوستان", "wifiDirectDescriptionBottomText": "داشته باشند حتماً میتونید ازش استفاده کنندWi-Fi Direct اگر دستگاه هاتون قابلیت\nو به یکدیگر وصل شوند.وقتی که دستگاه ها بهم وصل شدند میتوانید اینجا در صفحه ی\nشبکه محلی گروه تشکیل دهید.دقیقاً مثل وصل شدن از طریق وای فای معمولی\n\n.هم میزبان شود${APP_NAME}میزبان میشود درWi-Fi Directبرای گرفتن بهترین نتیجه،کسی که در", @@ -813,7 +830,7 @@ "ticketPack4Text": "پک خیلی بزرگ بلیط", "ticketPack5Text": "پک ماموتی بلیط", "ticketPack6Text": "پک نهایی بلیط", - "ticketsFromASponsorText": "در ازای ${COUNT} بلیت\nیک آگهی ببینید", + "ticketsFromASponsorText": "در ازای ${COUNT} بلیط\nیک آگهی ببینید", "ticketsText": "بلیط${COUNT}", "titleText": "بلیط بگیرید", "unavailableLinkAccountText": ".ببخشید،خرید به وسیله ی این دستگاه در دسترس نمیباشد\nمیتوانید حسابتان بر روی این دستگاه را به حسابی در دستگاهی\n.دیگر متصل کنید و آنجا خرید خود را انجام دهید", @@ -823,6 +840,12 @@ "youHaveShortText": "دارید ${COUNT} شما", "youHaveText": ".بلیط دارید ${COUNT} شما" }, + "goldPass": { + "desc1InfTokensText": "توکن بی‌نهایت", + "desc2NoAdsText": "بدون تبلیغات", + "desc3ForeverText": "برای همیشه", + "goldPassText": "گلد پس" + }, "googleMultiplayerDiscontinuedText": "متأسفیم ، سرویس چند نفره Google دیگر در دسترس نیست.\nمن در اسرع وقت در حال جایگزینی هستم.\nتا آن زمان ، لطفاً روش اتصال دیگری را امتحان کنید.", "googlePlayPurchasesNotAvailableText": "خرید های گوگل‌پلی در دسترس نیستند.\nاحتمالا باید برنامه‌ی استور خود را بروز‌رسانی کنید.", "googlePlayServicesNotAvailableText": ".سرویس گوگل پلی در دسترس نیست\n.بعضی عملکرد های برنامه ممکن غیرفعال باشند", @@ -848,20 +871,20 @@ "visualsText": "کیفیت تصویر" }, "helpWindow": { - "bombInfoText": "- بمب -\nقوی تر از مشته امامیتونه\n.برای خودتون هم خطرناک باشه\nدر بهترین زمان ممکن قبل از اینکه\n.در دست خودتون بترکه، پرتش بدید", - "canHelpText": "میتونه به شما کمک کنه${APP_NAME}", - "controllersInfoText": "بازی کنید و یا${APP_NAME}میتوانید توسط شبکه با دوستانتان\n.روی یک دستگاه بازی کنید اگر به اندازه ی کافی دسته دارید\nاز این تنوع پشتیبانی میکند؛ شما حتی میتوانید${APP_NAME}\nاز گوشی های هوشمند به عنوان دسته استفاده کنید از طریق برنامه\n.برای اطلاعات بیشتر به تنظیمات>کنترلرها بروید.${REMOTE_APP_NAME}", + "bombInfoText": "⁦- بمب -\nقوی‌تر از مشته، ولی می‌تونه\nبرای خودتون هم خطرناک باشه.\nدر بهترین زمان ممکن قبل از اینکه\nتوی دست خودتون بترکه، پرتش کنید.", + "canHelpText": "${APP_NAME} می‌تونه کمک کنه.", + "controllersInfoText": "می‌تونی روی یه شبکه یا اگه به اندازه کافی دسته\nدارید، روی یه دستگاه با دوستات ${APP_NAME} بازی کنی.\n${APP_NAME} از کنترلرهای مختلفی پشتیبانی می‌کنه. حتی می‌تونی گوشی رو\nبه‌عنوان دسته از طریق برنامه‌ی ${REMOTE_APP_NAME} استفاده کنی.\nبرای اطلاعات بیشتر تنظیمات -> کنترلرها رو ببینید.", "controllersInfoTextRemoteOnly": "شما میتونید ${APP_NAME} رو همراه دوستانتان به صورت اینترنتی ، یا\nبا استفاده از نرم‌افزار '${REMOTE_APP_NAME}' گوشیتون رو\nبه دسته بازی تبدیل کنید تا همه با هم در یک گوشی بازی کنید.", "controllersText": "کنترلرها", - "controlsSubtitleText": ":شما چندتا حرکت اساسی داره ${APP_NAME} بازیکن", + "controlsSubtitleText": "کاراکتر ${APP_NAME} شما چندتا حرکت اساسی داره:", "controlsText": "کنترل‌ها", "devicesInfoText": "نسخه وی آر ${APP_NAME} میتونه با شبکه با\n نسخه معمولی بازی کنه، پس تلفن یا تبلت \nیا کامپیوتر اضافیتونو آماده کنید و بازیو شروع کنید.\n حتی وقتی بخواین فقط کاری کنین که چن نفر از \nبیرون بتونن بازیو تماشا کنن هم بکار میاد.", "devicesText": "دستگاه‌ها", - "friendsGoodText": "داشتن چنتا ازینا خیلی خوبه. ${APP_NAME} حالش بیشتره وقتی با چن نفر\nبازی بشه و میتونه همزمان تا 8 نفر ساپورت کنه که این قضیه ما رو میبره سمت:", + "friendsGoodText": "داشتن چندتا از اینا خوبه. ${APP_NAME} حالش بیشتره وقتی با چند نفر\nبازی بشه و می‌تونه همزمان تا ۸ نفر رو پشتیبانی کنه که این قضیه ما رو می‌بره به سمت:", "friendsText": "دوستان", - "jumpInfoText": "پرش\nبرای پریدن ازاین دکمه کمک بگیرید\n همچنین پریدن قبل از پرتاب بمب و\nهمزمان بامشت بسیار در بازی بکارمیره", + "jumpInfoText": "⁦- پرش -\nپرش برای عبور از شکاف‌های کوچیک،\nپرتاب کردن چیزها به بالاتر، و برای \nبیان احساس شادی استفاده می‌شه.", "orPunchingSomethingText": "یا بهش مشت بزنی یا از یه بلندی پرتش کنی و توی راه که داره پرت میشه با یه بمب چسبونکی بترکونیش.", - "pickUpInfoText": "بلند کردن\nمیتونید هر فرد یا بمب یا هر چیزی رو\nاز زمین بلند و پرتاب کنید,حتی \nمیتونید بازیکنان رو از زمین بیرون بندازین", + "pickUpInfoText": "⁦- بلند کردن -\nپرچم، دشمن یا هر چیزی رو\nمی‌تونید از زمین بلند و پرتاب کنید.\nواسه انداختنش دوباره دکمه رو باید بزنید.", "powerupBombDescriptionText": "به شما اجازه پرتاب هر بار سه بمب\nرو پشت سر هم همزمان میده", "powerupBombNameText": "سه بمب", "powerupCurseDescriptionText": "بهتره اینو نگیرین چون طی چند ثانیه اگه\nبه جعبه درمان نرسین منفجر میشین", @@ -879,31 +902,32 @@ "powerupShieldDescriptionText": "سپر محافظ دورتون قرار میگیره\nو ضربه وانفجار ها روتون کم اثر میشه", "powerupShieldNameText": "سپر محافظ", "powerupStickyBombsDescriptionText": "این بمب ها رو به سمت هر چی پرتاب \nکنی میچسبن به اون تا لحظه ی انفجار", - "powerupStickyBombsNameText": "بمب های چسبنده", - "powerupsSubtitleText": "البته هیچ بازی کامل نیست بدون استفاده از بسته های ویژه", - "powerupsText": "بسته های ویژه", - "punchInfoText": "مشت\nبرا ضربه به حریف از این کلید \nاستفاده کنید ضربه مشت های قوی تر\nهمزمان با پرش و سرعت و چرخش هستن", - "runInfoText": "حرکت\nبرا حرکت از جهت های جوی استیک استفاده کنید و برای حرکت سریع تر میتونید جهت ها رو همزمان با یک کلید دیگه بکار ببرید\nبرای پرتاب بمب ها به مسافت بیشتر همزمان با حرکت قابل انجامه ضربه مشت ها همزمان با حرکت هم موثرتر هستن", + "powerupStickyBombsNameText": "بمب چسبنده", + "powerupsSubtitleText": ":البته هیچ بازی‌ای کامل نیست بدون استفاده از نیروزاها", + "powerupsText": "نیروزاها", + "punchInfoText": "⁦- مشت -\nبه هر اندازه که توی مشت زدن بیشتر\nبچرخید و حرکت کنید، ضربه مشتتون قوی‌تره.\nپس موقع مشت زدن بپرید و بچرخید و بدویید.", + "runInfoText": "‎- ⁦حرکت -\n.هر دکمه‌ای رو برای دویدن می‌تونی نگه داری. البته یادت نره که دکمه‌ی جهت رو هم در کنارش بگیری\n.دویدن شما رو سریع‌تر به یه جایی می‌رسونه، اما چرخیدن رو سخت می‌کنه. پس مراقب صخره‌ها باش", "someDaysText": "بعضی روزا دوس داری مشت بزنی یه جایی. یا یه چیزیو بزنی بترکونی.", - "titleText": "${APP_NAME} راهنمایی", - "toGetTheMostText": "To get the most out of this game, you'll need:", - "welcomeText": "!خوش آمدید ${APP_NAME} به" + "titleText": "راهنمای ${APP_NAME}", + "toGetTheMostText": ":برای اینکه بیشترین لذت را از این بازی ببرید، به این موردها نیاز دارید", + "welcomeText": "به ${APP_NAME} خوش آمدید!" }, "holdAnyButtonText": "<نگه داشتن هر دکمه>", "holdAnyKeyText": "<نگه داشتن هر کلید>", - "hostIsNavigatingMenusText": "- ${HOST} مدیر تغییر منو ها در بازیست -", + "hostIsNavigatingMenusText": "- مدیر تغییر منوها در بازی است ⁦${HOST}⁦ -", "importPlaylistCodeInstructionsText": "از کدی که در ادامه است برای وارد کردن این لیست بازی در جای دیگر استفاده کنید:", "importPlaylistSuccessText": "لیست بازی شد ${TYPE} وارد '${NAME}'", "importText": "وارد کردن", "importingText": "...وارد کردن", "inGameClippedNameText": "نام درون بازیتان خواهد بود\n\"${NAME}\"", + "inboxText": "پیام‌ها", "installDiskSpaceErrorText": "خطا: قادر به تکمیل نصب نیست\nممکنه مربوط به فضای ذخیره دستگاه شما باشه\nچک کنید و مجددا امتحان کنید", "internal": { "arrowsToExitListText": "برای خروج از لیست ${LEFT} یا ${RIGHT} فشار دهید", "buttonText": "دکمه", "cantKickHostError": ".شما نمیتوانید میزبان را بیرون کنید", "chatBlockedText": ".ثانیه مسدود شد ${TIME} برای ${NAME} چت", - "connectedToGameText": "متصل شد '${NAME}'", + "connectedToGameText": "⁦متصل شد '${NAME}'", "connectedToPartyText": "${NAME} پیوستن به", "connectingToPartyText": "در حال اتصال", "connectionFailedHostAlreadyInPartyText": "ارتباط ناموفق: میزبان در بخش دیگریست", @@ -917,8 +941,8 @@ "controllerDisconnectedTryAgainText": "قطع اتصال شد. لطفا تلاش کنید برای اتصال ازنو ${CONTROLLER}", "controllerForMenusOnlyText": ".این کنترلر نمی‌تواند در بازی مورد استفاده قرار بگیرد. استفاده فقط برای پیمایش در منوها", "controllerReconnectedText": "دوباره متصل شد ${CONTROLLER}", - "controllersConnectedText": "کنترولر متصل شد ${COUNT}", - "controllersDetectedText": "کنترولر شناسایی شد ${COUNT}", + "controllersConnectedText": "⁦کنترلر متصل شد ${COUNT}", + "controllersDetectedText": "⁦کنترلر شناسایی شد ${COUNT}", "controllersDisconnectedText": "قطع اتصال شد ${COUNT}", "corruptFileText": "Corrupt file(s) detected. Please try re-installing, or email ${EMAIL}", "errorPlayingMusicText": "خطای موزیک بازی:${MUSIC}", @@ -934,29 +958,31 @@ "invitationsSentText": "دعوت نامه ارسال شد ${COUNT}", "joinedPartyInstructionsText": "فردی به گروه شما پیوسته\nبرید به بازی و بازی را شروع کنید", "keyboardText": "صفحه‌کلید", - "kickIdlePlayersKickedText": "بعلت غیرفعال بودن ${NAME} خروج", + "kickIdlePlayersKickedText": "به علت غیرفعال بودن ${NAME} خروج", "kickIdlePlayersWarning1Text": "${NAME} will be kicked in ${COUNT} seconds if still idle.", "kickIdlePlayersWarning2Text": "(شما می توانید اینو خاموش کنید در تنظیمات -> پیشرفته)", - "leftGameText": "خارج شد '${NAME}'", - "leftPartyText": "پارتی رو ترک کرد ${NAME}", + "leftGameText": ".⁦خارج شد '${NAME}'", + "leftPartyText": ".⁦پارتی رو ترک کرد ⁦${NAME}⁦", "noMusicFilesInFolderText": "پوشه حاوی هیچ فایل موسیقی نیست.", "playerJoinedPartyText": "به گروه بازی پیوست ${NAME}", - "playerLeftPartyText": "${NAME} گروه رو ترک کرد", + "playerLeftPartyText": ".⁦پارتی رو ترک کرد ⁦${NAME}⁦", "rejectingInviteAlreadyInPartyText": "رد کردن دعوت (already in a party)", "serverRestartingText": "سرور در حال شروع مجدد است. لطفا چند لحظه دیگر مجددا متصل شوید", "serverShuttingDownText": ".سرور درحال بسته شدن است", "signInErrorText": "خطای ورود به سیستم", - "signInNoConnectionText": "ورود ناموفق بود اتصال به اینترنت در دسترسه؟", + "signInNoConnectionText": "ورود ناموفق بود. اتصال به اینترنت برقراره؟", "telnetAccessDeniedText": "خطا: کاربر از دسترسی به شبکه خارج شد", "timeOutText": "(times out in ${TIME} seconds)", "touchScreenJoinWarningText": "You have joined with the touchscreen.\nIf this was a mistake, tap 'Menu->Leave Game' with it.", "touchScreenText": "صفحه لمسی", + "unableToCompleteTryAgainText": "در حال حاضر نمی توان این را تکمیل کرد.\n لطفا دوباره امتحان کنید.", "unableToResolveHostText": "مشکل:توانایی حل مشکل میزبان وجود ندارد", "unavailableNoConnectionText": "در دسترس نیست. اتصال به اینترنت برقرار است آیا؟", "vrOrientationResetCardboardText": "برای تنظیم مجدد جهت گیری VR از این استفاده کنید.\nبرای بازی کردن به یک کنترلر خارجی نیاز دارید.", "vrOrientationResetText": "تنظیم مجدد VR.", "willTimeOutText": "(زمان تموم میشه اگه بیکار بود)" }, + "inventoryText": "موجودی", "jumpBoldText": "پرش", "jumpText": "پرش", "keepText": "نگه داشتن", @@ -967,7 +993,7 @@ "kickOccurredText": ".بیرون انداخته شد ${NAME}", "kickQuestionText": "بیرون انداخته شود؟ ${NAME}", "kickText": "بیرون انداختن", - "kickVoteCantKickAdminsText": "نمیشود ادمین ها رو اخراج کنید", + "kickVoteCantKickAdminsText": "نمیشه ادمین ها رو اخراج کنی", "kickVoteCantKickSelfText": "نمیشه خودت رو اخراج کنی اسکل", "kickVoteFailedNotEnoughVotersText": ".بازیکنان برای رای گیری کافی نیستند", "kickVoteFailedText": ".رای گیری برای بیرون انداختن ناموفق", @@ -975,8 +1001,8 @@ "kickVoteText": "رای برای بیرون انداختن", "kickVotingDisabledText": ".رأی گیری غیرفعاله", "kickWithChatText": "را برای نه تایپ کن ${NO} را برای بله و ${YES} در چت", - "killsTallyText": "${COUNT} کشته ها", - "killsText": "کشته ها", + "killsTallyText": "⁦شکار ${COUNT}", + "killsText": "شکارها", "kioskWindow": { "easyText": "آسان", "epicModeText": "حرکت آهسته", @@ -986,25 +1012,28 @@ "singlePlayerExamplesText": "Single Player / Co-op Examples", "versusExamplesText": "Versus Examples" }, - "languageSetText": "زبان فعلی: ${LANGUAGE}", - "lapNumberText": "${TOTAL}/${CURRENT} دور", + "languageSetText": "زبان کنونی: ${LANGUAGE}", + "lapNumberText": "${CURRENT}/${TOTAL} دور", "lastGamesText": "(بازی آخر ${COUNT})", - "leaderboardsText": "مدیران", + "leaderboardsText": "تابلوی امتیازات", "league": { "allTimeText": "همیشه", "currentSeasonText": "(${NUMBER}) فصل جاری", - "leagueFullText": "${NAME} لیگ", + "leagueFullText": "لیگ ${NAME}", "leagueRankText": "رتبه لیگ", "leagueText": "لیگ", "rankInLeagueText": "#${RANK}, ${NAME} League${SUFFIX}", - "seasonEndedDaysAgoText": ".روز پیش پایان یافت ${NUMBER} فصل", - "seasonEndsDaysText": ".روز دیگر پایان می‌یابد ${NUMBER} فصل", - "seasonEndsHoursText": ".ساعت دیگر پایان می‌یابد ${NUMBER} فصل", - "seasonEndsMinutesText": ".دقیقهٔ دیگر پایان می‌یابد ${NUMBER} فصل", + "seasonEndedDaysAgoText": "⁦.روز پیش پایان یافت ${NUMBER} فصل", + "seasonEndsDaysText": "⁦.روز دیگر پایان می‌یابد ${NUMBER} فصل", + "seasonEndsHoursText": "⁦.ساعت دیگر پایان می‌یابد ${NUMBER} فصل", + "seasonEndsMinutesText": "⁦.دقیقه‌ی دیگر پایان می‌یابد ${NUMBER} فصل", "seasonText": "${NUMBER} فصل", "tournamentLeagueText": ".برسید ${NAME} برای ورود به این مسابقه، باید به لیگ", - "trophyCountsResetText": ".جوایز در فصل بعد بازنشانی می‌شوند" + "trophyCountsResetText": ".جوایز در فصل بعد بازنشانی می‌شوند", + "upToDateBonusDescriptionText": "بازیکنانی نسخه اخیر را اجرا می کنند بازی در اینجا جایزه دریافت می کند ${PERCENT}%", + "upToDateBonusText": "پاداش به‌روز بودن" }, + "learnMoreText": "بیشتر بدانید", "levelBestScoresText": "${LEVEL} بهترین امتیاز در", "levelBestTimesText": "${LEVEL} بهترین زمان در", "levelIsLockedText": ".قفل است ${LEVEL}", @@ -1013,10 +1042,10 @@ "levelUnlockedText": "!قفل مرحله باز شد", "livesBonusText": "پاداش تعداد جان ها", "loadingText": "در حال بارگزاری", - "loadingTryAgainText": "…در حال بارگذاری؛ چند لحظهٔ دیگر دوباره امتحان کنید", + "loadingTryAgainText": "در حال بارگذاری؛ چند لحظه‌ی دیگر دوباره امتحان کنید…", "macControllerSubsystemBothText": "(هر دو (توصیه نمی‌شود", "macControllerSubsystemClassicText": "معمولی", - "macControllerSubsystemDescriptionText": "(موقعی سعی کنید این را عوض کنید که کنترلر شما درست کار نمیکند.)", + "macControllerSubsystemDescriptionText": "(زمانی سعی کنید این را عوض کنید که کنترلر شما درست کار نمیکند.)", "macControllerSubsystemMFiNoteText": ".ساخته شده برای کنترلر آی‌اواِس/مک تشخیص داده شد\n شما شاید بخواهید این‌ها رو در تنظیمات فعال کنید", "macControllerSubsystemMFiText": "ساخته شده برای ای او اس و مک", "macControllerSubsystemTitleText": "پشتیبانی کنترل کننده", @@ -1028,7 +1057,7 @@ "exitGameText": "خروج از بازی", "exitToMenuText": "خروج به منو؟", "howToPlayText": "روش بازی", - "justPlayerText": "(فقط ${NAME})", + "justPlayerText": "(⁦${NAME}⁦ فقط)", "leaveGameText": "ترک کردن بازی", "leavePartyConfirmText": "واقعا میخوای دسته رو ترک کنی؟", "leavePartyText": "ترک دسته", @@ -1037,9 +1066,9 @@ "settingsText": "تنظیمات" }, "makeItSoText": "درستش کن", - "mapSelectGetMoreMapsText": "رفتن به زمین‌های بازیِ بیشتر...", - "mapSelectText": "انتخاب . . .", - "mapSelectTitleText": "${GAME} نقشه", + "mapSelectGetMoreMapsText": "دریافت نقشه‌های بیشتر...", + "mapSelectText": "انتخاب…", + "mapSelectTitleText": "نقشه‌ی ${GAME}", "mapText": "نقشه", "maxConnectionsText": "حداکثر اتصالات", "maxPartySizeText": "حداکثر فضای پارتی", @@ -1048,22 +1077,25 @@ "modeArcadeText": "حالت بازی", "modeClassicText": "حالت کلاسیک", "modeDemoText": "حالت نمایشی", + "moreSoonText": "...موارد بیشتر به زودی", + "mostDestroyedPlayerText": "نابود شده ترین بازیکن", "mostValuablePlayerText": "ارزشمندترین بازیکن", - "mostViolatedPlayerText": "پُراشتباه‌ترین بازیکن", + "mostViolatedPlayerText": "پراشتباه‌ترین بازیکن", "mostViolentPlayerText": "خشن‌ترین بازیکن", "moveText": "انتقال", - "multiKillText": "! !${COUNT} ازبین بردن.", - "multiPlayerCountText": "بازیکن ${COUNT}", - "mustInviteFriendsText": "توجه:\nشما باید دعوت کنید از دوستان درصفحه اصلی از قسمت\n\"${GATHER}\"", - "nameBetrayedText": ".خیانت کرد ${VICTIM} به ${NAME}", - "nameDiedText": ".از بین رفت ${NAME}", - "nameKilledText": ".را از بین برد ${VICTIM} ${NAME}", + "multiKillText": "!!!⁦شکار ${COUNT}", + "multiPlayerCountText": "⁦بازیکن ${COUNT}", + "mustInviteFriendsText": "توجه: برای بازی چندنفره باید از\n\"${GATHER}\" دوستانتان در پنل \nدعوت یا به بازی دسته وصل کنید.", + "nameBetrayedText": ".⁦خیانت کرد ⁦${VICTIM}⁦ ⁦به ⁦${NAME}⁦", + "nameDiedText": ".⁦از بین رفت ⁦${NAME}⁦", + "nameKilledText": ".⁦را از بین برد ⁦${VICTIM}⁦ ⁦،${NAME}⁦", "nameNotEmptyText": "!نام نمی‌تواند خالی باشد", - "nameScoresText": "!موفق شد ${NAME}", - "nameSuicideKidFriendlyText": ".بیرون افتاد ${NAME}", - "nameSuicideText": ".خودکشی کرد ${NAME}", + "nameScoresText": "⁦!موفق شد ⁦${NAME}⁦", + "nameSuicideKidFriendlyText": ".⁦بیرون افتاد ⁦${NAME}⁦", + "nameSuicideText": ".⁦خودکشی کرد ⁦${NAME}⁦", "nameText": "نام", "nativeText": "بومی", + "newExclaimText": "!جدید", "newPersonalBestText": "!رکورد قبلیتو شکستی", "newTestBuildAvailableText": "(${BUILD} نسخهٔ ${VERSION}) !نسخهٔ آزمایشی جدیدتری دردسترس است\n${ADDRESS} :از این نشانی دریافت کنید", "newText": "جدید", @@ -1074,14 +1106,16 @@ "noContinuesText": "(ادامه ندارد)", "noExternalStorageErrorText": "محل ذخیره سازی در این دستگاه یافت نشد", "noGameCircleText": "GameCircleخطا: وارد نشدید به", - "noPluginsInstalledText": "متاسفانه پلاگین ها نصب نشده", + "noMessagesText": "هیچ پیامی فعلا نیست", + "noPluginsInstalledText": "متاسفانه افزونه ها نصب نشده", "noScoresYetText": "هیچ امتیازی نیست", - "noServersFoundText": "سروری (شبکه ای) یافت نشد", + "noServersFoundText": "سروری یافت نشد.", "noThanksText": "نه مرسی", "noTournamentsInTestBuildText": ".هشدار: امتیازات مسابقه از این نسخهٔ آزمایشی نادیده گرفته می‌شوند", "noValidMapsErrorText": "هیچ نقشه معتبری برای این نوع بازی یافت نشد.", "notEnoughPlayersRemainingText": "بازیکنان باقیمانده کافی نیستند خارج بشید و دوباره یه بازی جدید رو شروع کنید", "notEnoughPlayersText": "!بازیکن نیاز دارید ${COUNT} برای شروع بازی حداقل به", + "notEnoughTicketsText": "بلیط کافی ندارید!", "notNowText": "حالا نه", "notSignedInErrorText": ".برای انجام این کار باید وارد شوید", "notSignedInGooglePlayErrorText": "برا استفاده از این مورد شما باید به گوگل‌پلی وارد شوید", @@ -1093,10 +1127,13 @@ "okText": "تایید", "onText": "روشن", "oneMomentText": "یک لحظه...", - "onslaughtRespawnText": "${PLAYER} will respawn in wave ${WAVE}", + "onslaughtRespawnText": "⁦زنده می‌شود ${WAVE} ⁦در موج ⁦${PLAYER}⁦", + "openMeText": "!بازم کن", + "openNowText": "همین حالا باز کنید", + "openText": "باز کنید", "orText": "${A} یا ${B}", "otherText": "دیگر...", - "outOfText": "(#${RANK} از ${ALL})", + "outOfText": "(${ALL} ⁦از #${RANK})", "ownFlagAtYourBaseWarning": "پرچم شما باید در پایگاه خودتان باشد تا امتیاز کسب کنید.", "packageModsEnabledErrorText": "شبکه‌بازی دردسترس نیست. بروبه تظیمات》 تنظیمات پیشرفته و تیک پکیج محلی رو وردار", "partyWindow": { @@ -1104,7 +1141,7 @@ "emptyText": "هیچکس نیست", "hostText": "(میزبان)", "sendText": "ارسال", - "titleText": "گروه شما" + "titleText": "پارتی شما" }, "pausedByHostText": "(مکث شده توسط میزبان)", "perfectWaveText": "! عالی کار کردی", @@ -1113,57 +1150,57 @@ "coopText": "چند نفره", "freeForAllText": "تک به تک", "multiTeamText": "چند تیم", - "singlePlayerCoopText": "بازی با کامپیوتر", + "singlePlayerCoopText": "بازی تک‌نفره / چندنفره", "teamsText": "بازی تیمی" }, "playText": "شروع بازی", "playWindow": { - "oneToFourPlayersText": "حداکثر ۴ بازیکن", + "oneToFourPlayersText": "۱ تا ۴ بازیکن", "titleText": "شروع بازی", - "twoToEightPlayersText": "حداکثر ۸ بازیکن" + "twoToEightPlayersText": "۲ تا ۸ بازیکن" }, - "playerCountAbbreviatedText": "بازیکن ${COUNT}", - "playerDelayedJoinText": ".در دور بعد وارد می‌شود ${PLAYER}", + "playerCountAbbreviatedText": "(⁦نفره ${COUNT})", + "playerDelayedJoinText": ".⁦در دور بعد وارد می‌شود ⁦${PLAYER}⁦", "playerInfoText": "اطلاعات بازیکن", - "playerLeftText": ".بازی را ترک کرد ${PLAYER}", + "playerLeftText": ".⁦بازی را ترک کرد ⁦${PLAYER}⁦", "playerLimitReachedText": "محدودیت بازکن به ${COUNT} رسیده; عضو جدید مجاز نیست.", "playerProfilesWindow": { - "cantDeleteAccountProfileText": "شما نمی‌توانید نمایهٔ مربوط به حساب‌کاربری را حذف کنید.", + "cantDeleteAccountProfileText": "نمی‌توانید نمایه‌ی مربوط به حساب کاربری را حذف کنید.", "deleteButtonText": "حذف\nنمایه", "deleteConfirmText": "؟'${PROFILE}' حذف", "editButtonText": "ویرایش\nنمایه", - "explanationText": "نام سفارشی بازیکن حاضر در این حساب کاربری", - "newButtonText": "نمایهٔ\nجدید", + "explanationText": "(نام‌ها و شخصیت‌های سفارشی این حساب)", + "newButtonText": "نمایه‌ی\nجدید", "titleText": "نمایه‌های بازیکن" }, "playerText": "بازیکن", "playlistNoValidGamesErrorText": "این لیست حاوی هیچ بازی معتبری نیست", "playlistNotFoundText": "لیست بازی یافت نشد", - "playlistText": "لیست پخش", - "playlistsText": "لیست بازی ها", - "pleaseRateText": "خوشتان آمده، لطفاً چند لحظه‌ای وقت بگذارید و ${APP_NAME} اگر از\nآن را رتبه‌بندی کنید یا مروری بر آن بنویسید. این کار بازخوردهای مفیدی\n.را به همراه دارد و به پشتیبانی از توسعه‌ها در آینده کمک خواهد کرد\n\n!با تشکر\nاریک—", + "playlistText": "لیست بازی", + "playlistsText": "لیست بازی‌ها", + "pleaseRateText": "اگر از ${APP_NAME} خوشتان آمده، لطفاً چند لحظه‌ای وقت بگذارید و\nآن را رتبه‌بندی کنید یا مروری بر آن بنویسید. این کار بازخوردهای مفیدی\n.را به همراه دارد و به پشتیبانی از توسعه‌ها در آینده کمک خواهد کرد\n\n!با تشکر\nاریک—", "pleaseWaitText": "…لطفاً صبر کنید", "pluginClassLoadErrorText": "${ERROR} :«${PLUGIN}» خطا در بارگیری دسته‌بندی افزونهٔ", "pluginInitErrorText": "${ERROR} :«${PLUGIN}» خطا در راه‌اندازی افزونهٔ", - "pluginSettingsText": "تنظیمات پلاگین", - "pluginsAutoEnableNewText": "فعال کردن خودکار افزونه های جدید", + "pluginSettingsText": "تنظیمات افزونه", + "pluginsAutoEnableNewText": "فعال کردن خودکار افزونه‌های جدید", "pluginsDetectedText": "افزونه(ها)ی جدید شناسایی شد. آن‌ها را در تنظیمات فعال، یا پیکربندی کنید.", - "pluginsDisableAllText": "غیرفعال کردن همه افزونه ها", - "pluginsEnableAllText": "فعال کردن همه افزونه ها", + "pluginsDisableAllText": "غیرفعال کردن همه‌ی افزونه‌ها", + "pluginsEnableAllText": "فعال کردن همه‌ی افزونه‌ها", "pluginsRemovedText": "${NUM} افزونه دیگر یافت نمی‌شود.", "pluginsText": "افزونه‌ها", "practiceText": "تمرین", - "pressAnyButtonPlayAgainText": "…فشردن هر دکمه‌ای برای بازی دوباره", - "pressAnyButtonText": "…فشردن هر دکمه‌ای برای ادامه", - "pressAnyButtonToJoinText": "…پیوستن با فشردن هر دکمه‌ای", - "pressAnyKeyButtonPlayAgainText": "…فشردن هر کلیدی/دکمه‌ای برای بازی دوباره", - "pressAnyKeyButtonText": "…فشردن هر کلیدی/دکمه‌ای برای ادامه", + "pressAnyButtonPlayAgainText": "فشردن هر دکمه‌ای برای بازی دوباره…", + "pressAnyButtonText": "فشردن هر دکمه‌ای برای ادامه…", + "pressAnyButtonToJoinText": "پیوستن با فشردن هر دکمه‌ای…", + "pressAnyKeyButtonPlayAgainText": "فشردن هر کلیدی/دکمه‌ای برای بازی دوباره…", + "pressAnyKeyButtonText": "فشردن هر کلیدی/دکمه‌ای برای ادامه…", "pressAnyKeyText": "…کلیدی را فشار دهید", - "pressJumpToFlyText": "** روی پرش مکرراً ضربه بزنید تا پرواز کنید **", + "pressJumpToFlyText": "⁦** روی پرش پیاپی بزن تا پرواز کنی **", "pressPunchToJoinText": "…برای پیوستن دکمهٔ مشت را فشار دهید", - "pressToOverrideCharacterText": "را فشار دهید ${BUTTONS} برای انتخاب کاراکتر", - "pressToSelectProfileText": "را فشار دهید ${BUTTONS} برای انتخاب بازیکن", - "pressToSelectTeamText": "را فشار دهید ${BUTTONS} برای انتخاب تیم", + "pressToOverrideCharacterText": "⁦برای انتخاب کاراکتر ${BUTTONS} را فشار دهید", + "pressToSelectProfileText": "⁦را فشار دهید ${BUTTONS} برای انتخاب بازیکن", + "pressToSelectTeamText": "⁦را فشار دهید ${BUTTONS} برای انتخاب تیم", "promoCodeWindow": { "codeText": "کد", "enterText": "ورود" @@ -1172,6 +1209,7 @@ "ps3ControllersWindow": { "macInstructionsText": "Switch off the power on the back of your PS3, make sure\nBluetooth is enabled on your Mac, then connect your controller\nto your Mac via a USB cable to pair the two. From then on, you\ncan use the controller's home button to connect it to your Mac\nin either wired (USB) or wireless (Bluetooth) mode.\n\nOn some Macs you may be prompted for a passcode when pairing.\nIf this happens, see the following tutorial or google for help.\n\n\n\n\nPS3 controllers connected wirelessly should show up in the device\nlist in System Preferences->Bluetooth. You may need to remove them\nfrom that list when you want to use them with your PS3 again.\n\nAlso make sure to disconnect them from Bluetooth when not in\nuse or their batteries will continue to drain.\n\nBluetooth should handle up to 7 connected devices,\nthough your mileage may vary.", "ouyaInstructionsText": "To use a PS3 controller with your OUYA, simply connect it with a USB cable\nonce to pair it. Doing this may disconnect your other controllers, so\nyou should then restart your OUYA and unplug the USB cable.\n\nFrom then on you should be able to use the controller's HOME button to\nconnect it wirelessly. When you are done playing, hold the HOME button\nfor 10 seconds to turn the controller off; otherwise it may remain on\nand waste batteries.", + "ouyaInstructionsTextScale": 0.74, "pairingTutorialText": "آموزش تصویری جفت‌شدن", "titleText": ":${APP_NAME} در PS3 استفاده از کنترلر" }, @@ -1179,6 +1217,8 @@ "punchText": "مشت", "purchaseForText": "خرید برای ${PRICE}", "purchaseGameText": "خرید بازی", + "purchaseNeverAvailableText": ".با عرض پوزش، خرید در این نسخه در دسترس نیست\n.سعی کنید در پلتفرم دیگری وارد حساب خود شوید و از آنجا خرید کنید", + "purchaseNotAvailableText": ".این خرید در دسترس نیست", "purchasingText": "…در حال خرید", "quitGameText": "؟${APP_NAME} خروج از", "quittingIn5SecondsText": "…ترک در ۵ ثانیه", @@ -1186,12 +1226,12 @@ "randomText": "تصادفی", "rankText": "رتبه", "ratingText": "امتیاز", - "reachWave2Text": "برای ثبت امتیاز به دور دوم برسید", + "reachWave2Text": "برای گرفتن رتبه به موج ۲ برسید.", "readyText": "آماده", "recentText": "اخیر", "remoteAppInfoShortText": ".خیلی جذاب تره وقتی با دوستانتون بازی می کنید ${APP_NAME} بازی\nکافیه چند تا دسته ی بازی به دستگاهتون وصل کنید یا\nرا روی گوشی و تبلت های دیگر نصب کنید تا ${REMOTE_APP_NAME} برنامه ی\n.به عنوان دسته برای بازی استفاده شوند", "remote_app": { - "app_name": "کنترولر مخصوص بمب‌اسکواد", + "app_name": "دسته‌مجازی بمب‌اسکواد", "app_name_short": "BSRemote", "button_position": "مکان دکمه", "button_size": "اندازه دکمه", @@ -1217,14 +1257,15 @@ "searching": "جستجو برای بازی‌های فعال", "searching_caption": "بر روی نام یک بازی برای پیوستن به آن ضربه بزنید.\nاطمینان حاصل کنید که شما در شبکه وای فای همان بازی هستید.", "start": "شروع", - "version_mismatch": "عدم تطابق نسخه‌ها\nاطمینان حاصل کنید که بمب‌اسکواد و کنترولر\nآخرین ورژن باشن و دوباره امتحان کنید" + "version_mismatch": "عدم تطابق نسخه‌ها.\nاطمینان حاصل کنید که بمب‌اسکواد و دسته‌مجازی\nآخرین نسخه باشند و دوباره امتحان کنید." }, "removeInGameAdsText": "بازی را در فروشگاه بخرید تا تبلیغات حذف شوند «${PRO}» نسخهٔ", + "removeInGameAdsTokenPurchaseText": "پیشنهاد زمان محدود: هر بسته توکن را برای حذف تبلیغات درون بازی خریداری کنید", "renameText": "تغییر نام", "replayEndText": "پایان بازپخش", "replayNameDefaultText": "بازپخش بازی اخیر", "replayReadErrorText": "خطا در خواندن فایل بازپخش", - "replayRenameWarningText": "عبارت «${REPLAY}» را تغییر دهید، اگر می‌خواهید بعد از یک بازی آن را از دست ندهید. در غیر این صورت بازنویسی می‌شود.", + "replayRenameWarningText": "⁦.را تغییر دهید، اگر می‌خواهید بعد از یک بازی آن را از دست ندهید؛ وگرنه بازنویسی می‌شود \"${REPLAY}\"", "replayVersionErrorText": "با عرض پوزش این بازبخش در ورژن مختلفیاز بازی ایجاد شده\n است و نمیتوان مورد استفاده قرار گیرد", "replayWatchText": "دیدن بازبخش بازی", "replayWriteErrorText": "خطا در نوشتن فایل بازپخش.", @@ -1241,7 +1282,7 @@ "runText": "دویدن", "saveText": "ذخیره", "scanScriptsErrorText": "اسکریپت ها در حال بررسی خطا ها است؛ برای جزئیات لاگ را ببینید", - "scanScriptsMultipleModulesNeedUpdatesText": "${PATH} و ${NUM} ماژول(های) دیگر باید برای api ${API} به‌روزرسانی شوند.", + "scanScriptsMultipleModulesNeedUpdatesText": ".⁦به‌روزرسانی شوند api ${API} ⁦ماژول دیگر باید برای ${NUM} ⁦و ${PATH}", "scanScriptsSingleModuleNeedsUpdatesText": "${PATH} باید برای api ${API} به‌روزرسانی شود.", "scoreChallengesText": "امتیاز چالش", "scoreListUnavailableText": ".لیست امتیازات در دسترس نیست", @@ -1253,11 +1294,11 @@ }, "scoreWasText": "(بود ${COUNT})", "selectText": "انتخاب", - "sendInfoDescriptionText": "اطلاعات اکانت و حالت برنامه را به سازنده میفرستد\nلطفاً اسم خود یا دلیل فرستادن را بیان کنید", - "seriesWinLine1PlayerText": "برنده", - "seriesWinLine1TeamText": "برنده", - "seriesWinLine1Text": "برنده", - "seriesWinLine2Text": "مجموعه بازی", + "sendInfoDescriptionText": ".اطلاعات اکانت و حالت برنامه را به سازنده می‌فرستد\n.لطفاً نام خود یا دلیل فرستادن را بیان کنید", + "seriesWinLine1PlayerText": "برنده‌ی", + "seriesWinLine1TeamText": "برنده‌ی", + "seriesWinLine1Text": "برنده‌ی", + "seriesWinLine2Text": "!مجموعه‌بازی", "settingsWindow": { "accountText": "حساب", "advancedText": "پیشرفته", @@ -1268,18 +1309,20 @@ "titleText": "تنظیمات" }, "settingsWindowAdvanced": { - "alwaysUseInternalKeyboardDescriptionText": "(یه صفحه‌کلید ساده و خوش‌دست بر روی صفحهٔ نمایش برای ویرایش متنی)", - "alwaysUseInternalKeyboardText": "همیشه از صفحه‌کلید داخلی استفاده شود", + "alwaysUseInternalKeyboardDescriptionText": "(یه کی‌بورد ساده و خوش‌دست برای نوشتن)", + "alwaysUseInternalKeyboardText": "همیشه از کی‌بورد داخلی استفاده شود", "benchmarksText": "معیار و تست استرس", - "devToolsText": "ابزار های توسعه", + "devToolsText": "ابزارهای توسعه", "disableCameraGyroscopeMotionText": "غیرفعال کردن حرکت ژیروسکوپ دوربین", "disableCameraShakeText": "غیرفعال کردن لرزش دوربین", - "disableThisNotice": "(شما میتوانید این اخطار را در تنظیمات یشرفته خاموش کنید)", + "disableThisNotice": "(می‌تونید این اخطار رو در تنظیمات پیشرفته خاموش کنید)", "enablePackageModsDescriptionText": "(فعالسازی قابلیت مد اکسترا اما شبکه بازی غیر فعال میشود)", "enablePackageModsText": "فعالسازی پکیج مد محلی", "enterPromoCodeText": "وارد کردن کد", - "forTestingText": "توجه: این تغیرات برای آزمایش کردن هستند و هنگام خروج به حال اول باز میگردند", - "helpTranslateText": "ترجمه‌های غیرانگلیسی ${APP_NAME} تلاشی است که\nتوسط انجمن پشتیبانی می‌شود. اگر مایل به کمک یا تصحیح\nترجمه هستید، پیوند زیر را دنبال کنید. پیشاپیش متشکرم!", + "forTestingText": "توجه: این تغیرات برای آزمایش هستند و هنگام خروج از بین می‌روند.", + "helpTranslateText": "ترجمه‌های غیرانگلیسی ${APP_NAME} تلاشی است که\nتوسط جامعه پشتیبانی می‌شود. اگر مایل به کمک یا تصحیح\n!ترجمه هستید، پیوند زیر را دنبال کنید. پیشاپیش سپاس‌گزارم", + "insecureConnectionsDescriptionText": "توصیه نمی شود، اما ممکن است از طرف کشورها یا\nشبکه‌های محدودشده اجازه‌ی بازی آنلاین را بدهد", + "insecureConnectionsText": "استفاده از اتصال‌های ناپایدار", "kickIdlePlayersText": "بیرون انداختن بازیکنان غیرفعال", "kidFriendlyModeText": "حالت دوستانه برای کودکان. خشونت کم", "languageText": "زبان", @@ -1287,22 +1330,22 @@ "moddingToolsText": "اصلاح کردن ابزار", "mustRestartText": "برای اعمال تغییرات باید بازی را دوباره راه اندازی کنید", "netTestingText": "تست شبکه", - "resetText": "باز گرداندن", + "resetText": "بازنشانی", "sendInfoText": "فرستادن اطلاعات", "showBombTrajectoriesText": "نمایش خط سیر بمب", - "showDemosWhenIdleText": "نشان دادن دمو ها هنگام غیرفعال بودن", - "showDeprecatedLoginTypesText": "نمایش انواع ورود های منسوخ شده", - "showDevConsoleButtonText": "نشان دادن دکمه توسعه دهنده کنسول", + "showDemosWhenIdleText": "نمایش دموها هنگام بیکاری", + "showDeprecatedLoginTypesText": "نمایش انواع ورودهای منسوخ", + "showDevConsoleButtonText": "نمایش دکمه‌ی کنسول توسعه", "showInGamePingText": "نمایش پینگ درون بازی", "showPlayerNamesText": "نمایش نام بازیکنان", - "showUserModsText": "نمایش پوشهٔ سبک بازی‌ها", + "showUserModsText": "نمایش پوشه‌ی افزونه‌های بازی", "titleText": "پیشرفته", "translationEditorButtonText": "ویرایشگر زبان ${APP_NAME}", "translationFetchErrorText": "وضعیت ترجمه در دسترس نیست", "translationFetchingStatusText": "چک کردن وضعیت ترجمه ...", "translationInformMe": "!وقتی زبان من به‌روزرسانی نیاز داشت، خبرم کن", - "translationNoUpdateNeededText": "! زبان کنونی به‌روز است؛ ووهوو", - "translationUpdateNeededText": "! زبان فعلی نیاز به بروزرسانی دارد", + "translationNoUpdateNeededText": "!زبان کنونی به‌روز است. ایول به ولت", + "translationUpdateNeededText": "!زبان کنونی نیاز به به‌روزرسانی دارد", "vrTestingText": "VR تست" }, "shareText": "اشتراک‌گذاری", @@ -1310,14 +1353,14 @@ "showText": "نمایش", "signInForPromoCodeText": "برای اثر گذاری کد ها باید با یک حساب کاربری وارد شوید", "signInWithGameCenterText": "برای استفاده از حسابی که در یک گیم سنتر دارید,\nبا برنامه گیم سنتر خود وارد شوید.", - "singleGamePlaylistNameText": "${GAME} فقط", + "singleGamePlaylistNameText": "⁦${GAME}⁦ فقط", "singlePlayerCountText": "1 بازیکن", "sizeLargeText": "بزرگ", "sizeMediumText": "متوسط", "sizeSmallText": "کوچک", "soloNameFilterText": "رو در رو ${NAME}", "soundtrackTypeNames": { - "CharSelect": "انتخاب کارکتر", + "CharSelect": "انتخاب شخصیت", "Chosen One": "انتخاب شده", "Epic": "بازی قدرت", "Epic Race": "مسابقه حرکت آهسته", @@ -1340,6 +1383,7 @@ }, "spaceKeyText": "فاصله", "statsText": "آمار", + "stopRemindingMeText": "به من یادآوری نکن", "storagePermissionAccessText": "به اجازه شما برای دسترسی به حافظه نیاز دارد", "store": { "alreadyOwnText": "!را در اختیار دارید ${NAME} شما", @@ -1347,22 +1391,22 @@ "bombSquadProNameText": "حرفه ای ${APP_NAME}", "bombSquadProNewDescriptionText": ".تبلیغات داخل بازی حذف میشود\n.بیشتر تنظیمات بازی باز میشوند\n:همچنین شامل", "buyText": "خرید", - "charactersText": "شخصیت ها", + "charactersText": "شخصیت‌ها", "comingSoonText": "...به زودی", "extrasText": "دیگر", "freeBombSquadProText": "جوخه بمب حالا مجانیه، ولی چون شما زمانی خریدینش که پولی بود؛ ما داریم\nشمارو به جوخه بمب پرو ارتقا میدیم و ${COUNT} بلیط بعنوان تشکر برای شما.\nاز امکانات جدید لذت ببرید. از شما بابت پشتیبانی و دلگرمی تان ممنونیم!\n-اریک", "holidaySpecialText": "ویژه‌ی تعطیلات", - "howToSwitchCharactersText": "(برو به \"${SETTINGS} -> ${PLAYER_PROFILES}\" برای ایجاد و شخصی‌سازی شخصیت‌ها)", - "howToUseIconsText": "(ایجاد نمایه‌های جهانی از قسمت پنجرهٔ حساب برای استفاده در این مورد)", - "howToUseMapsText": "(از این نقشه‌ها میتونید تو بازی‌های تیمی و تک‌به‌تکی خودتون استفاده کنید)", + "howToSwitchCharactersText": "(⁦برو \"${SETTINGS} -> ${PLAYER_PROFILES}\" برای ایجاد و شخصی‌سازی شخصیت‌ها به)", + "howToUseIconsText": "((در بخش حساب کاربری) برای استفاده از این‌ها نمایه‌های جهانی ایجاد کنید)", + "howToUseMapsText": "(از این نقشه‌ها می‌تونید توی بازی‌های تیمی و تک‌به‌تک خودتون استفاده کنید)", "iconsText": "نشانه‌ها", "loadErrorText": "لود شدن صفحه ناموفق بود\nاتصال اینترنت رو چک کنید", "loadingText": "در حال بارگزاری", - "mapsText": "نقشه ها", - "miniGamesText": "تک بازی‌های کوچک", + "mapsText": "نقشه‌ها", + "miniGamesText": "بازی‌های کوچک", "oneTimeOnlyText": "(فقط یک بار)", "purchaseAlreadyInProgressText": "این مورد قبلا سفارش داده شده", - "purchaseConfirmText": "را بخرید ؟ ${ITEM} واقعا می خواهید", + "purchaseConfirmText": "واقعا می‌خواهید ${ITEM} ⁦را بخرید؟", "purchaseNotValidError": ". سفارش معتبر نیست\n. ایمیل بزنید ${EMAIL} اگر مشکلی دارید به", "purchaseText": "خرید", "saleBundleText": "فروش بسته نرم‌افزاری!", @@ -1379,7 +1423,7 @@ "storeDescriptionText": "8 بازیکن حزب جنون بازی!\n\nدوستان خود (یا رایانه) را در مسابقات مینی بازی‌های انفجاری مانند: پرچم، هاکی و حرکت آهسته\n\nکنترل ساده و پشتیبانی گسترده می‌توان تا حداکثر 8 نفر برای ورود به بازی اقدام کند؛ شما حتی می‌توانید دستگاه‌های تلفن‌همراه خود را به عنوان کنترل از طریق برنامه رایگان BombSquadremote استفاده کنید!\n\nبمب‌اندازی از راه دور!\n\nwww.froemling.net/bombsquad را برای اطلاعات بیشتر چک کنید.", "storeDescriptions": { "blowUpYourFriendsText": "بازیکن دوستات رو بترکون 😁", - "competeInMiniGamesText": "رقابت در بازی‌های کوچک بویژه مسابقه پرواز.", + "competeInMiniGamesText": "رقابت در بازی‌های کوچک به یژه مسابقه پرواز.", "customize2Text": "سفارشی کردن شخصیت‌ها، بازی‌های کوچک، و حتی موسیقی‌های متن .", "customizeText": "شما می تونید شخصیت‌ها رو شخصی‌سازی کنید و به سلیقه خودتون لیست‌بازی درست کنید", "sportsMoreFunText": "ورزش ها سرگرم کننده تر میشن با انفجار", @@ -1394,25 +1438,40 @@ "telnetAccessGrantedText": "شبکه ی در دسترس فعال", "telnetAccessText": "شبکه راه دور دردسترس است اجازه میدید؟", "testBuildErrorText": "این نسخه دیگر فعال نیست، لطفا نسخه جدید را بررسی کنید", - "testBuildText": "آزمایش ساخت", + "testBuildText": "ساخت آزمایشی", "testBuildValidateErrorText": "قادر به تأیید نسخه نیست (اتصال برقره نشد؟)", "testBuildValidatedText": "نسخه معتبر است؛ لذت ببرید.!", "thankYouText": "تشکر بخاطر حمایت از ما ! از بازی لذت ببرید", "threeKillText": "نابود کردن همزمان سه نفر", + "ticketsDescriptionText": "بلیت‌ها برای بازگشایی شخصیت‌ها، نقشه‌ها، بازی‌های\nکوچک و موارد دیگر در فروشگاه به کار می‌روند. \n\nبلیت‌ها در صندوق‌هایی که از کمپین‌ها، مسابقات\nو دستاوردها برنده شده‌اید، یافت می‌شوند.", "timeBonusText": "پاداش سرعت عمل", "timeElapsedText": "زمان گذشته", "timeExpiredText": "زمان تمام شده", - "timeSuffixDaysText": "روز ${COUNT}", - "timeSuffixHoursText": "ساعت ${COUNT}", - "timeSuffixMinutesText": "دقیقه ${COUNT}", - "timeSuffixSecondsText": "ثانیه ${COUNT}", + "timeSuffixDaysText": "ر${COUNT}", + "timeSuffixHoursText": "س${COUNT}", + "timeSuffixMinutesText": "د${COUNT}", + "timeSuffixSecondsText": "ث${COUNT}", "tipText": "نکته", "titleText": "بمب‌اسکواد", - "titleVRText": "VR بمب‌اسکواد نسخه", + "titleVRText": "بمب اسکواد نسخه واقعیت‌مجازی", + "tokens": { + "getTokensText": "دریافت توکن", + "notEnoughTokensText": "توکن های شما کافی نیست !", + "numTokensText": "⁦توکن ${COUNT}", + "openNowDescriptionText": "شما به اندازه کافی نشانه دارید\nاکنون این را باز کنید - اگر نکنید\nباید صبر کرد", + "shinyNewCurrencyText": "ارز های جدید بمب اسکواد", + "tokenPack1Text": "بسته توکن کوچک", + "tokenPack2Text": "بسته توکن متوسط", + "tokenPack3Text": "بسته توکن بزرگ", + "tokenPack4Text": "بسته توکن جامبو", + "tokensDescriptionText": "توکن‌ها برای سرعت بخشیدن به باز کردن قفل صندوق و برای \n.دیگر ویژگی‌های بازی و حساب کاربری به کار می‌روند\n\nمی‌توانید توکن‌ها را در بازی برنده شوید یا آن‌ها را در بسته‌ها\nخریداری کنید. یا یک گلدپس برای توکن‌های بی‌نهایت\n.بخرید و دیگر در خرج آن‌ها مشکلی نداشته باشید", + "youHaveGoldPassText": ".شما یک گلد پس دارید\n.تمامی خریدهای توکن رایگان است\n!لذت ببرید" + }, "topFriendsText": "بالاترین امتیاز دوستان", "tournamentCheckingStateText": "چک کردن وضعیت مسابقات؛ لطفا صبر کنید", "tournamentEndedText": "این دوره از مسابقات به پایان رسیده است دوره جدیدی بزودی آغاز خواهد شد", "tournamentEntryText": "ورودیِ مسابقات", + "tournamentFinalStandingsText": "جدول رده بندی نهایی", "tournamentResultsRecentText": "آخرین نتایج مسابقات", "tournamentStandingsText": "جدول رده بندی مسابقات", "tournamentText": "جام حذفی", @@ -1422,7 +1481,7 @@ "translations": { "characterNames": { "Agent Johnson": "مامور جانسون", - "B-9000": "B-9000", + "B-9000": "بات.۹۰۰۰", "Bernard": "برنارد", "Bones": "اسکلت", "Butch": "بوچ", @@ -1442,7 +1501,7 @@ "Pixel": "پیکسل", "Sammy Slam": "سامی کشتی‌گیر", "Santa Claus": "بابا نوئل", - "Snake Shadow": "سایه ی مار", + "Snake Shadow": "سایه‌ی مار", "Spaz": "اسپاز", "Taobao Mascot": "تائوبائو", "Todd": "تاد", @@ -1452,84 +1511,96 @@ "Zola": "زولا" }, "coopLevelNames": { - "${GAME} Training": "${GAME} محل تمرین", - "Infinite ${GAME}": "بی پایان ${GAME}", + "${GAME} Training": "تمرین ${GAME}", + "Infinite ${GAME}": "${GAME} بی‌پایان", "Infinite Onslaught": "نبرد بی‌پایان", - "Infinite Runaround": "دوره بی نهایت", + "Infinite Runaround": "دور بی‌پایان", "Onslaught Training": "نبرد مبتدی", - "Pro ${GAME}": "حرفه ای ${GAME}", + "Pro ${GAME}": "${GAME} حرفه‌ای", "Pro Football": "فوتبال حرفه‌ای", - "Pro Onslaught": "حمله ی سخت", + "Pro Onslaught": "هجوم سخت", "Pro Runaround": "نگهبان خروج", "Rookie ${GAME}": "${GAME} قدرت", "Rookie Football": "مبارز فوتبال", "Rookie Onslaught": "میدان مبارزه", "The Last Stand": "آخرین مقاومت", - "Uber ${GAME}": "${GAME} بازی", - "Uber Football": "فوتبال حرفه‌ای", + "Uber ${GAME}": "${GAME} خفن", + "Uber Football": "فوتبال خفن", "Uber Onslaught": "هجوم", "Uber Runaround": "ایست بازرسی" }, + "displayItemNames": { + "${C} Tickets": "⁦بلیت ${C}", + "${C} Tokens": "⁦توکن ${C}", + "Chest": "صندوق", + "L1 Chest": "صندوق ۱", + "L2 Chest": "صندوق ۲", + "L3 Chest": "صندوق ۳", + "L4 Chest": "صندوق ۴", + "L5 Chest": "صندوق ۵", + "L6 Chest": "صندوق ۶", + "Unknown Chest": "صندوق ناشناخته" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "یکی از بهترین ها برای پیروزی در زمان بازی است.\nیکی را انتخاب کنید و از بین ببرید تا به آن تبدیل شوید.", - "Bomb as many targets as you can.": "هدف ها را با بمب بزن", - "Carry the flag for ${ARG1} seconds.": "ثانیه${ARG1}حمل و نگهداری پرچم برای", - "Carry the flag for a set length of time.": "حمل و حفاظت از پرچم برای برای یک زمان معین", - "Crush ${ARG1} of your enemies.": "بار از حریف ${ARG1} پیروز شدن", - "Defeat all enemies.": "همه ی حریف ها را شکست بده", - "Dodge the falling bombs.": "از بمب ها جاخالی بده", - "Final glorious epic slow motion battle to the death.": "نبرد در حرکت آهسته", - "Gather eggs!": "تخم مرغ ها رو جمع کن", - "Get the flag to the enemy end zone.": "بردن پرچم به منطقه پایانی حریف", - "How fast can you defeat the ninjas?": "با چه سرعتی میتونید نینجاها رو شکست بدید؟", - "Kill a set number of enemies to win.": "ازبین بردن تعدادی ازحریف ها برای بردن", - "Last one standing wins.": "آخرین کسی که موند برنده س", - "Last remaining alive wins.": "تاریخ و زمان آخرین برنده زنده باقی مانده", - "Last team standing wins.": "آخرین تیمی که می‌مونه تو بازی برنده‌س", - "Prevent enemies from reaching the exit.": "جلوگیری از خروج حریف", - "Reach the enemy flag to score.": "رسیدن به پرچم دشمن", - "Return the enemy flag to score.": "برداشتن پرچم دشمن برای امتیاز گرفتن", - "Run ${ARG1} laps.": "دور ${ARG1} حرکت", - "Run ${ARG1} laps. Your entire team has to finish.": "دور ,کل تیم ${ARG1} حرکت", - "Run 1 lap.": "یک دور", - "Run 1 lap. Your entire team has to finish.": "یک دور کل تیم به خط پایان برسند", - "Run real fast!": "!حرکت واقعا سریع", - "Score ${ARG1} goals.": "گل ${ARG1}زدن", - "Score ${ARG1} touchdowns.": "بار ${ARG1}عبور پرچم ازخط", - "Score a goal.": "گل بزنید", - "Score a touchdown.": "امتیاز پرش", - "Score some goals.": "امتیاز برخی گل ها", - "Secure all ${ARG1} flags.": "پرچم ${ARG1}مال خودکردن همه", - "Secure all flags on the map to win.": "حفاظت از تمام پرچم ها. در نقشه", - "Secure the flag for ${ARG1} seconds.": "ثانیه ${ARG1} حفاظت از پرچم برای", - "Secure the flag for a set length of time.": "حفاظت از پرچم در مدت زمان معین", - "Steal the enemy flag ${ARG1} times.": "بار ${ARG1} ربودن پرچم حریف", - "Steal the enemy flag.": "ربودن پرچم حریف", - "There can be only one.": "صاحب پرچم فقط میتونه یه نفر باشه", - "Touch the enemy flag ${ARG1} times.": "${ARG1} بار لمس پرچم دشمن", - "Touch the enemy flag.": "لمس پرچم دشمن", - "carry the flag for ${ARG1} seconds": "ثانیه${ARG1}حمل و نگهداری پرچم برای", - "kill ${ARG1} enemies": "حریف ${ARG1} ازبین بردن", - "last one standing wins": "آخرین کسی که موند برنده س", - "last team standing wins": "آخرین تیمی که می‌مونه روصحنه برنده‌س", - "return ${ARG1} flags": "پرچم ${ARG1} بدست آوردن", - "return 1 flag": "بدست آوردن 1 پرچم", - "run ${ARG1} laps": "دور ${ARG1} حرکت", - "run 1 lap": "یک دور", - "score ${ARG1} goals": "گل ${ARG1}زدن", - "score ${ARG1} touchdowns": "بار ${ARG1}عبور پرچم ازخط", + "Bomb as many targets as you can.": ".هدف‌ها را با بمب بزنید", + "Carry the flag for ${ARG1} seconds.": ".⁦ثانیه پرچم رو حمل کن ${ARG1} برای", + "Carry the flag for a set length of time.": ".برای یک زمان معین پرچم را حمل کنید", + "Crush ${ARG1} of your enemies.": "⁦.تا از دشمن‌ها رو له کن${ARG1}", + "Defeat all enemies.": ".همه‌ی دشمن‌ها را شکست بدهید", + "Dodge the falling bombs.": ".از بمب‌ها جاخالی بدهید", + "Final glorious epic slow motion battle to the death.": ".نبرد نهایی با شکوه حرکت آهسته‌ی حماسی تا پای مرگ", + "Gather eggs!": "!تخم‌مرغ‌ها را جمع کنید", + "Get the flag to the enemy end zone.": ".پرچم را به منطقه‌ی انتهایی دشمن برسانید", + "How fast can you defeat the ninjas?": "با چه سرعتی می‌توانید نینجاها را شکست دهید؟", + "Kill a set number of enemies to win.": ".تعداد معینی از دشمنان را برای برنده شدن از بین ببرید", + "Last one standing wins.": ".آخرین نفری که مونده برنده‌ست", + "Last remaining alive wins.": ".آخرین نفری که زنده می‌ماند، برنده است", + "Last team standing wins.": ".آخرین تیمی که می‌مونه برنده‌ست", + "Prevent enemies from reaching the exit.": ".از خروج دشمن جلوگیری کنید", + "Reach the enemy flag to score.": ".پرچم دشمن را برای گرفتن امتیاز لمس کنید", + "Return the enemy flag to score.": ".پرچم دشمن را بربایید تا امتیاز بگیرید", + "Run ${ARG1} laps.": ".⁦دور بدو ${ARG1}", + "Run ${ARG1} laps. Your entire team has to finish.": ".⁦دور بدو. کل تیم باید به خط پایان برسه ${ARG1}", + "Run 1 lap.": ".⁦دور بدو 1", + "Run 1 lap. Your entire team has to finish.": ".⁦دور بدو. کل تیم باید به خط پایان برسد 1", + "Run real fast!": "!تخت گاز بدوید", + "Score ${ARG1} goals.": ".تا گل بزن${ARG1}", + "Score ${ARG1} touchdowns.": ".⁦بار از خط رد کن ${ARG1} پرچم رو", + "Score a goal.": ".گل بزن", + "Score a touchdown.": ".امتیاز بگیر", + "Score some goals.": "تعدادی گل بزنید.", + "Secure all ${ARG1} flags.": ".⁦پرچم رو تصاحب کن ${ARG1} همه‌ی", + "Secure all flags on the map to win.": ".در نقشه همه‌ی پرچم‌ها را از آن خود کنید تا برنده شوید", + "Secure the flag for ${ARG1} seconds.": ".⁦ثانیه از پرچم محافظت کن ${ARG1} برای", + "Secure the flag for a set length of time.": ".برای زمان معینی از پرچم محافظت کنید", + "Steal the enemy flag ${ARG1} times.": ".⁦بار بربا ${ARG1} پرچم دشمن رو", + "Steal the enemy flag.": "پرچم دشمن را بربایید.", + "There can be only one.": ".فقط یه نفر صاحب پرچمه", + "Touch the enemy flag ${ARG1} times.": "⁦.بار لمس کن ${ARG1} پرچم دشمن رو", + "Touch the enemy flag.": ".پرچم دشمن را لمس کنید", + "carry the flag for ${ARG1} seconds": "⁦ثانیه پرچم را حمل کنید ${ARG1} برای", + "kill ${ARG1} enemies": "⁦⁦دشمن را از بین ببرید ${ARG1}", + "last one standing wins": "آخرین نفری که مانده برنده است", + "last team standing wins": "آخرین تیمی که می‌ماند برنده است", + "return ${ARG1} flags": "⁦پرچم به دست بیاورید ${ARG1}", + "return 1 flag": "⁦پرچم به دست بیاورید 1", + "run ${ARG1} laps": "⁦⁦دور بدوید ${ARG1}", + "run 1 lap": "⁦دور بدوید 1", + "score ${ARG1} goals": "⁦⁦گل بزنید ${ARG1}", + "score ${ARG1} touchdowns": "⁦بار از خط رد کنید ${ARG1} پرچم را", "score a goal": "گل بزنید", - "score a touchdown": "امتیاز یک پرش", - "secure all ${ARG1} flags": "پرچم ${ARG1}مال خودکردن همه", - "secure the flag for ${ARG1} seconds": "ثانیه ${ARG1} حفاظت از پرچم برای", - "touch ${ARG1} flags": "پرچم ${ARG1} لمس", - "touch 1 flag": "لمس 1 پرچم" + "score a touchdown": "امتیاز بگیرید", + "secure all ${ARG1} flags": "⁦پرچم را از آن خود کنید ${ARG1} همه‌ی", + "secure the flag for ${ARG1} seconds": "⁦ثانیه از پرچم محافظت کنید ${ARG1} برای", + "touch ${ARG1} flags": "⁦بار لمس کنید ${ARG1} پرچم را", + "touch 1 flag": "⁦بار لمس کنید 1 پرچم را" }, "gameNames": { "Assault": "لمس پرچم", "Capture the Flag": "تسخیر پرچم", - "Chosen One": "فرد منتخب", - "Conquest": "قدرت نمایی", + "Chosen One": "برگزیده", + "Conquest": "فتح", "Death Match": "نبرد مرگبار", "Easter Egg Hunt": "شکار ایستر اگ", "Elimination": "استقامت", @@ -1537,25 +1608,26 @@ "Hockey": "هاکی", "Keep Away": "دور نگه داشتن", "King of the Hill": "پادشاه تپه", - "Meteor Shower": "حمام بمب", + "Meteor Shower": "بمب‌باران", "Ninja Fight": "نبرد با نینجاها", "Onslaught": "مبارزه", - "Race": "مسابقهٔ دو", + "Race": "مسابقه‌ی دو", "Runaround": "مانع", "Target Practice": "تمرین بمب‌اندازی", "The Last Stand": "دفاع آخر" }, "inputDeviceNames": { - "Keyboard": "صفحه‌کلید", - "Keyboard P2": "p2 صفحه‌کلید" + "Keyboard": "کی‌بورد", + "Keyboard P2": "کی‌بورد ب۲" }, "languages": { "Arabic": "عربی", "Belarussian": "بلاروسی", - "Chinese": "چینی ساده شده", - "ChineseTraditional": "چینی سنتی", + "Chinese": "چینی - ساده شده", + "ChineseSimplified": "چینی - ساده شده", + "ChineseTraditional": "چینی - سنتی", "Croatian": "کرواتی", - "Czech": "چک", + "Czech": "چکی", "Danish": "دانمارکی", "Dutch": "هلندی", "English": "انگلیسی", @@ -1568,19 +1640,24 @@ "Greek": "یونانی", "Hindi": "هندی", "Hungarian": "مجارستانی", - "Indonesian": "اندونزی", + "Indonesian": "اندونزیایی", "Italian": "ایتالیایی", "Japanese": "ژاپنی", "Korean": "کره‌ای", "Malay": "مالایی", - "Persian": "فارسی‎", + "Persian": "⁦فارسی‎", + "PirateSpeak": "سومالیایی", "Polish": "لهستانی", "Portuguese": "پرتغالی", + "PortugueseBrazil": "پرتغالی - برزیل", + "PortuguesePortugal": "Portuguese - Portugal", "Romanian": "رومانیایی", "Russian": "روسی", "Serbian": "صربستانی", - "Slovak": "اسلواک", + "Slovak": "اسلواکی", "Spanish": "اسپانیایی", + "SpanishLatinAmerica": "اسپانیایی - آمریکای لاتین", + "SpanishSpain": "اسپانیایی - اسپانیا", "Swedish": "سوئدی", "Tamil": "تامیلی", "Thai": "تایلندی", @@ -1596,7 +1673,7 @@ "Silver": "نقره" }, "mapsNames": { - "Big G": "بزرگ G", + "Big G": "⁦بزرگ⁦ G", "Bridgit": "پل میانی", "Courtyard": "حیاط", "Crag Castle": "قلعه پرتگاه", @@ -1604,18 +1681,18 @@ "Football Stadium": "استادیوم فوتبال", "Happy Thoughts": "رویای شیرین", "Hockey Stadium": "استادیوم هاکی", - "Lake Frigid": "دریاچه یخ زده", + "Lake Frigid": "دریاچه‌ی یخ‌زده", "Monkey Face": "صورت میمون", "Rampage": "خشم", "Roundabout": "میدان نبرد", "Step Right Up": "پایدار", "The Pad": "رینگ", "Tip Top": "تیپ تاپ", - "Tower D": "برج دی", - "Zigzag": "زیگ زاگ" + "Tower D": "⁦برج D", + "Zigzag": "زیگ‌زاگ" }, "playlistNames": { - "Just Epic": "فقط حرکت آهسته", + "Just Epic": "فقط حماسی", "Just Sports": "فقط ورزشی" }, "scoreNames": { @@ -1633,42 +1710,49 @@ "Account unlinking successful!": "قطع شدن حساب با موفقیت انجام شد", "Accounts are already linked.": "حساب‌ها قبلا مرتبط شده‌اند", "Ad view could not be verified.\nPlease be sure you are running an official and up-to-date version of the game.": "نمای آگهی تأیید نمی شود\nلطفا مطمئن باشید که نسخه رسمی و به روز بازی را اجرا می کنید", - "An error has occurred; (${ERROR})": "متاسفانه یک مشکل رخ داده ؛ (${ERROR})", + "An error has occurred; (${ERROR})": "(${ERROR}) متاسفانه مشکلی رخ داده؛", "An error has occurred; please contact support. (${ERROR})": "یک مشکل رخ داده! لطفا با پشتیبانی تماس بگیرید؛ (${ERROR})", - "An error has occurred; please contact support@froemling.net.": ".تماس بگیرید support@froemling.net خطایی رخ داده است. لطفاً با", + "An error has occurred; please contact support@froemling.net.": ".ای‌میل بزنید support@froemling.net خطایی رخ داده است. لطفن به", "An error has occurred; please try again later.": ".خطایی رخ داده است. لطفاً بعداً تلاش کنید", "Are you sure you want to link these accounts?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\nThis cannot be undone!": "آیا مطمئن هستید که می‌خواهید این حساب‌ها را به هم متصل کنید؟\n\n${ACCOUNT1}\n${ACCOUNT2}\n\n!این کار برگشت‌پذیر نیست", "BombSquad Pro unlocked!": "!نسخهٔ حرفه‌ای باز شد", "Can't link 2 accounts of this type.": ".نمی‌توان دو حساب از این نوع را پیوند داد", "Can't link 2 diamond league accounts.": "نمی‌توان حساب دو لیگ الماس را پیوند داد.", "Can't link; would surpass maximum of ${COUNT} linked accounts.": "پیوند نمی‌شود; حداکثر از ${COUNT} پیوند پشتیبانی می‌شود.", - "Cheating detected; scores and prizes suspended for ${COUNT} days.": "تقلب تشخیص داده شد; امتیازات و جوایز برای ${COUNT} روز تعلیق شد.", + "Cheating detected; scores and prizes suspended for ${COUNT} days.": "⁦.روز تعلیق شد ${COUNT} تقلب شناسایی شد؛ امتیازها و جایزه‌ها برای", "Could not establish a secure connection.": "نمیتوان یک اتصال امن ایجاد کرد", - "Daily maximum reached.": "به حداکثر روزانه رسیده است", - "Entering tournament...": "ورود به مسابقات ...", + "Daily maximum reached.": "به حداکثر ارقام روزانه رسیدید", + "Daily sign-in reward": "پاداش ورود روزانه", + "Entering tournament...": "ورود به مسابقات...", + "Higher streaks lead to better rewards.": "رگه های بالاتر منجر به پاداش بهتر می شود.", "Invalid code.": "کد نامعتبر", - "Invalid payment; purchase canceled.": "پرداخت با خطا مواجه شد؛ خرید لغو شد", - "Invalid promo code.": "کد نامعتبر است.", + "Invalid payment; purchase canceled.": "پرداخت نامعتبر؛ خرید لغو شد.", + "Invalid promo code.": "کد دعوتی نامعتبر است.", "Invalid purchase.": "خرید نا معتبر", "Invalid tournament entry; score will be ignored.": "ورود مسابقات نامعتبر است؛ نمره نادیده گرفته می شود.", "Item unlocked!": "!مورد باز شد", "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "پیوند کردن ممنوع شد ${ACCOUNT} شامل\nداده های قابل توجهی که می توانند از دست بدهند.\nشما می توانید در صورت مخالفت پیوست کنید اگر دوست دارید\n(و در عوض داده های این حساب را از دست می دهید)", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "را به این حساب پیوند دهید؟ ${ACCOUNT} آیا مایلید که حساب کاربری \n.از بین خواهد رفت ${ACCOUNT} تمام اطلاعات روی حساب\nاین کار برگشت‌پذیر نیست. آیا مطمئنید؟", + "Longer streaks lead to better rewards.": "دوره‌های طولانی‌تر ورود روزانه به بازی منجر به پاداش‌های بهتر می‌شود.", "Max number of playlists reached.": "تعداد بازی ها به حداکثر رسیده است", "Max number of profiles reached.": ".تعداد نمایه‌ها به حداکثر رسیده است", "Maximum friend code rewards reached.": ".حداکثر جایزه کد ارسالی برای دوستان دریافت شد", "Message is too long.": "پیام خیلی طولانی است", + "New tournament result!": "نتیجه مسابقات جدید!", "No servers are available. Please try again soon.": "هیچ سروری در دسترس نیست. لطفا به زودی دوباره امتحان کنید", + "No slots available. Free a slot and try again.": "محل صندوقی موجود نیست. یک محل صندوق ی آزاد کنید و دوباره امتحان کنید.", "Profile \"${NAME}\" upgraded successfully.": ".با موفقیت ارتقا یافت «${NAME}» نمایهٔ", "Profile could not be upgraded.": ".نمایه نمی‌تواند ارتقا یابد", "Purchase successful!": "خرید با موفقیت انجام شد", - "Received ${COUNT} tickets for signing in.\nCome back tomorrow to receive ${TOMORROW_COUNT}.": "بدست آمده ${COUNT} بلیت برای ورود به سیستم.\nفردا برگرد برای دریافت ${TOMORROW_COUNT}.", + "Received ${COUNT} tickets for signing in.\nCome back tomorrow to receive ${TOMORROW_COUNT}.": ".تا بلیت برای ورود به برنامه دریافت کردی${COUNT}\n.تا دوباره سر بزن${TOMORROW_COUNT} فردا برای دریافت", "Server functionality is no longer supported in this version of the game;\nPlease update to a newer version.": "این نسخه از بازی دیگر توسط سرور پشتیبانی نمی شود.\nلطفا از جدید ترین نسخه بازی استفاده کنید.", "Sorry, there are no uses remaining on this code.": "با عرض پوزش, این کد دیگر کاربرد ندارد", "Sorry, this code has already been used.": "با عرض پوزش، این کد قبلا استفاده شده است.", "Sorry, this code has expired.": "متاسفانه این کد منقضی شده", "Sorry, this code only works for new accounts.": "با عرض وزش پوزش, این کد فقط برا حساب کاربری جدید کاربرد داره", + "Sorry, this has expired.": "متاسفانه درخواست منقضی شده.", "Still searching for nearby servers; please try again soon.": "هنوز سرورهای اطراف را جستجو می کنید. لطفا به زودی دوباره امتحان کنید", + "Streak: ${NUM} days": "‎روز ${NUM} دوره‌ی ورود روزانه:", "Temporarily unavailable; please try again later.": "در حال حاضر این گذینه موجود نمی باشد؛لطفا بعدا امتحان کنید", "The tournament ended before you finished.": "مسابقات به پایان رسید قبل از اینکه شما به پایان برسید.", "This account cannot be unlinked for ${NUM} days.": "این حساب برای مدت ${NUM} روز قابل جداسازی نیست!", @@ -1679,19 +1763,28 @@ "Tournaments require ${VERSION} or newer": "تورنومنت ها به${VERSION}جدید تر یا حرفه ای نیاز دارند", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "آیا مایلبد حساب ${ACCOUNT} را از حساب خودتان جداسازی کنید؟\nتمام اطلاعات حساب ${ACCOUNT} بازنویسی خواهد شد.\n(به جز بعضی از افتخارات کسب شده)", "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "اخطار: شکایت هایی مبنی بر استفاده شما از ابزار های تقلب به دست ما رسیده!\nدر صورت تکرار حساب کاربری شما مسدود خواهد شد! لطفا جوانمردانه بازی کنید.", + "Wait reduced!": "انتظار کاهش یافت", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "هشدار: این نسخه از بازی به داده های حساب قدیمی محدود شده است. ممکن است چیزهایی گم شده یا قدیمی به نظر برسند\nلطفا برای مشاهده آخرین اطلاعات حساب خود به نسخه جدیدتر بازی ارتقا دهید", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "می‌خواهید دستگاه‌تون رو به این دستگاه متصل کنید؟\n\nحساب دستگاهی شما ${ACCOUNT1}\nاین حساب ${ACCOUNT2}\n\nاین مشکلی توی سیو و پیشرفت شما ایجاد نمیکنه.\nاخطار: بعدا نمی‌تونید پشیمون بشید!", "You already own this!": "قبلا اینو گرفتی", - "You can join in ${COUNT} seconds.": ".ثانیه ${COUNT} شما میتوانید متصل شوید در", + "You can join in ${COUNT} seconds.": ".‎ثانیه‌ی دیگر می‌توانید بپیوندید ${COUNT} تا", "You don't have enough tickets for this!": "شما بلیط کافی برای این ندارید", "You don't own that.": ".اون مال شما نیست", "You got ${COUNT} tickets!": "! تا بلیط گرفتی ${COUNT}", + "You got ${COUNT} tokens!": "!تا توکن گرفتی ${COUNT}", "You got a ${ITEM}!": "! گرفتی ${ITEM} یه دونه", + "You got a chest!": "!یه صندوق گرفتی", + "You got an achievement reward!": "!یه پاداش دستاورد گرفتی", "You have been promoted to a new league; congratulations!": "شما به یک لیگ جدید ارتقا داده‌اید؛ تبریک می‌گوییم!", + "You lost a chest! (All your chest slots were full)": "یک صندوق از دست دادی! (همه محل های صندوق شما پر بود)", + "You must update the app to view this.": "برای دیدن این بخش باید بازی را بروزرسانی کنید", "You must update to a newer version of the app to do this.": "برای انجام این کار شما باید بازی را به روز رسانی کنید", "You must update to the newest version of the game to do this.": "برای انجام این کار باید از آخرین نسخه بازی استفاده کنید.", "You must wait a few seconds before entering a new code.": "شما باید چند ثانیه قبل از وارد کردن یک کد جدید صبر کنید.", + "You placed #${RANK} in a tournament!": "شما #${RANK} را در یک تورنمنت قرار دادید!", "You ranked #${RANK} in the last tournament. Thanks for playing!": "! شدید . ممنون که شرکت کردید ${RANK} شما در آخرین مسابقه رتبه ی", "Your account was rejected. Are you signed in?": "حساب شما رد شده است. آیا وارد حساب خود شده اید؟", + "Your ad views are not registering. Ad options will be limited for a while.": "بازدیدهای تبلیغاتی شما ثبت نمی شود. گزینه های تبلیغاتی برای مدتی محدود خواهد بود.", "Your copy of the game has been modified.\nPlease revert any changes and try again.": "نسخه بازی شما دستکاری شده است.\nلطفا تغییرات رو به حالت اول برگردونید و دوباره امتحان کنید.", "Your friend code was used by ${ACCOUNT}": "کد دوست شما استفاده شده توسط ${ACCOUNT}" }, @@ -1709,37 +1802,37 @@ "Balance Total Lives": "مجموعِ جانِ باقيمانده", "Bomb Spawning": "بازسازی بمب", "Chosen One Gets Gloves": "دستکش بکس برای مالک پرچم", - "Chosen One Gets Shield": "قرار دادن سپر برای مالک پرچم", + "Chosen One Gets Shield": "دادن سپر به مالک پرچم", "Chosen One Time": "انتخاب زمان", "Enable Impact Bombs": "فعالسازی تاثیر بمب ها", "Enable Triple Bombs": "فعال کردن بمب سه گانه", "Entire Team Must Finish": "کل تیم باید نابود بشن", "Epic Mode": "حرکت آهسته", - "Flag Idle Return Time": "پرچم زمان بازگشت بیدرنگ", + "Flag Idle Return Time": "زمان بازگشت پرچم رهاشده", "Flag Touch Return Time": "زمان بازگشت لمس پرچم", "Hold Time": "زمان نگه داشتن", "Kills to Win Per Player": "تعداد کشته برای پیروز شدن", - "Laps": "دور ها", + "Laps": "دورها", "Lives Per Player": "تعداد جان برای بازیکن", "Long": "طولانی", "Longer": "خیلی طولانی", - "Mine Spawning": "کار گذاری مین", + "Mine Spawning": "کاشت مین", "No Mines": "بدون مین", "None": "هيچ", "Normal": "معمولی", "Pro Mode": "حالت حرفه ای", - "Respawn Times": "مدت زمان دوباره زنده شدن", - "Score to Win": "امتیاز بگیر تا برنده شی", + "Respawn Times": "زمان دوباره زنده شدن", + "Score to Win": "تعداد امتیاز برای برنده شدن", "Short": "کوتاه", "Shorter": "خیلی کوتاه", - "Solo Mode": "حالت انفرادی", + "Solo Mode": "حالت تکی", "Target Count": "تعداد هدف", "Time Limit": "محدودیت زمانی" }, "statements": { - "${TEAM} is disqualified because ${PLAYER} left": "بازی‌رو ترک کرد ${PLAYER} ردصلاحیت شد چون ${TEAM}", - "Killing ${NAME} for skipping part of the track!": "! از بین رفت چون جِرزنی کرد ${NAME}", - "Warning to ${NAME}: turbo / button-spamming knocks you out.": "هشدار به ${NAME}: توربو/اسپم دادن شما را مسدود میکند" + "${TEAM} is disqualified because ${PLAYER} left": "⁦بازی را ترک کرد ⁦${PLAYER}⁦ ⁦رد صلاحیت شد چون ⁦${TEAM}⁦", + "Killing ${NAME} for skipping part of the track!": "!⁦به‌خاطر جرزنی از بین رفت ⁦${NAME}⁦", + "Warning to ${NAME}: turbo / button-spamming knocks you out.": ".⁦توربو/اسپم دادن شما را مسدود می‌کند :⁦${NAME}⁦ هشدار به" }, "teamNames": { "Bad Guys": "آدم بد ها", @@ -1758,7 +1851,7 @@ "Don't spin for too long; you'll become dizzy and fall.": "زیاد به دور خودت نچرخ؛ سرگیجه می‌گیری و می‌افتی.", "Hold any button to run. (Trigger buttons work well if you have them)": "هر دکمه رو با زدن روش کار میکنه همه دکمه ها بدرستی کار میکنه اگه صحیح زده بشن", "Hold down any button to run. You'll get places faster\nbut won't turn very well, so watch out for cliffs.": "موقع حرکت یه دکمه رو همزمان نگهدار مثلا مشت رو تا سرعت حرکت بیشتر شه\nاما توی سرعت زیاد مراقب پایین افتادن از صخره باش", - "Ice bombs are not very powerful, but they freeze\nwhoever they hit, leaving them vulnerable to shattering.": "بمب های یخی برا نابودی خیلی قدرتمند نیستن ولی نزدیک هر کی منفجر بشه منجمد میشه \n اگه نمیخواید منجمد و آسیب پذیر بشوید نزدیک این بمب ها نمونید", + "Ice bombs are not very powerful, but they freeze\nwhoever they hit, leaving them vulnerable to shattering.": "بمب های یخی برا نابودی خیلی قدرتمند نیستن ولی نزدیک هر کی منفجر بشه منجمد میشه \n اگه نمیخواید منجمد و آسیب پذیر بشید نزدیک این بمب ها نمونید", "If someone picks you up, punch them and they'll let go.\nThis works in real life too.": "اگه کسی شما رو از زمین بلند کرد با مشت و پرش و کشیدن اجازه \nحرکت بهش ندید تا رها بشید", "If you are short on controllers, install the '${REMOTE_APP_NAME}' app\non your mobile devices to use them as controllers.": "اگر روی کنترلرها کوتاه هستید، برنامه '${REMOTE_APP_NAME}' را نصب کنید\nبر روی دستگاه های تلفن همراه خود را میتوان به عنوان کنترلر استفاده کنید.", "If you get a sticky-bomb stuck to you, jump around and spin in circles. You might\nshake the bomb off, or if nothing else your last moments will be entertaining.": "اگر بمب چسبنده ای به شما چسبید به اطراف بپرید و بچرخید\n😅کار دیگری از شما بر نمی‌آید", @@ -1802,83 +1895,85 @@ "cpuBenchmarkText": "آموزش اجرای بهتر بازی در بدترین وضعیت سرعت بازی در درجه اول تست سرعت پردازنده", "phrase01Text": "!سلام جیگر", "phrase02Text": "به ${APP_NAME} خوش اومدی!", - "phrase03Text": "اینا چندتا آموزش برای کنترل شخصیتت هستن:", - "phrase04Text": ".بر پایه فیزیک هستن ${APP_NAME} بیشتر چیز ها توی", - "phrase05Text": "...مثلا وقتی که مشت میزنی", - "phrase06Text": ".آسیب ها بر اساس سرعت حرکت مشتت هستن", - "phrase07Text": "...چجوری برات دلقک بازی در میاره ${NAME} نگاه کن", + "phrase03Text": "چندتا آموزش واسه کنترل بازیکنت آوردم:", + "phrase04Text": "بیشتر چیزها توی ${APP_NAME} بر پایه‌ی فیزیک هستن.", + "phrase05Text": "...مثلا وقتی که مشت می‌زنی", + "phrase06Text": "…هر چی سرعت حرکتت بیشتر باشه، ضربه‌ت قوی‌تره.", + "phrase07Text": "می‌بینی؟ چون ثابت وایسادی ضربه‌ت به ${NAME} زیاد آسیب نمی‌رسونه.", "phrase08Text": ".باید حالشو بگیری! حالا باید بپری و بچرخی تا سرعت بگیری", "phrase09Text": ".آهان، حالا بهتر شد", - "phrase10Text": ".دویدن هم موثره", + "phrase10Text": ".دویدن هم کارسازه", "phrase11Text": "برای دویدن یه دکمه رو نگه دار و حرکت کن.", - "phrase12Text": "اگه میخوای یه مشت خفن بزنی که فکّش بیاد پایین، باید بدویی و بچرخی.", - "phrase13Text": ".${NAME} اوخ، بابت اینکه فکّت اومد پایین ببخشید", - "phrase14Text": ".${NAME} خیلی چیزها رو میشه برداشت و پرتاب کرد. مثل پرچم... یا", - "phrase15Text": "حالا وقتشه، وقت بمب هاست.", + "phrase12Text": "اگه می‌خوای یه مشت خفن بزنی که فکش بیاد پایین، باید بدویی و بچرخی.", + "phrase13Text": "اوخ! بابت اینکه فکت اومد پایین ببخشید ${NAME} جان.", + "phrase14Text": "خیلی چیزها رو می‌شه برداشت و پرتاب کرد. مثل پرچم... یا ${NAME}", + "phrase15Text": "نوبتیم باشه، نوبت بمب‌هاست.", "phrase16Text": "بمب انداختن یه کم تمرین لازم داره.", "phrase17Text": "اوخ اوخ! اصلا پرتاب خوبی نبود.", - "phrase18Text": "حرکت کردن باعث میشه تا بتونی دورتر پرتاب کنی.", - "phrase19Text": "پریدن باعث میشه تا بمب بیشتر ارتفاع بگیره.", - "phrase20Text": "اگه موقع پرتاب بچرخی که بیشتر پرت میشه ولی ممکنه ندونی کجا فرود میاد.", - "phrase21Text": "زمانبندی برای پرتاب بمب میتونه چالشی باشه.", + "phrase18Text": "حرکت کردن باعث می‌شه تا بتونی دورتر پرتاب کنی.", + "phrase19Text": "پریدن باعث می‌شه تا بمب بیشتر ارتفاع بگیره.", + "phrase20Text": "اگه موقع پرتاب بچرخی که بیشتر پرت می‌شه ولی ممکنه ندونی کجا فرود میاد.", + "phrase21Text": "زمان‌بندی برای پرتاب بمب می‌تونه چالشی باشه.", "phrase22Text": "لعنتی.", "phrase23Text": "قبل از انداختن بمب یکم صبر کن تا فیتیله‌ش بسوزه و بعد پرتابش کن.", - "phrase24Text": "هورا! پخته شد.", - "phrase25Text": "خب، اینم از همه چیز هایی که باید بدونی.", + "phrase24Text": "هورا! کتلت شد.", + "phrase25Text": "خب، این هم از این.", "phrase26Text": "حالا مثل یه ببر همه رو نابود کن.", - "phrase27Text": "این آموزش ها رو به یاد داشته باش، و مطمئن باش که زنده برمی‌گردی!", - "phrase28Text": "خب... شاید زنده برگردی...", - "phrase29Text": "به هر حال موفق باشی.", + "phrase27Text": "این آموزش‌ها رو به یاد داشته باش، و مطمئن باش که زنده برمی‌گردی!", + "phrase28Text": "…خب، شاید زنده برگردی…", + "phrase29Text": "به هر حال موفق باشی!", "randomName1Text": "فریدون", "randomName2Text": "حشمت", "randomName3Text": "برزو", - "randomName4Text": "حیدر", + "randomName4Text": "جلال", "randomName5Text": "سیروس", "skipConfirmText": ".واقعا میخوای از آموزش رد بشی؟ هر کلیدی رو بزن تا رد بشیم", "skipVoteCountText": "نفر خواستار رد شدن از آموزش هستند ${TOTAL} نفر از ${COUNT}", "skippingText": "رد شدن از آموزش...", - "toSkipPressAnythingText": "(هر کلیدی را بزنید تا از آموزش خارج شوید)" + "toSkipPressAnythingText": "(برای رد شدن از آموزش می‌تونید روی هر چیزی بزنید)" }, - "twoKillText": "کشتن همزمان دونفر", + "twoKillText": "دو نفرو با هم کشتی!", "uiScaleText": "UI مقیاس", "unavailableText": "در دسترس نیست", - "unconfiguredControllerDetectedText": ":کنترول پیکربندی نشده شناسایی شد", + "unclaimedPrizesText": "شما جایزه های بی ادعایی دارید", + "unconfiguredControllerDetectedText": ":کنترلر پیکربندی نشده شناسایی شد", "unlockThisInTheStoreText": ". این مورد باید در فروشگاه باز شود", - "unlockThisProfilesText": "برای ایجاد بیش از ${NUM} پروفال٫ احتیاج به این موارد دارید:", + "unlockThisProfilesText": "برای ایجاد بیش از ${NUM} پروفایل٫ احتیاج به این موارد دارید:", "unlockThisText": ": برا باز کردن قفل این شما نیاز دارید که", "unsupportedControllerText": "متاسفانه کنترلر \"${NAME}\" پشتیبانی نمی‌شود.", - "unsupportedHardwareText": "با عرض پوزش، این سخت افزار توسط این ساخت بازی پشتیبانی نمی شود.", - "upFirstText": "برای بار اول:", - "upNextText": "${COUNT} بعدی در بازی", + "unsupportedHardwareText": "با عرض پوزش، این سخت افزار توسط این بازی پشتیبانی نمی شود.", + "upFirstText": "⁦بازی اول⁦:", + "upNextText": "⁦${COUNT} ⁦در ادامه در بازی⁦:", "updatingAccountText": "... در حال به‌روزرسانی حساب", "upgradeText": "ارتقا", "upgradeToPlayText": "بازی را از فروشگاه خریداری کنید تا این قابلیت فعال شود. ${PRO} نسخه ی", "useDefaultText": "استفاده از پیش فرض", - "userSystemScriptsCreateText": "اسناد ساخت حساب کاربری", - "userSystemScriptsDeleteText": "حذف اسناد کاربری سیستم", + "userSystemScriptsCreateText": "ایجاد اسکریپت‌های سیستمی کاربر", + "userSystemScriptsDeleteText": "حذف اسکریپت‌های سیستمی کاربر", "usesExternalControllerText": "این بازی از یک کنترلر خارجی برای ورودی استفاده می کند.", "usingItunesText": "استفاده از برنامه ی موسیقی برای موسیقی متن...", "usingItunesTurnRepeatAndShuffleOnText": "مطمین شید که شافل روشن است و تکرار کنید همه رو در آیتونز", "v2AccountLinkingInfoText": "برای پیوند دادن حساب‌های V2، از دکمه «مدیریت حساب» استفاده کنید.", + "v2AccountRequiredText": "این به یک حساب V2 نیاز داره !. حسابتو ارتقا بده دوباره امتحان کن.", "validatingTestBuildText": "... در حال بررسی حالت آزمایشی", "viaText": "از طریق", "victoryText": "پیروز شدی!", - "voteDelayText": ".ثانیه رای گیری کنید ${NUMBER} شما نمیتوانید به مدت", - "voteInProgressText": ".یک رای گیری در حال انجام است", - "votedAlreadyText": ".شما رای داده اید", - "votesNeededText": ".رای نیاز است ${NUMBER}", + "voteDelayText": ".ثانیه رای گیری کنی ${NUMBER} نمیتونی به مدت", + "voteInProgressText": "یه رای گیری داره انجام میشه.", + "votedAlreadyText": "تو که رای دادی.", + "votesNeededText": ".رای لازمه ${NUMBER}", "vsText": "در برابر", - "waitingForHostText": "(ادامه بدهد ${HOST} صبر کنید تا)", + "waitingForHostText": "( ادامه بده ${HOST} صبر کن تا)", "waitingForPlayersText": "...انتظار برای پیوستن بازیکنان", "waitingInLineText": "در صف انتظار (پارتی تکمیل است) ...", "watchAVideoText": "یک ویدئو ببینید", - "watchAnAdText": "تبلیغ ببین", + "watchAnAdText": "یه تبلیغ ببینید", "watchWindow": { "deleteConfirmText": "حذف شود؟\"${REPLAY}\"", "deleteReplayButtonText": "حذف\nبازبخش", - "myReplaysText": "بازی‌های ضبط‌شدهٔ من", + "myReplaysText": "بازی‌های ضبط‌شده‌ی من", "noReplaySelectedErrorText": "بازپخشی انتخاب نشده", - "playbackSpeedText": "سرعت باز پخش:${SPEED}", + "playbackSpeedText": "${SPEED} :سرعت پخش", "renameReplayButtonText": "تغییرنام\nبازبخش", "renameReplayText": ":به \"${REPLAY}\"تغییر نام", "renameText": "تغییر نام", @@ -1895,7 +1990,7 @@ "wellSureText": "! حتما", "whatIsThisText": "این چیه؟", "wiimoteLicenseWindow": { - "titleText": "DarwiinRemote Copyright" + "titleText": "کشیدن حق برداشت کنترلر" }, "wiimoteListenWindow": { "listeningText": "گوش دادن به Wiimotes ...", @@ -1907,11 +2002,11 @@ "listenText": "گوش بده", "macInstructionsText": "اطمینان حاصل کنید که رشته خود خاموش است و بلوتوث را فعال کنید\nدر مک خود را، و سپس دکمه \"گوش دهید\". پشتیبانی Wiimote می توانید\nیک کمی پوسته پوسته، بنابراین شما ممکن است باید سعی کنید چند بار\nقبل از شما یک اتصال.\nبلوتوث باید به 7 دستگاه های متصل رسیدگی کردن،\nهر چند مسافت پیموده شده شما ممکن است متفاوت باشد.\n\nBombSquad پشتیبانی از Wiimotes اصلی، Nunchuks،\nو کنترل کلاسیک.\nجدیدتر رشته از راه دور علاوه در حال حاضر بیش از حد کار\nاما با فایل پیوست است.", "thanksText": "تشکر از تیم ناظر\nبرای ایجاد این امکان", - "titleText": "Wiimote راه اندازی" + "titleText": "راه اندازی ویم‌اوت" }, - "winsPlayerText": "${NAME} برنده شد", - "winsTeamText": "${NAME} برنده شد", - "winsText": "${NAME} برنده شد", + "winsPlayerText": "!⁦برنده شد ⁦⁦${NAME}⁦⁦", + "winsTeamText": "!⁦برنده شد ⁦⁦${NAME}⁦⁦", + "winsText": "!⁦برنده شد ⁦⁦${NAME}⁦⁦", "workspaceSyncErrorText": "خطا در همگام‌سازی ${WORKSPACE}. برای جزئیات به لاگ مراجعه کنید.", "workspaceSyncReuseText": "نمی‌توان ${WORKSPACE} را همگام‌سازی کرد. استفادهٔ مجدد از نسخهٔ همگام‌سازی‌شده قبلی.", "worldScoresUnavailableText": "امتیاز های جهانی قابل دسترس نیستند.", @@ -1926,6 +2021,7 @@ "titleText": "${APP_NAME}:استفاده از کنترولر های ایکس باکس با" }, "yesAllowText": "!بله, اجازه داده میشود", - "yourBestScoresText": "بهترین امتیاز شما", - "yourBestTimesText": "بهترین زمان شما" + "yourBestScoresText": "بهترین امتیازات شما", + "yourBestTimesText": "بهترین زمان شما", + "yourPrizeText": ":جایزه شما" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/piratespeak.json b/dist/ba_data/data/languages/piratespeak.json new file mode 100644 index 0000000..dd7d5ac --- /dev/null +++ b/dist/ba_data/data/languages/piratespeak.json @@ -0,0 +1,2015 @@ +{ + "accountSettingsWindow": { + "accountNameRules": "Arrrcount nammes carrnnot containn Peter Pan faces orrr otherrr special charraracters.", + "accountProfileText": "(ARRRccount Prrrofile)", + "accountsText": "Arrrrrcounts", + "achievementProgressText": "Arrrchivements: ${COUNT} out of ${TOTAL}", + "campaignProgressText": "Campaign Prrrrrogresss [Harrrrrd]: ${PROGRESS}", + "changeOncePerSeason": "Pirate can only change this once perrr season arrrr.", + "changeOncePerSeasonError": "Yer sure to bay over til' the season rolls over, Arg! (${NUM} days)", + "createAnAccountText": "Crrreate an Ship", + "customName": "Make yer own name", + "deleteAccountText": "Delete Account", + "googlePlayGamesAccountSwitchText": "You want to use me Google acounttt?\nYou bettterrr use Google Play Games!", + "linkAccountsEnterCodeText": "Put in Cipherrr, will ya?", + "linkAccountsGenerateCodeText": "Grrrab the Chiperrr", + "linkAccountsInfoText": "(To boast yer exploits in town, and acrross different platforrms, and acrross yer frens)", + "linkAccountsInstructionsNewText": "To link two pirates, generrrate a code on the first\nand enterrr that code on the second. Data from the\nsecond account will then be shared between both pirates.\n(The first pirate will get alzheimer)\n\nYer can link up to ${COUNT} pirrrates. (yarrr)\n\nSINK ME! If a pirate links to another, yer can't\ndance with Jack Ketch together! (Which son of a biscuit\neater made up this lie?)", + "linkAccountsInstructionsText": "Err, to bundle two rekconings, grab a cipherrr on one\nof the consoole 'en push in the chyper on the other.\nErrrnings and golds gotta be merged.\nYerr could bundle to ${COUNT} reckonings, captain.\n\nBe safe out therrrre; things can't be 'err reverted!", + "linkAccountsText": "Bundle 'dem Rekconings", + "linkedAccountsText": "Reckonings bundled:", + "manageAccountText": "Marnage Arrrrcount", + "nameChangeConfirm": "Charrrnge your arrcount nammme to ${NAME}?", + "resetProgressConfirmNoAchievementsText": "This will rrreset your co-op prrrogressss and\nlocal high-scorrrres (but not your playing caards).\nThis cannot be undone. Are you sure captain?", + "resetProgressConfirmText": "This will rrreset your co-op prrrogressss,\narrrchievements, and local high-scorrres\n(but not yourrr tickets). This cannot\nbe undone. Arrrre you surrre captain?", + "resetProgressText": "Rrreset Prrrogressss", + "setAccountName": "Set Arrrcount Namme", + "setAccountNameDesc": "Select the name to display forrr yourrr \naccounts. Pirate can use the name frrrom one\n of yourrr linked accounts orrr crrreate unique custom name arrr.", + "signInInfoText": "Sign in to collect caards, compete with battle ships,\nand share prrrogressss across yer devices.", + "signInText": "Sign in, matey!", + "signInWithAnEmailAddressText": "Signnn innn with an eeemail addddresssssssr", + "signInWithDeviceInfoText": "(an automatic 'you' only available frrom this plastic thing you'rre holding right therre)", + "signInWithDeviceText": "Sign in to the pirate ship with device arrcount", + "signInWithGameCircleText": "Sail with yer Game Circle", + "signInWithGooglePlayText": "Set sail with Google Play", + "signInWithTestAccountInfoText": "(ye ole' account type; here on out use yer device account)", + "signInWithTestAccountText": "Sign in with test account arrr.", + "signInWithText": "Avast ye! Be accompanied by ${SERVICE}, ye scallywags!", + "signInWithV2InfoText": "(Arrrrcounts that there works on any of yer ships arrrrr!)", + "signInWithV2Text": "Just enter with yer ${APP_NAME} account there arrr!", + "signOutText": "Leaving the sloop!", + "signingInText": "Signing in to the pirate ship!", + "signingOutText": "Signing out from the pirate ship!", + "testAccountWarningOculusText": "Warning: you are signing in with a \"test\" account.\nThis will be replaced with \"real\" accounts later this\nyear which will offer ticket purchasing and other features.\n\n\nFor now you'll have to earn all tickets in-game.", + "ticketsText": "yer playing cards: ${COUNT}", + "titleText": "Arrrcount", + "unlinkAccountsInstructionsText": "Set a pirate to walk the plank", + "unlinkAccountsText": "Unlink ye ole Accounts", + "unlinkLegacyV1AccountsText": "Get rrrrid of those old arrrcounts!", + "v2LinkInstructionsText": "Get this link as a ‘yer creation of accounts or enter in arrr!!!", + "viaAccount": "(by-way-of pirate ${NAME})", + "youAreSignedInAsText": "You be the pirate ship being:" + }, + "achievementChallengesText": "Arrrrchievement Challenges", + "achievementText": "Doubloon", + "achievements": { + "Boom Goes the Dynamite": { + "description": "Kill 3 bad scurvy dogs with tnt", + "descriptionComplete": "Got 3 knaves off the deck with a powder box", + "descriptionFull": "Clear 3 knaves off ${LEVEL} usin' a powderr box", + "descriptionFullComplete": "Clearred 3 knaves off ${LEVEL} usin' a powderr box", + "name": "Fire In Th’ Box" + }, + "Boxer": { + "description": "Beat all these buckos without any powderrr", + "descriptionComplete": "Victorrrious with no blassts", + "descriptionFull": "Complete ${LEVEL} without usin' any powderrr, no kornswoggle 'ere!", + "descriptionFullComplete": "Completed ${LEVEL} without usin' any powderrr, no kornswoggle 'ere!", + "name": "Boxrrr" + }, + "Dual Wielding": { + "descriptionFull": "Connnect 2 contrrrollerrrs (harrrdwarre or app)", + "descriptionFullComplete": "Ye’ave Connnected 2 contrrrollerrrs (harrrdwarre or app)", + "name": "Up For A Briny Duel" + }, + "Flawless Victory": { + "description": "Win without bein’ busted off by those stinky scurvies", + "descriptionComplete": "Wonn without bein’ busted off by those stinky scurvies", + "descriptionFull": "Win that ${LEVEL} thing without bein’ busted off by those stinky scurvies", + "descriptionFullComplete": "Win that ${LEVEL} thing without bein’ busted off by those stinky scurvies, all hands hoay for this handsome pirate", + "name": "Handsomely Won" + }, + "Free Loader": { + "descriptionFull": "Kick off a Fight-Outrageously game with 2+ joiners arrr!!!", + "descriptionFullComplete": "Emerged a Fight-Outrageously game with 2+ joiners arrr!!!", + "name": "A Carrier Fer Nothing" + }, + "Gold Miner": { + "description": "Rekt 6 bad guys wirrth land-mines", + "descriptionComplete": "Ye’ rekt 6 bad guys wirrth land-mines", + "descriptionFull": "Rekt 6 bad guys wirrth land-mines on ${LEVEL}", + "descriptionFullComplete": "Ye’ rekt 6 bad guys wirrth land-mines on ${LEVEL}", + "name": "Treasure Minerrrr" + }, + "Got the Moves": { + "description": "Win without fistfight some scaliwags or firing th’ hole", + "descriptionComplete": "Won without fistfight some scaliwags or firing th’ hole", + "descriptionFull": "Win ${LEVEL} without fistfight some scaliwags or firing th’ hole", + "descriptionFullComplete": "Won ${LEVEL} without fistfight some scaliwags or firing th’ hole", + "name": "Aye Aye I Got It" + }, + "In Control": { + "descriptionFull": "Ye connect a cutlass, can it be sharp or broken, tar!", + "descriptionFullComplete": "Blimey! me have cutlass like ye!", + "name": "Puppeteerrrr" + }, + "Last Stand God": { + "description": "Get 1,000 doubloons", + "descriptionComplete": "Ye' got 1,000 doubloons", + "descriptionFull": "Get 1,000 doubloons on ${LEVEL}", + "descriptionFullComplete": "Ye' got yer' 1,000 doubloons on ${LEVEL}", + "name": "${LEVEL} Cap'ain" + }, + "Last Stand Master": { + "description": "Get the damn 250 dbs", + "descriptionComplete": "Ye' got yer' 250 doubloons", + "descriptionFull": "Get 250 doubloons on ${LEVEL}", + "descriptionFullComplete": "Ye' got 250 doubloons on ${LEVEL}", + "name": "${LEVEL} Quartermaster!" + }, + "Last Stand Wizard": { + "description": "Loot 500 booty", + "descriptionComplete": "Looted 500 booty", + "descriptionFull": "Loot 500 booty around ${LEVEL} island", + "descriptionFullComplete": "Looted 500 booty over ${LEVEL} island", + "name": "${LEVEL} Privateer" + }, + "Mine Games": { + "description": "Flog 3 landlubbers with land-sharks", + "descriptionComplete": "Flogged 3 landlubbers with land-sharks", + "descriptionFull": "Flog 3 landlubbers with land-sharks around ${LEVEL} island", + "descriptionFullComplete": "Flogged 3 landlubbers with land-sharks over ${LEVEL} island", + "name": "Shark Games" + }, + "Off You Go Then": { + "description": "Maroon 3 landlubbers off the land", + "descriptionComplete": "Marooned 3 landlubbers off the land", + "descriptionFull": "Maroon 3 landlubbers off the ${LEVEL} island", + "descriptionFullComplete": "Marooned 3 landlubbers off the ${LEVEL} island", + "name": "Off Ye Go Then" + }, + "Onslaught God": { + "description": "Loot 5000 booty", + "descriptionComplete": "Looted 5000 booty", + "descriptionFull": "Loot 5000 booty around ${LEVEL} island", + "descriptionFullComplete": "Looted 5000 booty over ${LEVEL} island", + "name": "${LEVEL} Coffer" + }, + "Onslaught Master": { + "description": "Loot 500 booty", + "descriptionComplete": "Looted 500 booty", + "descriptionFull": "Loot 500 booty around ${LEVEL} island", + "descriptionFullComplete": "Looted 500 booty over ${LEVEL} island", + "name": "${LEVEL} Captain" + }, + "Onslaught Training Victory": { + "description": "Make em shark bait", + "descriptionComplete": "Made em shark bait", + "descriptionFull": "Make em shark bait in the ${LEVEL} ship", + "descriptionFullComplete": "Made em shark bait in the ${LEVEL} ship", + "name": "${LEVEL} Victory, Yo Ho Ho!" + }, + "Onslaught Wizard": { + "description": "Loot 1000 booty", + "descriptionComplete": "Looted 1000 booty", + "descriptionFull": "Loot 1000 booty around ${LEVEL} island", + "descriptionFullComplete": "Looted 1000 booty around ${LEVEL} island", + "name": "${LEVEL} Wizarrrrrrd" + }, + "Precision Bombing": { + "description": "Pirate strong, pirate don't need powerrrrups", + "descriptionComplete": "didn need those dumb cheats ehh?", + "descriptionFull": "get over ${LEVEL} island without pesky cheats", + "descriptionFullComplete": "got over ${LEVEL} island without pesky cheats, knew yer could manage it billy", + "name": "Powderrr Master" + }, + "Pro Boxer": { + "description": "a real pirate needs only them fists", + "descriptionComplete": "yer a real pirate ye know that?", + "descriptionFull": "Beat them enemies in ${LEVEL} island usin yer bare hands", + "descriptionFullComplete": "ya killed them enemies in ${LEVEL} island usin yer bare hands", + "name": "Fister" + }, + "Pro Football Shutout": { + "description": "keep them harrs out of our land", + "descriptionComplete": "kept them harrs out of our land (arrrr)", + "descriptionFull": "the best pirate is the one that keeps them harrs out of ${LEVEL} island", + "descriptionFullComplete": "yer the best pirate, raise the black jack! for the one who kept the harrs off of ${LEVEL}", + "name": "${LEVEL} Gatekeep" + }, + "Pro Football Victory": { + "description": "Take them ship down!", + "descriptionComplete": "Took em down", + "descriptionFull": "Destroy the enemy in island ${LEVEL}", + "descriptionFullComplete": "yer claimed ${LEVEL} as yer own. arrrr for the cap'ain!", + "name": "Ocean of ${LEVEL} claimer" + }, + "Pro Onslaught Victory": { + "description": "Take em all on", + "descriptionComplete": "ya claimed them ship like a pro (arrrrr wth is a pro?)", + "descriptionFull": "take over them flibustier's ship in ${LEVEL}", + "descriptionFullComplete": "crashed the enemy ship in the island of ${LEVEL} (yaarrrrrr!)", + "name": "Victor of ${LEVEL}" + }, + "Pro Runaround Victory": { + "description": "Keep em out of our ship!", + "descriptionComplete": "The ship is safe, chips ahoy everyone (cringe)", + "descriptionFull": "The enemies arrrrre freebooting our ship at ${LEVEL}, stop them!", + "descriptionFullComplete": "Ya kept those freebooters off at ${LEVEL}. Yet a great captain", + "name": "Freeboot Blocker (${LEVEL})" + }, + "Rookie Football Shutout": { + "description": "keep them harrs out of our land", + "descriptionComplete": "kept them harrs out of our land (arrrr)", + "descriptionFull": "Don't let any of themmm freebooters in our land on the ${LEVEL} island", + "descriptionFullComplete": "Didn't let em take the tiniest bit of ourrr prrrrescious ${LEVEL}", + "name": "${LEVEL} Gatekeep" + }, + "Rookie Football Victory": { + "description": "Take the ocean!", + "descriptionComplete": "Im tired of translating these (arrrrrrrr)", + "descriptionFull": "Rekt yer enemies in ${LEVEL}", + "descriptionFullComplete": "Rekted yer enemies in ${LEVEL} (YARRRRRRR)", + "name": "Ocean of ${LEVEL} Claimer" + }, + "Rookie Onslaught Victory": { + "description": "Make them walk yarrr plank", + "descriptionComplete": "Made em walk yarrr plank", + "descriptionFull": "Make them walk yarrr plank in ${LEVEL} island", + "descriptionFullComplete": "Made em walk yarrr plank in ${LEVEL} island", + "name": "Pirate of ${LEVEL} (yarrrr)" + }, + "Runaround God": { + "description": "get 2000 doubloons", + "descriptionComplete": "got them 2000 doubloons", + "descriptionFull": "get 2000 doubloons on ${LEVEL}", + "descriptionFullComplete": "got them 2000 doubloons on ${LEVEL}", + "name": "${LEVEL} Eric" + }, + "Runaround Master": { + "description": "get 500 doubloons", + "descriptionComplete": "got 500 doubloons, now we'rrrre talkin", + "descriptionFull": "get 500 doubloons on ${LEVEL} island", + "descriptionFullComplete": "got them 500 balloons (not doubloons, just balloons) (in ${LEVEL}, ofc)", + "name": "Pirate of The ${LEVEL}s" + }, + "Runaround Wizard": { + "description": "get 1000 doubloons", + "descriptionComplete": "got 1000 doubloons", + "descriptionFull": "get 1000 doubloons in ${LEVEL} island", + "descriptionFullComplete": "got them thousand doubloons on ${LEVEL} ehh", + "name": "${LEVEL} Captain" + }, + "Sharing is Caring": { + "descriptionFull": "share yer lives with a fellow pirrrate", + "descriptionFullComplete": "pirates arrrre happy together", + "name": "Sharrrrrre" + }, + "Stayin' Alive": { + "description": "yarr shall not die", + "descriptionComplete": "yer didn die at all", + "descriptionFull": "beat them lily livered bastards in ${LEVEL} without walkin the plank", + "descriptionFullComplete": "yar didn walk the plank in ${LEVEL} ya bootyful bastard", + "name": "Ya Ain't a Cat" + }, + "Super Mega Punch": { + "description": "have a fist strronger than 3 powderrrs", + "descriptionComplete": "yer fist shall kill a sharrrk", + "descriptionFull": "have yer fists kill a pirrrate with a single blow in ${LEVEL} island", + "descriptionFullComplete": "yer fists arrrre as strrrong as jack morrrgan's! ya prroved it in ${LEVEL}", + "name": "Jack's Strength" + }, + "Super Punch": { + "description": "be half a man jack was", + "descriptionComplete": "yer stepping in the right dirrection pirrate", + "descriptionFull": "be half a ma jack morgan was in ${LEVEL}", + "descriptionFullComplete": "yer stepping in morrgan's footsteps caip'ain, i saw what yarr did in ${LEVEL} island", + "name": "Half a Man" + }, + "TNT Terror": { + "description": "Kill 6 pirates with Sea mines", + "descriptionComplete": "Killed 6 pirates with Sea mines arrr", + "descriptionFull": "Kill 6 pirates with Sea mines on ${LEVEL}", + "descriptionFullComplete": "Killed 6 pirates with Sea mine on ${LEVEL} rawwrrrr", + "name": "Sea mine Mystery" + }, + "Team Player": { + "descriptionFull": "havve a ba'le between two groups with at least 4 pirrrates", + "descriptionFullComplete": "i hope ya did well", + "name": "Ship vs. Ship" + }, + "The Great Wall": { + "description": "Thou shalln't pass", + "descriptionComplete": "Stopped the pirate arrrrr", + "descriptionFull": "Stop all bad pirates on ${LEVEL} arghhhh....", + "descriptionFullComplete": "Stopped all enemies on ${LEVEL} arrrr", + "name": "The Deep Sea" + }, + "The Wall": { + "description": "Stop everrry single enemy ship", + "descriptionComplete": "Stopped every single enemy rawrrrr...", + "descriptionFull": "Stop every single enemy pirate on ${LEVEL} arghhhh", + "descriptionFullComplete": "Stopped every single pirate on ${LEVEL} arrrr", + "name": "The Sea" + }, + "Uber Football Shutout": { + "description": "Win without letting the pirates dock", + "descriptionComplete": "Won without letting the pirates dock", + "descriptionFull": "Win ${LEVEL} without letting the pirates dock", + "descriptionFullComplete": "Won ${LEVEL} without letting the pirates dock", + "name": "${LEVEL} faceoff" + }, + "Uber Football Victory": { + "description": "Win the duel", + "descriptionComplete": "Won the duel arghhhh", + "descriptionFull": "Win the duel in ${LEVEL}", + "descriptionFullComplete": "Won the duel in ${LEVEL}", + "name": "${LEVEL} Victory" + }, + "Uber Onslaught Victory": { + "description": "Truth shall prevail", + "descriptionComplete": "Sweet victory mate", + "descriptionFull": "Defeat all waves in ${LEVEL}", + "descriptionFullComplete": "Defeated all waves in ${LEVEL}", + "name": "${LEVEL} Victory" + }, + "Uber Runaround Victory": { + "description": "Complete all waves arrrrr", + "descriptionComplete": "Completed all waves arrrr", + "descriptionFull": "Complete all waves on ${LEVEL} arrrr", + "descriptionFullComplete": "Completed all waves on ${LEVEL} arrrr", + "name": "aye ${LEVEL} Victory" + } + }, + "achievementsRemainingText": "Treasures Remaining:", + "achievementsText": "Treasures", + "achievementsUnavailableForOldSeasonsText": "Sorry, treasure book is not found for old seasons. arrrghhhhh", + "activatedText": "${THING} arrrrctivated.", + "addGameWindow": { + "getMoreGamesText": "Get More Rigs...", + "titleText": "Add Rig" + }, + "addToFavoritesText": "Plunder to Favorites", + "addedToFavoritesText": "Addin' '${NAME}' to yer treasure trove o' Favorites.", + "allText": "All", + "allowText": "Permit", + "alreadySignedInText": "Ye ship is being controlled by a privateer;\nswap ships or track down and flog the privateer on ye ship and try again.\nFlank em out!", + "apiVersionErrorText": "We can't hoist the module ${NAME} aboard; it be aimin' for api-version ${VERSION_USED}; we be needin' api-version ${VERSION_REQUIRED}.", + "applyText": "APPLY!!!!", + "areYouSureText": "Are ya sure cap'ain?", + "audioSettingsWindow": { + "headRelativeVRAudioInfoText": "(\"Auto\" enables this only when headphones are plugged in)", + "headRelativeVRAudioText": "Cap'n's ear-beguilin' VR sound", + "musicVolumeText": "How Loud's t'e Shanties", + "soundVolumeText": "How Loud's t'e Bombs", + "soundtrackButtonText": "Chanties", + "soundtrackDescriptionText": "(pick ye own shanty f'r t'e battles)", + "titleText": "Sounds" + }, + "autoText": "Arr-uto", + "backText": "Rear", + "banThisPlayerText": "Banish This Pirate Out!", + "bestOfFinalText": "Finest-of-${COUNT} End", + "bestOfSeriesText": "Finest of ${COUNT} drinks:", + "bestRankText": "Ye worst is #${RANK}, matey", + "bestRatingText": "Ye greatest loot is ${RATING}", + "betaErrorText": "This'n ship don't float anymore; time t'e check f'r a new 'un.", + "betaValidateErrorText": "Don't know if'n t'e ship's float'n. (me'be ye net's broken?)", + "betaValidatedText": "This Ship Floats; Have Fun!", + "bombBoldText": "KABOOM", + "bombText": "Kaboomy", + "boostText": ">Rum", + "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} is arranged in t'e Wheel itself.", + "buttonText": "stud", + "canWeDebugText": "Would'n ye mind if'n ye Ship automatically sends crew\nreports o' bugs, crashes n' basic usage t' t'e shipwright?\n\nT'e report hasn't any personal stuff in it n' will help t'\nkeep t'e ${APP_NAME} ship sailin' smoothly n' wi'out any bugs.", + "cancelText": "Abandon", + "cantConfigureDeviceText": "${DEVICE} can nay be altered", + "challengeEndedText": "This scramble is finished.", + "chatMuteText": "Close Ears", + "chatMutedText": "Ears Closed", + "chatUnMuteText": "Open Ears", + "chests": { + "prizeOddsText": "Yer chances o' 'avin'", + "reduceWaitText": "Travel Faster", + "slotDescriptionText": "Tis' be space for holdin yer treasure.\n\nEarn treasure by going on battles,\ngetting in tourrrrnaments, and getting \nmedals.", + "slotText": "Room for Beauty ${NUM}", + "slotsFullWarningText": "WARRNIN': All yer room for treasure chests are used.\nIf ye find any booty, it'll be goin' to the ocean.", + "unlocksInText": "rots open in" + }, + "choosingPlayerText": "", + "claimText": "Claim yer bounty", + "codesExplainText": "Codes be provided by the scallywag developer to \nspy out and right pirate troubles.", + "completeThisLevelToProceedText": "Ye be need'n finish this'n\nwaters t' sail further!", + "completionBonusText": "Loot f'r Finish'n it!", + "configControllersWindow": { + "configureControllersText": "Sharpen Cutlasses", + "configureGamepadsText": "Change ye Ship's Wheels", + "configureKeyboard2Text": "Arrange ye Keyboard (P2)", + "configureKeyboardText": "Arrange ye Keyboard", + "configureMobileText": "Set up some Planks as Cutlasses", + "configureTouchText": "Arrange Fingernails", + "ps3Text": "PS3 Cutlasses", + "titleText": "Cutlasses", + "wiimotesText": "Wiilasses", + "xbox360Text": "TangerineBox 360 Cutlasses" + }, + "configGamepadSelectWindow": { + "androidNoteText": "Entry: cutlass support varies by hand and Bone type.", + "pressAnyButtonText": "Touc' any studs on t'e cutlass\n ye want to arrange...", + "titleText": "Arrange Cutlasses" + }, + "configGamepadWindow": { + "advancedText": "Complicate", + "advancedTitleText": "Complicated Cutlass Sharpening", + "analogStickDeadZoneDescriptionText": "(increase this if ye character be move'n when ye let go the stick)", + "analogStickDeadZoneText": "Blade Blind Spot", + "appliesToAllText": "(applies to all cutlasses of t'is class)", + "autoRecalibrateDescriptionText": "(enable this if ye character can nay move at full ahead)", + "autoRecalibrateText": "Auto-Realign Blade", + "axisText": "compass", + "clearText": "flog", + "dpadText": "diarrrrrheapad", + "extraStartButtonText": "Extra Shiny Stud", + "ifNothingHappensTryAnalogText": "If only air blows, try using t'e blade instead.", + "ifNothingHappensTryDpadText": "If only air blows, try using t'e diarrrrrheapad instead.", + "ignoreCompletelyDescriptionText": "(makes t'is cutlass useless, can not affect a thing)", + "ignoreCompletelyText": "Avoid Cutlass At All Costs", + "ignoredButton1Text": "Avoided Stud 1", + "ignoredButton2Text": "Avoided Stud 2", + "ignoredButton3Text": "Avoided Collision", + "ignoredButton4Text": "Arrrvoided Stud Four", + "ignoredButtonDescriptionText": "(use t'is to stop ye 'home' or 'sync' stud from affecting t'e B.O.A.T)", + "pressAnyAnalogTriggerText": "Touc'h any upper blade...", + "pressAnyButtonOrDpadText": "Touc' any stud or diarrrrheapad...", + "pressAnyButtonText": "Touc' a stud...", + "pressLeftRightText": "Touc' right or left...", + "pressUpDownText": "Touc' above or below...", + "runButton1Text": "Run Stud 1", + "runButton2Text": "Run Stud 2", + "runTrigger1Text": "Run Upper Blade 1", + "runTrigger2Text": "Run Upper Blade 2", + "runTriggerDescriptionText": "(analog upper blades let ye run like a briney deep turtle)", + "secondHalfText": "Use t'is to arrange t'e second half\nof a 2-cutlasses-in-1 sword that\ns'ows up as a single cutlass.", + "secondaryEnableText": "Permit", + "secondaryText": "Shared Cutlass", + "startButtonActivatesDefaultDescriptionText": "(t'row t'is off if yer start stud is more of a 'menu' stud)", + "startButtonActivatesDefaultText": "Start Stud Arrctivates Default Spyglass", + "titleText": "Cutlass Arrangement", + "twoInOneSetupText": "2-in-1 Cutlass Arrangement", + "uiOnlyDescriptionText": "(heave to t'is cutlass from truly slashing anyone)", + "uiOnlyText": "Allow Only for B.O.A.T Use", + "unassignedButtonsRunText": "Every No Use Studs Run", + "unsetText": "", + "vrReorientButtonText": "HATR Realign Stud" + }, + "configKeyboardWindow": { + "configuringText": "Arranging ${DEVICE}, Ahoy!", + "keyboard2NoteText": "Entry 63: most boards can only register a few touc'es at\nonce, so 'aving a second board buccaneer may work better\nif t'ere is a separate board attac'ed for t'em to use.\nNote that ye'll still need to assign unique studs to the\ntwo buccaneers even in that case." + }, + "configTouchscreenWindow": { + "actionControlScaleText": "Size Of The Wheels", + "actionsText": "Arrrctions", + "buttonsText": "studs", + "dragControlsText": "< drag around the stuff to place where ye want >", + "joystickText": "joyblade", + "movementControlScaleText": "Size Of The Ship", + "movementText": "Maneuver", + "resetText": "Re-Arrange", + "swipeControlsHiddenText": "Dispose of T'e Arrows on Yer Front", + "swipeInfoText": "'Swipe' style tec'niques take a little getting used to but\nmake it easier to play wit'out looking at t'e tec'niques.", + "swipeText": "swipe", + "titleText": "Arrange Fingernails" + }, + "configureDeviceInSystemSettingsText": "${DEVICE} can be rigged in the System Settings app.", + "configureItNowText": "Arrange the stuff now?", + "configureText": "Arrange", + "connectMobileDevicesWindow": { + "amazonText": "Amazon Bladestore", + "appStoreText": "Blade Store", + "bestResultsText": "For best results ye'll need a water-free ship network. Ye can\nreduce ship lag by turning off other wireless boats, by\nplaying close to your ship 'eart, and by connecting the\ngame captain directly to the network via ethernet.", + "explanationText": "To use a plank or a larger plank as a wireless cutlass,\nadquire t'e \"${REMOTE_APP_NAME}\" cog on it. Any number of planks\ncan connect to a ${APP_NAME} battle over Se-As, and it's free of cost!", + "forAndroidText": "For Boatroid:", + "forIOSText": "for iBiteS:", + "getItForText": "Get ${REMOTE_APP_NAME} for iBiteS at t'e Banana App Store\nor for Boatroid at the Hoogle's Rig Store or Aazon's Bladestore", + "googlePlayText": "Hoogle's Rig", + "titleText": "Using Planks as Cutlasses:" + }, + "continuePurchaseText": "Proceed for ${PRICE}, matey?", + "continueText": "Proceed", + "controlsText": "Cuts", + "coopSelectWindow": { + "activenessAllTimeInfoText": "T'is does not apply to t'e all-time finest pirate status", + "activenessInfoText": "T'is multiplier rises on days w'en ye\nfind coffers and drops on days w'en ye break a leg. AAAAARRRRGGGGHHHH!!!", + "activityText": "Nauticals", + "campaignText": "Champagne", + "challengesInfoText": "Earn prizes for completing mini-games.\n\nPrizes and difficulty levels increase\neach time a challenge is completed and\ndecrease when one expires or is forfeited.", + "challengesText": "Trrravel The Lands", + "currentBestText": "Whippsnapper's Goldies", + "customText": "Yarr Choice", + "entryFeeText": "Give Treasure!!", + "forfeitConfirmText": "Give up yarr treasure?!?", + "forfeitNotAllowedYetText": "Not yet arr!! Continue!!", + "forfeitText": "Sail the seas again!", + "multipliersText": "Extrra Help", + "nextChallengeText": "Next Trrreasure", + "nextPlayText": "Only get playyerr at", + "ofTotalTimeText": "yet ${TOTAL}", + "playNowText": "Yarr go!!", + "pointsText": "Doubloons", + "powerRankingFinishedSeasonUnrankedText": "(ship tourrnament end in which ya lad did not get)", + "powerRankingNotInTopText": "(yarr not in goodie ${NUMBER})", + "powerRankingPointsEqualsText": "= ${NUMBER} dbs", + "powerRankingPointsMultText": "(x ${NUMBER} dbs)", + "powerRankingPointsText": "${NUMBER} dbs", + "powerRankingPointsToRankedText": "(${CURRENT} o' ${REMAINING} dbs)", + "powerRankingText": "Yarr Goods", + "prizesText": "Me treasure!", + "proMultInfoText": "Yarr lad if had ${PRO}\nCould get trreasury ${PERCENT}% good extrras!!", + "seeMoreText": "All best ships..arr..", + "skipWaitText": "Skipperr, Wait", + "timeRemainingText": "Yarr Time", + "toRankedText": "Lad not goodie", + "totalText": "yarr result", + "tournamentInfoText": "Yarr get treasure to see whos\nBetter at Pirate Traveling!\n\nYarr will also receive a bit\nof goodies from the trreasure.", + "welcome1Text": "Arrr! This is group ${LEAGUE}. Yarr can get good\nat group best by gettin good results,receiving at\nthe trreasure book,and win trreasure at trreasure hunt.", + "welcome2Text": "Yarr can gett the goodies frrom the same hunts.\nThe goodies can be used to hirree new pirates,\nislands,adventure,enter treasure hunting, and morree.", + "yourPowerRankingText": "Yarr best evar:" + }, + "copyConfirmText": "Put that rrvicious text to your boat!", + "copyOfText": "${NAME} Take", + "copyText": "Take", + "createAPlayerProfileText": "Make a new pirate?", + "createEditPlayerText": "", + "createText": "Make", + "creditsWindow": { + "additionalAudioArtIdeasText": "Supplymental Audio, Early Artwork, and Ideas by ${NAME}, Ahoy!", + "additionalMusicFromText": "Supplymental chantey from ${NAME}", + "allMyFamilyText": "All of me buckos and hearties w'o 'elped me learn to be a true pirate", + "codingGraphicsAudioText": "Building, Paint, and Mansail by ${NAME}", + "languageTranslationsText": "Over Sea Buccaneers:", + "legalText": "Letters of Marque:", + "publicDomainMusicViaText": "Chanties over ${NAME}", + "softwareBasedOnText": "T'is jacob's ladder is based in part on t'e work of ${NAME}", + "songCreditText": "${TITLE} Song by ${PERFORMER}\nInvented by ${COMPOSER}, Arranged by ${ARRANGER}, S'ared by ${PUBLISHER},\nCourtesy of ${SOURCE}", + "soundAndMusicText": "Screams and Chanteys:", + "soundsText": "Burps (${SOURCE}):", + "specialThanksText": "Special Words:", + "thanksEspeciallyToText": "T'is word is especially special to ${NAME}", + "titleText": "${APP_NAME} Entries", + "whoeverInventedCoffeeText": "Who'ver thought o' rum" + }, + "currentStandingText": "Yer current leg is #${RANK}", + "customizeText": "Plunder...", + "deathsTallyText": "${COUNT} scuttled", + "deathsText": "Shark Baits", + "debugText": "random", + "debugWindow": { + "reloadBenchmarkBestResultsText": "Yarr good if you used the high graphic!", + "runCPUBenchmarkText": "Watch the fight with yarr CPU", + "runGPUBenchmarkText": "Watch fight yarr GPU", + "runMediaReloadBenchmarkText": "Re-use tha boat.", + "runStressTestText": "Pirate rrrandomness fighting", + "stressTestPlayerCountText": "Ammount of lads", + "stressTestPlaylistDescriptionText": "Ship", + "stressTestPlaylistNameText": "Yarr ship", + "stressTestPlaylistTypeText": "Yarr Ship Type", + "stressTestRoundDurationText": "Time to go", + "stressTestTitleText": "Piratey Rrrandoms Fight", + "titleText": "Computer Fights And Piratey Randomness", + "totalReloadTimeText": "Yarr knots at reuse is ${TIME} yarr see label for morree" + }, + "defaultGameListNameText": "The Norrmal Ship Forr ${PLAYMODE}", + "defaultNewGameListNameText": "Me Ship Forr ${PLAYMODE}}", + "deleteText": "Get rrid", + "demoText": "show", + "denyText": "Yar not!", + "deprecatedText": "Oldie", + "descriptionText": "Knowabouts", + "desktopResText": "Yarr ship's size", + "deviceAccountUpgradeText": "Yarr!!\nYou're using a ship that's a device!\nThe device ships (like ${NAME}) will be plungered later on!!\nYarr better use the v2 ships and we'll see so!", + "difficultyEasyText": "Lil' Buccaneer", + "difficultyHardOnlyText": "Privateers Only", + "difficultyHardText": "Privateer", + "difficultyHardUnlockOnlyText": "T'is land can only be looted in privateer mode.\nYe think yer pirate enough? Yo Ho Ho!", + "directBrowserToURLText": "Direct a cobweb to t'e following gibberish:", + "disableRemoteAppConnectionsText": "Disallow Remote-Mateys Connections", + "disableXInputDescriptionText": "Yarr can control more that 4 pirates but might not have it's beauty!!", + "disableXInputText": "Get rid of CrossButtony", + "disabledText": "Narr", + "discardText": "Heave overboard", + "discordFriendsText": "Be ye lookin' to gather a crew for yer adventures? \nCome aboard our Discord and meet some new shipmates!", + "discordJoinText": "Plunder t' Discord", + "doneText": "Yarr got it!!", + "drawText": "Not enough!!", + "duplicateText": "Magically Twwice", + "editGameListWindow": { + "addGameText": "New\nAdventure", + "cantOverwriteDefaultText": "Yarr can't change the main ship's beauty!", + "cantSaveAlreadyExistsText": "That ship alrready exists!", + "cantSaveEmptyListText": "Yarr cant use a ship without adventure!!", + "editGameText": "Change\nAdventure", + "listNameText": "Yarr ship's name", + "nameText": "Naame", + "removeGameText": "Forgor\nGaem", + "saveText": "Take Treasure Map", + "titleText": "Ye Ship" + }, + "editProfileWindow": { + "accountProfileInfoText": "Ye special pirate can have\nsame name as yer boat and\nhat.\n${ICONS}\n\nMake yer own pirates to use\ndifferrrent names and hats!", + "accountProfileText": "(ship pirate)", + "availableText": "Ye pirate name ${NAME} is good.", + "characterText": "yer pirate", + "checkingAvailabilityText": "waitin for pirate name \"${NAME}\" to be used..", + "colorText": "colorrrr", + "getMoreCharactersText": "Get more pirrrates..", + "getMoreIconsText": "Arrrrange Those Hats...", + "globalProfileInfoText": "Shared pirates surrree have good names\nto each other; Yarr also get hats for it.", + "globalProfileText": "(shared pirate)", + "highlightText": "colory second", + "iconText": "yarr hat", + "localProfileInfoText": "Ye alone pirate is not good enough for hats and yerr\nnames are not good. Get em shared forr betterrr name\nand good looki'n hats.", + "localProfileText": "(alone pirate)", + "nameDescriptionText": "Pirate Name", + "nameText": "Pirate Name", + "profileAlreadyExistsText": "There be a scallywag with that name already sailin' these waters!", + "randomText": "ranndom", + "titleEditText": "Change ye Pirate", + "titleNewText": "New Pirate", + "unavailableText": "Ye name ${NAME} is not good for all; ye need other name", + "upgradeProfileInfoText": "Yarr can magically share this pirate's name\nand can give em cool hats.", + "upgradeToGlobalProfileText": "Magically Share Pirate" + }, + "editSoundtrackWindow": { + "cantDeleteDefaultText": "Arr! The music is too beauty to get off!", + "cantEditDefaultText": "Ye can't change normal music's beauty! Make two or make a new one.", + "cantOverwriteDefaultText": "Can't get off the music", + "cantSaveAlreadyExistsText": "That music alrready is there!!", + "defaultGameMusicText": "", + "defaultSoundtrackNameText": "Music Show", + "deleteConfirmText": "Get off the show:\n\n${NAME}??", + "deleteText": "Rrride that music \ndown the plank!", + "duplicateText": "Twice\nMusic", + "editSoundtrackText": "Change music", + "editText": "Change\nMusic", + "fetchingITunesText": "loot'n shanties from Music App...", + "musicVolumeZeroWarning": "W'at's t'e point o' stop'n t'e chanties?", + "nameText": "Label", + "newSoundtrackNameText": "Yarrr sound magic ${COUNT}", + "newSoundtrackText": "New chanty:", + "newText": "New\nChanty", + "selectAPlaylistText": "Choose a list of chanties matey", + "selectASourceText": "Stream of yerrr chantyfall", + "testText": "Arg", + "titleText": "Chanties", + "useDefaultGameMusicText": "Curse of Eric's Chanties", + "useITunesPlaylistText": "Chanties Magic Gamerlist", + "useMusicFileText": "Chanty scroll (mpc, og3, etc)", + "useMusicFolderText": "Chest of yerrr chanties" + }, + "editText": "Reassemble", + "enabledText": "Yarr", + "endText": "Kill", + "enjoyText": "Arr!!", + "epicDescriptionFilterText": "${DESCRIPTION} in epic magic mode.", + "epicNameFilterText": "Epok ${NAME}", + "errorAccessDeniedText": "Arrrgh, the lock budgen't", + "errorDeviceTimeIncorrectText": "Yerrr migical @&#$'s clock is off by ${HOURS} nightpieces.\nThis could sunk yerrr ship.\nGo fix yerrrr crap before I make ya walk the plank.", + "errorOutOfDiskSpaceText": "I'm 100% sure you're the only human being that has seen this message...", + "errorSecureConnectionFailText": "Arrrr! The passage ain't safe, I won't take yerrr ship through, some crates may break (nooooooo)", + "errorText": "Argh!", + "errorUnknownText": "Arrrrrghh!!!", + "exitGameText": "Take yerrr ship out of ${APP_NAME}?", + "expiredAgoText": "Ran out ${T} ago", + "expiresInText": "Until ${T}", + "exportSuccessText": "'${NAME}' taken out.", + "externalStorageText": "Deep Chest", + "failText": "Urg...!", + "fatalErrorText": "Arr!! Me ship is not have the thing!!\nGo get new ship or maybe \nSend the parrot a message forrr ${EMAIL}!", + "fileSelectorWindow": { + "titleFileFolderText": "Get me a file orrr folderrr!!", + "titleFileText": "Bring me a thingy will ya?", + "titleFolderText": "Get the otherrrr ship!", + "useThisFolderButtonText": "Use Yerrr Chest?" + }, + "filterText": "Cerrtain", + "finalScoreText": "Last Doubloons", + "finalScoresText": "Results!", + "finalTimeText": "Final Hour", + "finishingInstallText": "No way in hell you're actually seeing this text", + "fireTVRemoteWarningText": "Yarr better off using a\nController Thing orrr\nGett ${REMOTE_APP_NAME} \nForrr ya weapons!!", + "firstToFinalText": "Trreasure of ${COUNT} Captain", + "firstToSeriesText": "Treasure of ${COUNT} Ship", + "fiveKillText": "SUBMARINE CREW!!!", + "flawlessWaveText": "Scratchless Wave!", + "fourKillText": "QUOUT!!!", + "friendScoresUnavailableText": "Couldn't find yerrr matey doubloons.", + "gameCenterText": "GaemSquare", + "gameCircleText": "GaemTriangle", + "gameLeadersText": "Top ${COUNT} Captains", + "gameListWindow": { + "cantDeleteDefaultText": "That cursed scroll can't be destroyed.", + "cantEditDefaultText": "That cursed scroll can't be reassembled, copy it or write a new scroll.", + "cantShareDefaultText": "The cursed scroll is stuck in the palm of your hand.", + "deleteConfirmText": "Burn \"${LIST}\"?", + "deleteText": "Destroy\nScroll", + "duplicateText": "Copy\nScroll", + "editText": "Reassemble\nScroll", + "newText": "New\nScroll", + "pointsToWinText": "Booty to Conquer", + "seriesLengthText": "Voyage Duration", + "showTutorialText": "me noob", + "shuffleGameOrderText": "Scramble The Lines of Yerrr Scroll", + "titleText": "Assemble ${TYPE} Scroll" + }, + "gameSettingsWindow": { + "addGameText": "Put Gaem" + }, + "gamesToText": "${WINCOUNT} sure beats ${LOSECOUNT}", + "gatherWindow": { + "aboutDescriptionLocalMultiplayerExtraText": "Get this: any ship in ya ship can get more \npirrates if they have control thingies.", + "aboutDescriptionText": "Use this pad to assemble a crew.\n\nCrews let ya capture the world\nWith yerrr fellow pirates together!\n\nUse ${PARTY} to speak with yer crew\n(using PirateSpeak!1!1!!!}\n(${BUTTON} works too)", + "aboutText": "Scroll", + "addressFetchErrorText": "", + "appInviteMessageText": "${NAME} gave ya ${COUNT} doubloons in ${APP_NAME}", + "appInviteSendACodeText": "Give Yerr Matey A Key", + "appInviteTitleText": "${APP_NAME} Magical Invite", + "bluetoothAndroidSupportText": "(sails with any android pad that has a tooth that is blue)", + "bluetoothDescriptionText": "Get yarrr sailors on using a blue tooth!", + "bluetoothHostText": "Hold the tooth", + "bluetoothJoinText": "Be consumed by the tooth", + "bluetoothText": "Blue tooth", + "checkingText": "Looking at yerr map...", + "copyCodeConfirmText": "I put the order on yerr clipboard captain!", + "copyCodeText": "Copy ze code", + "dedicatedServerInfoText": "For the best ship, make yerrr own sea! Head over to bombsquadgame.com/server to learn how.", + "descriptionShortText": "Use the crew tab to assemble yerr.. crew.", + "disconnectClientsText": "This will throw ${COUNT} sailor(s)\noff yer ship. Are you sure captain?", + "earnTicketsForRecommendingAmountText": "Yerr maties will get ${COUNT} gold if they try the game\n(and you will get ${YOU_COUNT} gold from the treasure forrr each)", + "earnTicketsForRecommendingText": "Share PowderBomb\nfor painless treasure!", + "emailItText": "Send A Morse Code", + "favoritesSaveText": "Save As Favorite (arrr)", + "favoritesText": "Favorites", + "freeCloudServerAvailableMinutesText": "Next painless cloud sea available in ${MINUTES} daypieces.", + "freeCloudServerAvailableNowText": "There's a painless cloud sea available now captain!", + "freeCloudServerNotAvailableText": "There aren't any easy to get cloud seas here...", + "friendHasSentPromoCodeText": "${COUNT} ${APP_NAME} goodies from ${NAME}arrrr", + "friendPromoCodeAwardText": "Yerr will snatch ${COUNT} from the treasure every time it's used.", + "friendPromoCodeExpireText": "The code will rot in ${EXPIRE_HOURS} nightpieces and only new sailors can use it.", + "friendPromoCodeInstructionsText": "To snatch the treasure, open ${APP_NAME}, then \"Settings->Advanced->Send Info\".\nSee bombsquadgame.com for available oceans and paths to them.", + "friendPromoCodeRedeemLongText": "${MAX_USES} sailors, ${COUNT} tickets each...", + "friendPromoCodeRedeemShortText": "It can open a ${COUNT} ticket treasure chest.", + "friendPromoCodeWhereToEnterText": "(in yer \"Settin's->Advanced->Send Info\")", + "getFriendInviteCodeText": "Get A Lock Code For Yerr Maties", + "googlePlayDescriptionText": "Long live google play games multiplayer...", + "googlePlayInviteText": "Summon", + "googlePlayReInviteText": "${COUNT}\nno\nno", + "googlePlaySeeInvitesText": "Be Summoned", + "googlePlayText": "Goggles", + "googlePlayVersionOnlyText": "The Lost Option", + "hostPublicPartyDescriptionText": "Make yerr own public sea", + "hostingUnavailableText": "Arrrgh! The ocean is gone!", + "inDevelopmentWarningText": "Note:\nThis\nIs\nA\nLie", + "internetText": "International Waters", + "inviteAFriendText": "Yerr maties don't have PowderTime? Summon them\nAnd they'll get ${COUNT} painless tickets!", + "inviteFriendsText": "Summon Mateys", + "joinPublicPartyDescriptionText": "Go to a Public Ocean", + "localNetworkDescriptionText": "Fight Over a Local Sea (Lantern, Blue Tooth, etc.)", + "localNetworkText": "Local Ocean", + "makePartyPrivateText": "Horde Yerr Treasure!", + "makePartyPublicText": "Share Yerr Treasure (with yerrr friens!!!)", + "manualAddressText": "Path", + "manualConnectText": "Set Sail Captain!", + "manualDescriptionText": "WHERES THE CITY?!", + "manualJoinSectionText": "Join By Path", + "manualJoinableFromInternetText": "Is yerr port available to international sailors?:", + "manualJoinableNoWithAsteriskText": "NEVER*", + "manualJoinableYesText": "YARRR!!", + "manualRouterForwardingText": "*port ${PORT} isn't connected to yerr sea matey", + "manualText": "Binnacle", + "manualYourAddressFromInternetText": "Yerr path from international waters:", + "manualYourLocalAddressText": "Yerr path from the bay:", + "nearbyText": "Local", + "noConnectionText": "", + "noPartiesAddedText": "No Crews Assembled", + "otherVersionsText": "eric remove these unused lstrs", + "partyCodeText": "Sea Fish", + "partyInviteAcceptText": "Be Summoned", + "partyInviteDeclineText": "NOOOOOO", + "partyInviteGooglePlayExtraText": "(embrace the 'Google Play' docks in yer 'Gather' outpost)", + "partyInviteIgnoreText": "Forgor", + "partyInviteText": "${NAME} has summoned\nYou to their ship captain!", + "partyNameText": "Name of Yerrr Sea", + "partyServerRunningText": "Yerr gaming ocean is gamin.", + "partySizeText": "allowed sailors", + "partyStatusCheckingText": "lookin' for yerr sea...", + "partyStatusJoinableText": "yerr sea is now known by all pirates!", + "partyStatusNoConnectionText": "can't navigate to port", + "partyStatusNotJoinableText": "yerr sea isn't known by anyone", + "partyStatusNotPublicText": "yerr ocean is not public", + "pingText": "pong", + "portText": "Seaport", + "privatePartyCloudDescriptionText": "Private seas are on cloud oceans; no need to build a dock.", + "privatePartyHostText": "Host yerr Own Private Shindig!", + "privatePartyJoinText": "Drop yerr Anchor", + "privateText": "Secret", + "publicHostRouterConfigText": "Arrr! Ye might need to be adjustin' the port-forwardin' on yer box, matey! Or if ye want a lazier option, just throw yer own secret party!", + "publicText": "Open Seas", + "requestingAPromoCodeText": "Askin' fer a key...", + "sendDirectInvitesText": "Send Out Bottles to Yer Shipmates", + "shareThisCodeWithFriendsText": "Pass along this Secret Code to yer Crewmates:", + "showMyAddressText": "Read Me Bey's Port and Sails", + "startHostingPaidText": "Host yer Own Now fer ${COST}", + "startHostingText": "Yar", + "startStopHostingMinutesText": "Ye can hoist and lower yer ships for free for the next ${MINUTES} daypieces.", + "stopHostingText": "Hat yer Ship", + "titleText": "Gatherrr", + "wifiDirectDescriptionBottomText": "If all yer magicpad64s have a 'Direct Magic' panel, they shall be able to use it to find\nand pair to each other. Once all stuff do be connected, ye can form docks to fight on\nhere usin' the 'Local Magic' tab, just the same as with regular magic.\n\nFer ye greatest result, the Direct Magic host should also be the ${APP_NAME} dock host.", + "wifiDirectDescriptionTopText": "Arr, Direct Magic can be used to connect Arch linux devices directly without\nneedin' boring magic. This works best on linux kernel 4.2 or newer.\n\nTo use it, open yer magic book and look for the Direct Magic spell matey.", + "wifiDirectOpenWiFiSettingsText": "Open Magic Book", + "wifiDirectText": "Direct Magic", + "worksBetweenAllPlatformsText": "(works between all sorts of magic stuff matey)", + "worksWithGooglePlayDevicesText": "(works with tabs with the internet explorer version of the gaem)", + "youHaveBeenSentAPromoCodeText": "Yar been sent a ${APP_NAME} treasure key:" + }, + "getTicketsWindow": { + "freeText": "FRREEE!", + "freeTicketsText": "Painless Treasure", + "inProgressText": "Arrgh! we're already waiting for another ship to arrive, wait a lightfragment!", + "purchasesRestoredText": "Ships retrieved matey.", + "receivedTicketsText": "Got ${COUNT} treasures!", + "restorePurchasesText": "Retrieve Ships", + "ticketPack1Text": "smol treasure", + "ticketPack2Text": "Treasure", + "ticketPack3Text": "BIIIIIIIIG TREASURE", + "ticketPack4Text": "VERY BIIIIG TREASURE", + "ticketPack5Text": "that's a lot", + "ticketPack6Text": "like, ur mama size a lot", + "ticketsFromASponsorText": "Be enslaved\nfor ${COUNT} treasures", + "ticketsText": "${COUNT} Treasures", + "titleText": "Hoard Treasures", + "unavailableLinkAccountText": "Arrr, shipping be illegal on this bay.\nye can send a boat to a ship on\nanother bay and make purchases therre.", + "unavailableTemporarilyText": "Arrrgh! We can't do that right now cap'ain; we'll do it later matey.", + "unavailableText": "Sorry cap'ain, They don't ship this right now.", + "versionTooOldText": "Arrrgh! yer PowderTime(patent pending) is dying of old age!!! update to a newer version mate.", + "youHaveShortText": "ye got ${COUNT}", + "youHaveText": "ye have ${COUNT} treasures" + }, + "goldPass": { + "desc1InfTokensText": "INFINITE GAMBLING!!!", + "desc2NoAdsText": "None of 'er pesky ads.", + "desc3ForeverText": "Till the end of the seven seas.", + "goldPassText": "Golden Ultimate Delux Limited-Edition Fire Pass" + }, + "googleMultiplayerDiscontinuedText": "no\nno\nno\n-Cap'ain Eric", + "googlePlayPurchasesNotAvailableText": "Arrgh! Google's shipping ain't workin!\nTry to get in contact with them nerds!", + "googlePlayServicesNotAvailableText": "Google HQ is being infiltrated.\nWe may need to retreat.", + "googlePlayText": "Google go brrr", + "graphicsSettingsWindow": { + "alwaysText": "NEVER!!!", + "fullScreenCmdText": "Big view (Cmd-F)", + "fullScreenCtrlText": "Big view (Ctrl-F)", + "fullScreenText": "Whole Horizon", + "gammaText": "Delta", + "highText": "Better", + "higherText": "Best", + "lowText": "Bad", + "maxFPSText": "Max SPF", + "mediumText": "Meh", + "neverText": "ALWAYS!!!", + "resolutionText": "-Air pollution", + "showFPSText": "Show yer SPF", + "texturesText": "Crates", + "titleText": "Quality", + "tvBorderText": "gamer mode", + "verticalSyncText": "Vertical Sink Hole", + "visualsText": "Monocle Settings" + }, + "helpWindow": { + "bombInfoText": "- Bomb -\nPack'n more punch than punches,\nbut c'n be cost'n ye an arm 'n a leg.\nF'r cheaper'n that ye be need'n t'\nthrow it b'fore t' fuse be run'n out.", + "canHelpText": "${APP_NAME} can help matey.", + "controllersInfoText": "Yarr can set sail in ${APP_NAME} with yer mateys over the sea, or ye\ncan all sail from the same dock if ye have enough boats.\n${APP_NAME} accepts any of yer boats; yarr can even use rafts\nas boats with the \"${REMOTE_APP_NAME}\" app.\nRead through Settings->Boats to learn more.", + "controllersInfoTextRemoteOnly": "Yarr can set sail in ${APP_NAME} with yer mateys over the sea, or ye\ncan all sail from the same dock if ye use rafts\nas boats with the \"${REMOTE_APP_NAME}\" app.", + "controllersText": "Boats", + "controlsSubtitleText": "Yer ${APP_NAME} pirate can do some violent stuff cap'ain:", + "controlsText": "Actions", + "devicesInfoText": "The VR version of ${APP_NAME} can battle against other ships over\nthe sea. So get yer mateys on their normy rafts, boats,\nand ships and fight for glory cap'ain. ya can even get\na regular ship hooked up to the VR version just so that yer\nmateys can watch yer glorious battles from land.", + "devicesText": "Docks", + "friendsGoodText": "These be treasures worth havin', me matey! ${APP_NAME} be at its finest with \na crew of scurvy dogs, and it can accommodate up to 8 buccaneers at a time, which brings us to:", + "friendsText": "Mateys", + "jumpInfoText": "- Leap -\nLeap to cross small gaps,\nto heave things higher, and \nto let the wind fill yer sails!", + "orPunchingSomethingText": "Or give it a good wallop, toss it overboard, and blast it to smithereens with a sticky bomb as it falls to Davy Jones' Locker.", + "pickUpInfoText": "- Plunder -\nGrab flags, enemies, or anything \nnot nailed down to the deck. \nPress again to toss it overboard!", + "powerupBombDescriptionText": "Lets ye wield three bombs \nin a row instead of just one, me heartie!", + "powerupBombNameText": "Thrice-Blessed Bombs", + "powerupCurseDescriptionText": "Ye probably want to steer clear o' these.\n...or do ye?", + "powerupCurseNameText": "The Black Spot", + "powerupHealthDescriptionText": "Brings ye back from Davy Jones' Locker, with nary a scratch. \nYe'd never have reckoned it, but 'tis true, me heartie!", + "powerupHealthNameText": "Healer's Chest", + "powerupIceBombsDescriptionText": "Be weaker than yer typical bomb, \nbut leave yer enemies frozen solid \nand as brittle as an old piece o' hardtack.", + "powerupIceBombsNameText": "Frosty Grenades", + "powerupImpactBombsDescriptionText": "Be a tad weaker than yer standard bombs, \nbut they burst on impact with a mighty bang.", + "powerupImpactBombsNameText": "Blastin' Balls", + "powerupLandMinesDescriptionText": "Ye can get 'em in packs o' three; \nhandy fer protectin' yer base or \nstoppin' quick-footed foes in their tracks.", + "powerupLandMinesNameText": "Landlubber Mines", + "powerupPunchDescriptionText": "Gives ye fists more oomph, \nspeed, and power, me hearties!", + "powerupPunchNameText": "Fisticuffs Mittens", + "powerupShieldDescriptionText": "Takes a lickin' for ye, me hearty, \nso ye don't have to!", + "powerupShieldNameText": "Force Field", + "powerupStickyBombsDescriptionText": "Stick to anythin' they hit.\nMirth ensues.", + "powerupStickyBombsNameText": "Adhesive Grenades", + "powerupsSubtitleText": "Aye, no game worth its salt be complete without booty to plunder!", + "powerupsText": "Booty", + "punchInfoText": "- Punch -\nPunches do more damage th'\nfaster yer fists be movin', so\nrun and spin like a madlad.", + "runInfoText": "- Sail -\nGrasp ANY swashbucklin' button to set yer boots in motion. Triggers or shoulder buttons be fine choices if ye possess 'em.\nSailing be a swift course to reach yer destinations, yet be wary o' treacherous cliffs, for turning be a mighty challenge.", + "someDaysText": "Arrr, some days yer just feelin' like punchin' somethin'. Or blowin' somethin' up to smithereens, me hearty.", + "titleText": "${APP_NAME} Help", + "toGetTheMostText": "Ye'll need the right tools to plunder the depths of this game, me hearty:", + "welcomeText": "Ahoy and welcome aboard the good ship ${APP_NAME}!" + }, + "holdAnyButtonText": "", + "holdAnyKeyText": "", + "hostIsNavigatingMenusText": "- ${HOST} be navigatin' menus like a fearsome captain -", + "importPlaylistCodeInstructionsText": "Employ the followin' code to import this playlist elsewhere, ye scallywag:", + "importPlaylistSuccessText": "Imported ${TYPE} playlist '${NAME}', me heartie!", + "importText": "Plunder", + "importingText": "Plunderin'...", + "inGameClippedNameText": "in-game will be\n\"${NAME}\", me matey!", + "inboxText": "Treasure Chest", + "installDiskSpaceErrorText": "Arrr! Unable to complete the install, ye scurvy dog!\nYe may be out of space on yer ship.\nClear some space and give it another go, or ye'll walk the plank!", + "internal": { + "arrowsToExitListText": "Press ${LEFT} or ${RIGHT} to set sail from this list, ye scallywag!", + "buttonText": "button", + "cantKickHostError": "Ye can't commit mutiny, ye landlubber!", + "chatBlockedText": "Avast ye! ${NAME} be chat-blocked for ${TIME} seconds!", + "connectedToGameText": "Ye have joined the crew of '${NAME}', me matey!", + "connectedToPartyText": "Ye have joined the party of ${NAME}, me hearty!", + "connectingToPartyText": "Settin' sail, we be! Connectin'...", + "connectionFailedHostAlreadyInPartyText": "Arr, ye scallywag! Connection be a failure! The host be already part of another party.", + "connectionFailedPartyFullText": "Avast ye! Connection be a failure! The party be filled to the brim, ye scurvy sea dog!", + "connectionFailedText": "Arr, connection be a failure, me heartie.", + "connectionFailedVersionMismatchText": "Avast ye! Connection be a failure, for the host be runnin' a different version of the game. \nMake sure ye both be up-to-date and give it another shot, me matey!", + "connectionRejectedText": "Arr, yer connection be rejected, ye landlubber! Ye may need an invitation or proper permissions to join.", + "controllerConnectedText": "Avast ye! ${CONTROLLER} be connected, ready to set sail on this adventure!", + "controllerDetectedText": "Arr, me heartie! We be spyin' a single controller on the horizon.", + "controllerDisconnectedText": "Avast ye! ${CONTROLLER} be disconnected and be leavin' the crew. Farewell, me matey!", + "controllerDisconnectedTryAgainText": "Avast ye! ${CONTROLLER} be disconnected. Please make another attempt at connectin', me hearty!", + "controllerForMenusOnlyText": "Avast ye! This controller be fit for navigatin' menus, but not for playin' the game.", + "controllerReconnectedText": "Avast ye! ${CONTROLLER} be reconnected and back in action!", + "controllersConnectedText": "Avast ye! We be havin' ${COUNT} controllers connected!", + "controllersDetectedText": "Arr, me matey! We be detectin' ${COUNT} controllers on the horizon.", + "controllersDisconnectedText": "Avast ye! ${COUNT} controllers be disconnected and be partin' ways.", + "corruptFileText": "Avast ye! Corrupt file(s) be detected, me heartie! Give reinstallin' a try, or send an email to ${EMAIL} for further assistance. May the winds of good fortune be with ye!", + "errorPlayingMusicText": "Avast ye! There be an error playin' the shanties \"${MUSIC}\".", + "errorResettingAchievementsText": "Avast ye! Ye be unable to reset yer online achievements at this time.", + "hasMenuControlText": "Avast ye! ${NAME} be takin' hold of the menu controls like a true captain of the ship!", + "incompatibleNewerVersionHostText": "Avast ye! The host be sailin' with a newer version of the game. Ye be needin' to update to the latest version if ye want to join the crew. \nSet yer sails to the latest version and give it another try, me hearty!", + "incompatibleVersionHostText": "Avast ye! The host be runnin' a different version of the game, me matey! Make sure ye and the host be sailin' \nwith the same version by updatin' yer game. Once ye be both up-to-date, set sail again and give it another shot!", + "incompatibleVersionPlayerText": "Avast ye! ${NAME} be runnin' a different version of the game, me heartie! \nMake sure ye and they scurvy dogs be both up-to-date by checkin' for updates.", + "invalidAddressErrorText": "Avast ye! 'Tis an error I be seein'. The address ye be providin' be invalid, ye scurvy sea dog!", + "invalidNameErrorText": "Avast ye! 'Tis an error in the name ye be providin'.", + "invalidPortErrorText": "Avast ye! 'Tis an error in the port number ye be providin'.", + "invitationSentText": "Avast ye! The invitation be sent, me heartie!", + "invitationsSentText": "Avast ye! ${COUNT} invitations be sent, me matey!", + "joinedPartyInstructionsText": "Someone has joined yer parrie!.\nGo t' 'Play' t' starrr a game.", + "keyboardText": "'Kayboarrd", + "kickIdlePlayersKickedText": "Kickin' ${NAME} fer bein' idle.", + "kickIdlePlayersWarning1Text": "${NAME} is kickin' te' bucket in ${COUNT} seconds if still idle.", + "kickIdlePlayersWarning2Text": "(ye could turrrn tis' off in Settings -> Advanced)", + "leftGameText": "Leeeft '${NAME}'.", + "leftPartyText": "Left ${NAME}'s ship.", + "noMusicFilesInFolderText": "Folder conteins no shanties files.", + "playerJoinedPartyText": "${NAME} joined the ship!", + "playerLeftPartyText": "${NAME} left the ship.", + "rejectingInviteAlreadyInPartyText": "Avast ye! Ye be rejectin' the invite, me hearty! 'Tis because ye be already in a party.", + "serverRestartingText": "Avast ye! The server be restartin', me matey! Hold tight and give it a moment..", + "serverShuttingDownText": "Avast ye! The server be shuttin' down, me heartie!", + "signInErrorText": "Avast ye! 'Tis an error signin' in, me matey!", + "signInNoConnectionText": "Avast ye! Ye be unable to sign in, me heartie! It seems ye be lackin' an internet connection.", + "telnetAccessDeniedText": "Avast ye! 'Tis an error I be seein'. The user be not grantin' telnet access!", + "timeOutText": "(the operation be timed out in ${TIME} seconds)", + "touchScreenJoinWarningText": "Avast ye! Ye be joinin' with the touchscreen, me hearty! \nIf ye made a mistake and wish to leave the game, simply tap 'Menu->Leave Game' with the touchscreen.", + "touchScreenText": "TouchScreen", + "unableToCompleteTryAgainText": "Arr, we be unable to do that now.\nYe' be patient for now!", + "unableToResolveHostText": "Arr, seems like we've hit a snag.", + "unavailableNoConnectionText": "Arrr! This is currently unavailable (in the storm?)", + "vrOrientationResetCardboardText": "Use this to reset yarr compass.\nTo ride this ship ye need an external wheel.", + "vrOrientationResetText": "Spin reset.", + "willTimeOutText": "(will throw ya off the ship if idle)" + }, + "inventoryText": "Treasure n' Booties", + "jumpBoldText": "BOING", + "jumpText": "Boing", + "keepText": "Hoard", + "keepTheseSettingsText": "Hoard these ship configs?", + "keyboardChangeInstructionsText": "Smash space twice to change yerr keyboard.", + "keyboardNoOthersAvailableText": "Arrr! Ya don't have any other keyboards!", + "keyboardSwitchText": "Switching yerr keyboard to \"${NAME}\".", + "kickOccurredText": "${NAME} was thrown off the ship.", + "kickQuestionText": "Throw ${NAME} off the ship?", + "kickText": "Throw off the ship", + "kickVoteCantKickAdminsText": "Ya wanna throw the cap'ain off the ship? Yar crazy?", + "kickVoteCantKickSelfText": "Ya can't throw yerself into the sharks!", + "kickVoteFailedNotEnoughVotersText": "ya need more pirates for tryin to throw em off.", + "kickVoteFailedText": "Arrr! we couldn't throw em off.", + "kickVoteStartedText": "Yarr! Someone wants to throw ${NAME} off the ship.", + "kickVoteText": "Try to throw em off?", + "kickVotingDisabledText": "Yarr! this ship is peaceful.", + "kickWithChatText": "Write ${YES} in the scroll for yes and ${NO} for no.", + "killsTallyText": "${COUNT} executions", + "killsText": "Executions", + "kioskWindow": { + "easyText": "OS", + "epicModeText": "That One Mode Where Everyone Goes Sweaty Gamer Mode In", + "fullMenuText": "The Actual Ship", + "hardText": "OSOGOF", + "mediumText": "OSOG", + "singlePlayerExamplesText": "Cap'ain Mode Examples", + "versusExamplesText": "Battle Mode Examples" + }, + "languageSetText": "Ye are now read'n \"${LANGUAGE}", + "lapNumberText": "Lap ${CURRENT}/${TOTAL} (Arrr!)", + "lastGamesText": "(last ${COUNT} battles)", + "leaderboardsText": "Wanted Poster", + "league": { + "allTimeText": "Ever", + "currentSeasonText": "Present Tide (${NUMBER})", + "leagueFullText": "${NAME} Tide", + "leagueRankText": "Crew Standin", + "leagueText": "Tide", + "rankInLeagueText": "#${RANK}, ${NAME} Tide${SUFFIX}", + "seasonEndedDaysAgoText": "The season met its end ${NUMBER} days back, matey.", + "seasonEndsDaysText": "The season be settin' sail in ${NUMBER} days!", + "seasonEndsHoursText": "The season be comin' to a close in ${NUMBER} hours!", + "seasonEndsMinutesText": "The season be endin' in a mere ${NUMBER} minutes!", + "seasonText": "Tide ${NUMBER}", + "tournamentLeagueText": "Ye must climb to the ranks of the ${NAME} crew to enter this tournament.", + "trophyCountsResetText": "Trophy tallies be settin' sail anew come the next season.", + "upToDateBonusDescriptionText": "arrrr, thy game version be too old,\nupdate it for a ${PERCENT}% morr points.", + "upToDateBonusText": "Modern Boat Bonus" + }, + "learnMoreText": "But wait captain, THERE'S MORE!!!", + "levelBestScoresText": "Finest marks on ${LEVEL}", + "levelBestTimesText": "Finest times on ${LEVEL}", + "levelIsLockedText": "${LEVEL}\" be bolted tight, matey.", + "levelMustBeCompletedFirstText": "Ye must first sail ${LEVEL}", + "levelText": "Tide ${NUMBER}", + "levelUnlockedText": "Tide Freed!", + "livesBonusText": "Extra Lives Bounty", + "loadingText": "Anchors Aweigh", + "loadingTryAgainText": "Setting Sail; Try again in a blink of the eye...", + "macControllerSubsystemBothText": "Both (not advis'd)", + "macControllerSubsystemClassicText": "Timeless", + "macControllerSubsystemDescriptionText": "(try adjustin' this if yer controllers be actin' up)", + "macControllerSubsystemMFiNoteText": "Spotted a Made-for-iOS/Mac controller, matey! \nYe might want to hoist 'em up in Settings -> Controllers.", + "macControllerSubsystemMFiText": "Crafted for iOS/Mac", + "macControllerSubsystemTitleText": "Controller Aid", + "mainMenu": { + "creditsText": "Salutes", + "demoMenuText": "Trial Tavern", + "endGameText": "Cease the Gambol", + "endTestText": "Finish the Trial", + "exitGameText": "Abandon the Quest", + "exitToMenuText": "Abandon Ship and Return to the Chart?", + "howToPlayText": "Learn The Ropes", + "justPlayerText": "(Only pirate ${NAME})", + "leaveGameText": "Abandon Ship", + "leavePartyConfirmText": "Arr, ye sure about really abandonin the crew?", + "leavePartyText": "Abandon Crew", + "quitText": "Belay", + "resumeText": "Return", + "settingsText": "Chart Your Course" + }, + "makeItSoText": "Aye, Set Sail!", + "mapSelectGetMoreMapsText": "Find More Charts...", + "mapSelectText": "Choose...", + "mapSelectTitleText": "${GAME} Charts", + "mapText": "Chart", + "maxConnectionsText": "Max Shipmates", + "maxPartySizeText": "Max Crew Size", + "maxPlayersText": "Max Pirates", + "merchText": "Booty for Sale!", + "modeArcadeText": "Tavern Brawl", + "modeClassicText": "Old Salt's Mode", + "modeDemoText": "Teaser Mode", + "moreSoonText": "More be arrivin' soon...", + "mostDestroyedPlayerText": "Most Shipwrecked Pirate", + "mostValuablePlayerText": "Most Wanted Pirate", + "mostViolatedPlayerText": "Most Sunken Pirate", + "mostViolentPlayerText": "Most Dreaded Pirate", + "moveText": "Shove off", + "multiKillText": "${COUNT}-SLAY!!!", + "multiPlayerCountText": "${COUNT} pirateers", + "mustInviteFriendsText": "Note: ye must invite shipmates \nin the \"${GATHER}\" panel \nor put on a controller to sail with ye crew.", + "nameBetrayedText": "${NAME} hornswaggled ${VICTIM}.", + "nameDiedText": "${NAME} met Davy Jones.", + "nameKilledText": "${NAME} sent ${VICTIM} to the briny deep.", + "nameNotEmptyText": "Ye forgot to hoist yer flag!", + "nameScoresText": "${NAME} Plunders!", + "nameSuicideKidFriendlyText": "${NAME} jumped o'r board.", + "nameSuicideText": "${NAME} walked the plank.", + "nameText": "Moniker", + "nativeText": "Landlubber", + "newExclaimText": "Straight out of the deep sea!", + "newPersonalBestText": "New personal record on the logbook!", + "newTestBuildAvailableText": "A fresher trial version be ready! (${VERSION} build ${BUILD}).\nFetch it at ${ADDRESS}", + "newText": "Craft", + "newVersionAvailableText": "A fresher version of ${APP_NAME} be ready to set sail! (${VERSION})", + "nextAchievementsText": "Next Booty to Plunder:", + "nextLevelText": "Next Dock", + "noAchievementsRemainingText": "- none...?", + "noContinuesText": "(no escaping from death)", + "noExternalStorageErrorText": "Yo dont have a exxterrnal storage on yor deviz", + "noGameCircleText": "There's an issue cap'ain: yer not logged into gameball", + "noMessagesText": "Nary a message.", + "noPluginsInstalledText": "No Modifications Are On The Ship Cap'ain", + "noScoresYetText": "No one has sailed near this land sir.", + "noServersFoundText": "Arrrgh! No bays in sight!", + "noThanksText": "Arghhhh...", + "noTournamentsInTestBuildText": "Captain! Yer ship is unstable, they won't let us take 'er to tournaments.", + "noValidMapsErrorText": "Pirates haven' found a dock worthy of this ba'le.", + "notEnoughPlayersRemainingText": "Aarghhh! Not enough pirates are battling here; we should go elsewhere cap'ain.", + "notEnoughPlayersText": "Cap'ain! We need at least ${COUNT} pirates to go on this journey.", + "notEnoughTicketsText": "Yer don't got enough tickets!", + "notNowText": "Not Now Captain...", + "notSignedInErrorText": "Yer must show an ID to enter.", + "notSignedInGooglePlayErrorText": "Ya must be accompanied by Google Play to enter.", + "notSignedInText": "no ID", + "notUsingAccountText": "Note: ignoring ${SERVICE} ID.\nGo to 'Account -> Be accompanied by ${SERVICE}' if yar want to use it.", + "nothingIsSelectedErrorText": "YER HAVEN'T SELECTED ANYTHING YA MORO- I mean cap'ain. (please don't make me walk the plank sir)", + "numberText": "#${NUMBER}", + "offText": "NARRR", + "okText": "Ok", + "onText": "YARRR", + "oneMomentText": "Wait a bit sir...", + "onslaughtRespawnText": "${PLAYER} will get back to the dock in wave ${WAVE} cap'ain!", + "openMeText": "the treasure be yours!", + "openNowText": "tearrr it open", + "openText": "crack", + "orText": "${A} or ${B}", + "otherText": "Other...", + "outOfText": "(#${RANK} out of ${ALL})", + "ownFlagAtYourBaseWarning": "Yer own flag must fly high at \nyer base to tally yer score!", + "partyWindow": { + "chatMessageText": "spit it out", + "emptyText": "Yer ship is empty", + "hostText": "(captain)", + "sendText": "->", + "titleText": "Yer Ship" + }, + "pausedByHostText": "(halted by the captain)", + "perfectWaveText": "Clean Abaft!", + "pickUpText": "Lift", + "playModes": { + "coopText": "Treasure-Rush", + "freeForAllText": "Rafts", + "multiTeamText": "Multi-Ship", + "singlePlayerCoopText": "Captain Mode / Treasure-Rush", + "teamsText": "Ships" + }, + "playText": "Set Sail", + "playWindow": { + "oneToFourPlayersText": "1-4 pirates", + "titleText": "Set Sail", + "twoToEightPlayersText": "2-8 pirates" + }, + "playerCountAbbreviatedText": "${COUNT}p", + "playerDelayedJoinText": "${PLAYER} will get on the dock once the next fight begins.", + "playerInfoText": "Pirate Info", + "playerLeftText": "${PLAYER} abandoned the ship, je was verry cowarr'", + "playerLimitReachedText": "Aarggh. We can't bring more than ${COUNT} pirates on this dock; stay on the ship.", + "playerProfilesWindow": { + "cantDeleteAccountProfileText": "You can't erase who you are, captain; if that even is your real n-", + "deleteButtonText": "Erase\nFake ID", + "deleteConfirmText": "Erase '${PROFILE}'?", + "editButtonText": "Edit\nFake ID", + "explanationText": "(fake IDs you have gathered over the years)", + "newButtonText": "New\nFake ID", + "titleText": "Fake IDs" + }, + "playerText": "Pirate", + "playlistNoValidGamesErrorText": "None of these scurvy dogs can understand this scroll.", + "playlistNotFoundText": "scroll not found", + "playlistText": "Scroll", + "playlistsText": "Scrolls", + "pleaseRateText": "If ye be enjoyin' ${APP_NAME}, kindly consider takin' a moment \nto rate it or scribe a review. \nThis be providin' valuable feedback and helps chart the course for future development.\n\nCheers!\n-eric", + "pleaseWaitText": "We will get there cap'ain, eventually...", + "pluginClassLoadErrorText": "Arrrgh we weren't able to load '${PLUGIN}' onto the ship: ${ERROR}", + "pluginInitErrorText": "These landlubbers couldn't install the '${PLUGIN}' onto yer ship cap'ain: ${ERROR}", + "pluginSettingsText": "Modification Control Room", + "pluginsAutoEnableNewText": "Install All New Modifications Once Brought Onboard", + "pluginsDetectedText": "New modification(s) are bein' installed cap'ain, they'll be ready next time. Ye can check on those scallywags.", + "pluginsDisableAllText": "Remove All Modifications From Me Ship", + "pluginsEnableAllText": "Install All Modifications Onboard", + "pluginsRemovedText": "Captain! ${NUM} modification(s) ain' on this ship no more! Some son of a biscuit eater has stolen yer goods!", + "pluginsText": "Modifications", + "practiceText": "Trainin'", + "pressAnyButtonPlayAgainText": "We are ready to fight for glory once more! Waitin' for yer command cap'ain...", + "pressAnyButtonText": "We are waitin' for yer command cap'ain...", + "pressAnyButtonToJoinText": "We will join the battle with the smallest move of yerr succulent lips cap'ain...", + "pressAnyKeyButtonPlayAgainText": "We are ready to fight for glory once more! Waitin' for yer command cap'ain...", + "pressAnyKeyButtonText": "We are waitin' for yer command cap'ain...", + "pressAnyKeyText": "We are waitin' for yer command cap'ain...", + "pressJumpToFlyText": "** Jump t' catch that Peter Pan! **", + "pressPunchToJoinText": "press HOOK to get aboard the ship...", + "pressToOverrideCharacterText": "hit ${BUTTONS} to send in a differen' landlubber", + "pressToSelectProfileText": "hit ${BUTTONS} to select which ID yerr wanna go in with", + "pressToSelectTeamText": "hit ${BUTTONS} to choose which ship yar wanna help out", + "promoCodeWindow": { + "codeText": "Magic Numbe's", + "enterText": "Smash" + }, + "promoSubmitErrorText": "Aargh! our magic numbers didn' make it through the seas; try again on a calmer night", + "ps3ControllersWindow": { + "macInstructionsText": "Arrr, Switch off the power on the back of yer PS3, \nthen make sure yer Bluetooth be enabled on yer Mac. \nThen, connect yer controller to yer Mac via a USB cable to pair the two. \nFrom then on, ye can use the controller's home button to connect it to yer Mac in either wired (USB) \nor wireless (Bluetooth) mode.\n\n\nOn some Macs, ye may be prompted for a passcode when pairing. \nIf this happens, see the followin' tutorial or google for help.\n\n\n\nPS3 controllers connected wirelessly should show up in the device list in System Preferences->Bluetooth. \nYe may need to remove them from that list when ye want to use them with yer PS3 again.\n\n\nAlso, make sure to disconnect them from Bluetooth when not in use, \nor their batteries will continue to drain.\n\nBluetooth should handle up to 7 connected devices, \nthough yer mileage may vary.", + "ouyaInstructionsText": "to use yer damn ps3 thingamajig with ya dead console, just connect it with a USB cable\nfor once to make em fall in love. Doin' this may disconnect other thingamajigs, so\nyarr should then kill the dead thing and unplug the USB cable.\n\nAfter that the thingamajig's HOME button makes a mythical connection\nto yer ship. When yerr done sailin', SMASH that HOME button for 10 hours\nto kill the thingimajig; otherwise it will need the men to work harder\non the head.", + "pairingTutorialText": "*insert edgy joke with pirate slang here*", + "titleText": "Usin' ps3 thingamajigs with ${APP_NAME}:" + }, + "punchBoldText": "HOOK", + "punchText": "Hook", + "purchaseForText": "Pay up ${PRICE}", + "purchaseGameText": "if you're seeing this message in-game, something really bad must have happened", + "purchaseNeverAvailableText": "Arrrgh! These lily livered bilge suckers will never let us buy stuff on this dock.\nWe should try going to a differen' dock with the same IDs and buy supplies from there.", + "purchaseNotAvailableText": "These landlubbers aren't sellin' this.", + "purchasingText": "Buying... (arrr?)", + "quitGameText": "Walk ${APP_NAME}'s planks?", + "quittingIn5SecondsText": "CBF Detected, Loser! Quitting in 5 seconds...", + "randomPlayerNamesText": "DEFAULT_NAMES, Vaporeon, Jolly Roger, Fenix, Calico Jack, Blackbeard, Anne Bonny, William Kidd, Aegea, Alistair, Echo", + "randomText": "Dice", + "rankText": "Rank", + "ratingText": "Rating", + "reachWave2Text": "Survive at least the first batch of scallywags cap'ain.", + "readyText": "man o' war", + "recentText": "Newborn", + "remoteAppInfoShortText": "${APP_NAME} be most jolly when played with kin & shipmates.\nConnect one or more hardware controllers or install the\n${REMOTE_APP_NAME} app on phones or tablets to use 'em\nas controllers.", + "remote_app": { + "app_name": "BombSquad Remote", + "app_name_short": "BSRemote", + "button_position": "Button Position", + "button_size": "Button Size", + "cant_resolve_host": "Can't find the dock cap'ain.", + "capturing": "Capturing...", + "connected": "Reached the dock.", + "description": "Use your phone or tablet as a controller with BombSquad.\nUp to 8 devices can connect at once for epic local multiplayer madness on a single TV or tablet.", + "disconnected": "Arrrgh they made us walk the plank cap'ain.", + "dpad_fixed": "fixed", + "dpad_floating": "floating", + "dpad_position": "D-Pad Position", + "dpad_size": "D-Pad Size", + "dpad_type": "D-Pad Type", + "enter_an_address": "What's the path, cap'ain", + "game_full": "These flibustiers aren't letting us in cap'ain.", + "game_shut_down": "The ship has sunken.", + "hardware_buttons": "Hardware Buttons", + "join_by_address": "Binnacle", + "lag": "Lag: ${SECONDS} seconds", + "reset": "Fix the ship", + "run1": "Rrrun 1", + "run2": "Rrrun 2", + "searching": "Searching for coffers...", + "searching_caption": "Tap on the name of a coffer to fight for it.\nMake sure you are on the same wifi network as the other pirates.", + "start": "Starrrt", + "version_mismatch": "Arrrgh! the shiip don't fit.\nWe have to update both the dock and the ship\nto join the fight!" + }, + "removeInGameAdsText": "We have to pay up for \"${PRO}\" to get rid of these pessky ads cap'ain.", + "removeInGameAdsTokenPurchaseText": "LIMITED TIME OFFERR: Get ANY type of coins to remove in-battle videos!", + "renameText": "Morrph", + "replayEndText": "End History", + "replayNameDefaultText": "Last Battle History", + "replayReadErrorText": "Errorr remembering history.", + "replayRenameWarningText": "Morrph \"${REPLAY}\" after a battle if you want to keep it; otherwise it will be forrgotten.", + "replayVersionErrorText": "Sorry, this memory was made in a different\nocean of the earth and can't be used.", + "replayWatchText": "Recall Memory", + "replayWriteErrorText": "Errorr creating memories aghhh.", + "replaysText": "Memories", + "reportPlayerExplanationText": "Use this email to report unfair ships, foul language, or other unethics.\nPlease descrribe below:", + "reportThisPlayerCheatingText": "Unfair ship", + "reportThisPlayerLanguageText": "Foul language rawrr..", + "reportThisPlayerReasonText": "What would you like to reporrt?", + "reportThisPlayerText": "Report This Sailor", + "requestingText": "Rrequesting...", + "restartText": "Sail again", + "retryText": "Retrry", + "revertText": "Revert", + "runText": "Speeeed", + "saveText": "Save", + "scanScriptsErrorText": "Errorrr scanning scrolls. see log for details.", + "scanScriptsMultipleModulesNeedUpdatesText": "${PATH} and ${NUM} other canon(s) need to be changed for the time ${API}.", + "scanScriptsSingleModuleNeedsUpdatesText": "${PATH} needs to be updated for the time ${API}.", + "scoreChallengesText": "Score Challenges", + "scoreListUnavailableText": "Score merits unavailable.", + "scoreText": "Scorre", + "scoreUnits": { + "millisecondsText": "Milliseconds", + "pointsText": "Points", + "secondsText": "Seconds" + }, + "scoreWasText": "(was ${COUNT})", + "selectText": "Select", + "sendInfoDescriptionText": "Delivers account and app state information to the developer.\nKindly include yer name or reason for sending.", + "seriesWinLine1PlayerText": "CONQUERS", + "seriesWinLine1TeamText": "DOMINATES", + "seriesWinLine1Text": "WINS THE", + "seriesWinLine2Text": "WARR!", + "settingsWindow": { + "accountText": "Arrcount", + "advancedText": "Tactics", + "audioText": "Arrdio", + "controllersText": "Equipment", + "graphicsText": "Boat Flag", + "playerProfilesMovedText": "Note: Ship captains have moved to the Account window in the main menu.", + "titleText": "Ship's Configurations" + }, + "settingsWindowAdvanced": { + "alwaysUseInternalKeyboardDescriptionText": "(A humble contraption fer scribblin' with yer hands o' the helm!)", + "alwaysUseInternalKeyboardText": "Always stir virtually", + "benchmarksText": "Buoyancy & Stress-Tests", + "devToolsText": "Old Salt's Room", + "disableCameraGyroscopeMotionText": "Disable bird's-eye motion", + "disableCameraShakeText": "Stabilize the ship", + "disableThisNotice": "(you can disable this notice in advanced settings)", + "enterPromoCodeText": "Enter Chant", + "forTestingText": "Note: these values are only for testing and will be lost when the app exits.", + "helpTranslateText": "${APP_NAME}'s non-English translations are a community supported\neffort. If you'd like to contribute or correct a translation,\nfollow the link below. Thanks in advance! Arrrghhhhh......", + "insecureConnectionsDescriptionText": "Not the wisest course, but it might let ye set sail from\nblocked ports or tricky waters!", + "insecureConnectionsText": "Hoist the sails on uncharted seas", + "kickIdlePlayersText": "Cut off those keelhaulers", + "kidFriendlyModeText": "Kid-Friendly Mode (reduced violence, etc)", + "languageText": "Lingo", + "moddingGuideText": "Captain's Code o' Customizin'", + "moddingToolsText": "Orlop", + "mustRestartText": "You must restarrt the game for this to take effect.", + "netTestingText": "Network Testing", + "resetText": "Reset", + "sendInfoText": "Throw Yerr Bo'les", + "showBombTrajectoriesText": "Predict Yer Bomb's", + "showDemosWhenIdleText": "Display examples while yer be statue", + "showDeprecatedLoginTypesText": "Show ye olden ID types", + "showDevConsoleButtonText": "Let the old seadog help", + "showInGamePingText": "See how long it takes these scallywags to carry out yer commands", + "showPlayerNamesText": "Show Pirate Names", + "showUserModsText": "Reveal the Treasure Chest o' Mods", + "titleText": "Advanced", + "translationEditorButtonText": "${APP_NAME} Translation Editor", + "translationFetchErrorText": "translation status unavailable", + "translationFetchingStatusText": "checking translation status...", + "translationInformMe": "Inform me when my language needs updates", + "translationNoUpdateNeededText": "The current lingo be shipshape; huzzah!", + "translationUpdateNeededText": "**The current lingo be needin' some fresh winds!!**", + "vrTestingText": "VR Testing" + }, + "shareText": "Share", + "sharingText": "Sharing...", + "showText": "See", + "signInForPromoCodeText": "Ye must have a real ID for those to work cap'ain.", + "singleGamePlaylistNameText": "Just ${GAME}", + "singlePlayerCountText": "1 pirate", + "sizeLargeText": "Beeg", + "sizeMediumText": "Median", + "sizeSmallText": "Tiny", + "soloNameFilterText": "Solo ${NAME}", + "soundtrackTypeNames": { + "CharSelect": "Pirate Selection", + "Chosen One": "Bounty", + "Epic": "Epic Fights", + "Epic Race": "Epic Rush", + "FlagCatcher": "Steal the Booty", + "Flying": "Jolly Dreams", + "Football": "Flibustiers' Sport", + "ForwardMarch": "Fire in the Hole", + "GrandRomp": "Control the Island", + "Hockey": "Ice Battley", + "Keep Away": "Hold the Coffer", + "Marching": "Ship Defense", + "Menu": "Main Menu", + "Onslaught": "Slaughter", + "Race": "Rush", + "Scary": "Defend the Booty", + "Scores": "Doubloon List", + "Survival": "Scuttle", + "ToTheDeath": "Swashbuckle", + "Victory": "Screen of Glory" + }, + "spaceKeyText": "space", + "statsText": "Stats", + "stopRemindingMeText": "yaarr don't tell me about this here again", + "storagePermissionAccessText": "This here requires storage access", + "store": { + "alreadyOwnText": "Ye already own ${NAME}!", + "bombSquadProNameText": "${APP_NAME} Pro", + "bombSquadProNewDescriptionText": "• Plunders out in-game ads and bothersome screens\n• Unlocks more ship chartin'\n• Also has:", + "buyText": "Buy", + "charactersText": "Characters", + "comingSoonText": "Comin' soon...", + "extrasText": "Extras", + "freeBombSquadProText": "BombSquad be free now, but since ye originally purchased it, ye be gettin' \nthe BombSquad Pro upgrade and ${COUNT} tickets as a thank-you. \nEnjoy the new features, and thank ye for yer support!\n-Eric (best captain)", + "holidaySpecialText": "'oliday special", + "howToSwitchCharactersText": "(go to \"${SETTINGS} -> ${PLAYER_PROFILES}\" to assign & customize characters)", + "howToUseIconsText": "(create global player profiles (in the account window) to use these)", + "howToUseMapsText": "(use these maps in yer own teams/free-for-all playlists)", + "iconsText": "Icons", + "loadErrorText": "Unable to load page.\n check yer internet connection.", + "loadingText": "loadin'", + "mapsText": "Maps", + "miniGamesText": "Minigames", + "oneTimeOnlyText": "(one time only)", + "purchaseAlreadyInProgressText": "A purchase o' this here item be already in progress.", + "purchaseConfirmText": "Purchase ${ITEM}?", + "purchaseNotValidError": "Yer purchase be not valid.\nHail ${EMAIL} if this be a mistake.", + "purchaseText": "Buy yer booty", + "saleBundleText": "Treasure Trove Sale!", + "saleExclaimText": "Bargain Ahoy!", + "salePercentText": "(${PERCENT}% off)", + "saleText": "Sale", + "searchText": "Search", + "teamsFreeForAllGamesText": "Teams / free-for-all games", + "totalWorthText": "*** ${TOTAL_WORTH} value! ***", + "upgradeQuestionText": "Upgrade?", + "winterSpecialText": "Winter special", + "youOwnThisText": "- ye own this here -" + }, + "storeDescriptionText": "8 Player Party Game Madness!\n\nBlast yer hearties (or the computer) in a tourney of explosive mini-games like Steal-the-Booty, Bomber-Ice-Battley, and Epic-Slow-Motion-Swashbuckle!\n\nEasy controls and broad controller support make it a breeze for up to 8 folks to get in on the action; ye can even use yer mobile devices as controllers via the free 'BombSquad Remote' app!\n\nGunpowder be at yer ship!\n\nVisit www.froemling.net/bombsquad for more info.", + "storeDescriptions": { + "blowUpYourFriendsText": "Blow to the sky yer mates.", + "competeInMiniGamesText": "Compete in mini-games rangin' from racin' to flyin'.", + "customize2Text": "Customize characters, mini-games, an' even the soundtrack.", + "customizeText": "Customize characters 'n create yer owns mini-game playlists.", + "sportsMoreFunText": "Sports be more fun with explosives.", + "teamUpAgainstComputerText": "Crew up against the computer." + }, + "storeText": "Store", + "submitText": "Submit", + "submittingPromoCodeText": "Submittin' Code...", + "successText": "Success!", + "supportEmailText": "If ye be experiencin' any problems wit' the\napp, please email ${EMAIL}.", + "teamNamesColorText": "Crew Names/Colors...", + "telnetAccessGrantedText": "Telnet access enabled.", + "telnetAccessText": "Telnet access detected; allow?", + "testBuildErrorText": "Dis test build be no longer active; please check fer a new version.", + "testBuildText": "Test Build", + "testBuildValidateErrorText": "Unable t' validate test build. (no net connection?)", + "testBuildValidatedText": "Test Build Validated; Enjoy!", + "thankYouText": "Thank ye fer yer support! Enjoy the game!!", + "threeKillText": "TRIPLE SCUTTLE!!", + "ticketsDescriptionText": "Tickets be a way to unlock pirates,\nlands, battles, and more in the store!\n\nTickets be only found in treasure chests\nfound in fighting, tourrrnaments and achievements.", + "timeBonusText": "Time Bonus", + "timeElapsedText": "Time Elapsed", + "timeExpiredText": "Time Expired", + "timeSuffixDaysText": "${COUNT}d", + "timeSuffixHoursText": "${COUNT}h", + "timeSuffixMinutesText": "${COUNT}m", + "timeSuffixSecondsText": "${COUNT}s", + "tipText": "Tip", + "titleText": "BombSquad", + "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "Get coins", + "notEnoughTokensText": "Nah enough gold!", + "numTokensText": "${COUNT} Coins", + "openNowDescriptionText": "ye 'ave enough gold to open this \nhere now - or ye can give me some so\ni could fix me boat (10 zillion gold)", + "shinyNewCurrencyText": "BombSquad's shiny new currency.", + "tokenPack1Text": "Wee Token Pack", + "tokenPack2Text": "Medium Token Pack", + "tokenPack3Text": "Large Token Pack", + "tokenPack4Text": "Jumbo Token Pack", + "tokensDescriptionText": "Coins are used if you want chests to open faster\nand for other things for your ship/pirateers.\n\nYer can win coins in battles or buy them\nin bunches. Or get the Golden Tooth Pass for\ninfinite coins and never need anymore of 'em!", + "youHaveGoldPassText": "Ye 'ave a Gold Pass.\nAll token purchases be free.\nEnjoy!" + }, + "topFriendsText": "Top Hearties", + "tournamentCheckingStateText": "Checkin' tournament state; please wait...", + "tournamentEndedText": "This here tourney be over. A new one be comin' soon.", + "tournamentEntryText": "Tournament Entry", + "tournamentFinalStandingsText": "Last Standin's", + "tournamentResultsRecentText": "Recent Tournament Results", + "tournamentStandingsText": "Tournament Standings", + "tournamentText": "Tournament", + "tournamentTimeExpiredText": "Tournament Time Expired", + "tournamentsDisabledWorkspaceText": "Tournaments be disabled when workspaces be active.\nTo re-enable tournaments, turn off yer workspace and restart.", + "tournamentsText": "Tournaments", + "translations": { + "characterNames": { + "Agent Johnson": "Agent Johnson", + "B-9000": "B-9000, matey!", + "Bernard": "Blackbeard Bernard", + "Bones": "Be bones, me hearty!", + "Butch": "Butch be", + "Easter Bunny": "Easter Pirate", + "Flopsy": "Flopsy", + "Frosty": "Frigid", + "Gretel": "Gretel", + "Grumbledorf": "Grumbledorf", + "Jack Morgan": "Jumpy Jack Morgan", + "Kronk": "Kronk", + "Lee": "Lootin' Lee", + "Lucky": "Lucky", + "Mel": "Mel", + "Middle-Man": "Middle-Scallywag", + "Minimus": "Minimus", + "Pascal": "Pascal", + "Pixel": "Pixie", + "Sammy Slam": "Sammy Slam", + "Santa Claus": "Captain Christmas", + "Snake Shadow": "Serpent Shade", + "Spaz": "Sparrow", + "Taobao Mascot": "Taobao Jolly Roger", + "Todd McBurton": "Cap'n Todd McBurton", + "Zoe": "Zoe", + "Zola": "Zola" + }, + "coopLevelNames": { + "${GAME} Training": "${GAME} Trainin'", + "Infinite ${GAME}": "${GAME} War", + "Infinite Onslaught": "Slaughter War", + "Infinite Runaround": "Ship Defense War", + "Onslaught Training": "Slaughter Trainin'", + "Pro ${GAME}": "Pro ${GAME}", + "Pro Football": "Pro Flibustiers' Sport", + "Pro Onslaught": "Pro Slaughter", + "Pro Runaround": "Pro Ship Defense", + "Rookie ${GAME}": "Scallywag ${GAME}", + "Rookie Football": "Scallywag Flibustiers' Sport", + "Rookie Onslaught": "Scallywag Slaughter", + "The Last Stand": "Th' Final Battl'n", + "Uber ${GAME}": "Old Salt ${GAME}", + "Uber Football": "Old Salt Flibustiers' Sport", + "Uber Onslaught": "Old Salt Slaughter", + "Uber Runaround": "Old Salt Ship Defense" + }, + "displayItemNames": { + "${C} Tickets": "${C} Tickets (or playing cards)", + "${C} Tokens": "${C} Coins (arr)", + "Chest": "Treasure Chest", + "L1 Chest": "L1 Treasure Chest (least shiny)", + "L2 Chest": "L2 Treasure Chest (kind o' shiny)", + "L3 Chest": "L3 Treasure Chest (strangely shiny)", + "L4 Chest": "L4 Treasure Chest (almost shiny)", + "L5 Chest": "L5 Treasure Chest (shiny!)", + "L6 Chest": "L6 Treasure Chest (shinier!)", + "Unknown Chest": "Treasure Chest with Something" + }, + "gameDescriptions": { + "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Have the bounty for some time to win.\nClaim the bounty by killing the pirate who has it.", + "Bomb as many targets as you can.": "Bomb as many targets as ye can.", + "Carry the flag for ${ARG1} seconds.": "Carry the Jolly Rowdy Roger fer ${ARG1} seconds.", + "Carry the flag for a set length of time.": "Carry the Jolly Redbeard Roger fer a set length o' time.", + "Crush ${ARG1} of your enemies.": "Crush ${ARG1} o' yer enemies.", + "Defeat all enemies.": "Swab the deck o' all foes.", + "Dodge the falling bombs.": "Dodge the fallin' bombs.", + "Final glorious epic slow motion battle to the death.": "Final glorious epic slow motion battle t' the death.", + "Gather eggs!": "Gather ye eggs, matey!", + "Get the flag to the enemy end zone.": "Get the Jolly Rowdy Roger t' the enemy end zone.", + "How fast can you defeat the ninjas?": "How fast can ye defeat the ninjas?", + "Kill a set number of enemies to win.": "Scuttle a set number o' enemies t' win.", + "Last one standing wins.": "Last one standin' wins.", + "Last remaining alive wins.": "Last matey standin' wins.", + "Last team standing wins.": "Last crew standin' wins.", + "Prevent enemies from reaching the exit.": "Stop yer foes from hittin' the exit, arrr!", + "Reach the enemy flag to score.": "Claim th' enemy banner t' score.", + "Return the enemy flag to score.": "Return the enemy Jolly Redbeard Roger t' score.", + "Run ${ARG1} laps.": "sail ${ARG1} laps.", + "Run ${ARG1} laps. Your entire team has to finish.": "Run ${ARG1} laps. Yer entire crew has t' finish.", + "Run 1 lap.": "sail 1 circuit.", + "Run 1 lap. Your entire team has to finish.": "Hoist the sails fer 1 lap. All hands must finish the race!", + "Run real fast!": "Run like the wind, matey!", + "Score ${ARG1} goals.": "Score ${ARG1} booty!", + "Score ${ARG1} touchdowns.": "Score ${ARG1} touchdowns.", + "Score a goal.": "bag a bounty.", + "Score a touchdown.": "plunder a touchdown.", + "Score some goals.": "Plunder some goals.", + "Secure all ${ARG1} flags.": "Hoist all ${ARG1} flags!", + "Secure all flags on the map to win.": "Hoist all flags on th' map t' claim victory!", + "Secure the flag for ${ARG1} seconds.": "Hoist the flag fer ${ARG1} ticks.", + "Secure the flag for a set length of time.": "Hoist the flag fer a spell o' time.", + "Steal the enemy flag ${ARG1} times.": "Snatch th' enemy's flag ${ARG1} times, matey!", + "Steal the enemy flag.": "Plunder the foe's flag.", + "There can be only one.": "There be only one!", + "Touch the enemy flag ${ARG1} times.": "Give th' enemy flag a good poke ${ARG1} times.", + "Touch the enemy flag.": "Touch th' enemy flag.", + "carry the flag for ${ARG1} seconds": "carry the Jolly Redbeard Roger fer ${ARG1} seconds", + "kill ${ARG1} enemies": "scuttle ${ARG1} enemies", + "last one standing wins": "last one standin' wins", + "last team standing wins": "last crew standin' wins", + "return ${ARG1} flags": "return ${ARG1} Jolly Rogers", + "return 1 flag": "return 1 Jolly Redbeard Roger", + "run ${ARG1} laps": "sail ${ARG1} laps", + "run 1 lap": "sail 1 circuit", + "score ${ARG1} goals": "score ye ${ARG1} goals, matey", + "score ${ARG1} touchdowns": "score ${ARG1} touchdowns, ye scallywag!", + "score a goal": "bag a bounty", + "score a touchdown": "plunder a touchdown", + "secure all ${ARG1} flags": "secure all yer ${ARG1} flags, savvy?", + "secure the flag for ${ARG1} seconds": "plunder the flag fer ${ARG1} ticks", + "touch ${ARG1} flags": "tap yer ${ARG1} flags", + "touch 1 flag": "ye be touchin' 1 flag" + }, + "gameNames": { + "Assault": "Fire in the Hole", + "Capture the Flag": "Steal the Booty", + "Chosen One": "Bounty", + "Conquest": "Control the Island", + "Death Match": "Swashbuckle", + "Easter Egg Hunt": "Egg Hunt o' Easter", + "Elimination": "Scuttle", + "Football": "Flibustiers' Sport", + "Hockey": "Ice Battley", + "Keep Away": "Hold the Coffer", + "King of the Hill": "Defend the Booty", + "Meteor Shower": "Meteor Broadsides", + "Ninja Fight": "Ninja Battle", + "Onslaught": "Slaughter", + "Race": "Rush", + "Runaround": "Ship Defense", + "Target Practice": "Target Practicin'", + "The Last Stand": "Thar Final Stand" + }, + "inputDeviceNames": { + "Keyboard": "Plank o' keys", + "Keyboard P2": "Keybeard P2" + }, + "languages": { + "Arabic": "Arrr, Arabic be it!", + "Belarussian": "Belarusian Scallywag", + "Chinese": "Chinesey Simplified", + "ChineseTraditional": "Chinaman's Olde", + "Croatian": "Croatian lass", + "Czech": "Czech, matey!", + "Danish": "Danish scallywag", + "Dutch": "Dutchy", + "English": "English, matey", + "Esperanto": "Arrr, Esperanto!", + "Filipino": "Filipino matey", + "Finnish": "Finnish, aye", + "French": "Frenchy", + "German": "German, aye!", + "Gibberish": "Blather", + "Greek": "Greek", + "Hindi": "Arrr, Hindi!", + "Hungarian": "Hungarian, arrr!", + "Indonesian": "Indonesian be", + "Italian": "Italin'", + "Japanese": "Japanese", + "Korean": "Korey", + "Malay": "Malaysie", + "Persian": "Persian Sea Dog", + "PirateSpeak": "Pirate Speak", + "Polish": "Polish", + "Portuguese": "Portuguese, matey!", + "Romanian": "Romanian, me hearty!", + "Russian": "Russian", + "Serbian": "Serbiarr", + "Slovak": "Slovak scallywag", + "Spanish": "Spanish matey", + "Swedish": "Swedisher", + "Tamil": "Tamin", + "Thai": "Thai be", + "Turkish": "Turk", + "Ukrainian": "Ukrainian Sea Dog", + "Venetian": "Venetian scallywag", + "Vietnamese": "Vietnamin'!" + }, + "leagueNames": { + "Bronze": "Bronze be", + "Diamond": "Shiny gem", + "Gold": "Dubloons", + "Silver": "Argent" + }, + "mapsNames": { + "Big G": "Cap'n G", + "Bridgit": "Bridgit", + "Courtyard": "Hearties' Haven", + "Crag Castle": "Crag Fortress", + "Doom Shroom": "Doom Shroom, matey", + "Football Stadium": "Flibustiers' Ground", + "Happy Thoughts": "Jolly Dreams", + "Hockey Stadium": "Icy Field", + "Lake Frigid": "Frigid Cove", + "Monkey Face": "Monkey Mug", + "Rampage": "Ruckus", + "Roundabout": "Roundabout, matey", + "Step Right Up": "Step Right Aboard", + "The Pad": "Th' Corsair's Cradle", + "Tip Top": "Tip Top", + "Tower D": "D Tower", + "Zigzag": "Zigzag, matey!" + }, + "playlistNames": { + "Just Epic": "Just Bonkers", + "Just Sports": "Jest Sportin'" + }, + "scoreNames": { + "Flags": "Jolly Rogers", + "Goals": "booty", + "Score": "Plunder", + "Survived": "Be survivin'!", + "Time": "Tide", + "Time Held": "Time Captured" + }, + "serverResponses": { + "A code has already been used on this account.": "A codex be already in use on this account, matey.", + "A reward has already been given for that address.": "A bounty's already been served fer that location, matey.", + "Account linking successful!": "Account linkin' be a success, matey!", + "Account unlinking successful!": "Account be unlinked, savvy!", + "Accounts are already linked.": "Accounts be already linked, matey.", + "Ad view could not be verified.\nPlease be sure you are running an official and up-to-date version of the game.": "Ad view be not verified, matey.\n Make sure ye be usin' an official and up-to-date version o' the game.", + "An error has occurred; (${ERROR})": "A blunder beha' happened; (${ERROR})", + "An error has occurred; please contact support. (${ERROR})": "Arrr! A blunder be afoot; seek out the support crew. (${ERROR})", + "An error has occurred; please contact support@froemling.net.": "A blunder be happened; do contact support@froemling.net.", + "An error has occurred; please try again later.": "A mishap be happenin'; try again later, matey.", + "Are you sure you want to link these accounts?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\nThis cannot be undone!": "Be ye sure ye want to link these accounts? \n\n${ACCOUNT1} \n${ACCOUNT2} \n\nThis deed can't be undone!", + "BombSquad Pro unlocked!": "BombSquad Pro be unlocked, arrr!", + "Can't link 2 accounts of this type.": "Ye can't be linkin' 2 accounts o' this sort.", + "Can't link 2 diamond league accounts.": "Can't be joinin' 2 diamond league accounts, matey.", + "Can't link; would surpass maximum of ${COUNT} linked accounts.": "Can’t link; would be over ${COUNT} mateys linked accounts.", + "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Cheatin' be detected; scores an' booty suspended fer ${COUNT} days.", + "Could not establish a secure connection.": "Couldn’t forge a trusty link, matey.", + "Daily maximum reached.": "Arrr, daily max be hit!", + "Daily sign-in reward": "Reward fer daily boardin' the ship", + "Entering tournament...": "Settin' sail fer the tournament...", + "Invalid code.": "Code be invalid, matey.", + "Invalid payment; purchase canceled.": "Ye payment be invalid; yer buyin' be scuttled.", + "Invalid promo code.": "Ye be using a scallywag promo code!", + "Invalid purchase.": "Ye be makin' a wrong buy.", + "Invalid tournament entry; score will be ignored.": "Blasted tournament entry be invalid; yer score be ignored!", + "Item unlocked!": "Ye be unlockin' an item!", + "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "LINKING DENIED. ${ACCOUNT} be havin' \nimportant treasure that'd ALL BE LOST. \nYe can link it in the opposite order if ye fancy\n(and lose THIS account's booty instead)", + "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "Be ye wantin' to link account ${ACCOUNT} to this here account? \nAll treasure on ${ACCOUNT} be settin' sail to \nDavy Jones' locker. This be irreversible. Be ye certain?", + "Longer streaks lead to better rewards.": "better treasures awaits them o' brave 'earts", + "Max number of playlists reached.": "Aye, ye've hit th' max o' playlists!", + "Max number of profiles reached.": "Ye've hit the max o' profiles, matey!", + "Maximum friend code rewards reached.": "Ye be hittin’ the max friend code booty!", + "Message is too long.": "The message be too long, matey.", + "New tournament result!": "New result for yer last battle!", + "No servers are available. Please try again soon.": "No servers be available. Try again soon, matey.", + "No slots available. Free a slot and try again.": "No room for yer booty. Open them for room and trrry again.", + "Profile \"${NAME}\" upgraded successfully.": "Profile o' ${NAME} be upgraded splendidly.", + "Profile could not be upgraded.": "Profile be unable t' be upgraded.", + "Purchase successful!": "Ye be buyin' successful!", + "Received ${COUNT} tickets for signing in.\nCome back tomorrow to receive ${TOMORROW_COUNT}.": "Got yer ${COUNT} tickets fer signin' in.\nReturn tomorrow fer ${TOMORROW_COUNT} more!", + "Server functionality is no longer supported in this version of the game;\nPlease update to a newer version.": "Server be out o' service in this version o' the game;\nUpdate to a newer version, matey.", + "Sorry, there are no uses remaining on this code.": "Arrr, no uses be left fer this code, matey.", + "Sorry, this code has already been used.": "Arrr, this code be already used, matey.", + "Sorry, this code has expired.": "Arrr, this code be expired, matey.", + "Sorry, this code only works for new accounts.": "Arrr, this code be workin' only fer fresh accounts!", + "Sorry, this has expired.": "Arr! Tis' be from too long ago!", + "Still searching for nearby servers; please try again soon.": "Still huntin' fer nearby ships; try again shortly, matey.", + "Streak: ${NUM} days": "days with no accidents: ${NUM}", + "Temporarily unavailable; please try again later.": "Be out o' reach fer now; please try again later, matey.", + "The tournament ended before you finished.": "The tourney be over 'fore ye finished.", + "This account cannot be unlinked for ${NUM} days.": "This account be stuck fer ${NUM} days.", + "This code cannot be used on the account that created it.": "This code be not fer use on the account that made it.", + "This is currently unavailable; please try again later.": "This be not available now; try again later, matey.", + "This requires version ${VERSION} or newer.": "This be needin' version ${VERSION} or newer, matey.", + "Tournaments disabled due to rooted device.": "Tournaments be disabled 'cause o' rooted contraption.", + "Tournaments require ${VERSION} or newer": "Tournaments be needin' ${VERSION} or newer, matey!", + "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "Be ye wantin' t' unlink ${ACCOUNT} from this account?\nAll treasure on ${ACCOUNT} be reset.\n(Except fer achievements in some cases, arr!)", + "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "ARRR: Beware! Complaints o' hackin' be raised against yer account.\nAccounts caught hackin' shall be banned. Play fair, me hearty!", + "Wait reduced!": "Ye no more need for waitin'!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "WARNING: the version o' this ship is limited to old pirate data; stuff may appear missin' or outdated.\nPlease upgrade to newer ship so ye can see your latest pirate data.", + "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "Be ye wantin' to link yer device account to this one?\n\nYe device account be ${ACCOUNT1}\nThis account be ${ACCOUNT2}\n\nThis be lettin' ye keep yer current progress.\nArrr: this can’t be undone!", + "You already own this!": "Ye already be ownin' this!", + "You can join in ${COUNT} seconds.": "Ye can join in ${COUNT} heartbeats.", + "You don't have enough tickets for this!": "Ye ain't got enough tickets fer this!", + "You don't own that.": "Ye don't be ownin' that.", + "You got ${COUNT} tickets!": "Ye got ${COUNT} tickets, matey!", + "You got ${COUNT} tokens!": "Ye be gettin ${COUNT} coins, matey!", + "You got a ${ITEM}!": "Ye got a ${ITEM}!", + "You got a chest!": "Yer got yerself a treasure chest! Ehyyyy!!!", + "You got an achievement reward!": "Yer got a achievement shiny!", + "You have been promoted to a new league; congratulations!": "Ye be promoted to a new league; congrats, matey!", + "You lost a chest! (All your chest slots were full)": "Arr! Ye be lost yer treasure! (All room for booty were taken)", + "You must update the app to view this.": "Ye be needin' t' update th' app t' see this.", + "You must update to a newer version of the app to do this.": "Ye be needin' t' upgrade t' a fresh version o' th' app t' do this.", + "You must update to the newest version of the game to do this.": "Ye be needin' t' update t' the latest version o' th' game t' do this.", + "You must wait a few seconds before entering a new code.": "Ye be needin' to wait a spell 'fore ye enter a new code.", + "You placed #${RANK} in a tournament!": "Ye' be placed #${RANK} in the last battle!", + "You ranked #${RANK} in the last tournament. Thanks for playing!": "Ye be ranked #${RANK} in th' last tournament. Arrr, thanks fer playin'!", + "Your account was rejected. Are you signed in?": "Yer account be rejected, matey. Be ye signed in?", + "Your ad views are not registering. Ad options will be limited for a while.": "Yerr' be not watching the videos (or just not registering). We be limitin them for now.", + "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Ye copy o' the game be altered.\nPlease undo any changes and give it another go.", + "Your friend code was used by ${ACCOUNT}": "Ye matey code be usin' by ${ACCOUNT}" + }, + "settingNames": { + "1 Minute": "1 Tick o' the Clock", + "1 Second": "1 Heartbeats", + "10 Minutes": "10 Tick o' the Clock", + "2 Minutes": "2 Tick o' the Clock", + "2 Seconds": "2 Heartbeats", + "20 Minutes": "20 Tick o' the Clock", + "4 Seconds": "4 Heartbeats", + "5 Minutes": "5 Tick o' the Clock", + "8 Seconds": "8 Tickin' Seconds", + "Allow Negative Scores": "Let the Scallywags Score Negatively", + "Balance Total Lives": "Balance Total Lives, Arrr!", + "Bomb Spawning": "Powder Keg Spawnin'", + "Chosen One Gets Gloves": "Bounty Has Strong Hooks", + "Chosen One Gets Shield": "Bounty Has Abs", + "Chosen One Time": "Bounty Time", + "Enable Impact Bombs": "Engage Impact Bombs, matey!", + "Enable Triple Bombs": "Unleash Triple Bombs", + "Entire Team Must Finish": "All Hands Must Complete", + "Epic Mode": "Epic Ahoy", + "Flag Idle Return Time": "Jolly Roger Idle Return Time", + "Flag Touch Return Time": "Jolly Roger Touch Back Time", + "Hold Time": "Avast Time", + "Kills to Win Per Player": "Kills t' Win Fer Player", + "Laps": "Laps, matey!", + "Lives Per Player": "Lives Fer Matey", + "Long": "Long John", + "Longer": "Longer", + "Mine Spawning": "Arrr, Spawnin' o' Mines", + "No Mines": "Nay Mines", + "None": "Naught", + "Normal": "Naught", + "Pro Mode": "Cap'n Mode", + "Respawn Times": "Rebirth Intervals", + "Score to Win": "Mark fer Victory", + "Short": "Brief", + "Shorter": "Briefer", + "Solo Mode": "Alone Mode", + "Target Count": "Target Count be", + "Time Limit": "Hourglass Boundary" + }, + "statements": { + "${TEAM} is disqualified because ${PLAYER} left": "${TEAM} be walkin' the plank 'cause ${PLAYER} abandoned ship", + "Killing ${NAME} for skipping part of the track!": "Slayin' ${NAME} for skippin' part o' the course!", + "Warning to ${NAME}: turbo / button-spamming knocks you out.": "Be warned, ${NAME}: Goin fast or button-breakin may knock ye out cold!" + }, + "teamNames": { + "Bad Guys": "Scoundrel Crew", + "Blue": "Sapphire", + "Good Guys": "Righteous Crew", + "Red": "Scarlet" + }, + "tips": { + "A perfectly timed running-jumping-spin-punch can kill in a single hit\nand earn you lifelong respect from your friends.": "A perfectly timed running-jumping-spin-punch can send a scallywag to \nDavy Jones' locker in a single blow and earn ye lifelong respect from yer mates.", + "Always remember to floss.": "Always be rememberin' to keep yer teeth shipshape, matey! Aye, and don't forget to floss!", + "Create player profiles for yourself and your friends with\nyour preferred names and appearances instead of using random ones.": "Craft player pirates for ye and yer mates with \nyer preferred names and looks, instead of relyin' on random ones.", + "Curse boxes turn you into a ticking time bomb.\nThe only cure is to quickly grab a health-pack.": "Curse boxes turn ye into a ticking time bomb, matey. \nThe only cure be to swiftly snatch a health-pack afore ye blow", + "Despite their looks, all characters' abilities are identical,\nso just pick whichever one you most closely resemble.": "Despite their appearances, all characters be possessin' the same abilities. \nSo choose the one that resembles ye the most!", + "Don't get too cocky with that energy shield; you can still get yourself thrown off a cliff.": "Don't be too cocksure with that energy shield, matey. Ye can still find yerself hurled off a cliff if ye ain't careful!", + "Don't run all the time. Really. You will fall off cliffs.": "Don't be sprintin' all the time, matey. Mark me words, ye'll find yerself overboard off cliffs if ye don't ease up!", + "Don't spin for too long; you'll become dizzy and fall.": "Don't be spinning for too long, lest ye become dizzy and keel over like a drunken sailor!", + "Hold any button to run. (Trigger buttons work well if you have them)": "Clutch any button to break into a run. (The trigger buttons be fine choices if ye have 'em aboard)", + "Hold down any button to run. You'll get places faster\nbut won't turn very well, so watch out for cliffs.": "Clutch any button to break into a run. Ye'll cover ground quicker, but beware, \nye won't be turning on a dime, so keep a weather eye out for cliffs ahead!", + "Ice bombs are not very powerful, but they freeze\nwhoever they hit, leaving them vulnerable to shattering.": "Ice gunpowder may not pack much punch, but they freeze \nthe soul of whoever they strike, leaving 'em vulnerable to shattering.", + "If someone picks you up, punch them and they'll let go.\nThis works in real life too.": "If a scallywag grabs ye, give 'em a good punch and they'll likely drop ye. \nWorks just as well on land as it does at sea!", + "If you are short on controllers, install the '${REMOTE_APP_NAME}' app\non your mobile devices to use them as controllers.": "If ye find yerself short on controllers, hoist the '${REMOTE_APP_NAME}' app onto yer mobile devices, \nand ye can steer yer ship with 'em just like a proper captain!", + "If you get a sticky-bomb stuck to you, jump around and spin in circles. You might\nshake the bomb off, or if nothing else your last moments will be entertaining.": "If ye find yerself stuck with a sticky-bomb, jump like a bilge rat and spin like a whirlpool. \nYe might just shake the blasted thing loose, or at least make a grand show of yer final moments!", + "If you kill an enemy in one hit you get double points for it.": "If ye send a foe to Davy Jones' locker in a single blow, ye'll be haulin' in double the booty for yer trouble.", + "If you pick up a curse, your only hope for survival is to\nfind a health powerup in the next few seconds.": "If ye be cursed by ill fate, yer only chance for survival be to spy out \na health powerup in the next few ticks o' the clock.", + "If you stay in one place, you're toast. Run and dodge to survive..": "If ye be stayin' anchored in one spot, ye'll be meetin' Davy Jones soon enough! Run and weave to keep the sharks at bay and yer ship afloat", + "If you've got lots of players coming and going, turn on 'auto-kick-idle-players'\nunder settings in case anyone forgets to leave the game.": "If ye be havin' a swarm o' sailors joinin' and departin' yer ship, be sure to hoist the 'auto-kick-idle-players' flag \nin yer settings, lest any scallywag forgets to walk the plank", + "If your device gets too warm or you'd like to conserve battery power,\nturn down \"Visuals\" or \"Resolution\" in Settings->Graphics": "If yarr ship is getting too warrrm or you don't want it go down,\nTurn down the graphicky stuff.", + "If your framerate is choppy, try turning down resolution\nor visuals in the game's graphics settings.": "Yarr ship is too slow?\nIf so then trry turnin the graphicky stuff down!", + "In Capture-the-Flag, your own flag must be at your base to score, If the other\nteam is about to score, stealing their flag can be a good way to stop them.": "In Steal-the-Booty, yarr trreasure must be at boat to get their trrreasure!\nIf you steal theirrr coffer before they do, yarr might get a chance!", + "In hockey, you'll maintain more speed if you turn gradually.": "In Ice Battley,yarr can keep yarself runnin' if ya just slowlye turrrn.", + "It's easier to win with a friend or two helping.": "Yarr hire some pirate to help ya! It's betterrr.", + "Jump just as you're throwing to get bombs up to the highest levels.": "Yarr jump as yarr's shootin' to take it more higherrr!", + "Land-mines are a good way to stop speedy enemies.": "Shoot the mine forr stoppin those runnin scallywags!!", + "Many things can be picked up and thrown, including other players. Tossing\nyour enemies off cliffs can be an effective and emotionally fulfilling strategy.": "Yarr arrms can pick up any thing and thrrrow,Yarr can also thrrow some scallywags.\nThrrowing them offf the ship is yar best thinkin!", + "No, you can't get up on the ledge. You have to throw bombs.": "Arr, you can't get up there lad. You have to throw bombs.", + "Players can join and leave in the middle of most games,\nand you can also plug and unplug controllers on the fly.": "Yarr pirates can join and abandon me ship at any time!\nThey can also brrring some and leave buttony stuff!", + "Practice using your momentum to throw bombs more accurately.": "Use yarr legs to shoot betterrrr!", + "Punches do more damage the faster your fists are moving,\nso try running, jumping, and spinning like crazy.": "Swings be mightier the faster yer fists be movin', \nso try runnin', jumpin', and spinnin' like a whirlwind.", + "Run back and forth before throwing a bomb\nto 'whiplash' it and throw it farther.": "rrun baack en forth before blasdtin\nto whip it into yerr enemies", + "Take out a group of enemies by\nsetting off a bomb near a TNT box.": "if ya wanna get a buncha pirates out\nblast a powder near them powder cubes", + "The head is the most vulnerable area, so a sticky-bomb\nto the noggin usually means game-over.": "as a wise captain once said:\n\"BE CAREFUL OF YER STUPID HEAD\"", + "This level never ends, but a high score here\nwill earn you eternal respect throughout the world.": "these scallywags aint gonna stop coming, but the more ye kill\nthe more yer legends will spread accross the sea (arrrrr)", + "Throw strength is based on the direction you are holding.\nTo toss something gently in front of you, don't hold any direction.": "the powerr of yer throws is based on where yer walkin\nif ya want them in front of yer, then stop movin", + "Tired of the soundtrack? Replace it with your own!\nSee Settings->Audio->Soundtrack": "tired of them shanties? replace it with yer owns!\nidk how tho", + "Try 'Cooking off' bombs for a second or two before throwing them.": "cook yer enemies some delicious powderrr", + "Try tricking enemies into killing eachother or running off cliffs.": "trick them bilge suckers into hittin eachother or runnin of yer ship", + "Use the pick-up button to grab the flag < ${PICKUP} >": "smash them ${PICKUP} button to grrrab them flag", + "Whip back and forth to get more distance on your throws..": "whip yer powder to get them blast further", + "You can 'aim' your punches by spinning left or right.\nThis is useful for knocking bad guys off edges or scoring in hockey.": "ya can 'aim' yer fists like powder by whippin yer body.\nya can use this for knocking them lily livers off yer ship or claimin doubloons in ice age", + "You can judge when a bomb is going to explode based on the\ncolor of sparks from its fuse: yellow..orange..red..BOOM.": "ya can tell when the powder is gonna blast from them\ncolors hopin on the fuse: yeller..orange..red..BLAST!", + "You can throw bombs higher if you jump just before throwing.": "yer powderr can reach the top of them ship if ya jump before blastin", + "You take damage when you whack your head on things,\nso try to not whack your head on things.": "pirrates' skulls arre sensitive\ndont blast yer's into them walls", + "Your punches do much more damage if you are running or spinning.": "yer fists deal more than powderr if yer runnin or whippin" + } + }, + "trophiesRequiredText": "this thingy need them ${NUMBER} of yer treasures", + "trophiesText": "treasures", + "trophiesThisSeasonText": "yer treasures this season", + "tutorial": { + "cpuBenchmarkText": "yer tutorial is gonna fight yer CPU at the speed of 583153348.236 knots", + "phrase01Text": "Ahoy, Captain!", + "phrase02Text": "Welcome to ${APP_NAME}(its actually PowderTime(C) but ok)", + "phrase03Text": "here's a few tips on how to control yer pirate:", + "phrase04Text": "alotta stuff in ${APP_NAME} are SCIENCE based.", + "phrase05Text": "like when ya fist them enemies,...", + "phrase06Text": "..damage is based on the speed of yer fists.", + "phrase07Text": "Aye? We weren't movin, so that barely hurt them ${NAME}.", + "phrase08Text": "lets try jumpin and gettin dizzy to get more speed", + "phrase09Text": "Aye, that did the deed.", + "phrase10Text": "runnin is cool too captain.", + "phrase11Text": "smash ANY of them buttons to run", + "phrase12Text": "ya wanna be like jack? run AND spin.", + "phrase13Text": "(${NAME} was gonna walk yer plank anyways)", + "phrase14Text": "ya can pick up and throw alotta stuff, ${NAME} is just one example", + "phrase15Text": "and finally, powder", + "phrase16Text": "Hurlin' bombs be an art ye need to hone, matey.", + "phrase17Text": "Arrr! Ye call that a toss? That be a sorry excuse for a throw, matey!", + "phrase18Text": "movin helps ya powderr further", + "phrase19Text": "jumpin makes ya get higher", + "phrase20Text": "whiplashin them makes a hole in the ship even before the powder blasts!", + "phrase21Text": "timin them powder is a bit hard", + "phrase22Text": "err", + "phrase23Text": "let them powder \"cook\" for a bit", + "phrase24Text": "delicious!", + "phrase25Text": "Well, that be just about it.", + "phrase26Text": "go and take back the sea, captain", + "phrase27Text": "Remember yer training, and ye WILL come back alive!", + "phrase28Text": "...aye, mayhap..", + "phrase29Text": "Good luck mate!", + "randomName1Text": "Douglass", + "randomName2Text": "Morgan", + "randomName3Text": "Ironfist", + "randomName4Text": "Jones", + "randomName5Text": "Jack", + "skipConfirmText": "Are ye sure mate? Tap or press to confirm.", + "skipVoteCountText": "${COUNT}/${TOTAL} skip votes", + "skippingText": "skipping training... Arrrgh", + "toSkipPressAnythingText": "(tap or prress anything to skip training)" + }, + "twoKillText": "2x KILL!", + "uiScaleText": "UI Spyglass Magnification", + "unavailableText": "unavailable", + "unclaimedPrizesText": "ye 'ave unclaimed booty!", + "unconfiguredControllerDetectedText": "Unconfigured controller detected:", + "unlockThisInTheStoreText": "This must be unlocked in the shore.", + "unlockThisProfilesText": "To create more than ${NUM} pirates, ye need:", + "unlockThisText": "To unlock this, ye need:", + "unsupportedControllerText": "Arrr, that contraption by the name o' \"${NAME}\" be not a sailin' ship we support.", + "unsupportedHardwareText": "Sorrry mate, this harrdware is not supporrted by this build of the game.", + "upFirstText": "Up first:", + "upNextText": "Up next in game ${COUNT}:", + "updatingAccountText": "Updating your arrcount...", + "upgradeText": "Upgrade", + "upgradeToPlayText": "Ye need to get \"${PRO}\" in the gunpowder shore t' sail around here.", + "useDefaultText": "Use Default", + "userSystemScriptsCreateText": "Craft User System Scripts", + "userSystemScriptsDeleteText": "Blast User System Scripts from the plank", + "usesExternalControllerText": "This game uses an external controllerrr for input.", + "usingItunesText": "Using Music App for soungtrack...", + "v2AccountLinkingInfoText": "To share ye beauty pirate, tap that Manage Account.", + "v2AccountRequiredText": "This here needs a bilge sucking V2 ID to work. Go try getting one of those.", + "validatingTestBuildText": "Validating Test Build...", + "viaText": "by", + "victoryText": "Bounty !!!", + "voteDelayText": "Ye can't start anotherr vote for ${NUMBER} seconds", + "voteInProgressText": "A vote is already in prrogrrress...", + "votedAlreadyText": "Ye already voted", + "votesNeededText": "${NUMBER} votes needed arrrhh...", + "vsText": "V/s.", + "waitingForHostText": "(waiting for ${HOST} to set sail)", + "waitingForPlayersText": "waiting for pirates to join...", + "waitingInLineText": "Waiting in line (ship is full)... arrr...", + "watchAVideoText": "Scout a Ship", + "watchAnAdText": "Watch a Show", + "watchWindow": { + "deleteConfirmText": "Forget \"${REPLAY}\"?", + "deleteReplayButtonText": "Forget\nMemory", + "myReplaysText": "My Memories", + "noReplaySelectedErrorText": "No Memory Chosen", + "playbackSpeedText": "Memory Speed: ${SPEED}", + "renameReplayButtonText": "Rename\nMemory", + "renameReplayText": "Rename \"${REPLAY}\" to:", + "renameText": "Rename", + "replayDeleteErrorText": "Errorr forgetting memory. Arrr!!", + "replayNameText": "Memory Name", + "replayRenameErrorAlreadyExistsText": "A memory with that name already exists.", + "replayRenameErrorInvalidName": "Can't rename memory; invalid name. Arrr!", + "replayRenameErrorText": "Errorrr renaming memory.", + "sharedReplaysText": "Shared Memories", + "titleText": "Watch", + "watchReplayButtonText": "Watch yer\nmemory" + }, + "waveText": "Wave", + "wellSureText": "Sure Mate!", + "whatIsThisText": "And what tis supposed to be??", + "wiimoteLicenseWindow": { + "titleText": "DarwiinRemote Copyright ©" + }, + "wiimoteListenWindow": { + "listeningText": "Listening For Weemotes...", + "pressText": "Prress Weemote buttons 1 and 2 togetherr. Arr!!!", + "pressText2": "On newerr Weemotes with Motion Plus built in, prress the red 'sink' button on the back instead." + }, + "wiimoteSetupWindow": { + "copyrightText": "DarwiinRemote Copyright", + "listenText": "Ahoy Listen", + "macInstructionsText": "Make sure your Wee is off and Goldtooth is enabled\non yer Mac, then prress 'Listen'. Weemote support can\nbe a bit yanky, so yer may have to trry a few times\nbefore yer get a connection.\n\nGoldtooth should handle up to 7 pirates,\nthough yer mileage may varry.\n\nBombSquad supports the original Weemotes, Nunchuks,\nand the Classic Controllerr.\nThe newer Wee Remote Plus now works too\nbut not with luggage.", + "thanksText": "Thanks to the DarwiinRemote gang\nFor making this possible. Arrr!!!\n", + "titleText": "Weemote setup arrr !" + }, + "winsPlayerText": "${NAME} Wins! Arrr !!!", + "winsTeamText": "${NAME} Wins! Arrrr !!!", + "winsText": "${NAME} Wins! Arrrr !!!", + "workspaceSyncErrorText": "Errrorrr sinking ${WORKSPACE}. See log for morrre.", + "workspaceSyncReuseText": "Can't sink ${WORKSPACE}. Reusing prrevious sinked verrrsion.", + "worldScoresUnavailableText": "Sea points arr gone.", + "worldsBestScoresText": "Best scorrr o all sailorrs", + "worldsBestTimesText": "Best times o all sailorrs", + "xbox360ControllersWindow": { + "getDriverText": "Get yer Drivers", + "macInstructions2Text": "to contrrol yer pirates, yaar also need them magic receivers thaart\ncome wit the 'CrrossBox magic contrroler for holes in yer ship'.\nget 1 magic receiver, powder with 4 pirrrrates!\n\n\nAvast ye! magic stuuf frrom the 3rrd class ships wont do magic!\nsmallcushion(Trademark pending) ain't selling em separately! yer need em\nfrom them bundle or yer can get em on the bay.\n\nif this makes ya go yarrrr then give the vrrroom vrroooom dev\nsome pieces of eight at his place", + "macInstructionsText": "ya need sum\nmac\ndrivers", + "ouyaInstructionsText": "to use them crros box 360(C) controllers with PowderTime(Trademark pending, simply\nplug em into yer plastic thing's USP port. yer can use a psp bob\nto have multiplee pirrrates\n\nte use them magical ones yer have to get a magic thingy,\ndunno where ya can get em\nbut\nit lets yarrr powder around with 4 pirrates!", + "titleText": "usin the crrross box contrrolers with ${APP_NAME}:" + }, + "yesAllowText": "Aye, Captain!", + "yourBestScoresText": "yer best doubloons", + "yourBestTimesText": "yer best times", + "yourPrizeText": "Yar treasure:" +} \ No newline at end of file diff --git a/dist/ba_data/data/languages/polish.json b/dist/ba_data/data/languages/polish.json index 78623aa..bc0dda3 100644 --- a/dist/ba_data/data/languages/polish.json +++ b/dist/ba_data/data/languages/polish.json @@ -7,7 +7,9 @@ "campaignProgressText": "Postęp Kampanii [Trudny]: ${PROGRESS}", "changeOncePerSeason": "Możesz to zmienić tylko raz na sezon.", "changeOncePerSeasonError": "Musisz poczekać do następnego sezonu, by znowu to zmienić (${NUM} dni)", + "createAnAccountText": "Stwórz Konto", "customName": "Własna Nazwa", + "deleteAccountText": "Usuń konto", "googlePlayGamesAccountSwitchText": "Jeśli chcesz użyć innego konta Google,\nużyj aplikacji Gry Google Play, aby przełączyć się na to konto.", "linkAccountsEnterCodeText": "Wpisz Kod", "linkAccountsGenerateCodeText": "Wygeneruj Kod", @@ -26,6 +28,7 @@ "setAccountNameDesc": "Wybierz nazwę do wyświetlenia dla swojego konta.\nMożesz użyć nazwy z jednego z połączonych kont\n lub utworzyć unikalną niestandardową nazwę.", "signInInfoText": "Zaloguj się, by zbierać kupony, rywalizować online\ni przenosić postęp gry między urządzeniami", "signInText": "Zaloguj się", + "signInWithAnEmailAddressText": "Zaloguj się adresem email", "signInWithDeviceInfoText": "(automatyczne konto dostępne tylko z tego urządzenia)", "signInWithDeviceText": "Zaloguj się kontem urządzenia", "signInWithGameCircleText": "Zaloguj się z Game Circle", @@ -34,7 +37,7 @@ "signInWithTestAccountText": "Zaloguj się kontem testowym", "signInWithText": "Zaloguj się kontem ${SERVICE}", "signInWithV2InfoText": "(konto działa na wszystkich platformach)", - "signInWithV2Text": "Zaloguj się kontem BombSquad", + "signInWithV2Text": "Zaloguj się kontem ${APP_NAME}", "signOutText": "Wypisz się", "signingInText": "Trwa logowanie...", "signingOutText": "Trwa wylogowywanie...", @@ -346,6 +349,8 @@ "allowText": "Zezwól", "alreadySignedInText": "Twoje konto jest zalogowane z innego urządzenia;\nproszę zmienić konta lub zamknąć grę na innych\nurządzeniach i spróbować ponownie.", "apiVersionErrorText": "Nie mogę załadować modułu ${NAME}; wersja używana - ${VERSION_USED}; wymagana - ${VERSION_REQUIRED}.", + "applyText": "Zatwierdź", + "areYouSureText": "Jesteś pewny?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(\"Auto\" aktywuj tylko wtedy, gdy są podłączone słuchawki)", "headRelativeVRAudioText": "Head-Relative VR Audio", @@ -371,14 +376,23 @@ "boostText": "Dopalacz", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} jest konfigurowany w samej aplikacji.", "buttonText": "przycisk", - "canWeDebugText": "Chcesz aby BombSquad automatycznie raportował błędy,\nawarie i podstawowe informacje o użytkowaniu deweloperowi?\n\nPrzesyłane dane nie będą zawierać Twoich osobistych danych,\na pomogą jedynie poprawić działanie gry i usunąć jej błędy.", + "canWeDebugText": "Chcesz, aby ${APP_NAME} automatycznie raportował błędy,\nawarie i podstawowe informacje o użytkowaniu deweloperowi?\n\nPrzesyłane dane nie będą zawierać Twoich osobistych danych,\na pomogą jedynie poprawić działanie gry i usunąć jej błędy.", "cancelText": "Anuluj", "cantConfigureDeviceText": "Wybacz ale ${DEVICE} nie jest konfigurowalne.", "challengeEndedText": "To wyzwanie zostało zakończone.", "chatMuteText": "Wycisz Czat", "chatMutedText": "Czat Wyciszony", "chatUnMuteText": "Podgłośnij Czat", + "chests": { + "prizeOddsText": "Szanse na Nagrody", + "reduceWaitText": "Skróć Czekanie", + "slotDescriptionText": "Ta komórka może trzymać skrzynkę.\n\nSkrzynki można otrzymać przechodząc poziomy w kampanii, \njako nagrody w turniejach i zdobywając \nosiągnięcia.", + "slotText": "Komórka ${NUM}", + "slotsFullWarningText": "UWAGA: Wszystkie komórki na skrzynki są pełne.\nNowo zdobyte skrzynki zostaną utracone.", + "unlocksInText": "Odblokuje się za" + }, "choosingPlayerText": "", + "claimText": "Odbierz", "codesExplainText": "Kody są dostarczane przez dewelopera w celu\ndiagnozowania i poprawiania problemów z kontem.", "completeThisLevelToProceedText": "Musisz ukończyć ten\netap aby kontynuować!", "completionBonusText": "Bonusowe zakończenie", @@ -585,6 +599,7 @@ "disableXInputDescriptionText": "Pozwala na podłączenie 4 kontrolerów, ale może nie działać.", "disableXInputText": "Wyłącz XInput", "disabledText": "Wyłączone", + "discardText": "Odrzuć", "discordFriendsText": "Chcesz poszukać nowych ludzi do gry?\nDołącz do naszego Discorda i znajdź nowych znajomych!", "discordJoinText": "Dołącz do Discorda", "doneText": "Gotowe", @@ -672,6 +687,8 @@ "errorText": "Błąd", "errorUnknownText": "nieznany błąd", "exitGameText": "Wyjść z ${APP_NAME}?", + "expiredAgoText": "Wygasło ${T} temu", + "expiresInText": "Wygaśnie za ${T}", "exportSuccessText": "'${NAME}' eksportowane.", "externalStorageText": "Pamięć zewnętrzna", "failText": "Niepowodzenie", @@ -738,6 +755,7 @@ "copyCodeConfirmText": "Kod skopiowany do schowka.", "copyCodeText": "Skopiuj kod", "dedicatedServerInfoText": "Dla najlepszych wyników ustaw serwer dedykowany. Zobacz jak na bombsquadgame.com/server.", + "descriptionShortText": "Użyj okna zbiórki by stworzyć imprezę.", "disconnectClientsText": "Spowoduje to rozłączenie ${COUNT} graczy\nbędących na imprezie. Jesteś pewny?", "earnTicketsForRecommendingAmountText": "Znajomi dostaną ${COUNT} kuponów jeżeli wypróbują grę\n(a Ty dostaniesz ${YOU_COUNT} za każdego kto zagra.)", "earnTicketsForRecommendingText": "Poleć grę dla darmowych\n kuponów...", @@ -756,9 +774,9 @@ "friendPromoCodeRedeemShortText": "Może być żądane do ${COUNT} kuponów w grze.", "friendPromoCodeWhereToEnterText": "(w \"Ustawienia->Zaawansowane->Wyślij informacje\")", "getFriendInviteCodeText": "Zdobądź kod promocyjny kumpla", - "googlePlayDescriptionText": "Zaproś użytkowników Google Play na imprezę:", + "googlePlayDescriptionText": "Zaproś użytkowników Google Play do imprezy:", "googlePlayInviteText": "Zaproś", - "googlePlayReInviteText": "Obecnie jest ${COUNT} graczy z Google Play'a na imprezie,\nktórzy zostaną rozłączeni jeśli uruchomisz nowe zaproszenie.\nUwzględnij ich w nowym zaproszeniu, aby mogli powrócić.", + "googlePlayReInviteText": "Obecnie jest ${COUNT} graczy z Google Play'a na imprezie\nktórzy zostaną rozłączeni jeśli uruchomisz nowe zaproszenie.\nUwzględnij ich w nowym zaproszeniu, aby mogli powrócić.", "googlePlaySeeInvitesText": "Zobacz zaproszenia", "googlePlayText": "Google Play", "googlePlayVersionOnlyText": "(Tylko Android / Google Play)", @@ -859,6 +877,12 @@ "youHaveShortText": "masz ${COUNT} kuponów", "youHaveText": "masz ${COUNT} kuponów" }, + "goldPass": { + "desc1InfTokensText": "Nieskończone żetony.", + "desc2NoAdsText": "Brak reklam.", + "desc3ForeverText": "Na zawsze.", + "goldPassText": "Złota Przepustka" + }, "googleMultiplayerDiscontinuedText": "Przepraszam, usługa gry wieloosobowej Google nie jest już dostępna.\nPracuję nad zamiennikiem tak szybko jak potrafię.\nTymczasem proszę o wypróbowanie innej metody połączenia.\n-Eric", "googlePlayPurchasesNotAvailableText": "Zakupy Google Play niedostępne.\nSpróbuj zaktualizować aplikację Google Play.", "googlePlayServicesNotAvailableText": "Usługi Google Play są niedostępne.\nNiektóre funkcje aplikacji mogą być wyłączone.", @@ -886,7 +910,7 @@ "helpWindow": { "bombInfoText": "- Bomba -\nSilniejsza niż ciosy, lecz\nz powodu obrażeń może Cię\nwpędzić do grobu. Dla\nlepszego efektu wyrzuć ją przed\nwypaleniem się lontu.", "canHelpText": "${APP_NAME} może Ci w tym pomóc", - "controllersInfoText": "Możesz zagrać w ${APP_NAME} ze znajomymi poprzez sieć lub na tym\nsamym urządzeniu, jeśli masz wystarczająco dużo kontrolerów.\n${APP_NAME} obsługuje wiele z nich; możesz nawet użyć smartfonów\njako kontrolery, wykorzystując aplikację '${REMOTE_APP_NAME}'.\nZobacz Ustawienia->Kontrolery, aby uzyskać szczegółowe informacje.", + "controllersInfoText": "Możesz zagrać w ${APP_NAME} ze znajomymi poprzez sieć lub na tym\nsamym urządzeniu, jeśli masz wystarczająco dużo kontrolerów.\n${APP_NAME} obsługuje wiele z nich; możesz nawet użyć smartfonów\njako kontrolery, wykorzystując aplikację \"${REMOTE_APP_NAME}\".\nZobacz Ustawienia->Kontrolery, aby uzyskać szczegółowe informacje.", "controllersInfoTextFantasia": "Gracz może używać zdalnego kontrolera, jednak zalecane są\ngamepady. Możesz także użyć urządzeń mobilnych jako kontrolerów\ngry za pomocą darmowej aplikacji 'BombSquad Remote'.\nSprawdź informacje dostępne w ustawieniach kontrolerów.", "controllersInfoTextMac": "Jeden lub dwóch graczy może używać klawiatury, jednak najlepiej korzystać z\ngamepadów. Gra obsługuje pady USB, kontrolery PS3, Xbox360, Wiimote i urządzenia\nz systemem iOS/Android. Na pewno coś z tego posiadasz aby sterować postaciami?\nWięcej informacji dostępnych jest w ustawieniach kontrolerów.", "controllersInfoTextOuya": "Do gry w BombSquad możesz wykorzystać kontrolery OUYA, PS3, Xbox360\ni wiele innych gamepadów podłączanych za pomocą USB lub Bluetootha.\nMożesz również używać jako kontrolery urządzenia z systemami iOS/Android\nz pomocą darmowej aplikacji 'BombSquad Remote'. Więcej informacji w\nustawieniach kontrolerów.", @@ -930,12 +954,13 @@ }, "holdAnyButtonText": "", "holdAnyKeyText": "", - "hostIsNavigatingMenusText": "- ${HOST} nawiguje w menu jako szef -", + "hostIsNavigatingMenusText": "- ${HOST} nawiguje w menu jak szef -", "importPlaylistCodeInstructionsText": "Użyj tego kodu, by zimportować tą listę w innym miejscu:", "importPlaylistSuccessText": "Zimportowano playlistę '${NAME}' rozgrywek ${TYPE}", "importText": "Importuj", "importingText": "Importowanie...", "inGameClippedNameText": "w grze widoczne jako\n\"${NAME}\"", + "inboxText": "Skrzynka odbiorcza", "installDiskSpaceErrorText": "BŁĄD: Niemożliwe dokończenie instalacji.\nByć może mało miejsca w pamięci urządzenia.\nZrób więcej miejsca i spróbuj jeszcze raz.", "internal": { "arrowsToExitListText": "wciśnij ${LEFT} lub ${RIGHT} aby opuścić listę", @@ -992,12 +1017,14 @@ "touchScreenJoinWarningText": "Dołączyłeś się wykorzystując ekran dotykowy.\nJeśli to pomyłka, stuknij 'Menu->Opuść grę'.", "touchScreenText": "Ekran dotykowy", "trialText": "trial", + "unableToCompleteTryAgainText": "Nie można teraz tego zrobić.\nSpróbuj ponownie później.", "unableToResolveHostText": "Błąd: nie można odnaleźć hosta.", "unavailableNoConnectionText": "Obecnie niedostępne (sprawdź połączenie internetowe).", "vrOrientationResetCardboardText": "Użyj tego aby zresetować orientację VR.\nAby zagrać w grę będziesz potrzebować zewnętrznego kontrolera.", "vrOrientationResetText": "Reset orientacji VR.", "willTimeOutText": "(czas upłynie przy bezczynności)" }, + "inventoryText": "Ekwipunek", "jumpBoldText": "SKOK", "jumpText": "Skok", "keepText": "Zachowaj", @@ -1044,8 +1071,11 @@ "seasonEndsMinutesText": "Sezon zakończy się za ${NUMBER} minut.", "seasonText": "Sezon ${NUMBER}", "tournamentLeagueText": "Musisz uzyskać ligę ${NAME} aby wejść do tego turnieju.", - "trophyCountsResetText": "Liczba Zdobyczy zresetuje się w przyszłym sezonie." + "trophyCountsResetText": "Liczba Zdobyczy zresetuje się w przyszłym sezonie.", + "upToDateBonusDescriptionText": "Gracze na najnowszej wersji gry\notrzymają tutaj ${PERCENT}% bonusu.", + "upToDateBonusText": "Bonus Wersji" }, + "learnMoreText": "Dowiedz się więcej", "levelBestScoresText": "Najlepsze wyniki w ${LEVEL}", "levelBestTimesText": "Najlepsze czasy w ${LEVEL}", "levelFastestTimesText": "Najszybsze czasy w ${LEVEL}", @@ -1092,6 +1122,8 @@ "modeArcadeText": "Tryb Salonu Gier", "modeClassicText": "Tryb Klasyczny", "modeDemoText": "Tryb Demo", + "moreSoonText": "Przybędzie w przyszłości...", + "mostDestroyedPlayerText": "Najbardziej Zgładzony Gracz", "mostValuablePlayerText": "Najwartościowszy gracz", "mostViolatedPlayerText": "Gracz najbardziej sprofanowany", "mostViolentPlayerText": "Gracz najbardziej brutalny", @@ -1108,6 +1140,7 @@ "nameSuicideText": "${NAME} popełnił samobójstwo.", "nameText": "Nazwa", "nativeText": "Natywna", + "newExclaimText": "Nowy!", "newPersonalBestText": "Nowy rekord życiowy!", "newTestBuildAvailableText": "Dostępna jest nowa wersja! (${VERSION} build ${BUILD}).\nPobierz ją z ${ADDRESS}", "newText": "Nowy", @@ -1119,6 +1152,7 @@ "noExternalStorageErrorText": "Brak pamięci zewnętrznej w tym urządzeniu", "noGameCircleText": "Błąd: niezalogowany w GameCircle", "noJoinCoopMidwayText": "Rozgrywki trybu Kooperacji nie mogą być łączone w czasie ich trwania.", + "noMessagesText": "Brak wiadomości.", "noPluginsInstalledText": "Brak zainstalowanych pluginów", "noProfilesErrorText": "Nie masz własnego profilu gracza, dlatego nazwano Cię: '${NAME}'.\nPrzejdź do Ustawień->Profile Gracza aby stworzyć własny.", "noScoresYetText": "Brak wyników do tej pory.", @@ -1128,6 +1162,7 @@ "noValidMapsErrorText": "Nie znaleziono żadnych map dla tego typu rozgrywki.", "notEnoughPlayersRemainingText": "Niewystarczająca ilość graczy. Spróbuj zacząć nową grę.", "notEnoughPlayersText": "Aby rozpocząć grę potrzeba ${COUNT} graczy!", + "notEnoughTicketsText": "Za mało biletów!", "notNowText": "Nie teraz", "notSignedInErrorText": "Musisz zalogować się, aby to zrobić.", "notSignedInGooglePlayErrorText": "Zaloguj się z Google Play, by to zrobić.", @@ -1140,6 +1175,9 @@ "onText": "Wł.", "oneMomentText": "Chwileczkę...", "onslaughtRespawnText": "${PLAYER} odrodzi się w fali ${WAVE}", + "openMeText": "Otwórz Mnie!", + "openNowText": "Otwórz Teraz", + "openText": "Otwórz", "orText": "${A} lub ${B}", "otherText": "Inny...", "outOfText": "(#${RANK} na ${ALL})", @@ -1235,10 +1273,12 @@ "punchText": "Cios", "purchaseForText": "Kup za ${PRICE}", "purchaseGameText": "Kup Grę", + "purchaseNeverAvailableText": "Przepraszamy, w tej kompilacji nie można dokonać zakupów.\nSpróbuj zalogować się na swoje konto na innej platformie i dokonać tam zakupów.", + "purchaseNotAvailableText": "Ten zakup jest niedostępny.", "purchasingText": "Kupowanie...", "quitGameText": "Wyjść z ${APP_NAME}?", "quittingIn5SecondsText": "Wyjście za 5 sekund...", - "randomPlayerNamesText": "DOMYŚLNE_NAZWY", + "randomPlayerNamesText": "Albin, Aleksandra, Agata, Agnieszka, Aleksy, Alina, Antoni, Aldona, Alicja, Amelia, Aniela, Bazyli, Dobrogost, Filip, Jan, Julia, Maria, Szymon, Zofia, Adok, Anastazja, Andrzej, Armand, Aron, Polish", "randomText": "Losowo", "rankText": "Ranking", "ratingText": "Ocena", @@ -1277,6 +1317,7 @@ "version_mismatch": "Wersje nie pasują.\nSprawdź czy BombSquad i BombSquad Remote\nmają najnowszą wersję i spróbuj ponownie." }, "removeInGameAdsText": "Odblokowując wersję \"${PRO}\", pozbędziesz się reklam w grze.", + "removeInGameAdsTokenPurchaseText": "OFERTA: Zakup DOWOLNĄ paczkę żetonów aby usunąć reklamy.", "renameText": "Zmień nazwę", "replayEndText": "Zakończ powtórkę", "replayNameDefaultText": "Ostatnia powtórka", @@ -1339,12 +1380,14 @@ "enterPromoCodeText": "Wpisz kod", "forTestingText": "Uwaga: wartości stosowane do testów będą utracone po wyjściu z gry.", "helpTranslateText": "Tłumaczenia ${APP_NAME} na inne języki są wysiłkiem społeczności\nfanów tej gry. Jeśli chcesz przyczynić się lub poprawić istniejące\nbłędy w tłumaczeniu, kliknij w poniższy link. Z góry dziękuję!", + "insecureConnectionsDescriptionText": "niezalecane, ale może umożliwić grę online\nz krajów lub sieci objętych ograniczeniami", + "insecureConnectionsText": "Używaj niezabezpieczonych połączeń", "kickIdlePlayersText": "Wyrzucaj nieaktywnych graczy", "kidFriendlyModeText": "Tryb dla dzieciaków (zredukowana przemoc itd.)", "languageText": "Język", "moddingGuideText": "Przewodnik modowania gry", "moddingToolsText": "Narzędzia do modyfikacji", - "mustRestartText": "Musisz uruchomić ponownie grę aby zastosować zmiany.", + "mustRestartText": "Musisz uruchomić ponownie grę, aby zastosować zmiany.", "netTestingText": "Testowanie sieci", "resetText": "Reset", "sendInfoText": "Wyślij Info", @@ -1367,7 +1410,7 @@ "shareText": "Udostępnij", "sharingText": "Udostępnianie...", "showText": "Wyświetl", - "signInForPromoCodeText": "Musisz się zalogować do konta aby kody zadziałały.", + "signInForPromoCodeText": "Musisz się zalogować do konta, aby kody zadziałały.", "signInWithGameCenterText": "By użyć konta Game Center\nzapisz się aplikacją Game Center.", "singleGamePlaylistNameText": "Tylko ${GAME}", "singlePlayerCountText": "1 gracz", @@ -1399,6 +1442,7 @@ }, "spaceKeyText": "spacja", "statsText": "Statystyki", + "stopRemindingMeText": "Przestań mi przypominać", "storagePermissionAccessText": "To wymaga dostępu do pamięci masowej", "store": { "alreadyOwnText": "Masz już ${NAME}!", @@ -1438,7 +1482,7 @@ "winterSpecialText": "Specjały Zimowe", "youOwnThisText": "- zdobyłeś już to -" }, - "storeDescriptionText": "8 Osobowe Szaleństwo!\n\nWysadź w powietrze swoich znajomych (lub komputerowych przeciwników) w turnieju z wybuchowymi mini gierkami jak np. Przechwyć Flagę, Bombowy Hokej i Epicki Mecz Śmierci w zwolnionym tempie!\n\nProste sterowanie i rozszerzone wsparcie dla kontrolerów może wprowadzić do gry aż 8 przeciwników; możesz nawet wykorzystać swoje mobilne urządzenie jako kontroler do gry dostępne jako darmowa aplikacja 'BombSquad Remote'!\n\nBomby w Górę!\n\nSprawdź na www.froemling.net/bombsquad i dowiedz się więcej.", + "storeDescriptionText": "8-Osobowe Szaleństwo!\n\nWysadź w powietrze swoich znajomych (lub komputerowych przeciwników) w turnieju z wybuchowymi mini gierkami jak np. Przechwyć Flagę, Bombowy Hokej i Epicki Mecz Śmierci w zwolnionym tempie!\n\nProste sterowanie i rozszerzone wsparcie dla kontrolerów może wprowadzić do gry aż 8 przeciwników; możesz nawet wykorzystać swoje mobilne urządzenie jako kontroler do gry dostępne jako darmowa aplikacja \"BombSquad Remote\"!\n\nBomby w Górę!\n\nSprawdź www.froemling.net/bombsquad i dowiedz się więcej.", "storeDescriptions": { "blowUpYourFriendsText": "Wysadź w powietrze swoich znajomych.", "competeInMiniGamesText": "Ukończ mini gierki aby awansować z wyścigów do lotów.", @@ -1462,6 +1506,7 @@ "testBuildValidatedText": "Wersja Testowa Zatwierdzona! Miłej zabawy!", "thankYouText": "Dziękuję za Twoje wsparcie! Miłej gry!", "threeKillText": "POTRÓJNE ZABÓJSTWO!!", + "ticketsDescriptionText": "Bilety pozwalają odblokować postacie,\nmapy, minigry, i więcej w sklepe.\n\nBilety można znaleźć w skrzynkach\nz kampanii, turniejów, czy osiągnięć.", "timeBonusText": "Bonus czasowy", "timeElapsedText": "Czas, jaki upłynął", "timeExpiredText": "Czas minął", @@ -1472,10 +1517,24 @@ "tipText": "Wskazówka", "titleText": "BombSquad", "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "Zdobądź żetony", + "notEnoughTokensText": "Za mało żetonów!", + "numTokensText": "${COUNT} żetonów", + "openNowDescriptionText": "Masz wystarczająco dużo biletów\naby otworzyć to teraz \n- nie musisz czekać.", + "shinyNewCurrencyText": "Nowa, błyszcząca waluta BombSquad.", + "tokenPack1Text": "Mały pakiet żetonów", + "tokenPack2Text": "Średni pakiet żetonów", + "tokenPack3Text": "Duży pakiet żetonów", + "tokenPack4Text": "Gigantyczny pakiet żetonów", + "tokensDescriptionText": "Żetony przyspieszają prędkość odblokowania\nskrzynek i za inne operacje związane z grą czy kontem.\n\nMożesz wygrać żetony w grze lub kupić je\nw paczkach. Albo kupić Złoty Karnet dla nieskończonych\nżetonów i nie będziesz o nich więcej słyszeć.", + "youHaveGoldPassText": "Masz Złotą Przepustkę.\nWszystkie zakupy żetonów są bezpłatne.\nSuper!" + }, "topFriendsText": "Najlepsi znajomi", "tournamentCheckingStateText": "Sprawdzanie statusu turnieju; proszę czekać...", "tournamentEndedText": "Ten turniej został zakończony. Nowy wkrótce się rozpocznie.", "tournamentEntryText": "Wejście do Turnieju", + "tournamentFinalStandingsText": "Pozycje w Turnieju", "tournamentResultsRecentText": "Najnowsze wyniki Turnieju", "tournamentStandingsText": "Klasyfikacja Turnieju", "tournamentText": "Turniej", @@ -1549,6 +1608,18 @@ "Uber Onslaught": "Super Atak", "Uber Runaround": "Super Otaczanie" }, + "displayItemNames": { + "${C} Tickets": "${C} Biletów", + "${C} Tokens": "${C} Żetonów", + "Chest": "Skrzynka", + "L1 Chest": "Skrzynka P1", + "L2 Chest": "Skrzynka P2", + "L3 Chest": "Skrzynka P3", + "L4 Chest": "Skrzynka P4", + "L5 Chest": "Skrzynka P5", + "L6 Chest": "Skrzynka P6", + "Unknown Chest": "Nieznana Skrzynka" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Bądź wybrańcem przez określony czas, aby wygrać.\nZabij wybrańca, aby się nim stać.", "Bomb as many targets as you can.": "Zbombarduj tyle celów, ile tylko możesz.", @@ -1653,6 +1724,7 @@ "Korean": "Koreański", "Malay": "Malajski", "Persian": "Perski", + "PirateSpeak": "Piracki język", "Polish": "Polski", "Portuguese": "Portugalski", "Romanian": "Rumuński", @@ -1727,6 +1799,7 @@ "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Oszukiwanie wykryte; punkty i nagrody zawieszone na ${COUNT} dni.", "Could not establish a secure connection.": "Nie udało się nawiązać bezpiecznego połączenia.", "Daily maximum reached.": "Dzienne maksimum wykorzystane.", + "Daily sign-in reward": "Nagroda za codzienne logowanie", "Entering tournament...": "Wchodzenie do turnieju...", "Invalid code.": "Nieprawidłowy kod.", "Invalid payment; purchase canceled.": "Nieprawidłowa zapłata; zamówienie anulowane.", @@ -1736,11 +1809,14 @@ "Item unlocked!": "Przedmiot odblokowany!", "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "ŁĄCZENIE ODRZUCONE. ${ACCOUNT} zawiera\nznaczący postęp który zostałby USUNIĘTY.\nMożesz połączyć konta na odwrót jeśli chcesz\n(i stracić postęp Z TEGO konta).", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "Połączyć konto ${ACCOUNT} z tym kontem?\nCały postęp z konta ${ACCOUNT} będzie stracony.\nNie można tego odwrócić. Pewna decyzja?", + "Longer streaks lead to better rewards.": "Dłuższe serie dają lepsze nagrody", "Max number of playlists reached.": "Osiągnięto maksymalną liczbę playlist.", "Max number of profiles reached.": "Osiągnięto maksymalną liczbę profili.", "Maximum friend code rewards reached.": "Osiągnięto limit kodów promocyjnych.", "Message is too long.": "Wiadomość jest za długa.", + "New tournament result!": "Nowy wynik w turnieju!", "No servers are available. Please try again soon.": "Brak dostępnych serwerów. Spróbuj ponownie wkrótce.", + "No slots available. Free a slot and try again.": "Brak wolnych komórek. Zwolnij komórkę i spróbuj ponownie.", "Profile \"${NAME}\" upgraded successfully.": "Nazwa \"${NAME}\" ulepszona pomyślnie.", "Profile could not be upgraded.": "Profil nie może być ulepszony.", "Purchase successful!": "Udany zakup!", @@ -1750,7 +1826,9 @@ "Sorry, this code has already been used.": "Przepraszamy, ten kod został już użyty.", "Sorry, this code has expired.": "Przepraszamy, ten kod wygasł.", "Sorry, this code only works for new accounts.": "Przepraszamy, ten kod działa tylko na nowych kontach.", + "Sorry, this has expired.": "Niestety, czas minął.", "Still searching for nearby servers; please try again soon.": "Wciąż szukam pobliskich serwerów; proszę spróbuj ponownie wkrótce.", + "Streak: ${NUM} days": "Seria: ${NUM} dni", "Temporarily unavailable; please try again later.": "Tymczasowo niedostępne; spróbuj ponownie później.", "The tournament ended before you finished.": "Wyniki po zakończonym turnieju.", "This account cannot be unlinked for ${NUM} days.": "To konto nie może zostać rozłączone przez ${NUM} dni.", @@ -1761,19 +1839,28 @@ "Tournaments require ${VERSION} or newer": "Turnieje potrzebują ${VERSION} albo nowszej", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "Rozłączyć konto ${ACCOUNT} z tego konta?\nCały postęp z konta ${ACCOUNT} zostanie zresetowany.\n(oprócz osiągnięć w niektórych przypadkach)", "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "OSTRZEŻENIE: przeciwko Tobie zostały złożone skargi o oszukiwanie.\nKonta ludzi oszukujących zostaną zablokowane. Proszę grać uczciwie.", + "Wait reduced!": "Skrócono czas czekania!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "OSTRZEŻENIE: Ta wersja gry jest ograniczona do starych danych konta; rzeczy mogą być nieaktualne lub brakujace.\nProszę zaktualizować gre do najnowszej wersji aby zobaczyć najnowsze dane.", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "Chcesz połączyć swoje konto z urządzenia z tym?\n\nTwoje konto urządzenia to ${ACCOUNT1}\nTo konto to ${ACCOUNT2}\n\nTo pozwoli Ci zapisać istniejący postęp.\nUwaga: Nie da się tego cofnąć!", "You already own this!": "Już to posiadasz!", "You can join in ${COUNT} seconds.": "Możesz dołączyć w ciągu ${COUNT} sekund.", "You don't have enough tickets for this!": "Nie masz wystarczająco dużo kuponów!", "You don't own that.": "Nie posiadasz tego.", "You got ${COUNT} tickets!": "Masz ${COUNT} kuponów!", + "You got ${COUNT} tokens!": "Zdobyłeś ${COUNT} żetonów!", "You got a ${ITEM}!": "Otrzymałeś ${ITEM}!", + "You got a chest!": "Zdobyłeś skrzynkę!", + "You got an achievement reward!": "Zdobyłeś nagrodę za osiągnięcie!", "You have been promoted to a new league; congratulations!": "Zostałeś awansowany do nowej ligi; gratulacje!", - "You must update to a newer version of the app to do this.": "Musisz zaktualizować do nowszej wersji gry aby to zrobić.", - "You must update to the newest version of the game to do this.": "Musisz zaktualizować grę do nowej wersji aby to zrobić.", + "You lost a chest! (All your chest slots were full)": "Straciłeś skrzynkę! (Wszystkie komórki na skrzynki są pełne)", + "You must update the app to view this.": "Musisz zaktualizować aplikację, aby to wyświetlić.", + "You must update to a newer version of the app to do this.": "Musisz zaktualizować do nowszej wersji gry, aby to zrobić.", + "You must update to the newest version of the game to do this.": "Musisz zaktualizować grę do nowej wersji, aby to zrobić.", "You must wait a few seconds before entering a new code.": "Musisz odczekać kilka sekund zanim wpiszesz nowy kod.", + "You placed #${RANK} in a tournament!": "Zdobyłeś #${RANK} miejsce w turnieju!", "You ranked #${RANK} in the last tournament. Thanks for playing!": "Zostałeś sklasyfikowany na ${RANK} pozycji w ostatnim turnieju. Dzięki za udział!", "Your account was rejected. Are you signed in?": "Twoje konto zostało odrzucone. Czy jesteś zalogowany?", + "Your ad views are not registering. Ad options will be limited for a while.": "Obejrzenie reklamy nie zostało zarejestrowane. Opcje reklamowe zostaną chwilowo ograniczone.", "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Twoja kopia gry została zmodyfikowana.\nCofnij zmiany i spróbuj ponownie.", "Your friend code was used by ${ACCOUNT}": "Kod kumpla został użyty przez ${ACCOUNT}" }, @@ -1929,6 +2016,7 @@ "twoKillText": "PODWÓJNE ZABÓJSTWO!", "uiScaleText": "Skala interfejsu", "unavailableText": "niedostępne", + "unclaimedPrizesText": "Masz nieodebrane nagrody!", "unconfiguredControllerDetectedText": "Wykryto nieskonfigurowany kontroler:", "unlockThisInTheStoreText": "To musi zostać odblokowane w sklepie.", "unlockThisProfilesText": "By stworzyć więcej niż ${NUM} kont, potrzebujesz:", @@ -1947,6 +2035,7 @@ "usingItunesText": "Korzystanie z aplikacji muzycznej jako ścieżki dźwiękowej...", "usingItunesTurnRepeatAndShuffleOnText": "Upewnij się, że w ustawieniach iTunes tasowanie utworów i powtarzanie całości jest włączone.", "v2AccountLinkingInfoText": "Aby połączyć konta V2, użyj przycisku \"Zarządzaj Kontem\".", + "v2AccountRequiredText": "Wymaga to konta V2. Uaktualnij swoje konto i spróbuj ponownie.", "validatingBetaText": "Legalizowanie wersji Beta...", "validatingTestBuildText": "Sprawdzanie wersji testowej...", "viaText": "poprzez", @@ -2015,5 +2104,6 @@ }, "yesAllowText": "Dajesz!", "yourBestScoresText": "Twoje najlepsze wyniki", - "yourBestTimesText": "Twoje najlepsze czasy" + "yourBestTimesText": "Twoje najlepsze czasy", + "yourPrizeText": "Twoja nagroda:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/portuguesebrazil.json b/dist/ba_data/data/languages/portuguesebrazil.json new file mode 100644 index 0000000..fccf034 --- /dev/null +++ b/dist/ba_data/data/languages/portuguesebrazil.json @@ -0,0 +1,1980 @@ +{ + "accountSettingsWindow": { + "accountNameRules": "O seu nome não pode conter emojis ou outros caracteres especiais", + "accountsText": "Contas", + "achievementProgressText": "Conquistas: ${COUNT} de ${TOTAL}", + "campaignProgressText": "Progresso da Campanha Difícil: ${PROGRESS}", + "changeOncePerSeason": "Você só pode mudar isso uma vez por temporada.", + "changeOncePerSeasonError": "Você deve esperar até a próxima temporada para mudar isso novamente (${NUM} dias)", + "createAnAccountText": "Crie uma conta", + "customName": "Nome personalizado", + "deleteAccountText": "Deletar conta", + "googlePlayGamesAccountSwitchText": "Se você quer usar uma conta Google diferente,\nUse o Google Play Games para trocar de conta.", + "linkAccountsEnterCodeText": "Colocar Código", + "linkAccountsGenerateCodeText": "Gerar Código", + "linkAccountsInfoText": "(compartilhar progresso entre varios dispositivos)", + "linkAccountsInstructionsNewText": "Para vincular duas contas, crie um código na primeira\ne coloque o código na segunda. O progresso de\nambas as contas serão sincronizadas. Tornando se uma unica conta\n(O progresso da primeira conta será perdido)\n\nVocê pode vincular até ${COUNT} contas.\n\nIMPORTANTE: vincule apenas contas que tem acesso; \nSe você vincular a conta de um amigo, vocês não\nirão conseguir jogar online ao mesmo tempo.", + "linkAccountsText": "Vincular contas", + "linkedAccountsText": "Contas vinculadas:", + "manageAccountText": "Gerenciar Conta", + "nameChangeConfirm": "Mudar o nome da sua conta para ${NAME}?", + "resetProgressConfirmNoAchievementsText": "Isto reiniciará o seu progresso no cooperativo e\nas suas pontuações (mas não os seus bilhetes).\nIsto não pode ser desfeito. Tem certeza?", + "resetProgressConfirmText": "Isto reiniciará o seu progresso no cooperativo,\nas suas conquistas e as suas pontuações\n(mas não os seus bilhetes). Isto não pode\nser desfeito. Tem certeza?", + "resetProgressText": "Restaurar progresso", + "setAccountName": "Escolha o Nome da Conta", + "setAccountNameDesc": "Escolha o nome que será exibido na sua conta.\nVocê pode usar o nome de uma de suas contas\nou criar um nome personalizado exclusivo.", + "signInInfoText": "Conecte uma conta para ganhar bilhetes, compita online e compartilhe\no seu progresso entre vários dispositivos.", + "signInText": "Conectar-se a sua conta", + "signInWithAnEmailAddressText": "Faça login com um endereço de e-mail", + "signInWithDeviceInfoText": "(uma conta automática disponível apenas neste aparelho)", + "signInWithDeviceText": "Conectar-se com a conta de seu proprio dispositivo", + "signInWithText": "Entrar com ${SERVICE}", + "signInWithV2InfoText": "(uma conta que funciona em todas as plataformas)", + "signInWithV2Text": "Usar uma conta do(a) ${APP_NAME}", + "signOutText": "Sair da conta", + "signingInText": "Iniciando sessão...", + "signingOutText": "Finalizando sessão...", + "ticketsText": "Bilhetes: ${COUNT}", + "titleText": "Conta", + "unlinkAccountsInstructionsText": "Selecione uma conta a qual você quer sair", + "unlinkAccountsText": "Desvincular contas", + "unlinkLegacyV1AccountsText": "Retirar contas V1", + "v2LinkInstructionsText": "Utilize o link para criar uma conta ou entrar nela.", + "viaAccount": "(via ${NAME})", + "youAreSignedInAsText": "Conectou-se como:" + }, + "achievementChallengesText": "Desafios feitos", + "achievementText": "Conquistas", + "achievements": { + "Boom Goes the Dynamite": { + "description": "Mate 3 inimigos com TNT", + "descriptionComplete": "Você matou 3 inimigos com TNT", + "descriptionFull": "Mate 3 inimigos com TNT no ${LEVEL}", + "descriptionFullComplete": "Você matou 3 inimigos com TNT no ${LEVEL}", + "name": "Quem brinca com fogo, sai queimado" + }, + "Boxer": { + "description": "Ganhe sem usar bombas", + "descriptionComplete": "Ganhou sem usar bombas", + "descriptionFull": "Complete o ${LEVEL} sem usar bombas", + "descriptionFullComplete": "Completou o ${LEVEL} sem usar bombas", + "name": "Boxeador" + }, + "Dual Wielding": { + "descriptionFull": "Conecte 2 controles sendo fisicos ou sendo virtuais (pelo aplicativo)", + "descriptionFullComplete": "Conectou 2 controles sendo fisicos ou sendo virtuais (pelo aplicativo)", + "name": "Dominação dupla" + }, + "Flawless Victory": { + "description": "Ganhe sem ser atingido", + "descriptionComplete": "Ganhou sem ser atingido", + "descriptionFull": "Ganhe o ${LEVEL} sem ser atingido", + "descriptionFullComplete": "Ganhou o ${LEVEL} sem ser atingido", + "name": "Vitória perfeita" + }, + "Free Loader": { + "descriptionFull": "Comece um Todos contra todos com mais de 2 jogadores", + "descriptionFullComplete": "Começou um Todos contra todos com mais de 2 jogadores", + "name": "Carregador livre" + }, + "Gold Miner": { + "description": "Mate 6 inimigos com minas", + "descriptionComplete": "Matou 6 inimigos com minas", + "descriptionFull": "Mate 6 inimigos com minas no ${LEVEL}", + "descriptionFullComplete": "Matou 6 inimigos com minas no ${LEVEL}", + "name": "Garimpeiro" + }, + "Got the Moves": { + "description": "Ganhe sem usar socos ou bombas", + "descriptionComplete": "Ganhou sem usar socos ou bombas", + "descriptionFull": "Ganhe o ${LEVEL} sem socos ou bombas", + "descriptionFullComplete": "Ganhou o ${LEVEL} sem socos ou bombas", + "name": "Esse Tem Gingado" + }, + "In Control": { + "descriptionFull": "Conecte um controle (hardware ou aplicativo)", + "descriptionFullComplete": "Conectou um controle. (hardware ou aplicativo)", + "name": "No controle" + }, + "Last Stand God": { + "description": "Marque 1000 pontos", + "descriptionComplete": "Marcou 1000 pontos", + "descriptionFull": "Marque 1000 pontos no ${LEVEL}", + "descriptionFullComplete": "Marcou 1000 pontos no ${LEVEL}", + "name": "${LEVEL} Deus" + }, + "Last Stand Master": { + "description": "Marque 250 pontos", + "descriptionComplete": "Marcou 250 pontos", + "descriptionFull": "Marque 250 pontos no ${LEVEL}", + "descriptionFullComplete": "Marcou 250 pontos no ${LEVEL}", + "name": "${LEVEL} Mestre" + }, + "Last Stand Wizard": { + "description": "Marque 500 pontos", + "descriptionComplete": "Marcou 500 pontos", + "descriptionFull": "Marque 500 pontos no ${LEVEL}", + "descriptionFullComplete": "Marcou 500 pontos no ${LEVEL}", + "name": "${LEVEL} Mago" + }, + "Mine Games": { + "description": "Mate 3 inimigos com minas", + "descriptionComplete": "Matou 3 inimigos com minas", + "descriptionFull": "Mate 3 inimigos com minas no ${LEVEL}", + "descriptionFullComplete": "Matou 3 inimigos com minas no ${LEVEL}", + "name": "Brincando com Minas" + }, + "Off You Go Then": { + "description": "Mande 3 inimigos para fora do mapa", + "descriptionComplete": "Mandou 3 inimigos para fora do mapa", + "descriptionFull": "Mande 3 inimigos para fora do mapa no ${LEVEL}", + "descriptionFullComplete": "Mandou 3 inimigos para fora do mapa no ${LEVEL}", + "name": "Pode Ir Agora" + }, + "Onslaught God": { + "description": "Marque 5000 pontos", + "descriptionComplete": "Marcou 5000 pontos", + "descriptionFull": "Marque 5000 pontos no ${LEVEL}", + "descriptionFullComplete": "Marcou 5000 pontos no ${LEVEL}", + "name": "${LEVEL} Deus" + }, + "Onslaught Master": { + "description": "Marque 500 pontos", + "descriptionComplete": "Marcou 500 pontos", + "descriptionFull": "Marque 500 pontos no ${LEVEL}", + "descriptionFullComplete": "Marcou 500 pontos no ${LEVEL}", + "name": "${LEVEL} Mestre" + }, + "Onslaught Training Victory": { + "description": "Derrote todas as ondas", + "descriptionComplete": "Derrotou todas as ondas", + "descriptionFull": "Derrote todas as ondas no ${LEVEL}", + "descriptionFullComplete": "Derrotou todas as ondas no ${LEVEL}", + "name": "Vitória no ${LEVEL}" + }, + "Onslaught Wizard": { + "description": "Marque 1000 pontos", + "descriptionComplete": "Marcou 1000 pontos", + "descriptionFull": "Marque 1000 pontos no ${LEVEL}", + "descriptionFullComplete": "Marcou 1000 pontos no ${LEVEL}", + "name": "Mago do ${LEVEL}" + }, + "Precision Bombing": { + "description": "Ganhe sem poderes", + "descriptionComplete": "Ganhou sem poderes", + "descriptionFull": "Ganhe ${LEVEL} sem poderes", + "descriptionFullComplete": "Ganhou ${LEVEL} sem poderes", + "name": "Chuva de Bomba" + }, + "Pro Boxer": { + "description": "Ganhe sem usar bombas", + "descriptionComplete": "Ganhou sem usar bombas", + "descriptionFull": "Complete o ${LEVEL} sem usar bombas", + "descriptionFullComplete": "Completou o ${LEVEL} sem usar bombas", + "name": "Pugilista" + }, + "Pro Football Shutout": { + "description": "Ganhe sem deixar os inimigos marcarem", + "descriptionComplete": "Ganhou sem deixar os inimigos marcarem", + "descriptionFull": "Ganhe o ${LEVEL} sem deixar os inimigos marcarem", + "descriptionFullComplete": "Ganhou o ${LEVEL} sem deixar os inimigos marcarem", + "name": "${LEVEL} De Lavada" + }, + "Pro Football Victory": { + "description": "Ganhe a partida", + "descriptionComplete": "Ganhou a partida", + "descriptionFull": "Ganhe a partida no ${LEVEL}", + "descriptionFullComplete": "Ganhou a partida no ${LEVEL}", + "name": "Vitória no ${LEVEL}" + }, + "Pro Onslaught Victory": { + "description": "Derrote todas as ondas", + "descriptionComplete": "Todas as ondas derrotadas", + "descriptionFull": "Derrote todas as ondas no ${LEVEL}", + "descriptionFullComplete": "Todas as ondas do ${LEVEL} derrotadas", + "name": "Vitória no ${LEVEL}" + }, + "Pro Runaround Victory": { + "description": "Complete todas as ondas", + "descriptionComplete": "Todas as ondas completadas", + "descriptionFull": "Complete todas as ondas no ${LEVEL}", + "descriptionFullComplete": "Todas as ondas completadas no ${LEVEL}", + "name": "Vitória no ${LEVEL}" + }, + "Rookie Football Shutout": { + "description": "Ganhe sem deixar os inimigos marcarem", + "descriptionComplete": "Ganhou sem deixar os inimigos marcarem", + "descriptionFull": "Ganhe no ${LEVEL} sem deixar os inimigos marcarem", + "descriptionFullComplete": "Ganhou no ${LEVEL} sem deixar os inimigos marcarem", + "name": "${LEVEL} de levada" + }, + "Rookie Football Victory": { + "description": "Ganhe a partida", + "descriptionComplete": "Ganhou a partida", + "descriptionFull": "Ganhe a partida no ${LEVEL}", + "descriptionFullComplete": "Ganhou a partida no ${LEVEL}", + "name": "Vitória no ${LEVEL}" + }, + "Rookie Onslaught Victory": { + "description": "Derrote todas as ondas", + "descriptionComplete": "Todas as ondas derrotadas", + "descriptionFull": "Derrote todas as ondas no ${LEVEL}", + "descriptionFullComplete": "Todas as ondas no ${LEVEL} derrotadas", + "name": "Vitória no ${LEVEL}" + }, + "Runaround God": { + "description": "Marque 2000 pontos", + "descriptionComplete": "Marcou 2000 pontos", + "descriptionFull": "Marque 2000 pontos no ${LEVEL}", + "descriptionFullComplete": "Marcou 2000 pontos no ${LEVEL}", + "name": "Deus da ${LEVEL}" + }, + "Runaround Master": { + "description": "Marque 500 pontos", + "descriptionComplete": "Marcou 500 pontos", + "descriptionFull": "Marque 500 pontos no ${LEVEL}", + "descriptionFullComplete": "Marcou 500 pontos no ${LEVEL}", + "name": "Mestre do ${LEVEL}" + }, + "Runaround Wizard": { + "description": "Marque 1000 pontos", + "descriptionComplete": "Marcou 1000 pontos", + "descriptionFull": "Marque 1000 pontos no ${LEVEL}", + "descriptionFullComplete": "Marcou 1000 pontos no ${LEVEL}", + "name": "Mago do ${LEVEL}" + }, + "Sharing is Caring": { + "descriptionFull": "Compartilhe o jogo com um amigo", + "descriptionFullComplete": "Jogo compartilhado com um amigo", + "name": "Compartilhar é amar" + }, + "Stayin' Alive": { + "description": "Ganhe sem morrer", + "descriptionComplete": "Ganhou sem morrer", + "descriptionFull": "Ganhe o ${LEVEL} sem morrer", + "descriptionFullComplete": "Ganhou o ${LEVEL} sem morrer", + "name": "Sobrevivendo" + }, + "Super Mega Punch": { + "description": "Cause 100% de dano com um soco", + "descriptionComplete": "Causou 100% de dano com um soco", + "descriptionFull": "Cause 100% de dano com um soco no ${LEVEL}", + "descriptionFullComplete": "Causou 100% de dano com um soco no ${LEVEL}", + "name": "Super mega soco" + }, + "Super Punch": { + "description": "Cause 50% de dano com um soco", + "descriptionComplete": "Causou 50% de dano com um soco", + "descriptionFull": "Cause 50% de dano com um soco no ${LEVEL}", + "descriptionFullComplete": "Causou 50% de dano com um soco no ${LEVEL}", + "name": "Supersoco" + }, + "TNT Terror": { + "description": "Mate 6 inimigos com TNT", + "descriptionComplete": "Matou 6 inimigos com TNT", + "descriptionFull": "Mate 6 inimigos com TNT no ${LEVEL}", + "descriptionFullComplete": "Matou 6 inimigos com TNT no ${LEVEL}", + "name": "Terror do TNT" + }, + "Team Player": { + "descriptionFull": "Comece um jogo de equipes com mais de 4 jogadores", + "descriptionFullComplete": "Começou um jogo de equipes com mais de 4 jogadores", + "name": "Jogador de equipe" + }, + "The Great Wall": { + "description": "Pare todos os inimigos", + "descriptionComplete": "Parou todos os inimigos", + "descriptionFull": "Pare todos os inimigos no ${LEVEL}", + "descriptionFullComplete": "Parou todos os inimigos no ${LEVEL}", + "name": "A Grande Muralha" + }, + "The Wall": { + "description": "Pare todos os inimigos", + "descriptionComplete": "Parou todos os inimigos", + "descriptionFull": "Pare todos os inimigos no ${LEVEL}", + "descriptionFullComplete": "Parou todos os inimigos no ${LEVEL}", + "name": "A Muralha" + }, + "Uber Football Shutout": { + "description": "Ganhe sem deixar os inimigos marcarem", + "descriptionComplete": "Ganhou sem deixar os inimigos marcarem", + "descriptionFull": "Ganhe o ${LEVEL} sem deixar os inimigos marcarem", + "descriptionFullComplete": "Ganhou o ${LEVEL} sem deixar os inimigos marcarem", + "name": "${LEVEL} De Lavada" + }, + "Uber Football Victory": { + "description": "Ganhe a partida", + "descriptionComplete": "Ganhou a partida", + "descriptionFull": "Ganhe a partida no ${LEVEL}", + "descriptionFullComplete": "Ganhou a partida no ${LEVEL}", + "name": "Vitória no ${LEVEL}" + }, + "Uber Onslaught Victory": { + "description": "Derrote todas as ondas", + "descriptionComplete": "Derrotou todas as ondas", + "descriptionFull": "Derrote todas as ondas no ${LEVEL}", + "descriptionFullComplete": "Derrotou todas as ondas no ${LEVEL}", + "name": "Vitória no ${LEVEL}" + }, + "Uber Runaround Victory": { + "description": "Complete todas as ondas", + "descriptionComplete": "Completou todas as ondas", + "descriptionFull": "Complete todas as ondas no ${LEVEL}", + "descriptionFullComplete": "Completou todas as ondas no ${LEVEL}", + "name": "Vitória no ${LEVEL}" + } + }, + "achievementsRemainingText": "Conquistas restantes:", + "achievementsText": "Conquistas", + "achievementsUnavailableForOldSeasonsText": "Desculpe, algumas conquistas não estão disponíveis em temporadas antigas.", + "activatedText": "${THING} foi ativado.", + "addGameWindow": { + "getMoreGamesText": "Mais jogos...", + "titleText": "Adicionar jogo" + }, + "addToFavoritesText": "Adicionar aos Favoritos", + "addedToFavoritesText": "Adicionou '${NAME}' aos Favoritos.", + "allText": "Tudo", + "allowText": "Permitir", + "alreadySignedInText": "A conta tem sessão iniciada em outro dispositivo;\nMude de conta ou feche o jogo no seu\noutro dispositivo e tente novamente.", + "apiVersionErrorText": "Não é possível carregar o módulo ${NAME}; ele é destinado à versão ${VERSION_USED}; exigimos a ${VERSION_REQUIRED}.", + "applyText": "Aplicar", + "areYouSureText": "Voce tem certeza?", + "audioSettingsWindow": { + "headRelativeVRAudioInfoText": "(\"Auto\" ativa isso apenas quando fones estão conectados)", + "headRelativeVRAudioText": "Áudio para fones de RV", + "musicVolumeText": "Volume da música", + "soundVolumeText": "Volume do som", + "soundtrackButtonText": "Trilha sonora", + "soundtrackDescriptionText": "(tocar a sua própria música durante o jogo)", + "titleText": "Áudio" + }, + "autoText": "Automático", + "backText": "Voltar", + "banThisPlayerText": "Banir este jogador", + "bestOfFinalText": "Final de Melhor-de-${COUNT}", + "bestOfSeriesText": "Melhor série de ${COUNT}:", + "bestRankText": "Sua melhor pontuação é #${RANK}", + "bestRatingText": "Sua melhor classificação é ${RATING}", + "bombBoldText": "BOMBA", + "bombText": "Bomba", + "boostText": "Impulso", + "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} é configurado no próprio aplicativo.", + "buttonText": "botão", + "canWeDebugText": "Você gostaria que o ${APP_NAME} automaticamente comunique\nerros, falhas e informações de uso básico para o desenvolvedor?\n\nEsses dados não contem informações pessoais e ajudam\nà manter o jogo rodando suavemente e livre de bugs.", + "cancelText": "Cancelar", + "cantConfigureDeviceText": "Desculpe, ${DEVICE} não é configurável.", + "challengeEndedText": "Este desafio acabou.", + "chatMuteText": "Silenciar Chat", + "chatMutedText": "Chat Silenciado", + "chatUnMuteText": "Reativar Chat", + "chests": { + "prizeOddsText": "Chances de Ganhar", + "reduceWaitText": "Reduzir a espera", + "slotDescriptionText": "Este slot pode conter um baú.\n\nGanhe baús jogando níveis de campanha,\ncolocando-se em torneios e completando\nconquistas.", + "slotText": "Slot de baú ${NUM}", + "slotsFullWarningText": "AVISO: Todos os seus slots de baú estão cheios.\nQuaisquer baús que você ganhar neste jogo serão perdidos.", + "unlocksInText": "Desbloqueia Em" + }, + "choosingPlayerText": "", + "claimText": "Resgatar", + "codesExplainText": "Os códigos são fornecidos pelo desenvolvedor para \ndiagnosticar e corrigir problemas de conta.", + "completeThisLevelToProceedText": "Você deve completar \neste nível para continuar!", + "completionBonusText": "Bônus de conclusão", + "configControllersWindow": { + "configureControllersText": "Configurar controles", + "configureKeyboard2Text": "Configurar teclado P2", + "configureKeyboardText": "Configurar teclado", + "configureMobileText": "Usar dispositivos como controles", + "configureTouchText": "Configurar touchscreen", + "ps3Text": "Controles PS3", + "titleText": "Controles", + "wiimotesText": "Wiimotes", + "xbox360Text": "Controles Xbox 360" + }, + "configGamepadSelectWindow": { + "androidNoteText": "Nota: o suporte ao controle varia conforme o dispositivo e a versão do Android.", + "pressAnyButtonText": "Aperte qualquer botão no controle\nque você deseja configurar...", + "titleText": "Configurar controles" + }, + "configGamepadWindow": { + "advancedText": "Avançado", + "advancedTitleText": "Configuração avançada dos controles", + "analogStickDeadZoneDescriptionText": "(ative isto se o personagem 'escorrega' quando você solta o direcional)", + "analogStickDeadZoneText": "Área morta do analógico", + "appliesToAllText": "(serve para todos os controles deste tipo)", + "autoRecalibrateDescriptionText": "(ative isto se o personagem não se move na velocidade máxima)", + "autoRecalibrateText": "Calibrar automaticamente o analógico", + "axisText": "eixo", + "clearText": "limpar", + "dpadText": "direcional", + "extraStartButtonText": "Botão Start Extra", + "ifNothingHappensTryAnalogText": "Se nada acontecer, tente mudar para o analógico.", + "ifNothingHappensTryDpadText": "Se nada acontecer, tente mudar para o botão direcional.", + "ignoreCompletelyDescriptionText": "(impedir este controle de afetar tanto o jogo quanto o menu)", + "ignoreCompletelyText": "Ignorar totalmente", + "ignoredButton1Text": "Botão 1 ignorado", + "ignoredButton2Text": "Botão 2 ignorado", + "ignoredButton3Text": "Botão 3 ignorado", + "ignoredButton4Text": "Botão 4 ignorado", + "ignoredButtonDescriptionText": "(use isto para evitar que os botões 'home' ou 'sync' afetem a UI)", + "pressAnyAnalogTriggerText": "Aperte qualquer gatilho...", + "pressAnyButtonOrDpadText": "Aperte qualquer botão ou direcional...", + "pressAnyButtonText": "Aperte qualquer botão...", + "pressLeftRightText": "Aperte esquerda ou direita...", + "pressUpDownText": "Aperte cima ou baixo...", + "runButton1Text": "Correr Botão 1", + "runButton2Text": "Correr Botão 2", + "runTrigger1Text": "Correr Gatilho 1", + "runTrigger2Text": "Correr Gatilho 2", + "runTriggerDescriptionText": "(os gatilhos analogicos o permitem correr em diferentes velocidades)", + "secondHalfText": "Use isto para configurar a segunda metade\nde um controle que funciona\ncomo 2-em-1.", + "secondaryEnableText": "Ativar", + "secondaryText": "Controle secundário", + "startButtonActivatesDefaultDescriptionText": "(desative se o seu botão start está mais para um botão de menu)", + "startButtonActivatesDefaultText": "O botão Start ativa o widget padrão", + "titleText": "Configuração do controle", + "twoInOneSetupText": "Configuração do Controle 2-em-1", + "uiOnlyDescriptionText": "(impede que este controle entre em um jogo)", + "uiOnlyText": "Limitar o Uso ao Menu", + "unassignedButtonsRunText": "Todo o botão não definido executa", + "unsetText": "", + "vrReorientButtonText": "Botão Reorientar VR" + }, + "configKeyboardWindow": { + "configuringText": "Configurando ${DEVICE}", + "keyboard2NoteText": "Nota: a maioria dos teclados só podem registrar\nalgumas teclas pressionadas de uma só vez, portanto\npode funcionar melhor se houver um segundo teclado\nconectado. Perceba que, mesmo nesse caso, você ainda\nprecisará definir teclas exclusivas para os dois jogadores." + }, + "configTouchscreenWindow": { + "actionControlScaleText": "Escala de ação do controle", + "actionsText": "Ações", + "buttonsText": "botões", + "dragControlsText": "< arraste controles para reposicioná-los >", + "joystickText": "joystick", + "movementControlScaleText": "Escala de movimento do controle", + "movementText": "Movimento", + "resetText": "Reiniciar", + "swipeControlsHiddenText": "Ocultar ícones de deslize", + "swipeInfoText": "O estilo 'Deslize' do controle leva um tempo para se acostumar, mas\nfaz com que seja mais fácil de jogar sem olhar para os controles.", + "swipeText": "deslize", + "titleText": "Configurar touchscreen" + }, + "configureDeviceInSystemSettingsText": "${DEVICE} pode ser configurado no aplicativo \"Configurações do sistema\".", + "configureItNowText": "Configurar agora?", + "configureText": "Configurar", + "connectMobileDevicesWindow": { + "amazonText": "Amazon Appstore", + "appStoreText": "App Store", + "bestResultsText": "Para melhores resultados, é necessário uma rede Wi-Fi\nsem lag. Você pode melhorar o desempenho desligando outros\ndispositivos, jogando perto do seu roteador e conectando\no anfitrião do jogo à rede através do Ethernet.", + "explanationText": "Para usar um telefone ou tablet como controle,\nbaixe gratuitamente o aplicativo \"${REMOTE_APP_NAME}\".\nDá para conectar quantos dispositivos quiser a ${APP_NAME} pelo Wi-Fi!", + "forAndroidText": "para Android:", + "forIOSText": "para iOS:", + "getItForText": "Baixe ${REMOTE_APP_NAME} para iOS na Apple App Store\nou para Android na Google Play Store ou na Amazon Appstore", + "googlePlayText": "Google Play", + "titleText": "Usando dispositivos como controles:" + }, + "continuePurchaseText": "Continuar por ${PRICE}?", + "continueText": "Continuar", + "controlsText": "Controles", + "coopSelectWindow": { + "activenessAllTimeInfoText": "Isso não se aplica às classificações de todos os tempos.", + "activenessInfoText": "Este multiplicador aumenta nos dias que você joga\ne diminui nos dias que você não joga.", + "activityText": "Atividade", + "campaignText": "Campanha", + "challengesInfoText": "Ganhe prêmios por completar minijogos.\n\nPrêmios e dificuldade aumentam toda\nvez que um desafio é concluído e\ndiminui quando expira ou é abandonado.", + "challengesText": "Desafios", + "currentBestText": "O Melhor do Momento", + "customText": "Personalizado", + "entryFeeText": "Entrada", + "forfeitConfirmText": "Abandonar este desafio?", + "forfeitNotAllowedYetText": "Este desafio ainda não pode ser abandonado.", + "forfeitText": "Abandonar", + "multipliersText": "Multiplicadores", + "nextChallengeText": "Próximo desafio", + "nextPlayText": "Próximo jogo", + "ofTotalTimeText": "de ${TOTAL}", + "playNowText": "Jogar agora", + "pointsText": "Pontos", + "powerRankingFinishedSeasonUnrankedText": "(acabou a temporada casual)", + "powerRankingNotInTopText": "(não está no top ${NUMBER})", + "powerRankingPointsEqualsText": "= ${NUMBER} pts", + "powerRankingPointsMultText": "(x ${NUMBER} pts)", + "powerRankingPointsText": "${NUMBER} pts", + "powerRankingPointsToRankedText": "(${CURRENT} de ${REMAINING} pts)", + "powerRankingText": "Classificação geral", + "prizesText": "Prêmios", + "proMultInfoText": "Jogadores com a versão ${PRO}\nrecebem um aumento de ${PERCENT}% nos pontos.", + "seeMoreText": "Mais...", + "skipWaitText": "Pular espera", + "timeRemainingText": "Tempo restante", + "toRankedText": "Para classificar", + "totalText": "total", + "tournamentInfoText": "Jogue para ser o melhor contra\noutros jogadores na sua liga.\n\nOs prêmios são dados aos melhores\njogadores quando o torneio acaba.", + "welcome1Text": "Bem-vindo à ${LEAGUE}. Você pode melhorar a sua\nclassificação de liga ao receber estrelas, ao obter\nconquistas e ao ganhar troféus em torneios.", + "welcome2Text": "Você também pode ganhar bilhetes ao fazer várias dessas atividades.\nOs bilhetes podem ser usados para desbloquear novos personagens,\nmapas e minijogos, entrar em torneios e muito mais.", + "yourPowerRankingText": "Sua classificação geral:" + }, + "copyConfirmText": "Copiado para a área de transferência", + "copyOfText": "Cópia de ${NAME}", + "copyText": "Copiar", + "createEditPlayerText": "", + "createText": "Criar", + "creditsWindow": { + "additionalAudioArtIdeasText": "Áudio adicional, Arte inicial e ideias por ${NAME}", + "additionalMusicFromText": "Música adicional de ${NAME}", + "allMyFamilyText": "Toda a família e amigos que ajudaram nos testes", + "codingGraphicsAudioText": "Programação, gráficos e áudio por ${NAME}", + "languageTranslationsText": "Traduções:", + "legalText": "Legal:", + "publicDomainMusicViaText": "Musica de domínio público via ${NAME}", + "softwareBasedOnText": "Este software é baseado em parte do trabalho de ${NAME}", + "songCreditText": "${TITLE} Executada por ${PERFORMER}\nComposta por ${COMPOSER}, Arranjo por ${ARRANGER}, Publicada por ${PUBLISHER},\nCortesia de ${SOURCE}", + "soundAndMusicText": "Som e música:", + "soundsText": "Sons (${SOURCE}):", + "specialThanksText": "Agradecimentos especiais:", + "thanksEspeciallyToText": "Obrigado especialmente a ${NAME}", + "titleText": "Créditos do ${APP_NAME}", + "whoeverInventedCoffeeText": "Seja lá quem for o inventor do café" + }, + "currentStandingText": "Sua posição atual é #${RANK}", + "customizeText": "Personalizar...", + "deathsTallyText": "${COUNT} mortes", + "deathsText": "Mortes", + "debugText": "depurar", + "debugWindow": { + "reloadBenchmarkBestResultsText": "Nota: recomenda-se que defina Configurações->Gráficos->Texturas para \"Alto\" ao testar isto.", + "runCPUBenchmarkText": "Rodar Benchmark de CPU", + "runGPUBenchmarkText": "Rodar Benchmark de GPU", + "runMediaReloadBenchmarkText": "Rodar Benchmark de Recarregar Mídia", + "runStressTestText": "Rodar teste de estresse", + "stressTestPlayerCountText": "Contagem de Jogadores", + "stressTestPlaylistDescriptionText": "Playlist Teste de Estresse", + "stressTestPlaylistNameText": "Nome da Playlist", + "stressTestPlaylistTypeText": "Tipo de Playlist", + "stressTestRoundDurationText": "Duração da Rodada", + "stressTestTitleText": "Teste de estabilidade", + "titleText": "Benchmarks e Testes de Estresse", + "totalReloadTimeText": "Tempo total de carregamento: ${TIME} (veja relatório para detalhes)" + }, + "defaultGameListNameText": "Playlist ${PLAYMODE} Padrão", + "defaultNewGameListNameText": "Minha playlist ${PLAYMODE}", + "deleteText": "Excluir", + "demoText": "Teste", + "denyText": "Recusar", + "deprecatedText": "Descontinuado", + "descriptionText": "Descrição", + "desktopResText": "Resolução da área de trabalho", + "deviceAccountUpgradeText": "Aviso:\nVocê está logado com a conta do seu dispositivo\n(${NAME}).\nContas de dispositivo serão removidas em uma atualização futura.", + "difficultyEasyText": "Fácil", + "difficultyHardOnlyText": "Modo difícil apenas", + "difficultyHardText": "Difícil", + "difficultyHardUnlockOnlyText": "Esta fase só pode ser desbloqueada no modo difícil.\nVocê acha que aguenta o desafio!?!?!", + "directBrowserToURLText": "Por favor, direcione a seguinte URL para um navegador:", + "disableRemoteAppConnectionsText": "Desativar conexões do aplicativo BombSquad Remote", + "disableXInputDescriptionText": "Permite mais de 4 controles mas pode não funcionar bem.", + "disableXInputText": "Desativar XInput", + "disabledText": "Desativado", + "discardText": "Descarte", + "discordFriendsText": "Quer procurar por mais pessoas para jogar junto?\nEntre no nosso Discord e encontre novos amigos!", + "discordJoinText": "Junte-se ao Discord", + "doneText": "Concluído", + "drawText": "Empate", + "duplicateText": "Duplicar", + "editGameListWindow": { + "addGameText": "Adicionar\nJogo", + "cantOverwriteDefaultText": "Não é possível sobrescrever a playlist padrão!", + "cantSaveAlreadyExistsText": "Já existe uma playlist com este nome!", + "cantSaveEmptyListText": "Não é possível salvar uma playlist vazia!", + "editGameText": "Editar\nJogo", + "listNameText": "Nome da Playlist", + "nameText": "Nome", + "removeGameText": "Remover\nJogo", + "saveText": "Salvar lista", + "titleText": "Editor de Playlist" + }, + "editProfileWindow": { + "accountProfileInfoText": "Este perfil especial tem nome e\nícone baseado na sua conta.\n\n${ICONS}\n\nCrie perfis personalizados para usar\nnomes diferentes ou ícones personalizados.", + "accountProfileText": "(perfil da conta)", + "availableText": "O nome \"${NAME}\" está disponível.", + "characterText": "personagem", + "checkingAvailabilityText": "Verificando disponibilidade para \"${NAME}\"...", + "colorText": "cor", + "getMoreCharactersText": "Obter mais personagens...", + "getMoreIconsText": "Obter mais ícones...", + "globalProfileInfoText": "Garante-se que perfis globais tenham nomes\núnicos. Possuem também ícones personalizados.", + "globalProfileText": "(perfil global)", + "highlightText": "detalhe", + "iconText": "ícone", + "localProfileInfoText": "Os perfis de jogadores locais não possuem ícones e não garantem que seus\nnomes sejam únicos.\n\nAprimore para um perfil global para\nreservar um nome único e adicionar um ícone personalizado.", + "localProfileText": "(perfil local)", + "nameDescriptionText": "Nome do Jogador", + "nameText": "Nome", + "profileAlreadyExistsText": "Um perfil com este nome já existe.", + "randomText": "aleatório", + "titleEditText": "Editar perfil", + "titleNewText": "Novo Perfil", + "unavailableText": "\"${NAME}\" está indisponível; tente outro nome.", + "upgradeProfileInfoText": "Isso irá reservar o seu nome de jogador mundialmente\ne permitirá definir um ícone personalizado a ele.", + "upgradeToGlobalProfileText": "Aprimorar para Perfil Global" + }, + "editSoundtrackWindow": { + "cantDeleteDefaultText": "Você não pode excluir a trilha sonora padrão.", + "cantEditDefaultText": "Não é possível editar a trilha sonora padrão. Duplique ou crie uma nova.", + "cantOverwriteDefaultText": "Não é possível sobrescrever a trilha sonora padrão", + "cantSaveAlreadyExistsText": "Já existe uma trilha sonora com esse nome!", + "defaultGameMusicText": "", + "defaultSoundtrackNameText": "Trilha sonora padrão", + "deleteConfirmText": "Excluir trilha sonora:\n\n'${NAME}'?", + "deleteText": "Excluir\nTrilha sonora", + "duplicateText": "Duplicar\nTrilha sonora", + "editSoundtrackText": "Editor de Trilha Sonora", + "editText": "Editar\nTrilha sonora", + "fetchingITunesText": "Buscando playlists do app de música", + "musicVolumeZeroWarning": "Aviso: o volume da música está zerado", + "nameText": "Nome", + "newSoundtrackNameText": "Minha trilha sonora ${COUNT}", + "newSoundtrackText": "Nova trilha sonora:", + "newText": "Nova\nTrilha sonora", + "selectAPlaylistText": "Selecione uma playlist", + "selectASourceText": "Fonte de música", + "testText": "teste", + "titleText": "Trilhas sonoras", + "useDefaultGameMusicText": "Música padrão", + "useITunesPlaylistText": "Playlist do app de música", + "useMusicFileText": "Arquivo de música (mp3, etc)", + "useMusicFolderText": "Pasta de arquivos de música" + }, + "editText": "Editar", + "enabledText": "Ativado", + "endText": "Fim", + "enjoyText": "Aproveite!", + "epicDescriptionFilterText": "${DESCRIPTION} em câmera lenta épica.", + "epicNameFilterText": "${NAME} épico(a)", + "errorAccessDeniedText": "acesso negado", + "errorDeviceTimeIncorrectText": "A hora do seu dispositivo está incorreta por ${HOURS} horas.\nIsso causará problemas. \nPor-Favor cheque suas configurações de hora e fuso horário.", + "errorOutOfDiskSpaceText": "pouco espaço em disco", + "errorSecureConnectionFailText": "Não foi possível estabelecer uma conexão segura à nuvem; a funcionalidade da rede pode falhar.", + "errorText": "Erro", + "errorUnknownText": "erro desconhecido", + "exitGameText": "Sair do ${APP_NAME}?", + "expiredAgoText": "Expirado há ${T}", + "expiresInText": "Expira em ${T}", + "exportSuccessText": "'${NAME}' foi exportado.", + "externalStorageText": "Armazenamento externo", + "failText": "Falhou", + "fatalErrorText": "Ops; algo está faltando ou está corrompido.\nPor favor, tente reinstalar BombSquad ou\nentre em contato ${EMAIL} para ajuda.", + "fileSelectorWindow": { + "titleFileFolderText": "Selecione um arquivo ou pasta", + "titleFileText": "Selecione um arquivo", + "titleFolderText": "Selecione uma pasta", + "useThisFolderButtonText": "Use esta pasta" + }, + "filterText": "Filtro", + "finalScoreText": "Pontuação final", + "finalScoresText": "Pontuações finais", + "finalTimeText": "Tempo final", + "finishingInstallText": "Terminando de instalar; aguarde...", + "fireTVRemoteWarningText": "* Para uma melhor experiência, use\njoysticks ou baixe o aplicativo\n'${REMOTE_APP_NAME}' no seu\ntelefone ou tablet.", + "firstToFinalText": "Primeiro-a-${COUNT} Final", + "firstToSeriesText": "Primeiro-a-${COUNT} Séries", + "fiveKillText": "MATOU CINCO!!!", + "flawlessWaveText": "Onda Perfeita!", + "fourKillText": "MORTE QUÁDRUPLA!!!", + "friendScoresUnavailableText": "Pontuação dos amigos indisponível.", + "gameLeadersText": "Game ${COUNT} Líderes", + "gameListWindow": { + "cantDeleteDefaultText": "Você não pode excluir a playlist padrão!", + "cantEditDefaultText": "Você não pode editar a playlist padrão! Duplique ou crie uma nova.", + "cantShareDefaultText": "Você não pode compartilhar a playlist padrão.", + "deleteConfirmText": "Excluir ${LIST}?", + "deleteText": "Excluir\nPlaylist", + "duplicateText": "Duplicar\nPlaylist", + "editText": "Editar\nPlaylist", + "newText": "Nova\nPlaylist", + "pointsToWinText": "Pontos para Ganhar", + "seriesLengthText": "Tamanho da Série", + "showTutorialText": "Mostrar Tutorial", + "shuffleGameOrderText": "Ordem de Partida Aleatória", + "titleText": "Personalizar Playlists de ${TYPE}" + }, + "gameSettingsWindow": { + "addGameText": "Adicionar jogo" + }, + "gamesToText": "${WINCOUNT} jogos para ${LOSECOUNT}", + "gatherWindow": { + "aboutDescriptionLocalMultiplayerExtraText": "Lembre-se: qualquer dispositivo em grupo pode ter\nmais de um jogador se você tiver controles o suficiente.", + "aboutDescriptionText": "Use essas guias para criar um grupo.\n\nGrupos o permitem jogar com seus amigos\natravés de dispositivos diferentes.\n\nUse o botão ${PARTY} no canto superior direito\npara conversar e interagir com seu grupo.\n(em um controle, aperte ${BUTTON} enquanto estiver em um menu)", + "aboutText": "Sobre", + "addressFetchErrorText": "", + "appInviteMessageText": "${NAME} mandou ${COUNT} cupons ${APP_NAME}", + "appInviteSendACodeText": "Envie um código", + "appInviteTitleText": "Convite para testar ${APP_NAME}", + "bluetoothAndroidSupportText": "(funciona com qualquer dispositivo Android com Bluetooth)", + "bluetoothDescriptionText": "Hospedar/entrar em um grupo pelo Bluetooth:", + "bluetoothHostText": "Hospedar pelo Bluetooth", + "bluetoothJoinText": "Entrar pelo Bluetooth", + "bluetoothText": "Bluetooth", + "checkingText": "verificando...", + "copyCodeConfirmText": "Código copiado para área de transferência.", + "copyCodeText": "Copiar código", + "dedicatedServerInfoText": "Para melhores resultados, inicie um servidor dedicado. Visite bombsquadgame.com/server para saber como.", + "descriptionShortText": "Use a janela de \"Juntar-se\" para formar um grupo.", + "disconnectClientsText": "Isso irá desconectar ${COUNT}jogador(es)\nde seu grupo. Você tem certeza?", + "earnTicketsForRecommendingAmountText": "Os amigos ganharão ${COUNT} bilhetes ao experimentar o jogo\n(e você ganhará ${YOU_COUNT} por cada um que o fizer)", + "earnTicketsForRecommendingText": "Compartilhe o jogo\npara bilhetes grátis...", + "emailItText": "Enviar e-mail", + "favoritesSaveText": "Salvar como Favorito", + "favoritesText": "Favoritos", + "freeCloudServerAvailableMinutesText": "Próximo servidor na nuvem grátis disponível em ${MINUTES} minutos.", + "freeCloudServerAvailableNowText": "Servidor na nuvem grátis disponível!", + "freeCloudServerNotAvailableText": "Nenhum servidor na nuvem grátis disponível.", + "friendHasSentPromoCodeText": "${COUNT} bilhetes do ${APP_NAME} mandados por ${NAME}", + "friendPromoCodeAwardText": "Você ganhará ${COUNT} bilhetes toda vez que for usado.", + "friendPromoCodeExpireText": "O código expira em ${EXPIRE_HOURS} horas e só funcionará para novos jogadores.", + "friendPromoCodeInstructionsText": "Para usar, abra ${APP_NAME} e vá até \"Configurações-> Avançado-> Inserir Código\". \nVeja bombsquadgame.com para os links de download para todas as plataformas suportadas.", + "friendPromoCodeRedeemLongText": "Pode ser resgatado por ${COUNT} bilhetes gratuitos por até ${MAX_USES} pessoas.", + "friendPromoCodeRedeemShortText": "Pode ser resgatado por ${COUNT} bilhetes no jogo.", + "friendPromoCodeWhereToEnterText": "(em \"Configuração -> Avançado -> Inserir Código\")", + "getFriendInviteCodeText": "Obter código de convite", + "googlePlayDescriptionText": "Convidar jogadores do Google Play para a seu grupo:", + "googlePlayInviteText": "Convidar", + "googlePlayReInviteText": "Há ${COUNT} jogador(es) do Google Play na seu grupo\nque serão desconectados se você iniciar um novo convite.\nInclua-os neste novo convite para adicioná-los de volta.", + "googlePlaySeeInvitesText": "Ver convites", + "googlePlayText": "Google Play", + "googlePlayVersionOnlyText": "(Android/versão Google Play)", + "hostPublicPartyDescriptionText": "Hospedar um Grupo Público", + "hostingUnavailableText": "Host indisponível", + "inDevelopmentWarningText": "Nota:\n\nJogo em rede ainda é um novo recurso em desenvolvimento.\nPor enquanto, é altamente recomendável que todos\nos jogadores estejam na mesma rede Wi-Fi.", + "internetText": "Internet", + "inviteAFriendText": "Seus amigos ainda não têm o jogo? Convide-os para\nexperimentar e eles ganharão ${COUNT} bilhetes grátis.", + "inviteFriendsText": "Convidar amigos", + "joinPublicPartyDescriptionText": "Entrar em um Grupo Público", + "localNetworkDescriptionText": "Entrar em um Grupo Próximo (LAN, Bluetooth, etc.)", + "localNetworkText": "Rede Local", + "makePartyPrivateText": "Tornar Meu Grupo Privado", + "makePartyPublicText": "Tornar Meu Grupo Público", + "manualAddressText": "Endereço", + "manualConnectText": "Conectar", + "manualDescriptionText": "Entrar em um grupo por endereço:", + "manualJoinSectionText": "Entrar pelo Endereço", + "manualJoinableFromInternetText": "Conseguem se juntar à você pela internet?:", + "manualJoinableNoWithAsteriskText": "NÃO*", + "manualJoinableYesText": "SIM", + "manualRouterForwardingText": "*para resolver, tente configurar seu roteador para encaminhar a porta UDP ${PORT} para o seu endereço local", + "manualText": "Manual", + "manualYourAddressFromInternetText": "Seu endereço na internet:", + "manualYourLocalAddressText": "Seu endereço local:", + "nearbyText": "Próximo", + "noConnectionText": "", + "noPartiesAddedText": "Nenhum Grupo Adicionado", + "otherVersionsText": "(outras versões)", + "partyCodeText": "Código do Grupo", + "partyInviteAcceptText": "Aceitar", + "partyInviteDeclineText": "Recusar", + "partyInviteIgnoreText": "Ignorar", + "partyInviteText": "${NAME} convidou você\npara entrar no grupo dele(a)!", + "partyNameText": "Nome do Grupo", + "partyServerRunningText": "Seu servidor de grupo está rodando.", + "partySizeText": "tamanho do grupo", + "partyStatusCheckingText": "verificando estado...", + "partyStatusJoinableText": "agora podem entrar no seu grupo pela internet", + "partyStatusNoConnectionText": "não foi possível conectar ao servidor", + "partyStatusNotJoinableText": "não podem entrar no seu grupo pela internet", + "partyStatusNotPublicText": "seu grupo não é público", + "pingText": "latência", + "portText": "Porta", + "privatePartyCloudDescriptionText": "Grupo privados funcionam em servidores da nuvem dedicados; nenhuma configuração no roteador é requirida.", + "privatePartyHostText": "Hospedar um Grupo Privado", + "privatePartyJoinText": "Entrar em um Grupo Privado", + "privateText": "Privado", + "publicHostRouterConfigText": "Isso pode requerer uma configuração de porta no seu roteador. Para uma opção mais simples, crie um grupo privado.", + "publicText": "Público", + "requestingAPromoCodeText": "Solicitando um código...", + "sendDirectInvitesText": "Enviar Convites Diretos", + "shareThisCodeWithFriendsText": "Compartilhe esse código com seus amigos:", + "showMyAddressText": "Mostrar Meu Endereço", + "startHostingPaidText": "Crie Agora por ${COST}", + "startHostingText": "Criar", + "startStopHostingMinutesText": "Você pode iniciar ou interromper a hospedagem de graça nos próximos ${MINUTES} minutos.", + "stopHostingText": "Interromper hospedagem", + "titleText": "Juntar-se", + "wifiDirectDescriptionBottomText": "Se todos os dispositivos tiverem 'Wi-Fi Direct', poderão usar para encontrar\ne conectar um com o outro. Conectados todos os dispositivos, você pode formar grupos\naqui usando a guia 'Rede Local', como em uma rede Wi-Fi comum.\n\nPara melhores resultados, o anfitrião do Wi-Fi Direct deverá ser também o anfitrião do grupo do ${APP_NAME}.", + "wifiDirectDescriptionTopText": "Wi-Fi Direct pode conectar dispositivos Android sem a necessidade\nde uma rede Wi-Fi. Funciona melhor a partir da versão Android 4.2.\n\nPara usar, abra as configurações de Wi-Fi e procure por 'Wi-Fi Direct'.", + "wifiDirectOpenWiFiSettingsText": "Abrir as configurações de Wi-Fi", + "wifiDirectText": "Wi-Fi Direct", + "worksBetweenAllPlatformsText": "(funciona entre todas as plataformas)", + "youHaveBeenSentAPromoCodeText": "Mandaram um código promocional do ${APP_NAME} para você:" + }, + "getTicketsWindow": { + "freeText": "GRÁTIS!", + "freeTicketsText": "Cupons Grátis", + "inProgressText": "Uma transação está em andamento; tente de novo em um momento.", + "purchasesRestoredText": "Compras restauradas.", + "receivedTicketsText": "Você recebeu ${COUNT} cupons!", + "restorePurchasesText": "Restaurar Compras", + "ticketPack1Text": "Pacote Pequeno de Bilhetes", + "ticketPack2Text": "Pacote Médio de Bilhetes", + "ticketPack3Text": "Pacote Grande de Bilhetes", + "ticketPack4Text": "Pacote Jumbo de Bilhetes", + "ticketPack5Text": "Pacote Mamute de Bilhetes", + "ticketPack6Text": "Pacote Supremo de Bilhetes", + "ticketsFromASponsorText": "Assista a um anúncio \ne ganhe ${COUNT} bilhetes", + "ticketsText": "${COUNT} bilhetes", + "titleText": "Obter bilhetes", + "unavailableLinkAccountText": "Desculpe, as compras não estão disponíveis nesta plataforma.\nComo solução alternativa, você pode vincular esta conta para\noutra conta de outra plataforma e fazer compras lá.", + "unavailableTemporarilyText": "Indisponível no momento; tente novamente mais tarde.", + "unavailableText": "Desculpe, não está disponível.", + "versionTooOldText": "Desculpe, esta versão do jogo é muito antiga; por favor, atualize.", + "youHaveShortText": "você tem ${COUNT}", + "youHaveText": "você possui ${COUNT} bilhetes" + }, + "goldPass": { + "desc1InfTokensText": "Tokens infinitos.", + "desc2NoAdsText": "Sem anúncios.", + "desc3ForeverText": "Para sempre.", + "goldPassText": "Passe de Ouro" + }, + "googlePlayPurchasesNotAvailableText": "Compras pela Google Play não estão disponíveis.\nTalvez seja necessário atualizar sua loja para isso.", + "googlePlayServicesNotAvailableText": "Os serviços do Google Play não estão disponíveis. \nAlgumas funções do aplicativo talvez serão desabilitadas.", + "googlePlayText": "Google Play", + "graphicsSettingsWindow": { + "alwaysText": "Sempre", + "fullScreenCmdText": "Tela cheia (Cmd-F)", + "fullScreenCtrlText": "Tela cheia (Ctrl-F)", + "fullScreenText": "Tela cheia", + "gammaText": "Gama", + "highText": "Alto", + "higherText": "Mais alto", + "lowText": "Baixo", + "maxFPSText": "FPS máximo", + "mediumText": "Médio", + "neverText": "Nunca", + "resolutionText": "Resolução", + "showFPSText": "Mostrar FPS", + "texturesText": "Texturas", + "titleText": "Gráficos", + "tvBorderText": "Borda da TV", + "verticalSyncText": "Sincronização vertical", + "visualsText": "Visuais" + }, + "helpWindow": { + "bombInfoText": "- Bomba - \nMais forte que socos, mas pode \ncausar graves ferimentos em você mesmo.\nPara melhores resultados, atire no\ninimigo antes do pavio acabar.", + "canHelpText": "${APP_NAME} pode ajudar.", + "controllersInfoText": "Você pode jogar ${APP_NAME} com amigos em uma rede, ou todos \npodem jogar no mesmo dispositivo se tiverem controles suficientes.\n${APP_NAME} suporta muitos deles; você pode até mesmo usar\ncelulares como controle com o aplicativo '${REMOTE_APP_NAME}'.\nVeja as Configurações->Controles para mais informações.", + "controllersInfoTextRemoteOnly": "Você pode jogar ${APP_NAME} com amigos na rede ou \ntodos podem jogar no mesmo dispositivo usando telefones como\ncontroladores através do aplicativo gratuito '${REMOTE_APP_NAME}'.", + "controllersText": "Controles", + "controlsSubtitleText": "O seu personagem bonitinho do ${APP_NAME} tem algumas ações básicas:", + "controlsText": "Controles", + "devicesInfoText": "A versão VR de ${APP_NAME} pode ser jogada em rede com\na versão comum, portanto saquem seus celulares extras, tablets,\ne computadores e mandem ver. Pode ser útil conectar uma\nversão comum do jogo à versão VR para permitir que\npessoas de fora assistam a ação.", + "devicesText": "Dispositivos", + "friendsGoodText": "São sempre boas companhias. ${APP_NAME} é mais divertido com muitos\njogadores e pode suportar até 8 ao mesmo tempo, o que nos leva a:", + "friendsText": "Amigos", + "jumpInfoText": "- Saltar -\nSalte por cima de buracos,\npara jogar coisas mais alto e\npara expressar sua alegria.", + "orPunchingSomethingText": "Ou dar um soco em algo, jogar de um penhasco e explodir em pedacinhos com uma bomba grudenta.", + "pickUpInfoText": "- Pegar -\nAgarre bandeiras, inimigos ou\nqualquer coisa não aparafusada no\nchão. Aperte novamente para jogar.", + "powerupBombDescriptionText": "Permite você lançar três bombas\nseguidas ao invés de uma só.", + "powerupBombNameText": "Tribombas", + "powerupCurseDescriptionText": "É melhor você ficar longe de um desses.\n...ou será que não?", + "powerupCurseNameText": "Maldição", + "powerupHealthDescriptionText": "Restaura toda a sua energia.\nVocê jamais teria adivinhado.", + "powerupHealthNameText": "Kit médico", + "powerupIceBombsDescriptionText": "Mais fraca que a normal, mas\ndeixa seus inimigos congelados\ne bem fragilizados.", + "powerupIceBombsNameText": "Criobombas", + "powerupImpactBombsDescriptionText": "Um pouco mais fraca que a normal\nregular, mas explode ao impacto.", + "powerupImpactBombsNameText": "Impactobombas", + "powerupLandMinesDescriptionText": "Estes vêm em pacotes de 3;\nÉ útil para proteger a base ou\ndeter inimigos correndo em sua direção.", + "powerupLandMinesNameText": "Minas", + "powerupPunchDescriptionText": "Deixa seus socos poderosos, \nrápidos, melhores, fortes.", + "powerupPunchNameText": "Luvas de Boxe", + "powerupShieldDescriptionText": "Absorve um pouco de dano para\nvocê não ter passar por isso.", + "powerupShieldNameText": "Escudo de Energia", + "powerupStickyBombsDescriptionText": "Gruda em tudo que toca.\nHilaridade segue.", + "powerupStickyBombsNameText": "Bombas Grudentas", + "powerupsSubtitleText": "É claro, nenhum jogo está completo sem poderes:", + "powerupsText": "Poderes", + "punchInfoText": "- Soco -\nQuanto mais rápidos seus punhos,\nmais danos seus socos dão, então\nsaia correndo feito um louco.", + "runInfoText": "- Correr -\nSegure QUALQUER botão para correr. Gatilhos ou botões de ombro funcionam bem se você tiver. \nCorrer o leva a lugares mais rápido, mas dificulta na hora de virar, então fique de olho nos penhascos.", + "someDaysText": "Tem dias que você só quer bater em algo. Ou então explodir coisas.", + "titleText": "Ajuda do ${APP_NAME}", + "toGetTheMostText": "Para aproveitar ao máximo este jogo, você precisará de:", + "welcomeText": "Bem-vindo ao ${APP_NAME}!" + }, + "holdAnyButtonText": "", + "holdAnyKeyText": "", + "hostIsNavigatingMenusText": "- ${HOST} está navegando pelos menus como se não houvesse amanhã -", + "importPlaylistCodeInstructionsText": "Use o seguinte código para importar essa playlist:", + "importPlaylistSuccessText": "Playlist '${NAME}' importada ${TYPE}", + "importText": "Importar", + "importingText": "Importando...", + "inGameClippedNameText": "No jogo será\n\"${NAME}\"", + "inboxText": "Caixa de entrada", + "installDiskSpaceErrorText": "ERRO: Não pôde concluir a instalação.\nVocê deve estar com pouco espaço no seu dispositivo.\nApague algumas coisas e tente novamente.", + "internal": { + "arrowsToExitListText": "aperte ${LEFT} ou ${RIGHT} para sair da lista", + "buttonText": "botão", + "cantKickHostError": "Você não pode expulsar o anfitrião.", + "chatBlockedText": "O chat de ${NAME} está bloqueado por ${TIME} segundo(s).", + "connectedToGameText": "Conectou-se a '${NAME}'", + "connectedToPartyText": "Entrou no grupo de ${NAME}!", + "connectingToPartyText": "Conectando...", + "connectionFailedHostAlreadyInPartyText": "A conexão falhou; anfitrião está em outro grupo.", + "connectionFailedPartyFullText": "Conexão falhou; o grupo está cheio.", + "connectionFailedText": "A conexão falhou.", + "connectionFailedVersionMismatchText": "A conexão falhou; anfitrião está rodando uma versão diferente do jogo.\nTenha certeza de que ambos estejam atualizados e tente novamente.", + "connectionRejectedText": "Conexão negada.", + "controllerConnectedText": "${CONTROLLER} conectado.", + "controllerDetectedText": "1 controle detectado.", + "controllerDisconnectedText": "${CONTROLLER} desconectado.", + "controllerDisconnectedTryAgainText": "${CONTROLLER} desconectado. Por favor, tente novamente.", + "controllerForMenusOnlyText": "Este controle não pode ser usado para jogar; apenas para navegar pelo menu.", + "controllerReconnectedText": "${CONTROLLER} reconectado.", + "controllersConnectedText": "${COUNT} controles conectados.", + "controllersDetectedText": "${COUNT} controles detectados.", + "controllersDisconnectedText": "${COUNT} controles desconectados.", + "corruptFileText": "Arquivos corrompidos detectados. Tente reinstalar o jogo ou mande um e-mail para ${EMAIL}", + "errorPlayingMusicText": "Erro ao tocar música: ${MUSIC}", + "errorResettingAchievementsText": "Não foi possível reiniciar as conquistas online; por favor, tente novamente mais tarde.", + "hasMenuControlText": "${NAME} possui o controle do menu.", + "incompatibleNewerVersionHostText": "Anfitrião do grupo está usando uma versão mais nova do jogo.\nAtualize seu jogo e tente novamente.", + "incompatibleVersionHostText": "Anfitrião está rodando uma versão diferente do jogo.\nTenha certeza de que ambos estejam atualizados e tente de novo.", + "incompatibleVersionPlayerText": "${NAME} está rodando uma versão diferente do jogo.\nTenha certeza de que ambos estejam atualizados e tente novamente.", + "invalidAddressErrorText": "Erro: endereço invalido.", + "invalidNameErrorText": "Erro: nome inválido.", + "invalidPortErrorText": "Erro: porta inválida.", + "invitationSentText": "Convite enviado.", + "invitationsSentText": "${COUNT} convites enviados.", + "joinedPartyInstructionsText": "Alguém entrou no seu grupo.\nAperte 'Jogar' para começar.", + "keyboardText": "Teclado", + "kickIdlePlayersKickedText": "Expulsando ${NAME} por não mostrar movimento.", + "kickIdlePlayersWarning1Text": "${NAME} será expulso em ${COUNT} segundos se continuar imóvel.", + "kickIdlePlayersWarning2Text": "(você pode desativar isto em Configurações-> Avançado)", + "leftGameText": "Saiu de '${NAME}'", + "leftPartyText": "Você saiu do grupo de ${NAME}.", + "noMusicFilesInFolderText": "A pasta não contém arquivos de música.", + "playerJoinedPartyText": "${NAME} entrou no grupo!", + "playerLeftPartyText": "${NAME} saiu do grupo.", + "rejectingInviteAlreadyInPartyText": "Recusando convite (já está em um grupo).", + "serverRestartingText": "Servidor reiniciando. Por favor, reconecte-se em um momento...", + "serverShuttingDownText": "Servidor está desligando...", + "signInErrorText": "Erro ao entrar.", + "signInNoConnectionText": "Não pôde entrar. (sem conexão à internet?)", + "telnetAccessDeniedText": "ERRO: o usuário não liberou acesso telnet.", + "timeOutText": "(tempo acaba em ${TIME} segundos)", + "touchScreenJoinWarningText": "Você entrou com o modo touchscreen.\nSe isso foi um erro, toque em 'Menu->Sair do Jogo'.", + "touchScreenText": "Touchscreen", + "unableToCompleteTryAgainText": "Não é possível concluir isso agora.\nPor favor, tente novamente.", + "unableToResolveHostText": "Erro: não é possível resolver a fonte do anfitrião", + "unavailableNoConnectionText": "Isso não está disponível agora (sem conexão à internet?)", + "vrOrientationResetCardboardText": "Use para reiniciar a orientação do VR.\nPara jogar, você precisa de um controle externo.", + "vrOrientationResetText": "Orientação do VR reiniciada.", + "willTimeOutText": "(o tempo acabará se ficar imóvel)" + }, + "inventoryText": "Inventário", + "jumpBoldText": "SALTAR", + "jumpText": "Saltar", + "keepText": "Manter", + "keepTheseSettingsText": "Manter essas configurações?", + "keyboardChangeInstructionsText": "Pressione duas vezes o espaço para alterar os teclados.", + "keyboardNoOthersAvailableText": "Nenhum outro teclado disponível.", + "keyboardSwitchText": "Alterando teclado para \"${NAME}\".", + "kickOccurredText": "${NAME} foi expulso.", + "kickQuestionText": "Expulsar ${NAME}?", + "kickText": "Expulsar", + "kickVoteCantKickAdminsText": "O Administrador não pode ser expulso.", + "kickVoteCantKickSelfText": "Você não pode se expulsar.", + "kickVoteFailedNotEnoughVotersText": "Não há jogadores suficientes para uma votação.", + "kickVoteFailedText": "A votação para expulsão falhou.", + "kickVoteStartedText": "Uma votação para expulsar ${NAME} foi iniciada.", + "kickVoteText": "Votação para expulsar", + "kickVotingDisabledText": "A votação para expulsar está desativada.", + "kickWithChatText": "Escreva ${YES} no chat para sim e ${NO} para não.", + "killsTallyText": "${COUNT} abates", + "killsText": "Abates", + "kioskWindow": { + "easyText": "Fácil", + "epicModeText": "Modo Épico", + "fullMenuText": "Menu Completo", + "hardText": "Difícil", + "mediumText": "Médio", + "singlePlayerExamplesText": "Exemplos de Um jogador / Cooperativo", + "versusExamplesText": "Exemplos de Versus" + }, + "languageSetText": "O idioma agora é \"${LANGUAGE}\".", + "lapNumberText": "Volta ${CURRENT}/${TOTAL}", + "lastGamesText": "(últimas ${COUNT} partidas)", + "leaderboardsText": "Classificação", + "league": { + "allTimeText": "Todos os Tempos", + "currentSeasonText": "Temporada atual (${NUMBER})", + "leagueFullText": "Liga ${NAME}", + "leagueRankText": "Classificação da liga", + "leagueText": "Liga", + "rankInLeagueText": "#${RANK}, ${NAME} Liga${SUFFIX}", + "seasonEndedDaysAgoText": "A temporada acabou ${NUMBER} dia(s) atrás.", + "seasonEndsDaysText": "A temporada acaba em ${NUMBER} dia(s).", + "seasonEndsHoursText": "A temporada acaba em ${NUMBER} hora(s).", + "seasonEndsMinutesText": "Temporada acaba em ${NUMBER} minuto(s).", + "seasonText": "Temporada ${NUMBER}", + "tournamentLeagueText": "Você deve alcançar a liga ${NAME} para entrar neste torneio.", + "trophyCountsResetText": "A contagem de troféus reiniciará na próxima temporada.", + "upToDateBonusDescriptionText": "Os jogadores que estiverem jogando uma versão recente do\njogo recebem um bônus de ${PERCENT}% aqui.", + "upToDateBonusText": "Bônus por Estar Atualizado" + }, + "learnMoreText": "Saiba Mais", + "levelBestScoresText": "Melhores pontuações no ${LEVEL}", + "levelBestTimesText": "Melhores tempos no ${LEVEL}", + "levelIsLockedText": "${LEVEL} está bloqueado.", + "levelMustBeCompletedFirstText": "${LEVEL} deve ser concluído primeiro.", + "levelText": "Nível ${NUMBER}", + "levelUnlockedText": "Nível desbloqueado!", + "livesBonusText": "Bônus de Vida", + "loadingText": "carregando", + "loadingTryAgainText": "Carregando; tente novamente daqui a pouco...", + "macControllerSubsystemBothText": "Ambos (não recomendado)", + "macControllerSubsystemClassicText": "Clássico", + "macControllerSubsystemDescriptionText": "Tente ativar isso se os controles não estiverem funcionando", + "macControllerSubsystemMFiNoteText": "Feito para iOS/Mac controle detectado ;\nvocê pode querer ativar isso em Configurações -> Controles", + "macControllerSubsystemMFiText": "Feito para iOS/Mac", + "macControllerSubsystemTitleText": "Suporte para controle", + "mainMenu": { + "creditsText": "Créditos", + "demoMenuText": "Menu de demonstração", + "endGameText": "Terminar Jogo", + "endTestText": "Terminar Teste", + "exitGameText": "Sair do Jogo", + "exitToMenuText": "Sair para o menu?", + "howToPlayText": "Como Jogar", + "justPlayerText": "(Somente ${NAME})", + "leaveGameText": "Sair do Jogo", + "leavePartyConfirmText": "Deseja realmente sair do grupo?", + "leavePartyText": "Sair do Grupo", + "quitText": "Sair", + "resumeText": "Retomar", + "settingsText": "Configurações" + }, + "makeItSoText": "Aplicar", + "mapSelectGetMoreMapsText": "Obter Mais Mapas...", + "mapSelectText": "Selecionar...", + "mapSelectTitleText": "${GAME} mapas", + "mapText": "Mapa", + "maxConnectionsText": "Limite de Conexões", + "maxPartySizeText": "Tamanho Máximo do Grupo", + "maxPlayersText": "Limite de Jogadores", + "merchText": "Produtos BombSquad!", + "modeArcadeText": "Modo Arcade", + "modeClassicText": "Modo Clássico", + "modeDemoText": "Modo Demonstração", + "moreSoonText": "Mais novidades em breve...", + "mostDestroyedPlayerText": "Player Mais Destruído", + "mostValuablePlayerText": "Jogador Mais Valioso", + "mostViolatedPlayerText": "Jogador Mais Violado", + "mostViolentPlayerText": "Jogador Mais Violento", + "moveText": "Mover", + "multiKillText": "MATOU ${COUNT}!!!", + "multiPlayerCountText": "${COUNT} jogadores", + "mustInviteFriendsText": "Nota: você deve convidar amigos no\npainel \"${GATHER}\" ou adicionar\ncontroles para jogar no multijogador.", + "nameBetrayedText": "${NAME} traiu ${VICTIM}.", + "nameDiedText": "${NAME} morreu.", + "nameKilledText": "${NAME} espancou ${VICTIM}.", + "nameNotEmptyText": "Nome não pode estar vazio!", + "nameScoresText": "${NAME} fez um ponto!", + "nameSuicideKidFriendlyText": "${NAME} acidentalmente morreu.", + "nameSuicideText": "${NAME} cometeu suicídio.", + "nameText": "Nome", + "nativeText": "Nativo", + "newExclaimText": "Novo!", + "newPersonalBestText": "Novo recorde pessoal!", + "newTestBuildAvailableText": "Uma nova versão de teste está disponível! (${VERSION} teste ${BUILD}).\nAdquira em ${ADDRESS}", + "newText": "Novo", + "newVersionAvailableText": "Uma nova versão de ${APP_NAME} está disponível! (${VERSION})", + "nextAchievementsText": "Próximas conquistas:", + "nextLevelText": "Próximo nível", + "noAchievementsRemainingText": "- nenhum", + "noContinuesText": "(sem continuar)", + "noExternalStorageErrorText": "Armazenamento externo não encontrado", + "noGameCircleText": "Erro: não conectado no GameCircle", + "noMessagesText": "Sem mensagens.", + "noPluginsInstalledText": "Nenhum Plugin instalado", + "noScoresYetText": "Ainda sem pontuação.", + "noServersFoundText": "Servidores não encontrados.", + "noThanksText": "Não, obrigado", + "noTournamentsInTestBuildText": "Atenção: As pontuações dos torneios desta compilação de teste serão ignoradas.", + "noValidMapsErrorText": "Nenhum mapa válido encontrado para este tipo de jogo.", + "notEnoughPlayersRemainingText": "Não há jogadores suficientes sobrando; saia e comece um novo jogo.", + "notEnoughPlayersText": "Você precisa de pelo menos ${COUNT} jogadores para começar o jogo!", + "notEnoughTicketsText": "Sem bilhetes suficientes!", + "notNowText": "Agora não", + "notSignedInErrorText": "Você deve iniciar sessão primeiro.", + "notSignedInGooglePlayErrorText": "Você deve iniciar sessão no Google Play primeiro.", + "notSignedInText": "sem sessão iniciada", + "notUsingAccountText": "Aviso: Ignorando a conta ${SERVICE}.\nVá em 'Conta -> Entrar com ${SERVICE}' se quiser usá-la.", + "nothingIsSelectedErrorText": "Nada foi selecionado!", + "numberText": "#${NUMBER}", + "offText": "Desativado", + "okText": "Certo", + "onText": "Ativado", + "oneMomentText": "Um Momento...", + "onslaughtRespawnText": "${PLAYER} vai renascer na onda ${WAVE}", + "openMeText": "Abra-Me!", + "openNowText": "Abrir Agora", + "openText": "Abrir", + "orText": "${A} ou ${B}", + "otherText": "Outro...", + "outOfText": "(#${RANK} de ${ALL})", + "ownFlagAtYourBaseWarning": "Sua própria bandeira deve estar\nem sua base para fazer um ponto!", + "partyWindow": { + "chatMessageText": "Mensagem do Chat", + "emptyText": "Seu grupo está vazio", + "hostText": "(anfitrião)", + "sendText": "Enviar", + "titleText": "Seu Grupo" + }, + "pausedByHostText": "(pausado pelo anfitrião)", + "perfectWaveText": "Onda Perfeita!", + "pickUpText": "Pegar", + "playModes": { + "coopText": "Cooperativo", + "freeForAllText": "Todos contra todos", + "multiTeamText": "Equipes múltiplas", + "singlePlayerCoopText": "Um jogador / Cooperativo", + "teamsText": "Equipes" + }, + "playText": "Jogar", + "playWindow": { + "oneToFourPlayersText": "1-4 jogadores", + "titleText": "Jogar", + "twoToEightPlayersText": "2-8 jogadores" + }, + "playerCountAbbreviatedText": "${COUNT}p", + "playerDelayedJoinText": "${PLAYER} entrará no começo da próxima rodada.", + "playerInfoText": "Info. do jogador", + "playerLeftText": "${PLAYER} saiu da partida.", + "playerLimitReachedText": "Limite de ${COUNT} jogadores atingido; entrada não permitida.", + "playerProfilesWindow": { + "cantDeleteAccountProfileText": "Você não pode excluir o seu perfil.", + "deleteButtonText": "Excluir\nPerfil", + "deleteConfirmText": "Excluir '${PROFILE}'?", + "editButtonText": "Editar\nPerfil", + "explanationText": "(personalize nomes e aparências do jogador para esta conta)", + "newButtonText": "Novo\nPerfil", + "titleText": "Perfis de Jogadores" + }, + "playerText": "Jogador", + "playlistNoValidGamesErrorText": "Esta playlist não contém nenhum jogo desbloqueado válido.", + "playlistNotFoundText": "playlist não encontrada", + "playlistText": "Playlist", + "playlistsText": "Playlists", + "pleaseRateText": "Se você está curtindo ${APP_NAME}, por favor, dê um tempinho\npara avaliar e comentar. Isso nos dá uma opinião útil\ne ajuda no desenvolvimento do jogo.\n\nobrigado!\n-eric", + "pleaseWaitText": "Por favor, aguarde...", + "pluginClassLoadErrorText": "Erro ao carregar a classe de um plugin '${PLUGIN}': ${ERROR}", + "pluginInitErrorText": "Erro ao inicializar plugin '${PLUGIN}': ${ERROR}", + "pluginSettingsText": "Configurações de Plugins", + "pluginsAutoEnableNewText": "Ativar Automaticamente Novos Plugins", + "pluginsDetectedText": "Novo(s) plugin(s) detetados. Reinicie o jogo para ativá-los ou configure-os nas configurações.", + "pluginsDisableAllText": "Desativar todos os Plugins!", + "pluginsEnableAllText": "Ativar todos os Plugins!", + "pluginsRemovedText": "${NUM} plugin(s) não foram encontrados.", + "pluginsText": "Plugins", + "practiceText": "Praticar", + "pressAnyButtonPlayAgainText": "Aperte qualquer botão para jogar novamente...", + "pressAnyButtonText": "Aperte qualquer botão para continuar...", + "pressAnyButtonToJoinText": "aperte qualquer botão para entrar...", + "pressAnyKeyButtonPlayAgainText": "Aperte qualquer tecla/botão para jogar novamente...", + "pressAnyKeyButtonText": "Aperte qualquer tecla/botão para continuar...", + "pressAnyKeyText": "Aperte qualquer tecla...", + "pressJumpToFlyText": "** Aperte saltar repetidamente para voar **", + "pressPunchToJoinText": "aperte SOCO para entrar...", + "pressToOverrideCharacterText": "aperte ${BUTTONS} para substituir o seu personagem", + "pressToSelectProfileText": "aperte ${BUTTONS} para selecionar um jogador", + "pressToSelectTeamText": "aperte ${BUTTONS} para selecionar uma equipe", + "promoCodeWindow": { + "codeText": "Código", + "enterText": "Entrar" + }, + "promoSubmitErrorText": "Erro ao enviar código; Verifique a sua conexão com a internet!", + "ps3ControllersWindow": { + "macInstructionsText": "Desligue a energia na parte traseira do seu PS3, verifique se\no Bluetooth do seu Mac está ativado, em seguida conecte o seu controle\nno seu Mac através de um cabo USB para emparelhar os dois. A partir daí, você\npode usar o botão home do controle para conectá-lo ao seu Mac\nseja por fio (USB) ou sem fio (Bluetooth).\n\nEm alguns Macs, uma senha pode ser solicitada ao emparelhar.\nSe isso acontecer, consulte o seguinte tutorial ou o Google para obter ajuda.\n\n\n\n\nOs controles de PS3 conectados sem fio devem aparecer na lista de\ndispositivos em Preferências do Sistema > Bluetooth. Você pode precisar remover\nda lista quando você quiser usar com o seu PS3 novamente.\n\nTambém certifique-se de desconectá-los do Bluetooth quando não estiver\nusando ou a bateria ficará acabando.\n\nBluetooth deve suportar até sete dispositivos conectados,\nembora a sua capacidade possa variar.", + "ouyaInstructionsText": "Para usar um controle de PS3 com seu OUYA, basta conectá-lo com um cabo USB\numa vez para emparelhá-lo. Fazer isso pode desconectar seus outros controles, por\nisso você deve, em seguida, reiniciar seu OUYA e desconectar o cabo USB.\n\nA partir de então você deve ser capaz de usar o botão HOME do controle para\nconectá-lo sem fio. Quando você terminar de jogar, pressione o botão HOME\npor 10 segundos para desligar o controle; caso contrário, pode permanecer ligado\ne desperdiçar bateria.", + "pairingTutorialText": "vídeo tutorial do emparelhamento", + "titleText": "Usando Controles de PS3 com ${APP_NAME}:" + }, + "punchBoldText": "SOCAR", + "punchText": "Socar", + "purchaseForText": "Compre por ${PRICE}", + "purchaseGameText": "Comprar jogo", + "purchaseNeverAvailableText": "Desculpe, as compras não estão disponíveis nesta versão.\nTente entrar em sua conta em outra plataforma e fazer compras nela", + "purchaseNotAvailableText": "Esta compra não está disponível.", + "purchasingText": "Comprando...", + "quitGameText": "Sair do ${APP_NAME}?", + "quittingIn5SecondsText": "Saindo em 5 segundos...", + "randomPlayerNamesText": "João,Maria,Anderson,Lucas,Roberto,César,Felipe,Pedro,Zézinho,Jaílson,Hélvio,Plínio,Clara,Lorena,Beatriz,Wandernilson,Marcos,Michele,Taís,Florentina,Tadeu,Teodoro,Gabriel,Joelma,Chimbinha,Lula,Dilma,Leonardo,Irene,Samanta,Gioconda,Guilhermina,Guilherme,Frederico,Bartolomeu,Dionísio,Diógenes,Haroldo,Ronaldinho,Ricardo,Selma,Bruna,Vanderlei,Danilo,Celso,Vitória,Denise,Samuel,Daniel,Gigi,Manuel,Wiz,Gretchen,Creusa,Chico,Leôncio,Leônidas,Washington,Cleusa,José,Joane,Severino,Casé,Carlos,Davi,Bianca,Clautila,Dafne,Jorge,Sandra,Armando,Basílio,Rochele,Camila,Débora,Rafael,Jonatan,Clodomiro,Clodovil,Vera,Simão,Raíssa,Toni,Tânia,Regina,Bela,Max,Maximiliano,Claudinei,Cláudio,Luciana,Anália,Aparecida,Marcelo,Flávio,Emílio,Tiago,Hebe,Ana,Beth,Gugu,Vítor,Nílton,Maurício,Marciano,Belquior,Clemente,Rosa,Rose,Rosemar,Gabriela,Sérgio,Antônio,Ben,Ivan,jamim,Abreu,Luís,Elton,Fabiana,Waldir,Wilson,Tainá,Tainara,Xuxa,Sacha,Teotônio,Téo,Valdirene,Laurindo,Priscila,Joaquim,Estevão,Gilmar,Erick,Gilson,Romário,Dunga,Ludmila,Luciano,Gilvan,Tamara,Carla,Zezé,Fernando,Fernanda,Adegesto,Acheropita,Anatalino,Lino,Araci,Marluci,Eusébio,Darcília,Dignatario,Ernesto,Cássio,Conrado,Fábio,Heitor,Ivan,Murilo,Andressa,Mateus,Otávio,Helena,Laís,Lavínia,Leila,Letícia,Nair,Henrique,Lara,Diogo,Diego,Geniclécio,Serafim,Lisa,Inri,Eusébio,Gerônimo,Bernardo,Bernadete,Henriete,Eliete,Fudêncio,Peruíbe,Tomás,Tomashedisso,Giovana,Prieto,Gabriely,Suélen,Jamily,Jamil,Geraldo,Nazareth,Forníco,Ícaro,Breno,Bruno,Cilmara,Nilza,Caio,Borges,Cleimara,Janeclécio,Iram,Tico,Teco,Genilson,Marlos,William,Nando,Nanda,Isabel,Jamal,Elias,Félix,Caroline,Carolina,Vilma,Rafaely,Tonho,Túnica,Miguel,Jones,Juan,Anastácio,Francisco,Xavier", + "randomText": "Aleatório", + "rankText": "Classificação", + "ratingText": "Avaliação", + "reachWave2Text": "Chegue a onda 2 para pontuar.", + "readyText": "pronto", + "recentText": "Recente", + "remoteAppInfoShortText": "${APP_NAME} é mais divertido quando é jogado com família e amigos.\nConecte um ou mais controles de hardware ou instale o aplicativo \n${REMOTE_APP_NAME} em telefones ou tablets para usá-los \ncomo controles.", + "remote_app": { + "app_name": "BombSquad Remote", + "app_name_short": "BSRemote", + "button_position": "Posição do botão", + "button_size": "Tamanho do botão", + "cant_resolve_host": "Não foi possível localizar o anfitrião.", + "capturing": "Aguardando...", + "connected": "Conectado.", + "description": "Use seu telefone ou tablet como controle com BombSquad.\nAté 8 dispositivos podem se conectar de uma vez para uma loucura épica de multijogador local em uma TV ou tablet.", + "disconnected": "Desconectado pelo servidor.", + "dpad_fixed": "fixo", + "dpad_floating": "Móvel", + "dpad_position": "Posição do direcional", + "dpad_size": "Tamanho do direcional", + "dpad_type": "Tipo de direcional", + "enter_an_address": "Insira um endereço", + "game_full": "A partida está cheia ou não aceita conexões.", + "game_shut_down": "A partida foi fechada.", + "hardware_buttons": "Botões físicos", + "join_by_address": "Entrar por endereço...", + "lag": "Lag: ${SECONDS} segundos", + "reset": "Restaurar padrão", + "run1": "Correr 1", + "run2": "Correr 2", + "searching": "Procurando partidas...", + "searching_caption": "Clique em uma partida para entrar.\nVeja se está na mesma rede Wi-Fi do jogo.", + "start": "Iniciar", + "version_mismatch": "Versão incompatível.\nCertifique-se que o BombSquad e o BombSquad Remote\nestão atualizados e tente novamente." + }, + "removeInGameAdsText": "Desbloqueie \"${PRO}\" na loja para remover anúncios dentro do jogo.", + "removeInGameAdsTokenPurchaseText": "OFERTA POR TEMPO LIMITADO: Compre QUALQUER pacote de tokens para remover anúncios no jogo.", + "renameText": "Renomear", + "replayEndText": "Terminar replay", + "replayNameDefaultText": "Replay do último jogo", + "replayReadErrorText": "Erro ao ler arquivo de replay.", + "replayRenameWarningText": "Renomeie \"${REPLAY}\" após uma partida caso queira salvá-lo; caso contrário será sobrescrito.", + "replayVersionErrorText": "Desculpe, este replay foi feito em uma versão\ndiferente do jogo e não pode ser usado.", + "replayWatchText": "Ver replay", + "replayWriteErrorText": "Erro ao gravar arquivo de replay.", + "replaysText": "Replays", + "reportPlayerExplanationText": "Use este e-mail para denunciar trapaças, linguagem inapropriada, ou outro comportamento ruim.\nPor favor, descreva abaixo:", + "reportThisPlayerCheatingText": "Trapaça", + "reportThisPlayerLanguageText": "Linguagem inapropriada", + "reportThisPlayerReasonText": "O que gostaria de denunciar?", + "reportThisPlayerText": "Denunciar este jogador", + "requestingText": "Solicitando...", + "restartText": "Reiniciar", + "retryText": "Tentar novamente", + "revertText": "Reverter", + "runText": "Correr", + "saveText": "Salvar", + "scanScriptsErrorText": "Erro(s) de verificação de scripts; consulte o registro para obter mais detalhes.", + "scanScriptsMultipleModulesNeedUpdatesText": "${PATH} e ${NUM} e outro(s) módulo(s) precisam de atualizações paro o api ${API}.", + "scanScriptsSingleModuleNeedsUpdatesText": "${PATH} precisa ser atualizado para api${API}.", + "scoreChallengesText": "Desafios de Pontuação", + "scoreListUnavailableText": "Lista de pontuação indisponível.", + "scoreText": "Pontuação", + "scoreUnits": { + "millisecondsText": "Milisegundos", + "pointsText": "Pontos", + "secondsText": "Segundos" + }, + "scoreWasText": "(foi ${COUNT})", + "selectText": "Selecionar", + "sendInfoDescriptionText": "Isto envia informações de sua conta e de estado de aplicativo para o desenvolvedor.\nPor favor inclua seu nome ou razão por ter feito isso.", + "seriesWinLine1PlayerText": "VENCEU A", + "seriesWinLine1TeamText": "VENCEU A", + "seriesWinLine1Text": "VENCEU A", + "seriesWinLine2Text": "SÉRIE!", + "settingsWindow": { + "accountText": "Conta", + "advancedText": "Avançado", + "audioText": "Áudio", + "controllersText": "Controles", + "graphicsText": "Gráficos", + "playerProfilesMovedText": "Nota: os perfis de jogador foram movidos à janela de Conta no menu principal.", + "titleText": "Configurações" + }, + "settingsWindowAdvanced": { + "alwaysUseInternalKeyboardDescriptionText": "(um simples teclado virtual compatível com controles para edição de texto)", + "alwaysUseInternalKeyboardText": "Sempre usar o teclado interno", + "benchmarksText": "Benchmarks e Testes de Estresse", + "devToolsText": "Ferramentas de Desenvolvedor", + "disableCameraGyroscopeMotionText": "Desativar movimento giroscópio da câmera", + "disableCameraShakeText": "Desativar tremida de câmera", + "disableThisNotice": "(você pode desativar este aviso em configurações avançadas)", + "enterPromoCodeText": "Inserir Código", + "forTestingText": "Nota: esses valores são somente para teste e serão perdidos assim que o aplicativo for fechado.", + "helpTranslateText": "As traduções do ${APP_NAME} são sustentadas pelo esforço\npúblico da comunidade. Se você gostaria de ajudar ou corrigir\numa tradução, siga o link a abaixo. Agradeço desde já!", + "insecureConnectionsDescriptionText": "não recomendado, mas talvez permita você poder jogar online\nde países ou redes restritas", + "insecureConnectionsText": "Usar conexões inseguras", + "kickIdlePlayersText": "Expulsar jogadores inativos", + "kidFriendlyModeText": "Modo para crianças (violência reduzida, etc)", + "languageText": "Idioma", + "moddingGuideText": "Guia para Modificar o Jogo", + "moddingToolsText": "Ferramentas de Modificação", + "mustRestartText": "Você deve reiniciar o jogo para isso ter efeito.", + "netTestingText": "Teste de Conexão", + "resetText": "Redefinir", + "sendInfoText": "Enviar Informação", + "showBombTrajectoriesText": "Mostrar trajetórias da bomba", + "showDemosWhenIdleText": "Mostrar demonstrações quando ocioso", + "showDeprecatedLoginTypesText": "Mostrar tipos de logins ultrapassados", + "showDevConsoleButtonText": "Mostrar opção de desenvolvedor", + "showInGamePingText": "Mostrar latência no jogo", + "showPlayerNamesText": "Mostrar nomes dos jogadores", + "showUserModsText": "Mostrar Caminho da Pasta de Modificações", + "titleText": "Avançado", + "translationEditorButtonText": "Abrir site de Traduções do ${APP_NAME}", + "translationFetchErrorText": "estado da tradução indisponível", + "translationFetchingStatusText": "verificando estado da tradução...", + "translationInformMe": "Avise me quando meu idioma precisar de atualizações", + "translationNoUpdateNeededText": "o seu idioma está atualizado; woohoo!", + "translationUpdateNeededText": "** o seu idioma precisa de atualizações!! **", + "vrTestingText": "Teste de RV" + }, + "shareText": "Compartilhar", + "sharingText": "Compartilhando...", + "showText": "Mostrar", + "signInForPromoCodeText": "Você deve iniciar sia sessão em uma conta para que os códigos promocionais funcionem.", + "singleGamePlaylistNameText": "Somente ${GAME}", + "singlePlayerCountText": "1 jogador", + "sizeLargeText": "Grande", + "sizeMediumText": "Médio", + "sizeSmallText": "Pequeno", + "soloNameFilterText": "Solo ${NAME}", + "soundtrackTypeNames": { + "CharSelect": "Seleção de personagens", + "Chosen One": "O Escolhido", + "Epic": "Partidas no modo épico", + "Epic Race": "Corrida épica", + "FlagCatcher": "Capture a bandeira", + "Flying": "Pensamentos felizes", + "Football": "Futebol americano", + "ForwardMarch": "Assalto", + "GrandRomp": "Conquista", + "Hockey": "Hóquei", + "Keep Away": "Fique longe", + "Marching": "Casa dos degrais", + "Menu": "Menu principal", + "Onslaught": "Embate", + "Race": "Corrida", + "Scary": "Rei da Colina", + "Scores": "Tela de pontuação", + "Survival": "Eliminatória", + "ToTheDeath": "Mata-mata", + "Victory": "Tela de Pontuação Final" + }, + "spaceKeyText": "espaço", + "statsText": "Estatísticas", + "stopRemindingMeText": "Pare de me lembrar", + "storagePermissionAccessText": "É necessário acesso ao armazenamento", + "store": { + "alreadyOwnText": "Você já possui ${NAME}!", + "bombSquadProNameText": "${APP_NAME} Pro", + "bombSquadProNewDescriptionText": "• Remove anúncios no jogo\n• Desbloqueia mais opções do jogo\n• E também inclui:", + "buyText": "Comprar", + "charactersText": "Personagens", + "comingSoonText": "Em breve...", + "extrasText": "Extras", + "holidaySpecialText": "Especial de feriado", + "howToSwitchCharactersText": "(vá para \"${SETTINGS} -> ${PLAYER_PROFILES}\" para atribuir e personalizar personagens)", + "howToUseIconsText": "(crie perfis globais - na janela de conta - para usá-los)", + "howToUseMapsText": "(use estes mapas em suas próprias playlist de equipes/todos contra todos)", + "iconsText": "Ícones", + "loadErrorText": "Não foi possível carregar a página.\nVerifique a sua conexão com a internet.", + "loadingText": "carregando", + "mapsText": "Mapas", + "miniGamesText": "Minijogos", + "oneTimeOnlyText": "(somente uma vez)", + "purchaseAlreadyInProgressText": "A compra deste item já está em progresso.", + "purchaseConfirmText": "Comprar ${ITEM}?", + "purchaseNotValidError": "A compra não é valida.\nEntre em contato com ${EMAIL} se isso foi um erro.", + "purchaseText": "Comprar", + "saleBundleText": "Venda de pacotes!", + "saleExclaimText": "Promoção!", + "salePercentText": "(${PERCENT}% de desconto)", + "saleText": "PROMOÇÃO", + "searchText": "Buscar", + "teamsFreeForAllGamesText": "Jogos em equipes / Todos contra todos", + "totalWorthText": "*** Apenas ${TOTAL_WORTH}! ***", + "upgradeQuestionText": "Atualizar?", + "winterSpecialText": "Especial de Inverno", + "youOwnThisText": "- você tem isso -" + }, + "storeDescriptionText": "Loucura total com até 8 jogadores!\n\nExploda seus amigos (ou o computador) em um torneio de minijogos desafiadores como Capture a bandeira, Hóquei bombástico e Mata-mata em câmera lenta épica!\n\nControles normais e controles externos possibilitam jogar com até 8 pessoas no mesmo aparelho; você também pode usar outros aparelhos como controles externos usando o aplicativo grátis ‘BombSquad Remote’!\n\nCuidado com as bombas!\n\nDê uma olhada em www.froemling.net/bombsquad para ficar ligado nas novidades.", + "storeDescriptions": { + "blowUpYourFriendsText": "Exploda seus amigos.", + "competeInMiniGamesText": "Compita em minijogos que vão de corridas a voos.", + "customize2Text": "Personalize personagens, minijogos e até mesmo a trilha sonora.", + "customizeText": "Personalize personagens e crie sua própria playlist de minijogos.", + "sportsMoreFunText": "Esportes são mais divertidos com explosivos.", + "teamUpAgainstComputerText": "Una-se a outros contra o computador." + }, + "storeText": "Loja", + "submitText": "Enviar", + "submittingPromoCodeText": "Enviando código promocional...", + "successText": "Sucesso!", + "supportEmailText": "Se estiver passando por problemas com o aplicativo, \nenvie um e-mail para ${EMAIL}.", + "teamNamesColorText": "Nome/Cores das Equipes...", + "telnetAccessGrantedText": "Acesso ao Telnet ativado.", + "telnetAccessText": "Acesso ao Telnet detectado; permitir?", + "testBuildErrorText": "Esta versão de teste não é mais compatível; por favor, confira uma nova versão.", + "testBuildText": "Versão de Teste", + "testBuildValidateErrorText": "Não foi possível validar esta versão. (sem conexão com a internet?)", + "testBuildValidatedText": "Versão de Teste Validada; Divirta-se!", + "thankYouText": "Obrigado pelo seu apoio! Aproveite o jogo!!", + "threeKillText": "MATOU TRÊS!!", + "ticketsDescriptionText": "Os bilhetes podem ser usados para desbloquear personagens,\nmapas, minijogos e muito mais na loja.\n\nOs bilhetes podem ser encontrados em baús obtidos através\nde campanhas, torneios e conquistas.", + "timeBonusText": "Bônus de tempo", + "timeElapsedText": "Tempo Decorrido", + "timeExpiredText": "Tempo Expirado", + "timeSuffixDaysText": "${COUNT}d", + "timeSuffixHoursText": "${COUNT}h", + "timeSuffixMinutesText": "${COUNT}m", + "timeSuffixSecondsText": "${COUNT}s", + "tipText": "Dica", + "titleText": "BombSquad", + "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "Obter tokens", + "notEnoughTokensText": "Não há Tokens suficientes!", + "numTokensText": "${COUNT} Tokens", + "openNowDescriptionText": "Você possui tokens suficientes\npara abri-lo agora - você não\nprecisa esperar.", + "shinyNewCurrencyText": "A nova moeda brilhante do BombSquad.", + "tokenPack1Text": "Pacote de tokens pequenos", + "tokenPack2Text": "Pacote de tokens médio", + "tokenPack3Text": "Pacote Grande de Tokens", + "tokenPack4Text": "Pacote de Tokens Jumbo", + "tokensDescriptionText": "Os tokens são usados para acelerar a abertura de baús\ne para outros recursos do jogo e da conta.\n\nVocê pode ganhar tokens no jogo ou comprá-los\nem pacotes. Ou adquira um Gold Pass para tokens infinitos\ne nunca mais se preocupe com eles.", + "youHaveGoldPassText": "Você tem um Passe Dourado.\nTodas as compras de tokens são gratuitas.\nAproveite!" + }, + "topFriendsText": "Melhores amigos", + "tournamentCheckingStateText": "Verificando o estado do torneio; espere um momento...", + "tournamentEndedText": "Este torneio foi finalizado. Um novo começará em breve.", + "tournamentEntryText": "Entrada para o torneio", + "tournamentFinalStandingsText": "Classificação final", + "tournamentResultsRecentText": "Resultados recentes do torneio.", + "tournamentStandingsText": "Classificação do torneio", + "tournamentText": "Torneio", + "tournamentTimeExpiredText": "O tempo do torneio expirou.", + "tournamentsDisabledWorkspaceText": "Os torneios são desabilitados quando os espaços de trabalho estão ativos.\nPara reativar os torneios, desative seu espaço de trabalho e reinicie.", + "tournamentsText": "Torneios", + "translations": { + "characterNames": { + "Agent Johnson": "Agente Johnson", + "B-9000": "B-9000", + "Bernard": "Bernardo", + "Bones": "Ossos", + "Butch": "Butch", + "Easter Bunny": "Coelho da Páscoa", + "Flopsy": "Flopsy", + "Frosty": "Frosty", + "Gretel": "Gretel", + "Grumbledorf": "Grumboldor", + "Jack Morgan": "Jack Morgan", + "Kronk": "Kronk", + "Lee": "Lee", + "Lucky": "Lucky", + "Mel": "Mel", + "Middle-Man": "Homenzinho", + "Minimus": "Minimus", + "Pascal": "Pascal", + "Pixel": "Pixel", + "Sammy Slam": "Sammy Slam", + "Santa Claus": "Papai Noel", + "Snake Shadow": "Serpente Sombria", + "Spaz": "Spaz", + "Taobao Mascot": "Mascote Taobao", + "Todd McBurton": "Todd McBurton", + "Zoe": "Zoe", + "Zola": "Zola" + }, + "coopLevelNames": { + "${GAME} Training": "Treinamento de ${GAME}", + "Infinite ${GAME}": "${GAME} Infinito", + "Infinite Onslaught": "Embate Infinito", + "Infinite Runaround": "Evasiva Infinita", + "Onslaught Training": "Embate Treinamento", + "Pro ${GAME}": "${GAME} Pro", + "Pro Football": "Futebol americano Pro", + "Pro Onslaught": "Embate Pro", + "Pro Runaround": "Evasiva Pro", + "Rookie ${GAME}": "${GAME} Amador", + "Rookie Football": "Futebol Americano Amador", + "Rookie Onslaught": "Embate Amador", + "The Last Stand": "O Sobrevivente", + "Uber ${GAME}": "${GAME} Elite", + "Uber Football": "Futebol Americano Elite", + "Uber Onslaught": "Embate Elite", + "Uber Runaround": "Evasiva Elite" + }, + "displayItemNames": { + "${C} Tickets": "${C} Bilhetes", + "${C} Tokens": "${C} Tokens", + "Chest": "Baú", + "L1 Chest": "Baú L1", + "L2 Chest": "Baú L2", + "L3 Chest": "Baú L3", + "L4 Chest": "Baú L4", + "L5 Chest": "Baú L5", + "L6 Chest": "Baú L6", + "Unknown Chest": "Baú Desconhecido" + }, + "gameDescriptions": { + "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Seja o escolhido por um período de tempo para vencer.\nElimine o escolhido para se tornar ele.", + "Bomb as many targets as you can.": "Bombardeie o máximo de alvos que você puder.", + "Carry the flag for ${ARG1} seconds.": "Carregue a bandeira por ${ARG1} segundos.", + "Carry the flag for a set length of time.": "Carregue a bandeira por um tempo determinado.", + "Crush ${ARG1} of your enemies.": "Esmague ${ARG1} de seus inimigos.", + "Defeat all enemies.": "Derrote todos inimigos.", + "Dodge the falling bombs.": "Esquive das bombas caindo.", + "Final glorious epic slow motion battle to the death.": "Épica gloriosa batalha final até a morte em câmera lenta.", + "Gather eggs!": "Recolha os ovos!", + "Get the flag to the enemy end zone.": "Pegue a bandeira no final da zona inimiga.", + "How fast can you defeat the ninjas?": "Quão rápido você pode derrotar os ninjas?", + "Kill a set number of enemies to win.": "Mate um determinado número de inimigos para vencer.", + "Last one standing wins.": "Último em pé vence.", + "Last remaining alive wins.": "Último sobrevivente vence.", + "Last team standing wins.": "Última equipe de pé vence.", + "Prevent enemies from reaching the exit.": "Impeça que os inimigos alcancem a saída.", + "Reach the enemy flag to score.": "Alcance a bandeira inimiga para marcar.", + "Return the enemy flag to score.": "Retorne a bandeira inimiga para marcar.", + "Run ${ARG1} laps.": "Corra ${ARG1} voltas.", + "Run ${ARG1} laps. Your entire team has to finish.": "Corra ${ARG1} voltas. Toda a sua equipe precisa terminar.", + "Run 1 lap.": "Corra 1 volta.", + "Run 1 lap. Your entire team has to finish.": "Corra 1 volta. Toda a sua equipe precisa terminar.", + "Run real fast!": "Corra muito rápido!", + "Score ${ARG1} goals.": "Marque ${ARG1} gols.", + "Score ${ARG1} touchdowns.": "Marque ${ARG1} touchdowns.", + "Score a goal.": "Marque um gol.", + "Score a touchdown.": "Marque um touchdown.", + "Score some goals.": "Marque alguns gols.", + "Secure all ${ARG1} flags.": "Proteja todas as ${ARG1} bandeiras.", + "Secure all flags on the map to win.": "Proteja todas as bandeiras no mapa para vencer.", + "Secure the flag for ${ARG1} seconds.": "Proteja a bandeira por ${ARG1} segundos.", + "Secure the flag for a set length of time.": "Proteja a bandeira por um determinado período de tempo.", + "Steal the enemy flag ${ARG1} times.": "Roube a bandeira do inimigo ${ARG1} vezes.", + "Steal the enemy flag.": "Roube a bandeira do inimigo.", + "There can be only one.": "Só pode existir um.", + "Touch the enemy flag ${ARG1} times.": "Toque a bandeira inimiga ${ARG1} vezes.", + "Touch the enemy flag.": "Toque a bandeira inimiga.", + "carry the flag for ${ARG1} seconds": "carregue a bandeira por ${ARG1} segundos", + "kill ${ARG1} enemies": "mate ${ARG1} inimigos", + "last one standing wins": "último em pé vence", + "last team standing wins": "última equipe de pé vence", + "return ${ARG1} flags": "retorne ${ARG1} bandeiras.", + "return 1 flag": "retorne 1 bandeira", + "run ${ARG1} laps": "corra ${ARG1} voltas", + "run 1 lap": "corra 1 volta", + "score ${ARG1} goals": "marque ${ARG1} gols", + "score ${ARG1} touchdowns": "marque ${ARG1} touchdowns", + "score a goal": "marque um gol", + "score a touchdown": "marque um touchdown", + "secure all ${ARG1} flags": "Proteja todas ${ARG1} bandeiras", + "secure the flag for ${ARG1} seconds": "Proteja a bandeira por ${ARG1} segundos", + "touch ${ARG1} flags": "toque ${ARG1} bandeiras", + "touch 1 flag": "toque uma bandeira" + }, + "gameNames": { + "Assault": "Assalto", + "Capture the Flag": "Capture a Bandeira", + "Chosen One": "O Escolhido", + "Conquest": "Conquista", + "Death Match": "Mata-mata", + "Easter Egg Hunt": "Caça aos ovos de Páscoa", + "Elimination": "Eliminatória", + "Football": "Futebol americano", + "Hockey": "Hóquei", + "Keep Away": "Fique longe", + "King of the Hill": "Rei da colina", + "Meteor Shower": "Chuva de meteoros", + "Ninja Fight": "Luta ninja", + "Onslaught": "Embate", + "Race": "Corrida", + "Runaround": "Evasiva", + "Target Practice": "Treino de Alvo", + "The Last Stand": "O Sobrevivente" + }, + "inputDeviceNames": { + "Keyboard": "Teclado", + "Keyboard P2": "Teclado P2" + }, + "languages": { + "Arabic": "Árabe", + "Belarussian": "Bielorrusso", + "Chinese": "Chinês - Simplificado ", + "ChineseSimplified": "Chinês - Simplificado", + "ChineseTraditional": "Chinês - Tradicional", + "Croatian": "Croata", + "Czech": "Tcheco", + "Danish": "Dinamarquês", + "Dutch": "Holandês", + "English": "Inglês", + "Esperanto": "Esperanto", + "Filipino": "Filipino", + "Finnish": "Finlandês", + "French": "Francês", + "German": "Alemão", + "Gibberish": "Embromation", + "Greek": "Grego", + "Hindi": "Hindu", + "Hungarian": "Húngaro", + "Indonesian": "Indonésio", + "Italian": "Italiano", + "Japanese": "Japonês", + "Korean": "Coreano", + "Malay": "Malaio", + "Persian": "Persa", + "PirateSpeak": "Piratês", + "Polish": "Polonês", + "Portuguese": "Português", + "PortugueseBrazil": "Português - Brasil", + "PortuguesePortugal": "Português - Portugal", + "Romanian": "Romeno", + "Russian": "Russo", + "Serbian": "Sérvio", + "Slovak": "Eslovaco", + "Spanish": "Espanhol", + "SpanishLatinAmerica": "Espanhol - América Latina", + "SpanishSpain": "Espanhol - Espanha", + "Swedish": "Sueco", + "Tamil": "tâmil", + "Thai": "Tailandês", + "Turkish": "Turco", + "Ukrainian": "Ucraniano", + "Venetian": "Veneziano", + "Vietnamese": "Vietnamita" + }, + "leagueNames": { + "Bronze": "Bronze", + "Diamond": "Diamante", + "Gold": "Ouro", + "Silver": "Prata" + }, + "mapsNames": { + "Big G": "Grande G", + "Bridgit": "Bridgit", + "Courtyard": "Pátio", + "Crag Castle": "Castelo Crag", + "Doom Shroom": "Cogumelo da Morte", + "Football Stadium": "Estádio de Futebol", + "Happy Thoughts": "Pensamentos felizes", + "Hockey Stadium": "Estádio de hóquei", + "Lake Frigid": "Lago Frígido", + "Monkey Face": "Cara de macaco", + "Rampage": "Tumulto", + "Roundabout": "Evasiva", + "Step Right Up": "Degrau acima", + "The Pad": "The Pad", + "Tip Top": "Tip Top", + "Tower D": "Torre D", + "Zigzag": "Ziguezague" + }, + "playlistNames": { + "Just Epic": "Somente épico", + "Just Sports": "Somente esportes" + }, + "scoreNames": { + "Flags": "Bandeiras", + "Goals": "Gols", + "Score": "Placar", + "Survived": "Sobreviveu", + "Time": "Tempo", + "Time Held": "Tempo realizado" + }, + "serverResponses": { + "A code has already been used on this account.": "Um código já está sendo usado nesta conta.", + "A reward has already been given for that address.": "Uma recompensa já foi dada para este endereço.", + "Account linking successful!": "A conta foi vinculada com êxito!", + "Account unlinking successful!": "Conta desvinculada com êxito!", + "Accounts are already linked.": "As contas já estão vinculadas.", + "Ad view could not be verified.\nPlease be sure you are running an official and up-to-date version of the game.": "Não foi possível verificar a visualização do anúncio.\nCertifique-se de que está executando uma versão oficial e atualizada do jogo.", + "An error has occurred; (${ERROR})": "Ocorreu um erro; (${ERROR})", + "An error has occurred; please contact support. (${ERROR})": "Ocorreu um erro; entre em contato com a assistência. (${ERROR})", + "An error has occurred; please contact support@froemling.net.": "Ocorreu um erro; por favor, entre em contato com support@froemling.net.", + "An error has occurred; please try again later.": "Aconteceu um erro; tente novamente mais tarde.", + "Are you sure you want to link these accounts?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\nThis cannot be undone!": "Tem certeza de que deseja vincular estas contas?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\nIsso não poderá ser desfeito!", + "BombSquad Pro unlocked!": "BombSquado Pro desbloqueado!", + "Can't link 2 accounts of this type.": "Não é possível vincular duas contas deste tipo.", + "Can't link 2 diamond league accounts.": "Não é possível vincular duas contas de liga diamante.", + "Can't link; would surpass maximum of ${COUNT} linked accounts.": "Impossível vincular; ultrapassaria o máximo de ${COUNT} contas vinculadas.", + "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Trapaça detectada; pontuação e prêmios suspensos por ${COUNT} dias.", + "Could not establish a secure connection.": "Não foi possível estabelecer uma conexão segura.", + "Daily maximum reached.": "Máximo diário atingido.", + "Daily sign-in reward": "Recompensa de inscrição diária", + "Entering tournament...": "Entrando no torneio...", + "Invalid code.": "Código invalido.", + "Invalid payment; purchase canceled.": "Pagamento inválido; compra cancelada.", + "Invalid promo code.": "Código promocional invalido.", + "Invalid purchase.": "Compra inválida.", + "Invalid tournament entry; score will be ignored.": "Entrada errada de treinamento; pontuação será ignorada.", + "Item unlocked!": "Item unlocked", + "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "VINCULAÇÃO NEGADA. ${ACCOUNT} contém\ndados significativos que TODOS SERÃO PERDIDOS.\nVocê pode vincular na ordem oposta se desejar\n(e em vez disso perca os dados desta conta)", + "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "Vincular conta ${ACCOUNT} com essa conta?\nTodo o progresso em ${ACCOUNT} será perdido.\nIsso não pode ser desfeito. Tem certeza?", + "Longer streaks lead to better rewards.": "Sequências mais longas levam a recompensas melhores.", + "Max number of playlists reached.": "Número máximo de playlists alcançado.", + "Max number of profiles reached.": "Número máximo de perfis alcançado.", + "Maximum friend code rewards reached.": "Máximo de recompensas de códigos de amigos atingido.", + "Message is too long.": "A mensagem é muito longa.", + "New tournament result!": "Novo resultado do torneio!", + "No servers are available. Please try again soon.": "Nenhum servidor está disponível. Por favor, tente novamente mais tarde.", + "No slots available. Free a slot and try again.": "Nenhum slot disponível. Libere um slot e tente novamente.", + "Profile \"${NAME}\" upgraded successfully.": "Perfil \"${NAME}\" atualizado com sucesso.", + "Profile could not be upgraded.": "Perfil não pôde ser criado.", + "Purchase successful!": "Compra feita com êxito!", + "Received ${COUNT} tickets for signing in.\nCome back tomorrow to receive ${TOMORROW_COUNT}.": "Recebeu ${COUNT} tickets por entrar.\nVolte amanhã para receber ${TOMORROW_COUNT}.", + "Server functionality is no longer supported in this version of the game;\nPlease update to a newer version.": "A funcionalidade do servidor não é mais compatível nesta versão do jogo;\nPor favor, atualize-o para uma versão mais recente.", + "Sorry, there are no uses remaining on this code.": "Desculpe, não há mais usos remanescentes neste código.", + "Sorry, this code has already been used.": "Desculpe, este código já foi usado.", + "Sorry, this code has expired.": "Desculpe, este código já expirou.", + "Sorry, this code only works for new accounts.": "Desculpe, este código só funciona para novas contas.", + "Sorry, this has expired.": "Desculpe, isso expirou.", + "Still searching for nearby servers; please try again soon.": "Ainda à procura por servidores próximos; tente novamente mais tarde.", + "Streak: ${NUM} days": "Sequência: ${NUM} dias", + "Temporarily unavailable; please try again later.": "Não disponível; por favor, tente novamente mais tarde.", + "The tournament ended before you finished.": "O torneio acabou antes de você terminar.", + "This account cannot be unlinked for ${NUM} days.": "Esta conta não pode ser desvinculada por ${NUM} dias.", + "This code cannot be used on the account that created it.": "Este código não pode ser usado pela conta que o criou.", + "This is currently unavailable; please try again later.": "Isso está atualmente indisponível; por favor tente mais tarde.", + "This requires version ${VERSION} or newer.": "Isso requer a versão ${VERSION} ou novo.", + "Tournaments disabled due to rooted device.": "Torneios desativados devido ao dispositivo estar rooteado.", + "Tournaments require ${VERSION} or newer": "Torneios requerem ${VERSION} ou mais recente", + "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "Desvincular ${ACCOUNT} dessa conta?\nTodo o progresso em ${ACCOUNT} será reiniciado.\n(exceto por conquistas em alguns casos)", + "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "ATENÇÃO: denúncias sobre você estar usando hack foram feitas.\nContas que usam hack serão banidas. Por favor, jogue limpo.", + "Wait reduced!": "Tempo de espera reduzido!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "Aviso: Esta versão do jogo é limitada a dados da conta antigos; algumas coisas podem aparecer ausentes ou desatualizadas.\nPor favor atualize para uma versão mais nova do jogo para ver os dados mais recentes da sua conta.", + "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "Gostaria de vincular a sua conta de dispositivo com esta?\n\nA sua conta de dispositivo é ${ACCOUNT1}\nEsta conta é ${ACCOUNT2}\n\nIsso permitirá que você mantenha seu progresso atual.\nAviso: isso não pode ser desfeito!", + "You already own this!": "Você já possui isso.", + "You can join in ${COUNT} seconds.": "Você poderá entrar em ${COUNT} segundos", + "You don't have enough tickets for this!": "Você não tem bilhetes suficientes para isso!", + "You don't own that.": "Você não comprou isso.", + "You got ${COUNT} tickets!": "Você obteve ${COUNT} tickets!", + "You got ${COUNT} tokens!": "Você ganhou ${COUNT} tokens!", + "You got a ${ITEM}!": "Você ganhou ${ITEM}!", + "You got a chest!": "Você ganhou um baú!", + "You got an achievement reward!": "Você ganhou uma recompensa por conquista!", + "You have been promoted to a new league; congratulations!": "Você foi promovido a uma nova liga; parabéns!", + "You lost a chest! (All your chest slots were full)": "Você perdeu um baú! (Todos os seus espaços de baú estavam cheios)", + "You must update the app to view this.": "Você deve atualizar o aplicativo para visualizar isso.", + "You must update to a newer version of the app to do this.": "Você deve atualizar para uma nova versão do aplicativo para fazer isso.", + "You must update to the newest version of the game to do this.": "Você deve atualizar para a nova versão do jogo para fazer isso.", + "You must wait a few seconds before entering a new code.": "Você deve esperar alguns segundos antes de inserir um novo código.", + "You placed #${RANK} in a tournament!": "Você ficou com #${RANK} em um torneio!", + "You ranked #${RANK} in the last tournament. Thanks for playing!": "Você teve a classificação #${RANK} no último torneio. Obrigado por jogar!", + "Your account was rejected. Are you signed in?": "Sua conta foi rejeitada. Você iniciou a sessão?", + "Your ad views are not registering. Ad options will be limited for a while.": "Suas visualizações de anúncio não estão registrando. As opções de anúncio serão limitadas por um tempo.", + "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Sua copia do jogo foi modificada.\nReverta as modificações e tente novamente.", + "Your friend code was used by ${ACCOUNT}": "Seu código de amigo foi usado por ${ACCOUNT}" + }, + "settingNames": { + "1 Minute": "1 minuto", + "1 Second": "1 segundo", + "10 Minutes": "10 minutos", + "2 Minutes": "2 minutos", + "2 Seconds": "2 segundos", + "20 Minutes": "20 minutos", + "4 Seconds": "4 segundos", + "5 Minutes": "5 minutos", + "8 Seconds": "8 segundos", + "Allow Negative Scores": "Permitir Pontuação Negativa", + "Balance Total Lives": "Saldo Total de Vidas", + "Bomb Spawning": "Bombas Surgindo", + "Chosen One Gets Gloves": "O escolhido obtém luvas", + "Chosen One Gets Shield": "O escolhido obtém escudo", + "Chosen One Time": "Hora do Escolhido", + "Enable Impact Bombs": "Ativar bombas de impacto", + "Enable Triple Bombs": "Ativar tribombas", + "Entire Team Must Finish": "A equipe inteira precisa terminar", + "Epic Mode": "Modo Épico", + "Flag Idle Return Time": "Tempo para Retornar a Bandeira Inativa", + "Flag Touch Return Time": "Tempo para Retornar a Bandeira", + "Hold Time": "Tempo de retenção", + "Kills to Win Per Player": "Mortes para Ganhar Por Jogador", + "Laps": "Voltas", + "Lives Per Player": "Vidas por jogador", + "Long": "Longo", + "Longer": "Mais longo", + "Mine Spawning": "Minas surgindo", + "No Mines": "Sem minas", + "None": "Nenhum", + "Normal": "Normal", + "Pro Mode": "Modo Pro", + "Respawn Times": "Contagem de Renascimentos", + "Score to Win": "Pontuação para Ganhar", + "Short": "Curto", + "Shorter": "Mais curto", + "Solo Mode": "Modo Solo", + "Target Count": "Número de Alvos", + "Time Limit": "Limite de Tempo" + }, + "statements": { + "${TEAM} is disqualified because ${PLAYER} left": "${TEAM} está em desvantagem porque ${PLAYER} saiu", + "Killing ${NAME} for skipping part of the track!": "Matando ${NAME} por cortar o caminho!", + "Warning to ${NAME}: turbo / button-spamming knocks you out.": "Aviso para ${NAME}: o turbo / spam de botão faz você sair." + }, + "teamNames": { + "Bad Guys": "Inimigos", + "Blue": "Azul", + "Good Guys": "Aliados", + "Red": "Vermelho" + }, + "tips": { + "A perfectly timed running-jumping-spin-punch can kill in a single hit\nand earn you lifelong respect from your friends.": "Se você bater, correr, pular e girar em perfeita sincronia poderá matar\nem um único golpe e garantir o respeito eterno de seus amigos.", + "Always remember to floss.": "Lembre-se de sempre usar fio dental.", + "Create player profiles for yourself and your friends with\nyour preferred names and appearances instead of using random ones.": "Crie perfis de jogadores para você e seus amigos com\nseus nomes preferidos e aparências ao invés de usar os aleatórios.", + "Curse boxes turn you into a ticking time bomb.\nThe only cure is to quickly grab a health-pack.": "Caixas amaldiçoadas o transformam em uma bomba-relógio.\nA única cura é agarrar rapidamente um pacote de saúde.", + "Despite their looks, all characters' abilities are identical,\nso just pick whichever one you most closely resemble.": "Apesar de suas aparências, as habilidades de todos os personagens são idênticas,\nentão basta escolher qualquer um que você mais se assemelha.", + "Don't get too cocky with that energy shield; you can still get yourself thrown off a cliff.": "Não fique muito convencido com o escudo de energia; você ainda pode ser arremessado de um penhasco.", + "Don't run all the time. Really. You will fall off cliffs.": "Não corra o tempo todo. Sério. Você vai cair de penhascos.", + "Don't spin for too long; you'll become dizzy and fall.": "Não gire por muito tempo; você vai ficar tonto e cair!", + "Hold any button to run. (Trigger buttons work well if you have them)": "Pressione qualquer botão para correr. (Botões de gatilho funcionam bem, se os tiver)", + "Hold down any button to run. You'll get places faster\nbut won't turn very well, so watch out for cliffs.": "Mantenha pressionado qualquer botão para correr. Você vai alcançar lugares mais\nrapidamente, mas não vai fazer curvas muito bem, por isso esteja atento para penhascos.", + "Ice bombs are not very powerful, but they freeze\nwhoever they hit, leaving them vulnerable to shattering.": "As bombas de gelo não são muito poderosas, mas elas congelam\nquem for atingido, deixando-os vulneráveis ​​a estilhaçamentos.", + "If someone picks you up, punch them and they'll let go.\nThis works in real life too.": "Se alguém te levantar, soque-o e ele irá te largar.\nIsso também funciona na vida real.", + "If you are short on controllers, install the '${REMOTE_APP_NAME}' app\non your mobile devices to use them as controllers.": "Se você está sem controles, instale o aplicativo '${REMOTE_APP_NAME}'\nem seus dispositivos móveis para usá-los como controles.", + "If you get a sticky-bomb stuck to you, jump around and spin in circles. You might\nshake the bomb off, or if nothing else your last moments will be entertaining.": "Se você tiver uma bomba grudenta presa em você, salte e gire em círculos. Você pode\nsacudir a bomba para fora ou, pelo menos, seus últimos momentos serão divertidos.", + "If you kill an enemy in one hit you get double points for it.": "Se você matar um inimigo com um golpe, você obtêm o dobro de pontos por isso.", + "If you pick up a curse, your only hope for survival is to\nfind a health powerup in the next few seconds.": "Se você pegar uma maldição, sua única esperança de sobrevivência é\nencontrar um poder de saúde nos próximos segundos.", + "If you stay in one place, you're toast. Run and dodge to survive..": "Se você ficar em um lugar, você está frito. Corra e se esquive para sobreviver.", + "If you've got lots of players coming and going, turn on 'auto-kick-idle-players'\nunder settings in case anyone forgets to leave the game.": "Se você tem muitos jogadores entrando e saindo, ligue 'Expulsar Jogadores Ociosos Automaticamente'\nnas configurações no caso de alguém esquecer de deixar o jogo.", + "If your device gets too warm or you'd like to conserve battery power,\nturn down \"Visuals\" or \"Resolution\" in Settings->Graphics": "Se seu dispositivo ficar muito quente ou você quiser conservar bateria,\nabaixe os \"Visuais\" ou \"Resolução\" nas Configurações-> Graficos", + "If your framerate is choppy, try turning down resolution\nor visuals in the game's graphics settings.": "Se sua taxa de quadros estiver baixa, tente diminuir a resolução\nou visuais nas configurações gráficas do jogo.", + "In Capture-the-Flag, your own flag must be at your base to score, If the other\nteam is about to score, stealing their flag can be a good way to stop them.": "Em Capture a bandeira, a sua própria bandeira deve estar em sua base para marcar. Se a outra\nequipe está prestes a marcar, roubar a sua bandeira pode ser uma boa maneira de detê-los.", + "In hockey, you'll maintain more speed if you turn gradually.": "No hóquei, você manterá mais velocidade se girar gradualmente.", + "It's easier to win with a friend or two helping.": "É mais fácil ganhar com um ou dois amigos ajudando.", + "Jump just as you're throwing to get bombs up to the highest levels.": "Apenas salte enquanto você está arremessando para conseguir bombas até os níveis mais altos.", + "Land-mines are a good way to stop speedy enemies.": "Minas terrestres são uma boa maneira de parar inimigos rápidos.", + "Many things can be picked up and thrown, including other players. Tossing\nyour enemies off cliffs can be an effective and emotionally fulfilling strategy.": "Muitas coisas podem ser apanhadas e lançadas, incluindo outros jogadores. Jogar\nos seus inimigos de penhascos pode ser uma estratégia eficaz e emocionalmente gratificante.", + "No, you can't get up on the ledge. You have to throw bombs.": "Não, você não pode levantar-se na borda. Você tem que jogar bombas.", + "Players can join and leave in the middle of most games,\nand you can also plug and unplug controllers on the fly.": "Jogadores podem entrar e sair no meio da maioria dos jogos,\ne você também pode ligar ou desligar controles quando quiser.", + "Practice using your momentum to throw bombs more accurately.": "Pratique usando a inércia para arremessar bombas com maior precisão.", + "Punches do more damage the faster your fists are moving,\nso try running, jumping, and spinning like crazy.": "Socos fazem mais danos quanto mais rápido os punhos estão se movendo,\nentão tente correr, pular e girar como um louco.", + "Run back and forth before throwing a bomb\nto 'whiplash' it and throw it farther.": "Corra para frente e para trás antes de arremessar uma bomba\npara 'chicoteá-la' e jogá-la longe.", + "Take out a group of enemies by\nsetting off a bomb near a TNT box.": "Elimine um grupo de inimigos ao\ndesencadear uma bomba perto de uma caixa de TNT.", + "The head is the most vulnerable area, so a sticky-bomb\nto the noggin usually means game-over.": "A cabeça é a área mais vulnerável, portanto uma bomba grudenta\nna cuca geralmente significa fim de jogo.", + "This level never ends, but a high score here\nwill earn you eternal respect throughout the world.": "Este nível nunca termina, mas uma alta pontuação aqui\nfaz você ganhar respeito eterno por todo o mundo.", + "Throw strength is based on the direction you are holding.\nTo toss something gently in front of you, don't hold any direction.": "Força de arremesso baseia-se na direção em que você está pressionando.\nPara arremessar algo suavemente na sua frente, não pressione qualquer direção.", + "Tired of the soundtrack? Replace it with your own!\nSee Settings->Audio->Soundtrack": "Cansado das músicas? Troque-as pelas suas próprias!\nVeja em Configurações-> Áudio-> Músicas", + "Try 'Cooking off' bombs for a second or two before throwing them.": "Experimente 'cozinhar' bombas por um segundo ou dois antes de jogá-las.", + "Try tricking enemies into killing eachother or running off cliffs.": "Tente enganar inimigos para se matarem ou se jogarem do precipício.", + "Use the pick-up button to grab the flag < ${PICKUP} >": "Use o botão pegar para pegar a bandeira < ${PICKUP} >", + "Whip back and forth to get more distance on your throws..": "Balance para trás e para frente para fazer arremessos distantes..", + "You can 'aim' your punches by spinning left or right.\nThis is useful for knocking bad guys off edges or scoring in hockey.": "Você pode 'mirar' seus socos girando para esquerda ou direita.\nIsso é útil para derrubar inimigos das beiradas ou marcar no hóquei.", + "You can judge when a bomb is going to explode based on the\ncolor of sparks from its fuse: yellow..orange..red..BOOM.": "Você pode avaliar quando uma bomba vai explodir baseado na\ncor das faíscas do pavio: amarelo..laranja..vermelho..BOOM.", + "You can throw bombs higher if you jump just before throwing.": "Você pode jogar as bombas mais alto ao saltar logo antes de arremessar.", + "You take damage when you whack your head on things,\nso try to not whack your head on things.": "Você se fere quando você bate sua cabeça em coisas,\nassim tente não bater sua cabeça em coisas.", + "Your punches do much more damage if you are running or spinning.": "Seus socos causam muito mais dano se você estiver correndo ou girando." + } + }, + "trophiesRequiredText": "Isso necessita de pelo menos ${NUMBER} troféus.", + "trophiesText": "Troféus", + "trophiesThisSeasonText": "Troféus nesta temporada", + "tutorial": { + "cpuBenchmarkText": "Rodando o tutorial numa velocidade MUITO baixa (para testar o processador)", + "phrase01Text": "Olá!", + "phrase02Text": "Bem-vindo ao ${APP_NAME}!", + "phrase03Text": "Aqui estão algumas dicas para controlar seu personagem:", + "phrase04Text": "Muitas coisas no ${APP_NAME} são baseadas na física.", + "phrase05Text": "Por exemplo, quando você soca,..", + "phrase06Text": "..o dano é baseado na velocidade de seus punhos.", + "phrase07Text": "Viu? Nós não estávamos nos movendo então mal fez cócegas no ${NAME}.", + "phrase08Text": "Agora vamos pular e girar para ganhar mais velocidade.", + "phrase09Text": "Ah, assim é melhor.", + "phrase10Text": "Correr ajuda também.", + "phrase11Text": "Mantenha QUALQUER botão pressionado para correr.", + "phrase12Text": "Para socos adicionais incríveis, tente correr e girar.", + "phrase13Text": "Ops! foi mal aí, ${NAME}.", + "phrase14Text": "Você pode pegar e jogar coisas como bandeiras.. ou ${NAME}.", + "phrase15Text": "Por último, há bombas.", + "phrase16Text": "Arremessar bombas requer prática.", + "phrase17Text": "Ai! Não foi um arremesso muito bom.", + "phrase18Text": "Movimentar-se te ajuda a arremessar mais longe.", + "phrase19Text": "Saltar ajuda você a arremessar mais alto.", + "phrase20Text": "Gire e corra e suas bombas irão ainda mais longe.", + "phrase21Text": "Calcular o tempo da explosão pode ser complicado.", + "phrase22Text": "Droga!", + "phrase23Text": "Tente deixar o pavio queimar por um ou dois segundos.", + "phrase24Text": "Eba! No tempo ideal.", + "phrase25Text": "Bem, acho que é só isso.", + "phrase26Text": "Agora vai lá e arrebenta!", + "phrase27Text": "Lembre-se do seu treinamento e você voltará vivo!", + "phrase28Text": "...bem, talvez...", + "phrase29Text": "Boa sorte!", + "randomName1Text": "Fernando", + "randomName2Text": "Henrique", + "randomName3Text": "Guilherme", + "randomName4Text": "Carlos", + "randomName5Text": "Felipe", + "skipConfirmText": "Você deseja realmente pular o tutorial? Toque ou aperte confirmar.", + "skipVoteCountText": "${COUNT}/${TOTAL} votos para pular", + "skippingText": "pulando o tutorial...", + "toSkipPressAnythingText": "(pressione qualquer coisa para pular o tutorial)" + }, + "twoKillText": "MATOU DOIS!", + "uiScaleText": "Tamanho da Interface", + "unavailableText": "indisponível", + "unclaimedPrizesText": "Você possui prêmios não resgatados!", + "unconfiguredControllerDetectedText": "Controle não configurado detectado:", + "unlockThisInTheStoreText": "Isto deve ser desbloqueado na loja.", + "unlockThisProfilesText": "Para criar mais que ${NUM} perfis, você precisa:", + "unlockThisText": "Para desbloquear isso:", + "unsupportedControllerText": "Desculpe, o controlador \"${NAME}\" não é compatível.", + "unsupportedHardwareText": "Desculpe, este hardware não é suportado por esta versão do jogo.", + "upFirstText": "Em primeiro lugar:", + "upNextText": "O próximo jogo em ${COUNT}:", + "updatingAccountText": "Atualizando sua conta...", + "upgradeText": "Aprimorar", + "upgradeToPlayText": "Atualize para \"${PRO}\" na loja para jogar.", + "useDefaultText": "Usar Padrão", + "userSystemScriptsCreateText": "Criar Scripts do Sistema do Usuário", + "userSystemScriptsDeleteText": "Deletar Scripts do Sistema do Usuário", + "usesExternalControllerText": "Este jogo usa um controle externo para entrada.", + "usingItunesText": "Usando o app de música para a trilha sonora", + "v2AccountLinkingInfoText": "Para vincular contas V2, use o botão 'Gerenciar conta'.", + "v2AccountRequiredText": "Isso requer uma conta V2. Atualize sua conta e tente novamente.", + "validatingTestBuildText": "Validando Versão de Teste...", + "viaText": "via", + "victoryText": "Vitória!", + "voteDelayText": "Você não pode começar outra votação por ${NUMBER} segundo(s)", + "voteInProgressText": "Uma votação já está em progresso.", + "votedAlreadyText": "Você já votou", + "votesNeededText": "${NUMBER} votos necessários", + "vsText": "vs.", + "waitingForHostText": "(esperando ${HOST} continuar)", + "waitingForPlayersText": "esperando os jogadores entrarem...", + "waitingInLineText": "Esperando na fila (o grupo está cheio)...", + "watchAVideoText": "Ver um vídeo", + "watchAnAdText": "Assistir uma propaganda.", + "watchWindow": { + "deleteConfirmText": "Excluir \"${REPLAY}\"?", + "deleteReplayButtonText": "Excluir\nReplay", + "myReplaysText": "Meus replays", + "noReplaySelectedErrorText": "Nenhum replay selecionado.", + "playbackSpeedText": "Velocidade de reprodução: ${SPEED}", + "renameReplayButtonText": "Renomear\nReplay", + "renameReplayText": "Renomear \"${REPLAY}\" para:", + "renameText": "Renomear", + "replayDeleteErrorText": "Erro ao excluir o replay.", + "replayNameText": "Nome do replay", + "replayRenameErrorAlreadyExistsText": "Um replay com este nome já existe.", + "replayRenameErrorInvalidName": "Não foi possível renomear; nome invalido.", + "replayRenameErrorText": "Erro ao renomear replay.", + "sharedReplaysText": "Replays compartilhados", + "titleText": "Assistir", + "watchReplayButtonText": "Assistir\nReplay" + }, + "waveText": "Onda", + "wellSureText": "Claro!", + "whatIsThisText": "Oque é isto?", + "winsPlayerText": "${NAME} venceu!", + "winsTeamText": "${NAME} venceu!", + "winsText": "${NAME} ganhou!", + "workspaceSyncErrorText": "Erro ao sincronizar ${WORKSPACE}. Veja o log para mais detalhes.", + "workspaceSyncReuseText": "Não pôde sincronizar ${WORKSPACE}. Reusando uma versão anterior sincronizada.", + "worldScoresUnavailableText": "Pontuações mundiais indisponíveis.", + "worldsBestScoresText": "Melhores Pontuações do Mundo", + "worldsBestTimesText": "Melhores Tempos do Mundo", + "yesAllowText": "Sim, Permitir!", + "yourBestScoresText": "Suas Melhores Pontuações", + "yourBestTimesText": "Seus Melhores Tempos", + "yourPrizeText": "Seu prêmio:" +} \ No newline at end of file diff --git a/dist/ba_data/data/languages/portugueseportugal.json b/dist/ba_data/data/languages/portugueseportugal.json new file mode 100644 index 0000000..fccf034 --- /dev/null +++ b/dist/ba_data/data/languages/portugueseportugal.json @@ -0,0 +1,1980 @@ +{ + "accountSettingsWindow": { + "accountNameRules": "O seu nome não pode conter emojis ou outros caracteres especiais", + "accountsText": "Contas", + "achievementProgressText": "Conquistas: ${COUNT} de ${TOTAL}", + "campaignProgressText": "Progresso da Campanha Difícil: ${PROGRESS}", + "changeOncePerSeason": "Você só pode mudar isso uma vez por temporada.", + "changeOncePerSeasonError": "Você deve esperar até a próxima temporada para mudar isso novamente (${NUM} dias)", + "createAnAccountText": "Crie uma conta", + "customName": "Nome personalizado", + "deleteAccountText": "Deletar conta", + "googlePlayGamesAccountSwitchText": "Se você quer usar uma conta Google diferente,\nUse o Google Play Games para trocar de conta.", + "linkAccountsEnterCodeText": "Colocar Código", + "linkAccountsGenerateCodeText": "Gerar Código", + "linkAccountsInfoText": "(compartilhar progresso entre varios dispositivos)", + "linkAccountsInstructionsNewText": "Para vincular duas contas, crie um código na primeira\ne coloque o código na segunda. O progresso de\nambas as contas serão sincronizadas. Tornando se uma unica conta\n(O progresso da primeira conta será perdido)\n\nVocê pode vincular até ${COUNT} contas.\n\nIMPORTANTE: vincule apenas contas que tem acesso; \nSe você vincular a conta de um amigo, vocês não\nirão conseguir jogar online ao mesmo tempo.", + "linkAccountsText": "Vincular contas", + "linkedAccountsText": "Contas vinculadas:", + "manageAccountText": "Gerenciar Conta", + "nameChangeConfirm": "Mudar o nome da sua conta para ${NAME}?", + "resetProgressConfirmNoAchievementsText": "Isto reiniciará o seu progresso no cooperativo e\nas suas pontuações (mas não os seus bilhetes).\nIsto não pode ser desfeito. Tem certeza?", + "resetProgressConfirmText": "Isto reiniciará o seu progresso no cooperativo,\nas suas conquistas e as suas pontuações\n(mas não os seus bilhetes). Isto não pode\nser desfeito. Tem certeza?", + "resetProgressText": "Restaurar progresso", + "setAccountName": "Escolha o Nome da Conta", + "setAccountNameDesc": "Escolha o nome que será exibido na sua conta.\nVocê pode usar o nome de uma de suas contas\nou criar um nome personalizado exclusivo.", + "signInInfoText": "Conecte uma conta para ganhar bilhetes, compita online e compartilhe\no seu progresso entre vários dispositivos.", + "signInText": "Conectar-se a sua conta", + "signInWithAnEmailAddressText": "Faça login com um endereço de e-mail", + "signInWithDeviceInfoText": "(uma conta automática disponível apenas neste aparelho)", + "signInWithDeviceText": "Conectar-se com a conta de seu proprio dispositivo", + "signInWithText": "Entrar com ${SERVICE}", + "signInWithV2InfoText": "(uma conta que funciona em todas as plataformas)", + "signInWithV2Text": "Usar uma conta do(a) ${APP_NAME}", + "signOutText": "Sair da conta", + "signingInText": "Iniciando sessão...", + "signingOutText": "Finalizando sessão...", + "ticketsText": "Bilhetes: ${COUNT}", + "titleText": "Conta", + "unlinkAccountsInstructionsText": "Selecione uma conta a qual você quer sair", + "unlinkAccountsText": "Desvincular contas", + "unlinkLegacyV1AccountsText": "Retirar contas V1", + "v2LinkInstructionsText": "Utilize o link para criar uma conta ou entrar nela.", + "viaAccount": "(via ${NAME})", + "youAreSignedInAsText": "Conectou-se como:" + }, + "achievementChallengesText": "Desafios feitos", + "achievementText": "Conquistas", + "achievements": { + "Boom Goes the Dynamite": { + "description": "Mate 3 inimigos com TNT", + "descriptionComplete": "Você matou 3 inimigos com TNT", + "descriptionFull": "Mate 3 inimigos com TNT no ${LEVEL}", + "descriptionFullComplete": "Você matou 3 inimigos com TNT no ${LEVEL}", + "name": "Quem brinca com fogo, sai queimado" + }, + "Boxer": { + "description": "Ganhe sem usar bombas", + "descriptionComplete": "Ganhou sem usar bombas", + "descriptionFull": "Complete o ${LEVEL} sem usar bombas", + "descriptionFullComplete": "Completou o ${LEVEL} sem usar bombas", + "name": "Boxeador" + }, + "Dual Wielding": { + "descriptionFull": "Conecte 2 controles sendo fisicos ou sendo virtuais (pelo aplicativo)", + "descriptionFullComplete": "Conectou 2 controles sendo fisicos ou sendo virtuais (pelo aplicativo)", + "name": "Dominação dupla" + }, + "Flawless Victory": { + "description": "Ganhe sem ser atingido", + "descriptionComplete": "Ganhou sem ser atingido", + "descriptionFull": "Ganhe o ${LEVEL} sem ser atingido", + "descriptionFullComplete": "Ganhou o ${LEVEL} sem ser atingido", + "name": "Vitória perfeita" + }, + "Free Loader": { + "descriptionFull": "Comece um Todos contra todos com mais de 2 jogadores", + "descriptionFullComplete": "Começou um Todos contra todos com mais de 2 jogadores", + "name": "Carregador livre" + }, + "Gold Miner": { + "description": "Mate 6 inimigos com minas", + "descriptionComplete": "Matou 6 inimigos com minas", + "descriptionFull": "Mate 6 inimigos com minas no ${LEVEL}", + "descriptionFullComplete": "Matou 6 inimigos com minas no ${LEVEL}", + "name": "Garimpeiro" + }, + "Got the Moves": { + "description": "Ganhe sem usar socos ou bombas", + "descriptionComplete": "Ganhou sem usar socos ou bombas", + "descriptionFull": "Ganhe o ${LEVEL} sem socos ou bombas", + "descriptionFullComplete": "Ganhou o ${LEVEL} sem socos ou bombas", + "name": "Esse Tem Gingado" + }, + "In Control": { + "descriptionFull": "Conecte um controle (hardware ou aplicativo)", + "descriptionFullComplete": "Conectou um controle. (hardware ou aplicativo)", + "name": "No controle" + }, + "Last Stand God": { + "description": "Marque 1000 pontos", + "descriptionComplete": "Marcou 1000 pontos", + "descriptionFull": "Marque 1000 pontos no ${LEVEL}", + "descriptionFullComplete": "Marcou 1000 pontos no ${LEVEL}", + "name": "${LEVEL} Deus" + }, + "Last Stand Master": { + "description": "Marque 250 pontos", + "descriptionComplete": "Marcou 250 pontos", + "descriptionFull": "Marque 250 pontos no ${LEVEL}", + "descriptionFullComplete": "Marcou 250 pontos no ${LEVEL}", + "name": "${LEVEL} Mestre" + }, + "Last Stand Wizard": { + "description": "Marque 500 pontos", + "descriptionComplete": "Marcou 500 pontos", + "descriptionFull": "Marque 500 pontos no ${LEVEL}", + "descriptionFullComplete": "Marcou 500 pontos no ${LEVEL}", + "name": "${LEVEL} Mago" + }, + "Mine Games": { + "description": "Mate 3 inimigos com minas", + "descriptionComplete": "Matou 3 inimigos com minas", + "descriptionFull": "Mate 3 inimigos com minas no ${LEVEL}", + "descriptionFullComplete": "Matou 3 inimigos com minas no ${LEVEL}", + "name": "Brincando com Minas" + }, + "Off You Go Then": { + "description": "Mande 3 inimigos para fora do mapa", + "descriptionComplete": "Mandou 3 inimigos para fora do mapa", + "descriptionFull": "Mande 3 inimigos para fora do mapa no ${LEVEL}", + "descriptionFullComplete": "Mandou 3 inimigos para fora do mapa no ${LEVEL}", + "name": "Pode Ir Agora" + }, + "Onslaught God": { + "description": "Marque 5000 pontos", + "descriptionComplete": "Marcou 5000 pontos", + "descriptionFull": "Marque 5000 pontos no ${LEVEL}", + "descriptionFullComplete": "Marcou 5000 pontos no ${LEVEL}", + "name": "${LEVEL} Deus" + }, + "Onslaught Master": { + "description": "Marque 500 pontos", + "descriptionComplete": "Marcou 500 pontos", + "descriptionFull": "Marque 500 pontos no ${LEVEL}", + "descriptionFullComplete": "Marcou 500 pontos no ${LEVEL}", + "name": "${LEVEL} Mestre" + }, + "Onslaught Training Victory": { + "description": "Derrote todas as ondas", + "descriptionComplete": "Derrotou todas as ondas", + "descriptionFull": "Derrote todas as ondas no ${LEVEL}", + "descriptionFullComplete": "Derrotou todas as ondas no ${LEVEL}", + "name": "Vitória no ${LEVEL}" + }, + "Onslaught Wizard": { + "description": "Marque 1000 pontos", + "descriptionComplete": "Marcou 1000 pontos", + "descriptionFull": "Marque 1000 pontos no ${LEVEL}", + "descriptionFullComplete": "Marcou 1000 pontos no ${LEVEL}", + "name": "Mago do ${LEVEL}" + }, + "Precision Bombing": { + "description": "Ganhe sem poderes", + "descriptionComplete": "Ganhou sem poderes", + "descriptionFull": "Ganhe ${LEVEL} sem poderes", + "descriptionFullComplete": "Ganhou ${LEVEL} sem poderes", + "name": "Chuva de Bomba" + }, + "Pro Boxer": { + "description": "Ganhe sem usar bombas", + "descriptionComplete": "Ganhou sem usar bombas", + "descriptionFull": "Complete o ${LEVEL} sem usar bombas", + "descriptionFullComplete": "Completou o ${LEVEL} sem usar bombas", + "name": "Pugilista" + }, + "Pro Football Shutout": { + "description": "Ganhe sem deixar os inimigos marcarem", + "descriptionComplete": "Ganhou sem deixar os inimigos marcarem", + "descriptionFull": "Ganhe o ${LEVEL} sem deixar os inimigos marcarem", + "descriptionFullComplete": "Ganhou o ${LEVEL} sem deixar os inimigos marcarem", + "name": "${LEVEL} De Lavada" + }, + "Pro Football Victory": { + "description": "Ganhe a partida", + "descriptionComplete": "Ganhou a partida", + "descriptionFull": "Ganhe a partida no ${LEVEL}", + "descriptionFullComplete": "Ganhou a partida no ${LEVEL}", + "name": "Vitória no ${LEVEL}" + }, + "Pro Onslaught Victory": { + "description": "Derrote todas as ondas", + "descriptionComplete": "Todas as ondas derrotadas", + "descriptionFull": "Derrote todas as ondas no ${LEVEL}", + "descriptionFullComplete": "Todas as ondas do ${LEVEL} derrotadas", + "name": "Vitória no ${LEVEL}" + }, + "Pro Runaround Victory": { + "description": "Complete todas as ondas", + "descriptionComplete": "Todas as ondas completadas", + "descriptionFull": "Complete todas as ondas no ${LEVEL}", + "descriptionFullComplete": "Todas as ondas completadas no ${LEVEL}", + "name": "Vitória no ${LEVEL}" + }, + "Rookie Football Shutout": { + "description": "Ganhe sem deixar os inimigos marcarem", + "descriptionComplete": "Ganhou sem deixar os inimigos marcarem", + "descriptionFull": "Ganhe no ${LEVEL} sem deixar os inimigos marcarem", + "descriptionFullComplete": "Ganhou no ${LEVEL} sem deixar os inimigos marcarem", + "name": "${LEVEL} de levada" + }, + "Rookie Football Victory": { + "description": "Ganhe a partida", + "descriptionComplete": "Ganhou a partida", + "descriptionFull": "Ganhe a partida no ${LEVEL}", + "descriptionFullComplete": "Ganhou a partida no ${LEVEL}", + "name": "Vitória no ${LEVEL}" + }, + "Rookie Onslaught Victory": { + "description": "Derrote todas as ondas", + "descriptionComplete": "Todas as ondas derrotadas", + "descriptionFull": "Derrote todas as ondas no ${LEVEL}", + "descriptionFullComplete": "Todas as ondas no ${LEVEL} derrotadas", + "name": "Vitória no ${LEVEL}" + }, + "Runaround God": { + "description": "Marque 2000 pontos", + "descriptionComplete": "Marcou 2000 pontos", + "descriptionFull": "Marque 2000 pontos no ${LEVEL}", + "descriptionFullComplete": "Marcou 2000 pontos no ${LEVEL}", + "name": "Deus da ${LEVEL}" + }, + "Runaround Master": { + "description": "Marque 500 pontos", + "descriptionComplete": "Marcou 500 pontos", + "descriptionFull": "Marque 500 pontos no ${LEVEL}", + "descriptionFullComplete": "Marcou 500 pontos no ${LEVEL}", + "name": "Mestre do ${LEVEL}" + }, + "Runaround Wizard": { + "description": "Marque 1000 pontos", + "descriptionComplete": "Marcou 1000 pontos", + "descriptionFull": "Marque 1000 pontos no ${LEVEL}", + "descriptionFullComplete": "Marcou 1000 pontos no ${LEVEL}", + "name": "Mago do ${LEVEL}" + }, + "Sharing is Caring": { + "descriptionFull": "Compartilhe o jogo com um amigo", + "descriptionFullComplete": "Jogo compartilhado com um amigo", + "name": "Compartilhar é amar" + }, + "Stayin' Alive": { + "description": "Ganhe sem morrer", + "descriptionComplete": "Ganhou sem morrer", + "descriptionFull": "Ganhe o ${LEVEL} sem morrer", + "descriptionFullComplete": "Ganhou o ${LEVEL} sem morrer", + "name": "Sobrevivendo" + }, + "Super Mega Punch": { + "description": "Cause 100% de dano com um soco", + "descriptionComplete": "Causou 100% de dano com um soco", + "descriptionFull": "Cause 100% de dano com um soco no ${LEVEL}", + "descriptionFullComplete": "Causou 100% de dano com um soco no ${LEVEL}", + "name": "Super mega soco" + }, + "Super Punch": { + "description": "Cause 50% de dano com um soco", + "descriptionComplete": "Causou 50% de dano com um soco", + "descriptionFull": "Cause 50% de dano com um soco no ${LEVEL}", + "descriptionFullComplete": "Causou 50% de dano com um soco no ${LEVEL}", + "name": "Supersoco" + }, + "TNT Terror": { + "description": "Mate 6 inimigos com TNT", + "descriptionComplete": "Matou 6 inimigos com TNT", + "descriptionFull": "Mate 6 inimigos com TNT no ${LEVEL}", + "descriptionFullComplete": "Matou 6 inimigos com TNT no ${LEVEL}", + "name": "Terror do TNT" + }, + "Team Player": { + "descriptionFull": "Comece um jogo de equipes com mais de 4 jogadores", + "descriptionFullComplete": "Começou um jogo de equipes com mais de 4 jogadores", + "name": "Jogador de equipe" + }, + "The Great Wall": { + "description": "Pare todos os inimigos", + "descriptionComplete": "Parou todos os inimigos", + "descriptionFull": "Pare todos os inimigos no ${LEVEL}", + "descriptionFullComplete": "Parou todos os inimigos no ${LEVEL}", + "name": "A Grande Muralha" + }, + "The Wall": { + "description": "Pare todos os inimigos", + "descriptionComplete": "Parou todos os inimigos", + "descriptionFull": "Pare todos os inimigos no ${LEVEL}", + "descriptionFullComplete": "Parou todos os inimigos no ${LEVEL}", + "name": "A Muralha" + }, + "Uber Football Shutout": { + "description": "Ganhe sem deixar os inimigos marcarem", + "descriptionComplete": "Ganhou sem deixar os inimigos marcarem", + "descriptionFull": "Ganhe o ${LEVEL} sem deixar os inimigos marcarem", + "descriptionFullComplete": "Ganhou o ${LEVEL} sem deixar os inimigos marcarem", + "name": "${LEVEL} De Lavada" + }, + "Uber Football Victory": { + "description": "Ganhe a partida", + "descriptionComplete": "Ganhou a partida", + "descriptionFull": "Ganhe a partida no ${LEVEL}", + "descriptionFullComplete": "Ganhou a partida no ${LEVEL}", + "name": "Vitória no ${LEVEL}" + }, + "Uber Onslaught Victory": { + "description": "Derrote todas as ondas", + "descriptionComplete": "Derrotou todas as ondas", + "descriptionFull": "Derrote todas as ondas no ${LEVEL}", + "descriptionFullComplete": "Derrotou todas as ondas no ${LEVEL}", + "name": "Vitória no ${LEVEL}" + }, + "Uber Runaround Victory": { + "description": "Complete todas as ondas", + "descriptionComplete": "Completou todas as ondas", + "descriptionFull": "Complete todas as ondas no ${LEVEL}", + "descriptionFullComplete": "Completou todas as ondas no ${LEVEL}", + "name": "Vitória no ${LEVEL}" + } + }, + "achievementsRemainingText": "Conquistas restantes:", + "achievementsText": "Conquistas", + "achievementsUnavailableForOldSeasonsText": "Desculpe, algumas conquistas não estão disponíveis em temporadas antigas.", + "activatedText": "${THING} foi ativado.", + "addGameWindow": { + "getMoreGamesText": "Mais jogos...", + "titleText": "Adicionar jogo" + }, + "addToFavoritesText": "Adicionar aos Favoritos", + "addedToFavoritesText": "Adicionou '${NAME}' aos Favoritos.", + "allText": "Tudo", + "allowText": "Permitir", + "alreadySignedInText": "A conta tem sessão iniciada em outro dispositivo;\nMude de conta ou feche o jogo no seu\noutro dispositivo e tente novamente.", + "apiVersionErrorText": "Não é possível carregar o módulo ${NAME}; ele é destinado à versão ${VERSION_USED}; exigimos a ${VERSION_REQUIRED}.", + "applyText": "Aplicar", + "areYouSureText": "Voce tem certeza?", + "audioSettingsWindow": { + "headRelativeVRAudioInfoText": "(\"Auto\" ativa isso apenas quando fones estão conectados)", + "headRelativeVRAudioText": "Áudio para fones de RV", + "musicVolumeText": "Volume da música", + "soundVolumeText": "Volume do som", + "soundtrackButtonText": "Trilha sonora", + "soundtrackDescriptionText": "(tocar a sua própria música durante o jogo)", + "titleText": "Áudio" + }, + "autoText": "Automático", + "backText": "Voltar", + "banThisPlayerText": "Banir este jogador", + "bestOfFinalText": "Final de Melhor-de-${COUNT}", + "bestOfSeriesText": "Melhor série de ${COUNT}:", + "bestRankText": "Sua melhor pontuação é #${RANK}", + "bestRatingText": "Sua melhor classificação é ${RATING}", + "bombBoldText": "BOMBA", + "bombText": "Bomba", + "boostText": "Impulso", + "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} é configurado no próprio aplicativo.", + "buttonText": "botão", + "canWeDebugText": "Você gostaria que o ${APP_NAME} automaticamente comunique\nerros, falhas e informações de uso básico para o desenvolvedor?\n\nEsses dados não contem informações pessoais e ajudam\nà manter o jogo rodando suavemente e livre de bugs.", + "cancelText": "Cancelar", + "cantConfigureDeviceText": "Desculpe, ${DEVICE} não é configurável.", + "challengeEndedText": "Este desafio acabou.", + "chatMuteText": "Silenciar Chat", + "chatMutedText": "Chat Silenciado", + "chatUnMuteText": "Reativar Chat", + "chests": { + "prizeOddsText": "Chances de Ganhar", + "reduceWaitText": "Reduzir a espera", + "slotDescriptionText": "Este slot pode conter um baú.\n\nGanhe baús jogando níveis de campanha,\ncolocando-se em torneios e completando\nconquistas.", + "slotText": "Slot de baú ${NUM}", + "slotsFullWarningText": "AVISO: Todos os seus slots de baú estão cheios.\nQuaisquer baús que você ganhar neste jogo serão perdidos.", + "unlocksInText": "Desbloqueia Em" + }, + "choosingPlayerText": "", + "claimText": "Resgatar", + "codesExplainText": "Os códigos são fornecidos pelo desenvolvedor para \ndiagnosticar e corrigir problemas de conta.", + "completeThisLevelToProceedText": "Você deve completar \neste nível para continuar!", + "completionBonusText": "Bônus de conclusão", + "configControllersWindow": { + "configureControllersText": "Configurar controles", + "configureKeyboard2Text": "Configurar teclado P2", + "configureKeyboardText": "Configurar teclado", + "configureMobileText": "Usar dispositivos como controles", + "configureTouchText": "Configurar touchscreen", + "ps3Text": "Controles PS3", + "titleText": "Controles", + "wiimotesText": "Wiimotes", + "xbox360Text": "Controles Xbox 360" + }, + "configGamepadSelectWindow": { + "androidNoteText": "Nota: o suporte ao controle varia conforme o dispositivo e a versão do Android.", + "pressAnyButtonText": "Aperte qualquer botão no controle\nque você deseja configurar...", + "titleText": "Configurar controles" + }, + "configGamepadWindow": { + "advancedText": "Avançado", + "advancedTitleText": "Configuração avançada dos controles", + "analogStickDeadZoneDescriptionText": "(ative isto se o personagem 'escorrega' quando você solta o direcional)", + "analogStickDeadZoneText": "Área morta do analógico", + "appliesToAllText": "(serve para todos os controles deste tipo)", + "autoRecalibrateDescriptionText": "(ative isto se o personagem não se move na velocidade máxima)", + "autoRecalibrateText": "Calibrar automaticamente o analógico", + "axisText": "eixo", + "clearText": "limpar", + "dpadText": "direcional", + "extraStartButtonText": "Botão Start Extra", + "ifNothingHappensTryAnalogText": "Se nada acontecer, tente mudar para o analógico.", + "ifNothingHappensTryDpadText": "Se nada acontecer, tente mudar para o botão direcional.", + "ignoreCompletelyDescriptionText": "(impedir este controle de afetar tanto o jogo quanto o menu)", + "ignoreCompletelyText": "Ignorar totalmente", + "ignoredButton1Text": "Botão 1 ignorado", + "ignoredButton2Text": "Botão 2 ignorado", + "ignoredButton3Text": "Botão 3 ignorado", + "ignoredButton4Text": "Botão 4 ignorado", + "ignoredButtonDescriptionText": "(use isto para evitar que os botões 'home' ou 'sync' afetem a UI)", + "pressAnyAnalogTriggerText": "Aperte qualquer gatilho...", + "pressAnyButtonOrDpadText": "Aperte qualquer botão ou direcional...", + "pressAnyButtonText": "Aperte qualquer botão...", + "pressLeftRightText": "Aperte esquerda ou direita...", + "pressUpDownText": "Aperte cima ou baixo...", + "runButton1Text": "Correr Botão 1", + "runButton2Text": "Correr Botão 2", + "runTrigger1Text": "Correr Gatilho 1", + "runTrigger2Text": "Correr Gatilho 2", + "runTriggerDescriptionText": "(os gatilhos analogicos o permitem correr em diferentes velocidades)", + "secondHalfText": "Use isto para configurar a segunda metade\nde um controle que funciona\ncomo 2-em-1.", + "secondaryEnableText": "Ativar", + "secondaryText": "Controle secundário", + "startButtonActivatesDefaultDescriptionText": "(desative se o seu botão start está mais para um botão de menu)", + "startButtonActivatesDefaultText": "O botão Start ativa o widget padrão", + "titleText": "Configuração do controle", + "twoInOneSetupText": "Configuração do Controle 2-em-1", + "uiOnlyDescriptionText": "(impede que este controle entre em um jogo)", + "uiOnlyText": "Limitar o Uso ao Menu", + "unassignedButtonsRunText": "Todo o botão não definido executa", + "unsetText": "", + "vrReorientButtonText": "Botão Reorientar VR" + }, + "configKeyboardWindow": { + "configuringText": "Configurando ${DEVICE}", + "keyboard2NoteText": "Nota: a maioria dos teclados só podem registrar\nalgumas teclas pressionadas de uma só vez, portanto\npode funcionar melhor se houver um segundo teclado\nconectado. Perceba que, mesmo nesse caso, você ainda\nprecisará definir teclas exclusivas para os dois jogadores." + }, + "configTouchscreenWindow": { + "actionControlScaleText": "Escala de ação do controle", + "actionsText": "Ações", + "buttonsText": "botões", + "dragControlsText": "< arraste controles para reposicioná-los >", + "joystickText": "joystick", + "movementControlScaleText": "Escala de movimento do controle", + "movementText": "Movimento", + "resetText": "Reiniciar", + "swipeControlsHiddenText": "Ocultar ícones de deslize", + "swipeInfoText": "O estilo 'Deslize' do controle leva um tempo para se acostumar, mas\nfaz com que seja mais fácil de jogar sem olhar para os controles.", + "swipeText": "deslize", + "titleText": "Configurar touchscreen" + }, + "configureDeviceInSystemSettingsText": "${DEVICE} pode ser configurado no aplicativo \"Configurações do sistema\".", + "configureItNowText": "Configurar agora?", + "configureText": "Configurar", + "connectMobileDevicesWindow": { + "amazonText": "Amazon Appstore", + "appStoreText": "App Store", + "bestResultsText": "Para melhores resultados, é necessário uma rede Wi-Fi\nsem lag. Você pode melhorar o desempenho desligando outros\ndispositivos, jogando perto do seu roteador e conectando\no anfitrião do jogo à rede através do Ethernet.", + "explanationText": "Para usar um telefone ou tablet como controle,\nbaixe gratuitamente o aplicativo \"${REMOTE_APP_NAME}\".\nDá para conectar quantos dispositivos quiser a ${APP_NAME} pelo Wi-Fi!", + "forAndroidText": "para Android:", + "forIOSText": "para iOS:", + "getItForText": "Baixe ${REMOTE_APP_NAME} para iOS na Apple App Store\nou para Android na Google Play Store ou na Amazon Appstore", + "googlePlayText": "Google Play", + "titleText": "Usando dispositivos como controles:" + }, + "continuePurchaseText": "Continuar por ${PRICE}?", + "continueText": "Continuar", + "controlsText": "Controles", + "coopSelectWindow": { + "activenessAllTimeInfoText": "Isso não se aplica às classificações de todos os tempos.", + "activenessInfoText": "Este multiplicador aumenta nos dias que você joga\ne diminui nos dias que você não joga.", + "activityText": "Atividade", + "campaignText": "Campanha", + "challengesInfoText": "Ganhe prêmios por completar minijogos.\n\nPrêmios e dificuldade aumentam toda\nvez que um desafio é concluído e\ndiminui quando expira ou é abandonado.", + "challengesText": "Desafios", + "currentBestText": "O Melhor do Momento", + "customText": "Personalizado", + "entryFeeText": "Entrada", + "forfeitConfirmText": "Abandonar este desafio?", + "forfeitNotAllowedYetText": "Este desafio ainda não pode ser abandonado.", + "forfeitText": "Abandonar", + "multipliersText": "Multiplicadores", + "nextChallengeText": "Próximo desafio", + "nextPlayText": "Próximo jogo", + "ofTotalTimeText": "de ${TOTAL}", + "playNowText": "Jogar agora", + "pointsText": "Pontos", + "powerRankingFinishedSeasonUnrankedText": "(acabou a temporada casual)", + "powerRankingNotInTopText": "(não está no top ${NUMBER})", + "powerRankingPointsEqualsText": "= ${NUMBER} pts", + "powerRankingPointsMultText": "(x ${NUMBER} pts)", + "powerRankingPointsText": "${NUMBER} pts", + "powerRankingPointsToRankedText": "(${CURRENT} de ${REMAINING} pts)", + "powerRankingText": "Classificação geral", + "prizesText": "Prêmios", + "proMultInfoText": "Jogadores com a versão ${PRO}\nrecebem um aumento de ${PERCENT}% nos pontos.", + "seeMoreText": "Mais...", + "skipWaitText": "Pular espera", + "timeRemainingText": "Tempo restante", + "toRankedText": "Para classificar", + "totalText": "total", + "tournamentInfoText": "Jogue para ser o melhor contra\noutros jogadores na sua liga.\n\nOs prêmios são dados aos melhores\njogadores quando o torneio acaba.", + "welcome1Text": "Bem-vindo à ${LEAGUE}. Você pode melhorar a sua\nclassificação de liga ao receber estrelas, ao obter\nconquistas e ao ganhar troféus em torneios.", + "welcome2Text": "Você também pode ganhar bilhetes ao fazer várias dessas atividades.\nOs bilhetes podem ser usados para desbloquear novos personagens,\nmapas e minijogos, entrar em torneios e muito mais.", + "yourPowerRankingText": "Sua classificação geral:" + }, + "copyConfirmText": "Copiado para a área de transferência", + "copyOfText": "Cópia de ${NAME}", + "copyText": "Copiar", + "createEditPlayerText": "", + "createText": "Criar", + "creditsWindow": { + "additionalAudioArtIdeasText": "Áudio adicional, Arte inicial e ideias por ${NAME}", + "additionalMusicFromText": "Música adicional de ${NAME}", + "allMyFamilyText": "Toda a família e amigos que ajudaram nos testes", + "codingGraphicsAudioText": "Programação, gráficos e áudio por ${NAME}", + "languageTranslationsText": "Traduções:", + "legalText": "Legal:", + "publicDomainMusicViaText": "Musica de domínio público via ${NAME}", + "softwareBasedOnText": "Este software é baseado em parte do trabalho de ${NAME}", + "songCreditText": "${TITLE} Executada por ${PERFORMER}\nComposta por ${COMPOSER}, Arranjo por ${ARRANGER}, Publicada por ${PUBLISHER},\nCortesia de ${SOURCE}", + "soundAndMusicText": "Som e música:", + "soundsText": "Sons (${SOURCE}):", + "specialThanksText": "Agradecimentos especiais:", + "thanksEspeciallyToText": "Obrigado especialmente a ${NAME}", + "titleText": "Créditos do ${APP_NAME}", + "whoeverInventedCoffeeText": "Seja lá quem for o inventor do café" + }, + "currentStandingText": "Sua posição atual é #${RANK}", + "customizeText": "Personalizar...", + "deathsTallyText": "${COUNT} mortes", + "deathsText": "Mortes", + "debugText": "depurar", + "debugWindow": { + "reloadBenchmarkBestResultsText": "Nota: recomenda-se que defina Configurações->Gráficos->Texturas para \"Alto\" ao testar isto.", + "runCPUBenchmarkText": "Rodar Benchmark de CPU", + "runGPUBenchmarkText": "Rodar Benchmark de GPU", + "runMediaReloadBenchmarkText": "Rodar Benchmark de Recarregar Mídia", + "runStressTestText": "Rodar teste de estresse", + "stressTestPlayerCountText": "Contagem de Jogadores", + "stressTestPlaylistDescriptionText": "Playlist Teste de Estresse", + "stressTestPlaylistNameText": "Nome da Playlist", + "stressTestPlaylistTypeText": "Tipo de Playlist", + "stressTestRoundDurationText": "Duração da Rodada", + "stressTestTitleText": "Teste de estabilidade", + "titleText": "Benchmarks e Testes de Estresse", + "totalReloadTimeText": "Tempo total de carregamento: ${TIME} (veja relatório para detalhes)" + }, + "defaultGameListNameText": "Playlist ${PLAYMODE} Padrão", + "defaultNewGameListNameText": "Minha playlist ${PLAYMODE}", + "deleteText": "Excluir", + "demoText": "Teste", + "denyText": "Recusar", + "deprecatedText": "Descontinuado", + "descriptionText": "Descrição", + "desktopResText": "Resolução da área de trabalho", + "deviceAccountUpgradeText": "Aviso:\nVocê está logado com a conta do seu dispositivo\n(${NAME}).\nContas de dispositivo serão removidas em uma atualização futura.", + "difficultyEasyText": "Fácil", + "difficultyHardOnlyText": "Modo difícil apenas", + "difficultyHardText": "Difícil", + "difficultyHardUnlockOnlyText": "Esta fase só pode ser desbloqueada no modo difícil.\nVocê acha que aguenta o desafio!?!?!", + "directBrowserToURLText": "Por favor, direcione a seguinte URL para um navegador:", + "disableRemoteAppConnectionsText": "Desativar conexões do aplicativo BombSquad Remote", + "disableXInputDescriptionText": "Permite mais de 4 controles mas pode não funcionar bem.", + "disableXInputText": "Desativar XInput", + "disabledText": "Desativado", + "discardText": "Descarte", + "discordFriendsText": "Quer procurar por mais pessoas para jogar junto?\nEntre no nosso Discord e encontre novos amigos!", + "discordJoinText": "Junte-se ao Discord", + "doneText": "Concluído", + "drawText": "Empate", + "duplicateText": "Duplicar", + "editGameListWindow": { + "addGameText": "Adicionar\nJogo", + "cantOverwriteDefaultText": "Não é possível sobrescrever a playlist padrão!", + "cantSaveAlreadyExistsText": "Já existe uma playlist com este nome!", + "cantSaveEmptyListText": "Não é possível salvar uma playlist vazia!", + "editGameText": "Editar\nJogo", + "listNameText": "Nome da Playlist", + "nameText": "Nome", + "removeGameText": "Remover\nJogo", + "saveText": "Salvar lista", + "titleText": "Editor de Playlist" + }, + "editProfileWindow": { + "accountProfileInfoText": "Este perfil especial tem nome e\nícone baseado na sua conta.\n\n${ICONS}\n\nCrie perfis personalizados para usar\nnomes diferentes ou ícones personalizados.", + "accountProfileText": "(perfil da conta)", + "availableText": "O nome \"${NAME}\" está disponível.", + "characterText": "personagem", + "checkingAvailabilityText": "Verificando disponibilidade para \"${NAME}\"...", + "colorText": "cor", + "getMoreCharactersText": "Obter mais personagens...", + "getMoreIconsText": "Obter mais ícones...", + "globalProfileInfoText": "Garante-se que perfis globais tenham nomes\núnicos. Possuem também ícones personalizados.", + "globalProfileText": "(perfil global)", + "highlightText": "detalhe", + "iconText": "ícone", + "localProfileInfoText": "Os perfis de jogadores locais não possuem ícones e não garantem que seus\nnomes sejam únicos.\n\nAprimore para um perfil global para\nreservar um nome único e adicionar um ícone personalizado.", + "localProfileText": "(perfil local)", + "nameDescriptionText": "Nome do Jogador", + "nameText": "Nome", + "profileAlreadyExistsText": "Um perfil com este nome já existe.", + "randomText": "aleatório", + "titleEditText": "Editar perfil", + "titleNewText": "Novo Perfil", + "unavailableText": "\"${NAME}\" está indisponível; tente outro nome.", + "upgradeProfileInfoText": "Isso irá reservar o seu nome de jogador mundialmente\ne permitirá definir um ícone personalizado a ele.", + "upgradeToGlobalProfileText": "Aprimorar para Perfil Global" + }, + "editSoundtrackWindow": { + "cantDeleteDefaultText": "Você não pode excluir a trilha sonora padrão.", + "cantEditDefaultText": "Não é possível editar a trilha sonora padrão. Duplique ou crie uma nova.", + "cantOverwriteDefaultText": "Não é possível sobrescrever a trilha sonora padrão", + "cantSaveAlreadyExistsText": "Já existe uma trilha sonora com esse nome!", + "defaultGameMusicText": "", + "defaultSoundtrackNameText": "Trilha sonora padrão", + "deleteConfirmText": "Excluir trilha sonora:\n\n'${NAME}'?", + "deleteText": "Excluir\nTrilha sonora", + "duplicateText": "Duplicar\nTrilha sonora", + "editSoundtrackText": "Editor de Trilha Sonora", + "editText": "Editar\nTrilha sonora", + "fetchingITunesText": "Buscando playlists do app de música", + "musicVolumeZeroWarning": "Aviso: o volume da música está zerado", + "nameText": "Nome", + "newSoundtrackNameText": "Minha trilha sonora ${COUNT}", + "newSoundtrackText": "Nova trilha sonora:", + "newText": "Nova\nTrilha sonora", + "selectAPlaylistText": "Selecione uma playlist", + "selectASourceText": "Fonte de música", + "testText": "teste", + "titleText": "Trilhas sonoras", + "useDefaultGameMusicText": "Música padrão", + "useITunesPlaylistText": "Playlist do app de música", + "useMusicFileText": "Arquivo de música (mp3, etc)", + "useMusicFolderText": "Pasta de arquivos de música" + }, + "editText": "Editar", + "enabledText": "Ativado", + "endText": "Fim", + "enjoyText": "Aproveite!", + "epicDescriptionFilterText": "${DESCRIPTION} em câmera lenta épica.", + "epicNameFilterText": "${NAME} épico(a)", + "errorAccessDeniedText": "acesso negado", + "errorDeviceTimeIncorrectText": "A hora do seu dispositivo está incorreta por ${HOURS} horas.\nIsso causará problemas. \nPor-Favor cheque suas configurações de hora e fuso horário.", + "errorOutOfDiskSpaceText": "pouco espaço em disco", + "errorSecureConnectionFailText": "Não foi possível estabelecer uma conexão segura à nuvem; a funcionalidade da rede pode falhar.", + "errorText": "Erro", + "errorUnknownText": "erro desconhecido", + "exitGameText": "Sair do ${APP_NAME}?", + "expiredAgoText": "Expirado há ${T}", + "expiresInText": "Expira em ${T}", + "exportSuccessText": "'${NAME}' foi exportado.", + "externalStorageText": "Armazenamento externo", + "failText": "Falhou", + "fatalErrorText": "Ops; algo está faltando ou está corrompido.\nPor favor, tente reinstalar BombSquad ou\nentre em contato ${EMAIL} para ajuda.", + "fileSelectorWindow": { + "titleFileFolderText": "Selecione um arquivo ou pasta", + "titleFileText": "Selecione um arquivo", + "titleFolderText": "Selecione uma pasta", + "useThisFolderButtonText": "Use esta pasta" + }, + "filterText": "Filtro", + "finalScoreText": "Pontuação final", + "finalScoresText": "Pontuações finais", + "finalTimeText": "Tempo final", + "finishingInstallText": "Terminando de instalar; aguarde...", + "fireTVRemoteWarningText": "* Para uma melhor experiência, use\njoysticks ou baixe o aplicativo\n'${REMOTE_APP_NAME}' no seu\ntelefone ou tablet.", + "firstToFinalText": "Primeiro-a-${COUNT} Final", + "firstToSeriesText": "Primeiro-a-${COUNT} Séries", + "fiveKillText": "MATOU CINCO!!!", + "flawlessWaveText": "Onda Perfeita!", + "fourKillText": "MORTE QUÁDRUPLA!!!", + "friendScoresUnavailableText": "Pontuação dos amigos indisponível.", + "gameLeadersText": "Game ${COUNT} Líderes", + "gameListWindow": { + "cantDeleteDefaultText": "Você não pode excluir a playlist padrão!", + "cantEditDefaultText": "Você não pode editar a playlist padrão! Duplique ou crie uma nova.", + "cantShareDefaultText": "Você não pode compartilhar a playlist padrão.", + "deleteConfirmText": "Excluir ${LIST}?", + "deleteText": "Excluir\nPlaylist", + "duplicateText": "Duplicar\nPlaylist", + "editText": "Editar\nPlaylist", + "newText": "Nova\nPlaylist", + "pointsToWinText": "Pontos para Ganhar", + "seriesLengthText": "Tamanho da Série", + "showTutorialText": "Mostrar Tutorial", + "shuffleGameOrderText": "Ordem de Partida Aleatória", + "titleText": "Personalizar Playlists de ${TYPE}" + }, + "gameSettingsWindow": { + "addGameText": "Adicionar jogo" + }, + "gamesToText": "${WINCOUNT} jogos para ${LOSECOUNT}", + "gatherWindow": { + "aboutDescriptionLocalMultiplayerExtraText": "Lembre-se: qualquer dispositivo em grupo pode ter\nmais de um jogador se você tiver controles o suficiente.", + "aboutDescriptionText": "Use essas guias para criar um grupo.\n\nGrupos o permitem jogar com seus amigos\natravés de dispositivos diferentes.\n\nUse o botão ${PARTY} no canto superior direito\npara conversar e interagir com seu grupo.\n(em um controle, aperte ${BUTTON} enquanto estiver em um menu)", + "aboutText": "Sobre", + "addressFetchErrorText": "", + "appInviteMessageText": "${NAME} mandou ${COUNT} cupons ${APP_NAME}", + "appInviteSendACodeText": "Envie um código", + "appInviteTitleText": "Convite para testar ${APP_NAME}", + "bluetoothAndroidSupportText": "(funciona com qualquer dispositivo Android com Bluetooth)", + "bluetoothDescriptionText": "Hospedar/entrar em um grupo pelo Bluetooth:", + "bluetoothHostText": "Hospedar pelo Bluetooth", + "bluetoothJoinText": "Entrar pelo Bluetooth", + "bluetoothText": "Bluetooth", + "checkingText": "verificando...", + "copyCodeConfirmText": "Código copiado para área de transferência.", + "copyCodeText": "Copiar código", + "dedicatedServerInfoText": "Para melhores resultados, inicie um servidor dedicado. Visite bombsquadgame.com/server para saber como.", + "descriptionShortText": "Use a janela de \"Juntar-se\" para formar um grupo.", + "disconnectClientsText": "Isso irá desconectar ${COUNT}jogador(es)\nde seu grupo. Você tem certeza?", + "earnTicketsForRecommendingAmountText": "Os amigos ganharão ${COUNT} bilhetes ao experimentar o jogo\n(e você ganhará ${YOU_COUNT} por cada um que o fizer)", + "earnTicketsForRecommendingText": "Compartilhe o jogo\npara bilhetes grátis...", + "emailItText": "Enviar e-mail", + "favoritesSaveText": "Salvar como Favorito", + "favoritesText": "Favoritos", + "freeCloudServerAvailableMinutesText": "Próximo servidor na nuvem grátis disponível em ${MINUTES} minutos.", + "freeCloudServerAvailableNowText": "Servidor na nuvem grátis disponível!", + "freeCloudServerNotAvailableText": "Nenhum servidor na nuvem grátis disponível.", + "friendHasSentPromoCodeText": "${COUNT} bilhetes do ${APP_NAME} mandados por ${NAME}", + "friendPromoCodeAwardText": "Você ganhará ${COUNT} bilhetes toda vez que for usado.", + "friendPromoCodeExpireText": "O código expira em ${EXPIRE_HOURS} horas e só funcionará para novos jogadores.", + "friendPromoCodeInstructionsText": "Para usar, abra ${APP_NAME} e vá até \"Configurações-> Avançado-> Inserir Código\". \nVeja bombsquadgame.com para os links de download para todas as plataformas suportadas.", + "friendPromoCodeRedeemLongText": "Pode ser resgatado por ${COUNT} bilhetes gratuitos por até ${MAX_USES} pessoas.", + "friendPromoCodeRedeemShortText": "Pode ser resgatado por ${COUNT} bilhetes no jogo.", + "friendPromoCodeWhereToEnterText": "(em \"Configuração -> Avançado -> Inserir Código\")", + "getFriendInviteCodeText": "Obter código de convite", + "googlePlayDescriptionText": "Convidar jogadores do Google Play para a seu grupo:", + "googlePlayInviteText": "Convidar", + "googlePlayReInviteText": "Há ${COUNT} jogador(es) do Google Play na seu grupo\nque serão desconectados se você iniciar um novo convite.\nInclua-os neste novo convite para adicioná-los de volta.", + "googlePlaySeeInvitesText": "Ver convites", + "googlePlayText": "Google Play", + "googlePlayVersionOnlyText": "(Android/versão Google Play)", + "hostPublicPartyDescriptionText": "Hospedar um Grupo Público", + "hostingUnavailableText": "Host indisponível", + "inDevelopmentWarningText": "Nota:\n\nJogo em rede ainda é um novo recurso em desenvolvimento.\nPor enquanto, é altamente recomendável que todos\nos jogadores estejam na mesma rede Wi-Fi.", + "internetText": "Internet", + "inviteAFriendText": "Seus amigos ainda não têm o jogo? Convide-os para\nexperimentar e eles ganharão ${COUNT} bilhetes grátis.", + "inviteFriendsText": "Convidar amigos", + "joinPublicPartyDescriptionText": "Entrar em um Grupo Público", + "localNetworkDescriptionText": "Entrar em um Grupo Próximo (LAN, Bluetooth, etc.)", + "localNetworkText": "Rede Local", + "makePartyPrivateText": "Tornar Meu Grupo Privado", + "makePartyPublicText": "Tornar Meu Grupo Público", + "manualAddressText": "Endereço", + "manualConnectText": "Conectar", + "manualDescriptionText": "Entrar em um grupo por endereço:", + "manualJoinSectionText": "Entrar pelo Endereço", + "manualJoinableFromInternetText": "Conseguem se juntar à você pela internet?:", + "manualJoinableNoWithAsteriskText": "NÃO*", + "manualJoinableYesText": "SIM", + "manualRouterForwardingText": "*para resolver, tente configurar seu roteador para encaminhar a porta UDP ${PORT} para o seu endereço local", + "manualText": "Manual", + "manualYourAddressFromInternetText": "Seu endereço na internet:", + "manualYourLocalAddressText": "Seu endereço local:", + "nearbyText": "Próximo", + "noConnectionText": "", + "noPartiesAddedText": "Nenhum Grupo Adicionado", + "otherVersionsText": "(outras versões)", + "partyCodeText": "Código do Grupo", + "partyInviteAcceptText": "Aceitar", + "partyInviteDeclineText": "Recusar", + "partyInviteIgnoreText": "Ignorar", + "partyInviteText": "${NAME} convidou você\npara entrar no grupo dele(a)!", + "partyNameText": "Nome do Grupo", + "partyServerRunningText": "Seu servidor de grupo está rodando.", + "partySizeText": "tamanho do grupo", + "partyStatusCheckingText": "verificando estado...", + "partyStatusJoinableText": "agora podem entrar no seu grupo pela internet", + "partyStatusNoConnectionText": "não foi possível conectar ao servidor", + "partyStatusNotJoinableText": "não podem entrar no seu grupo pela internet", + "partyStatusNotPublicText": "seu grupo não é público", + "pingText": "latência", + "portText": "Porta", + "privatePartyCloudDescriptionText": "Grupo privados funcionam em servidores da nuvem dedicados; nenhuma configuração no roteador é requirida.", + "privatePartyHostText": "Hospedar um Grupo Privado", + "privatePartyJoinText": "Entrar em um Grupo Privado", + "privateText": "Privado", + "publicHostRouterConfigText": "Isso pode requerer uma configuração de porta no seu roteador. Para uma opção mais simples, crie um grupo privado.", + "publicText": "Público", + "requestingAPromoCodeText": "Solicitando um código...", + "sendDirectInvitesText": "Enviar Convites Diretos", + "shareThisCodeWithFriendsText": "Compartilhe esse código com seus amigos:", + "showMyAddressText": "Mostrar Meu Endereço", + "startHostingPaidText": "Crie Agora por ${COST}", + "startHostingText": "Criar", + "startStopHostingMinutesText": "Você pode iniciar ou interromper a hospedagem de graça nos próximos ${MINUTES} minutos.", + "stopHostingText": "Interromper hospedagem", + "titleText": "Juntar-se", + "wifiDirectDescriptionBottomText": "Se todos os dispositivos tiverem 'Wi-Fi Direct', poderão usar para encontrar\ne conectar um com o outro. Conectados todos os dispositivos, você pode formar grupos\naqui usando a guia 'Rede Local', como em uma rede Wi-Fi comum.\n\nPara melhores resultados, o anfitrião do Wi-Fi Direct deverá ser também o anfitrião do grupo do ${APP_NAME}.", + "wifiDirectDescriptionTopText": "Wi-Fi Direct pode conectar dispositivos Android sem a necessidade\nde uma rede Wi-Fi. Funciona melhor a partir da versão Android 4.2.\n\nPara usar, abra as configurações de Wi-Fi e procure por 'Wi-Fi Direct'.", + "wifiDirectOpenWiFiSettingsText": "Abrir as configurações de Wi-Fi", + "wifiDirectText": "Wi-Fi Direct", + "worksBetweenAllPlatformsText": "(funciona entre todas as plataformas)", + "youHaveBeenSentAPromoCodeText": "Mandaram um código promocional do ${APP_NAME} para você:" + }, + "getTicketsWindow": { + "freeText": "GRÁTIS!", + "freeTicketsText": "Cupons Grátis", + "inProgressText": "Uma transação está em andamento; tente de novo em um momento.", + "purchasesRestoredText": "Compras restauradas.", + "receivedTicketsText": "Você recebeu ${COUNT} cupons!", + "restorePurchasesText": "Restaurar Compras", + "ticketPack1Text": "Pacote Pequeno de Bilhetes", + "ticketPack2Text": "Pacote Médio de Bilhetes", + "ticketPack3Text": "Pacote Grande de Bilhetes", + "ticketPack4Text": "Pacote Jumbo de Bilhetes", + "ticketPack5Text": "Pacote Mamute de Bilhetes", + "ticketPack6Text": "Pacote Supremo de Bilhetes", + "ticketsFromASponsorText": "Assista a um anúncio \ne ganhe ${COUNT} bilhetes", + "ticketsText": "${COUNT} bilhetes", + "titleText": "Obter bilhetes", + "unavailableLinkAccountText": "Desculpe, as compras não estão disponíveis nesta plataforma.\nComo solução alternativa, você pode vincular esta conta para\noutra conta de outra plataforma e fazer compras lá.", + "unavailableTemporarilyText": "Indisponível no momento; tente novamente mais tarde.", + "unavailableText": "Desculpe, não está disponível.", + "versionTooOldText": "Desculpe, esta versão do jogo é muito antiga; por favor, atualize.", + "youHaveShortText": "você tem ${COUNT}", + "youHaveText": "você possui ${COUNT} bilhetes" + }, + "goldPass": { + "desc1InfTokensText": "Tokens infinitos.", + "desc2NoAdsText": "Sem anúncios.", + "desc3ForeverText": "Para sempre.", + "goldPassText": "Passe de Ouro" + }, + "googlePlayPurchasesNotAvailableText": "Compras pela Google Play não estão disponíveis.\nTalvez seja necessário atualizar sua loja para isso.", + "googlePlayServicesNotAvailableText": "Os serviços do Google Play não estão disponíveis. \nAlgumas funções do aplicativo talvez serão desabilitadas.", + "googlePlayText": "Google Play", + "graphicsSettingsWindow": { + "alwaysText": "Sempre", + "fullScreenCmdText": "Tela cheia (Cmd-F)", + "fullScreenCtrlText": "Tela cheia (Ctrl-F)", + "fullScreenText": "Tela cheia", + "gammaText": "Gama", + "highText": "Alto", + "higherText": "Mais alto", + "lowText": "Baixo", + "maxFPSText": "FPS máximo", + "mediumText": "Médio", + "neverText": "Nunca", + "resolutionText": "Resolução", + "showFPSText": "Mostrar FPS", + "texturesText": "Texturas", + "titleText": "Gráficos", + "tvBorderText": "Borda da TV", + "verticalSyncText": "Sincronização vertical", + "visualsText": "Visuais" + }, + "helpWindow": { + "bombInfoText": "- Bomba - \nMais forte que socos, mas pode \ncausar graves ferimentos em você mesmo.\nPara melhores resultados, atire no\ninimigo antes do pavio acabar.", + "canHelpText": "${APP_NAME} pode ajudar.", + "controllersInfoText": "Você pode jogar ${APP_NAME} com amigos em uma rede, ou todos \npodem jogar no mesmo dispositivo se tiverem controles suficientes.\n${APP_NAME} suporta muitos deles; você pode até mesmo usar\ncelulares como controle com o aplicativo '${REMOTE_APP_NAME}'.\nVeja as Configurações->Controles para mais informações.", + "controllersInfoTextRemoteOnly": "Você pode jogar ${APP_NAME} com amigos na rede ou \ntodos podem jogar no mesmo dispositivo usando telefones como\ncontroladores através do aplicativo gratuito '${REMOTE_APP_NAME}'.", + "controllersText": "Controles", + "controlsSubtitleText": "O seu personagem bonitinho do ${APP_NAME} tem algumas ações básicas:", + "controlsText": "Controles", + "devicesInfoText": "A versão VR de ${APP_NAME} pode ser jogada em rede com\na versão comum, portanto saquem seus celulares extras, tablets,\ne computadores e mandem ver. Pode ser útil conectar uma\nversão comum do jogo à versão VR para permitir que\npessoas de fora assistam a ação.", + "devicesText": "Dispositivos", + "friendsGoodText": "São sempre boas companhias. ${APP_NAME} é mais divertido com muitos\njogadores e pode suportar até 8 ao mesmo tempo, o que nos leva a:", + "friendsText": "Amigos", + "jumpInfoText": "- Saltar -\nSalte por cima de buracos,\npara jogar coisas mais alto e\npara expressar sua alegria.", + "orPunchingSomethingText": "Ou dar um soco em algo, jogar de um penhasco e explodir em pedacinhos com uma bomba grudenta.", + "pickUpInfoText": "- Pegar -\nAgarre bandeiras, inimigos ou\nqualquer coisa não aparafusada no\nchão. Aperte novamente para jogar.", + "powerupBombDescriptionText": "Permite você lançar três bombas\nseguidas ao invés de uma só.", + "powerupBombNameText": "Tribombas", + "powerupCurseDescriptionText": "É melhor você ficar longe de um desses.\n...ou será que não?", + "powerupCurseNameText": "Maldição", + "powerupHealthDescriptionText": "Restaura toda a sua energia.\nVocê jamais teria adivinhado.", + "powerupHealthNameText": "Kit médico", + "powerupIceBombsDescriptionText": "Mais fraca que a normal, mas\ndeixa seus inimigos congelados\ne bem fragilizados.", + "powerupIceBombsNameText": "Criobombas", + "powerupImpactBombsDescriptionText": "Um pouco mais fraca que a normal\nregular, mas explode ao impacto.", + "powerupImpactBombsNameText": "Impactobombas", + "powerupLandMinesDescriptionText": "Estes vêm em pacotes de 3;\nÉ útil para proteger a base ou\ndeter inimigos correndo em sua direção.", + "powerupLandMinesNameText": "Minas", + "powerupPunchDescriptionText": "Deixa seus socos poderosos, \nrápidos, melhores, fortes.", + "powerupPunchNameText": "Luvas de Boxe", + "powerupShieldDescriptionText": "Absorve um pouco de dano para\nvocê não ter passar por isso.", + "powerupShieldNameText": "Escudo de Energia", + "powerupStickyBombsDescriptionText": "Gruda em tudo que toca.\nHilaridade segue.", + "powerupStickyBombsNameText": "Bombas Grudentas", + "powerupsSubtitleText": "É claro, nenhum jogo está completo sem poderes:", + "powerupsText": "Poderes", + "punchInfoText": "- Soco -\nQuanto mais rápidos seus punhos,\nmais danos seus socos dão, então\nsaia correndo feito um louco.", + "runInfoText": "- Correr -\nSegure QUALQUER botão para correr. Gatilhos ou botões de ombro funcionam bem se você tiver. \nCorrer o leva a lugares mais rápido, mas dificulta na hora de virar, então fique de olho nos penhascos.", + "someDaysText": "Tem dias que você só quer bater em algo. Ou então explodir coisas.", + "titleText": "Ajuda do ${APP_NAME}", + "toGetTheMostText": "Para aproveitar ao máximo este jogo, você precisará de:", + "welcomeText": "Bem-vindo ao ${APP_NAME}!" + }, + "holdAnyButtonText": "", + "holdAnyKeyText": "", + "hostIsNavigatingMenusText": "- ${HOST} está navegando pelos menus como se não houvesse amanhã -", + "importPlaylistCodeInstructionsText": "Use o seguinte código para importar essa playlist:", + "importPlaylistSuccessText": "Playlist '${NAME}' importada ${TYPE}", + "importText": "Importar", + "importingText": "Importando...", + "inGameClippedNameText": "No jogo será\n\"${NAME}\"", + "inboxText": "Caixa de entrada", + "installDiskSpaceErrorText": "ERRO: Não pôde concluir a instalação.\nVocê deve estar com pouco espaço no seu dispositivo.\nApague algumas coisas e tente novamente.", + "internal": { + "arrowsToExitListText": "aperte ${LEFT} ou ${RIGHT} para sair da lista", + "buttonText": "botão", + "cantKickHostError": "Você não pode expulsar o anfitrião.", + "chatBlockedText": "O chat de ${NAME} está bloqueado por ${TIME} segundo(s).", + "connectedToGameText": "Conectou-se a '${NAME}'", + "connectedToPartyText": "Entrou no grupo de ${NAME}!", + "connectingToPartyText": "Conectando...", + "connectionFailedHostAlreadyInPartyText": "A conexão falhou; anfitrião está em outro grupo.", + "connectionFailedPartyFullText": "Conexão falhou; o grupo está cheio.", + "connectionFailedText": "A conexão falhou.", + "connectionFailedVersionMismatchText": "A conexão falhou; anfitrião está rodando uma versão diferente do jogo.\nTenha certeza de que ambos estejam atualizados e tente novamente.", + "connectionRejectedText": "Conexão negada.", + "controllerConnectedText": "${CONTROLLER} conectado.", + "controllerDetectedText": "1 controle detectado.", + "controllerDisconnectedText": "${CONTROLLER} desconectado.", + "controllerDisconnectedTryAgainText": "${CONTROLLER} desconectado. Por favor, tente novamente.", + "controllerForMenusOnlyText": "Este controle não pode ser usado para jogar; apenas para navegar pelo menu.", + "controllerReconnectedText": "${CONTROLLER} reconectado.", + "controllersConnectedText": "${COUNT} controles conectados.", + "controllersDetectedText": "${COUNT} controles detectados.", + "controllersDisconnectedText": "${COUNT} controles desconectados.", + "corruptFileText": "Arquivos corrompidos detectados. Tente reinstalar o jogo ou mande um e-mail para ${EMAIL}", + "errorPlayingMusicText": "Erro ao tocar música: ${MUSIC}", + "errorResettingAchievementsText": "Não foi possível reiniciar as conquistas online; por favor, tente novamente mais tarde.", + "hasMenuControlText": "${NAME} possui o controle do menu.", + "incompatibleNewerVersionHostText": "Anfitrião do grupo está usando uma versão mais nova do jogo.\nAtualize seu jogo e tente novamente.", + "incompatibleVersionHostText": "Anfitrião está rodando uma versão diferente do jogo.\nTenha certeza de que ambos estejam atualizados e tente de novo.", + "incompatibleVersionPlayerText": "${NAME} está rodando uma versão diferente do jogo.\nTenha certeza de que ambos estejam atualizados e tente novamente.", + "invalidAddressErrorText": "Erro: endereço invalido.", + "invalidNameErrorText": "Erro: nome inválido.", + "invalidPortErrorText": "Erro: porta inválida.", + "invitationSentText": "Convite enviado.", + "invitationsSentText": "${COUNT} convites enviados.", + "joinedPartyInstructionsText": "Alguém entrou no seu grupo.\nAperte 'Jogar' para começar.", + "keyboardText": "Teclado", + "kickIdlePlayersKickedText": "Expulsando ${NAME} por não mostrar movimento.", + "kickIdlePlayersWarning1Text": "${NAME} será expulso em ${COUNT} segundos se continuar imóvel.", + "kickIdlePlayersWarning2Text": "(você pode desativar isto em Configurações-> Avançado)", + "leftGameText": "Saiu de '${NAME}'", + "leftPartyText": "Você saiu do grupo de ${NAME}.", + "noMusicFilesInFolderText": "A pasta não contém arquivos de música.", + "playerJoinedPartyText": "${NAME} entrou no grupo!", + "playerLeftPartyText": "${NAME} saiu do grupo.", + "rejectingInviteAlreadyInPartyText": "Recusando convite (já está em um grupo).", + "serverRestartingText": "Servidor reiniciando. Por favor, reconecte-se em um momento...", + "serverShuttingDownText": "Servidor está desligando...", + "signInErrorText": "Erro ao entrar.", + "signInNoConnectionText": "Não pôde entrar. (sem conexão à internet?)", + "telnetAccessDeniedText": "ERRO: o usuário não liberou acesso telnet.", + "timeOutText": "(tempo acaba em ${TIME} segundos)", + "touchScreenJoinWarningText": "Você entrou com o modo touchscreen.\nSe isso foi um erro, toque em 'Menu->Sair do Jogo'.", + "touchScreenText": "Touchscreen", + "unableToCompleteTryAgainText": "Não é possível concluir isso agora.\nPor favor, tente novamente.", + "unableToResolveHostText": "Erro: não é possível resolver a fonte do anfitrião", + "unavailableNoConnectionText": "Isso não está disponível agora (sem conexão à internet?)", + "vrOrientationResetCardboardText": "Use para reiniciar a orientação do VR.\nPara jogar, você precisa de um controle externo.", + "vrOrientationResetText": "Orientação do VR reiniciada.", + "willTimeOutText": "(o tempo acabará se ficar imóvel)" + }, + "inventoryText": "Inventário", + "jumpBoldText": "SALTAR", + "jumpText": "Saltar", + "keepText": "Manter", + "keepTheseSettingsText": "Manter essas configurações?", + "keyboardChangeInstructionsText": "Pressione duas vezes o espaço para alterar os teclados.", + "keyboardNoOthersAvailableText": "Nenhum outro teclado disponível.", + "keyboardSwitchText": "Alterando teclado para \"${NAME}\".", + "kickOccurredText": "${NAME} foi expulso.", + "kickQuestionText": "Expulsar ${NAME}?", + "kickText": "Expulsar", + "kickVoteCantKickAdminsText": "O Administrador não pode ser expulso.", + "kickVoteCantKickSelfText": "Você não pode se expulsar.", + "kickVoteFailedNotEnoughVotersText": "Não há jogadores suficientes para uma votação.", + "kickVoteFailedText": "A votação para expulsão falhou.", + "kickVoteStartedText": "Uma votação para expulsar ${NAME} foi iniciada.", + "kickVoteText": "Votação para expulsar", + "kickVotingDisabledText": "A votação para expulsar está desativada.", + "kickWithChatText": "Escreva ${YES} no chat para sim e ${NO} para não.", + "killsTallyText": "${COUNT} abates", + "killsText": "Abates", + "kioskWindow": { + "easyText": "Fácil", + "epicModeText": "Modo Épico", + "fullMenuText": "Menu Completo", + "hardText": "Difícil", + "mediumText": "Médio", + "singlePlayerExamplesText": "Exemplos de Um jogador / Cooperativo", + "versusExamplesText": "Exemplos de Versus" + }, + "languageSetText": "O idioma agora é \"${LANGUAGE}\".", + "lapNumberText": "Volta ${CURRENT}/${TOTAL}", + "lastGamesText": "(últimas ${COUNT} partidas)", + "leaderboardsText": "Classificação", + "league": { + "allTimeText": "Todos os Tempos", + "currentSeasonText": "Temporada atual (${NUMBER})", + "leagueFullText": "Liga ${NAME}", + "leagueRankText": "Classificação da liga", + "leagueText": "Liga", + "rankInLeagueText": "#${RANK}, ${NAME} Liga${SUFFIX}", + "seasonEndedDaysAgoText": "A temporada acabou ${NUMBER} dia(s) atrás.", + "seasonEndsDaysText": "A temporada acaba em ${NUMBER} dia(s).", + "seasonEndsHoursText": "A temporada acaba em ${NUMBER} hora(s).", + "seasonEndsMinutesText": "Temporada acaba em ${NUMBER} minuto(s).", + "seasonText": "Temporada ${NUMBER}", + "tournamentLeagueText": "Você deve alcançar a liga ${NAME} para entrar neste torneio.", + "trophyCountsResetText": "A contagem de troféus reiniciará na próxima temporada.", + "upToDateBonusDescriptionText": "Os jogadores que estiverem jogando uma versão recente do\njogo recebem um bônus de ${PERCENT}% aqui.", + "upToDateBonusText": "Bônus por Estar Atualizado" + }, + "learnMoreText": "Saiba Mais", + "levelBestScoresText": "Melhores pontuações no ${LEVEL}", + "levelBestTimesText": "Melhores tempos no ${LEVEL}", + "levelIsLockedText": "${LEVEL} está bloqueado.", + "levelMustBeCompletedFirstText": "${LEVEL} deve ser concluído primeiro.", + "levelText": "Nível ${NUMBER}", + "levelUnlockedText": "Nível desbloqueado!", + "livesBonusText": "Bônus de Vida", + "loadingText": "carregando", + "loadingTryAgainText": "Carregando; tente novamente daqui a pouco...", + "macControllerSubsystemBothText": "Ambos (não recomendado)", + "macControllerSubsystemClassicText": "Clássico", + "macControllerSubsystemDescriptionText": "Tente ativar isso se os controles não estiverem funcionando", + "macControllerSubsystemMFiNoteText": "Feito para iOS/Mac controle detectado ;\nvocê pode querer ativar isso em Configurações -> Controles", + "macControllerSubsystemMFiText": "Feito para iOS/Mac", + "macControllerSubsystemTitleText": "Suporte para controle", + "mainMenu": { + "creditsText": "Créditos", + "demoMenuText": "Menu de demonstração", + "endGameText": "Terminar Jogo", + "endTestText": "Terminar Teste", + "exitGameText": "Sair do Jogo", + "exitToMenuText": "Sair para o menu?", + "howToPlayText": "Como Jogar", + "justPlayerText": "(Somente ${NAME})", + "leaveGameText": "Sair do Jogo", + "leavePartyConfirmText": "Deseja realmente sair do grupo?", + "leavePartyText": "Sair do Grupo", + "quitText": "Sair", + "resumeText": "Retomar", + "settingsText": "Configurações" + }, + "makeItSoText": "Aplicar", + "mapSelectGetMoreMapsText": "Obter Mais Mapas...", + "mapSelectText": "Selecionar...", + "mapSelectTitleText": "${GAME} mapas", + "mapText": "Mapa", + "maxConnectionsText": "Limite de Conexões", + "maxPartySizeText": "Tamanho Máximo do Grupo", + "maxPlayersText": "Limite de Jogadores", + "merchText": "Produtos BombSquad!", + "modeArcadeText": "Modo Arcade", + "modeClassicText": "Modo Clássico", + "modeDemoText": "Modo Demonstração", + "moreSoonText": "Mais novidades em breve...", + "mostDestroyedPlayerText": "Player Mais Destruído", + "mostValuablePlayerText": "Jogador Mais Valioso", + "mostViolatedPlayerText": "Jogador Mais Violado", + "mostViolentPlayerText": "Jogador Mais Violento", + "moveText": "Mover", + "multiKillText": "MATOU ${COUNT}!!!", + "multiPlayerCountText": "${COUNT} jogadores", + "mustInviteFriendsText": "Nota: você deve convidar amigos no\npainel \"${GATHER}\" ou adicionar\ncontroles para jogar no multijogador.", + "nameBetrayedText": "${NAME} traiu ${VICTIM}.", + "nameDiedText": "${NAME} morreu.", + "nameKilledText": "${NAME} espancou ${VICTIM}.", + "nameNotEmptyText": "Nome não pode estar vazio!", + "nameScoresText": "${NAME} fez um ponto!", + "nameSuicideKidFriendlyText": "${NAME} acidentalmente morreu.", + "nameSuicideText": "${NAME} cometeu suicídio.", + "nameText": "Nome", + "nativeText": "Nativo", + "newExclaimText": "Novo!", + "newPersonalBestText": "Novo recorde pessoal!", + "newTestBuildAvailableText": "Uma nova versão de teste está disponível! (${VERSION} teste ${BUILD}).\nAdquira em ${ADDRESS}", + "newText": "Novo", + "newVersionAvailableText": "Uma nova versão de ${APP_NAME} está disponível! (${VERSION})", + "nextAchievementsText": "Próximas conquistas:", + "nextLevelText": "Próximo nível", + "noAchievementsRemainingText": "- nenhum", + "noContinuesText": "(sem continuar)", + "noExternalStorageErrorText": "Armazenamento externo não encontrado", + "noGameCircleText": "Erro: não conectado no GameCircle", + "noMessagesText": "Sem mensagens.", + "noPluginsInstalledText": "Nenhum Plugin instalado", + "noScoresYetText": "Ainda sem pontuação.", + "noServersFoundText": "Servidores não encontrados.", + "noThanksText": "Não, obrigado", + "noTournamentsInTestBuildText": "Atenção: As pontuações dos torneios desta compilação de teste serão ignoradas.", + "noValidMapsErrorText": "Nenhum mapa válido encontrado para este tipo de jogo.", + "notEnoughPlayersRemainingText": "Não há jogadores suficientes sobrando; saia e comece um novo jogo.", + "notEnoughPlayersText": "Você precisa de pelo menos ${COUNT} jogadores para começar o jogo!", + "notEnoughTicketsText": "Sem bilhetes suficientes!", + "notNowText": "Agora não", + "notSignedInErrorText": "Você deve iniciar sessão primeiro.", + "notSignedInGooglePlayErrorText": "Você deve iniciar sessão no Google Play primeiro.", + "notSignedInText": "sem sessão iniciada", + "notUsingAccountText": "Aviso: Ignorando a conta ${SERVICE}.\nVá em 'Conta -> Entrar com ${SERVICE}' se quiser usá-la.", + "nothingIsSelectedErrorText": "Nada foi selecionado!", + "numberText": "#${NUMBER}", + "offText": "Desativado", + "okText": "Certo", + "onText": "Ativado", + "oneMomentText": "Um Momento...", + "onslaughtRespawnText": "${PLAYER} vai renascer na onda ${WAVE}", + "openMeText": "Abra-Me!", + "openNowText": "Abrir Agora", + "openText": "Abrir", + "orText": "${A} ou ${B}", + "otherText": "Outro...", + "outOfText": "(#${RANK} de ${ALL})", + "ownFlagAtYourBaseWarning": "Sua própria bandeira deve estar\nem sua base para fazer um ponto!", + "partyWindow": { + "chatMessageText": "Mensagem do Chat", + "emptyText": "Seu grupo está vazio", + "hostText": "(anfitrião)", + "sendText": "Enviar", + "titleText": "Seu Grupo" + }, + "pausedByHostText": "(pausado pelo anfitrião)", + "perfectWaveText": "Onda Perfeita!", + "pickUpText": "Pegar", + "playModes": { + "coopText": "Cooperativo", + "freeForAllText": "Todos contra todos", + "multiTeamText": "Equipes múltiplas", + "singlePlayerCoopText": "Um jogador / Cooperativo", + "teamsText": "Equipes" + }, + "playText": "Jogar", + "playWindow": { + "oneToFourPlayersText": "1-4 jogadores", + "titleText": "Jogar", + "twoToEightPlayersText": "2-8 jogadores" + }, + "playerCountAbbreviatedText": "${COUNT}p", + "playerDelayedJoinText": "${PLAYER} entrará no começo da próxima rodada.", + "playerInfoText": "Info. do jogador", + "playerLeftText": "${PLAYER} saiu da partida.", + "playerLimitReachedText": "Limite de ${COUNT} jogadores atingido; entrada não permitida.", + "playerProfilesWindow": { + "cantDeleteAccountProfileText": "Você não pode excluir o seu perfil.", + "deleteButtonText": "Excluir\nPerfil", + "deleteConfirmText": "Excluir '${PROFILE}'?", + "editButtonText": "Editar\nPerfil", + "explanationText": "(personalize nomes e aparências do jogador para esta conta)", + "newButtonText": "Novo\nPerfil", + "titleText": "Perfis de Jogadores" + }, + "playerText": "Jogador", + "playlistNoValidGamesErrorText": "Esta playlist não contém nenhum jogo desbloqueado válido.", + "playlistNotFoundText": "playlist não encontrada", + "playlistText": "Playlist", + "playlistsText": "Playlists", + "pleaseRateText": "Se você está curtindo ${APP_NAME}, por favor, dê um tempinho\npara avaliar e comentar. Isso nos dá uma opinião útil\ne ajuda no desenvolvimento do jogo.\n\nobrigado!\n-eric", + "pleaseWaitText": "Por favor, aguarde...", + "pluginClassLoadErrorText": "Erro ao carregar a classe de um plugin '${PLUGIN}': ${ERROR}", + "pluginInitErrorText": "Erro ao inicializar plugin '${PLUGIN}': ${ERROR}", + "pluginSettingsText": "Configurações de Plugins", + "pluginsAutoEnableNewText": "Ativar Automaticamente Novos Plugins", + "pluginsDetectedText": "Novo(s) plugin(s) detetados. Reinicie o jogo para ativá-los ou configure-os nas configurações.", + "pluginsDisableAllText": "Desativar todos os Plugins!", + "pluginsEnableAllText": "Ativar todos os Plugins!", + "pluginsRemovedText": "${NUM} plugin(s) não foram encontrados.", + "pluginsText": "Plugins", + "practiceText": "Praticar", + "pressAnyButtonPlayAgainText": "Aperte qualquer botão para jogar novamente...", + "pressAnyButtonText": "Aperte qualquer botão para continuar...", + "pressAnyButtonToJoinText": "aperte qualquer botão para entrar...", + "pressAnyKeyButtonPlayAgainText": "Aperte qualquer tecla/botão para jogar novamente...", + "pressAnyKeyButtonText": "Aperte qualquer tecla/botão para continuar...", + "pressAnyKeyText": "Aperte qualquer tecla...", + "pressJumpToFlyText": "** Aperte saltar repetidamente para voar **", + "pressPunchToJoinText": "aperte SOCO para entrar...", + "pressToOverrideCharacterText": "aperte ${BUTTONS} para substituir o seu personagem", + "pressToSelectProfileText": "aperte ${BUTTONS} para selecionar um jogador", + "pressToSelectTeamText": "aperte ${BUTTONS} para selecionar uma equipe", + "promoCodeWindow": { + "codeText": "Código", + "enterText": "Entrar" + }, + "promoSubmitErrorText": "Erro ao enviar código; Verifique a sua conexão com a internet!", + "ps3ControllersWindow": { + "macInstructionsText": "Desligue a energia na parte traseira do seu PS3, verifique se\no Bluetooth do seu Mac está ativado, em seguida conecte o seu controle\nno seu Mac através de um cabo USB para emparelhar os dois. A partir daí, você\npode usar o botão home do controle para conectá-lo ao seu Mac\nseja por fio (USB) ou sem fio (Bluetooth).\n\nEm alguns Macs, uma senha pode ser solicitada ao emparelhar.\nSe isso acontecer, consulte o seguinte tutorial ou o Google para obter ajuda.\n\n\n\n\nOs controles de PS3 conectados sem fio devem aparecer na lista de\ndispositivos em Preferências do Sistema > Bluetooth. Você pode precisar remover\nda lista quando você quiser usar com o seu PS3 novamente.\n\nTambém certifique-se de desconectá-los do Bluetooth quando não estiver\nusando ou a bateria ficará acabando.\n\nBluetooth deve suportar até sete dispositivos conectados,\nembora a sua capacidade possa variar.", + "ouyaInstructionsText": "Para usar um controle de PS3 com seu OUYA, basta conectá-lo com um cabo USB\numa vez para emparelhá-lo. Fazer isso pode desconectar seus outros controles, por\nisso você deve, em seguida, reiniciar seu OUYA e desconectar o cabo USB.\n\nA partir de então você deve ser capaz de usar o botão HOME do controle para\nconectá-lo sem fio. Quando você terminar de jogar, pressione o botão HOME\npor 10 segundos para desligar o controle; caso contrário, pode permanecer ligado\ne desperdiçar bateria.", + "pairingTutorialText": "vídeo tutorial do emparelhamento", + "titleText": "Usando Controles de PS3 com ${APP_NAME}:" + }, + "punchBoldText": "SOCAR", + "punchText": "Socar", + "purchaseForText": "Compre por ${PRICE}", + "purchaseGameText": "Comprar jogo", + "purchaseNeverAvailableText": "Desculpe, as compras não estão disponíveis nesta versão.\nTente entrar em sua conta em outra plataforma e fazer compras nela", + "purchaseNotAvailableText": "Esta compra não está disponível.", + "purchasingText": "Comprando...", + "quitGameText": "Sair do ${APP_NAME}?", + "quittingIn5SecondsText": "Saindo em 5 segundos...", + "randomPlayerNamesText": "João,Maria,Anderson,Lucas,Roberto,César,Felipe,Pedro,Zézinho,Jaílson,Hélvio,Plínio,Clara,Lorena,Beatriz,Wandernilson,Marcos,Michele,Taís,Florentina,Tadeu,Teodoro,Gabriel,Joelma,Chimbinha,Lula,Dilma,Leonardo,Irene,Samanta,Gioconda,Guilhermina,Guilherme,Frederico,Bartolomeu,Dionísio,Diógenes,Haroldo,Ronaldinho,Ricardo,Selma,Bruna,Vanderlei,Danilo,Celso,Vitória,Denise,Samuel,Daniel,Gigi,Manuel,Wiz,Gretchen,Creusa,Chico,Leôncio,Leônidas,Washington,Cleusa,José,Joane,Severino,Casé,Carlos,Davi,Bianca,Clautila,Dafne,Jorge,Sandra,Armando,Basílio,Rochele,Camila,Débora,Rafael,Jonatan,Clodomiro,Clodovil,Vera,Simão,Raíssa,Toni,Tânia,Regina,Bela,Max,Maximiliano,Claudinei,Cláudio,Luciana,Anália,Aparecida,Marcelo,Flávio,Emílio,Tiago,Hebe,Ana,Beth,Gugu,Vítor,Nílton,Maurício,Marciano,Belquior,Clemente,Rosa,Rose,Rosemar,Gabriela,Sérgio,Antônio,Ben,Ivan,jamim,Abreu,Luís,Elton,Fabiana,Waldir,Wilson,Tainá,Tainara,Xuxa,Sacha,Teotônio,Téo,Valdirene,Laurindo,Priscila,Joaquim,Estevão,Gilmar,Erick,Gilson,Romário,Dunga,Ludmila,Luciano,Gilvan,Tamara,Carla,Zezé,Fernando,Fernanda,Adegesto,Acheropita,Anatalino,Lino,Araci,Marluci,Eusébio,Darcília,Dignatario,Ernesto,Cássio,Conrado,Fábio,Heitor,Ivan,Murilo,Andressa,Mateus,Otávio,Helena,Laís,Lavínia,Leila,Letícia,Nair,Henrique,Lara,Diogo,Diego,Geniclécio,Serafim,Lisa,Inri,Eusébio,Gerônimo,Bernardo,Bernadete,Henriete,Eliete,Fudêncio,Peruíbe,Tomás,Tomashedisso,Giovana,Prieto,Gabriely,Suélen,Jamily,Jamil,Geraldo,Nazareth,Forníco,Ícaro,Breno,Bruno,Cilmara,Nilza,Caio,Borges,Cleimara,Janeclécio,Iram,Tico,Teco,Genilson,Marlos,William,Nando,Nanda,Isabel,Jamal,Elias,Félix,Caroline,Carolina,Vilma,Rafaely,Tonho,Túnica,Miguel,Jones,Juan,Anastácio,Francisco,Xavier", + "randomText": "Aleatório", + "rankText": "Classificação", + "ratingText": "Avaliação", + "reachWave2Text": "Chegue a onda 2 para pontuar.", + "readyText": "pronto", + "recentText": "Recente", + "remoteAppInfoShortText": "${APP_NAME} é mais divertido quando é jogado com família e amigos.\nConecte um ou mais controles de hardware ou instale o aplicativo \n${REMOTE_APP_NAME} em telefones ou tablets para usá-los \ncomo controles.", + "remote_app": { + "app_name": "BombSquad Remote", + "app_name_short": "BSRemote", + "button_position": "Posição do botão", + "button_size": "Tamanho do botão", + "cant_resolve_host": "Não foi possível localizar o anfitrião.", + "capturing": "Aguardando...", + "connected": "Conectado.", + "description": "Use seu telefone ou tablet como controle com BombSquad.\nAté 8 dispositivos podem se conectar de uma vez para uma loucura épica de multijogador local em uma TV ou tablet.", + "disconnected": "Desconectado pelo servidor.", + "dpad_fixed": "fixo", + "dpad_floating": "Móvel", + "dpad_position": "Posição do direcional", + "dpad_size": "Tamanho do direcional", + "dpad_type": "Tipo de direcional", + "enter_an_address": "Insira um endereço", + "game_full": "A partida está cheia ou não aceita conexões.", + "game_shut_down": "A partida foi fechada.", + "hardware_buttons": "Botões físicos", + "join_by_address": "Entrar por endereço...", + "lag": "Lag: ${SECONDS} segundos", + "reset": "Restaurar padrão", + "run1": "Correr 1", + "run2": "Correr 2", + "searching": "Procurando partidas...", + "searching_caption": "Clique em uma partida para entrar.\nVeja se está na mesma rede Wi-Fi do jogo.", + "start": "Iniciar", + "version_mismatch": "Versão incompatível.\nCertifique-se que o BombSquad e o BombSquad Remote\nestão atualizados e tente novamente." + }, + "removeInGameAdsText": "Desbloqueie \"${PRO}\" na loja para remover anúncios dentro do jogo.", + "removeInGameAdsTokenPurchaseText": "OFERTA POR TEMPO LIMITADO: Compre QUALQUER pacote de tokens para remover anúncios no jogo.", + "renameText": "Renomear", + "replayEndText": "Terminar replay", + "replayNameDefaultText": "Replay do último jogo", + "replayReadErrorText": "Erro ao ler arquivo de replay.", + "replayRenameWarningText": "Renomeie \"${REPLAY}\" após uma partida caso queira salvá-lo; caso contrário será sobrescrito.", + "replayVersionErrorText": "Desculpe, este replay foi feito em uma versão\ndiferente do jogo e não pode ser usado.", + "replayWatchText": "Ver replay", + "replayWriteErrorText": "Erro ao gravar arquivo de replay.", + "replaysText": "Replays", + "reportPlayerExplanationText": "Use este e-mail para denunciar trapaças, linguagem inapropriada, ou outro comportamento ruim.\nPor favor, descreva abaixo:", + "reportThisPlayerCheatingText": "Trapaça", + "reportThisPlayerLanguageText": "Linguagem inapropriada", + "reportThisPlayerReasonText": "O que gostaria de denunciar?", + "reportThisPlayerText": "Denunciar este jogador", + "requestingText": "Solicitando...", + "restartText": "Reiniciar", + "retryText": "Tentar novamente", + "revertText": "Reverter", + "runText": "Correr", + "saveText": "Salvar", + "scanScriptsErrorText": "Erro(s) de verificação de scripts; consulte o registro para obter mais detalhes.", + "scanScriptsMultipleModulesNeedUpdatesText": "${PATH} e ${NUM} e outro(s) módulo(s) precisam de atualizações paro o api ${API}.", + "scanScriptsSingleModuleNeedsUpdatesText": "${PATH} precisa ser atualizado para api${API}.", + "scoreChallengesText": "Desafios de Pontuação", + "scoreListUnavailableText": "Lista de pontuação indisponível.", + "scoreText": "Pontuação", + "scoreUnits": { + "millisecondsText": "Milisegundos", + "pointsText": "Pontos", + "secondsText": "Segundos" + }, + "scoreWasText": "(foi ${COUNT})", + "selectText": "Selecionar", + "sendInfoDescriptionText": "Isto envia informações de sua conta e de estado de aplicativo para o desenvolvedor.\nPor favor inclua seu nome ou razão por ter feito isso.", + "seriesWinLine1PlayerText": "VENCEU A", + "seriesWinLine1TeamText": "VENCEU A", + "seriesWinLine1Text": "VENCEU A", + "seriesWinLine2Text": "SÉRIE!", + "settingsWindow": { + "accountText": "Conta", + "advancedText": "Avançado", + "audioText": "Áudio", + "controllersText": "Controles", + "graphicsText": "Gráficos", + "playerProfilesMovedText": "Nota: os perfis de jogador foram movidos à janela de Conta no menu principal.", + "titleText": "Configurações" + }, + "settingsWindowAdvanced": { + "alwaysUseInternalKeyboardDescriptionText": "(um simples teclado virtual compatível com controles para edição de texto)", + "alwaysUseInternalKeyboardText": "Sempre usar o teclado interno", + "benchmarksText": "Benchmarks e Testes de Estresse", + "devToolsText": "Ferramentas de Desenvolvedor", + "disableCameraGyroscopeMotionText": "Desativar movimento giroscópio da câmera", + "disableCameraShakeText": "Desativar tremida de câmera", + "disableThisNotice": "(você pode desativar este aviso em configurações avançadas)", + "enterPromoCodeText": "Inserir Código", + "forTestingText": "Nota: esses valores são somente para teste e serão perdidos assim que o aplicativo for fechado.", + "helpTranslateText": "As traduções do ${APP_NAME} são sustentadas pelo esforço\npúblico da comunidade. Se você gostaria de ajudar ou corrigir\numa tradução, siga o link a abaixo. Agradeço desde já!", + "insecureConnectionsDescriptionText": "não recomendado, mas talvez permita você poder jogar online\nde países ou redes restritas", + "insecureConnectionsText": "Usar conexões inseguras", + "kickIdlePlayersText": "Expulsar jogadores inativos", + "kidFriendlyModeText": "Modo para crianças (violência reduzida, etc)", + "languageText": "Idioma", + "moddingGuideText": "Guia para Modificar o Jogo", + "moddingToolsText": "Ferramentas de Modificação", + "mustRestartText": "Você deve reiniciar o jogo para isso ter efeito.", + "netTestingText": "Teste de Conexão", + "resetText": "Redefinir", + "sendInfoText": "Enviar Informação", + "showBombTrajectoriesText": "Mostrar trajetórias da bomba", + "showDemosWhenIdleText": "Mostrar demonstrações quando ocioso", + "showDeprecatedLoginTypesText": "Mostrar tipos de logins ultrapassados", + "showDevConsoleButtonText": "Mostrar opção de desenvolvedor", + "showInGamePingText": "Mostrar latência no jogo", + "showPlayerNamesText": "Mostrar nomes dos jogadores", + "showUserModsText": "Mostrar Caminho da Pasta de Modificações", + "titleText": "Avançado", + "translationEditorButtonText": "Abrir site de Traduções do ${APP_NAME}", + "translationFetchErrorText": "estado da tradução indisponível", + "translationFetchingStatusText": "verificando estado da tradução...", + "translationInformMe": "Avise me quando meu idioma precisar de atualizações", + "translationNoUpdateNeededText": "o seu idioma está atualizado; woohoo!", + "translationUpdateNeededText": "** o seu idioma precisa de atualizações!! **", + "vrTestingText": "Teste de RV" + }, + "shareText": "Compartilhar", + "sharingText": "Compartilhando...", + "showText": "Mostrar", + "signInForPromoCodeText": "Você deve iniciar sia sessão em uma conta para que os códigos promocionais funcionem.", + "singleGamePlaylistNameText": "Somente ${GAME}", + "singlePlayerCountText": "1 jogador", + "sizeLargeText": "Grande", + "sizeMediumText": "Médio", + "sizeSmallText": "Pequeno", + "soloNameFilterText": "Solo ${NAME}", + "soundtrackTypeNames": { + "CharSelect": "Seleção de personagens", + "Chosen One": "O Escolhido", + "Epic": "Partidas no modo épico", + "Epic Race": "Corrida épica", + "FlagCatcher": "Capture a bandeira", + "Flying": "Pensamentos felizes", + "Football": "Futebol americano", + "ForwardMarch": "Assalto", + "GrandRomp": "Conquista", + "Hockey": "Hóquei", + "Keep Away": "Fique longe", + "Marching": "Casa dos degrais", + "Menu": "Menu principal", + "Onslaught": "Embate", + "Race": "Corrida", + "Scary": "Rei da Colina", + "Scores": "Tela de pontuação", + "Survival": "Eliminatória", + "ToTheDeath": "Mata-mata", + "Victory": "Tela de Pontuação Final" + }, + "spaceKeyText": "espaço", + "statsText": "Estatísticas", + "stopRemindingMeText": "Pare de me lembrar", + "storagePermissionAccessText": "É necessário acesso ao armazenamento", + "store": { + "alreadyOwnText": "Você já possui ${NAME}!", + "bombSquadProNameText": "${APP_NAME} Pro", + "bombSquadProNewDescriptionText": "• Remove anúncios no jogo\n• Desbloqueia mais opções do jogo\n• E também inclui:", + "buyText": "Comprar", + "charactersText": "Personagens", + "comingSoonText": "Em breve...", + "extrasText": "Extras", + "holidaySpecialText": "Especial de feriado", + "howToSwitchCharactersText": "(vá para \"${SETTINGS} -> ${PLAYER_PROFILES}\" para atribuir e personalizar personagens)", + "howToUseIconsText": "(crie perfis globais - na janela de conta - para usá-los)", + "howToUseMapsText": "(use estes mapas em suas próprias playlist de equipes/todos contra todos)", + "iconsText": "Ícones", + "loadErrorText": "Não foi possível carregar a página.\nVerifique a sua conexão com a internet.", + "loadingText": "carregando", + "mapsText": "Mapas", + "miniGamesText": "Minijogos", + "oneTimeOnlyText": "(somente uma vez)", + "purchaseAlreadyInProgressText": "A compra deste item já está em progresso.", + "purchaseConfirmText": "Comprar ${ITEM}?", + "purchaseNotValidError": "A compra não é valida.\nEntre em contato com ${EMAIL} se isso foi um erro.", + "purchaseText": "Comprar", + "saleBundleText": "Venda de pacotes!", + "saleExclaimText": "Promoção!", + "salePercentText": "(${PERCENT}% de desconto)", + "saleText": "PROMOÇÃO", + "searchText": "Buscar", + "teamsFreeForAllGamesText": "Jogos em equipes / Todos contra todos", + "totalWorthText": "*** Apenas ${TOTAL_WORTH}! ***", + "upgradeQuestionText": "Atualizar?", + "winterSpecialText": "Especial de Inverno", + "youOwnThisText": "- você tem isso -" + }, + "storeDescriptionText": "Loucura total com até 8 jogadores!\n\nExploda seus amigos (ou o computador) em um torneio de minijogos desafiadores como Capture a bandeira, Hóquei bombástico e Mata-mata em câmera lenta épica!\n\nControles normais e controles externos possibilitam jogar com até 8 pessoas no mesmo aparelho; você também pode usar outros aparelhos como controles externos usando o aplicativo grátis ‘BombSquad Remote’!\n\nCuidado com as bombas!\n\nDê uma olhada em www.froemling.net/bombsquad para ficar ligado nas novidades.", + "storeDescriptions": { + "blowUpYourFriendsText": "Exploda seus amigos.", + "competeInMiniGamesText": "Compita em minijogos que vão de corridas a voos.", + "customize2Text": "Personalize personagens, minijogos e até mesmo a trilha sonora.", + "customizeText": "Personalize personagens e crie sua própria playlist de minijogos.", + "sportsMoreFunText": "Esportes são mais divertidos com explosivos.", + "teamUpAgainstComputerText": "Una-se a outros contra o computador." + }, + "storeText": "Loja", + "submitText": "Enviar", + "submittingPromoCodeText": "Enviando código promocional...", + "successText": "Sucesso!", + "supportEmailText": "Se estiver passando por problemas com o aplicativo, \nenvie um e-mail para ${EMAIL}.", + "teamNamesColorText": "Nome/Cores das Equipes...", + "telnetAccessGrantedText": "Acesso ao Telnet ativado.", + "telnetAccessText": "Acesso ao Telnet detectado; permitir?", + "testBuildErrorText": "Esta versão de teste não é mais compatível; por favor, confira uma nova versão.", + "testBuildText": "Versão de Teste", + "testBuildValidateErrorText": "Não foi possível validar esta versão. (sem conexão com a internet?)", + "testBuildValidatedText": "Versão de Teste Validada; Divirta-se!", + "thankYouText": "Obrigado pelo seu apoio! Aproveite o jogo!!", + "threeKillText": "MATOU TRÊS!!", + "ticketsDescriptionText": "Os bilhetes podem ser usados para desbloquear personagens,\nmapas, minijogos e muito mais na loja.\n\nOs bilhetes podem ser encontrados em baús obtidos através\nde campanhas, torneios e conquistas.", + "timeBonusText": "Bônus de tempo", + "timeElapsedText": "Tempo Decorrido", + "timeExpiredText": "Tempo Expirado", + "timeSuffixDaysText": "${COUNT}d", + "timeSuffixHoursText": "${COUNT}h", + "timeSuffixMinutesText": "${COUNT}m", + "timeSuffixSecondsText": "${COUNT}s", + "tipText": "Dica", + "titleText": "BombSquad", + "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "Obter tokens", + "notEnoughTokensText": "Não há Tokens suficientes!", + "numTokensText": "${COUNT} Tokens", + "openNowDescriptionText": "Você possui tokens suficientes\npara abri-lo agora - você não\nprecisa esperar.", + "shinyNewCurrencyText": "A nova moeda brilhante do BombSquad.", + "tokenPack1Text": "Pacote de tokens pequenos", + "tokenPack2Text": "Pacote de tokens médio", + "tokenPack3Text": "Pacote Grande de Tokens", + "tokenPack4Text": "Pacote de Tokens Jumbo", + "tokensDescriptionText": "Os tokens são usados para acelerar a abertura de baús\ne para outros recursos do jogo e da conta.\n\nVocê pode ganhar tokens no jogo ou comprá-los\nem pacotes. Ou adquira um Gold Pass para tokens infinitos\ne nunca mais se preocupe com eles.", + "youHaveGoldPassText": "Você tem um Passe Dourado.\nTodas as compras de tokens são gratuitas.\nAproveite!" + }, + "topFriendsText": "Melhores amigos", + "tournamentCheckingStateText": "Verificando o estado do torneio; espere um momento...", + "tournamentEndedText": "Este torneio foi finalizado. Um novo começará em breve.", + "tournamentEntryText": "Entrada para o torneio", + "tournamentFinalStandingsText": "Classificação final", + "tournamentResultsRecentText": "Resultados recentes do torneio.", + "tournamentStandingsText": "Classificação do torneio", + "tournamentText": "Torneio", + "tournamentTimeExpiredText": "O tempo do torneio expirou.", + "tournamentsDisabledWorkspaceText": "Os torneios são desabilitados quando os espaços de trabalho estão ativos.\nPara reativar os torneios, desative seu espaço de trabalho e reinicie.", + "tournamentsText": "Torneios", + "translations": { + "characterNames": { + "Agent Johnson": "Agente Johnson", + "B-9000": "B-9000", + "Bernard": "Bernardo", + "Bones": "Ossos", + "Butch": "Butch", + "Easter Bunny": "Coelho da Páscoa", + "Flopsy": "Flopsy", + "Frosty": "Frosty", + "Gretel": "Gretel", + "Grumbledorf": "Grumboldor", + "Jack Morgan": "Jack Morgan", + "Kronk": "Kronk", + "Lee": "Lee", + "Lucky": "Lucky", + "Mel": "Mel", + "Middle-Man": "Homenzinho", + "Minimus": "Minimus", + "Pascal": "Pascal", + "Pixel": "Pixel", + "Sammy Slam": "Sammy Slam", + "Santa Claus": "Papai Noel", + "Snake Shadow": "Serpente Sombria", + "Spaz": "Spaz", + "Taobao Mascot": "Mascote Taobao", + "Todd McBurton": "Todd McBurton", + "Zoe": "Zoe", + "Zola": "Zola" + }, + "coopLevelNames": { + "${GAME} Training": "Treinamento de ${GAME}", + "Infinite ${GAME}": "${GAME} Infinito", + "Infinite Onslaught": "Embate Infinito", + "Infinite Runaround": "Evasiva Infinita", + "Onslaught Training": "Embate Treinamento", + "Pro ${GAME}": "${GAME} Pro", + "Pro Football": "Futebol americano Pro", + "Pro Onslaught": "Embate Pro", + "Pro Runaround": "Evasiva Pro", + "Rookie ${GAME}": "${GAME} Amador", + "Rookie Football": "Futebol Americano Amador", + "Rookie Onslaught": "Embate Amador", + "The Last Stand": "O Sobrevivente", + "Uber ${GAME}": "${GAME} Elite", + "Uber Football": "Futebol Americano Elite", + "Uber Onslaught": "Embate Elite", + "Uber Runaround": "Evasiva Elite" + }, + "displayItemNames": { + "${C} Tickets": "${C} Bilhetes", + "${C} Tokens": "${C} Tokens", + "Chest": "Baú", + "L1 Chest": "Baú L1", + "L2 Chest": "Baú L2", + "L3 Chest": "Baú L3", + "L4 Chest": "Baú L4", + "L5 Chest": "Baú L5", + "L6 Chest": "Baú L6", + "Unknown Chest": "Baú Desconhecido" + }, + "gameDescriptions": { + "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Seja o escolhido por um período de tempo para vencer.\nElimine o escolhido para se tornar ele.", + "Bomb as many targets as you can.": "Bombardeie o máximo de alvos que você puder.", + "Carry the flag for ${ARG1} seconds.": "Carregue a bandeira por ${ARG1} segundos.", + "Carry the flag for a set length of time.": "Carregue a bandeira por um tempo determinado.", + "Crush ${ARG1} of your enemies.": "Esmague ${ARG1} de seus inimigos.", + "Defeat all enemies.": "Derrote todos inimigos.", + "Dodge the falling bombs.": "Esquive das bombas caindo.", + "Final glorious epic slow motion battle to the death.": "Épica gloriosa batalha final até a morte em câmera lenta.", + "Gather eggs!": "Recolha os ovos!", + "Get the flag to the enemy end zone.": "Pegue a bandeira no final da zona inimiga.", + "How fast can you defeat the ninjas?": "Quão rápido você pode derrotar os ninjas?", + "Kill a set number of enemies to win.": "Mate um determinado número de inimigos para vencer.", + "Last one standing wins.": "Último em pé vence.", + "Last remaining alive wins.": "Último sobrevivente vence.", + "Last team standing wins.": "Última equipe de pé vence.", + "Prevent enemies from reaching the exit.": "Impeça que os inimigos alcancem a saída.", + "Reach the enemy flag to score.": "Alcance a bandeira inimiga para marcar.", + "Return the enemy flag to score.": "Retorne a bandeira inimiga para marcar.", + "Run ${ARG1} laps.": "Corra ${ARG1} voltas.", + "Run ${ARG1} laps. Your entire team has to finish.": "Corra ${ARG1} voltas. Toda a sua equipe precisa terminar.", + "Run 1 lap.": "Corra 1 volta.", + "Run 1 lap. Your entire team has to finish.": "Corra 1 volta. Toda a sua equipe precisa terminar.", + "Run real fast!": "Corra muito rápido!", + "Score ${ARG1} goals.": "Marque ${ARG1} gols.", + "Score ${ARG1} touchdowns.": "Marque ${ARG1} touchdowns.", + "Score a goal.": "Marque um gol.", + "Score a touchdown.": "Marque um touchdown.", + "Score some goals.": "Marque alguns gols.", + "Secure all ${ARG1} flags.": "Proteja todas as ${ARG1} bandeiras.", + "Secure all flags on the map to win.": "Proteja todas as bandeiras no mapa para vencer.", + "Secure the flag for ${ARG1} seconds.": "Proteja a bandeira por ${ARG1} segundos.", + "Secure the flag for a set length of time.": "Proteja a bandeira por um determinado período de tempo.", + "Steal the enemy flag ${ARG1} times.": "Roube a bandeira do inimigo ${ARG1} vezes.", + "Steal the enemy flag.": "Roube a bandeira do inimigo.", + "There can be only one.": "Só pode existir um.", + "Touch the enemy flag ${ARG1} times.": "Toque a bandeira inimiga ${ARG1} vezes.", + "Touch the enemy flag.": "Toque a bandeira inimiga.", + "carry the flag for ${ARG1} seconds": "carregue a bandeira por ${ARG1} segundos", + "kill ${ARG1} enemies": "mate ${ARG1} inimigos", + "last one standing wins": "último em pé vence", + "last team standing wins": "última equipe de pé vence", + "return ${ARG1} flags": "retorne ${ARG1} bandeiras.", + "return 1 flag": "retorne 1 bandeira", + "run ${ARG1} laps": "corra ${ARG1} voltas", + "run 1 lap": "corra 1 volta", + "score ${ARG1} goals": "marque ${ARG1} gols", + "score ${ARG1} touchdowns": "marque ${ARG1} touchdowns", + "score a goal": "marque um gol", + "score a touchdown": "marque um touchdown", + "secure all ${ARG1} flags": "Proteja todas ${ARG1} bandeiras", + "secure the flag for ${ARG1} seconds": "Proteja a bandeira por ${ARG1} segundos", + "touch ${ARG1} flags": "toque ${ARG1} bandeiras", + "touch 1 flag": "toque uma bandeira" + }, + "gameNames": { + "Assault": "Assalto", + "Capture the Flag": "Capture a Bandeira", + "Chosen One": "O Escolhido", + "Conquest": "Conquista", + "Death Match": "Mata-mata", + "Easter Egg Hunt": "Caça aos ovos de Páscoa", + "Elimination": "Eliminatória", + "Football": "Futebol americano", + "Hockey": "Hóquei", + "Keep Away": "Fique longe", + "King of the Hill": "Rei da colina", + "Meteor Shower": "Chuva de meteoros", + "Ninja Fight": "Luta ninja", + "Onslaught": "Embate", + "Race": "Corrida", + "Runaround": "Evasiva", + "Target Practice": "Treino de Alvo", + "The Last Stand": "O Sobrevivente" + }, + "inputDeviceNames": { + "Keyboard": "Teclado", + "Keyboard P2": "Teclado P2" + }, + "languages": { + "Arabic": "Árabe", + "Belarussian": "Bielorrusso", + "Chinese": "Chinês - Simplificado ", + "ChineseSimplified": "Chinês - Simplificado", + "ChineseTraditional": "Chinês - Tradicional", + "Croatian": "Croata", + "Czech": "Tcheco", + "Danish": "Dinamarquês", + "Dutch": "Holandês", + "English": "Inglês", + "Esperanto": "Esperanto", + "Filipino": "Filipino", + "Finnish": "Finlandês", + "French": "Francês", + "German": "Alemão", + "Gibberish": "Embromation", + "Greek": "Grego", + "Hindi": "Hindu", + "Hungarian": "Húngaro", + "Indonesian": "Indonésio", + "Italian": "Italiano", + "Japanese": "Japonês", + "Korean": "Coreano", + "Malay": "Malaio", + "Persian": "Persa", + "PirateSpeak": "Piratês", + "Polish": "Polonês", + "Portuguese": "Português", + "PortugueseBrazil": "Português - Brasil", + "PortuguesePortugal": "Português - Portugal", + "Romanian": "Romeno", + "Russian": "Russo", + "Serbian": "Sérvio", + "Slovak": "Eslovaco", + "Spanish": "Espanhol", + "SpanishLatinAmerica": "Espanhol - América Latina", + "SpanishSpain": "Espanhol - Espanha", + "Swedish": "Sueco", + "Tamil": "tâmil", + "Thai": "Tailandês", + "Turkish": "Turco", + "Ukrainian": "Ucraniano", + "Venetian": "Veneziano", + "Vietnamese": "Vietnamita" + }, + "leagueNames": { + "Bronze": "Bronze", + "Diamond": "Diamante", + "Gold": "Ouro", + "Silver": "Prata" + }, + "mapsNames": { + "Big G": "Grande G", + "Bridgit": "Bridgit", + "Courtyard": "Pátio", + "Crag Castle": "Castelo Crag", + "Doom Shroom": "Cogumelo da Morte", + "Football Stadium": "Estádio de Futebol", + "Happy Thoughts": "Pensamentos felizes", + "Hockey Stadium": "Estádio de hóquei", + "Lake Frigid": "Lago Frígido", + "Monkey Face": "Cara de macaco", + "Rampage": "Tumulto", + "Roundabout": "Evasiva", + "Step Right Up": "Degrau acima", + "The Pad": "The Pad", + "Tip Top": "Tip Top", + "Tower D": "Torre D", + "Zigzag": "Ziguezague" + }, + "playlistNames": { + "Just Epic": "Somente épico", + "Just Sports": "Somente esportes" + }, + "scoreNames": { + "Flags": "Bandeiras", + "Goals": "Gols", + "Score": "Placar", + "Survived": "Sobreviveu", + "Time": "Tempo", + "Time Held": "Tempo realizado" + }, + "serverResponses": { + "A code has already been used on this account.": "Um código já está sendo usado nesta conta.", + "A reward has already been given for that address.": "Uma recompensa já foi dada para este endereço.", + "Account linking successful!": "A conta foi vinculada com êxito!", + "Account unlinking successful!": "Conta desvinculada com êxito!", + "Accounts are already linked.": "As contas já estão vinculadas.", + "Ad view could not be verified.\nPlease be sure you are running an official and up-to-date version of the game.": "Não foi possível verificar a visualização do anúncio.\nCertifique-se de que está executando uma versão oficial e atualizada do jogo.", + "An error has occurred; (${ERROR})": "Ocorreu um erro; (${ERROR})", + "An error has occurred; please contact support. (${ERROR})": "Ocorreu um erro; entre em contato com a assistência. (${ERROR})", + "An error has occurred; please contact support@froemling.net.": "Ocorreu um erro; por favor, entre em contato com support@froemling.net.", + "An error has occurred; please try again later.": "Aconteceu um erro; tente novamente mais tarde.", + "Are you sure you want to link these accounts?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\nThis cannot be undone!": "Tem certeza de que deseja vincular estas contas?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\nIsso não poderá ser desfeito!", + "BombSquad Pro unlocked!": "BombSquado Pro desbloqueado!", + "Can't link 2 accounts of this type.": "Não é possível vincular duas contas deste tipo.", + "Can't link 2 diamond league accounts.": "Não é possível vincular duas contas de liga diamante.", + "Can't link; would surpass maximum of ${COUNT} linked accounts.": "Impossível vincular; ultrapassaria o máximo de ${COUNT} contas vinculadas.", + "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Trapaça detectada; pontuação e prêmios suspensos por ${COUNT} dias.", + "Could not establish a secure connection.": "Não foi possível estabelecer uma conexão segura.", + "Daily maximum reached.": "Máximo diário atingido.", + "Daily sign-in reward": "Recompensa de inscrição diária", + "Entering tournament...": "Entrando no torneio...", + "Invalid code.": "Código invalido.", + "Invalid payment; purchase canceled.": "Pagamento inválido; compra cancelada.", + "Invalid promo code.": "Código promocional invalido.", + "Invalid purchase.": "Compra inválida.", + "Invalid tournament entry; score will be ignored.": "Entrada errada de treinamento; pontuação será ignorada.", + "Item unlocked!": "Item unlocked", + "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "VINCULAÇÃO NEGADA. ${ACCOUNT} contém\ndados significativos que TODOS SERÃO PERDIDOS.\nVocê pode vincular na ordem oposta se desejar\n(e em vez disso perca os dados desta conta)", + "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "Vincular conta ${ACCOUNT} com essa conta?\nTodo o progresso em ${ACCOUNT} será perdido.\nIsso não pode ser desfeito. Tem certeza?", + "Longer streaks lead to better rewards.": "Sequências mais longas levam a recompensas melhores.", + "Max number of playlists reached.": "Número máximo de playlists alcançado.", + "Max number of profiles reached.": "Número máximo de perfis alcançado.", + "Maximum friend code rewards reached.": "Máximo de recompensas de códigos de amigos atingido.", + "Message is too long.": "A mensagem é muito longa.", + "New tournament result!": "Novo resultado do torneio!", + "No servers are available. Please try again soon.": "Nenhum servidor está disponível. Por favor, tente novamente mais tarde.", + "No slots available. Free a slot and try again.": "Nenhum slot disponível. Libere um slot e tente novamente.", + "Profile \"${NAME}\" upgraded successfully.": "Perfil \"${NAME}\" atualizado com sucesso.", + "Profile could not be upgraded.": "Perfil não pôde ser criado.", + "Purchase successful!": "Compra feita com êxito!", + "Received ${COUNT} tickets for signing in.\nCome back tomorrow to receive ${TOMORROW_COUNT}.": "Recebeu ${COUNT} tickets por entrar.\nVolte amanhã para receber ${TOMORROW_COUNT}.", + "Server functionality is no longer supported in this version of the game;\nPlease update to a newer version.": "A funcionalidade do servidor não é mais compatível nesta versão do jogo;\nPor favor, atualize-o para uma versão mais recente.", + "Sorry, there are no uses remaining on this code.": "Desculpe, não há mais usos remanescentes neste código.", + "Sorry, this code has already been used.": "Desculpe, este código já foi usado.", + "Sorry, this code has expired.": "Desculpe, este código já expirou.", + "Sorry, this code only works for new accounts.": "Desculpe, este código só funciona para novas contas.", + "Sorry, this has expired.": "Desculpe, isso expirou.", + "Still searching for nearby servers; please try again soon.": "Ainda à procura por servidores próximos; tente novamente mais tarde.", + "Streak: ${NUM} days": "Sequência: ${NUM} dias", + "Temporarily unavailable; please try again later.": "Não disponível; por favor, tente novamente mais tarde.", + "The tournament ended before you finished.": "O torneio acabou antes de você terminar.", + "This account cannot be unlinked for ${NUM} days.": "Esta conta não pode ser desvinculada por ${NUM} dias.", + "This code cannot be used on the account that created it.": "Este código não pode ser usado pela conta que o criou.", + "This is currently unavailable; please try again later.": "Isso está atualmente indisponível; por favor tente mais tarde.", + "This requires version ${VERSION} or newer.": "Isso requer a versão ${VERSION} ou novo.", + "Tournaments disabled due to rooted device.": "Torneios desativados devido ao dispositivo estar rooteado.", + "Tournaments require ${VERSION} or newer": "Torneios requerem ${VERSION} ou mais recente", + "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "Desvincular ${ACCOUNT} dessa conta?\nTodo o progresso em ${ACCOUNT} será reiniciado.\n(exceto por conquistas em alguns casos)", + "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "ATENÇÃO: denúncias sobre você estar usando hack foram feitas.\nContas que usam hack serão banidas. Por favor, jogue limpo.", + "Wait reduced!": "Tempo de espera reduzido!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "Aviso: Esta versão do jogo é limitada a dados da conta antigos; algumas coisas podem aparecer ausentes ou desatualizadas.\nPor favor atualize para uma versão mais nova do jogo para ver os dados mais recentes da sua conta.", + "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "Gostaria de vincular a sua conta de dispositivo com esta?\n\nA sua conta de dispositivo é ${ACCOUNT1}\nEsta conta é ${ACCOUNT2}\n\nIsso permitirá que você mantenha seu progresso atual.\nAviso: isso não pode ser desfeito!", + "You already own this!": "Você já possui isso.", + "You can join in ${COUNT} seconds.": "Você poderá entrar em ${COUNT} segundos", + "You don't have enough tickets for this!": "Você não tem bilhetes suficientes para isso!", + "You don't own that.": "Você não comprou isso.", + "You got ${COUNT} tickets!": "Você obteve ${COUNT} tickets!", + "You got ${COUNT} tokens!": "Você ganhou ${COUNT} tokens!", + "You got a ${ITEM}!": "Você ganhou ${ITEM}!", + "You got a chest!": "Você ganhou um baú!", + "You got an achievement reward!": "Você ganhou uma recompensa por conquista!", + "You have been promoted to a new league; congratulations!": "Você foi promovido a uma nova liga; parabéns!", + "You lost a chest! (All your chest slots were full)": "Você perdeu um baú! (Todos os seus espaços de baú estavam cheios)", + "You must update the app to view this.": "Você deve atualizar o aplicativo para visualizar isso.", + "You must update to a newer version of the app to do this.": "Você deve atualizar para uma nova versão do aplicativo para fazer isso.", + "You must update to the newest version of the game to do this.": "Você deve atualizar para a nova versão do jogo para fazer isso.", + "You must wait a few seconds before entering a new code.": "Você deve esperar alguns segundos antes de inserir um novo código.", + "You placed #${RANK} in a tournament!": "Você ficou com #${RANK} em um torneio!", + "You ranked #${RANK} in the last tournament. Thanks for playing!": "Você teve a classificação #${RANK} no último torneio. Obrigado por jogar!", + "Your account was rejected. Are you signed in?": "Sua conta foi rejeitada. Você iniciou a sessão?", + "Your ad views are not registering. Ad options will be limited for a while.": "Suas visualizações de anúncio não estão registrando. As opções de anúncio serão limitadas por um tempo.", + "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Sua copia do jogo foi modificada.\nReverta as modificações e tente novamente.", + "Your friend code was used by ${ACCOUNT}": "Seu código de amigo foi usado por ${ACCOUNT}" + }, + "settingNames": { + "1 Minute": "1 minuto", + "1 Second": "1 segundo", + "10 Minutes": "10 minutos", + "2 Minutes": "2 minutos", + "2 Seconds": "2 segundos", + "20 Minutes": "20 minutos", + "4 Seconds": "4 segundos", + "5 Minutes": "5 minutos", + "8 Seconds": "8 segundos", + "Allow Negative Scores": "Permitir Pontuação Negativa", + "Balance Total Lives": "Saldo Total de Vidas", + "Bomb Spawning": "Bombas Surgindo", + "Chosen One Gets Gloves": "O escolhido obtém luvas", + "Chosen One Gets Shield": "O escolhido obtém escudo", + "Chosen One Time": "Hora do Escolhido", + "Enable Impact Bombs": "Ativar bombas de impacto", + "Enable Triple Bombs": "Ativar tribombas", + "Entire Team Must Finish": "A equipe inteira precisa terminar", + "Epic Mode": "Modo Épico", + "Flag Idle Return Time": "Tempo para Retornar a Bandeira Inativa", + "Flag Touch Return Time": "Tempo para Retornar a Bandeira", + "Hold Time": "Tempo de retenção", + "Kills to Win Per Player": "Mortes para Ganhar Por Jogador", + "Laps": "Voltas", + "Lives Per Player": "Vidas por jogador", + "Long": "Longo", + "Longer": "Mais longo", + "Mine Spawning": "Minas surgindo", + "No Mines": "Sem minas", + "None": "Nenhum", + "Normal": "Normal", + "Pro Mode": "Modo Pro", + "Respawn Times": "Contagem de Renascimentos", + "Score to Win": "Pontuação para Ganhar", + "Short": "Curto", + "Shorter": "Mais curto", + "Solo Mode": "Modo Solo", + "Target Count": "Número de Alvos", + "Time Limit": "Limite de Tempo" + }, + "statements": { + "${TEAM} is disqualified because ${PLAYER} left": "${TEAM} está em desvantagem porque ${PLAYER} saiu", + "Killing ${NAME} for skipping part of the track!": "Matando ${NAME} por cortar o caminho!", + "Warning to ${NAME}: turbo / button-spamming knocks you out.": "Aviso para ${NAME}: o turbo / spam de botão faz você sair." + }, + "teamNames": { + "Bad Guys": "Inimigos", + "Blue": "Azul", + "Good Guys": "Aliados", + "Red": "Vermelho" + }, + "tips": { + "A perfectly timed running-jumping-spin-punch can kill in a single hit\nand earn you lifelong respect from your friends.": "Se você bater, correr, pular e girar em perfeita sincronia poderá matar\nem um único golpe e garantir o respeito eterno de seus amigos.", + "Always remember to floss.": "Lembre-se de sempre usar fio dental.", + "Create player profiles for yourself and your friends with\nyour preferred names and appearances instead of using random ones.": "Crie perfis de jogadores para você e seus amigos com\nseus nomes preferidos e aparências ao invés de usar os aleatórios.", + "Curse boxes turn you into a ticking time bomb.\nThe only cure is to quickly grab a health-pack.": "Caixas amaldiçoadas o transformam em uma bomba-relógio.\nA única cura é agarrar rapidamente um pacote de saúde.", + "Despite their looks, all characters' abilities are identical,\nso just pick whichever one you most closely resemble.": "Apesar de suas aparências, as habilidades de todos os personagens são idênticas,\nentão basta escolher qualquer um que você mais se assemelha.", + "Don't get too cocky with that energy shield; you can still get yourself thrown off a cliff.": "Não fique muito convencido com o escudo de energia; você ainda pode ser arremessado de um penhasco.", + "Don't run all the time. Really. You will fall off cliffs.": "Não corra o tempo todo. Sério. Você vai cair de penhascos.", + "Don't spin for too long; you'll become dizzy and fall.": "Não gire por muito tempo; você vai ficar tonto e cair!", + "Hold any button to run. (Trigger buttons work well if you have them)": "Pressione qualquer botão para correr. (Botões de gatilho funcionam bem, se os tiver)", + "Hold down any button to run. You'll get places faster\nbut won't turn very well, so watch out for cliffs.": "Mantenha pressionado qualquer botão para correr. Você vai alcançar lugares mais\nrapidamente, mas não vai fazer curvas muito bem, por isso esteja atento para penhascos.", + "Ice bombs are not very powerful, but they freeze\nwhoever they hit, leaving them vulnerable to shattering.": "As bombas de gelo não são muito poderosas, mas elas congelam\nquem for atingido, deixando-os vulneráveis ​​a estilhaçamentos.", + "If someone picks you up, punch them and they'll let go.\nThis works in real life too.": "Se alguém te levantar, soque-o e ele irá te largar.\nIsso também funciona na vida real.", + "If you are short on controllers, install the '${REMOTE_APP_NAME}' app\non your mobile devices to use them as controllers.": "Se você está sem controles, instale o aplicativo '${REMOTE_APP_NAME}'\nem seus dispositivos móveis para usá-los como controles.", + "If you get a sticky-bomb stuck to you, jump around and spin in circles. You might\nshake the bomb off, or if nothing else your last moments will be entertaining.": "Se você tiver uma bomba grudenta presa em você, salte e gire em círculos. Você pode\nsacudir a bomba para fora ou, pelo menos, seus últimos momentos serão divertidos.", + "If you kill an enemy in one hit you get double points for it.": "Se você matar um inimigo com um golpe, você obtêm o dobro de pontos por isso.", + "If you pick up a curse, your only hope for survival is to\nfind a health powerup in the next few seconds.": "Se você pegar uma maldição, sua única esperança de sobrevivência é\nencontrar um poder de saúde nos próximos segundos.", + "If you stay in one place, you're toast. Run and dodge to survive..": "Se você ficar em um lugar, você está frito. Corra e se esquive para sobreviver.", + "If you've got lots of players coming and going, turn on 'auto-kick-idle-players'\nunder settings in case anyone forgets to leave the game.": "Se você tem muitos jogadores entrando e saindo, ligue 'Expulsar Jogadores Ociosos Automaticamente'\nnas configurações no caso de alguém esquecer de deixar o jogo.", + "If your device gets too warm or you'd like to conserve battery power,\nturn down \"Visuals\" or \"Resolution\" in Settings->Graphics": "Se seu dispositivo ficar muito quente ou você quiser conservar bateria,\nabaixe os \"Visuais\" ou \"Resolução\" nas Configurações-> Graficos", + "If your framerate is choppy, try turning down resolution\nor visuals in the game's graphics settings.": "Se sua taxa de quadros estiver baixa, tente diminuir a resolução\nou visuais nas configurações gráficas do jogo.", + "In Capture-the-Flag, your own flag must be at your base to score, If the other\nteam is about to score, stealing their flag can be a good way to stop them.": "Em Capture a bandeira, a sua própria bandeira deve estar em sua base para marcar. Se a outra\nequipe está prestes a marcar, roubar a sua bandeira pode ser uma boa maneira de detê-los.", + "In hockey, you'll maintain more speed if you turn gradually.": "No hóquei, você manterá mais velocidade se girar gradualmente.", + "It's easier to win with a friend or two helping.": "É mais fácil ganhar com um ou dois amigos ajudando.", + "Jump just as you're throwing to get bombs up to the highest levels.": "Apenas salte enquanto você está arremessando para conseguir bombas até os níveis mais altos.", + "Land-mines are a good way to stop speedy enemies.": "Minas terrestres são uma boa maneira de parar inimigos rápidos.", + "Many things can be picked up and thrown, including other players. Tossing\nyour enemies off cliffs can be an effective and emotionally fulfilling strategy.": "Muitas coisas podem ser apanhadas e lançadas, incluindo outros jogadores. Jogar\nos seus inimigos de penhascos pode ser uma estratégia eficaz e emocionalmente gratificante.", + "No, you can't get up on the ledge. You have to throw bombs.": "Não, você não pode levantar-se na borda. Você tem que jogar bombas.", + "Players can join and leave in the middle of most games,\nand you can also plug and unplug controllers on the fly.": "Jogadores podem entrar e sair no meio da maioria dos jogos,\ne você também pode ligar ou desligar controles quando quiser.", + "Practice using your momentum to throw bombs more accurately.": "Pratique usando a inércia para arremessar bombas com maior precisão.", + "Punches do more damage the faster your fists are moving,\nso try running, jumping, and spinning like crazy.": "Socos fazem mais danos quanto mais rápido os punhos estão se movendo,\nentão tente correr, pular e girar como um louco.", + "Run back and forth before throwing a bomb\nto 'whiplash' it and throw it farther.": "Corra para frente e para trás antes de arremessar uma bomba\npara 'chicoteá-la' e jogá-la longe.", + "Take out a group of enemies by\nsetting off a bomb near a TNT box.": "Elimine um grupo de inimigos ao\ndesencadear uma bomba perto de uma caixa de TNT.", + "The head is the most vulnerable area, so a sticky-bomb\nto the noggin usually means game-over.": "A cabeça é a área mais vulnerável, portanto uma bomba grudenta\nna cuca geralmente significa fim de jogo.", + "This level never ends, but a high score here\nwill earn you eternal respect throughout the world.": "Este nível nunca termina, mas uma alta pontuação aqui\nfaz você ganhar respeito eterno por todo o mundo.", + "Throw strength is based on the direction you are holding.\nTo toss something gently in front of you, don't hold any direction.": "Força de arremesso baseia-se na direção em que você está pressionando.\nPara arremessar algo suavemente na sua frente, não pressione qualquer direção.", + "Tired of the soundtrack? Replace it with your own!\nSee Settings->Audio->Soundtrack": "Cansado das músicas? Troque-as pelas suas próprias!\nVeja em Configurações-> Áudio-> Músicas", + "Try 'Cooking off' bombs for a second or two before throwing them.": "Experimente 'cozinhar' bombas por um segundo ou dois antes de jogá-las.", + "Try tricking enemies into killing eachother or running off cliffs.": "Tente enganar inimigos para se matarem ou se jogarem do precipício.", + "Use the pick-up button to grab the flag < ${PICKUP} >": "Use o botão pegar para pegar a bandeira < ${PICKUP} >", + "Whip back and forth to get more distance on your throws..": "Balance para trás e para frente para fazer arremessos distantes..", + "You can 'aim' your punches by spinning left or right.\nThis is useful for knocking bad guys off edges or scoring in hockey.": "Você pode 'mirar' seus socos girando para esquerda ou direita.\nIsso é útil para derrubar inimigos das beiradas ou marcar no hóquei.", + "You can judge when a bomb is going to explode based on the\ncolor of sparks from its fuse: yellow..orange..red..BOOM.": "Você pode avaliar quando uma bomba vai explodir baseado na\ncor das faíscas do pavio: amarelo..laranja..vermelho..BOOM.", + "You can throw bombs higher if you jump just before throwing.": "Você pode jogar as bombas mais alto ao saltar logo antes de arremessar.", + "You take damage when you whack your head on things,\nso try to not whack your head on things.": "Você se fere quando você bate sua cabeça em coisas,\nassim tente não bater sua cabeça em coisas.", + "Your punches do much more damage if you are running or spinning.": "Seus socos causam muito mais dano se você estiver correndo ou girando." + } + }, + "trophiesRequiredText": "Isso necessita de pelo menos ${NUMBER} troféus.", + "trophiesText": "Troféus", + "trophiesThisSeasonText": "Troféus nesta temporada", + "tutorial": { + "cpuBenchmarkText": "Rodando o tutorial numa velocidade MUITO baixa (para testar o processador)", + "phrase01Text": "Olá!", + "phrase02Text": "Bem-vindo ao ${APP_NAME}!", + "phrase03Text": "Aqui estão algumas dicas para controlar seu personagem:", + "phrase04Text": "Muitas coisas no ${APP_NAME} são baseadas na física.", + "phrase05Text": "Por exemplo, quando você soca,..", + "phrase06Text": "..o dano é baseado na velocidade de seus punhos.", + "phrase07Text": "Viu? Nós não estávamos nos movendo então mal fez cócegas no ${NAME}.", + "phrase08Text": "Agora vamos pular e girar para ganhar mais velocidade.", + "phrase09Text": "Ah, assim é melhor.", + "phrase10Text": "Correr ajuda também.", + "phrase11Text": "Mantenha QUALQUER botão pressionado para correr.", + "phrase12Text": "Para socos adicionais incríveis, tente correr e girar.", + "phrase13Text": "Ops! foi mal aí, ${NAME}.", + "phrase14Text": "Você pode pegar e jogar coisas como bandeiras.. ou ${NAME}.", + "phrase15Text": "Por último, há bombas.", + "phrase16Text": "Arremessar bombas requer prática.", + "phrase17Text": "Ai! Não foi um arremesso muito bom.", + "phrase18Text": "Movimentar-se te ajuda a arremessar mais longe.", + "phrase19Text": "Saltar ajuda você a arremessar mais alto.", + "phrase20Text": "Gire e corra e suas bombas irão ainda mais longe.", + "phrase21Text": "Calcular o tempo da explosão pode ser complicado.", + "phrase22Text": "Droga!", + "phrase23Text": "Tente deixar o pavio queimar por um ou dois segundos.", + "phrase24Text": "Eba! No tempo ideal.", + "phrase25Text": "Bem, acho que é só isso.", + "phrase26Text": "Agora vai lá e arrebenta!", + "phrase27Text": "Lembre-se do seu treinamento e você voltará vivo!", + "phrase28Text": "...bem, talvez...", + "phrase29Text": "Boa sorte!", + "randomName1Text": "Fernando", + "randomName2Text": "Henrique", + "randomName3Text": "Guilherme", + "randomName4Text": "Carlos", + "randomName5Text": "Felipe", + "skipConfirmText": "Você deseja realmente pular o tutorial? Toque ou aperte confirmar.", + "skipVoteCountText": "${COUNT}/${TOTAL} votos para pular", + "skippingText": "pulando o tutorial...", + "toSkipPressAnythingText": "(pressione qualquer coisa para pular o tutorial)" + }, + "twoKillText": "MATOU DOIS!", + "uiScaleText": "Tamanho da Interface", + "unavailableText": "indisponível", + "unclaimedPrizesText": "Você possui prêmios não resgatados!", + "unconfiguredControllerDetectedText": "Controle não configurado detectado:", + "unlockThisInTheStoreText": "Isto deve ser desbloqueado na loja.", + "unlockThisProfilesText": "Para criar mais que ${NUM} perfis, você precisa:", + "unlockThisText": "Para desbloquear isso:", + "unsupportedControllerText": "Desculpe, o controlador \"${NAME}\" não é compatível.", + "unsupportedHardwareText": "Desculpe, este hardware não é suportado por esta versão do jogo.", + "upFirstText": "Em primeiro lugar:", + "upNextText": "O próximo jogo em ${COUNT}:", + "updatingAccountText": "Atualizando sua conta...", + "upgradeText": "Aprimorar", + "upgradeToPlayText": "Atualize para \"${PRO}\" na loja para jogar.", + "useDefaultText": "Usar Padrão", + "userSystemScriptsCreateText": "Criar Scripts do Sistema do Usuário", + "userSystemScriptsDeleteText": "Deletar Scripts do Sistema do Usuário", + "usesExternalControllerText": "Este jogo usa um controle externo para entrada.", + "usingItunesText": "Usando o app de música para a trilha sonora", + "v2AccountLinkingInfoText": "Para vincular contas V2, use o botão 'Gerenciar conta'.", + "v2AccountRequiredText": "Isso requer uma conta V2. Atualize sua conta e tente novamente.", + "validatingTestBuildText": "Validando Versão de Teste...", + "viaText": "via", + "victoryText": "Vitória!", + "voteDelayText": "Você não pode começar outra votação por ${NUMBER} segundo(s)", + "voteInProgressText": "Uma votação já está em progresso.", + "votedAlreadyText": "Você já votou", + "votesNeededText": "${NUMBER} votos necessários", + "vsText": "vs.", + "waitingForHostText": "(esperando ${HOST} continuar)", + "waitingForPlayersText": "esperando os jogadores entrarem...", + "waitingInLineText": "Esperando na fila (o grupo está cheio)...", + "watchAVideoText": "Ver um vídeo", + "watchAnAdText": "Assistir uma propaganda.", + "watchWindow": { + "deleteConfirmText": "Excluir \"${REPLAY}\"?", + "deleteReplayButtonText": "Excluir\nReplay", + "myReplaysText": "Meus replays", + "noReplaySelectedErrorText": "Nenhum replay selecionado.", + "playbackSpeedText": "Velocidade de reprodução: ${SPEED}", + "renameReplayButtonText": "Renomear\nReplay", + "renameReplayText": "Renomear \"${REPLAY}\" para:", + "renameText": "Renomear", + "replayDeleteErrorText": "Erro ao excluir o replay.", + "replayNameText": "Nome do replay", + "replayRenameErrorAlreadyExistsText": "Um replay com este nome já existe.", + "replayRenameErrorInvalidName": "Não foi possível renomear; nome invalido.", + "replayRenameErrorText": "Erro ao renomear replay.", + "sharedReplaysText": "Replays compartilhados", + "titleText": "Assistir", + "watchReplayButtonText": "Assistir\nReplay" + }, + "waveText": "Onda", + "wellSureText": "Claro!", + "whatIsThisText": "Oque é isto?", + "winsPlayerText": "${NAME} venceu!", + "winsTeamText": "${NAME} venceu!", + "winsText": "${NAME} ganhou!", + "workspaceSyncErrorText": "Erro ao sincronizar ${WORKSPACE}. Veja o log para mais detalhes.", + "workspaceSyncReuseText": "Não pôde sincronizar ${WORKSPACE}. Reusando uma versão anterior sincronizada.", + "worldScoresUnavailableText": "Pontuações mundiais indisponíveis.", + "worldsBestScoresText": "Melhores Pontuações do Mundo", + "worldsBestTimesText": "Melhores Tempos do Mundo", + "yesAllowText": "Sim, Permitir!", + "yourBestScoresText": "Suas Melhores Pontuações", + "yourBestTimesText": "Seus Melhores Tempos", + "yourPrizeText": "Seu prêmio:" +} \ No newline at end of file diff --git a/dist/ba_data/data/languages/romanian.json b/dist/ba_data/data/languages/romanian.json index 5c758e8..7e2d6ed 100644 --- a/dist/ba_data/data/languages/romanian.json +++ b/dist/ba_data/data/languages/romanian.json @@ -8,7 +8,9 @@ "changeOncePerSeason": "Acest lucru poate fi schimbat o singură dată pe sezon.", "changeOncePerSeasonError": "Trebuie să aștepți până la următorul sezon (timp de ${NUM} (de) zile) dacă vrei să schimbi acest lucru din nou", "customName": "Nume Personalizat", + "deleteAccountText": "Șterge contul", "deviceSpecificAccountText": "Foloseşti un cont specific dispozitivului: ${NAME}", + "googlePlayGamesAccountSwitchText": "Dacă doriți să utilizați un alt cont Google,\nutilizați aplicația Jocuri Google Play pentru a comuta.", "linkAccountsEnterCodeText": "Introdu Codul", "linkAccountsGenerateCodeText": "Generează Codul", "linkAccountsInfoText": "(împărtășeşte-ți progresul făcut pe platforme diferite)", @@ -16,6 +18,7 @@ "linkAccountsInstructionsText": "Pentru a conecta 2 conturi, generează un cod pe\nunul din ele şi introdu acelmcod pe celălalt.\nProgresul şi inventarul tău vor fi combinate.\nPoți conecta până la ${COUNT} conturi.\n\nAi grijă; acest lucru nu poate fi şters!", "linkAccountsText": "Conectează Conturi", "linkedAccountsText": "Conturi Conectate:", + "manageAccountText": "Gestionează contul", "nameChangeConfirm": "Vrei să schimbi numele contului tău în ${NAME}?", "resetProgressConfirmNoAchievementsText": "Această acțiune îți va reseta progresul co-op\nși high-score-urile locale (dar nu și biletele).\nAcest lucru nu este reversibil. Sigur vrei să continui?", "resetProgressConfirmText": "Această acțiune îți va reseta progresul\nco-op, realizările și high-score-urile\n(dar nu și biletele). Acest lucru nu\neste reversibil. Ești sigur(ă) că vrei să continui?", @@ -24,14 +27,16 @@ "setAccountNameDesc": "Scrie un nume dorit de tine care vrei să se afișeze pe contul tău.\nPoți folosi și numele unui alt cont conectat de tine\nsau poți să creezi un nume unic personalizat.", "signInInfoText": "Conectează-te cu un cont pentru a colecta bilete, a concura online,\nşi pentru a te juca cu acelaşi cont pe dispozitive diferite.", "signInText": "Conectează-te", + "signInWithAnEmailAddressText": "Conectați-vă cu o adresă de e-mail", "signInWithDeviceInfoText": "(un cont automat care este disponibil doar pe acest dispozitiv)", "signInWithDeviceText": "Conectează-te cu contul dispozitivului", "signInWithGameCircleText": "Conectează-te cu Game Circle", "signInWithGooglePlayText": "Conectează-te cu Google Play", "signInWithTestAccountInfoText": "(tip de cont normal; foloseşte conturile de tip 'dispozitiv' şi cele noi)", "signInWithTestAccountText": "Conectează-te cu un cont de test", + "signInWithText": "Conectați-vă alb ${SERVICE}", "signInWithV2InfoText": "(un cont care funcționează pe toate platformele)", - "signInWithV2Text": "Conectează-te cu un cont Bombsquad", + "signInWithV2Text": "Conectați-vă cu un cont ${APP_NAME}", "signOutText": "Deconectează-te", "signingInText": "Se conectează...", "signingOutText": "Se deconectează...", @@ -42,6 +47,7 @@ "titleText": "Contul tău", "unlinkAccountsInstructionsText": "Selectează un cont pentru a-l deconecta", "unlinkAccountsText": "Deconectează Conturi", + "unlinkLegacyV1AccountsText": "Deconectați conturile vechi (V1).", "v2LinkInstructionsText": "Folosește acest link pentru a creea un cont sau pentru a te autentifica.", "viaAccount": "(prin contul ${NAME})", "youAreSignedInAsText": "Ești conectat ca și:" @@ -335,9 +341,14 @@ "getMoreGamesText": "Ia mai multe MiniJocuri...", "titleText": "Adaugă un joc" }, + "addToFavoritesText": "Adauga la favorite", + "addedToFavoritesText": "S-a adăugat '${NAME}' la Favorite.", + "allText": "Toate", "allowText": "Permite", "alreadySignedInText": "Contul tău este deja conectat de pe un alt dispozitiv;\nte rog să schimbi conturile sau să închizi jocul de pe\nalte dispozitive și să încerci din nou.", "apiVersionErrorText": "Nu se poate încărca modulul ${NAME}; acesta țintește versiunea API ${VERSION_USED}, iar versiunea ${VERSION_REQUIRED} nu îl mai suportă.", + "applyText": "Aplicați", + "areYouSureText": "Sunteți sigur?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(\"Auto\" activează asta doar când căștile sunt conectate)", "headRelativeVRAudioText": "Audio VR relativ capului", @@ -360,7 +371,7 @@ "boostText": "Crește", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} este configurat în aplicația în sine.", "buttonText": "buton", - "canWeDebugText": "Ai vrea ca BombSquad să trimită automat bug-uri,\ncrash-uri și informații de bază programatorului jocului?\n\nAceste informații nu conțin date personale, ci doar\najută la îmbunătățirea jocului.", + "canWeDebugText": "Doriți ca ${APP_NAME} să raporteze automat bug-uri,\ncrash-uri și informații de bază pentru dezvoltator?\n\nAceste informații nu conțin date personale, ci doar\najută la îmbunătățirea jocului.", "cancelText": "Anulează", "cantConfigureDeviceText": "Scuze, dar ${DEVICE} nu este configurabil.", "challengeEndedText": "Acest concurs s-a terminat.", @@ -368,6 +379,8 @@ "chatMutedText": "Chat-ul Este Amuțit", "chatUnMuteText": "Dezamuțește Chat-ul", "choosingPlayerText": "", + "claimText": "Revendică", + "codesExplainText": "Codurile sunt furnizate de dezvoltator pentru\ndiagnosticați și corectați problemele legate de cont.", "completeThisLevelToProceedText": "Trebuie să completezi\nacest nivel pentru a continua!", "completionBonusText": "Bonus De Completare", "configControllersWindow": { @@ -448,6 +461,7 @@ "swipeText": "glisare", "titleText": "Configurează Touchscreen-ul" }, + "configureDeviceInSystemSettingsText": "${DEVICE} poate fi configurat în Setări.", "configureItNowText": "Vrei să îl configurezi acum?", "configureText": "Configurează", "connectMobileDevicesWindow": { @@ -502,6 +516,7 @@ "welcome2Text": "Mai poți primi bilete şi prin alte activități de acelaşi fel.\nBiletele se pot folosi pentru a debloca charactere, hărți,\nmini-jocuri, pentru a intra în concursurii, şi multe altele.", "yourPowerRankingText": "Rankul tău de Putere:" }, + "copyConfirmText": "Copiat în clipboard.", "copyOfText": "Copie de ${NAME}", "copyText": "Copiază", "createEditPlayerText": "", @@ -548,7 +563,10 @@ "deleteText": "Șterge", "demoText": "Demo", "denyText": "Refuză", + "deprecatedText": "Depreciat", + "descriptionText": "Descriere", "desktopResText": "Rezoluție Desktop", + "deviceAccountUpgradeText": "Avertizare:\nSunteți conectat cu un cont de dispozitiv (${NAME}).\nConturile de dispozitiv vor fi eliminate într-o actualizare viitoare.\nFaceți upgrade la un cont V2 dacă doriți să vă păstrați progresul.", "difficultyEasyText": "Ușor", "difficultyHardOnlyText": "Numai pe \"Greu\"", "difficultyHardText": "Greu", @@ -557,6 +575,10 @@ "disableRemoteAppConnectionsText": "Dezactivează conexiunile de pe Remote-App", "disableXInputDescriptionText": "Permite mai mult de 4 controlere dar nu va merge chiar așa de bine.", "disableXInputText": "Dezactivează XInput", + "disabledText": "Dezactivat", + "discardText": "Înlătură", + "discordFriendsText": "Vrei să gasești oameni noi cu care să te joci?\nAlăturați-vă Serverul de Discord al nostru și găsiți noi prieteni!", + "discordJoinText": "Alăturați-vă Discordului", "doneText": "Gata", "drawText": "Remiză", "duplicateText": "Multiplică", @@ -590,6 +612,7 @@ "localProfileText": "(profil local)", "nameDescriptionText": "Numele Jucătorului", "nameText": "Nume", + "profileAlreadyExistsText": "Un profil cu acest nume există deja.", "randomText": "auto-generat", "titleEditText": "Editează profilul", "titleNewText": "Profil nou", @@ -625,12 +648,13 @@ "useMusicFolderText": "Dosar cu Fişiere Audio" }, "editText": "Editează", + "enabledText": "Activat", "endText": "Sfârșește", "enjoyText": "Bucură-te!", "epicDescriptionFilterText": "${DESCRIPTION} În slow motion epic.", "epicNameFilterText": "${NAME} Epic", "errorAccessDeniedText": "acces respins", - "errorDeviceTimeIncorrectText": "Ceasul dispozitivului tău este dat înainte sau înapoi cu ${HOURS} ore.\nAcestu lucru ar putea cauza niște probleme.\nTe rog să verifici setările ceasului și ale fusului orar.", + "errorDeviceTimeIncorrectText": "Ceasul dispozitivului tău este incorrect cu ${HOURS} ore.\nAcest lucru ar putea cauza niște probleme.\nTe rog să verifici setările ceasului și ale fusului orar.", "errorOutOfDiskSpaceText": "ai rămas fără memorie", "errorSecureConnectionFailText": "Nu s-a putut stabili o conexiune sigură cloud; funcționalitatea internetului ar putea eșua.", "errorText": "Eroare", @@ -670,6 +694,8 @@ "duplicateText": "Duplică\nLista de Jocuri", "editText": "Editează\nLista de Jocuri", "newText": "Listă de Jocuri\nNouă", + "pointsToWinText": "Puncte pentru a câștiga", + "seriesLengthText": "Lungimea seriei", "showTutorialText": "Arată Tutorialul", "shuffleGameOrderText": "Jocuri Aleatorii", "titleText": "Particularizează Listele de Jocuri de tip \"${TYPE}\"" @@ -743,6 +769,7 @@ "manualYourLocalAddressText": "Adresa ta locală:", "nearbyText": "Din apropiere", "noConnectionText": "", + "noPartiesAddedText": "Nu au fost adăugate părți", "otherVersionsText": "(alte versiuni)", "partyCodeText": "Codul Server-ului", "partyInviteAcceptText": "Acceptă", @@ -807,17 +834,26 @@ "youHaveShortText": "ai ${COUNT}", "youHaveText": "ai ${COUNT} (de) bilete" }, + "goldPass": { + "desc1InfTokensText": "Jetoane infinite.", + "desc2NoAdsText": "Fără reclame.", + "desc3ForeverText": "Pentru totdeauna.", + "goldPassText": "Pass de Aur" + }, "googleMultiplayerDiscontinuedText": "Ne pare rău, serviciul multiplayer de pe Google nu mai este disponibil.\nLucrez la un înlocuitor cât mai repede posibil.\nPână atunci, te rog să încerci o altă metodă de conectare.\n-Eric", "googlePlayPurchasesNotAvailableText": "Achizițiile de pe Google Play nu sunt disponibile.\nÎncearcă să actualizezi Magazin Play și să încerci din nou.", + "googlePlayServicesNotAvailableText": "Serviciile Google Play nu sunt disponibile.\nEste posibil ca unele funcționalități ale aplicației să fie dezactivate.", "googlePlayText": "Google Play", "graphicsSettingsWindow": { "alwaysText": "Întotdeauna", "fullScreenCmdText": "Fullscreen (Cmd+F)", "fullScreenCtrlText": "Fullscreen (Ctrl+F)", + "fullScreenText": "Ecran complet", "gammaText": "Luminozitate", "highText": "Înalte", "higherText": "Mai Înalte", "lowText": "Slabe", + "maxFPSText": "Maxim de FPS", "mediumText": "Medii", "neverText": "Niciodată", "resolutionText": "Rezoluție", @@ -879,6 +915,7 @@ "importText": "Importă", "importingText": "Se importă...", "inGameClippedNameText": "va arăta astfel\n\"${NAME}\"", + "inboxText": "Mesaje", "installDiskSpaceErrorText": "EROARE: Nu s-a putut completa instalarea.\nSe poate să fi rămas fără spațiu pe dispozitiv.\nEliberează niște spațiu și încearcă din nou.", "internal": { "arrowsToExitListText": "Apasă ${LEFT} sau ${RIGHT} pentru a ieși din listă", @@ -987,6 +1024,7 @@ "tournamentLeagueText": "Trebuie să ajungi în liga ${NAME} dacă vrei să intri în acest turneu.", "trophyCountsResetText": "Numărul de trofee se va reseta la sfârșitul sezonului." }, + "learnMoreText": "Află mai multe", "levelBestScoresText": "Cele mai bune scoruri din ${LEVEL}", "levelBestTimesText": "Cele mai scurte timpuri din ${LEVEL}", "levelFastestTimesText": "Cel mai rapid timp pe ${LEVEL}", @@ -1008,6 +1046,7 @@ "creditsText": "Credite", "demoMenuText": "Meniu Demonstrativ", "endGameText": "Sfârșește Jocul", + "endTestText": "Încheierea testului", "exitGameText": "Ieși Din Joc", "exitToMenuText": "Revii la meniu?", "howToPlayText": "Cum se Joacă?", @@ -1027,6 +1066,7 @@ "maxConnectionsText": "Număr De Locuri", "maxPartySizeText": "Număr Maxim De Locuri", "maxPlayersText": "Locuri", + "merchText": "Merch!", "modeArcadeText": "Mod Pentru Arcade", "modeClassicText": "Modul Clasic", "modeDemoText": "Modul Demonstrativ", @@ -1046,6 +1086,7 @@ "nameSuicideText": "${NAME} s-a sinucis.", "nameText": "Numele", "nativeText": "Nativă", + "newExclaimText": "Nou!", "newPersonalBestText": "Un nou record personal a fost atins!", "newTestBuildAvailableText": "O nouă versiune de test a fost lansată: (${VERSION} build ${BUILD}).\nIa-o de pe ${ADDRESS}", "newText": "Nou", @@ -1056,17 +1097,22 @@ "noContinuesText": "(fără continuări)", "noExternalStorageErrorText": "Nu a fost găsită nicio stocare externă pe acest dispozitiv.", "noGameCircleText": "Eroare: nu eşti logat cu GameCircle", + "noMessagesText": "Niciun mesaj.", + "noPluginsInstalledText": "Nu au fost instalate pluginuri", "noProfilesErrorText": "Nu ai niciun Profil de Jucător, deci eşti blocat cu '${NAME}'.\nDute la Setări->Profile de Jucător pentru a-ți face un profil.", "noScoresYetText": "Niciun scor deocamdată.", + "noServersFoundText": "Nu au fost găsite servere.", "noThanksText": "Nu Mulțumesc", "noTournamentsInTestBuildText": "ATENȚIE: Scorurile obținute în turnee vor fi ignorate în această versiune de test.", "noValidMapsErrorText": "Nu sunt hărți disponibile pentru acest mod de joc.", "notEnoughPlayersRemainingText": "Nu mai sunt destui jucători; ieși din joc și creează altul nou.", "notEnoughPlayersText": "Ai nevoie de cel puțin ${COUNT} jucători pentru a începe acest joc!", + "notEnoughTicketsText": "Bilete insuficiente!", "notNowText": "Nu Acum", "notSignedInErrorText": "Trebuie să fi conectat cu un cont dacă vrei să faci asta.", "notSignedInGooglePlayErrorText": "Trebuie să fii conectat cu Google Play dacă vrei să faci asta.", "notSignedInText": "nu te-ai conectat cu nici un cont", + "notUsingAccountText": "Notă: ignorând contul ${SERVICE}.\nAccesați „Cont -> Conectați-vă cu ${SERVICE}” dacă doriți să îl utilizați.", "nothingIsSelectedErrorText": "Nu ai selectat nimic!", "numberText": "#${NUMBER}", "offText": "Oprit", @@ -1125,7 +1171,11 @@ "pleaseWaitText": "Te rog să aștepți...", "pluginClassLoadErrorText": "Nu s-a putut încărca plugin-ul '${PLUGIN}': ${ERROR}", "pluginInitErrorText": "Nu s-a putut iniția plugin-ul '${PLUGIN}': ${ERROR}", + "pluginSettingsText": "Setări Plugin", + "pluginsAutoEnableNewText": "Activați Automat Noile Pluginuri", "pluginsDetectedText": "Plugin(uri) noi detectate. Restartează jocul pentru a le activa / configura în setări.", + "pluginsDisableAllText": "Dezactivați Toate Pluginurile", + "pluginsEnableAllText": "Activați Toate Pluginurile", "pluginsRemovedText": "${NUM} plugin(uri) nu mai există.", "pluginsText": "Plugin-uri", "practiceText": "Antrenament", @@ -1158,6 +1208,8 @@ "punchText": "Pumn", "purchaseForText": "Cumpără pentru ${PRICE}", "purchaseGameText": "Cumpără Jocul", + "purchaseNeverAvailableText": "Ne pare rău, achizițiile nu sunt disponibile pentru această versiune.\nÎncercați să vă conectați la contul dvs. pe o altă platformă și să faceți achiziții de acolo.", + "purchaseNotAvailableText": "Această achiziție nu este disponibilă.", "purchasingText": "Se cumpără...", "quitGameText": "Ieși din ${APP_NAME}?", "quittingIn5SecondsText": "Se iese în 5 secunde...", @@ -1220,6 +1272,8 @@ "runText": "Pentru a fugi", "saveText": "Salvează", "scanScriptsErrorText": "Una sau mai multe erori au fost detectate în timpul scanării scripturilor; vezi jurnalul de activități pentru detalii.", + "scanScriptsMultipleModulesNeedUpdatesText": "${PATH} și alte ${NUM} module trebuie să fie actualizate pentru api ${API}.", + "scanScriptsSingleModuleNeedsUpdatesText": "${PATH} trebuie actualizat pentru api ${API}.", "scoreChallengesText": "Provocări de Scor", "scoreListUnavailableText": "Lista de Scoruri este indisponibilă.", "scoreText": "Scor", @@ -1230,6 +1284,7 @@ }, "scoreWasText": "(a fost ${COUNT})", "selectText": "Selectează", + "sendInfoDescriptionText": "Trimite dezvoltatorului informații despre starea contului și a aplicației.\nVă rugăm să includeți numele sau motivul trimiterii.", "seriesWinLine1PlayerText": "CÂŞTIGĂ", "seriesWinLine1TeamText": "CÂŞTIGĂ", "seriesWinLine1Text": "CÂŞTIGĂ", @@ -1248,6 +1303,7 @@ "alwaysUseInternalKeyboardDescriptionText": "(o tastatură simplă, folositoare pentru controllere, care ajută la editarea textului)", "alwaysUseInternalKeyboardText": "Foloseşte Mereu Tastatura Internală", "benchmarksText": "Teste-Stres & Referințe", + "devToolsText": "Instrumente de dezvoltare", "disableCameraGyroscopeMotionText": "Oprește Mișcarea Camerei De Tip Giroscop", "disableCameraShakeText": "Dezactivează Cutremurarea Camerei", "disableThisNotice": "(Poți dezactiva această notificare în setările avansate)", @@ -1256,14 +1312,22 @@ "enterPromoCodeText": "Introdu un cod", "forTestingText": "Notă: aceste valori sunt doar pentru teste şi vor fi resetate când jocul va fi închis.", "helpTranslateText": "Translațiile din ${APP_NAME} sunt un efort depus de comunitate.\nDacă ai dori să te implici la translatarea/corectarea unei limbi,\nurmează linkul de mai jos. Mulțumiri anticipate!", + "insecureConnectionsDescriptionText": "nerecomandat, dar poate permite joaca online \ndin țări și network-uri restricționate", + "insecureConnectionsText": "Folosește conexiuni nesigure", "kickIdlePlayersText": "Dă Afară Jucătorii Inactivi", "kidFriendlyModeText": "Modul Pentru Copii (mai puțină violență, etc)", "languageText": "Limbă", "moddingGuideText": "Ghid pentru Modare", + "moddingToolsText": "Instrumente de modificare", "mustRestartText": "Va trebui să restartezi jocul dacă vrei ca acest lucru să își facă efectul.", "netTestingText": "Testarea Internetului", "resetText": "Resetează", + "sendInfoText": "Trimiteți informații", "showBombTrajectoriesText": "Arată Traiectoriile Bombelor", + "showDemosWhenIdleText": "Afișați demo-uri când este inactiv", + "showDeprecatedLoginTypesText": "Afișați tipurile de conectare învechite", + "showDevConsoleButtonText": "Afișați dev console button", + "showInGamePingText": "Afișează ping-ul în joc", "showPlayerNamesText": "Arată Numele Jucătorilor", "showUserModsText": "Arată Folderul Pentru Moduri", "titleText": "Avansat", @@ -1282,6 +1346,9 @@ "signInWithGameCenterText": "Pentru a folosi un cont Game Center\nconectează-te folosind aplicația Game Center.", "singleGamePlaylistNameText": "Doar ${GAME}", "singlePlayerCountText": "1 jucător", + "sizeLargeText": "Mare", + "sizeMediumText": "Mediu", + "sizeSmallText": "Mic", "soloNameFilterText": "${NAME} Solo", "soundtrackTypeNames": { "CharSelect": "Selecția Caracterului", @@ -1357,6 +1424,8 @@ "storeText": "Magazin", "submitText": "Trimite", "submittingPromoCodeText": "Se trimite Codul...", + "successText": "Succes!", + "supportEmailText": "Dacă întâmpinați probleme cu\naplicația, vă rugăm să trimiteți un e-mail la ${EMAIL}.", "teamNamesColorText": "Numele/Culorile Echipelor", "telnetAccessGrantedText": "Acces la Telnet permis.", "telnetAccessText": "Acces Telnet detectat; îl permiți?", @@ -1376,6 +1445,17 @@ "tipText": "Sfat", "titleText": "BombSquad", "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "Obțineți jetoane", + "notEnoughTokensText": "Insuficiente jetoane!", + "numTokensText": "${COUNT} Jetoane", + "shinyNewCurrencyText": "Noua monedă strălucitoare a BombSquad-ului.", + "tokenPack1Text": "Pachet mic de jetoane", + "tokenPack2Text": "Pachet mediu de jetoane", + "tokenPack3Text": "Pachet mare de jetoane", + "tokenPack4Text": "Pachet de jetoane Jumbo", + "youHaveGoldPassText": "Ai un permis de aur.\nToate achizițiile de jetoane sunt gratuite.\nBucurați-vă!" + }, "topFriendsText": "Prieteni de Top", "tournamentCheckingStateText": "Se verifică starea campionatului; aşteaptă...", "tournamentEndedText": "Acest turneu s-a terminat. Altul nou va începe în curând.", @@ -1384,6 +1464,7 @@ "tournamentStandingsText": "Clasamentele Turneului", "tournamentText": "Turneu", "tournamentTimeExpiredText": "Timpul Turneului a Expirat", + "tournamentsDisabledWorkspaceText": "Turneele sunt dezactivate atunci când spațiile de lucru sunt active.\nPentru a reactiva turneele, dezactivați spațiul de lucru și reporniți.", "tournamentsText": "Turnee", "translations": { "characterNames": { @@ -1536,7 +1617,9 @@ "Italian": "Italiană", "Japanese": "Japoneză", "Korean": "Coreană", + "Malay": "Malaeză", "Persian": "Persană", + "PirateSpeak": "Limba Piraților", "Polish": "Poloneză", "Portuguese": "Portugheză", "Romanian": "Română", @@ -1650,6 +1733,7 @@ "You got ${COUNT} tickets!": "Ai primit ${COUNT} (de) bilete!", "You got a ${ITEM}!": "Ai primit 1 ${ITEM}!", "You have been promoted to a new league; congratulations!": "Ai fost promovat la o ligă noua; felicitări!", + "You must update the app to view this.": "Trebuie să actualizezi aplicația pentru a vedea asta.", "You must update to a newer version of the app to do this.": "Trebuie să-ți actualizezi aplicația la o versiune mai nouă pentru a face asta.", "You must update to the newest version of the game to do this.": "Trebuie să-ți actualizezi jocul la o versiune mai nouă pentru a face asta.", "You must wait a few seconds before entering a new code.": "Va trebui să aştepți câteva secunde înainte să introduci un cod nou.", @@ -1804,11 +1888,13 @@ "toSkipPressAnythingText": "(apasă orice buton pentru a trece peste tutorial)" }, "twoKillText": "DUBLU OMOR!", + "uiScaleText": "Mărime Interfață", "unavailableText": "indisponibil", "unconfiguredControllerDetectedText": "Controller neconfigurat detectat:", "unlockThisInTheStoreText": "Acest lucru trebuie deblocat din magazin.", "unlockThisProfilesText": "Că să creezi mai mult de ${NUM} profile, va trebui să ai:", "unlockThisText": "Pentru a debloca acest lucru, vei avea nevoie de:", + "unsupportedControllerText": "Ne pare rau, controller-ul \"${NAME}\" nu este suportat", "unsupportedHardwareText": "Scuze, acest hardware nu este suportat de această versiune a jocului.", "upFirstText": "Primul joc:", "upNextText": "Următorul joc cu numărul ${COUNT} este:", @@ -1816,10 +1902,15 @@ "upgradeText": "Îmbunătățeşte", "upgradeToPlayText": "Deblochează \"${PRO}\" în magazinul din joc pentru a juca această hartă.", "useDefaultText": "Folosește Setările Prestabilite", + "userSystemScriptsCreateText": "Creați scripturi de sistem utilizator", + "userSystemScriptsDeleteText": "Ștergeți scripturile de sistem utilizator", "usesExternalControllerText": "Acest joc folosește un controller extern ca dispozitiv de intrare.", "usingItunesText": "Se folosește Aplicația de Muzică pentru soundtrack...", "usingItunesTurnRepeatAndShuffleOnText": "Fii sigur(ă) că shuffle e activat și repeat e pus pe ALL în iTunes.", + "v2AccountLinkingInfoText": "Pentru a conecta conturile V2, utilizați butonul „Gestionați contul\".", + "v2AccountRequiredText": "Acest lucru necesită un cont V2. Actualizați-vă contul și încercați din nou.", "validatingTestBuildText": "Se Validează Versiunea De Test...", + "viaText": "prin", "victoryText": "Victorie!", "voteDelayText": "Poți începe alt vot peste ${NUMBER} (de) secunde", "voteInProgressText": "Un vot este deja în progres.", @@ -1851,6 +1942,7 @@ }, "waveText": "Valul", "wellSureText": "Sigur!", + "whatIsThisText": "Ce este asta?", "wiimoteLicenseWindow": { "titleText": "Copyright de către DarwiinRemote" }, diff --git a/dist/ba_data/data/languages/russian.json b/dist/ba_data/data/languages/russian.json index de12288..00c5298 100644 --- a/dist/ba_data/data/languages/russian.json +++ b/dist/ba_data/data/languages/russian.json @@ -7,7 +7,9 @@ "campaignProgressText": "Прогресс кампании [Сложный режим]: ${PROGRESS}", "changeOncePerSeason": "Вы можете изменить это только раз в сезон.", "changeOncePerSeasonError": "Вы должны подождать до следующего сезона, чтобы изменить это снова (${NUM} дней)", + "createAnAccountText": "Создать аккаунт", "customName": "Имя пользователя", + "deleteAccountText": "Удалить аккаунт", "deviceSpecificAccountText": "Сейчас используется аккаунт имениустройства: ${NAME}", "googlePlayGamesAccountSwitchText": "Если хотите сменить внутриигровой аккаунт Google,\nиспользуйте приложение Google Play.", "linkAccountsEnterCodeText": "Введите код", @@ -36,7 +38,7 @@ "signInWithTestAccountText": "Войти через тестовый аккаунт", "signInWithText": "Войти при помощи ${SERVICE}", "signInWithV2InfoText": "(аккаунт, который работает на всех платформах)", - "signInWithV2Text": "Войти через аккаунт BombSquad", + "signInWithV2Text": "Войти через аккаунт ${APP_NAME}", "signOutText": "Выйти", "signingInText": "Вход...", "signingOutText": "Выход...", @@ -47,7 +49,7 @@ "titleText": "Аккаунт", "unlinkAccountsInstructionsText": "Выберите аккаунт, который хотите отвязать", "unlinkAccountsText": "Отвязать аккаунты", - "unlinkLegacyV1AccountsText": "Разблокируйте устаревшие (V1) аккаунты", + "unlinkLegacyV1AccountsText": "Отвязать устаревшие (V1) аккаунты", "v2LinkInstructionsText": "Используйте эту ссылку чтобы создать аккаунт или войти", "viaAccount": "(через аккаунт ${NAME})", "youAreLoggedInAsText": "Вы зашли как:", @@ -57,10 +59,10 @@ "achievementText": "Достижение", "achievements": { "Boom Goes the Dynamite": { - "description": "Убейте 3 плохих парней с помощью TNT", + "description": "Убейте 3 негодяев с помощью TNT", "descriptionComplete": "С помощью TNT убито 3 негодяев", "descriptionFull": "Убейте 3 негодяев с помощью TNT на уровне ${LEVEL}", - "descriptionFullComplete": "3 плохих парней убито с помощью TNT на уровне ${LEVEL}", + "descriptionFullComplete": "3 негодяев убито с помощью TNT на уровне ${LEVEL}", "name": "Динамит делает “БУМ”!" }, "Boxer": { @@ -128,7 +130,7 @@ "name": "Волшебник уровня ${LEVEL}" }, "Mine Games": { - "description": "Убейте 3 плохих парней с помощью мин", + "description": "Убейте 3 негодяев с помощью мин", "descriptionComplete": "С помощью мин убита тройка плохих парней", "descriptionFull": "Убейте 3 негодяев с помощью мин на уровне ${LEVEL}", "descriptionFullComplete": "С помощью мин убито 3 негодяя на уровне ${LEVEL}", @@ -254,8 +256,8 @@ "name": "Волшебник уровня ${LEVEL}" }, "Sharing is Caring": { - "descriptionFull": "Успешно поделиться игрой с другом", - "descriptionFullComplete": "Игра успешно передана другу", + "descriptionFull": "Успешно поделитесь игрой с другом", + "descriptionFullComplete": "Игра успешно поделена с другом", "name": "Делиться - значит заботиться" }, "Stayin' Alive": { @@ -339,7 +341,7 @@ "achievementsUnavailableForOldSeasonsText": "К сожалению, подробности достижений не доступны для старых сезонов.", "activatedText": "${THING} активировано.", "addGameWindow": { - "getMoreGamesText": "Еще игры", + "getMoreGamesText": "Больше игр...", "titleText": "Добавить игру" }, "addToFavoritesText": "Добавить в избранное", @@ -348,6 +350,8 @@ "allowText": "Разрешить", "alreadySignedInText": "С вашего аккаунта играют на другом устройстве;\nпожалуйста зайдите с другого аккаунта или закройте\nигру на другом устройстве и попытайтесь снова.", "apiVersionErrorText": "Невозможно загрузить модуль ${NAME}; он предназначен для API версии ${VERSION_USED}; здесь требуется версия ${VERSION_REQUIRED}.", + "applyText": "Применить", + "areYouSureText": "Вы уверены?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(Режим \"Авто\" активируется только при подключении наушников)", "headRelativeVRAudioText": "Позиционно-зависимое VR-аудио", @@ -372,14 +376,23 @@ "boostText": "Увеличение", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} настраивается в самом приложении.", "buttonText": "кнопка", - "canWeDebugText": "Хотите, чтобы BombSquad автоматически сообщал разработчику\nоб ошибках, сбоях и основную информацию об использовании?\n\nЭти данные не содержат никакой личной информации и помогают\nподдерживать игру в рабочем состоянии без сбоев и ошибок.", + "canWeDebugText": "Хотите, чтобы ${APP_NAME} автоматически сообщал разработчику\nоб ошибках, сбоях и основную информацию об использовании?\n\nЭти данные не содержат никакой личной информации и помогают\nподдерживать игру в рабочем состоянии без сбоев и ошибок.", "cancelText": "Отмена", "cantConfigureDeviceText": "Извините, ${DEVICE} невозможно настроить.", "challengeEndedText": "Это состязание завершено.", "chatMuteText": "Заглушить чат", "chatMutedText": "Чат заглушен", "chatUnMuteText": "Включить чат", + "chests": { + "prizeOddsText": "Награды", + "reduceWaitText": "Ускорить открытие", + "slotDescriptionText": "В этом слоте может находиться сундук.\n\nПолучайте сундуки за уровни кампании, \nместа в турнирах и выполнение \nдостижений.", + "slotText": "Слот сундука ${NUM}", + "slotsFullWarningText": "ВНИМАНИЕ: Ваш инвентарь заполнен.\nЛюбые сундуки, которые вы получите, будут утеряны.", + "unlocksInText": "Отпирается в" + }, "choosingPlayerText": "<выбор игрока>", + "claimText": "Забрать", "codesExplainText": "Коды предоставлены разработчиком, чтобы\nвыявлять и исправлять ошибки с аккаунтом.", "completeThisLevelToProceedText": "Чтобы продолжить, нужно\nпройти этот уровень!", "completionBonusText": "Бонус за прохождение", @@ -437,7 +450,7 @@ "secondaryText": "Второй геймпад", "startButtonActivatesDefaultDescriptionText": "(выключить, если ваша кнопка \"старт\" работает в качестве кнопки \"меню\")", "startButtonActivatesDefaultText": "Кнопка Старт активирует стандартный виджет", - "titleText": "Настройка геймпада", + "titleText": "Настройка джойстика", "twoInOneSetupText": "Настройка геймпада 2-в-1", "uiOnlyDescriptionText": "(Запретить этому контроллеру присоединяться к игре)", "uiOnlyText": "Ограничить только для меню", @@ -453,7 +466,7 @@ "configTouchscreenWindow": { "actionControlScaleText": "Размеры кнопок действия", "actionsText": "Действия", - "buttonsText": "кнопки", + "buttonsText": "Кнопки", "dragControlsText": "< чтобы передвинуть элементы управления, перетащите их >", "joystickText": "джойстик", "movementControlScaleText": "Размеры кнопок движения", @@ -519,7 +532,7 @@ "totalText": "всего", "tournamentInfoText": "Добейся высокого результата с\nдругими игроками твоей лиги.\n\nНаграды вручаются самым крутым\nпо окончании турнира.", "welcome1Text": "Добро пожаловать в ${LEAGUE}. Вы можете\nповысить свою лигу получая звёзды, получая \nдостижения и выигрывая трофеи в турнирах.", - "welcome2Text": "Вы также можете заработать билеты от многих из тех же видов деятельности.\nБилеты могут быть использованы , чтобы разблокировать новые персонажи , карты и\nмини -игры, чтобы войти турниры, и многое другое.", + "welcome2Text": "Вы также можете заработать билеты от многих из тех же видов деятельности.\nБилеты могут быть использованы, чтобы разблокировать новых персонажей, карты и\nмини-игры, для участия в турнирах, и многое другое.", "yourPowerRankingText": "Ваш ранг:" }, "copyConfirmText": "Скопировано в буфер обмена", @@ -532,7 +545,7 @@ "creditsWindow": { "additionalAudioArtIdeasText": "Дополнительное аудио, предварительные иллюстрации и идеи: ${NAME}", "additionalMusicFromText": "Дополнительная музыка: ${NAME}", - "allMyFamilyText": "Всем моим друзьям и семье, которые помогли играть тестовую версию", + "allMyFamilyText": "Всем моим друзьям и семье, которые тестировали игру", "codingGraphicsAudioText": "Программирование, графика и аудио: ${NAME}", "languageTranslationsText": "Языковые переводы:", "legalText": "Юридическая информация:", @@ -558,12 +571,12 @@ "runMediaReloadBenchmarkText": "Запустить тест производительности загрузки медиа", "runStressTestText": "Выполнить тест-нагрузку", "stressTestPlayerCountText": "Количество игроков", - "stressTestPlaylistDescriptionText": "Плей-лист нагрузочного испытания", - "stressTestPlaylistNameText": "Название плей-листа", - "stressTestPlaylistTypeText": "Тип плей-листа", + "stressTestPlaylistDescriptionText": "Плейлист нагрузочного испытания", + "stressTestPlaylistNameText": "Название плейлиста", + "stressTestPlaylistTypeText": "Тип плейлиста", "stressTestRoundDurationText": "Продолжительность раунда", "stressTestTitleText": "Тест-нагрузка", - "titleText": "Тесты производительности и тесты-нагрузки", + "titleText": "Отладочная и Стресс Тесты", "totalReloadTimeText": "Общее время перезагрузки: ${TIME} (подробности см. в логе)", "unlockCoopText": "Разблокировать кооперативные уровни" }, @@ -576,20 +589,21 @@ "deleteText": "Удалить", "demoText": "Демонстрация", "denyText": "Отклонить", - "deprecatedText": "Устарело>=", + "deprecatedText": "Устарело", "descriptionText": "Описание", "desktopResText": "Разреш. экрана", - "deviceAccountUpgradeText": "Внимание!\nВы заригестрированы как (${NAME})!\nДанный аккаунт будет удален в следующем обновлении!\nОбновите его до аккаунта Google Play, если не хотите потерять прогресс!", + "deviceAccountUpgradeText": "Внимание!\nВы зарегистрированы как (${NAME})!\nДанный аккаунт будет удален в следующем обновлении!\nОбновите его до аккаунта нового типа (V2), если не хотите потерять прогресс!", "difficultyEasyText": "Легкий", "difficultyHardOnlyText": "Только в трудном режиме", "difficultyHardText": "Трудный", "difficultyHardUnlockOnlyText": "Этот уровень может быть открыт только в сложном режиме.\nДумаете, сможете это сделать!?!?!", "directBrowserToURLText": "Пожалуйста, направьте веб-браузер по следующему адресу:", "disableRemoteAppConnectionsText": "Отключить соединения RemoteApp", - "disableXInputDescriptionText": "Позволяет подключение более 4 контроллеров, но может не очень хорошо работать.", + "disableXInputDescriptionText": "Позволяет подключить более 4 контроллеров, но может не очень хорошо работать.", "disableXInputText": "Отключить XInput", "disabledText": "Отключено", - "discordFriendsText": "Желаете поискать новых людей с которыми можно поиграть?\nПрисоединяйтесь к нашему Discord и находите новых друзей!", + "discardText": "Отклонить", + "discordFriendsText": "Желаете поискать новых людей с которыми можно поиграть?\nПрисоединяйтесь к нашему Discord серверу и находите новых друзей!", "discordJoinText": "Присоединиться к Discord", "doneText": "Готово", "drawText": "Ничья", @@ -615,7 +629,7 @@ "characterText": "персонаж", "checkingAvailabilityText": "Проверка доступности для \"${NAME}\"...", "colorText": "цвет", - "getMoreCharactersText": "Еще персонажей...", + "getMoreCharactersText": "Больше персонажей...", "getMoreIconsText": "Еще иконок...", "globalProfileInfoText": "Глобальным профилям игроков гарантированы уникальные\nимена. У них также есть дополнительные иконки.", "globalProfileText": "(глобальный профиль)", @@ -645,10 +659,10 @@ "defaultSoundtrackNameText": "Стандартный саундтрек", "deleteConfirmText": "Удалить саундтрек:\n\n${NAME}'?", "deleteText": "Удалить\nсаундтрек", - "duplicateText": "Копировать\nсаундтрек", + "duplicateText": "Сделать копию\nСаундтрека", "editSoundtrackText": "Редактор саундтрека", "editText": "Изменить\nсаундтрек", - "fetchingITunesText": "загрузка плей-листов Music App…", + "fetchingITunesText": "загрузка плейлистов...", "musicVolumeZeroWarning": "Внимание: громкость музыки установлена на 0", "nameText": "Название", "newSoundtrackNameText": "Мой саундтрек ${COUNT}", @@ -677,6 +691,8 @@ "errorText": "Ошибка", "errorUnknownText": "неизвестная ошибка", "exitGameText": "Выйти из ${APP_NAME}?", + "expiredAgoText": "Истёк ${T} назад", + "expiresInText": "Истекает через ${T}", "exportSuccessText": "'${NAME}' экспортирован.", "externalStorageText": "Внешняя память", "failText": "Провал", @@ -689,7 +705,7 @@ }, "filterText": "Поиск", "finalScoreText": "Финальные очки", - "finalScoresText": "Финальные очки", + "finalScoresText": "Финальный результат", "finalTimeText": "Финальное время", "finishingInstallText": "Завершается установка, минутку...", "fireTVRemoteWarningText": "* Для лучшего результата используйте\nгеймпады или установите\nприложение '${REMOTE_APP_NAME}'\nна ваших телефонах и планшетах.", @@ -743,6 +759,7 @@ "copyCodeConfirmText": "Код скопирован в буфер обмена.", "copyCodeText": "Копировать код", "dedicatedServerInfoText": "Для лучшего результата создайте отдельный сервер. Смотри bombsquadgame.com/server чтобы узнать как.", + "descriptionShortText": "Используйте окно мультиплеера, чтобы присоединиться к лобби.", "disconnectClientsText": "Это отключит ${COUNT} игроков\nв вашем лобби. Вы уверены?", "earnTicketsForRecommendingAmountText": "Друзья получат ${COUNT} билетов, если они активируют ваш код\n(а вы будете получать ${YOU_COUNT} билетов за каждую активацию)", "earnTicketsForRecommendingText": "Поделись игрой\nПолучи билеты...", @@ -772,7 +789,7 @@ "internetText": "Интернет", "inviteAFriendText": "Друзья еще не играют? Пригласи их\nпопробовать и они получат ${COUNT} билетов.", "inviteFriendsText": "Пригласить друзей", - "joinPublicPartyDescriptionText": "Присоединитесь к публичному лобби", + "joinPublicPartyDescriptionText": "Публичные лобби", "localNetworkDescriptionText": "Присоединяйтесь к ближайшему лобби (локальная сеть, Bluetooth, и т.д.)", "localNetworkText": "Локальная сеть", "makePartyPrivateText": "Сделать мое лобби приватным", @@ -790,7 +807,7 @@ "manualYourLocalAddressText": "Ваш локальный адрес:", "nearbyText": "Поблизости", "noConnectionText": "<нет соединения>", - "noPartiesAddedText": "Вечеринки не добавлены", + "noPartiesAddedText": "Партии Не Добавлены", "otherVersionsText": "(другие версии)", "partyCodeText": "Код лобби", "partyInviteAcceptText": "Принять", @@ -798,13 +815,13 @@ "partyInviteGooglePlayExtraText": "(смотрите вкладку 'Google Play' в разделе 'Собрать')", "partyInviteIgnoreText": "Игнорировать", "partyInviteText": "${NAME} пригласил\nвас в его лобби!", - "partyNameText": "Имя команды", + "partyNameText": "Название лобби", "partyServerRunningText": "Твой сервер для лобби работает.", - "partySizeText": "Игроки", + "partySizeText": "Размер лобби", "partyStatusCheckingText": "Проверка...", - "partyStatusJoinableText": "Ваша команда доступна через интернет", + "partyStatusJoinableText": "Ваше лобби теперь доступно для подключения через интернет", "partyStatusNoConnectionText": "Невозможно подключиться к серверу", - "partyStatusNotJoinableText": "Ваше лобби недоступно через интернет", + "partyStatusNotJoinableText": "Подключение к вашему лобби недоступно через интернет", "partyStatusNotPublicText": "Ваше лобби не публично", "pingText": "Пинг", "portText": "Порт", @@ -813,9 +830,9 @@ "privatePartyJoinText": "Присоединиться к частному лобби", "privateText": "Частный", "publicHostRouterConfigText": "Это может потребовать настройки переадресации портов на вашем маршрутизаторе. Для более легкого варианта организуйте частное лобби.", - "publicText": "Открытый", + "publicText": "Публичный", "requestingAPromoCodeText": "Запрашиваем код...", - "sendDirectInvitesText": "Послать приглашение", + "sendDirectInvitesText": "Отправить приглашение", "shareThisCodeWithFriendsText": "Поделись кодом с друзьями:", "showMyAddressText": "Показать мой адрес", "startAdvertisingText": "Включить доступ", @@ -864,6 +881,12 @@ "youHaveShortText": "у вас ${COUNT}", "youHaveText": "У вас ${COUNT} билетов" }, + "goldPass": { + "desc1InfTokensText": "Неограниченные жетоны.", + "desc2NoAdsText": "Без рекламы.", + "desc3ForeverText": "Навсегда.", + "goldPassText": "Золотой пропуск" + }, "googleMultiplayerDiscontinuedText": "Простите, сервис многопользовательской игры Google больше не поддерживается.\nЯ работаю над заменой так быстро, насколько это возможно.\nДо тех пор, пожалуйста выберете другой способ подключения.\n-Эрик", "googlePlayPurchasesNotAvailableText": "Покупки в Google Play недоступны.\nВозможно, вам необходимо обновить приложение магазина.", "googlePlayServicesNotAvailableText": "Сервисы Google Play недоступны.\nНекоторый функционал игры могут быть отключены.", @@ -884,9 +907,9 @@ "showFPSText": "Показывать FPS", "texturesText": "Текстуры", "titleText": "Графика", - "tvBorderText": "Граница телевизора", - "verticalSyncText": "Вертикальная синхронизация (V-Sync)", - "visualsText": "Визуальные эффекты" + "tvBorderText": "Граница экрана", + "verticalSyncText": "Вертикальная синхронизация", + "visualsText": "Видеоряд" }, "helpWindow": { "bombInfoText": "- Бомба -\nСильнее ударов, но может привести\nк смертельным повреждениям. Для\nнаилучших результатов бросать в\nпротивника пока не догорел фитиль.", @@ -902,7 +925,7 @@ "controlsText": "Управление", "devicesInfoText": "В VR-версию ${APP_NAME} можно играть по сети с обычной версией,\nтак что вытаскивайте свои дополнительные телефоны, планшеты\nи компьютеры, и играйте на них. Можно даже подключить\nобычную версию игры к VR-версии, чтобы позволить\nостальным наблюдать за действием.", "devicesText": "Устройства", - "friendsGoodText": "Бывают полезны. В ${APP_NAME} веселее играть с несколькими игроками;\nподдерживается до 8 игроков одновременно, что приводит нас к:", + "friendsGoodText": "Бывают полезны. ${APP_NAME} веселее всего с несколькими игроками\nи поддерживает до 8 одновременно, что приводит нас к:", "friendsText": "Друзья", "jumpInfoText": "- Прыжок -\nПрыгайте для перескакивания,\nшвыряния предметов подальше\nили для выражения радости.", "orPunchingSomethingText": "Или ударить, сбросить с обрыва и взорвать бомбой-липучкой по дороге вниз.", @@ -913,28 +936,28 @@ "powerupCurseNameText": "Проклятие", "powerupHealthDescriptionText": "Ни за что не догадаетесь.\nВозвращает полное здоровье.", "powerupHealthNameText": "Аптечка", - "powerupIceBombsDescriptionText": "Слабее, чем обычные бомбы\nно оставляет врагов заморожеными\nи чрезвычайно хрупкими.", + "powerupIceBombsDescriptionText": "Слабее, чем обычные бомбы\nно оставляет врагов заморожеными\nи в частности хрупкими.", "powerupIceBombsNameText": "Ледяные бомбы", - "powerupImpactBombsDescriptionText": "Чуть слабее обычных бомб,\nно взрываются при ударе.", + "powerupImpactBombsDescriptionText": "Чуть слабее обычных бомб,\nно взрываются при соприкосновении.", "powerupImpactBombsNameText": "Моментальные бомбы", "powerupLandMinesDescriptionText": "Выдаются по 3 штуки.\nПолезны для защиты базы или\nусмирения быстроногих врагов.", "powerupLandMinesNameText": "Мины", "powerupPunchDescriptionText": "Делают ваши удары быстрее,\nлучше, сильнее.", "powerupPunchNameText": "Боксерские перчатки", - "powerupShieldDescriptionText": "Немного поглощает урон,\nвместо вас.", + "powerupShieldDescriptionText": "Немного поглощает повреждения,\nчтобы тебе не пришлось.", "powerupShieldNameText": "Энергетический щит", "powerupStickyBombsDescriptionText": "Липнут ко всему, чего касаются.\nИ начинается веселье.", "powerupStickyBombsNameText": "Бомбы-липучки", "powerupsSubtitleText": "Конечно, ни одна игра не обходится без усилителей:", "powerupsText": "Усилители", "punchInfoText": "- Удар -\nЧем быстрее двигаются кулаки -\nтем cильнее удар. Так что бегайте\nи крутитесь как ненормальные.", - "runInfoText": "- Бег -\nДля бега удерживайте нажатой ЛЮБУЮ кнопку. Для этого хороши верхние триггеры\nили плечевые кнопки, если они у вас есть. Бегом передвигаться быстрее,\nно труднее поворачивать, так что осторожно с обрывами.", + "runInfoText": "- Бег -\nДля бега удерживайте нажатой ЛЮБУЮ кнопку. Для этого хороши триггеры и верхние кнопки, если они у вас есть.\nБегом передвигаться быстрее, но труднее поворачивать, так что смотри за обрывами.", "someDaysText": "Иногда просто хочется что-нибудь ударить. Или взорвать.", "titleText": "Справка ${APP_NAME}", "toGetTheMostText": "Чтобы выжать максимум из этой игры, вам необходимо:", "welcomeText": "Добро пожаловать в ${APP_NAME}!" }, - "holdAnyButtonText": "<держать любую кнопку>", + "holdAnyButtonText": "<удерживать любую кнопку>", "holdAnyKeyText": "<держать любую клавишу>", "hostIsNavigatingMenusText": "- ${HOST} в меню навигации как босс -", "importPlaylistCodeInstructionsText": "Используйте показанный код, чтобы импортировать этот плейлист где-то ещё:", @@ -942,19 +965,20 @@ "importText": "Импорт", "importingText": "Импортирую...", "inGameClippedNameText": "В игре будет\n\"${NAME}\"", + "inboxText": "Почта", "installDiskSpaceErrorText": "ОШИБКА: не удалось завершить установку. Может быть,\nне хватает свободного места на вашем устройстве.\nОсвободите место и попробуйте еще раз.", "internal": { "arrowsToExitListText": "чтобы выйти из списка нажмите ${LEFT} или ${RIGHT}", "buttonText": "кнопка", "cantKickHostError": "Невозможно кикнуть создателя.", - "chatBlockedText": "${NAME} заблокирован на ${TIME} секунд.", + "chatBlockedText": "Игроку ${NAME} заблокирован чат на ${TIME} секунд.", "connectedToGameText": "Вошел в игру '${NAME}'", "connectedToPartyText": "Вошел в лобби ${NAME}!", "connectingToPartyText": "Идет соединение...", "connectionFailedHostAlreadyInPartyText": "Соединение не удалось; хост находится в другом лобби.", "connectionFailedPartyFullText": "Соединение не удалось; группа полная", "connectionFailedText": "Соединение не удалось.", - "connectionFailedVersionMismatchText": "Соединение не удалось; хост использует другую версию игры.\nУбедитесь, что версии обеих сторон обновлены, и попытайтесь снова.", + "connectionFailedVersionMismatchText": "Соединение не удалось; хост использует другую версию игры.\nУбедитесь, что версии обеих сторон совпадают, и попытайтесь снова.", "connectionRejectedText": "Соединение отклонено.", "controllerConnectedText": "${CONTROLLER} подключен.", "controllerDetectedText": "Обнаружен 1 контроллер.", @@ -968,9 +992,9 @@ "corruptFileText": "Обнаружены поврежденные файлы. Попытайтесь переустановить или обратитесь к ${EMAIL}", "errorPlayingMusicText": "Ошибка воспроизведения музыки: ${MUSIC}", "errorResettingAchievementsText": "Не удается сбросить онлайн-медали, пожалуйста, попробуйте позже.", - "hasMenuControlText": "${NAME} контролирует меню", + "hasMenuControlText": "Меню контролирует ${NAME}.", "incompatibleNewerVersionHostText": "Хост использует более новую версию игры.\nОбновитесь до последней версии и попробуйте снова.", - "incompatibleVersionHostText": "Хост использует другую версию игры.\nУбедитесь, что обе ваши версии обновлены, и попытайтесь снова.", + "incompatibleVersionHostText": "Хост использует другую версию игры.\nУбедитесь, что ваши версии совпадают, и попытайтесь снова.", "incompatibleVersionPlayerText": "${NAME} использует другую версию игры и не может соединится.\nУбедитесь, что обе ваши версии обновлены, и попытайтесь снова.", "invalidAddressErrorText": "Ошибка: неправильный адрес.", "invalidNameErrorText": "Ошибка: некорректное имя.", @@ -988,28 +1012,30 @@ "playerJoinedPartyText": "${NAME} вошел в лобби!", "playerLeftPartyText": "${NAME} покинул лобби.", "rejectingInviteAlreadyInPartyText": "Приглашение отклонено (уже в лобби).", - "serverRestartingText": "Сервер перезагружается. Попробуйте позже...", + "serverRestartingText": "Сервер перезагружается. Пожалуйста, перезайдите...", "serverShuttingDownText": "Сервер выключается...", "signInErrorText": "Ошибка входа.", "signInNoConnectionText": "Невозможно войти. (нет интернет соединения?)", "teamNameText": "Команда ${NAME}", - "telnetAccessDeniedText": "ОШИБКА: пользователь не предоставил доступ Telnet.", + "telnetAccessDeniedText": "ОШИБКА: Пользователь не предоставил доступ Telnet.", "timeOutText": "(осталось ${TIME} секунд)", "touchScreenJoinWarningText": "Вы присоединились с сенсорным экраном.\nЕсли это была ошибка, нажмите 'Меню->Покинуть игру'.", "touchScreenText": "Сенсорный экран", "trialText": "проба", - "unableToResolveHostText": "Ошибка: невозможно достичь хоста.", + "unableToCompleteTryAgainText": "Нельзя выполнить это сейчас.\nПожалуйста попробуйте ещё раз", + "unableToResolveHostText": "Ошибка: невозможно определить хост.", "unavailableNoConnectionText": "Сейчас это недоступно (нет интернет соединения?)", "vrOrientationResetCardboardText": "Используйте это, чтобы сбросить ориентации VR.\nЧтобы играть в игру, вам понадобится внешний контроллер.", "vrOrientationResetText": "Сброс ориентации VR.", "willTimeOutText": "(время выйдет при бездействии)" }, + "inventoryText": "Инвентарь", "jumpBoldText": "ПРЫЖОК", - "jumpText": "Прыгнуть", + "jumpText": "Прыжок", "keepText": "Оставить", "keepTheseSettingsText": "Оставить эти настройки?", "keyboardChangeInstructionsText": "Нажмите на пробел два раза, чтобы сменить раскладку.", - "keyboardNoOthersAvailableText": "Нету других раскладок.", + "keyboardNoOthersAvailableText": "Отсутствуют другие раскладки.", "keyboardSwitchText": "Раскладка изменена на \"${NAME}\".", "kickOccurredText": "${NAME} исключили.", "kickQuestionText": "Исключить ${NAME}?", @@ -1017,16 +1043,16 @@ "kickVoteCantKickAdminsText": "Администраторов нельзя исключить.", "kickVoteCantKickSelfText": "Вы не можете исключить самого себя (но можете выйти).", "kickVoteFailedNotEnoughVotersText": "Недостаточно игроков для голосования.", - "kickVoteFailedText": "Голосование на вылет не удалось.", - "kickVoteStartedText": "Начато голосование за вылет ${NAME}.", - "kickVoteText": "Голосовать за вылет", - "kickVotingDisabledText": "Голосование за вылет отключено.", + "kickVoteFailedText": "Голосование на исключение не удалось.", + "kickVoteStartedText": "Начато голосование за исключение ${NAME}.", + "kickVoteText": "Голосовать за исключение", + "kickVotingDisabledText": "Голосование за исключение отключено.", "kickWithChatText": "Наберите ${YES} для согласия или ${NO} для отказа.", "killsTallyText": "Убито ${COUNT}", "killsText": "Убито", "kioskWindow": { "easyText": "Легкий", - "epicModeText": "Эпический режим", + "epicModeText": "Замедленный режим", "fullMenuText": "Полное меню", "hardText": "Трудный", "mediumText": "Средний", @@ -1050,8 +1076,11 @@ "seasonEndsMinutesText": "Сезон завершится через ${NUMBER} минут.", "seasonText": "Сезон ${NUMBER}", "tournamentLeagueText": "Чтобы участвовать в этом турнире, вы должны достичь лиги ${NAME}.", - "trophyCountsResetText": "Трофеи будут сброшены в следующем сезоне." + "trophyCountsResetText": "Трофеи будут сброшены в следующем сезоне.", + "upToDateBonusDescriptionText": "Игроки, использующие последнюю версию игры\nполучают бонус ${PERCENT}% к очкам.", + "upToDateBonusText": "Бонус за обновление" }, + "learnMoreText": "Подробнее", "levelBestScoresText": "Лучший рекорд на ${LEVEL}", "levelBestTimesText": "Лучшее время на ${LEVEL}", "levelFastestTimesText": "Лучшее время уровня ${LEVEL}", @@ -1060,7 +1089,7 @@ "levelMustBeCompletedFirstText": "Сначала должен быть пройден ${LEVEL}.", "levelText": "Уровень ${NUMBER}", "levelUnlockedText": "Уровень разблокирован!", - "livesBonusText": "Бонус жизней", + "livesBonusText": "Бонус оставшихся жизней", "loadingText": "Загрузка", "loadingTryAgainText": "Загрузка; попробуй снова через несколько секунд...", "macControllerSubsystemBothText": "Оба (не рекомендуется)", @@ -1070,7 +1099,7 @@ "macControllerSubsystemMFiText": "Сделано для iOS/Mac", "macControllerSubsystemTitleText": "Поддержка контроллера", "mainMenu": { - "creditsText": "Благодарности", + "creditsText": "Участвовали в создании", "demoMenuText": "Меню демо", "endGameText": "Закончить игру", "endTestText": "Завершить тест", @@ -1087,21 +1116,23 @@ "settingsText": "Настройки" }, "makeItSoText": "Да будет так", - "mapSelectGetMoreMapsText": "Ещё карт...", + "mapSelectGetMoreMapsText": "Больше карт...", "mapSelectText": "Выбрать...", "mapSelectTitleText": "Карты игры ${GAME}", "mapText": "Карта", "maxConnectionsText": "Максимум соединений", - "maxPartySizeText": "Размер группы", + "maxPartySizeText": "Размер лобби", "maxPlayersText": "Максимум игроков", - "merchText": "Мерч с символикой Bomb squad!", + "merchText": "Мерч с символикой BombSquad!", "modeArcadeText": "Аркадный режим", "modeClassicText": "Обычный режим", "modeDemoText": "Демонстрационный режим", + "moreSoonText": "Скоро будет больше...", + "mostDestroyedPlayerText": "Самый побежденный игрок", "mostValuablePlayerText": "Самый ценный игрок", "mostViolatedPlayerText": "Самый побитый игрок", "mostViolentPlayerText": "Самый буйный игрок", - "moveText": "Движение", + "moveText": "Двигаться", "multiKillText": "${COUNT} ЗА РАЗ!!!", "multiPlayerCountText": "${COUNT} игроков", "mustInviteFriendsText": "Примечание: вы должны пригласить друзей\nна панели \"${GATHER}\" или присоединить\nконтроллеры для совместной игры.", @@ -1110,10 +1141,11 @@ "nameKilledText": "${NAME} убил ${VICTIM}.", "nameNotEmptyText": "Имя не может быть пустым!", "nameScoresText": "${NAME} ведет!", - "nameSuicideKidFriendlyText": "${NAME} случайно убился.", + "nameSuicideKidFriendlyText": "${NAME} случайно умер.", "nameSuicideText": "${NAME} совершил суицид.", "nameText": "Имя", "nativeText": "Разрешение устройства", + "newExclaimText": "Новинка!", "newPersonalBestText": "Новый личный рекорд!", "newTestBuildAvailableText": "Доступна новая тестовая версия! (${VERSION} сборка ${BUILD}).\nОбновить: ${ADDRESS}", "newText": "Новый", @@ -1121,33 +1153,38 @@ "nextAchievementsText": "Следующие достижения:", "nextLevelText": "Следующий уровень", "noAchievementsRemainingText": "- нет", - "noContinuesText": "(без продолжений)", + "noContinuesText": "(без продолжения)", "noExternalStorageErrorText": "На данном устройстве не найдено внешней памяти", "noGameCircleText": "Ошибка: не вошли в GameCircle", "noJoinCoopMidwayText": "К кооперативным играм нельзя присоединиться посреди игры.", - "noPluginsInstalledText": "Плагины не установлены", + "noMessagesText": "Пусто.", + "noPluginsInstalledText": "Отсутствуют установленные плагины", "noProfilesErrorText": "У вас нет профиля игрока, так что вас будут звать '${NAME}'.\nСоздать профиль можно перейдя в 'Настройки' > 'Профили игроков'.", - "noScoresYetText": "Счета пока нет.", + "noScoresYetText": "Результатов пока нет.", "noServersFoundText": "Серверы не найдены.", "noThanksText": "Нет, спасибо", "noTournamentsInTestBuildText": "ВНИМАНИЕ: Турнирные очки из этой тестовой сборки будут не засчитаны.", "noValidMapsErrorText": "Для данного типа игры не найдено корректных карт.", "notEnoughPlayersRemainingText": "Не осталось достаточно игроков; выйдите и начните новую игру.", - "notEnoughPlayersText": "Для начала этой игры нужно как минимум ${COUNT} игрока!", + "notEnoughPlayersText": "Для начала игры нужно как минимум ${COUNT} игрока(ов)!", + "notEnoughTicketsText": "Недостаточно билетов!", "notNowText": "Не сейчас", "notSignedInErrorText": "Войдите в аккаунт для начала.", - "notSignedInGooglePlayErrorText": "Войдите сначала в Google Play, а там посмотрим.", + "notSignedInGooglePlayErrorText": "Для этого Вам необходимо войти с помощью Google Play.", "notSignedInText": "(вы не вошли)", "notUsingAccountText": "Рекомендация: вы не используете аккаунт ${SERVICE}.\nЗайдите в 'Аккаунт' => 'зайти в ${SERVICE}', чтобы зайти в ${SERVICE}.", "nothingIsSelectedErrorText": "Ничего не выбрано!", "numberText": "${NUMBER}", "offText": "Выкл", - "okText": "Oк", + "okText": "Ок", "onText": "Вкл", - "oneMomentText": "Один момент…", + "oneMomentText": "Минутку...", "onslaughtRespawnText": "${PLAYER} возродится в ${WAVE} волне", + "openMeText": "Открой меня!", + "openNowText": "Открыть сейчас", + "openText": "Открыть", "orText": "${A} или ${B}", - "otherText": "Другие...", + "otherText": "Другое...", "outOfText": "(${RANK} из ${ALL})", "ownFlagAtYourBaseWarning": "Чтобы набрать очки, ваш собственный\nфлаг должен быть на вашей базе!", "packageModsEnabledErrorText": "Сетевая игра запрещена, когда включены моды локального пакета (см. Настройки->Дополнительно)", @@ -1173,10 +1210,10 @@ "playWindow": { "coopText": "Кооператив", "freeForAllText": "Каждый за себя", - "oneToFourPlayersText": "1-4 игрока", + "oneToFourPlayersText": "1-4 игрок(а)", "teamsText": "Команды", "titleText": "Играть", - "twoToEightPlayersText": "2-8 игроков" + "twoToEightPlayersText": "2-8 игрока(ов)" }, "playerCountAbbreviatedText": "${COUNT}и", "playerDelayedJoinText": "${PLAYER} присоединится в следующем раунде.", @@ -1191,7 +1228,7 @@ "editButtonText": "Изменить\nпрофиль", "explanationText": "(настраивайте имена и внешний вид игрока)", "newButtonText": "Новый\nпрофиль", - "titleText": "Профили игроков" + "titleText": "Ваши профили" }, "playerText": "Игрок", "playlistNoValidGamesErrorText": "Этот плейлист содержит неоткрытые игры.", @@ -1203,8 +1240,8 @@ "pluginClassLoadErrorText": "Ошибка при попытке загрузить класс плагина '${PLUGIN}': ${ERROR}", "pluginInitErrorText": "Ошибка при инициализации плагина '${PLUGIN}': ${ERROR}", "pluginSettingsText": "Настройки плагина", - "pluginsAutoEnableNewText": "Автоматически включать плагины", - "pluginsDetectedText": "Обнаружены новые плагины! Перезапустите игру, чтобы активировать их, или настройте их в настройках.", + "pluginsAutoEnableNewText": "Автоматически включать новые плагины", + "pluginsDetectedText": "Обнаружен(ы) новый(е) плагин(ы)! Перезапустите игру чтобы активировать, или отредактируйте в настройках.", "pluginsDisableAllText": "Выключить все плагины", "pluginsEnableAllText": "Включить все плагины", "pluginsRemovedText": "${NUM} плагин(ов) больше не найдены.", @@ -1239,10 +1276,12 @@ "punchText": "Ударить", "purchaseForText": "Купить за ${PRICE}", "purchaseGameText": "Купить игру", + "purchaseNeverAvailableText": "Извините, покупки недоступны на вашем устройстве.\nПопробуйте зайти в ваш аккаунт с другого устройства и выполнить транзакцию с него.", + "purchaseNotAvailableText": "Эта покупка недоступна.", "purchasingText": "Покупка...", "quitGameText": "Выйти из ${APP_NAME}?", "quittingIn5SecondsText": "Выход через 5 секунд...", - "randomPlayerNamesText": "Дима, Кузя, Вован, Маха, Русский, Какуля, Бибер, Борька, Няшка, Толян, Ержан, Дибисяра, Вася, Морген, Серёга, Ваня, Кеша, Жорик, Стёпа, Эдгар, Цыган, Олег, Егор, Ёршик", + "randomPlayerNamesText": "Каратель, Подрывник, Вован, Маха, Русский, Псих, Бибер, Борька, Няшка, Мастер, Люцифер, Взрыватель, Морген, Джинджер, Крушитель, Лавелас, Леонидас, Гангстер, Ломатель, Волк, Хитрец, Счастливчик, Везунчик, Стратег, Рустам", "randomText": "Случайный", "rankText": "Ранг", "ratingText": "Рейтинг", @@ -1257,10 +1296,10 @@ "button_position": "Положение кнопки", "button_size": "Размер кнопки", "cant_resolve_host": "Сервер не найден.", - "capturing": "Слушаю...", + "capturing": "Ловлю...", "connected": "Соединено.", "description": "Используйте Ваш телефон или планшет как контроллер BombSquad.\nДо 8 устройств могут быть одновременно подключены для эпических битв в мультиплеере на одном ТВ или планшете.", - "disconnected": "Выброшен сервером.", + "disconnected": "Отключен сервером.", "dpad_fixed": "неподвижный", "dpad_floating": "плавающий", "dpad_position": "Расположение D-Pad", @@ -1281,6 +1320,7 @@ "version_mismatch": "Несовпадение версий.\nУбедитесь, что BombSquad и контроллер BombSquad\nобновлены до последней версии и повторите попытку." }, "removeInGameAdsText": "Разблокируйте \"${PRO}\" в магазине, чтобы убрать рекламу в игре.", + "removeInGameAdsTokenPurchaseText": "ОГРАНИЧЕННОЕ ПРЕДЛОЖЕНИЕ: Купите ЛЮБОЙ пакет жетонов, чтобы убрать рекламу в игре.", "renameText": "Переименовать", "replayEndText": "Завершить просмотр записи", "replayNameDefaultText": "Запись последней игры", @@ -1301,7 +1341,7 @@ "revertText": "Восстановить", "runText": "Бежать", "saveText": "Сохранить", - "scanScriptsErrorText": "Ошибка(и) сканирования скриптов. Загляни в логи для подробностей.", + "scanScriptsErrorText": "Ошибка(и) сканирования скриптов. Ознакомтесь с логом для подробностей.", "scanScriptsMultipleModulesNeedUpdatesText": "${PATH} и ${NUM} других мод(ов) нужно обновить до ${API}", "scanScriptsSingleModuleNeedsUpdatesText": "${PATH} Нужно обновить до ${API}", "scoreChallengesText": "Медали за очки", @@ -1331,18 +1371,20 @@ }, "settingsWindowAdvanced": { "alwaysUseInternalKeyboardDescriptionText": "(простая, удобная для контроллера виртуальная клавиатура для ввода текста)", - "alwaysUseInternalKeyboardText": "Всегда использовать ТОЛЬКО встроенную (внутреннюю) клавиатуру. Удобно если клавиатура др. приложений лагает.", + "alwaysUseInternalKeyboardText": "Всегда использовать ТОЛЬКО встроенную клавиатуру", "benchmarksText": "Тест производительности и тест-нагрузка", "devToolsText": "Инструменты разработчиков", "disableCameraGyroscopeMotionText": "Убрать тряску и движение камеры при помощи гироскопа", - "disableCameraShakeText": "Отключить эффект трясущейся камеры.", + "disableCameraShakeText": "Отключить тряску камеры.", "disableThisNotice": "(вы можете отключить это уведомление в настройках)", "enablePackageModsDescriptionText": "(позволяет дополнительные возможности для моддинга, но отключает сетевую игру)", "enablePackageModsText": "Включить моды локального пакета", "enterPromoCodeText": "Введите промо-код", "forTestingText": "Примечание: эти значения используются только для тестирования и будут потеряны, когда приложение завершит работу.", - "helpTranslateText": "Переводы игры ${APP_NAME} с английского совершён общественными\nусилиями. Если вы хотите предложить или исправить\nперевод, следуйте по ссылке ниже. Заранее спасибо!", - "kickIdlePlayersText": "Включите, чтобы выкидывать игроков ушедших в статус \"AFK\".", + "helpTranslateText": "Неанглоязычные переводы ${APP_NAME} являются общественным\nусилием. Если вы хотите внести вклад или исправить\nперевод, перейдите по ссылке ниже. Заранее спасибо!", + "insecureConnectionsDescriptionText": "не рекомендуется, но может разрешить игру \nонлайн в недоступных странах или сетях", + "insecureConnectionsText": "Использовать незащищённые подключения", + "kickIdlePlayersText": "Исключать бездействующих игроков", "kidFriendlyModeText": "Семейный режим (меньше насилия, и т.д.)", "languageText": "Язык", "moddingGuideText": "Руководство по моддингу", @@ -1350,11 +1392,11 @@ "mustRestartText": "Необходимо перезапустить игру, чтобы изменения вступили в силу.", "netTestingText": "Тестирование сети", "resetText": "Сбросить", - "sendInfoText": "Отослать информацию (обратная связь с разработчиком).", + "sendInfoText": "Отправить информацию (обратная связь с разработчиком).", "showBombTrajectoriesText": "Показывать траекторию бомбы", "showDemosWhenIdleText": "Показать Демо-Версию в режиме ожидания.", "showDeprecatedLoginTypesText": "Показывать устаревшие типы входа в систему", - "showDevConsoleButtonText": "Показать кнопку консоли (для разработчика).", + "showDevConsoleButtonText": "Показать кнопку консоли", "showInGamePingText": "Показать пинг (Задержку действий на сервере).", "showPlayerNamesText": "Показывать имена игроков", "showUserModsText": "Показать папку модов", @@ -1363,7 +1405,7 @@ "translationFetchErrorText": "статус перевода недоступен", "translationFetchingStatusText": "проверка статуса перевода...", "translationInformMe": "Сообщите мне, если мой язык нуждается в обновлениях", - "translationNoUpdateNeededText": "Данный язык полностью обновлен, Ееее-Юху!)", + "translationNoUpdateNeededText": "Данный язык полностью обновлен, ура!", "translationUpdateNeededText": "** Установленный язык требует обновлений!!!**", "vrTestingText": "Тестирование VR" }, @@ -1381,7 +1423,7 @@ "soundtrackTypeNames": { "CharSelect": "Выбор персонажа", "Chosen One": "Избранный", - "Epic": "Игры в эпическом режиме", + "Epic": "Игры в замедленном режиме", "Epic Race": "Эпическая гонка", "FlagCatcher": "Захват флага", "Flying": "Счастливые мысли", @@ -1402,6 +1444,7 @@ }, "spaceKeyText": "пробел", "statsText": "Статистика", + "stopRemindingMeText": "Не напоминай мне", "storagePermissionAccessText": "Это требует доступа к хранилищу", "store": { "alreadyOwnText": "У вас уже есть ${NAME}!", @@ -1435,20 +1478,20 @@ "salePercentText": "(Скидка ${PERCENT}%)", "saleText": "СКИДКА", "searchText": "Поиск", - "teamsFreeForAllGamesText": "Командные игры / Каждый сам за себя", - "totalWorthText": "*** ${TOTAL_WORTH} значение! ***", + "teamsFreeForAllGamesText": "Командные / Каждый сам за себя игры", + "totalWorthText": "*** Общая стоимость набора - ${TOTAL_WORTH}! ***", "upgradeQuestionText": "Обновить?", "winterSpecialText": "Зимняя акция", "youOwnThisText": "- у вас это уже есть -" }, - "storeDescriptionText": "Игровое безумие с 8 игроками!\n\nВзрывайте своих друзей (или ботов) в турнире взрывных мини-игр, таких как Захват флага и Эпический смертельный бой замедленного действия!\n\nС простым управлением и расширенной поддержкой контроллеров 8 человек могут присоединиться к действию, можно даже использовать мобильные устройства как контроллеры через бесплатное приложение 'BombSquad Remote'!\n\nВ атаку!\n\nСм. www.froemling.net/BombSquad для дополнительной информации.", + "storeDescriptionText": "Игровое безумие с 8 игроками!\n\nВзрывайте своих друзей (или ботов) в турнире взрывных мини-игр, таких как захват флага, хоккея с взрывчаткой и смертельного боя замедленного действия!\n\nС простым управлением и расширенной поддержкой контроллеров возможно присоединиться вплоть до 8 человек к игре, можно даже использовать мобильные устройства как контроллеры через бесплатное приложение 'BombSquad Remote'!\n\nВ атаку!\n\nСм. www.froemling.net/BombSquad для дополнительной информации.", "storeDescriptions": { "blowUpYourFriendsText": "Взорви друзей.", - "competeInMiniGamesText": "Соревнуйтесь в мини-играх от гонок до левитации.", + "competeInMiniGamesText": "Соревнуйтесь в мини-играх от гонок до полёта.", "customize2Text": "Настройка персонажей, мини-игр и даже саундтрека.", "customizeText": "Настройка персонажей и создание своих собственных плей-листов мини-игр.", - "sportsMoreFunText": "Спорт веселее со взрывчаткой.", - "teamUpAgainstComputerText": "Команды против компьютера." + "sportsMoreFunText": "Спорт куда веселее со взрывчаткой.", + "teamUpAgainstComputerText": "Объединитесь против ботов." }, "storeText": "Магазин", "submitText": "Отправить", @@ -1465,7 +1508,8 @@ "testBuildValidatedText": "Тестовая сборка проверена. Наслаждайтесь!", "thankYouText": "Спасибо за вашу поддержку! Веселой игры!!", "threeKillText": "ТРЕХ ЗА РАЗ!!", - "timeBonusText": "Бонус времени", + "ticketsDescriptionText": "Билеты можно использовать для открытия\nперсонажей, карт, мини-игр и множество\nдругого в магазине.\n\nБилеты можно найти в сундуках, полученные в кампании и за достижения, а так же выигранные в турнирах.", + "timeBonusText": "Бонус за время", "timeElapsedText": "Прошло времени", "timeExpiredText": "Время вышло", "timeSuffixDaysText": "${COUNT}д", @@ -1474,11 +1518,25 @@ "timeSuffixSecondsText": "${COUNT}с", "tipText": "Подсказка", "titleText": "BombSquad", - "titleVRText": "BombSquad ВР", + "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "Получить токены", + "notEnoughTokensText": "Недостаточно токенов!", + "numTokensText": "${COUNT} Токенов", + "openNowDescriptionText": "У тебя достаточно жетонов\nчтобы открыть сундук сейчас - \nтебе не нужно больше ждать.", + "shinyNewCurrencyText": "Блестяще новая валюта в BombSquad!", + "tokenPack1Text": "Небольшой набор токенов", + "tokenPack2Text": "Средний набор токенов", + "tokenPack3Text": "Огромный набор токенов", + "tokenPack4Text": "Огромный набор токенов", + "tokensDescriptionText": "Токены используются для ускорения открытия\nсундуков и для остальных функций игры/аккаунта.\n\nВы можете выиграть токены в игре или купить\nих в магазине. Или же купите Золотой Пропуск\nдля бесконечных токенов и не думайте о них.", + "youHaveGoldPassText": "У вас имеется Золотой Пропуск.\nВсе покупки за токены бесплатны.\nНаслаждайтесь!" + }, "topFriendsText": "Топ друзей", "tournamentCheckingStateText": "Проверка статуса турнира, пожалуйста, подождите...", "tournamentEndedText": "Турнир закончился. Скоро начнется новый.", "tournamentEntryText": "Вход в турнир", + "tournamentFinalStandingsText": "Финальный результат", "tournamentResultsRecentText": "Последние Результаты турнира", "tournamentStandingsText": "Позиции в турнире", "tournamentText": "Турнир", @@ -1490,11 +1548,11 @@ "Agent Johnson": "Агент Джонсон", "B-9000": "B-9000", "Bernard": "Бернард", - "Bones": "Костяшка", + "Bones": "Скелет", "Butch": "Силач", "Easter Bunny": "Пасхальный кролик", "Flopsy": "Флопси", - "Frosty": "Снежный", + "Frosty": "Снеговик", "Gretel": "Гретель", "Grumbledorf": "Грамблдорф", "Jack Morgan": "Джек Морган", @@ -1552,15 +1610,27 @@ "Uber Onslaught": "Убер атака", "Uber Runaround": "Убер побег" }, + "displayItemNames": { + "${C} Tickets": "${C} Билетов", + "${C} Tokens": "${C} Токенов", + "Chest": "Сундук", + "L1 Chest": "Сундук 1го уровня", + "L2 Chest": "Сундук 2го уровня", + "L3 Chest": "Сундук 3го уровня", + "L4 Chest": "Сундук 4го уровня", + "L5 Chest": "Сундук 5го уровня", + "L6 Chest": "Сундук 6го уровня", + "Unknown Chest": "Неизвестный сундук" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Чтобы победить, стань избранным на некоторое время.\nЧтобы стать избранным, убей избранного.", "Bomb as many targets as you can.": "Взорвите столько мишеней, сколько сможете.", "Carry the flag for ${ARG1} seconds.": "Пронесите флаг в течение ${ARG1} секунд.", "Carry the flag for a set length of time.": "Пронесите флаг в течение заданного времени.", - "Crush ${ARG1} of your enemies.": "Разбейте ${ARG1} врагов.", + "Crush ${ARG1} of your enemies.": "Победите ${ARG1} врагов.", "Defeat all enemies.": "Победите всех врагов.", "Dodge the falling bombs.": "Увернитесь от падающих бомб.", - "Final glorious epic slow motion battle to the death.": "Финальная эпическая смертельная битва в замедленном действии.", + "Final glorious epic slow motion battle to the death.": "Финальная смертельная битва в замедленном действии.", "Gather eggs!": "Соберите яйца!", "Get the flag to the enemy end zone.": "Отнесите флаг в зону защиты противника.", "How fast can you defeat the ninjas?": "Как быстро вы сможете победить ниндзя?", @@ -1636,7 +1706,8 @@ "Arabic": "Арабский", "Belarussian": "Белорусский", "Chinese": "Китайский упрощенный", - "ChineseTraditional": "Китайский традиционный", + "ChineseSimplified": "Китайский - упрощённый", + "ChineseTraditional": "Китайский - традиционный", "Croatian": "Хорватский", "Czech": "Чешский", "Danish": "Датский", @@ -1657,13 +1728,18 @@ "Korean": "Корейский", "Malay": "Малайский", "Persian": "Персидский", + "PirateSpeak": "Пиратский язык", "Polish": "Польский", "Portuguese": "Португальский", + "PortugueseBrazil": "Португальский - Бразилия", + "PortuguesePortugal": "Португальский", "Romanian": "Румынский", "Russian": "Русский", "Serbian": "Сербский", "Slovak": "Словацкий", "Spanish": "Испанский", + "SpanishLatinAmerica": "Испанский - Латинская Америка", + "SpanishSpain": "Испанский", "Swedish": "Шведский", "Tamil": "Тамильский", "Thai": "Тайский", @@ -1698,7 +1774,7 @@ "Zigzag": "Зигзаг" }, "playlistNames": { - "Just Epic": "Только эпический", + "Just Epic": "Только замедленный", "Just Sports": "Только спорт" }, "promoCodeResponses": { @@ -1723,14 +1799,15 @@ "An error has occurred; please contact support. (${ERROR})": "произошла ошибка;Пожалуйста обратитесь в службу поддержки. (${ERROR})", "An error has occurred; please contact support@froemling.net.": "Произошла ошибка; пожалуйста, свяжитесь с support@froemling.net.", "An error has occurred; please try again later.": "Произошла ошибка, пожалуйста, повторите попытку позже.", - "Are you sure you want to link these accounts?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\nThis cannot be undone!": "Точно хотите связать аккаунты?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\nОтменить будет нельзя!", + "Are you sure you want to link these accounts?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\nThis cannot be undone!": "Вы точно хотите связать аккаунты?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\nДействие нельзя будет отменить!", "BombSquad Pro unlocked!": "BombSquad Pro разблокирован!", "Can't link 2 accounts of this type.": "Невозможно связать 2 аккаунта этого типа.", "Can't link 2 diamond league accounts.": "Невозможно связать 2 аккаунта бриллиантовой лиги.", "Can't link; would surpass maximum of ${COUNT} linked accounts.": "Невозможно связать; будет превышен максимум ${COUNT} связанных аккаунтов.", - "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Ах ты, читер; Очки и награды заморожены на ${COUNT} дней.", + "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Жульничать нехорошо! Очки и награды заморожены на ${COUNT} дней.", "Could not establish a secure connection.": "Не удалось установить безопасное соединение.", - "Daily maximum reached.": "Хватит на сегодня.", + "Daily maximum reached.": "Суточный предел достигнут.", + "Daily sign-in reward": "Ежедневная награда за вход", "Entering tournament...": "Вход в турнир...", "Invalid code.": "Неверный код.", "Invalid payment; purchase canceled.": "Что-то пошло не так. Покупка отменена.", @@ -1740,11 +1817,14 @@ "Item unlocked!": "Предмет разблокирован!!!", "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "СВЯЗКА ЗАПРЕЩЕНА. ${ACCOUNT} содержит \nважные данные, которые БУДУТ ПОТЕРЯНЫ.\nВы можете связать в обратном порядке\n(и потерять данные ЭТОГО аккаунта)", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "Связать этот ${ACCOUNT} аккаунт с этим?\nВсе существующие данные на ${ACCOUNT} будут потеряны.\nЭто действие не может быть отменено. Вы уверены?", + "Longer streaks lead to better rewards.": "Чем дольше дней вы заходите в игру подряд, тем лучше награды.", "Max number of playlists reached.": "Достигнуто максимальное количество плейлистов.", "Max number of profiles reached.": "Достигнуто максимальное количество профилей.", "Maximum friend code rewards reached.": "Достигнут лимит кодов.", "Message is too long.": "Сообщение слишком длинное.", + "New tournament result!": "Новый результат турнира!", "No servers are available. Please try again soon.": "Нет доступных серверов. Пожалуйста попробуйте позднее.", + "No slots available. Free a slot and try again.": "Все места заняты. Освободите место и попробуйте ещё раз.", "Profile \"${NAME}\" upgraded successfully.": "Профиль \"${NAME}\" обновлен успешно.", "Profile could not be upgraded.": "Профиль не может быть обновлен.", "Purchase successful!": "Успешная транзакция!", @@ -1754,7 +1834,9 @@ "Sorry, this code has already been used.": "Упс, этот код уже использован.", "Sorry, this code has expired.": "Упс, время действия кода истекло.", "Sorry, this code only works for new accounts.": "Упс, этот код работает только для новых аккаунтов.", + "Sorry, this has expired.": "Упс, время истекло.", "Still searching for nearby servers; please try again soon.": "Ведётся поиск ближайших серверов; пожалуйста попробуйте позднее.", + "Streak: ${NUM} days": "Промежуток: ${NUM} дней", "Temporarily unavailable; please try again later.": "Временно недоступно; Пожалуйста, повторите попытку позже.", "The tournament ended before you finished.": "Турнир закончился прежде, чем вы закончили.", "This account cannot be unlinked for ${NUM} days.": "Этот аккаунт невозможно отвязать в течение ${NUM} дней.", @@ -1764,21 +1846,30 @@ "Tournaments disabled due to rooted device.": "Турниры отключены из-за рутированного устройства.", "Tournaments require ${VERSION} or newer": "Для турниров требуется версия ${VERSION} или выше.", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "Отвязать ${ACCOUNT} от этого аккаунта?\nВсе данные на ${ACCOUNT} будут сброшены.\n(за исключением достижений в некоторых случаях)", - "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "ПРЕДУПРЕЖДЕНИЕ: жалобы на хакерство были выданы на вашу учетную запись.\nУчетные записи, которые считаются взломанными, будут заблокированы. Пожалуйста, играйте честно.", + "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "ПРЕДУПРЕЖДЕНИЕ: на Ваш аккаунт поступили жалобы о жульничестве.\nАккаунты, использующиеся для жульничества будут заблокированы. Пожалуйста, играйте честно.", + "Wait reduced!": "Время ожидания уменьшено!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "Предупреждение: эта версия игры ограничена старыми данными учетной записи; некоторые данные могут отсутствовать или быть устаревшими.\nПожалуйста, обновите игру до более новой версии, чтобы увидеть последние данные учетной записи.", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "Желаете связать аккаунт устройства вот c этим?\n\nАккаунт устройства ${ACCOUNT1}\nТекущий аккаунт ${ACCOUNT2}\n\nЭто позволит сохранить ваши нынешние достижения.\nВнимание: отмена невозможна!", "You already own this!": "Вы это уже приобрели!", - "You can join in ${COUNT} seconds.": "Ты можешь войти через ${COUNT} секунд", + "You can join in ${COUNT} seconds.": "Вы можете войти через ${COUNT} секунд.", "You don't have enough tickets for this!": "У вас недостаточно билетов для этой покупки!", - "You don't own that.": "У вас этого нету.", + "You don't own that.": "У вас этого нет.", "You got ${COUNT} tickets!": "Вы получили ${COUNT} билетов!", + "You got ${COUNT} tokens!": "У вас ${COUNT} токенов!", "You got a ${ITEM}!": "Вы получили ${ITEM}!", + "You got a chest!": "Вы получили сундук!", + "You got an achievement reward!": "Вы получили награду за достижение!", "You have been promoted to a new league; congratulations!": "Вас повысили и перевели в новую лигу; поздравляем!", + "You lost a chest! (All your chest slots were full)": "Вы потеряли сундук! (Ваш инвентарь полон)", + "You must update the app to view this.": "Вы должны обновить игру чтобы увидеть это.", "You must update to a newer version of the app to do this.": "Чтобы это сделать, вы должны обновить приложение.", "You must update to the newest version of the game to do this.": "Вы должны обновиться до новейшей версии игры, чтобы сделать это.", "You must wait a few seconds before entering a new code.": "Подождите несколько секунд, прежде чем вводить новый код.", + "You placed #${RANK} in a tournament!": "Вы заняли #${RANK} в турнире!", "You ranked #${RANK} in the last tournament. Thanks for playing!": "Ваш ранг в последнем турнире: ${RANK}! Спасибо за игру!", "Your account was rejected. Are you signed in?": "Ваш аккаунт отклонён. Вы вошли в систему?", - "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Ваша версия игры была модифицирована.\nУберите все изменения и попробуйте снова.", + "Your ad views are not registering. Ad options will be limited for a while.": "Ваши просмотры рекламы не регистрируются. Функция рекламы будет ограничена какое-то время.", + "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Ваша версия игры модифицирована.\nУберите все изменения (в т.ч. плагины) и попробуйте снова.", "Your friend code was used by ${ACCOUNT}": "Ваш код был использован ${ACCOUNT}" }, "settingNames": { @@ -1800,13 +1891,13 @@ "Enable Impact Bombs": "Включить ударные бомбы", "Enable Triple Bombs": "Включить тройные бомбы", "Entire Team Must Finish": "Вся команда должна финишировать", - "Epic Mode": "Эпический режим", + "Epic Mode": "Замедленный режим", "Flag Idle Return Time": "Время возврата брошенного флага", "Flag Touch Return Time": "Время захвата флага", "Hold Time": "Время удержания", "Kills to Win Per Player": "Убийств на игрока до победы", "Laps": "Круги", - "Lives Per Player": "Жизней на игрока", + "Lives Per Player": "Кол-во жизней на игрока", "Long": "Долго", "Longer": "Дольше", "Mine Spawning": "Минирование", @@ -1825,7 +1916,7 @@ "statements": { "${TEAM} is disqualified because ${PLAYER} left": "${TEAM} дисквалифицирована потому что ${PLAYER} вышел", "Killing ${NAME} for skipping part of the track!": "Ликвидация ${NAME} за срезание трассы!", - "Warning to ${NAME}: turbo / button-spamming knocks you out.": "Предупреждение для ${NAME}: за турбо / быстрое повторное нажатие кнопки можно вырубится." + "Warning to ${NAME}: turbo / button-spamming knocks you out.": "Предупреждение для ${NAME}: за быстрое повторное нажатие кнопки(ок) можно уснуть." }, "teamNames": { "Bad Guys": "Негодяи", @@ -1890,7 +1981,7 @@ "trophiesText": "Трофеев", "trophiesThisSeasonText": "Трофеи за этот Сезон", "tutorial": { - "cpuBenchmarkText": "Прогон тьюториала на безумной скорости (проверяет скорость процессора)", + "cpuBenchmarkText": "Запуск обучения на безумной скорости (проверяет скорость процессора)", "phrase01Text": "Привет!", "phrase02Text": "Добро пожаловать в ${APP_NAME}!", "phrase03Text": "Несколько советов по управлению персонажем:", @@ -1920,19 +2011,20 @@ "phrase27Text": "Не забывай эти советы, и ТОЧНО вернешься живым!", "phrase28Text": "...может быть...", "phrase29Text": "Удачи!", - "randomName1Text": "Вася", - "randomName2Text": "Петя", - "randomName3Text": "Иннокентий", - "randomName4Text": "Шурик", - "randomName5Text": "Виталик", - "skipConfirmText": "Пропустить тьюториал? Коснитесь или нажмите кнопку для подтверждения.", + "randomName1Text": "Фрэд", + "randomName2Text": "Гарри", + "randomName3Text": "Билл", + "randomName4Text": "Чак", + "randomName5Text": "Фил", + "skipConfirmText": "Пропустить обучение? Коснитесь или нажмите кнопку для подтверждения.", "skipVoteCountText": "${COUNT}/${TOTAL} голосов за пропуск", "skippingText": "пропуск обучения...", - "toSkipPressAnythingText": "(коснитесь или нажмите что-нибудь чтобы пропустить тьюториал)" + "toSkipPressAnythingText": "(коснитесь или нажмите что-нибудь чтобы пропустить обучение)" }, "twoKillText": "ДВОИХ ЗА РАЗ!", "uiScaleText": "Размер UI", "unavailableText": "недоступно", + "unclaimedPrizesText": "У вас есть не полученные призы!", "unconfiguredControllerDetectedText": "Обнаружен ненастроенный геймпад:", "unlockThisInTheStoreText": "Это должно быть разблокировано в магазине.", "unlockThisProfilesText": "Чтобы создать более ${NUM} профиль, Вам необходимо:", @@ -1941,7 +2033,7 @@ "unsupportedHardwareText": "К сожалению, это оборудование не поддерживается в этой сборке игры.", "upFirstText": "Для начала:", "upNextText": "Далее в игре ${COUNT}:", - "updatingAccountText": "Обновление вашего аккаунта", + "updatingAccountText": "Обновление вашего аккаунта...", "upgradeText": "Обновление", "upgradeToPlayText": "Разблокируйте \"${PRO}\" в магазине что-бы играть в это.", "useDefaultText": "Использовать стандартные", @@ -1950,7 +2042,8 @@ "usesExternalControllerText": "Эта игра может использовать внешний контроллер для управления.", "usingItunesText": "Использование музыкального приложения для саундтрека...", "usingItunesTurnRepeatAndShuffleOnText": "Убедитесь, что в iTunes включен случайный порядок, и повтор установлен на 'все'.", - "v2AccountLinkingInfoText": "Чтобы обьединить старый и новый аккаунты, используйте кнопку 'Обьединить аккаунты'", + "v2AccountLinkingInfoText": "Чтобы обьединить V2 аккаунты, используйте кнопку 'Обьединить аккаунты'", + "v2AccountRequiredText": "Для этого требуется учетная запись V2. Обновите свою учетную запись и повторите попытку.", "validatingBetaText": "Валидация бета-версии...", "validatingTestBuildText": "Проверка тестовой сборки...", "viaText": "используя", @@ -1963,7 +2056,7 @@ "waitingForHostText": "(ожидание ${HOST} чтобы продолжить)", "waitingForLocalPlayersText": "ожидание локальных игроков...", "waitingForPlayersText": "ожидание присоединения игроков...", - "waitingInLineText": "Подожди немного (комната заполнена)...", + "waitingInLineText": "Подождите немного (лобби заполнено)...", "watchAVideoText": "Смотреть видео", "watchAnAdText": "Смотреть рекламу", "watchWindow": { @@ -2008,7 +2101,7 @@ "workspaceSyncErrorText": "Ошибка при попытке синхронизации ${WORKSPACE}. Посмотрите лог для информации.", "workspaceSyncReuseText": "Не получается синхронизировать ${WORKSPACE}. Используется прошлая синхронизация.", "worldScoresUnavailableText": "Мировые рекорды не доступны", - "worldsBestScoresText": "Лучшие в мире очки", + "worldsBestScoresText": "Лучшие в мире результаты", "worldsBestTimesText": "Лучшее в мире время", "xbox360ControllersWindow": { "getDriverText": "Скачать драйвер", @@ -2020,5 +2113,6 @@ }, "yesAllowText": "Да, разрешить!", "yourBestScoresText": "Ваши лучшие очки", - "yourBestTimesText": "Ваше лучшее время" + "yourBestTimesText": "Ваше лучшее время", + "yourPrizeText": "Ваш приз:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/serbian.json b/dist/ba_data/data/languages/serbian.json index 2ea8600..e355591 100644 --- a/dist/ba_data/data/languages/serbian.json +++ b/dist/ba_data/data/languages/serbian.json @@ -8,6 +8,8 @@ "changeOncePerSeason": "Ово можеш променити само једном током сезоне.", "changeOncePerSeasonError": "Мораш сачекати следећу сезону да би ово опет променио (${NUM} дан/а)", "customName": "Сопствено име", + "deleteAccountText": "избрисати налог", + "googlePlayGamesAccountSwitchText": "Ако желите да користите други Гоогле налог,\nкористите апликацију Гоогле Плаи игре за пребацивање.", "linkAccountsEnterCodeText": "Унеси код", "linkAccountsGenerateCodeText": "Генериши код", "linkAccountsInfoText": "(подели напредак на више резличитих уређаја)", @@ -15,6 +17,7 @@ "linkAccountsInstructionsText": "Da povežeš dva profila, generiši kod sa jednog \nod njih i unesi kod na drugi.\nNapredak i inventar će biti spojeni.\nMožeš povezati najviše ${COUNT} profila.\n\nPAŽNJA:Samo poveži naloge koje poseduješ!\nAko povežeš naloge sa prijateljima onda\nnećeš biti u mogućnosti da igraš u isto vreme!\n\nVAŽNO:Ovo se trenutno ne može poništiti, zato budi pažljiv!", "linkAccountsText": "Повежи налоге", "linkedAccountsText": "Повезани налози:", + "manageAccountText": "Управљајте налогом", "nameChangeConfirm": "Промени име налога у ${NAME}?", "resetProgressConfirmNoAchievementsText": "Ово ће твој кооперативни напредак и локалне \nрекорде вратити на почетак (али не и тикете).\nОво се не може поништити. Да ли си сигуран?", "resetProgressConfirmText": "Ово ће твој кооперативни напредак,\nдостигнућа и локалне рекорде (али не\nи тикете) вратити на почетак. Ово се\nне може поништити. Да ли си сигуран?", @@ -23,14 +26,16 @@ "setAccountNameDesc": "Изабери име које ће се приказивати на твом налогу.\nМожеш користити име са једног од твоји повезаних\nналога или направити ново јединствено име.", "signInInfoText": "Пријави се да зарађујеш тикете, такмичиш на мрежи\nи делиш напредак на више различитих уређаја.", "signInText": "Пријави се", + "signInWithAnEmailAddressText": "Пријавите се помоћу адресе е-поште", "signInWithDeviceInfoText": "(аутоматски налог достпупан једино са овог уређаја)", "signInWithDeviceText": "Пријави се налогом уређаја", "signInWithGameCircleText": "Пријави се преко Гејм Сркла.", "signInWithGooglePlayText": "Пријави се преко Гугл Плеја", "signInWithTestAccountInfoText": "(налог за тестирање нових ствари које ће ускоро изаћи)", "signInWithTestAccountText": "Пријави се са тест профилом", + "signInWithText": "Пријавите се помоћу ${SERVICE}", "signInWithV2InfoText": "(налог који функционише на свим платформама)", - "signInWithV2Text": "Улогуј се помоћу Bombsquad налога", + "signInWithV2Text": "Улогуј се помоћу ${APP_NAME} налога", "signOutText": "Одјави се", "signingInText": "Пријављивање...", "signingOutText": "Одјављивање...", @@ -40,6 +45,7 @@ "titleText": "Налог", "unlinkAccountsInstructionsText": "Изабери налог за раздвајање", "unlinkAccountsText": "Раздвоји налоге", + "unlinkLegacyV1AccountsText": "Прекините везу са старим (V1) налозима", "v2LinkInstructionsText": "Искористи овај линк да направиш налог или да се улогујеш.", "viaAccount": "(преко налога ${NAME})", "youAreSignedInAsText": "Пријављен си као:" @@ -333,9 +339,11 @@ "getMoreGamesText": "Додај више игри...", "titleText": "Додај игру" }, + "addToFavoritesText": "Додај у фаворите", "allowText": "Дозволи", "alreadySignedInText": "Овај налог је тренутно пријављен на другом уређају;\nмолимо вас да замените налог или искључите игру на\nдругом уређају и покушате поново.", "apiVersionErrorText": "Не можемо учитати мод ${NAME}; он тражи верзију ${VERSION_USED}; ми користимо ${VERSION_REQUIRED}.", + "areYouSureText": "Јесте ли сигурни?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(\"Аутоматски\" активира само када су прикључене слушалице)", "headRelativeVRAudioText": "Виртуелни аудио у простору", @@ -623,6 +631,7 @@ "useMusicFolderText": "Фолдер са музичким фајловима" }, "editText": "Измени", + "enabledText": "Омогућено", "endText": "Крај", "enjoyText": "Уживај!", "epicDescriptionFilterText": "${DESCRIPTION} у епско успореној игри.", @@ -1809,6 +1818,7 @@ "upgradeText": "Надогради", "upgradeToPlayText": "Откључај \"${PRO}\" у продавници игре да играш ово.", "useDefaultText": "Користи подразумевано", + "userSystemScriptsCreateText": "Креирајте корисничке системске скрипте", "usesExternalControllerText": "Ова игра користи спољашњи контролер за унос.", "usingItunesText": "Коришћење музичке апликације за листу звукова...", "validatingTestBuildText": "Потврђивање система за тестирање...", @@ -1843,6 +1853,7 @@ }, "waveText": "Рунда", "wellSureText": "Наравно!", + "whatIsThisText": "шта је ово?", "wiimoteLicenseWindow": { "titleText": "Дарвин Римоут права задржана" }, diff --git a/dist/ba_data/data/languages/slovak.json b/dist/ba_data/data/languages/slovak.json index 30410ab..09df88d 100644 --- a/dist/ba_data/data/languages/slovak.json +++ b/dist/ba_data/data/languages/slovak.json @@ -8,6 +8,7 @@ "changeOncePerSeason": "Toto môžete zmeniť len raz za sezónu.", "changeOncePerSeasonError": "Musíte počkať do ďalšej sezóny aby ste mohli toto znova zmeniť (${NUM} days)", "customName": "Vlastný názov", + "deleteAccountText": "Zmazať Účet", "googlePlayGamesAccountSwitchText": "Ak chcete použiť iný účet Google,\nna jeho výmenu použite aplikáciu hry Google Play.", "linkAccountsEnterCodeText": "Vložte kód", "linkAccountsGenerateCodeText": "Vygenerovať kód", @@ -26,6 +27,7 @@ "setAccountNameDesc": "Vyberte meno, ktoré sa bude zobrazovať na vašom účte.\nMôžete použiť meno jedného zo svojich prepojených \núčtov alebo si vytvorte svoje vlastné meno.", "signInInfoText": "Prihláste sa, abyste zbierali tickety, dokončite online \na zdielajte postup medzi zariadeními.", "signInText": "Prihlasujem", + "signInWithAnEmailAddressText": "Prihláste sa s e-mailovým účtom", "signInWithDeviceInfoText": "(iba automatický účet je dostupný pre toto zariadenie)", "signInWithDeviceText": "Prihláste sa s účtom na zariadení", "signInWithGameCircleText": "Prihlásiť sa s Game Circle", @@ -34,7 +36,7 @@ "signInWithTestAccountText": "Prihlásit sa s testovacím účtom", "signInWithText": "Prihlás sa s ${SERVICE}", "signInWithV2InfoText": "(účet, ktorý funguje na všetkých platformách)", - "signInWithV2Text": "Prihláste sa pomocou účtu BombSquad", + "signInWithV2Text": "Prihláste sa pomocou účtu ${APP_NAME}", "signOutText": "Odhlasujem", "signingInText": "Prihlasujem", "signingOutText": "Odhlasujem", @@ -345,6 +347,8 @@ "allowText": "Povol", "alreadySignedInText": "Tvoj účet je prihlásený z iného zariadenia;\nprosím prepni si účty alebo ukonči hru na\ntvojich ostatných zariadeniach a skús to znovu.", "apiVersionErrorText": "Nemožno načítať modul ${NAME}; používa api-verziu ${VERSION_USED}; my potrebujeme ${VERSION_REQUIRED}.", + "applyText": "Uložiť Zmeny", + "areYouSureText": "Ste si istý?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(\"Automatika\" toto povolí len keď sú slúchadlá zapojené)", "headRelativeVRAudioText": "Head-Relative VR Audio", @@ -366,7 +370,7 @@ "boostText": "Pridať", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} je nastavené v aplikácii", "buttonText": "tlačidlo", - "canWeDebugText": "Chcel by si, aby Bombsquad automaticky nahlasovalo\nbugy, crashe, a základné informácie o použití vývojárovi?\n\nToto data neobsahuje žiadne osobné informácie a pomáha\nnechávať hru bežať hladko a bez bugov.", + "canWeDebugText": "Chcel by si, aby ${APP_NAME}\nautomaticky nahlasovalo bugy, \ncrashe, \na základné informácie\no použití vývojárovi?", "cancelText": "Zrušiť", "cantConfigureDeviceText": "Prepáč, ${DEVICE} nie je konfigurovateľný", "challengeEndedText": "Táto challenge skončila.", @@ -558,6 +562,7 @@ "demoText": "Demo", "denyText": "odmietnuť", "deprecatedText": "Zastaralé", + "descriptionText": "Popis", "desktopResText": "Desktop Res", "deviceAccountUpgradeText": "Upozornenie:\nSte pripojený v účte (${NAME}) typu zariarenie.\nÚčty takého typu budú odstránené v budúcej aktualizácii.\nAktualizujte to na V2 Účet keď chcete zachovať váš pokrok.", "difficultyEasyText": "Jednoduchá", @@ -569,6 +574,7 @@ "disableXInputDescriptionText": "Povolí viac ako 4 ovládače ale nemusí fungovať dobre.", "disableXInputText": "Zakázať XInput", "disabledText": "Vypnuté", + "discardText": "Odhodiť", "discordFriendsText": "Chcete nájsť nových ľudí na hranie?\nPripojte sa na náš Discord a nájdite nových priateľov!", "discordJoinText": "Pripojiť na Diskord", "doneText": "Hotovo", @@ -727,7 +733,7 @@ "friendPromoCodeInstructionsText": "Ak ho chceš použiť, otvor ${APP_NAME} a choď do \"Settings->Advanced->Enter Code\".\nPozri bombsquadgame.com pre download linky pre všetky podporované platformy.", "friendPromoCodeRedeemLongText": "Môže byť uplatnený za ${COUNT} tiketov až pre ${MAX_USES} ľudí.", "friendPromoCodeRedeemShortText": "Môže byť uplatnený za ${COUNT} tiketov v hre.", - "friendPromoCodeWhereToEnterText": "(v časti „Nastavenia-> Pokročilé-> Zadať kód“)", + "friendPromoCodeWhereToEnterText": "(V časti „Nastavenia-> Pokročilé-> Poslať info\")", "getFriendInviteCodeText": "Zohnať Pozvánku", "googlePlayDescriptionText": "Pozvi Google Play hráčov do párty:", "googlePlayInviteText": "Pozvať", @@ -823,6 +829,12 @@ "youHaveShortText": "máš ${COUNT}", "youHaveText": "máš ${COUNT} tiketov" }, + "goldPass": { + "desc1InfTokensText": "Nekonečné tokeny.", + "desc2NoAdsText": "Žiadné reklamy.", + "desc3ForeverText": "Navždy.", + "goldPassText": "Zlatá Priepustka." + }, "googleMultiplayerDiscontinuedText": "Prepáč, Google multiplayer už viac nie je dostupný.\nSnažím sa to prehodiť čo najskôr. Dovtedy prosím\nskús inú metódu pripojenia.\n-Eric", "googlePlayPurchasesNotAvailableText": "Nákupy Google Play nie sú dostupné.\nAsi musíte aktualizovať svoju obchodnú aplikáciu.", "googlePlayServicesNotAvailableText": "Služby Google Play nie sú dostupné.\nNiektoré funkčnosti aplikácie môžu byť vypnuté.", @@ -1064,6 +1076,7 @@ "nameSuicideText": "${NAME} spáchal samovraždu.", "nameText": "Meno", "nativeText": "Prírodné", + "newExclaimText": "Nové!", "newPersonalBestText": "Nový osobný rekord!", "newTestBuildAvailableText": "Novšia testovacia verzia je dostupná! (${VERSION} test ${BUILD}).\nZožeň ho na ${ADDRESS}", "newText": "Nový", @@ -1074,6 +1087,7 @@ "noContinuesText": "(žiadne pokračovania)", "noExternalStorageErrorText": "Žiadne úložisko sa v tomto zariadení nenašlo", "noGameCircleText": "Error: nie si prihlásený do GameCircle", + "noMessagesText": "Žiadné Správy.", "noPluginsInstalledText": "Žiadne nainštalované doplnky", "noScoresYetText": "Zatiaľ žiadne skóre.", "noServersFoundText": "Nenašiel sa žiadny server.", @@ -1268,7 +1282,7 @@ }, "settingsWindowAdvanced": { "alwaysUseInternalKeyboardDescriptionText": "(jednoduchá, podporujúca-ovládač na-obrazovke-klávesnica pre písanie textu)", - "alwaysUseInternalKeyboardText": "Stále Používať Klávesnicu v Programe", + "alwaysUseInternalKeyboardText": "Stále používať klávesnicu v programe", "benchmarksText": "Benchmarky & Stres-Testy", "disableCameraGyroscopeMotionText": "Zakázať pohyb gyroskopu fotoaparátu", "disableCameraShakeText": "Zakázať otrasy fotoaparátu", diff --git a/dist/ba_data/data/languages/spanishlatinamerica.json b/dist/ba_data/data/languages/spanishlatinamerica.json new file mode 100644 index 0000000..e162342 --- /dev/null +++ b/dist/ba_data/data/languages/spanishlatinamerica.json @@ -0,0 +1,1980 @@ +{ + "accountSettingsWindow": { + "accountNameRules": "Los nombres de las cuentas no pueden tener emojis o otros caracteres especiales", + "accountsText": "Cuentas", + "achievementProgressText": "Logros: ${COUNT} de ${TOTAL}", + "campaignProgressText": "Progreso de la Campaña [Difícil]: ${PROGRESS}", + "changeOncePerSeason": "Solo puedes cambiar esto una vez por temporada.", + "changeOncePerSeasonError": "Debes esperar hasta la siguiente temporada para cambiar esto de nuevo (en ${NUM} día/s)", + "createAnAccountText": "Crear una Cuenta", + "customName": "Nombre Personalizado", + "deleteAccountText": "Eliminar Cuenta", + "googlePlayGamesAccountSwitchText": "Si quieres usar una cuenta de Google diferente,\nusa la app Google Play Juegos para cambiarla.", + "linkAccountsEnterCodeText": "Introducir Código", + "linkAccountsGenerateCodeText": "Generar Código", + "linkAccountsInfoText": "(comparta el progreso a través de diferentes plataformas)", + "linkAccountsInstructionsNewText": "Para vincular dos cuentas, genera un código en la primera \ne introduzca ese código en la segunda. Los datos de \nla segunda cuenta serán compartidos entre ambos.\n(Los datos de la primera cuenta se perderán).\n\nPuedes vincular hasta ${COUNT} cuentas.\n\nIMPORTANTE: Solo vincula cuentas tuyas; \nSi vinculas cuentas de tus amigos no serán \ncapaces de jugar en línea al mismo tiempo.", + "linkAccountsText": "Vincular Cuentas", + "linkedAccountsText": "Cuentas Vinculadas:", + "manageAccountText": "Administrar Cuenta", + "nameChangeConfirm": "¿Quieres cambiar El nombre de tu cuenta A ${NAME}?", + "resetProgressConfirmNoAchievementsText": "Esto reiniciará tu progreso en el modo cooperativo y \ntus puntuaciones locales (a excepción de tus boletos).\nEsto no puede deshacerse. ¿Estás seguro?", + "resetProgressConfirmText": "Esto reiniciará tu progreso en el modo cooperativo, \nlogros y puntuaciones locales (pero, no tus tickets).\nLos cambios no se pueden deshacer.\n¿Estás seguro?", + "resetProgressText": "Reiniciar Progreso", + "setAccountName": "Establecer Nombre de Cuenta", + "setAccountNameDesc": "Selecciona el nombre a mostrar para tu cuenta. \nPuedes usar el nombre de tu cuenta asociada\no crear un nombre único personalizado.", + "signInInfoText": "Inicia sesión para obtener boletos, competir en línea\ny compartir tu progreso a través de tus dispositivos.", + "signInText": "Iniciar Sesión", + "signInWithAnEmailAddressText": "Iniciar sesión con correo electronico", + "signInWithDeviceInfoText": "(una cuenta automática disponible únicamente en este dispositivo)", + "signInWithDeviceText": "Iniciar sesión con cuenta del dispositivo", + "signInWithText": "Iniciar sesion con ${SERVICE}", + "signInWithV2InfoText": "(una cuenta que funciona en todas las plataformas)", + "signInWithV2Text": "Iniciar sesión con una cuenta de ${APP_NAME}", + "signOutText": "Cerrar Sesión", + "signingInText": "Iniciando sesión...", + "signingOutText": "Cerrando sesión...", + "ticketsText": "Boletos: ${COUNT}", + "titleText": "Cuenta", + "unlinkAccountsInstructionsText": "Selecciona una cuenta para desvincular", + "unlinkAccountsText": "Desvincular Cuentas", + "unlinkLegacyV1AccountsText": "Desvincular Cuentas (V1) Heredadas", + "v2LinkInstructionsText": "Usa este enlace para crear una cuenta o para iniciar sesión.", + "viaAccount": "(cuenta vía ${NAME})", + "youAreSignedInAsText": "Has iniciado sesión como:" + }, + "achievementChallengesText": "Desafios de los Logros", + "achievementText": "Logro", + "achievements": { + "Boom Goes the Dynamite": { + "description": "Mata a 3 chicos malos con TNT", + "descriptionComplete": "Mató a 3 chicos malos con TNT", + "descriptionFull": "Mata a 3 chicos malos con TNT en ${LEVEL}", + "descriptionFullComplete": "Mató a 3 chicos malos con TNT en ${LEVEL}", + "name": "La Dinamita Hace Boom" + }, + "Boxer": { + "description": "Gana sin usar bombas", + "descriptionComplete": "Ganó sin usar bombas", + "descriptionFull": "Completa ${LEVEL} sin usar bombas", + "descriptionFullComplete": "Completó ${LEVEL} sin usar bombas", + "name": "Boxeador" + }, + "Dual Wielding": { + "descriptionFull": "Conecta 2 controles (de hardware o aplicación)", + "descriptionFullComplete": "Conectó 2 controles (de hardware o aplicación)", + "name": "Doble Empuñadura" + }, + "Flawless Victory": { + "description": "Gana sin ser lastimado", + "descriptionComplete": "Ganó sin ser lastimado", + "descriptionFull": "Gana ${LEVEL} sin ser lastimado", + "descriptionFullComplete": "Ganó ${LEVEL} sin ser golpeado", + "name": "Victoria Impecable" + }, + "Free Loader": { + "descriptionFull": "Empieza un juego de Todos-Contra-Todos con 2 o más jugadores", + "descriptionFullComplete": "Empezó un juego de Todos-Contra-Todos con 2 o más jugadores", + "name": "Cargador Libre" + }, + "Gold Miner": { + "description": "Mata a 6 chicos malos con minas terrestres", + "descriptionComplete": "Mató a 6 chicos malos con minas terrestres", + "descriptionFull": "Mata a 6 chicos malos con minas terrestres en ${LEVEL}", + "descriptionFullComplete": "Mató a 6 chicos malos con minas terrestres en ${LEVEL}", + "name": "Minero de Oro" + }, + "Got the Moves": { + "description": "Gana sin usar golpes ni bombas", + "descriptionComplete": "Ganó sin usar golpes ni bombas", + "descriptionFull": "Gana ${LEVEL} sin golpes ni bombas", + "descriptionFullComplete": "Ganó ${LEVEL} sin golpes ni bombas", + "name": "Tengo los Movimientos" + }, + "In Control": { + "descriptionFull": "Conecta un control (de hardware o aplicación)", + "descriptionFullComplete": "Conectó un control. (de hardware o aplicación)", + "name": "En Control" + }, + "Last Stand God": { + "description": "Anota 1000 puntos", + "descriptionComplete": "Anotó 1000 puntos", + "descriptionFull": "Anota 1000 puntos en ${LEVEL}", + "descriptionFullComplete": "Anotó 1000 puntos en ${LEVEL}", + "name": "Dios de la guerra En ${LEVEL}" + }, + "Last Stand Master": { + "description": "Anota 250 puntos", + "descriptionComplete": "Anotó 250 puntos", + "descriptionFull": "Anota 250 puntos en ${LEVEL}", + "descriptionFullComplete": "Anotó 250 puntos en ${LEVEL}", + "name": "Maestro de ${LEVEL}" + }, + "Last Stand Wizard": { + "description": "Anota 500 puntos", + "descriptionComplete": "Anotó 500 puntos", + "descriptionFull": "Anota 500 puntos en ${LEVEL}", + "descriptionFullComplete": "Anotó 500 puntos en ${LEVEL}", + "name": "Mago de ${LEVEL}" + }, + "Mine Games": { + "description": "Mata a 3 chicos malos con minas terrestres", + "descriptionComplete": "Mató a 3 chicos malos con minas terrestres", + "descriptionFull": "Mata a 3 chicos malos con minas terrestres en ${LEVEL}", + "descriptionFullComplete": "Mató a 3 chicos con minas terrestres en ${LEVEL}", + "name": "Juegos de Minas" + }, + "Off You Go Then": { + "description": "Arroja a 3 chicos malos fuera del mapa", + "descriptionComplete": "Arrojó a 3 chicos malos fuera del mapa", + "descriptionFull": "Arroja a 3 chicos malos fuera del mapa en ${LEVEL}", + "descriptionFullComplete": "Arrojó a 3 chicos malos fuera del mapa en ${LEVEL}", + "name": "Te Vas Abajo Entonces" + }, + "Onslaught God": { + "description": "Anota 5000 puntos", + "descriptionComplete": "Anotó 5000 puntos", + "descriptionFull": "Anota 5000 puntos en ${LEVEL}", + "descriptionFullComplete": "Anotó 5000 puntos en ${LEVEL}", + "name": "Dios de La ${LEVEL}" + }, + "Onslaught Master": { + "description": "Anota 500 puntos", + "descriptionComplete": "Anotó 500 puntos", + "descriptionFull": "Anota 500 puntos en ${LEVEL}", + "descriptionFullComplete": "Anotó 500 puntos en ${LEVEL}", + "name": "Maestro de La ${LEVEL}" + }, + "Onslaught Training Victory": { + "description": "Vence todas las oleadas", + "descriptionComplete": "Derroto todas las oleadas.", + "descriptionFull": "Vence todas las oleadas en ${LEVEL}", + "descriptionFullComplete": "Venció todas las oleadas en ${LEVEL}", + "name": "Victoria en ${LEVEL}" + }, + "Onslaught Wizard": { + "description": "Anota 1000 puntos", + "descriptionComplete": "Anotó 1000 puntos", + "descriptionFull": "Anota 1000 puntos en ${LEVEL}", + "descriptionFullComplete": "Anotó 1000 puntos en ${LEVEL}", + "name": "Mago de La ${LEVEL}" + }, + "Precision Bombing": { + "description": "Gana sin potenciadores", + "descriptionComplete": "Ganó sin potenciadores", + "descriptionFull": "Gana ${LEVEL} sin potenciadores", + "descriptionFullComplete": "Ganó ${LEVEL} sin potenciadores", + "name": "Bombardeo con Precisión" + }, + "Pro Boxer": { + "description": "Gana sin usar bombas", + "descriptionComplete": "Ganó sin usar bombas", + "descriptionFull": "Completa ${LEVEL} sin usar bombas", + "descriptionFullComplete": "Completó ${LEVEL} sin usar bombas", + "name": "Boxeador Profesional" + }, + "Pro Football Shutout": { + "description": "Gana sin dejar que los chicos malos anoten", + "descriptionComplete": "Ganó sin dejar que los chicos malos anotaran", + "descriptionFull": "Gana ${LEVEL} sin dejar que los chicos malos anoten", + "descriptionFullComplete": "Ganó ${LEVEL} sin dejar que los chicos malos anotaran", + "name": "Blanqueo en ${LEVEL}" + }, + "Pro Football Victory": { + "description": "Gana el partido", + "descriptionComplete": "Ganó el partido", + "descriptionFull": "Gana el partido en ${LEVEL}", + "descriptionFullComplete": "Ganó el partido en ${LEVEL}", + "name": "Victoria en ${LEVEL}" + }, + "Pro Onslaught Victory": { + "description": "Vence todas las oleadas", + "descriptionComplete": "Venció todas las oleadas", + "descriptionFull": "Vence todas las oleadas de ${LEVEL}", + "descriptionFullComplete": "Venció todas las oleadas de ${LEVEL}", + "name": "Victoria en ${LEVEL}" + }, + "Pro Runaround Victory": { + "description": "Completa todas las oleadas", + "descriptionComplete": "Completó todas las oleadas", + "descriptionFull": "Completa todas las oleadas en ${LEVEL}", + "descriptionFullComplete": "Completó todas las oleadas en ${LEVEL}", + "name": "Victoria en ${LEVEL}" + }, + "Rookie Football Shutout": { + "description": "Gana sin dejar que los chicos malos anoten", + "descriptionComplete": "Ganó sin dejar que los chicos malos anotaran", + "descriptionFull": "Gana ${LEVEL} sin dejar que los chicos malos anoten", + "descriptionFullComplete": "Ganó ${LEVEL} sin dejar que los chicos malos anotaran", + "name": "Blanqueo en ${LEVEL}" + }, + "Rookie Football Victory": { + "description": "Gana el partido", + "descriptionComplete": "Ganó el partido", + "descriptionFull": "Gana el partido en ${LEVEL}", + "descriptionFullComplete": "Ganó el partido en ${LEVEL}", + "name": "Victoria en ${LEVEL}" + }, + "Rookie Onslaught Victory": { + "description": "Vence todas las oleadas", + "descriptionComplete": "Venció todas las oleadas", + "descriptionFull": "Vence todas las oleadas en ${LEVEL}", + "descriptionFullComplete": "Venció todas las oleadas en ${LEVEL}", + "name": "Victoria en ${LEVEL}" + }, + "Runaround God": { + "description": "Anota 2000 puntos", + "descriptionComplete": "Anotó 2000 puntos", + "descriptionFull": "Anota 2000 puntos en ${LEVEL}", + "descriptionFullComplete": "Anotó 2000 puntos en ${LEVEL}", + "name": "Dios de La ${LEVEL}" + }, + "Runaround Master": { + "description": "Anota 500 puntos", + "descriptionComplete": "Anotó 500 puntos", + "descriptionFull": "Anota 500 puntos en ${LEVEL}", + "descriptionFullComplete": "Anotó 500 puntos en ${LEVEL}", + "name": "Maestro de La ${LEVEL}" + }, + "Runaround Wizard": { + "description": "Anota 1000 puntos", + "descriptionComplete": "Anotó 1000 puntos", + "descriptionFull": "Anota 1000 puntos en ${LEVEL}", + "descriptionFullComplete": "Anotó 1000 puntos en ${LEVEL}", + "name": "Mago de La ${LEVEL}" + }, + "Sharing is Caring": { + "descriptionFull": "Comparte exitosamente el juego con un amigo", + "descriptionFullComplete": "Compartió exitosamente el juego con un amigo", + "name": "Compartir es querer." + }, + "Stayin' Alive": { + "description": "Gana sin morir", + "descriptionComplete": "Ganó sin morir", + "descriptionFull": "Gana ${LEVEL} sin morir", + "descriptionFullComplete": "Ganó ${LEVEL} sin morir", + "name": "Sobreviviendo" + }, + "Super Mega Punch": { + "description": "Inflige 100% de daño con un solo golpe", + "descriptionComplete": "Infligió 100% de daño con un solo golpe", + "descriptionFull": "Inflige 100% de daño con un golpe en ${LEVEL}", + "descriptionFullComplete": "Infligió 100% de daño con un golpe en ${LEVEL}", + "name": "Súper Mega Golpe" + }, + "Super Punch": { + "description": "Inflige 50% de daño con un golpe", + "descriptionComplete": "Infligió 50% de daño con un golpe", + "descriptionFull": "Inflige 50% de daño con un golpe en ${LEVEL}", + "descriptionFullComplete": "Infligió 50% de daño con un golpe en ${LEVEL}", + "name": "Súper Golpe" + }, + "TNT Terror": { + "description": "Mata a 6 chicos malos con TNT", + "descriptionComplete": "Mató a 6 chicos malos con TNT", + "descriptionFull": "Mata a 6 chicos malos con TNT en ${LEVEL}", + "descriptionFullComplete": "Mató a 6 chicos malos con TNT en ${LEVEL}", + "name": "Pirómano" + }, + "Team Player": { + "descriptionFull": "Empieza un juego de Equipos con 4 o más jugadores", + "descriptionFullComplete": "Empezó un juego de Equipos con 4 o más jugadores", + "name": "Jugador de Equipo" + }, + "The Great Wall": { + "description": "Detén a cada uno de los chicos malos", + "descriptionComplete": "Detuvo a cada uno de los chicos malos", + "descriptionFull": "Detén a cada uno de los chicos malos en ${LEVEL}", + "descriptionFullComplete": "Detuvo a cada uno de los chicos malos en ${LEVEL}", + "name": "La Gran Muralla" + }, + "The Wall": { + "description": "Detén a cada uno de los chicos malos", + "descriptionComplete": "Detuvo a cada uno de los chicos malos", + "descriptionFull": "Detén a cada uno de los chicos malos en ${LEVEL}", + "descriptionFullComplete": "Detuvo a cada uno de los chicos malos en ${LEVEL}", + "name": "La Muralla" + }, + "Uber Football Shutout": { + "description": "Gana sin dejar que los chicos malos anoten", + "descriptionComplete": "Ganó sin dejar que los chicos malos anotaran", + "descriptionFull": "Gana ${LEVEL} sin dejar que los chicos malos anoten", + "descriptionFullComplete": "Ganó ${LEVEL} sin dejar que los chicos malos anotaran", + "name": "Blanqueo en ${LEVEL}" + }, + "Uber Football Victory": { + "description": "Gana el partido", + "descriptionComplete": "Ganó el partido", + "descriptionFull": "Gana el partido en ${LEVEL}", + "descriptionFullComplete": "Ganó el partido en ${LEVEL}", + "name": "Victoria en ${LEVEL}" + }, + "Uber Onslaught Victory": { + "description": "Vence todas las oleadas", + "descriptionComplete": "Venció todas las oleadas", + "descriptionFull": "Vence todas las oleadas en ${LEVEL}", + "descriptionFullComplete": "Venció todas las oleadas en ${LEVEL}", + "name": "Victoria en ${LEVEL}" + }, + "Uber Runaround Victory": { + "description": "Completa todas las oleadas", + "descriptionComplete": "Completó todas las oleadas", + "descriptionFull": "Completa todas las oleadas en ${LEVEL}", + "descriptionFullComplete": "Completó todas las oleadas en ${LEVEL}", + "name": "Victoria en ${LEVEL}" + } + }, + "achievementsRemainingText": "Logros Restantes:", + "achievementsText": "Logros", + "achievementsUnavailableForOldSeasonsText": "Disculpe, los logros específicos no están disponibles para temporadas anteriores.", + "activatedText": "${THING} activado.", + "addGameWindow": { + "getMoreGamesText": "Obtener Más Juegos...", + "titleText": "Agregar Juego" + }, + "addToFavoritesText": "Agregar a Favoritos", + "addedToFavoritesText": "'${NAME}' añadido a Favoritos.", + "allText": "Todo", + "allowText": "Permitir", + "alreadySignedInText": "Tu cuenta está registrada en otro dispositivo;\npor favor cambia de cuentas o cierra el juego en tu \notro dispositivo e inténtalo de nuevo.", + "apiVersionErrorText": "No se puede cargar el módulo ${NAME}; este apunta a la versión-api ${VERSION_USED}; necesitamos ${VERSION_REQUIRED}.", + "applyText": "Aplicar", + "areYouSureText": "¿Estás seguro/a?", + "audioSettingsWindow": { + "headRelativeVRAudioInfoText": "(\"Auto\" se activa solo cuando los audífonos estan conectados)", + "headRelativeVRAudioText": "Audio RV Relativo a la Cabeza", + "musicVolumeText": "Volumen de la Música", + "soundVolumeText": "Volumen del Sonido", + "soundtrackButtonText": "Bandas Sonoras", + "soundtrackDescriptionText": "(usa tu propia música para reproducir durante los juegos)", + "titleText": "Audio" + }, + "autoText": "Auto", + "backText": "Atrás", + "banThisPlayerText": "Banear a Este Jugador", + "bestOfFinalText": "Final Mejor-de-${COUNT}", + "bestOfSeriesText": "Mejor de ${COUNT} series:", + "bestRankText": "Tu mejor rango es #${RANK}", + "bestRatingText": "Tu mejor clasificación es ${RATING}", + "bombBoldText": "BOMBA", + "bombText": "Bomba", + "boostText": "Potenciar", + "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} se configura en la propia aplicación.", + "buttonText": "botón", + "canWeDebugText": "¿Te gustaría que ${APP_NAME} reporte errores, fallos internos\ne información básica de uso al desarrollador de forma automática?\n\nDicha informacíon no incluirá datos personales y ayudará a\nmantener el juego funcionando sin contratiempos ni problemas.", + "cancelText": "Cancelar", + "cantConfigureDeviceText": "Lo sentimos, ${DEVICE} no es configurable.", + "challengeEndedText": "Este desafío ha terminado.", + "chatMuteText": "Silenciar Chat", + "chatMutedText": "Chat Silenciado", + "chatUnMuteText": "Desilenciar Chat", + "chests": { + "prizeOddsText": "Posibles Premios", + "reduceWaitText": "Reducir Espera", + "slotDescriptionText": "Esta ranura puede contener un cofre.\n\nGana cofres al jugar niveles del modo campaña,\nposicionándote en torneos y completando\nlogros.", + "slotText": "${NUM} Ranura de Cofre", + "slotsFullWarningText": "ADVERTENCIA: Tus espacios de cofres están llenos.\nCualquier cofre ganado en esta partida, será perdido.", + "unlocksInText": "Se desbloquea en:" + }, + "choosingPlayerText": "", + "claimText": "Reclamar", + "codesExplainText": "Los códigos son proporcionados por el desarrollador para\ndiagnosticar y corregir problemas de la cuenta.", + "completeThisLevelToProceedText": "¡Debes completar\neste nivel para avanzar!", + "completionBonusText": "Bono por Completar", + "configControllersWindow": { + "configureControllersText": "Configurar Controles", + "configureKeyboard2Text": "Configurar Teclado J2", + "configureKeyboardText": "Configurar Teclado", + "configureMobileText": "Dispositivos Móviles como Controles", + "configureTouchText": "Configurar Pantalla Táctil", + "ps3Text": "Controles de PS3", + "titleText": "Controles", + "wiimotesText": "Wiimotes", + "xbox360Text": "Controles de Xbox 360" + }, + "configGamepadSelectWindow": { + "androidNoteText": "Nota: el soporte de los controles varía según el dispositivo y la versión de Android.", + "pressAnyButtonText": "Pulsa cualquier botón en el control\n que desees configurar...", + "titleText": "Configurar Controles" + }, + "configGamepadWindow": { + "advancedText": "Avanzado", + "advancedTitleText": "Configuración Avanzada del Control", + "analogStickDeadZoneDescriptionText": "(súbelo si tu personaje 'derrapa' cuando sueltas la palanca)", + "analogStickDeadZoneText": "Zona Muerta de La Palanca Analógica", + "appliesToAllText": "(aplica a todos los controles de este tipo)", + "autoRecalibrateDescriptionText": "(habilita esta opción si tu personaje no se mueve a toda velocidad)", + "autoRecalibrateText": "Auto-Recalibrar Palanca Analógica", + "axisText": "eje", + "clearText": "vaciar", + "dpadText": "Flechas del Mando", + "extraStartButtonText": "Botón Extra de Inicio", + "ifNothingHappensTryAnalogText": "Si no pasa nada, intenta asignar la palanca analógica en cambio.", + "ifNothingHappensTryDpadText": "Si no pasa nada, intenta asignar el d-pad en cambio.", + "ignoreCompletelyDescriptionText": "(evita que este control este afectando el juego y/o menús)", + "ignoreCompletelyText": "Ignorar Completamente", + "ignoredButton1Text": "Botón 1 Ignorado", + "ignoredButton2Text": "Botón 2 Ignorado", + "ignoredButton3Text": "Botón 3 Ignorado", + "ignoredButton4Text": "Botón 4 Ignorado", + "ignoredButtonDescriptionText": "(usa esto para prevenir que los botones de 'inicio' o 'sincronización' afecten la Interfaz Visual)", + "pressAnyAnalogTriggerText": "Presiona cualquier gatillo analógico...", + "pressAnyButtonOrDpadText": "Presiona cualquier botón o dpad...", + "pressAnyButtonText": "Presiona cualquier botón...", + "pressLeftRightText": "Presiona izquierda o derecha...", + "pressUpDownText": "Presiona arriba o abajo...", + "runButton1Text": "Botón para Correr 1", + "runButton2Text": "Botón para Correr 2", + "runTrigger1Text": "Gatillo para Correr 1", + "runTrigger2Text": "Gatillo para Correr 2", + "runTriggerDescriptionText": "(los gatillos analógicos te dejan correr a velocidades distintas)", + "secondHalfText": "Utiliza esta opción para configurar\nla segunda mitad de un control 2 en 1\nque se muestre como un solo control.", + "secondaryEnableText": "Habilitar", + "secondaryText": "Control Secundario", + "startButtonActivatesDefaultDescriptionText": "(desactívalo si tu botón de inicio es más bien un botón de 'menú')", + "startButtonActivatesDefaultText": "El Botón de Inicio Activa la Función por Defecto", + "titleText": "Configurar Control", + "twoInOneSetupText": "Configuración de Controles 2 en 1", + "uiOnlyDescriptionText": "(evitar que este control se una a un juego)", + "uiOnlyText": "Limitar a Uso en Menú", + "unassignedButtonsRunText": "Todos los Botones sin Asignar Corren", + "unsetText": "", + "vrReorientButtonText": "Boton de Reorientación de RV" + }, + "configKeyboardWindow": { + "configuringText": "Configurando ${DEVICE}", + "keyboard2NoteText": "Nota: la mayoría de teclados sólo pueden registrar algunas\npulsaciones a la vez, así que tener un segundo teclado puede\nfuncionar mejor que un teclado compartido por los 2 jugadores.\nTen en cuenta que todavía necesitas asignar teclas únicas a los\ndos jugadores incluso en ese caso." + }, + "configTouchscreenWindow": { + "actionControlScaleText": "Tamaño de Control de Acciones", + "actionsText": "Acciones", + "buttonsText": "botones", + "dragControlsText": "", + "joystickText": "palanca", + "movementControlScaleText": "Tamaño de Escala de Movimiento", + "movementText": "Movimiento", + "resetText": "Reiniciar", + "swipeControlsHiddenText": "Ocultar Iconos Deslizantes", + "swipeInfoText": "Controles del estilo 'Deslizante' toman un poco de practica, pero\nhacen que sea más fácil jugar sin mirar los controles.", + "swipeText": "deslizar", + "titleText": "Configurar Pantalla Táctil" + }, + "configureDeviceInSystemSettingsText": "${DEVICE} se puede configurar en la aplicación Configuración del Sistema.", + "configureItNowText": "Configurar ahora?", + "configureText": "Configurar", + "connectMobileDevicesWindow": { + "amazonText": "Tienda de Amazon (Appstore)", + "appStoreText": "App Store", + "bestResultsText": "Para mejores resultados necesitas una red inalámbrica rápida. Puedes\nreducir el retraso wifi apagando otros dispositivos inalámbricos,\njugando cerca de tu router inalámbrico y conectando el\njuego anfitrión directamente a la red a través del cable Ethernet.", + "explanationText": "Para utilizar tus dispositivos móviles como controles, \ninstala la app \"${REMOTE_APP_NAME}\" en ellos. Todos tus dispositivos \npueden conectarse a un juego de ${APP_NAME} a través de una red Wi-fi, ¡es gratis!.", + "forAndroidText": "para Android:", + "forIOSText": "para iOS:", + "getItForText": "Consigue ${REMOTE_APP_NAME} para iOS en la App Store\no para Android en la Tienda de Google Play o Appstore de Amazon", + "googlePlayText": "Google Play", + "titleText": "Utilizando Dispositivos como Controles:" + }, + "continuePurchaseText": "¿Continuar por ${PRICE}?", + "continueText": "Continuar", + "controlsText": "Controles", + "coopSelectWindow": { + "activenessAllTimeInfoText": "Esto no aplica a las clasificaciones de todo-el-tiempo.", + "activenessInfoText": "Este multiplicador aumenta en los días que juegas\ny disminuye cuando no juegas.", + "activityText": "Actividad", + "campaignText": "Campaña", + "challengesInfoText": "Gana premios por completar los mini-juegos.\n\nLos premios y la dificultad de los niveles incrementa\ncada vez que se completa y\ndecrece cuando uno expira o no se cumple.", + "challengesText": "Desafíos", + "currentBestText": "Mejor Actualmente", + "customText": "Personalizado", + "entryFeeText": "Entrada", + "forfeitConfirmText": "¿Renunciar a este desafío?", + "forfeitNotAllowedYetText": "Todavía no puedes abandonar este desafío.", + "forfeitText": "Abandonar", + "multipliersText": "Multiplicadores", + "nextChallengeText": "Siguiente Desafío", + "nextPlayText": "Siguiente Juego", + "ofTotalTimeText": "de ${TOTAL}", + "playNowText": "Juega Ahora", + "pointsText": "Puntos", + "powerRankingFinishedSeasonUnrankedText": "(temporada terminada sin clasificar)", + "powerRankingNotInTopText": "(fuera del top ${NUMBER})", + "powerRankingPointsEqualsText": "= ${NUMBER} pts", + "powerRankingPointsMultText": "(x ${NUMBER} pts)", + "powerRankingPointsText": "${NUMBER} pts", + "powerRankingPointsToRankedText": "(${CURRENT} de ${REMAINING} pts)", + "powerRankingText": "Clasificación del Jugador", + "prizesText": "Premios", + "proMultInfoText": "Los jugadores con la mejora de ${PRO}\nreciben una bonificación del ${PERCENT}% de puntos.", + "seeMoreText": "Más...", + "skipWaitText": "Omitir la Espera", + "timeRemainingText": "Tiempo Restante", + "toRankedText": "Para Clasificar", + "totalText": "total", + "tournamentInfoText": "Compite por puntajes altos con\notros jugadores en tu liga.\n\nLos premios los obtienen los jugadores\ncon mejor puntaje al acabarse el torneo.", + "welcome1Text": "Bienvenido a ${LEAGUE}. Puedes mejorar tu\nposición en la liga ganando estrellas, completando\nlogros y ganando trofeos en desafíos.", + "welcome2Text": "También puedes ganar boletos desde varias actividades similares.\nLos boletos pueden ser usados para desbloquear nuevos personajes,\nmapas y minijuegos, entrar a torneos y más.", + "yourPowerRankingText": "Tu Clasificación Actual:" + }, + "copyConfirmText": "Copiado en el portapapeles.", + "copyOfText": "Copia de ${NAME}", + "copyText": "Copiar", + "createEditPlayerText": "", + "createText": "Crear", + "creditsWindow": { + "additionalAudioArtIdeasText": "Audio Adicional, Arte Inicial, e Ideas por ${NAME}", + "additionalMusicFromText": "Música adicional de ${NAME}", + "allMyFamilyText": "Mis amigos y mi familia que ayudaron con las pruebas", + "codingGraphicsAudioText": "Código, Gráficos y Audio por ${NAME}", + "languageTranslationsText": "Traducciones:", + "legalText": "Legal:", + "publicDomainMusicViaText": "Música de dominio público vía ${NAME}", + "softwareBasedOnText": "Este software está basado parcialmente en el trabajo de ${NAME}", + "songCreditText": "${TITLE} Interpretada por ${PERFORMER}\nCompuesta por ${COMPOSER}, Arreglos por ${ARRANGER}, Publicada por ${PUBLISHER},\nCortesía de ${SOURCE}", + "soundAndMusicText": "Sonido & Música:", + "soundsText": "Sonidos (${SOURCE}):", + "specialThanksText": "Agradecimientos Especiales:", + "thanksEspeciallyToText": "Gracias especialmente a ${NAME}", + "titleText": "Créditos de ${APP_NAME}", + "whoeverInventedCoffeeText": "A quien inventó el café" + }, + "currentStandingText": "Tu puesto actual es #${RANK}", + "customizeText": "Personalizar...", + "deathsTallyText": "${COUNT} muertes", + "deathsText": "Muertes", + "debugText": "depurar", + "debugWindow": { + "reloadBenchmarkBestResultsText": "Nota: Es recomendable poner Ajustes->Gráficos->Texturas en 'Alto' al probar esto.", + "runCPUBenchmarkText": "Ejecutar Punto de Referencia del CPU", + "runGPUBenchmarkText": "Ejecutar Punto de Referencia del GPU", + "runMediaReloadBenchmarkText": "Ejecutar Punto de Referencia del Media-Reload", + "runStressTestText": "Ejecutar prueba de resistencia", + "stressTestPlayerCountText": "Conteo de Jugadores", + "stressTestPlaylistDescriptionText": "Lista de juegos de Prueba de Estrés", + "stressTestPlaylistNameText": "Nombre de la Lista de juegos", + "stressTestPlaylistTypeText": "Tipo de Lista de juegos", + "stressTestRoundDurationText": "Duración de Ronda", + "stressTestTitleText": "Prueba de Estrés", + "titleText": "Pruebas de Estrés y Rendimiento", + "totalReloadTimeText": "Tiempo total de recarga: ${TIME} (ver registro para detalles)" + }, + "defaultGameListNameText": "Lista de juegos ${PLAYMODE} Por Defecto", + "defaultNewGameListNameText": "Mi Lista de juegos ${PLAYMODE}", + "deleteText": "Borrar", + "demoText": "Demo", + "denyText": "Denegar", + "deprecatedText": "Obsoleto", + "descriptionText": "Descripción", + "desktopResText": "Resolución de Escritorio", + "deviceAccountUpgradeText": "Advertencia:\nIniciaste sesión con una cuenta de dispositivo (${NAME}).\nLas cuentas de dispositivo serán removidas en una futura actualización.\nActualiza a una Cuenta V2 si quieres conservar tu progreso.", + "difficultyEasyText": "Fácil", + "difficultyHardOnlyText": "Solo en Modo Difícil", + "difficultyHardText": "Difícil", + "difficultyHardUnlockOnlyText": "Este nivel solo puede ser desbloqueado en modo difícil.\n¡¿¡¿¡Piensas tener lo que se necesita!?!?!", + "directBrowserToURLText": "Por favor abre la siguiente URL en tu navegador:", + "disableRemoteAppConnectionsText": "Deshabilitar Conexiones Remotas de la Aplicación", + "disableXInputDescriptionText": "Permite más de 4 controles pero puede que no funcione bien.", + "disableXInputText": "Deshabilitar XInput", + "disabledText": "Deshabilitado", + "discardText": "Descartar", + "discordFriendsText": "¿Quieres buscar gente nueva con quien jugar?\n¡Únete a nuestro Discord y encuentra nuevos amigos!", + "discordJoinText": "Únete al Discord", + "doneText": "Hecho", + "drawText": "Empate", + "duplicateText": "Duplicar", + "editGameListWindow": { + "addGameText": "Añadir\nJuego", + "cantOverwriteDefaultText": "¡No es posible modificar la lista de juegos por defecto!", + "cantSaveAlreadyExistsText": "¡Ya existe una lista de juegos con ese nombre!", + "cantSaveEmptyListText": "¡No puedes guardar una lista de juegos vacía!", + "editGameText": "Editar\nJuego", + "listNameText": "Nombre de La Lista de Juegos", + "nameText": "Nombre", + "removeGameText": "Eliminar\nJuego", + "saveText": "Guardar Lista", + "titleText": "Editor de Lista de Juegos" + }, + "editProfileWindow": { + "accountProfileInfoText": "Este perfil especial tiene un nombre\ny un icono basado en tu cuenta.\n\n${ICONS}\n\nCrea perfiles personalizados si quieres usar\ndiferentes nombres o iconos personalizados.", + "accountProfileText": "(perfil de cuenta)", + "availableText": "El nombre \"${NAME}\" está disponible.", + "characterText": "personaje", + "checkingAvailabilityText": "Revisando la disponibilidad para \"${NAME}\"...", + "colorText": "color", + "getMoreCharactersText": "Obtener Más Personajes...", + "getMoreIconsText": "Obtener Más Iconos...", + "globalProfileInfoText": "Los perfiles de jugador globales tienen un nombre único\na nivel mundial. También tienen iconos personalizados.", + "globalProfileText": "(perfil global)", + "highlightText": "Destacado", + "iconText": "icono", + "localProfileInfoText": "Los perfiles locales no tienen iconos y no hay garantía de que los nombres sean únicos. \nCrea un perfil global\npara reservar un nombre único y tener un icono personalizado.", + "localProfileText": "(perfil local)", + "nameDescriptionText": "Nombre del Jugador", + "nameText": "Nombre", + "profileAlreadyExistsText": "Ya existe un perfil con ese nombre.", + "randomText": "aleatorio", + "titleEditText": "Editar Perfil", + "titleNewText": "Nuevo Perfil", + "unavailableText": "\"${NAME}\" no está disponible; intenta otro nombre.", + "upgradeProfileInfoText": "Esto reservará tu nombre de jugador a nivel mundial\ny podrás asignarle un icono personalizado.", + "upgradeToGlobalProfileText": "Actualizar a Perfil Global" + }, + "editSoundtrackWindow": { + "cantDeleteDefaultText": "No puedes borrar la banda sonora predeterminada.", + "cantEditDefaultText": "No puedes editar la banda sonora predeterminada. Duplicala o crea una nueva.", + "cantOverwriteDefaultText": "No puedes sobreescribir la banda sonora predeterminada", + "cantSaveAlreadyExistsText": "¡Ya existe una banda sonora con ese nombre!", + "defaultGameMusicText": "", + "defaultSoundtrackNameText": "Banda Sonora Predeterminada", + "deleteConfirmText": "Borrar Banda Sonora:\n\n'${NAME}'?", + "deleteText": "Borrar\nBanda Sonora", + "duplicateText": "Duplicar\nBanda Sonora", + "editSoundtrackText": "Editor de Banda Sonora", + "editText": "Editar\nBanda Sonora", + "fetchingITunesText": "buscando playlists en la App de Música...", + "musicVolumeZeroWarning": "Advertencia: el volumen de la música está en 0", + "nameText": "Nombre", + "newSoundtrackNameText": "Mi Banda Sonora ${COUNT}", + "newSoundtrackText": "Nueva Banda Sonora:", + "newText": "Nueva\nBanda Sonora", + "selectAPlaylistText": "Selecciona Una Playlist", + "selectASourceText": "Fuente de La Música", + "testText": "prueba", + "titleText": "Bandas Sonoras", + "useDefaultGameMusicText": "Música del Juego Por Defecto", + "useITunesPlaylistText": "Playlist de la App de Música", + "useMusicFileText": "Archivo de Música (mp3, etc).", + "useMusicFolderText": "Carpeta de Archivos de Audio" + }, + "editText": "Editar", + "enabledText": "Habilitado", + "endText": "Fin", + "enjoyText": "¡Diviértete!", + "epicDescriptionFilterText": "${DESCRIPTION} En cámara lenta épica.", + "epicNameFilterText": "${NAME} - Modo épico", + "errorAccessDeniedText": "acceso denegado", + "errorDeviceTimeIncorrectText": "La hora de tu dispositivo está incorrecta por ${HOURS} hora(s).\nEsto podría causar algunos problemas.\nPor favor verifica la hora y zona horaria en ajustes.", + "errorOutOfDiskSpaceText": "espacio insuficiente en el disco", + "errorSecureConnectionFailText": "No se puede establecer una conexión segura en la nube; la red podría estar fallando.", + "errorText": "Error", + "errorUnknownText": "error desconocido", + "exitGameText": "¿Salir de ${APP_NAME}?", + "expiredAgoText": "Expiró hace ${T}", + "expiresInText": "Expira en ${T}", + "exportSuccessText": "'${NAME}' exportado.", + "externalStorageText": "Almacenamiento Externo", + "failText": "Fallaste", + "fatalErrorText": "Oh oh; algo está mal por aquí.\nPor favor intenta reinstalar la app o\ncontacta a ${EMAIL} para recibir ayuda.", + "fileSelectorWindow": { + "titleFileFolderText": "Elige un Archivo o Carpeta", + "titleFileText": "Elige un Archivo", + "titleFolderText": "Elige una Carpeta", + "useThisFolderButtonText": "Usar Esta Carpeta" + }, + "filterText": "Filtro", + "finalScoreText": "Puntaje Final", + "finalScoresText": "Puntajes Finales", + "finalTimeText": "Tiempo Final", + "finishingInstallText": "Terminando la instalación; espera un momento...", + "fireTVRemoteWarningText": "* Para una mejor experiencia, \nutiliza controles o instala la\napp '${REMOTE_APP_NAME}' en tus\ndispositivos móviles y tabletas.", + "firstToFinalText": "Primero de ${COUNT} Finales", + "firstToSeriesText": "Primero de ${COUNT} Series", + "fiveKillText": "¡¡¡COMBO QUÍNTUPLE!!!", + "flawlessWaveText": "¡Oleada Perfecta!", + "fourKillText": "¡¡¡COMBO CUÁDRUPLE!!!", + "friendScoresUnavailableText": "Puntajes no disponibles.", + "gameLeadersText": "Líderes del Juego ${COUNT}", + "gameListWindow": { + "cantDeleteDefaultText": "No puedes borrar la lista de juegos predeterminada.", + "cantEditDefaultText": "¡No puedes editar la lista de juegos predeterminada! Duplicala o crea una nueva.", + "cantShareDefaultText": "No puedes compartir la lista de juegos predeterminada.", + "deleteConfirmText": "¿Borrar \"${LIST}\"?", + "deleteText": "Borrar\nLista de Juegos", + "duplicateText": "Duplicar\nLista de Juegos", + "editText": "Editar\nLista de Juegos", + "newText": "Nueva\nLista de Juegos", + "pointsToWinText": "Puntos Para Ganar", + "seriesLengthText": "Duración de la Serie", + "showTutorialText": "Ver Tutorial", + "shuffleGameOrderText": "Orden de Juego Aleatorio", + "titleText": "Personalizar Listas de Juegos de ${TYPE}" + }, + "gameSettingsWindow": { + "addGameText": "Agregar Juego" + }, + "gamesToText": "${WINCOUNT} juegos a ${LOSECOUNT}", + "gatherWindow": { + "aboutDescriptionLocalMultiplayerExtraText": "Recuerda: cualquier dispositivo en la fiesta puede\ntener más de un jugador si tienen controles suficientes.", + "aboutDescriptionText": "Usa estas pestañas para armar una partida.\n\nLas partidas te permiten jugar y competir con\ntus amigos a través de diferentes dispositivos.\n\nUsa el botón ${PARTY} en la parte superior\nderecha para chatear e interactuar con tu partida.\n(con un control, presiona ${BUTTON} mientras estés en el menú)", + "aboutText": "Acerca De", + "addressFetchErrorText": "", + "appInviteMessageText": "${NAME} te envió ${COUNT} boletos en ${APP_NAME}", + "appInviteSendACodeText": "Envíales Un Código", + "appInviteTitleText": "Invitación de La App ${APP_NAME}", + "bluetoothAndroidSupportText": "(funciona con cualquier dispositivo Android con Bluetooth)", + "bluetoothDescriptionText": "Alojar/unirse a una partida vía Bluetooth:", + "bluetoothHostText": "Alojar vía Bluetooth", + "bluetoothJoinText": "Unirse vía Bluetooth", + "bluetoothText": "Bluetooth", + "checkingText": "revisando...", + "copyCodeConfirmText": "Código copiado al portapapeles.", + "copyCodeText": "Copiar Código", + "dedicatedServerInfoText": "Para mejores resultados, crea un servidor dedicado. Visita bombsquadgame.com/server para aprender cómo hacerlo.", + "descriptionShortText": "Usa la pestaña de Reunir para crear una fiesta.", + "disconnectClientsText": "Esto desconectará a ${COUNT} jugador(es) de\ntu partida. ¿Estás seguro?", + "earnTicketsForRecommendingAmountText": "Tus amigos recibirán ${COUNT} boletos si prueban el juego\n(y recibirás ${YOU_COUNT} boletos por cada amigo que pruebe el juego).", + "earnTicketsForRecommendingText": "Comparte el juego\na cambio de boletos gratis...", + "emailItText": "Envíar Correo", + "favoritesSaveText": "Guardar Como Favorito", + "favoritesText": "Favoritos", + "freeCloudServerAvailableMinutesText": "El siguiente servidor estará disponible en ${MINUTES} minuto(s).", + "freeCloudServerAvailableNowText": "¡Servidor en la nube gratuito disponible!", + "freeCloudServerNotAvailableText": "No hay servidores en la nube gratuitos disponibles.", + "friendHasSentPromoCodeText": "Recibiste ${COUNT} boletos de ${APP_NAME} de ${NAME}", + "friendPromoCodeAwardText": "Recibirás ${COUNT} boletos cada vez que lo uses.", + "friendPromoCodeExpireText": "El código expirará en ${EXPIRE_HOURS} hora(s) y solo funciona para jugadores nuevos.", + "friendPromoCodeInstructionsText": "Para usarlo, abre ${APP_NAME} y ve a \"Ajustes->Avanzado->Enviar Información\"\nVisita bombsquadgame.com para enlaces de descarga de todas las plataformas disponibles.", + "friendPromoCodeRedeemLongText": "Se puede canjear por ${COUNT} boletos gratis hasta por ${MAX_USES} personas.", + "friendPromoCodeRedeemShortText": "Puede ser canjeado por ${COUNT} boletos en el juego.", + "friendPromoCodeWhereToEnterText": "(en \"Ajustes->Avanzado->Enviar Información\")", + "getFriendInviteCodeText": "Obtener Código de Invitación de Amigo", + "googlePlayDescriptionText": "Invitar jugadores de Google Play a tu partida:", + "googlePlayInviteText": "Invitar", + "googlePlayReInviteText": "Hay ${COUNT} jugador(es) de Google Play en tu fiesta\nque se desconectarán si creas una nueva invitación.\nInclúyelos en la nueva invitación para tenerlos de vuelta.", + "googlePlaySeeInvitesText": "Ver Invitaciones", + "googlePlayText": "Google Play", + "googlePlayVersionOnlyText": "(Versión Android / Google Play)", + "hostPublicPartyDescriptionText": "Alojar una Partida Pública", + "hostingUnavailableText": "Alojamiento No Disponible", + "inDevelopmentWarningText": "Nota:\n\nJugar en red es una función todavía en desarrollo.\nPor ahora, es altamente recomendado que todos\nlos jugadores estén en la misma red Wi-Fi.", + "internetText": "Internet", + "inviteAFriendText": "¿Tus amigos no tienen el juego? Invítalos a\nprobarlo y recibirán ${COUNT} boletos gratis.", + "inviteFriendsText": "Invitar Amigos", + "joinPublicPartyDescriptionText": "Unirse a una Partida Pública", + "localNetworkDescriptionText": "Unirse a una Partida Cercana (LAN, Bluetooth, etc.)", + "localNetworkText": "Red Local", + "makePartyPrivateText": "Hacer Mi Partida Privada", + "makePartyPublicText": "Hacer Mi Partida Pública", + "manualAddressText": "Dirección", + "manualConnectText": "Conectar", + "manualDescriptionText": "Unirse a una partida por dirección:", + "manualJoinSectionText": "Unirse Por Dirección", + "manualJoinableFromInternetText": "¿Se pueden unir desde internet?:", + "manualJoinableNoWithAsteriskText": "NO*", + "manualJoinableYesText": "SÍ", + "manualRouterForwardingText": "*para arreglarlo, configura tu router para que redireccione el puerto UDP ${PORT} a tu dirección local", + "manualText": "Manual", + "manualYourAddressFromInternetText": "Tu dirección desde internet:", + "manualYourLocalAddressText": "Tu dirección local:", + "nearbyText": "Cerca", + "noConnectionText": "", + "noPartiesAddedText": "Sin Fiestas Añadidas", + "otherVersionsText": "(otras versiones)", + "partyCodeText": "Código de La Partida", + "partyInviteAcceptText": "Aceptar", + "partyInviteDeclineText": "Denegar", + "partyInviteIgnoreText": "Ignorar", + "partyInviteText": "${NAME} te ha invitado\na unirse a su partida!", + "partyNameText": "Nombre de La Partida", + "partyServerRunningText": "Tu servidor se esta ejecutando.", + "partySizeText": "tamaño de partida", + "partyStatusCheckingText": "comprobando estado...", + "partyStatusJoinableText": "ahora se pueden unir a tu partida desde internet", + "partyStatusNoConnectionText": "incapaz de conectarse al servidor", + "partyStatusNotJoinableText": "no se pueden unir a tu partida desde internet", + "partyStatusNotPublicText": "tu partida no es pública", + "pingText": "ping", + "portText": "Puerto", + "privatePartyCloudDescriptionText": "Las partidas privadas se ejecutan en la nube; no requieren configuración del router.", + "privatePartyHostText": "Alojar una Partida Privada", + "privatePartyJoinText": "Unirse a una Partida Privada", + "privateText": "Privado", + "publicHostRouterConfigText": "Esto puede requerir configurar el reenvío de puertos en tu router. Para una opción más fácil, aloja una partida privada.", + "publicText": "Público", + "requestingAPromoCodeText": "Pidiendo un código...", + "sendDirectInvitesText": "Enviar Directamente La Invitación", + "shareThisCodeWithFriendsText": "Comparte este código con tus amigos:", + "showMyAddressText": "Mostrar Mi Dirección", + "startHostingPaidText": "Alojar Ahora Por ${COST}", + "startHostingText": "Alojar", + "startStopHostingMinutesText": "Puede iniciar y detener el alojamiento de forma gratuita durante los próximos ${MINUTES} minuto(s).", + "stopHostingText": "Dejar de Alojar", + "titleText": "Reunir", + "wifiDirectDescriptionBottomText": "Si todo los dispositivos disponen de 'Wi-fi Directo', deberían poder utilizarlo para\nencontrar y conectarse entre ellos. Cuando todos estén conectados, puedes formar \npartidas, usando la pestaña 'Red Local', como si estuvieran en la misma red Wi-fi.\n\nPara mejores resultados, el alojador del Wi-fi Directo también debe ser el alojador de la partida en ${APP_NAME}.", + "wifiDirectDescriptionTopText": "Wi-Fi Directo puede ser utilizado para conectar dispositivos Android sin\ntener que utilizar una red Wi-Fi. Esto funciona mejor en Android 4.2 hacia adelante.\n\nPara utilizarlo, abre los ajustes de Wi-Fi y busca 'Wi-Fi Directo' en el menú.", + "wifiDirectOpenWiFiSettingsText": "Abrir Ajustes de Wi-Fi", + "wifiDirectText": "Wi-Fi Directo", + "worksBetweenAllPlatformsText": "(funciona en todas las plataformas)", + "youHaveBeenSentAPromoCodeText": "Has enviado un código promocional de ${APP_NAME}:" + }, + "getTicketsWindow": { + "freeText": "¡GRATIS!", + "freeTicketsText": "Boletos Gratis", + "inProgressText": "Ya hay una transacción en progreso; por favor inténtalo mas tarde.", + "purchasesRestoredText": "Compras restauradas.", + "receivedTicketsText": "¡Recibiste ${COUNT} boletos!", + "restorePurchasesText": "Restaurar Compras", + "ticketPack1Text": "Paquete de Boletos Pequeño", + "ticketPack2Text": "Paquete de Boletos Mediano", + "ticketPack3Text": "Paquete de Boletos Grande", + "ticketPack4Text": "Paquete de Boletos Jumbo", + "ticketPack5Text": "Paquete de Boletos Mamut", + "ticketPack6Text": "Paquete de Boletos Supremo", + "ticketsFromASponsorText": "Ver un anuncio\na cambio de ${COUNT} boletos", + "ticketsText": "${COUNT} Boletos", + "titleText": "Conseguir Boletos", + "unavailableLinkAccountText": "Disculpe, las compras no están disponibles en esta plataforma.\nComo una solución, puedes enlazar esta cuenta a otra\nplataforma y hacer tus compras desde ahí.", + "unavailableTemporarilyText": "No disponible por el momento; por favor inténtalo más tarde.", + "unavailableText": "Disculpe, esto no está disponible.", + "versionTooOldText": "Lo sentimos, esta versión del juego es muy antigua; por favor actualízala a una nueva versión.", + "youHaveShortText": "tienes ${COUNT}", + "youHaveText": "tienes ${COUNT} boletos" + }, + "goldPass": { + "desc1InfTokensText": "Fichas infinitas.", + "desc2NoAdsText": "Sin anuncios.", + "desc3ForeverText": "Para siempre.", + "goldPassText": "Pase de Oro" + }, + "googlePlayPurchasesNotAvailableText": "Las compras de Google Play no están disponibles.\nEs posible que debas actualizar la aplicación de tu tienda.", + "googlePlayServicesNotAvailableText": "Los Servicios de Google Play no están disponibles.\nAlgunas funciones de la aplicación pueden estar deshabilitadas.", + "googlePlayText": "Google Play", + "graphicsSettingsWindow": { + "alwaysText": "Siempre", + "fullScreenCmdText": "Pantalla completa (Cmd-F)", + "fullScreenCtrlText": "Pantalla completa (Ctrl-F)", + "fullScreenText": "Pantalla completa", + "gammaText": "Gama", + "highText": "Alto", + "higherText": "Altísimo", + "lowText": "Bajo", + "maxFPSText": "FPS Máximos", + "mediumText": "Medio", + "neverText": "Nunca", + "resolutionText": "Resolución", + "showFPSText": "Mostrar FPS", + "texturesText": "Texturas", + "titleText": "Gráficos", + "tvBorderText": "Borde del TV", + "verticalSyncText": "Sincronización Vertical", + "visualsText": "Visuales" + }, + "helpWindow": { + "bombInfoText": "- Bomba -\nMás fuerte que los golpes, pero puede\nresultar en autolesiones graves.\nPara mejores resultados, tírala hacia tus\noponentes antes de que explote.", + "canHelpText": "${APP_NAME} te puede ayudar.", + "controllersInfoText": "Puedes jugar ${APP_NAME} con tus amigos en una red o todos pueden\njugar en el mismo dispositivo si se tienen varios controles.\n${APP_NAME} soporta una gran variedad de ellos; incluso puedes utilizar\ntus dispositivos móviles como controles instalando la app '${REMOTE_APP_NAME}'.\nVe a \"Ajustes->Controles\" para más información.", + "controllersInfoTextRemoteOnly": "Tu puedes jugar ${APP_NAME} con tus amigos en la red o pueden\njugar todos en el mismo dispositivo usando los teléfonos\ncomo controles con la aplicación '${REMOTE_APP_NAME}'.", + "controllersText": "Controles", + "controlsSubtitleText": "Tu amistoso personaje de ${APP_NAME} tiene algunas acciones básicas:", + "controlsText": "Controles", + "devicesInfoText": "La versión de RV de ${APP_NAME} se puede jugar en la red con la versión \nregular, así que saca tus celulares, tablets y computadoras extras y que \nempieze el juego. Es muy útil conectar un dispositivo con la versión\nregular a uno con la versión VR para que todos los que estén fuera\npuedan ver la acción.", + "devicesText": "Dispositivos", + "friendsGoodText": "Cuantos más, mejor. ${APP_NAME} es más divertido con muchos \namigos y soporta hasta 8 a la vez, lo que nos lleva a:", + "friendsText": "Amigos", + "jumpInfoText": "- Saltar -\nSalta para cruzar pequeños espacios, \npara tirar cosas más lejos y \npara expresar sentimientos de alegría.", + "orPunchingSomethingText": "O golpear algo, tirarlo por un precipicio y explotarlo en plena caída con una bomba pegajosa.", + "pickUpInfoText": "- Recoger -\nAgarra banderas, enemigos o cualquier\notra cosa no pegada al suelo.\nPresiona de nuevo para lanzar.", + "powerupBombDescriptionText": "Te permite sacar tres bombas\nrapidamente en lugar de solo una.", + "powerupBombNameText": "Bombas Triples", + "powerupCurseDescriptionText": "Probablemente quieras evitar estos.\n ...¿o talvez no?", + "powerupCurseNameText": "Maldición", + "powerupHealthDescriptionText": "Te restaura la salud completamente.\nNunca lo habrías adivinado.", + "powerupHealthNameText": "Botiquín", + "powerupIceBombsDescriptionText": "Más débiles que las bombas normales\npero dejan a tus enemigos congelados\ny particularmente frágiles.", + "powerupIceBombsNameText": "Bombas de Hielo", + "powerupImpactBombsDescriptionText": "Levemente más débiles que las bombas regulares, pero explotan al impacto.", + "powerupImpactBombsNameText": "Insta-Bombas", + "powerupLandMinesDescriptionText": "Estas vienen en grupos de 3;\nSon buenas para defensa territorial\no para detener enemigos veloces.", + "powerupLandMinesNameText": "Minas Terrestres", + "powerupPunchDescriptionText": "Hacen que tus golpes sean más duros,\nmás rápidos, mejores y más fuertes.", + "powerupPunchNameText": "Guantes de Boxeo", + "powerupShieldDescriptionText": "Absorbe un poco de daño\npara que asi no tengas que hacerlo tu.", + "powerupShieldNameText": "Escudo-de-Energía", + "powerupStickyBombsDescriptionText": "Se adhieren a todo lo que toquen.\nProducen hilaridad.", + "powerupStickyBombsNameText": "Bombas Pegajosas", + "powerupsSubtitleText": "Obviamente, ningún juego estaría completo sin potenciadores:", + "powerupsText": "Potenciadores", + "punchInfoText": "- Golpear -\nLos golpes hacen más daño cuanto\nmás rápido se muevan tus puños, así que\ncorre, salta y gira como un loco.", + "runInfoText": "- Correr -\nMantén CUALQUIER botón para correr. Los gatillos o botones traseros funcionan bien si los tienes.\nCorrer te lleva a lugares más rápido pero es más difícil girar, así que ten cuidado con los barrancos.", + "someDaysText": "Hay días en los que sientes ganas de golpear algo. O volar algo.", + "titleText": "Ayuda de ${APP_NAME}", + "toGetTheMostText": "Para sacar el máximo partido a este juego, necesitas:", + "welcomeText": "¡Bienvenido a ${APP_NAME}!" + }, + "holdAnyButtonText": "", + "holdAnyKeyText": "", + "hostIsNavigatingMenusText": "- ${HOST} está navegando los menús como un pro -", + "importPlaylistCodeInstructionsText": "Usa el siguiente código para importar esta lista de juegos en otra parte:", + "importPlaylistSuccessText": "Lista de Juegos '${NAME}' importada ${TYPE}", + "importText": "Importar", + "importingText": "Importando...", + "inGameClippedNameText": "en el juego será\n\"${NAME}\"", + "inboxText": "Bandeja de Entrada", + "installDiskSpaceErrorText": "ERROR: Incapaz de completar la instalación.\nPuede que te hayas quedado sin espacio en tu dispositivo.\nLibera un poco de tu espacio e intenta de nuevo.", + "internal": { + "arrowsToExitListText": "pulsa ${LEFT} o ${RIGHT} para salir de la lista", + "buttonText": "botón", + "cantKickHostError": "No puedes expulsar al anfitrión.", + "chatBlockedText": "${NAME} está bloqueado del chat por ${TIME} segundos.", + "connectedToGameText": "Unido a '${NAME}'", + "connectedToPartyText": "¡Unido a la partida de ${NAME}!", + "connectingToPartyText": "Conectando...", + "connectionFailedHostAlreadyInPartyText": "Conexión fallida; el anfitrión está en otra partida.", + "connectionFailedPartyFullText": "Conexión fallida; la partida está llena.", + "connectionFailedText": "Conexión fallida.", + "connectionFailedVersionMismatchText": "Conexión fallida; el anfitrión corre una versión diferente del juego.\nAsegúrese de que ambos están actualizados y vuelva a intentar.", + "connectionRejectedText": "Conexión rechazada.", + "controllerConnectedText": "${CONTROLLER} conectado.", + "controllerDetectedText": "1 control detectado.", + "controllerDisconnectedText": "${CONTROLLER} desconectado.", + "controllerDisconnectedTryAgainText": "${CONTROLLER} desconectado. Intenta conectarlo de nuevo.", + "controllerForMenusOnlyText": "Este control no puede ser usado para jugar; solo para navegar por menús.", + "controllerReconnectedText": "${CONTROLLER} reconectado.", + "controllersConnectedText": "${COUNT} controles conectados.", + "controllersDetectedText": "${COUNT} controles detectados.", + "controllersDisconnectedText": "${COUNT} controles desconectados.", + "corruptFileText": "Archivo(s) corrupto(s) detectado(s). Por favor intenta reinstalando o contácta a ${EMAIL}", + "errorPlayingMusicText": "Error reproduciendo música: ${MUSIC}", + "errorResettingAchievementsText": "Incapaz de reiniciar los logros; por favor inténtalo de nuevo más tarde.", + "hasMenuControlText": "${NAME} tiene el control del menú.", + "incompatibleNewerVersionHostText": "El anfitrión está ejecutando una versión nueva del juego.\nActualiza a la última versión y vuelve a intentarlo.", + "incompatibleVersionHostText": "El anfitrión está ejecutando una versión diferente del juego.\nAsegúrese de que ambos están actualizados y vuelva a intentar.", + "incompatibleVersionPlayerText": "${NAME} está ejecutando una versión diferente del juego.\nAsegúrate de que ambos estén actualizados y vuelva a intentarlo.", + "invalidAddressErrorText": "Error: dirección inválida.", + "invalidNameErrorText": "Error: nombre inválido.", + "invalidPortErrorText": "Error: puerto inválido.", + "invitationSentText": "Invitación enviada.", + "invitationsSentText": "${COUNT} invitaciones enviadas.", + "joinedPartyInstructionsText": "Alguien se ha unido a tu fiesta.\nVe a 'Jugar' para iniciar un juego.", + "keyboardText": "Teclado", + "kickIdlePlayersKickedText": "Expulsando a ${NAME} por estar inactivo.", + "kickIdlePlayersWarning1Text": "${NAME} será expulsado en ${COUNT} segundos si sigue inactivo.", + "kickIdlePlayersWarning2Text": "(puedes apagar esto en Ajustes -> Avanzado)", + "leftGameText": "Abandonó '${NAME}'.", + "leftPartyText": "Abandonó la partida de ${NAME}.", + "noMusicFilesInFolderText": "La carpeta no contiene archivos de audio.", + "playerJoinedPartyText": "¡${NAME} se unió a la partida!", + "playerLeftPartyText": "${NAME} abandonó la partida.", + "rejectingInviteAlreadyInPartyText": "Rechazando invitación (ya estás en una partida).", + "serverRestartingText": "El servidor se está reiniciando. Por favor vuelva a unirse en un momento...", + "serverShuttingDownText": "El servidor está fuera de servicio...", + "signInErrorText": "Error iniciando sesión.", + "signInNoConnectionText": "Imposible iniciar sesión. (¿no hay conexión a internet?)", + "telnetAccessDeniedText": "ERROR: El usuario no concedió acceso telnet.", + "timeOutText": "(tiempo fuera en ${TIME} segundo/s)", + "touchScreenJoinWarningText": "Te uniste con la pantalla táctil.\nSi este fue un error, presiona 'Menú->Abandonar Juego' con ella.", + "touchScreenText": "Pantalla Táctil", + "unableToCompleteTryAgainText": "Incapaz de completar esto ahora mismo.\nPor favor, inténtelo de nuevo.", + "unableToResolveHostText": "Error: incapaz de encontrar el anfitrión.", + "unavailableNoConnectionText": "No disponible por el momento (¿no tienes conexión a internet?)", + "vrOrientationResetCardboardText": "Usa esto para reiniciar la orientación de RV.\nPara jugar el juego necesitarás un control externo.", + "vrOrientationResetText": "Orientación de RV reiniciada.", + "willTimeOutText": "(caducará si está inactivo)" + }, + "inventoryText": "Inventario", + "jumpBoldText": "SALTAR", + "jumpText": "Saltar", + "keepText": "Mantener", + "keepTheseSettingsText": "¿Mantener estos ajustes?", + "keyboardChangeInstructionsText": "Presiona dos veces el espacio para cambiar los teclados.", + "keyboardNoOthersAvailableText": "No hay más teclados disponibles.", + "keyboardSwitchText": "Cambiando teclado a \"${NAME}\".", + "kickOccurredText": "${NAME} ha sido expulsado.", + "kickQuestionText": "¿Expulsar a ${NAME}?", + "kickText": "Expulsar", + "kickVoteCantKickAdminsText": "Los administradores no pueden ser expulsados.", + "kickVoteCantKickSelfText": "No puedes expulsarte a ti mismo.", + "kickVoteFailedNotEnoughVotersText": "No hay suficientes jugadores para votar.", + "kickVoteFailedText": "Votación de expulsión fallida.", + "kickVoteStartedText": "Se ha iniciado una votación de expulsión para '${NAME}'.", + "kickVoteText": "Votar para Expulsar", + "kickVotingDisabledText": "El voto para expulsar esta desactivado.", + "kickWithChatText": "Escribe ${YES} en el chat para \"Si\" y ${NO} para \"No\".", + "killsTallyText": "${COUNT} asesinatos", + "killsText": "Asesinatos", + "kioskWindow": { + "easyText": "Fácil", + "epicModeText": "Modo Lento", + "fullMenuText": "Menú Completo", + "hardText": "Difícil", + "mediumText": "Medio", + "singlePlayerExamplesText": "Ejemplos de 1 Jugador / Modo Cooperativo", + "versusExamplesText": "Ejemplos de Versus" + }, + "languageSetText": "El idioma ahora es \"${LANGUAGE}\".", + "lapNumberText": "Vuelta ${CURRENT}/${TOTAL}", + "lastGamesText": "(últimos ${COUNT} juegos)", + "leaderboardsText": "Clasificaciones", + "league": { + "allTimeText": "Todo El Tiempo", + "currentSeasonText": "Temporada Actual (${NUMBER})", + "leagueFullText": "Liga ${NAME}", + "leagueRankText": "Rango de Liga", + "leagueText": "Liga", + "rankInLeagueText": "#${RANK}, ${NAME} Liga${SUFFIX}", + "seasonEndedDaysAgoText": "La temporada terminó hace ${NUMBER} día(s).", + "seasonEndsDaysText": "La temporada termina en ${NUMBER} día(s).", + "seasonEndsHoursText": "La temporada termina en ${NUMBER} hora(s).", + "seasonEndsMinutesText": "La temporada termina en ${NUMBER} minuto(s).", + "seasonText": "Temporada ${NUMBER}", + "tournamentLeagueText": "Debes alcanzar la liga ${NAME} para entrar a este torneo.", + "trophyCountsResetText": "El conteo de trofeos se reiniciará la próxima temporada.", + "upToDateBonusDescriptionText": "Los jugadores con una version reciente \ndel juego obtienen un bonus del ${PERCENT}% aquí.", + "upToDateBonusText": "Bono Actualizado" + }, + "learnMoreText": "Aprender Más", + "levelBestScoresText": "Mejores puntajes en ${LEVEL}", + "levelBestTimesText": "Mejores tiempos en ${LEVEL}", + "levelIsLockedText": "${LEVEL} está bloqueado.", + "levelMustBeCompletedFirstText": "${LEVEL} debe completarse primero.", + "levelText": "Nivel ${NUMBER}", + "levelUnlockedText": "¡Nivel Desbloqueado!", + "livesBonusText": "Bono de Vidas", + "loadingText": "cargando", + "loadingTryAgainText": "Cargando; vuelve a intentarlo en un momento...", + "macControllerSubsystemBothText": "Ambos (no recomendado)", + "macControllerSubsystemClassicText": "Clásico", + "macControllerSubsystemDescriptionText": "(intenta cambiar esto si tus controles no están funcionando)", + "macControllerSubsystemMFiNoteText": "Control hecho para iOS/Mac detectado;\nTal vez quieras activar esto en Ajustes -> Controles", + "macControllerSubsystemMFiText": "Creado para iOS/Mac", + "macControllerSubsystemTitleText": "Soporte del Control", + "mainMenu": { + "creditsText": "Créditos", + "demoMenuText": "Menú Demo", + "endGameText": "Terminar Juego", + "endTestText": "Terminar Prueba", + "exitGameText": "Salir del Juego", + "exitToMenuText": "¿Salir al menú?", + "howToPlayText": "Cómo Jugar", + "justPlayerText": "(Solo ${NAME})", + "leaveGameText": "Abandonar Juego", + "leavePartyConfirmText": "¿Realmente deseas abandonar la partida?", + "leavePartyText": "Abandonar Partida", + "quitText": "Salir", + "resumeText": "Reanudar", + "settingsText": "Ajustes" + }, + "makeItSoText": "Que así sea", + "mapSelectGetMoreMapsText": "Obtener Más Mapas...", + "mapSelectText": "Seleccionar...", + "mapSelectTitleText": "Mapas para ${GAME}", + "mapText": "Mapa", + "maxConnectionsText": "Máximo de Conexiones", + "maxPartySizeText": "Capacidad Máxima de La Partida", + "maxPlayersText": "Máximo de Jugadores", + "merchText": "¡Mercancía!", + "modeArcadeText": "Modo Arcade", + "modeClassicText": "Modo Clásico", + "modeDemoText": "Modo Demo", + "moreSoonText": "Más próximamente...", + "mostDestroyedPlayerText": "Jugador Más Destruido", + "mostValuablePlayerText": "Jugador Más Valioso", + "mostViolatedPlayerText": "Jugador Más Violado", + "mostViolentPlayerText": "Jugador Más Violento", + "moveText": "Mover", + "multiKillText": "¡¡¡COMBO DE ${COUNT}!!!", + "multiPlayerCountText": "${COUNT} jugadores", + "mustInviteFriendsText": "Nota: debes invitar a tus amigos en\nel panel \"${GATHER}\" o conectar\ncontroles para jugar multijugador.", + "nameBetrayedText": "${NAME} traicionó a ${VICTIM}.", + "nameDiedText": "${NAME} ha muerto.", + "nameKilledText": "${NAME} mató a ${VICTIM}.", + "nameNotEmptyText": "¡El nombre no puede quedar vacío!", + "nameScoresText": "¡${NAME} Anotó!", + "nameSuicideKidFriendlyText": "${NAME} murió accidentalmente.", + "nameSuicideText": "${NAME} cometió suicidio.", + "nameText": "Nombre", + "nativeText": "Nativo", + "newExclaimText": "¡Nuevo!", + "newPersonalBestText": "¡Nuevo récord personal!", + "newTestBuildAvailableText": "¡Una nueva build de prueba está disponible! (${VERSION} build ${BUILD}).\nObténla en ${ADDRESS}", + "newText": "Nuevo", + "newVersionAvailableText": "¡Una nueva version de ${APP_NAME} está disponible! (${VERSION})", + "nextAchievementsText": "Siguientes Logros:", + "nextLevelText": "Siguiente Nivel", + "noAchievementsRemainingText": "- ninguno", + "noContinuesText": "(sin re-intentos)", + "noExternalStorageErrorText": "No se encontró almacenamiento externo en este dispositivo", + "noGameCircleText": "Error: no registrado en GameCircle", + "noMessagesText": "Sin mensajes.", + "noPluginsInstalledText": "Sin Complementos Instalados", + "noScoresYetText": "Sin puntajes aún.", + "noServersFoundText": "No se encontraron servidores.", + "noThanksText": "No Gracias", + "noTournamentsInTestBuildText": "ADVERTENCIA: Los puntajes de los torneos en esta versión de prueba serán ignorados.", + "noValidMapsErrorText": "Mapas válidos no encontrados para este tipo de juego.", + "notEnoughPlayersRemainingText": "No hay jugadores suficientes restantes; sal e inicia un nuevo juego.", + "notEnoughPlayersText": "¡Necesitas por lo menos ${COUNT} jugadores para comenzar!", + "notEnoughTicketsText": "¡No tienes suficientes tickets!", + "notNowText": "Ahora No", + "notSignedInErrorText": "Debes iniciar sesión para hacer esto.", + "notSignedInGooglePlayErrorText": "Debes iniciar sesión con Google Play para hacer esto.", + "notSignedInText": "no registrado", + "notUsingAccountText": "Nota: ignorando su cuenta de ${SERVICE}.\nVaya a 'Cuenta -> Iniciar sesión con ${SERVICE}' si quieres usarla.", + "nothingIsSelectedErrorText": "¡No hay nada seleccionado!", + "numberText": "#${NUMBER}", + "offText": "Apagar", + "okText": "Aceptar", + "onText": "Encender", + "oneMomentText": "Un Momento...", + "onslaughtRespawnText": "${PLAYER} reaparecerá en la oleada ${WAVE}", + "openMeText": "Ábreme!", + "openNowText": "Abrir Ahora", + "openText": "Abrir", + "orText": "${A} o ${B}", + "otherText": "Otros...", + "outOfText": "(#${RANK} de ${ALL})", + "ownFlagAtYourBaseWarning": "¡Su propia bandera debe estar\nen su base para anotar!", + "partyWindow": { + "chatMessageText": "Mensaje del Chat", + "emptyText": "Tu partida está vacía", + "hostText": "(anfitrión)", + "sendText": "Enviar", + "titleText": "Tu Partida" + }, + "pausedByHostText": "(pausado por el anfitrión)", + "perfectWaveText": "¡Oleada Perfecta!", + "pickUpText": "Recoger", + "playModes": { + "coopText": "Cooperativo", + "freeForAllText": "Todos contra Todos", + "multiTeamText": "Múlti-Equipo", + "singlePlayerCoopText": "Un Jugador / Equipos", + "teamsText": "Equipos" + }, + "playText": "Jugar", + "playWindow": { + "oneToFourPlayersText": "1-4 jugadores", + "titleText": "Jugar", + "twoToEightPlayersText": "2-8 jugadores" + }, + "playerCountAbbreviatedText": "${COUNT}j", + "playerDelayedJoinText": "${PLAYER} entrará al comienzo de la siguiente ronda.", + "playerInfoText": "Información del Jugador", + "playerLeftText": "${PLAYER} abandonó el juego.", + "playerLimitReachedText": "Límite de ${COUNT} jugadores alcanzado; no se permiten más.", + "playerProfilesWindow": { + "cantDeleteAccountProfileText": "No puedes borrar el perfil de tu cuenta.", + "deleteButtonText": "Borrar\nPerfil", + "deleteConfirmText": "¿Borrar '${PROFILE}'?", + "editButtonText": "Editar\nPerfil", + "explanationText": "(nombres de jugadores personalizados y apariencias para esta cuenta)", + "newButtonText": "Nuevo\nPerfil", + "titleText": "Perfiles del Jugador" + }, + "playerText": "Jugador", + "playlistNoValidGamesErrorText": "Esta lista de juegos contiene juegos desbloqueables no válidos.", + "playlistNotFoundText": "playlist no encontrada", + "playlistText": "Lista de Juegos", + "playlistsText": "Listas de juegos", + "pleaseRateText": "Si te gusta ${APP_NAME}, por favor tomate un momento\npara calificar o escribir una reseña. Esto proporciona\ninformación útil y ayuda al soporte del futuro desarrollo del juego.\n\n¡gracias!\n-eric", + "pleaseWaitText": "Por favor, espera...", + "pluginClassLoadErrorText": "Error cargando el complemento '${PLUGIN}': ${ERROR}", + "pluginInitErrorText": "Error iniciando complemento '${PLUGIN}': ${ERROR}", + "pluginSettingsText": "Ajustes de Complementos", + "pluginsAutoEnableNewText": "Activar automáticamente los nuevos complementos", + "pluginsDetectedText": "Complemento(s) detectado(s). Reinicia el juego o ve a ajustes para configurarlo.", + "pluginsDisableAllText": "Deshabilitar Todos Los Complementos", + "pluginsEnableAllText": "Habilitar Todos Los Complementos", + "pluginsRemovedText": "${NUM} complemento(s) ya no está(n).", + "pluginsText": "Complementos", + "practiceText": "Práctica", + "pressAnyButtonPlayAgainText": "Presiona cualquier botón para jugar de nuevo...", + "pressAnyButtonText": "Presiona cualquier botón para continuar...", + "pressAnyButtonToJoinText": "presiona cualquier botón para unirte al juego...", + "pressAnyKeyButtonPlayAgainText": "Presiona cualquier tecla/botón para jugar de nuevo...", + "pressAnyKeyButtonText": "Presiona cualquier botón/tecla para continuar...", + "pressAnyKeyText": "Presiona cualquier tecla...", + "pressJumpToFlyText": "** Presiona saltar repetidamente para volar **", + "pressPunchToJoinText": "presiona GOLPEAR para unirte...", + "pressToOverrideCharacterText": "presiona ${BUTTONS} para cambiar de personaje", + "pressToSelectProfileText": "presiona ${BUTTONS} para seleccionar un perfil", + "pressToSelectTeamText": "presiona ${BUTTONS} para seleccionar un equipo", + "promoCodeWindow": { + "codeText": "Código", + "enterText": "Ingresar" + }, + "promoSubmitErrorText": "Error al enviar código; comprueba tu conexión a Internet", + "ps3ControllersWindow": { + "macInstructionsText": "Apaga tu PS3, asegúrate que el Bluetooth esté activado en\ntu Mac, a continuación, conecta el control a tu Mac a través \nde un cable USB para sincronizarlo. A partir de entonces, se \npuede utilizar el botón de inicio del control para conectarlo con\ntu Mac ya sea por cable (USB) o el modo inalámbrico (Bluetooth).\n\nEn algunas Macs es posible que te pida una contraseña al momento de sincronizar.\nSi esto ocurre, consulta el siguiente tutorial o busca en Google para obtener ayuda.\n\n\n\n\nLos controles de PS3 conectados inalámbricamente deberían de aparecer en la lista de\ndispositivos en Preferencias del Sistema->Bluetooth. Puede que tengas que eliminarlos\nde esa lista cuando quieras utilizarlos de nuevo con tu PS3.\n\nAsimismo, asegúrate de desconectarlos del Bluetooth cuando no los estés\nusando o las baterías se queden sin energía.\n\nEl Bluetooth puede soportat hasta 7 dispositivos,\naunque tu kilometraje puede variar.", + "ouyaInstructionsText": "Para usar un control de PS3 con tu OUYA, tienes que conectarlo una sola vez con\nun cable USB para sincronizarlo. Al hacer esto se pueden desconectar tus otros \ncontroles, por lo que debes reiniciar tu OUYA y desconectar el cable USB.\n\nA partir de entonces deberías ser capaz de usar el botón INICIO para conectarte de\nforma inalámbrica. Cuando hayas terminado de jugar, mantén pulsado el botón INICIO\ndurante 10 segundos para apagar el control, de lo contrario puede permanecer encendido\ny gastar las baterías.", + "pairingTutorialText": "sincronizando video tutorial", + "titleText": "Para usar Controles de PS3 con ${APP_NAME}:" + }, + "punchBoldText": "GOLPEAR", + "punchText": "Golpear", + "purchaseForText": "Comprar por ${PRICE}", + "purchaseGameText": "Comprar Juego", + "purchaseNeverAvailableText": "Lo siento, las compras no están disponibles en esta build.\nIntenta iniciar sesión en otra plataforma y realizar compras desde ahí.", + "purchaseNotAvailableText": "Esta compra no está disponible.", + "purchasingText": "Comprando...", + "quitGameText": "¿Salir de ${APP_NAME}?", + "quittingIn5SecondsText": "Saliendo en 5 segundos...", + "randomPlayerNamesText": "Pablo, Cristiano, Fulanito, Macondo, Margarita, Martín, Martina, Fabian, Felipe, Franco, Fernando, Pancho, Pepito, David, Diego, Tomás, Andres, Federico, Juan, Joaquín, Huevo Duro, Chico Pobre, Chico Rico", + "randomText": "Generar", + "rankText": "Rango", + "ratingText": "Valoración", + "reachWave2Text": "Llega hasta la segunda horda\npara clasificar.", + "readyText": "listo", + "recentText": "Reciente", + "remoteAppInfoShortText": "${APP_NAME} es más divertido cuando se juega con la familia y amigos.\nConecta uno o más controles de hardware o instala la app\n${REMOTE_APP_NAME} en los teléfonos o tabletas para usarlos\ncomo controles.", + "remote_app": { + "app_name": "Control Remoto BombSquad", + "app_name_short": "BSRemoto", + "button_position": "Posición de Los Botones", + "button_size": "Tamaño de Los Botones", + "cant_resolve_host": "No se encuentra el anfitrión.", + "capturing": "Captando...", + "connected": "Conectado.", + "description": "Usa tu teléfono o tableta como control para BombSquad.\nHasta 8 dispositivos pueden conectarse a la vez para un épico caos de multijugador local en un solo TV o tableta.", + "disconnected": "Desconectado por el servidor.", + "dpad_fixed": "fijo", + "dpad_floating": "flotante", + "dpad_position": "Posición del D-Pad", + "dpad_size": "Tamaño del D-Pad", + "dpad_type": "Tipo de D-Pad", + "enter_an_address": "Ingresa una Dirección", + "game_full": "El juego está lleno o no acepta conexiones.", + "game_shut_down": "El juego se ha cerrado.", + "hardware_buttons": "Botones del Hardware", + "join_by_address": "Unirse por Dirección...", + "lag": "Lag: ${SECONDS} segundo/s", + "reset": "Restablecer a predeterminado", + "run1": "Ejecutar 1", + "run2": "Ejecutar 2", + "searching": "Buscando partidas de BombSquad...", + "searching_caption": "Toca el nombre de la partida para unirte.\nTen en cuenta que debes estar en la misma conexión Wi-Fi de la partida.", + "start": "Empezar", + "version_mismatch": "Las versiones no coinciden.\nAsegurate que BombSquad y BombSquad Remote\nestán actualizados e intenta de nuevo." + }, + "removeInGameAdsText": "Desbloquea \"${PRO}\" en la tienda para quitar la publicidad del juego.", + "removeInGameAdsTokenPurchaseText": "OFERTA DE TIEMPO LIMITADO: Compra CUALQUIER paquete de fichas para quitar los anuncios del juego.", + "renameText": "Renombrar", + "replayEndText": "Terminar Repetición", + "replayNameDefaultText": "Repetición Último Juego", + "replayReadErrorText": "Error leyendo archivo de repetición.", + "replayRenameWarningText": "Renombra \"${REPLAY}\" después de un juego si quieres quedarte con el; o sino será reemplazado.", + "replayVersionErrorText": "Lo sentimos, esta repetición fue hecha en una\nversión diferente del juego y no se puede usar.", + "replayWatchText": "Ver Repetición", + "replayWriteErrorText": "Error creando archivo de repetición.", + "replaysText": "Repeticiones", + "reportPlayerExplanationText": "Usa este email para reportar trampas, lenguaje inapropiado u otro mal comportamiento.\nPor favor, describelo aquí abajo:", + "reportThisPlayerCheatingText": "Trampas", + "reportThisPlayerLanguageText": "Lenguaje Inapropiado", + "reportThisPlayerReasonText": "¿Qué te gustaría reportar?", + "reportThisPlayerText": "Reportar Este Jugador", + "requestingText": "Solicitando...", + "restartText": "Reiniciar", + "retryText": "Reintentar", + "revertText": "Deshacer", + "runText": "Correr", + "saveText": "Guardar", + "scanScriptsErrorText": "Error(es) escaneando script(s); Vea el registro para más detalles.", + "scanScriptsMultipleModulesNeedUpdatesText": "${PATH} y ${NUM} otro(s) módulo(s) se deberán actualizar para el api ${API}.", + "scanScriptsSingleModuleNeedsUpdatesText": "${PATH} se deberá actualizar para el api ${API}", + "scoreChallengesText": "Desafíos de Puntuación", + "scoreListUnavailableText": "La lista de puntajes no está disponible.", + "scoreText": "Puntaje", + "scoreUnits": { + "millisecondsText": "Milisegundos", + "pointsText": "Puntos", + "secondsText": "Segundos" + }, + "scoreWasText": "(era ${COUNT})", + "selectText": "Elegir", + "sendInfoDescriptionText": "Envía información del estado de la cuenta y de la aplicación al desarrollador.\nPor favor incluya su nombre o el motivo del envío.", + "seriesWinLine1PlayerText": "GANA LA", + "seriesWinLine1TeamText": "GANA LA", + "seriesWinLine1Text": "GANA LA", + "seriesWinLine2Text": "SERIE!", + "settingsWindow": { + "accountText": "Cuenta", + "advancedText": "Avanzado", + "audioText": "Audio", + "controllersText": "Controles", + "graphicsText": "Gráficos", + "playerProfilesMovedText": "Nota: Los Perfiles de Jugadores se han movido a la ventana de Cuenta en el menú principal.", + "titleText": "Ajustes" + }, + "settingsWindowAdvanced": { + "alwaysUseInternalKeyboardDescriptionText": "(un teclado en pantalla simple y amigable con controles para editar textos)", + "alwaysUseInternalKeyboardText": "Siempre usar el teclado interno", + "benchmarksText": "Rendimiento y Pruebas de Estrés", + "devToolsText": "Herramientas de Desarrollador", + "disableCameraGyroscopeMotionText": "Deshabilitar el movimiento del giroscopio de la cámara", + "disableCameraShakeText": "Deshabilitar el temblor de la cámara", + "disableThisNotice": "(puedes deshabilitar este aviso en ajustes avanzados)", + "enterPromoCodeText": "Ingresar Código", + "forTestingText": "Nota: estos datos son solo para pruebas y se reiniciarán cuando salga de la app.", + "helpTranslateText": "Las traducciones de ${APP_NAME} son un esfuerzo\napoyado por la comunidad. Si deseas aportar o corregir una\ntraducción, utiliza el siguiente enlace. ¡Gracias de antemano!", + "insecureConnectionsDescriptionText": "no es recomendado, pero quizás permita el multijugador\ndesde paises o conexiones restringidas.", + "insecureConnectionsText": "Usar conexiones inseguras", + "kickIdlePlayersText": "Expulsar a jugadores inactivos", + "kidFriendlyModeText": "Modo Niños (violencia reducida, etc).", + "languageText": "Idioma", + "moddingGuideText": "Guía de Modificación", + "moddingToolsText": "Herramientas de Modificación", + "mustRestartText": "Tienes que reiniciar el juego para que tome efecto.", + "netTestingText": "Prueba de Red", + "resetText": "Reiniciar", + "sendInfoText": "Enviar Información", + "showBombTrajectoriesText": "Mostrar Trayectorias de Las Bombas", + "showDemosWhenIdleText": "Mostrar demostraciones cuando estés inactivo", + "showDeprecatedLoginTypesText": "Mostrar tipos de inicio de sesión obsoletos", + "showDevConsoleButtonText": "Mostrar botón de consola de desarrollador", + "showInGamePingText": "Mostrar ping en el juego", + "showPlayerNamesText": "Mostrar Nombres de Los Jugadores", + "showUserModsText": "Mostrar Carpeta de Mods", + "titleText": "Avanzado", + "translationEditorButtonText": "Editor de Traducción de ${APP_NAME}", + "translationFetchErrorText": "estado de traducción no disponible", + "translationFetchingStatusText": "viendo estado de traducción...", + "translationInformMe": "Informarme cuando mi idioma necesite actualizaciones", + "translationNoUpdateNeededText": "El idioma actual está actualizado; ¡wuju!", + "translationUpdateNeededText": "** ¡¡El idioma actual necesita actualizarse!! **", + "vrTestingText": "Prueba RV" + }, + "shareText": "Compartir", + "sharingText": "Compartiendo...", + "showText": "Mostrar", + "signInForPromoCodeText": "Debes iniciar sesión con tu cuenta para que el código funcione.", + "singleGamePlaylistNameText": "Solo ${GAME}", + "singlePlayerCountText": "1 jugador", + "sizeLargeText": "Grande", + "sizeMediumText": "Mediano", + "sizeSmallText": "Pequeño", + "soloNameFilterText": "Solo ${NAME}", + "soundtrackTypeNames": { + "CharSelect": "Selección de Personajes", + "Chosen One": "El Elegido", + "Epic": "Juegos en Modo Épico", + "Epic Race": "Carrera Épica", + "FlagCatcher": "Captura la Bandera", + "Flying": "Pensamientos Felices", + "Football": "Fútbol", + "ForwardMarch": "Asalto", + "GrandRomp": "Conquista", + "Hockey": "Hockey", + "Keep Away": "Aléjate", + "Marching": "Evasiva", + "Menu": "Menú Principal", + "Onslaught": "Matanza", + "Race": "Carrera", + "Scary": "Rey de la Colina", + "Scores": "Pantalla de Puntuación", + "Survival": "Eliminación", + "ToTheDeath": "Combate Mortal", + "Victory": "Pantalla de Puntuación Final" + }, + "spaceKeyText": "espacio", + "statsText": "Estadísticas", + "stopRemindingMeText": "Deja de recordarmelo", + "storagePermissionAccessText": "Esto requiere acceso de almacenamiento", + "store": { + "alreadyOwnText": "¡Ya tienes ${NAME}!", + "bombSquadProNameText": "${APP_NAME} Pro", + "bombSquadProNewDescriptionText": "• Quita los anuncios y las pantallas molestas\n• Desbloquea más ajustes del juego\n• También incluye:", + "buyText": "Comprar", + "charactersText": "Personajes", + "comingSoonText": "Próximamente...", + "extrasText": "Extras", + "holidaySpecialText": "¡Especial de Temporada!", + "howToSwitchCharactersText": "(ve a \"${SETTINGS} -> ${PLAYER_PROFILES}\" para asignar y personalizar los personajes)", + "howToUseIconsText": "(crea perfiles globales de jugador (en la ventana de cuenta) para usarlos)", + "howToUseMapsText": "(usa estos mapas en tus listas de juegos por equipos y todos contra todos)", + "iconsText": "Iconos", + "loadErrorText": "No se pudo cargar la página.\nRevisa tu conexión a internet.", + "loadingText": "cargando", + "mapsText": "Mapas", + "miniGamesText": "MiniJuegos", + "oneTimeOnlyText": "(solo una vez)", + "purchaseAlreadyInProgressText": "Una compra de este artículo se encuentra en progreso.", + "purchaseConfirmText": "¿Comprar ${ITEM}?", + "purchaseNotValidError": "Compra inválida.\nContacte a ${EMAIL} si esto es un error.", + "purchaseText": "Comprar", + "saleBundleText": "¡Paquete en Oferta!", + "saleExclaimText": "¡Oferta!", + "salePercentText": "(${PERCENT}% menos)", + "saleText": "OFERTA", + "searchText": "Buscar", + "teamsFreeForAllGamesText": "Juegos de Equipos / Todos contra Todos", + "totalWorthText": "*** ¡${TOTAL_WORTH} de valor! ***", + "upgradeQuestionText": "¿Mejorar?", + "winterSpecialText": "Especial de Invierno", + "youOwnThisText": "- ya posees esto -" + }, + "storeDescriptionText": "¡Juego de locura de a 8 Jugadores!\n\n¡Revienta a tus amigos (o a la computadora) en un torneo de mini-juegos explosivos como Captura la Bandera, Hockey-Bomba y Combate Mortal Épico en cámara lenta!\n\nControles sencillos y un amplio soporte de controles hacen que sea fácil que 8 personas entren en la acción; ¡incluso puedes usar tus dispositivos móviles como controles a través de la aplicación gratuita de 'Control Remoto BombSquad'!\n\n¡Fuera Bombas!\n\nEcha un vistazo en: www.froemling.net/bombsquad para más información.", + "storeDescriptions": { + "blowUpYourFriendsText": "Revienta a tus amigos.", + "competeInMiniGamesText": "Compite en minijuegos de carreras, vuelo y mucho más.", + "customize2Text": "Personaliza personajes, minijuegos e incluso la banda sonora.", + "customizeText": "Personaliza tus personajes y crea tus propias listas de minijuegos.", + "sportsMoreFunText": "Los deportes son más divertidos con explosivos.", + "teamUpAgainstComputerText": "Forma un equipo contra la computadora." + }, + "storeText": "Tienda", + "submitText": "Enviar", + "submittingPromoCodeText": "Enviando Código...", + "successText": "¡Éxito!", + "supportEmailText": "Si estás teniendo algún problema con la\napp, por favor, manda un email a ${EMAIL}.", + "teamNamesColorText": "Nombres de Equipos/Colores...", + "telnetAccessGrantedText": "Esta versión de prueba ya no está activa; busca una versión nueva.", + "telnetAccessText": "Acceso a Telnet detectado; ¿permitir?", + "testBuildErrorText": "Esta versión de prueba ya no es activa; busca una versión más nueva.", + "testBuildText": "Compilación de Prueba", + "testBuildValidateErrorText": "Incapaz de validar esta compilación de prueba. (¿no tienes conexión a internet?)", + "testBuildValidatedText": "Compilación de Prueba Validada; ¡Disfruta!", + "thankYouText": "¡Gracias por tu ayuda! ¡¡Disfruta el juego!!", + "threeKillText": "¡¡COMBO TRIPLE!!", + "ticketsDescriptionText": "Los tickets pueden ser usados para desbloquear\npersonajes, mapas, minijuegos y más en la tienda.\n\nLos tickets pueden ser encontrados en los cofres\nganados a través de la campaña, torneos y logros.", + "timeBonusText": "Bono de Tiempo", + "timeElapsedText": "Tiempo Transcurrido", + "timeExpiredText": "Tiempo Expirado", + "timeSuffixDaysText": "${COUNT}d", + "timeSuffixHoursText": "${COUNT}h", + "timeSuffixMinutesText": "${COUNT}m", + "timeSuffixSecondsText": "${COUNT}s", + "tipText": "Consejo", + "titleText": "BombSquad", + "titleVRText": "BombSquad RV", + "tokens": { + "getTokensText": "Obtén Fichas", + "notEnoughTokensText": "¡Fichas insuficientes!", + "numTokensText": "${COUNT} Fichas", + "openNowDescriptionText": "Tienes suficiente fichas para \nabrir esto ahora - no tienes\nque esperar.", + "shinyNewCurrencyText": "La brillante nueva moneda de BombSquad.", + "tokenPack1Text": "Paquete de Fichas Pequeña", + "tokenPack2Text": "Paquete de Fichas Mediana", + "tokenPack3Text": "Paquete de Fichas Grande", + "tokenPack4Text": "Paquete de Fichas Jumbo", + "tokensDescriptionText": "Los tokens son usados para acelerar el desbloqueo de\ncofres entre otras funciones del juego y la cuenta.\n\nPuedes ganar fichas en el juego o comprarlas\nen paquetes. O comprar el Pase de Oro para tokens \ninfinitos y nunca más escuchar de ellos de nuevo.", + "youHaveGoldPassText": "Tienes un Pase de Oro.\nTodas las compras de fichas son gratis.\nDisfruta!" + }, + "topFriendsText": "Mejores Amigos", + "tournamentCheckingStateText": "Buscando estado del campeonato; espere por favor...", + "tournamentEndedText": "Este torneo ha acabado. Uno nuevo comenzará pronto.", + "tournamentEntryText": "Entrada Al Torneo", + "tournamentFinalStandingsText": "Clasificación Final", + "tournamentResultsRecentText": "Resultados de Torneos Recientes", + "tournamentStandingsText": "Puestos del Torneo", + "tournamentText": "Torneo", + "tournamentTimeExpiredText": "Tiempo del Torneo Expirado", + "tournamentsDisabledWorkspaceText": "Los torneos están deshabilitados cuando los espacios de trabajo están activos.\nPara volver a habilitar los torneos, deshabilite su espacio de trabajo y reinicie el juego.", + "tournamentsText": "Torneos", + "translations": { + "characterNames": { + "Agent Johnson": "Agente Johnson", + "B-9000": "B-9000", + "Bernard": "Bernard", + "Bones": "Huesos", + "Butch": "Butch", + "Easter Bunny": "Conejo de Pascua", + "Flopsy": "Flopsy", + "Frosty": "Frosty", + "Gretel": "Gretel", + "Grumbledorf": "Grumbledorf", + "Jack Morgan": "Jack Morgan", + "Kronk": "Kronk", + "Lee": "Lee", + "Lucky": "Suertudo", + "Mel": "Mel", + "Middle-Man": "Hombre Intermedio", + "Minimus": "Minimus", + "Pascal": "Pascal", + "Pixel": "Pixel", + "Sammy Slam": "Sammy Slam", + "Santa Claus": "Papá Noel", + "Snake Shadow": "Serpiente Sombría", + "Spaz": "Spaz", + "Taobao Mascot": "Taobao", + "Todd McBurton": "Todd McBurton", + "Zoe": "Zoe", + "Zola": "Zola" + }, + "coopLevelNames": { + "${GAME} Training": "Entrenamiento de ${GAME}", + "Infinite ${GAME}": "${GAME} Infinito", + "Infinite Onslaught": "Matanza Infinita", + "Infinite Runaround": "Evasiva Infinita", + "Onslaught Training": "Entrenamiento de Matanza", + "Pro ${GAME}": "${GAME} Pro", + "Pro Football": "Fútbol Pro", + "Pro Onslaught": "Matanza Pro", + "Pro Runaround": "Evasiva Pro", + "Rookie ${GAME}": "${GAME} Novato", + "Rookie Football": "Fútbol Novato", + "Rookie Onslaught": "Matanza Novato", + "The Last Stand": "La Batalla Final", + "Uber ${GAME}": "${GAME} Ultra", + "Uber Football": "Fútbol Ultra", + "Uber Onslaught": "Matanza Ultra", + "Uber Runaround": "Evasiva Ultra" + }, + "displayItemNames": { + "${C} Tickets": "${C} Boletos", + "${C} Tokens": "${C} Ficha(s)", + "Chest": "Cofre", + "L1 Chest": "Cofre N1", + "L2 Chest": "Cofre N2", + "L3 Chest": "Cofre N3", + "L4 Chest": "Cofre N4", + "L5 Chest": "Cofre N5", + "L6 Chest": "Cofre N6", + "Unknown Chest": "Cofre Desconocido" + }, + "gameDescriptions": { + "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Sé el elegido durante el tiempo designado para ganar.\nMata al elegido para convertirte en él.", + "Bomb as many targets as you can.": "Bombardea tantos blancos como puedas.", + "Carry the flag for ${ARG1} seconds.": "Carga la bandera por ${ARG1} segundos.", + "Carry the flag for a set length of time.": "Carga la bandera por un determinado tiempo.", + "Crush ${ARG1} of your enemies.": "Elimina ${ARG1} de tus enemigos.", + "Defeat all enemies.": "Acaba con todo lo que se mueva.", + "Dodge the falling bombs.": "Esquiva las bombas.", + "Final glorious epic slow motion battle to the death.": "Gloriosa batalla final en épica cámara lenta hasta la muerte.", + "Gather eggs!": "¡Recolecta huevos!", + "Get the flag to the enemy end zone.": "Lleva la bandera enemiga a tu zona.", + "How fast can you defeat the ninjas?": "¿Cuán rápido puedes derrotar a los ninjas?", + "Kill a set number of enemies to win.": "Mata a un número determinado de enemigos para ganar.", + "Last one standing wins.": "El último en pie gana.", + "Last remaining alive wins.": "El último en quedar vivo gana.", + "Last team standing wins.": "El último equipo en pie gana.", + "Prevent enemies from reaching the exit.": "Evita que los enemigos lleguen a la salida.", + "Reach the enemy flag to score.": "Toca la bandera enemiga para anotar.", + "Return the enemy flag to score.": "Devuelve la bandera enemiga para anotar.", + "Run ${ARG1} laps.": "Corre ${ARG1} vueltas.", + "Run ${ARG1} laps. Your entire team has to finish.": "Corre ${ARG1} vueltas. Todo tu equipo debe cruzar la meta.", + "Run 1 lap.": "Corre 1 vuelta.", + "Run 1 lap. Your entire team has to finish.": "Corre 1 vuelta. Todo tu equipo debe cruzar la meta.", + "Run real fast!": "¡Corre muy rápido!", + "Score ${ARG1} goals.": "Anota ${ARG1} goles.", + "Score ${ARG1} touchdowns.": "Anota ${ARG1} touchdowns.", + "Score a goal.": "Anota un gol.", + "Score a touchdown.": "Anota un touchdown.", + "Score some goals.": "Anota unos goles.", + "Secure all ${ARG1} flags.": "Asegura las ${ARG1} banderas.", + "Secure all flags on the map to win.": "Asegura todas las banderas en el mapa para ganar.", + "Secure the flag for ${ARG1} seconds.": "Asegura la bandera por ${ARG1} segundos.", + "Secure the flag for a set length of time.": "Asegura la bandera por un tiempo determinado.", + "Steal the enemy flag ${ARG1} times.": "Roba la bandera enemiga ${ARG1} veces.", + "Steal the enemy flag.": "Roba la bandera enemiga.", + "There can be only one.": "Solo puede haber uno.", + "Touch the enemy flag ${ARG1} times.": "Toca la bandera enemiga ${ARG1} veces.", + "Touch the enemy flag.": "Toca la bandera enemiga.", + "carry the flag for ${ARG1} seconds": "carga la bandera por ${ARG1} segundos.", + "kill ${ARG1} enemies": "mata a ${ARG1} enemigos", + "last one standing wins": "el último en pie gana", + "last team standing wins": "el último equipo en pie gana", + "return ${ARG1} flags": "devuelve ${ARG1} banderas", + "return 1 flag": "devuelve 1 bandera", + "run ${ARG1} laps": "corre ${ARG1} vueltas", + "run 1 lap": "corre 1 vuelta", + "score ${ARG1} goals": "anota ${ARG1} goles", + "score ${ARG1} touchdowns": "anota ${ARG1} touchdowns", + "score a goal": "anota un gol", + "score a touchdown": "anota un touchdown", + "secure all ${ARG1} flags": "asegura las ${ARG1} banderas", + "secure the flag for ${ARG1} seconds": "asegura la bandera por ${ARG1} segundos", + "touch ${ARG1} flags": "toca ${ARG1} banderas", + "touch 1 flag": "toca 1 bandera" + }, + "gameNames": { + "Assault": "Asalto", + "Capture the Flag": "Captura la Bandera", + "Chosen One": "El Elegido", + "Conquest": "Conquista", + "Death Match": "Combate Mortal", + "Easter Egg Hunt": "Búsqueda de Huevos de Pascua", + "Elimination": "Eliminación", + "Football": "Fútbol", + "Hockey": "Hockey", + "Keep Away": "Aléjate", + "King of the Hill": "Rey de la Colina", + "Meteor Shower": "Lluvia de Meteoritos", + "Ninja Fight": "Pelea Ninja", + "Onslaught": "Matanza", + "Race": "Carrera", + "Runaround": "Evasiva", + "Target Practice": "Blanco de Práctica", + "The Last Stand": "La Batalla Final" + }, + "inputDeviceNames": { + "Keyboard": "Teclado", + "Keyboard P2": "Teclado P2" + }, + "languages": { + "Arabic": "Árabe", + "Belarussian": "Bielorruso", + "Chinese": "Chino - Simplificado ", + "ChineseSimplified": "Chino Simplificado", + "ChineseTraditional": "Chino Tradicional (Zhōngwén)", + "Croatian": "Croata", + "Czech": "Checo", + "Danish": "Danés", + "Dutch": "Holandés", + "English": "Inglés", + "Esperanto": "Esperanto", + "Filipino": "Filipino", + "Finnish": "Finlandés", + "French": "Francés", + "German": "Alemán", + "Gibberish": "Algarabía", + "Greek": "Griego", + "Hindi": "Hindi", + "Hungarian": "Húngaro", + "Indonesian": "Indonesio", + "Italian": "Italiano", + "Japanese": "Japonés", + "Korean": "Coreano", + "Malay": "Malayo", + "Persian": "Persa", + "PirateSpeak": "Habla Pirata", + "Polish": "Polaco", + "Portuguese": "Portugués", + "PortugueseBrazil": "Portugués - Brazil", + "PortuguesePortugal": "Portugués - Portugal", + "Romanian": "Rumano", + "Russian": "Ruso", + "Serbian": "Serbio", + "Slovak": "Eslovaco", + "Spanish": "Español", + "SpanishLatinAmerica": "Español - Latinoamerica", + "SpanishSpain": "Español - España", + "Swedish": "Sueco", + "Tamil": "Tamil", + "Thai": "Tailandés", + "Turkish": "Turco", + "Ukrainian": "Ucraniano", + "Venetian": "Veneciano", + "Vietnamese": "Vietnamita" + }, + "leagueNames": { + "Bronze": "Bronce", + "Diamond": "Diamante", + "Gold": "Oro", + "Silver": "Plata" + }, + "mapsNames": { + "Big G": "Gran G", + "Bridgit": "Puentecito", + "Courtyard": "Patio Real", + "Crag Castle": "Castillo del Risco", + "Doom Shroom": "Hongo de La Muerte", + "Football Stadium": "Estadio de Fútbol", + "Happy Thoughts": "Pensamientos Felices", + "Hockey Stadium": "Estadio de Hockey", + "Lake Frigid": "Lago Frígido", + "Monkey Face": "Cara de Mono", + "Rampage": "Medio Tubo", + "Roundabout": "Rotonda", + "Step Right Up": "Paso Al Frente", + "The Pad": "La Plataforma", + "Tip Top": "Punta Superior", + "Tower D": "Torre D", + "Zigzag": "Zigzag" + }, + "playlistNames": { + "Just Epic": "Solo Épico", + "Just Sports": "Solo Deportes" + }, + "scoreNames": { + "Flags": "Banderas", + "Goals": "Goles", + "Score": "Puntaje", + "Survived": "Sobrevivió", + "Time": "Tiempo", + "Time Held": "Tiempo Mantenido" + }, + "serverResponses": { + "A code has already been used on this account.": "Este código ya ha sido usado en esta cuenta.", + "A reward has already been given for that address.": "Ya se le ha dado una recompensa a esa dirección.", + "Account linking successful!": "¡Vinculación de cuenta exitosa!", + "Account unlinking successful!": "¡Desvinculación de cuenta exitosa!", + "Accounts are already linked.": "Las cuentas ya están vinculadas.", + "Ad view could not be verified.\nPlease be sure you are running an official and up-to-date version of the game.": "No se pudo verificar la vista del anuncio. \nPor favor asegúrese de estar ejecutando una versión oficial y actualizada del juego.", + "An error has occurred; (${ERROR})": "Un error ha ocurrido; (${ERROR})", + "An error has occurred; please contact support. (${ERROR})": "Un error ha ocurrido; por favor contacte al soporte. (${ERROR})", + "An error has occurred; please contact support@froemling.net.": "Un error ha ocurrido; por favor contacta a support@froemling.net.", + "An error has occurred; please try again later.": "Un error ha ocurrido; por favor intentalo más tarde.", + "Are you sure you want to link these accounts?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\nThis cannot be undone!": "¿Quieres vincular estas cuentas?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\n¡Esto no se puede deshacer!", + "BombSquad Pro unlocked!": "¡BombSquad Pro desbloqueado!", + "Can't link 2 accounts of this type.": "No se pueden vincular 2 cuentas de este tipo.", + "Can't link 2 diamond league accounts.": "No se pueden vincular 2 cuentas de liga diamante.", + "Can't link; would surpass maximum of ${COUNT} linked accounts.": "No se pudo vincular; sobrepasaría el máximo de cuentas vinculadas de ${COUNT}.", + "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Trampa detectada; puntajes y premios suspendidos por ${COUNT} días.", + "Could not establish a secure connection.": "No se pudo establecer una conexión segura.", + "Daily maximum reached.": "Máximo diario conseguido.", + "Daily sign-in reward": "Recompensa por iniciar sesión diariamente", + "Entering tournament...": "Entrando al torneo...", + "Invalid code.": "Código inválido.", + "Invalid payment; purchase canceled.": "Pago inválido; compra cancelada.", + "Invalid promo code.": "Código promocional inválido.", + "Invalid purchase.": "Compra inválida.", + "Invalid tournament entry; score will be ignored.": "Entrada de torneo inválida; el puntaje será ignorado.", + "Item unlocked!": "¡Artículo desbloqueado!", + "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "VINCULACIÓN DENEGADA. ${ACCOUNT} contiene\ndatos significativos que podrían PERDERSE EN SU TOTALIDAD.\nPuedes vincular en el orden opuesto si lo desea\n(y pierda los datos de ESTA cuenta en su lugar)", + "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "¿Vincular ${ACCOUNT} a esta cuenta?\nTodos los datos en ${ACCOUNT} desaparecerán.\nEsto no se puede deshacer. ¿Estás seguro?", + "Longer streaks lead to better rewards.": "Rachas mayores significan Mejores recompensas.", + "Max number of playlists reached.": "Número máximo de listas de juegos alcanzado.", + "Max number of profiles reached.": "Número máximo de perfiles alcanzado.", + "Maximum friend code rewards reached.": "Máximo de premios por códigos de amigos alcanzado.", + "Message is too long.": "El mensaje es muy largo.", + "New tournament result!": "¡Nuevo resultado del torneo!", + "No servers are available. Please try again soon.": "Sin servidores disponibles. Por favor inténtelo de nuevo más tarde.", + "No slots available. Free a slot and try again.": "No hay ranuras libres. Libere una e intentélo de nuevo.", + "Profile \"${NAME}\" upgraded successfully.": "El perfil \"${NAME}\" se ha mejorado satisfactoriamente.", + "Profile could not be upgraded.": "El perfil no pudo ser mejorado.", + "Purchase successful!": "¡Compra exitosa!", + "Received ${COUNT} tickets for signing in.\nCome back tomorrow to receive ${TOMORROW_COUNT}.": "Has recibido ${COUNT} boletos por iniciar sesión.\nRegresa mañana para recibir ${TOMORROW_COUNT} boletos.", + "Server functionality is no longer supported in this version of the game;\nPlease update to a newer version.": "La funcionalidad del servidor ya no es compatible en esta versión del juego;\nActualiza a una versión más reciente.", + "Sorry, there are no uses remaining on this code.": "Disculpe, pero no quedan usos disponibles de este código.", + "Sorry, this code has already been used.": "Disculpe, este código ya ha sido usado.", + "Sorry, this code has expired.": "Disculpe, este código ha expirado.", + "Sorry, this code only works for new accounts.": "Disculpe, este código solo funciona para cuentas nuevas.", + "Sorry, this has expired.": "Disculpe, esto ya ha expirado.", + "Still searching for nearby servers; please try again soon.": "Todavía buscando por servidores cercanos; inténtelo de nuevo más tarde.", + "Streak: ${NUM} days": "Racha de: ${NUM} días", + "Temporarily unavailable; please try again later.": "Temporalmente indisponible; por favor inténtalo más tarde.", + "The tournament ended before you finished.": "El torneo terminó antes de que terminaras.", + "This account cannot be unlinked for ${NUM} days.": "Esta cuenta no puede ser desvinculada por ${NUM} día(s).", + "This code cannot be used on the account that created it.": "Este código no puede ser usado en la misma cuenta que ha sido creado.", + "This is currently unavailable; please try again later.": "Esto no está disponible actualmente; por favor inténtelo más tarde.", + "This requires version ${VERSION} or newer.": "Esto requiere la versión ${VERSION} o una más reciente.", + "Tournaments disabled due to rooted device.": "Los torneos han sido deshabilitados debido a que tú dispositivo esta rooteado.", + "Tournaments require ${VERSION} or newer": "Los torneos requieren la versión ${VERSION} o más nueva", + "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "¿Desvincular ${ACCOUNT} de esta cuenta?\nTodos los datos en ${ACCOUNT} se reiniciarán.\n(excepto los logros en algunos casos)", + "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "ADVERTENCIA: Se han emitido reclamaciones de hackeos contra tu cuenta.\nLas cuentas que se encuentren hackeando serán baneadas. Por favor juega limpio.", + "Wait reduced!": "Espera reducida!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "Advertencia: Esta versión del juego está limitada a los datos de cuenta antiguos; es posible que falten datos o que estén desactualizados.\nPor favor actualiza a una versión más reciente del juego para ver los datos más recientes de tu cuenta.", + "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "¿Quieres vincular tu cuenta de dispositivo a esta otra?\n\nTu cuenta de dispositivo es ${ACCOUNT1}\nEsta cuenta es ${ACCOUNT2}\n\nEsto permitirá guardar tu progreso actual.\nAdvertencia: ¡Esto no se puede deshacer!", + "You already own this!": "¡Ya posees esto!", + "You can join in ${COUNT} seconds.": "Puedes unirte en ${COUNT} segundo(s).", + "You don't have enough tickets for this!": "¡No tienes suficientes boletos para esto!", + "You don't own that.": "No posees eso.", + "You got ${COUNT} tickets!": "¡Obtuviste ${COUNT} boletos!", + "You got ${COUNT} tokens!": "¡Obtuviste ${COUNT} ficha(s)!", + "You got a ${ITEM}!": "¡Conseguiste un ${ITEM}!", + "You got a chest!": "¡Obtuviste un cofre!", + "You got an achievement reward!": "¡Obtuviste una recompensa por tu logro!", + "You have been promoted to a new league; congratulations!": "Has sido ascendido a una nueva liga; ¡felicitaciones!", + "You lost a chest! (All your chest slots were full)": "¡Perdiste un cofre! (Todas tus ranuras de cofres estaban llenas).", + "You must update the app to view this.": "Debes actualizar la aplicación para ver esto.", + "You must update to a newer version of the app to do this.": "Debes actualizar la aplicación a una versión más reciente para hacer esto.", + "You must update to the newest version of the game to do this.": "Necesitas actualizar a la versión más reciente del juego para hacer esto.", + "You must wait a few seconds before entering a new code.": "Debes esperar unos segundos antes de ingresar un código nuevo.", + "You placed #${RANK} in a tournament!": "Quedaste en el puesto #${RANK} en un torneo!", + "You ranked #${RANK} in the last tournament. Thanks for playing!": "Quedaste en la posición #${RANK} en el campeonato. ¡Gracias por jugar!", + "Your account was rejected. Are you signed in?": "Tu cuenta fue rechazada. ¿Estás registrado?", + "Your ad views are not registering. Ad options will be limited for a while.": "Tus vistas de anuncios no se están registrando. Las opciones de anuncios serán limitadas por un tiempo.", + "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Tu copia del juego fue modificada.\nPor favor revierte estos cambios e intenta de nuevo.", + "Your friend code was used by ${ACCOUNT}": "Tu código de amigo fue usado por ${ACCOUNT}" + }, + "settingNames": { + "1 Minute": "1 Minuto", + "1 Second": "1 Segundo", + "10 Minutes": "10 Minutos", + "2 Minutes": "2 Minutos", + "2 Seconds": "2 Segundos", + "20 Minutes": "20 Minutos", + "4 Seconds": "4 Segundos", + "5 Minutes": "5 Minutos", + "8 Seconds": "8 Segundos", + "Allow Negative Scores": "Permitir Puntajes Negativos", + "Balance Total Lives": "Repartir Vidas Totales", + "Bomb Spawning": "Aparecer Bombas", + "Chosen One Gets Gloves": "El Elegido Consigue Guantes de Boxeo", + "Chosen One Gets Shield": "El Elegido Consigue Electro-Escudo", + "Chosen One Time": "Tiempo del Elegido", + "Enable Impact Bombs": "Habilitar Insta-Bombas", + "Enable Triple Bombs": "Habilitar Bombas Triples", + "Entire Team Must Finish": "Todo el Equipo Debe Terminar", + "Epic Mode": "Modo Épico", + "Flag Idle Return Time": "Tiempo de Retorno de Bandera Inactiva", + "Flag Touch Return Time": "Retorno de Bandera con Toque", + "Hold Time": "Retención", + "Kills to Win Per Player": "Asesinatos para Ganar Por Jugador", + "Laps": "Vueltas", + "Lives Per Player": "Vidas Por Jugador", + "Long": "Largo", + "Longer": "Más Largo", + "Mine Spawning": "Aparecer Minas", + "No Mines": "Sin Minas", + "None": "Ninguno", + "Normal": "Normal", + "Pro Mode": "Modo Pro", + "Respawn Times": "Tiempo de Reaparición", + "Score to Win": "Puntos para Ganar", + "Short": "Corto", + "Shorter": "Más Corto", + "Solo Mode": "Modo Solitario", + "Target Count": "Número de Objetivos", + "Time Limit": "Límite de Tiempo" + }, + "statements": { + "${TEAM} is disqualified because ${PLAYER} left": "${TEAM} ha sido descalificado porque ${PLAYER} se ha ido", + "Killing ${NAME} for skipping part of the track!": "¡${NAME} Murió por saltarse un pedazo de la pista!", + "Warning to ${NAME}: turbo / button-spamming knocks you out.": "Advertencia para ${NAME}: turbo / spam de botones te noqueará." + }, + "teamNames": { + "Bad Guys": "Chicos Malos", + "Blue": "Azul", + "Good Guys": "Chicos Buenos", + "Red": "Rojo" + }, + "tips": { + "A perfectly timed running-jumping-spin-punch can kill in a single hit\nand earn you lifelong respect from your friends.": "Un corre-salta-gira-golpea perfecto puede destrozar de un solo impacto\ny ganarte el respeto de tus amigos para toda la vida.", + "Always remember to floss.": "Siempre acuérdate de cepillar tus dientes.", + "Create player profiles for yourself and your friends with\nyour preferred names and appearances instead of using random ones.": "Crea perfiles para \ntu y tus amigos \ncon \ntus nombres preferidos y\napariencias en vez de usar unos aleatorios.", + "Curse boxes turn you into a ticking time bomb.\nThe only cure is to quickly grab a health-pack.": "Las cajas de maldición te convierten en una bomba de tiempo.\nLa única cura es agarrar rápidamente un botiquín.", + "Despite their looks, all characters' abilities are identical,\nso just pick whichever one you most closely resemble.": "A pesar de sus apariencias, las habilidades de todos los personajes\nson idénticas, así que escoge el que más te guste a ti.", + "Don't get too cocky with that energy shield; you can still get yourself thrown off a cliff.": "No eres invencible con ese electro-escudo; todavía puedes caerte de un acantilado.", + "Don't run all the time. Really. You will fall off cliffs.": "No corras todo el tiempo. En serio. Te vas a caer.", + "Don't spin for too long; you'll become dizzy and fall.": "No gires por un largo tiempo; puedes marearte y caer.", + "Hold any button to run. (Trigger buttons work well if you have them)": "Mantén cualquier botón para correr. (Los gatillos son para eso si los tienes)", + "Hold down any button to run. You'll get places faster\nbut won't turn very well, so watch out for cliffs.": "Mantén presionado cualquier botón para correr. Llegarás a lugares más rápido\npero no girarás muy bien, así que cuidado con los acantilados.", + "Ice bombs are not very powerful, but they freeze\nwhoever they hit, leaving them vulnerable to shattering.": "Las Bombas de Hielo no son muy potentes, pero congelan lo\nque toquen, dejando a tus enemigos vulnerables a romperse.", + "If someone picks you up, punch them and they'll let go.\nThis works in real life too.": "Si alguien te recoge, dale un golpe y te soltará.\nTambién funciona en la vida real.", + "If you are short on controllers, install the '${REMOTE_APP_NAME}' app\non your mobile devices to use them as controllers.": "Si no tienes suficientes controles, instala la aplicación '${REMOTE_APP_NAME}'\nen tus dispositivos móviles para usarlos como controles.", + "If you get a sticky-bomb stuck to you, jump around and spin in circles. You might\nshake the bomb off, or if nothing else your last moments will be entertaining.": "Si te adhieres a una bomba pegajosa, salta y da muchas vueltas. Es posible que sacudas\nla bomba pegada o sin nada más tus últimos momentos serán entretenidos.", + "If you kill an enemy in one hit you get double points for it.": "Si matas a un enemigo de un solo golpe obtendrás puntos dobles.", + "If you pick up a curse, your only hope for survival is to\nfind a health powerup in the next few seconds.": "Si tomaste una maldición, tu única esperanza es\nencontrar un botiquín en tus últimos segundos.", + "If you stay in one place, you're toast. Run and dodge to survive..": "Si te quedas quieto, estás frito. Corre y esquiva para sobrevivir...", + "If you've got lots of players coming and going, turn on 'auto-kick-idle-players'\nunder settings in case anyone forgets to leave the game.": "Si tienes muchos jugadores yendo y viniendo, activa 'expulsar jugadores inactivos'\nen ajustes en caso de que alguien se olvide de abandonar el juego.", + "If your device gets too warm or you'd like to conserve battery power,\nturn down \"Visuals\" or \"Resolution\" in Settings->Graphics": "Si tu dispositivo se pone caliente o te gustaría conservar batería,\nbaja los \"Visuales\" o la \"Resolución\" en Ajustes->Gráficos", + "If your framerate is choppy, try turning down resolution\nor visuals in the game's graphics settings.": "Si la imagen va lenta, intenta reducir la resolución\no los visuales en los ajustes gráficos del juego.", + "In Capture-the-Flag, your own flag must be at your base to score, If the other\nteam is about to score, stealing their flag can be a good way to stop them.": "En Captura la Bandera, la bandera tuya debe estar en tu base para que anotes.\nSi el otro equipo está a punto de anotar, robar su bandera evitará que anoten.", + "In hockey, you'll maintain more speed if you turn gradually.": "En hockey, mantendrás tu impulso si giras gradualmente.", + "It's easier to win with a friend or two helping.": "Es más fácil ganar con un amigo o dos ayudando.", + "Jump just as you're throwing to get bombs up to the highest levels.": "Salta antes de tirar una bomba para que alcance lugares altos.", + "Land-mines are a good way to stop speedy enemies.": "Las minas terrestres son una buena manera para detener enemigos veloces.", + "Many things can be picked up and thrown, including other players. Tossing\nyour enemies off cliffs can be an effective and emotionally fulfilling strategy.": "Muchas cosas se pueden recoger y lanzar, incluyendo a otros jugadores.\nArroja a tus enemigos por los precipicios. Te sentirás mejor.", + "No, you can't get up on the ledge. You have to throw bombs.": "No, no puedes subir a la cornisa. Tienes que lanzar bombas.", + "Players can join and leave in the middle of most games,\nand you can also plug and unplug controllers on the fly.": "Los jugadores pueden unirse e irse en medio de casi todos los juegos,\ntambién puedes conectar o quitar controles en cualquier momento.", + "Practice using your momentum to throw bombs more accurately.": "Practica usando tu impulso para tirar bombas con más precisión.", + "Punches do more damage the faster your fists are moving,\nso try running, jumping, and spinning like crazy.": "Los golpes hacen más daño cuanto más rápido se mueven tus puños,\nasí que intenta correr, saltar y girar como un loco.", + "Run back and forth before throwing a bomb\nto 'whiplash' it and throw it farther.": "Corre de un lado a otro antes de lanzar una\nbomba para 'latiguearla' y lanzarla lejos.", + "Take out a group of enemies by\nsetting off a bomb near a TNT box.": "Elimina un gran cantidad de enemigos\nal detonar una bomba cerca de una caja TNT.", + "The head is the most vulnerable area, so a sticky-bomb\nto the noggin usually means game-over.": "La cabeza es la zona más vulnerable, una bomba pegajosa\na la cabeza usualmente significa game-over.", + "This level never ends, but a high score here\nwill earn you eternal respect throughout the world.": "Este nivel no tiene fin, pero un alto puntaje aquí\nte hará ganar el respeto eterno por todo el mundo.", + "Throw strength is based on the direction you are holding.\nTo toss something gently in front of you, don't hold any direction.": "La fuerza de tiro se basa en la dirección que estás sosteniendo.\nPara arrojar algo justo delante de ti, no sostengas ninguna dirección.", + "Tired of the soundtrack? Replace it with your own!\nSee Settings->Audio->Soundtrack": "¿Cansado de la pista de audio? ¡Reemplázala con tu música!\nVe a Ajustes->Audio->Banda Sonora", + "Try 'Cooking off' bombs for a second or two before throwing them.": "Intenta 'Cocinar' bombas por un segundo o dos antes de tirarlas.", + "Try tricking enemies into killing eachother or running off cliffs.": "Engaña a tus enemigos para que se eliminen entre sí o para que corran a los acantilados.", + "Use the pick-up button to grab the flag < ${PICKUP} >": "Usa el botón de 'recoger' para agarrar la bandera < ${PICKUP} >", + "Whip back and forth to get more distance on your throws..": "Azota de un lado a otro para conseguir más distancia en tus tiros.", + "You can 'aim' your punches by spinning left or right.\nThis is useful for knocking bad guys off edges or scoring in hockey.": "Puedes 'dirigir' tus golpes girando a la izquierda o derecha. Esto\nes útil para tirar a los enemigos al vacío o para anotar en el hockey.", + "You can judge when a bomb is going to explode based on the\ncolor of sparks from its fuse: yellow..orange..red..BOOM.": "Puedes saber si una bomba va a explotar basado en el \ncolor de las chispas de su mecha: amarillo...naranja...rojo...¡BOOM!", + "You can throw bombs higher if you jump just before throwing.": "Puedes tirar bombas más alto si saltas justo antes de tirarlas.", + "You take damage when you whack your head on things,\nso try to not whack your head on things.": "Te haces daño si golpeas tu cabeza contra cosas, \nasí que trata de no golpear tu cabeza contra cosas.", + "Your punches do much more damage if you are running or spinning.": "Tus golpes hacen mucho más daño si estás corriendo o girando." + } + }, + "trophiesRequiredText": "Esto requiere al menos ${NUMBER} trofeos.", + "trophiesText": "Trofeos", + "trophiesThisSeasonText": "Trofeos Esta Temporada", + "tutorial": { + "cpuBenchmarkText": "Corriendo tutorial en velocidad ridícula (pruebas de velocidad de CPU)", + "phrase01Text": "¡Hey, hola!", + "phrase02Text": "¡Bienvenido a ${APP_NAME}!", + "phrase03Text": "Te dare algunos consejos para controlar tu personaje:", + "phrase04Text": "Muchas cosas en ${APP_NAME} se basan mayoritariamente en FÍSICAS.", + "phrase05Text": "Por ejemplo, cuando golpeas...", + "phrase06Text": "..el daño se basa en la velocidad de tus puños.", + "phrase07Text": "¿Ves? No nos estábamos moviendo, así que eso apenas lastimó a ${NAME}.", + "phrase08Text": "Ahora vamos a saltar y girar para conseguir más velocidad.", + "phrase09Text": "Ah, mucho mejor.", + "phrase10Text": "Correr también ayuda.", + "phrase11Text": "Mantén pulsado CUALQUIER botón para correr.", + "phrase12Text": "Para golpes extra-asombrosos, intenta correr Y girar.", + "phrase13Text": "Ups; lo siento por eso ${NAME}.", + "phrase14Text": "Puedes recoger y lanzar cosas como banderas.. o ${NAME}.", + "phrase15Text": "Por último, hay bombas.", + "phrase16Text": "Lanzar bombas requiere práctica.", + "phrase17Text": "¡Auch! Ese no fue un buen tiro.", + "phrase18Text": "Moverte ayuda a lanzarlas más lejos.", + "phrase19Text": "Saltar ayuda a lanzarlas más alto.", + "phrase20Text": "\"Latiguea\" tus bombas para hacer lanzamientos aún más lejanos.", + "phrase21Text": "Hacer que exploten donde tú quieres puede ser complicado.", + "phrase22Text": "Rayos.", + "phrase23Text": "Intentemos \"cocinar\" la mecha por un segundo o dos.", + "phrase24Text": "¡Hurra! Así es como se hace.", + "phrase25Text": "Bueno, eso es todo.", + "phrase26Text": "¡Ahora ve por ellos, campeón!", + "phrase27Text": "Recuerda tu entrenamiento, ¡y VOLVERÁS con vida!", + "phrase28Text": "...o a lo mejor...", + "phrase29Text": "¡Buena Suerte!", + "randomName1Text": "Federico", + "randomName2Text": "Enrique", + "randomName3Text": "Guillermo", + "randomName4Text": "Carlos", + "randomName5Text": "Felipe", + "skipConfirmText": "¿Realmente quieres omitir el tutorial? Toca o presiona para confirmar.", + "skipVoteCountText": "${COUNT}/${TOTAL} votos para saltarse el tutorial", + "skippingText": "saltando el tutorial...", + "toSkipPressAnythingText": "(pulsa cualquier botón para omitir el tutorial)" + }, + "twoKillText": "¡COMBO DOBLE!", + "uiScaleText": "Escala de Interfaz de Usuario", + "unavailableText": "no disponible", + "unclaimedPrizesText": "Tienes premios sin reclamar!", + "unconfiguredControllerDetectedText": "Control desconfigurado detectado:", + "unlockThisInTheStoreText": "Esto debe ser desbloqueado en la tienda.", + "unlockThisProfilesText": "Para crear más de ${NUM} cuentas, necesitas:", + "unlockThisText": "Para desbloquear esto, necesitas:", + "unsupportedControllerText": "Lo sentimos, el control \"${NAME}\" no es compatible.", + "unsupportedHardwareText": "Disculpe, este dispositivo no soporta esta compilación del juego.", + "upFirstText": "A continuación:", + "upNextText": "A continuación en el juego ${COUNT}:", + "updatingAccountText": "Actualizando tu cuenta...", + "upgradeText": "Mejorar", + "upgradeToPlayText": "Desbloquea \"${PRO}\" en la tienda para jugar esto.", + "useDefaultText": "Usar Por Defecto", + "userSystemScriptsCreateText": "Crear Scripts del Sistema del Usuario", + "userSystemScriptsDeleteText": "Eliminar Scripts del Sistema del Usuario", + "usesExternalControllerText": "Este juego usa un control externo como entrada.", + "usingItunesText": "Usando Aplicación de Música para la banda sonora...", + "v2AccountLinkingInfoText": "Para vincular cuentas V2, usa el botón \"Administrar Cuenta\".", + "v2AccountRequiredText": "Esto requiere una cuenta V2. Actualice su cuenta e inténtelo de nuevo.", + "validatingTestBuildText": "Validando Compilación de Prueba...", + "viaText": "a través de", + "victoryText": "¡Victoria!", + "voteDelayText": "No puedes iniciar otra votación por ${NUMBER} segundo(s)", + "voteInProgressText": "Ya hay una votación en progreso.", + "votedAlreadyText": "Ya votaste", + "votesNeededText": "${NUMBER} voto(s) necesario(s)", + "vsText": "vs.", + "waitingForHostText": "(esperando a que ${HOST} continúe)", + "waitingForPlayersText": "esperando jugadores para unirse...", + "waitingInLineText": "Esperando en línea (la partida está llena)...", + "watchAVideoText": "Ver un Vídeo", + "watchAnAdText": "Ver un Anuncio", + "watchWindow": { + "deleteConfirmText": "¿Borrar \"${REPLAY}\"?", + "deleteReplayButtonText": "Borrar\nRepetición", + "myReplaysText": "Mis Repeticiones", + "noReplaySelectedErrorText": "Ninguna Repetición Seleccionada", + "playbackSpeedText": "Velocidad de Reproducción: ${SPEED}", + "renameReplayButtonText": "Renombrar\nRepetición", + "renameReplayText": "Renombrar \"${REPLAY}\" a:", + "renameText": "Renombrar", + "replayDeleteErrorText": "Error borrando la repetición.", + "replayNameText": "Nombre de la Repetición", + "replayRenameErrorAlreadyExistsText": "Una repetición con ese nombre ya existe.", + "replayRenameErrorInvalidName": "No se puede renombrar la repetición; nombre inválido.", + "replayRenameErrorText": "Error renombrando repetición.", + "sharedReplaysText": "Compartir repeticiones", + "titleText": "Ver", + "watchReplayButtonText": "Ver\nRepetición" + }, + "waveText": "Oleada", + "wellSureText": "¡Pues Claro!", + "whatIsThisText": "¿Qué es esto?", + "winsPlayerText": "¡${NAME} Gana!", + "winsTeamText": "¡${NAME} Gana!", + "winsText": "¡Ganó ${NAME}!", + "workspaceSyncErrorText": "Error al sincronizar ${WORKSPACE}. Mira el registro para más detalles.", + "workspaceSyncReuseText": "No se puede sincronizar ${WORKSPACE}. Reusando la versión previamente sincronizada.", + "worldScoresUnavailableText": "Puntuaciones mundiales no disponibles.", + "worldsBestScoresText": "Mejores Puntuaciones Mundiales", + "worldsBestTimesText": "Mejores Tiempos Mundiales", + "yesAllowText": "¡Sí, Permitir!", + "yourBestScoresText": "Tus Mejores Puntajes", + "yourBestTimesText": "Tus Mejores Tiempos", + "yourPrizeText": "Tu premio:" +} \ No newline at end of file diff --git a/dist/ba_data/data/languages/spanishspain.json b/dist/ba_data/data/languages/spanishspain.json new file mode 100644 index 0000000..e162342 --- /dev/null +++ b/dist/ba_data/data/languages/spanishspain.json @@ -0,0 +1,1980 @@ +{ + "accountSettingsWindow": { + "accountNameRules": "Los nombres de las cuentas no pueden tener emojis o otros caracteres especiales", + "accountsText": "Cuentas", + "achievementProgressText": "Logros: ${COUNT} de ${TOTAL}", + "campaignProgressText": "Progreso de la Campaña [Difícil]: ${PROGRESS}", + "changeOncePerSeason": "Solo puedes cambiar esto una vez por temporada.", + "changeOncePerSeasonError": "Debes esperar hasta la siguiente temporada para cambiar esto de nuevo (en ${NUM} día/s)", + "createAnAccountText": "Crear una Cuenta", + "customName": "Nombre Personalizado", + "deleteAccountText": "Eliminar Cuenta", + "googlePlayGamesAccountSwitchText": "Si quieres usar una cuenta de Google diferente,\nusa la app Google Play Juegos para cambiarla.", + "linkAccountsEnterCodeText": "Introducir Código", + "linkAccountsGenerateCodeText": "Generar Código", + "linkAccountsInfoText": "(comparta el progreso a través de diferentes plataformas)", + "linkAccountsInstructionsNewText": "Para vincular dos cuentas, genera un código en la primera \ne introduzca ese código en la segunda. Los datos de \nla segunda cuenta serán compartidos entre ambos.\n(Los datos de la primera cuenta se perderán).\n\nPuedes vincular hasta ${COUNT} cuentas.\n\nIMPORTANTE: Solo vincula cuentas tuyas; \nSi vinculas cuentas de tus amigos no serán \ncapaces de jugar en línea al mismo tiempo.", + "linkAccountsText": "Vincular Cuentas", + "linkedAccountsText": "Cuentas Vinculadas:", + "manageAccountText": "Administrar Cuenta", + "nameChangeConfirm": "¿Quieres cambiar El nombre de tu cuenta A ${NAME}?", + "resetProgressConfirmNoAchievementsText": "Esto reiniciará tu progreso en el modo cooperativo y \ntus puntuaciones locales (a excepción de tus boletos).\nEsto no puede deshacerse. ¿Estás seguro?", + "resetProgressConfirmText": "Esto reiniciará tu progreso en el modo cooperativo, \nlogros y puntuaciones locales (pero, no tus tickets).\nLos cambios no se pueden deshacer.\n¿Estás seguro?", + "resetProgressText": "Reiniciar Progreso", + "setAccountName": "Establecer Nombre de Cuenta", + "setAccountNameDesc": "Selecciona el nombre a mostrar para tu cuenta. \nPuedes usar el nombre de tu cuenta asociada\no crear un nombre único personalizado.", + "signInInfoText": "Inicia sesión para obtener boletos, competir en línea\ny compartir tu progreso a través de tus dispositivos.", + "signInText": "Iniciar Sesión", + "signInWithAnEmailAddressText": "Iniciar sesión con correo electronico", + "signInWithDeviceInfoText": "(una cuenta automática disponible únicamente en este dispositivo)", + "signInWithDeviceText": "Iniciar sesión con cuenta del dispositivo", + "signInWithText": "Iniciar sesion con ${SERVICE}", + "signInWithV2InfoText": "(una cuenta que funciona en todas las plataformas)", + "signInWithV2Text": "Iniciar sesión con una cuenta de ${APP_NAME}", + "signOutText": "Cerrar Sesión", + "signingInText": "Iniciando sesión...", + "signingOutText": "Cerrando sesión...", + "ticketsText": "Boletos: ${COUNT}", + "titleText": "Cuenta", + "unlinkAccountsInstructionsText": "Selecciona una cuenta para desvincular", + "unlinkAccountsText": "Desvincular Cuentas", + "unlinkLegacyV1AccountsText": "Desvincular Cuentas (V1) Heredadas", + "v2LinkInstructionsText": "Usa este enlace para crear una cuenta o para iniciar sesión.", + "viaAccount": "(cuenta vía ${NAME})", + "youAreSignedInAsText": "Has iniciado sesión como:" + }, + "achievementChallengesText": "Desafios de los Logros", + "achievementText": "Logro", + "achievements": { + "Boom Goes the Dynamite": { + "description": "Mata a 3 chicos malos con TNT", + "descriptionComplete": "Mató a 3 chicos malos con TNT", + "descriptionFull": "Mata a 3 chicos malos con TNT en ${LEVEL}", + "descriptionFullComplete": "Mató a 3 chicos malos con TNT en ${LEVEL}", + "name": "La Dinamita Hace Boom" + }, + "Boxer": { + "description": "Gana sin usar bombas", + "descriptionComplete": "Ganó sin usar bombas", + "descriptionFull": "Completa ${LEVEL} sin usar bombas", + "descriptionFullComplete": "Completó ${LEVEL} sin usar bombas", + "name": "Boxeador" + }, + "Dual Wielding": { + "descriptionFull": "Conecta 2 controles (de hardware o aplicación)", + "descriptionFullComplete": "Conectó 2 controles (de hardware o aplicación)", + "name": "Doble Empuñadura" + }, + "Flawless Victory": { + "description": "Gana sin ser lastimado", + "descriptionComplete": "Ganó sin ser lastimado", + "descriptionFull": "Gana ${LEVEL} sin ser lastimado", + "descriptionFullComplete": "Ganó ${LEVEL} sin ser golpeado", + "name": "Victoria Impecable" + }, + "Free Loader": { + "descriptionFull": "Empieza un juego de Todos-Contra-Todos con 2 o más jugadores", + "descriptionFullComplete": "Empezó un juego de Todos-Contra-Todos con 2 o más jugadores", + "name": "Cargador Libre" + }, + "Gold Miner": { + "description": "Mata a 6 chicos malos con minas terrestres", + "descriptionComplete": "Mató a 6 chicos malos con minas terrestres", + "descriptionFull": "Mata a 6 chicos malos con minas terrestres en ${LEVEL}", + "descriptionFullComplete": "Mató a 6 chicos malos con minas terrestres en ${LEVEL}", + "name": "Minero de Oro" + }, + "Got the Moves": { + "description": "Gana sin usar golpes ni bombas", + "descriptionComplete": "Ganó sin usar golpes ni bombas", + "descriptionFull": "Gana ${LEVEL} sin golpes ni bombas", + "descriptionFullComplete": "Ganó ${LEVEL} sin golpes ni bombas", + "name": "Tengo los Movimientos" + }, + "In Control": { + "descriptionFull": "Conecta un control (de hardware o aplicación)", + "descriptionFullComplete": "Conectó un control. (de hardware o aplicación)", + "name": "En Control" + }, + "Last Stand God": { + "description": "Anota 1000 puntos", + "descriptionComplete": "Anotó 1000 puntos", + "descriptionFull": "Anota 1000 puntos en ${LEVEL}", + "descriptionFullComplete": "Anotó 1000 puntos en ${LEVEL}", + "name": "Dios de la guerra En ${LEVEL}" + }, + "Last Stand Master": { + "description": "Anota 250 puntos", + "descriptionComplete": "Anotó 250 puntos", + "descriptionFull": "Anota 250 puntos en ${LEVEL}", + "descriptionFullComplete": "Anotó 250 puntos en ${LEVEL}", + "name": "Maestro de ${LEVEL}" + }, + "Last Stand Wizard": { + "description": "Anota 500 puntos", + "descriptionComplete": "Anotó 500 puntos", + "descriptionFull": "Anota 500 puntos en ${LEVEL}", + "descriptionFullComplete": "Anotó 500 puntos en ${LEVEL}", + "name": "Mago de ${LEVEL}" + }, + "Mine Games": { + "description": "Mata a 3 chicos malos con minas terrestres", + "descriptionComplete": "Mató a 3 chicos malos con minas terrestres", + "descriptionFull": "Mata a 3 chicos malos con minas terrestres en ${LEVEL}", + "descriptionFullComplete": "Mató a 3 chicos con minas terrestres en ${LEVEL}", + "name": "Juegos de Minas" + }, + "Off You Go Then": { + "description": "Arroja a 3 chicos malos fuera del mapa", + "descriptionComplete": "Arrojó a 3 chicos malos fuera del mapa", + "descriptionFull": "Arroja a 3 chicos malos fuera del mapa en ${LEVEL}", + "descriptionFullComplete": "Arrojó a 3 chicos malos fuera del mapa en ${LEVEL}", + "name": "Te Vas Abajo Entonces" + }, + "Onslaught God": { + "description": "Anota 5000 puntos", + "descriptionComplete": "Anotó 5000 puntos", + "descriptionFull": "Anota 5000 puntos en ${LEVEL}", + "descriptionFullComplete": "Anotó 5000 puntos en ${LEVEL}", + "name": "Dios de La ${LEVEL}" + }, + "Onslaught Master": { + "description": "Anota 500 puntos", + "descriptionComplete": "Anotó 500 puntos", + "descriptionFull": "Anota 500 puntos en ${LEVEL}", + "descriptionFullComplete": "Anotó 500 puntos en ${LEVEL}", + "name": "Maestro de La ${LEVEL}" + }, + "Onslaught Training Victory": { + "description": "Vence todas las oleadas", + "descriptionComplete": "Derroto todas las oleadas.", + "descriptionFull": "Vence todas las oleadas en ${LEVEL}", + "descriptionFullComplete": "Venció todas las oleadas en ${LEVEL}", + "name": "Victoria en ${LEVEL}" + }, + "Onslaught Wizard": { + "description": "Anota 1000 puntos", + "descriptionComplete": "Anotó 1000 puntos", + "descriptionFull": "Anota 1000 puntos en ${LEVEL}", + "descriptionFullComplete": "Anotó 1000 puntos en ${LEVEL}", + "name": "Mago de La ${LEVEL}" + }, + "Precision Bombing": { + "description": "Gana sin potenciadores", + "descriptionComplete": "Ganó sin potenciadores", + "descriptionFull": "Gana ${LEVEL} sin potenciadores", + "descriptionFullComplete": "Ganó ${LEVEL} sin potenciadores", + "name": "Bombardeo con Precisión" + }, + "Pro Boxer": { + "description": "Gana sin usar bombas", + "descriptionComplete": "Ganó sin usar bombas", + "descriptionFull": "Completa ${LEVEL} sin usar bombas", + "descriptionFullComplete": "Completó ${LEVEL} sin usar bombas", + "name": "Boxeador Profesional" + }, + "Pro Football Shutout": { + "description": "Gana sin dejar que los chicos malos anoten", + "descriptionComplete": "Ganó sin dejar que los chicos malos anotaran", + "descriptionFull": "Gana ${LEVEL} sin dejar que los chicos malos anoten", + "descriptionFullComplete": "Ganó ${LEVEL} sin dejar que los chicos malos anotaran", + "name": "Blanqueo en ${LEVEL}" + }, + "Pro Football Victory": { + "description": "Gana el partido", + "descriptionComplete": "Ganó el partido", + "descriptionFull": "Gana el partido en ${LEVEL}", + "descriptionFullComplete": "Ganó el partido en ${LEVEL}", + "name": "Victoria en ${LEVEL}" + }, + "Pro Onslaught Victory": { + "description": "Vence todas las oleadas", + "descriptionComplete": "Venció todas las oleadas", + "descriptionFull": "Vence todas las oleadas de ${LEVEL}", + "descriptionFullComplete": "Venció todas las oleadas de ${LEVEL}", + "name": "Victoria en ${LEVEL}" + }, + "Pro Runaround Victory": { + "description": "Completa todas las oleadas", + "descriptionComplete": "Completó todas las oleadas", + "descriptionFull": "Completa todas las oleadas en ${LEVEL}", + "descriptionFullComplete": "Completó todas las oleadas en ${LEVEL}", + "name": "Victoria en ${LEVEL}" + }, + "Rookie Football Shutout": { + "description": "Gana sin dejar que los chicos malos anoten", + "descriptionComplete": "Ganó sin dejar que los chicos malos anotaran", + "descriptionFull": "Gana ${LEVEL} sin dejar que los chicos malos anoten", + "descriptionFullComplete": "Ganó ${LEVEL} sin dejar que los chicos malos anotaran", + "name": "Blanqueo en ${LEVEL}" + }, + "Rookie Football Victory": { + "description": "Gana el partido", + "descriptionComplete": "Ganó el partido", + "descriptionFull": "Gana el partido en ${LEVEL}", + "descriptionFullComplete": "Ganó el partido en ${LEVEL}", + "name": "Victoria en ${LEVEL}" + }, + "Rookie Onslaught Victory": { + "description": "Vence todas las oleadas", + "descriptionComplete": "Venció todas las oleadas", + "descriptionFull": "Vence todas las oleadas en ${LEVEL}", + "descriptionFullComplete": "Venció todas las oleadas en ${LEVEL}", + "name": "Victoria en ${LEVEL}" + }, + "Runaround God": { + "description": "Anota 2000 puntos", + "descriptionComplete": "Anotó 2000 puntos", + "descriptionFull": "Anota 2000 puntos en ${LEVEL}", + "descriptionFullComplete": "Anotó 2000 puntos en ${LEVEL}", + "name": "Dios de La ${LEVEL}" + }, + "Runaround Master": { + "description": "Anota 500 puntos", + "descriptionComplete": "Anotó 500 puntos", + "descriptionFull": "Anota 500 puntos en ${LEVEL}", + "descriptionFullComplete": "Anotó 500 puntos en ${LEVEL}", + "name": "Maestro de La ${LEVEL}" + }, + "Runaround Wizard": { + "description": "Anota 1000 puntos", + "descriptionComplete": "Anotó 1000 puntos", + "descriptionFull": "Anota 1000 puntos en ${LEVEL}", + "descriptionFullComplete": "Anotó 1000 puntos en ${LEVEL}", + "name": "Mago de La ${LEVEL}" + }, + "Sharing is Caring": { + "descriptionFull": "Comparte exitosamente el juego con un amigo", + "descriptionFullComplete": "Compartió exitosamente el juego con un amigo", + "name": "Compartir es querer." + }, + "Stayin' Alive": { + "description": "Gana sin morir", + "descriptionComplete": "Ganó sin morir", + "descriptionFull": "Gana ${LEVEL} sin morir", + "descriptionFullComplete": "Ganó ${LEVEL} sin morir", + "name": "Sobreviviendo" + }, + "Super Mega Punch": { + "description": "Inflige 100% de daño con un solo golpe", + "descriptionComplete": "Infligió 100% de daño con un solo golpe", + "descriptionFull": "Inflige 100% de daño con un golpe en ${LEVEL}", + "descriptionFullComplete": "Infligió 100% de daño con un golpe en ${LEVEL}", + "name": "Súper Mega Golpe" + }, + "Super Punch": { + "description": "Inflige 50% de daño con un golpe", + "descriptionComplete": "Infligió 50% de daño con un golpe", + "descriptionFull": "Inflige 50% de daño con un golpe en ${LEVEL}", + "descriptionFullComplete": "Infligió 50% de daño con un golpe en ${LEVEL}", + "name": "Súper Golpe" + }, + "TNT Terror": { + "description": "Mata a 6 chicos malos con TNT", + "descriptionComplete": "Mató a 6 chicos malos con TNT", + "descriptionFull": "Mata a 6 chicos malos con TNT en ${LEVEL}", + "descriptionFullComplete": "Mató a 6 chicos malos con TNT en ${LEVEL}", + "name": "Pirómano" + }, + "Team Player": { + "descriptionFull": "Empieza un juego de Equipos con 4 o más jugadores", + "descriptionFullComplete": "Empezó un juego de Equipos con 4 o más jugadores", + "name": "Jugador de Equipo" + }, + "The Great Wall": { + "description": "Detén a cada uno de los chicos malos", + "descriptionComplete": "Detuvo a cada uno de los chicos malos", + "descriptionFull": "Detén a cada uno de los chicos malos en ${LEVEL}", + "descriptionFullComplete": "Detuvo a cada uno de los chicos malos en ${LEVEL}", + "name": "La Gran Muralla" + }, + "The Wall": { + "description": "Detén a cada uno de los chicos malos", + "descriptionComplete": "Detuvo a cada uno de los chicos malos", + "descriptionFull": "Detén a cada uno de los chicos malos en ${LEVEL}", + "descriptionFullComplete": "Detuvo a cada uno de los chicos malos en ${LEVEL}", + "name": "La Muralla" + }, + "Uber Football Shutout": { + "description": "Gana sin dejar que los chicos malos anoten", + "descriptionComplete": "Ganó sin dejar que los chicos malos anotaran", + "descriptionFull": "Gana ${LEVEL} sin dejar que los chicos malos anoten", + "descriptionFullComplete": "Ganó ${LEVEL} sin dejar que los chicos malos anotaran", + "name": "Blanqueo en ${LEVEL}" + }, + "Uber Football Victory": { + "description": "Gana el partido", + "descriptionComplete": "Ganó el partido", + "descriptionFull": "Gana el partido en ${LEVEL}", + "descriptionFullComplete": "Ganó el partido en ${LEVEL}", + "name": "Victoria en ${LEVEL}" + }, + "Uber Onslaught Victory": { + "description": "Vence todas las oleadas", + "descriptionComplete": "Venció todas las oleadas", + "descriptionFull": "Vence todas las oleadas en ${LEVEL}", + "descriptionFullComplete": "Venció todas las oleadas en ${LEVEL}", + "name": "Victoria en ${LEVEL}" + }, + "Uber Runaround Victory": { + "description": "Completa todas las oleadas", + "descriptionComplete": "Completó todas las oleadas", + "descriptionFull": "Completa todas las oleadas en ${LEVEL}", + "descriptionFullComplete": "Completó todas las oleadas en ${LEVEL}", + "name": "Victoria en ${LEVEL}" + } + }, + "achievementsRemainingText": "Logros Restantes:", + "achievementsText": "Logros", + "achievementsUnavailableForOldSeasonsText": "Disculpe, los logros específicos no están disponibles para temporadas anteriores.", + "activatedText": "${THING} activado.", + "addGameWindow": { + "getMoreGamesText": "Obtener Más Juegos...", + "titleText": "Agregar Juego" + }, + "addToFavoritesText": "Agregar a Favoritos", + "addedToFavoritesText": "'${NAME}' añadido a Favoritos.", + "allText": "Todo", + "allowText": "Permitir", + "alreadySignedInText": "Tu cuenta está registrada en otro dispositivo;\npor favor cambia de cuentas o cierra el juego en tu \notro dispositivo e inténtalo de nuevo.", + "apiVersionErrorText": "No se puede cargar el módulo ${NAME}; este apunta a la versión-api ${VERSION_USED}; necesitamos ${VERSION_REQUIRED}.", + "applyText": "Aplicar", + "areYouSureText": "¿Estás seguro/a?", + "audioSettingsWindow": { + "headRelativeVRAudioInfoText": "(\"Auto\" se activa solo cuando los audífonos estan conectados)", + "headRelativeVRAudioText": "Audio RV Relativo a la Cabeza", + "musicVolumeText": "Volumen de la Música", + "soundVolumeText": "Volumen del Sonido", + "soundtrackButtonText": "Bandas Sonoras", + "soundtrackDescriptionText": "(usa tu propia música para reproducir durante los juegos)", + "titleText": "Audio" + }, + "autoText": "Auto", + "backText": "Atrás", + "banThisPlayerText": "Banear a Este Jugador", + "bestOfFinalText": "Final Mejor-de-${COUNT}", + "bestOfSeriesText": "Mejor de ${COUNT} series:", + "bestRankText": "Tu mejor rango es #${RANK}", + "bestRatingText": "Tu mejor clasificación es ${RATING}", + "bombBoldText": "BOMBA", + "bombText": "Bomba", + "boostText": "Potenciar", + "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} se configura en la propia aplicación.", + "buttonText": "botón", + "canWeDebugText": "¿Te gustaría que ${APP_NAME} reporte errores, fallos internos\ne información básica de uso al desarrollador de forma automática?\n\nDicha informacíon no incluirá datos personales y ayudará a\nmantener el juego funcionando sin contratiempos ni problemas.", + "cancelText": "Cancelar", + "cantConfigureDeviceText": "Lo sentimos, ${DEVICE} no es configurable.", + "challengeEndedText": "Este desafío ha terminado.", + "chatMuteText": "Silenciar Chat", + "chatMutedText": "Chat Silenciado", + "chatUnMuteText": "Desilenciar Chat", + "chests": { + "prizeOddsText": "Posibles Premios", + "reduceWaitText": "Reducir Espera", + "slotDescriptionText": "Esta ranura puede contener un cofre.\n\nGana cofres al jugar niveles del modo campaña,\nposicionándote en torneos y completando\nlogros.", + "slotText": "${NUM} Ranura de Cofre", + "slotsFullWarningText": "ADVERTENCIA: Tus espacios de cofres están llenos.\nCualquier cofre ganado en esta partida, será perdido.", + "unlocksInText": "Se desbloquea en:" + }, + "choosingPlayerText": "", + "claimText": "Reclamar", + "codesExplainText": "Los códigos son proporcionados por el desarrollador para\ndiagnosticar y corregir problemas de la cuenta.", + "completeThisLevelToProceedText": "¡Debes completar\neste nivel para avanzar!", + "completionBonusText": "Bono por Completar", + "configControllersWindow": { + "configureControllersText": "Configurar Controles", + "configureKeyboard2Text": "Configurar Teclado J2", + "configureKeyboardText": "Configurar Teclado", + "configureMobileText": "Dispositivos Móviles como Controles", + "configureTouchText": "Configurar Pantalla Táctil", + "ps3Text": "Controles de PS3", + "titleText": "Controles", + "wiimotesText": "Wiimotes", + "xbox360Text": "Controles de Xbox 360" + }, + "configGamepadSelectWindow": { + "androidNoteText": "Nota: el soporte de los controles varía según el dispositivo y la versión de Android.", + "pressAnyButtonText": "Pulsa cualquier botón en el control\n que desees configurar...", + "titleText": "Configurar Controles" + }, + "configGamepadWindow": { + "advancedText": "Avanzado", + "advancedTitleText": "Configuración Avanzada del Control", + "analogStickDeadZoneDescriptionText": "(súbelo si tu personaje 'derrapa' cuando sueltas la palanca)", + "analogStickDeadZoneText": "Zona Muerta de La Palanca Analógica", + "appliesToAllText": "(aplica a todos los controles de este tipo)", + "autoRecalibrateDescriptionText": "(habilita esta opción si tu personaje no se mueve a toda velocidad)", + "autoRecalibrateText": "Auto-Recalibrar Palanca Analógica", + "axisText": "eje", + "clearText": "vaciar", + "dpadText": "Flechas del Mando", + "extraStartButtonText": "Botón Extra de Inicio", + "ifNothingHappensTryAnalogText": "Si no pasa nada, intenta asignar la palanca analógica en cambio.", + "ifNothingHappensTryDpadText": "Si no pasa nada, intenta asignar el d-pad en cambio.", + "ignoreCompletelyDescriptionText": "(evita que este control este afectando el juego y/o menús)", + "ignoreCompletelyText": "Ignorar Completamente", + "ignoredButton1Text": "Botón 1 Ignorado", + "ignoredButton2Text": "Botón 2 Ignorado", + "ignoredButton3Text": "Botón 3 Ignorado", + "ignoredButton4Text": "Botón 4 Ignorado", + "ignoredButtonDescriptionText": "(usa esto para prevenir que los botones de 'inicio' o 'sincronización' afecten la Interfaz Visual)", + "pressAnyAnalogTriggerText": "Presiona cualquier gatillo analógico...", + "pressAnyButtonOrDpadText": "Presiona cualquier botón o dpad...", + "pressAnyButtonText": "Presiona cualquier botón...", + "pressLeftRightText": "Presiona izquierda o derecha...", + "pressUpDownText": "Presiona arriba o abajo...", + "runButton1Text": "Botón para Correr 1", + "runButton2Text": "Botón para Correr 2", + "runTrigger1Text": "Gatillo para Correr 1", + "runTrigger2Text": "Gatillo para Correr 2", + "runTriggerDescriptionText": "(los gatillos analógicos te dejan correr a velocidades distintas)", + "secondHalfText": "Utiliza esta opción para configurar\nla segunda mitad de un control 2 en 1\nque se muestre como un solo control.", + "secondaryEnableText": "Habilitar", + "secondaryText": "Control Secundario", + "startButtonActivatesDefaultDescriptionText": "(desactívalo si tu botón de inicio es más bien un botón de 'menú')", + "startButtonActivatesDefaultText": "El Botón de Inicio Activa la Función por Defecto", + "titleText": "Configurar Control", + "twoInOneSetupText": "Configuración de Controles 2 en 1", + "uiOnlyDescriptionText": "(evitar que este control se una a un juego)", + "uiOnlyText": "Limitar a Uso en Menú", + "unassignedButtonsRunText": "Todos los Botones sin Asignar Corren", + "unsetText": "", + "vrReorientButtonText": "Boton de Reorientación de RV" + }, + "configKeyboardWindow": { + "configuringText": "Configurando ${DEVICE}", + "keyboard2NoteText": "Nota: la mayoría de teclados sólo pueden registrar algunas\npulsaciones a la vez, así que tener un segundo teclado puede\nfuncionar mejor que un teclado compartido por los 2 jugadores.\nTen en cuenta que todavía necesitas asignar teclas únicas a los\ndos jugadores incluso en ese caso." + }, + "configTouchscreenWindow": { + "actionControlScaleText": "Tamaño de Control de Acciones", + "actionsText": "Acciones", + "buttonsText": "botones", + "dragControlsText": "", + "joystickText": "palanca", + "movementControlScaleText": "Tamaño de Escala de Movimiento", + "movementText": "Movimiento", + "resetText": "Reiniciar", + "swipeControlsHiddenText": "Ocultar Iconos Deslizantes", + "swipeInfoText": "Controles del estilo 'Deslizante' toman un poco de practica, pero\nhacen que sea más fácil jugar sin mirar los controles.", + "swipeText": "deslizar", + "titleText": "Configurar Pantalla Táctil" + }, + "configureDeviceInSystemSettingsText": "${DEVICE} se puede configurar en la aplicación Configuración del Sistema.", + "configureItNowText": "Configurar ahora?", + "configureText": "Configurar", + "connectMobileDevicesWindow": { + "amazonText": "Tienda de Amazon (Appstore)", + "appStoreText": "App Store", + "bestResultsText": "Para mejores resultados necesitas una red inalámbrica rápida. Puedes\nreducir el retraso wifi apagando otros dispositivos inalámbricos,\njugando cerca de tu router inalámbrico y conectando el\njuego anfitrión directamente a la red a través del cable Ethernet.", + "explanationText": "Para utilizar tus dispositivos móviles como controles, \ninstala la app \"${REMOTE_APP_NAME}\" en ellos. Todos tus dispositivos \npueden conectarse a un juego de ${APP_NAME} a través de una red Wi-fi, ¡es gratis!.", + "forAndroidText": "para Android:", + "forIOSText": "para iOS:", + "getItForText": "Consigue ${REMOTE_APP_NAME} para iOS en la App Store\no para Android en la Tienda de Google Play o Appstore de Amazon", + "googlePlayText": "Google Play", + "titleText": "Utilizando Dispositivos como Controles:" + }, + "continuePurchaseText": "¿Continuar por ${PRICE}?", + "continueText": "Continuar", + "controlsText": "Controles", + "coopSelectWindow": { + "activenessAllTimeInfoText": "Esto no aplica a las clasificaciones de todo-el-tiempo.", + "activenessInfoText": "Este multiplicador aumenta en los días que juegas\ny disminuye cuando no juegas.", + "activityText": "Actividad", + "campaignText": "Campaña", + "challengesInfoText": "Gana premios por completar los mini-juegos.\n\nLos premios y la dificultad de los niveles incrementa\ncada vez que se completa y\ndecrece cuando uno expira o no se cumple.", + "challengesText": "Desafíos", + "currentBestText": "Mejor Actualmente", + "customText": "Personalizado", + "entryFeeText": "Entrada", + "forfeitConfirmText": "¿Renunciar a este desafío?", + "forfeitNotAllowedYetText": "Todavía no puedes abandonar este desafío.", + "forfeitText": "Abandonar", + "multipliersText": "Multiplicadores", + "nextChallengeText": "Siguiente Desafío", + "nextPlayText": "Siguiente Juego", + "ofTotalTimeText": "de ${TOTAL}", + "playNowText": "Juega Ahora", + "pointsText": "Puntos", + "powerRankingFinishedSeasonUnrankedText": "(temporada terminada sin clasificar)", + "powerRankingNotInTopText": "(fuera del top ${NUMBER})", + "powerRankingPointsEqualsText": "= ${NUMBER} pts", + "powerRankingPointsMultText": "(x ${NUMBER} pts)", + "powerRankingPointsText": "${NUMBER} pts", + "powerRankingPointsToRankedText": "(${CURRENT} de ${REMAINING} pts)", + "powerRankingText": "Clasificación del Jugador", + "prizesText": "Premios", + "proMultInfoText": "Los jugadores con la mejora de ${PRO}\nreciben una bonificación del ${PERCENT}% de puntos.", + "seeMoreText": "Más...", + "skipWaitText": "Omitir la Espera", + "timeRemainingText": "Tiempo Restante", + "toRankedText": "Para Clasificar", + "totalText": "total", + "tournamentInfoText": "Compite por puntajes altos con\notros jugadores en tu liga.\n\nLos premios los obtienen los jugadores\ncon mejor puntaje al acabarse el torneo.", + "welcome1Text": "Bienvenido a ${LEAGUE}. Puedes mejorar tu\nposición en la liga ganando estrellas, completando\nlogros y ganando trofeos en desafíos.", + "welcome2Text": "También puedes ganar boletos desde varias actividades similares.\nLos boletos pueden ser usados para desbloquear nuevos personajes,\nmapas y minijuegos, entrar a torneos y más.", + "yourPowerRankingText": "Tu Clasificación Actual:" + }, + "copyConfirmText": "Copiado en el portapapeles.", + "copyOfText": "Copia de ${NAME}", + "copyText": "Copiar", + "createEditPlayerText": "", + "createText": "Crear", + "creditsWindow": { + "additionalAudioArtIdeasText": "Audio Adicional, Arte Inicial, e Ideas por ${NAME}", + "additionalMusicFromText": "Música adicional de ${NAME}", + "allMyFamilyText": "Mis amigos y mi familia que ayudaron con las pruebas", + "codingGraphicsAudioText": "Código, Gráficos y Audio por ${NAME}", + "languageTranslationsText": "Traducciones:", + "legalText": "Legal:", + "publicDomainMusicViaText": "Música de dominio público vía ${NAME}", + "softwareBasedOnText": "Este software está basado parcialmente en el trabajo de ${NAME}", + "songCreditText": "${TITLE} Interpretada por ${PERFORMER}\nCompuesta por ${COMPOSER}, Arreglos por ${ARRANGER}, Publicada por ${PUBLISHER},\nCortesía de ${SOURCE}", + "soundAndMusicText": "Sonido & Música:", + "soundsText": "Sonidos (${SOURCE}):", + "specialThanksText": "Agradecimientos Especiales:", + "thanksEspeciallyToText": "Gracias especialmente a ${NAME}", + "titleText": "Créditos de ${APP_NAME}", + "whoeverInventedCoffeeText": "A quien inventó el café" + }, + "currentStandingText": "Tu puesto actual es #${RANK}", + "customizeText": "Personalizar...", + "deathsTallyText": "${COUNT} muertes", + "deathsText": "Muertes", + "debugText": "depurar", + "debugWindow": { + "reloadBenchmarkBestResultsText": "Nota: Es recomendable poner Ajustes->Gráficos->Texturas en 'Alto' al probar esto.", + "runCPUBenchmarkText": "Ejecutar Punto de Referencia del CPU", + "runGPUBenchmarkText": "Ejecutar Punto de Referencia del GPU", + "runMediaReloadBenchmarkText": "Ejecutar Punto de Referencia del Media-Reload", + "runStressTestText": "Ejecutar prueba de resistencia", + "stressTestPlayerCountText": "Conteo de Jugadores", + "stressTestPlaylistDescriptionText": "Lista de juegos de Prueba de Estrés", + "stressTestPlaylistNameText": "Nombre de la Lista de juegos", + "stressTestPlaylistTypeText": "Tipo de Lista de juegos", + "stressTestRoundDurationText": "Duración de Ronda", + "stressTestTitleText": "Prueba de Estrés", + "titleText": "Pruebas de Estrés y Rendimiento", + "totalReloadTimeText": "Tiempo total de recarga: ${TIME} (ver registro para detalles)" + }, + "defaultGameListNameText": "Lista de juegos ${PLAYMODE} Por Defecto", + "defaultNewGameListNameText": "Mi Lista de juegos ${PLAYMODE}", + "deleteText": "Borrar", + "demoText": "Demo", + "denyText": "Denegar", + "deprecatedText": "Obsoleto", + "descriptionText": "Descripción", + "desktopResText": "Resolución de Escritorio", + "deviceAccountUpgradeText": "Advertencia:\nIniciaste sesión con una cuenta de dispositivo (${NAME}).\nLas cuentas de dispositivo serán removidas en una futura actualización.\nActualiza a una Cuenta V2 si quieres conservar tu progreso.", + "difficultyEasyText": "Fácil", + "difficultyHardOnlyText": "Solo en Modo Difícil", + "difficultyHardText": "Difícil", + "difficultyHardUnlockOnlyText": "Este nivel solo puede ser desbloqueado en modo difícil.\n¡¿¡¿¡Piensas tener lo que se necesita!?!?!", + "directBrowserToURLText": "Por favor abre la siguiente URL en tu navegador:", + "disableRemoteAppConnectionsText": "Deshabilitar Conexiones Remotas de la Aplicación", + "disableXInputDescriptionText": "Permite más de 4 controles pero puede que no funcione bien.", + "disableXInputText": "Deshabilitar XInput", + "disabledText": "Deshabilitado", + "discardText": "Descartar", + "discordFriendsText": "¿Quieres buscar gente nueva con quien jugar?\n¡Únete a nuestro Discord y encuentra nuevos amigos!", + "discordJoinText": "Únete al Discord", + "doneText": "Hecho", + "drawText": "Empate", + "duplicateText": "Duplicar", + "editGameListWindow": { + "addGameText": "Añadir\nJuego", + "cantOverwriteDefaultText": "¡No es posible modificar la lista de juegos por defecto!", + "cantSaveAlreadyExistsText": "¡Ya existe una lista de juegos con ese nombre!", + "cantSaveEmptyListText": "¡No puedes guardar una lista de juegos vacía!", + "editGameText": "Editar\nJuego", + "listNameText": "Nombre de La Lista de Juegos", + "nameText": "Nombre", + "removeGameText": "Eliminar\nJuego", + "saveText": "Guardar Lista", + "titleText": "Editor de Lista de Juegos" + }, + "editProfileWindow": { + "accountProfileInfoText": "Este perfil especial tiene un nombre\ny un icono basado en tu cuenta.\n\n${ICONS}\n\nCrea perfiles personalizados si quieres usar\ndiferentes nombres o iconos personalizados.", + "accountProfileText": "(perfil de cuenta)", + "availableText": "El nombre \"${NAME}\" está disponible.", + "characterText": "personaje", + "checkingAvailabilityText": "Revisando la disponibilidad para \"${NAME}\"...", + "colorText": "color", + "getMoreCharactersText": "Obtener Más Personajes...", + "getMoreIconsText": "Obtener Más Iconos...", + "globalProfileInfoText": "Los perfiles de jugador globales tienen un nombre único\na nivel mundial. También tienen iconos personalizados.", + "globalProfileText": "(perfil global)", + "highlightText": "Destacado", + "iconText": "icono", + "localProfileInfoText": "Los perfiles locales no tienen iconos y no hay garantía de que los nombres sean únicos. \nCrea un perfil global\npara reservar un nombre único y tener un icono personalizado.", + "localProfileText": "(perfil local)", + "nameDescriptionText": "Nombre del Jugador", + "nameText": "Nombre", + "profileAlreadyExistsText": "Ya existe un perfil con ese nombre.", + "randomText": "aleatorio", + "titleEditText": "Editar Perfil", + "titleNewText": "Nuevo Perfil", + "unavailableText": "\"${NAME}\" no está disponible; intenta otro nombre.", + "upgradeProfileInfoText": "Esto reservará tu nombre de jugador a nivel mundial\ny podrás asignarle un icono personalizado.", + "upgradeToGlobalProfileText": "Actualizar a Perfil Global" + }, + "editSoundtrackWindow": { + "cantDeleteDefaultText": "No puedes borrar la banda sonora predeterminada.", + "cantEditDefaultText": "No puedes editar la banda sonora predeterminada. Duplicala o crea una nueva.", + "cantOverwriteDefaultText": "No puedes sobreescribir la banda sonora predeterminada", + "cantSaveAlreadyExistsText": "¡Ya existe una banda sonora con ese nombre!", + "defaultGameMusicText": "", + "defaultSoundtrackNameText": "Banda Sonora Predeterminada", + "deleteConfirmText": "Borrar Banda Sonora:\n\n'${NAME}'?", + "deleteText": "Borrar\nBanda Sonora", + "duplicateText": "Duplicar\nBanda Sonora", + "editSoundtrackText": "Editor de Banda Sonora", + "editText": "Editar\nBanda Sonora", + "fetchingITunesText": "buscando playlists en la App de Música...", + "musicVolumeZeroWarning": "Advertencia: el volumen de la música está en 0", + "nameText": "Nombre", + "newSoundtrackNameText": "Mi Banda Sonora ${COUNT}", + "newSoundtrackText": "Nueva Banda Sonora:", + "newText": "Nueva\nBanda Sonora", + "selectAPlaylistText": "Selecciona Una Playlist", + "selectASourceText": "Fuente de La Música", + "testText": "prueba", + "titleText": "Bandas Sonoras", + "useDefaultGameMusicText": "Música del Juego Por Defecto", + "useITunesPlaylistText": "Playlist de la App de Música", + "useMusicFileText": "Archivo de Música (mp3, etc).", + "useMusicFolderText": "Carpeta de Archivos de Audio" + }, + "editText": "Editar", + "enabledText": "Habilitado", + "endText": "Fin", + "enjoyText": "¡Diviértete!", + "epicDescriptionFilterText": "${DESCRIPTION} En cámara lenta épica.", + "epicNameFilterText": "${NAME} - Modo épico", + "errorAccessDeniedText": "acceso denegado", + "errorDeviceTimeIncorrectText": "La hora de tu dispositivo está incorrecta por ${HOURS} hora(s).\nEsto podría causar algunos problemas.\nPor favor verifica la hora y zona horaria en ajustes.", + "errorOutOfDiskSpaceText": "espacio insuficiente en el disco", + "errorSecureConnectionFailText": "No se puede establecer una conexión segura en la nube; la red podría estar fallando.", + "errorText": "Error", + "errorUnknownText": "error desconocido", + "exitGameText": "¿Salir de ${APP_NAME}?", + "expiredAgoText": "Expiró hace ${T}", + "expiresInText": "Expira en ${T}", + "exportSuccessText": "'${NAME}' exportado.", + "externalStorageText": "Almacenamiento Externo", + "failText": "Fallaste", + "fatalErrorText": "Oh oh; algo está mal por aquí.\nPor favor intenta reinstalar la app o\ncontacta a ${EMAIL} para recibir ayuda.", + "fileSelectorWindow": { + "titleFileFolderText": "Elige un Archivo o Carpeta", + "titleFileText": "Elige un Archivo", + "titleFolderText": "Elige una Carpeta", + "useThisFolderButtonText": "Usar Esta Carpeta" + }, + "filterText": "Filtro", + "finalScoreText": "Puntaje Final", + "finalScoresText": "Puntajes Finales", + "finalTimeText": "Tiempo Final", + "finishingInstallText": "Terminando la instalación; espera un momento...", + "fireTVRemoteWarningText": "* Para una mejor experiencia, \nutiliza controles o instala la\napp '${REMOTE_APP_NAME}' en tus\ndispositivos móviles y tabletas.", + "firstToFinalText": "Primero de ${COUNT} Finales", + "firstToSeriesText": "Primero de ${COUNT} Series", + "fiveKillText": "¡¡¡COMBO QUÍNTUPLE!!!", + "flawlessWaveText": "¡Oleada Perfecta!", + "fourKillText": "¡¡¡COMBO CUÁDRUPLE!!!", + "friendScoresUnavailableText": "Puntajes no disponibles.", + "gameLeadersText": "Líderes del Juego ${COUNT}", + "gameListWindow": { + "cantDeleteDefaultText": "No puedes borrar la lista de juegos predeterminada.", + "cantEditDefaultText": "¡No puedes editar la lista de juegos predeterminada! Duplicala o crea una nueva.", + "cantShareDefaultText": "No puedes compartir la lista de juegos predeterminada.", + "deleteConfirmText": "¿Borrar \"${LIST}\"?", + "deleteText": "Borrar\nLista de Juegos", + "duplicateText": "Duplicar\nLista de Juegos", + "editText": "Editar\nLista de Juegos", + "newText": "Nueva\nLista de Juegos", + "pointsToWinText": "Puntos Para Ganar", + "seriesLengthText": "Duración de la Serie", + "showTutorialText": "Ver Tutorial", + "shuffleGameOrderText": "Orden de Juego Aleatorio", + "titleText": "Personalizar Listas de Juegos de ${TYPE}" + }, + "gameSettingsWindow": { + "addGameText": "Agregar Juego" + }, + "gamesToText": "${WINCOUNT} juegos a ${LOSECOUNT}", + "gatherWindow": { + "aboutDescriptionLocalMultiplayerExtraText": "Recuerda: cualquier dispositivo en la fiesta puede\ntener más de un jugador si tienen controles suficientes.", + "aboutDescriptionText": "Usa estas pestañas para armar una partida.\n\nLas partidas te permiten jugar y competir con\ntus amigos a través de diferentes dispositivos.\n\nUsa el botón ${PARTY} en la parte superior\nderecha para chatear e interactuar con tu partida.\n(con un control, presiona ${BUTTON} mientras estés en el menú)", + "aboutText": "Acerca De", + "addressFetchErrorText": "", + "appInviteMessageText": "${NAME} te envió ${COUNT} boletos en ${APP_NAME}", + "appInviteSendACodeText": "Envíales Un Código", + "appInviteTitleText": "Invitación de La App ${APP_NAME}", + "bluetoothAndroidSupportText": "(funciona con cualquier dispositivo Android con Bluetooth)", + "bluetoothDescriptionText": "Alojar/unirse a una partida vía Bluetooth:", + "bluetoothHostText": "Alojar vía Bluetooth", + "bluetoothJoinText": "Unirse vía Bluetooth", + "bluetoothText": "Bluetooth", + "checkingText": "revisando...", + "copyCodeConfirmText": "Código copiado al portapapeles.", + "copyCodeText": "Copiar Código", + "dedicatedServerInfoText": "Para mejores resultados, crea un servidor dedicado. Visita bombsquadgame.com/server para aprender cómo hacerlo.", + "descriptionShortText": "Usa la pestaña de Reunir para crear una fiesta.", + "disconnectClientsText": "Esto desconectará a ${COUNT} jugador(es) de\ntu partida. ¿Estás seguro?", + "earnTicketsForRecommendingAmountText": "Tus amigos recibirán ${COUNT} boletos si prueban el juego\n(y recibirás ${YOU_COUNT} boletos por cada amigo que pruebe el juego).", + "earnTicketsForRecommendingText": "Comparte el juego\na cambio de boletos gratis...", + "emailItText": "Envíar Correo", + "favoritesSaveText": "Guardar Como Favorito", + "favoritesText": "Favoritos", + "freeCloudServerAvailableMinutesText": "El siguiente servidor estará disponible en ${MINUTES} minuto(s).", + "freeCloudServerAvailableNowText": "¡Servidor en la nube gratuito disponible!", + "freeCloudServerNotAvailableText": "No hay servidores en la nube gratuitos disponibles.", + "friendHasSentPromoCodeText": "Recibiste ${COUNT} boletos de ${APP_NAME} de ${NAME}", + "friendPromoCodeAwardText": "Recibirás ${COUNT} boletos cada vez que lo uses.", + "friendPromoCodeExpireText": "El código expirará en ${EXPIRE_HOURS} hora(s) y solo funciona para jugadores nuevos.", + "friendPromoCodeInstructionsText": "Para usarlo, abre ${APP_NAME} y ve a \"Ajustes->Avanzado->Enviar Información\"\nVisita bombsquadgame.com para enlaces de descarga de todas las plataformas disponibles.", + "friendPromoCodeRedeemLongText": "Se puede canjear por ${COUNT} boletos gratis hasta por ${MAX_USES} personas.", + "friendPromoCodeRedeemShortText": "Puede ser canjeado por ${COUNT} boletos en el juego.", + "friendPromoCodeWhereToEnterText": "(en \"Ajustes->Avanzado->Enviar Información\")", + "getFriendInviteCodeText": "Obtener Código de Invitación de Amigo", + "googlePlayDescriptionText": "Invitar jugadores de Google Play a tu partida:", + "googlePlayInviteText": "Invitar", + "googlePlayReInviteText": "Hay ${COUNT} jugador(es) de Google Play en tu fiesta\nque se desconectarán si creas una nueva invitación.\nInclúyelos en la nueva invitación para tenerlos de vuelta.", + "googlePlaySeeInvitesText": "Ver Invitaciones", + "googlePlayText": "Google Play", + "googlePlayVersionOnlyText": "(Versión Android / Google Play)", + "hostPublicPartyDescriptionText": "Alojar una Partida Pública", + "hostingUnavailableText": "Alojamiento No Disponible", + "inDevelopmentWarningText": "Nota:\n\nJugar en red es una función todavía en desarrollo.\nPor ahora, es altamente recomendado que todos\nlos jugadores estén en la misma red Wi-Fi.", + "internetText": "Internet", + "inviteAFriendText": "¿Tus amigos no tienen el juego? Invítalos a\nprobarlo y recibirán ${COUNT} boletos gratis.", + "inviteFriendsText": "Invitar Amigos", + "joinPublicPartyDescriptionText": "Unirse a una Partida Pública", + "localNetworkDescriptionText": "Unirse a una Partida Cercana (LAN, Bluetooth, etc.)", + "localNetworkText": "Red Local", + "makePartyPrivateText": "Hacer Mi Partida Privada", + "makePartyPublicText": "Hacer Mi Partida Pública", + "manualAddressText": "Dirección", + "manualConnectText": "Conectar", + "manualDescriptionText": "Unirse a una partida por dirección:", + "manualJoinSectionText": "Unirse Por Dirección", + "manualJoinableFromInternetText": "¿Se pueden unir desde internet?:", + "manualJoinableNoWithAsteriskText": "NO*", + "manualJoinableYesText": "SÍ", + "manualRouterForwardingText": "*para arreglarlo, configura tu router para que redireccione el puerto UDP ${PORT} a tu dirección local", + "manualText": "Manual", + "manualYourAddressFromInternetText": "Tu dirección desde internet:", + "manualYourLocalAddressText": "Tu dirección local:", + "nearbyText": "Cerca", + "noConnectionText": "", + "noPartiesAddedText": "Sin Fiestas Añadidas", + "otherVersionsText": "(otras versiones)", + "partyCodeText": "Código de La Partida", + "partyInviteAcceptText": "Aceptar", + "partyInviteDeclineText": "Denegar", + "partyInviteIgnoreText": "Ignorar", + "partyInviteText": "${NAME} te ha invitado\na unirse a su partida!", + "partyNameText": "Nombre de La Partida", + "partyServerRunningText": "Tu servidor se esta ejecutando.", + "partySizeText": "tamaño de partida", + "partyStatusCheckingText": "comprobando estado...", + "partyStatusJoinableText": "ahora se pueden unir a tu partida desde internet", + "partyStatusNoConnectionText": "incapaz de conectarse al servidor", + "partyStatusNotJoinableText": "no se pueden unir a tu partida desde internet", + "partyStatusNotPublicText": "tu partida no es pública", + "pingText": "ping", + "portText": "Puerto", + "privatePartyCloudDescriptionText": "Las partidas privadas se ejecutan en la nube; no requieren configuración del router.", + "privatePartyHostText": "Alojar una Partida Privada", + "privatePartyJoinText": "Unirse a una Partida Privada", + "privateText": "Privado", + "publicHostRouterConfigText": "Esto puede requerir configurar el reenvío de puertos en tu router. Para una opción más fácil, aloja una partida privada.", + "publicText": "Público", + "requestingAPromoCodeText": "Pidiendo un código...", + "sendDirectInvitesText": "Enviar Directamente La Invitación", + "shareThisCodeWithFriendsText": "Comparte este código con tus amigos:", + "showMyAddressText": "Mostrar Mi Dirección", + "startHostingPaidText": "Alojar Ahora Por ${COST}", + "startHostingText": "Alojar", + "startStopHostingMinutesText": "Puede iniciar y detener el alojamiento de forma gratuita durante los próximos ${MINUTES} minuto(s).", + "stopHostingText": "Dejar de Alojar", + "titleText": "Reunir", + "wifiDirectDescriptionBottomText": "Si todo los dispositivos disponen de 'Wi-fi Directo', deberían poder utilizarlo para\nencontrar y conectarse entre ellos. Cuando todos estén conectados, puedes formar \npartidas, usando la pestaña 'Red Local', como si estuvieran en la misma red Wi-fi.\n\nPara mejores resultados, el alojador del Wi-fi Directo también debe ser el alojador de la partida en ${APP_NAME}.", + "wifiDirectDescriptionTopText": "Wi-Fi Directo puede ser utilizado para conectar dispositivos Android sin\ntener que utilizar una red Wi-Fi. Esto funciona mejor en Android 4.2 hacia adelante.\n\nPara utilizarlo, abre los ajustes de Wi-Fi y busca 'Wi-Fi Directo' en el menú.", + "wifiDirectOpenWiFiSettingsText": "Abrir Ajustes de Wi-Fi", + "wifiDirectText": "Wi-Fi Directo", + "worksBetweenAllPlatformsText": "(funciona en todas las plataformas)", + "youHaveBeenSentAPromoCodeText": "Has enviado un código promocional de ${APP_NAME}:" + }, + "getTicketsWindow": { + "freeText": "¡GRATIS!", + "freeTicketsText": "Boletos Gratis", + "inProgressText": "Ya hay una transacción en progreso; por favor inténtalo mas tarde.", + "purchasesRestoredText": "Compras restauradas.", + "receivedTicketsText": "¡Recibiste ${COUNT} boletos!", + "restorePurchasesText": "Restaurar Compras", + "ticketPack1Text": "Paquete de Boletos Pequeño", + "ticketPack2Text": "Paquete de Boletos Mediano", + "ticketPack3Text": "Paquete de Boletos Grande", + "ticketPack4Text": "Paquete de Boletos Jumbo", + "ticketPack5Text": "Paquete de Boletos Mamut", + "ticketPack6Text": "Paquete de Boletos Supremo", + "ticketsFromASponsorText": "Ver un anuncio\na cambio de ${COUNT} boletos", + "ticketsText": "${COUNT} Boletos", + "titleText": "Conseguir Boletos", + "unavailableLinkAccountText": "Disculpe, las compras no están disponibles en esta plataforma.\nComo una solución, puedes enlazar esta cuenta a otra\nplataforma y hacer tus compras desde ahí.", + "unavailableTemporarilyText": "No disponible por el momento; por favor inténtalo más tarde.", + "unavailableText": "Disculpe, esto no está disponible.", + "versionTooOldText": "Lo sentimos, esta versión del juego es muy antigua; por favor actualízala a una nueva versión.", + "youHaveShortText": "tienes ${COUNT}", + "youHaveText": "tienes ${COUNT} boletos" + }, + "goldPass": { + "desc1InfTokensText": "Fichas infinitas.", + "desc2NoAdsText": "Sin anuncios.", + "desc3ForeverText": "Para siempre.", + "goldPassText": "Pase de Oro" + }, + "googlePlayPurchasesNotAvailableText": "Las compras de Google Play no están disponibles.\nEs posible que debas actualizar la aplicación de tu tienda.", + "googlePlayServicesNotAvailableText": "Los Servicios de Google Play no están disponibles.\nAlgunas funciones de la aplicación pueden estar deshabilitadas.", + "googlePlayText": "Google Play", + "graphicsSettingsWindow": { + "alwaysText": "Siempre", + "fullScreenCmdText": "Pantalla completa (Cmd-F)", + "fullScreenCtrlText": "Pantalla completa (Ctrl-F)", + "fullScreenText": "Pantalla completa", + "gammaText": "Gama", + "highText": "Alto", + "higherText": "Altísimo", + "lowText": "Bajo", + "maxFPSText": "FPS Máximos", + "mediumText": "Medio", + "neverText": "Nunca", + "resolutionText": "Resolución", + "showFPSText": "Mostrar FPS", + "texturesText": "Texturas", + "titleText": "Gráficos", + "tvBorderText": "Borde del TV", + "verticalSyncText": "Sincronización Vertical", + "visualsText": "Visuales" + }, + "helpWindow": { + "bombInfoText": "- Bomba -\nMás fuerte que los golpes, pero puede\nresultar en autolesiones graves.\nPara mejores resultados, tírala hacia tus\noponentes antes de que explote.", + "canHelpText": "${APP_NAME} te puede ayudar.", + "controllersInfoText": "Puedes jugar ${APP_NAME} con tus amigos en una red o todos pueden\njugar en el mismo dispositivo si se tienen varios controles.\n${APP_NAME} soporta una gran variedad de ellos; incluso puedes utilizar\ntus dispositivos móviles como controles instalando la app '${REMOTE_APP_NAME}'.\nVe a \"Ajustes->Controles\" para más información.", + "controllersInfoTextRemoteOnly": "Tu puedes jugar ${APP_NAME} con tus amigos en la red o pueden\njugar todos en el mismo dispositivo usando los teléfonos\ncomo controles con la aplicación '${REMOTE_APP_NAME}'.", + "controllersText": "Controles", + "controlsSubtitleText": "Tu amistoso personaje de ${APP_NAME} tiene algunas acciones básicas:", + "controlsText": "Controles", + "devicesInfoText": "La versión de RV de ${APP_NAME} se puede jugar en la red con la versión \nregular, así que saca tus celulares, tablets y computadoras extras y que \nempieze el juego. Es muy útil conectar un dispositivo con la versión\nregular a uno con la versión VR para que todos los que estén fuera\npuedan ver la acción.", + "devicesText": "Dispositivos", + "friendsGoodText": "Cuantos más, mejor. ${APP_NAME} es más divertido con muchos \namigos y soporta hasta 8 a la vez, lo que nos lleva a:", + "friendsText": "Amigos", + "jumpInfoText": "- Saltar -\nSalta para cruzar pequeños espacios, \npara tirar cosas más lejos y \npara expresar sentimientos de alegría.", + "orPunchingSomethingText": "O golpear algo, tirarlo por un precipicio y explotarlo en plena caída con una bomba pegajosa.", + "pickUpInfoText": "- Recoger -\nAgarra banderas, enemigos o cualquier\notra cosa no pegada al suelo.\nPresiona de nuevo para lanzar.", + "powerupBombDescriptionText": "Te permite sacar tres bombas\nrapidamente en lugar de solo una.", + "powerupBombNameText": "Bombas Triples", + "powerupCurseDescriptionText": "Probablemente quieras evitar estos.\n ...¿o talvez no?", + "powerupCurseNameText": "Maldición", + "powerupHealthDescriptionText": "Te restaura la salud completamente.\nNunca lo habrías adivinado.", + "powerupHealthNameText": "Botiquín", + "powerupIceBombsDescriptionText": "Más débiles que las bombas normales\npero dejan a tus enemigos congelados\ny particularmente frágiles.", + "powerupIceBombsNameText": "Bombas de Hielo", + "powerupImpactBombsDescriptionText": "Levemente más débiles que las bombas regulares, pero explotan al impacto.", + "powerupImpactBombsNameText": "Insta-Bombas", + "powerupLandMinesDescriptionText": "Estas vienen en grupos de 3;\nSon buenas para defensa territorial\no para detener enemigos veloces.", + "powerupLandMinesNameText": "Minas Terrestres", + "powerupPunchDescriptionText": "Hacen que tus golpes sean más duros,\nmás rápidos, mejores y más fuertes.", + "powerupPunchNameText": "Guantes de Boxeo", + "powerupShieldDescriptionText": "Absorbe un poco de daño\npara que asi no tengas que hacerlo tu.", + "powerupShieldNameText": "Escudo-de-Energía", + "powerupStickyBombsDescriptionText": "Se adhieren a todo lo que toquen.\nProducen hilaridad.", + "powerupStickyBombsNameText": "Bombas Pegajosas", + "powerupsSubtitleText": "Obviamente, ningún juego estaría completo sin potenciadores:", + "powerupsText": "Potenciadores", + "punchInfoText": "- Golpear -\nLos golpes hacen más daño cuanto\nmás rápido se muevan tus puños, así que\ncorre, salta y gira como un loco.", + "runInfoText": "- Correr -\nMantén CUALQUIER botón para correr. Los gatillos o botones traseros funcionan bien si los tienes.\nCorrer te lleva a lugares más rápido pero es más difícil girar, así que ten cuidado con los barrancos.", + "someDaysText": "Hay días en los que sientes ganas de golpear algo. O volar algo.", + "titleText": "Ayuda de ${APP_NAME}", + "toGetTheMostText": "Para sacar el máximo partido a este juego, necesitas:", + "welcomeText": "¡Bienvenido a ${APP_NAME}!" + }, + "holdAnyButtonText": "", + "holdAnyKeyText": "", + "hostIsNavigatingMenusText": "- ${HOST} está navegando los menús como un pro -", + "importPlaylistCodeInstructionsText": "Usa el siguiente código para importar esta lista de juegos en otra parte:", + "importPlaylistSuccessText": "Lista de Juegos '${NAME}' importada ${TYPE}", + "importText": "Importar", + "importingText": "Importando...", + "inGameClippedNameText": "en el juego será\n\"${NAME}\"", + "inboxText": "Bandeja de Entrada", + "installDiskSpaceErrorText": "ERROR: Incapaz de completar la instalación.\nPuede que te hayas quedado sin espacio en tu dispositivo.\nLibera un poco de tu espacio e intenta de nuevo.", + "internal": { + "arrowsToExitListText": "pulsa ${LEFT} o ${RIGHT} para salir de la lista", + "buttonText": "botón", + "cantKickHostError": "No puedes expulsar al anfitrión.", + "chatBlockedText": "${NAME} está bloqueado del chat por ${TIME} segundos.", + "connectedToGameText": "Unido a '${NAME}'", + "connectedToPartyText": "¡Unido a la partida de ${NAME}!", + "connectingToPartyText": "Conectando...", + "connectionFailedHostAlreadyInPartyText": "Conexión fallida; el anfitrión está en otra partida.", + "connectionFailedPartyFullText": "Conexión fallida; la partida está llena.", + "connectionFailedText": "Conexión fallida.", + "connectionFailedVersionMismatchText": "Conexión fallida; el anfitrión corre una versión diferente del juego.\nAsegúrese de que ambos están actualizados y vuelva a intentar.", + "connectionRejectedText": "Conexión rechazada.", + "controllerConnectedText": "${CONTROLLER} conectado.", + "controllerDetectedText": "1 control detectado.", + "controllerDisconnectedText": "${CONTROLLER} desconectado.", + "controllerDisconnectedTryAgainText": "${CONTROLLER} desconectado. Intenta conectarlo de nuevo.", + "controllerForMenusOnlyText": "Este control no puede ser usado para jugar; solo para navegar por menús.", + "controllerReconnectedText": "${CONTROLLER} reconectado.", + "controllersConnectedText": "${COUNT} controles conectados.", + "controllersDetectedText": "${COUNT} controles detectados.", + "controllersDisconnectedText": "${COUNT} controles desconectados.", + "corruptFileText": "Archivo(s) corrupto(s) detectado(s). Por favor intenta reinstalando o contácta a ${EMAIL}", + "errorPlayingMusicText": "Error reproduciendo música: ${MUSIC}", + "errorResettingAchievementsText": "Incapaz de reiniciar los logros; por favor inténtalo de nuevo más tarde.", + "hasMenuControlText": "${NAME} tiene el control del menú.", + "incompatibleNewerVersionHostText": "El anfitrión está ejecutando una versión nueva del juego.\nActualiza a la última versión y vuelve a intentarlo.", + "incompatibleVersionHostText": "El anfitrión está ejecutando una versión diferente del juego.\nAsegúrese de que ambos están actualizados y vuelva a intentar.", + "incompatibleVersionPlayerText": "${NAME} está ejecutando una versión diferente del juego.\nAsegúrate de que ambos estén actualizados y vuelva a intentarlo.", + "invalidAddressErrorText": "Error: dirección inválida.", + "invalidNameErrorText": "Error: nombre inválido.", + "invalidPortErrorText": "Error: puerto inválido.", + "invitationSentText": "Invitación enviada.", + "invitationsSentText": "${COUNT} invitaciones enviadas.", + "joinedPartyInstructionsText": "Alguien se ha unido a tu fiesta.\nVe a 'Jugar' para iniciar un juego.", + "keyboardText": "Teclado", + "kickIdlePlayersKickedText": "Expulsando a ${NAME} por estar inactivo.", + "kickIdlePlayersWarning1Text": "${NAME} será expulsado en ${COUNT} segundos si sigue inactivo.", + "kickIdlePlayersWarning2Text": "(puedes apagar esto en Ajustes -> Avanzado)", + "leftGameText": "Abandonó '${NAME}'.", + "leftPartyText": "Abandonó la partida de ${NAME}.", + "noMusicFilesInFolderText": "La carpeta no contiene archivos de audio.", + "playerJoinedPartyText": "¡${NAME} se unió a la partida!", + "playerLeftPartyText": "${NAME} abandonó la partida.", + "rejectingInviteAlreadyInPartyText": "Rechazando invitación (ya estás en una partida).", + "serverRestartingText": "El servidor se está reiniciando. Por favor vuelva a unirse en un momento...", + "serverShuttingDownText": "El servidor está fuera de servicio...", + "signInErrorText": "Error iniciando sesión.", + "signInNoConnectionText": "Imposible iniciar sesión. (¿no hay conexión a internet?)", + "telnetAccessDeniedText": "ERROR: El usuario no concedió acceso telnet.", + "timeOutText": "(tiempo fuera en ${TIME} segundo/s)", + "touchScreenJoinWarningText": "Te uniste con la pantalla táctil.\nSi este fue un error, presiona 'Menú->Abandonar Juego' con ella.", + "touchScreenText": "Pantalla Táctil", + "unableToCompleteTryAgainText": "Incapaz de completar esto ahora mismo.\nPor favor, inténtelo de nuevo.", + "unableToResolveHostText": "Error: incapaz de encontrar el anfitrión.", + "unavailableNoConnectionText": "No disponible por el momento (¿no tienes conexión a internet?)", + "vrOrientationResetCardboardText": "Usa esto para reiniciar la orientación de RV.\nPara jugar el juego necesitarás un control externo.", + "vrOrientationResetText": "Orientación de RV reiniciada.", + "willTimeOutText": "(caducará si está inactivo)" + }, + "inventoryText": "Inventario", + "jumpBoldText": "SALTAR", + "jumpText": "Saltar", + "keepText": "Mantener", + "keepTheseSettingsText": "¿Mantener estos ajustes?", + "keyboardChangeInstructionsText": "Presiona dos veces el espacio para cambiar los teclados.", + "keyboardNoOthersAvailableText": "No hay más teclados disponibles.", + "keyboardSwitchText": "Cambiando teclado a \"${NAME}\".", + "kickOccurredText": "${NAME} ha sido expulsado.", + "kickQuestionText": "¿Expulsar a ${NAME}?", + "kickText": "Expulsar", + "kickVoteCantKickAdminsText": "Los administradores no pueden ser expulsados.", + "kickVoteCantKickSelfText": "No puedes expulsarte a ti mismo.", + "kickVoteFailedNotEnoughVotersText": "No hay suficientes jugadores para votar.", + "kickVoteFailedText": "Votación de expulsión fallida.", + "kickVoteStartedText": "Se ha iniciado una votación de expulsión para '${NAME}'.", + "kickVoteText": "Votar para Expulsar", + "kickVotingDisabledText": "El voto para expulsar esta desactivado.", + "kickWithChatText": "Escribe ${YES} en el chat para \"Si\" y ${NO} para \"No\".", + "killsTallyText": "${COUNT} asesinatos", + "killsText": "Asesinatos", + "kioskWindow": { + "easyText": "Fácil", + "epicModeText": "Modo Lento", + "fullMenuText": "Menú Completo", + "hardText": "Difícil", + "mediumText": "Medio", + "singlePlayerExamplesText": "Ejemplos de 1 Jugador / Modo Cooperativo", + "versusExamplesText": "Ejemplos de Versus" + }, + "languageSetText": "El idioma ahora es \"${LANGUAGE}\".", + "lapNumberText": "Vuelta ${CURRENT}/${TOTAL}", + "lastGamesText": "(últimos ${COUNT} juegos)", + "leaderboardsText": "Clasificaciones", + "league": { + "allTimeText": "Todo El Tiempo", + "currentSeasonText": "Temporada Actual (${NUMBER})", + "leagueFullText": "Liga ${NAME}", + "leagueRankText": "Rango de Liga", + "leagueText": "Liga", + "rankInLeagueText": "#${RANK}, ${NAME} Liga${SUFFIX}", + "seasonEndedDaysAgoText": "La temporada terminó hace ${NUMBER} día(s).", + "seasonEndsDaysText": "La temporada termina en ${NUMBER} día(s).", + "seasonEndsHoursText": "La temporada termina en ${NUMBER} hora(s).", + "seasonEndsMinutesText": "La temporada termina en ${NUMBER} minuto(s).", + "seasonText": "Temporada ${NUMBER}", + "tournamentLeagueText": "Debes alcanzar la liga ${NAME} para entrar a este torneo.", + "trophyCountsResetText": "El conteo de trofeos se reiniciará la próxima temporada.", + "upToDateBonusDescriptionText": "Los jugadores con una version reciente \ndel juego obtienen un bonus del ${PERCENT}% aquí.", + "upToDateBonusText": "Bono Actualizado" + }, + "learnMoreText": "Aprender Más", + "levelBestScoresText": "Mejores puntajes en ${LEVEL}", + "levelBestTimesText": "Mejores tiempos en ${LEVEL}", + "levelIsLockedText": "${LEVEL} está bloqueado.", + "levelMustBeCompletedFirstText": "${LEVEL} debe completarse primero.", + "levelText": "Nivel ${NUMBER}", + "levelUnlockedText": "¡Nivel Desbloqueado!", + "livesBonusText": "Bono de Vidas", + "loadingText": "cargando", + "loadingTryAgainText": "Cargando; vuelve a intentarlo en un momento...", + "macControllerSubsystemBothText": "Ambos (no recomendado)", + "macControllerSubsystemClassicText": "Clásico", + "macControllerSubsystemDescriptionText": "(intenta cambiar esto si tus controles no están funcionando)", + "macControllerSubsystemMFiNoteText": "Control hecho para iOS/Mac detectado;\nTal vez quieras activar esto en Ajustes -> Controles", + "macControllerSubsystemMFiText": "Creado para iOS/Mac", + "macControllerSubsystemTitleText": "Soporte del Control", + "mainMenu": { + "creditsText": "Créditos", + "demoMenuText": "Menú Demo", + "endGameText": "Terminar Juego", + "endTestText": "Terminar Prueba", + "exitGameText": "Salir del Juego", + "exitToMenuText": "¿Salir al menú?", + "howToPlayText": "Cómo Jugar", + "justPlayerText": "(Solo ${NAME})", + "leaveGameText": "Abandonar Juego", + "leavePartyConfirmText": "¿Realmente deseas abandonar la partida?", + "leavePartyText": "Abandonar Partida", + "quitText": "Salir", + "resumeText": "Reanudar", + "settingsText": "Ajustes" + }, + "makeItSoText": "Que así sea", + "mapSelectGetMoreMapsText": "Obtener Más Mapas...", + "mapSelectText": "Seleccionar...", + "mapSelectTitleText": "Mapas para ${GAME}", + "mapText": "Mapa", + "maxConnectionsText": "Máximo de Conexiones", + "maxPartySizeText": "Capacidad Máxima de La Partida", + "maxPlayersText": "Máximo de Jugadores", + "merchText": "¡Mercancía!", + "modeArcadeText": "Modo Arcade", + "modeClassicText": "Modo Clásico", + "modeDemoText": "Modo Demo", + "moreSoonText": "Más próximamente...", + "mostDestroyedPlayerText": "Jugador Más Destruido", + "mostValuablePlayerText": "Jugador Más Valioso", + "mostViolatedPlayerText": "Jugador Más Violado", + "mostViolentPlayerText": "Jugador Más Violento", + "moveText": "Mover", + "multiKillText": "¡¡¡COMBO DE ${COUNT}!!!", + "multiPlayerCountText": "${COUNT} jugadores", + "mustInviteFriendsText": "Nota: debes invitar a tus amigos en\nel panel \"${GATHER}\" o conectar\ncontroles para jugar multijugador.", + "nameBetrayedText": "${NAME} traicionó a ${VICTIM}.", + "nameDiedText": "${NAME} ha muerto.", + "nameKilledText": "${NAME} mató a ${VICTIM}.", + "nameNotEmptyText": "¡El nombre no puede quedar vacío!", + "nameScoresText": "¡${NAME} Anotó!", + "nameSuicideKidFriendlyText": "${NAME} murió accidentalmente.", + "nameSuicideText": "${NAME} cometió suicidio.", + "nameText": "Nombre", + "nativeText": "Nativo", + "newExclaimText": "¡Nuevo!", + "newPersonalBestText": "¡Nuevo récord personal!", + "newTestBuildAvailableText": "¡Una nueva build de prueba está disponible! (${VERSION} build ${BUILD}).\nObténla en ${ADDRESS}", + "newText": "Nuevo", + "newVersionAvailableText": "¡Una nueva version de ${APP_NAME} está disponible! (${VERSION})", + "nextAchievementsText": "Siguientes Logros:", + "nextLevelText": "Siguiente Nivel", + "noAchievementsRemainingText": "- ninguno", + "noContinuesText": "(sin re-intentos)", + "noExternalStorageErrorText": "No se encontró almacenamiento externo en este dispositivo", + "noGameCircleText": "Error: no registrado en GameCircle", + "noMessagesText": "Sin mensajes.", + "noPluginsInstalledText": "Sin Complementos Instalados", + "noScoresYetText": "Sin puntajes aún.", + "noServersFoundText": "No se encontraron servidores.", + "noThanksText": "No Gracias", + "noTournamentsInTestBuildText": "ADVERTENCIA: Los puntajes de los torneos en esta versión de prueba serán ignorados.", + "noValidMapsErrorText": "Mapas válidos no encontrados para este tipo de juego.", + "notEnoughPlayersRemainingText": "No hay jugadores suficientes restantes; sal e inicia un nuevo juego.", + "notEnoughPlayersText": "¡Necesitas por lo menos ${COUNT} jugadores para comenzar!", + "notEnoughTicketsText": "¡No tienes suficientes tickets!", + "notNowText": "Ahora No", + "notSignedInErrorText": "Debes iniciar sesión para hacer esto.", + "notSignedInGooglePlayErrorText": "Debes iniciar sesión con Google Play para hacer esto.", + "notSignedInText": "no registrado", + "notUsingAccountText": "Nota: ignorando su cuenta de ${SERVICE}.\nVaya a 'Cuenta -> Iniciar sesión con ${SERVICE}' si quieres usarla.", + "nothingIsSelectedErrorText": "¡No hay nada seleccionado!", + "numberText": "#${NUMBER}", + "offText": "Apagar", + "okText": "Aceptar", + "onText": "Encender", + "oneMomentText": "Un Momento...", + "onslaughtRespawnText": "${PLAYER} reaparecerá en la oleada ${WAVE}", + "openMeText": "Ábreme!", + "openNowText": "Abrir Ahora", + "openText": "Abrir", + "orText": "${A} o ${B}", + "otherText": "Otros...", + "outOfText": "(#${RANK} de ${ALL})", + "ownFlagAtYourBaseWarning": "¡Su propia bandera debe estar\nen su base para anotar!", + "partyWindow": { + "chatMessageText": "Mensaje del Chat", + "emptyText": "Tu partida está vacía", + "hostText": "(anfitrión)", + "sendText": "Enviar", + "titleText": "Tu Partida" + }, + "pausedByHostText": "(pausado por el anfitrión)", + "perfectWaveText": "¡Oleada Perfecta!", + "pickUpText": "Recoger", + "playModes": { + "coopText": "Cooperativo", + "freeForAllText": "Todos contra Todos", + "multiTeamText": "Múlti-Equipo", + "singlePlayerCoopText": "Un Jugador / Equipos", + "teamsText": "Equipos" + }, + "playText": "Jugar", + "playWindow": { + "oneToFourPlayersText": "1-4 jugadores", + "titleText": "Jugar", + "twoToEightPlayersText": "2-8 jugadores" + }, + "playerCountAbbreviatedText": "${COUNT}j", + "playerDelayedJoinText": "${PLAYER} entrará al comienzo de la siguiente ronda.", + "playerInfoText": "Información del Jugador", + "playerLeftText": "${PLAYER} abandonó el juego.", + "playerLimitReachedText": "Límite de ${COUNT} jugadores alcanzado; no se permiten más.", + "playerProfilesWindow": { + "cantDeleteAccountProfileText": "No puedes borrar el perfil de tu cuenta.", + "deleteButtonText": "Borrar\nPerfil", + "deleteConfirmText": "¿Borrar '${PROFILE}'?", + "editButtonText": "Editar\nPerfil", + "explanationText": "(nombres de jugadores personalizados y apariencias para esta cuenta)", + "newButtonText": "Nuevo\nPerfil", + "titleText": "Perfiles del Jugador" + }, + "playerText": "Jugador", + "playlistNoValidGamesErrorText": "Esta lista de juegos contiene juegos desbloqueables no válidos.", + "playlistNotFoundText": "playlist no encontrada", + "playlistText": "Lista de Juegos", + "playlistsText": "Listas de juegos", + "pleaseRateText": "Si te gusta ${APP_NAME}, por favor tomate un momento\npara calificar o escribir una reseña. Esto proporciona\ninformación útil y ayuda al soporte del futuro desarrollo del juego.\n\n¡gracias!\n-eric", + "pleaseWaitText": "Por favor, espera...", + "pluginClassLoadErrorText": "Error cargando el complemento '${PLUGIN}': ${ERROR}", + "pluginInitErrorText": "Error iniciando complemento '${PLUGIN}': ${ERROR}", + "pluginSettingsText": "Ajustes de Complementos", + "pluginsAutoEnableNewText": "Activar automáticamente los nuevos complementos", + "pluginsDetectedText": "Complemento(s) detectado(s). Reinicia el juego o ve a ajustes para configurarlo.", + "pluginsDisableAllText": "Deshabilitar Todos Los Complementos", + "pluginsEnableAllText": "Habilitar Todos Los Complementos", + "pluginsRemovedText": "${NUM} complemento(s) ya no está(n).", + "pluginsText": "Complementos", + "practiceText": "Práctica", + "pressAnyButtonPlayAgainText": "Presiona cualquier botón para jugar de nuevo...", + "pressAnyButtonText": "Presiona cualquier botón para continuar...", + "pressAnyButtonToJoinText": "presiona cualquier botón para unirte al juego...", + "pressAnyKeyButtonPlayAgainText": "Presiona cualquier tecla/botón para jugar de nuevo...", + "pressAnyKeyButtonText": "Presiona cualquier botón/tecla para continuar...", + "pressAnyKeyText": "Presiona cualquier tecla...", + "pressJumpToFlyText": "** Presiona saltar repetidamente para volar **", + "pressPunchToJoinText": "presiona GOLPEAR para unirte...", + "pressToOverrideCharacterText": "presiona ${BUTTONS} para cambiar de personaje", + "pressToSelectProfileText": "presiona ${BUTTONS} para seleccionar un perfil", + "pressToSelectTeamText": "presiona ${BUTTONS} para seleccionar un equipo", + "promoCodeWindow": { + "codeText": "Código", + "enterText": "Ingresar" + }, + "promoSubmitErrorText": "Error al enviar código; comprueba tu conexión a Internet", + "ps3ControllersWindow": { + "macInstructionsText": "Apaga tu PS3, asegúrate que el Bluetooth esté activado en\ntu Mac, a continuación, conecta el control a tu Mac a través \nde un cable USB para sincronizarlo. A partir de entonces, se \npuede utilizar el botón de inicio del control para conectarlo con\ntu Mac ya sea por cable (USB) o el modo inalámbrico (Bluetooth).\n\nEn algunas Macs es posible que te pida una contraseña al momento de sincronizar.\nSi esto ocurre, consulta el siguiente tutorial o busca en Google para obtener ayuda.\n\n\n\n\nLos controles de PS3 conectados inalámbricamente deberían de aparecer en la lista de\ndispositivos en Preferencias del Sistema->Bluetooth. Puede que tengas que eliminarlos\nde esa lista cuando quieras utilizarlos de nuevo con tu PS3.\n\nAsimismo, asegúrate de desconectarlos del Bluetooth cuando no los estés\nusando o las baterías se queden sin energía.\n\nEl Bluetooth puede soportat hasta 7 dispositivos,\naunque tu kilometraje puede variar.", + "ouyaInstructionsText": "Para usar un control de PS3 con tu OUYA, tienes que conectarlo una sola vez con\nun cable USB para sincronizarlo. Al hacer esto se pueden desconectar tus otros \ncontroles, por lo que debes reiniciar tu OUYA y desconectar el cable USB.\n\nA partir de entonces deberías ser capaz de usar el botón INICIO para conectarte de\nforma inalámbrica. Cuando hayas terminado de jugar, mantén pulsado el botón INICIO\ndurante 10 segundos para apagar el control, de lo contrario puede permanecer encendido\ny gastar las baterías.", + "pairingTutorialText": "sincronizando video tutorial", + "titleText": "Para usar Controles de PS3 con ${APP_NAME}:" + }, + "punchBoldText": "GOLPEAR", + "punchText": "Golpear", + "purchaseForText": "Comprar por ${PRICE}", + "purchaseGameText": "Comprar Juego", + "purchaseNeverAvailableText": "Lo siento, las compras no están disponibles en esta build.\nIntenta iniciar sesión en otra plataforma y realizar compras desde ahí.", + "purchaseNotAvailableText": "Esta compra no está disponible.", + "purchasingText": "Comprando...", + "quitGameText": "¿Salir de ${APP_NAME}?", + "quittingIn5SecondsText": "Saliendo en 5 segundos...", + "randomPlayerNamesText": "Pablo, Cristiano, Fulanito, Macondo, Margarita, Martín, Martina, Fabian, Felipe, Franco, Fernando, Pancho, Pepito, David, Diego, Tomás, Andres, Federico, Juan, Joaquín, Huevo Duro, Chico Pobre, Chico Rico", + "randomText": "Generar", + "rankText": "Rango", + "ratingText": "Valoración", + "reachWave2Text": "Llega hasta la segunda horda\npara clasificar.", + "readyText": "listo", + "recentText": "Reciente", + "remoteAppInfoShortText": "${APP_NAME} es más divertido cuando se juega con la familia y amigos.\nConecta uno o más controles de hardware o instala la app\n${REMOTE_APP_NAME} en los teléfonos o tabletas para usarlos\ncomo controles.", + "remote_app": { + "app_name": "Control Remoto BombSquad", + "app_name_short": "BSRemoto", + "button_position": "Posición de Los Botones", + "button_size": "Tamaño de Los Botones", + "cant_resolve_host": "No se encuentra el anfitrión.", + "capturing": "Captando...", + "connected": "Conectado.", + "description": "Usa tu teléfono o tableta como control para BombSquad.\nHasta 8 dispositivos pueden conectarse a la vez para un épico caos de multijugador local en un solo TV o tableta.", + "disconnected": "Desconectado por el servidor.", + "dpad_fixed": "fijo", + "dpad_floating": "flotante", + "dpad_position": "Posición del D-Pad", + "dpad_size": "Tamaño del D-Pad", + "dpad_type": "Tipo de D-Pad", + "enter_an_address": "Ingresa una Dirección", + "game_full": "El juego está lleno o no acepta conexiones.", + "game_shut_down": "El juego se ha cerrado.", + "hardware_buttons": "Botones del Hardware", + "join_by_address": "Unirse por Dirección...", + "lag": "Lag: ${SECONDS} segundo/s", + "reset": "Restablecer a predeterminado", + "run1": "Ejecutar 1", + "run2": "Ejecutar 2", + "searching": "Buscando partidas de BombSquad...", + "searching_caption": "Toca el nombre de la partida para unirte.\nTen en cuenta que debes estar en la misma conexión Wi-Fi de la partida.", + "start": "Empezar", + "version_mismatch": "Las versiones no coinciden.\nAsegurate que BombSquad y BombSquad Remote\nestán actualizados e intenta de nuevo." + }, + "removeInGameAdsText": "Desbloquea \"${PRO}\" en la tienda para quitar la publicidad del juego.", + "removeInGameAdsTokenPurchaseText": "OFERTA DE TIEMPO LIMITADO: Compra CUALQUIER paquete de fichas para quitar los anuncios del juego.", + "renameText": "Renombrar", + "replayEndText": "Terminar Repetición", + "replayNameDefaultText": "Repetición Último Juego", + "replayReadErrorText": "Error leyendo archivo de repetición.", + "replayRenameWarningText": "Renombra \"${REPLAY}\" después de un juego si quieres quedarte con el; o sino será reemplazado.", + "replayVersionErrorText": "Lo sentimos, esta repetición fue hecha en una\nversión diferente del juego y no se puede usar.", + "replayWatchText": "Ver Repetición", + "replayWriteErrorText": "Error creando archivo de repetición.", + "replaysText": "Repeticiones", + "reportPlayerExplanationText": "Usa este email para reportar trampas, lenguaje inapropiado u otro mal comportamiento.\nPor favor, describelo aquí abajo:", + "reportThisPlayerCheatingText": "Trampas", + "reportThisPlayerLanguageText": "Lenguaje Inapropiado", + "reportThisPlayerReasonText": "¿Qué te gustaría reportar?", + "reportThisPlayerText": "Reportar Este Jugador", + "requestingText": "Solicitando...", + "restartText": "Reiniciar", + "retryText": "Reintentar", + "revertText": "Deshacer", + "runText": "Correr", + "saveText": "Guardar", + "scanScriptsErrorText": "Error(es) escaneando script(s); Vea el registro para más detalles.", + "scanScriptsMultipleModulesNeedUpdatesText": "${PATH} y ${NUM} otro(s) módulo(s) se deberán actualizar para el api ${API}.", + "scanScriptsSingleModuleNeedsUpdatesText": "${PATH} se deberá actualizar para el api ${API}", + "scoreChallengesText": "Desafíos de Puntuación", + "scoreListUnavailableText": "La lista de puntajes no está disponible.", + "scoreText": "Puntaje", + "scoreUnits": { + "millisecondsText": "Milisegundos", + "pointsText": "Puntos", + "secondsText": "Segundos" + }, + "scoreWasText": "(era ${COUNT})", + "selectText": "Elegir", + "sendInfoDescriptionText": "Envía información del estado de la cuenta y de la aplicación al desarrollador.\nPor favor incluya su nombre o el motivo del envío.", + "seriesWinLine1PlayerText": "GANA LA", + "seriesWinLine1TeamText": "GANA LA", + "seriesWinLine1Text": "GANA LA", + "seriesWinLine2Text": "SERIE!", + "settingsWindow": { + "accountText": "Cuenta", + "advancedText": "Avanzado", + "audioText": "Audio", + "controllersText": "Controles", + "graphicsText": "Gráficos", + "playerProfilesMovedText": "Nota: Los Perfiles de Jugadores se han movido a la ventana de Cuenta en el menú principal.", + "titleText": "Ajustes" + }, + "settingsWindowAdvanced": { + "alwaysUseInternalKeyboardDescriptionText": "(un teclado en pantalla simple y amigable con controles para editar textos)", + "alwaysUseInternalKeyboardText": "Siempre usar el teclado interno", + "benchmarksText": "Rendimiento y Pruebas de Estrés", + "devToolsText": "Herramientas de Desarrollador", + "disableCameraGyroscopeMotionText": "Deshabilitar el movimiento del giroscopio de la cámara", + "disableCameraShakeText": "Deshabilitar el temblor de la cámara", + "disableThisNotice": "(puedes deshabilitar este aviso en ajustes avanzados)", + "enterPromoCodeText": "Ingresar Código", + "forTestingText": "Nota: estos datos son solo para pruebas y se reiniciarán cuando salga de la app.", + "helpTranslateText": "Las traducciones de ${APP_NAME} son un esfuerzo\napoyado por la comunidad. Si deseas aportar o corregir una\ntraducción, utiliza el siguiente enlace. ¡Gracias de antemano!", + "insecureConnectionsDescriptionText": "no es recomendado, pero quizás permita el multijugador\ndesde paises o conexiones restringidas.", + "insecureConnectionsText": "Usar conexiones inseguras", + "kickIdlePlayersText": "Expulsar a jugadores inactivos", + "kidFriendlyModeText": "Modo Niños (violencia reducida, etc).", + "languageText": "Idioma", + "moddingGuideText": "Guía de Modificación", + "moddingToolsText": "Herramientas de Modificación", + "mustRestartText": "Tienes que reiniciar el juego para que tome efecto.", + "netTestingText": "Prueba de Red", + "resetText": "Reiniciar", + "sendInfoText": "Enviar Información", + "showBombTrajectoriesText": "Mostrar Trayectorias de Las Bombas", + "showDemosWhenIdleText": "Mostrar demostraciones cuando estés inactivo", + "showDeprecatedLoginTypesText": "Mostrar tipos de inicio de sesión obsoletos", + "showDevConsoleButtonText": "Mostrar botón de consola de desarrollador", + "showInGamePingText": "Mostrar ping en el juego", + "showPlayerNamesText": "Mostrar Nombres de Los Jugadores", + "showUserModsText": "Mostrar Carpeta de Mods", + "titleText": "Avanzado", + "translationEditorButtonText": "Editor de Traducción de ${APP_NAME}", + "translationFetchErrorText": "estado de traducción no disponible", + "translationFetchingStatusText": "viendo estado de traducción...", + "translationInformMe": "Informarme cuando mi idioma necesite actualizaciones", + "translationNoUpdateNeededText": "El idioma actual está actualizado; ¡wuju!", + "translationUpdateNeededText": "** ¡¡El idioma actual necesita actualizarse!! **", + "vrTestingText": "Prueba RV" + }, + "shareText": "Compartir", + "sharingText": "Compartiendo...", + "showText": "Mostrar", + "signInForPromoCodeText": "Debes iniciar sesión con tu cuenta para que el código funcione.", + "singleGamePlaylistNameText": "Solo ${GAME}", + "singlePlayerCountText": "1 jugador", + "sizeLargeText": "Grande", + "sizeMediumText": "Mediano", + "sizeSmallText": "Pequeño", + "soloNameFilterText": "Solo ${NAME}", + "soundtrackTypeNames": { + "CharSelect": "Selección de Personajes", + "Chosen One": "El Elegido", + "Epic": "Juegos en Modo Épico", + "Epic Race": "Carrera Épica", + "FlagCatcher": "Captura la Bandera", + "Flying": "Pensamientos Felices", + "Football": "Fútbol", + "ForwardMarch": "Asalto", + "GrandRomp": "Conquista", + "Hockey": "Hockey", + "Keep Away": "Aléjate", + "Marching": "Evasiva", + "Menu": "Menú Principal", + "Onslaught": "Matanza", + "Race": "Carrera", + "Scary": "Rey de la Colina", + "Scores": "Pantalla de Puntuación", + "Survival": "Eliminación", + "ToTheDeath": "Combate Mortal", + "Victory": "Pantalla de Puntuación Final" + }, + "spaceKeyText": "espacio", + "statsText": "Estadísticas", + "stopRemindingMeText": "Deja de recordarmelo", + "storagePermissionAccessText": "Esto requiere acceso de almacenamiento", + "store": { + "alreadyOwnText": "¡Ya tienes ${NAME}!", + "bombSquadProNameText": "${APP_NAME} Pro", + "bombSquadProNewDescriptionText": "• Quita los anuncios y las pantallas molestas\n• Desbloquea más ajustes del juego\n• También incluye:", + "buyText": "Comprar", + "charactersText": "Personajes", + "comingSoonText": "Próximamente...", + "extrasText": "Extras", + "holidaySpecialText": "¡Especial de Temporada!", + "howToSwitchCharactersText": "(ve a \"${SETTINGS} -> ${PLAYER_PROFILES}\" para asignar y personalizar los personajes)", + "howToUseIconsText": "(crea perfiles globales de jugador (en la ventana de cuenta) para usarlos)", + "howToUseMapsText": "(usa estos mapas en tus listas de juegos por equipos y todos contra todos)", + "iconsText": "Iconos", + "loadErrorText": "No se pudo cargar la página.\nRevisa tu conexión a internet.", + "loadingText": "cargando", + "mapsText": "Mapas", + "miniGamesText": "MiniJuegos", + "oneTimeOnlyText": "(solo una vez)", + "purchaseAlreadyInProgressText": "Una compra de este artículo se encuentra en progreso.", + "purchaseConfirmText": "¿Comprar ${ITEM}?", + "purchaseNotValidError": "Compra inválida.\nContacte a ${EMAIL} si esto es un error.", + "purchaseText": "Comprar", + "saleBundleText": "¡Paquete en Oferta!", + "saleExclaimText": "¡Oferta!", + "salePercentText": "(${PERCENT}% menos)", + "saleText": "OFERTA", + "searchText": "Buscar", + "teamsFreeForAllGamesText": "Juegos de Equipos / Todos contra Todos", + "totalWorthText": "*** ¡${TOTAL_WORTH} de valor! ***", + "upgradeQuestionText": "¿Mejorar?", + "winterSpecialText": "Especial de Invierno", + "youOwnThisText": "- ya posees esto -" + }, + "storeDescriptionText": "¡Juego de locura de a 8 Jugadores!\n\n¡Revienta a tus amigos (o a la computadora) en un torneo de mini-juegos explosivos como Captura la Bandera, Hockey-Bomba y Combate Mortal Épico en cámara lenta!\n\nControles sencillos y un amplio soporte de controles hacen que sea fácil que 8 personas entren en la acción; ¡incluso puedes usar tus dispositivos móviles como controles a través de la aplicación gratuita de 'Control Remoto BombSquad'!\n\n¡Fuera Bombas!\n\nEcha un vistazo en: www.froemling.net/bombsquad para más información.", + "storeDescriptions": { + "blowUpYourFriendsText": "Revienta a tus amigos.", + "competeInMiniGamesText": "Compite en minijuegos de carreras, vuelo y mucho más.", + "customize2Text": "Personaliza personajes, minijuegos e incluso la banda sonora.", + "customizeText": "Personaliza tus personajes y crea tus propias listas de minijuegos.", + "sportsMoreFunText": "Los deportes son más divertidos con explosivos.", + "teamUpAgainstComputerText": "Forma un equipo contra la computadora." + }, + "storeText": "Tienda", + "submitText": "Enviar", + "submittingPromoCodeText": "Enviando Código...", + "successText": "¡Éxito!", + "supportEmailText": "Si estás teniendo algún problema con la\napp, por favor, manda un email a ${EMAIL}.", + "teamNamesColorText": "Nombres de Equipos/Colores...", + "telnetAccessGrantedText": "Esta versión de prueba ya no está activa; busca una versión nueva.", + "telnetAccessText": "Acceso a Telnet detectado; ¿permitir?", + "testBuildErrorText": "Esta versión de prueba ya no es activa; busca una versión más nueva.", + "testBuildText": "Compilación de Prueba", + "testBuildValidateErrorText": "Incapaz de validar esta compilación de prueba. (¿no tienes conexión a internet?)", + "testBuildValidatedText": "Compilación de Prueba Validada; ¡Disfruta!", + "thankYouText": "¡Gracias por tu ayuda! ¡¡Disfruta el juego!!", + "threeKillText": "¡¡COMBO TRIPLE!!", + "ticketsDescriptionText": "Los tickets pueden ser usados para desbloquear\npersonajes, mapas, minijuegos y más en la tienda.\n\nLos tickets pueden ser encontrados en los cofres\nganados a través de la campaña, torneos y logros.", + "timeBonusText": "Bono de Tiempo", + "timeElapsedText": "Tiempo Transcurrido", + "timeExpiredText": "Tiempo Expirado", + "timeSuffixDaysText": "${COUNT}d", + "timeSuffixHoursText": "${COUNT}h", + "timeSuffixMinutesText": "${COUNT}m", + "timeSuffixSecondsText": "${COUNT}s", + "tipText": "Consejo", + "titleText": "BombSquad", + "titleVRText": "BombSquad RV", + "tokens": { + "getTokensText": "Obtén Fichas", + "notEnoughTokensText": "¡Fichas insuficientes!", + "numTokensText": "${COUNT} Fichas", + "openNowDescriptionText": "Tienes suficiente fichas para \nabrir esto ahora - no tienes\nque esperar.", + "shinyNewCurrencyText": "La brillante nueva moneda de BombSquad.", + "tokenPack1Text": "Paquete de Fichas Pequeña", + "tokenPack2Text": "Paquete de Fichas Mediana", + "tokenPack3Text": "Paquete de Fichas Grande", + "tokenPack4Text": "Paquete de Fichas Jumbo", + "tokensDescriptionText": "Los tokens son usados para acelerar el desbloqueo de\ncofres entre otras funciones del juego y la cuenta.\n\nPuedes ganar fichas en el juego o comprarlas\nen paquetes. O comprar el Pase de Oro para tokens \ninfinitos y nunca más escuchar de ellos de nuevo.", + "youHaveGoldPassText": "Tienes un Pase de Oro.\nTodas las compras de fichas son gratis.\nDisfruta!" + }, + "topFriendsText": "Mejores Amigos", + "tournamentCheckingStateText": "Buscando estado del campeonato; espere por favor...", + "tournamentEndedText": "Este torneo ha acabado. Uno nuevo comenzará pronto.", + "tournamentEntryText": "Entrada Al Torneo", + "tournamentFinalStandingsText": "Clasificación Final", + "tournamentResultsRecentText": "Resultados de Torneos Recientes", + "tournamentStandingsText": "Puestos del Torneo", + "tournamentText": "Torneo", + "tournamentTimeExpiredText": "Tiempo del Torneo Expirado", + "tournamentsDisabledWorkspaceText": "Los torneos están deshabilitados cuando los espacios de trabajo están activos.\nPara volver a habilitar los torneos, deshabilite su espacio de trabajo y reinicie el juego.", + "tournamentsText": "Torneos", + "translations": { + "characterNames": { + "Agent Johnson": "Agente Johnson", + "B-9000": "B-9000", + "Bernard": "Bernard", + "Bones": "Huesos", + "Butch": "Butch", + "Easter Bunny": "Conejo de Pascua", + "Flopsy": "Flopsy", + "Frosty": "Frosty", + "Gretel": "Gretel", + "Grumbledorf": "Grumbledorf", + "Jack Morgan": "Jack Morgan", + "Kronk": "Kronk", + "Lee": "Lee", + "Lucky": "Suertudo", + "Mel": "Mel", + "Middle-Man": "Hombre Intermedio", + "Minimus": "Minimus", + "Pascal": "Pascal", + "Pixel": "Pixel", + "Sammy Slam": "Sammy Slam", + "Santa Claus": "Papá Noel", + "Snake Shadow": "Serpiente Sombría", + "Spaz": "Spaz", + "Taobao Mascot": "Taobao", + "Todd McBurton": "Todd McBurton", + "Zoe": "Zoe", + "Zola": "Zola" + }, + "coopLevelNames": { + "${GAME} Training": "Entrenamiento de ${GAME}", + "Infinite ${GAME}": "${GAME} Infinito", + "Infinite Onslaught": "Matanza Infinita", + "Infinite Runaround": "Evasiva Infinita", + "Onslaught Training": "Entrenamiento de Matanza", + "Pro ${GAME}": "${GAME} Pro", + "Pro Football": "Fútbol Pro", + "Pro Onslaught": "Matanza Pro", + "Pro Runaround": "Evasiva Pro", + "Rookie ${GAME}": "${GAME} Novato", + "Rookie Football": "Fútbol Novato", + "Rookie Onslaught": "Matanza Novato", + "The Last Stand": "La Batalla Final", + "Uber ${GAME}": "${GAME} Ultra", + "Uber Football": "Fútbol Ultra", + "Uber Onslaught": "Matanza Ultra", + "Uber Runaround": "Evasiva Ultra" + }, + "displayItemNames": { + "${C} Tickets": "${C} Boletos", + "${C} Tokens": "${C} Ficha(s)", + "Chest": "Cofre", + "L1 Chest": "Cofre N1", + "L2 Chest": "Cofre N2", + "L3 Chest": "Cofre N3", + "L4 Chest": "Cofre N4", + "L5 Chest": "Cofre N5", + "L6 Chest": "Cofre N6", + "Unknown Chest": "Cofre Desconocido" + }, + "gameDescriptions": { + "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Sé el elegido durante el tiempo designado para ganar.\nMata al elegido para convertirte en él.", + "Bomb as many targets as you can.": "Bombardea tantos blancos como puedas.", + "Carry the flag for ${ARG1} seconds.": "Carga la bandera por ${ARG1} segundos.", + "Carry the flag for a set length of time.": "Carga la bandera por un determinado tiempo.", + "Crush ${ARG1} of your enemies.": "Elimina ${ARG1} de tus enemigos.", + "Defeat all enemies.": "Acaba con todo lo que se mueva.", + "Dodge the falling bombs.": "Esquiva las bombas.", + "Final glorious epic slow motion battle to the death.": "Gloriosa batalla final en épica cámara lenta hasta la muerte.", + "Gather eggs!": "¡Recolecta huevos!", + "Get the flag to the enemy end zone.": "Lleva la bandera enemiga a tu zona.", + "How fast can you defeat the ninjas?": "¿Cuán rápido puedes derrotar a los ninjas?", + "Kill a set number of enemies to win.": "Mata a un número determinado de enemigos para ganar.", + "Last one standing wins.": "El último en pie gana.", + "Last remaining alive wins.": "El último en quedar vivo gana.", + "Last team standing wins.": "El último equipo en pie gana.", + "Prevent enemies from reaching the exit.": "Evita que los enemigos lleguen a la salida.", + "Reach the enemy flag to score.": "Toca la bandera enemiga para anotar.", + "Return the enemy flag to score.": "Devuelve la bandera enemiga para anotar.", + "Run ${ARG1} laps.": "Corre ${ARG1} vueltas.", + "Run ${ARG1} laps. Your entire team has to finish.": "Corre ${ARG1} vueltas. Todo tu equipo debe cruzar la meta.", + "Run 1 lap.": "Corre 1 vuelta.", + "Run 1 lap. Your entire team has to finish.": "Corre 1 vuelta. Todo tu equipo debe cruzar la meta.", + "Run real fast!": "¡Corre muy rápido!", + "Score ${ARG1} goals.": "Anota ${ARG1} goles.", + "Score ${ARG1} touchdowns.": "Anota ${ARG1} touchdowns.", + "Score a goal.": "Anota un gol.", + "Score a touchdown.": "Anota un touchdown.", + "Score some goals.": "Anota unos goles.", + "Secure all ${ARG1} flags.": "Asegura las ${ARG1} banderas.", + "Secure all flags on the map to win.": "Asegura todas las banderas en el mapa para ganar.", + "Secure the flag for ${ARG1} seconds.": "Asegura la bandera por ${ARG1} segundos.", + "Secure the flag for a set length of time.": "Asegura la bandera por un tiempo determinado.", + "Steal the enemy flag ${ARG1} times.": "Roba la bandera enemiga ${ARG1} veces.", + "Steal the enemy flag.": "Roba la bandera enemiga.", + "There can be only one.": "Solo puede haber uno.", + "Touch the enemy flag ${ARG1} times.": "Toca la bandera enemiga ${ARG1} veces.", + "Touch the enemy flag.": "Toca la bandera enemiga.", + "carry the flag for ${ARG1} seconds": "carga la bandera por ${ARG1} segundos.", + "kill ${ARG1} enemies": "mata a ${ARG1} enemigos", + "last one standing wins": "el último en pie gana", + "last team standing wins": "el último equipo en pie gana", + "return ${ARG1} flags": "devuelve ${ARG1} banderas", + "return 1 flag": "devuelve 1 bandera", + "run ${ARG1} laps": "corre ${ARG1} vueltas", + "run 1 lap": "corre 1 vuelta", + "score ${ARG1} goals": "anota ${ARG1} goles", + "score ${ARG1} touchdowns": "anota ${ARG1} touchdowns", + "score a goal": "anota un gol", + "score a touchdown": "anota un touchdown", + "secure all ${ARG1} flags": "asegura las ${ARG1} banderas", + "secure the flag for ${ARG1} seconds": "asegura la bandera por ${ARG1} segundos", + "touch ${ARG1} flags": "toca ${ARG1} banderas", + "touch 1 flag": "toca 1 bandera" + }, + "gameNames": { + "Assault": "Asalto", + "Capture the Flag": "Captura la Bandera", + "Chosen One": "El Elegido", + "Conquest": "Conquista", + "Death Match": "Combate Mortal", + "Easter Egg Hunt": "Búsqueda de Huevos de Pascua", + "Elimination": "Eliminación", + "Football": "Fútbol", + "Hockey": "Hockey", + "Keep Away": "Aléjate", + "King of the Hill": "Rey de la Colina", + "Meteor Shower": "Lluvia de Meteoritos", + "Ninja Fight": "Pelea Ninja", + "Onslaught": "Matanza", + "Race": "Carrera", + "Runaround": "Evasiva", + "Target Practice": "Blanco de Práctica", + "The Last Stand": "La Batalla Final" + }, + "inputDeviceNames": { + "Keyboard": "Teclado", + "Keyboard P2": "Teclado P2" + }, + "languages": { + "Arabic": "Árabe", + "Belarussian": "Bielorruso", + "Chinese": "Chino - Simplificado ", + "ChineseSimplified": "Chino Simplificado", + "ChineseTraditional": "Chino Tradicional (Zhōngwén)", + "Croatian": "Croata", + "Czech": "Checo", + "Danish": "Danés", + "Dutch": "Holandés", + "English": "Inglés", + "Esperanto": "Esperanto", + "Filipino": "Filipino", + "Finnish": "Finlandés", + "French": "Francés", + "German": "Alemán", + "Gibberish": "Algarabía", + "Greek": "Griego", + "Hindi": "Hindi", + "Hungarian": "Húngaro", + "Indonesian": "Indonesio", + "Italian": "Italiano", + "Japanese": "Japonés", + "Korean": "Coreano", + "Malay": "Malayo", + "Persian": "Persa", + "PirateSpeak": "Habla Pirata", + "Polish": "Polaco", + "Portuguese": "Portugués", + "PortugueseBrazil": "Portugués - Brazil", + "PortuguesePortugal": "Portugués - Portugal", + "Romanian": "Rumano", + "Russian": "Ruso", + "Serbian": "Serbio", + "Slovak": "Eslovaco", + "Spanish": "Español", + "SpanishLatinAmerica": "Español - Latinoamerica", + "SpanishSpain": "Español - España", + "Swedish": "Sueco", + "Tamil": "Tamil", + "Thai": "Tailandés", + "Turkish": "Turco", + "Ukrainian": "Ucraniano", + "Venetian": "Veneciano", + "Vietnamese": "Vietnamita" + }, + "leagueNames": { + "Bronze": "Bronce", + "Diamond": "Diamante", + "Gold": "Oro", + "Silver": "Plata" + }, + "mapsNames": { + "Big G": "Gran G", + "Bridgit": "Puentecito", + "Courtyard": "Patio Real", + "Crag Castle": "Castillo del Risco", + "Doom Shroom": "Hongo de La Muerte", + "Football Stadium": "Estadio de Fútbol", + "Happy Thoughts": "Pensamientos Felices", + "Hockey Stadium": "Estadio de Hockey", + "Lake Frigid": "Lago Frígido", + "Monkey Face": "Cara de Mono", + "Rampage": "Medio Tubo", + "Roundabout": "Rotonda", + "Step Right Up": "Paso Al Frente", + "The Pad": "La Plataforma", + "Tip Top": "Punta Superior", + "Tower D": "Torre D", + "Zigzag": "Zigzag" + }, + "playlistNames": { + "Just Epic": "Solo Épico", + "Just Sports": "Solo Deportes" + }, + "scoreNames": { + "Flags": "Banderas", + "Goals": "Goles", + "Score": "Puntaje", + "Survived": "Sobrevivió", + "Time": "Tiempo", + "Time Held": "Tiempo Mantenido" + }, + "serverResponses": { + "A code has already been used on this account.": "Este código ya ha sido usado en esta cuenta.", + "A reward has already been given for that address.": "Ya se le ha dado una recompensa a esa dirección.", + "Account linking successful!": "¡Vinculación de cuenta exitosa!", + "Account unlinking successful!": "¡Desvinculación de cuenta exitosa!", + "Accounts are already linked.": "Las cuentas ya están vinculadas.", + "Ad view could not be verified.\nPlease be sure you are running an official and up-to-date version of the game.": "No se pudo verificar la vista del anuncio. \nPor favor asegúrese de estar ejecutando una versión oficial y actualizada del juego.", + "An error has occurred; (${ERROR})": "Un error ha ocurrido; (${ERROR})", + "An error has occurred; please contact support. (${ERROR})": "Un error ha ocurrido; por favor contacte al soporte. (${ERROR})", + "An error has occurred; please contact support@froemling.net.": "Un error ha ocurrido; por favor contacta a support@froemling.net.", + "An error has occurred; please try again later.": "Un error ha ocurrido; por favor intentalo más tarde.", + "Are you sure you want to link these accounts?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\nThis cannot be undone!": "¿Quieres vincular estas cuentas?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\n¡Esto no se puede deshacer!", + "BombSquad Pro unlocked!": "¡BombSquad Pro desbloqueado!", + "Can't link 2 accounts of this type.": "No se pueden vincular 2 cuentas de este tipo.", + "Can't link 2 diamond league accounts.": "No se pueden vincular 2 cuentas de liga diamante.", + "Can't link; would surpass maximum of ${COUNT} linked accounts.": "No se pudo vincular; sobrepasaría el máximo de cuentas vinculadas de ${COUNT}.", + "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Trampa detectada; puntajes y premios suspendidos por ${COUNT} días.", + "Could not establish a secure connection.": "No se pudo establecer una conexión segura.", + "Daily maximum reached.": "Máximo diario conseguido.", + "Daily sign-in reward": "Recompensa por iniciar sesión diariamente", + "Entering tournament...": "Entrando al torneo...", + "Invalid code.": "Código inválido.", + "Invalid payment; purchase canceled.": "Pago inválido; compra cancelada.", + "Invalid promo code.": "Código promocional inválido.", + "Invalid purchase.": "Compra inválida.", + "Invalid tournament entry; score will be ignored.": "Entrada de torneo inválida; el puntaje será ignorado.", + "Item unlocked!": "¡Artículo desbloqueado!", + "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "VINCULACIÓN DENEGADA. ${ACCOUNT} contiene\ndatos significativos que podrían PERDERSE EN SU TOTALIDAD.\nPuedes vincular en el orden opuesto si lo desea\n(y pierda los datos de ESTA cuenta en su lugar)", + "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "¿Vincular ${ACCOUNT} a esta cuenta?\nTodos los datos en ${ACCOUNT} desaparecerán.\nEsto no se puede deshacer. ¿Estás seguro?", + "Longer streaks lead to better rewards.": "Rachas mayores significan Mejores recompensas.", + "Max number of playlists reached.": "Número máximo de listas de juegos alcanzado.", + "Max number of profiles reached.": "Número máximo de perfiles alcanzado.", + "Maximum friend code rewards reached.": "Máximo de premios por códigos de amigos alcanzado.", + "Message is too long.": "El mensaje es muy largo.", + "New tournament result!": "¡Nuevo resultado del torneo!", + "No servers are available. Please try again soon.": "Sin servidores disponibles. Por favor inténtelo de nuevo más tarde.", + "No slots available. Free a slot and try again.": "No hay ranuras libres. Libere una e intentélo de nuevo.", + "Profile \"${NAME}\" upgraded successfully.": "El perfil \"${NAME}\" se ha mejorado satisfactoriamente.", + "Profile could not be upgraded.": "El perfil no pudo ser mejorado.", + "Purchase successful!": "¡Compra exitosa!", + "Received ${COUNT} tickets for signing in.\nCome back tomorrow to receive ${TOMORROW_COUNT}.": "Has recibido ${COUNT} boletos por iniciar sesión.\nRegresa mañana para recibir ${TOMORROW_COUNT} boletos.", + "Server functionality is no longer supported in this version of the game;\nPlease update to a newer version.": "La funcionalidad del servidor ya no es compatible en esta versión del juego;\nActualiza a una versión más reciente.", + "Sorry, there are no uses remaining on this code.": "Disculpe, pero no quedan usos disponibles de este código.", + "Sorry, this code has already been used.": "Disculpe, este código ya ha sido usado.", + "Sorry, this code has expired.": "Disculpe, este código ha expirado.", + "Sorry, this code only works for new accounts.": "Disculpe, este código solo funciona para cuentas nuevas.", + "Sorry, this has expired.": "Disculpe, esto ya ha expirado.", + "Still searching for nearby servers; please try again soon.": "Todavía buscando por servidores cercanos; inténtelo de nuevo más tarde.", + "Streak: ${NUM} days": "Racha de: ${NUM} días", + "Temporarily unavailable; please try again later.": "Temporalmente indisponible; por favor inténtalo más tarde.", + "The tournament ended before you finished.": "El torneo terminó antes de que terminaras.", + "This account cannot be unlinked for ${NUM} days.": "Esta cuenta no puede ser desvinculada por ${NUM} día(s).", + "This code cannot be used on the account that created it.": "Este código no puede ser usado en la misma cuenta que ha sido creado.", + "This is currently unavailable; please try again later.": "Esto no está disponible actualmente; por favor inténtelo más tarde.", + "This requires version ${VERSION} or newer.": "Esto requiere la versión ${VERSION} o una más reciente.", + "Tournaments disabled due to rooted device.": "Los torneos han sido deshabilitados debido a que tú dispositivo esta rooteado.", + "Tournaments require ${VERSION} or newer": "Los torneos requieren la versión ${VERSION} o más nueva", + "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "¿Desvincular ${ACCOUNT} de esta cuenta?\nTodos los datos en ${ACCOUNT} se reiniciarán.\n(excepto los logros en algunos casos)", + "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "ADVERTENCIA: Se han emitido reclamaciones de hackeos contra tu cuenta.\nLas cuentas que se encuentren hackeando serán baneadas. Por favor juega limpio.", + "Wait reduced!": "Espera reducida!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "Advertencia: Esta versión del juego está limitada a los datos de cuenta antiguos; es posible que falten datos o que estén desactualizados.\nPor favor actualiza a una versión más reciente del juego para ver los datos más recientes de tu cuenta.", + "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "¿Quieres vincular tu cuenta de dispositivo a esta otra?\n\nTu cuenta de dispositivo es ${ACCOUNT1}\nEsta cuenta es ${ACCOUNT2}\n\nEsto permitirá guardar tu progreso actual.\nAdvertencia: ¡Esto no se puede deshacer!", + "You already own this!": "¡Ya posees esto!", + "You can join in ${COUNT} seconds.": "Puedes unirte en ${COUNT} segundo(s).", + "You don't have enough tickets for this!": "¡No tienes suficientes boletos para esto!", + "You don't own that.": "No posees eso.", + "You got ${COUNT} tickets!": "¡Obtuviste ${COUNT} boletos!", + "You got ${COUNT} tokens!": "¡Obtuviste ${COUNT} ficha(s)!", + "You got a ${ITEM}!": "¡Conseguiste un ${ITEM}!", + "You got a chest!": "¡Obtuviste un cofre!", + "You got an achievement reward!": "¡Obtuviste una recompensa por tu logro!", + "You have been promoted to a new league; congratulations!": "Has sido ascendido a una nueva liga; ¡felicitaciones!", + "You lost a chest! (All your chest slots were full)": "¡Perdiste un cofre! (Todas tus ranuras de cofres estaban llenas).", + "You must update the app to view this.": "Debes actualizar la aplicación para ver esto.", + "You must update to a newer version of the app to do this.": "Debes actualizar la aplicación a una versión más reciente para hacer esto.", + "You must update to the newest version of the game to do this.": "Necesitas actualizar a la versión más reciente del juego para hacer esto.", + "You must wait a few seconds before entering a new code.": "Debes esperar unos segundos antes de ingresar un código nuevo.", + "You placed #${RANK} in a tournament!": "Quedaste en el puesto #${RANK} en un torneo!", + "You ranked #${RANK} in the last tournament. Thanks for playing!": "Quedaste en la posición #${RANK} en el campeonato. ¡Gracias por jugar!", + "Your account was rejected. Are you signed in?": "Tu cuenta fue rechazada. ¿Estás registrado?", + "Your ad views are not registering. Ad options will be limited for a while.": "Tus vistas de anuncios no se están registrando. Las opciones de anuncios serán limitadas por un tiempo.", + "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Tu copia del juego fue modificada.\nPor favor revierte estos cambios e intenta de nuevo.", + "Your friend code was used by ${ACCOUNT}": "Tu código de amigo fue usado por ${ACCOUNT}" + }, + "settingNames": { + "1 Minute": "1 Minuto", + "1 Second": "1 Segundo", + "10 Minutes": "10 Minutos", + "2 Minutes": "2 Minutos", + "2 Seconds": "2 Segundos", + "20 Minutes": "20 Minutos", + "4 Seconds": "4 Segundos", + "5 Minutes": "5 Minutos", + "8 Seconds": "8 Segundos", + "Allow Negative Scores": "Permitir Puntajes Negativos", + "Balance Total Lives": "Repartir Vidas Totales", + "Bomb Spawning": "Aparecer Bombas", + "Chosen One Gets Gloves": "El Elegido Consigue Guantes de Boxeo", + "Chosen One Gets Shield": "El Elegido Consigue Electro-Escudo", + "Chosen One Time": "Tiempo del Elegido", + "Enable Impact Bombs": "Habilitar Insta-Bombas", + "Enable Triple Bombs": "Habilitar Bombas Triples", + "Entire Team Must Finish": "Todo el Equipo Debe Terminar", + "Epic Mode": "Modo Épico", + "Flag Idle Return Time": "Tiempo de Retorno de Bandera Inactiva", + "Flag Touch Return Time": "Retorno de Bandera con Toque", + "Hold Time": "Retención", + "Kills to Win Per Player": "Asesinatos para Ganar Por Jugador", + "Laps": "Vueltas", + "Lives Per Player": "Vidas Por Jugador", + "Long": "Largo", + "Longer": "Más Largo", + "Mine Spawning": "Aparecer Minas", + "No Mines": "Sin Minas", + "None": "Ninguno", + "Normal": "Normal", + "Pro Mode": "Modo Pro", + "Respawn Times": "Tiempo de Reaparición", + "Score to Win": "Puntos para Ganar", + "Short": "Corto", + "Shorter": "Más Corto", + "Solo Mode": "Modo Solitario", + "Target Count": "Número de Objetivos", + "Time Limit": "Límite de Tiempo" + }, + "statements": { + "${TEAM} is disqualified because ${PLAYER} left": "${TEAM} ha sido descalificado porque ${PLAYER} se ha ido", + "Killing ${NAME} for skipping part of the track!": "¡${NAME} Murió por saltarse un pedazo de la pista!", + "Warning to ${NAME}: turbo / button-spamming knocks you out.": "Advertencia para ${NAME}: turbo / spam de botones te noqueará." + }, + "teamNames": { + "Bad Guys": "Chicos Malos", + "Blue": "Azul", + "Good Guys": "Chicos Buenos", + "Red": "Rojo" + }, + "tips": { + "A perfectly timed running-jumping-spin-punch can kill in a single hit\nand earn you lifelong respect from your friends.": "Un corre-salta-gira-golpea perfecto puede destrozar de un solo impacto\ny ganarte el respeto de tus amigos para toda la vida.", + "Always remember to floss.": "Siempre acuérdate de cepillar tus dientes.", + "Create player profiles for yourself and your friends with\nyour preferred names and appearances instead of using random ones.": "Crea perfiles para \ntu y tus amigos \ncon \ntus nombres preferidos y\napariencias en vez de usar unos aleatorios.", + "Curse boxes turn you into a ticking time bomb.\nThe only cure is to quickly grab a health-pack.": "Las cajas de maldición te convierten en una bomba de tiempo.\nLa única cura es agarrar rápidamente un botiquín.", + "Despite their looks, all characters' abilities are identical,\nso just pick whichever one you most closely resemble.": "A pesar de sus apariencias, las habilidades de todos los personajes\nson idénticas, así que escoge el que más te guste a ti.", + "Don't get too cocky with that energy shield; you can still get yourself thrown off a cliff.": "No eres invencible con ese electro-escudo; todavía puedes caerte de un acantilado.", + "Don't run all the time. Really. You will fall off cliffs.": "No corras todo el tiempo. En serio. Te vas a caer.", + "Don't spin for too long; you'll become dizzy and fall.": "No gires por un largo tiempo; puedes marearte y caer.", + "Hold any button to run. (Trigger buttons work well if you have them)": "Mantén cualquier botón para correr. (Los gatillos son para eso si los tienes)", + "Hold down any button to run. You'll get places faster\nbut won't turn very well, so watch out for cliffs.": "Mantén presionado cualquier botón para correr. Llegarás a lugares más rápido\npero no girarás muy bien, así que cuidado con los acantilados.", + "Ice bombs are not very powerful, but they freeze\nwhoever they hit, leaving them vulnerable to shattering.": "Las Bombas de Hielo no son muy potentes, pero congelan lo\nque toquen, dejando a tus enemigos vulnerables a romperse.", + "If someone picks you up, punch them and they'll let go.\nThis works in real life too.": "Si alguien te recoge, dale un golpe y te soltará.\nTambién funciona en la vida real.", + "If you are short on controllers, install the '${REMOTE_APP_NAME}' app\non your mobile devices to use them as controllers.": "Si no tienes suficientes controles, instala la aplicación '${REMOTE_APP_NAME}'\nen tus dispositivos móviles para usarlos como controles.", + "If you get a sticky-bomb stuck to you, jump around and spin in circles. You might\nshake the bomb off, or if nothing else your last moments will be entertaining.": "Si te adhieres a una bomba pegajosa, salta y da muchas vueltas. Es posible que sacudas\nla bomba pegada o sin nada más tus últimos momentos serán entretenidos.", + "If you kill an enemy in one hit you get double points for it.": "Si matas a un enemigo de un solo golpe obtendrás puntos dobles.", + "If you pick up a curse, your only hope for survival is to\nfind a health powerup in the next few seconds.": "Si tomaste una maldición, tu única esperanza es\nencontrar un botiquín en tus últimos segundos.", + "If you stay in one place, you're toast. Run and dodge to survive..": "Si te quedas quieto, estás frito. Corre y esquiva para sobrevivir...", + "If you've got lots of players coming and going, turn on 'auto-kick-idle-players'\nunder settings in case anyone forgets to leave the game.": "Si tienes muchos jugadores yendo y viniendo, activa 'expulsar jugadores inactivos'\nen ajustes en caso de que alguien se olvide de abandonar el juego.", + "If your device gets too warm or you'd like to conserve battery power,\nturn down \"Visuals\" or \"Resolution\" in Settings->Graphics": "Si tu dispositivo se pone caliente o te gustaría conservar batería,\nbaja los \"Visuales\" o la \"Resolución\" en Ajustes->Gráficos", + "If your framerate is choppy, try turning down resolution\nor visuals in the game's graphics settings.": "Si la imagen va lenta, intenta reducir la resolución\no los visuales en los ajustes gráficos del juego.", + "In Capture-the-Flag, your own flag must be at your base to score, If the other\nteam is about to score, stealing their flag can be a good way to stop them.": "En Captura la Bandera, la bandera tuya debe estar en tu base para que anotes.\nSi el otro equipo está a punto de anotar, robar su bandera evitará que anoten.", + "In hockey, you'll maintain more speed if you turn gradually.": "En hockey, mantendrás tu impulso si giras gradualmente.", + "It's easier to win with a friend or two helping.": "Es más fácil ganar con un amigo o dos ayudando.", + "Jump just as you're throwing to get bombs up to the highest levels.": "Salta antes de tirar una bomba para que alcance lugares altos.", + "Land-mines are a good way to stop speedy enemies.": "Las minas terrestres son una buena manera para detener enemigos veloces.", + "Many things can be picked up and thrown, including other players. Tossing\nyour enemies off cliffs can be an effective and emotionally fulfilling strategy.": "Muchas cosas se pueden recoger y lanzar, incluyendo a otros jugadores.\nArroja a tus enemigos por los precipicios. Te sentirás mejor.", + "No, you can't get up on the ledge. You have to throw bombs.": "No, no puedes subir a la cornisa. Tienes que lanzar bombas.", + "Players can join and leave in the middle of most games,\nand you can also plug and unplug controllers on the fly.": "Los jugadores pueden unirse e irse en medio de casi todos los juegos,\ntambién puedes conectar o quitar controles en cualquier momento.", + "Practice using your momentum to throw bombs more accurately.": "Practica usando tu impulso para tirar bombas con más precisión.", + "Punches do more damage the faster your fists are moving,\nso try running, jumping, and spinning like crazy.": "Los golpes hacen más daño cuanto más rápido se mueven tus puños,\nasí que intenta correr, saltar y girar como un loco.", + "Run back and forth before throwing a bomb\nto 'whiplash' it and throw it farther.": "Corre de un lado a otro antes de lanzar una\nbomba para 'latiguearla' y lanzarla lejos.", + "Take out a group of enemies by\nsetting off a bomb near a TNT box.": "Elimina un gran cantidad de enemigos\nal detonar una bomba cerca de una caja TNT.", + "The head is the most vulnerable area, so a sticky-bomb\nto the noggin usually means game-over.": "La cabeza es la zona más vulnerable, una bomba pegajosa\na la cabeza usualmente significa game-over.", + "This level never ends, but a high score here\nwill earn you eternal respect throughout the world.": "Este nivel no tiene fin, pero un alto puntaje aquí\nte hará ganar el respeto eterno por todo el mundo.", + "Throw strength is based on the direction you are holding.\nTo toss something gently in front of you, don't hold any direction.": "La fuerza de tiro se basa en la dirección que estás sosteniendo.\nPara arrojar algo justo delante de ti, no sostengas ninguna dirección.", + "Tired of the soundtrack? Replace it with your own!\nSee Settings->Audio->Soundtrack": "¿Cansado de la pista de audio? ¡Reemplázala con tu música!\nVe a Ajustes->Audio->Banda Sonora", + "Try 'Cooking off' bombs for a second or two before throwing them.": "Intenta 'Cocinar' bombas por un segundo o dos antes de tirarlas.", + "Try tricking enemies into killing eachother or running off cliffs.": "Engaña a tus enemigos para que se eliminen entre sí o para que corran a los acantilados.", + "Use the pick-up button to grab the flag < ${PICKUP} >": "Usa el botón de 'recoger' para agarrar la bandera < ${PICKUP} >", + "Whip back and forth to get more distance on your throws..": "Azota de un lado a otro para conseguir más distancia en tus tiros.", + "You can 'aim' your punches by spinning left or right.\nThis is useful for knocking bad guys off edges or scoring in hockey.": "Puedes 'dirigir' tus golpes girando a la izquierda o derecha. Esto\nes útil para tirar a los enemigos al vacío o para anotar en el hockey.", + "You can judge when a bomb is going to explode based on the\ncolor of sparks from its fuse: yellow..orange..red..BOOM.": "Puedes saber si una bomba va a explotar basado en el \ncolor de las chispas de su mecha: amarillo...naranja...rojo...¡BOOM!", + "You can throw bombs higher if you jump just before throwing.": "Puedes tirar bombas más alto si saltas justo antes de tirarlas.", + "You take damage when you whack your head on things,\nso try to not whack your head on things.": "Te haces daño si golpeas tu cabeza contra cosas, \nasí que trata de no golpear tu cabeza contra cosas.", + "Your punches do much more damage if you are running or spinning.": "Tus golpes hacen mucho más daño si estás corriendo o girando." + } + }, + "trophiesRequiredText": "Esto requiere al menos ${NUMBER} trofeos.", + "trophiesText": "Trofeos", + "trophiesThisSeasonText": "Trofeos Esta Temporada", + "tutorial": { + "cpuBenchmarkText": "Corriendo tutorial en velocidad ridícula (pruebas de velocidad de CPU)", + "phrase01Text": "¡Hey, hola!", + "phrase02Text": "¡Bienvenido a ${APP_NAME}!", + "phrase03Text": "Te dare algunos consejos para controlar tu personaje:", + "phrase04Text": "Muchas cosas en ${APP_NAME} se basan mayoritariamente en FÍSICAS.", + "phrase05Text": "Por ejemplo, cuando golpeas...", + "phrase06Text": "..el daño se basa en la velocidad de tus puños.", + "phrase07Text": "¿Ves? No nos estábamos moviendo, así que eso apenas lastimó a ${NAME}.", + "phrase08Text": "Ahora vamos a saltar y girar para conseguir más velocidad.", + "phrase09Text": "Ah, mucho mejor.", + "phrase10Text": "Correr también ayuda.", + "phrase11Text": "Mantén pulsado CUALQUIER botón para correr.", + "phrase12Text": "Para golpes extra-asombrosos, intenta correr Y girar.", + "phrase13Text": "Ups; lo siento por eso ${NAME}.", + "phrase14Text": "Puedes recoger y lanzar cosas como banderas.. o ${NAME}.", + "phrase15Text": "Por último, hay bombas.", + "phrase16Text": "Lanzar bombas requiere práctica.", + "phrase17Text": "¡Auch! Ese no fue un buen tiro.", + "phrase18Text": "Moverte ayuda a lanzarlas más lejos.", + "phrase19Text": "Saltar ayuda a lanzarlas más alto.", + "phrase20Text": "\"Latiguea\" tus bombas para hacer lanzamientos aún más lejanos.", + "phrase21Text": "Hacer que exploten donde tú quieres puede ser complicado.", + "phrase22Text": "Rayos.", + "phrase23Text": "Intentemos \"cocinar\" la mecha por un segundo o dos.", + "phrase24Text": "¡Hurra! Así es como se hace.", + "phrase25Text": "Bueno, eso es todo.", + "phrase26Text": "¡Ahora ve por ellos, campeón!", + "phrase27Text": "Recuerda tu entrenamiento, ¡y VOLVERÁS con vida!", + "phrase28Text": "...o a lo mejor...", + "phrase29Text": "¡Buena Suerte!", + "randomName1Text": "Federico", + "randomName2Text": "Enrique", + "randomName3Text": "Guillermo", + "randomName4Text": "Carlos", + "randomName5Text": "Felipe", + "skipConfirmText": "¿Realmente quieres omitir el tutorial? Toca o presiona para confirmar.", + "skipVoteCountText": "${COUNT}/${TOTAL} votos para saltarse el tutorial", + "skippingText": "saltando el tutorial...", + "toSkipPressAnythingText": "(pulsa cualquier botón para omitir el tutorial)" + }, + "twoKillText": "¡COMBO DOBLE!", + "uiScaleText": "Escala de Interfaz de Usuario", + "unavailableText": "no disponible", + "unclaimedPrizesText": "Tienes premios sin reclamar!", + "unconfiguredControllerDetectedText": "Control desconfigurado detectado:", + "unlockThisInTheStoreText": "Esto debe ser desbloqueado en la tienda.", + "unlockThisProfilesText": "Para crear más de ${NUM} cuentas, necesitas:", + "unlockThisText": "Para desbloquear esto, necesitas:", + "unsupportedControllerText": "Lo sentimos, el control \"${NAME}\" no es compatible.", + "unsupportedHardwareText": "Disculpe, este dispositivo no soporta esta compilación del juego.", + "upFirstText": "A continuación:", + "upNextText": "A continuación en el juego ${COUNT}:", + "updatingAccountText": "Actualizando tu cuenta...", + "upgradeText": "Mejorar", + "upgradeToPlayText": "Desbloquea \"${PRO}\" en la tienda para jugar esto.", + "useDefaultText": "Usar Por Defecto", + "userSystemScriptsCreateText": "Crear Scripts del Sistema del Usuario", + "userSystemScriptsDeleteText": "Eliminar Scripts del Sistema del Usuario", + "usesExternalControllerText": "Este juego usa un control externo como entrada.", + "usingItunesText": "Usando Aplicación de Música para la banda sonora...", + "v2AccountLinkingInfoText": "Para vincular cuentas V2, usa el botón \"Administrar Cuenta\".", + "v2AccountRequiredText": "Esto requiere una cuenta V2. Actualice su cuenta e inténtelo de nuevo.", + "validatingTestBuildText": "Validando Compilación de Prueba...", + "viaText": "a través de", + "victoryText": "¡Victoria!", + "voteDelayText": "No puedes iniciar otra votación por ${NUMBER} segundo(s)", + "voteInProgressText": "Ya hay una votación en progreso.", + "votedAlreadyText": "Ya votaste", + "votesNeededText": "${NUMBER} voto(s) necesario(s)", + "vsText": "vs.", + "waitingForHostText": "(esperando a que ${HOST} continúe)", + "waitingForPlayersText": "esperando jugadores para unirse...", + "waitingInLineText": "Esperando en línea (la partida está llena)...", + "watchAVideoText": "Ver un Vídeo", + "watchAnAdText": "Ver un Anuncio", + "watchWindow": { + "deleteConfirmText": "¿Borrar \"${REPLAY}\"?", + "deleteReplayButtonText": "Borrar\nRepetición", + "myReplaysText": "Mis Repeticiones", + "noReplaySelectedErrorText": "Ninguna Repetición Seleccionada", + "playbackSpeedText": "Velocidad de Reproducción: ${SPEED}", + "renameReplayButtonText": "Renombrar\nRepetición", + "renameReplayText": "Renombrar \"${REPLAY}\" a:", + "renameText": "Renombrar", + "replayDeleteErrorText": "Error borrando la repetición.", + "replayNameText": "Nombre de la Repetición", + "replayRenameErrorAlreadyExistsText": "Una repetición con ese nombre ya existe.", + "replayRenameErrorInvalidName": "No se puede renombrar la repetición; nombre inválido.", + "replayRenameErrorText": "Error renombrando repetición.", + "sharedReplaysText": "Compartir repeticiones", + "titleText": "Ver", + "watchReplayButtonText": "Ver\nRepetición" + }, + "waveText": "Oleada", + "wellSureText": "¡Pues Claro!", + "whatIsThisText": "¿Qué es esto?", + "winsPlayerText": "¡${NAME} Gana!", + "winsTeamText": "¡${NAME} Gana!", + "winsText": "¡Ganó ${NAME}!", + "workspaceSyncErrorText": "Error al sincronizar ${WORKSPACE}. Mira el registro para más detalles.", + "workspaceSyncReuseText": "No se puede sincronizar ${WORKSPACE}. Reusando la versión previamente sincronizada.", + "worldScoresUnavailableText": "Puntuaciones mundiales no disponibles.", + "worldsBestScoresText": "Mejores Puntuaciones Mundiales", + "worldsBestTimesText": "Mejores Tiempos Mundiales", + "yesAllowText": "¡Sí, Permitir!", + "yourBestScoresText": "Tus Mejores Puntajes", + "yourBestTimesText": "Tus Mejores Tiempos", + "yourPrizeText": "Tu premio:" +} \ No newline at end of file diff --git a/dist/ba_data/data/languages/swedish.json b/dist/ba_data/data/languages/swedish.json index 78cc5fa..2bcaff4 100644 --- a/dist/ba_data/data/languages/swedish.json +++ b/dist/ba_data/data/languages/swedish.json @@ -8,6 +8,7 @@ "changeOncePerSeason": "Du kan enbart ändra detta en gång per säsong.", "changeOncePerSeasonError": "Du måste vänta tills nästa säsong för att ändra detta igen (${NUM} days)", "customName": "Anpassat Namn", + "deleteAccountText": "Ta bort konto", "googlePlayGamesAccountSwitchText": "Om du vill använda ett annat Google-konto,\nanvänd appen Google Play Spel för att byta.", "linkAccountsEnterCodeText": "Skriv in kod", "linkAccountsGenerateCodeText": "Generera kod", @@ -26,14 +27,16 @@ "setAccountNameDesc": "Välj ett namn att visa för ditt konto.\nDu kan använda användarnamnet från något av dina länkade konton eller skapa ett unikt namn.", "signInInfoText": "Logga in för att samla värdekuponger, tävla \non-line och dela framsteg över olika enheter.", "signInText": "Logga In", + "signInWithAnEmailAddressText": "Logga in med en e-postadress", "signInWithDeviceInfoText": "(endast ett automatiskt konto finns på denna enhet)", "signInWithDeviceText": "Logga in med ett enhetskonto", "signInWithGameCircleText": "Logga in med Spel Cirkel", "signInWithGooglePlayText": "Logga in med Google Play", "signInWithTestAccountInfoText": "(allmän konto typ; använd enhets konton för att fortsätta) ", "signInWithTestAccountText": "Logga in med ett testkonto", + "signInWithText": "Logga in med ${SERVICE}", "signInWithV2InfoText": "(ett konto som fungerar på alla plattformar)", - "signInWithV2Text": "Logga in med ett BombSquad-konto", + "signInWithV2Text": "Logga in med ett ${APP_NAME} konto", "signOutText": "Logga Ut", "signingInText": "Loggar in...", "signingOutText": "Loggar ut...", @@ -44,6 +47,7 @@ "titleText": "Konto", "unlinkAccountsInstructionsText": "Välj ett konto att avlänka", "unlinkAccountsText": "Avlänka Konton", + "unlinkLegacyV1AccountsText": "Ta bort länken till äldre konton (V1)", "v2LinkInstructionsText": "Använd den här länken för att skapa ett konto eller logga in.", "viaAccount": "(via konto ${NAME})", "youAreLoggedInAsText": "Du är inloggad som:", @@ -333,13 +337,19 @@ "achievementsRemainingText": "Prestationer som återstår:", "achievementsText": "Prestationer", "achievementsUnavailableForOldSeasonsText": "Tyvärr, prestation detaljerna är inte tillgängliga för gamla säsonger.", + "activatedText": "${THING} aktiverad", "addGameWindow": { "getMoreGamesText": "Hämta Fler Spel...", "titleText": "Lägg till Spel" }, + "addToFavoritesText": "Lägg till i favoriter", + "addedToFavoritesText": "Lade till '${NAME}' i Favoriter.", + "allText": "Alla", "allowText": "Tillåt", "alreadySignedInText": "Ditt konto är redan inloggat på en annan enhet;\nvar god byt konto eller stäng spelet på dina\nandra enheter och försök igen.", "apiVersionErrorText": "Kan inte öppna ${NAME}; den änvänder api-version ${VERSION_USED}; det krävs dock ${VERSION_REQUIRED}.", + "applyText": "Använda", + "areYouSureText": "Är du säker?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(\"Auto\" aktiverar endast detta när hörlurar är inkopplade)", "headRelativeVRAudioText": "Huvud-Relativt VR Audio", @@ -364,7 +374,7 @@ "boostText": "Höj", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} är konfigurerad i appen själv.", "buttonText": "Knapp", - "canWeDebugText": "Vill du att BombSquad automatiskt ska skicka bug, - och crashrapporter och grundläggande användarinfo till utvecklaren?\n\nDenna data innehåller ingen personlig information och\nhjälper till med att låta spelet flyta jämnt och felfritt.", + "canWeDebugText": "Vill du att ${APP_NAME} ska rapportera automatiskt\nbuggar, krascher och grundläggande användningsinformation till utvecklaren?\n\nDessa uppgifter innehåller ingen personlig information och hjälper till\nSe till att spelet fungerar smidigt och utan buggar.", "cancelText": "Avbryt", "cantConfigureDeviceText": "Tyvärr, ${DEVICE} är inte konfigurerbar", "challengeEndedText": "Denna utmaning är avslutad.", @@ -372,6 +382,7 @@ "chatMutedText": "Chatt dämpad", "chatUnMuteText": "Avsluta chatt", "choosingPlayerText": "", + "codesExplainText": "Koderna tillhandahålls av utvecklaren till:\nDiagnostisera och felsök ditt konto.", "completeThisLevelToProceedText": "Du måste klara\ndenna nivå för att fortsätta!", "completionBonusText": "Slutbonus", "configControllersWindow": { @@ -455,6 +466,7 @@ "titleText": "Konfigurera touchscreen", "touchControlsScaleText": "Touchkontroll skalning" }, + "configureDeviceInSystemSettingsText": "${DEVICE} kan konfigureras i appen Systeminställningar.", "configureItNowText": "Konfigurera nu?", "configureText": "Konfigurera", "connectMobileDevicesWindow": { @@ -510,6 +522,7 @@ "welcome2Text": "Du kan också tjäna biljetter från många av samma verksamhet .\nBiljetter kan användas för att låsa upp nya karaktärer, kartor och\nmini -spel , att delta i turneringar och mycket mer .", "yourPowerRankingText": "Din Spelar Rankning" }, + "copyConfirmText": "Kopieras till Urklipp.", "copyOfText": "${NAME} Kopia", "copyText": "Kopiera", "createAPlayerProfileText": "Skapa en spelarprofil?", @@ -562,7 +575,10 @@ "deleteText": "Radera", "demoText": "Demo", "denyText": "Neka", + "deprecatedText": "Deprecated", + "descriptionText": "Beskrivning", "desktopResText": "Skrivbordsupplösning", + "deviceAccountUpgradeText": "Varning:\nDu är inloggad med ett enhetskonto (${NAME}).\nEnhetskonton kommer att tas bort i en framtida uppdatering.\nUppgradera till ett V2-konto om du vill behålla dina framsteg.", "difficultyEasyText": "Lätt", "difficultyHardOnlyText": "Endast Svårt Läge", "difficultyHardText": "Svår", @@ -571,6 +587,9 @@ "disableRemoteAppConnectionsText": "Inaktivera Fjärrapps-Anslutningar", "disableXInputDescriptionText": "Tillåter mer än 4 kontroller men kanske inte funkar så bra.", "disableXInputText": "Inaktivera XInput", + "disabledText": "Handikappad", + "discordFriendsText": "Vill du leta efter nya människor att spela med?\nGå med i vår Discord och hitta nya vänner!", + "discordJoinText": "Gå med i Discord", "doneText": "Klar", "drawText": "Oavgjort", "duplicateText": "Fördubbla", @@ -605,6 +624,7 @@ "localProfileText": "(lokal profil)", "nameDescriptionText": "Spelarnamn", "nameText": "Namn", + "profileAlreadyExistsText": "Det finns redan en profil med det namnet.", "randomText": "slumpvis", "titleEditText": "Redigera Profil", "titleNewText": "Ny Profil", @@ -642,12 +662,15 @@ "useMusicFolderText": "Mappnamn för Musikfiler" }, "editText": "Redigera", + "enabledText": "Aktiverad", "endText": "slut", "enjoyText": "Ha det så roligt!", "epicDescriptionFilterText": "${DESCRIPTION} i episk slow moition.", "epicNameFilterText": "Episk ${NAME}", "errorAccessDeniedText": "åtkomst nekad", + "errorDeviceTimeIncorrectText": "Din enhets tid är felaktig med ${HOURS} timmar.\nDetta kommer sannolikt att orsaka problem.\nKontrollera dina tids- och tidszonsinställningar.", "errorOutOfDiskSpaceText": "slut på diskutrymme", + "errorSecureConnectionFailText": "Det går inte att upprätta en säker molnanslutning; nätverksfunktionen kan misslyckas.", "errorText": "Fel", "errorUnknownText": "okänt fel", "exitGameText": "Avsluta ${APP_NAME}?", @@ -687,6 +710,8 @@ "editText": "Redigera\nSpellista", "gameListText": "Spellista", "newText": "Ny\nSpellista", + "pointsToWinText": "Poäng för att vinna", + "seriesLengthText": "Serie Längd", "showTutorialText": "Visa Handledning", "shuffleGameOrderText": "Blanda spel-ordning", "titleText": "Redigera ${TYPE} Spellistor" @@ -1126,6 +1151,7 @@ "purchasingText": "Köper...", "quitGameText": "Avsluta BombSquad?", "quittingIn5SecondsText": "Avslutar om 5 sekunder...", + "randomPlayerNamesText": "Oliver, Carl, Tomten, Ikea, Vikingar", "randomText": "Slumpad", "rankText": "Rang", "ratingText": "Rating", diff --git a/dist/ba_data/data/languages/tamil.json b/dist/ba_data/data/languages/tamil.json index d106c39..c48dbd1 100644 --- a/dist/ba_data/data/languages/tamil.json +++ b/dist/ba_data/data/languages/tamil.json @@ -6,7 +6,9 @@ "campaignProgressText": "பிரச்சார முன்னேற்றம் [கடினமானது] : ${PROGRESS}", "changeOncePerSeason": "ஒரு பருவத்திற்கு ஒரு முறை மட்டுமே இதை மாற்ற முடியும்.", "changeOncePerSeasonError": "இதை மீண்டும் மாற்ற அடுத்த சீசன் வரை நீங்கள் காத்திருக்க வேண்டும் (${NUM} நாட்கள்)", + "createAnAccountText": "புதிய கணக்கை உருவாக்கவும்", "customName": "தனிப்பயன் பெயர்", + "deleteAccountText": "கணக்கை நீக்கவும்", "googlePlayGamesAccountSwitchText": "நீங்கள் வேறு Google கணக்கைப் பயன்படுத்த விரும்பினால்,\nமாறுவதற்கு Google Play கேம்ஸ் பயன்பாட்டைப் பயன்படுத்தவும்.", "linkAccountsEnterCodeText": "குறியீட்டை உள்ளிடவும்", "linkAccountsGenerateCodeText": "குறியீட்டை உருவாக்கவும்", @@ -23,14 +25,16 @@ "setAccountNameDesc": "உங்கள் கணக்குக்கு காட்ட வேண்டிய பெயரை தேர்வு செய்யவும். \nஉங்கள் இணைக்கப்பட்ட கணக்குகளிலிருந்து ஒரு பெயரை தேர்வு செய்யலாம் \nஅல்லது புதிய பெயரை உருவாக்கலாம்.", "signInInfoText": "சீட்டுகள் சேர்க்க, இணையத்தில் போட்டியிட,\nமுன்னேற்றங்களை பகிர, புகுபதிவு செய்யவும்.", "signInText": "புகுபதிகை", + "signInWithAnEmailAddressText": "மின்னஞ்சல் முகவரியுடன் உள்நுழை", "signInWithDeviceInfoText": "(இந்த சாதனத்திலிருந்து ஒரு தானியங்கி கணக்கு மட்டுமே கிடைக்கும்)", "signInWithDeviceText": "சாதனக் கணக்கில் உள்நுழைக", "signInWithGameCircleText": "Game Circle மூலம் உள்நுழைக", "signInWithGooglePlayText": "Google Play உடன் உள்நுழைக", "signInWithTestAccountInfoText": "(மரபு கணக்கு வகை; முன்னோக்கி செல்லும் சாதனக் கணக்குகளைப் பயன்படுத்தவும்)", "signInWithTestAccountText": "சோதனைக் கணக்கில் உள்நுழைக", + "signInWithText": "${SERVICE} -உடன் உள்நுழை", "signInWithV2InfoText": "(அனைத்து தளங்களிலும் செயல்படும் கணக்கு)", - "signInWithV2Text": "BombSquad கணக்கில் உள்நுழையவும்", + "signInWithV2Text": "${APP_NAME} கணக்கில் உள்நுழையவும்", "signOutText": "வெளியேறு", "signingInText": "புகுபதிகை நடைபெறுகிறது...", "signingOutText": "விடுபதிகை நடைபெறுகிறது...", @@ -332,10 +336,14 @@ "getMoreGamesText": "மேலும் விளையாட்டுகளைப் பெறுங்கள்...", "titleText": "விளையாட்டைச் சேர்" }, + "addToFavoritesText": "பிடித்தவையில் சேர்", + "addedToFavoritesText": "பிடித்தவற்றில் '${NAME}' சேர்க்கப்பட்டது", "allText": "அனைத்து", "allowText": "அனுமதி", "alreadySignedInText": "உங்கள் கணக்கு மற்றொரு சாதனத்திலிருந்து உள்நுழைந்துள்ளது;\nதயவுசெய்து கணக்குகளை மாற்றவும் அல்லது விளையாட்டை மூடவும்\nபிற சாதனங்கள் மற்றும் மீண்டும் முயற்சிக்கவும்.", "apiVersionErrorText": "${NAME} தொகுதியை ஏற்ற முடியவில்லை; இது api-version ${VERSION_USED} ஐ குறிவைக்கிறது; எங்களுக்கு ${VERSION_REQUIRED} தேவைப்படுகிறது.", + "applyText": "இடு", + "areYouSureText": "நீ சொல்வது உறுதியா?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(ஹெட்ஃபோன்கள் செருகப்படும்போது மட்டுமே \"ஆட்டோ\" இதை இயக்குகிறது)", "headRelativeVRAudioText": "தலை-உறவினர் VR ஆடியோ", @@ -358,14 +366,24 @@ "boostText": "ஊக்குவிக்கவும்", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} பயன்பாட்டில் உள்ளமைக்கப்பட்டுள்ளது.", "buttonText": "பொத்தானை", - "canWeDebugText": "BombSquad தானாகப் புகாரளிக்க விரும்புகிறீர்களா?\nடெவலப்பருக்கு பிழைகள், செயலிழப்புகள் மற்றும் அடிப்படை பயன்பாட்டு தகவல்?\n\nஇந்தத் தரவில் தனிப்பட்ட தகவல் இல்லை மற்றும் உதவுகிறது\nவிளையாட்டை சீராக மற்றும் பிழையில்லாமல் வைத்துக்கொள்ளுங்கள்.", + "canWeDebugText": "${APP_NAME} தானாகப் புகாரளிக்க விரும்புகிறீர்களா?\nடெவலப்பருக்கு பிழைகள், செயலிழப்புகள் மற்றும் அடிப்படை பயன்பாட்டு தகவல்?\n\nஇந்தத் தரவில் தனிப்பட்ட தகவல் இல்லை மற்றும் உதவுகிறது\nவிளையாட்டை சீராக மற்றும் பிழையில்லாமல் வைத்துக்கொள்ளுங்கள்.", "cancelText": "ரத்து", "cantConfigureDeviceText": "மன்னிக்கவும்,${DEVICE} கட்டமைக்கப்படவில்லை.", "challengeEndedText": "இந்த சவால் முடிந்தது.", "chatMuteText": "அரட்டை முடக்கு", "chatMutedText": "அரட்டை முடக்கப்பட்டது", "chatUnMuteText": "அரட்டையை இயக்கு", + "chests": { + "prizeOddsText": "பரிசு முரண்பாடுகள்", + "reduceWaitText": "காத்திருப்பைக் குறைக்கவும்", + "slotDescriptionText": "இந்த ஸ்லாட் ஒரு மார்பை வைத்திருக்க முடியும்.\n\nபிரச்சார நிலைகளில் விளையாடுவதன் மூலம் மார்புகளை சம்பாதிக்கவும்,\nபோட்டிகளில் இடம்பெறுதல், மற்றும் நிறைவு செய்தல்\nசாதனைகள்.", + "slotText": "மார்பு துளை ${NUM}", + "slotsFullWarningText": "எச்சரிக்கை: உங்கள் பெட்டிகள் நிரம்பியுள்ளன.\nஇந்த விளையாட்டில் பெறும் புதிய பெட்டிகள் கிடைக்காது.", + "unlocksInText": "திறப்பதற்கு இன்னும் இருக்க நேரம்" + }, "choosingPlayerText": "<பிளேயரைத் தேர்ந்தெடுப்பது>", + "claimText": "உரிமைகோரல்", + "codesExplainText": "கணக்குச் சிக்கல்களைக் கண்டறிந்து சரிசெய்ய\nடெவலப்பர்களால் குறியீடுகள் வழங்கப்படுகின்றன.", "completeThisLevelToProceedText": "தொடர நீங்கள்\n இந்த நிலையை முடிக்க வேண்டும்!", "completionBonusText": "நிறைவு போனஸ்", "configControllersWindow": { @@ -550,6 +568,7 @@ "demoText": "டெமோ", "denyText": "மறுக்க", "deprecatedText": "நிராகரிக்கப்பட்டது", + "descriptionText": "விளக்கம்", "desktopResText": "டெஸ்க்டாப் ரெஸ்", "deviceAccountUpgradeText": "எச்சரிக்கை:\nசாதனக் கணக்கில் (${NAME}) உள்நுழைந்துள்ளீர்கள்.\nஎதிர்கால புதுப்பிப்பில் சாதன கணக்குகள் அகற்றப்படும்.\nஉங்கள் முன்னேற்றத்தைத் தொடர விரும்பினால், V2 கணக்கிற்கு மேம்படுத்தவும்.", "difficultyEasyText": "சுலபம்", @@ -561,6 +580,9 @@ "disableXInputDescriptionText": "4 க்கும் மேற்பட்ட கட்டுப்பாட்டாளர்களை அனுமதிக்கிறது ஆனால் வேலை செய்யாமல் போகலாம்.", "disableXInputText": "XInput ஐ முடக்கு", "disabledText": "முடக்கப்பட்ட எழுத்து", + "discardText": "புறக்கணிடு", + "discordFriendsText": "விளையாட புதிய நபர்களைத் தேட வேண்டுமா?\nஎங்கள் டிஸ்கார்டில் சேர்ந்து புதிய நண்பர்களைக் கண்டறியவும்!", + "discordJoinText": "டிஸ்கார்டில் சேரவும்", "doneText": "முடிந்தது", "drawText": "டிரா", "duplicateText": "நகல்எடுத்தல்", @@ -593,6 +615,7 @@ "localProfileText": "(உள்ளூர் சுயவிவரம்)", "nameDescriptionText": "வீரரின் பெயர்", "nameText": "பெயர்", + "profileAlreadyExistsText": "அந்தப் பெயரில் ஒரு சுயவிவரம் ஏற்கனவே உள்ளது.", "randomText": "சீரற்ற", "titleEditText": "சுயவிவரத்தைத் திருத்து", "titleNewText": "புதிய சுயவிவரம்", @@ -674,6 +697,8 @@ "duplicateText": "நகல்எடு்\nபிளேலிஸ்ட்", "editText": "தொகு\nபிளேலிஸ்ட்", "newText": "புதிய\nபிளேலிஸ்ட்", + "pointsToWinText": "வெற்றிக்கான புள்ளிகள்", + "seriesLengthText": "தொடர் நீளம்", "showTutorialText": "டுடோரியலைக் காட்டு", "shuffleGameOrderText": "விளையாட்டு ஆர்டரை கலக்கவும்", "titleText": "${TYPE} பிளேலிஸ்ட்களைத் தனிப்பயனாக்கவும்" @@ -711,10 +736,10 @@ "friendHasSentPromoCodeText": "${NAME} இலிருந்து ${COUNT} ${APP_NAME} டிக்கெட்டுகள்", "friendPromoCodeAwardText": "ஒவ்வொரு முறையும் நீங்கள் பயன்படுத்தும்போது ${COUNT} டிக்கெட்டுகளைப் பெறுவீர்கள்.", "friendPromoCodeExpireText": "குறியீடு ${EXPIRE_HOURS} மணிநேரத்தில் காலாவதியாகும் மற்றும் புதிய பிளேயர்களுக்கு மட்டுமே வேலை செய்யும்.", - "friendPromoCodeInstructionsText": "இதைப் பயன்படுத்த, ${APP_NAME} ஐத் திறந்து \"அமைப்புகள்-> மேம்பட்ட-> குறியீட்டை உள்ளிடவும்\" என்பதற்குச் செல்லவும்.\nஆதரிக்கப்படும் அனைத்து தளங்களுக்கும் பதிவிறக்க இணைப்புகளுக்கு bombsquadgame.com ஐப் பார்க்கவும்.", + "friendPromoCodeInstructionsText": "இதைப் பயன்படுத்த, ${APP_NAME} ஐத் திறந்து \"அமைப்புகள்->மேம்பட்ட->தகவல் அனுப்பு\" என்பதற்குச் செல்லவும்.\nஆதரிக்கப்படும் அனைத்து தளங்களுக்கும் பதிவிறக்க இணைப்புகளுக்கு bombsquadgame.com ஐப் பார்க்கவும்.", "friendPromoCodeRedeemLongText": "இதை ${MAX_USES} பேர் வரை ${COUNT} இலவச டிக்கெட்டுகளுக்கு மீட்டெடுக்கலாம்.", "friendPromoCodeRedeemShortText": "விளையாட்டில் ${COUNT} டிக்கெட்டுகளுக்கு அதை மீட்டெடுக்கலாம்.", - "friendPromoCodeWhereToEnterText": "(\"அமைப்புகள்-> மேம்பட்ட-> குறியீட்டை உள்ளிடவும்\")", + "friendPromoCodeWhereToEnterText": "(\"அமைப்புகள்->மேம்பட்ட->தகவல் அனுப்பு\")", "getFriendInviteCodeText": "நண்பர் அழைப்புக் குறியீட்டைப் பெறுங்கள்", "googlePlayDescriptionText": "உங்கள் விருந்துக்கு Google Play பிளேயர்களை அழைக்கவும்:", "googlePlayInviteText": "அழை", @@ -746,6 +771,7 @@ "manualYourLocalAddressText": "உங்கள் உள்ளூர் முகவரி:", "nearbyText": "அருகில்", "noConnectionText": "<இணைப்பு இல்லை>", + "noPartiesAddedText": "கூட்டங்கள் சேர்க்கப்படவில்லை", "otherVersionsText": "(பிற பதிப்புகள்)", "partyCodeText": "பார்ட்டி குறியீடு", "partyInviteAcceptText": "ஏற்றுக்கொள்", @@ -809,6 +835,12 @@ "youHaveShortText": "உங்களிடம் ${COUNT} உள்ளது", "youHaveText": "உங்களிடம் ${COUNT} டிக்கெட்டுகள் உள்ளன" }, + "goldPass": { + "desc1InfTokensText": "எல்லையற்ற டோக்கன்கள்.", + "desc2NoAdsText": "விளம்பரங்கள் இல்லை.", + "desc3ForeverText": "எப்போதும்.", + "goldPassText": "தங்க நுழைவு அட்டை" + }, "googleMultiplayerDiscontinuedText": "மன்னிக்கவும், கூகுளின் மல்டிபிளேயர் சேவை இனி கிடைக்காது.\nநான் முடிந்தவரை விரைவாக மாற்றுவதற்கு வேலை செய்கிறேன்.\nஅதுவரை, வேறு இணைப்பு முறையை முயற்சிக்கவும்.\n-எரிக்", "googlePlayPurchasesNotAvailableText": "Google Play வாங்குதல்கள் கிடைக்கவில்லை.\nஉங்கள் ஸ்டோர் பயன்பாட்டைப் புதுப்பிக்க வேண்டியிருக்கலாம்.", "googlePlayServicesNotAvailableText": "Google Play சேவைகள் கிடைக்கவில்லை.\nசில ஆப்ஸ் செயல்பாடுகள் முடக்கப்பட்டிருக்கலாம்.", @@ -992,6 +1024,7 @@ "tournamentLeagueText": "இந்த போட்டியில் நுழைய நீங்கள் ${NAME} லீக்கை அடைய வேண்டும்.", "trophyCountsResetText": "அடுத்த சீசனில் கோப்பைகளின் எண்ணிக்கை மீட்டமைக்கப்படும்." }, + "learnMoreText": "மேலும் அறிக", "levelBestScoresText": "${LEVEL} இல் சிறந்த மதிப்பெண்கள்", "levelBestTimesText": "${LEVEL} இல் சிறந்த நேரங்கள்", "levelIsLockedText": "${LEVEL} லாக் செய்யப்பட்டது.", @@ -1051,6 +1084,7 @@ "nameSuicideText": "${NAME} தற்கொலை செய்து கொண்டார்.", "nameText": "பெயர்", "nativeText": "பூர்வீகம்", + "newExclaimText": "புதியது!", "newPersonalBestText": "புதிய தனிப்பட்ட சிறந்த!", "newTestBuildAvailableText": "ஒரு புதிய சோதனை உருவாக்கம் கிடைக்கிறது! (${VERSION} உருவாக்க ${BUILD}).\n${ADDRESS} இல் பெறுங்கள்.", "newText": "புதிய", @@ -1061,6 +1095,7 @@ "noContinuesText": "(தொடரும் இல்லை)", "noExternalStorageErrorText": "இந்தச் சாதனத்தில் வெளிப்புறச் சேமிப்பு இல்லை", "noGameCircleText": "பிழை: GameCircle இல் உள்நுழையவில்லை", + "noPluginsInstalledText": "செருகுநிரல்கள் எதுவும் நிறுவப்படவில்லை", "noScoresYetText": "இன்னும் மதிப்பெண்கள் இல்லை.", "noServersFoundText": "சேவையகங்கள் எதுவும் இல்லை.", "noThanksText": "இல்லை, நன்றி!", @@ -1167,6 +1202,8 @@ "punchText": "குத்து", "purchaseForText": "${PRICE} க்கு வாங்கு", "purchaseGameText": "வாங்கு விளையாட்டு", + "purchaseNeverAvailableText": "மன்னிக்கவும், இந்த உருவாக்கத்தில் வாங்குதல்கள் இல்லை.\nவேறொரு தளத்தில் உங்கள் கணக்கில் உள்நுழைந்து, அங்கிருந்து வாங்கவும்.", + "purchaseNotAvailableText": "இந்த கொள்முதல் கிடைக்கவில்லை.", "purchasingText": "வாங்குகிறது...", "quitGameText": "${APP_NAME} ஐ விட்டு வெளியேறவா?", "quittingIn5SecondsText": "5 வினாடிகளில் வெளியேறும்...", @@ -1241,6 +1278,7 @@ }, "scoreWasText": "(${COUNT} இருந்தது)", "selectText": "தேர்ந்தெடு", + "sendInfoDescriptionText": "டெவெலப்பருக்கு கணக்கு மற்றும் பயன்பாட்டு நிலைத் தகவலை அனுப்புகிறது.\nஉங்கள் பெயர் அல்லது அனுப்புவதற்கான காரணத்தைச் சேர்க்கவும்.", "seriesWinLine1PlayerText": "வெற்றி", "seriesWinLine1TeamText": "வெற்றி", "seriesWinLine1Text": "வெற்றி", @@ -1258,6 +1296,7 @@ "alwaysUseInternalKeyboardDescriptionText": "(உரை திருத்துவதற்கான ஒரு எளிய, கட்டுப்படுத்தி-நட்பு திரையில் விசைப்பலகை)", "alwaysUseInternalKeyboardText": "எப்போதும் உள் விசைப்பலகையைப் பயன்படுத்தவும்", "benchmarksText": "அளவுகோல்கள் மற்றும் மன அழுத்த சோதனைகள்", + "devToolsText": "டெவலப்பர் கருவிகள்", "disableCameraGyroscopeMotionText": "கேமரா கைரோஸ்கோப் இயக்கத்தை முடக்கவும்", "disableCameraShakeText": "கேமரா குலுக்கை முடக்கு", "disableThisNotice": "(மேம்பட்ட அமைப்புகளில் இந்த அறிவிப்பை முடக்கலாம்)", @@ -1270,12 +1309,16 @@ "kidFriendlyModeText": "குழந்தை நட்பு முறை (குறைந்த வன்முறை போன்றவை)", "languageText": "மொழி", "moddingGuideText": "மோடிங் வழிகாட்டி", + "moddingToolsText": "மாற்றியமைக்கும் கருவிகள்", "mustRestartText": "இது நடைமுறைக்கு வர நீங்கள் விளையாட்டை மறுதொடக்கம் செய்ய வேண்டும்.", "netTestingText": "நெட்வொர்க் சோதனை", "resetText": "மீட்டு", + "sendInfoText": "தகவல் அனுப்பு", "showBombTrajectoriesText": "வெடிகுண்டு பாதைகளைக் காட்டு", + "showDemosWhenIdleText": "செயலற்ற நிலையில் டெமோக்களைக் காட்டு", + "showDeprecatedLoginTypesText": "நிராகரிக்கப்பட்ட உள்நுழைவு வகைகளைக் காட்டு", "showDevConsoleButtonText": "உருவாக்குபவர் பணியகத்தை காட்டு", - "showInGamePingText": "இன்-கேம் பிங்கைக் காட்டு", + "showInGamePingText": "பிணைய தாமதத்தைக் காட்டு", "showPlayerNamesText": "பிளேயர் பெயர்களைக் காட்டு", "showUserModsText": "மோட்ஸ் கோப்புறையைக் காட்டு", "titleText": "மேம்பட்ட அமைப்புகள்", @@ -1283,8 +1326,8 @@ "translationFetchErrorText": "மொழிபெயர்ப்பு நிலை கிடைக்கவில்லை", "translationFetchingStatusText": "மொழிபெயர்ப்பு நிலையை சரிபார்க்கிறது...", "translationInformMe": "எனது மொழிக்கு புதுப்பிப்புகள் தேவைப்படும்போது எனக்குத் தெரியப்படுத்துங்கள்", - "translationNoUpdateNeededText": "தற்போதைய மொழி புதுப்பித்த நிலையில் உள்ளது; வூஹூ!", - "translationUpdateNeededText": "** தற்போதைய மொழிக்கு புதுப்பிப்புகள் தேவை !! **", + "translationNoUpdateNeededText": "தற்போதைய மொழி புதுப்பித்த நிலையில் உள்ளது; அடிதூள்!", + "translationUpdateNeededText": "** தற்போதைய மொழிக்கு புதுப்பிப்புகள் தேவை!! **", "vrTestingText": "VR சோதனை" }, "shareText": "பகிர்", @@ -1294,6 +1337,9 @@ "signInWithGameCenterText": "Game Center கணக்கைப் பயன்படுத்த,\nGame Center ஆப் மூலம் உள்நுழையவும்.", "singleGamePlaylistNameText": "வெறும் ${GAME}", "singlePlayerCountText": "1 வீரர்", + "sizeLargeText": "பெரியது", + "sizeMediumText": "நடுத்தரம்", + "sizeSmallText": "சிறியது", "soloNameFilterText": "தனி ${NAME}", "soundtrackTypeNames": { "CharSelect": "குணம் தேர்ந்தெடுத்தல்", @@ -1367,6 +1413,7 @@ "submitText": "சமர்ப்பிக்கவும்", "submittingPromoCodeText": "குறியீட்டைச் சமர்ப்பிக்கிறது...", "successText": "வெற்றி!", + "supportEmailText": "நீங்கள் ஏதேனும் சிக்கல்களை எதிர்கொண்டால் பயன்பாடு,\nதயவுசெய்து ${EMAIL} க்கு மின்னஞ்சல் செய்யவும்.", "teamNamesColorText": "அணியின் பெயர்கள்/நிறங்கள்...", "telnetAccessGrantedText": "டெல்நெட் அணுகல் இயக்கப்பட்டது.", "telnetAccessText": "டெல்நெட் அணுகல் கண்டறியப்பட்டது; அனுமதிக்கவா?", @@ -1386,6 +1433,17 @@ "tipText": "உதவிக்குறிப்பு", "titleText": "பாம்ஸ்குவாட்", "titleVRText": "பாம்ஸ்குவாட் VR", + "tokens": { + "getTokensText": "டோக்கன்களைப் பெறுங்கள்", + "notEnoughTokensText": "போதுமான டோக்கன்கள் இல்லை!", + "numTokensText": "${COUNT} டோக்கன்கள்", + "shinyNewCurrencyText": "BombSquad இன் பளபளப்பான புதிய நாணயம்.", + "tokenPack1Text": "சிறிய டோக்கன் பேக்", + "tokenPack2Text": "நடுத்தர டோக்கன் பேக்", + "tokenPack3Text": "பெரிய டோக்கன் பேக்", + "tokenPack4Text": "மிகப்பெரிய டோக்கன் பேக்", + "youHaveGoldPassText": "உங்களிடம் தங்க நுழைவு அட்டை உள்ளது.\nஅனைத்து டோக்கன் வாங்குதல்களும் இலவசம்.\nமகிழுங்கள்!" + }, "topFriendsText": "சிறந்த நண்பர்கள்", "tournamentCheckingStateText": "போட்டி நிலையை சரிபார்க்கிறது; தயவுசெய்து காத்திருங்கள்...", "tournamentEndedText": "இந்த போட்டி முடிந்தது. புதியது விரைவில் தொடங்கும்.", @@ -1550,12 +1608,12 @@ "Malay": "மலாய்", "Persian": "பர்ஷியன்", "Polish": "பலிஷ்", - "Portuguese": "போர்சுகிஸ்", + "Portuguese": "போர்சுகிஸ் ", "Romanian": "ரோமானியன்", "Russian": "ரஷ்யன்", "Serbian": "சர்பியன்", "Slovak": "ஸ்லோவக்", - "Spanish": "ஸ்பானிஷ்", + "Spanish": "ஸ்பானிஷ் ", "Swedish": "ஸ்வீடிஷ்", "Tamil": "தமிழ்", "Thai": "தாய்", @@ -1661,7 +1719,10 @@ "You don't own that.": "உங்களுக்கு அது சொந்தமில்லை.", "You got ${COUNT} tickets!": "நீங்கள் ${COUNT} டிக்கெட்டுகளைப் பெற்றுள்ளீர்கள்!", "You got a ${ITEM}!": "உங்களுக்கு ${ITEM} கிடைத்துள்ளது!", + "You got an achievement reward!": "நீங்கள் ஒரு சாதனை பரிசு பெற்றுள்ளீர்கள்!", "You have been promoted to a new league; congratulations!": "நீங்கள் ஒரு புதிய லீக்கில் பதவி உயர்வு பெற்றுள்ளீர்கள்; வாழ்த்துக்கள்!", + "You lost a chest! (All your chest slots were full)": "நீங்கள் ஒரு பெட்டியை இழந்துவிட்டீர்கள்! (உங்கள் அனைத்து பெட்டி இடங்களும் நிரம்பியிருந்தன)", + "You must update the app to view this.": "நீங்கள் இதைப் பார்ப்பதற்கு செயலியை புதுப்பிக்க வேண்டும்.", "You must update to a newer version of the app to do this.": "இதைச் செய்ய நீங்கள் பயன்பாட்டின் புதிய பதிப்பைப் புதுப்பிக்க வேண்டும்.", "You must update to the newest version of the game to do this.": "இதைச் செய்ய நீங்கள் விளையாட்டின் புதிய பதிப்பைப் புதுப்பிக்க வேண்டும்.", "You must wait a few seconds before entering a new code.": "புதிய குறியீட்டை உள்ளிடுவதற்கு சில வினாடிகள் காத்திருக்க வேண்டும்.", @@ -1815,6 +1876,7 @@ "toSkipPressAnythingText": "(பயிற்சியைத் தவிர்க்க எதையும் தட்டவும் அல்லது அழுத்தவும்)" }, "twoKillText": "இரட்டை கொலை!", + "uiScaleText": "பயனர் இடைமுக அளவு", "unavailableText": "கிடைக்கவில்லை", "unconfiguredControllerDetectedText": "கட்டமைக்கப்படாத கட்டுப்படுத்தி கண்டறியப்பட்டது:", "unlockThisInTheStoreText": "இதை ஸ்டோரில் திறக்க வேண்டும்.", @@ -1828,10 +1890,14 @@ "upgradeText": "மேம்படுத்தல்", "upgradeToPlayText": "இதை விளையாட கேம் ஸ்டோரில் \"${PRO}\" ஐத் திறக்கவும்.", "useDefaultText": "இயல்புநிலையைப் பயன்படுத்தவும்", + "userSystemScriptsCreateText": "பயனர் கணினி ஸ்கிரிப்ட்களை உருவாக்கவும்", + "userSystemScriptsDeleteText": "பயனர் கணினி ஸ்கிரிப்ட்களை நீக்கவும்", "usesExternalControllerText": "இந்த விளையாட்டு உள்ளீட்டிற்கு வெளிப்புற கட்டுப்படுத்தியைப் பயன்படுத்துகிறது.", "usingItunesText": "ஒலிப்பதிவுக்காக மியூசிக் ஆப் பயன்படுத்துகிறது...", "v2AccountLinkingInfoText": "V2 கணக்குகளை இணைக்க, 'கணக்கை நிர்வகி' பட்டனைப் பயன்படுத்தவும்.", + "v2AccountRequiredText": "இதற்கு V2 கணக்கு தேவை. உங்கள் கணக்கை மேம்படுத்தி மீண்டும் முயற்சிக்கவும்.", "validatingTestBuildText": "சோதனை கட்டத்தை சரிபார்க்கிறது...", + "viaText": "வழியாக", "victoryText": "வெற்றி!", "voteDelayText": "நீங்கள் மற்றொரு வாக்கை ${NUMBER} வினாடிகளுக்குத் தொடங்க முடியாது", "voteInProgressText": "வாக்கெடுப்பு ஏற்கனவே நடந்து கொண்டிருக்கிறது.", @@ -1896,5 +1962,6 @@ }, "yesAllowText": "ஆம், அனுமதி!", "yourBestScoresText": "உங்கள் சிறந்த மதிப்பெண்கள்", - "yourBestTimesText": "உங்கள் சிறந்த நேரங்கள்" + "yourBestTimesText": "உங்கள் சிறந்த நேரங்கள்", + "yourPrizeText": "உங்கள் பரிசு:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/thai.json b/dist/ba_data/data/languages/thai.json index 130f807..9a39c80 100644 --- a/dist/ba_data/data/languages/thai.json +++ b/dist/ba_data/data/languages/thai.json @@ -1,12 +1,14 @@ { "accountSettingsWindow": { "accountNameRules": "ชื่อบัญชีต้องไม่มีอิโมจิหรือตัวอักษรพิเศษอื่นๆ", - "accountsText": "บัญชี", + "accountsText": "บัญชีผู้ใช้", "achievementProgressText": "ผ่านความสำเร็จ: ${COUNT} จาก ${TOTAL}", "campaignProgressText": "ความคืบหน้าในภารกิจ [ยาก]: ${PROGRESS}", "changeOncePerSeason": "คุณสามารถเปลี่ยนได้เพียงครั้งเดียวต่อฤดูกาล", - "changeOncePerSeasonError": "คุณต้องรอจนกว่าฤดูกาลหน้าจะเปลี่ยนอีก (${NUM} days)", + "changeOncePerSeasonError": "คุณต้องรอจนกว่าฤดูกาลหน้าจะเปลี่ยนอีก (${NUM} วัน)", + "createAnAccountText": "สร้างบัญชี", "customName": "ชื่อที่กำหนดเอง", + "deleteAccountText": "ลบบัญชีผู้ใช้", "googlePlayGamesAccountSwitchText": "หากคุณต้องการใช้บัญชี Google อื่น\nใช้แอป Google Play Games เพื่อเปลี่ยน", "linkAccountsEnterCodeText": "ใส่รหัส", "linkAccountsGenerateCodeText": "สร้างรหัส", @@ -14,7 +16,7 @@ "linkAccountsInstructionsNewText": "หากต้องการเชื่อมโยงสองบัญชี ให้สร้างรหัสในบัญชีแรก\nและป้อนรหัสนั้นในบัญชีที่สอง ข้อมูลจาก\nบัญชีที่สองจะถูกแชร์ระหว่างทั้งสอง\n(ข้อมูลจากบัญชีแรกจะหายไป)\n\nคุณสามารถเชื่อมโยงได้ถึง ${COUNT} บัญชี\n\nข้อสำคัญ: เชื่อมโยงบัญชีที่คุณเป็นเจ้าของเท่านั้น\nหากคุณเชื่อมโยงกับบัญชีของเพื่อน คุณจะไม่ทำ\nสามารถเล่นออนไลน์ได้ในเวลาเดียวกัน", "linkAccountsInstructionsText": "เพื่อที่จะผูกทั้งสองบัญชีเข้าด้วยกัน จะต้องสร้างรหัสรหัสหนึ่ง\nแล้วจะต้องใส่รหัสในบัญที่คุณต้องการจะเชื่อมโยงเข้าด้วยกัน\nความคืบหน้าและสิ่งของในคลังของทั้งสองบัญชีจะถูกรวมกัน\nคุณสามารถเชื่อมโยงได้ทั้งหมด ${COUNT} บัญชี\n\nระวัง! หลังจากผูกบัญชีแล้วจะไม่สามารถยกเลิกได้!", "linkAccountsText": "ผูกบัญชี", - "linkedAccountsText": "บัญชีที่เชื่อมโยงแล้ว", + "linkedAccountsText": "บัญชีที่เชื่อมโยงแล้ว:", "manageAccountText": "จัดการบัญชี", "nameChangeConfirm": "คุณต้องการเปลี่ยนชื่อบัญชีของคุณเป็น ${NAME} หรือไม่", "resetProgressConfirmNoAchievementsText": "การทำสิ่งนี้จะรีเซ็ตความคืบหน้าต่างๆ ในโหมด co-op\nและคะแนนดีที่สุดในอุปกรณ์นี้ (แต่จะไม่รีเซ็ตตั๋วของคุณ) \nการทำสิ่งนี้ไม่สามารถยกเลิกได้! คุณแน่ใจหรือไม่?", @@ -23,20 +25,21 @@ "setAccountName": "ตั้งชื่อบัญชี", "setAccountNameDesc": "เลือกชื่อที่จะแสดงสำหรับบัญชีของคุณ\nคุณสามารถใช้ชื่อจากหนึ่งในบัญชีที่เชื่อมโยงของคุณ\nหรือสร้างชื่อที่กำหนดเองที่ไม่ซ้ำใคร", "signInInfoText": "เข้าสู่ระบบเพื่อเก็บตั๋วในการเล่นแบบออนไลน์,\nและแบ่งปันความคืบหน้าของคุณกับอุปกรณ์อื่นๆ", - "signInText": "ลงชื่อเข้าใช้", + "signInText": "เข้าสู่ระบบ", + "signInWithAnEmailAddressText": "เข้าสู่ระบบด้วยที่อยู่อีเมล", "signInWithDeviceInfoText": "(บัญชีอัตโนมัติที่ใช้ได้เฉพาะในอุปกรณ์นี้)", - "signInWithDeviceText": "เข้าสู่ระบบจากอุปกรณ์นี้", + "signInWithDeviceText": "เข้าสู่ระบบด้วยอุปกรณ์นี้", "signInWithGameCircleText": "เข้าสู่ระบบด้วยบัญชี Game Circle", "signInWithGooglePlayText": "ลงชื่อเข้าใช้ด้วยบัญชี Google Play", "signInWithTestAccountInfoText": "(บัญชีทดลอง;เลือกตัวเลือกนี้เพื่อไปต่อ)", "signInWithTestAccountText": "ลงชื่อเข้าใช้เพื่อทดลอง", "signInWithText": "เข้าสู่ระบบด้วย ${SERVICE}", "signInWithV2InfoText": "(บัญชีที่ใช้งานได้กับทุกแพลตฟอร์ม)", - "signInWithV2Text": "ลงชื่อเข้าใช้ด้วยบัญชี BombSquad", + "signInWithV2Text": "เข้าสู่ระบบด้วยบัญชี ${APP_NAME}", "signOutText": "ออกจากระบบ", - "signingInText": "กำลังลงชื่อเข้าใช้...", + "signingInText": "กำลังเข้าสู่ระบบ...", "signingOutText": "กำลังออกจากระบบ...", - "ticketsText": "ตั๋ว: ${COUNT}", + "ticketsText": "ตั๋ว: ${COUNT} ใบ", "titleText": "บัญชี", "unlinkAccountsInstructionsText": "เลือกบัญชีที่จะยกเลิกการเชื่อมโยง", "unlinkAccountsText": "ยกเลิกการเชื่อมโยงบัญชี", @@ -51,8 +54,8 @@ "Boom Goes the Dynamite": { "description": "ฆ่าศัตรู 3 คนด้วย TNT", "descriptionComplete": "ฆ่าศัตรู 3 คนด้วย TNT แล้ว", - "descriptionFull": "ฆ่าศัตรู ${LEVEL} 3 คนด้วย TNT", - "descriptionFullComplete": "ฆ่าศัตรู 3 คน ด้วย TNT ใน ${LEVEL}", + "descriptionFull": "ฆ่าศัตรู 3 คนด้วย TNT ใน ${LEVEL}", + "descriptionFullComplete": "ฆ่าศัตรู 3 คน ด้วย TNT ใน ${LEVEL} แล้ว", "name": "ระเบิดดังสนั่นหวั่นไหวจากไดนาไมต์" }, "Boxer": { @@ -91,7 +94,7 @@ "descriptionComplete": "ชนะโดยไม่ต้องใช้หมัดหรือระเบิดแล้ว", "descriptionFull": "ชนะ ${LEVEL} โดยไม่ต้องใช้หมัดหรือระเบิด", "descriptionFullComplete": "ชนะ ${LEVEL} โดยไม่ต้องใช้หมัดหรือระเบิดแล้ว", - "name": "เร่งรีบ" + "name": "พริ้วไหวดั่งสายลม" }, "In Control": { "descriptionFull": "เชื่อมต่อกับคอนโทรลเลอร์", @@ -117,7 +120,7 @@ "descriptionComplete": "ทำคะแนน 500 คะแนนแล้ว", "descriptionFull": "ทำคะแนน 500 คะแนนใน ${LEVEL}", "descriptionFullComplete": "ทำคะแนน 500 คะแนนใน ${LEVEL} แล้ว", - "name": "ผู้วิเศษ ${LEVEL}" + "name": "พ่อมด ${LEVEL}" }, "Mine Games": { "description": "ฆ่าศัตรู 3 คนด้วยกับระเบิด", @@ -338,15 +341,17 @@ "addedToFavoritesText": "เพื่ม '${NAME}' ในรายการโปรดแล้ว", "allText": "ทั้งหมด", "allowText": "ยอมรับ", - "alreadySignedInText": "บัญชีของคุณลงชื่อเข้าใช้จากอุปกรณ์อื่น\nโปรดเปลี่ยนบัญชีหรือปิดเกมของคุณ\nอุปกรณ์อื่นและลองอีกครั้ง", + "alreadySignedInText": "บัญชีของคุณลงชื่อเข้าใช้จากอุปกรณ์อื่น;\nโปรดเปลี่ยนบัญชีหรือปิดเกมบนอุปกรณ์อื่น\nของคุณและลองอีกครั้ง", "apiVersionErrorText": "ไม่สามารถโหลดโมดูล ${NAME} ได้; มันอยู่ในเวอร์ชั่น api ${VERSION_USED}; แต่เราต้องการเวอร์ชั่น ${VERSION_REQUIRED}", + "applyText": "นำมาใช้ในเกม", + "areYouSureText": "คุณแน่ใจใช่มั้ย?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(\"อัติโนมัติ\" เปิดสิ่งนี้เฉพาะตอนที่เสียบหูฟังอยู่เท่านั้น)", "headRelativeVRAudioText": "ระดับเสียงเครื่องสวมหัว VR", "musicVolumeText": "ระดับเสียงเพลง", "soundVolumeText": "ระดับเสียงประกอบ", "soundtrackButtonText": "เพลงประกอบ", - "soundtrackDescriptionText": "(นำเพลงของคุณเองมาใช้ในการเล่นเกม)", + "soundtrackDescriptionText": "(นำเพลงของคุณเองมาใช้เล่นในเกม)", "titleText": "การตั้งค่าเสียง" }, "autoText": "อัติโนมัติ", @@ -361,14 +366,23 @@ "boostText": "บูสท์", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} กำลังค่าในตัวแอพเอง", "buttonText": "ปุ่ม", - "canWeDebugText": "คุณอยากให้ BombSquad แจ้งข้อผิดพลาด ปัญหา\nและข้อมูลการใช้งานทั่วไปกับผู้สร้างโดยอัติโนมัติหรือไม่?\n\nข้อมูลนี้จะไม่เกี่ยวข้องกับข้อมูลส่วนตัวและจะช่วยให้\nสามารถเล่นเกมได้อย่างราบรื่นและไม่มีข้อผิดพลาด", + "canWeDebugText": "คุณต้องการให้ ${APP_NAME} รายงานข้อบกพร่อง ข้อขัดข้อง และข้อมูลการใช้งานพื้นฐานไปยังผู้พัฒนาโดยอัตโนมัติหรือไม่\n\nข้อมูลนี้ไม่มีข้อมูลส่วนบุคคลและช่วยให้เกมทำงานได้อย่างราบรื่นและไม่มีข้อบกพร่อง", "cancelText": "ยกเลิก", "cantConfigureDeviceText": "ขออภัย, ${DEVICE} ไม่สามารถตั้งค่าได้", "challengeEndedText": "การท้าทายนี้ได้จบลงแล้ว", "chatMuteText": "ปิดเสียงแชท", "chatMutedText": "ปิดเสียงการแชท", "chatUnMuteText": "ยกเลิกการปิดเสียงแขท", + "chests": { + "prizeOddsText": "อัตราการได้รางวัล", + "reduceWaitText": "ลดเวลารอ", + "slotDescriptionText": "ช่องนี้ใช้สำหรับใส่หีบ\n\nรับหีบได้จากการเล่นด่านต่างๆ ในด่านแคมเปญ,\nการเข้าร่วมการแข่งขันและการทำความสำเร็จ\nให้สำเร็จ", + "slotText": "ช่องเก็บหีบที่ ${NUM}", + "slotsFullWarningText": "คำเตือน: ช่องเก็บหีบของคุณเต็มหมดแล้ว\nหีบใดๆ ที่คุณได้รับจากเกมนี้จะหายไป" + }, "choosingPlayerText": "<กำลังเลือกผู้เล่น>", + "claimText": "รับ", + "codesExplainText": "นักพัฒนาซอฟต์แวร์มอบรหัสเพื่อ\nวินิจฉัยและแก้ไขปัญหาบัญชี", "completeThisLevelToProceedText": "คุณต้องผ่านด่านนี้\nก่อนจึงจะไปต่อได้!", "completionBonusText": "รางวัลการผ่านด่าน", "configControllersWindow": { @@ -427,7 +441,7 @@ "twoInOneSetupText": "การตั้งค่าคอนโทรลเลอร์แบบ 2 ใน 1", "uiOnlyDescriptionText": "(ป้องกันคอนโทรลเลอร์ตัวนี้ไม่ให้ใช้เข้าร่วมเกม)", "uiOnlyText": "จำกัดในการใช้เมนู", - "unassignedButtonsRunText": "วิ่งปุ่มที่ไม่ได้ตั้งทั้งหมด", + "unassignedButtonsRunText": "ใช้ปุ่มที่ไม่ได้กำหนดทั้งหมดในการวิ่ง", "unsetText": "<ไม่ได้ตั้ง>", "vrReorientButtonText": "ปรับทิศทางปุ่ม VR" }, @@ -552,6 +566,7 @@ "demoText": "ทดลอง", "denyText": "ยกเลิก", "deprecatedText": "ไม่ถูกใช้งาน", + "descriptionText": "คำอธิบายเกม", "desktopResText": "เดสก์ท็อป Res", "deviceAccountUpgradeText": "คำเตือน:\nคุณลงชื่อเข้าใช้ด้วยบัญชีอุปกรณ์ (${NAME})\nบัญชีอุปกรณ์จะถูกลบออกในการอัปเดตในอนาคต\nอัปเกรดเป็นบัญชี V2 หากคุณต้องการติดตามความคืบหน้า", "difficultyEasyText": "ง่าย", @@ -563,6 +578,7 @@ "disableXInputDescriptionText": "อนุญาตให้ใช้คอนโทรลเลอร์มากกว่า 4 ตัวแต่จะทำงานได้ไม่ค่อยดีเท่าไหร่", "disableXInputText": "ปิด XInput", "disabledText": "ปิด", + "discardText": "ทิ้ง", "discordFriendsText": "ต้องการหาเพื่อนที่จะเล่นด้วยใช่ไหม\nเข้า Discord ของพวกเราและหาเพื่อนใหม่ๆ!", "discordJoinText": "เข้าร่วม Discord", "doneText": "เสร็จสิ้น", @@ -597,6 +613,7 @@ "localProfileText": "(โปรไฟล์ส่วนตัว)", "nameDescriptionText": "ชื่อผู้เล่น", "nameText": "ชื่อ", + "profileAlreadyExistsText": "โปรไฟล์นี้ไม่สามารถใช้ชื่อนี้ได้", "randomText": "สุ่มชื่อ", "titleEditText": "แก้ไขโปรไฟล์", "titleNewText": "สร้างโปรไฟล์ใหม่", @@ -636,7 +653,7 @@ "endText": "จบ", "enjoyText": "ขอให้สนุก!", "epicDescriptionFilterText": "${DESCRIPTION} ในการเคลื่อนไหวที่ช้ามากๆ", - "epicNameFilterText": "${NAME} แบบช้ามหากาฬ", + "epicNameFilterText": "มหากาพย์ ${NAME}", "errorAccessDeniedText": "การเข้าถึงถูกปฏิเสธ", "errorDeviceTimeIncorrectText": "เวลาของอุปกรณ์ไม่ถูกต้อง ${HOURS} ชั่วโมง\nมีแนวโน้มที่จะทำให้เกิดปัญหา\nโปรดตรวจสอบการตั้งค่าเวลาและเขตเวลาของคุณ", "errorOutOfDiskSpaceText": "พื้นที่ว่างในเครื่องหมด", @@ -644,6 +661,8 @@ "errorText": "ข้อผิดพลาด", "errorUnknownText": "ข้อผิดพลาดที่ไม่รู้จัก", "exitGameText": "จะออกจาก ${APP_NAME} หรือไม่?", + "expiredAgoText": "หมดอายุเมื่อ ${T} ที่แล้ว", + "expiresInText": "หมดอายุใน ${T}", "exportSuccessText": "'${NAME}' ถูกส่งออกแล้ว", "externalStorageText": "พื้นที่ว่าง", "failText": "ล้มเหลว", @@ -678,6 +697,8 @@ "duplicateText": "ทำซ้ำ\nเพลย์ลิส", "editText": "แก้ไข\nเพลย์ลิส", "newText": "สร้าง\nเพลย์ลิสใหม่", + "pointsToWinText": "คะแนนและชัยชนะ", + "seriesLengthText": "ความยาวในการโชว์", "showTutorialText": "โชว์การสอนก่อนเริ่ม", "shuffleGameOrderText": "เรียงเกมตามลำดับ", "titleText": "ปรับแต่งเพลย์ลิส ${TYPE}" @@ -703,6 +724,7 @@ "copyCodeConfirmText": "คัดลอกรหัสไปยังคลิปบอร์ดแล้ว", "copyCodeText": "คัดลอกรหัส", "dedicatedServerInfoText": "เพื่อผลลัพธ์ที่ดีที่สุดตั้งค่าเซิร์ฟเวอร์เฉพาะ ดู bombsquadgame.com/server เพื่อเรียนรู้วิธีการ", + "descriptionShortText": "ใช้หน้าต่างรวมตัวเพื่อเข้าร่วมปาร์ตี้", "disconnectClientsText": "สิ่งนี้จะตัดการเชื่อมต่อผู้เล่น ${COUNT} คน\nในงานปาร์ตี้ของคุณ คุณแน่ใจไหม?", "earnTicketsForRecommendingAmountText": "เพื่อน ๆ จะได้รับตั๋ว ${COUNT} ถ้าพวกเขาลองเล่นเกม\n(และคุณจะได้รับ ${YOU_COUNT} สำหรับแต่ละคนที่ทำ)", "earnTicketsForRecommendingText": "แชร์เกมนี้\nสำหรับตั๋วฟรี", @@ -715,10 +737,10 @@ "friendHasSentPromoCodeText": "${COUNT} ${APP_NAME} ตั๋วจาก ${NAME}", "friendPromoCodeAwardText": "คุณจะได้รับตั๋ว ${COUNT} ทุกครั้งที่ใช้", "friendPromoCodeExpireText": "รหัสจะหมดอายุใน ${EXPIRE_HOURS} ชั่วโมงและใช้ได้กับผู้เล่นใหม่เท่านั้น", - "friendPromoCodeInstructionsText": "หากต้องการใช้งานให้เปิด ${APP_NAME} แล้วไปที่ \"การตั้งค่า -> ขั้นสูง -> ใส่รหัส\"\nดู bombsquadgame.com สำหรับลิงก์ดาวน์โหลดสำหรับแพลตฟอร์มที่รองรับทั้งหมด", + "friendPromoCodeInstructionsText": "หากต้องการใช้ ให้เปิด ${APP_NAME} แล้วไปที่ \"การตั้งค่า->ขั้นสูง->ส่งข้อมูล\"\nไปที่ bombsquadgame.com เพื่อดูลิงก์ดาวน์โหลดสำหรับแพลตฟอร์มที่รองรับทั้งหมด", "friendPromoCodeRedeemLongText": "สามารถแลกเป็นตั๋วฟรี ${COUNT} คนสูงถึง ${MAX_USES} คน", "friendPromoCodeRedeemShortText": "สามารถแลกเป็นตั๋ว ${COUNT} ใบในเกม", - "friendPromoCodeWhereToEnterText": "(ใน \"การตั้งค่า->ขั้นสูง->ป้อนรหัส\")", + "friendPromoCodeWhereToEnterText": "(ใน \"ตั้งค่า->ขั้นสูง->ส่งข้อมูล\")", "getFriendInviteCodeText": "รับรหัสเชิญเพื่อน", "googlePlayDescriptionText": "เชิญผู้เล่น Google Play เข้าร่วมปาร์ตี้ของคุณ:", "googlePlayInviteText": "เชิญ", @@ -814,6 +836,12 @@ "youHaveShortText": "คุณมี ${COUNT} ใบ", "youHaveText": "คุณมีตั๋ว ${COUNT} ใบ" }, + "goldPass": { + "desc1InfTokensText": "โทเค็นที่ไม่มีที่สิ้นสุด", + "desc2NoAdsText": "ไม่มีโฆษณา", + "desc3ForeverText": "ตลอดไป.", + "goldPassText": "บัตรทองคำ" + }, "googleMultiplayerDiscontinuedText": "ขออภัย บริการผู้เล่นหลายคนของ Google ไม่มีให้บริการอีกต่อไป\nฉันกำลังดำเนินการเปลี่ยนให้เร็วที่สุด\nในระหว่างนี้ โปรดลองวิธีการเชื่อมต่ออื่น\n-เอริค", "googlePlayPurchasesNotAvailableText": "ไม่สามารถซื้อด้วย Google Play ได้\nคุณอาจต้องอัปเดตแอปร้านค้าของคุณ", "googlePlayServicesNotAvailableText": "บริการ Google Play ไม่พร้อมใช้งาน\nฟังก์ชันบางอย่างของแอปอาจถูกปิดใช้งาน", @@ -888,6 +916,7 @@ "importText": "นำเข้า", "importingText": "กำลังนำเข้า...", "inGameClippedNameText": "ในเกมจะเป็น\n\"${NAME}\"", + "inboxText": "กล่องข้อความ", "installDiskSpaceErrorText": "ข้อผิดพลาด: ไม่สามารถทำการติดตั้งให้เสร็จสิ้นได้\nคุณอาจไม่มีที่ว่างบนอุปกรณ์ของคุณ\nล้างพื้นที่บางส่วนแล้วลองอีกครั้ง", "internal": { "arrowsToExitListText": "กด ${LEFT} หรือ ${RIGHT} เพื่อออกจากรายการ", @@ -942,12 +971,14 @@ "timeOutText": "(หมดเวลาใน ${TIME} วินาที)", "touchScreenJoinWarningText": "คุณได้เข้าร่วมกับหน้าจอสัมผัส\nหากนี่เป็นข้อผิดพลาด ให้แตะ 'เมนู -> ออกจากเกม' ด้วย", "touchScreenText": "หน้าจอสัมผัส", + "unableToCompleteTryAgainText": "ไม่สามารถดำเนินการได้ในขณะนี้\nโปรดลองอีกครั้ง", "unableToResolveHostText": "ข้อผิดพลาด: ไม่สามารถแก้ไขโฮสต์", "unavailableNoConnectionText": "ไม่สามารถใช้งานได้ในขณะนี้ (ไม่มีการเชื่อมต่ออินเทอร์เน็ตหรอ?)", "vrOrientationResetCardboardText": "ใช้เพื่อรีเซ็ตการวางแนว VR\nในการเล่นเกม คุณจะต้องมีคอนโทรลเลอร์ภายนอก", "vrOrientationResetText": "รีเซ็ตการวางแนว VR", "willTimeOutText": "(จะหมดเวลาถ้าว่าง)" }, + "inventoryText": "คลังเก็บของ", "jumpBoldText": "กระโดด", "jumpText": "กระโดด", "keepText": "เก็บไว้", @@ -994,8 +1025,11 @@ "seasonEndsMinutesText": "จะสิ้นสุดซีซั่นในอีก ${NUMBER} นาที", "seasonText": "ซีซั่น ${NUMBER}", "tournamentLeagueText": "คุณต้องไปถึงลีก ${NAME} เพื่อเข้าร่วมการแข่งขันนี้", - "trophyCountsResetText": "จำนวนถ้วยรางวัลจะรีเซ็ตในซีซั่นหน้า" + "trophyCountsResetText": "จำนวนถ้วยรางวัลจะรีเซ็ตในซีซั่นหน้า", + "upToDateBonusDescriptionText": "ผู้เล่นที่รันเกมนี้ด้วยเวอร์ชันล่าสุด\nจะได้รับโบนัส ${PERCENT}% ที่นี่", + "upToDateBonusText": "โบนัสอัพเดท" }, + "learnMoreText": "เรียนรู้เพิ่มเติม", "levelBestScoresText": "คะแนนที่ดีที่สุดใน ${LEVEL}", "levelBestTimesText": "เวลาที่ดีที่สุดใน ${LEVEL}", "levelIsLockedText": "${LEVEL} ถูกล็อก", @@ -1039,6 +1073,8 @@ "modeArcadeText": "โหมดอาเขต", "modeClassicText": "โหมดคลาสสิก", "modeDemoText": "โหมดสาธิต", + "moreSoonText": "จะมีเพิ่มเติมในเร็วๆ นี้...", + "mostDestroyedPlayerText": "ผู้เล่นที่ถูกขยี้มากที่สุด", "mostValuablePlayerText": "ผู้เล่นที่ทำคะแนนมากที่สุด", "mostViolatedPlayerText": "ผู้เล่นที่ฆ่าน้อยที่สุด", "mostViolentPlayerText": "ผู้เล่นที่ฆ่ามากที่สุด", @@ -1055,6 +1091,7 @@ "nameSuicideText": "${NAME} ฆ่าตัวตาย", "nameText": "ชื่อ", "nativeText": "ดั้งเดิม", + "newExclaimText": "ใหม่!", "newPersonalBestText": "ใหม่ส่วนตัวดีที่สุด!", "newTestBuildAvailableText": "มีการสร้างการทดสอบที่ใหม่กว่า! (${VERSION} บิลด์ ${BUILD})\nรับได้ที่ ${ADDRESS}", "newText": "ใหม่", @@ -1065,6 +1102,7 @@ "noContinuesText": "(ไม่มีต่อ)", "noExternalStorageErrorText": "ไม่พบที่จัดเก็บข้อมูลภายนอกในอุปกรณ์นี้", "noGameCircleText": "ข้อผิดพลาด: ไม่ได้ลงชื่อเข้าใช้ GameCircle", + "noMessagesText": "ไม่มีข้อความ", "noPluginsInstalledText": "ไม่มีปลั๊กอินติดตั้งอยู่", "noScoresYetText": "ไม่มีคะแนน", "noServersFoundText": "ไม่พบเซิร์ฟเวอร์", @@ -1073,11 +1111,12 @@ "noValidMapsErrorText": "ไม่พบแผนที่ที่ถูกต้องสำหรับเกมนี้", "notEnoughPlayersRemainingText": "ไม่มีผู้เล่นเหลือพอ กรุณาออกแล้วเริ่มเกมใหม่", "notEnoughPlayersText": "คุณต้องการผู้เล่นอย่างน้อย ${COUNT} คนจึงจะเริ่มเกมได้!", + "notEnoughTicketsText": "มีตั๋วไม่พอ!", "notNowText": "ไม่ใช่ตอนนี้", - "notSignedInErrorText": "คุณต้องลงชื่อเข้าใช้เพื่อทำสิ่งนี้", - "notSignedInGooglePlayErrorText": "คุณต้องลงชื่อเข้าใช้ Google Play เพื่อดำเนินการนี้", - "notSignedInText": "ไม่ได้ลงชื่อเข้าใช้", - "notUsingAccountText": "หมายเหตุ: ละเว้นบัญชี ${SERVICE}\nไปที่ 'บัญชี -> ลงชื่อเข้าใช้ด้วย ${SERVICE}' หากคุณต้องการ", + "notSignedInErrorText": "คุณต้องเข้าสู่ระบบเพื่อทำสิ่งนี้", + "notSignedInGooglePlayErrorText": "คุณต้องเข้าสู่ระบบ Google Play เพื่อดำเนินการต่อ", + "notSignedInText": "ไม่ได้เข้าสู่ระบบ", + "notUsingAccountText": "หมายเหตุ: ละเว้นบัญชี ${SERVICE}\nไปที่ 'บัญชี -> เข้าสู่ระบบด้วย ${SERVICE}' หากคุณต้องการ", "nothingIsSelectedErrorText": "ไม่มีอะไรถูกเลือก!", "numberText": "#${NUMBER}", "offText": "ปิด", @@ -1085,9 +1124,12 @@ "onText": "เปิด", "oneMomentText": "แป๊บนึง...", "onslaughtRespawnText": "${PLAYER} จะเกิดใหม่ในรอบที่ ${WAVE}", + "openMeText": "เปิดฉันสิ!", + "openNowText": "เปิดตอนนี้", + "openText": "เปิด", "orText": "${A} หรือ ${B}", "otherText": "อื่น...", - "outOfText": "(#${RANK} จาก ${ALL})", + "outOfText": "ที่ (#${RANK} จาก ${ALL})", "ownFlagAtYourBaseWarning": "ธงของคุณจะต้องอยู่ที่\nฐานจึงจะทำคะแนนได้!", "packageModsEnabledErrorText": "การเล่นแบบใช้เน็ตไม่มสามรถใช้งานได้ในเมื่อ \"แพ็คเกจม็อดท้องถิ่น\" กำลังเปิดอยู่ (ดูได้ใน การตั้งค่า-> ขั้นสูง)", "partyWindow": { @@ -1170,6 +1212,8 @@ "punchText": "ต่อย", "purchaseForText": "ซื้อในราคา ${PRICE}", "purchaseGameText": "ซื้อเกม", + "purchaseNeverAvailableText": "ขออภัย ไม่สามารถซื้อได้ในขณะนี้\nลองลงชื่อเข้าใช้บัญชีของคุณบนอุปกรณ์อื่นแล้วซื้ออีกครั้ง", + "purchaseNotAvailableText": "ไม่สามารถซื้อได้ในขณะนี้", "purchasingText": "กำลังจัดซื้อ...", "quitGameText": "ออกจาก ${APP_NAME} ไหม?", "quittingIn5SecondsText": "ออกจากระบบใน 5 วินาที...", @@ -1211,6 +1255,7 @@ "version_mismatch": "เวอร์ชั่นตรงกัน.\nตรวจสอบให้แน่ใจว่า BombSquad และ BombSquad Remote\nเป็นเวอร์ชันล่าสุดแล้วลองอีกครั้ง" }, "removeInGameAdsText": "ปลดล็อก \"${PRO}\" ในร้านค้าเพื่อลบโฆษณาในเกม", + "removeInGameAdsTokenPurchaseText": "ข้อเสนอจำกัดเวลา: ซื้อแพ็คโทเค็นใดๆ เพื่อลบโฆษณาในเกม", "renameText": "เปลี่ยนชื่อ", "replayEndText": "สิ้นสุดการเล่นซ้ำ", "replayNameDefaultText": "รีเพลย์เกมล่าสุด", @@ -1244,10 +1289,11 @@ }, "scoreWasText": "(เดิมคือ ${COUNT})", "selectText": "เลือก", + "sendInfoDescriptionText": "ส่งข้อมูลบัญชีและสถานะแอปให้กับนักพัฒนา\nโปรดระบุชื่อหรือเหตุผลในการส่ง", "seriesWinLine1PlayerText": "ชนะ", "seriesWinLine1TeamText": "ชนะ", "seriesWinLine1Text": "ชนะ", - "seriesWinLine2Text": "ซีรีส์", + "seriesWinLine2Text": "ซีรีส์!", "settingsWindow": { "accountText": "บัญชี", "advancedText": "ขั้นสูง", @@ -1261,41 +1307,52 @@ "alwaysUseInternalKeyboardDescriptionText": "(แป้นพิมพ์บนหน้าจอที่เรียบง่ายและเป็นมิตรกับตัวควบคุมสำหรับการแก้ไขข้อความ)", "alwaysUseInternalKeyboardText": "ใช้แป้นพิมพ์ภายในเสมอ", "benchmarksText": "เกณฑ์มาตรฐานและการทดสอบความเครียด", - "disableCameraGyroscopeMotionText": "ปิดใช้งานการเคลื่อนไหวของกล้อง Gyroscope", - "disableCameraShakeText": "ปิดใช้งานการสั่นของกล้อง", + "devToolsText": "เครื่องมือสำหรับนักพัฒนา", + "disableCameraGyroscopeMotionText": "ปิดใช้งานการเคลื่อนไหวของไจโรสโคปของกล้อง", + "disableCameraShakeText": "ปิดการสั่นของกล้อง", "disableThisNotice": "(คุณสามารถปิดการใช้งานประกาศนี้ในการตั้งค่าขั้นสูง)", "enablePackageModsDescriptionText": "(การเปิดใช้งานที่ทำให้ใช้ม็อดได้หลากหลายมากขึ้นแต่จะปิดระบบการเล่นแบบใช้เน็ต)", "enablePackageModsText": "เปิดแพ็คเกจม็อดท้องถิ่น", "enterPromoCodeText": "ใส่รหัส", "forTestingText": "หมายเหตุ: ค่าเหล่านี้ใช้สำหรับการทดสอบเท่านั้นและจะสูญหายไปเมื่อออกจากแอป", - "helpTranslateText": "การแปลที่ไม่ใช่ภาษาอังกฤษของ ${APP_NAME} เป็นชุมชน\nสนับสนุนความพยายาม หากคุณต้องการมีส่วนร่วมหรือแก้ไข\nแปลตามลิงค์ด้านล่างครับ ขอบคุณล่วงหน้า!", + "helpTranslateText": "การแปลที่ไม่ใช่ภาษาอังกฤษของเกม ${APP_NAME} ได้รับการ\nสนับสนุนจากชุมชน หากคุณต้องการมีส่วนร่วมหรือแก้ไขการแปล \nโปรดคลิ๊กลิงก์ด้านล่าง ขอบคุณล่วงหน้า!", + "insecureConnectionsDescriptionText": "ไม่แนะนำแต่สามารถเล่นออนไลน์ได้\nจากประเทศหรือเครือข่ายที่ถูกจำกัด", + "insecureConnectionsText": "ใช้การเชื่อมต่อที่ไม่ปลอดภัย", "kickIdlePlayersText": "เตะผู้เล่นที่ไม่ได้ใช้งาน", "kidFriendlyModeText": "โหมดเป็นมิตรกับเด็ก (ลดความรุนแรง ฯลฯ)", "languageText": "ภาษา", "moddingGuideText": "คู่มือการม็อด", + "moddingToolsText": "การดัดแปลงเครื่องมือเกม", "mustRestartText": "คุณต้องเริ่มเกมใหม่เพื่อให้สิ่งนี้มีผล", "netTestingText": "การทดสอบเครือข่าย", "resetText": "รีเซ็ต", + "sendInfoText": "ส่งข้อมูล", "showBombTrajectoriesText": "แสดงวิถีลูกระเบิด", - "showInGamePingText": "แสดง Ping ในเกม", + "showDemosWhenIdleText": "แสดงการสาธิตเมื่อไม่ได้ใช้งาน", + "showDeprecatedLoginTypesText": "แสดงประเภทการเข้าสู่ระบบที่ไม่ใช้แล้ว", + "showDevConsoleButtonText": "แสดงปุ่มคอนโซลสำรับนักพัฒนา", + "showInGamePingText": "แสดงค่า ping ในเกม", "showPlayerNamesText": "แสดงชื่อผู้เล่น", "showUserModsText": "แสดงโฟลเดอร์ Mods", "titleText": "ขั้นสูง", - "translationEditorButtonText": "${APP_NAME} ผู้แก้ไขการแปล", + "translationEditorButtonText": "หน้าแก้ไขการแปลภาษาของ ${APP_NAME}", "translationFetchErrorText": "สถานะการแปลไม่พร้อมใช้งาน", "translationFetchingStatusText": "กำลังตรวจสอบสถานะการแปล...", "translationInformMe": "แจ้งฉันเมื่อภาษาของฉันต้องการการอัปเดต", - "translationNoUpdateNeededText": "ภาษาปัจจุบันเป็นปัจจุบัน วู้ฮู!", - "translationUpdateNeededText": "** ภาษาปัจจุบันต้องการการอัปเดต !! **", + "translationNoUpdateNeededText": "ภาษาปัจจุบันทันสมัยแล้ว", + "translationUpdateNeededText": "** ภาษาปัจจุบันต้องการการอัปเดตตอนนี้!! **", "vrTestingText": "การทดสอบ VR" }, "shareText": "แบ่งปัน", "sharingText": "การแบ่งปัน...", "showText": "แสดง", - "signInForPromoCodeText": "คุณต้องลงชื่อเข้าใช้บัญชีเพื่อให้รหัสมีผล", + "signInForPromoCodeText": "คุณต้องเข้าสู่ระบบเพื่อให้รหัสมีผล", "signInWithGameCenterText": "ในการใช้บัญชี Game Center\nลงชื่อเข้าใช้ด้วยแอพ Game Center", "singleGamePlaylistNameText": "แค่ ${GAME}", "singlePlayerCountText": "ผู้เล่น 1 คน", + "sizeLargeText": "ใหญ่", + "sizeMediumText": "ปานกลาง", + "sizeSmallText": "เล็ก", "soloNameFilterText": "เดี่ยว ${NAME}", "soundtrackTypeNames": { "CharSelect": "การเลือกตัวละคร", @@ -1368,7 +1425,9 @@ "storeText": "ร้านค้า", "submitText": "ส่ง", "submittingPromoCodeText": "กำลังส่งรหัส...", - "teamNamesColorText": "Team Names/Colors...", + "successText": "ความสำเร็จ!", + "supportEmailText": "หากคุณประสบปัญหาใดๆ กับแอป โปรดส่งอีเมลไปที่ ${EMAIL}", + "teamNamesColorText": "ชื่อทีม/สี...", "telnetAccessGrantedText": "เปิดใช้งานการเข้าถึง Telnet", "telnetAccessText": "ตรวจพบการเข้าถึง Telnet; อนุญาต?", "testBuildErrorText": "รุ่นทดสอบนี้ไม่ทำงานอีกต่อไป โปรดตรวจสอบเวอร์ชันใหม่", @@ -1377,6 +1436,7 @@ "testBuildValidatedText": "ทดสอบบิลด์ที่ตรวจสอบแล้ว; สนุก!", "thankYouText": "ขอบคุณสำหรับการสนับสนุนของคุณ! สนุกกับเกม!!", "threeKillText": "ฆ่าสามครั้ง!!", + "ticketsDescriptionText": "สามารถใช้ตั๋วเพื่อปลดล็อคตัวละคร,\nแผนที่, มินิเกมและอื่นๆ ได้ในร้านค้า\n\nสามารถพบตั๋วได้ในหีบที่ได้รับจาก\nแคมเปญ, ทัวร์นาเมนต์และความสำเร็จ", "timeBonusText": "โบนัสเวลา", "timeElapsedText": "เวลาที่ผ่านไป", "timeExpiredText": "เวลาหมด", @@ -1387,10 +1447,23 @@ "tipText": "เคล็ดลับ", "titleText": "BombSquad", "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "รับโทเค็น", + "notEnoughTokensText": "โทเค็นไม่เพียงพอ!", + "numTokensText": "${COUNT} โทเค็น", + "shinyNewCurrencyText": "สกุลเงินใหม่อันแวววาวของ BombSquad", + "tokenPack1Text": "แพ็คโทเค็นขนาดเล็ก!", + "tokenPack2Text": "แพ็คโทเค็นขนาดกลาง!", + "tokenPack3Text": "แพ็คโทเค็นขนาดใหญ่", + "tokenPack4Text": "แพ็คโทเค็นจัมโบ้!!", + "tokensDescriptionText": "โทเค็นใช้เพื่อเร่งความเร็วในการปลดล็อกหีบ\nและสำหรับคุณสมบัติของเกมและบัญชีอื่นๆ\n\nคุณสามารถรับโทเค็นในเกมหรือซื้อเป็นแพ็ค \nหรือซื้อ Gold Pass เพื่อรับรางวัลไม่จำกัด\nและไม่ต้องพบเจอมันอีกต่อไป", + "youHaveGoldPassText": "คุณมี บัตรทองคำ\nการซื้อโทเค็นทั้งหมดฟรี\nสนุกได้เลย!" + }, "topFriendsText": "เพื่อนที่ดีที่สุด", "tournamentCheckingStateText": "การตรวจสอบสถานะการแข่งขัน โปรดรอ...", "tournamentEndedText": "การแข่งขันนี้สิ้นสุดลงแล้ว ใหม่จะเริ่มเร็ว ๆ นี้", "tournamentEntryText": "รายการแข่งขัน", + "tournamentFinalStandingsText": "ตารางสรุปผลคะแนน", "tournamentResultsRecentText": "ผลการแข่งขันล่าสุด", "tournamentStandingsText": "อันดับการแข่งขัน", "tournamentText": "การแข่งขัน", @@ -1446,6 +1519,18 @@ "Uber Onslaught": "Uber Onslaught", "Uber Runaround": "Uber Runaround" }, + "displayItemNames": { + "${C} Tickets": "ตั๋ว ${C} ใบ", + "${C} Tokens": "โทเคน ${C} เหรียญ", + "Chest": "หีบทั่วไป", + "L1 Chest": "หีบระดับ 1", + "L2 Chest": "หีบระดับ 2", + "L3 Chest": "หีบระดับ 3", + "L4 Chest": "หีบระดับ 4", + "L5 Chest": "หีบระดับ 5", + "L6 Chest": "หีบระดับ 6", + "Unknown Chest": "หีบที่ไม่รู้จัก" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "เป็นผู้ที่ได้รับเลือกเป็นระยะเวลาหนึ่งเพื่อชนะ\nฆ่าคนที่ถูกเลือกให้เป็น", "Bomb as many targets as you can.": "วางระเบิดเป้าหมายให้ได้มากที่สุด", @@ -1550,6 +1635,7 @@ "Korean": "ภาษาเกาหลี", "Malay": "ภาษามาเลเซีย", "Persian": "ภาษาเปอร์เซีย", + "PirateSpeak": "โจรสลัดพูดกับคุณ", "Polish": "ภาษาโปแลนด์", "Portuguese": "ภาษาโปรตุเกส", "Romanian": "ภาษาโรมาเนีย", @@ -1580,7 +1666,7 @@ "Football Stadium": "สนามฟุตบอล", "Happy Thoughts": "ความคิดที่เป็นสุข", "Hockey Stadium": "สนามฮอกกี้", - "Lake Frigid": "ทะเลสาบฟริจิด", + "Lake Frigid": "ทะเลสาบเยือกแข็ง", "Monkey Face": "หน้าลิง", "Rampage": "อาละวาด", "Roundabout": "วงเวียน", @@ -1621,6 +1707,7 @@ "Cheating detected; scores and prizes suspended for ${COUNT} days.": "ตรวจพบการโกง; คะแนนและรางวัลถูกระงับเป็นเวลา ${COUNT} วัน", "Could not establish a secure connection.": "ไม่สามารถสร้างการเชื่อมต่อที่ปลอดภัย", "Daily maximum reached.": "ถึงสูงสุดรายวันแล้ว", + "Daily sign-in reward": "รางวัลการลงชื่อเข้าใช้รายวัน", "Entering tournament...": "เข้าสู่การแข่งขัน...", "Invalid code.": "รหัสไม่ถูกต้อง", "Invalid payment; purchase canceled.": "การชำระเงินไม่ถูกต้อง การซื้อถูกยกเลิก", @@ -1630,11 +1717,14 @@ "Item unlocked!": "ปลดล็อคไอเทมแล้ว!", "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "การเชื่อมโยงถูกปฏิเสธ ${ACCOUNT} ประกอบด้วย\nข้อมูลสำคัญที่จะสูญหายทั้งหมด\nคุณสามารถเชื่อมโยงในลำดับตรงกันข้ามหากคุณต้องการ\n(และสูญเสียข้อมูลของบัญชีนี้แทน)", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "เชื่อมโยงบัญชี ${ACCOUNT} กับบัญชีนี้หรือไม่\nข้อมูลที่มีอยู่ทั้งหมดใน ${ACCOUNT} จะหายไป\nไม่สามารถยกเลิกได้ คุณแน่ใจไหม?", + "Longer streaks lead to better rewards.": "ยิ่งรับรางวัลต่อเนื่องนานเท่าไรก็จะยิ่งได้รับรางวัลที่ดียิ่งขึ้นเท่านั้น", "Max number of playlists reached.": "ถึงจำนวนเพลย์ลิสต์สูงสุดแล้ว", "Max number of profiles reached.": "ถึงจำนวนโปรไฟล์สูงสุดแล้ว", "Maximum friend code rewards reached.": "รางวัลรหัสเพื่อนถึงขีดจำกัดแล้ว", "Message is too long.": "ข้อความยาวเกินไป", + "New tournament result!": "ผลการแข่งขันใหม่!", "No servers are available. Please try again soon.": "ไม่มีเซิร์ฟเวอร์ที่พร้อมใช้งาน โปรดลองอีกครั้งในเร็วๆ นี้", + "No slots available. Free a slot and try again.": "ไม่มีช่องว่าง ทำให้มีช่องเก็บหีบว่างแล้วลองใหม่อีกครั้ง", "Profile \"${NAME}\" upgraded successfully.": "อัปเกรดโปรไฟล์ \"${NAME}\" สำเร็จแล้ว", "Profile could not be upgraded.": "ไม่สามารถอัพเกรดโปรไฟล์ได้", "Purchase successful!": "ซื้อสำเร็จ!", @@ -1644,7 +1734,9 @@ "Sorry, this code has already been used.": "ขออภัย รหัสนี้ถูกใช้ไปแล้ว", "Sorry, this code has expired.": "ขออภัย รหัสนี้หมดอายุแล้ว", "Sorry, this code only works for new accounts.": "ขออภัย รหัสนี้ใช้ได้กับบัญชีใหม่เท่านั้น", + "Sorry, this has expired.": "ขออภัย หมดอายุแล้ว", "Still searching for nearby servers; please try again soon.": "ยังคงค้นหาเซิร์ฟเวอร์ใกล้เคียง โปรดลองอีกครั้งในเร็วๆ นี้", + "Streak: ${NUM} days": "ต่อเนื่อง: ${NUM} วัน", "Temporarily unavailable; please try again later.": "ปิดให้บริการชั่วคราว; โปรดลองอีกครั้งในภายหลัง.", "The tournament ended before you finished.": "การแข่งขันสิ้นสุดลงก่อนที่คุณจะเสร็จสิ้น", "This account cannot be unlinked for ${NUM} days.": "บัญชีนี้ไม่สามารถยกเลิกการเชื่อมโยงได้เป็นเวลา ${NUM} วัน", @@ -1655,19 +1747,27 @@ "Tournaments require ${VERSION} or newer": "ทัวร์นาเมนต์ต้องใช้ ${VERSION} หรือใหม่กว่า", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "ยกเลิกการเชื่อมโยง ${ACCOUNT} จากบัญชีนี้หรือไม่\nข้อมูลทั้งหมดใน ${ACCOUNT} จะถูกรีเซ็ต\n(ยกเว้นความสำเร็จในบางกรณี)", "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "คำเตือน: มีการร้องเรียนเกี่ยวกับการแฮ็กบัญชีของคุณ\nบัญชีที่พบว่ามีการแฮ็คจะถูกแบน กรุณาเล่นอย่างยุติธรรม", + "Wait reduced!": "ลดเวลารอแล้ว!", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "คุณต้องการเชื่อมโยงบัญชีอุปกรณ์ของคุณกับบัญชีนี้หรือไม่?\n\nบัญชีอุปกรณ์ของคุณคือ ${ACCOUNT1}\nบัญชีนี้คือ ${ACCOUNT2}\n\nนี้จะช่วยให้คุณรักษาความคืบหน้าที่มีอยู่ของคุณ\nคำเตือน: สิ่งนี้ไม่สามารถยกเลิกได้!", "You already own this!": "คุณเป็นเจ้าของสิ่งนี้แล้ว!", "You can join in ${COUNT} seconds.": "คุณสามารถเข้าร่วมได้ภายในอีก ${COUNT} วินาที", "You don't have enough tickets for this!": "คุณมีตั๋วไม่เพียงพอสำหรับสิ่งนี้!", "You don't own that.": "คุณไม่ได้เป็นเจ้าของสิ่งนั้น", "You got ${COUNT} tickets!": "คุณได้รับตั๋ว ${COUNT} ใบ!", + "You got ${COUNT} tokens!": "คุณได้รับโทเคน ${COUNT} เหรียญ!", "You got a ${ITEM}!": "คุณได้รับ ${ITEM}!", + "You got a chest!": "คุณได้รับหีบ!", + "You got an achievement reward!": "คุณได้รับรางวัลความสำเร็จ!", "You have been promoted to a new league; congratulations!": "คุณได้รับการเลื่อนตำแหน่งเป็นลีกใหม่ ยินดีด้วย!", + "You lost a chest! (All your chest slots were full)": "คุณเสียหีบไป! (ช่องเก็บหีบของคุณเต็มหมดแล้ว)", + "You must update the app to view this.": "คุณต้องอัปเดตแอปเพื่อดูสิ่งนี้", "You must update to a newer version of the app to do this.": "คุณต้องอัปเดตแอปเป็นเวอร์ชันใหม่กว่าจึงจะทำได้", "You must update to the newest version of the game to do this.": "คุณต้องอัปเดตเป็นเวอร์ชันใหม่ล่าสุดของเกมจึงจะสามารถทำได้", "You must wait a few seconds before entering a new code.": "คุณต้องรอสักครู่ก่อนที่จะป้อนรหัสใหม่", + "You placed #${RANK} in a tournament!": "คุณอยู่อันดับที่ #${RANK} ในการแข่งขัน!", "You ranked #${RANK} in the last tournament. Thanks for playing!": "คุณติดอันดับ #${RANK} ในทัวร์นาเมนต์ที่แล้ว ขอบคุณสำหรับการเล่น!", - "Your account was rejected. Are you signed in?": "บัญชีของคุณถูกปฏิเสธ คุณลงชื่อเข้าใช้หรือไม่", + "Your account was rejected. Are you signed in?": "บัญชีของคุณถูกปฏิเสธ คุณได้เข้าสู่ระบบหรือไม่?", + "Your ad views are not registering. Ad options will be limited for a while.": "การดูโฆษณาของคุณไม่ได้ถูกบันทึก ตัวเลือกโฆษณาจะถูกจำกัดชั่วคราว", "Your copy of the game has been modified.\nPlease revert any changes and try again.": "สำเนาเกมของคุณได้รับการแก้ไขแล้ว\nโปรดยกเลิกการเปลี่ยนแปลงและลองอีกครั้ง", "Your friend code was used by ${ACCOUNT}": "รหัสเพื่อนของคุณถูกใช้โดย ${ACCOUNT}" }, @@ -1816,11 +1916,13 @@ "toSkipPressAnythingText": "(แตะหรือกดอะไรก็ได้เพื่อข้ามบทแนะนำ)" }, "twoKillText": "ดับเบิ้ลคิล!", + "uiScaleText": "สเกล UI", "unavailableText": "ไม่พร้อมใช้งาน", "unconfiguredControllerDetectedText": "ตรวจพบคอนโทรลเลอร์ที่ไม่ได้กำหนดค่า:", "unlockThisInTheStoreText": "สิ่งนี้จะต้องปลดล็อคในร้านค้า", "unlockThisProfilesText": "ในการสร้างมากกว่า ${NUM} โปรไฟล์ คุณต้อง:", "unlockThisText": "เพื่อปลดล็อกสิ่งนี้ คุณต้อง:", + "unsupportedControllerText": "ขออภัย ไม่รองรับตัวควบคุม \"${NAME}\"", "unsupportedHardwareText": "ขออภัย ฮาร์ดแวร์นี้ไม่ได้รับการสนับสนุนโดยบิวด์ของเกมนี้", "upFirstText": "ขึ้นก่อน:", "upNextText": "ต่อไปในเกม ${COUNT}:", @@ -1828,10 +1930,14 @@ "upgradeText": "อัพเกรด", "upgradeToPlayText": "ปลดล็อก \"${PRO}\" ในร้านค้าในเกมเพื่อเล่นเกมนี้", "useDefaultText": "ใช้ค่าเริ่มต้น", + "userSystemScriptsCreateText": "สร้างสคริปต์ระบบผู้ใช้", + "userSystemScriptsDeleteText": "ลบสคริปต์ระบบผู้ใช้", "usesExternalControllerText": "เกมนี้ใช้คอนโทรลเลอร์ภายนอกสำหรับการป้อนข้อมูล", "usingItunesText": "การใช้แอพ Music สำหรับซาวด์แทร็ก...", "v2AccountLinkingInfoText": "หากต้องการเชื่อมโยงบัญชี V2 ให้ใช้ปุ่ม 'จัดการบัญชี'", + "v2AccountRequiredText": "จำเป็นต้องมีบัญชี V2 อัปเกรดบัญชีของคุณแล้วลองอีกครั้ง", "validatingTestBuildText": "กำลังตรวจสอบการสร้างการทดสอบ...", + "viaText": "จาก", "victoryText": "ชัยชนะ!", "voteDelayText": "คุณไม่สามารถเริ่มโหวตได้อีกเป็นเวลา ${NUMBER} วินาที", "voteInProgressText": "กำลังดำเนินการโหวทอยู่แล้ว", @@ -1896,5 +2002,6 @@ }, "yesAllowText": "ใช่อนุญาต!", "yourBestScoresText": "คะแนนที่ดีที่สุดของคุณ", - "yourBestTimesText": "เวลาที่ดีที่สุดของคุณ" + "yourBestTimesText": "เวลาที่ดีที่สุดของคุณ", + "yourPrizeText": "รางวัลของคุณ:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/turkish.json b/dist/ba_data/data/languages/turkish.json index 66fae40..443481a 100644 --- a/dist/ba_data/data/languages/turkish.json +++ b/dist/ba_data/data/languages/turkish.json @@ -7,7 +7,9 @@ "campaignProgressText": "Mücadele İlerlemesi [Zor]: ${PROGRESS}", "changeOncePerSeason": "Bunu sezon başına sadece bir kere değiştirebilirsin", "changeOncePerSeasonError": "Bunu tekrar değiştirmek için bir sonraki sezona kadar beklemelisin (${NUM}gün)", + "createAnAccountText": "Hesap Oluştur", "customName": "Özel isim", + "deleteAccountText": "Hesabı Sil", "googlePlayGamesAccountSwitchText": "Eğer farklı bir google hesabı kullanmak istiyorsanız,\nGoogle Play Oyunlar uygulamasını kullabilirsiniz.", "linkAccountsEnterCodeText": "Kod Gir", "linkAccountsGenerateCodeText": "Kod Oluştur", @@ -34,7 +36,7 @@ "signInWithTestAccountText": "Test hesabı ile Giriş yap", "signInWithText": "${SERVICE} ile giriş yap.", "signInWithV2InfoText": "(bütün platformlarda çalışan bir hesap)", - "signInWithV2Text": "BombSquad hesabıyla giriş yap", + "signInWithV2Text": "${APP_NAME} hesabıyla giriş yap", "signOutText": "Çıkış Yap", "signingInText": "Giriş yapılıyor...", "signingOutText": "Çıkış yapılıyor...", @@ -342,6 +344,8 @@ "allowText": "Kabul Et", "alreadySignedInText": "Başka bir cihazda hesabına giriş yapılmış;\nlütfen hesapları değiştir ya da diğer cihazlardaki\noyunu kapat ve tekrar dene.", "apiVersionErrorText": "Modul yüklenemiyor ${NAME}; hedef api-versiyon ${VERSION_USED}; ihtiyacımız olan ${VERSION_REQUIRED}.", + "applyText": "Kaydet", + "areYouSureText": "Emin misin?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(\"Oto\" yalnızca kulaklıklar takılı iken etkinleşir)", "headRelativeVRAudioText": "Head-Relative VR Ses", @@ -364,14 +368,23 @@ "boostText": "Öne Geç", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} Uygulamayı kendisine yapılandır", "buttonText": "buton", - "canWeDebugText": "Oyun otomatik olarak hataları, çökmeleri ve basit \nkullanım istatistiklerini geliştiriciye gondersin mi?\n\nBu veri içeriği kişisel bilgilerinizi kullanmaz\noyunun daha iyi çalışmasına yardımcı olur.", + "canWeDebugText": "${APP_NAME} hataları, çökmeleri ve basit kullanım \nbilgilerini otomatik olarak geliştiriciye göndersin mi?\n\nBu veri hiçbir kişisel bilgi içermez ve oyunun daha \nakıcı ve hatasız çalısmasına yardımcı olur.", "cancelText": "İptal", "cantConfigureDeviceText": "Üzgünüz, ${DEVICE} ayarlanabilir değil.", "challengeEndedText": "Bu mücadele sona erdi.", "chatMuteText": "Konuşmayı sustur", "chatMutedText": "Sohbet Susturuldu", "chatUnMuteText": "Konuşmayı aç", + "chests": { + "prizeOddsText": "Olası Ödüller", + "reduceWaitText": "Beklemeyi Hızlandır", + "slotDescriptionText": "Bu yuvaya sandık koyulabilir.\n\nSandıklar mücadele bölümleri oynayarak, \nturnuvalara katılarak ve başarılar elde \nederek kazanılır.", + "slotText": "Sandık Yuvası ${NUM}", + "slotsFullWarningText": "UYARI: Bütün sandık yuvaları dolu.\nBu oyundan kazandığın sandıklar kaybolacak.", + "unlocksInText": "Açılacak" + }, "choosingPlayerText": "", + "claimText": "Topla", "codesExplainText": "Kodlar geliştirici tarafından sağlanır\nhesap sorunlarını teşhis edin ve düzeltin.", "completeThisLevelToProceedText": "İlerlemek için bu \nseviyeyi tamamlamalısınız!", "completionBonusText": "Tamamlama Bonusu", @@ -505,7 +518,7 @@ "totalText": "toplam", "tournamentInfoText": "Ligindeki diğer oyuncular arasında\nen yüksek skoru yap.\n\nÖdüller En fazla skor yapan oyuncular\narasında turnuva süresi bittiğinde verilir.", "welcome1Text": "${LEAGUE} hoş geldiniz. Lig sıralamanı turnuvalarda\nyıldız derecesi kazanarak, başarıları tamamlayarak\nve kupalar kazanarak geliştirebilirsin.", - "welcome2Text": "Ayrıca benzer aktivitelerden biletler kazanabilirsin.\nBiletler yeni karakterler, haritalar, mini-oyunlar\nve turnuvalara katılmak için kulanılabilir.", + "welcome2Text": "Ayrıca benzer aktivitelerden bilet kazanabilirsin.\nBiletler yeni karakterler, haritalar, mini-oyunlar\nve turnuvalara katılmak için kulanılabilir.", "yourPowerRankingText": "Oyuncu Sıralaman:" }, "copyConfirmText": "Panoya kopyalandı.", @@ -568,6 +581,7 @@ "disableXInputDescriptionText": "4 kontrolcüden fazla kullanılabilir fakat iyi çalışmayabilir.", "disableXInputText": "XInput etkisizleştir", "disabledText": "Kullanılmıyor", + "discardText": "İptal", "discordFriendsText": "Yeni oyuncular mı arıyorsun?\nDiscord sunucumuza katılarak yeni arkadaşlar edinebilirsin!", "discordJoinText": "Discord sunucumuza katıl", "doneText": "Tamam", @@ -650,6 +664,8 @@ "errorText": "Hata", "errorUnknownText": "bilinmeyen hata", "exitGameText": "Çık ${APP_NAME}?", + "expiredAgoText": "${T} önce süresi doldu", + "expiresInText": "${T} sonra süresi dolacak", "exportSuccessText": "'${NAME}' Dışa Aktarıldı.", "externalStorageText": "Harici Depolama", "failText": "Başarısızlık", @@ -711,6 +727,7 @@ "copyCodeConfirmText": "Kod panoya kopyalandı", "copyCodeText": "Kodu kopyala", "dedicatedServerInfoText": "En iyi sonuçlar için ozel sunucu ayarlayın. Bakınız; bombsquadgame.com/server", + "descriptionShortText": "Lobi penceresini kullanarak bir parti oluştur.", "disconnectClientsText": "Bu, partindeki ${COUNT} oyuncunun bağlantısını\nkesecek. Emin misin ?", "earnTicketsForRecommendingAmountText": "Eğer arkadaşların oyunu denerler ise ${COUNT} bilet alacak\n(Sen ise bunu her yapan için ${YOU_COUNT} tane.)", "earnTicketsForRecommendingText": "Bedave bilet için\nOyunu paylaş...", @@ -815,13 +832,19 @@ "ticketsFromASponsorText": "${COUNT} Bilet için\nbir reklam izle", "ticketsText": "${COUNT} Bilet", "titleText": "Bilet Al", - "unavailableLinkAccountText": "Üzgünüz, Satın almalar bu patformda kullanılamaz.\nBu geçici oldugu gibi, bu hesabını diğer platformlardaki\nhesablara bağlayabilir oradan satın alma işlemi yapbilirsin.", + "unavailableLinkAccountText": "Üzgünüz, Satın almalar bu patformda kullanılamaz.\nBu geçici oldugu gibi, bu hesabını diğer platformlardaki\nhesaplara bağlayabilir oradan satın alma işlemi yapbilirsin.", "unavailableTemporarilyText": "Bu şu anda müsait değil; lütfen daha sonra tekrar deneyin.", "unavailableText": "Üzgünüz, Bu mümkün değil.", "versionTooOldText": "Üzgünüz, Oyunun bu sürümü çok eski; lütfen yeni bir sürüme güncelleyin.", "youHaveShortText": "${COUNT} Biletin var", "youHaveText": "${COUNT} biletin var" }, + "goldPass": { + "desc1InfTokensText": "Sınırsız jeton.", + "desc2NoAdsText": "Reklamları kaldır.", + "desc3ForeverText": "Ebediyen.", + "goldPassText": "Gold Pass" + }, "googleMultiplayerDiscontinuedText": "Üzgünüz, Google'ın çok oyunculu servisi şu anda çalışmıyor.\nBir yer değişimi için olabildiğince hızlı çalışıyorum.\nO zamana kadar, lütfen başka bir bağlantı yöntemi deneyin.\n-Eric", "googlePlayPurchasesNotAvailableText": "Google Play satın alma işlemleri mevcut değildir.\nMağaza uygulamanızı güncellemeniz gerekebilir.", "googlePlayServicesNotAvailableText": "Google Play Hizmetleri kullanılamıyor.\nBazı uygulama işlevleri devre dışı bırakılabilir.", @@ -896,6 +919,7 @@ "importText": "İçe Aktar", "importingText": "İçe Aktarılıyor...", "inGameClippedNameText": "Şöyle görünecek\n\"${NAME}\"", + "inboxText": "Gelen kutusu", "installDiskSpaceErrorText": "HATA: Kurulum tamamlanamıyor.\nCihazınızda boş alan kalmamış olabilir.\nBiraz alan açın ve yeniden deneyin.", "internal": { "arrowsToExitListText": "Listeden çıkmak için ${LEFT} ya da ${RIGHT} basın.", @@ -950,12 +974,14 @@ "timeOutText": "(${TIME} saniye içinde süre dolacak)", "touchScreenJoinWarningText": "DokunmatikEkran ile katıldın.\nEğer yanlışlıkla olduysa 'Menü->Oyundan Ayrıl' ile düzelt.", "touchScreenText": "DokunmatikEkran", + "unableToCompleteTryAgainText": "Şu anda bunu gerçekleştirmek mümkün değil.\nLütfen tekrar deneyin.", "unableToResolveHostText": "Hata: kurucu çözümlenemiyor.", "unavailableNoConnectionText": "Bu şu an kullanılamaz (internet bağlantısı yok?)", "vrOrientationResetCardboardText": "Bunu kullanmak için VR oryantasyonunu sıfırla.\nOyunu oynamak için harici kontrolcüye ihtiyacın olacak.", "vrOrientationResetText": "VR oryantasyonunu sıfırla.", "willTimeOutText": "(boşta durursa süre dolacak)" }, + "inventoryText": "Envanter", "jumpBoldText": "ZIPLA", "jumpText": "Zıpla", "keepText": "Koru", @@ -1002,8 +1028,11 @@ "seasonEndsMinutesText": "Sezon ${NUMBER} dakika içinde sonlanacak", "seasonText": "Sezon ${NUMBER}", "tournamentLeagueText": "Bu tunuvaya katılmak için ${NAME} olmalısın.", - "trophyCountsResetText": "Kupalar bir sonraki sezon sıfırlanacak." + "trophyCountsResetText": "Kupalar bir sonraki sezon sıfırlanacak.", + "upToDateBonusDescriptionText": "En son sürümü çalıştıran oyuncular\n${PERCENT}% kadar bonus ödül alacak.", + "upToDateBonusText": "Son-Sürüm Bonusu" }, + "learnMoreText": "Fazlasını öğren", "levelBestScoresText": "${LEVEL} En-İyi Skorlar", "levelBestTimesText": "${LEVEL} En-İyi Süreler", "levelIsLockedText": "${LEVEL} kilitli.", @@ -1047,6 +1076,8 @@ "modeArcadeText": "Arcade Modu", "modeClassicText": "Klasik Mod", "modeDemoText": "Demo Modu", + "moreSoonText": "Daha fazlası yakında...", + "mostDestroyedPlayerText": "En Çok Öldürülen Oyuncu", "mostValuablePlayerText": "En Değerli Oyuncu", "mostViolatedPlayerText": "En Çok Saldırılan Oyuncu", "mostViolentPlayerText": "En Saldırgan Oyuncu", @@ -1063,6 +1094,7 @@ "nameSuicideText": "${NAME} intihar etti.", "nameText": "İsim", "nativeText": "Gerçek", + "newExclaimText": "Yeni!", "newPersonalBestText": "Yeni kişisel rekor!", "newTestBuildAvailableText": "Yeni bir test yapısı mevcut! (${VERSION} yapı ${BUILD}).\n${ADDRESS} buradan edinebilirsin", "newText": "Yeni", @@ -1073,6 +1105,7 @@ "noContinuesText": "(sürdürülemiyor)", "noExternalStorageErrorText": "Bu cihazda harici depolama bulunamadı", "noGameCircleText": "Hata: GameCircle girişi yapılamadı", + "noMessagesText": "Mesaj yok.", "noPluginsInstalledText": "Yüklü Eklenti Yok", "noScoresYetText": "Henüz skor yok.", "noServersFoundText": "Sunucu Bulunamadı.", @@ -1081,6 +1114,7 @@ "noValidMapsErrorText": "Bu oyun tipi için geçerli harita bulunamadı.", "notEnoughPlayersRemainingText": "Yeterince oyuncu kalmadı; çık ve yeni bir oyun başlat.", "notEnoughPlayersText": "Bu oyunu başlatmak için en az ${COUNT} oyuncuya ihtiyacın var!", + "notEnoughTicketsText": "Hiç biletin kalmadı", "notNowText": "Şimdi Değil", "notSignedInErrorText": "Bunu yapmak için giriş yapmalısın.", "notSignedInGooglePlayErrorText": "Bunu yapmak için Google Play ile giriş yapmalısın.", @@ -1093,6 +1127,9 @@ "onText": "Açık", "oneMomentText": "Bir dakika...", "onslaughtRespawnText": "${PLAYER} oyuncusu ${WAVE}. dalgada yeniden doğacak", + "openMeText": "Aç Beni", + "openNowText": "Şimdi Aç", + "openText": "Aç", "orText": "${A} veya ${B}", "otherText": "Diğer...", "outOfText": "(${ALL} için #${RANK})", @@ -1178,6 +1215,8 @@ "punchText": "yumruk", "purchaseForText": "${PRICE} için Satın Al", "purchaseGameText": "Oyun Satın Al", + "purchaseNeverAvailableText": "Üzgünüm, Satın alımlar bu sürümde mevcut değil.\nBaşka bir platformda profiline giriş yapmayı ve oradan satın alım yapmayı dene.", + "purchaseNotAvailableText": "Bu satın alım mevcut değildir.", "purchasingText": "Satın Alınıyor...", "quitGameText": "Çık ${APP_NAME}?", "quittingIn5SecondsText": "5 saniye içinde çıkılacak...", @@ -1219,6 +1258,7 @@ "version_mismatch": "Versiyon uyuşmuyor.\nBombSquad ve BombSquad Remote'nin son \nsürüm olduğundan emin ol ve tekrar dene." }, "removeInGameAdsText": "Oyun-içi reklamları kaldırmak için \"${PRO}\" kilidini mağazadan aç.", + "removeInGameAdsTokenPurchaseText": "SINIRLI SÜRELİ TEKLİF: Oyun içi reklamları kaldırmak için HERHANGİ BİR jeton paketi satın alın.", "renameText": "Yeniden Adlandır", "replayEndText": "Tekrarı Kapat", "replayNameDefaultText": "Son Oyun Tekrarı", @@ -1279,6 +1319,8 @@ "enterPromoCodeText": "Kodu gir", "forTestingText": "Not: Bu değerler sadece test için ve uygulamadan çıkıldığında sıfırlanacak.", "helpTranslateText": "${APP_NAME}'ın İngilizce olmayan çevirileri topluluk yardımı ile\nyapılabilir. Katkı veya düzgün çeviri yapmak istiyorsan aşağıdaki\nbağlantıya tıkla. Şimdiden teşekkürler!", + "insecureConnectionsDescriptionText": "önerilmez, sınırlı ülke ve bağlantılarda\noynamanı sağlar", + "insecureConnectionsText": "Güvensiz bağlantılar kullan", "kickIdlePlayersText": "Boştaki oyuncuları çıkar", "kidFriendlyModeText": "Çoçuk Modu (Azaltılmış şiddet, vb)", "languageText": "Dil", @@ -1339,6 +1381,7 @@ }, "spaceKeyText": "boşluk", "statsText": "İstatistikler", + "stopRemindingMeText": "Bana hatırlatma", "storagePermissionAccessText": "Bu depolama erişimine ihtiyaç duyuyor", "store": { "alreadyOwnText": "${NAME} zaten sende var!", @@ -1398,6 +1441,7 @@ "testBuildValidatedText": "Test Yapısı Onaylandı; Keyfinı Çıkar!", "thankYouText": "Desteğin için teşekkürler! Oyunun tadını çıkar!!", "threeKillText": "ÜÇLÜ ÖLÜM!!", + "ticketsDescriptionText": "Biletler karakterler haritalar, mini oyunlar ve daha \nfazlasının kilidini açmak için mağazada kullanılabilir.\n\nBiletler mücadele , turnuvalar ve başarılarla \nkazanılan sandıklardan çıkabilir.", "timeBonusText": "Süre Bonusu", "timeElapsedText": "Geçen Süre", "timeExpiredText": "Süre Doldu", @@ -1408,10 +1452,24 @@ "tipText": "İpucu", "titleText": "BombSquad", "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "Jeton al", + "notEnoughTokensText": "Yeterli jetonun yok!", + "numTokensText": "${COUNT} Jeton", + "openNowDescriptionText": "Sandığı açmak için yeterince\njetonun var - beklemene\ngerek yok.", + "shinyNewCurrencyText": "BombSquad'ın parlak yeni para birimi.", + "tokenPack1Text": "Küçük Jeton Paketi", + "tokenPack2Text": "Orta Jeton Paketi", + "tokenPack3Text": "Büyük Jeton Paketi", + "tokenPack4Text": "Kocaman Jeton Paketi", + "tokensDescriptionText": "Jetonlar, sandık kilitlerinin açılmasını hızlandırmak ve \ndiğer oyun ve hesap özellikleri için kullanılır.\n\nOyunda jeton kazanabilir veya jeton paketleri satın \nalabilirsiniz. Veya Gold Pass'i alıp, sonsuz jetonun \nkeyfini çıkarır ve bir daha asla endişelenmezsiniz.", + "youHaveGoldPassText": "Bir Gold Pass'in var.\nTüm Jeton satın alımları ücretsiz.\nKeyfini çıkar!" + }, "topFriendsText": "En İyi Arkadaşlar", "tournamentCheckingStateText": "Turnuva durumu denetleniyor; lütfen bekleyin...", "tournamentEndedText": "Bu turnuva sonlandı. Yeni bir tanesi yakında başlayacak.", "tournamentEntryText": "Turnuva Katılımı", + "tournamentFinalStandingsText": "Son Sıralama", "tournamentResultsRecentText": "Son Turnıva Sonuçları", "tournamentStandingsText": "Turnuva Kazananları", "tournamentText": "Turnuva", @@ -1467,6 +1525,18 @@ "Uber Onslaught": "Üst Düzey Saldırı", "Uber Runaround": "Üst Düzey Dolambaç" }, + "displayItemNames": { + "${C} Tickets": "${C} Bilet", + "${C} Tokens": "${C} Jeton", + "Chest": "Sandık", + "L1 Chest": "S1 Sandık", + "L2 Chest": "S2 Sandık", + "L3 Chest": "S3 Sandık", + "L4 Chest": "S4 Sandık", + "L5 Chest": "S5 Sandık", + "L6 Chest": "S6 Sandık", + "Unknown Chest": "Bilinmeyen Sandık" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Kazanmak için uzun süre seçilmiş kişi ol.\nseçilmiş kişi olmak için seçilmiş kişiyi öldür.", "Bomb as many targets as you can.": "Yapabildiğin kadar hedefi bombala.", @@ -1571,6 +1641,7 @@ "Korean": "Korece", "Malay": "Malayca", "Persian": "Farsça", + "PirateSpeak": "Korsan Dili", "Polish": "Polonya Dili", "Portuguese": "Portekizce", "Romanian": "Romence", @@ -1642,6 +1713,7 @@ "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Hile algılandı; skorlar ve ödüller ${COUNT} gün için askıya alındı.", "Could not establish a secure connection.": "Güvenli bir bağlantı sağlanamadı.", "Daily maximum reached.": "Günlük sınıra ulaşıldı.", + "Daily sign-in reward": "Günlük giriş ödülü", "Entering tournament...": "Turnuvaya giriliyor...", "Invalid code.": "Geçersiz kod.", "Invalid payment; purchase canceled.": "Geçersiz ödeme; satın alma iptal edildi.", @@ -1651,11 +1723,14 @@ "Item unlocked!": "Öğe kilidi açıldı!", "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "EŞLEŞTİRME ENGELLENDİ ${ACCOUNT}\nhesabının önemli verilerinin tümü kayıp olacak!\nKarşı taraftan eşleştirme yapabilirsiniz\n(Ve verileriniz kayıp olmaz)", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "${ACCOUNT} hesabı bu hesaba bağlansın mı?\n${ACCOUNT} hesabı üzerindeki tüm mevcut veriler kaybolacak.\nBu işlem geri alınamaz. Emin misiniz?", + "Longer streaks lead to better rewards.": "Daha uzun seriler daha iyi ödüller verir.", "Max number of playlists reached.": "Maksimum çalmaListesine ulaşıldı.", "Max number of profiles reached.": "Profiller için maksimum sayıya ulaşıldı.", "Maximum friend code rewards reached.": "Arkadaş kodu maksimuma ulaştı.", "Message is too long.": "Mesaj çok uzun.", + "New tournament result!": "Yeni turnuva sonucu!", "No servers are available. Please try again soon.": "Kullanılabilir sunucu yok. Lütfen kısa süre sonra tekrar deneyin.", + "No slots available. Free a slot and try again.": "Boş yuva mevcut değil. Bir yuva boşaltın ve tekrar deneyin.", "Profile \"${NAME}\" upgraded successfully.": "\"${NAME}\" Profili başarı ile yükseltildi.", "Profile could not be upgraded.": "Profil yükseltilemedi.", "Purchase successful!": "Satın Alma Başarılı!", @@ -1665,7 +1740,9 @@ "Sorry, this code has already been used.": "Üzgünüz, bu kod zaten kullanılmış.", "Sorry, this code has expired.": "Üzgünüz, Bu kodun süresi doldu.", "Sorry, this code only works for new accounts.": "Üzgünüz, bu kod yalnızca yeni hesaplar için çalışır.", + "Sorry, this has expired.": "Maalesef, bunun süresi dolmuş.", "Still searching for nearby servers; please try again soon.": "Hala yakındaki sunucuları arıyor; lütfen kısa süre sonra tekrar deneyin.", + "Streak: ${NUM} days": "Seri: ${NUM} gün", "Temporarily unavailable; please try again later.": "Geçici olarak kullanım dışı; lütfen daha sonra tekrar deneyiniz.", "The tournament ended before you finished.": "Sen bitiremeden turnuva sona erdi.", "This account cannot be unlinked for ${NUM} days.": "Bu hesap, ${NUM} gün boyunca kaldırılamaz.", @@ -1676,19 +1753,28 @@ "Tournaments require ${VERSION} or newer": "Turnuvalar ${VERSION} veya daha yeni bir sürümü gerektirir", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "${ACCOUNT} hesabının bağlantısını kaldırmak mı istiyorsunuz?\n${ACCOUNT} hesabı üzerindeki tüm veriler sıfırlanacak.\n(bazı durumlarda başarılar hariç)", "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "UYARI: Hesabınız hile kullanımı nedeniyle şikayet edilmiştir.\nHile kullanıldığı tespit edilen hesaplar yasaklanacaktır. Lütfen adil oyna.", + "Wait reduced!": "Bekleme azaldı!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "Uyarı: Oyunun bu sürümü eski hesap verileriyle sınırlıdır; bazı şeyler eksik veya güncelliğini yitirmiş görünebilir.\nLütfen en son hesap verilerinizi görmek için oyunun daha yeni bir sürümüne yükseltin.", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "Cihaz hesabınızı bununla bağlamak istermisiniz?\n\nCihaz hesabınız: ${ACCOUNT1}\nBu hesap: ${ACCOUNT2}\n\nUlaştığın ilerlemeler saklanacak.\nUyarı: Bu işlem geri alınamaz!", "You already own this!": "Buna zaten sahipsin!", "You can join in ${COUNT} seconds.": "\"${COUNT}\" saniye içinde katılabilirsin.", "You don't have enough tickets for this!": "Bunun için yeterince biletiniz yok!", "You don't own that.": "Buna sahip değilsin.", "You got ${COUNT} tickets!": "${COUNT} Bilet kazandınız!", + "You got ${COUNT} tokens!": "${COUNT} jeton kazandın!", "You got a ${ITEM}!": "Bir ${ITEM} kazandınız!", + "You got a chest!": "Sandık kazandın!", + "You got an achievement reward!": "Başarı ödülü kazandın!", "You have been promoted to a new league; congratulations!": "Yeni bir lige terfi ettin; tebrikler!", + "You lost a chest! (All your chest slots were full)": "Bir sandık kaybettin! (Tüm sandık yuvaların doluydu)", + "You must update the app to view this.": "Bunu görmek için oyunu güncellemen gerekli.", "You must update to a newer version of the app to do this.": "Bunu yapmak için uygulamayı yeni bir sürüme güncellemelisin.", "You must update to the newest version of the game to do this.": "Bunu yapmak için oyunun en yeni sürümüne güncellemelisiniz.", "You must wait a few seconds before entering a new code.": "Yeni bir kod girmeden önce biraz beklemelisin.", + "You placed #${RANK} in a tournament!": "Bir turnuvada #${RANK} sırada yer aldın!", "You ranked #${RANK} in the last tournament. Thanks for playing!": "Son turnuvada #${RANK}. oldun. Oynadığın için teşekkürler!", "Your account was rejected. Are you signed in?": "Hesabın reddedildi. Oturum açtın mı?", + "Your ad views are not registering. Ad options will be limited for a while.": "Reklam bilgilerin kayıt altına alınamıyor. Reklam seçeneklerin bir sürelik kısıtlanacak.", "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Oyununun kopyası modifiye edilmiş.\nLütfen eski haline döndürüp tekrar deneyin.", "Your friend code was used by ${ACCOUNT}": "Arkadaş kodun ${ACCOUNT} tarafından kullanılmış" }, @@ -1839,6 +1925,7 @@ "twoKillText": "ÇİFTE ÖLÜM!", "uiScaleText": "UI Boyutu", "unavailableText": "mevcut değil", + "unclaimedPrizesText": "Alınmamış ödüllerin var!", "unconfiguredControllerDetectedText": "Yapılandırılmamış kontrolcü tespit edildi:", "unlockThisInTheStoreText": "Bunun mağazada kilidi açık olmalı.", "unlockThisProfilesText": "${NUM} taneden daha fazla profil yaratmak için ihtiyacın olan:", @@ -1857,6 +1944,7 @@ "usingItunesText": "Müzikler için iTunes kullanılıyor...", "usingItunesTurnRepeatAndShuffleOnText": "Lütfen iTunes da karıştırmanın KAPALI oldugundan ve Yinelemenin TÜM oldugundan emin olun. ", "v2AccountLinkingInfoText": "V2 hesapları bağlamak için, 'Hesabı yönet' butonuna tıklayın.", + "v2AccountRequiredText": "Bu bir V2 hesap gerektirir. Hesabını yükseltip tekrar dene.", "validatingTestBuildText": "Test Yapısı Onaylanıyor...", "viaText": "Böyle de bilinir", "victoryText": "Galibiyet!", @@ -1902,7 +1990,7 @@ "wiimoteSetupWindow": { "copyrightText": "DarwiinRemote TelifHakkı", "listenText": "Dinle", - "macInstructionsText": "Wii nin kapalı olduğundan ve 'Dinle'ye bastığında\nMac'inde Bluetooth'un açık olduğundan emin ol.Wii\ndesteği biraz tuhaftır bu yüzden bağlanmadan önce\nbirkaç kere denemelisin.\n\nBluetooth çeşitli uzaklıklardan 7 cihaza\nkadar destek verir.\n\nBombSquad Orijinal Wiimoteleri Nunchukslari ve\nKlasik Kontrolcüleri destekler.\nYeni Wii Remote Plus'da şuanda çalışıyor\nfakat eklenmiş değil.", + "macInstructionsText": "Wii nin kapalı olduğundan ve 'Dinle'ye bastığında\nMac'inde Bluetooth'un açık olduğundan emin ol.Wii\ndesteği biraz tuhaftır bu yüzden bağlanmadan önce\nbirkaç kere denemelisin.\n\nBluetooth çeşitli uzaklıklardan 7 cihaza\nkadar destek verir.\n\nBombSquad Orijinal Wiimoteleri Nunchukslari ve\nKlasik Kontrolcüleri destekler.\nYeni Wii Remote Plus'da şuanda çalışıyor\nfakat eklenmiş değil. ", "thanksText": "DarwiinRemote takımına bunu mümkün\nkıldığı için teşekkürler.", "titleText": "Wiimote Kurulumu" }, @@ -1924,5 +2012,6 @@ }, "yesAllowText": "Evet, Kabul!", "yourBestScoresText": "En İyi Skorların", - "yourBestTimesText": "En İyi Sürelerin" + "yourBestTimesText": "En İyi Sürelerin", + "yourPrizeText": "Ödülün:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/ukrainian.json b/dist/ba_data/data/languages/ukrainian.json index 2061469..33b5864 100644 --- a/dist/ba_data/data/languages/ukrainian.json +++ b/dist/ba_data/data/languages/ukrainian.json @@ -7,7 +7,9 @@ "campaignProgressText": "Прогрес кампанії [Тяжко]: ${PROGRESS}", "changeOncePerSeason": "Ви можете змінити це лише раз в сезон.", "changeOncePerSeasonError": "Ви повинні дочекатися наступного сезону, щоб змінити це знову (${NUM} днів)", + "createAnAccountText": "Створити Акаунт", "customName": "Ім'я акаунта", + "deleteAccountText": "Видалити аккаунт", "googlePlayGamesAccountSwitchText": "Якщо ви хочете використовувати інший акаунт Google,\nперейдіть у додаток Google Play Games, щоб змінити його.", "linkAccountsEnterCodeText": "Ввести Код", "linkAccountsGenerateCodeText": "Створити Код", @@ -25,6 +27,7 @@ "setAccountNameDesc": "Виберіть ім'я для відображення свого акаунту.\nВи можете використовувати ім'я одного з ваших прив'язаних\nакаунтів або створити своє унікальне ім'я.", "signInInfoText": "Увійдіть, щоб збирати квитки, змагатися онлайн,\nі синхронізувати прогрес між пристроями.", "signInText": "Увійти", + "signInWithAnEmailAddressText": "Увійдіть за допомогою електронної адреси", "signInWithDeviceInfoText": "(для цього пристрою доступний тільки стандартний акаунт)", "signInWithDeviceText": "Увійти використовуючи акаунт пристрою", "signInWithGameCircleText": "Увійти через Game Circle", @@ -33,7 +36,7 @@ "signInWithTestAccountText": "Увійти через тестовий акаунт", "signInWithText": "Увійти за допомогою ${SERVICE}", "signInWithV2InfoText": "(обліковий запис, який працює на всіх платформах)", - "signInWithV2Text": "Увійдіть за допомогою облікового запису BombSquad", + "signInWithV2Text": "Увійдіть за допомогою облікового запису ${APP_NAME}", "signOutText": "Вийти", "signingInText": "Вхід…", "signingOutText": "Вихід…", @@ -343,6 +346,8 @@ "allowText": "Дозволити", "alreadySignedInText": "На вашому акаунті грають на іншому пристрої;\nбудь ласка зайдіть з іншого акаунта або закрийте гру на\nіншому пристрої та спробуйте знову.", "apiVersionErrorText": "Неможливо завантажити модуль ${NAME}; він призначений для API версії ${VERSION_USED}; потрібна версія ${VERSION_REQUIRED}.", + "applyText": "Застосувати", + "areYouSureText": "Ти впевнений?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(Режим \"Auto\" включайте його тільки коли підключені навушники)", "headRelativeVRAudioText": "Позиційно-залежне VR-аудіо", @@ -364,14 +369,23 @@ "boostText": "Підсилення", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} налаштовується в самому додатку.", "buttonText": "кнопка", - "canWeDebugText": "Хочете, щоб BombSquad автоматично повідомляв розробнику\nпро помилки, збої і основну інформацію про використання?\n\nЦі дані не містять ніякої особистої інформації і допомагають\nпідтримувати гру в робочому стані без збоїв і помилок.", + "canWeDebugText": "Хочете, щоб ${APP_NAME} автоматично повідомляв розробнику\nпро помилки, збої і основну інформацію про використання?\n\nЦі дані не містять ніякої особистої інформації і допомагають\nпідтримувати гру в робочому стані без збоїв і помилок.", "cancelText": "Скасувати", "cantConfigureDeviceText": "Вибачте, ${DEVICE} неможливо налаштувати.", "challengeEndedText": "Це змагання завершено.", "chatMuteText": "Приглушити чат", "chatMutedText": "Чат приглушений", "chatUnMuteText": "Включити чат", + "chests": { + "prizeOddsText": "Ймовірність Виграшу", + "reduceWaitText": "Скоротити час", + "slotDescriptionText": "У цій комірці може бути скриня.\n\nЗаробляй скрині граючи в рівні кампанії,\nпосідаючи місця в турнірах та виконуючи\nдосягнення.", + "slotText": "Комірка для Скрині ${NUM}", + "slotsFullWarningText": "ЗАСТЕРЕЖЕННЯ: Усі комірки заповнені скринями.\nСкрині, що ти заробиш цієї гри, буде втрачено.", + "unlocksInText": "Відкривається Через" + }, "choosingPlayerText": "<вибір гравця>", + "claimText": "Забрати", "codesExplainText": "Розробник надає коди для діагностики та\nусунення проблем з обліковим записом.", "completeThisLevelToProceedText": "Щоб продовжити, потрібно\nпройти цей рівень!", "completionBonusText": "Бонус за проходження", @@ -568,6 +582,7 @@ "disableXInputDescriptionText": "Підключення більше 4 контролерів, але може не працювати.", "disableXInputText": "Відключити XInput", "disabledText": "Виключено", + "discardText": "Відкинути", "discordFriendsText": "Хочете шукати нових людей для гри?\nПриєднуйтесь до нашого Discord і знайдіть нових друзів!", "discordJoinText": "Приєднуйтесь до Discord", "doneText": "Готово", @@ -650,6 +665,8 @@ "errorText": "Помилка", "errorUnknownText": "невідома помилка", "exitGameText": "Вийти з ${APP_NAME}?", + "expiredAgoText": "Закінчився ${T} тому", + "expiresInText": "Закінчується через ${T}", "exportSuccessText": "'${NAME}' експортовано.", "externalStorageText": "Зовнішня пам'ять", "failText": "Провал", @@ -711,6 +728,7 @@ "copyCodeConfirmText": "Код скопійовано до буферу обміну", "copyCodeText": "Скопіювати код", "dedicatedServerInfoText": "Для кращого результату створіть окремий сервер. Дивись bombsquadgame.com/server", + "descriptionShortText": "", "disconnectClientsText": "Це відключить ${COUNT} гравців\nУ вашому лобі. Ви впевнені?", "earnTicketsForRecommendingAmountText": "Друзі отримають ${COUNT} квитки, якщо вони спробують гру \n(і ви будете отримувати ${YOU_COUNT} для кожного, це зробить)", "earnTicketsForRecommendingText": "Поділися грою\nОтримай квитки ...", @@ -723,10 +741,10 @@ "friendHasSentPromoCodeText": "${COUNT} ${APP_NAME} квитків від ${NAME}", "friendPromoCodeAwardText": "Ви отримаєте ${COUNT} квитків за кожну активацію.", "friendPromoCodeExpireText": "Код дійсний протягом ${EXPIRE_HOURS} годин і тільки для нових гравців.", - "friendPromoCodeInstructionsText": "Для активації в ${APP_NAME} зайдіть в \"Налаштування->Додатково->Ввести код\".\nЗнайди на bombsquadgame.com версію гри для своєї платформи.", + "friendPromoCodeInstructionsText": "Щоб скористатися ним, відкрийте ${APP_NAME} і перейдіть у «Налаштування->Додатково->Надіслати інформацію».\nПосилання для завантаження для всіх підтримуваних платформ дивіться на bombsquadgame.com.", "friendPromoCodeRedeemLongText": "Кожна активація приносить ${COUNT} квитків до ${MAX_USES} гравцям.", "friendPromoCodeRedeemShortText": "Він принесе ${COUNT} квитків в грі.", - "friendPromoCodeWhereToEnterText": "(В \"Налаштування->Додатково->Ввести код\")", + "friendPromoCodeWhereToEnterText": "(у \"Налаштування->Додатково->Надіслати інформацію\")", "getFriendInviteCodeText": "Отримати промо-код", "googlePlayDescriptionText": "Запросити гравців Google Play в ваше лобі:", "googlePlayInviteText": "Запросити", @@ -822,6 +840,12 @@ "youHaveShortText": "у вас ${COUNT}", "youHaveText": "У вас ${COUNT} квитків" }, + "goldPass": { + "desc1InfTokensText": "Нескінченні жетони.", + "desc2NoAdsText": "Без реклами.", + "desc3ForeverText": "Назавжди.", + "goldPassText": "золотий пропуск" + }, "googleMultiplayerDiscontinuedText": "Пробачте, але сервіс мультіплеєра від Google тепер не доступний.\nЯ працюю над зміною сервіса як можно скоріше.\nДо цього, будь ласка, подивіться інакші способи гри в мультіплеєр. \n-Ерік", "googlePlayPurchasesNotAvailableText": "Покупки в Google Play недоступні.\nМожливо, вам знадобиться оновити програму магазину.", "googlePlayServicesNotAvailableText": "Google Play сервіси недоступні.\nДеякі функції програми не роблять.", @@ -896,6 +920,7 @@ "importText": "Імпорт", "importingText": "Імпортую...", "inGameClippedNameText": "У грі буде\n\"${NAME}\"", + "inboxText": "Вхідні", "installDiskSpaceErrorText": "ПОМИЛКА: не вдалося завершити встановлення. \nМоже не вистачає вільного місця на вашому \nпристрої. Звільніть місце та спробуйте ще раз.", "internal": { "arrowsToExitListText": "Щоб вийти зі списку натисніть ${LEFT} або ${RIGHT}", @@ -950,12 +975,14 @@ "timeOutText": "(залишилося ${TIME} секунд)", "touchScreenJoinWarningText": "Ви приєдналися з сенсорним екраном.\nЯкщо це була помилка, натисніть 'Меню->Покинути гру'.", "touchScreenText": "Сенсорний екран", + "unableToCompleteTryAgainText": "Не в змозі завершити це зараз.\nСпробуй ще раз, будь ласка.", "unableToResolveHostText": "Помилка: неможливо досягти хоста.", "unavailableNoConnectionText": "Зараз це недоступно (немає інтернет з'єднання?)", "vrOrientationResetCardboardText": "Використовуйте це, щоб скинути орієнтацію VR.\nЩоб грати в гру вам буде потрібен зовнішній контролер.", "vrOrientationResetText": "Скидання орієнтації VR.", "willTimeOutText": "(час вийде при бездіяльності)" }, + "inventoryText": "Інтвентар", "jumpBoldText": "СТРИБОК", "jumpText": "Стрибнути", "keepText": "Залишити", @@ -1002,8 +1029,11 @@ "seasonEndsMinutesText": "Сезон завершиться через ${NUMBER} хвилин.", "seasonText": "Сезон ${NUMBER}", "tournamentLeagueText": "Щоб брати участь в цьому турнірі, ви повинні досягти ліги ${NAME}.", - "trophyCountsResetText": "Трофеї будуть скинуті в наступному сезоні." + "trophyCountsResetText": "Трофеї будуть скинуті в наступному сезоні.", + "upToDateBonusDescriptionText": "Гравці, що використовують останню версію гри,\nотримають ${PERCENT}% бонус", + "upToDateBonusText": "Бонус Прогресу" }, + "learnMoreText": "Вивчайте більше", "levelBestScoresText": "Кращий рекорд на ${LEVEL}", "levelBestTimesText": "Кращий час на ${LEVEL}", "levelIsLockedText": "${LEVEL} заблокований.", @@ -1047,6 +1077,8 @@ "modeArcadeText": "Аркадний режим", "modeClassicText": "Класичний режим", "modeDemoText": "Демо режим", + "moreSoonText": "Незабаром буде більше..", + "mostDestroyedPlayerText": "Найбільш Побитий Гравець", "mostValuablePlayerText": "Найцінніший гравець", "mostViolatedPlayerText": "Самий побитий гравець", "mostViolentPlayerText": "Самий буйний гравець", @@ -1063,6 +1095,7 @@ "nameSuicideText": "${NAME} скоїв суїцид.", "nameText": "Ім'я", "nativeText": "Власний", + "newExclaimText": "Новинка!", "newPersonalBestText": "Новий особистий рекорд!", "newTestBuildAvailableText": "Доступна нова тестова версія! (${VERSION} збірка ${BUILD}).\nОновити: ${ADDRESS}", "newText": "Новий", @@ -1073,6 +1106,7 @@ "noContinuesText": "(без продовжень)", "noExternalStorageErrorText": "На цьому пристрої не знайдено зовнішньої пам'яті", "noGameCircleText": "Помилка: не ввійшли в GameCircle", + "noMessagesText": "Немає повідомлень.", "noPluginsInstalledText": "Плагіни не встановлено", "noScoresYetText": "Рахунка поки немає.", "noServersFoundText": "Серверів не знайдено", @@ -1081,6 +1115,7 @@ "noValidMapsErrorText": "Для даного типу гри не знайдено коректних карт.", "notEnoughPlayersRemainingText": "Залишилося недостатньо гравців; вийдіть і почніть нову гру.", "notEnoughPlayersText": "Для початку цієї гри потрібно як мінімум ${COUNT} гравця!", + "notEnoughTicketsText": "Не вистачає квитків!", "notNowText": "Не зараз", "notSignedInErrorText": "Увійдіть щоб зробити це.", "notSignedInGooglePlayErrorText": "Увійдіть спочатку в Google Play, а там подивимося.", @@ -1093,6 +1128,9 @@ "onText": "Вкл", "oneMomentText": "Хвилинку...", "onslaughtRespawnText": "${PLAYER} відродиться в ${WAVE} хвилі", + "openMeText": "Відкрий Мене!", + "openNowText": "Відчинити зараз", + "openText": "Відчинити", "orText": "${A} або ${B}", "otherText": "Інші...", "outOfText": "(${RANK} з ${ALL})", @@ -1178,6 +1216,8 @@ "punchText": "Вдарити", "purchaseForText": "Купити за ${PRICE}", "purchaseGameText": "Купити гру", + "purchaseNeverAvailableText": "На жаль, покупки недоступні для цієї збірки.\nСпробуйте ввійти у свій обліковий запис на іншій платформі та робити покупки звідти.", + "purchaseNotAvailableText": "Ця покупка недоступна.", "purchasingText": "Покупка...", "quitGameText": "Вийти з ${APP_NAME}?", "quittingIn5SecondsText": "Вихід через 5 секунд...", @@ -1219,6 +1259,7 @@ "version_mismatch": "Розбіжність версій.\nПереконайтеся, що BombSquad і контролер BombSquad Remote\nоновлені до останньої версії і спробуйте ще раз." }, "removeInGameAdsText": "Розблокуйте \"${PRO}\" в магазині, щоб прибрати рекламу в грі.", + "removeInGameAdsTokenPurchaseText": "ОБМЕЖЕНА ЧАСОМ ПРОПОЗИЦІЯ: Придбай БУДЬ-ЯКИЙ набір жетонів, аби вилучити рекламу з гри.", "renameText": "Перейменувати", "replayEndText": "Завершити перегляд повтору", "replayNameDefaultText": "Повтор останньої гри", @@ -1270,6 +1311,7 @@ "alwaysUseInternalKeyboardDescriptionText": "(проста, зручна для контролера віртуальна клавіатура для введення тексту)", "alwaysUseInternalKeyboardText": "Завжди використовуйте внутрішню клавіатуру", "benchmarksText": "Тест продуктивності і навантаження", + "devToolsText": "Інструменти розробника", "disableCameraGyroscopeMotionText": "Вимкнути рух гіроскопа камери", "disableCameraShakeText": "Вимкнути тремтіння камери", "disableThisNotice": "(ви можете відключити це повідомлення в налаштуваннях)", @@ -1278,6 +1320,8 @@ "enterPromoCodeText": "Ввести код", "forTestingText": "Примітка: ці значення використовуються тільки для тестування і будуть втрачені, коли додаток завершить роботу.", "helpTranslateText": "Переклади гри ${APP_NAME} з англійської зроблені спільнотою. \nЯкщо ви хочете запропонувати або виправити переклад, \nПерейдіть за посиланню нижче. Заздалегідь дякую!", + "insecureConnectionsDescriptionText": "не рекомендується, але може дозволити онлайн-гру\nз країн або мереж з обмеженим доступом", + "insecureConnectionsText": "Використання ненадійних з'єднань", "kickIdlePlayersText": "Викидати непрацюючих гравців", "kidFriendlyModeText": "Сімейний режим (менше насильства, і т.д.)", "languageText": "Мова", @@ -1289,6 +1333,7 @@ "sendInfoText": "Надіслати інформацію", "showBombTrajectoriesText": "Показувати траєкторію бомби", "showDemosWhenIdleText": "Показувати демонстрації в режимі очікування", + "showDeprecatedLoginTypesText": "Показати застарілі типи входу", "showDevConsoleButtonText": "Показати кнопку консолі розробника", "showInGamePingText": "Показувати пінг у грі", "showPlayerNamesText": "Показувати імена гравців", @@ -1337,6 +1382,7 @@ }, "spaceKeyText": "пробіл", "statsText": "Статистика", + "stopRemindingMeText": "Більше не нагадувати", "storagePermissionAccessText": "Це вимагає доступу до сховища", "store": { "alreadyOwnText": "У вас вже є ${NAME}!", @@ -1395,6 +1441,7 @@ "testBuildValidatedText": "Тестова збірка перевірена. Насолоджуйтесь!", "thankYouText": "Дякую за вашу підтримку! Веселої гри!!", "threeKillText": "ТРЬОХ ЗА РАЗ!!", + "ticketsDescriptionText": "За квитки можна розблокувати персонажів,\nкарти, міні-ігри та більше в магазині.\n\nКвитки можна знайти у скринях, виграних в\nкампаніях, турнірах та досягненнях.", "timeBonusText": "Бонус часу", "timeElapsedText": "Пройшло часу", "timeExpiredText": "Час вийшов", @@ -1405,10 +1452,24 @@ "tipText": "Підказка", "titleText": "BombSquad", "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "Отримати жетони", + "notEnoughTokensText": "Недостатньо жетонів!", + "numTokensText": "${COUNT} Жетонів", + "openNowDescriptionText": "Ти маєш достатньо жетонів щоб \nвідкрити це зараз - ти не \nмусиш чекати.", + "shinyNewCurrencyText": "Нова блискуча валюта BombSquad.", + "tokenPack1Text": "Малий пакет жетонів", + "tokenPack2Text": "Середній пакет жетонів", + "tokenPack3Text": "Великий пакет жетонів", + "tokenPack4Text": "Джамбо Пакет жетонів", + "tokensDescriptionText": "Жетони використовуються для прискорення відкриття скрині,\nа такох для інших функцій гри та акаунта.\n\nТи можеш виграти жетони у грі, чи придбати їх\nу наборі. Або ж придбай Золотий Пропуск для нескінченних\nжетонів і більше ніколи про них не чуй ані слова.", + "youHaveGoldPassText": "У вас є Gold Pass.\nУсі покупки жетонів безкоштовні.\nНасолоджуйтесь!" + }, "topFriendsText": "Топ друзів", "tournamentCheckingStateText": "Перевірка статусу турніру, будь ласка, зачекайте...", "tournamentEndedText": "Турнір закінчився. Скоро почнеться новий.", "tournamentEntryText": "Вхід в турнір", + "tournamentFinalStandingsText": "Фінальна Таблиця", "tournamentResultsRecentText": "Останні Результати турніру", "tournamentStandingsText": "Позиції в турнірі", "tournamentText": "Турнір", @@ -1464,6 +1525,18 @@ "Uber Onslaught": "Убер атака", "Uber Runaround": "Убер маневр" }, + "displayItemNames": { + "${C} Tickets": "${C} Квитки(-ів)", + "${C} Tokens": "${C} Жетони(-ів)", + "Chest": "Скриня", + "L1 Chest": "Скриня 1Р", + "L2 Chest": "Скриня 2Р", + "L3 Chest": "Скриня 3Р", + "L4 Chest": "Скриня 4Р", + "L5 Chest": "Скриня 5Р", + "L6 Chest": "Скриня 6Р", + "Unknown Chest": "Невідома Скриня" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Щоб перемогти, стань обраним на деякий час.\nЩоб стати обраним, вбий обраного.", "Bomb as many targets as you can.": "Підірвіть стільки мішеней, скільки зможете.", @@ -1568,6 +1641,7 @@ "Korean": "Корейська", "Malay": "Малайська", "Persian": "Перська", + "PirateSpeak": "Піратська мова", "Polish": "Польська", "Portuguese": "Португальська", "Romanian": "Румунська", @@ -1639,6 +1713,7 @@ "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Ах ти, чітер; Очки і нагороди заморожені на ${COUNT} днів.", "Could not establish a secure connection.": "Не вдалося встановити безпечне з'єднання.", "Daily maximum reached.": "Досить на сьогодні.", + "Daily sign-in reward": "Щоденна Винагорода", "Entering tournament...": "Вхід в турнір...", "Invalid code.": "Невірний код.", "Invalid payment; purchase canceled.": "Щось пішло не так. Купівля скасована.", @@ -1648,11 +1723,14 @@ "Item unlocked!": "Предмет разблоковано!", "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "Об'єднання не дозволено. ${ACCOUNT} містить \nважливі дані і вони ВСІ ЗНИКНУТЬ.\nТи можеш об'єднанати у зворотньому порядку, якщо ти цього захочеш\n(І втратити дані ЦЬОГО акаунта)", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "Зв'язати ${ACCOUNT} акаунт з цим?\nВсі існуючі дані на ${ACCOUNT} будуть втрачені.\nЦя дія не може бути скасовано. Ви впевнені?", + "Longer streaks lead to better rewards.": "Довший страйк - краща винагорода", "Max number of playlists reached.": "Досягнуто максимальну кількість плейлистів.", "Max number of profiles reached.": "Максимальна кількість профілів досягнута.", "Maximum friend code rewards reached.": "Досягнуто ліміт кодів", "Message is too long.": "Повідомлення занадто довге.", + "New tournament result!": "Новий результат турніру!", "No servers are available. Please try again soon.": "Немає доступних серверів. Будь ласка, поспробуйте пізніше.", + "No slots available. Free a slot and try again.": "Немає вільних комірок. Звільни комірку й спробуй ще раз.", "Profile \"${NAME}\" upgraded successfully.": "Профіль \"${NAME}\" оновлений успішно.", "Profile could not be upgraded.": "Профіль не може бути оновлений.", "Purchase successful!": "Успішна транзакція!", @@ -1662,7 +1740,9 @@ "Sorry, this code has already been used.": "Ой, цей код вже використаний.", "Sorry, this code has expired.": "Ой, час дії коду минув.", "Sorry, this code only works for new accounts.": "Ой, цей код працює тільки для нових акаунтів.", + "Sorry, this has expired.": "Вибач, це вже закінчилося.", "Still searching for nearby servers; please try again soon.": "Все ще йде пошук сусідніх серверів; будь-ласка, спробуйте ще раз найближчим часом.", + "Streak: ${NUM} days": "Страйк: ${NUM} дня/днів", "Temporarily unavailable; please try again later.": "Тимчасово недоступний; будь ласка, спробуйте ще раз пізніше.", "The tournament ended before you finished.": "Турнір закінчився раніше, ніж ви закінчили.", "This account cannot be unlinked for ${NUM} days.": "Цей обліковий запис неможливо відв'язати протягом ${NUM} днів.", @@ -1673,19 +1753,28 @@ "Tournaments require ${VERSION} or newer": "Для турнірів потрібна версія ${VERSION} або вище.", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "Відв'язати ${ACCOUNT} від цього акаунта?\nВсі дані на ${ACCOUNT} будуть скинуті.\n(За винятком досягнень в деяких випадках)", "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "ПОПЕРЕДЖЕННЯ: скарги на хакерство були видані на ваш обліковий запис.\nОблікові записи, які вважаються зламаними, будуть заблоковані. Будь ласка, грайте чесно.", + "Wait reduced!": "Час скорочено!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "Попередження: Ця версія гри обмежена старими даними облікового запису; деякі речі можуть бути відсутніми або застарілими. \nБудь ласка, оновіть гру до новішої версії, щоб побачити актуальні дані вашого облікового запису.", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "Бажаєте пов'язати обліковий запис пристрою з цим?\n\nАкаунт пристрою ${ACCOUNT1}\nПоточний акаунт ${ACCOUNT2}\n\nЦе дозволить зберегти ваші нинішні досягнення.\nУвага: скасування неможлива!", "You already own this!": "Ви це вже придбали!", "You can join in ${COUNT} seconds.": "Ти зможеш увійти через ${COUNT} секунд", "You don't have enough tickets for this!": "У вас недостатньо квитків для цієї покупки!", "You don't own that.": "Вам це не належить", "You got ${COUNT} tickets!": "Ви отримали ${COUNT} квитків!", + "You got ${COUNT} tokens!": "Ти отримав ${COUNT} Жетонів!", "You got a ${ITEM}!": "Ви отримали ${ITEM}!", + "You got a chest!": "Ти отримав скриню!", + "You got an achievement reward!": "Ви отримали нагороду за досягнення!", "You have been promoted to a new league; congratulations!": "Вас підвищили і перевели в нову лігу; вітаємо!", + "You lost a chest! (All your chest slots were full)": "Ви втратили скриню! (Всі ваші слоти для скринь заповненні)", + "You must update the app to view this.": "Щоб переглянути це, потрібно оновити програму.", "You must update to a newer version of the app to do this.": "Щоб це зробити, ви повинні оновити додаток.", "You must update to the newest version of the game to do this.": "Ви повинні оновитися до нової версії гри, щоб зробити це.", "You must wait a few seconds before entering a new code.": "Зачекайте кілька секунд, перш ніж вводити новий код.", + "You placed #${RANK} in a tournament!": "Ти посів #${RANK} місце в турнірі!", "You ranked #${RANK} in the last tournament. Thanks for playing!": "Ваш ранг в останньому турнірі: ${RANK}! Дякуємо за гру!", "Your account was rejected. Are you signed in?": "Вашу обліковку відхилено. Ви ввійшли?", + "Your ad views are not registering. Ad options will be limited for a while.": "Твої перегляди реклами не реєструються. На деякий час можливості реклами будуть обмежені.", "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Ваша версія гри була модифікована.\nПриберіть всі зміни і спробуйте знову", "Your friend code was used by ${ACCOUNT}": "Ваш код був використаний ${ACCOUNT}" }, @@ -1836,6 +1925,7 @@ "twoKillText": "ДВОХ ЗА РАЗ!", "uiScaleText": "Зміна розміру інтерфейсу", "unavailableText": "недоступно", + "unclaimedPrizesText": "В тебе залишились не зібрані призи!", "unconfiguredControllerDetectedText": "Виявлено налаштований контролер:", "unlockThisInTheStoreText": "Це повинно бути розблоковано в магазині.", "unlockThisProfilesText": "Щоб створити більш ${NUM} профіль, Вам необхідно:", @@ -1854,6 +1944,7 @@ "usingItunesText": "Використання музикального додатку для саундтрека...", "usingItunesTurnRepeatAndShuffleOnText": "Будь ласка, переконайтеся, що випадковий порядок і повтор усіх пісень включений в Itunes.", "v2AccountLinkingInfoText": "Щоб підключити V2-акаунти, використовуйте кнопку 'Керування акаунтом'.", + "v2AccountRequiredText": "Для цього потрібен обліковий запис V2. Оновіть обліковий запис і повторіть спробу.", "validatingTestBuildText": "Перевірка тестової збірки...", "viaText": "через", "victoryText": "Перемога!", @@ -1921,5 +2012,6 @@ }, "yesAllowText": "Так, дозволити!", "yourBestScoresText": "Ваші кращі результати", - "yourBestTimesText": "Ваш кращий час" + "yourBestTimesText": "Ваш кращий час", + "yourPrizeText": "Твій приз:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/venetian.json b/dist/ba_data/data/languages/venetian.json index 36b9ab5..88feeca 100644 --- a/dist/ba_data/data/languages/venetian.json +++ b/dist/ba_data/data/languages/venetian.json @@ -6,7 +6,9 @@ "campaignProgressText": "Progreso canpagna [Defìsiłe]: ${PROGRESS}", "changeOncePerSeason": "Te połi canbiar ’sto dato soło na volta par stajon.", "changeOncePerSeasonError": "Par canbiarlo te ghè da spetar ła pròsema stajon (${NUM} days).", + "createAnAccountText": "Fà un Conto", "customName": "Nome parsonałizà", + "deleteAccountText": "Cancellare 'sto account?", "googlePlayGamesAccountSwitchText": "Se te vołi doparar un account Google defarente,\ndòpara l'apl Google Play Giochi par canbiarlo.", "linkAccountsEnterCodeText": "Insarisi còdaze", "linkAccountsGenerateCodeText": "Jènara còdaze", @@ -14,26 +16,27 @@ "linkAccountsInstructionsNewText": "Par cołegar do account, jènara un còdaze inte'l primo\ndispozidivo e insarìseło inte’l segondo. I dati de’l\nsegondo account i vegnarà sparpagnài so tuti do i account\n(i dati de’l primo account i ndarà perdesti).\n\nTe połi cołegar fin a ${COUNT} account.\n\nINPORTANTE: cołega soło i account de to propiedà.\nSe te cołeghi account de calche to amigo, no sarè\npì boni de zugar online inte’l mèdemo momento.", "linkAccountsText": "Cołega account", "linkedAccountsText": "Account cołegài:", - "manageAccountText": "Jestisi account", + "manageAccountText": "Gestir el conto", "nameChangeConfirm": "Vutu canbiar el nome de’l to account co ${NAME}?", "resetProgressConfirmNoAchievementsText": "Te si drio ełimenar i to progresi so ła modałidà\ncooparadiva e i to punteji łogałi (ma miga i to biłieti).\n’Sta asion no ła połe pì èsar anułada. Vutu ndar vanti?", "resetProgressConfirmText": "Te si drio ełimenar i to progresi so ła\nmodałidà cooparadiva, i to obietivi e i to punteji\nłogałi (ma miga i to biłieti). ’Sta asion\nno ła połe pì èsar anułada. Vutu ndar vanti?", "resetProgressText": "Ełìmena progresi", "setAccountName": "Inposta un nome utente", "setAccountNameDesc": "Sełesiona el nome da vizuałizar so’l to account.\nTe połi doparar el nome da uno de i to account\ncołegài o crear un nome parsonałizà ma ùnivogo.", - "signInInfoText": "Conétate par tirar sù biłieti, batajar online e\nsparpagnar i to progresi infrà dispozidivi defarenti.", - "signInText": "Conétate", + "signInInfoText": "Acedi par tirar sù biłieti, batajar online e\nsparpagnar i tó progresi infrà dispozidivi defarenti.", + "signInText": "Acedi", + "signInWithAnEmailAddressText": "Acedi co un ndariso mail", "signInWithDeviceInfoText": "(par 'sto dispozidivo ze disponìbiłe un soło account automàtego)", - "signInWithDeviceText": "Conétate co un account łogałe", + "signInWithDeviceText": "Acedi co un account łogałe", "signInWithGameCircleText": "Conétate co Game Circle", "signInWithGooglePlayText": "Conétate co Google Play", "signInWithTestAccountInfoText": "(account de proa vecio: in fuduro dòpara un account łogałe)", "signInWithTestAccountText": "Conétate co un account de proa", "signInWithText": "Acedi co ${SERVICE}", "signInWithV2InfoText": "(un account che fusiona so tute łe piataforme)", - "signInWithV2Text": "Acedi co un account BombSquad", - "signOutText": "Sortisi da l'account", - "signingInText": "Conesion in corso...", + "signInWithV2Text": "Acedi co' un account ${APP_NAME}", + "signOutText": "Và fora", + "signingInText": "Aceso in corso...", "signingOutText": "Sortìa in corso...", "ticketsText": "Biłieti: ${COUNT}", "titleText": "Account", @@ -339,6 +342,8 @@ "allowText": "Parmeti", "alreadySignedInText": "El to account el ze in dòparo inte n’antro\ndispozidivo: canbia account o sara sù el zugo\ninte cheł’altro to dispozidivo e proa danovo.", "apiVersionErrorText": "Inposìbiłe cargar el mòduło ${NAME}, el se refarise a ła varsion ${VERSION_USED}. Serve invese ła ${VERSION_REQUIRED}.", + "applyText": "Aplicar", + "areYouSureText": "Te sé secùro?", "audioSettingsWindow": { "headRelativeVRAudioInfoText": "(Ativa \"Auto\" soło co te tachi sù łe fonarołe par ła realtà virtuałe)", "headRelativeVRAudioText": "Àudio par fonarołe VR", @@ -360,14 +365,22 @@ "boostText": "Potensiador", "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} el se configura rento l'apl mèdema.", "buttonText": "boton", - "canWeDebugText": "Ghetu caro che BombSquad el reporte in automàtego bai,\nblochi e informasion baze só'l so dòparo a'l dezviłupador?\n\n'Sti dati no i contien miga informasion parsonałi ma i ło\njuta a far ndar ben el zugo sensa blochi o bai.", + "canWeDebugText": "Ghetu caro che ${APP_NAME} el reporte in automàtego bai,\nblochi e informasion baze só'l so dòparo a'l dezviłupador?\n\n'Sti dati no i contien miga informasion parsonałi ma i ło\njuta a far ndar ben el zugo sensa blochi o bai.", "cancelText": "Anuła", "cantConfigureDeviceText": "Ne despiaze, ${DEVICE} no'l ze miga configuràbiłe.", "challengeEndedText": "'Sta sfida ła ze fenìa.", "chatMuteText": "Siłensia ciacołada", "chatMutedText": "Ciacołada siłensiada", "chatUnMuteText": "Reativa son", + "chests": { + "prizeOddsText": "Speriensa de vinzar", + "reduceWaitText": "Cala L'aspeto", + "slotDescriptionText": "Sto spaziò pò tener na cassa.\n\nCata casse zugando ai łivelli de la campagna,\nClasificandose nei tornei, e compiando\nobiettivi.", + "slotText": "Spaziò cassa ${NUM}", + "slotsFullWarningText": "ATENZION: Tuti i to spazi càsa xe pieni.\nQualsiasi càsa che te ciapi da 'sta partia la andrà persa." + }, "choosingPlayerText": "", + "claimText": "Ciapa", "codesExplainText": "I còdazi i vien fornìi da'l dezviłupador par\ndiagnostegar e corèjar problemi so l'account.", "completeThisLevelToProceedText": "Par ndar vanti te ghè\nda conpletar 'sto łeveło!", "completionBonusText": "Premio de concruzion", @@ -564,6 +577,7 @@ "disableXInputDescriptionText": "Dòpara pì de 4 controładori (ma co'l riscio che no i funsione ben).", "disableXInputText": "Dezativa XInput", "disabledText": "Dezativà", + "discardText": "Scartà", "discordFriendsText": "Ghetu caro catar parsone nove par zugarghe insenbre?\nZóntate so'l nostro canałe Discord e cata fora amighi novi!", "discordJoinText": "Zóntate so Discord", "doneText": "Fato", @@ -646,6 +660,8 @@ "errorText": "Eror", "errorUnknownText": "eror miga conosesto", "exitGameText": "Vutu ndar fora da ${APP_NAME}?", + "expiredAgoText": "Xe scadù ${T} fà.", + "expiresInText": "Scade tra ${T}", "exportSuccessText": "'${NAME}' esportà.", "externalStorageText": "Memoria esterna", "failText": "Desfata", @@ -707,6 +723,7 @@ "copyCodeConfirmText": "Còdaze copià inte łe note.", "copyCodeText": "Copia còdaze", "dedicatedServerInfoText": "Inposta un server dedegà par rezultài pì boni. Daghe un ocio so bombsquadgame.com/server par capir come far.", + "descriptionShortText": "Dota de usar el tasto \"crea grupo\" par far na festa.", "disconnectClientsText": "'Sta oparasion ła desconetarà ${COUNT} zugador/i\nda'l to grupo. Vutu ndar vanti?", "earnTicketsForRecommendingAmountText": "Se i provarà el zugo, i to amighi i resevarà ${COUNT} biłieti\n(e ti te ghin resevarè ${YOU_COUNT} par caun de łori che'l ło dopararà)", "earnTicketsForRecommendingText": "Sparpagna el zugo par\nver biłieti gratùidi...", @@ -719,10 +736,10 @@ "friendHasSentPromoCodeText": "Par ti ${COUNT} biłieti de ${APP_NAME} da ${NAME}!", "friendPromoCodeAwardText": "Tute łe 'olte che'l vegnarà doparà te resevarè ${COUNT} biłieti.", "friendPromoCodeExpireText": "El còdaze el ze soło par i zugaduri novi e el terminarà tenpo ${EXPIRE_HOURS} ore.", - "friendPromoCodeInstructionsText": "Par dopararlo, verzi ${APP_NAME} e và so \"Inpostasion > Avansàe > Insarisi còdaze\".\nDaghe un ocio so bombsquadgame.com par i link de descargamento de'l zugo par tute łe piataforme conpatìbiłi.", + "friendPromoCodeInstructionsText": "Par dopararlo, verzi ${APP_NAME} e và so \"Inpostasion > Avansàe > Manda informasion\".\nVarda bombsquadgame.com par i link de descargamento de'l zugo par tute łe piataforme suportàe.", "friendPromoCodeRedeemLongText": "El połe èsar scanbià par ${COUNT} biłieti gratùidi da ${MAX_USES} parsone.", "friendPromoCodeRedeemShortText": "El połe èsar scanbià inte'l zugo par ${COUNT} biłieti gratùidi.", - "friendPromoCodeWhereToEnterText": "(so \"Inpostasion > Avansàe > Insarisi còdaze\")", + "friendPromoCodeWhereToEnterText": "(so \"Inpostasion > Avansàe > Manda informasion\")", "getFriendInviteCodeText": "Jènara còdaze de invido", "googlePlayDescriptionText": "Invida zugadori de Google Play inte'l to grupo:", "googlePlayInviteText": "Invida", @@ -811,13 +828,19 @@ "ticketsFromASponsorText": "Varda na reclan e\notien ${COUNT} biłieti", "ticketsText": "${COUNT} biłieti", "titleText": "Otien biłieti", - "unavailableLinkAccountText": "No se połe miga cronpar so 'sta piataforma.\nVołendo, te połi cołegar 'sto account co uno inte\nn'antra piataforma e cronpar calcosa da łà.", + "unavailableLinkAccountText": "No se połe miga conprar so 'sta piataforma.\nVołendo, te połi cołegar 'sto account co uno inte\nn'antra piataforma e conprar calcosa da łà.", "unavailableTemporarilyText": "'Sta funsion no ła ze miga disponìbiłe par deso: proa danovo pì tardi.", "unavailableText": "Ne despiaze, 'sta funsion no ła ze miga disponìbiłe.", "versionTooOldText": "Ne despiaze, 'sta varsion ła ze masa vecia: ajorna el zugo co cheła nova.", "youHaveShortText": "Te ghè ${COUNT}", "youHaveText": "Te ghè ${COUNT} biłieti" }, + "goldPass": { + "desc1InfTokensText": "Token infinidi.", + "desc2NoAdsText": "No reclan.", + "desc3ForeverText": "Par sempre.", + "goldPassText": "Pass Dorà" + }, "googleMultiplayerDiscontinuedText": "Me despiaze, el sarviso multizugador de Google no'l ze miga pì disponìbiłe.\nA sò drio łaorar a un renpiaso pì in presa che se połe.\nIntanto proa n'antro mètodo de conesion.\n-Eric", "googlePlayPurchasesNotAvailableText": "Łe cronpe vecie no łe ze miga disponìbiłi.\nPodarìa èsarghe bezogno de ajornar l'apl Google Play.", "googlePlayServicesNotAvailableText": "Google Play Services no'l ze miga disponìbiłe.\nSerte funsion de l'apl łe podarìa èsar dezativàe.", @@ -892,6 +915,7 @@ "importText": "Inporta", "importingText": "Inportasion...", "inGameClippedNameText": "rento el zugo:\n\"${NAME}\"", + "inboxText": "Posta", "installDiskSpaceErrorText": "EROR: inposìbiłe fenir l’instałasion.\nEl to dispozidivo el podarìa èsar sensa spasio.\nŁìbara un fià de memoria e proa danovo.", "internal": { "arrowsToExitListText": "struca ${LEFT} o ${RIGHT} par ndar fora da ła serie", @@ -946,12 +970,14 @@ "timeOutText": "(tocarà a ti tenpo ${TIME} segondi)", "touchScreenJoinWarningText": "Te te si zontà co'l touchscreen.\nSe ła ze stà na capeła, struca 'Menù > Moła łeveło'.", "touchScreenText": "TouchScreen", + "unableToCompleteTryAgainText": "No se pol completar par deso.\nPar piaser, riprova.", "unableToResolveHostText": "Eror: no ze miga posìbiłe conétarse co l'ospitador.", "unavailableNoConnectionText": "Par deso miga disponìbiłe (gnauna conesion a internet?)", "vrOrientationResetCardboardText": "Dopàreło par reinpostar l'orientasion de'l VR.\nA te servirà un controłador esterno par zugar.", "vrOrientationResetText": "Reinposta orientasion VR.", "willTimeOutText": "(ma se in sonera el ghe vegnarà cavà)." }, + "inventoryText": "Inventario", "jumpBoldText": "SALTO", "jumpText": "Salto", "keepText": "Tien", @@ -998,8 +1024,11 @@ "seasonEndsMinutesText": "Ła stajon ła fenirà tenpo ${NUMBER} menuti.", "seasonText": "Stajon ${NUMBER}", "tournamentLeagueText": "Par zugar inte 'sto tornèo te ghè da rivar inte ła łega ${NAME}.", - "trophyCountsResetText": "Par ła stajon che ła vien el puntejo\nde i trofèi el se zerarà." + "trophyCountsResetText": "Par ła stajon che ła vien el puntejo\nde i trofèi el se zerarà.", + "upToDateBonusDescriptionText": "I zugadori che dopara 'na versiòn pì nuova de'l\nzugo i rivè 'na ${PERCENT}% de premia qua.", + "upToDateBonusText": "Premia atualizà" }, + "learnMoreText": "De Pì", "levelBestScoresText": "I punteji mejo so ${LEVEL}", "levelBestTimesText": "I tenpi mejo so ${LEVEL}", "levelIsLockedText": "${LEVEL} el ze blocà.", @@ -1043,6 +1072,8 @@ "modeArcadeText": "Modałidà arcade", "modeClassicText": "Modałidà clàsega", "modeDemoText": "Modałidà demo", + "moreSoonText": "De pì in arrivo...", + "mostDestroyedPlayerText": "Zugador Pì Sbarazado", "mostValuablePlayerText": "Zugador pì zgajo", "mostViolatedPlayerText": "Zugador pì sacagnà", "mostViolentPlayerText": "Zugador pì viołento", @@ -1059,6 +1090,7 @@ "nameSuicideText": "${NAME} l'se gà eutanà.", "nameText": "Nome", "nativeText": "Nadiva", + "newExclaimText": "Nòvo!", "newPersonalBestText": "Novo record parsonałe!", "newTestBuildAvailableText": "A ze disponìbiłe na varsion de proa nova. (${VERSION} beta ${BUILD}).\nDescàrgheła da ${ADDRESS}", "newText": "Novo", @@ -1069,18 +1101,20 @@ "noContinuesText": "(sensa continui)", "noExternalStorageErrorText": "So ’sto dispozidivo no ze stà catada gnauna memoria esterna", "noGameCircleText": "Eror: no te si miga conetesto co GameCircle", + "noMessagesText": "Nisun messaggio.", "noPluginsInstalledText": "Gnauna estension instałada", "noScoresYetText": "Gnancora gnaun puntejo.", "noServersFoundText": "Gnaun server catà.", "noThanksText": "Nò, grasie", "noTournamentsInTestBuildText": "AVERTENSA: i punteji de'l tornèo de 'sta varsion de proa i vegnarà ignorài.", - "noValidMapsErrorText": "A no ze stà catà gnaun łeveło vàłido par 'sto tipo de zugo.", + "noValidMapsErrorText": "No ze stà catà gnaun łeveło vàłido par 'sto tipo de zugo.", "notEnoughPlayersRemainingText": "A no ghe ze pì zugadori che basta: sortisi e taca na partìa nova.", "notEnoughPlayersText": "A serve almanco ${COUNT} zugadori par tacar 'sta partìa!", + "notEnoughTicketsText": "Biłieti insuficienti!", "notNowText": "Miga deso", - "notSignedInErrorText": "Par partesipar A te ghè da conétarte.", - "notSignedInGooglePlayErrorText": "Far farlo A te ghè da conétarte co Google Play.", - "notSignedInText": "gnancora cołegà", + "notSignedInErrorText": "Par partesipar te ghè da acédar.", + "notSignedInGooglePlayErrorText": "Far farlo te ghè da acédar co Google Play.", + "notSignedInText": "serve l'aceso", "notUsingAccountText": "Ocio: ze stà łasà in parte l'account ${SERVICE}.\nSe te vołi dopararlo và so 'Account > Acedi co ${SERVICE}'.", "nothingIsSelectedErrorText": "A no ze sełesionà gnente!", "numberText": "#${NUMBER}", @@ -1089,6 +1123,8 @@ "onText": "Ativa", "oneMomentText": "Un segondo...", "onslaughtRespawnText": "Rejenerasion de ${PLAYER} inte l'ondada ${WAVE}", + "openNowText": "Dèsa Deso", + "openText": "Dèsa", "orText": "${A} o ${B}", "otherText": "Altro...", "outOfText": "(#${RANK} de ${ALL})", @@ -1174,6 +1210,8 @@ "punchText": "Crogno", "purchaseForText": "Cronpa par ${PRICE}", "purchaseGameText": "Cronpa el zugo", + "purchaseNeverAvailableText": "Scusa, i comprì no se poł far in 'sta build.\nFai ‘na prova a fare la registrazión del to account su ‘na altra piattaforma e conpra lì.", + "purchaseNotAvailableText": "Conpera no disponibile.", "purchasingText": "Cronpa in corso...", "quitGameText": "Vutu sortir da ${APP_NAME}?", "quittingIn5SecondsText": "Sortìa tenpo 5 segondi...", @@ -1215,6 +1253,7 @@ "version_mismatch": "Varsion zbałiada.\nSegùrate che BombSquad e BombSquad Remote i\nsipie ajornài a ła varsion ùltema e proa danovo." }, "removeInGameAdsText": "Par cavar vìa łe reclan, dezbloca \"${PRO}\" inte ła botega.", + "removeInGameAdsTokenPurchaseText": "OFERTA PAR UN TEMPO LIMITÀ: cronpa qualsevò pacchète de getoni par cavare le reclan de'l zugo.", "renameText": "Renòmena", "replayEndText": "Sara sù Revardo", "replayNameDefaultText": "Revardo partìa ùltema", @@ -1266,6 +1305,7 @@ "alwaysUseInternalKeyboardDescriptionText": "(na botonera so schermo, senpia e còmoda, par scrìvar testi)", "alwaysUseInternalKeyboardText": "Dòpara botonera integrada", "benchmarksText": "Prestasion & Proe soto sforso", + "devToolsText": "Strumenti dezviłupador", "disableCameraGyroscopeMotionText": "Dezativa movimento de ła prospetiva co'l jiroscopio", "disableCameraShakeText": "Dezativa zgorlamenti de ła videocàmara", "disableThisNotice": "(Te połi dezativar 'sta notìfega inte łe inpostasion avansàe)", @@ -1274,6 +1314,8 @@ "enterPromoCodeText": "Insarisi còdaze", "forTestingText": "Nota: vałori vàłidi soło par proe. Sortendo da l'apl łi vegnarà perdesti.", "helpTranslateText": "Łe tradusion de ${APP_NAME} łe ze curàe da vołontari.\nSe te vołi darghe na ociada a cheła veneta, struca so'l boton\ncuà soto. Curada da VeC: venetianlanguage@gmail.com", + "insecureConnectionsDescriptionText": "sconsiglià, ma podrìa dar la possibilità de zugar \nin-rete da reti o paesi restrèti", + "insecureConnectionsText": "Dòpara conesioni no sicurè", "kickIdlePlayersText": "Para fora zugadori in sonera", "kidFriendlyModeText": "Modałidà bocia (viołensa reduzesta, evc)", "languageText": "Łengua", @@ -1285,6 +1327,7 @@ "sendInfoText": "Manda informasion", "showBombTrajectoriesText": "Mostra trajetore bonbe", "showDemosWhenIdleText": "Mostra demostrasion in sonera", + "showDeprecatedLoginTypesText": "Mostra tipi de aceso veci", "showDevConsoleButtonText": "Mostra boton de i comandi dezviłupador", "showInGamePingText": "Mostra łatensa de'l zugo", "showPlayerNamesText": "Mostra nomi zugadori", @@ -1301,7 +1344,7 @@ "shareText": "Sparpagna", "sharingText": "Sparpagnasion...", "showText": "Mostra", - "signInForPromoCodeText": "Conétate co un account par poder far funsionar el còdaze.", + "signInForPromoCodeText": "Par far funsionar el còdaze acedi co un account.", "signInWithGameCenterText": "Par doparar un account Game Center,\nconétate da rento l'apl Game Center.", "singleGamePlaylistNameText": "Tuti \"${GAME}\"", "singlePlayerCountText": "1 zugador", @@ -1391,6 +1434,7 @@ "testBuildValidatedText": "Varsion de proa aposto. Gòdateła!", "thankYouText": "Grasie par el to suporto! Gùstate el zugo!", "threeKillText": "NO GHE N'È 2 SENSA 3!!", + "ticketsDescriptionText": "I biłieti se pol usar par sbloccar parsonaji,\nmappe, minigiochi e altre robe ne la botega.\n\nI biłieti se pol trovar nelle càse\no vìnzi ne le campagne, nei tornei o nei obietivi.", "timeBonusText": "Tenpo bonus", "timeElapsedText": "Tenpo pasà", "timeExpiredText": "Tenpo fenìo", @@ -1401,10 +1445,23 @@ "tipText": "Drita", "titleText": "BombSquad", "titleVRText": "BombSquad VR", + "tokens": { + "getTokensText": "Ottieni Getoni", + "notEnoughTokensText": "Getoni insufficienti!", + "numTokensText": "${COUNT} Getoni", + "shinyNewCurrencyText": "Ła nova moneta brillante de BombSquad.", + "tokenPack1Text": "Pachetto de Getoni Pico", + "tokenPack2Text": "Pachetto de Getoni Mezo", + "tokenPack3Text": "Pachetto de Getoni Grande", + "tokenPack4Text": "Pachetto di Getoni Gigante", + "tokensDescriptionText": "I getoni se usa par velocizzar el sbloco de le càse\ne par altri vantagi de'l zogo e de'l conto.\n\nTe pol vinzer getoni nel zogo o comprargli\nin pacchetti. O cronpando el Pass Dorà par getoni\ninfiniti e no sentirli mai più.", + "youHaveGoldPassText": "Te gha na Pass Dorà.\nTuti i conpra de gettoni xè gratis.\nGodeli!" + }, "topFriendsText": "Mejori amighi", "tournamentCheckingStateText": "Verìfega stado de'l tornèo: speta n'àtemo...", "tournamentEndedText": "'Sto tornèo el ze fenìo. A ghin tacarà presto uno novo.", "tournamentEntryText": "Entrada tornèo", + "tournamentFinalStandingsText": "Posti Finali", "tournamentResultsRecentText": "Rezultài tornèi resenti", "tournamentStandingsText": "Clasìfega tornèo", "tournamentText": "Tornèo", @@ -1460,6 +1517,18 @@ "Uber Onslaught": "Dezìo - ultra", "Uber Runaround": "Mena torno - ultra" }, + "displayItemNames": { + "${C} Tickets": "${C} Biłieti", + "${C} Tokens": "${C} Getoni", + "Chest": "Càsa", + "L1 Chest": "Càsa L1", + "L2 Chest": "Càsa L2", + "L3 Chest": "Càsa L3", + "L4 Chest": "Càsa L4", + "L5 Chest": "Càsa L5", + "L6 Chest": "Càsa L6", + "Unknown Chest": "Càsa Sconossùa" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Copa l'ełeto par ciapar el só posto!\nPar vìnsar resta l'ełeto par un serto tenpo.", "Bomb as many targets as you can.": "Bonbarda tuti i sentri che te połi!", @@ -1564,6 +1633,7 @@ "Korean": "Corean", "Malay": "Maleze", "Persian": "Persian", + "PirateSpeak": "Léngua de pirati", "Polish": "Połaco", "Portuguese": "Portogheze", "Romanian": "Romen", @@ -1648,7 +1718,9 @@ "Max number of profiles reached.": "Nùmaro màsemo de profiłi pasà.", "Maximum friend code rewards reached.": "Brincà el nùmaro màsemo de premi da'l còdaze amigo.", "Message is too long.": "Mesajo masa łongo.", + "New tournament result!": "Novo risultato de'l tornèo!", "No servers are available. Please try again soon.": "Gnaun server disponìbiłe. Proa pì tardi.", + "No slots available. Free a slot and try again.": "No ghe xe spazi disponibiłi, łibera un spazi e riprova.", "Profile \"${NAME}\" upgraded successfully.": "Profiło \"${NAME}\" mejorà co suceso.", "Profile could not be upgraded.": "El profiło no'l połe miga èsar mejorà.", "Purchase successful!": "Cronpà co suceso!", @@ -1658,6 +1730,7 @@ "Sorry, this code has already been used.": "Ne despiaze, 'sto còdaze el ze dezà stà doparà.", "Sorry, this code has expired.": "Ne despiaze, ła vałidità de 'sto còdaze ła ze terminada.", "Sorry, this code only works for new accounts.": "Ne despiaze, 'sto còdaze el funsiona soło so i account novi.", + "Sorry, this has expired.": "Scusa, 'sto xe scadù.", "Still searching for nearby servers; please try again soon.": "Reserca de server visini in corso: proa danovo pì tardi.", "Temporarily unavailable; please try again later.": "Par deso miga disponìbiłe: proa danovo pì tardi.", "The tournament ended before you finished.": "El tornèo el ze terminà prima che te ghesi fenìo.", @@ -1669,19 +1742,27 @@ "Tournaments require ${VERSION} or newer": "Par i tornèi serve ła varsion ${VERSION} o una pì resente", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "Vutu descołegar l'account ${ACCOUNT} da 'sto account?\nTuti i dati de ${ACCOUNT} i vegnarà ełimenài.\n(obietivi a parte in calche cazo)", "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "AVERTENSA: el to account el ze stà segnałà par el dòparo de truchi.\nI zugaduri catài a doparar truchi i vegnarà blocài. Zuga da gałantomo.", + "Wait reduced!": "Spèta calà!", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "Ghetu caro cołegar el tó account łogałe co 'sto cuà?\n\nEl tó account łogałe el ze ${ACCOUNT1}\n'Sto account el ze ${ACCOUNT2}\n\n'Sta oparasion ła te parmetarà de mantegner i tó progresi ezistenti.\nOcio: 'sta asion no ła połe pì èsar anułada!", "You already own this!": "Dezà cronpà!", "You can join in ${COUNT} seconds.": "Te połi zontarte tenpo ${COUNT} segondi.", "You don't have enough tickets for this!": "A no te ghè miga biłieti che basta par cronparlo!", "You don't own that.": "Gnancora cronpà!", "You got ${COUNT} tickets!": "A te ghè otegnesto ${COUNT} biłieti!", + "You got ${COUNT} tokens!": "A te ghè otegnesto ${COUNT} getoni!", "You got a ${ITEM}!": "A te ghè otegnesto un ${ITEM}!", + "You got a chest!": "A te ghè otegnesto 'na càsa!", + "You got an achievement reward!": "A te ghè otegnesto 'na recompensa da obietivo!", "You have been promoted to a new league; congratulations!": "Promosion a ła łega suparior: congratułasion!", + "You lost a chest! (All your chest slots were full)": "Te gh'è perduda 'na càsa!(Tuti i spazi càsa jera pieni)", + "You must update the app to view this.": "Bisogna ajornà pa' vedare", "You must update to a newer version of the app to do this.": "Par ndar vanti A te ghè da ajornar l'apl a ła varsion pì resente.", "You must update to the newest version of the game to do this.": "Par ndar vanti A te ghè da ajornar el zugo a ła varsion pì resente.", "You must wait a few seconds before entering a new code.": "A te ghè da spetar calche segondo prima de insarir un còdaze novo.", + "You placed #${RANK} in a tournament!": "Te se ze clasificà #${RANK} ne'l tornèo!", "You ranked #${RANK} in the last tournament. Thanks for playing!": "Inte'l tornèo ùltemo A te si rivà #${RANK}. Grasie par ver zugà!", "Your account was rejected. Are you signed in?": "El to account el ze stà refudà. Ghetu fato l'aceso?", + "Your ad views are not registering. Ad options will be limited for a while.": "Łe vostre vixuałixasion de l’inserission no łe se registra. Łe opsion publicitarie łe sarà limitae pa un fià.", "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Ła to copia de'l zugo ła ze stada modifegada.\nPar piaser, anuła łe modìfeghe e proa danovo.", "Your friend code was used by ${ACCOUNT}": "El to còdaze amigo el ze stà doparà da ${ACCOUNT}" }, @@ -1849,6 +1930,7 @@ "usesExternalControllerText": "'Sto zugo el dòpara un controłador esterno cofà dispozidivo de entrada.", "usingItunesText": "Doparar l'apl de mùzega par el son de fondo...", "v2AccountLinkingInfoText": "Par łigar un account V2 dòpara el boton 'Jestisi account'.", + "v2AccountRequiredText": "Questo gà bisogno de un account V2. Agiorna el to account e riprova.", "validatingTestBuildText": "Confermasion varsion de proa...", "viaText": "co", "victoryText": "Vitoria!", @@ -1915,5 +1997,6 @@ }, "yesAllowText": "Sì, parmeti!", "yourBestScoresText": "I to punteji mejo", - "yourBestTimesText": "I to tenpi mejo" + "yourBestTimesText": "I to tenpi mejo", + "yourPrizeText": "El to premio:" } \ No newline at end of file diff --git a/dist/ba_data/data/languages/vietnamese.json b/dist/ba_data/data/languages/vietnamese.json index 94d2a21..940c04c 100644 --- a/dist/ba_data/data/languages/vietnamese.json +++ b/dist/ba_data/data/languages/vietnamese.json @@ -2,66 +2,69 @@ "accountSettingsWindow": { "accountNameRules": "Tên tài khoản không được chứa biểu tượng cảm xúc và kí tự đặc biệt", "accountProfileText": "Tài Khoản", - "accountsText": "Tài khoản", - "achievementProgressText": "Huy Hiệu:${COUNT} trong ${TOTAL}", - "campaignProgressText": "Tiến trình(khó) :${PROGRESS}", + "accountsText": "Tài Khoản", + "achievementProgressText": "Thành tựu: ${COUNT} trên ${TOTAL}", + "campaignProgressText": "Tiến độ chiến dịch [Khó]: ${PROGRESS}", "changeOncePerSeason": "Bạn chỉ có thể thay đổi một lần mỗi mùa.", - "changeOncePerSeasonError": "Bạn có thể đổi nó vào mùa sau (${NUM} days)", + "changeOncePerSeasonError": "Bạn chỉ có thể đổi vào mùa sau (${NUM} ngày)", + "createAnAccountText": "Tạo tài khoản", "customName": "Tên tùy chỉnh", + "deleteAccountText": "Xóa Tài khoản", "googlePlayGamesAccountSwitchText": "Nếu bạn muốn sử dụng một tài khoản Google khác,\nhãy sử dụng ứng dụng Google Play Games để đổi.", "linkAccountsEnterCodeText": "Nhập Mã", - "linkAccountsGenerateCodeText": "Tạo mã", + "linkAccountsGenerateCodeText": "Tạo Mã", "linkAccountsInfoText": "(Chia sẽ dữ liệu giữa các máy)", - "linkAccountsInstructionsNewText": "Để kết nối hai tài khoản, tạo mã trên tài khoản thứ\nnhất rồi nhập vào tài khoản thứ hai. Dữ liệu trên tài\nkhoản thứ hai sẽ được đồng bộ.\n(Dữ liệu trên tài khoản thứ nhất sẽ bị xóa vĩnh viễn)\n\nBạn có thể kết nối lên đến ${COUNT} tài khoản.\n\nLƯU Ý: chỉ kết nối tài khoản của bạn;\nNếu bạn kết nối tài khoản của người khác thì\ncả hai người sẽ không thể trực tuyến cùng một lúc.", + "linkAccountsInstructionsNewText": "Để liên kết hai tài khoản, tạo mã trên tài khoản thứ\nnhất và nhập vào tài khoản thứ hai. Dữ liệu trên tài\nkhoản thứ hai sẽ được đồng bộ.\n(Dữ liệu trên tài khoản thứ nhất sẽ bị xóa vĩnh viễn)\n\nBạn có thể kết nối lên đến ${COUNT} tài khoản.\n\nLƯU Ý: chỉ kết nối tài khoản của bạn;\nNếu bạn kết nối tài khoản của người khác\ncả hai sẽ không thể chơi trực tuyến cùng một lúc.", "linkAccountsInstructionsText": "Để kết nối 2 tài khoản khác nhau, tạo mã ở\nmột máy và nhập mã ở máy còn lại.\nDữ liệu sẽ được liên kết giữa các máy\nBạn có thể kết nối đến ${COUNT} thiết bị.\n\nQUAN TRỌNG: Chỉ kết nối tài khoản của bạn!\nNếu bạn kết nối tài khoản với bạn bè\nbạn không thể chơi cùng một lúc!\n\nNgoài ra: nó không thể hoàn tác, nên hãy cẩn thận!", - "linkAccountsText": "kết nối máy khác", - "linkedAccountsText": "Tài khoản kết nối:", - "manageAccountText": "Quản lý tài khoản", + "linkAccountsText": "Liên kết Tài khoản", + "linkedAccountsText": "Tài khoản đã liên kết:", + "manageAccountText": "Quản lý Tài khoản", "nameChangeConfirm": "Đổi tên tài khoản thành ${NAME}?", - "resetProgressConfirmNoAchievementsText": "Việc này sẽ đặt lại toàn bộ dữ liệu của bạn\nngoại trừ số tiền của ban\nđiều này không thể hoàn tác. Chắc chắn?", - "resetProgressConfirmText": "Việc này sẽ đặt lại toàn bộ dữ liệu của bạn\nvà cả huy hiệu\nngoại trừ số tiền của ban\nđiều này không thể hoàn tác. Chắc chắn?", - "resetProgressText": "Xóa dữ liệu", - "setAccountName": "Đặt lại tên tài khoản", - "setAccountNameDesc": "Chọn tên cho tài khoản của bạn.\nBạn có thể dùng tên từ tài khoản đã kết nối\nhoặc tạo tên khác.", - "signInInfoText": "Đăng nhập để lưu dữ liệu giữa các máy \nchơi online và tham gia giải đấu", + "resetProgressConfirmNoAchievementsText": "Việc này sẽ đặt lại tiến trình của bạn \n(ngoại trừ vé của bạn).\nĐiều này không thể hoàn tác. Xác nhận?", + "resetProgressConfirmText": "Việc này sẽ đặt lại toàn bộ dữ liệu của bạn\nbao gồm cả thành tựu,\n(ngoại trừ vé của bạn). Điều này không thể hoàn tác. \nXác nhận?", + "resetProgressText": "Xóa Tiến trình", + "setAccountName": "Đặt lại Tên Tài khoản", + "setAccountNameDesc": "Chọn tên hiển thị cho tài khoản của bạn.\nBạn có thể dùng tên từ tài khoản đã liên kết\nhoặc tạo tên mới.", + "signInInfoText": "Đăng nhập để thu thập vé, chơi trực tuyến, \nvà lưu dữ liệu giữa các thiết bị.", "signInText": "Đăng Nhập", - "signInWithDeviceInfoText": "(một tài khoản ở máy khác sẽ tự động đăng nhập)", - "signInWithDeviceText": "đăng nhập bằng tài khoản của máy tính", + "signInWithAnEmailAddressText": "Đăng nhập bằng địa chỉ email", + "signInWithDeviceInfoText": "(thiết bị này chỉ cho phép tài khoản mặc định)", + "signInWithDeviceText": "Đăng nhập bằng tài khoản thiết bị", "signInWithGameCircleText": "Đăng nhập với Game Circle", "signInWithGooglePlayText": "đăng nhập bằng google chơi trò chơi", "signInWithTestAccountInfoText": "(loại tài khoản đặc biệt; chỉ đăng nhập trên máy này)", "signInWithTestAccountText": "Đăng nhập bằng tài khoản máy tính", "signInWithText": "Đăng nhập bằng ${SERVICE}", - "signInWithV2InfoText": "(một tài khoản hoạt động trên tất cả các nền tảng)", - "signInWithV2Text": "Đăng nhập bằng tài khoản BombSquad", + "signInWithV2InfoText": "(tài khoản hoạt động trên tất cả các nền tảng)", + "signInWithV2Text": "Đăng nhập bằng tài khoản ${APP_NAME}", "signOutText": "Đăng Xuất", "signingInText": "Đang đăng nhập...", - "signingOutText": "Đang Đăng xuất...", + "signingOutText": "Đang đăng xuất...", "testAccountWarningCardboardText": "Cảnh Báo: bạn đang Đang Chơi tài Khoản 'Thử'\ndữ liệu sẽ bị thay thế bởi tài khoản\nvà nó sẽ đè lên TK thử\n\nBây giờ bạn sẽ có tất cả tiền trong Game\n(Bạn hãy chơi Boomsquad Pro miẽn phí", "testAccountWarningOculusText": "Cảnh báo:bạn đang đăng nhập với kí tự chữ.Chúng sẽ được thay thế bằng kí tự ô.\nTài khoản này sẽ được dùng để mua vé và các tính năng khác.\n\n\nVà bây giờ bạn sẽ được học cách thu thập các vé trong game.\n(Mách nhỏ bạn có thể cập nhật BombSquad Pro miễn phí bằng vé)", "testAccountWarningText": "Cảnh báo:bạn đang đăng nhập bằng tài khoản thử nghiệm.\nTài khoản này sẽ xác thưc thiết bị của bạn và sẽ xóa mất dữ liệu.\n(vì vậy chúng tôi khuyên bạn đừng bỏ nhiều thời gian thu thập \nhoặc mở các vật phẩm trong game.\n\nHãy dùng phiên bản bày bán để có tài khoản thực(vd:Game-Center,Google Plus,...)\nViệc này sẽ giúp bạn lưu trữ các quá trình \nkhi chơi bằng dữ liệu đám mây \nvà bạn có thể chơi trên các thiết bị khác.", - "ticketsText": "Số Tiền: ${COUNT}", + "ticketsText": "Vé: ${COUNT}", "titleText": "Tài Khoản", - "unlinkAccountsInstructionsText": "Chọn tài khoản để hủy kết nối", - "unlinkAccountsText": "Hủy kết nối", + "unlinkAccountsInstructionsText": "Chọn tài khoản để hủy liên kết", + "unlinkAccountsText": "Hủy liên kết Tài khoản", "unlinkLegacyV1AccountsText": "Hủy liên kết tài khoản (V1)", "v2LinkInstructionsText": "Sử dụng liên kết này để tạo tài khoản hoặc đăng nhập.", "viaAccount": "(qua tài khoản ${NAME})", - "youAreSignedInAsText": "Bạn đang đăng nhập tài khoản:" + "youAreSignedInAsText": "Bạn đang đăng nhập bằng:" }, - "achievementChallengesText": "Các thành tựu đạt được.", + "achievementChallengesText": "Thành tựu Thử thách", "achievementText": "Thành tựu", "achievements": { "Boom Goes the Dynamite": { "description": "Tiêu diệt 3 kẻ xấu bằng TNT", - "descriptionComplete": "Giết 3 kẻ xấu với TNT", - "descriptionFull": "Tiêu diệt 3 kẻ xấu bằng TNT với ${LEVEL}", + "descriptionComplete": "Tiêu diệt 3 kẻ xấu bằng TNT", + "descriptionFull": "Tiêu diệt 3 kẻ xấu bằng TNT trong ${LEVEL}", "descriptionFullComplete": "Tiêu diệt 3 kẻ xấu bằng TNT với ${LEVEL}", - "name": "Bom tạo ra sức mạnh" + "name": "Bom Tạo Ra Sức Mạnh" }, "Boxer": { "description": "Chiến thắng mà không sử dụng bom", - "descriptionComplete": "Đã chiến thắng mà không sử dụng bom", + "descriptionComplete": "Chiến thắng mà không sử dụng bom", "descriptionFull": "Hoàn thành ${LEVEL} mà không sử dụng bom", "descriptionFullComplete": "Hoàn thành ${LEVEL} mà không sử dụng bom", "name": "Tay đấm xuất sắc" @@ -69,243 +72,243 @@ "Dual Wielding": { "descriptionFull": "Kết nối 2 điều khiển (thiết bị hoặc ứng dụng)", "descriptionFullComplete": "Kết nối 2 điều khiển (thiết bị hoặc ứng dụng)", - "name": "Gấp đôi điều khiển" + "name": "Song Kiếm" }, "Flawless Victory": { - "description": "Chiến thắng mà không đánh đối thủ", - "descriptionComplete": "Đã chiến thắng mà không đánh đối thủ", - "descriptionFull": "Nhận được ${LEVEL} mà không đánh đối thủ", - "descriptionFullComplete": "Đã thắng ${LEVEL} mà không đánh đối thủ", - "name": "Chiến thắng vinh quang" + "description": "Chiến thắng mà không nhận sát thương", + "descriptionComplete": "Chiến thắng mà không nhận sát thương", + "descriptionFull": "Chiến thắng ${LEVEL} mà không nhận sát thương", + "descriptionFullComplete": "Chiến thắng ${LEVEL} mà không nhận sát thương", + "name": "Chiến thắng Hoàn hảo" }, "Free Loader": { - "descriptionFull": "Chơi Đánh đơn với 2+ người chơi", - "descriptionFullComplete": "Chơi Đánh đơn với 2+ người chơi", - "name": "Chơi Vô Hạn" + "descriptionFull": "Chơi một trận Đánh đơn với 2+ người chơi", + "descriptionFullComplete": "Chơi một trận Đánh đơn với 2+ người chơi", + "name": "Cuộc chiến Đơn độc" }, "Gold Miner": { "description": "Tiêu diệt 6 kẻ xấu bằng mìn", - "descriptionComplete": "Đã tiêu diệt 6 kẻ xấu bằng mìn", - "descriptionFull": "Tiêu diệt 6 kẻ xấu bằng mìn trên ${LEVEL}", - "descriptionFullComplete": "Đã tiêu diệt 6 kẻ xấu bằng mìn trên ${LEVEL}", - "name": "Người đào vàng" + "descriptionComplete": "Tiêu diệt 6 kẻ xấu bằng mìn", + "descriptionFull": "Tiêu diệt 6 kẻ xấu bằng mìn trong ${LEVEL}", + "descriptionFullComplete": "Tiêu diệt 6 kẻ xấu bằng mìn trong ${LEVEL}", + "name": "Kẻ Đào vàng" }, "Got the Moves": { - "description": "Chiến thắng mà không đấm đối thủ hoặc sử dụng bom", - "descriptionComplete": "Đã thắng mà không đấm đối thủ hoặc sử dụng bom", - "descriptionFull": "Nhận được ${LEVEL} mà không đấm đối thủ hoặc sử dụng bom", - "descriptionFullComplete": "Đã thắng ${LEVEL} mà không đắm đối thủ hoặc không sử đụng bom", - "name": "Hãy di chuyển" + "description": "Chiến thắng mà không sử dụng nắm đấm hoặc bom", + "descriptionComplete": "Chiến thắng mà không sử dụng nắm đấm hoặc bom", + "descriptionFull": "Chiến thắng ${LEVEL} mà không sử dụng nắm đấm hoặc bom", + "descriptionFullComplete": "Chiến thắng ${LEVEL} mà không sử dụng nắm đấm hoặc bom", + "name": "Bước chân Thanh thoát" }, "In Control": { - "descriptionFull": "Kết nối với điều khiển (thiết bị hoặc ứng dụng)", - "descriptionFullComplete": "Kết nối với điều khiển (thiết bị hoặc ứng dụng)", - "name": "Trong điều khiển" + "descriptionFull": "Kết nối điều khiển (thiết bị hoặc ứng dụng)", + "descriptionFullComplete": "Kết nối điều khiển (thiết bị hoặc ứng dụng)", + "name": "Trong Tầm Kiểm Soát" }, "Last Stand God": { "description": "Ghi 1000 điểm", - "descriptionComplete": "Đã ghi được 1000 điểm", - "descriptionFull": "Ghi 1000 điểm trên ${LEVEL}", - "descriptionFullComplete": "Đã ghi 1000 điểm trên ${LEVEL}", - "name": "${LEVEL} Thánh" + "descriptionComplete": "Ghi 1000 điểm", + "descriptionFull": "Ghi 1000 điểm trong ${LEVEL}", + "descriptionFullComplete": "Ghi 1000 điểm trong ${LEVEL}", + "name": "Bậc Thầy ${LEVEL}" }, "Last Stand Master": { "description": "Ghi 250 điểm", "descriptionComplete": "Đạt 250 điểm", - "descriptionFull": "Điểm 250 trong vòng ${LEVEL}", - "descriptionFullComplete": "Đạt 250 điểm trong vòng ${LEVEL}", - "name": "Sư phụ của vòng ${LEVEL}" + "descriptionFull": "Ghi 250 điểm trong ${LEVEL}", + "descriptionFullComplete": "Đạt 250 điểm trong ${LEVEL}", + "name": "Nắm vững ${LEVEL}" }, "Last Stand Wizard": { - "description": "Điểm đạt 500", + "description": "Ghi 500 điểm", "descriptionComplete": "Đạt 500 điểm", - "descriptionFull": "Đạt 500 điểm tại ${LEVEL}", - "descriptionFullComplete": "Đạt 500 điểm tại ${LEVEL}", - "name": "${LEVEL} Wizard" + "descriptionFull": "Ghi 500 điểm trong ${LEVEL}", + "descriptionFullComplete": "Đạt 500 điểm trong ${LEVEL}", + "name": "Thông thạo ${LEVEL}" }, "Mine Games": { - "description": "Giết 3 kẻ xấu vứi land-mines", - "descriptionComplete": "Giết 3 kẻ xấu với land-mines", - "descriptionFull": "Giết 3 kẻ xấu với land-mines tại ${LEVEL}", - "descriptionFullComplete": "Giết 3 kẻ xấu với land-mines tại ${LEVEL}", - "name": "Trò chơi Mine" + "description": "Tiêu diệt 3 kẻ xấu bằng mìn", + "descriptionComplete": "Tiêu diệt 3 kẻ xấu bằng mìn", + "descriptionFull": "Tiêu diệt 3 kẻ xấu bằng mìn trong ${LEVEL}", + "descriptionFullComplete": "Tiêu diệt 3 kẻ xấu bằng mìn trong ${LEVEL}", + "name": "Minesweeper" }, "Off You Go Then": { - "description": "Ném 3 đối thủ khỏi bản đồ", - "descriptionComplete": "Ném 3 kẻ xấu ra khỏi bản đồ", - "descriptionFull": "Ném 3 kẻ xấu ra khỏi bản đồ tại ${LEVEL}", - "descriptionFullComplete": "Ném 3 kẻ xấu ra khỏi bản đồ tại ${LEVEL}", - "name": "Đến Ai Tiếp Theo" + "description": "Ném 3 kẻ xấu xuống vực", + "descriptionComplete": "Ném 3 kẻ xấu xuống vực", + "descriptionFull": "Ném 3 kẻ xấu xuống vực trong ${LEVEL}", + "descriptionFullComplete": "Ném 3 kẻ xấu xuống vực trong ${LEVEL}", + "name": "Tiễn Khách" }, "Onslaught God": { - "description": "Đạt 5000 điểm", + "description": "Ghi 5000 điểm", "descriptionComplete": "Đạt 5000 điểm", - "descriptionFull": "Đạt 5000 điểm tại ${LEVEL}", - "descriptionFullComplete": "Đạt 5000 điểm tại ${LEVEL}", - "name": "${LEVEL} thánh" + "descriptionFull": "Ghi 5000 điểm trong ${LEVEL}", + "descriptionFullComplete": "Đạt 5000 điểm trong ${LEVEL}", + "name": "Bậc thầy ${LEVEL}" }, "Onslaught Master": { - "description": "Đạt 500 điểm", + "description": "Ghi 500 điểm", "descriptionComplete": "Đạt 500 điểm", - "descriptionFull": "Đạt 500 điểm tại ${LEVEL}", - "descriptionFullComplete": "Đạt 500 điểm tại ${LEVEL}", - "name": "${LEVEL} Sư phụ" + "descriptionFull": "Ghi 500 điểm trong ${LEVEL}", + "descriptionFullComplete": "Đạt 500 điểm trong ${LEVEL}", + "name": "Nắm vững ${LEVEL}" }, "Onslaught Training Victory": { - "description": "Thắng tất cả các ải", - "descriptionComplete": "Thắng tất cả các ải", - "descriptionFull": "Thắng tất cả các ải tại ${LEVEL}", - "descriptionFullComplete": "Thắng tất cả các ải tại ${LEVEL}", + "description": "Thắng tất cả các vòng", + "descriptionComplete": "Thắng tất cả các vòng", + "descriptionFull": "Thắng tất cả các vòng trong ${LEVEL}", + "descriptionFullComplete": "Thắng tất cả các vòng trong ${LEVEL}", "name": "${LEVEL} Chiến thắng" }, "Onslaught Wizard": { - "description": "Đạt 1000 điểm", + "description": "Ghi 1000 điểm", "descriptionComplete": "Đạt 1000 điểm", - "descriptionFull": "Đạt 1000 điểm tại ${LEVEL}", - "descriptionFullComplete": "Đạt 1000 điểm tại ${LEVEL}", - "name": "${LEVEL} phù thủy" + "descriptionFull": "Ghi 1000 điểm trong ${LEVEL}", + "descriptionFullComplete": "Đạt 1000 điểm trong ${LEVEL}", + "name": "Thông thạo ${LEVEL}" }, "Precision Bombing": { - "description": "Thắng mà không cần powerups", - "descriptionComplete": "Thắng mà không cần powerups", - "descriptionFull": "Thắng tại ${LEVEL} mà không cần powerups", - "descriptionFullComplete": "Hoàn thành ${LEVEL} mà không sử dụng Power-ups", - "name": "Tự Tin Ném Bom" + "description": "Chiến thắng mà không sử dụng vật phẩm", + "descriptionComplete": "Chiến thắng mà không sử dụng vật phẩm", + "descriptionFull": "Chiến thắng trong ${LEVEL} mà không sử dụng vật phẩm", + "descriptionFullComplete": "Chiến thắng trong ${LEVEL} mà không sử dụng vật phẩm", + "name": "Ném bom Chiến lược" }, "Pro Boxer": { "description": "Thắng mà không sử dụng bom", "descriptionComplete": "Thắng mà không sử dụng bom", "descriptionFull": "Hoàn thành ${LEVEL} không sử dụng bom", "descriptionFullComplete": "Hoàn thành ${LEVEL} không sử dụng bom", - "name": "Đấm Bốc Chuyên Nhiệp" + "name": "Đấm Bốc Chuyên Nghiệp" }, "Pro Football Shutout": { - "description": "Thắng mà không để đội bên ghi điểm", - "descriptionComplete": "Thắng mà không để đội bên ghi điểm", + "description": "Chiến thắng mà không để đội đối thủ ghi điểm", + "descriptionComplete": "Chiến thắng mà không để đội đối thủ ghi điểm", "descriptionFull": "Hoàn thành ${LEVEL} mà không để đội bên ghi điểm", - "descriptionFullComplete": "Hoàn thành ${LEVEL} mà không để đội bên ghi điểm", - "name": "Xuất Sắc ${LEVEL}" + "descriptionFullComplete": "Chiến thắng ${LEVEL} mà không để đội đối thủ ghi điểm", + "name": "${LEVEL} Chuyên nghiệp" }, "Pro Football Victory": { - "description": "Hoàn thành vòng", - "descriptionComplete": "Hoàn thành vòng", - "descriptionFull": "Hoàn thành vòng ${LEVEL}", - "descriptionFullComplete": "Hoàn thành vòng ${LEVEL}", + "description": "Chiến thắng", + "descriptionComplete": "Chiến thắng", + "descriptionFull": "Chiến thắng trong ${LEVEL}", + "descriptionFullComplete": "Chiến thắng trong ${LEVEL}", "name": "Chiến thắng ${LEVEL}" }, "Pro Onslaught Victory": { - "description": "Đánh bại tất cả", - "descriptionComplete": "Đánh bại tất cả", - "descriptionFull": "Đánh bại tất cả ở ${LEVEL}", - "descriptionFullComplete": "Đánh bại tất cả ở ${LEVEL}", - "name": "Chiến thang ${LEVEL}" + "description": "Thắng tất cả các vòng", + "descriptionComplete": "Thắng tất cả các vòng", + "descriptionFull": "Thắng tất cả các vòng trong ${LEVEL}", + "descriptionFullComplete": "Thắng tất cả các vòng trong ${LEVEL}", + "name": "Chiến thắng ${LEVEL}" }, "Pro Runaround Victory": { "description": "Hoàn thành tất cả các vòng", - "descriptionComplete": "Đã hoàn thành tất cả các vòng", - "descriptionFull": "Hoàn thành tất cả các vòng tại ${LEVEL}", - "descriptionFullComplete": "Đã hoàn thành tất cả các vòng tại ${LEVEL}", + "descriptionComplete": "Hoàn thành tất cả các vòng", + "descriptionFull": "Hoàn thành tất cả các vòng trong ${LEVEL}", + "descriptionFullComplete": "Hoàn thành tất cả các vòng trong ${LEVEL}", "name": "${LEVEL} Chiến thắng" }, "Rookie Football Shutout": { - "description": "Thắng mà không để đối phương ghi bàn nào", - "descriptionComplete": "Chiến thắng mà không để kẻ xấu ghi điểm", - "descriptionFull": "Chiến thắng ${LEVEL} mà không để kẻ xấu ghi điểm", - "descriptionFullComplete": "Chiến thắng ${LEVEL} mà không để kẻ xấu ghi điểm", - "name": "${LEVEL} Bắn ra" + "description": "Chiến thắng mà không để đội đối thủ ghi điểm", + "descriptionComplete": "Chiến thắng mà không để đội đối thủ ghi điểm", + "descriptionFull": "Chiến thắng ${LEVEL} mà không để đội đối thủ ghi điểm", + "descriptionFullComplete": "Chiến thắng ${LEVEL} mà không để đội đối thủ ghi điểm", + "name": "Chiến thắng ${LEVEL}" }, "Rookie Football Victory": { - "description": "Hoàn Thành Trò Chơi", - "descriptionComplete": "Hoàn Thành Trò Chơi", - "descriptionFull": "Hoàn Thành Trò Chơi ở ${LEVEL}", - "descriptionFullComplete": "Hoàn Thành Trò Chơi ở ${LEVEL}", + "description": "Chiến thắng", + "descriptionComplete": "Chiến thắng", + "descriptionFull": "Chiến thắng trong ${LEVEL}", + "descriptionFullComplete": "Chiến thắng trong ${LEVEL}", "name": "Chiến Thắng ${LEVEL}" }, "Rookie Onslaught Victory": { - "description": "Vượt qua tất cả vòng", - "descriptionComplete": "Vượt qua tất cả vòng", - "descriptionFull": "Vượt qua tất cả vòng ở ${LEVEL}", - "descriptionFullComplete": "Vượt qua tất cả vòng ở ${LEVEL}", + "description": "Chiến thắng tất cả các vòng", + "descriptionComplete": "Chiến thắng tất cả các vòng", + "descriptionFull": "Chiến thắng tất cả các vòng trong ${LEVEL}", + "descriptionFullComplete": "Chiến thắng tất cả các vòng trong ${LEVEL}", "name": "${LEVEL} Chiến thắng" }, "Runaround God": { - "description": "Đạt 2000 điểm", + "description": "Ghi 2000 điểm", "descriptionComplete": "Đạt 2000 điểm", - "descriptionFull": "Đạt 2000 điểm tại ${LEVEL}", - "descriptionFullComplete": "Đạt 2000 điểm tại ${LEVEL}", - "name": "${LEVEL} Thánh" + "descriptionFull": "Ghi 2000 điểm trong ${LEVEL}", + "descriptionFullComplete": "Ghi 2000 điểm trong ${LEVEL}", + "name": "${LEVEL} Bậc Thầy" }, "Runaround Master": { - "description": "Đạt 500 điểm", + "description": "Ghi 500 điểm", "descriptionComplete": "Đạt 500 điểm", - "descriptionFull": "Đạt 500 điểm tại ${LEVEL}", + "descriptionFull": "Ghi 500 điểm tại ${LEVEL}", "descriptionFullComplete": "Đạt 500 điểm tại ${LEVEL}", - "name": "${LEVEL} Sư phụ" + "name": "Nắm Vững ${LEVEL}" }, "Runaround Wizard": { - "description": "Đạt 1000 điểm", + "description": "Ghi 1000 điểm", "descriptionComplete": "Đạt 1000 điểm", - "descriptionFull": "Đạt 1000 điểm tại ${LEVEL}", - "descriptionFullComplete": "Đạt 1000 điểm tại ${LEVEL}", - "name": "${LEVEL} Phù thủy" + "descriptionFull": "Ghi 1000 điểm trong ${LEVEL}", + "descriptionFullComplete": "Đạt 1000 điểm trong ${LEVEL}", + "name": "${LEVEL} Thông Thạo" }, "Sharing is Caring": { - "descriptionFull": "Chia sẻ thành công trò chơi này với bạn bè", - "descriptionFullComplete": "Đã chia sẻ trò chơi này với bạn bè", - "name": "Chia sẻ là Quan tâm" + "descriptionFull": "Chia sẻ với bạn bè thành công", + "descriptionFullComplete": "Chia sẻ với bạn bè thành công", + "name": "Lá Lành Đùm Lá Rách" }, "Stayin' Alive": { "description": "Thắng mà không chết", "descriptionComplete": "Thắng mà không chết", "descriptionFull": "Thắng ${LEVEL} mà không chết", - "descriptionFullComplete": "Đã thắng ${LEVEL} mà không chết", - "name": "Sống sót" + "descriptionFullComplete": "Thắng ${LEVEL} mà không chết", + "name": "Sống Sót" }, "Super Mega Punch": { - "description": "Gây sát thương 100% với một cú đấm", - "descriptionComplete": "Gây sát thương 100% với một cú đấm", - "descriptionFull": "Gây sát thương 100% với một cú đấm trong ${LEVEL}", - "descriptionFullComplete": "Gây sát thương 100% với một cú đấm trong ${LEVEL}", - "name": "Cú đấm siêu hạng" + "description": "Gây 100% sát thương với một cú đấm", + "descriptionComplete": "Gây 100% sát thương với một cú đấm", + "descriptionFull": "Gây 100% sát thương với một cú đấm trong ${LEVEL}", + "descriptionFullComplete": "Gây 100% sát thương với một cú đấm ${LEVEL}", + "name": "Một Đấm Là Nằm" }, "Super Punch": { - "description": "Gây sát thương 50% với một cú đấm", - "descriptionComplete": "Gây sát thương 50% với một cú đấm", - "descriptionFull": "Gây sát thương 50% với một cú đấm trong ${LEVEL}", - "descriptionFullComplete": "Gây sát thương 50% với một cú đấm trong ${LEVEL}", + "description": "Gây 50% sát thương với một cú đấm", + "descriptionComplete": "Gây 50% sát thương với một cú đấm", + "descriptionFull": "Gây 50% sát thương với một cú đấm trong ${LEVEL}", + "descriptionFullComplete": "Gây 50% sát thương với một cú đấm trong ${LEVEL}", "name": "Siêu đấm" }, "TNT Terror": { - "description": "Giết 6 kẻ địch với TNT", - "descriptionComplete": "Giết 6 kẻ địch với TNT", - "descriptionFull": "Giết 6 kẻ địch với TNT trong ${LEVEL}", - "descriptionFullComplete": "Giết 6 kẻ địch với TNT trong ${LEVEL}", - "name": "Nỗi khiếp sợ TNT" + "description": "Tiêu diệt 6 kẻ xấu với TNT", + "descriptionComplete": "Tiêu diệt 6 kẻ xấu với TNT", + "descriptionFull": "Tiêu diệt 6 kẻ xấu với TNT trong ${LEVEL}", + "descriptionFullComplete": "Tiêu diệt 6 kẻ xấu với TNT trong ${LEVEL}", + "name": "Thuốc Nổ Tung" }, "Team Player": { - "descriptionFull": "Chơi cùng với 4+ người khác", - "descriptionFullComplete": "Chơi cùng với 4+ người khác", + "descriptionFull": "Bắt đầu một Trận đấu đội với 4+ người chơi", + "descriptionFullComplete": "Bắt đầu một Trận đấu đội với 4+ người chơi", "name": "Đồng đội" }, "The Great Wall": { - "description": "Chặn toàn bộ kẻ địch", - "descriptionComplete": "Chặn toàn bộ kẻ địch", - "descriptionFull": "Chặn toàn bộ kẻ địch trong ${LEVEL}", - "descriptionFullComplete": "Chặn toàn bộ kẻ địch trong ${LEVEL}", - "name": "Bức tường vĩ đại" + "description": "Chặn toàn bộ kẻ xấu", + "descriptionComplete": "Chặn toàn bộ kẻ xấu", + "descriptionFull": "Chặn toàn bộ kẻ xấu trong ${LEVEL}", + "descriptionFullComplete": "Chặn toàn bộ kẻ xấu trong ${LEVEL}", + "name": "Vạn Lý Trường Thành" }, "The Wall": { - "description": "Chặn tất cả kẻ địch", - "descriptionComplete": "Chặn tất cả kẻ địch", - "descriptionFull": "Chặn tất cả kẻ địch trong ${LEVEL}", + "description": "Chặn toàn bộ kẻ xấu", + "descriptionComplete": "Chặn toàn bộ kẻ xấu", + "descriptionFull": "Chặn toàn bộ kẻ xấu trong ${LEVEL}", "descriptionFullComplete": "Chặn tất cả kẻ địch trong ${LEVEL}", - "name": "Bức tường" + "name": "Bức Tường" }, "Uber Football Shutout": { - "description": "Chiến thấng mà không cho kẻ địch ghi điểm", - "descriptionComplete": "Chiến thấng mà không cho kẻ địch ghi điểm", - "descriptionFull": "Chiến thấng ${LEVEL} mà không cho kẻ địch ghi điểm", - "descriptionFullComplete": "Chiến thấng ${LEVEL} mà không cho kẻ địch ghi điểm", + "description": "Chiến thắng mà không để đội đối thủ ghi điểm", + "descriptionComplete": "Chiến thắng mà không để đội đối thủ ghi điểm", + "descriptionFull": "Chiến thắng ${LEVEL} mà không để đội đối thủ ghi điểm", + "descriptionFullComplete": "Chiến thắng ${LEVEL} mà không để đội đối thủ ghi điểm", "name": "${LEVEL} Áp đảo" }, "Uber Football Victory": { @@ -316,220 +319,231 @@ "name": "${LEVEL} Chiến thắng" }, "Uber Onslaught Victory": { - "description": "Thắng tất cả các vòng", - "descriptionComplete": "Thấng tất cả các ải", - "descriptionFull": "Thấng tất cả các ải trong ${LEVEL}", - "descriptionFullComplete": "Thấng tất cả các ải trong ${LEVEL}", + "description": "Chiến thắng tất cả các vòng", + "descriptionComplete": "Chiến thắng tất cả các vòng", + "descriptionFull": "Chiến thắng tất cả các vòng trong ${LEVEL}", + "descriptionFullComplete": "Chiến thắng tất cả các vòng trong ${LEVEL}", "name": "${LEVEL} Chiến thấng" }, "Uber Runaround Victory": { - "description": "Thấng tất cả các ải", - "descriptionComplete": "Thấng tất cả các ải", - "descriptionFull": "Thấng tất cả các ải trong ${LEVEL}", - "descriptionFullComplete": "Thấng tất cả các ải trong ${LEVEL}", + "description": "Chiến thắng tất cả các vòng", + "descriptionComplete": "Chiến thắng tất cả các vòng", + "descriptionFull": "Chiến thắng tất cả các vòng trong ${LEVEL}", + "descriptionFullComplete": "Chiến thắng tất cả các vòng trong ${LEVEL}", "name": "${LEVEL} Chiến thắng" } }, - "achievementsRemainingText": "Các thành tựu tiếp theo:", - "achievementsText": "Các thành tựu", - "achievementsUnavailableForOldSeasonsText": "Xin lỗi , huy hiệu này không có ở mùa trước", + "achievementsRemainingText": "Thành tựu Còn lại:", + "achievementsText": "Thành tựu", + "achievementsUnavailableForOldSeasonsText": "Xin lỗi, chi tiết thành tựu không có sẵn ở mùa cũ.", "activatedText": "${THING} đã được kích hoạt.", "addGameWindow": { - "getMoreGamesText": "Thêm các thể loại chơi", - "titleText": "Thêm trận đấu" + "getMoreGamesText": "Thêm chế độ chơi", + "titleText": "Thêm Trò chơi" }, - "addToFavoritesText": "Thêm vào mục yêu thích", + "addToFavoritesText": "Thêm vào Mục yêu thích", "addedToFavoritesText": "Đã thêm '${NAME}' vào Mục yêu thích.", "allText": "Tất cả", "allowText": "Cho phép", "alreadySignedInText": "Tài khoản của bạn đã được đăng nhập trên thiết bị khác;\nhãy đổi tài khoản hoặc đăng xuất khỏi thiết bị khác\nvà thử lại.", - "apiVersionErrorText": "Không thể tải ${NAME}; phiên bản ${VERSION_USED}; yêu cầu ${VERSION_REQUIRED}.", + "apiVersionErrorText": "Không thể tải ${NAME}; phiên bản của bản Mod này là ${VERSION_USED}; yêu cầu phiên bản ${VERSION_REQUIRED}.", + "applyText": "Áp dụng", + "areYouSureText": "Xác nhận?", "audioSettingsWindow": { - "headRelativeVRAudioInfoText": "(tự động bật chức năng này khi cắm tai phone vào)", - "headRelativeVRAudioText": "Tai nghe VR Audio", - "musicVolumeText": "Mức âm lượng", - "soundVolumeText": "Mức độ âm thanh nền", - "soundtrackButtonText": "Các bản nhạc khác", - "soundtrackDescriptionText": "(sử dụng bài nhạc của bạn khi đang chơi game)", + "headRelativeVRAudioInfoText": "(tự động bật chức năng này khi cắm tai nghe )", + "headRelativeVRAudioText": "Âm thanh tai nghe VR", + "musicVolumeText": "Âm lượng Nhạc", + "soundVolumeText": "Âm lượng Âm thanh", + "soundtrackButtonText": "Nhạc Nền", + "soundtrackDescriptionText": "(thiết lập nhạc của bạn trong trò chơi)", "titleText": "Âm thanh" }, "autoText": "Tự động", "backText": "Quay lại", - "banThisPlayerText": "Khóa người chơi này", - "bestOfFinalText": "Đứng đầu ${COUNT} ván", - "bestOfSeriesText": "Đứng đầu ${COUNT} ván", + "banThisPlayerText": "Cấm Người chơi", + "bestOfFinalText": "Tổng kết ${COUNT} ván", + "bestOfSeriesText": "Đứng đầu ${COUNT} ván:", "bestRankText": "Thành tích cao nhất của bạn #${RANK}", "bestRatingText": "Đánh giá cao nhất của bạn ${RATING}", "bombBoldText": "BOM", "bombText": "Bom", "boostText": "Tăng Lực", - "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} sẽ từ được điều chỉnh.", + "bsRemoteConfigureInAppText": "${REMOTE_APP_NAME} sẽ tự được điều chỉnh.", "buttonText": "Nút", - "canWeDebugText": "Bạn có muốn BombSquad tự động gửi bug,lỗi \ngame và thồn tin cơ bản cho nhà phát triển?\n\nNhững dữ liệu này không chứa thông tin \ncá nhân và chúng giúp game chạy mượt và không gặp bug.", + "canWeDebugText": "Bạn có muốn ${APP_NAME} tự động báo cáo\nlỗi, sự cố và thông tin sử dụng cơ bản cho nhà phát triển không?\n\nDữ liệu này không chứa thông tin cá nhân và giúp\ntrò chơi chạy ổn định và không có lỗi.", "cancelText": "Hủy", - "cantConfigureDeviceText": "Rất tiếc,${DEVICE} không định cấu hình được", + "cantConfigureDeviceText": "Rất tiếc, ${DEVICE} không thể điều chỉnh được", "challengeEndedText": "Thử thách này đã kết thúc.", "chatMuteText": "Ẩn trò chuyện", "chatMutedText": "Đã ẩn trò chuyện", "chatUnMuteText": "Khôi phục trò chuyện", - "choosingPlayerText": "<đang chọn nhân vật>", + "chests": { + "prizeOddsText": "Xác Suất", + "reduceWaitText": "Giảm Thời Gian Chờ", + "slotDescriptionText": "Đây là ô chứa rương.\n\nKiếm rương bằng cách chơi chiến dịchl\nđạt thứ hạng trong giải đấu, và hoàn thành \nthành tựu.", + "slotText": "Ô Số ${NUM}", + "slotsFullWarningText": "CẢNH BÁO: Đã hết ô chứa rương.\nRương bạn nhận được thêm sẽ bị mất.", + "unlocksInText": "Mở khóa sau" + }, + "choosingPlayerText": "<đang chọn>", + "claimText": "Nhận", "codesExplainText": "Mã được nhà phát triển cung cấp để\nchẩn đoán và khắc phục các vấn đề về tài khoản.", "completeThisLevelToProceedText": "Bạn phải hoàn thành \ncấp độ này để tiếp tục!", - "completionBonusText": "Hoàn thành phần thưởng", + "completionBonusText": "Phần Thưởng Hoàn Thành", "configControllersWindow": { - "configureControllersText": "Điều chỉnh bộ điều khiển", + "configureControllersText": "Điều chỉnh Điều khiển", "configureKeyboard2Text": "Điều chỉnh bàn phím P2", "configureKeyboardText": "Điều chỉnh bàn phím", - "configureMobileText": "Thiết bị di động đang là bộ điều khiển", - "configureTouchText": "Điều chỉnh màn hình cảm ứng", + "configureMobileText": "Điều khiển Thiết bị di động", + "configureTouchText": "Điều chỉnh Màn hình cảm ứng", "ps3Text": "Bộ điều khiển PS3", - "titleText": "Các bộ điều khiển", + "titleText": "Bộ điều khiển", "wiimotesText": "Bộ điều khiển Wii", "xbox360Text": "Bộ điều khiển Xbox 360" }, "configGamepadSelectWindow": { - "androidNoteText": "Lưu ý:bộ điều khiển sẽ hỗ trợ khác nhau tùy theo thiết bị và hệ thống Android", + "androidNoteText": "Lưu ý: bộ điều khiển sẽ hỗ trợ khác nhau tùy theo thiết bị và hệ thống Android", "pressAnyButtonText": "Nhấn phím bất kỳ trên bộ điều khiển \nmà bạn muốn điều chỉnh....", - "titleText": "Điều chỉnh bộ điều khiển" + "titleText": "Điều chỉnh Bộ điều khiển" }, "configGamepadWindow": { - "advancedText": "Phát triển", - "advancedTitleText": "Cài đặt bộ điều khiển", - "analogStickDeadZoneDescriptionText": "(Bật cái này nếu nhân vật của bạn trượt khi bạn nhấn cần điều hướng)", - "analogStickDeadZoneText": "Điểm chết trên Điều khiển Analog", - "appliesToAllText": "(áp dụng cho tất cả các bộ điều khiển với kiểu này)", - "autoRecalibrateDescriptionText": "(bật cái này nếu nhân vật không chạy được)", + "advancedText": "Nâng Cao", + "advancedTitleText": "Cài đặt Bộ điều khiển Nâng cao", + "analogStickDeadZoneDescriptionText": "(Bật nếu nhân vật của bạn 'trượt' khi bạn nhấn cần điều hướng)", + "analogStickDeadZoneText": "Điểm chết Trên Cần điều khiển Analog", + "appliesToAllText": "(áp dụng cho tất cả cần điều khiển cùng kiểu)", + "autoRecalibrateDescriptionText": "(bật lên nếu nhân vật không chạy được tốc độ tối đa)", "autoRecalibrateText": "Tự Đông Hiệu Chỉnh Điều Khiển Analog", "axisText": "Trục", "clearText": "xóa", - "dpadText": "Màn Hình", - "extraStartButtonText": "Thêm nút Start", - "ifNothingHappensTryAnalogText": "Nếu không sử dụng được,thử thay thế nút điều hướng khác", - "ifNothingHappensTryDpadText": "Nếu không sử dụng được,thử thay thế D-pad", + "dpadText": "4 nút di chuyển", + "extraStartButtonText": "Nút Bắt đầu Khác", + "ifNothingHappensTryAnalogText": "Nếu không sử dụng được, thử thay thế bằng cần điều khiển.", + "ifNothingHappensTryDpadText": "Nếu không sử dụng được, thử thay thế bằng 4 nút di chuyển.", "ignoreCompletelyDescriptionText": "(ngăn chặn bộ điều khiển ảnh hưởng tới trò chơi hay menus)", - "ignoreCompletelyText": "Bỏ qua toàn bộ", + "ignoreCompletelyText": "Bỏ qua Toàn bộ", "ignoredButton1Text": "Bỏ qua Nút 1", "ignoredButton2Text": "Bỏ qua Nút 2", "ignoredButton3Text": "Bỏ qua Nút 3", "ignoredButton4Text": "Bỏ qua Nút 4", "ignoredButtonDescriptionText": "(dùng để ngăn nút 'home' hoặc 'sync' ảnh hưởng đến giao diện)", - "pressAnyAnalogTriggerText": "Nhấn bất kì nút trigger", - "pressAnyButtonOrDpadText": "Nhấn bất kì nút hay dpad nào...", + "pressAnyAnalogTriggerText": "Nhấn nút vật lý bất kỳ...", + "pressAnyButtonOrDpadText": "Nhấn nút hoặc 4 nút điều khiển bất kỳ...", "pressAnyButtonText": "Nhấn nút bất kỳ...", - "pressLeftRightText": "Nhấn nút trái hay phải...", - "pressUpDownText": "Nhấn nut lên hoặc xuống...", + "pressLeftRightText": "Nhấn trái hoặc phải...", + "pressUpDownText": "Nhấn lên hoặc xuống...", "runButton1Text": "Bật nút 1", "runButton2Text": "Bật nút 2", "runTrigger1Text": "Bật nút Trigger 1", "runTrigger2Text": "Bật nút Trigger 2", "runTriggerDescriptionText": "(nút Triggers có thể chạy với tốc độ khác nhau)", - "secondHalfText": "Sử dụng cái này để cấu hình nửa thứ hai\ncủa thiết bị 2 bộ điều khiển trong 1\nhiển thị như một bộ điều khiển duy nhất.", + "secondHalfText": "Sử dụng để cấu hình \nnửa thứ hai của 1 thiết bị \ncó 2 bộ điều khiển.", "secondaryEnableText": "Kích hoạt", "secondaryText": "Bộ điều khiển thứ hai", - "startButtonActivatesDefaultDescriptionText": "(tắt cái này đi nếu nút bắt đầu của bạn có nhiều nút 'menu' hơn)", - "startButtonActivatesDefaultText": "Nút bắt đầu kích hoạt widget mặc định", - "titleText": "Thiết lập điều khiển", - "twoInOneSetupText": "Thiết lập cần điều khiển 2-trong-1", - "uiOnlyDescriptionText": "(ngăn bộ điều khiển này thực sự tham gia một trò chơi)", - "uiOnlyText": "Giới hạn sử dụng Menu", - "unassignedButtonsRunText": "Tất cả các nút chưa được gắn Chạy", + "startButtonActivatesDefaultDescriptionText": "(tắt đi nếu nút bắt đầu của bạn có chức năng như nút 'menu')", + "startButtonActivatesDefaultText": "Nút bắt đầu Kích hoạt Widget Mặc định", + "titleText": "Thiết lập Điều khiển", + "twoInOneSetupText": "Thiết lập Cần điều khiển 2-trong-1", + "uiOnlyDescriptionText": "(ngăn bộ điều khiển này tham gia trò chơi)", + "uiOnlyText": "Giới hạn cho Sử dụng điều khiển màn hình", + "unassignedButtonsRunText": "Nút chưa được gán sẽ là nút Chạy", "unsetText": "", "vrReorientButtonText": "Nút định hướng VR" }, "configKeyboardWindow": { "configuringText": "Cấu hình ${DEVICE}", - "keyboard2NoteText": "Lưu ý: hầu hết các bàn phím chỉ có thể đăng ký một vài phím bấm tại\nmột lần, vì vậy có một trình phát bàn phím thứ hai có thể hoạt động tốt hơn\nnếu có một bàn phím riêng kèm theo để họ sử dụng.\nLưu ý rằng bạn vẫn sẽ cần gán các khóa duy nhất cho\nHai người chơi ngay cả trong trường hợp đó." + "keyboard2NoteText": "Lưu ý: hầu hết các bàn phím chỉ có thể nhận một vài phím trong \nmột lần, vì vậy người chơi bàn phím thứ hai nên có một bàn phím riêng \nsẽ mang lại trải nghiệm sử dụng tốt hơn.\nLưu ý rằng bạn vẫn sẽ cần gán nút khác nhau cho\nhai bàn phím." }, "configTouchscreenWindow": { - "actionControlScaleText": "Độ lớn phím hành động", - "actionsText": "Các hành động", - "buttonsText": "các nút", - "dragControlsText": "< di chuyển phím điều khiển để thay đổi vi trí chúng>", - "joystickText": "Phím xoay", - "movementControlScaleText": "Độ lớn phím di chuyển", + "actionControlScaleText": "Độ lớn Các nút Hành động", + "actionsText": "Hành động", + "buttonsText": "nút", + "dragControlsText": "< di chuyển phím điều khiển để thay đổi vi trí >", + "joystickText": "phím xoay", + "movementControlScaleText": "Độ lớn Phím Di chuyển", "movementText": "Di chuyển", - "resetText": "Chơi lại từ đầu", - "swipeControlsHiddenText": "Ân nút di chuyển", - "swipeInfoText": "Kiểu điều khiển 'Swipe'làm cho việc điều khiển dễ dàng hơn \nmà không cần nhìn phím", - "swipeText": "Trượt", - "titleText": "Điều chinh màn hình cảm ứng" + "resetText": "Mặc Định", + "swipeControlsHiddenText": "Ẩn Nút Di chuyển", + "swipeInfoText": "Điều khiển kiểu 'Lướt' cần thời gian làm quen nhưng \nsẽ làm cho việc chơi không nhìn phím dễ dàng hơn.", + "swipeText": "lướt", + "titleText": "Điều chinh Màn hình cảm ứng" }, - "configureDeviceInSystemSettingsText": "${DEVICE} có thể được định cấu hình trong ứng dụng Cài đặt hệ thống.", - "configureItNowText": "Điều chỉnh nó ngay ?", + "configureDeviceInSystemSettingsText": "${DEVICE} có thể được điều khiển trong ứng dụng Cài đặt hệ thống.", + "configureItNowText": "Điều chỉnh ngay?", "configureText": "Điều chỉnh", "connectMobileDevicesWindow": { "amazonText": "Cửa hàng Amazon", - "appStoreText": "Cửa hàng", - "bestResultsText": "Để chơi game tốt hơn bạn nên sử dụng wifi mạnh.\nBạn cũng có thể tắt các thiết bị đang sử dụng \nwifi khác để giảm lag,chơi game gần người chơi \nkhác trong vong phát sóng wifi và có thể kết nối wifi direct.", - "explanationText": "Để sử dụng điên thoại thông minh hoặc máy tính bảng để làm thiết bị điều khiển,\ncài đặt ứng dụng \"${REMOTE_APP_NAME}\" lên cấc thiết bị đó.\nTất cả các thiêt bị đều có thể kết nối với ${APP_NAME} game thông qua wifi và hoàn toàn miễn phí", - "forAndroidText": "Cho Adndroid:", + "appStoreText": "App Store", + "bestResultsText": "Để cho kết quả tốt nhất bạn nên sử dụng Ưifi với độ trễ thấp.\nBạn có thể giảm độ trễ bằng cách tắt các thiết bị sử dụng Wifi khác,\nchơi trò chơi gần bộ phát sóng Wifi, và bằng cách kết nối tới \nngười tổ chức trực tiếp qua Ethernet.", + "explanationText": "Để sử dụng điên thoại thông minh hoặc máy tính bảng để làm thiết bị điều khiển,\ncài đặt ứng dụng \"${REMOTE_APP_NAME}\" lên các thiết bị đó.\nKhông giới hạn thiết bị có thể kết nối với ${APP_NAME} thông qua Wifi, và nó hoàn toàn miễn phí!", + "forAndroidText": "cho Android:", "forIOSText": "cho iOS:", - "getItForText": "Tải ${REMOTE_APP_NAME} cho IOS và Android tại App Store \nhoặc cho Android tại cửa hàng Google Play hoặc Amazone Appstore", + "getItForText": "Tải ${REMOTE_APP_NAME} cho IOS tại Apple App Store \nhoặc cho Android tại cửa hàng Google Play hoặc Amazon Appstore", "googlePlayText": "Google play", - "titleText": "Sử dụng thiết bị di động như bộ điều khiển." + "titleText": "Sử dụng Thiết bị di động như Bộ điều khiển:" }, - "continuePurchaseText": "Tiếp tục cho ${PRICE}?", + "continuePurchaseText": "Tiếp tục với giá ${PRICE}?", "continueText": "Tiếp tục", - "controlsText": "Các bộ điều khiển", + "controlsText": "Điều khiển", "coopSelectWindow": { - "activenessAllTimeInfoText": "Nó không được áp dụng cho tất cả các xếp hạng", - "activenessInfoText": "Những người chơi cùng sẽ tăng khi \nbạn chơi hoặc giảm khi bạn nghỉ.", + "activenessAllTimeInfoText": "Điều này không áp dụng cho bảng xếp hạng toàn thời gian.", + "activenessInfoText": "Hệ số này sẽ tăng vào những ngày bạn chơi \nvà giảm vào những ngày bạn không hoạt động.", "activityText": "Hoạt động", - "campaignText": "Đi cảnh", - "challengesInfoText": "Nhận giải thưởng khi hoàn thành xong các minigames.\n\nPhần thưởng và độ khó tăng \nmỗi khi hoàn thành thử thách và \ngiảm xuống khi thử thách đó bị hết hạn hoặc hủy bỏ", + "campaignText": "Chiến dịch", + "challengesInfoText": "Nhận giải thưởng khi hoàn thành các Minigames.\n\nPhần thưởng và độ khó tăng lên\nmỗi khi hoàn thành thử thách và \ngiảm xuống khi thử thách đó hết hạn hoặc bị hủy bỏ.", "challengesText": "Thử thách", - "currentBestText": "Cao nhất hiện tại", - "customText": "Tùy chỉnh", - "entryFeeText": "Mục", - "forfeitConfirmText": "Thím muốn Hủy bỏ thử thách này ?", - "forfeitNotAllowedYetText": "Thím chưa hủy bỏ đc cái thử thách này đâu.", + "currentBestText": "Cao nhất Hiện tại", + "customText": "Thêm", + "entryFeeText": "Phí tham gia", + "forfeitConfirmText": "Bạn muốn hủy bỏ thử thách này?", + "forfeitNotAllowedYetText": "Bạn chưa thể hủy bỏ thử thách này.", "forfeitText": "Hủy bỏ", - "multipliersText": "Người chơi khác", - "nextChallengeText": "Thử thách tiếp", - "nextPlayText": "Lần chơi tiếp theo", - "ofTotalTimeText": "của ${TOTAL}", - "playNowText": "Chơi bây giờ", + "multipliersText": "Hệ số", + "nextChallengeText": "Thử thách tiếp theo", + "nextPlayText": "Lần chơi Tiếp theo", + "ofTotalTimeText": "trên ${TOTAL}", + "playNowText": "Chơi Ngay", "pointsText": "Điểm", - "powerRankingFinishedSeasonUnrankedText": "(Hoàn thành mùa không đánh giá)", - "powerRankingNotInTopText": "(không ở top ${NUMBER})", - "powerRankingPointsEqualsText": "= ${NUMBER} Điểm", - "powerRankingPointsMultText": "(x ${NUMBER} Điểm)", + "powerRankingFinishedSeasonUnrankedText": "(không có hạng)", + "powerRankingNotInTopText": "(không trong top ${NUMBER})", + "powerRankingPointsEqualsText": "= ${NUMBER} điểm", + "powerRankingPointsMultText": "(x ${NUMBER} điểm)", "powerRankingPointsText": "${NUMBER} Điểm", - "powerRankingPointsToRankedText": "(${CURRENT} của ${REMAINING} Điểm)", - "powerRankingText": "Xếp hạng sức mạnh", - "prizesText": "Thưởng", - "proMultInfoText": "Người chơi với ${PRO} nâng cấp\nnhận thêm ${PERCENT}% điểm", + "powerRankingPointsToRankedText": "(${CURRENT} trên ${REMAINING} điểm)", + "powerRankingText": "Xếp Hạng", + "prizesText": "Phần Thưởng", + "proMultInfoText": "Người chơi với ${PRO} sẽ\nnhận thêm ${PERCENT}%.", "seeMoreText": "Thêm...", - "skipWaitText": "Bỏ qua việc chờ đợi", - "timeRemainingText": "Thời gian kết thúc", - "toRankedText": "Xêp hạng", + "skipWaitText": "Bỏ qua Thời gian chờ", + "timeRemainingText": "Thời gian Còn lại", + "toRankedText": "Để vào Xếp hạng", "totalText": "tổng cộng", - "tournamentInfoText": "Hoàn thành điểm cao để cùng thi\nđấu với người chơi khác cùng giải.\n\nGiải thưởng được trao cho những người\ncó điểm cao nhất khi giải đấu kết thúc.", - "welcome1Text": "Chào mừng đến ${LEAGUE}.Bạn có thể nâng cao hạng giải đấu của bạn \nbằng cách đánh giá,hoàn thành các thành tựu và giành các cúp ở \nphần chơi hướng dẫn.", - "welcome2Text": "Bạn có thể kiếm vé từ các hoạt động giống nhau.\nVé có thể sử dụng để mở khóa nhân vật,màn chơi mới \nvà mini games các hướng dẫn mới và nhiều cái khác", - "yourPowerRankingText": "Xếp hạng sức mạnh của bạn" + "tournamentInfoText": "Thi đấu với người chơi \nkhác trong cùng giải đấu với bạn.\n\nGiải thưởng sẽ được trao cho những người chơi \ncó điểm cao nhất khi giải đấu kết thúc.", + "welcome1Text": "Chào mừng đến ${LEAGUE}. Bạn có thể nâng cao hạng giải đấu của bạn \nbằng cách kiếm điểm đánh giá, hoàn thành thành tựu và giành cúp ở \ncác giải đấu.", + "welcome2Text": "Bạn cũng có thể kiếm vé từ các hoạt động giống nhau.\nVé có thể sử dụng để mở khóa nhân vật mới, màn chơi mới \nvà mini games, tham gia các giải đấu và nhiều hơn nữa.", + "yourPowerRankingText": "Xếp hạng của bạn:" }, - "copyConfirmText": "sao chép vào clipboard", - "copyOfText": "${NAME} copy", + "copyConfirmText": "Đã sao chép.", + "copyOfText": "Bản sao của ${NAME}", "copyText": "Sao chép", - "createEditPlayerText": "", + "createEditPlayerText": "", "createText": "Tạo", "creditsWindow": { - "additionalAudioArtIdeasText": "Thêm vào âm thanh,hình ảnh mới và ý kiến bởi ${NAME}", - "additionalMusicFromText": "Thêm âm nhạc từ ${NAME}", - "allMyFamilyText": "Người thân và bạn bè tôi đã thử nghiệm", - "codingGraphicsAudioText": "Mã hóa,đồ họa và âm thanh bởi ${NAME}", - "languageTranslationsText": "Phiên dịch:", + "additionalAudioArtIdeasText": "Âm thanh khác, Bản vẽ ban đầu, và Ý tưởng bởi ${NAME}", + "additionalMusicFromText": "Âm nhạc khác từ ${NAME}", + "allMyFamilyText": "Những người thân và bạn bè đã giúp chơi thử trò chơi", + "codingGraphicsAudioText": "Code, Đồ họa và Âm thanh bởi ${NAME}", + "languageTranslationsText": "Phiên dịch Ngôn ngữ:", "legalText": "Pháp lý:", - "publicDomainMusicViaText": "Nhạc của nhóm cộng đồng qua ${NAME}", + "publicDomainMusicViaText": "Nhạc của cộng đồng qua ${NAME}", "softwareBasedOnText": "Phần mềm này được phát triển trong một dự án của ${NAME}", - "songCreditText": "${TITLE} Phát triển bởi ${PERFORMER}\nTác giả ${COMPOSER}, Sắp xếp bởi ${ARRANGER},Phát hành bởi ${PUBLISHER},\nNguồn ${SOURCE}", - "soundAndMusicText": "Âm thanh và nhạc:", + "songCreditText": "${TITLE} Được trình bày bởi ${PERFORMER}\nSoạn nhạc bởi ${COMPOSER}, Sắp xếp bởi ${ARRANGER}, Phát hành bởi ${PUBLISHER},\nNguồn ${SOURCE}", + "soundAndMusicText": "Âm thanh và Nhạc:", "soundsText": "Âm thanh (${SOURCE}):", - "specialThanksText": "Dành lời cảm ơn đặc biệt cho :", + "specialThanksText": "Cảm ơn tới:", "thanksEspeciallyToText": "Vô cùng cảm ơn đến ${NAME}", "titleText": "Nhóm Sáng Tạo ${APP_NAME}", - "whoeverInventedCoffeeText": "Ai đó tạo ra cà phê" + "whoeverInventedCoffeeText": "Người tạo ra cà phê" }, "currentStandingText": "Vị trí hiện tại của bạn là #${RANK}", "customizeText": "Tùy chinh...", @@ -537,18 +551,18 @@ "deathsText": "Chết", "debugText": "Sửa lỗi", "debugWindow": { - "reloadBenchmarkBestResultsText": "Lưu ý:khuyến nghị bật Cài Đặt->Đồ Họa->Khung Cảnh thành cao khi thử nghiệm", - "runCPUBenchmarkText": "Chấm điểm CPU benchmark", - "runGPUBenchmarkText": "Chấm điểm đồ họa", - "runMediaReloadBenchmarkText": "Chạy lại nội dung chuẩn", - "runStressTestText": "Chạy thử nghiệm", - "stressTestPlayerCountText": "Đếm người chơi", - "stressTestPlaylistDescriptionText": "Danh sách thử độ trễ", - "stressTestPlaylistNameText": "Danh sách tên", - "stressTestPlaylistTypeText": "Kiểu danh sách", + "reloadBenchmarkBestResultsText": "Lưu ý: Bạn nên vào Cài Đặt->Đồ Họa->Kết Cấu thành 'Cao' khi thử nghiệm.", + "runCPUBenchmarkText": "Chạy Kiểm tra CPU", + "runGPUBenchmarkText": "Chạy Kiểm tra GPU", + "runMediaReloadBenchmarkText": "Chạy Kiểm tra Tải đồ họa", + "runStressTestText": "Chạy Kiểm tra độ nặng", + "stressTestPlayerCountText": "Số lượng Người chơi", + "stressTestPlaylistDescriptionText": "Danh sách Thử Độ nặng", + "stressTestPlaylistNameText": "Tên danh sách", + "stressTestPlaylistTypeText": "Loại danh sách", "stressTestRoundDurationText": "Thời hạn Vòng", - "stressTestTitleText": "Thử độ trễ", - "titleText": "Chấm điểm và đo độ trễ", + "stressTestTitleText": "Kiểm tra độ nặng", + "titleText": "Kiểm tra và đo độ nặng", "totalReloadTimeText": "Tổng cộng thời gian lặp lại :${TIME} (xem danh sách để biết chi tiết)" }, "defaultGameListNameText": "Danh Sách Mặc Định ${PLAYMODE}", @@ -557,6 +571,7 @@ "demoText": "Giới thiệu", "denyText": "Từ chối", "deprecatedText": "Không thể dùng", + "descriptionText": "Mô tả", "desktopResText": "Độ phân giải", "deviceAccountUpgradeText": "Cảnh báo:\nBạn đã đăng nhập với tài khoản thiết bị (${NAME}).\nTài khoản thiết bị sẽ bị xóa trong những cập nhật tương lai.\nNâng cấp lên tài khoản V2 nếu bạn muốn giữ tiến trình.", "difficultyEasyText": "Dễ", @@ -568,6 +583,7 @@ "disableXInputDescriptionText": "Cho phép trên 4 thiết bị điều khiển nhưng nó có thể hoạt động không tốt", "disableXInputText": "Ngắt Kết NỐi XInput", "disabledText": "Vô hiệu hóa", + "discardText": "Hủy", "discordFriendsText": "Bạn muốn tìm người mới để chơi cùng?\nTham gia Discord của chúng tôi và tìm những người bạn mới!", "discordJoinText": "Tham gia Disscord", "doneText": "Xong", @@ -651,6 +667,8 @@ "errorText": "Lỗi", "errorUnknownText": "Không rõ lỗi", "exitGameText": "Thoát ${APP_NAME}?", + "expiredAgoText": "Đã hết hạn ${T} trước", + "expiresInText": "Hết hạn sau ${T}", "exportSuccessText": "'${NAME}' Đã xuất", "externalStorageText": "Bộ nhớ ngoài", "failText": "Thất bại", @@ -712,6 +730,7 @@ "copyCodeConfirmText": "Mã đã sao chép vào bộ nhớ", "copyCodeText": "Sao chép mã", "dedicatedServerInfoText": "Để có kết quả tốt nhất, hãy thiết lập một máy chủ chuyên dụng.Vào bombsquadgame.com/server để tìm hiểu cách.", + "descriptionShortText": "Sử dụng cửa sổ thu thập để thành lập tổ đội.", "disconnectClientsText": "Điều này sẽ ngắt kết nối (các) người chơi ${COUNT}\n trong tổ đội của bạn.Bạn có chắc không?", "earnTicketsForRecommendingAmountText": "Bạn bè sẽ nhận được vé ${COUNT} nếu họ thử trò chơi\n (và bạn sẽ nhận được ${YOU_COUNT} cho mỗi người làm)", "earnTicketsForRecommendingText": "Chia sẻ trò chơi này với bạn bè\nđể có thêm vé miễn phí...", @@ -724,10 +743,10 @@ "friendHasSentPromoCodeText": "${COUNT} ${APP_NAME} vé từ ${NAME}", "friendPromoCodeAwardText": "Bạn sẽ nhận được ${COUNT} vé mỗi lần nó được sử dụng", "friendPromoCodeExpireText": "Mã code sẽ hết hạn trong ${EXPIRE_HOURS} và chỉ hoạt động với người chơi mới.", - "friendPromoCodeInstructionsText": "Để dùng nó,mở ${APP_NAME} và tới \"Cài đặt ->Nâng cao->Nhập mã\".\nXem bombsquadgame.com cho đường dẫn tải xuống cho tất cả hệ điều hành hỗ trợ.", + "friendPromoCodeInstructionsText": "Để dùng nó, mở ${APP_NAME} và tới \"Cài đặt ->Nâng cao->Gửi Thông tin\".\nTruy cập bombsquadgame.com cho đường dẫn tải xuống cho tất cả hệ điều hành hỗ trợ.", "friendPromoCodeRedeemLongText": "Nó có thể được đổi lấy ${COUNT} vé miễn phí cho tối đa ${MAX_USES} người", "friendPromoCodeRedeemShortText": "Nó có thể được đổi lấy vé ${COUNT} trong trò chơi.", - "friendPromoCodeWhereToEnterText": "(trong \"Cài đặt-> Nâng cao-> Nhập mã\")", + "friendPromoCodeWhereToEnterText": "(trong \"Cài đặt-> Nâng cao-> Gửi Thông tin\")", "getFriendInviteCodeText": "Nhận mã mời bạn bè", "googlePlayDescriptionText": "Mời bạn bè trên google play đến party của bạn:", "googlePlayInviteText": "Mời", @@ -823,6 +842,12 @@ "youHaveShortText": "Bạn có ${COUNT}", "youHaveText": "Bạn có ${COUNT} vé" }, + "goldPass": { + "desc1InfTokensText": "Mã thông báo vô hạn.", + "desc2NoAdsText": "Không có quảng cáo.", + "desc3ForeverText": "Mãi mãi.", + "goldPassText": "Thẻ Vàng" + }, "googleMultiplayerDiscontinuedText": "Xin lỗi, dịch vụ Google nhiều người chơi không còn nữa.\nTôi đang cố gắng thay thế nhanh nhất có thể.\nTrong lúc đó, vui lòng thử cách kết nối khác.\n-Eric", "googlePlayPurchasesNotAvailableText": "Các giao dịch mua trên Google Play không khả dụng.\nBạn có thể cần cập nhật ứng dụng cửa hàng của mình.", "googlePlayServicesNotAvailableText": "Dịch vụ của Google Play không có sẵn.\nMột số chức năng ứng dụng sẽ bụ vô hiệu hóa.", @@ -897,6 +922,7 @@ "importText": "Xuất", "importingText": "Đang nhập...", "inGameClippedNameText": "trong game sẽ là \n\"${NAME}\"", + "inboxText": "Hộp Thư", "installDiskSpaceErrorText": "Lỗi: Không thể hoàn thành tải xuống.\nBạn có thể hết dung lượng trên thiết bị của bạn.\nDọn một số chỗ và thử lại.", "internal": { "arrowsToExitListText": "nhấn ${LEFT} hoặc ${RIGHT} để rời khỏi danh sách", @@ -951,12 +977,14 @@ "timeOutText": "(hết giờ trong ${TIME} giây)", "touchScreenJoinWarningText": "Bạn đã gia nhập với màn hình cảm ứng.\nNếu đây là lỗi, nhấn 'Menu-> Rời trò chơi '.", "touchScreenText": "Màn hình Cảm ứng", + "unableToCompleteTryAgainText": "Không thể hoàn thành bây giờ.\nVui lòng thử lại sau.", "unableToResolveHostText": "Lỗi: không thể giải quyết máy chủ.", "unavailableNoConnectionText": "Hiện tại không có sẵn (không có kết nối mạng?)", "vrOrientationResetCardboardText": "Sử dụng cái này để cài lại VR định hướng.\nĐể chơi trò chơi bạn sẽ cần một cần điều khiển bên ngoài.", "vrOrientationResetText": "Cài lại định hướng VR.", "willTimeOutText": "(sẽ hết giờ nếu không hoạt động)" }, + "inventoryText": "Túi Đồ", "jumpBoldText": "NHẢY", "jumpText": "Nhảy", "keepText": "Giữ", @@ -1003,8 +1031,11 @@ "seasonEndsMinutesText": "Mùa kết thúc ${NUMBER} phúc trước.", "seasonText": "Mùa ${NUMBER}", "tournamentLeagueText": "Bạn phải đạt giải đấu ${NAME} để tham gia giải đấu này.", - "trophyCountsResetText": "Số lượng cúp sẽ thiết lập lại vào mùa giải tới." + "trophyCountsResetText": "Số lượng cúp sẽ thiết lập lại vào mùa giải tới.", + "upToDateBonusDescriptionText": "Người chơi chạy phiên bản gần đây của trò chơi\nđược nhận thêm ${PERCENT}%.", + "upToDateBonusText": "Thưởng Phiên bản mới nhất" }, + "learnMoreText": "Tìm hiểu thêm", "levelBestScoresText": "Điểm số tốt nhất trên ${LEVEL}", "levelBestTimesText": "Thời gian tốt nhất trên ${LEVEL}", "levelIsLockedText": "${LEVEL} đã bị khóa.", @@ -1048,6 +1079,8 @@ "modeArcadeText": "Chế độ giải trí", "modeClassicText": "Chế độ cổ điển", "modeDemoText": "Chế độ thử nghiệm", + "moreSoonText": "Sắp có mặt...", + "mostDestroyedPlayerText": "Người chơi bị đánh bại nhiều nhất", "mostValuablePlayerText": "Người chơi đáng giá nhất", "mostViolatedPlayerText": "Người chơi bị chết nhiều nhất", "mostViolentPlayerText": "Người chơi bạo lực nhất", @@ -1064,6 +1097,7 @@ "nameSuicideText": "${NAME} tự tử.", "nameText": "Tên", "nativeText": "Tự nhiên", + "newExclaimText": "Mới!", "newPersonalBestText": "Mới tốt nhất cá nhân!", "newTestBuildAvailableText": "Một bản dựng thử nghiệm mới hơn có sẵn! (${VERSION} xây dựng ${BUILD}).\nNhận nó tại ${ADDRESS}", "newText": "Mới", @@ -1074,6 +1108,7 @@ "noContinuesText": "(không tiếp tục)", "noExternalStorageErrorText": "Không tìm thấy bộ nhớ ngoài trên thiết bị này", "noGameCircleText": "Lỗi: không đăng nhập vào GameCircle", + "noMessagesText": "Không có Tin nhắn", "noPluginsInstalledText": "Không có plugin nào được cài đặt", "noScoresYetText": "Chưa có điểm nào.", "noServersFoundText": "Không tìm thấy máy chủ nào.", @@ -1082,6 +1117,7 @@ "noValidMapsErrorText": "Không tìm thấy bản đồ hợp lệ cho loại trò chơi này.", "notEnoughPlayersRemainingText": "Không đủ người chơi còn lại; thoát ra và bắt đầu một trò chơi mới", "notEnoughPlayersText": "Bạn cần ít nhất ${COUNT} người chơi để bắt đầu trò chơi này!", + "notEnoughTicketsText": "Không đủ vé!", "notNowText": "Không phải bây giờ", "notSignedInErrorText": "Bạn phải đăng nhập để làm điều này.", "notSignedInGooglePlayErrorText": "Bạn phải đăng nhập bằng Google Play để làm điều này.", @@ -1094,6 +1130,9 @@ "onText": "Bật", "oneMomentText": "Một lúc...", "onslaughtRespawnText": "${PLAYER} sẽ hồi sinh trong ải ${WAVE}", + "openMeText": "Mở tôi ra!", + "openNowText": "Mở Ngay", + "openText": "Mở", "orText": "${A} hoặc ${B}", "otherText": "Khác ...", "outOfText": "(#${RANK} ra khỏi ${ALL})", @@ -1179,10 +1218,12 @@ "punchText": "Đấm", "purchaseForText": "Mua với ${PRICE}", "purchaseGameText": "Mua trò chơi", + "purchaseNeverAvailableText": "Rất tiếc, không có giao dịch mua nào khả dụng trên bản dựng này.\nHãy thử đăng nhập vào tài khoản của bạn trên nền tảng khác và thực hiện giao dịch mua từ đó.", + "purchaseNotAvailableText": "Giao dịch mua này không khả dụng.", "purchasingText": "Đang mua...", "quitGameText": "Rời ${APP_NAME}?", "quittingIn5SecondsText": "Rời đi trong 5 giây...", - "randomPlayerNamesText": "Tên_Mặcđịnh", + "randomPlayerNamesText": "Việt Nam, Anh, Dung, Hanh, Hoa, Hong, Khanh, Lan, Liem, Nhung, Duy, Xuan", "randomText": "Ngẫu nhiên", "rankText": "Xếp hạng", "ratingText": "Đánh giá", @@ -1220,6 +1261,7 @@ "version_mismatch": "Không trùng phiên bản.\nChắc chắn rằng Bombsquad và\nBombsquad Remote là phiên bản mới nhất và thử lại." }, "removeInGameAdsText": "Mở khóa \"${PRO}\" trong cửa hàng để loại bỏ quảng cáo.", + "removeInGameAdsTokenPurchaseText": "KHUYẾN MÃI GIỚI HẠN: Mua gói xu BẤT KỲ để loại bỏ quảng cáo trong trò chơi.", "renameText": "Đặt lại tên", "replayEndText": "Kết thúc phát lại", "replayNameDefaultText": "Xem lại trò chơi vừa rồi", @@ -1253,6 +1295,7 @@ }, "scoreWasText": "(Cao nhất ${COUNT})", "selectText": "Chọn", + "sendInfoDescriptionText": "Gửi thông tin trạng thái tài khoản và ứng dụng cho nhà phát triển.\nBao gồm tên của bạn và lý do cho việc gửi.", "seriesWinLine1PlayerText": "ĐÃ THẮNG", "seriesWinLine1TeamText": "ĐÃ THẮNG", "seriesWinLine1Text": "ĐÃ THẮNG", @@ -1267,27 +1310,32 @@ "titleText": "Cài đặt" }, "settingsWindowAdvanced": { - "alwaysUseInternalKeyboardDescriptionText": "(một bàn phím trên màn hình đơn giản, thân thiện với tay cầm cho nhập văn bản)", - "alwaysUseInternalKeyboardText": "Luôn sử dụng bàn phím nội bộ", + "alwaysUseInternalKeyboardDescriptionText": "(một bàn phím trên màn hình đơn giản, thân thiện với bộ điều khiển để chỉnh sửa văn bản)", + "alwaysUseInternalKeyboardText": "Luôn sử dụng bàn phím của cục bộ.", "benchmarksText": "Điểm chuẩn & Kiểm tra độ trễ", - "disableCameraGyroscopeMotionText": "Vô hiệu hóa Camera Gyroscope Motion", - "disableCameraShakeText": "Vô hiệu hóa Camera Shake", + "devToolsText": "Công cụ cho Nhà phát triển", + "disableCameraGyroscopeMotionText": "Vô hiệu hoá chuyển động con quay hồi chuyển", + "disableCameraShakeText": "Vô hiệu hoá lắc màn hình", "disableThisNotice": "(bạn có thể tắt thông báo này trong cài đặt nâng cao)", "enablePackageModsDescriptionText": "(thêm tối đa chỗ mod nhưng tắt chơi qua mạng)", "enablePackageModsText": "Bật Gói Mod Cục bộ", "enterPromoCodeText": "Nhập mã", "forTestingText": "Ghi chú: những giá trị này chỉ dành cho kiểm tra và sẽ bị mất khi rời khỏi ứng dụng.", "helpTranslateText": "Cộng đồng dịch ${APP_NAME} là một cộng đồng được hỗ trợ.\nNếu bạn muốn góp phần hoặc sửa bản dịch,\nđi theo đường dẫn bên dưới.", - "kickIdlePlayersText": "Đuổi người chơi không hoạt động", + "insecureConnectionsDescriptionText": "không khuyến khích,nhưng có thể cho phép chơi online từ các quốc gia hoặc mạng bị hạn chế", + "insecureConnectionsText": "Sử dụng kết nối mạng không bảo mật", + "kickIdlePlayersText": "Đuổi người chơi AFK", "kidFriendlyModeText": "Chế độ thân thiện với trẻ em (giảm bạo lực , vân vân)", - "languageText": "Ngôn ngữ", + "languageText": "Ngôn ngữ vietnamese", "moddingGuideText": "Hướng dẫn mod", "moddingToolsText": "Công cụ sửa đổi", "mustRestartText": "Bạn phải khởi động lại trò chơi để áp dụng cài đặt", "netTestingText": "Kiểm tra mạng", "resetText": "Cài lại", + "sendInfoText": "Gửi thông tin", "showBombTrajectoriesText": "Hiển thị quỹ đạo của bom", "showDemosWhenIdleText": "Hiện bản demo khi không hoạt động", + "showDeprecatedLoginTypesText": "Hiển thị các loại đăng nhập đã bay màu", "showDevConsoleButtonText": "Hiện nút Bảng điều khiển cho nhà phát triển", "showInGamePingText": "Hiển thị Ping trong Game", "showPlayerNamesText": "Hiển thị tên người chơi", @@ -1297,8 +1345,8 @@ "translationFetchErrorText": "trạng thái bản dịch không có sẵn", "translationFetchingStatusText": "kiểm tra trạng thái bản dịch...", "translationInformMe": "Thông báo tôi khi ngôn ngữ cần được nâng cấp", - "translationNoUpdateNeededText": "Ngôn ngữ hiện tại đã được nâng cấp; quẩy đi!", - "translationUpdateNeededText": "** ngôn ngữ hiện tại cần được nâng cấp!! **", + "translationNoUpdateNeededText": "Ngôn ngữ hiện tại đã được nâng cấp; quẩy lên!", + "translationUpdateNeededText": "** Ngôn ngữ hiện tại cần được cập nhật!! **", "vrTestingText": "Thử nghiệm VR" }, "shareText": "Chia sẻ", @@ -1336,6 +1384,7 @@ }, "spaceKeyText": "dấu cách", "statsText": "Thống kê", + "stopRemindingMeText": "Đừng nhắc lại tôi", "storagePermissionAccessText": "Yêu cầu truy cập lưu trữ", "store": { "alreadyOwnText": "Bạn đã có ${NAME}!", @@ -1394,6 +1443,7 @@ "testBuildValidatedText": "Kiểm tra bản dựng được xác thực; Tận hưởng!", "thankYouText": "Cảm ơn vì sự hỗ trợ của bạn! Hãy tận hưởng trò chơi!!", "threeKillText": "Tam Sát!!", + "ticketsDescriptionText": "Vé có thể dùng để mở khóa nhân vật, bản đồ, \nmini-game, và nhiều thứ khác trong cửa hàng.\n\nVé có thể kiếm được từ rương nhận được từ \nchiến dịch, giải đấu, và thành tựu.", "timeBonusText": "Thưởng thời gian", "timeElapsedText": "Thời gian còn lại", "timeExpiredText": "Hết giờ", @@ -1404,10 +1454,24 @@ "tipText": "Gợi ý", "titleText": "Bombsquad", "titleVRText": "Bombsquad Thực tế ảo", + "tokens": { + "getTokensText": "Nhận Token", + "notEnoughTokensText": "Không đủ token!", + "numTokensText": "${COUNT} Mã thông báo", + "openNowDescriptionText": "Bạn có đủ token để\nmở ngay bây giờ - bạn không\ncần phải chờ đợi.", + "shinyNewCurrencyText": "Tiền tệ mới sáng bóng của BombSquad.", + "tokenPack1Text": "Gói Token Nhỏ", + "tokenPack2Text": "Gói Token trung bình", + "tokenPack3Text": "Gói Token Lớn", + "tokenPack4Text": "Gói Mã thông báo Jumbo", + "tokensDescriptionText": "Xu dùng để tăng tốc độ mở rương và \nnhiều chức năng trò chơi và tài khoản khác. \n\nBạn có thể nhận được Xu trong trò chơi hoặc \nmua theo gói. Hoặc bạn sẽ nhận được vô hạn xu khi mua Gold Pass và \nkhông bao giờ quan tâm tới chúng thêm lần nào nữa.", + "youHaveGoldPassText": "Bạn có Thẻ Vàng.\nTất cả các giao dịch mua token đều miễn phí.\nHãy tận hưởng!" + }, "topFriendsText": "Bạn bè đứng đầu", "tournamentCheckingStateText": "Đang kiểm tra trạng thái giải đấu; vui lòng chờ...", "tournamentEndedText": "Giải đấu này đã kết thúc. Giải đấu mới sẽ bắt đầu sớm.", "tournamentEntryText": "Lệ phí", + "tournamentFinalStandingsText": "Thứ hạng Cuối cùng", "tournamentResultsRecentText": "Kết quả giải đấu gần đây", "tournamentStandingsText": "Bảng xếp hạng giải đấu", "tournamentText": "Giải đấu", @@ -1463,6 +1527,18 @@ "Uber Onslaught": "Tử chiến (Bậc thầy)", "Uber Runaround": "Thủ thành (Bậc thầy)" }, + "displayItemNames": { + "${C} Tickets": "${C} Vé", + "${C} Tokens": "${C} Xu", + "Chest": "Rương", + "L1 Chest": "Rương cấp 1", + "L2 Chest": "Rương cấp 2", + "L3 Chest": "Rương cấp 3", + "L4 Chest": "Rương cấp 4", + "L5 Chest": "Rương cấp 5", + "L6 Chest": "Rương cấp 6", + "Unknown Chest": "Rương ???" + }, "gameDescriptions": { "Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Làm người được chọn trong thời gian nhất định để chiến thắng.\nGiết người được chọn để trở thành họ.", "Bomb as many targets as you can.": "Dội bom nhiều mục tiêu nhất có thể.", @@ -1567,6 +1643,7 @@ "Korean": "Tiếng Hàn", "Malay": "Tiếng Mã Lai", "Persian": "Tiếng Ba Tư", + "PirateSpeak": "Tiếng Hải tặc", "Polish": "Tiếng Polish", "Portuguese": "Tiếng Bồ Đào Nha", "Romanian": "Tiếng Rumani", @@ -1638,6 +1715,7 @@ "Cheating detected; scores and prizes suspended for ${COUNT} days.": "Phát hiện gian lận; không được ghi điểm số và nhận giải thưởng trong ${COUNT} ngày.", "Could not establish a secure connection.": "Không thể thiết lập kết nối an toàn.", "Daily maximum reached.": "Đã đạt tối đa số lượng hàng ngày.", + "Daily sign-in reward": "Phần thưởng đăng nhập hàng ngày", "Entering tournament...": "Gia nhập giải đấu...", "Invalid code.": "Mã code không hợp lệ.", "Invalid payment; purchase canceled.": "Thành toán không hợp lệ, mua thất bại.", @@ -1647,11 +1725,14 @@ "Item unlocked!": "Vật phẩm đã mở khóa!", "LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "LIÊN KẾT TỪ CHỐI. ${ACCOUNT} chứa\ndữ liệu quan trọng mà TẤT CẢ ĐƯỢC.\nBạn có thể liên kết theo thứ tự ngược lại nếu bạn muốn\n(và mất dữ liệu của tài khoản NÀY thay thế)", "Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "Liên kết tài khoản ${ACCOUNT} với tài khoản này?\nTất cả dữ liệu tồn tại trên ${ACCOUNT} sẽ bị mất.\nKhông thể hủy. Bạn chắc chứ?", + "Longer streaks lead to better rewards.": "Chuỗi càng dài thì phần thưởng càng tốt.", "Max number of playlists reached.": "Đã đạt tối đa danh sách.", "Max number of profiles reached.": "Đã đạt tối đa số lượng hồ sơ.", "Maximum friend code rewards reached.": "Đã đạt tối đa thưởng từ mã code bạn bè.", "Message is too long.": "Tin nhắn quá dài.", + "New tournament result!": "Kết quả giải đấu!", "No servers are available. Please try again soon.": "Không có server có sẵn. Hãy thử lại sau.", + "No slots available. Free a slot and try again.": "Không còn ô trống. Giải phóng một ô và thử lại.", "Profile \"${NAME}\" upgraded successfully.": "Hồ sơ \"${NAME}\" nâng cấp thành công.", "Profile could not be upgraded.": "Hồ sơ không thể nâng cấp.", "Purchase successful!": "Mua thành công!", @@ -1661,7 +1742,9 @@ "Sorry, this code has already been used.": "Xin lỗi bạn, mã code này đã đc sử dụng", "Sorry, this code has expired.": "Xin lỗi, mã code này đã hết hạn.", "Sorry, this code only works for new accounts.": "Xin lỗi,mã code này chỉ dành cho người chơi mới.", + "Sorry, this has expired.": "Xin lỗi, vật phẩm đã hết hạn.", "Still searching for nearby servers; please try again soon.": "Vẫn đang tìm những server gần nhất; Hãy thử lại sau", + "Streak: ${NUM} days": "Chuỗi: ${NUM} ngày", "Temporarily unavailable; please try again later.": "Tạm thời không có; vui lòng thử lại sau.", "The tournament ended before you finished.": "Giải đấu đã kết thúc trước khi bạn hoàn thành.", "This account cannot be unlinked for ${NUM} days.": "Tài khoản này không thể ngừng liên kết trong ${NUM} ngày.", @@ -1672,19 +1755,28 @@ "Tournaments require ${VERSION} or newer": "Giải đấu yêu cầu phiên bản ${VERSION} hoặc mới hơn.", "Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "Ngừng liên kết ${ACCOUNT} từ tài khoản này? \nTất cả dữ liệu trên ${ACCOUNT} sẽ bị cài lại.\n(ngoại trừ thành tựu trong một số trường hợp)", "WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "Cảnh báo: Khiếu nại về hack đã được đưa ra về tài khoản của bạn.\nTài khoản phát hiện hack sẽ bị cấm chơi vĩnh viễn. Vui lòng chơi trung thực.", + "Wait reduced!": "Đã giảm thời gian!", + "Warning: This version of the game is limited to old account data; things may appear missing or out of date.\nPlease upgrade to a newer version of the game to see your latest account data.": "Cảnh báo: Phiên bản trò chơi này chỉ giới hạn ở dữ liệu tài khoản cũ; một số thứ có thể bị thiếu hoặc lỗi thời.\nVui lòng nâng cấp lên phiên bản trò chơi mới hơn để xem dữ liệu tài khoản mới nhất của bạn.", "Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "Bạn có muốn lên kết tài khoản thiết bị của bạn với cái này?\n\nTài khoản thiết bị là\n ${ACCOUNT1}\nTài khoản này là ${ACCOUNT2}", "You already own this!": "Bạn đã có cái này!", "You can join in ${COUNT} seconds.": "Bạn có thể tham gia trong ${COUNT} giây.", "You don't have enough tickets for this!": "Bạn không đủ vé để mua!", "You don't own that.": "Bạn không có cái đó.", "You got ${COUNT} tickets!": "Bạn đã nhận được ${COUNT} vé!", + "You got ${COUNT} tokens!": "Bạn nhận được ${COUNT} xu!", "You got a ${ITEM}!": "Bạn đã nhận được một ${ITEM}!", + "You got a chest!": "Bạn nhận được một rương!", + "You got an achievement reward!": "Bạn nhận được một phần thưởng từ thành tựu!", "You have been promoted to a new league; congratulations!": "Bạn đã được thăng hạng lên một giải đấu mới; xin chúc mừng!", + "You lost a chest! (All your chest slots were full)": "Bạn đã mất một rương! (Tất cả ô rương đã đầy)", + "You must update the app to view this.": "Vui lòng cập nhật trò chơi để xem.", "You must update to a newer version of the app to do this.": "Bạn phải nâng cấp lên phiên bản mới hơn của ứng dụng để làm điều này.", "You must update to the newest version of the game to do this.": "Bạn phải nâng cấp trò chơi lên phiên bản mới nhất để làm điều này.", "You must wait a few seconds before entering a new code.": "Bạn phải chờ một vài giây trước khi nhập một mã mới.", + "You placed #${RANK} in a tournament!": "Bạn đạt hạng #${RANK} trong giải đấu!", "You ranked #${RANK} in the last tournament. Thanks for playing!": "Bạn đứng thứ #${RANK} trong giải đấu vừa rồi. Cảm ơn vì đã tham gia!", "Your account was rejected. Are you signed in?": "Tài khoản của bạn đã bị từ chối. Bạn đã đăng nhập chưa?", + "Your ad views are not registering. Ad options will be limited for a while.": "Lượt xem quảng cáo của bạn không được ghi lại. Tùy chọn quảng cáo sẽ bị giới hạn trong một thời gian.", "Your copy of the game has been modified.\nPlease revert any changes and try again.": "Bản sao của trò chơi đã bị sửa đổi.\nVui lòng sửa lại bất kỳ thay đổi lại như cũ và thử lại.", "Your friend code was used by ${ACCOUNT}": "Mã của bạn bè của bạn đã được dùng bởi ${ACCOUNT}" }, @@ -1835,6 +1927,7 @@ "twoKillText": "Hai Mạng!", "uiScaleText": "Quy mô giao diện", "unavailableText": "Không Khả Dụng", + "unclaimedPrizesText": "Bạn có giải thưởng chưa nhận!", "unconfiguredControllerDetectedText": "Tay cầm không cấu hình được phát hiện:", "unlockThisInTheStoreText": "Nó phải được mở khóa trong cửa hàng.", "unlockThisProfilesText": "Để tạo nhiều hơn ${NUM} hồ sơ,bạn cần:", @@ -1852,6 +1945,7 @@ "usesExternalControllerText": "Trò chơi này sử dụng tay cầm bên ngoài cho đầu vào.", "usingItunesText": "Sử dụng Ứng dụng âm nhạc cho nhạc nền", "v2AccountLinkingInfoText": "Để đến tài khoản V2, sử dụng nút 'Thiết đặt tài khoản'.", + "v2AccountRequiredText": "Điều này yêu cầu tài khoản V2. Hãy nâng cấp tài khoản của bạn và thử lại.", "validatingTestBuildText": "Kiểm tra xác thực Xây dựng ...", "viaText": "Thông qua", "victoryText": "Chiến thắng!", @@ -1896,7 +1990,7 @@ }, "wiimoteSetupWindow": { "copyrightText": "Bản quyền của DarwiinRemote", - "listenText": "Lắng nghe", + "listenText": "Lắng nghe ", "macInstructionsText": "Hãy chắc chắn rằng Wii của bạn là tắt và Bluetooth được kích hoạt\ntrên máy Mac của bạn, sau đó nhấn 'Nghe'. Wiimote hỗ trợ có thể\nmột chút flaky, do đó, bạn có thể phải thử một vài lần\ntrước khi bạn nhận được một kết nối.\n\nBluetooth nên xử lý lên đến 7 thiết bị kết nối,\nmặc dù mileage của bạn có thể khác nhau.\n\nBombSquad hỗ trợ Wiimotes gốc, Nunchuk,\nvà bộ điều khiển cổ điển.\nCác mới Wii Remote Plus bây giờ hoạt động quá\nnhưng không phải với tập tin đính kèm", "thanksText": "Cảm ơn nhóm DarwiinRemote\nĐã làm thứ này có thật.", "titleText": "Thiết lập Wiimote" @@ -1918,5 +2012,6 @@ }, "yesAllowText": "Có, chấp nhận !", "yourBestScoresText": "Điểm kỉ lục của bạn", - "yourBestTimesText": "Thời gian kỉ lục của bạn" + "yourBestTimesText": "Thời gian kỉ lục của bạn", + "yourPrizeText": "Phần thưởng của bạn:" } \ No newline at end of file diff --git a/dist/ba_data/python-site-packages/certifi/__init__.py b/dist/ba_data/python-site-packages/certifi/__init__.py index 1c91f3e..177082e 100644 --- a/dist/ba_data/python-site-packages/certifi/__init__.py +++ b/dist/ba_data/python-site-packages/certifi/__init__.py @@ -1,4 +1,4 @@ from .core import contents, where __all__ = ["contents", "where"] -__version__ = "2024.02.02" +__version__ = "2025.01.31" diff --git a/dist/ba_data/python-site-packages/certifi/cacert.pem b/dist/ba_data/python-site-packages/certifi/cacert.pem index fac3c31..860f259 100644 --- a/dist/ba_data/python-site-packages/certifi/cacert.pem +++ b/dist/ba_data/python-site-packages/certifi/cacert.pem @@ -474,47 +474,6 @@ ZMEBnunKoGqYDs/YYPIvSbjkQuE4NRb0yG5P94FW6LqjviOvrv1vA+ACOzB2+htt Qc8Bsem4yWb02ybzOqR08kkkW8mw0FfB+j564ZfJ -----END CERTIFICATE----- -# Issuer: CN=SwissSign Silver CA - G2 O=SwissSign AG -# Subject: CN=SwissSign Silver CA - G2 O=SwissSign AG -# Label: "SwissSign Silver CA - G2" -# Serial: 5700383053117599563 -# MD5 Fingerprint: e0:06:a1:c9:7d:cf:c9:fc:0d:c0:56:75:96:d8:62:13 -# SHA1 Fingerprint: 9b:aa:e5:9f:56:ee:21:cb:43:5a:be:25:93:df:a7:f0:40:d1:1d:cb -# SHA256 Fingerprint: be:6c:4d:a2:bb:b9:ba:59:b6:f3:93:97:68:37:42:46:c3:c0:05:99:3f:a9:8f:02:0d:1d:ed:be:d4:8a:81:d5 ------BEGIN CERTIFICATE----- -MIIFvTCCA6WgAwIBAgIITxvUL1S7L0swDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UE -BhMCQ0gxFTATBgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWdu -IFNpbHZlciBDQSAtIEcyMB4XDTA2MTAyNTA4MzI0NloXDTM2MTAyNTA4MzI0Nlow -RzELMAkGA1UEBhMCQ0gxFTATBgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMY -U3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMIICIjANBgkqhkiG9w0BAQEFAAOCAg8A -MIICCgKCAgEAxPGHf9N4Mfc4yfjDmUO8x/e8N+dOcbpLj6VzHVxumK4DV644N0Mv -Fz0fyM5oEMF4rhkDKxD6LHmD9ui5aLlV8gREpzn5/ASLHvGiTSf5YXu6t+WiE7br -YT7QbNHm+/pe7R20nqA1W6GSy/BJkv6FCgU+5tkL4k+73JU3/JHpMjUi0R86TieF -nbAVlDLaYQ1HTWBCrpJH6INaUFjpiou5XaHc3ZlKHzZnu0jkg7Y360g6rw9njxcH -6ATK72oxh9TAtvmUcXtnZLi2kUpCe2UuMGoM9ZDulebyzYLs2aFK7PayS+VFheZt -eJMELpyCbTapxDFkH4aDCyr0NQp4yVXPQbBH6TCfmb5hqAaEuSh6XzjZG6k4sIN/ -c8HDO0gqgg8hm7jMqDXDhBuDsz6+pJVpATqJAHgE2cn0mRmrVn5bi4Y5FZGkECwJ -MoBgs5PAKrYYC51+jUnyEEp/+dVGLxmSo5mnJqy7jDzmDrxHB9xzUfFwZC8I+bRH -HTBsROopN4WSaGa8gzj+ezku01DwH/teYLappvonQfGbGHLy9YR0SslnxFSuSGTf -jNFusB3hB48IHpmccelM2KX3RxIfdNFRnobzwqIjQAtz20um53MGjMGg6cFZrEb6 -5i/4z3GcRm25xBWNOHkDRUjvxF3XCO6HOSKGsg0PWEP3calILv3q1h8CAwEAAaOB -rDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU -F6DNweRBtjpbO8tFnb0cwpj6hlgwHwYDVR0jBBgwFoAUF6DNweRBtjpbO8tFnb0c -wpj6hlgwRgYDVR0gBD8wPTA7BglghXQBWQEDAQEwLjAsBggrBgEFBQcCARYgaHR0 -cDovL3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIB -AHPGgeAn0i0P4JUw4ppBf1AsX19iYamGamkYDHRJ1l2E6kFSGG9YrVBWIGrGvShp -WJHckRE1qTodvBqlYJ7YH39FkWnZfrt4csEGDyrOj4VwYaygzQu4OSlWhDJOhrs9 -xCrZ1x9y7v5RoSJBsXECYxqCsGKrXlcSH9/L3XWgwF15kIwb4FDm3jH+mHtwX6WQ -2K34ArZv02DdQEsixT2tOnqfGhpHkXkzuoLcMmkDlm4fS/Bx/uNncqCxv1yL5PqZ -IseEuRuNI5c/7SXgz2W79WEE790eslpBIlqhn10s6FvJbakMDHiqYMZWjwFaDGi8 -aRl5xB9+lwW/xekkUV7U1UtT7dkjWjYDZaPBA61BMPNGG4WQr2W11bHkFlt4dR2X -em1ZqSqPe97Dh4kQmUlzeMg9vVE1dCrV8X5pGyq7O70luJpaPXJhkGaH7gzWTdQR -dAtq/gsD/KNVV4n+SsuuWxcFyPKNIzFTONItaj+CuY0IavdeQXRuwxF+B6wpYJE/ -OMpXEA29MC/HpeZBoNquBYeaoKRlbEwJDIm6uNO5wJOKMPqN5ZprFQFOZ6raYlY+ -hAhm0sQ2fac+EPyI4NSA5QC9qvNOBqN6avlicuMJT+ubDgEj8Z+7fNzcbBGXJbLy -tGMU0gYqZ4yD9c7qB9iaah7s5Aq7KkzrCWA5zspi2C5u ------END CERTIFICATE----- - # Issuer: CN=SecureTrust CA O=SecureTrust Corporation # Subject: CN=SecureTrust CA O=SecureTrust Corporation # Label: "SecureTrust CA" @@ -763,35 +722,6 @@ uLjbvrW5KfnaNwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2 XjG4Kvte9nHfRCaexOYNkbQudZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E= -----END CERTIFICATE----- -# Issuer: CN=SecureSign RootCA11 O=Japan Certification Services, Inc. -# Subject: CN=SecureSign RootCA11 O=Japan Certification Services, Inc. -# Label: "SecureSign RootCA11" -# Serial: 1 -# MD5 Fingerprint: b7:52:74:e2:92:b4:80:93:f2:75:e4:cc:d7:f2:ea:26 -# SHA1 Fingerprint: 3b:c4:9f:48:f8:f3:73:a0:9c:1e:bd:f8:5b:b1:c3:65:c7:d8:11:b3 -# SHA256 Fingerprint: bf:0f:ee:fb:9e:3a:58:1a:d5:f9:e9:db:75:89:98:57:43:d2:61:08:5c:4d:31:4f:6f:5d:72:59:aa:42:16:12 ------BEGIN CERTIFICATE----- -MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDEr -MCkGA1UEChMiSmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoG -A1UEAxMTU2VjdXJlU2lnbiBSb290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0 -MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSswKQYDVQQKEyJKYXBhbiBDZXJ0aWZp -Y2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1cmVTaWduIFJvb3RD -QTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvLTJsz -i1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8 -h9uuywGOwvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOV -MdrAG/LuYpmGYz+/3ZMqg6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9 -UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rPO7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni -8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitAbpSACW22s293bzUIUPsC -h8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZXt94wDgYD -VR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEB -AKChOBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xm -KbabfSVSSUOrTC4rbnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQ -X5Ucv+2rIrVls4W6ng+4reV6G4pQOh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWr -QbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01y8hSyn+B/tlr0/cR7SXf+Of5 -pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061lgeLKBObjBmN -QSdJQO7e5iNEOdyhIta6A/I= ------END CERTIFICATE----- - # Issuer: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. # Subject: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. # Label: "Microsec e-Szigno Root CA 2009" @@ -3100,50 +3030,6 @@ LJstxabArahH9CdMOA0uG0k7UvToiIMrVCjU8jVStDKDYmlkDJGcn5fqdBb9HxEG mpv0 -----END CERTIFICATE----- -# Issuer: CN=Entrust Root Certification Authority - G4 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2015 Entrust, Inc. - for authorized use only -# Subject: CN=Entrust Root Certification Authority - G4 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2015 Entrust, Inc. - for authorized use only -# Label: "Entrust Root Certification Authority - G4" -# Serial: 289383649854506086828220374796556676440 -# MD5 Fingerprint: 89:53:f1:83:23:b7:7c:8e:05:f1:8c:71:38:4e:1f:88 -# SHA1 Fingerprint: 14:88:4e:86:26:37:b0:26:af:59:62:5c:40:77:ec:35:29:ba:96:01 -# SHA256 Fingerprint: db:35:17:d1:f6:73:2a:2d:5a:b9:7c:53:3e:c7:07:79:ee:32:70:a6:2f:b4:ac:42:38:37:24:60:e6:f0:1e:88 ------BEGIN CERTIFICATE----- -MIIGSzCCBDOgAwIBAgIRANm1Q3+vqTkPAAAAAFVlrVgwDQYJKoZIhvcNAQELBQAw -gb4xCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQL -Ex9TZWUgd3d3LmVudHJ1c3QubmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykg -MjAxNSBFbnRydXN0LCBJbmMuIC0gZm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMjAw -BgNVBAMTKUVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEc0 -MB4XDTE1MDUyNzExMTExNloXDTM3MTIyNzExNDExNlowgb4xCzAJBgNVBAYTAlVT -MRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1 -c3QubmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxNSBFbnRydXN0LCBJ -bmMuIC0gZm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMjAwBgNVBAMTKUVudHJ1c3Qg -Um9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEc0MIICIjANBgkqhkiG9w0B -AQEFAAOCAg8AMIICCgKCAgEAsewsQu7i0TD/pZJH4i3DumSXbcr3DbVZwbPLqGgZ -2K+EbTBwXX7zLtJTmeH+H17ZSK9dE43b/2MzTdMAArzE+NEGCJR5WIoV3imz/f3E -T+iq4qA7ec2/a0My3dl0ELn39GjUu9CH1apLiipvKgS1sqbHoHrmSKvS0VnM1n4j -5pds8ELl3FFLFUHtSUrJ3hCX1nbB76W1NhSXNdh4IjVS70O92yfbYVaCNNzLiGAM -C1rlLAHGVK/XqsEQe9IFWrhAnoanw5CGAlZSCXqc0ieCU0plUmr1POeo8pyvi73T -DtTUXm6Hnmo9RR3RXRv06QqsYJn7ibT/mCzPfB3pAqoEmh643IhuJbNsZvc8kPNX -wbMv9W3y+8qh+CmdRouzavbmZwe+LGcKKh9asj5XxNMhIWNlUpEbsZmOeX7m640A -2Vqq6nPopIICR5b+W45UYaPrL0swsIsjdXJ8ITzI9vF01Bx7owVV7rtNOzK+mndm -nqxpkCIHH2E6lr7lmk/MBTwoWdPBDFSoWWG9yHJM6Nyfh3+9nEg2XpWjDrk4JFX8 -dWbrAuMINClKxuMrLzOg2qOGpRKX/YAr2hRC45K9PvJdXmd0LhyIRyk0X+IyqJwl -N4y6mACXi0mWHv0liqzc2thddG5msP9E36EYxr5ILzeUePiVSj9/E15dWf10hkNj -c0kCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD -VR0OBBYEFJ84xFYjwznooHFs6FRM5Og6sb9nMA0GCSqGSIb3DQEBCwUAA4ICAQAS -5UKme4sPDORGpbZgQIeMJX6tuGguW8ZAdjwD+MlZ9POrYs4QjbRaZIxowLByQzTS -Gwv2LFPSypBLhmb8qoMi9IsabyZIrHZ3CL/FmFz0Jomee8O5ZDIBf9PD3Vht7LGr -hFV0d4QEJ1JrhkzO3bll/9bGXp+aEJlLdWr+aumXIOTkdnrG0CSqkM0gkLpHZPt/ -B7NTeLUKYvJzQ85BK4FqLoUWlFPUa19yIqtRLULVAJyZv967lDtX/Zr1hstWO1uI -AeV8KEsD+UmDfLJ/fOPtjqF/YFOOVZ1QNBIPt5d7bIdKROf1beyAN/BYGW5KaHbw -H5Lk6rWS02FREAutp9lfx1/cH6NcjKF+m7ee01ZvZl4HliDtC3T7Zk6LERXpgUl+ -b7DUUH8i119lAg2m9IUe2K4GS0qn0jFmwvjO5QimpAKWRGhXxNUzzxkvFMSUHHuk -2fCfDrGA4tGeEWSpiBE6doLlYsKA2KSD7ZPvfC+QsDJMlhVoSFLUmQjAJOgc47Ol -IQ6SwJAfzyBfyjs4x7dtOvPmRLgOMWuIjnDrnBdSqEGULoe256YSxXXfW8AKbnuk -5F6G+TaU33fD6Q3AOfF5u0aOq0NZJ7cguyPpVkAh7DE9ZapD8j3fcEThuk0mEDuY -n/PIjhs4ViFqUZPTkcpG2om3PVODLAgfi49T3f+sHw== ------END CERTIFICATE----- - # Issuer: CN=Microsoft ECC Root Certificate Authority 2017 O=Microsoft Corporation # Subject: CN=Microsoft ECC Root Certificate Authority 2017 O=Microsoft Corporation # Label: "Microsoft ECC Root Certificate Authority 2017" @@ -4254,46 +4140,6 @@ ut6Dacpps6kFtZaSF4fC0urQe87YQVt8rgIwRt7qy12a7DLCZRawTDBcMPPaTnOG BtjOiQRINzf43TNRnXCve1XYAS59BWQOhriR -----END CERTIFICATE----- -# Issuer: CN=Security Communication RootCA3 O=SECOM Trust Systems CO.,LTD. -# Subject: CN=Security Communication RootCA3 O=SECOM Trust Systems CO.,LTD. -# Label: "Security Communication RootCA3" -# Serial: 16247922307909811815 -# MD5 Fingerprint: 1c:9a:16:ff:9e:5c:e0:4d:8a:14:01:f4:35:5d:29:26 -# SHA1 Fingerprint: c3:03:c8:22:74:92:e5:61:a2:9c:5f:79:91:2b:1e:44:13:91:30:3a -# SHA256 Fingerprint: 24:a5:5c:2a:b0:51:44:2d:06:17:76:65:41:23:9a:4a:d0:32:d7:c5:51:75:aa:34:ff:de:2f:bc:4f:5c:52:94 ------BEGIN CERTIFICATE----- -MIIFfzCCA2egAwIBAgIJAOF8N0D9G/5nMA0GCSqGSIb3DQEBDAUAMF0xCzAJBgNV -BAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMScw -JQYDVQQDEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTMwHhcNMTYwNjE2 -MDYxNzE2WhcNMzgwMTE4MDYxNzE2WjBdMQswCQYDVQQGEwJKUDElMCMGA1UEChMc -U0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UEAxMeU2VjdXJpdHkg -Q29tbXVuaWNhdGlvbiBSb290Q0EzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC -CgKCAgEA48lySfcw3gl8qUCBWNO0Ot26YQ+TUG5pPDXC7ltzkBtnTCHsXzW7OT4r -CmDvu20rhvtxosis5FaU+cmvsXLUIKx00rgVrVH+hXShuRD+BYD5UpOzQD11EKzA -lrenfna84xtSGc4RHwsENPXY9Wk8d/Nk9A2qhd7gCVAEF5aEt8iKvE1y/By7z/MG -TfmfZPd+pmaGNXHIEYBMwXFAWB6+oHP2/D5Q4eAvJj1+XCO1eXDe+uDRpdYMQXF7 -9+qMHIjH7Iv10S9VlkZ8WjtYO/u62C21Jdp6Ts9EriGmnpjKIG58u4iFW/vAEGK7 -8vknR+/RiTlDxN/e4UG/VHMgly1s2vPUB6PmudhvrvyMGS7TZ2crldtYXLVqAvO4 -g160a75BflcJdURQVc1aEWEhCmHCqYj9E7wtiS/NYeCVvsq1e+F7NGcLH7YMx3we -GVPKp7FKFSBWFHA9K4IsD50VHUeAR/94mQ4xr28+j+2GaR57GIgUssL8gjMunEst -+3A7caoreyYn8xrC3PsXuKHqy6C0rtOUfnrQq8PsOC0RLoi/1D+tEjtCrI8Cbn3M -0V9hvqG8OmpI6iZVIhZdXw3/JzOfGAN0iltSIEdrRU0id4xVJ/CvHozJgyJUt5rQ -T9nO/NkuHJYosQLTA70lUhw0Zk8jq/R3gpYd0VcwCBEF/VfR2ccCAwEAAaNCMEAw -HQYDVR0OBBYEFGQUfPxYchamCik0FW8qy7z8r6irMA4GA1UdDwEB/wQEAwIBBjAP -BgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBDAUAA4ICAQDcAiMI4u8hOscNtybS -YpOnpSNyByCCYN8Y11StaSWSntkUz5m5UoHPrmyKO1o5yGwBQ8IibQLwYs1OY0PA -FNr0Y/Dq9HHuTofjcan0yVflLl8cebsjqodEV+m9NU1Bu0soo5iyG9kLFwfl9+qd -9XbXv8S2gVj/yP9kaWJ5rW4OH3/uHWnlt3Jxs/6lATWUVCvAUm2PVcTJ0rjLyjQI -UYWg9by0F1jqClx6vWPGOi//lkkZhOpn2ASxYfQAW0q3nHE3GYV5v4GwxxMOdnE+ -OoAGrgYWp421wsTL/0ClXI2lyTrtcoHKXJg80jQDdwj98ClZXSEIx2C/pHF7uNke -gr4Jr2VvKKu/S7XuPghHJ6APbw+LP6yVGPO5DtxnVW5inkYO0QR4ynKudtml+LLf -iAlhi+8kTtFZP1rUPcmTPCtk9YENFpb3ksP+MW/oKjJ0DvRMmEoYDjBU1cXrvMUV -nuiZIesnKwkK2/HmcBhWuwzkvvnoEKQTkrgc4NtnHVMDpCKn3F2SEDzq//wbEBrD -2NCcnWXL0CsnMQMeNuE9dnUM/0Umud1RvCPHX9jYhxBAEg09ODfnRDwYwFMJZI// -1ZqmfHAuc1Uh6N//g7kdPjIe1qZ9LPFm6Vwdp6POXiUyK+OVrCoHzrQoeIY8Laad -TdJ0MN1kURXbg4NR16/9M51NZg== ------END CERTIFICATE----- - # Issuer: CN=Security Communication ECC RootCA1 O=SECOM Trust Systems CO.,LTD. # Subject: CN=Security Communication ECC RootCA1 O=SECOM Trust Systems CO.,LTD. # Label: "Security Communication ECC RootCA1" @@ -4812,3 +4658,240 @@ X273CXE2whJdV/LItM3z7gLfEdxquVeEHVlNjM7IDiPCtyaaEBRx/pOyiriA8A4Q ntOoUAw3gi/q4Iqd4Sw5/7W0cwDk90imc6y/st53BIe0o82bNSQ3+pCTE4FCxpgm dTdmQRCsu/WU48IxK63nI1bMNSWSs1A= -----END CERTIFICATE----- + +# Issuer: CN=FIRMAPROFESIONAL CA ROOT-A WEB O=Firmaprofesional SA +# Subject: CN=FIRMAPROFESIONAL CA ROOT-A WEB O=Firmaprofesional SA +# Label: "FIRMAPROFESIONAL CA ROOT-A WEB" +# Serial: 65916896770016886708751106294915943533 +# MD5 Fingerprint: 82:b2:ad:45:00:82:b0:66:63:f8:5f:c3:67:4e:ce:a3 +# SHA1 Fingerprint: a8:31:11:74:a6:14:15:0d:ca:77:dd:0e:e4:0c:5d:58:fc:a0:72:a5 +# SHA256 Fingerprint: be:f2:56:da:f2:6e:9c:69:bd:ec:16:02:35:97:98:f3:ca:f7:18:21:a0:3e:01:82:57:c5:3c:65:61:7f:3d:4a +-----BEGIN CERTIFICATE----- +MIICejCCAgCgAwIBAgIQMZch7a+JQn81QYehZ1ZMbTAKBggqhkjOPQQDAzBuMQsw +CQYDVQQGEwJFUzEcMBoGA1UECgwTRmlybWFwcm9mZXNpb25hbCBTQTEYMBYGA1UE +YQwPVkFURVMtQTYyNjM0MDY4MScwJQYDVQQDDB5GSVJNQVBST0ZFU0lPTkFMIENB +IFJPT1QtQSBXRUIwHhcNMjIwNDA2MDkwMTM2WhcNNDcwMzMxMDkwMTM2WjBuMQsw +CQYDVQQGEwJFUzEcMBoGA1UECgwTRmlybWFwcm9mZXNpb25hbCBTQTEYMBYGA1UE +YQwPVkFURVMtQTYyNjM0MDY4MScwJQYDVQQDDB5GSVJNQVBST0ZFU0lPTkFMIENB +IFJPT1QtQSBXRUIwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAARHU+osEaR3xyrq89Zf +e9MEkVz6iMYiuYMQYneEMy3pA4jU4DP37XcsSmDq5G+tbbT4TIqk5B/K6k84Si6C +cyvHZpsKjECcfIr28jlgst7L7Ljkb+qbXbdTkBgyVcUgt5SjYzBhMA8GA1UdEwEB +/wQFMAMBAf8wHwYDVR0jBBgwFoAUk+FDY1w8ndYn81LsF7Kpryz3dvgwHQYDVR0O +BBYEFJPhQ2NcPJ3WJ/NS7Beyqa8s93b4MA4GA1UdDwEB/wQEAwIBBjAKBggqhkjO +PQQDAwNoADBlAjAdfKR7w4l1M+E7qUW/Runpod3JIha3RxEL2Jq68cgLcFBTApFw +hVmpHqTm6iMxoAACMQD94vizrxa5HnPEluPBMBnYfubDl94cT7iJLzPrSA8Z94dG +XSaQpYXFuXqUPoeovQA= +-----END CERTIFICATE----- + +# Issuer: CN=TWCA CYBER Root CA O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA CYBER Root CA O=TAIWAN-CA OU=Root CA +# Label: "TWCA CYBER Root CA" +# Serial: 85076849864375384482682434040119489222 +# MD5 Fingerprint: 0b:33:a0:97:52:95:d4:a9:fd:bb:db:6e:a3:55:5b:51 +# SHA1 Fingerprint: f6:b1:1c:1a:83:38:e9:7b:db:b3:a8:c8:33:24:e0:2d:9c:7f:26:66 +# SHA256 Fingerprint: 3f:63:bb:28:14:be:17:4e:c8:b6:43:9c:f0:8d:6d:56:f0:b7:c4:05:88:3a:56:48:a3:34:42:4d:6b:3e:c5:58 +-----BEGIN CERTIFICATE----- +MIIFjTCCA3WgAwIBAgIQQAE0jMIAAAAAAAAAATzyxjANBgkqhkiG9w0BAQwFADBQ +MQswCQYDVQQGEwJUVzESMBAGA1UEChMJVEFJV0FOLUNBMRAwDgYDVQQLEwdSb290 +IENBMRswGQYDVQQDExJUV0NBIENZQkVSIFJvb3QgQ0EwHhcNMjIxMTIyMDY1NDI5 +WhcNNDcxMTIyMTU1OTU5WjBQMQswCQYDVQQGEwJUVzESMBAGA1UEChMJVEFJV0FO +LUNBMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJUV0NBIENZQkVSIFJvb3Qg +Q0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDG+Moe2Qkgfh1sTs6P +40czRJzHyWmqOlt47nDSkvgEs1JSHWdyKKHfi12VCv7qze33Kc7wb3+szT3vsxxF +avcokPFhV8UMxKNQXd7UtcsZyoC5dc4pztKFIuwCY8xEMCDa6pFbVuYdHNWdZsc/ +34bKS1PE2Y2yHer43CdTo0fhYcx9tbD47nORxc5zb87uEB8aBs/pJ2DFTxnk684i +JkXXYJndzk834H/nY62wuFm40AZoNWDTNq5xQwTxaWV4fPMf88oon1oglWa0zbfu +j3ikRRjpJi+NmykosaS3Om251Bw4ckVYsV7r8Cibt4LK/c/WMw+f+5eesRycnupf +Xtuq3VTpMCEobY5583WSjCb+3MX2w7DfRFlDo7YDKPYIMKoNM+HvnKkHIuNZW0CP +2oi3aQiotyMuRAlZN1vH4xfyIutuOVLF3lSnmMlLIJXcRolftBL5hSmO68gnFSDA +S9TMfAxsNAwmmyYxpjyn9tnQS6Jk/zuZQXLB4HCX8SS7K8R0IrGsayIyJNN4KsDA +oS/xUgXJP+92ZuJF2A09rZXIx4kmyA+upwMu+8Ff+iDhcK2wZSA3M2Cw1a/XDBzC +kHDXShi8fgGwsOsVHkQGzaRP6AzRwyAQ4VRlnrZR0Bp2a0JaWHY06rc3Ga4udfmW +5cFZ95RXKSWNOkyrTZpB0F8mAwIDAQABo2MwYTAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBSdhWEUfMFib5do5E83QOGt4A1WNzAd +BgNVHQ4EFgQUnYVhFHzBYm+XaORPN0DhreANVjcwDQYJKoZIhvcNAQEMBQADggIB +AGSPesRiDrWIzLjHhg6hShbNcAu3p4ULs3a2D6f/CIsLJc+o1IN1KriWiLb73y0t +tGlTITVX1olNc79pj3CjYcya2x6a4CD4bLubIp1dhDGaLIrdaqHXKGnK/nZVekZn +68xDiBaiA9a5F/gZbG0jAn/xX9AKKSM70aoK7akXJlQKTcKlTfjF/biBzysseKNn +TKkHmvPfXvt89YnNdJdhEGoHK4Fa0o635yDRIG4kqIQnoVesqlVYL9zZyvpoBJ7t +RCT5dEA7IzOrg1oYJkK2bVS1FmAwbLGg+LhBoF1JSdJlBTrq/p1hvIbZv97Tujqx +f36SNI7JAG7cmL3c7IAFrQI932XtCwP39xaEBDG6k5TY8hL4iuO/Qq+n1M0RFxbI +Qh0UqEL20kCGoE8jypZFVmAGzbdVAaYBlGX+bgUJurSkquLvWL69J1bY73NxW0Qz +8ppy6rBePm6pUlvscG21h483XjyMnM7k8M4MZ0HMzvaAq07MTFb1wWFZk7Q+ptq4 +NxKfKjLji7gh7MMrZQzvIt6IKTtM1/r+t+FHvpw+PoP7UV31aPcuIYXcv/Fa4nzX +xeSDwWrruoBa3lwtcHb4yOWHh8qgnaHlIhInD0Q9HWzq1MKLL295q39QpsQZp6F6 +t5b5wR9iWqJDB0BeJsas7a5wFsWqynKKTbDPAYsDP27X +-----END CERTIFICATE----- + +# Issuer: CN=SecureSign Root CA12 O=Cybertrust Japan Co., Ltd. +# Subject: CN=SecureSign Root CA12 O=Cybertrust Japan Co., Ltd. +# Label: "SecureSign Root CA12" +# Serial: 587887345431707215246142177076162061960426065942 +# MD5 Fingerprint: c6:89:ca:64:42:9b:62:08:49:0b:1e:7f:e9:07:3d:e8 +# SHA1 Fingerprint: 7a:22:1e:3d:de:1b:06:ac:9e:c8:47:70:16:8e:3c:e5:f7:6b:06:f4 +# SHA256 Fingerprint: 3f:03:4b:b5:70:4d:44:b2:d0:85:45:a0:20:57:de:93:eb:f3:90:5f:ce:72:1a:cb:c7:30:c0:6d:da:ee:90:4e +-----BEGIN CERTIFICATE----- +MIIDcjCCAlqgAwIBAgIUZvnHwa/swlG07VOX5uaCwysckBYwDQYJKoZIhvcNAQEL +BQAwUTELMAkGA1UEBhMCSlAxIzAhBgNVBAoTGkN5YmVydHJ1c3QgSmFwYW4gQ28u +LCBMdGQuMR0wGwYDVQQDExRTZWN1cmVTaWduIFJvb3QgQ0ExMjAeFw0yMDA0MDgw +NTM2NDZaFw00MDA0MDgwNTM2NDZaMFExCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpD +eWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEdMBsGA1UEAxMUU2VjdXJlU2lnbiBS +b290IENBMTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6OcE3emhF +KxS06+QT61d1I02PJC0W6K6OyX2kVzsqdiUzg2zqMoqUm048luT9Ub+ZyZN+v/mt +p7JIKwccJ/VMvHASd6SFVLX9kHrko+RRWAPNEHl57muTH2SOa2SroxPjcf59q5zd +J1M3s6oYwlkm7Fsf0uZlfO+TvdhYXAvA42VvPMfKWeP+bl+sg779XSVOKik71gur +FzJ4pOE+lEa+Ym6b3kaosRbnhW70CEBFEaCeVESE99g2zvVQR9wsMJvuwPWW0v4J +hscGWa5Pro4RmHvzC1KqYiaqId+OJTN5lxZJjfU+1UefNzFJM3IFTQy2VYzxV4+K +h9GtxRESOaCtAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD +AgEGMB0GA1UdDgQWBBRXNPN0zwRL1SXm8UC2LEzZLemgrTANBgkqhkiG9w0BAQsF +AAOCAQEAPrvbFxbS8hQBICw4g0utvsqFepq2m2um4fylOqyttCg6r9cBg0krY6Ld +mmQOmFxv3Y67ilQiLUoT865AQ9tPkbeGGuwAtEGBpE/6aouIs3YIcipJQMPTw4WJ +mBClnW8Zt7vPemVV2zfrPIpyMpcemik+rY3moxtt9XUa5rBouVui7mlHJzWhhpmA +8zNL4WukJsPvdFlseqJkth5Ew1DgDzk9qTPxpfPSvWKErI4cqc1avTc7bgoitPQV +55FYxTpE05Uo2cBl6XLK0A+9H7MV2anjpEcJnuDLN/v9vZfVvhgaaaI5gdka9at/ +yOPiZwud9AzqVN/Ssq+xIvEg37xEHA== +-----END CERTIFICATE----- + +# Issuer: CN=SecureSign Root CA14 O=Cybertrust Japan Co., Ltd. +# Subject: CN=SecureSign Root CA14 O=Cybertrust Japan Co., Ltd. +# Label: "SecureSign Root CA14" +# Serial: 575790784512929437950770173562378038616896959179 +# MD5 Fingerprint: 71:0d:72:fa:92:19:65:5e:89:04:ac:16:33:f0:bc:d5 +# SHA1 Fingerprint: dd:50:c0:f7:79:b3:64:2e:74:a2:b8:9d:9f:d3:40:dd:bb:f0:f2:4f +# SHA256 Fingerprint: 4b:00:9c:10:34:49:4f:9a:b5:6b:ba:3b:a1:d6:27:31:fc:4d:20:d8:95:5a:dc:ec:10:a9:25:60:72:61:e3:38 +-----BEGIN CERTIFICATE----- +MIIFcjCCA1qgAwIBAgIUZNtaDCBO6Ncpd8hQJ6JaJ90t8sswDQYJKoZIhvcNAQEM +BQAwUTELMAkGA1UEBhMCSlAxIzAhBgNVBAoTGkN5YmVydHJ1c3QgSmFwYW4gQ28u +LCBMdGQuMR0wGwYDVQQDExRTZWN1cmVTaWduIFJvb3QgQ0ExNDAeFw0yMDA0MDgw +NzA2MTlaFw00NTA0MDgwNzA2MTlaMFExCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpD +eWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEdMBsGA1UEAxMUU2VjdXJlU2lnbiBS +b290IENBMTQwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDF0nqh1oq/ +FjHQmNE6lPxauG4iwWL3pwon71D2LrGeaBLwbCRjOfHw3xDG3rdSINVSW0KZnvOg +vlIfX8xnbacuUKLBl422+JX1sLrcneC+y9/3OPJH9aaakpUqYllQC6KxNedlsmGy +6pJxaeQp8E+BgQQ8sqVb1MWoWWd7VRxJq3qdwudzTe/NCcLEVxLbAQ4jeQkHO6Lo +/IrPj8BGJJw4J+CDnRugv3gVEOuGTgpa/d/aLIJ+7sr2KeH6caH3iGicnPCNvg9J +kdjqOvn90Ghx2+m1K06Ckm9mH+Dw3EzsytHqunQG+bOEkJTRX45zGRBdAuVwpcAQ +0BB8b8VYSbSwbprafZX1zNoCr7gsfXmPvkPx+SgojQlD+Ajda8iLLCSxjVIHvXib +y8posqTdDEx5YMaZ0ZPxMBoH064iwurO8YQJzOAUbn8/ftKChazcqRZOhaBgy/ac +18izju3Gm5h1DVXoX+WViwKkrkMpKBGk5hIwAUt1ax5mnXkvpXYvHUC0bcl9eQjs +0Wq2XSqypWa9a4X0dFbD9ed1Uigspf9mR6XU/v6eVL9lfgHWMI+lNpyiUBzuOIAB +SMbHdPTGrMNASRZhdCyvjG817XsYAFs2PJxQDcqSMxDxJklt33UkN4Ii1+iW/RVL +ApY+B3KVfqs9TC7XyvDf4Fg/LS8EmjijAQIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUBpOjCl4oaTeqYR3r6/wtbyPk +86AwDQYJKoZIhvcNAQEMBQADggIBAJaAcgkGfpzMkwQWu6A6jZJOtxEaCnFxEM0E +rX+lRVAQZk5KQaID2RFPeje5S+LGjzJmdSX7684/AykmjbgWHfYfM25I5uj4V7Ib +ed87hwriZLoAymzvftAj63iP/2SbNDefNWWipAA9EiOWWF3KY4fGoweITedpdopT +zfFP7ELyk+OZpDc8h7hi2/DsHzc/N19DzFGdtfCXwreFamgLRB7lUe6TzktuhsHS +DCRZNhqfLJGP4xjblJUK7ZGqDpncllPjYYPGFrojutzdfhrGe0K22VoF3Jpf1d+4 +2kd92jjbrDnVHmtsKheMYc2xbXIBw8MgAGJoFjHVdqqGuw6qnsb58Nn4DSEC5MUo +FlkRudlpcyqSeLiSV5sI8jrlL5WwWLdrIBRtFO8KvH7YVdiI2i/6GaX7i+B/OfVy +K4XELKzvGUWSTLNhB9xNH27SgRNcmvMSZ4PPmz+Ln52kuaiWA3rF7iDeM9ovnhp6 +dB7h7sxaOgTdsxoEqBRjrLdHEoOabPXm6RUVkRqEGQ6UROcSjiVbgGcZ3GOTEAtl +Lor6CZpO2oYofaphNdgOpygau1LgePhsumywbrmHXumZNTfxPWQrqaA0k89jL9WB +365jJ6UeTo3cKXhZ+PmhIIynJkBugnLNeLLIjzwec+fBH7/PzqUqm9tEZDKgu39c +JRNItX+S +-----END CERTIFICATE----- + +# Issuer: CN=SecureSign Root CA15 O=Cybertrust Japan Co., Ltd. +# Subject: CN=SecureSign Root CA15 O=Cybertrust Japan Co., Ltd. +# Label: "SecureSign Root CA15" +# Serial: 126083514594751269499665114766174399806381178503 +# MD5 Fingerprint: 13:30:fc:c4:62:a6:a9:de:b5:c1:68:af:b5:d2:31:47 +# SHA1 Fingerprint: cb:ba:83:c8:c1:5a:5d:f1:f9:73:6f:ca:d7:ef:28:13:06:4a:07:7d +# SHA256 Fingerprint: e7:78:f0:f0:95:fe:84:37:29:cd:1a:00:82:17:9e:53:14:a9:c2:91:44:28:05:e1:fb:1d:8f:b6:b8:88:6c:3a +-----BEGIN CERTIFICATE----- +MIICIzCCAamgAwIBAgIUFhXHw9hJp75pDIqI7fBw+d23PocwCgYIKoZIzj0EAwMw +UTELMAkGA1UEBhMCSlAxIzAhBgNVBAoTGkN5YmVydHJ1c3QgSmFwYW4gQ28uLCBM +dGQuMR0wGwYDVQQDExRTZWN1cmVTaWduIFJvb3QgQ0ExNTAeFw0yMDA0MDgwODMy +NTZaFw00NTA0MDgwODMyNTZaMFExCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJl +cnRydXN0IEphcGFuIENvLiwgTHRkLjEdMBsGA1UEAxMUU2VjdXJlU2lnbiBSb290 +IENBMTUwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQLUHSNZDKZmbPSYAi4Io5GdCx4 +wCtELW1fHcmuS1Iggz24FG1Th2CeX2yF2wYUleDHKP+dX+Sq8bOLbe1PL0vJSpSR +ZHX+AezB2Ot6lHhWGENfa4HL9rzatAy2KZMIaY+jQjBAMA8GA1UdEwEB/wQFMAMB +Af8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTrQciu/NWeUUj1vYv0hyCTQSvT +9DAKBggqhkjOPQQDAwNoADBlAjEA2S6Jfl5OpBEHvVnCB96rMjhTKkZEBhd6zlHp +4P9mLQlO4E/0BdGF9jVg3PVys0Z9AjBEmEYagoUeYWmJSwdLZrWeqrqgHkHZAXQ6 +bkU6iYAZezKYVWOr62Nuk22rGwlgMU4= +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST BR Root CA 2 2023 O=D-Trust GmbH +# Subject: CN=D-TRUST BR Root CA 2 2023 O=D-Trust GmbH +# Label: "D-TRUST BR Root CA 2 2023" +# Serial: 153168538924886464690566649552453098598 +# MD5 Fingerprint: e1:09:ed:d3:60:d4:56:1b:47:1f:b7:0c:5f:1b:5f:85 +# SHA1 Fingerprint: 2d:b0:70:ee:71:94:af:69:68:17:db:79:ce:58:9f:a0:6b:96:f7:87 +# SHA256 Fingerprint: 05:52:e6:f8:3f:df:65:e8:fa:96:70:e6:66:df:28:a4:e2:13:40:b5:10:cb:e5:25:66:f9:7c:4f:b9:4b:2b:d1 +-----BEGIN CERTIFICATE----- +MIIFqTCCA5GgAwIBAgIQczswBEhb2U14LnNLyaHcZjANBgkqhkiG9w0BAQ0FADBI +MQswCQYDVQQGEwJERTEVMBMGA1UEChMMRC1UcnVzdCBHbWJIMSIwIAYDVQQDExlE +LVRSVVNUIEJSIFJvb3QgQ0EgMiAyMDIzMB4XDTIzMDUwOTA4NTYzMVoXDTM4MDUw +OTA4NTYzMFowSDELMAkGA1UEBhMCREUxFTATBgNVBAoTDEQtVHJ1c3QgR21iSDEi +MCAGA1UEAxMZRC1UUlVTVCBCUiBSb290IENBIDIgMjAyMzCCAiIwDQYJKoZIhvcN +AQEBBQADggIPADCCAgoCggIBAK7/CVmRgApKaOYkP7in5Mg6CjoWzckjYaCTcfKr +i3OPoGdlYNJUa2NRb0kz4HIHE304zQaSBylSa053bATTlfrdTIzZXcFhfUvnKLNE +gXtRr90zsWh81k5M/itoucpmacTsXld/9w3HnDY25QdgrMBM6ghs7wZ8T1soegj8 +k12b9py0i4a6Ibn08OhZWiihNIQaJZG2tY/vsvmA+vk9PBFy2OMvhnbFeSzBqZCT +Rphny4NqoFAjpzv2gTng7fC5v2Xx2Mt6++9zA84A9H3X4F07ZrjcjrqDy4d2A/wl +2ecjbwb9Z/Pg/4S8R7+1FhhGaRTMBffb00msa8yr5LULQyReS2tNZ9/WtT5PeB+U +cSTq3nD88ZP+npNa5JRal1QMNXtfbO4AHyTsA7oC9Xb0n9Sa7YUsOCIvx9gvdhFP +/Wxc6PWOJ4d/GUohR5AdeY0cW/jPSoXk7bNbjb7EZChdQcRurDhaTyN0dKkSw/bS +uREVMweR2Ds3OmMwBtHFIjYoYiMQ4EbMl6zWK11kJNXuHA7e+whadSr2Y23OC0K+ +0bpwHJwh5Q8xaRfX/Aq03u2AnMuStIv13lmiWAmlY0cL4UEyNEHZmrHZqLAbWt4N +DfTisl01gLmB1IRpkQLLddCNxbU9CZEJjxShFHR5PtbJFR2kWVki3PaKRT08EtY+ +XTIvAgMBAAGjgY4wgYswDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUZ5Dw1t61 +GNVGKX5cq/ieCLxklRAwDgYDVR0PAQH/BAQDAgEGMEkGA1UdHwRCMEAwPqA8oDqG +OGh0dHA6Ly9jcmwuZC10cnVzdC5uZXQvY3JsL2QtdHJ1c3RfYnJfcm9vdF9jYV8y +XzIwMjMuY3JsMA0GCSqGSIb3DQEBDQUAA4ICAQA097N3U9swFrktpSHxQCF16+tI +FoE9c+CeJyrrd6kTpGoKWloUMz1oH4Guaf2Mn2VsNELZLdB/eBaxOqwjMa1ef67n +riv6uvw8l5VAk1/DLQOj7aRvU9f6QA4w9QAgLABMjDu0ox+2v5Eyq6+SmNMW5tTR +VFxDWy6u71cqqLRvpO8NVhTaIasgdp4D/Ca4nj8+AybmTNudX0KEPUUDAxxZiMrc +LmEkWqTqJwtzEr5SswrPMhfiHocaFpVIbVrg0M8JkiZmkdijYQ6qgYF/6FKC0ULn +4B0Y+qSFNueG4A3rvNTJ1jxD8V1Jbn6Bm2m1iWKPiFLY1/4nwSPFyysCu7Ff/vtD +hQNGvl3GyiEm/9cCnnRK3PgTFbGBVzbLZVzRHTF36SXDw7IyN9XxmAnkbWOACKsG +koHU6XCPpz+y7YaMgmo1yEJagtFSGkUPFaUA8JR7ZSdXOUPPfH/mvTWze/EZTN46 +ls/pdu4D58JDUjxqgejBWoC9EV2Ta/vH5mQ/u2kc6d0li690yVRAysuTEwrt+2aS +Ecr1wPrYg1UDfNPFIkZ1cGt5SAYqgpq/5usWDiJFAbzdNpQ0qTUmiteXue4Icr80 +knCDgKs4qllo3UCkGJCy89UDyibK79XH4I9TjvAA46jtn/mtd+ArY0+ew+43u3gJ +hJ65bvspmZDogNOfJA== +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST EV Root CA 2 2023 O=D-Trust GmbH +# Subject: CN=D-TRUST EV Root CA 2 2023 O=D-Trust GmbH +# Label: "D-TRUST EV Root CA 2 2023" +# Serial: 139766439402180512324132425437959641711 +# MD5 Fingerprint: 96:b4:78:09:f0:09:cb:77:eb:bb:1b:4d:6f:36:bc:b6 +# SHA1 Fingerprint: a5:5b:d8:47:6c:8f:19:f7:4c:f4:6d:6b:b6:c2:79:82:22:df:54:8b +# SHA256 Fingerprint: 8e:82:21:b2:e7:d4:00:78:36:a1:67:2f:0d:cc:29:9c:33:bc:07:d3:16:f1:32:fa:1a:20:6d:58:71:50:f1:ce +-----BEGIN CERTIFICATE----- +MIIFqTCCA5GgAwIBAgIQaSYJfoBLTKCnjHhiU19abzANBgkqhkiG9w0BAQ0FADBI +MQswCQYDVQQGEwJERTEVMBMGA1UEChMMRC1UcnVzdCBHbWJIMSIwIAYDVQQDExlE +LVRSVVNUIEVWIFJvb3QgQ0EgMiAyMDIzMB4XDTIzMDUwOTA5MTAzM1oXDTM4MDUw +OTA5MTAzMlowSDELMAkGA1UEBhMCREUxFTATBgNVBAoTDEQtVHJ1c3QgR21iSDEi +MCAGA1UEAxMZRC1UUlVTVCBFViBSb290IENBIDIgMjAyMzCCAiIwDQYJKoZIhvcN +AQEBBQADggIPADCCAgoCggIBANiOo4mAC7JXUtypU0w3uX9jFxPvp1sjW2l1sJkK +F8GLxNuo4MwxusLyzV3pt/gdr2rElYfXR8mV2IIEUD2BCP/kPbOx1sWy/YgJ25yE +7CUXFId/MHibaljJtnMoPDT3mfd/06b4HEV8rSyMlD/YZxBTfiLNTiVR8CUkNRFe +EMbsh2aJgWi6zCudR3Mfvc2RpHJqnKIbGKBv7FD0fUDCqDDPvXPIEysQEx6Lmqg6 +lHPTGGkKSv/BAQP/eX+1SH977ugpbzZMlWGG2Pmic4ruri+W7mjNPU0oQvlFKzIb +RlUWaqZLKfm7lVa/Rh3sHZMdwGWyH6FDrlaeoLGPaxK3YG14C8qKXO0elg6DpkiV +jTujIcSuWMYAsoS0I6SWhjW42J7YrDRJmGOVxcttSEfi8i4YHtAxq9107PncjLgc +jmgjutDzUNzPZY9zOjLHfP7KgiJPvo5iR2blzYfi6NUPGJ/lBHJLRjwQ8kTCZFZx +TnXonMkmdMV9WdEKWw9t/p51HBjGGjp82A0EzM23RWV6sY+4roRIPrN6TagD4uJ+ +ARZZaBhDM7DS3LAaQzXupdqpRlyuhoFBAUp0JuyfBr/CBTdkdXgpaP3F9ev+R/nk +hbDhezGdpn9yo7nELC7MmVcOIQxFAZRl62UJxmMiCzNJkkg8/M3OsD6Onov4/knF +NXJHAgMBAAGjgY4wgYswDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUqvyREBuH +kV8Wub9PS5FeAByxMoAwDgYDVR0PAQH/BAQDAgEGMEkGA1UdHwRCMEAwPqA8oDqG +OGh0dHA6Ly9jcmwuZC10cnVzdC5uZXQvY3JsL2QtdHJ1c3RfZXZfcm9vdF9jYV8y +XzIwMjMuY3JsMA0GCSqGSIb3DQEBDQUAA4ICAQCTy6UfmRHsmg1fLBWTxj++EI14 +QvBukEdHjqOSMo1wj/Zbjb6JzkcBahsgIIlbyIIQbODnmaprxiqgYzWRaoUlrRc4 +pZt+UPJ26oUFKidBK7GB0aL2QHWpDsvxVUjY7NHss+jOFKE17MJeNRqrphYBBo7q +3C+jisosketSjl8MmxfPy3MHGcRqwnNU73xDUmPBEcrCRbH0O1P1aa4846XerOhU +t7KR/aypH/KH5BfGSah82ApB9PI+53c0BFLd6IHyTS9URZ0V4U/M5d40VxDJI3IX +cI1QcB9WbMy5/zpaT2N6w25lBx2Eof+pDGOJbbJAiDnXH3dotfyc1dZnaVuodNv8 +ifYbMvekJKZ2t0dT741Jj6m2g1qllpBFYfXeA08mD6iL8AOWsKwV0HFaanuU5nCT +2vFp4LJiTZ6P/4mdm13NRemUAiKN4DV/6PEEeXFsVIP4M7kFMhtYVRFP0OUnR3Hs +7dpn1mKmS00PaaLJvOwiS5THaJQXfuKOKD62xur1NGyfN4gHONuGcfrNlUhDbqNP +gofXNJhuS5N5YHVpD/Aa1VP6IQzCP+k/HxiMkl14p3ZnGbuy6n/pcAlWVqOwDAst +Nl7F6cTVg8uGF5csbBNvh1qvSaYd2804BC5f4ko1Di1L+KIkBI3Y4WNeApI02phh +XBxvWHZks/wCuPWdCg== +-----END CERTIFICATE----- diff --git a/dist/ba_data/python-site-packages/typing_extensions.py b/dist/ba_data/python-site-packages/typing_extensions.py index 9ccd519..d2fb245 100644 --- a/dist/ba_data/python-site-packages/typing_extensions.py +++ b/dist/ba_data/python-site-packages/typing_extensions.py @@ -1,8 +1,12 @@ import abc +import builtins import collections import collections.abc +import contextlib +import enum import functools import inspect +import keyword import operator import sys import types as _types @@ -61,8 +65,11 @@ __all__ = [ 'dataclass_transform', 'deprecated', 'Doc', + 'evaluate_forward_ref', 'get_overloads', 'final', + 'Format', + 'get_annotations', 'get_args', 'get_origin', 'get_original_bases', @@ -82,6 +89,7 @@ __all__ = [ 'Text', 'TypeAlias', 'TypeAliasType', + 'TypeForm', 'TypeGuard', 'TypeIs', 'TYPE_CHECKING', @@ -90,6 +98,8 @@ __all__ = [ 'ReadOnly', 'Required', 'NotRequired', + 'NoDefault', + 'NoExtraItems', # Pure aliases, have always been in typing 'AbstractSet', @@ -134,6 +144,10 @@ __all__ = [ # for backward compatibility PEP_560 = True GenericMeta = type +_PEP_696_IMPLEMENTED = sys.version_info >= (3, 13, 0, "beta") + +# Added with bpo-45166 to 3.10.1+ and some 3.9 versions +_FORWARD_REF_HAS_CLASS = "__forward_is_class__" in typing.ForwardRef.__slots__ # The functions below are modified copies of typing internal helpers. # They are needed by _ProtocolMeta and they provide support for PEP 646. @@ -406,17 +420,96 @@ Coroutine = typing.Coroutine AsyncIterable = typing.AsyncIterable AsyncIterator = typing.AsyncIterator Deque = typing.Deque -ContextManager = typing.ContextManager -AsyncContextManager = typing.AsyncContextManager DefaultDict = typing.DefaultDict OrderedDict = typing.OrderedDict Counter = typing.Counter ChainMap = typing.ChainMap -AsyncGenerator = typing.AsyncGenerator Text = typing.Text TYPE_CHECKING = typing.TYPE_CHECKING +if sys.version_info >= (3, 13, 0, "beta"): + from typing import AsyncContextManager, AsyncGenerator, ContextManager, Generator +else: + def _is_dunder(attr): + return attr.startswith('__') and attr.endswith('__') + + # Python <3.9 doesn't have typing._SpecialGenericAlias + _special_generic_alias_base = getattr( + typing, "_SpecialGenericAlias", typing._GenericAlias + ) + + class _SpecialGenericAlias(_special_generic_alias_base, _root=True): + def __init__(self, origin, nparams, *, inst=True, name=None, defaults=()): + if _special_generic_alias_base is typing._GenericAlias: + # Python <3.9 + self.__origin__ = origin + self._nparams = nparams + super().__init__(origin, nparams, special=True, inst=inst, name=name) + else: + # Python >= 3.9 + super().__init__(origin, nparams, inst=inst, name=name) + self._defaults = defaults + + def __setattr__(self, attr, val): + allowed_attrs = {'_name', '_inst', '_nparams', '_defaults'} + if _special_generic_alias_base is typing._GenericAlias: + # Python <3.9 + allowed_attrs.add("__origin__") + if _is_dunder(attr) or attr in allowed_attrs: + object.__setattr__(self, attr, val) + else: + setattr(self.__origin__, attr, val) + + @typing._tp_cache + def __getitem__(self, params): + if not isinstance(params, tuple): + params = (params,) + msg = "Parameters to generic types must be types." + params = tuple(typing._type_check(p, msg) for p in params) + if ( + self._defaults + and len(params) < self._nparams + and len(params) + len(self._defaults) >= self._nparams + ): + params = (*params, *self._defaults[len(params) - self._nparams:]) + actual_len = len(params) + + if actual_len != self._nparams: + if self._defaults: + expected = f"at least {self._nparams - len(self._defaults)}" + else: + expected = str(self._nparams) + if not self._nparams: + raise TypeError(f"{self} is not a generic class") + raise TypeError( + f"Too {'many' if actual_len > self._nparams else 'few'}" + f" arguments for {self};" + f" actual {actual_len}, expected {expected}" + ) + return self.copy_with(params) + + _NoneType = type(None) + Generator = _SpecialGenericAlias( + collections.abc.Generator, 3, defaults=(_NoneType, _NoneType) + ) + AsyncGenerator = _SpecialGenericAlias( + collections.abc.AsyncGenerator, 2, defaults=(_NoneType,) + ) + ContextManager = _SpecialGenericAlias( + contextlib.AbstractContextManager, + 2, + name="ContextManager", + defaults=(typing.Optional[bool],) + ) + AsyncContextManager = _SpecialGenericAlias( + contextlib.AbstractAsyncContextManager, + 2, + name="AsyncContextManager", + defaults=(typing.Optional[bool],) + ) + + _PROTO_ALLOWLIST = { 'collections.abc': [ 'Callable', 'Awaitable', 'Iterable', 'Iterator', 'AsyncIterable', @@ -427,23 +520,11 @@ _PROTO_ALLOWLIST = { } -_EXCLUDED_ATTRS = { - "__abstractmethods__", "__annotations__", "__weakref__", "_is_protocol", - "_is_runtime_protocol", "__dict__", "__slots__", "__parameters__", - "__orig_bases__", "__module__", "_MutableMapping__marker", "__doc__", - "__subclasshook__", "__orig_class__", "__init__", "__new__", - "__protocol_attrs__", "__non_callable_proto_members__", - "__match_args__", +_EXCLUDED_ATTRS = frozenset(typing.EXCLUDED_ATTRIBUTES) | { + "__match_args__", "__protocol_attrs__", "__non_callable_proto_members__", + "__final__", } -if sys.version_info >= (3, 9): - _EXCLUDED_ATTRS.add("__class_getitem__") - -if sys.version_info >= (3, 12): - _EXCLUDED_ATTRS.add("__type_params__") - -_EXCLUDED_ATTRS = frozenset(_EXCLUDED_ATTRS) - def _get_protocol_attrs(cls): attrs = set() @@ -669,13 +750,18 @@ else: not their type signatures! """ if not issubclass(cls, typing.Generic) or not getattr(cls, '_is_protocol', False): - raise TypeError('@runtime_checkable can be only applied to protocol classes,' - ' got %r' % cls) + raise TypeError(f'@runtime_checkable can be only applied to protocol classes,' + f' got {cls!r}') cls._is_runtime_protocol = True - # Only execute the following block if it's a typing_extensions.Protocol class. - # typing.Protocol classes don't need it. - if isinstance(cls, _ProtocolMeta): + # typing.Protocol classes on <=3.11 break if we execute this block, + # because typing.Protocol classes on <=3.11 don't have a + # `__protocol_attrs__` attribute, and this block relies on the + # `__protocol_attrs__` attribute. Meanwhile, typing.Protocol classes on 3.12.2+ + # break if we *don't* execute this block, because *they* assume that all + # protocol classes have a `__non_callable_proto_members__` attribute + # (which this block sets) + if isinstance(cls, _ProtocolMeta) or sys.version_info >= (3, 12, 2): # PEP 544 prohibits using issubclass() # with protocols that have non-method members. # See gh-113320 for why we compute this attribute here, @@ -792,6 +878,63 @@ def _ensure_subclassable(mro_entries): return inner +_NEEDS_SINGLETONMETA = ( + not hasattr(typing, "NoDefault") or not hasattr(typing, "NoExtraItems") +) + +if _NEEDS_SINGLETONMETA: + class SingletonMeta(type): + def __setattr__(cls, attr, value): + # TypeError is consistent with the behavior of NoneType + raise TypeError( + f"cannot set {attr!r} attribute of immutable type {cls.__name__!r}" + ) + + +if hasattr(typing, "NoDefault"): + NoDefault = typing.NoDefault +else: + class NoDefaultType(metaclass=SingletonMeta): + """The type of the NoDefault singleton.""" + + __slots__ = () + + def __new__(cls): + return globals().get("NoDefault") or object.__new__(cls) + + def __repr__(self): + return "typing_extensions.NoDefault" + + def __reduce__(self): + return "NoDefault" + + NoDefault = NoDefaultType() + del NoDefaultType + +if hasattr(typing, "NoExtraItems"): + NoExtraItems = typing.NoExtraItems +else: + class NoExtraItemsType(metaclass=SingletonMeta): + """The type of the NoExtraItems singleton.""" + + __slots__ = () + + def __new__(cls): + return globals().get("NoExtraItems") or object.__new__(cls) + + def __repr__(self): + return "typing_extensions.NoExtraItems" + + def __reduce__(self): + return "NoExtraItems" + + NoExtraItems = NoExtraItemsType() + del NoExtraItemsType + +if _NEEDS_SINGLETONMETA: + del SingletonMeta + + # Update this to something like >=3.13.0b1 if and when # PEP 728 is implemented in CPython _PEP_728_IMPLEMENTED = False @@ -838,7 +981,9 @@ else: break class _TypedDictMeta(type): - def __new__(cls, name, bases, ns, *, total=True, closed=False): + + def __new__(cls, name, bases, ns, *, total=True, closed=None, + extra_items=NoExtraItems): """Create new typed dict class object. This method is called when TypedDict is subclassed, @@ -850,6 +995,8 @@ else: if type(base) is not _TypedDictMeta and base is not typing.Generic: raise TypeError('cannot inherit from both a TypedDict type ' 'and a non-TypedDict base class') + if closed is not None and extra_items is not NoExtraItems: + raise TypeError(f"Cannot combine closed={closed!r} and extra_items") if any(issubclass(b, typing.Generic) for b in bases): generic_base = (typing.Generic,) @@ -867,7 +1014,13 @@ else: tp_dict.__orig_bases__ = bases annotations = {} - own_annotations = ns.get('__annotations__', {}) + if "__annotations__" in ns: + own_annotations = ns["__annotations__"] + elif "__annotate__" in ns: + # TODO: Use inspect.VALUE here, and make the annotations lazily evaluated + own_annotations = ns["__annotate__"](1) + else: + own_annotations = {} msg = "TypedDict('Name', {f0: t0, f1: t1, ...}); each t must be a type" if _TAKES_MODULE: own_annotations = { @@ -883,7 +1036,7 @@ else: optional_keys = set() readonly_keys = set() mutable_keys = set() - extra_items_type = None + extra_items_type = extra_items for base in bases: base_dict = base.__dict__ @@ -893,13 +1046,12 @@ else: optional_keys.update(base_dict.get('__optional_keys__', ())) readonly_keys.update(base_dict.get('__readonly_keys__', ())) mutable_keys.update(base_dict.get('__mutable_keys__', ())) - base_extra_items_type = base_dict.get('__extra_items__', None) - if base_extra_items_type is not None: - extra_items_type = base_extra_items_type - if closed and extra_items_type is None: - extra_items_type = Never - if closed and "__extra_items__" in own_annotations: + # This was specified in an earlier version of PEP 728. Support + # is retained for backwards compatibility, but only for Python + # 3.13 and lower. + if (closed and sys.version_info < (3, 14) + and "__extra_items__" in own_annotations): annotation_type = own_annotations.pop("__extra_items__") qualifiers = set(_get_typeddict_qualifiers(annotation_type)) if Required in qualifiers: @@ -938,8 +1090,7 @@ else: tp_dict.__optional_keys__ = frozenset(optional_keys) tp_dict.__readonly_keys__ = frozenset(readonly_keys) tp_dict.__mutable_keys__ = frozenset(mutable_keys) - if not hasattr(tp_dict, '__total__'): - tp_dict.__total__ = total + tp_dict.__total__ = total tp_dict.__closed__ = closed tp_dict.__extra_items__ = extra_items_type return tp_dict @@ -955,7 +1106,16 @@ else: _TypedDict = type.__new__(_TypedDictMeta, 'TypedDict', (), {}) @_ensure_subclassable(lambda bases: (_TypedDict,)) - def TypedDict(typename, fields=_marker, /, *, total=True, closed=False, **kwargs): + def TypedDict( + typename, + fields=_marker, + /, + *, + total=True, + closed=None, + extra_items=NoExtraItems, + **kwargs + ): """A simple typed namespace. At runtime it is equivalent to a plain dict. TypedDict creates a dictionary type such that a type checker will expect all @@ -1015,9 +1175,14 @@ else: "using the functional syntax, pass an empty dictionary, e.g. " ) + example + "." warnings.warn(deprecation_msg, DeprecationWarning, stacklevel=2) - if closed is not False and closed is not True: + # Support a field called "closed" + if closed is not False and closed is not True and closed is not None: kwargs["closed"] = closed - closed = False + closed = None + # Or "extra_items" + if extra_items is not NoExtraItems: + kwargs["extra_items"] = extra_items + extra_items = NoExtraItems fields = kwargs elif kwargs: raise TypeError("TypedDict takes either a dict or keyword arguments," @@ -1039,7 +1204,8 @@ else: # Setting correct module is necessary to make typed dict classes pickleable. ns['__module__'] = module - td = _TypedDictMeta(typename, (), ns, total=total, closed=closed) + td = _TypedDictMeta(typename, (), ns, total=total, closed=closed, + extra_items=extra_items) td.__orig_bases__ = (TypedDict,) return td @@ -1151,10 +1317,90 @@ else: # <=3.13 ) else: # 3.8 hint = typing.get_type_hints(obj, globalns=globalns, localns=localns) + if sys.version_info < (3, 11): + _clean_optional(obj, hint, globalns, localns) + if sys.version_info < (3, 9): + # In 3.8 eval_type does not flatten Optional[ForwardRef] correctly + # This will recreate and and cache Unions. + hint = { + k: (t + if get_origin(t) != Union + else Union[t.__args__]) + for k, t in hint.items() + } if include_extras: return hint return {k: _strip_extras(t) for k, t in hint.items()} + _NoneType = type(None) + + def _could_be_inserted_optional(t): + """detects Union[..., None] pattern""" + # 3.8+ compatible checking before _UnionGenericAlias + if get_origin(t) is not Union: + return False + # Assume if last argument is not None they are user defined + if t.__args__[-1] is not _NoneType: + return False + return True + + # < 3.11 + def _clean_optional(obj, hints, globalns=None, localns=None): + # reverts injected Union[..., None] cases from typing.get_type_hints + # when a None default value is used. + # see https://github.com/python/typing_extensions/issues/310 + if not hints or isinstance(obj, type): + return + defaults = typing._get_defaults(obj) # avoid accessing __annotations___ + if not defaults: + return + original_hints = obj.__annotations__ + for name, value in hints.items(): + # Not a Union[..., None] or replacement conditions not fullfilled + if (not _could_be_inserted_optional(value) + or name not in defaults + or defaults[name] is not None + ): + continue + original_value = original_hints[name] + # value=NoneType should have caused a skip above but check for safety + if original_value is None: + original_value = _NoneType + # Forward reference + if isinstance(original_value, str): + if globalns is None: + if isinstance(obj, _types.ModuleType): + globalns = obj.__dict__ + else: + nsobj = obj + # Find globalns for the unwrapped object. + while hasattr(nsobj, '__wrapped__'): + nsobj = nsobj.__wrapped__ + globalns = getattr(nsobj, '__globals__', {}) + if localns is None: + localns = globalns + elif localns is None: + localns = globalns + if sys.version_info < (3, 9): + original_value = ForwardRef(original_value) + else: + original_value = ForwardRef( + original_value, + is_argument=not isinstance(obj, _types.ModuleType) + ) + original_evaluated = typing._eval_type(original_value, globalns, localns) + if sys.version_info < (3, 9) and get_origin(original_evaluated) is Union: + # Union[str, None, "str"] is not reduced to Union[str, None] + original_evaluated = Union[original_evaluated.__args__] + # Compare if values differ. Note that even if equal + # value might be cached by typing._tp_cache contrary to original_evaluated + if original_evaluated != value or ( + # 3.10: ForwardRefs of UnionType might be turned into _UnionGenericAlias + hasattr(_types, "UnionType") + and isinstance(original_evaluated, _types.UnionType) + and not isinstance(value, _types.UnionType) + ): + hints[name] = original_evaluated # Python 3.9+ has PEP 593 (Annotated) if hasattr(typing, 'Annotated'): @@ -1190,7 +1436,7 @@ else: def __reduce__(self): return operator.getitem, ( - Annotated, (self.__origin__,) + self.__metadata__ + Annotated, (self.__origin__, *self.__metadata__) ) def __eq__(self, other): @@ -1316,7 +1562,7 @@ else: get_args(Callable[[], T][int]) == ([], int) """ if isinstance(tp, _AnnotatedAlias): - return (tp.__origin__,) + tp.__metadata__ + return (tp.__origin__, *tp.__metadata__) if isinstance(tp, (typing._GenericAlias, _typing_GenericAlias)): if getattr(tp, "_special", False): return () @@ -1363,16 +1609,8 @@ else: def _set_default(type_param, default): - if isinstance(default, (tuple, list)): - type_param.__default__ = tuple((typing._type_check(d, "Default must be a type") - for d in default)) - elif default != _marker: - if isinstance(type_param, ParamSpec) and default is ...: # ... not valid <3.11 - type_param.__default__ = default - else: - type_param.__default__ = typing._type_check(default, "Default must be a type") - else: - type_param.__default__ = None + type_param.has_default = lambda: default is not NoDefault + type_param.__default__ = default def _set_module(typevarlike): @@ -1395,32 +1633,46 @@ class _TypeVarLikeMeta(type): return isinstance(__instance, cls._backported_typevarlike) -# Add default and infer_variance parameters from PEP 696 and 695 -class TypeVar(metaclass=_TypeVarLikeMeta): - """Type variable.""" +if _PEP_696_IMPLEMENTED: + from typing import TypeVar +else: + # Add default and infer_variance parameters from PEP 696 and 695 + class TypeVar(metaclass=_TypeVarLikeMeta): + """Type variable.""" - _backported_typevarlike = typing.TypeVar + _backported_typevarlike = typing.TypeVar - def __new__(cls, name, *constraints, bound=None, - covariant=False, contravariant=False, - default=_marker, infer_variance=False): - if hasattr(typing, "TypeAliasType"): - # PEP 695 implemented (3.12+), can pass infer_variance to typing.TypeVar - typevar = typing.TypeVar(name, *constraints, bound=bound, - covariant=covariant, contravariant=contravariant, - infer_variance=infer_variance) - else: - typevar = typing.TypeVar(name, *constraints, bound=bound, - covariant=covariant, contravariant=contravariant) - if infer_variance and (covariant or contravariant): - raise ValueError("Variance cannot be specified with infer_variance.") - typevar.__infer_variance__ = infer_variance - _set_default(typevar, default) - _set_module(typevar) - return typevar + def __new__(cls, name, *constraints, bound=None, + covariant=False, contravariant=False, + default=NoDefault, infer_variance=False): + if hasattr(typing, "TypeAliasType"): + # PEP 695 implemented (3.12+), can pass infer_variance to typing.TypeVar + typevar = typing.TypeVar(name, *constraints, bound=bound, + covariant=covariant, contravariant=contravariant, + infer_variance=infer_variance) + else: + typevar = typing.TypeVar(name, *constraints, bound=bound, + covariant=covariant, contravariant=contravariant) + if infer_variance and (covariant or contravariant): + raise ValueError("Variance cannot be specified with infer_variance.") + typevar.__infer_variance__ = infer_variance - def __init_subclass__(cls) -> None: - raise TypeError(f"type '{__name__}.TypeVar' is not an acceptable base type") + _set_default(typevar, default) + _set_module(typevar) + + def _tvar_prepare_subst(alias, args): + if ( + typevar.has_default() + and alias.__parameters__.index(typevar) == len(args) + ): + args += (typevar.__default__,) + return args + + typevar.__typing_prepare_subst__ = _tvar_prepare_subst + return typevar + + def __init_subclass__(cls) -> None: + raise TypeError(f"type '{__name__}.TypeVar' is not an acceptable base type") # Python 3.10+ has PEP 612 @@ -1485,8 +1737,12 @@ else: return NotImplemented return self.__origin__ == other.__origin__ + +if _PEP_696_IMPLEMENTED: + from typing import ParamSpec + # 3.10+ -if hasattr(typing, 'ParamSpec'): +elif hasattr(typing, 'ParamSpec'): # Add default parameter - PEP 696 class ParamSpec(metaclass=_TypeVarLikeMeta): @@ -1496,7 +1752,7 @@ if hasattr(typing, 'ParamSpec'): def __new__(cls, name, *, bound=None, covariant=False, contravariant=False, - infer_variance=False, default=_marker): + infer_variance=False, default=NoDefault): if hasattr(typing, "TypeAliasType"): # PEP 695 implemented, can pass infer_variance to typing.TypeVar paramspec = typing.ParamSpec(name, bound=bound, @@ -1511,6 +1767,24 @@ if hasattr(typing, 'ParamSpec'): _set_default(paramspec, default) _set_module(paramspec) + + def _paramspec_prepare_subst(alias, args): + params = alias.__parameters__ + i = params.index(paramspec) + if i == len(args) and paramspec.has_default(): + args = [*args, paramspec.__default__] + if i >= len(args): + raise TypeError(f"Too few arguments for {alias}") + # Special case where Z[[int, str, bool]] == Z[int, str, bool] in PEP 612. + if len(params) == 1 and not typing._is_param_expr(args[0]): + assert i == 0 + args = (args,) + # Convert lists to tuples to help other libraries cache the results. + elif isinstance(args[i], list): + args = (*args[:i], tuple(args[i]), *args[i + 1:]) + return args + + paramspec.__typing_prepare_subst__ = _paramspec_prepare_subst return paramspec def __init_subclass__(cls) -> None: @@ -1579,8 +1853,8 @@ else: return ParamSpecKwargs(self) def __init__(self, name, *, bound=None, covariant=False, contravariant=False, - infer_variance=False, default=_marker): - super().__init__([self]) + infer_variance=False, default=NoDefault): + list.__init__(self, [self]) self.__name__ = name self.__covariant__ = bool(covariant) self.__contravariant__ = bool(contravariant) @@ -1624,6 +1898,23 @@ else: # 3.8-3.9 if not hasattr(typing, 'Concatenate'): # Inherits from list as a workaround for Callable checks in Python < 3.9.2. + + # 3.9.0-1 + if not hasattr(typing, '_type_convert'): + def _type_convert(arg, module=None, *, allow_special_forms=False): + """For converting None to type(None), and strings to ForwardRef.""" + if arg is None: + return type(None) + if isinstance(arg, str): + if sys.version_info <= (3, 9, 6): + return ForwardRef(arg) + if sys.version_info <= (3, 9, 7): + return ForwardRef(arg, module=module) + return ForwardRef(arg, module=module, is_class=allow_special_forms) + return arg + else: + _type_convert = typing._type_convert + class _ConcatenateGenericAlias(list): # Trick Generic into looking into this for __parameters__. @@ -1655,27 +1946,171 @@ if not hasattr(typing, 'Concatenate'): tp for tp in self.__args__ if isinstance(tp, (typing.TypeVar, ParamSpec)) ) + # 3.8; needed for typing._subst_tvars + # 3.9 used by __getitem__ below + def copy_with(self, params): + if isinstance(params[-1], _ConcatenateGenericAlias): + params = (*params[:-1], *params[-1].__args__) + elif isinstance(params[-1], (list, tuple)): + return (*params[:-1], *params[-1]) + elif (not (params[-1] is ... or isinstance(params[-1], ParamSpec))): + raise TypeError("The last parameter to Concatenate should be a " + "ParamSpec variable or ellipsis.") + return self.__class__(self.__origin__, params) -# 3.8-3.9 + # 3.9; accessed during GenericAlias.__getitem__ when substituting + def __getitem__(self, args): + if self.__origin__ in (Generic, Protocol): + # Can't subscript Generic[...] or Protocol[...]. + raise TypeError(f"Cannot subscript already-subscripted {self}") + if not self.__parameters__: + raise TypeError(f"{self} is not a generic class") + + if not isinstance(args, tuple): + args = (args,) + args = _unpack_args(*(_type_convert(p) for p in args)) + params = self.__parameters__ + for param in params: + prepare = getattr(param, "__typing_prepare_subst__", None) + if prepare is not None: + args = prepare(self, args) + # 3.8 - 3.9 & typing.ParamSpec + elif isinstance(param, ParamSpec): + i = params.index(param) + if ( + i == len(args) + and getattr(param, '__default__', NoDefault) is not NoDefault + ): + args = [*args, param.__default__] + if i >= len(args): + raise TypeError(f"Too few arguments for {self}") + # Special case for Z[[int, str, bool]] == Z[int, str, bool] + if len(params) == 1 and not _is_param_expr(args[0]): + assert i == 0 + args = (args,) + elif ( + isinstance(args[i], list) + # 3.8 - 3.9 + # This class inherits from list do not convert + and not isinstance(args[i], _ConcatenateGenericAlias) + ): + args = (*args[:i], tuple(args[i]), *args[i + 1:]) + + alen = len(args) + plen = len(params) + if alen != plen: + raise TypeError( + f"Too {'many' if alen > plen else 'few'} arguments for {self};" + f" actual {alen}, expected {plen}" + ) + + subst = dict(zip(self.__parameters__, args)) + # determine new args + new_args = [] + for arg in self.__args__: + if isinstance(arg, type): + new_args.append(arg) + continue + if isinstance(arg, TypeVar): + arg = subst[arg] + if ( + (isinstance(arg, typing._GenericAlias) and _is_unpack(arg)) + or ( + hasattr(_types, "GenericAlias") + and isinstance(arg, _types.GenericAlias) + and getattr(arg, "__unpacked__", False) + ) + ): + raise TypeError(f"{arg} is not valid as type argument") + + elif isinstance(arg, + typing._GenericAlias + if not hasattr(_types, "GenericAlias") else + (typing._GenericAlias, _types.GenericAlias) + ): + subparams = arg.__parameters__ + if subparams: + subargs = tuple(subst[x] for x in subparams) + arg = arg[subargs] + new_args.append(arg) + return self.copy_with(tuple(new_args)) + +# 3.10+ +else: + _ConcatenateGenericAlias = typing._ConcatenateGenericAlias + + # 3.10 + if sys.version_info < (3, 11): + + class _ConcatenateGenericAlias(typing._ConcatenateGenericAlias, _root=True): + # needed for checks in collections.abc.Callable to accept this class + __module__ = "typing" + + def copy_with(self, params): + if isinstance(params[-1], (list, tuple)): + return (*params[:-1], *params[-1]) + if isinstance(params[-1], typing._ConcatenateGenericAlias): + params = (*params[:-1], *params[-1].__args__) + elif not (params[-1] is ... or isinstance(params[-1], ParamSpec)): + raise TypeError("The last parameter to Concatenate should be a " + "ParamSpec variable or ellipsis.") + return super(typing._ConcatenateGenericAlias, self).copy_with(params) + + def __getitem__(self, args): + value = super().__getitem__(args) + if isinstance(value, tuple) and any(_is_unpack(t) for t in value): + return tuple(_unpack_args(*(n for n in value))) + return value + + +# 3.8-3.9.2 +class _EllipsisDummy: ... + + +# 3.8-3.10 +def _create_concatenate_alias(origin, parameters): + if parameters[-1] is ... and sys.version_info < (3, 9, 2): + # Hack: Arguments must be types, replace it with one. + parameters = (*parameters[:-1], _EllipsisDummy) + if sys.version_info >= (3, 10, 2): + concatenate = _ConcatenateGenericAlias(origin, parameters, + _typevar_types=(TypeVar, ParamSpec), + _paramspec_tvars=True) + else: + concatenate = _ConcatenateGenericAlias(origin, parameters) + if parameters[-1] is not _EllipsisDummy: + return concatenate + # Remove dummy again + concatenate.__args__ = tuple(p if p is not _EllipsisDummy else ... + for p in concatenate.__args__) + if sys.version_info < (3, 10): + # backport needs __args__ adjustment only + return concatenate + concatenate.__parameters__ = tuple(p for p in concatenate.__parameters__ + if p is not _EllipsisDummy) + return concatenate + + +# 3.8-3.10 @typing._tp_cache def _concatenate_getitem(self, parameters): if parameters == (): raise TypeError("Cannot take a Concatenate of no types.") if not isinstance(parameters, tuple): parameters = (parameters,) - if not isinstance(parameters[-1], ParamSpec): + if not (parameters[-1] is ... or isinstance(parameters[-1], ParamSpec)): raise TypeError("The last parameter to Concatenate should be a " - "ParamSpec variable.") + "ParamSpec variable or ellipsis.") msg = "Concatenate[arg, ...]: each arg must be a type." - parameters = tuple(typing._type_check(p, msg) for p in parameters) - return _ConcatenateGenericAlias(self, parameters) + parameters = (*(typing._type_check(p, msg) for p in parameters[:-1]), + parameters[-1]) + return _create_concatenate_alias(self, parameters) -# 3.10+ -if hasattr(typing, 'Concatenate'): +# 3.11+; Concatenate does not accept ellipsis in 3.10 +if sys.version_info >= (3, 11): Concatenate = typing.Concatenate - _ConcatenateGenericAlias = typing._ConcatenateGenericAlias # noqa: F811 -# 3.9 +# 3.9-3.10 elif sys.version_info[:2] >= (3, 9): @_ExtensionsSpecialForm def Concatenate(self, parameters): @@ -1839,7 +2274,7 @@ elif sys.version_info[:2] >= (3, 9): 1. The return value is a boolean. 2. If the return value is ``True``, the type of its argument - is the intersection of the type inside ``TypeGuard`` and the argument's + is the intersection of the type inside ``TypeIs`` and the argument's previously known type. For example:: @@ -1887,7 +2322,7 @@ else: 1. The return value is a boolean. 2. If the return value is ``True``, the type of its argument - is the intersection of the type inside ``TypeGuard`` and the argument's + is the intersection of the type inside ``TypeIs`` and the argument's previously known type. For example:: @@ -1905,6 +2340,69 @@ else: PEP 742 (Narrowing types with TypeIs). """) +# 3.14+? +if hasattr(typing, 'TypeForm'): + TypeForm = typing.TypeForm +# 3.9 +elif sys.version_info[:2] >= (3, 9): + class _TypeFormForm(_ExtensionsSpecialForm, _root=True): + # TypeForm(X) is equivalent to X but indicates to the type checker + # that the object is a TypeForm. + def __call__(self, obj, /): + return obj + + @_TypeFormForm + def TypeForm(self, parameters): + """A special form representing the value that results from the evaluation + of a type expression. This value encodes the information supplied in the + type expression, and it represents the type described by that type expression. + + When used in a type expression, TypeForm describes a set of type form objects. + It accepts a single type argument, which must be a valid type expression. + ``TypeForm[T]`` describes the set of all type form objects that represent + the type T or types that are assignable to T. + + Usage: + + def cast[T](typ: TypeForm[T], value: Any) -> T: ... + + reveal_type(cast(int, "x")) # int + + See PEP 747 for more information. + """ + item = typing._type_check(parameters, f'{self} accepts only a single type.') + return typing._GenericAlias(self, (item,)) +# 3.8 +else: + class _TypeFormForm(_ExtensionsSpecialForm, _root=True): + def __getitem__(self, parameters): + item = typing._type_check(parameters, + f'{self._name} accepts only a single type') + return typing._GenericAlias(self, (item,)) + + def __call__(self, obj, /): + return obj + + TypeForm = _TypeFormForm( + 'TypeForm', + doc="""A special form representing the value that results from the evaluation + of a type expression. This value encodes the information supplied in the + type expression, and it represents the type described by that type expression. + + When used in a type expression, TypeForm describes a set of type form objects. + It accepts a single type argument, which must be a valid type expression. + ``TypeForm[T]`` describes the set of all type form objects that represent + the type T or types that are assignable to T. + + Usage: + + def cast[T](typ: TypeForm[T], value: Any) -> T: ... + + reveal_type(cast(int, "x")) # int + + See PEP 747 for more information. + """) + # Vendored from cpython typing._SpecialFrom class _SpecialForm(typing._Final, _root=True): @@ -2207,7 +2705,31 @@ elif sys.version_info[:2] >= (3, 9): # 3.9+ self.__doc__ = _UNPACK_DOC class _UnpackAlias(typing._GenericAlias, _root=True): - __class__ = typing.TypeVar + if sys.version_info < (3, 11): + # needed for compatibility with Generic[Unpack[Ts]] + __class__ = typing.TypeVar + + @property + def __typing_unpacked_tuple_args__(self): + assert self.__origin__ is Unpack + assert len(self.__args__) == 1 + arg, = self.__args__ + if isinstance(arg, (typing._GenericAlias, _types.GenericAlias)): + if arg.__origin__ is not tuple: + raise TypeError("Unpack[...] must be used with a tuple type") + return arg.__args__ + return None + + @property + def __typing_is_unpacked_typevartuple__(self): + assert self.__origin__ is Unpack + assert len(self.__args__) == 1 + return isinstance(self.__args__[0], TypeVarTuple) + + def __getitem__(self, args): + if self.__typing_is_unpacked_typevartuple__: + return args + return super().__getitem__(args) @_UnpackSpecialForm def Unpack(self, parameters): @@ -2221,6 +2743,28 @@ else: # 3.8 class _UnpackAlias(typing._GenericAlias, _root=True): __class__ = typing.TypeVar + @property + def __typing_unpacked_tuple_args__(self): + assert self.__origin__ is Unpack + assert len(self.__args__) == 1 + arg, = self.__args__ + if isinstance(arg, typing._GenericAlias): + if arg.__origin__ is not tuple: + raise TypeError("Unpack[...] must be used with a tuple type") + return arg.__args__ + return None + + @property + def __typing_is_unpacked_typevartuple__(self): + assert self.__origin__ is Unpack + assert len(self.__args__) == 1 + return isinstance(self.__args__[0], TypeVarTuple) + + def __getitem__(self, args): + if self.__typing_is_unpacked_typevartuple__: + return args + return super().__getitem__(args) + class _UnpackForm(_ExtensionsSpecialForm, _root=True): def __getitem__(self, parameters): item = typing._type_check(parameters, @@ -2233,7 +2777,21 @@ else: # 3.8 return isinstance(obj, _UnpackAlias) -if hasattr(typing, "TypeVarTuple"): # 3.11+ +def _unpack_args(*args): + newargs = [] + for arg in args: + subargs = getattr(arg, '__typing_unpacked_tuple_args__', None) + if subargs is not None and (not (subargs and subargs[-1] is ...)): + newargs.extend(subargs) + else: + newargs.append(arg) + return newargs + + +if _PEP_696_IMPLEMENTED: + from typing import TypeVarTuple + +elif hasattr(typing, "TypeVarTuple"): # 3.11+ # Add default parameter - PEP 696 class TypeVarTuple(metaclass=_TypeVarLikeMeta): @@ -2241,10 +2799,57 @@ if hasattr(typing, "TypeVarTuple"): # 3.11+ _backported_typevarlike = typing.TypeVarTuple - def __new__(cls, name, *, default=_marker): + def __new__(cls, name, *, default=NoDefault): tvt = typing.TypeVarTuple(name) _set_default(tvt, default) _set_module(tvt) + + def _typevartuple_prepare_subst(alias, args): + params = alias.__parameters__ + typevartuple_index = params.index(tvt) + for param in params[typevartuple_index + 1:]: + if isinstance(param, TypeVarTuple): + raise TypeError( + f"More than one TypeVarTuple parameter in {alias}" + ) + + alen = len(args) + plen = len(params) + left = typevartuple_index + right = plen - typevartuple_index - 1 + var_tuple_index = None + fillarg = None + for k, arg in enumerate(args): + if not isinstance(arg, type): + subargs = getattr(arg, '__typing_unpacked_tuple_args__', None) + if subargs and len(subargs) == 2 and subargs[-1] is ...: + if var_tuple_index is not None: + raise TypeError( + "More than one unpacked " + "arbitrary-length tuple argument" + ) + var_tuple_index = k + fillarg = subargs[0] + if var_tuple_index is not None: + left = min(left, var_tuple_index) + right = min(right, alen - var_tuple_index - 1) + elif left + right > alen: + raise TypeError(f"Too few arguments for {alias};" + f" actual {alen}, expected at least {plen - 1}") + if left == alen - right and tvt.has_default(): + replacement = _unpack_args(tvt.__default__) + else: + replacement = args[left: alen - right] + + return ( + *args[:left], + *([fillarg] * (typevartuple_index - left)), + replacement, + *([fillarg] * (plen - right - left - typevartuple_index - 1)), + *args[alen - right:], + ) + + tvt.__typing_prepare_subst__ = _typevartuple_prepare_subst return tvt def __init_subclass__(self, *args, **kwds): @@ -2301,7 +2906,7 @@ else: # <=3.10 def __iter__(self): yield self.__unpacked__ - def __init__(self, name, *, default=_marker): + def __init__(self, name, *, default=NoDefault): self.__name__ = name _DefaultMixin.__init__(self, default) @@ -2352,6 +2957,12 @@ else: # <=3.10 return obj +if hasattr(typing, "_ASSERT_NEVER_REPR_MAX_LENGTH"): # 3.11+ + _ASSERT_NEVER_REPR_MAX_LENGTH = typing._ASSERT_NEVER_REPR_MAX_LENGTH +else: # <=3.10 + _ASSERT_NEVER_REPR_MAX_LENGTH = 100 + + if hasattr(typing, "assert_never"): # 3.11+ assert_never = typing.assert_never else: # <=3.10 @@ -2375,7 +2986,10 @@ else: # <=3.10 At runtime, this throws an exception when called. """ - raise AssertionError("Expected code to be unreachable") + value = repr(arg) + if len(value) > _ASSERT_NEVER_REPR_MAX_LENGTH: + value = value[:_ASSERT_NEVER_REPR_MAX_LENGTH] + '...' + raise AssertionError(f"Expected code to be unreachable, but got: {value}") if sys.version_info >= (3, 12): # 3.12+ @@ -2628,13 +3242,21 @@ else: __init_subclass__.__deprecated__ = msg return arg elif callable(arg): + import asyncio.coroutines import functools + import inspect @functools.wraps(arg) def wrapper(*args, **kwargs): warnings.warn(msg, category=category, stacklevel=stacklevel + 1) return arg(*args, **kwargs) + if asyncio.coroutines.iscoroutinefunction(arg): + if sys.version_info >= (3, 12): + wrapper = inspect.markcoroutinefunction(wrapper) + else: + wrapper._is_coroutine = asyncio.coroutines._is_coroutine + arg.__deprecated__ = wrapper.__deprecated__ = msg return wrapper else: @@ -2643,6 +3265,24 @@ else: f"a class or callable, not {arg!r}" ) +if sys.version_info < (3, 10): + def _is_param_expr(arg): + return arg is ... or isinstance( + arg, (tuple, list, ParamSpec, _ConcatenateGenericAlias) + ) +else: + def _is_param_expr(arg): + return arg is ... or isinstance( + arg, + ( + tuple, + list, + ParamSpec, + _ConcatenateGenericAlias, + typing._ConcatenateGenericAlias, + ), + ) + # We have to do some monkey patching to deal with the dual nature of # Unpack/TypeVarTuple: @@ -2657,6 +3297,17 @@ if not hasattr(typing, "TypeVarTuple"): This gives a nice error message in case of count mismatch. """ + # If substituting a single ParamSpec with multiple arguments + # we do not check the count + if (inspect.isclass(cls) and issubclass(cls, typing.Generic) + and len(cls.__parameters__) == 1 + and isinstance(cls.__parameters__[0], ParamSpec) + and parameters + and not _is_param_expr(parameters[0]) + ): + # Generic modifies parameters variable, but here we cannot do this + return + if not elen: raise TypeError(f"{cls} is not a generic class") if elen is _marker: @@ -2677,11 +3328,14 @@ if not hasattr(typing, "TypeVarTuple"): if alen < elen: # since we validate TypeVarLike default in _collect_type_vars # or _collect_parameters we can safely check parameters[alen] - if getattr(parameters[alen], '__default__', None) is not None: + if ( + getattr(parameters[alen], '__default__', NoDefault) + is not NoDefault + ): return - num_default_tv = sum(getattr(p, '__default__', None) - is not None for p in parameters) + num_default_tv = sum(getattr(p, '__default__', NoDefault) + is not NoDefault for p in parameters) elen -= num_default_tv @@ -2711,11 +3365,14 @@ else: if alen < elen: # since we validate TypeVarLike default in _collect_type_vars # or _collect_parameters we can safely check parameters[alen] - if getattr(parameters[alen], '__default__', None) is not None: + if ( + getattr(parameters[alen], '__default__', NoDefault) + is not NoDefault + ): return - num_default_tv = sum(getattr(p, '__default__', None) - is not None for p in parameters) + num_default_tv = sum(getattr(p, '__default__', NoDefault) + is not NoDefault for p in parameters) elen -= num_default_tv @@ -2724,7 +3381,42 @@ else: raise TypeError(f"Too {'many' if alen > elen else 'few'} arguments" f" for {cls}; actual {alen}, expected {expect_val}") -typing._check_generic = _check_generic +if not _PEP_696_IMPLEMENTED: + typing._check_generic = _check_generic + + +def _has_generic_or_protocol_as_origin() -> bool: + try: + frame = sys._getframe(2) + # - Catch AttributeError: not all Python implementations have sys._getframe() + # - Catch ValueError: maybe we're called from an unexpected module + # and the call stack isn't deep enough + except (AttributeError, ValueError): + return False # err on the side of leniency + else: + # If we somehow get invoked from outside typing.py, + # also err on the side of leniency + if frame.f_globals.get("__name__") != "typing": + return False + origin = frame.f_locals.get("origin") + # Cannot use "in" because origin may be an object with a buggy __eq__ that + # throws an error. + return origin is typing.Generic or origin is Protocol or origin is typing.Protocol + + +_TYPEVARTUPLE_TYPES = {TypeVarTuple, getattr(typing, "TypeVarTuple", None)} + + +def _is_unpacked_typevartuple(x) -> bool: + if get_origin(x) is not Unpack: + return False + args = get_args(x) + return ( + bool(args) + and len(args) == 1 + and type(args[0]) in _TYPEVARTUPLE_TYPES + ) + # Python 3.11+ _collect_type_vars was renamed to _collect_parameters if hasattr(typing, '_collect_type_vars'): @@ -2737,23 +3429,43 @@ if hasattr(typing, '_collect_type_vars'): if typevar_types is None: typevar_types = typing.TypeVar tvars = [] - # required TypeVarLike cannot appear after TypeVarLike with default + + # A required TypeVarLike cannot appear after a TypeVarLike with a default + # if it was a direct call to `Generic[]` or `Protocol[]` + enforce_default_ordering = _has_generic_or_protocol_as_origin() default_encountered = False + + # Also, a TypeVarLike with a default cannot appear after a TypeVarTuple + type_var_tuple_encountered = False + for t in types: - if ( - isinstance(t, typevar_types) and - t not in tvars and - not _is_unpack(t) + if _is_unpacked_typevartuple(t): + type_var_tuple_encountered = True + elif ( + isinstance(t, typevar_types) and not isinstance(t, _UnpackAlias) + and t not in tvars ): - if getattr(t, '__default__', None) is not None: - default_encountered = True - elif default_encountered: - raise TypeError(f'Type parameter {t!r} without a default' - ' follows type parameter with a default') + if enforce_default_ordering: + has_default = getattr(t, '__default__', NoDefault) is not NoDefault + if has_default: + if type_var_tuple_encountered: + raise TypeError('Type parameter with a default' + ' follows TypeVarTuple') + default_encountered = True + elif default_encountered: + raise TypeError(f'Type parameter {t!r} without a default' + ' follows type parameter with a default') tvars.append(t) if _should_collect_from_parameters(t): tvars.extend([t for t in t.__parameters__ if t not in tvars]) + elif isinstance(t, tuple): + # Collect nested type_vars + # tuple wrapped by _prepare_paramspec_params(cls, params) + for x in t: + for collected in _collect_type_vars([x]): + if collected not in tvars: + tvars.append(collected) return tuple(tvars) typing._collect_type_vars = _collect_type_vars @@ -2767,8 +3479,15 @@ else: assert _collect_parameters((T, Callable[P, T])) == (T, P) """ parameters = [] - # required TypeVarLike cannot appear after TypeVarLike with default + + # A required TypeVarLike cannot appear after a TypeVarLike with default + # if it was a direct call to `Generic[]` or `Protocol[]` + enforce_default_ordering = _has_generic_or_protocol_as_origin() default_encountered = False + + # Also, a TypeVarLike with a default cannot appear after a TypeVarTuple + type_var_tuple_encountered = False + for t in args: if isinstance(t, type): # We don't want __parameters__ descriptor of a bare Python class. @@ -2782,21 +3501,33 @@ else: parameters.append(collected) elif hasattr(t, '__typing_subst__'): if t not in parameters: - if getattr(t, '__default__', None) is not None: - default_encountered = True - elif default_encountered: - raise TypeError(f'Type parameter {t!r} without a default' - ' follows type parameter with a default') + if enforce_default_ordering: + has_default = ( + getattr(t, '__default__', NoDefault) is not NoDefault + ) + + if type_var_tuple_encountered and has_default: + raise TypeError('Type parameter with a default' + ' follows TypeVarTuple') + + if has_default: + default_encountered = True + elif default_encountered: + raise TypeError(f'Type parameter {t!r} without a default' + ' follows type parameter with a default') parameters.append(t) else: + if _is_unpacked_typevartuple(t): + type_var_tuple_encountered = True for x in getattr(t, '__parameters__', ()): if x not in parameters: parameters.append(x) return tuple(parameters) - typing._collect_parameters = _collect_parameters + if not _PEP_696_IMPLEMENTED: + typing._collect_parameters = _collect_parameters # Backport typing.NamedTuple as it exists in Python 3.13. # In 3.11, the ability to define generic `NamedTuple`s was supported. @@ -2830,7 +3561,13 @@ else: raise TypeError( 'can only inherit from a NamedTuple type and Generic') bases = tuple(tuple if base is _NamedTuple else base for base in bases) - types = ns.get('__annotations__', {}) + if "__annotations__" in ns: + types = ns["__annotations__"] + elif "__annotate__" in ns: + # TODO: Use inspect.VALUE here, and make the annotations lazily evaluated + types = ns["__annotate__"](1) + else: + types = {} default_names = [] for field_name in types: if field_name in ns: @@ -2962,7 +3699,7 @@ else: if hasattr(collections.abc, "Buffer"): Buffer = collections.abc.Buffer else: - class Buffer(abc.ABC): + class Buffer(abc.ABC): # noqa: B024 """Base class for classes that implement the buffer protocol. The buffer protocol allows Python objects to expose a low-level @@ -3086,8 +3823,9 @@ else: return typing.Union[other, self] -if hasattr(typing, "TypeAliasType"): +if sys.version_info >= (3, 14): TypeAliasType = typing.TypeAliasType +# 3.8-3.13 else: def _is_unionable(obj): """Corresponds to is_unionable() in unionobject.c in CPython.""" @@ -3098,6 +3836,37 @@ else: TypeAliasType, )) + if sys.version_info < (3, 10): + # Copied and pasted from https://github.com/python/cpython/blob/986a4e1b6fcae7fe7a1d0a26aea446107dd58dd2/Objects/genericaliasobject.c#L568-L582, + # so that we emulate the behaviour of `types.GenericAlias` + # on the latest versions of CPython + _ATTRIBUTE_DELEGATION_EXCLUSIONS = frozenset({ + "__class__", + "__bases__", + "__origin__", + "__args__", + "__unpacked__", + "__parameters__", + "__typing_unpacked_tuple_args__", + "__mro_entries__", + "__reduce_ex__", + "__reduce__", + "__copy__", + "__deepcopy__", + }) + + class _TypeAliasGenericAlias(typing._GenericAlias, _root=True): + def __getattr__(self, attr): + if attr in _ATTRIBUTE_DELEGATION_EXCLUSIONS: + return object.__getattr__(self, attr) + return getattr(self.__origin__, attr) + + if sys.version_info < (3, 9): + def __getitem__(self, item): + result = super().__getitem__(item) + result.__class__ = type(self) + return result + class TypeAliasType: """Create named, parameterized type aliases. @@ -3129,11 +3898,29 @@ else: def __init__(self, name: str, value, *, type_params=()): if not isinstance(name, str): raise TypeError("TypeAliasType name must be a string") + if not isinstance(type_params, tuple): + raise TypeError("type_params must be a tuple") self.__value__ = value self.__type_params__ = type_params + default_value_encountered = False parameters = [] for type_param in type_params: + if ( + not isinstance(type_param, (TypeVar, TypeVarTuple, ParamSpec)) + # 3.8-3.11 + # Unpack Backport passes isinstance(type_param, TypeVar) + or _is_unpack(type_param) + ): + raise TypeError(f"Expected a type param, got {type_param!r}") + has_default = ( + getattr(type_param, '__default__', NoDefault) is not NoDefault + ) + if default_value_encountered and not has_default: + raise TypeError(f"non-default type parameter '{type_param!r}'" + " follows default type parameter") + if has_default: + default_value_encountered = True if isinstance(type_param, TypeVarTuple): parameters.extend(type_param) else: @@ -3170,16 +3957,49 @@ else: def __repr__(self) -> str: return self.__name__ + if sys.version_info < (3, 11): + def _check_single_param(self, param, recursion=0): + # Allow [], [int], [int, str], [int, ...], [int, T] + if param is ...: + return ... + if param is None: + return None + # Note in <= 3.9 _ConcatenateGenericAlias inherits from list + if isinstance(param, list) and recursion == 0: + return [self._check_single_param(arg, recursion+1) + for arg in param] + return typing._type_check( + param, f'Subscripting {self.__name__} requires a type.' + ) + + def _check_parameters(self, parameters): + if sys.version_info < (3, 11): + return tuple( + self._check_single_param(item) + for item in parameters + ) + return tuple(typing._type_check( + item, f'Subscripting {self.__name__} requires a type.' + ) + for item in parameters + ) + def __getitem__(self, parameters): + if not self.__type_params__: + raise TypeError("Only generic type aliases are subscriptable") if not isinstance(parameters, tuple): parameters = (parameters,) - parameters = [ - typing._type_check( - item, f'Subscripting {self.__name__} requires a type.' - ) - for item in parameters - ] - return typing._GenericAlias(self, tuple(parameters)) + # Using 3.9 here will create problems with Concatenate + if sys.version_info >= (3, 10): + return _types.GenericAlias(self, parameters) + type_vars = _collect_type_vars(parameters) + parameters = self._check_parameters(parameters) + alias = _TypeAliasGenericAlias(self, parameters) + # alias.__parameters__ is not complete if Concatenate is present + # as it is converted to a list from which no parameters are extracted. + if alias.__parameters__ != type_vars: + alias.__parameters__ = type_vars + return alias def __reduce__(self): return self.__name__ @@ -3289,6 +4109,421 @@ else: return self.documentation == other.documentation +_CapsuleType = getattr(_types, "CapsuleType", None) + +if _CapsuleType is None: + try: + import _socket + except ImportError: + pass + else: + _CAPI = getattr(_socket, "CAPI", None) + if _CAPI is not None: + _CapsuleType = type(_CAPI) + +if _CapsuleType is not None: + CapsuleType = _CapsuleType + __all__.append("CapsuleType") + + +# Using this convoluted approach so that this keeps working +# whether we end up using PEP 649 as written, PEP 749, or +# some other variation: in any case, inspect.get_annotations +# will continue to exist and will gain a `format` parameter. +_PEP_649_OR_749_IMPLEMENTED = ( + hasattr(inspect, 'get_annotations') + and inspect.get_annotations.__kwdefaults__ is not None + and "format" in inspect.get_annotations.__kwdefaults__ +) + + +class Format(enum.IntEnum): + VALUE = 1 + FORWARDREF = 2 + STRING = 3 + + +if _PEP_649_OR_749_IMPLEMENTED: + get_annotations = inspect.get_annotations +else: + def get_annotations(obj, *, globals=None, locals=None, eval_str=False, + format=Format.VALUE): + """Compute the annotations dict for an object. + + obj may be a callable, class, or module. + Passing in an object of any other type raises TypeError. + + Returns a dict. get_annotations() returns a new dict every time + it's called; calling it twice on the same object will return two + different but equivalent dicts. + + This is a backport of `inspect.get_annotations`, which has been + in the standard library since Python 3.10. See the standard library + documentation for more: + + https://docs.python.org/3/library/inspect.html#inspect.get_annotations + + This backport adds the *format* argument introduced by PEP 649. The + three formats supported are: + * VALUE: the annotations are returned as-is. This is the default and + it is compatible with the behavior on previous Python versions. + * FORWARDREF: return annotations as-is if possible, but replace any + undefined names with ForwardRef objects. The implementation proposed by + PEP 649 relies on language changes that cannot be backported; the + typing-extensions implementation simply returns the same result as VALUE. + * STRING: return annotations as strings, in a format close to the original + source. Again, this behavior cannot be replicated directly in a backport. + As an approximation, typing-extensions retrieves the annotations under + VALUE semantics and then stringifies them. + + The purpose of this backport is to allow users who would like to use + FORWARDREF or STRING semantics once PEP 649 is implemented, but who also + want to support earlier Python versions, to simply write: + + typing_extensions.get_annotations(obj, format=Format.FORWARDREF) + + """ + format = Format(format) + + if eval_str and format is not Format.VALUE: + raise ValueError("eval_str=True is only supported with format=Format.VALUE") + + if isinstance(obj, type): + # class + obj_dict = getattr(obj, '__dict__', None) + if obj_dict and hasattr(obj_dict, 'get'): + ann = obj_dict.get('__annotations__', None) + if isinstance(ann, _types.GetSetDescriptorType): + ann = None + else: + ann = None + + obj_globals = None + module_name = getattr(obj, '__module__', None) + if module_name: + module = sys.modules.get(module_name, None) + if module: + obj_globals = getattr(module, '__dict__', None) + obj_locals = dict(vars(obj)) + unwrap = obj + elif isinstance(obj, _types.ModuleType): + # module + ann = getattr(obj, '__annotations__', None) + obj_globals = obj.__dict__ + obj_locals = None + unwrap = None + elif callable(obj): + # this includes types.Function, types.BuiltinFunctionType, + # types.BuiltinMethodType, functools.partial, functools.singledispatch, + # "class funclike" from Lib/test/test_inspect... on and on it goes. + ann = getattr(obj, '__annotations__', None) + obj_globals = getattr(obj, '__globals__', None) + obj_locals = None + unwrap = obj + elif hasattr(obj, '__annotations__'): + ann = obj.__annotations__ + obj_globals = obj_locals = unwrap = None + else: + raise TypeError(f"{obj!r} is not a module, class, or callable.") + + if ann is None: + return {} + + if not isinstance(ann, dict): + raise ValueError(f"{obj!r}.__annotations__ is neither a dict nor None") + + if not ann: + return {} + + if not eval_str: + if format is Format.STRING: + return { + key: value if isinstance(value, str) else typing._type_repr(value) + for key, value in ann.items() + } + return dict(ann) + + if unwrap is not None: + while True: + if hasattr(unwrap, '__wrapped__'): + unwrap = unwrap.__wrapped__ + continue + if isinstance(unwrap, functools.partial): + unwrap = unwrap.func + continue + break + if hasattr(unwrap, "__globals__"): + obj_globals = unwrap.__globals__ + + if globals is None: + globals = obj_globals + if locals is None: + locals = obj_locals or {} + + # "Inject" type parameters into the local namespace + # (unless they are shadowed by assignments *in* the local namespace), + # as a way of emulating annotation scopes when calling `eval()` + if type_params := getattr(obj, "__type_params__", ()): + locals = {param.__name__: param for param in type_params} | locals + + return_value = {key: + value if not isinstance(value, str) else eval(value, globals, locals) + for key, value in ann.items() } + return return_value + + +if hasattr(typing, "evaluate_forward_ref"): + evaluate_forward_ref = typing.evaluate_forward_ref +else: + # Implements annotationlib.ForwardRef.evaluate + def _eval_with_owner( + forward_ref, *, owner=None, globals=None, locals=None, type_params=None + ): + if forward_ref.__forward_evaluated__: + return forward_ref.__forward_value__ + if getattr(forward_ref, "__cell__", None) is not None: + try: + value = forward_ref.__cell__.cell_contents + except ValueError: + pass + else: + forward_ref.__forward_evaluated__ = True + forward_ref.__forward_value__ = value + return value + if owner is None: + owner = getattr(forward_ref, "__owner__", None) + + if ( + globals is None + and getattr(forward_ref, "__forward_module__", None) is not None + ): + globals = getattr( + sys.modules.get(forward_ref.__forward_module__, None), "__dict__", None + ) + if globals is None: + globals = getattr(forward_ref, "__globals__", None) + if globals is None: + if isinstance(owner, type): + module_name = getattr(owner, "__module__", None) + if module_name: + module = sys.modules.get(module_name, None) + if module: + globals = getattr(module, "__dict__", None) + elif isinstance(owner, _types.ModuleType): + globals = getattr(owner, "__dict__", None) + elif callable(owner): + globals = getattr(owner, "__globals__", None) + + # If we pass None to eval() below, the globals of this module are used. + if globals is None: + globals = {} + + if locals is None: + locals = {} + if isinstance(owner, type): + locals.update(vars(owner)) + + if type_params is None and owner is not None: + # "Inject" type parameters into the local namespace + # (unless they are shadowed by assignments *in* the local namespace), + # as a way of emulating annotation scopes when calling `eval()` + type_params = getattr(owner, "__type_params__", None) + + # type parameters require some special handling, + # as they exist in their own scope + # but `eval()` does not have a dedicated parameter for that scope. + # For classes, names in type parameter scopes should override + # names in the global scope (which here are called `localns`!), + # but should in turn be overridden by names in the class scope + # (which here are called `globalns`!) + if type_params is not None: + globals = dict(globals) + locals = dict(locals) + for param in type_params: + param_name = param.__name__ + if ( + _FORWARD_REF_HAS_CLASS and not forward_ref.__forward_is_class__ + ) or param_name not in globals: + globals[param_name] = param + locals.pop(param_name, None) + + arg = forward_ref.__forward_arg__ + if arg.isidentifier() and not keyword.iskeyword(arg): + if arg in locals: + value = locals[arg] + elif arg in globals: + value = globals[arg] + elif hasattr(builtins, arg): + return getattr(builtins, arg) + else: + raise NameError(arg) + else: + code = forward_ref.__forward_code__ + value = eval(code, globals, locals) + forward_ref.__forward_evaluated__ = True + forward_ref.__forward_value__ = value + return value + + def _lax_type_check( + value, msg, is_argument=True, *, module=None, allow_special_forms=False + ): + """ + A lax Python 3.11+ like version of typing._type_check + """ + if hasattr(typing, "_type_convert"): + if _FORWARD_REF_HAS_CLASS: + type_ = typing._type_convert( + value, + module=module, + allow_special_forms=allow_special_forms, + ) + # module was added with bpo-41249 before is_class (bpo-46539) + elif "__forward_module__" in typing.ForwardRef.__slots__: + type_ = typing._type_convert(value, module=module) + else: + type_ = typing._type_convert(value) + else: + if value is None: + return type(None) + if isinstance(value, str): + return ForwardRef(value) + type_ = value + invalid_generic_forms = (Generic, Protocol) + if not allow_special_forms: + invalid_generic_forms += (ClassVar,) + if is_argument: + invalid_generic_forms += (Final,) + if ( + isinstance(type_, typing._GenericAlias) + and get_origin(type_) in invalid_generic_forms + ): + raise TypeError(f"{type_} is not valid as type argument") from None + if type_ in (Any, LiteralString, NoReturn, Never, Self, TypeAlias): + return type_ + if allow_special_forms and type_ in (ClassVar, Final): + return type_ + if ( + isinstance(type_, (_SpecialForm, typing._SpecialForm)) + or type_ in (Generic, Protocol) + ): + raise TypeError(f"Plain {type_} is not valid as type argument") from None + if type(type_) is tuple: # lax version with tuple instead of callable + raise TypeError(f"{msg} Got {type_!r:.100}.") + return type_ + + def evaluate_forward_ref( + forward_ref, + *, + owner=None, + globals=None, + locals=None, + type_params=None, + format=Format.VALUE, + _recursive_guard=frozenset(), + ): + """Evaluate a forward reference as a type hint. + + This is similar to calling the ForwardRef.evaluate() method, + but unlike that method, evaluate_forward_ref() also: + + * Recursively evaluates forward references nested within the type hint. + * Rejects certain objects that are not valid type hints. + * Replaces type hints that evaluate to None with types.NoneType. + * Supports the *FORWARDREF* and *STRING* formats. + + *forward_ref* must be an instance of ForwardRef. *owner*, if given, + should be the object that holds the annotations that the forward reference + derived from, such as a module, class object, or function. It is used to + infer the namespaces to use for looking up names. *globals* and *locals* + can also be explicitly given to provide the global and local namespaces. + *type_params* is a tuple of type parameters that are in scope when + evaluating the forward reference. This parameter must be provided (though + it may be an empty tuple) if *owner* is not given and the forward reference + does not already have an owner set. *format* specifies the format of the + annotation and is a member of the annotationlib.Format enum. + + """ + if format == Format.STRING: + return forward_ref.__forward_arg__ + if forward_ref.__forward_arg__ in _recursive_guard: + return forward_ref + + # Evaluate the forward reference + try: + value = _eval_with_owner( + forward_ref, + owner=owner, + globals=globals, + locals=locals, + type_params=type_params, + ) + except NameError: + if format == Format.FORWARDREF: + return forward_ref + else: + raise + + msg = "Forward references must evaluate to types." + if not _FORWARD_REF_HAS_CLASS: + allow_special_forms = not forward_ref.__forward_is_argument__ + else: + allow_special_forms = forward_ref.__forward_is_class__ + type_ = _lax_type_check( + value, + msg, + is_argument=forward_ref.__forward_is_argument__, + allow_special_forms=allow_special_forms, + ) + + # Recursively evaluate the type + if isinstance(type_, ForwardRef): + if getattr(type_, "__forward_module__", True) is not None: + globals = None + return evaluate_forward_ref( + type_, + globals=globals, + locals=locals, + type_params=type_params, owner=owner, + _recursive_guard=_recursive_guard, format=format + ) + if sys.version_info < (3, 12, 5) and type_params: + # Make use of type_params + locals = dict(locals) if locals else {} + for tvar in type_params: + if tvar.__name__ not in locals: # lets not overwrite something present + locals[tvar.__name__] = tvar + if sys.version_info < (3, 9): + return typing._eval_type( + type_, + globals, + locals, + ) + if sys.version_info < (3, 12, 5): + return typing._eval_type( + type_, + globals, + locals, + recursive_guard=_recursive_guard | {forward_ref.__forward_arg__}, + ) + if sys.version_info < (3, 14): + return typing._eval_type( + type_, + globals, + locals, + type_params, + recursive_guard=_recursive_guard | {forward_ref.__forward_arg__}, + ) + return typing._eval_type( + type_, + globals, + locals, + type_params, + recursive_guard=_recursive_guard | {forward_ref.__forward_arg__}, + format=format, + owner=owner, + ) + + # Aliases for items that have always been in typing. # Explicitly assign these (rather than using `from typing import *` at the top), # so that we get a CI error if one of these is deleted from typing.py @@ -3302,7 +4537,6 @@ Container = typing.Container Dict = typing.Dict ForwardRef = typing.ForwardRef FrozenSet = typing.FrozenSet -Generator = typing.Generator Generic = typing.Generic Hashable = typing.Hashable IO = typing.IO diff --git a/dist/ba_data/python-site-packages/urllib3/_base_connection.py b/dist/ba_data/python-site-packages/urllib3/_base_connection.py index bb349c7..dc0f318 100644 --- a/dist/ba_data/python-site-packages/urllib3/_base_connection.py +++ b/dist/ba_data/python-site-packages/urllib3/_base_connection.py @@ -12,7 +12,7 @@ _TYPE_BODY = typing.Union[bytes, typing.IO[typing.Any], typing.Iterable[bytes], class ProxyConfig(typing.NamedTuple): ssl_context: ssl.SSLContext | None use_forwarding_for_https: bool - assert_hostname: None | str | Literal[False] + assert_hostname: None | str | typing.Literal[False] assert_fingerprint: str | None @@ -28,7 +28,7 @@ class _ResponseOptions(typing.NamedTuple): if typing.TYPE_CHECKING: import ssl - from typing import Literal, Protocol + from typing import Protocol from .response import BaseHTTPResponse @@ -62,8 +62,7 @@ if typing.TYPE_CHECKING: socket_options: _TYPE_SOCKET_OPTIONS | None = ..., proxy: Url | None = None, proxy_config: ProxyConfig | None = None, - ) -> None: - ... + ) -> None: ... def set_tunnel( self, @@ -71,11 +70,9 @@ if typing.TYPE_CHECKING: port: int | None = None, headers: typing.Mapping[str, str] | None = None, scheme: str = "http", - ) -> None: - ... + ) -> None: ... - def connect(self) -> None: - ... + def connect(self) -> None: ... def request( self, @@ -91,14 +88,11 @@ if typing.TYPE_CHECKING: preload_content: bool = True, decode_content: bool = True, enforce_content_length: bool = True, - ) -> None: - ... + ) -> None: ... - def getresponse(self) -> BaseHTTPResponse: - ... + def getresponse(self) -> BaseHTTPResponse: ... - def close(self) -> None: - ... + def close(self) -> None: ... @property def is_closed(self) -> bool: @@ -124,7 +118,7 @@ if typing.TYPE_CHECKING: # Certificate verification methods cert_reqs: int | str | None - assert_hostname: None | str | Literal[False] + assert_hostname: None | str | typing.Literal[False] assert_fingerprint: str | None ssl_context: ssl.SSLContext | None @@ -155,7 +149,7 @@ if typing.TYPE_CHECKING: proxy: Url | None = None, proxy_config: ProxyConfig | None = None, cert_reqs: int | str | None = None, - assert_hostname: None | str | Literal[False] = None, + assert_hostname: None | str | typing.Literal[False] = None, assert_fingerprint: str | None = None, server_hostname: str | None = None, ssl_context: ssl.SSLContext | None = None, @@ -168,5 +162,4 @@ if typing.TYPE_CHECKING: cert_file: str | None = None, key_file: str | None = None, key_password: str | None = None, - ) -> None: - ... + ) -> None: ... diff --git a/dist/ba_data/python-site-packages/urllib3/_collections.py b/dist/ba_data/python-site-packages/urllib3/_collections.py index 55b0324..1b6c136 100644 --- a/dist/ba_data/python-site-packages/urllib3/_collections.py +++ b/dist/ba_data/python-site-packages/urllib3/_collections.py @@ -13,11 +13,9 @@ if typing.TYPE_CHECKING: from typing_extensions import Self class HasGettableStringKeys(Protocol): - def keys(self) -> typing.Iterator[str]: - ... + def keys(self) -> typing.Iterator[str]: ... - def __getitem__(self, key: str) -> str: - ... + def __getitem__(self, key: str) -> str: ... __all__ = ["RecentlyUsedContainer", "HTTPHeaderDict"] @@ -33,7 +31,7 @@ _DT = typing.TypeVar("_DT") ValidHTTPHeaderSource = typing.Union[ "HTTPHeaderDict", typing.Mapping[str, str], - typing.Iterable[typing.Tuple[str, str]], + typing.Iterable[tuple[str, str]], "HasGettableStringKeys", ] @@ -55,7 +53,7 @@ def ensure_can_construct_http_header_dict( # Similarly to Mapping, full runtime checking of the contents of an Iterable is # expensive, so for the purposes of typechecking, we assume that any Iterable # is the right shape. - return typing.cast(typing.Iterable[typing.Tuple[str, str]], potential) + return typing.cast(typing.Iterable[tuple[str, str]], potential) elif hasattr(potential, "keys") and hasattr(potential, "__getitem__"): return typing.cast("HasGettableStringKeys", potential) else: @@ -155,7 +153,7 @@ class RecentlyUsedContainer(typing.Generic[_KT, _VT], typing.MutableMapping[_KT, return set(self._container.keys()) -class HTTPHeaderDictItemView(typing.Set[typing.Tuple[str, str]]): +class HTTPHeaderDictItemView(set[tuple[str, str]]): """ HTTPHeaderDict is unusual for a Mapping[str, str] in that it has two modes of address. @@ -352,7 +350,7 @@ class HTTPHeaderDict(typing.MutableMapping[str, str]): for key, val in other.items(): self.add(key, val) elif isinstance(other, typing.Iterable): - other = typing.cast(typing.Iterable[typing.Tuple[str, str]], other) + other = typing.cast(typing.Iterable[tuple[str, str]], other) for key, value in other: self.add(key, value) elif hasattr(other, "keys") and hasattr(other, "__getitem__"): @@ -368,12 +366,10 @@ class HTTPHeaderDict(typing.MutableMapping[str, str]): self.add(key, value) @typing.overload - def getlist(self, key: str) -> list[str]: - ... + def getlist(self, key: str) -> list[str]: ... @typing.overload - def getlist(self, key: str, default: _DT) -> list[str] | _DT: - ... + def getlist(self, key: str, default: _DT) -> list[str] | _DT: ... def getlist( self, key: str, default: _Sentinel | _DT = _Sentinel.not_passed @@ -427,7 +423,7 @@ class HTTPHeaderDict(typing.MutableMapping[str, str]): val = other.getlist(key) self._container[key.lower()] = [key, *val] - def copy(self) -> HTTPHeaderDict: + def copy(self) -> Self: clone = type(self)() clone._copy_from(self) return clone @@ -462,7 +458,7 @@ class HTTPHeaderDict(typing.MutableMapping[str, str]): self.extend(maybe_constructable) return self - def __or__(self, other: object) -> HTTPHeaderDict: + def __or__(self, other: object) -> Self: # Supports merging header dicts using operator | # combining items with add instead of __setitem__ maybe_constructable = ensure_can_construct_http_header_dict(other) @@ -472,7 +468,7 @@ class HTTPHeaderDict(typing.MutableMapping[str, str]): result.extend(maybe_constructable) return result - def __ror__(self, other: object) -> HTTPHeaderDict: + def __ror__(self, other: object) -> Self: # Supports merging header dicts using operator | when other is on left side # combining items with add instead of __setitem__ maybe_constructable = ensure_can_construct_http_header_dict(other) diff --git a/dist/ba_data/python-site-packages/urllib3/_request_methods.py b/dist/ba_data/python-site-packages/urllib3/_request_methods.py index 632042f..297c271 100644 --- a/dist/ba_data/python-site-packages/urllib3/_request_methods.py +++ b/dist/ba_data/python-site-packages/urllib3/_request_methods.py @@ -12,7 +12,7 @@ from .response import BaseHTTPResponse __all__ = ["RequestMethods"] _TYPE_ENCODE_URL_FIELDS = typing.Union[ - typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]], + typing.Sequence[tuple[str, typing.Union[str, bytes]]], typing.Mapping[str, typing.Union[str, bytes]], ] @@ -97,8 +97,7 @@ class RequestMethods: an iterable of :class:`str`/:class:`bytes`, or a file-like object. :param fields: - Data to encode and send in the request body. Values are processed - by :func:`urllib.parse.urlencode`. + Data to encode and send in the URL or request body, depending on ``method``. :param headers: Dictionary of custom headers to send, such as User-Agent, @@ -164,7 +163,7 @@ class RequestMethods: The URL to perform the request on. :param fields: - Data to encode and send in the request body. + Data to encode and send in the URL. :param headers: Dictionary of custom headers to send, such as User-Agent, diff --git a/dist/ba_data/python-site-packages/urllib3/_version.py b/dist/ba_data/python-site-packages/urllib3/_version.py index 095cf3c..af6144b 100644 --- a/dist/ba_data/python-site-packages/urllib3/_version.py +++ b/dist/ba_data/python-site-packages/urllib3/_version.py @@ -1,4 +1,16 @@ -# This file is protected via CODEOWNERS -from __future__ import annotations +# file generated by setuptools_scm +# don't change, don't track in version control +TYPE_CHECKING = False +if TYPE_CHECKING: + from typing import Tuple, Union + VERSION_TUPLE = Tuple[Union[int, str], ...] +else: + VERSION_TUPLE = object -__version__ = "2.2.1" +version: str +__version__: str +__version_tuple__: VERSION_TUPLE +version_tuple: VERSION_TUPLE + +__version__ = version = '2.3.0' +__version_tuple__ = version_tuple = (2, 3, 0) diff --git a/dist/ba_data/python-site-packages/urllib3/connection.py b/dist/ba_data/python-site-packages/urllib3/connection.py index aa5c547..591ac40 100644 --- a/dist/ba_data/python-site-packages/urllib3/connection.py +++ b/dist/ba_data/python-site-packages/urllib3/connection.py @@ -1,11 +1,13 @@ from __future__ import annotations import datetime +import http.client import logging import os import re import socket import sys +import threading import typing import warnings from http.client import HTTPConnection as _HTTPConnection @@ -14,13 +16,12 @@ from http.client import ResponseNotReady from socket import timeout as SocketTimeout if typing.TYPE_CHECKING: - from typing import Literal - from .response import HTTPResponse from .util.ssl_ import _TYPE_PEER_CERT_RET_DICT from .util.ssltransport import SSLTransport from ._collections import HTTPHeaderDict +from .http2 import probe as http2_probe from .util.response import assert_header_parsing from .util.timeout import _DEFAULT_TIMEOUT, _TYPE_TIMEOUT, Timeout from .util.util import to_str @@ -77,8 +78,6 @@ RECENT_DATE = datetime.date(2023, 6, 1) _CONTAINS_CONTROL_CHAR_RE = re.compile(r"[^-!#$%&'*+.^_`|~0-9a-zA-Z]") -_HAS_SYS_AUDIT = hasattr(sys, "audit") - class HTTPConnection(_HTTPConnection): """ @@ -138,8 +137,9 @@ class HTTPConnection(_HTTPConnection): timeout: _TYPE_TIMEOUT = _DEFAULT_TIMEOUT, source_address: tuple[str, int] | None = None, blocksize: int = 16384, - socket_options: None - | (connection._TYPE_SOCKET_OPTIONS) = default_socket_options, + socket_options: None | ( + connection._TYPE_SOCKET_OPTIONS + ) = default_socket_options, proxy: Url | None = None, proxy_config: ProxyConfig | None = None, ) -> None: @@ -214,9 +214,7 @@ class HTTPConnection(_HTTPConnection): self, f"Failed to establish a new connection: {e}" ) from e - # Audit hooks are only available in Python 3.8+ - if _HAS_SYS_AUDIT: - sys.audit("http.client.connect", self, self.host, self.port) + sys.audit("http.client.connect", self, self.host, self.port) return sock @@ -234,6 +232,46 @@ class HTTPConnection(_HTTPConnection): super().set_tunnel(host, port=port, headers=headers) self._tunnel_scheme = scheme + if sys.version_info < (3, 11, 4): + + def _tunnel(self) -> None: + _MAXLINE = http.client._MAXLINE # type: ignore[attr-defined] + connect = b"CONNECT %s:%d HTTP/1.0\r\n" % ( # type: ignore[str-format] + self._tunnel_host.encode("ascii"), # type: ignore[union-attr] + self._tunnel_port, + ) + headers = [connect] + for header, value in self._tunnel_headers.items(): # type: ignore[attr-defined] + headers.append(f"{header}: {value}\r\n".encode("latin-1")) + headers.append(b"\r\n") + # Making a single send() call instead of one per line encourages + # the host OS to use a more optimal packet size instead of + # potentially emitting a series of small packets. + self.send(b"".join(headers)) + del headers + + response = self.response_class(self.sock, method=self._method) # type: ignore[attr-defined] + try: + (version, code, message) = response._read_status() # type: ignore[attr-defined] + + if code != http.HTTPStatus.OK: + self.close() + raise OSError(f"Tunnel connection failed: {code} {message.strip()}") + while True: + line = response.fp.readline(_MAXLINE + 1) + if len(line) > _MAXLINE: + raise http.client.LineTooLong("header line") + if not line: + # for sites which EOF without sending a trailer + break + if line in (b"\r\n", b"\n", b""): + break + + if self.debuglevel > 0: + print("header:", line.decode()) + finally: + response.close() + def connect(self) -> None: self.sock = self._new_conn() if self._tunnel_host: @@ -241,7 +279,7 @@ class HTTPConnection(_HTTPConnection): self._has_connected_to_proxy = True # TODO: Fix tunnel so it doesn't depend on self.sock state. - self._tunnel() # type: ignore[attr-defined] + self._tunnel() # If there's a proxy to be connected to we are fully connected. # This is set twice (once above and here) due to forwarding proxies @@ -272,6 +310,13 @@ class HTTPConnection(_HTTPConnection): """ return bool(self.proxy) and self._tunnel_host is None + @property + def proxy_is_tunneling(self) -> bool: + """ + Return True if a tunneling proxy is configured, else return False + """ + return self._tunnel_host is not None + def close(self) -> None: try: super().close() @@ -462,6 +507,11 @@ class HTTPConnection(_HTTPConnection): # This is needed here to avoid circular import errors from .response import HTTPResponse + # Save a reference to the shutdown function before ownership is passed + # to httplib_response + # TODO should we implement it everywhere? + _shutdown = getattr(self.sock, "shutdown", None) + # Get the response from http.client.HTTPConnection httplib_response = super().getresponse() @@ -482,6 +532,7 @@ class HTTPConnection(_HTTPConnection): headers=headers, status=httplib_response.status, version=httplib_response.version, + version_string=getattr(self, "_http_vsn_str", "HTTP/?"), reason=httplib_response.reason, preload_content=resp_options.preload_content, decode_content=resp_options.decode_content, @@ -489,6 +540,7 @@ class HTTPConnection(_HTTPConnection): enforce_content_length=resp_options.enforce_content_length, request_method=resp_options.request_method, request_url=resp_options.request_url, + sock_shutdown=_shutdown, ) return response @@ -509,6 +561,7 @@ class HTTPSConnection(HTTPConnection): ssl_minimum_version: int | None = None ssl_maximum_version: int | None = None assert_fingerprint: str | None = None + _connect_callback: typing.Callable[..., None] | None = None def __init__( self, @@ -518,12 +571,13 @@ class HTTPSConnection(HTTPConnection): timeout: _TYPE_TIMEOUT = _DEFAULT_TIMEOUT, source_address: tuple[str, int] | None = None, blocksize: int = 16384, - socket_options: None - | (connection._TYPE_SOCKET_OPTIONS) = HTTPConnection.default_socket_options, + socket_options: None | ( + connection._TYPE_SOCKET_OPTIONS + ) = HTTPConnection.default_socket_options, proxy: Url | None = None, proxy_config: ProxyConfig | None = None, cert_reqs: int | str | None = None, - assert_hostname: None | str | Literal[False] = None, + assert_hostname: None | str | typing.Literal[False] = None, assert_fingerprint: str | None = None, server_hostname: str | None = None, ssl_context: ssl.SSLContext | None = None, @@ -569,6 +623,7 @@ class HTTPSConnection(HTTPConnection): else: cert_reqs = resolve_cert_reqs(None) self.cert_reqs = cert_reqs + self._connect_callback = None def set_cert( self, @@ -577,7 +632,7 @@ class HTTPSConnection(HTTPConnection): cert_reqs: int | str | None = None, key_password: str | None = None, ca_certs: str | None = None, - assert_hostname: None | str | Literal[False] = None, + assert_hostname: None | str | typing.Literal[False] = None, assert_fingerprint: str | None = None, ca_cert_dir: str | None = None, ca_cert_data: None | str | bytes = None, @@ -612,63 +667,122 @@ class HTTPSConnection(HTTPConnection): self.ca_cert_data = ca_cert_data def connect(self) -> None: - sock: socket.socket | ssl.SSLSocket - self.sock = sock = self._new_conn() - server_hostname: str = self.host - tls_in_tls = False + # Today we don't need to be doing this step before the /actual/ socket + # connection, however in the future we'll need to decide whether to + # create a new socket or re-use an existing "shared" socket as a part + # of the HTTP/2 handshake dance. + if self._tunnel_host is not None and self._tunnel_port is not None: + probe_http2_host = self._tunnel_host + probe_http2_port = self._tunnel_port + else: + probe_http2_host = self.host + probe_http2_port = self.port - # Do we need to establish a tunnel? - if self._tunnel_host is not None: - # We're tunneling to an HTTPS origin so need to do TLS-in-TLS. - if self._tunnel_scheme == "https": - # _connect_tls_proxy will verify and assign proxy_is_verified - self.sock = sock = self._connect_tls_proxy(self.host, sock) - tls_in_tls = True - elif self._tunnel_scheme == "http": - self.proxy_is_verified = False + # Check if the target origin supports HTTP/2. + # If the value comes back as 'None' it means that the current thread + # is probing for HTTP/2 support. Otherwise, we're waiting for another + # probe to complete, or we get a value right away. + target_supports_http2: bool | None + if "h2" in ssl_.ALPN_PROTOCOLS: + target_supports_http2 = http2_probe.acquire_and_get( + host=probe_http2_host, port=probe_http2_port + ) + else: + # If HTTP/2 isn't going to be offered it doesn't matter if + # the target supports HTTP/2. Don't want to make a probe. + target_supports_http2 = False - # If we're tunneling it means we're connected to our proxy. - self._has_connected_to_proxy = True - - self._tunnel() # type: ignore[attr-defined] - # Override the host with the one we're requesting data from. - server_hostname = self._tunnel_host - - if self.server_hostname is not None: - server_hostname = self.server_hostname - - is_time_off = datetime.date.today() < RECENT_DATE - if is_time_off: - warnings.warn( - ( - f"System time is way off (before {RECENT_DATE}). This will probably " - "lead to SSL verification errors" - ), - SystemTimeWarning, + if self._connect_callback is not None: + self._connect_callback( + "before connect", + thread_id=threading.get_ident(), + target_supports_http2=target_supports_http2, ) - # Remove trailing '.' from fqdn hostnames to allow certificate validation - server_hostname_rm_dot = server_hostname.rstrip(".") + try: + sock: socket.socket | ssl.SSLSocket + self.sock = sock = self._new_conn() + server_hostname: str = self.host + tls_in_tls = False - sock_and_verified = _ssl_wrap_socket_and_match_hostname( - sock=sock, - cert_reqs=self.cert_reqs, - ssl_version=self.ssl_version, - ssl_minimum_version=self.ssl_minimum_version, - ssl_maximum_version=self.ssl_maximum_version, - ca_certs=self.ca_certs, - ca_cert_dir=self.ca_cert_dir, - ca_cert_data=self.ca_cert_data, - cert_file=self.cert_file, - key_file=self.key_file, - key_password=self.key_password, - server_hostname=server_hostname_rm_dot, - ssl_context=self.ssl_context, - tls_in_tls=tls_in_tls, - assert_hostname=self.assert_hostname, - assert_fingerprint=self.assert_fingerprint, - ) - self.sock = sock_and_verified.socket + # Do we need to establish a tunnel? + if self.proxy_is_tunneling: + # We're tunneling to an HTTPS origin so need to do TLS-in-TLS. + if self._tunnel_scheme == "https": + # _connect_tls_proxy will verify and assign proxy_is_verified + self.sock = sock = self._connect_tls_proxy(self.host, sock) + tls_in_tls = True + elif self._tunnel_scheme == "http": + self.proxy_is_verified = False + + # If we're tunneling it means we're connected to our proxy. + self._has_connected_to_proxy = True + + self._tunnel() + # Override the host with the one we're requesting data from. + server_hostname = typing.cast(str, self._tunnel_host) + + if self.server_hostname is not None: + server_hostname = self.server_hostname + + is_time_off = datetime.date.today() < RECENT_DATE + if is_time_off: + warnings.warn( + ( + f"System time is way off (before {RECENT_DATE}). This will probably " + "lead to SSL verification errors" + ), + SystemTimeWarning, + ) + + # Remove trailing '.' from fqdn hostnames to allow certificate validation + server_hostname_rm_dot = server_hostname.rstrip(".") + + sock_and_verified = _ssl_wrap_socket_and_match_hostname( + sock=sock, + cert_reqs=self.cert_reqs, + ssl_version=self.ssl_version, + ssl_minimum_version=self.ssl_minimum_version, + ssl_maximum_version=self.ssl_maximum_version, + ca_certs=self.ca_certs, + ca_cert_dir=self.ca_cert_dir, + ca_cert_data=self.ca_cert_data, + cert_file=self.cert_file, + key_file=self.key_file, + key_password=self.key_password, + server_hostname=server_hostname_rm_dot, + ssl_context=self.ssl_context, + tls_in_tls=tls_in_tls, + assert_hostname=self.assert_hostname, + assert_fingerprint=self.assert_fingerprint, + ) + self.sock = sock_and_verified.socket + + # If an error occurs during connection/handshake we may need to release + # our lock so another connection can probe the origin. + except BaseException: + if self._connect_callback is not None: + self._connect_callback( + "after connect failure", + thread_id=threading.get_ident(), + target_supports_http2=target_supports_http2, + ) + + if target_supports_http2 is None: + http2_probe.set_and_release( + host=probe_http2_host, port=probe_http2_port, supports_http2=None + ) + raise + + # If this connection doesn't know if the origin supports HTTP/2 + # we report back to the HTTP/2 probe our result. + if target_supports_http2 is None: + supports_http2 = sock_and_verified.socket.selected_alpn_protocol() == "h2" + http2_probe.set_and_release( + host=probe_http2_host, + port=probe_http2_port, + supports_http2=supports_http2, + ) # Forwarding proxies can never have a verified target since # the proxy is the one doing the verification. Should instead @@ -742,7 +856,7 @@ def _ssl_wrap_socket_and_match_hostname( ca_certs: str | None, ca_cert_dir: str | None, ca_cert_data: None | str | bytes, - assert_hostname: None | str | Literal[False], + assert_hostname: None | str | typing.Literal[False], assert_fingerprint: str | None, server_hostname: str | None, ssl_context: ssl.SSLContext | None, diff --git a/dist/ba_data/python-site-packages/urllib3/connectionpool.py b/dist/ba_data/python-site-packages/urllib3/connectionpool.py index bd58ff1..3a0685b 100644 --- a/dist/ba_data/python-site-packages/urllib3/connectionpool.py +++ b/dist/ba_data/python-site-packages/urllib3/connectionpool.py @@ -53,7 +53,8 @@ from .util.util import to_str if typing.TYPE_CHECKING: import ssl - from typing import Literal + + from typing_extensions import Self from ._base_connection import BaseHTTPConnection, BaseHTTPSConnection @@ -61,8 +62,6 @@ log = logging.getLogger(__name__) _TYPE_TIMEOUT = typing.Union[Timeout, float, _TYPE_DEFAULT, None] -_SelfT = typing.TypeVar("_SelfT") - # Pool objects class ConnectionPool: @@ -95,7 +94,7 @@ class ConnectionPool: def __str__(self) -> str: return f"{type(self).__name__}(host={self.host!r}, port={self.port!r})" - def __enter__(self: _SelfT) -> _SelfT: + def __enter__(self) -> Self: return self def __exit__( @@ -103,7 +102,7 @@ class ConnectionPool: exc_type: type[BaseException] | None, exc_val: BaseException | None, exc_tb: TracebackType | None, - ) -> Literal[False]: + ) -> typing.Literal[False]: self.close() # Return False to re-raise any potential exceptions return False @@ -171,9 +170,7 @@ class HTTPConnectionPool(ConnectionPool, RequestMethods): """ scheme = "http" - ConnectionCls: ( - type[BaseHTTPConnection] | type[BaseHTTPSConnection] - ) = HTTPConnection + ConnectionCls: type[BaseHTTPConnection] | type[BaseHTTPSConnection] = HTTPConnection def __init__( self, @@ -544,8 +541,6 @@ class HTTPConnectionPool(ConnectionPool, RequestMethods): response._connection = response_conn # type: ignore[attr-defined] response._pool = self # type: ignore[attr-defined] - # emscripten connection doesn't have _http_vsn_str - http_version = getattr(conn, "_http_vsn_str", "HTTP/?") log.debug( '%s://%s:%s "%s %s %s" %s %s', self.scheme, @@ -553,8 +548,7 @@ class HTTPConnectionPool(ConnectionPool, RequestMethods): self.port, method, url, - # HTTP version - http_version, + response.version_string, response.status, response.length_remaining, ) @@ -1002,7 +996,7 @@ class HTTPSConnectionPool(HTTPConnectionPool): ssl_version: int | str | None = None, ssl_minimum_version: ssl.TLSVersion | None = None, ssl_maximum_version: ssl.TLSVersion | None = None, - assert_hostname: str | Literal[False] | None = None, + assert_hostname: str | typing.Literal[False] | None = None, assert_fingerprint: str | None = None, ca_cert_dir: str | None = None, **conn_kw: typing.Any, @@ -1141,13 +1135,11 @@ def connection_from_url(url: str, **kw: typing.Any) -> HTTPConnectionPool: @typing.overload -def _normalize_host(host: None, scheme: str | None) -> None: - ... +def _normalize_host(host: None, scheme: str | None) -> None: ... @typing.overload -def _normalize_host(host: str, scheme: str | None) -> str: - ... +def _normalize_host(host: str, scheme: str | None) -> str: ... def _normalize_host(host: str | None, scheme: str | None) -> str | None: diff --git a/dist/ba_data/python-site-packages/urllib3/contrib/__init__.py b/dist/ba_data/python-site-packages/urllib3/contrib/__init__.py index e69de29..8b13789 100644 --- a/dist/ba_data/python-site-packages/urllib3/contrib/__init__.py +++ b/dist/ba_data/python-site-packages/urllib3/contrib/__init__.py @@ -0,0 +1 @@ + diff --git a/dist/ba_data/python-site-packages/urllib3/contrib/emscripten/connection.py b/dist/ba_data/python-site-packages/urllib3/contrib/emscripten/connection.py index 2ceb457..41bfd27 100644 --- a/dist/ba_data/python-site-packages/urllib3/contrib/emscripten/connection.py +++ b/dist/ba_data/python-site-packages/urllib3/contrib/emscripten/connection.py @@ -182,8 +182,9 @@ class EmscriptenHTTPSConnection(EmscriptenHTTPConnection): timeout: _TYPE_TIMEOUT = _DEFAULT_TIMEOUT, source_address: tuple[str, int] | None = None, blocksize: int = 16384, - socket_options: None - | _TYPE_SOCKET_OPTIONS = HTTPConnection.default_socket_options, + socket_options: ( + None | _TYPE_SOCKET_OPTIONS + ) = HTTPConnection.default_socket_options, proxy: Url | None = None, proxy_config: ProxyConfig | None = None, cert_reqs: int | str | None = None, diff --git a/dist/ba_data/python-site-packages/urllib3/contrib/emscripten/fetch.py b/dist/ba_data/python-site-packages/urllib3/contrib/emscripten/fetch.py index 8d197ea..a514306 100644 --- a/dist/ba_data/python-site-packages/urllib3/contrib/emscripten/fetch.py +++ b/dist/ba_data/python-site-packages/urllib3/contrib/emscripten/fetch.py @@ -3,6 +3,16 @@ Support for streaming http requests in emscripten. A few caveats - +If your browser (or Node.js) has WebAssembly JavaScript Promise Integration enabled +https://github.com/WebAssembly/js-promise-integration/blob/main/proposals/js-promise-integration/Overview.md +*and* you launch pyodide using `pyodide.runPythonAsync`, this will fetch data using the +JavaScript asynchronous fetch api (wrapped via `pyodide.ffi.call_sync`). In this case +timeouts and streaming should just work. + +Otherwise, it uses a combination of XMLHttpRequest and a web-worker for streaming. + +This approach has several caveats: + Firstly, you can't do streaming http in the main UI thread, because atomics.wait isn't allowed. Streaming only works if you're running pyodide in a web worker. @@ -14,15 +24,16 @@ operation, so it requires that you have crossOriginIsolation enabled, by serving Cross-Origin-Embedder-Policy: require-corp You can tell if cross origin isolation is successfully enabled by looking at the global crossOriginIsolated variable in -javascript console. If it isn't, streaming requests will fallback to XMLHttpRequest, i.e. getting the whole -request into a buffer and then returning it. it shows a warning in the javascript console in this case. +JavaScript console. If it isn't, streaming requests will fallback to XMLHttpRequest, i.e. getting the whole +request into a buffer and then returning it. it shows a warning in the JavaScript console in this case. Finally, the webworker which does the streaming fetch is created on initial import, but will only be started once control is returned to javascript. Call `await wait_for_streaming_ready()` to wait for streaming fetch. -NB: in this code, there are a lot of javascript objects. They are named js_* +NB: in this code, there are a lot of JavaScript objects. They are named js_* to make it clear what type of object they are. """ + from __future__ import annotations import io @@ -123,17 +134,18 @@ class _ReadStream(io.RawIOBase): return self.is_closed() def close(self) -> None: - if not self.is_closed(): - self.read_len = 0 - self.read_pos = 0 - self.int_buffer = None - self.byte_buffer = None - self._is_closed = True - self.request = None - if self.is_live: - self.worker.postMessage(_obj_from_dict({"close": self.connection_id})) - self.is_live = False - super().close() + if self.is_closed(): + return + self.read_len = 0 + self.read_pos = 0 + self.int_buffer = None + self.byte_buffer = None + self._is_closed = True + self.request = None + if self.is_live: + self.worker.postMessage(_obj_from_dict({"close": self.connection_id})) + self.is_live = False + super().close() def readable(self) -> bool: return True @@ -197,7 +209,8 @@ class _StreamingFetcher: self.streaming_ready = False js_data_blob = js.Blob.new( - [_STREAMING_WORKER_CODE], _obj_from_dict({"type": "application/javascript"}) + to_js([_STREAMING_WORKER_CODE], create_pyproxies=False), + _obj_from_dict({"type": "application/javascript"}), ) def promise_resolver(js_resolve_fn: JsProxy, js_reject_fn: JsProxy) -> None: @@ -288,6 +301,113 @@ class _StreamingFetcher: ) +class _JSPIReadStream(io.RawIOBase): + """ + A read stream that uses pyodide.ffi.run_sync to read from a JavaScript fetch + response. This requires support for WebAssembly JavaScript Promise Integration + in the containing browser, and for pyodide to be launched via runPythonAsync. + + :param js_read_stream: + The JavaScript stream reader + + :param timeout: + Timeout in seconds + + :param request: + The request we're handling + + :param response: + The response this stream relates to + + :param js_abort_controller: + A JavaScript AbortController object, used for timeouts + """ + + def __init__( + self, + js_read_stream: Any, + timeout: float, + request: EmscriptenRequest, + response: EmscriptenResponse, + js_abort_controller: Any, # JavaScript AbortController for timeouts + ): + self.js_read_stream = js_read_stream + self.timeout = timeout + self._is_closed = False + self._is_done = False + self.request: EmscriptenRequest | None = request + self.response: EmscriptenResponse | None = response + self.current_buffer = None + self.current_buffer_pos = 0 + self.js_abort_controller = js_abort_controller + + def __del__(self) -> None: + self.close() + + # this is compatible with _base_connection + def is_closed(self) -> bool: + return self._is_closed + + # for compatibility with RawIOBase + @property + def closed(self) -> bool: + return self.is_closed() + + def close(self) -> None: + if self.is_closed(): + return + self.read_len = 0 + self.read_pos = 0 + self.js_read_stream.cancel() + self.js_read_stream = None + self._is_closed = True + self._is_done = True + self.request = None + self.response = None + super().close() + + def readable(self) -> bool: + return True + + def writable(self) -> bool: + return False + + def seekable(self) -> bool: + return False + + def _get_next_buffer(self) -> bool: + result_js = _run_sync_with_timeout( + self.js_read_stream.read(), + self.timeout, + self.js_abort_controller, + request=self.request, + response=self.response, + ) + if result_js.done: + self._is_done = True + return False + else: + self.current_buffer = result_js.value.to_py() + self.current_buffer_pos = 0 + return True + + def readinto(self, byte_obj: Buffer) -> int: + if self.current_buffer is None: + if not self._get_next_buffer() or self.current_buffer is None: + self.close() + return 0 + ret_length = min( + len(byte_obj), len(self.current_buffer) - self.current_buffer_pos + ) + byte_obj[0:ret_length] = self.current_buffer[ + self.current_buffer_pos : self.current_buffer_pos + ret_length + ] + self.current_buffer_pos += ret_length + if self.current_buffer_pos == len(self.current_buffer): + self.current_buffer = None + return ret_length + + # check if we are in a worker or not def is_in_browser_main_thread() -> bool: return hasattr(js, "window") and hasattr(js, "self") and js.self == js.window @@ -321,7 +441,23 @@ else: _fetcher = None +NODE_JSPI_ERROR = ( + "urllib3 only works in Node.js with pyodide.runPythonAsync" + " and requires the flag --experimental-wasm-stack-switching in " + " versions of node <24." +) + + def send_streaming_request(request: EmscriptenRequest) -> EmscriptenResponse | None: + if has_jspi(): + return send_jspi_request(request, True) + elif is_in_node(): + raise _RequestError( + message=NODE_JSPI_ERROR, + request=request, + response=None, + ) + if _fetcher and streaming_ready(): return _fetcher.send(request) else: @@ -363,6 +499,14 @@ is working, you need to call: 'await urllib3.contrib.emscripten.fetch.wait_for_s def send_request(request: EmscriptenRequest) -> EmscriptenResponse: + if has_jspi(): + return send_jspi_request(request, False) + elif is_in_node(): + raise _RequestError( + message=NODE_JSPI_ERROR, + request=request, + response=None, + ) try: js_xhr = js.XMLHttpRequest.new() @@ -403,6 +547,152 @@ def send_request(request: EmscriptenRequest) -> EmscriptenResponse: raise _RequestError(err.message, request=request) +def send_jspi_request( + request: EmscriptenRequest, streaming: bool +) -> EmscriptenResponse: + """ + Send a request using WebAssembly JavaScript Promise Integration + to wrap the asynchronous JavaScript fetch api (experimental). + + :param request: + Request to send + + :param streaming: + Whether to stream the response + + :return: The response object + :rtype: EmscriptenResponse + """ + timeout = request.timeout + js_abort_controller = js.AbortController.new() + headers = {k: v for k, v in request.headers.items() if k not in HEADERS_TO_IGNORE} + req_body = request.body + fetch_data = { + "headers": headers, + "body": to_js(req_body), + "method": request.method, + "signal": js_abort_controller.signal, + } + # Call JavaScript fetch (async api, returns a promise) + fetcher_promise_js = js.fetch(request.url, _obj_from_dict(fetch_data)) + # Now suspend WebAssembly until we resolve that promise + # or time out. + response_js = _run_sync_with_timeout( + fetcher_promise_js, + timeout, + js_abort_controller, + request=request, + response=None, + ) + headers = {} + header_iter = response_js.headers.entries() + while True: + iter_value_js = header_iter.next() + if getattr(iter_value_js, "done", False): + break + else: + headers[str(iter_value_js.value[0])] = str(iter_value_js.value[1]) + status_code = response_js.status + body: bytes | io.RawIOBase = b"" + + response = EmscriptenResponse( + status_code=status_code, headers=headers, body=b"", request=request + ) + if streaming: + # get via inputstream + if response_js.body is not None: + # get a reader from the fetch response + body_stream_js = response_js.body.getReader() + body = _JSPIReadStream( + body_stream_js, timeout, request, response, js_abort_controller + ) + else: + # get directly via arraybuffer + # n.b. this is another async JavaScript call. + body = _run_sync_with_timeout( + response_js.arrayBuffer(), + timeout, + js_abort_controller, + request=request, + response=response, + ).to_py() + response.body = body + return response + + +def _run_sync_with_timeout( + promise: Any, + timeout: float, + js_abort_controller: Any, + request: EmscriptenRequest | None, + response: EmscriptenResponse | None, +) -> Any: + """ + Await a JavaScript promise synchronously with a timeout which is implemented + via the AbortController + + :param promise: + Javascript promise to await + + :param timeout: + Timeout in seconds + + :param js_abort_controller: + A JavaScript AbortController object, used on timeout + + :param request: + The request being handled + + :param response: + The response being handled (if it exists yet) + + :raises _TimeoutError: If the request times out + :raises _RequestError: If the request raises a JavaScript exception + + :return: The result of awaiting the promise. + """ + timer_id = None + if timeout > 0: + timer_id = js.setTimeout( + js_abort_controller.abort.bind(js_abort_controller), int(timeout * 1000) + ) + try: + from pyodide.ffi import run_sync + + # run_sync here uses WebAssembly JavaScript Promise Integration to + # suspend python until the JavaScript promise resolves. + return run_sync(promise) + except JsException as err: + if err.name == "AbortError": + raise _TimeoutError( + message="Request timed out", request=request, response=response + ) + else: + raise _RequestError(message=err.message, request=request, response=response) + finally: + if timer_id is not None: + js.clearTimeout(timer_id) + + +def has_jspi() -> bool: + """ + Return true if jspi can be used. + + This requires both browser support and also WebAssembly + to be in the correct state - i.e. that the javascript + call into python was async not sync. + + :return: True if jspi can be used. + :rtype: bool + """ + try: + from pyodide.ffi import can_run_sync, run_sync # noqa: F401 + + return bool(can_run_sync()) + except ImportError: + return False + + def streaming_ready() -> bool | None: if _fetcher: return _fetcher.streaming_ready diff --git a/dist/ba_data/python-site-packages/urllib3/contrib/emscripten/response.py b/dist/ba_data/python-site-packages/urllib3/contrib/emscripten/response.py index 303b4ee..b32b402 100644 --- a/dist/ba_data/python-site-packages/urllib3/contrib/emscripten/response.py +++ b/dist/ba_data/python-site-packages/urllib3/contrib/emscripten/response.py @@ -45,6 +45,7 @@ class EmscriptenHttpResponseWrapper(BaseHTTPResponse): status=internal_response.status_code, request_url=url, version=0, + version_string="HTTP/?", reason="", decode_content=True, ) @@ -74,7 +75,7 @@ class EmscriptenHttpResponseWrapper(BaseHTTPResponse): def stream( self, amt: int | None = 2**16, decode_content: bool | None = None - ) -> typing.Generator[bytes, None, None]: + ) -> typing.Generator[bytes]: """ A generator wrapper for the read() method. A call will block until ``amt`` bytes have been read from the connection or until the @@ -155,7 +156,7 @@ class EmscriptenHttpResponseWrapper(BaseHTTPResponse): self.length_is_certain = True # wrap body in IOStream self._response.body = BytesIO(self._response.body) - if amt is not None: + if amt is not None and amt >= 0: # don't cache partial content cache_content = False data = self._response.body.read(amt) @@ -184,7 +185,7 @@ class EmscriptenHttpResponseWrapper(BaseHTTPResponse): self, amt: int | None = None, decode_content: bool | None = None, - ) -> typing.Generator[bytes, None, None]: + ) -> typing.Generator[bytes]: # chunked is handled by browser while True: bytes = self.read(amt, decode_content) @@ -211,13 +212,21 @@ class EmscriptenHttpResponseWrapper(BaseHTTPResponse): def json(self) -> typing.Any: """ - Parses the body of the HTTP response as JSON. + Deserializes the body of the HTTP response as a Python object. - To use a custom JSON decoder pass the result of :attr:`HTTPResponse.data` to the decoder. + The body of the HTTP response must be encoded using UTF-8, as per + `RFC 8529 Section 8.1 `_. - This method can raise either `UnicodeDecodeError` or `json.JSONDecodeError`. + To use a custom JSON decoder pass the result of :attr:`HTTPResponse.data` to + your custom decoder instead. - Read more :ref:`here `. + If the body of the HTTP response is not decodable to UTF-8, a + `UnicodeDecodeError` will be raised. If the body of the HTTP response is not a + valid JSON document, a `json.JSONDecodeError` will be raised. + + Read more :ref:`here `. + + :returns: The body of the HTTP response as a Python object. """ data = self.data.decode("utf-8") return _json.loads(data) @@ -232,7 +241,7 @@ class EmscriptenHttpResponseWrapper(BaseHTTPResponse): self._closed = True @contextmanager - def _error_catcher(self) -> typing.Generator[None, None, None]: + def _error_catcher(self) -> typing.Generator[None]: """ Catch Emscripten specific exceptions thrown by fetch.py, instead re-raising urllib3 variants, so that low-level exceptions diff --git a/dist/ba_data/python-site-packages/urllib3/contrib/pyopenssl.py b/dist/ba_data/python-site-packages/urllib3/contrib/pyopenssl.py index b89a6da..ed65430 100644 --- a/dist/ba_data/python-site-packages/urllib3/contrib/pyopenssl.py +++ b/dist/ba_data/python-site-packages/urllib3/contrib/pyopenssl.py @@ -366,9 +366,11 @@ class WrappedSocket: ) total_sent += sent - def shutdown(self) -> None: - # FIXME rethrow compatible exceptions should we ever use this - self.connection.shutdown() + def shutdown(self, how: int) -> None: + try: + self.connection.shutdown() + except OpenSSL.SSL.Error as e: + raise ssl.SSLError(f"shutdown error: {e!r}") from e def close(self) -> None: self._closed = True @@ -400,6 +402,10 @@ class WrappedSocket: def version(self) -> str: return self.connection.get_protocol_version_name() # type: ignore[no-any-return] + def selected_alpn_protocol(self) -> str | None: + alpn_proto = self.connection.get_alpn_proto_negotiated() + return alpn_proto.decode() if alpn_proto else None + WrappedSocket.makefile = socket_cls.makefile # type: ignore[attr-defined] diff --git a/dist/ba_data/python-site-packages/urllib3/contrib/socks.py b/dist/ba_data/python-site-packages/urllib3/contrib/socks.py index 5a80391..c62b5e0 100644 --- a/dist/ba_data/python-site-packages/urllib3/contrib/socks.py +++ b/dist/ba_data/python-site-packages/urllib3/contrib/socks.py @@ -71,10 +71,8 @@ try: except ImportError: ssl = None # type: ignore[assignment] -from typing import TypedDict - -class _TYPE_SOCKS_OPTIONS(TypedDict): +class _TYPE_SOCKS_OPTIONS(typing.TypedDict): socks_version: int proxy_host: str | None proxy_port: str | None diff --git a/dist/ba_data/python-site-packages/urllib3/exceptions.py b/dist/ba_data/python-site-packages/urllib3/exceptions.py index b0792f0..0394578 100644 --- a/dist/ba_data/python-site-packages/urllib3/exceptions.py +++ b/dist/ba_data/python-site-packages/urllib3/exceptions.py @@ -23,9 +23,7 @@ class HTTPWarning(Warning): """Base warning used by this module.""" -_TYPE_REDUCE_RESULT = typing.Tuple[ - typing.Callable[..., object], typing.Tuple[object, ...] -] +_TYPE_REDUCE_RESULT = tuple[typing.Callable[..., object], tuple[object, ...]] class PoolError(HTTPError): @@ -143,6 +141,10 @@ class NewConnectionError(ConnectTimeoutError, HTTPError): self.conn = conn super().__init__(f"{conn}: {message}") + def __reduce__(self) -> _TYPE_REDUCE_RESULT: + # For pickling purposes. + return self.__class__, (None, None) + @property def pool(self) -> HTTPConnection: warnings.warn( @@ -162,6 +164,10 @@ class NameResolutionError(NewConnectionError): message = f"Failed to resolve '{host}' ({reason})" super().__init__(conn, message) + def __reduce__(self) -> _TYPE_REDUCE_RESULT: + # For pickling purposes. + return self.__class__, (None, None, None) + class EmptyPoolError(PoolError): """Raised when a pool runs out of connections and no more are allowed.""" diff --git a/dist/ba_data/python-site-packages/urllib3/fields.py b/dist/ba_data/python-site-packages/urllib3/fields.py index 3e258a5..97c4730 100644 --- a/dist/ba_data/python-site-packages/urllib3/fields.py +++ b/dist/ba_data/python-site-packages/urllib3/fields.py @@ -7,8 +7,8 @@ import typing _TYPE_FIELD_VALUE = typing.Union[str, bytes] _TYPE_FIELD_VALUE_TUPLE = typing.Union[ _TYPE_FIELD_VALUE, - typing.Tuple[str, _TYPE_FIELD_VALUE], - typing.Tuple[str, _TYPE_FIELD_VALUE, str], + tuple[str, _TYPE_FIELD_VALUE], + tuple[str, _TYPE_FIELD_VALUE, str], ] diff --git a/dist/ba_data/python-site-packages/urllib3/filepost.py b/dist/ba_data/python-site-packages/urllib3/filepost.py index 1c90a21..14f70b0 100644 --- a/dist/ba_data/python-site-packages/urllib3/filepost.py +++ b/dist/ba_data/python-site-packages/urllib3/filepost.py @@ -11,7 +11,7 @@ from .fields import _TYPE_FIELD_VALUE_TUPLE, RequestField writer = codecs.lookup("utf-8")[3] _TYPE_FIELDS_SEQUENCE = typing.Sequence[ - typing.Union[typing.Tuple[str, _TYPE_FIELD_VALUE_TUPLE], RequestField] + typing.Union[tuple[str, _TYPE_FIELD_VALUE_TUPLE], RequestField] ] _TYPE_FIELDS = typing.Union[ _TYPE_FIELDS_SEQUENCE, diff --git a/dist/ba_data/python-site-packages/urllib3/http2/__init__.py b/dist/ba_data/python-site-packages/urllib3/http2/__init__.py new file mode 100644 index 0000000..133e1d8 --- /dev/null +++ b/dist/ba_data/python-site-packages/urllib3/http2/__init__.py @@ -0,0 +1,53 @@ +from __future__ import annotations + +from importlib.metadata import version + +__all__ = [ + "inject_into_urllib3", + "extract_from_urllib3", +] + +import typing + +orig_HTTPSConnection: typing.Any = None + + +def inject_into_urllib3() -> None: + # First check if h2 version is valid + h2_version = version("h2") + if not h2_version.startswith("4."): + raise ImportError( + "urllib3 v2 supports h2 version 4.x.x, currently " + f"the 'h2' module is compiled with {h2_version!r}. " + "See: https://github.com/urllib3/urllib3/issues/3290" + ) + + # Import here to avoid circular dependencies. + from .. import connection as urllib3_connection + from .. import util as urllib3_util + from ..connectionpool import HTTPSConnectionPool + from ..util import ssl_ as urllib3_util_ssl + from .connection import HTTP2Connection + + global orig_HTTPSConnection + orig_HTTPSConnection = urllib3_connection.HTTPSConnection + + HTTPSConnectionPool.ConnectionCls = HTTP2Connection + urllib3_connection.HTTPSConnection = HTTP2Connection # type: ignore[misc] + + # TODO: Offer 'http/1.1' as well, but for testing purposes this is handy. + urllib3_util.ALPN_PROTOCOLS = ["h2"] + urllib3_util_ssl.ALPN_PROTOCOLS = ["h2"] + + +def extract_from_urllib3() -> None: + from .. import connection as urllib3_connection + from .. import util as urllib3_util + from ..connectionpool import HTTPSConnectionPool + from ..util import ssl_ as urllib3_util_ssl + + HTTPSConnectionPool.ConnectionCls = orig_HTTPSConnection + urllib3_connection.HTTPSConnection = orig_HTTPSConnection # type: ignore[misc] + + urllib3_util.ALPN_PROTOCOLS = ["http/1.1"] + urllib3_util_ssl.ALPN_PROTOCOLS = ["http/1.1"] diff --git a/dist/ba_data/python-site-packages/urllib3/http2/connection.py b/dist/ba_data/python-site-packages/urllib3/http2/connection.py new file mode 100644 index 0000000..f486145 --- /dev/null +++ b/dist/ba_data/python-site-packages/urllib3/http2/connection.py @@ -0,0 +1,356 @@ +from __future__ import annotations + +import logging +import re +import threading +import types +import typing + +import h2.config # type: ignore[import-untyped] +import h2.connection # type: ignore[import-untyped] +import h2.events # type: ignore[import-untyped] + +from .._base_connection import _TYPE_BODY +from .._collections import HTTPHeaderDict +from ..connection import HTTPSConnection, _get_default_user_agent +from ..exceptions import ConnectionError +from ..response import BaseHTTPResponse + +orig_HTTPSConnection = HTTPSConnection + +T = typing.TypeVar("T") + +log = logging.getLogger(__name__) + +RE_IS_LEGAL_HEADER_NAME = re.compile(rb"^[!#$%&'*+\-.^_`|~0-9a-z]+$") +RE_IS_ILLEGAL_HEADER_VALUE = re.compile(rb"[\0\x00\x0a\x0d\r\n]|^[ \r\n\t]|[ \r\n\t]$") + + +def _is_legal_header_name(name: bytes) -> bool: + """ + "An implementation that validates fields according to the definitions in Sections + 5.1 and 5.5 of [HTTP] only needs an additional check that field names do not + include uppercase characters." (https://httpwg.org/specs/rfc9113.html#n-field-validity) + + `http.client._is_legal_header_name` does not validate the field name according to the + HTTP 1.1 spec, so we do that here, in addition to checking for uppercase characters. + + This does not allow for the `:` character in the header name, so should not + be used to validate pseudo-headers. + """ + return bool(RE_IS_LEGAL_HEADER_NAME.match(name)) + + +def _is_illegal_header_value(value: bytes) -> bool: + """ + "A field value MUST NOT contain the zero value (ASCII NUL, 0x00), line feed + (ASCII LF, 0x0a), or carriage return (ASCII CR, 0x0d) at any position. A field + value MUST NOT start or end with an ASCII whitespace character (ASCII SP or HTAB, + 0x20 or 0x09)." (https://httpwg.org/specs/rfc9113.html#n-field-validity) + """ + return bool(RE_IS_ILLEGAL_HEADER_VALUE.search(value)) + + +class _LockedObject(typing.Generic[T]): + """ + A wrapper class that hides a specific object behind a lock. + The goal here is to provide a simple way to protect access to an object + that cannot safely be simultaneously accessed from multiple threads. The + intended use of this class is simple: take hold of it with a context + manager, which returns the protected object. + """ + + __slots__ = ( + "lock", + "_obj", + ) + + def __init__(self, obj: T): + self.lock = threading.RLock() + self._obj = obj + + def __enter__(self) -> T: + self.lock.acquire() + return self._obj + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: types.TracebackType | None, + ) -> None: + self.lock.release() + + +class HTTP2Connection(HTTPSConnection): + def __init__( + self, host: str, port: int | None = None, **kwargs: typing.Any + ) -> None: + self._h2_conn = self._new_h2_conn() + self._h2_stream: int | None = None + self._headers: list[tuple[bytes, bytes]] = [] + + if "proxy" in kwargs or "proxy_config" in kwargs: # Defensive: + raise NotImplementedError("Proxies aren't supported with HTTP/2") + + super().__init__(host, port, **kwargs) + + if self._tunnel_host is not None: + raise NotImplementedError("Tunneling isn't supported with HTTP/2") + + def _new_h2_conn(self) -> _LockedObject[h2.connection.H2Connection]: + config = h2.config.H2Configuration(client_side=True) + return _LockedObject(h2.connection.H2Connection(config=config)) + + def connect(self) -> None: + super().connect() + with self._h2_conn as conn: + conn.initiate_connection() + if data_to_send := conn.data_to_send(): + self.sock.sendall(data_to_send) + + def putrequest( # type: ignore[override] + self, + method: str, + url: str, + **kwargs: typing.Any, + ) -> None: + """putrequest + This deviates from the HTTPConnection method signature since we never need to override + sending accept-encoding headers or the host header. + """ + if "skip_host" in kwargs: + raise NotImplementedError("`skip_host` isn't supported") + if "skip_accept_encoding" in kwargs: + raise NotImplementedError("`skip_accept_encoding` isn't supported") + + self._request_url = url or "/" + self._validate_path(url) # type: ignore[attr-defined] + + if ":" in self.host: + authority = f"[{self.host}]:{self.port or 443}" + else: + authority = f"{self.host}:{self.port or 443}" + + self._headers.append((b":scheme", b"https")) + self._headers.append((b":method", method.encode())) + self._headers.append((b":authority", authority.encode())) + self._headers.append((b":path", url.encode())) + + with self._h2_conn as conn: + self._h2_stream = conn.get_next_available_stream_id() + + def putheader(self, header: str | bytes, *values: str | bytes) -> None: + # TODO SKIPPABLE_HEADERS from urllib3 are ignored. + header = header.encode() if isinstance(header, str) else header + header = header.lower() # A lot of upstream code uses capitalized headers. + if not _is_legal_header_name(header): + raise ValueError(f"Illegal header name {str(header)}") + + for value in values: + value = value.encode() if isinstance(value, str) else value + if _is_illegal_header_value(value): + raise ValueError(f"Illegal header value {str(value)}") + self._headers.append((header, value)) + + def endheaders(self, message_body: typing.Any = None) -> None: # type: ignore[override] + if self._h2_stream is None: + raise ConnectionError("Must call `putrequest` first.") + + with self._h2_conn as conn: + conn.send_headers( + stream_id=self._h2_stream, + headers=self._headers, + end_stream=(message_body is None), + ) + if data_to_send := conn.data_to_send(): + self.sock.sendall(data_to_send) + self._headers = [] # Reset headers for the next request. + + def send(self, data: typing.Any) -> None: + """Send data to the server. + `data` can be: `str`, `bytes`, an iterable, or file-like objects + that support a .read() method. + """ + if self._h2_stream is None: + raise ConnectionError("Must call `putrequest` first.") + + with self._h2_conn as conn: + if data_to_send := conn.data_to_send(): + self.sock.sendall(data_to_send) + + if hasattr(data, "read"): # file-like objects + while True: + chunk = data.read(self.blocksize) + if not chunk: + break + if isinstance(chunk, str): + chunk = chunk.encode() # pragma: no cover + conn.send_data(self._h2_stream, chunk, end_stream=False) + if data_to_send := conn.data_to_send(): + self.sock.sendall(data_to_send) + conn.end_stream(self._h2_stream) + return + + if isinstance(data, str): # str -> bytes + data = data.encode() + + try: + if isinstance(data, bytes): + conn.send_data(self._h2_stream, data, end_stream=True) + if data_to_send := conn.data_to_send(): + self.sock.sendall(data_to_send) + else: + for chunk in data: + conn.send_data(self._h2_stream, chunk, end_stream=False) + if data_to_send := conn.data_to_send(): + self.sock.sendall(data_to_send) + conn.end_stream(self._h2_stream) + except TypeError: + raise TypeError( + "`data` should be str, bytes, iterable, or file. got %r" + % type(data) + ) + + def set_tunnel( + self, + host: str, + port: int | None = None, + headers: typing.Mapping[str, str] | None = None, + scheme: str = "http", + ) -> None: + raise NotImplementedError( + "HTTP/2 does not support setting up a tunnel through a proxy" + ) + + def getresponse( # type: ignore[override] + self, + ) -> HTTP2Response: + status = None + data = bytearray() + with self._h2_conn as conn: + end_stream = False + while not end_stream: + # TODO: Arbitrary read value. + if received_data := self.sock.recv(65535): + events = conn.receive_data(received_data) + for event in events: + if isinstance(event, h2.events.ResponseReceived): + headers = HTTPHeaderDict() + for header, value in event.headers: + if header == b":status": + status = int(value.decode()) + else: + headers.add( + header.decode("ascii"), value.decode("ascii") + ) + + elif isinstance(event, h2.events.DataReceived): + data += event.data + conn.acknowledge_received_data( + event.flow_controlled_length, event.stream_id + ) + + elif isinstance(event, h2.events.StreamEnded): + end_stream = True + + if data_to_send := conn.data_to_send(): + self.sock.sendall(data_to_send) + + assert status is not None + return HTTP2Response( + status=status, + headers=headers, + request_url=self._request_url, + data=bytes(data), + ) + + def request( # type: ignore[override] + self, + method: str, + url: str, + body: _TYPE_BODY | None = None, + headers: typing.Mapping[str, str] | None = None, + *, + preload_content: bool = True, + decode_content: bool = True, + enforce_content_length: bool = True, + **kwargs: typing.Any, + ) -> None: + """Send an HTTP/2 request""" + if "chunked" in kwargs: + # TODO this is often present from upstream. + # raise NotImplementedError("`chunked` isn't supported with HTTP/2") + pass + + if self.sock is not None: + self.sock.settimeout(self.timeout) + + self.putrequest(method, url) + + headers = headers or {} + for k, v in headers.items(): + if k.lower() == "transfer-encoding" and v == "chunked": + continue + else: + self.putheader(k, v) + + if b"user-agent" not in dict(self._headers): + self.putheader(b"user-agent", _get_default_user_agent()) + + if body: + self.endheaders(message_body=body) + self.send(body) + else: + self.endheaders() + + def close(self) -> None: + with self._h2_conn as conn: + try: + conn.close_connection() + if data := conn.data_to_send(): + self.sock.sendall(data) + except Exception: + pass + + # Reset all our HTTP/2 connection state. + self._h2_conn = self._new_h2_conn() + self._h2_stream = None + self._headers = [] + + super().close() + + +class HTTP2Response(BaseHTTPResponse): + # TODO: This is a woefully incomplete response object, but works for non-streaming. + def __init__( + self, + status: int, + headers: HTTPHeaderDict, + request_url: str, + data: bytes, + decode_content: bool = False, # TODO: support decoding + ) -> None: + super().__init__( + status=status, + headers=headers, + # Following CPython, we map HTTP versions to major * 10 + minor integers + version=20, + version_string="HTTP/2", + # No reason phrase in HTTP/2 + reason=None, + decode_content=decode_content, + request_url=request_url, + ) + self._data = data + self.length_remaining = 0 + + @property + def data(self) -> bytes: + return self._data + + def get_redirect_location(self) -> None: + return None + + def close(self) -> None: + pass diff --git a/dist/ba_data/python-site-packages/urllib3/http2/probe.py b/dist/ba_data/python-site-packages/urllib3/http2/probe.py new file mode 100644 index 0000000..9ea9007 --- /dev/null +++ b/dist/ba_data/python-site-packages/urllib3/http2/probe.py @@ -0,0 +1,87 @@ +from __future__ import annotations + +import threading + + +class _HTTP2ProbeCache: + __slots__ = ( + "_lock", + "_cache_locks", + "_cache_values", + ) + + def __init__(self) -> None: + self._lock = threading.Lock() + self._cache_locks: dict[tuple[str, int], threading.RLock] = {} + self._cache_values: dict[tuple[str, int], bool | None] = {} + + def acquire_and_get(self, host: str, port: int) -> bool | None: + # By the end of this block we know that + # _cache_[values,locks] is available. + value = None + with self._lock: + key = (host, port) + try: + value = self._cache_values[key] + # If it's a known value we return right away. + if value is not None: + return value + except KeyError: + self._cache_locks[key] = threading.RLock() + self._cache_values[key] = None + + # If the value is unknown, we acquire the lock to signal + # to the requesting thread that the probe is in progress + # or that the current thread needs to return their findings. + key_lock = self._cache_locks[key] + key_lock.acquire() + try: + # If the by the time we get the lock the value has been + # updated we want to return the updated value. + value = self._cache_values[key] + + # In case an exception like KeyboardInterrupt is raised here. + except BaseException as e: # Defensive: + assert not isinstance(e, KeyError) # KeyError shouldn't be possible. + key_lock.release() + raise + + return value + + def set_and_release( + self, host: str, port: int, supports_http2: bool | None + ) -> None: + key = (host, port) + key_lock = self._cache_locks[key] + with key_lock: # Uses an RLock, so can be locked again from same thread. + if supports_http2 is None and self._cache_values[key] is not None: + raise ValueError( + "Cannot reset HTTP/2 support for origin after value has been set." + ) # Defensive: not expected in normal usage + + self._cache_values[key] = supports_http2 + key_lock.release() + + def _values(self) -> dict[tuple[str, int], bool | None]: + """This function is for testing purposes only. Gets the current state of the probe cache""" + with self._lock: + return {k: v for k, v in self._cache_values.items()} + + def _reset(self) -> None: + """This function is for testing purposes only. Reset the cache values""" + with self._lock: + self._cache_locks = {} + self._cache_values = {} + + +_HTTP2_PROBE_CACHE = _HTTP2ProbeCache() + +set_and_release = _HTTP2_PROBE_CACHE.set_and_release +acquire_and_get = _HTTP2_PROBE_CACHE.acquire_and_get +_values = _HTTP2_PROBE_CACHE._values +_reset = _HTTP2_PROBE_CACHE._reset + +__all__ = [ + "set_and_release", + "acquire_and_get", +] diff --git a/dist/ba_data/python-site-packages/urllib3/poolmanager.py b/dist/ba_data/python-site-packages/urllib3/poolmanager.py index 32da0a0..085d1db 100644 --- a/dist/ba_data/python-site-packages/urllib3/poolmanager.py +++ b/dist/ba_data/python-site-packages/urllib3/poolmanager.py @@ -26,7 +26,8 @@ from .util.url import Url, parse_url if typing.TYPE_CHECKING: import ssl - from typing import Literal + + from typing_extensions import Self __all__ = ["PoolManager", "ProxyManager", "proxy_from_url"] @@ -51,8 +52,6 @@ SSL_KEYWORDS = ( # http.client.HTTPConnection & http.client.HTTPSConnection in Python 3.7 _DEFAULT_BLOCKSIZE = 16384 -_SelfT = typing.TypeVar("_SelfT") - class PoolKey(typing.NamedTuple): """ @@ -214,7 +213,7 @@ class PoolManager(RequestMethods): self.pool_classes_by_scheme = pool_classes_by_scheme self.key_fn_by_scheme = key_fn_by_scheme.copy() - def __enter__(self: _SelfT) -> _SelfT: + def __enter__(self) -> Self: return self def __exit__( @@ -222,7 +221,7 @@ class PoolManager(RequestMethods): exc_type: type[BaseException] | None, exc_val: BaseException | None, exc_tb: TracebackType | None, - ) -> Literal[False]: + ) -> typing.Literal[False]: self.clear() # Return False to re-raise any potential exceptions return False @@ -553,7 +552,7 @@ class ProxyManager(PoolManager): proxy_headers: typing.Mapping[str, str] | None = None, proxy_ssl_context: ssl.SSLContext | None = None, use_forwarding_for_https: bool = False, - proxy_assert_hostname: None | str | Literal[False] = None, + proxy_assert_hostname: None | str | typing.Literal[False] = None, proxy_assert_fingerprint: str | None = None, **connection_pool_kw: typing.Any, ) -> None: diff --git a/dist/ba_data/python-site-packages/urllib3/response.py b/dist/ba_data/python-site-packages/urllib3/response.py index d31fac9..66c6a68 100644 --- a/dist/ba_data/python-site-packages/urllib3/response.py +++ b/dist/ba_data/python-site-packages/urllib3/response.py @@ -5,6 +5,7 @@ import io import json as _json import logging import re +import socket import sys import typing import warnings @@ -26,20 +27,21 @@ except ImportError: brotli = None try: - import zstandard as zstd # type: ignore[import-not-found] - + import zstandard as zstd +except (AttributeError, ImportError, ValueError): # Defensive: + HAS_ZSTD = False +else: # The package 'zstandard' added the 'eof' property starting # in v0.18.0 which we require to ensure a complete and # valid zstd stream was fed into the ZstdDecoder. # See: https://github.com/urllib3/urllib3/pull/2624 - _zstd_version = _zstd_version = tuple( + _zstd_version = tuple( map(int, re.search(r"^([0-9]+)\.([0-9]+)", zstd.__version__).groups()) # type: ignore[union-attr] ) if _zstd_version < (0, 18): # Defensive: - zstd = None - -except (AttributeError, ImportError, ValueError): # Defensive: - zstd = None + HAS_ZSTD = False + else: + HAS_ZSTD = True from . import util from ._base_connection import _TYPE_BODY @@ -61,8 +63,6 @@ from .util.response import is_fp_closed, is_response_to_head from .util.retry import Retry if typing.TYPE_CHECKING: - from typing import Literal - from .connectionpool import HTTPConnectionPool log = logging.getLogger(__name__) @@ -163,7 +163,7 @@ if brotli is not None: return b"" -if zstd is not None: +if HAS_ZSTD: class ZstdDecoder(ContentDecoder): def __init__(self) -> None: @@ -183,7 +183,7 @@ if zstd is not None: ret = self._obj.flush() # note: this is a no-op if not self._obj.eof: raise DecodeError("Zstandard data is incomplete") - return ret # type: ignore[no-any-return] + return ret class MultiDecoder(ContentDecoder): @@ -219,7 +219,7 @@ def _get_decoder(mode: str) -> ContentDecoder: if brotli is not None and mode == "br": return BrotliDecoder() - if zstd is not None and mode == "zstd": + if HAS_ZSTD and mode == "zstd": return ZstdDecoder() return DeflateDecoder() @@ -302,7 +302,7 @@ class BaseHTTPResponse(io.IOBase): CONTENT_DECODERS = ["gzip", "x-gzip", "deflate"] if brotli is not None: CONTENT_DECODERS += ["br"] - if zstd is not None: + if HAS_ZSTD: CONTENT_DECODERS += ["zstd"] REDIRECT_STATUSES = [301, 302, 303, 307, 308] @@ -310,7 +310,7 @@ class BaseHTTPResponse(io.IOBase): if brotli is not None: DECODER_ERROR_CLASSES += (brotli.error,) - if zstd is not None: + if HAS_ZSTD: DECODER_ERROR_CLASSES += (zstd.ZstdError,) def __init__( @@ -319,6 +319,7 @@ class BaseHTTPResponse(io.IOBase): headers: typing.Mapping[str, str] | typing.Mapping[bytes, bytes] | None = None, status: int, version: int, + version_string: str, reason: str | None, decode_content: bool, request_url: str | None, @@ -330,6 +331,7 @@ class BaseHTTPResponse(io.IOBase): self.headers = HTTPHeaderDict(headers) # type: ignore[arg-type] self.status = status self.version = version + self.version_string = version_string self.reason = reason self.decode_content = decode_content self._has_decoded_content = False @@ -346,7 +348,7 @@ class BaseHTTPResponse(io.IOBase): self._decoder: ContentDecoder | None = None self.length_remaining: int | None - def get_redirect_location(self) -> str | None | Literal[False]: + def get_redirect_location(self) -> str | None | typing.Literal[False]: """ Should we redirect and where to? @@ -364,13 +366,21 @@ class BaseHTTPResponse(io.IOBase): def json(self) -> typing.Any: """ - Parses the body of the HTTP response as JSON. + Deserializes the body of the HTTP response as a Python object. - To use a custom JSON decoder pass the result of :attr:`HTTPResponse.data` to the decoder. + The body of the HTTP response must be encoded using UTF-8, as per + `RFC 8529 Section 8.1 `_. - This method can raise either `UnicodeDecodeError` or `json.JSONDecodeError`. + To use a custom JSON decoder pass the result of :attr:`HTTPResponse.data` to + your custom decoder instead. - Read more :ref:`here `. + If the body of the HTTP response is not decodable to UTF-8, a + `UnicodeDecodeError` will be raised. If the body of the HTTP response is not a + valid JSON document, a `json.JSONDecodeError` will be raised. + + Read more :ref:`here `. + + :returns: The body of the HTTP response as a Python object. """ data = self.data.decode("utf-8") return _json.loads(data) @@ -431,6 +441,9 @@ class BaseHTTPResponse(io.IOBase): def drain_conn(self) -> None: raise NotImplementedError() + def shutdown(self) -> None: + raise NotImplementedError() + def close(self) -> None: raise NotImplementedError() @@ -567,6 +580,7 @@ class HTTPResponse(BaseHTTPResponse): headers: typing.Mapping[str, str] | typing.Mapping[bytes, bytes] | None = None, status: int = 0, version: int = 0, + version_string: str = "HTTP/?", reason: str | None = None, preload_content: bool = True, decode_content: bool = True, @@ -579,11 +593,13 @@ class HTTPResponse(BaseHTTPResponse): request_method: str | None = None, request_url: str | None = None, auto_close: bool = True, + sock_shutdown: typing.Callable[[int], None] | None = None, ) -> None: super().__init__( headers=headers, status=status, version=version, + version_string=version_string, reason=reason, decode_content=decode_content, request_url=request_url, @@ -607,6 +623,7 @@ class HTTPResponse(BaseHTTPResponse): if hasattr(body, "read"): self._fp = body # type: ignore[assignment] + self._sock_shutdown = sock_shutdown # Are we using the chunked-style of transfer encoding? self.chunk_left: int | None = None @@ -722,7 +739,7 @@ class HTTPResponse(BaseHTTPResponse): return length @contextmanager - def _error_catcher(self) -> typing.Generator[None, None, None]: + def _error_catcher(self) -> typing.Generator[None]: """ Catch low-level python exceptions, instead re-raising urllib3 variants, so that low-level exceptions are not leaked in the @@ -801,7 +818,7 @@ class HTTPResponse(BaseHTTPResponse): happen. The known cases: - * 3.8 <= CPython < 3.9.7 because of a bug + * CPython < 3.9.7 because of a bug https://github.com/urllib3/urllib3/issues/2513#issuecomment-1152559900. * urllib3 injected with pyOpenSSL-backed SSL-support. * CPython < 3.10 only when `amt` does not fit 32-bit int. @@ -926,7 +943,10 @@ class HTTPResponse(BaseHTTPResponse): if decode_content is None: decode_content = self.decode_content - if amt is not None: + if amt and amt < 0: + # Negative numbers and `None` should be treated the same. + amt = None + elif amt is not None: cache_content = False if len(self._decoded_buffer) >= amt: @@ -986,6 +1006,9 @@ class HTTPResponse(BaseHTTPResponse): """ if decode_content is None: decode_content = self.decode_content + if amt and amt < 0: + # Negative numbers and `None` should be treated the same. + amt = None # try and respond without going to the network if self._has_decoded_content: if not decode_content: @@ -1020,7 +1043,7 @@ class HTTPResponse(BaseHTTPResponse): def stream( self, amt: int | None = 2**16, decode_content: bool | None = None - ) -> typing.Generator[bytes, None, None]: + ) -> typing.Generator[bytes]: """ A generator wrapper for the read() method. A call will block until ``amt`` bytes have been read from the connection or until the @@ -1049,7 +1072,14 @@ class HTTPResponse(BaseHTTPResponse): def readable(self) -> bool: return True + def shutdown(self) -> None: + if not self._sock_shutdown: + raise ValueError("Cannot shutdown socket as self._sock_shutdown is not set") + self._sock_shutdown(socket.SHUT_RD) + def close(self) -> None: + self._sock_shutdown = None + if not self.closed and self._fp: self._fp.close() @@ -1142,7 +1172,7 @@ class HTTPResponse(BaseHTTPResponse): def read_chunked( self, amt: int | None = None, decode_content: bool | None = None - ) -> typing.Generator[bytes, None, None]: + ) -> typing.Generator[bytes]: """ Similar to :meth:`HTTPResponse.read`, but with an additional parameter: ``decode_content``. @@ -1180,6 +1210,11 @@ class HTTPResponse(BaseHTTPResponse): if self._fp.fp is None: # type: ignore[union-attr] return None + if amt and amt < 0: + # Negative numbers and `None` should be treated the same, + # but httplib handles only `None` correctly. + amt = None + while True: self._update_chunk_length() if self.chunk_left == 0: diff --git a/dist/ba_data/python-site-packages/urllib3/util/connection.py b/dist/ba_data/python-site-packages/urllib3/util/connection.py index 5c7da73..f92519e 100644 --- a/dist/ba_data/python-site-packages/urllib3/util/connection.py +++ b/dist/ba_data/python-site-packages/urllib3/util/connection.py @@ -6,7 +6,7 @@ import typing from ..exceptions import LocationParseError from .timeout import _DEFAULT_TIMEOUT, _TYPE_TIMEOUT -_TYPE_SOCKET_OPTIONS = typing.Sequence[typing.Tuple[int, int, typing.Union[int, bytes]]] +_TYPE_SOCKET_OPTIONS = list[tuple[int, int, typing.Union[int, bytes]]] if typing.TYPE_CHECKING: from .._base_connection import BaseHTTPConnection diff --git a/dist/ba_data/python-site-packages/urllib3/util/request.py b/dist/ba_data/python-site-packages/urllib3/util/request.py index fe0e348..94392a1 100644 --- a/dist/ba_data/python-site-packages/urllib3/util/request.py +++ b/dist/ba_data/python-site-packages/urllib3/util/request.py @@ -29,7 +29,7 @@ except ImportError: else: ACCEPT_ENCODING += ",br" try: - import zstandard as _unused_module_zstd # type: ignore[import-not-found] # noqa: F401 + import zstandard as _unused_module_zstd # noqa: F401 except ImportError: pass else: @@ -68,8 +68,10 @@ def make_headers( :param accept_encoding: Can be a boolean, list, or string. - ``True`` translates to 'gzip,deflate'. If either the ``brotli`` or - ``brotlicffi`` package is installed 'gzip,deflate,br' is used instead. + ``True`` translates to 'gzip,deflate'. If the dependencies for + Brotli (either the ``brotli`` or ``brotlicffi`` package) and/or Zstandard + (the ``zstandard`` package) algorithms are installed, then their encodings are + included in the string ('br' and 'zstd', respectively). List will get joined by comma. String will be used as provided. @@ -116,14 +118,14 @@ def make_headers( headers["connection"] = "keep-alive" if basic_auth: - headers[ - "authorization" - ] = f"Basic {b64encode(basic_auth.encode('latin-1')).decode()}" + headers["authorization"] = ( + f"Basic {b64encode(basic_auth.encode('latin-1')).decode()}" + ) if proxy_basic_auth: - headers[ - "proxy-authorization" - ] = f"Basic {b64encode(proxy_basic_auth.encode('latin-1')).decode()}" + headers["proxy-authorization"] = ( + f"Basic {b64encode(proxy_basic_auth.encode('latin-1')).decode()}" + ) if disable_cache: headers["cache-control"] = "no-cache" @@ -227,7 +229,7 @@ def body_to_chunks( if not datablock: break if encode: - datablock = datablock.encode("iso-8859-1") + datablock = datablock.encode("utf-8") yield datablock chunks = chunk_readable() diff --git a/dist/ba_data/python-site-packages/urllib3/util/retry.py b/dist/ba_data/python-site-packages/urllib3/util/retry.py index 7572bfd..0456cce 100644 --- a/dist/ba_data/python-site-packages/urllib3/util/retry.py +++ b/dist/ba_data/python-site-packages/urllib3/util/retry.py @@ -21,6 +21,8 @@ from ..exceptions import ( from .util import reraise if typing.TYPE_CHECKING: + from typing_extensions import Self + from ..connectionpool import ConnectionPool from ..response import BaseHTTPResponse @@ -187,7 +189,9 @@ class Retry: RETRY_AFTER_STATUS_CODES = frozenset([413, 429, 503]) #: Default headers to be used for ``remove_headers_on_redirect`` - DEFAULT_REMOVE_HEADERS_ON_REDIRECT = frozenset(["Cookie", "Authorization"]) + DEFAULT_REMOVE_HEADERS_ON_REDIRECT = frozenset( + ["Cookie", "Authorization", "Proxy-Authorization"] + ) #: Default maximum backoff time. DEFAULT_BACKOFF_MAX = 120 @@ -240,7 +244,7 @@ class Retry: ) self.backoff_jitter = backoff_jitter - def new(self, **kw: typing.Any) -> Retry: + def new(self, **kw: typing.Any) -> Self: params = dict( total=self.total, connect=self.connect, @@ -429,7 +433,7 @@ class Retry: error: Exception | None = None, _pool: ConnectionPool | None = None, _stacktrace: TracebackType | None = None, - ) -> Retry: + ) -> Self: """Return a new Retry object with incremented retry counters. :param response: A response object, or None, if the server did not diff --git a/dist/ba_data/python-site-packages/urllib3/util/ssl_.py b/dist/ba_data/python-site-packages/urllib3/util/ssl_.py index b14cf27..278128e 100644 --- a/dist/ba_data/python-site-packages/urllib3/util/ssl_.py +++ b/dist/ba_data/python-site-packages/urllib3/util/ssl_.py @@ -1,5 +1,6 @@ from __future__ import annotations +import hashlib import hmac import os import socket @@ -7,7 +8,6 @@ import sys import typing import warnings from binascii import unhexlify -from hashlib import md5, sha1, sha256 from ..exceptions import ProxySchemeUnsupported, SSLError from .url import _BRACELESS_IPV6_ADDRZ_RE, _IPV4_RE @@ -18,10 +18,13 @@ HAS_NEVER_CHECK_COMMON_NAME = False IS_PYOPENSSL = False ALPN_PROTOCOLS = ["http/1.1"] -_TYPE_VERSION_INFO = typing.Tuple[int, int, int, str, int] +_TYPE_VERSION_INFO = tuple[int, int, int, str, int] # Maps the length of a digest to a possible hash function producing this digest -HASHFUNC_MAP = {32: md5, 40: sha1, 64: sha256} +HASHFUNC_MAP = { + length: getattr(hashlib, algorithm, None) + for length, algorithm in ((32, "md5"), (40, "sha1"), (64, "sha256")) +} def _is_bpo_43522_fixed( @@ -29,7 +32,7 @@ def _is_bpo_43522_fixed( version_info: _TYPE_VERSION_INFO, pypy_version_info: _TYPE_VERSION_INFO | None, ) -> bool: - """Return True for CPython 3.8.9+, 3.9.3+ or 3.10+ and PyPy 7.3.8+ where + """Return True for CPython 3.9.3+ or 3.10+ and PyPy 7.3.8+ where setting SSLContext.hostname_checks_common_name to False works. Outside of CPython and PyPy we don't know which implementations work @@ -45,11 +48,7 @@ def _is_bpo_43522_fixed( elif implementation_name == "cpython": major_minor = version_info[:2] micro = version_info[2] - return ( - (major_minor == (3, 8) and micro >= 9) - or (major_minor == (3, 9) and micro >= 3) - or major_minor >= (3, 10) - ) + return (major_minor == (3, 9) and micro >= 3) or major_minor >= (3, 10) else: # Defensive: return False @@ -78,7 +77,7 @@ def _is_has_never_check_common_name_reliable( if typing.TYPE_CHECKING: from ssl import VerifyMode - from typing import Literal, TypedDict + from typing import TypedDict from .ssltransport import SSLTransport as SSLTransportType @@ -111,7 +110,7 @@ try: # Do we have ssl at all? PROTOCOL_SSLv23 = PROTOCOL_TLS # Setting SSLContext.hostname_checks_common_name = False didn't work before CPython - # 3.8.9, 3.9.3, and 3.10 (but OK on PyPy) or OpenSSL 1.1.1l+ + # 3.9.3, and 3.10 (but OK on PyPy) or OpenSSL 1.1.1l+ if HAS_NEVER_CHECK_COMMON_NAME and not _is_has_never_check_common_name_reliable( OPENSSL_VERSION, OPENSSL_VERSION_NUMBER, @@ -159,9 +158,13 @@ def assert_fingerprint(cert: bytes | None, fingerprint: str) -> None: fingerprint = fingerprint.replace(":", "").lower() digest_length = len(fingerprint) - hashfunc = HASHFUNC_MAP.get(digest_length) - if not hashfunc: + if digest_length not in HASHFUNC_MAP: raise SSLError(f"Fingerprint of invalid length: {fingerprint}") + hashfunc = HASHFUNC_MAP.get(digest_length) + if hashfunc is None: + raise SSLError( + f"Hash function implementation unavailable for fingerprint length: {digest_length}" + ) # We need encode() here for py32; works on py2 and p33. fingerprint_bytes = unhexlify(fingerprint.encode()) @@ -338,15 +341,12 @@ def create_urllib3_context( try: context.hostname_checks_common_name = False - except AttributeError: # Defensive: for CPython < 3.8.9 and 3.9.3; for PyPy < 7.3.8 + except AttributeError: # Defensive: for CPython < 3.9.3; for PyPy < 7.3.8 pass - # Enable logging of TLS session keys via defacto standard environment variable - # 'SSLKEYLOGFILE', if the feature is available (Python 3.8+). Skip empty values. - if hasattr(context, "keylog_filename"): - sslkeylogfile = os.environ.get("SSLKEYLOGFILE") - if sslkeylogfile: - context.keylog_filename = sslkeylogfile + sslkeylogfile = os.environ.get("SSLKEYLOGFILE") + if sslkeylogfile: + context.keylog_filename = sslkeylogfile return context @@ -365,9 +365,8 @@ def ssl_wrap_socket( ca_cert_dir: str | None = ..., key_password: str | None = ..., ca_cert_data: None | str | bytes = ..., - tls_in_tls: Literal[False] = ..., -) -> ssl.SSLSocket: - ... + tls_in_tls: typing.Literal[False] = ..., +) -> ssl.SSLSocket: ... @typing.overload @@ -385,8 +384,7 @@ def ssl_wrap_socket( key_password: str | None = ..., ca_cert_data: None | str | bytes = ..., tls_in_tls: bool = ..., -) -> ssl.SSLSocket | SSLTransportType: - ... +) -> ssl.SSLSocket | SSLTransportType: ... def ssl_wrap_socket( @@ -457,10 +455,7 @@ def ssl_wrap_socket( else: context.load_cert_chain(certfile, keyfile, key_password) - try: - context.set_alpn_protocols(ALPN_PROTOCOLS) - except NotImplementedError: # Defensive: in CI, we always have set_alpn_protocols - pass + context.set_alpn_protocols(ALPN_PROTOCOLS) ssl_sock = _ssl_wrap_socket_impl(sock, context, tls_in_tls, server_hostname) return ssl_sock diff --git a/dist/ba_data/python-site-packages/urllib3/util/ssltransport.py b/dist/ba_data/python-site-packages/urllib3/util/ssltransport.py index fa9f2b3..6d59bc3 100644 --- a/dist/ba_data/python-site-packages/urllib3/util/ssltransport.py +++ b/dist/ba_data/python-site-packages/urllib3/util/ssltransport.py @@ -8,12 +8,11 @@ import typing from ..exceptions import ProxySchemeUnsupported if typing.TYPE_CHECKING: - from typing import Literal + from typing_extensions import Self from .ssl_ import _TYPE_PEER_CERT_RET, _TYPE_PEER_CERT_RET_DICT -_SelfT = typing.TypeVar("_SelfT", bound="SSLTransport") _WriteBuffer = typing.Union[bytearray, memoryview] _ReturnValue = typing.TypeVar("_ReturnValue") @@ -70,7 +69,7 @@ class SSLTransport: # Perform initial handshake. self._ssl_io_loop(self.sslobj.do_handshake) - def __enter__(self: _SelfT) -> _SelfT: + def __enter__(self) -> Self: return self def __exit__(self, *_: typing.Any) -> None: @@ -174,13 +173,11 @@ class SSLTransport: @typing.overload def getpeercert( - self, binary_form: Literal[False] = ... - ) -> _TYPE_PEER_CERT_RET_DICT | None: - ... + self, binary_form: typing.Literal[False] = ... + ) -> _TYPE_PEER_CERT_RET_DICT | None: ... @typing.overload - def getpeercert(self, binary_form: Literal[True]) -> bytes | None: - ... + def getpeercert(self, binary_form: typing.Literal[True]) -> bytes | None: ... def getpeercert(self, binary_form: bool = False) -> _TYPE_PEER_CERT_RET: return self.sslobj.getpeercert(binary_form) # type: ignore[return-value] @@ -194,9 +191,6 @@ class SSLTransport: def selected_alpn_protocol(self) -> str | None: return self.sslobj.selected_alpn_protocol() - def selected_npn_protocol(self) -> str | None: - return self.sslobj.selected_npn_protocol() - def shared_ciphers(self) -> list[tuple[str, str, int]] | None: return self.sslobj.shared_ciphers() @@ -223,13 +217,11 @@ class SSLTransport: # func is sslobj.do_handshake or sslobj.unwrap @typing.overload - def _ssl_io_loop(self, func: typing.Callable[[], None]) -> None: - ... + def _ssl_io_loop(self, func: typing.Callable[[], None]) -> None: ... # func is sslobj.write, arg1 is data @typing.overload - def _ssl_io_loop(self, func: typing.Callable[[bytes], int], arg1: bytes) -> int: - ... + def _ssl_io_loop(self, func: typing.Callable[[bytes], int], arg1: bytes) -> int: ... # func is sslobj.read, arg1 is len, arg2 is buffer @typing.overload @@ -238,8 +230,7 @@ class SSLTransport: func: typing.Callable[[int, bytearray | None], bytes], arg1: int, arg2: bytearray | None, - ) -> bytes: - ... + ) -> bytes: ... def _ssl_io_loop( self, diff --git a/dist/ba_data/python-site-packages/urllib3/util/url.py b/dist/ba_data/python-site-packages/urllib3/util/url.py index d53ea93..db057f1 100644 --- a/dist/ba_data/python-site-packages/urllib3/util/url.py +++ b/dist/ba_data/python-site-packages/urllib3/util/url.py @@ -291,13 +291,11 @@ def _remove_path_dot_segments(path: str) -> str: @typing.overload -def _normalize_host(host: None, scheme: str | None) -> None: - ... +def _normalize_host(host: None, scheme: str | None) -> None: ... @typing.overload -def _normalize_host(host: str, scheme: str | None) -> str: - ... +def _normalize_host(host: str, scheme: str | None) -> str: ... def _normalize_host(host: str | None, scheme: str | None) -> str | None: diff --git a/dist/ba_data/python/babase/__init__.py b/dist/ba_data/python/babase/__init__.py index 61b75ae..4b866d3 100644 --- a/dist/ba_data/python/babase/__init__.py +++ b/dist/ba_data/python/babase/__init__.py @@ -2,26 +2,29 @@ # """Common shared Ballistica components. -For modding purposes, this package should generally not be used directly. -Instead one should use purpose-built packages such as bascenev1 or bauiv1 -which themselves import various functionality from here and reexpose it in -a more focused way. +For modding purposes, this package should generally not be used +directly. Instead one should use purpose-built packages such as +:mod:`bascenev1` or :mod:`bauiv1` which themselves import various +functionality from here and reexpose it in a more focused way. """ # pylint: disable=redefined-builtin +# ba_meta require api 9 + # The stuff we expose here at the top level is our 'public' api for use # from other modules/packages. Code *within* this package should import # things from this package's submodules directly to reduce the chance of # dependency loops. The exception is TYPE_CHECKING blocks and # annotations since those aren't evaluated at runtime. -from efro.util import set_canonical_module_names - +# from efro.util import set_canonical_module_names import _babase from _babase import ( add_clean_frame_callback, + allows_ticket_sales, android_get_external_files_dir, + app_instance_uuid, appname, appnameupper, apptime, @@ -32,6 +35,7 @@ from _babase import ( fullscreen_control_get, fullscreen_control_key_shortcut, fullscreen_control_set, + can_display_chars, charstr, clipboard_get_text, clipboard_has_text, @@ -55,12 +59,15 @@ from _babase import ( get_replays_dir, get_string_height, get_string_width, + get_ui_scale, get_v1_cloud_log_file_path, + get_virtual_safe_area_size, + get_virtual_screen_size, getsimplesound, has_user_run_commands, - have_chars, have_permission, in_logic_thread, + in_main_menu, increment_analytics_count, invoke_main_menu, is_os_playing_music, @@ -86,6 +93,7 @@ from _babase import ( overlay_web_browser_is_supported, overlay_web_browser_open_url, print_load_info, + push_back_press, pushcall, quit, reload_media, @@ -95,7 +103,9 @@ from _babase import ( set_analytics_screen, set_low_level_config_value, set_thread_name, + set_ui_account_state, set_ui_input_device, + set_ui_scale, show_progress_bar, shutdown_suppress_begin, shutdown_suppress_end, @@ -103,14 +113,18 @@ from _babase import ( SimpleSound, supports_max_fps, supports_vsync, + supports_unicode_display, unlock_all_input, + update_internal_logger_levels, user_agent_string, + user_ran_commands, Vec3, workspaces_in_use, ) from babase._accountv2 import AccountV2Handle, AccountV2Subsystem -from babase._app import App +from babase._app import App, AppState +from babase._appcomponent import AppComponentSubsystem from babase._appconfig import commit_app_config from babase._appintent import AppIntent, AppIntentDefault, AppIntentExec from babase._appmode import AppMode @@ -122,8 +136,10 @@ from babase._apputils import ( is_browser_likely_available, garbage_collect, get_remote_app_name, - AppHealthMonitor, + AppHealthSubsystem, + utc_now_cloud, ) +from babase._cloud import CloudSubscription from babase._devconsole import ( DevConsoleTab, DevConsoleTabEntry, @@ -131,8 +147,6 @@ from babase._devconsole import ( ) from babase._emptyappmode import EmptyAppMode from babase._error import ( - print_exception, - print_error, ContextError, NotFoundError, PlayerNotFoundError, @@ -149,7 +163,6 @@ from babase._error import ( DelegateNotFoundError, ) from babase._general import ( - utf8_all, DisplayTime, AppTime, WeakCall, @@ -162,10 +175,10 @@ from babase._general import ( get_type_name, ) from babase._language import Lstr, LanguageSubsystem +from babase._locale import LocaleSubsystem +from babase._logging import balog, applog, lifecyclelog from babase._login import LoginAdapter, LoginInfo -# noinspection PyProtectedMember -# (PyCharm inspection bug?) from babase._mgen.enums import ( Permission, SpecialChar, @@ -175,30 +188,38 @@ from babase._mgen.enums import ( ) from babase._math import normalized_color, is_point_in_box, vec3validate from babase._meta import MetadataSubsystem -from babase._net import get_ip_address_type, DEFAULT_REQUEST_TIMEOUT_SECONDS +from babase._net import ( + get_ip_address_type, + DEFAULT_REQUEST_TIMEOUT_SECONDS, + NetworkSubsystem, +) from babase._plugin import PluginSpec, Plugin, PluginSubsystem from babase._stringedit import StringEditAdapter, StringEditSubsystem from babase._text import timestring +from babase._workspace import WorkspaceSubsystem _babase.app = app = App() -app.postinit() __all__ = [ 'AccountV2Handle', 'AccountV2Subsystem', 'ActivityNotFoundError', 'ActorNotFoundError', + 'allows_ticket_sales', 'add_clean_frame_callback', 'android_get_external_files_dir', 'app', - 'app', 'App', + 'AppComponentSubsystem', 'AppConfig', - 'AppHealthMonitor', + 'AppHealthSubsystem', 'AppIntent', 'AppIntentDefault', 'AppIntentExec', 'AppMode', + 'AppState', + 'app_instance_uuid', + 'applog', 'appname', 'appnameupper', 'AppModeSelector', @@ -209,15 +230,18 @@ __all__ = [ 'apptimer', 'AppTimer', 'asset_loads_allowed', + 'balog', 'Call', 'fullscreen_control_available', 'fullscreen_control_get', 'fullscreen_control_key_shortcut', 'fullscreen_control_set', + 'can_display_chars', 'charstr', 'clipboard_get_text', 'clipboard_has_text', 'clipboard_is_supported', + 'CloudSubscription', 'clipboard_set_text', 'commit_app_config', 'ContextCall', @@ -250,15 +274,18 @@ __all__ = [ 'get_replays_dir', 'get_string_height', 'get_string_width', - 'get_v1_cloud_log_file_path', 'get_type_name', + 'get_ui_scale', + 'get_virtual_safe_area_size', + 'get_virtual_screen_size', + 'get_v1_cloud_log_file_path', 'getclass', 'getsimplesound', 'handle_leftover_v1_cloud_log_file', 'has_user_run_commands', - 'have_chars', 'have_permission', 'in_logic_thread', + 'in_main_menu', 'increment_analytics_count', 'InputDeviceNotFoundError', 'InputType', @@ -269,6 +296,8 @@ __all__ = [ 'is_point_in_box', 'is_xcode_build', 'LanguageSubsystem', + 'LocaleSubsystem', + 'lifecyclelog', 'lock_all_input', 'LoginAdapter', 'LoginInfo', @@ -288,6 +317,7 @@ __all__ = [ 'native_review_request', 'native_review_request_supported', 'native_stack_trace', + 'NetworkSubsystem', 'NodeNotFoundError', 'normalized_color', 'NotFoundError', @@ -302,9 +332,8 @@ __all__ = [ 'Plugin', 'PluginSubsystem', 'PluginSpec', - 'print_error', - 'print_exception', 'print_load_info', + 'push_back_press', 'pushcall', 'quit', 'QuitType', @@ -318,7 +347,9 @@ __all__ = [ 'set_analytics_screen', 'set_low_level_config_value', 'set_thread_name', + 'set_ui_account_state', 'set_ui_input_device', + 'set_ui_scale', 'show_progress_bar', 'shutdown_suppress_begin', 'shutdown_suppress_end', @@ -330,23 +361,29 @@ __all__ = [ 'StringEditSubsystem', 'supports_max_fps', 'supports_vsync', + 'supports_unicode_display', 'TeamNotFoundError', 'timestring', 'UIScale', 'unlock_all_input', + 'update_internal_logger_levels', 'user_agent_string', - 'utf8_all', + 'user_ran_commands', + 'utc_now_cloud', 'Vec3', 'vec3validate', 'verify_object_death', 'WeakCall', 'WidgetNotFoundError', 'workspaces_in_use', + 'WorkspaceSubsystem', 'DEFAULT_REQUEST_TIMEOUT_SECONDS', ] # We want stuff to show up as babase.Foo instead of babase._sub.Foo. -set_canonical_module_names(globals()) +# UPDATE: Trying without this for now. Seems like this might cause more +# harm than good. Can flip it back on if it is missed. +# set_canonical_module_names(globals()) # Allow the native layer to wrap a few things up. _babase.reached_end_of_babase() diff --git a/dist/ba_data/python/babase/_accountv2.py b/dist/ba_data/python/babase/_accountv2.py index f6544a5..d885c56 100644 --- a/dist/ba_data/python/babase/_accountv2.py +++ b/dist/ba_data/python/babase/_accountv2.py @@ -10,31 +10,43 @@ from functools import partial from typing import TYPE_CHECKING, assert_never from efro.error import CommunicationError +from efro.call import CallbackSet from bacommon.login import LoginType import _babase if TYPE_CHECKING: - from typing import Any + from typing import Any, Callable from babase._login import LoginAdapter, LoginInfo - -DEBUG_LOG = False +logger = logging.getLogger('ba.accountv2') class AccountV2Subsystem: """Subsystem for modern account handling in the app. - Category: **App Classes** - - Access the single shared instance of this class at 'ba.app.plus.accounts'. + Access the single shared instance of this class via the + :attr:`~baplus.PlusAppSubsystem.accounts` attr on the + :class:`~baplus.PlusAppSubsystem` class. """ def __init__(self) -> None: + assert _babase.in_logic_thread() + from babase._login import LoginAdapterGPGS, LoginAdapterGameCenter - # Whether or not everything related to an initial login - # (or lack thereof) has completed. This includes things like + # Register to be informed when connectivity changes. + plus = _babase.app.plus + self._connectivity_changed_cb = ( + None + if plus is None + else plus.cloud.on_connectivity_changed_callbacks.register( + self._on_cloud_connectivity_changed + ) + ) + + # Whether or not everything related to an initial sign in (or + # lack thereof) has completed. This includes things like # workspace syncing. Completion of this is what flips the app # into 'running' state. self._initial_sign_in_completed = False @@ -46,6 +58,9 @@ class AccountV2Subsystem: self._implicit_signed_in_adapter: LoginAdapter | None = None self._implicit_state_changed = False self._can_do_auto_sign_in = True + self.on_primary_account_changed_callbacks: CallbackSet[ + Callable[[AccountV2Handle | None], None] + ] = CallbackSet() adapter: LoginAdapter if _babase.using_google_play_game_services(): @@ -56,19 +71,21 @@ class AccountV2Subsystem: self.login_adapters[adapter.login_type] = adapter def on_app_loading(self) -> None: - """Should be called at standard on_app_loading time.""" + """Internal; Called at standard on_app_loading time. + :meta private: + """ for adapter in self.login_adapters.values(): adapter.on_app_loading() def have_primary_credentials(self) -> bool: """Are credentials currently set for the primary app account? - Note that this does not mean these credentials are currently valid; - only that they exist. If/when credentials are validated, the 'primary' - account handle will be set. + Note that this does not mean these credentials have been checked + for validity; only that they exist. If/when credentials are + validated, the :attr:`primary` account handle will be set. """ - raise NotImplementedError('This should be overridden.') + raise NotImplementedError() @property def primary(self) -> AccountV2Handle | None: @@ -82,9 +99,18 @@ class AccountV2Subsystem: Will be called with None on log-outs and when new credentials are set but have not yet been verified. + + :meta private: """ assert _babase.in_logic_thread() + # Fire any registered callbacks. + for call in self.on_primary_account_changed_callbacks.getcalls(): + try: + call(account) + except Exception: + logging.exception('Error in primary-account-changed callback.') + # Currently don't do anything special on sign-outs. if account is None: return @@ -105,9 +131,9 @@ class AccountV2Subsystem: on_completed=self._on_set_active_workspace_completed, ) else: - # Don't activate workspaces if we've already told the game - # that initial-log-in is done or if we've already kicked - # off a workspace load. + # Don't activate workspaces if we've already told the + # game that initial-log-in is done or if we've already + # kicked off a workspace load. _babase.screenmessage( f'\'{account.workspacename}\'' f' will be activated at next app launch.', @@ -122,15 +148,20 @@ class AccountV2Subsystem: _babase.app.on_initial_sign_in_complete() def on_active_logins_changed(self, logins: dict[LoginType, str]) -> None: - """Should be called when logins for the active account change.""" + """Called when logins for the active account change. + :meta private: + """ for adapter in self.login_adapters.values(): adapter.set_active_logins(logins) def on_implicit_sign_in( self, login_type: LoginType, login_id: str, display_name: str ) -> None: - """An implicit sign-in happened (called by native layer).""" + """An implicit sign-in happened (called by native layer). + + :meta private: + """ from babase._login import LoginAdapter assert _babase.in_logic_thread() @@ -143,17 +174,22 @@ class AccountV2Subsystem: ) def on_implicit_sign_out(self, login_type: LoginType) -> None: - """An implicit sign-out happened (called by native layer).""" + """An implicit sign-out happened (called by native layer). + + :meta private: + """ assert _babase.in_logic_thread() with _babase.ContextRef.empty(): self.login_adapters[login_type].set_implicit_login_state(None) def on_no_initial_primary_account(self) -> None: - """Callback run if the app has no primary account after launch. + """Internal; run if the app has no primary account after launch. - Either this callback or on_primary_account_changed will be called - within a few seconds of app launch; the app can move forward - with the startup sequence at that point. + Either this callback or on_primary_account_changed will be + called within a few seconds of app launch; the app can move + forward with the startup sequence at that point. + + :meta private: """ if not self._initial_sign_in_completed: self._initial_sign_in_completed = True @@ -170,13 +206,15 @@ class AccountV2Subsystem: login_type: LoginType, state: LoginAdapter.ImplicitLoginState | None, ) -> None: - """Called when implicit login state changes. + """Internal; Called when implicit login state changes. Login systems that tend to sign themselves in/out in the background are considered implicit. We may choose to honor or ignore their states, allowing the user to opt for other login types even if the default implicit one can't be explicitly logged out or otherwise controlled. + + :meta private: """ from babase._language import Lstr @@ -242,19 +280,18 @@ class AccountV2Subsystem: # generally this means the user has explicitly signed in/out or # switched accounts within that back-end. if prev_state != new_state: - if DEBUG_LOG: - logging.debug( - 'AccountV2: Implicit state changed (%s -> %s);' - ' will update app sign-in state accordingly.', - prev_state, - new_state, - ) + logger.debug( + 'Implicit state changed (%s -> %s);' + ' will update app sign-in state accordingly.', + prev_state, + new_state, + ) self._implicit_state_changed = True # We may want to auto-sign-in based on this new state. self._update_auto_sign_in() - def on_cloud_connectivity_changed(self, connected: bool) -> None: + def _on_cloud_connectivity_changed(self, connected: bool) -> None: """Should be called with cloud connectivity changes.""" del connected # Unused. assert _babase.in_logic_thread() @@ -263,12 +300,20 @@ class AccountV2Subsystem: self._update_auto_sign_in() def do_get_primary(self) -> AccountV2Handle | None: - """Internal - should be overridden by subclass.""" - raise NotImplementedError('This should be overridden.') + """Internal; should be overridden by subclass. + + :meta private: + """ + raise NotImplementedError() def set_primary_credentials(self, credentials: str | None) -> None: - """Set credentials for the primary app account.""" - raise NotImplementedError('This should be overridden.') + """Set credentials for the primary app account. + + Once credentials are set, they will be verified in the cloud + asynchronously. If verification is successful, the + :attr:`primary` attr will be set to the resulting account. + """ + raise NotImplementedError() def _update_auto_sign_in(self) -> None: plus = _babase.app.plus @@ -279,11 +324,9 @@ class AccountV2Subsystem: if self._implicit_signed_in_adapter is None: # If implicit back-end has signed out, we follow suit # immediately; no need to wait for network connectivity. - if DEBUG_LOG: - logging.debug( - 'AccountV2: Signing out as result' - ' of implicit state change...', - ) + logger.debug( + 'Signing out as result of implicit state change...', + ) plus.accounts.set_primary_credentials(None) self._implicit_state_changed = False @@ -300,11 +343,9 @@ class AccountV2Subsystem: # switching accounts via the back-end). NOTE: should # test case where we don't have connectivity here. if plus.cloud.is_connected(): - if DEBUG_LOG: - logging.debug( - 'AccountV2: Signing in as result' - ' of implicit state change...', - ) + logger.debug( + 'Signing in as result of implicit state change...', + ) self._implicit_signed_in_adapter.sign_in( self._on_explicit_sign_in_completed, description='implicit state change', @@ -335,10 +376,9 @@ class AccountV2Subsystem: and not signed_in_v2 and self._implicit_signed_in_adapter is not None ): - if DEBUG_LOG: - logging.debug( - 'AccountV2: Signing in due to on-launch-auto-sign-in...', - ) + logger.debug( + 'Signing in due to on-launch-auto-sign-in...', + ) self._can_do_auto_sign_in = False # Only ATTEMPT once self._implicit_signed_in_adapter.sign_in( self._on_implicit_sign_in_completed, description='auto-sign-in' @@ -425,14 +465,23 @@ class AccountV2Subsystem: class AccountV2Handle: """Handle for interacting with a V2 account. - This class supports the 'with' statement, which is how it is + This class supports the ``with`` statement, which is how it is used with some operations such as cloud messaging. """ + #: The id of this account. accountid: str + + #: The last known tag for this account. tag: str + + #: The name of the workspace being synced to this client. workspacename: str | None + + #: The id of the workspace being synced to this client, if any. workspaceid: str | None + + #: Info about last known logins associated with this account. logins: dict[LoginType, LoginInfo] def __enter__(self) -> None: diff --git a/dist/ba_data/python/babase/_app.py b/dist/ba_data/python/babase/_app.py index 58ba2fc..37dc48e 100644 --- a/dist/ba_data/python/babase/_app.py +++ b/dist/ba_data/python/babase/_app.py @@ -8,12 +8,14 @@ import os import logging from enum import Enum from functools import partial -from typing import TYPE_CHECKING, TypeVar, override -from concurrent.futures import ThreadPoolExecutor +from typing import TYPE_CHECKING, override from threading import RLock +from efro.threadpool import ThreadPoolExecutorEx + import _babase from babase._language import LanguageSubsystem +from babase._locale import LocaleSubsystem from babase._plugin import PluginSubsystem from babase._meta import MetadataSubsystem from babase._net import NetworkSubsystem @@ -23,6 +25,8 @@ from babase._appmodeselector import AppModeSelector from babase._appintent import AppIntentDefault, AppIntentExec from babase._stringedit import StringEditSubsystem from babase._devconsole import DevConsoleSubsystem +from babase._appconfig import AppConfig +from babase._logging import lifecyclelog, applog if TYPE_CHECKING: import asyncio @@ -31,125 +35,40 @@ if TYPE_CHECKING: import babase from babase import AppIntent, AppMode, AppSubsystem - from babase._apputils import AppHealthMonitor + from babase._apputils import AppHealthSubsystem # __FEATURESET_APP_SUBSYSTEM_IMPORTS_BEGIN__ # This section generated by batools.appmodule; do not edit. - from baclassic import ClassicSubsystem - from baplus import PlusSubsystem - from bauiv1 import UIV1Subsystem + from baclassic import ClassicAppSubsystem + from baplus import PlusAppSubsystem + from bauiv1 import UIV1AppSubsystem # __FEATURESET_APP_SUBSYSTEM_IMPORTS_END__ -T = TypeVar('T') - class App: - """A class for high level app functionality and state. + """High level Ballistica app functionality and state. - Category: **App Classes** - - Use babase.app to access the single shared instance of this class. - - Note that properties not documented here should be considered internal - and subject to change without warning. + Access the single shared instance of this class via the ``app`` attr + available on various high level modules such as :mod:`babase`, + :mod:`bauiv1`, and :mod:`bascenev1`. """ # pylint: disable=too-many-public-methods # A few things defined as non-optional values but not actually - # available until the app starts. - plugins: PluginSubsystem - lang: LanguageSubsystem - health_monitor: AppHealthMonitor + # available until the app starts (so we need to predeclare them + # here). - # How long we allow shutdown tasks to run before killing them. - # Currently the entire app hard-exits if shutdown takes 10 seconds, - # so we need to keep it under that. - SHUTDOWN_TASK_TIMEOUT_SECONDS = 5 + #: Subsystem for keeping tabs on app health. + health: AppHealthSubsystem - class State(Enum): - """High level state the app can be in.""" - - # The app has not yet begun starting and should not be used in - # any way. - NOT_STARTED = 0 - - # The native layer is spinning up its machinery (screens, - # renderers, etc.). Nothing should happen in the Python layer - # until this completes. - NATIVE_BOOTSTRAPPING = 1 - - # Python app subsystems are being inited but should not yet - # interact or do any work. - INITING = 2 - - # Python app subsystems are inited and interacting, but the app - # has not yet embarked on a high level course of action. It is - # doing initial account logins, workspace & asset downloads, - # etc. - LOADING = 3 - - # All pieces are in place and the app is now doing its thing. - RUNNING = 4 - - # Used on platforms such as mobile where the app basically needs - # to shut down while backgrounded. In this state, all event - # loops are suspended and all graphics and audio must cease - # completely. Be aware that the suspended state can be entered - # from any other state including NATIVE_BOOTSTRAPPING and - # SHUTTING_DOWN. - SUSPENDED = 5 - - # The app is shutting down. This process may involve sending - # network messages or other things that can take up to a few - # seconds, so ideally graphics and audio should remain - # functional (with fades or spinners or whatever to show - # something is happening). - SHUTTING_DOWN = 6 - - # The app has completed shutdown. Any code running here should - # be basically immediate. - SHUTDOWN_COMPLETE = 7 - - class DefaultAppModeSelector(AppModeSelector): - """Decides which AppModes to use to handle AppIntents. - - This default version is generated by the project updater based - on the 'default_app_modes' value in the projectconfig. - - It is also possible to modify app mode selection behavior by - setting app.mode_selector to an instance of a custom - AppModeSelector subclass. This is a good way to go if you are - modifying app behavior dynamically via a plugin instead of - statically in a spinoff project. - """ - - @override - def app_mode_for_intent( - self, intent: AppIntent - ) -> type[AppMode] | None: - # pylint: disable=cyclic-import - - # __DEFAULT_APP_MODE_SELECTION_BEGIN__ - # This section generated by batools.appmodule; do not edit. - - # Ask our default app modes to handle it. - # (generated from 'default_app_modes' in projectconfig). - import bascenev1 - import babase - - for appmode in [ - bascenev1.SceneV1AppMode, - babase.EmptyAppMode, - ]: - if appmode.can_handle_intent(intent): - return appmode - - return None - - # __DEFAULT_APP_MODE_SELECTION_END__ + #: How long we allow shutdown tasks to run before killing them. + #: Currently the entire app hard-exits if shutdown takes 15 seconds, + #: so we need to keep it under that. Staying above 10 should allow + #: 10 second network timeouts to happen though. + SHUTDOWN_TASK_TIMEOUT_SECONDS = 12 def __init__(self) -> None: """(internal) @@ -164,31 +83,66 @@ class App: if os.environ.get('BA_RUNNING_WITH_DUMMY_MODULES') == '1': return - self.env: babase.Env = _babase.Env() - self.state = self.State.NOT_STARTED + self._subsystems: list[AppSubsystem] = [] + self._subsystem_registration_ended = False - # Default executor which can be used for misc background - # processing. It should also be passed to any additional asyncio - # loops we create so that everything shares the same single set - # of worker threads. - self.threadpool = ThreadPoolExecutor( + #: Config values for the app. + self.config: AppConfig = AppConfig(_babase.get_initial_app_config()) + _babase.set_app_config(self.config) + + #: Static environment values for the app. + self.env: babase.Env = _babase.Env() + + #: Current app state. + self.state: AppState = AppState.NOT_STARTED + + #: Default executor which can be used for misc background + #: processing. It should also be passed to any additional asyncio + #: loops we create so that everything shares the same single set + #: of worker threads. + self.threadpool: ThreadPoolExecutorEx = ThreadPoolExecutorEx( thread_name_prefix='baworker', initializer=self._thread_pool_thread_init, ) - self.meta = MetadataSubsystem() - self.net = NetworkSubsystem() - self.workspaces = WorkspaceSubsystem() - self.components = AppComponentSubsystem() - self.stringedit = StringEditSubsystem() - self.devconsole = DevConsoleSubsystem() + #: Locale related functionality. + self.locale: LocaleSubsystem = self.register_subsystem( + LocaleSubsystem() + ) - # This is incremented any time the app is backgrounded or - # foregrounded; can be a simple way to determine if network data - # should be refreshed/etc. - self.fg_state = 0 + #: Language related functionality. + self.lang: LanguageSubsystem = self.register_subsystem( + LanguageSubsystem() + ) + + #: Subsystem for wrangling plugins. + self.plugins: PluginSubsystem = self.register_subsystem( + PluginSubsystem() + ) + + #: Subsystem for wrangling metadata. + self.meta: MetadataSubsystem = MetadataSubsystem() + + #: Subsystem for network functionality. + self.net: NetworkSubsystem = NetworkSubsystem() + + #: Subsystem for wrangling workspaces. + self.workspaces: WorkspaceSubsystem = WorkspaceSubsystem() + + # (not actually in use yet) + self.components: AppComponentSubsystem = AppComponentSubsystem() + + #: Subsystem for wrangling text input from various sources. + self.stringedit: StringEditSubsystem = StringEditSubsystem() + + #: Subsystem for wrangling the dev-console UI. + self.devconsole: DevConsoleSubsystem = DevConsoleSubsystem() + + #: Incremented each time the app leaves the + #: :attr:`~babase.AppState.SUSPENDED` state. This can be a simple + #: way to determine if network data should be refreshed/etc. + self.fg_state: int = 0 - self._subsystems: list[AppSubsystem] = [] self._native_bootstrapping_completed = False self._init_completed = False self._meta_scan_completed = False @@ -200,16 +154,15 @@ class App: self._called_on_initing = False self._called_on_loading = False self._called_on_running = False - self._subsystem_registration_ended = False self._pending_apply_app_config = False self._asyncio_loop: asyncio.AbstractEventLoop | None = None self._asyncio_tasks: set[asyncio.Task] = set() self._asyncio_timer: babase.AppTimer | None = None - self._config: babase.AppConfig | None = None self._pending_intent: AppIntent | None = None self._intent: AppIntent | None = None - self._mode: AppMode | None = None self._mode_selector: babase.AppModeSelector | None = None + self._mode_instances: dict[type[AppMode], AppMode] = {} + self._mode: AppMode | None = None self._shutdown_task: asyncio.Task[None] | None = None self._shutdown_tasks: list[Coroutine[None, None, None]] = [ self._wait_for_shutdown_suppressions(), @@ -225,22 +178,6 @@ class App: self._subsystem_property_lock = RLock() self._subsystem_property_data: dict[str, AppSubsystem | bool] = {} - def postinit(self) -> None: - """Called after we've been inited and assigned to babase.app. - - Anything that accesses babase.app as part of its init process - must go here instead of __init__. - """ - - # Hack for docs-generation: We can be imported with dummy - # modules instead of our actual binary ones, but we don't - # function. - if os.environ.get('BA_RUNNING_WITH_DUMMY_MODULES') == '1': - return - - self.lang = LanguageSubsystem() - self.plugins = PluginSubsystem() - @property def active(self) -> bool: """Whether the app is currently front and center. @@ -250,46 +187,53 @@ class App: """ return _babase.app_is_active() + @property + def mode(self) -> AppMode | None: + """The app's current mode.""" + assert _babase.in_logic_thread() + return self._mode + @property def asyncio_loop(self) -> asyncio.AbstractEventLoop: - """The logic thread's asyncio event loop. + """The logic thread's :mod:`asyncio` event-loop. - This allow async tasks to be run in the logic thread. + This allows :mod:`asyncio` tasks to be run in the logic thread. - Generally you should call App.create_async_task() to schedule - async code to run instead of using this directly. That will - handle retaining the task and logging errors automatically. - Only schedule tasks onto asyncio_loop yourself when you intend - to hold on to the returned task and await its results. Releasing + Generally you should call + :meth:`~babase.App.create_async_task()` to schedule async code + to run instead of using this directly. That will handle + retaining the task and logging errors automatically. Only + schedule tasks onto ``asyncio_loop`` yourself when you intend to + hold on to the returned task and await its results. Releasing the task reference can lead to subtle bugs such as unreported errors and garbage-collected tasks disappearing before their work is done. - Note that, at this time, the asyncio loop is encapsulated - and explicitly stepped by the engine's logic thread loop and - thus things like asyncio.get_running_loop() will unintuitively - *not* return this loop from most places in the logic thread; - only from within a task explicitly created in this loop. - Hopefully this situation will be improved in the future with a - unified event loop. + Note that, at this time, the asyncio loop is encapsulated and + explicitly stepped by the engine's logic thread loop and thus + things like :meth:`asyncio.get_running_loop()` will + unintuitively *not* return this loop from most places in the + logic thread; only from within a task explicitly created in this + loop. Hopefully this situation will be improved in the future + with a unified event loop. """ assert _babase.in_logic_thread() assert self._asyncio_loop is not None return self._asyncio_loop - def create_async_task( + def create_async_task[T]( self, coro: Coroutine[Any, Any, T], *, name: str | None = None ) -> None: - """Create a fully managed async task. + """Create a fully managed :mod:`asyncio` task. This will automatically retain and release a reference to the task and log any exceptions that occur in it. If you need to await a task or otherwise need more control, schedule a task directly using - App.asyncio_loop. + :attr:`asyncio_loop`. """ assert _babase.in_logic_thread() - # Hold a strong reference to the task until it is done. + # We hold a strong reference to the task until it is done. # Otherwise it is possible for it to be garbage collected and # disappear midway if the caller does not hold on to the # returned task, which seems like a great way to introduce @@ -311,12 +255,6 @@ class App: self._asyncio_tasks.remove(task) - @property - def config(self) -> babase.AppConfig: - """The babase.AppConfig instance representing the app's config state.""" - assert self._config is not None - return self._config - @property def mode_selector(self) -> babase.AppModeSelector: """Controls which app-modes are used for handling given intents. @@ -378,7 +316,7 @@ class App: # Do our one attempt to create the singleton. val = create_call() self._subsystem_property_data[ssname] = ( - False if val is None else val + False if val is None else self.register_subsystem(val) ) return val @@ -387,19 +325,19 @@ class App: # This section generated by batools.appmodule; do not edit. @property - def classic(self) -> ClassicSubsystem | None: + def classic(self) -> ClassicAppSubsystem | None: """Our classic subsystem (if available).""" return self._get_subsystem_property( 'classic', self._create_classic_subsystem ) # type: ignore @staticmethod - def _create_classic_subsystem() -> ClassicSubsystem | None: + def _create_classic_subsystem() -> ClassicAppSubsystem | None: # pylint: disable=cyclic-import try: - from baclassic import ClassicSubsystem + from baclassic import ClassicAppSubsystem - return ClassicSubsystem() + return ClassicAppSubsystem() except ImportError: return None except Exception: @@ -407,19 +345,19 @@ class App: return None @property - def plus(self) -> PlusSubsystem | None: + def plus(self) -> PlusAppSubsystem | None: """Our plus subsystem (if available).""" return self._get_subsystem_property( 'plus', self._create_plus_subsystem ) # type: ignore @staticmethod - def _create_plus_subsystem() -> PlusSubsystem | None: + def _create_plus_subsystem() -> PlusAppSubsystem | None: # pylint: disable=cyclic-import try: - from baplus import PlusSubsystem + from baplus import PlusAppSubsystem - return PlusSubsystem() + return PlusAppSubsystem() except ImportError: return None except Exception: @@ -427,24 +365,33 @@ class App: return None @property - def ui_v1(self) -> UIV1Subsystem: + def ui_v1(self) -> UIV1AppSubsystem: """Our ui_v1 subsystem (always available).""" return self._get_subsystem_property( 'ui_v1', self._create_ui_v1_subsystem ) # type: ignore @staticmethod - def _create_ui_v1_subsystem() -> UIV1Subsystem: + def _create_ui_v1_subsystem() -> UIV1AppSubsystem: # pylint: disable=cyclic-import - from bauiv1 import UIV1Subsystem + from bauiv1 import UIV1AppSubsystem - return UIV1Subsystem() + return UIV1AppSubsystem() # __FEATURESET_APP_SUBSYSTEM_PROPERTIES_END__ - def register_subsystem(self, subsystem: AppSubsystem) -> None: - """Called by the AppSubsystem class. Do not use directly.""" + def register_subsystem[T: AppSubsystem](self, subsystem: T) -> T: + """Register an :class:`~babase.AppSubsystem` instance with the app. + + Facilitates the subsystem receiving state callbacks, etc. + + Note that subsystems can only be registered before the app + completes its transition to the :attr:`~AppState.RUNNING` state. + + Returns the passed object for convenience in assigning it to an + attr/etc. + """ # We only allow registering new subsystems if we've not yet # reached the 'running' state. This ensures that all subsystems @@ -455,17 +402,20 @@ class App: raise RuntimeError( 'Subsystems can no longer be registered at this point.' ) + assert not any(s is subsystem for s in self._subsystems) self._subsystems.append(subsystem) + return subsystem def add_shutdown_task(self, coro: Coroutine[None, None, None]) -> None: """Add a task to be run on app shutdown. Note that shutdown tasks will be canceled after - App.SHUTDOWN_TASK_TIMEOUT_SECONDS if they are still running. + :py:const:`SHUTDOWN_TASK_TIMEOUT_SECONDS` if they are still + running. """ if ( - self.state is self.State.SHUTTING_DOWN - or self.state is self.State.SHUTDOWN_COMPLETE + self.state is AppState.SHUTTING_DOWN + or self.state is AppState.SHUTDOWN_COMPLETE ): stname = self.state.name raise RuntimeError( @@ -476,31 +426,19 @@ class App: def run(self) -> None: """Run the app to completion. - Note that this only works on builds where Ballistica manages - its own event loop. + Note that this only works on builds/runs where Ballistica is + managing its own event loop. """ _babase.run_app() - def threadpool_submit_no_wait(self, call: Callable[[], Any]) -> None: - """Submit a call to the app threadpool where result is not needed. - - Normally, doing work in a thread-pool involves creating a future - and waiting for its result, which is an important step because it - propagates any Exceptions raised by the submitted work. When the - result in not important, however, this call can be used. The app - will log any exceptions that occur. - """ - fut = self.threadpool.submit(call) - fut.add_done_callback(self._threadpool_no_wait_done) - def set_intent(self, intent: AppIntent) -> None: """Set the intent for the app. Intent defines what the app is trying to do at a given time. This call is asynchronous; the intent switch will happen in the - logic thread in the near future. If set_intent is called - repeatedly before the change takes place, the final intent to be - set will be used. + logic thread in the near future. If this is called repeatedly + before the change takes place, the final intent to be set will + be used. """ # Mark this one as pending. We do this synchronously so that the @@ -510,68 +448,86 @@ class App: # Do the actual work of calcing our app-mode/etc. in a bg thread # since it may block for a moment to load modules/etc. - self.threadpool_submit_no_wait(partial(self._set_intent, intent)) + self.threadpool.submit_no_wait(self._set_intent, intent) def push_apply_app_config(self) -> None: - """Internal. Use app.config.apply() to apply app config changes.""" - # To be safe, let's run this by itself in the event loop. - # This avoids potential trouble if this gets called mid-draw or + """Internal. Use :meth:`babase.AppConfig.apply()`. + + :meta private: + """ + # To be safe, let's run this by itself in the event loop. This + # avoids potential trouble if this gets called mid-draw or # something like that. self._pending_apply_app_config = True _babase.pushcall(self._apply_app_config, raw=True) def on_native_start(self) -> None: - """Called by the native layer when the app is being started.""" + """Called by the native layer when the app is being started. + + :meta private: + """ assert _babase.in_logic_thread() assert not self._native_start_called self._native_start_called = True self._update_state() def on_native_bootstrapping_complete(self) -> None: - """Called by the native layer once its ready to rock.""" + """Called by the native layer once its ready to rock. + + :meta private: + """ assert _babase.in_logic_thread() assert not self._native_bootstrapping_completed self._native_bootstrapping_completed = True self._update_state() def on_native_suspend(self) -> None: - """Called by the native layer when the app is suspended.""" + """Called by the native layer when the app is suspended. + + :meta private: + """ assert _babase.in_logic_thread() assert not self._native_suspended # Should avoid redundant calls. self._native_suspended = True self._update_state() def on_native_unsuspend(self) -> None: - """Called by the native layer when the app suspension ends.""" + """Called by the native layer when the app suspension ends. + + :meta private: + """ assert _babase.in_logic_thread() assert self._native_suspended # Should avoid redundant calls. self._native_suspended = False self._update_state() def on_native_shutdown(self) -> None: - """Called by the native layer when the app starts shutting down.""" + """Called by the native layer when the app starts shutting down. + + :meta private: + """ assert _babase.in_logic_thread() self._native_shutdown_called = True self._update_state() def on_native_shutdown_complete(self) -> None: - """Called by the native layer when the app is done shutting down.""" + """Called by the native layer when the app is done shutting down. + + :meta private: + """ assert _babase.in_logic_thread() self._native_shutdown_complete_called = True self._update_state() def on_native_active_changed(self) -> None: - """Called by the native layer when the app active state changes.""" + """Called by the native layer when the app active state changes. + + :meta private: + """ assert _babase.in_logic_thread() if self._mode is not None: self._mode.on_app_active_changed() - def read_config(self) -> None: - """(internal)""" - from babase._appconfig import read_app_config - - self._config = read_app_config() - def handle_deep_link(self, url: str) -> None: """Handle a deep link URL.""" from babase._language import Lstr @@ -599,6 +555,8 @@ class App: initial-sign-in process may include tasks such as syncing account workspaces or other data so it may take a substantial amount of time. + + :meta private: """ assert _babase.in_logic_thread() assert not self._initial_sign_in_completed @@ -610,18 +568,77 @@ class App: self._initial_sign_in_completed = True self._update_state() + def set_ui_scale(self, scale: babase.UIScale) -> None: + """Change ui-scale on the fly. + + Currently this is mainly for testing/debugging and will not be + called as part of normal app operation, though this may change + in the future. + + :meta private: + """ + assert _babase.in_logic_thread() + + # Apply to the native layer. + _babase.set_ui_scale(scale.name.lower()) + + # Inform all subsystems that something screen-related has + # changed. We assume subsystems won't be added at this point so + # we can use the list directly. + assert self._subsystem_registration_ended + for subsystem in self._subsystems: + try: + subsystem.on_ui_scale_change() + except Exception: + logging.exception( + 'Error in on_ui_scale_change() for subsystem %s.', subsystem + ) + + def on_screen_size_change(self) -> None: + """Screen size has changed. + + :meta private: + """ + + # Inform all app subsystems in the same order they were inited. + # Operate on a copy of the list here because this can be called + # while subsystems are still being added. + for subsystem in self._subsystems.copy(): + try: + subsystem.on_screen_size_change() + except Exception: + logging.exception( + 'Error in on_screen_size_change() for subsystem %s.', + subsystem, + ) + def _set_intent(self, intent: AppIntent) -> None: + from babase._appmode import AppMode + # This should be happening in a bg thread. assert not _babase.in_logic_thread() try: # Ask the selector what app-mode to use for this intent. if self.mode_selector is None: raise RuntimeError('No AppModeSelector set.') - modetype = self.mode_selector.app_mode_for_intent(intent) - # NOTE: Since intents are somewhat high level things, should - # we do some universal thing like a screenmessage saying - # 'The app cannot handle that request' on failure? + modetype: type[AppMode] | None + + # Special case - for testing we may force a specific + # app-mode to handle this intent instead of going through our + # usual selector. + forced_mode_type = getattr(intent, '_force_app_mode_handler', None) + if isinstance(forced_mode_type, type) and issubclass( + forced_mode_type, AppMode + ): + modetype = forced_mode_type + else: + modetype = self.mode_selector.app_mode_for_intent(intent) + + # NOTE: Since intents are somewhat high level things, + # perhaps we should do some universal thing like a + # screenmessage saying 'The app cannot handle the request' + # on failure. if modetype is None: raise RuntimeError( @@ -640,7 +657,9 @@ class App: # Ok; seems legit. Now instantiate the mode if necessary and # kick back to the logic thread to apply. - mode = modetype() + mode = self._mode_instances.get(modetype) + if mode is None: + self._mode_instances[modetype] = mode = modetype() _babase.pushcall( partial(self._apply_intent, intent, mode), from_other_thread=True, @@ -661,7 +680,7 @@ class App: return # If the app-mode for this intent is different than the active - # one, switch. + # one, switch modes. if type(mode) is not type(self._mode): if self._mode is None: is_initial_mode = True @@ -673,6 +692,18 @@ class App: logging.exception( 'Error deactivating app-mode %s.', self._mode ) + + # Reset all subsystems. We assume subsystems won't be added + # at this point so we can use the list directly. + assert self._subsystem_registration_ended + for subsystem in self._subsystems: + try: + subsystem.reset() + except Exception: + logging.exception( + 'Error in reset() for subsystem %s.', subsystem + ) + self._mode = mode try: mode.on_activate() @@ -710,7 +741,7 @@ class App: # pylint: disable=cyclic-import from babase import _asyncio from babase import _appconfig - from babase._apputils import AppHealthMonitor + from babase._apputils import AppHealthSubsystem from babase import _env assert _babase.in_logic_thread() @@ -718,7 +749,7 @@ class App: _env.on_app_state_initing() self._asyncio_loop = _asyncio.setup_asyncio() - self.health_monitor = AppHealthMonitor() + self.health = self.register_subsystem(AppHealthSubsystem()) # __FEATURESET_APP_SUBSYSTEM_CREATE_BEGIN__ # This section generated by batools.appmodule; do not edit. @@ -750,14 +781,14 @@ class App: self.meta.start_scan(scan_complete_cb=self._on_meta_scan_complete) # Inform all app subsystems in the same order they were inited. - # Operate on a copy here because subsystems can still be added - # at this point. + # Operate on a copy of the list here because subsystems can + # still be added at this point. for subsystem in self._subsystems.copy(): try: subsystem.on_app_loading() except Exception: logging.exception( - 'Error in on_app_loading for subsystem %s.', subsystem + 'Error in on_app_loading() for subsystem %s.', subsystem ) # Normally plus tells us when initial sign-in is done. If plus @@ -791,7 +822,7 @@ class App: # Set a default app-mode-selector if none has been set yet # by a plugin or whatnot. if self._mode_selector is None: - self._mode_selector = self.DefaultAppModeSelector() + self._mode_selector = DefaultAppModeSelector() # Inform all app subsystems in the same order they were # registered. Operate on a copy here because subsystems can @@ -806,7 +837,7 @@ class App: subsystem.on_app_running() except Exception: logging.exception( - 'Error in on_app_running for subsystem %s.', subsystem + 'Error in on_app_running() for subsystem %s.', subsystem ) # Cut off new subsystem additions at this point. @@ -825,7 +856,7 @@ class App: def _apply_app_config(self) -> None: assert _babase.in_logic_thread() - _babase.lifecyclelog('apply-app-config') + lifecyclelog.info('apply-app-config') # If multiple apply calls have been made, only actually apply # once. @@ -842,7 +873,8 @@ class App: subsystem.do_apply_app_config() except Exception: logging.exception( - 'Error in do_apply_app_config for subsystem %s.', subsystem + 'Error in do_apply_app_config() for subsystem %s.', + subsystem, ) # Let the native layer do its thing. @@ -854,9 +886,9 @@ class App: # Shutdown-complete trumps absolutely all. if self._native_shutdown_complete_called: - if self.state is not self.State.SHUTDOWN_COMPLETE: - self.state = self.State.SHUTDOWN_COMPLETE - _babase.lifecyclelog('app state shutdown complete') + if self.state is not AppState.SHUTDOWN_COMPLETE: + self.state = AppState.SHUTDOWN_COMPLETE + lifecyclelog.info('app-state is now %s', self.state.name) self._on_shutdown_complete() # Shutdown trumps all. Though we can't start shutting down until @@ -864,52 +896,54 @@ class App: # the shutdown process. elif self._native_shutdown_called and self._init_completed: # Entering shutdown state: - if self.state is not self.State.SHUTTING_DOWN: - self.state = self.State.SHUTTING_DOWN - _babase.lifecyclelog('app state shutting down') + if self.state is not AppState.SHUTTING_DOWN: + self.state = AppState.SHUTTING_DOWN + applog.info('Shutting down...') + lifecyclelog.info('app-state is now %s', self.state.name) self._on_shutting_down() elif self._native_suspended: # Entering suspended state: - if self.state is not self.State.SUSPENDED: - self.state = self.State.SUSPENDED + if self.state is not AppState.SUSPENDED: + self.state = AppState.SUSPENDED self._on_suspend() else: # Leaving suspended state: - if self.state is self.State.SUSPENDED: + if self.state is AppState.SUSPENDED: self._on_unsuspend() # Entering or returning to running state if self._initial_sign_in_completed and self._meta_scan_completed: - if self.state != self.State.RUNNING: - self.state = self.State.RUNNING - _babase.lifecyclelog('app state running') + if self.state != AppState.RUNNING: + self.state = AppState.RUNNING + lifecyclelog.info('app-state is now %s', self.state.name) if not self._called_on_running: self._called_on_running = True self._on_running() + # Entering or returning to loading state: elif self._init_completed: - if self.state is not self.State.LOADING: - self.state = self.State.LOADING - _babase.lifecyclelog('app state loading') + if self.state is not AppState.LOADING: + self.state = AppState.LOADING + lifecyclelog.info('app-state is now %s', self.state.name) if not self._called_on_loading: self._called_on_loading = True self._on_loading() # Entering or returning to initing state: elif self._native_bootstrapping_completed: - if self.state is not self.State.INITING: - self.state = self.State.INITING - _babase.lifecyclelog('app state initing') + if self.state is not AppState.INITING: + self.state = AppState.INITING + lifecyclelog.info('app-state is now %s', self.state.name) if not self._called_on_initing: self._called_on_initing = True self._on_initing() # Entering or returning to native bootstrapping: elif self._native_start_called: - if self.state is not self.State.NATIVE_BOOTSTRAPPING: - self.state = self.State.NATIVE_BOOTSTRAPPING - _babase.lifecyclelog('app state native bootstrapping') + if self.state is not AppState.NATIVE_BOOTSTRAPPING: + self.state = AppState.NATIVE_BOOTSTRAPPING + lifecyclelog.info('app-state is now %s', self.state.name) else: # Only logical possibility left is NOT_STARTED, in which # case we should not be getting called. @@ -965,7 +999,7 @@ class App: subsystem.on_app_suspend() except Exception: logging.exception( - 'Error in on_app_suspend for subsystem %s.', subsystem + 'Error in on_app_suspend() for subsystem %s.', subsystem ) def _on_unsuspend(self) -> None: @@ -979,7 +1013,7 @@ class App: subsystem.on_app_unsuspend() except Exception: logging.exception( - 'Error in on_app_unsuspend for subsystem %s.', subsystem + 'Error in on_app_unsuspend() for subsystem %s.', subsystem ) def _on_shutting_down(self) -> None: @@ -993,7 +1027,7 @@ class App: subsystem.on_app_shutdown() except Exception: logging.exception( - 'Error in on_app_shutdown for subsystem %s.', subsystem + 'Error in on_app_shutdown() for subsystem %s.', subsystem ) # Now kick off any async shutdown task(s). @@ -1004,6 +1038,19 @@ class App: """(internal)""" assert _babase.in_logic_thread() + # Deactivate any active app-mode. This allows things like saving + # state to happen naturally without needing to handle + # app-shutdown as a special case. + if self._mode is not None: + try: + self._mode.on_deactivate() + except Exception: + logging.exception( + 'Error deactivating app-mode %s at app shutdown.', + self._mode, + ) + self._mode = None + # Inform app subsystems that we're done shutting down in the opposite # order they were inited. for subsystem in reversed(self._subsystems): @@ -1011,7 +1058,7 @@ class App: subsystem.on_app_shutdown_complete() except Exception: logging.exception( - 'Error in on_app_shutdown_complete for subsystem %s.', + 'Error in on_app_shutdown_complete() for subsystem %s.', subsystem, ) @@ -1020,10 +1067,10 @@ class App: # Spin and wait for anything blocking shutdown to complete. starttime = _babase.apptime() - _babase.lifecyclelog('shutdown-suppress wait begin') + lifecyclelog.info('shutdown-suppress-wait begin') while _babase.shutdown_suppress_count() > 0: await asyncio.sleep(0.001) - _babase.lifecyclelog('shutdown-suppress wait end') + lifecyclelog.info('shutdown-suppress-wait end') duration = _babase.apptime() - starttime if duration > 1.0: logging.warning( @@ -1036,7 +1083,7 @@ class App: import asyncio # Kick off a short fade and give it time to complete. - _babase.lifecyclelog('fade-and-shutdown-graphics begin') + lifecyclelog.info('fade-and-shutdown-graphics begin') _babase.fade_screen(False, time=0.15) await asyncio.sleep(0.15) @@ -1045,29 +1092,104 @@ class App: _babase.graphics_shutdown_begin() while not _babase.graphics_shutdown_is_complete(): await asyncio.sleep(0.01) - _babase.lifecyclelog('fade-and-shutdown-graphics end') + lifecyclelog.info('fade-and-shutdown-graphics end') async def _fade_and_shutdown_audio(self) -> None: import asyncio # Tell the audio system to go down and give it a bit of # time to do so gracefully. - _babase.lifecyclelog('fade-and-shutdown-audio begin') + lifecyclelog.info('fade-and-shutdown-audio begin') _babase.audio_shutdown_begin() await asyncio.sleep(0.15) while not _babase.audio_shutdown_is_complete(): await asyncio.sleep(0.01) - _babase.lifecyclelog('fade-and-shutdown-audio end') - - def _threadpool_no_wait_done(self, fut: Future) -> None: - try: - fut.result() - except Exception: - logging.exception( - 'Error in work submitted via threadpool_submit_no_wait()' - ) + lifecyclelog.info('fade-and-shutdown-audio end') def _thread_pool_thread_init(self) -> None: # Help keep things clear in profiling tools/etc. self._pool_thread_count += 1 _babase.set_thread_name(f'ballistica worker-{self._pool_thread_count}') + + +class AppState(Enum): + """High level state the app can be in.""" + + #: The app has not yet begun starting and should not be used in + #: any way. + NOT_STARTED = 0 + + #: The native layer is spinning up its machinery (screens, + #: renderers, etc.). Nothing should happen in the Python layer + #: until this completes. + NATIVE_BOOTSTRAPPING = 1 + + #: Python app subsystems are being inited but should not yet + #: interact or do any work. + INITING = 2 + + #: Python app subsystems are inited and interacting, but the app + #: has not yet embarked on a high level course of action. It is + #: doing initial account logins, workspace & asset downloads, + #: etc. + LOADING = 3 + + #: All pieces are in place and the app is now doing its thing. + RUNNING = 4 + + #: Used on platforms such as mobile where the app basically needs + #: to shut down while backgrounded. In this state, all event + #: loops are suspended and all graphics and audio must cease + #: completely. Be aware that the suspended state can be entered + #: from any other state including :attr:`NATIVE_BOOTSTRAPPING` and + #: :attr:`SHUTTING_DOWN`. + SUSPENDED = 5 + + #: The app is shutting down. This process may involve sending + #: network messages or other things that can take up to a few + #: seconds, so ideally graphics and audio should remain + #: functional (with fades or spinners or whatever to show + #: something is happening). + SHUTTING_DOWN = 6 + + #: The app has completed shutdown. Any code running here should + #: be basically immediate. + SHUTDOWN_COMPLETE = 7 + + +class DefaultAppModeSelector(AppModeSelector): + """Selects an :class:`AppMode` to handle an :class:`AppIntent`. + + This default version is generated by the project updater based + on the 'default_app_modes' value in the projectconfig. + + It is also possible to modify app mode selection behavior by + setting the app's :attr:`~babase.App.mode_selector` to an + instance of a custom :class:`~babase.AppModeSelector` subclass. + This is a good way to go if you are modifying app behavior + dynamically via a :class:`~babase.Plugin` instead of statically + in a spinoff project. + """ + + @override + def app_mode_for_intent(self, intent: AppIntent) -> type[AppMode] | None: + # pylint: disable=cyclic-import + + # __DEFAULT_APP_MODE_SELECTION_BEGIN__ + # This section generated by batools.appmodule; do not edit. + + # Ask our default app modes to handle it. + # (generated from 'default_app_modes' in projectconfig). + import baclassic + import babase + + for appmode in [ + baclassic.ClassicAppMode, + babase.EmptyAppMode, + ]: + if appmode.can_handle_intent(intent): + return appmode + + return None + + # __DEFAULT_APP_MODE_SELECTION_END__ diff --git a/dist/ba_data/python/babase/_appcomponent.py b/dist/ba_data/python/babase/_appcomponent.py index 691325c..d1045e5 100644 --- a/dist/ba_data/python/babase/_appcomponent.py +++ b/dist/ba_data/python/babase/_appcomponent.py @@ -3,21 +3,17 @@ """Provides the AppComponent class.""" from __future__ import annotations -from typing import TYPE_CHECKING, TypeVar, cast +from typing import TYPE_CHECKING, cast import _babase if TYPE_CHECKING: from typing import Callable, Any -T = TypeVar('T', bound=type) - class AppComponentSubsystem: """Subsystem for wrangling AppComponents. - Category: **App Classes** - This subsystem acts as a registry for classes providing particular functionality for the app, and allows plugins or other custom code to easily override said functionality. @@ -68,7 +64,7 @@ class AppComponentSubsystem: _babase.pushcall(self._run_change_callbacks) self._dirty_base_classes.add(baseclass) - def getclass(self, baseclass: T) -> T: + def getclass[T: type](self, baseclass: T) -> T: """Given a base-class, return the current implementation class. If no custom implementation has been set, the provided @@ -78,9 +74,13 @@ class AppComponentSubsystem: raise RuntimeError('this must be called from the logic thread.') del baseclass # Unused. - return cast(T, None) - def register_change_callback( + # FIXME - I think our pylint plugin is doing the wrong thing + # here and clearing all func generic params when it should just + # be clearing their type annotations. + return cast(T, None) # pylint: disable=undefined-variable + + def register_change_callback[T: type]( self, baseclass: T, callback: Callable[[T], None] ) -> None: """Register a callback to fire on class implementation changes. diff --git a/dist/ba_data/python/babase/_appconfig.py b/dist/ba_data/python/babase/_appconfig.py index 92efc73..3d841b3 100644 --- a/dist/ba_data/python/babase/_appconfig.py +++ b/dist/ba_data/python/babase/_appconfig.py @@ -3,7 +3,6 @@ """Provides the AppConfig class.""" from __future__ import annotations -import logging from typing import TYPE_CHECKING import _babase @@ -15,41 +14,42 @@ _g_pending_apply = False # pylint: disable=invalid-name class AppConfig(dict): - """A special dict that holds the game's persistent configuration values. + """A special dict that holds persistent app configuration values. - Category: **App Classes** + It also provides methods for fetching values with app-defined + fallback defaults, applying contained values to the game, and + committing the config to storage. - It also provides methods for fetching values with app-defined fallback - defaults, applying contained values to the game, and committing the - config to storage. + Access the single shared instance of this config via the + :attr:`~babase.App.config` attr on the :class:`~babase.App` class. - Call babase.appconfig() to get the single shared instance of this class. - - AppConfig data is stored as json on disk on so make sure to only place - json-friendly values in it (dict, list, str, float, int, bool). - Be aware that tuples will be quietly converted to lists when stored. + App-config data is stored as json on disk on so make sure to only + place json-friendly values in it (``dict``, ``list``, ``str``, + ``float``, ``int``, ``bool``). Be aware that tuples will be quietly + converted to lists when stored. """ def resolve(self, key: str) -> Any: """Given a string key, return a config value (type varies). - This will substitute application defaults for values not present in - the config dict, filter some invalid values, etc. Note that these - values do not represent the state of the app; simply the state of its - config. Use babase.App to access actual live state. + This will substitute application defaults for values not present + in the config dict, filter some invalid values, etc. Note that + these values do not represent the state of the app; simply the + state of its config. Use the :class:`~babase.App` class to + access actual live state. - Raises an Exception for unrecognized key names. To get the list of keys - supported by this method, use babase.AppConfig.builtin_keys(). Note - that it is perfectly legal to store other data in the config; it just - needs to be accessed through standard dict methods and missing values - handled manually. + Raises an :class:`KeyError` for unrecognized key names. To get + the list of keys supported by this method, use + :meth:`builtin_keys()`. Note that it is perfectly legal to store + other data in the config; it just needs to be accessed through + standard dict methods and missing values handled manually. """ return _babase.resolve_appconfig_value(key) def default_value(self, key: str) -> Any: """Given a string key, return its predefined default value. - This is the value that will be returned by babase.AppConfig.resolve() + This is the value that will be returned by :meth:`resolve()` if the key is not present in the config dict or of an incompatible type. @@ -62,17 +62,19 @@ class AppConfig(dict): return _babase.get_appconfig_default_value(key) def builtin_keys(self) -> list[str]: - """Return the list of valid key names recognized by babase.AppConfig. + """Return the list of valid key names recognized by this class. - This set of keys can be used with resolve(), default_value(), etc. - It does not vary across platforms and may include keys that are - obsolete or not relevant on the current running version. (for instance, - VR related keys on non-VR platforms). This is to minimize the amount - of platform checking necessary) + This set of keys can be used with :meth:`resolve()`, + :meth:`default_value()`, etc. It does not vary across platforms + and may include keys that are obsolete or not relevant on the + current running version. (for instance, VR related keys on + non-VR platforms). This is to minimize the amount of platform + checking necessary) - Note that it is perfectly legal to store arbitrary named data in the - config, but in that case it is up to the user to test for the existence - of the key in the config dict, fall back to consistent defaults, etc. + Note that it is perfectly legal to store arbitrary named data in + the config, but in that case it is up to the user to test for + the existence of the key in the config dict, fall back to + consistent defaults, etc. """ return _babase.get_appconfig_builtin_keys() @@ -93,58 +95,21 @@ class AppConfig(dict): commit_app_config() def apply_and_commit(self) -> None: - """Run apply() followed by commit(); for convenience. + """Shortcut to run :meth:`apply()` followed by :meth:`commit()`. - (This way the commit() will not occur if apply() hits invalid data) + This way the :meth:`commit()` will not occur if :meth:`apply()` + hits invalid data, which is generally desirable. """ self.apply() self.commit() -def read_app_config() -> AppConfig: - """Read the app config.""" - import os - import json - - # NOTE: it is assumed that this only gets called once and the config - # object will not change from here on out - config_file_path = _babase.app.env.config_file_path - config_contents = '' - try: - if os.path.exists(config_file_path): - with open(config_file_path, encoding='utf-8') as infile: - config_contents = infile.read() - config = AppConfig(json.loads(config_contents)) - else: - config = AppConfig() - - except Exception: - logging.exception( - "Error reading config file '%s' at time %.3f.\n" - "Backing up broken config to'%s.broken'.", - config_file_path, - _babase.apptime(), - config_file_path, - ) - - try: - import shutil - - shutil.copyfile(config_file_path, config_file_path + '.broken') - except Exception: - logging.exception('Error copying broken config.') - config = AppConfig() - - return config - - def commit_app_config() -> None: """Commit the config to persistent storage. - Category: **General Utility Functions** - - (internal) + :meta private: """ + # FIXME - this should not require plus. plus = _babase.app.plus assert plus is not None diff --git a/dist/ba_data/python/babase/_appintent.py b/dist/ba_data/python/babase/_appintent.py index 76399af..d6d80e9 100644 --- a/dist/ba_data/python/babase/_appintent.py +++ b/dist/ba_data/python/babase/_appintent.py @@ -10,10 +10,7 @@ if TYPE_CHECKING: class AppIntent: - """A high level directive given to the app. - - Category: **App Classes** - """ + """Base class for high level directives given to the app.""" class AppIntentDefault(AppIntent): diff --git a/dist/ba_data/python/babase/_appmode.py b/dist/ba_data/python/babase/_appmode.py index cfe01f7..715f066 100644 --- a/dist/ba_data/python/babase/_appmode.py +++ b/dist/ba_data/python/babase/_appmode.py @@ -6,41 +6,20 @@ from __future__ import annotations from typing import TYPE_CHECKING if TYPE_CHECKING: - from bacommon.app import AppExperience - from babase._appintent import AppIntent + from babase import AppIntent class AppMode: - """A high level mode for the app. - - Category: **App Classes** + """A low level mode the app can be in. + App-modes fundamentally change app behavior related to input + handling, networking, graphics, and more. In a way, different + app-modes can almost be considered different apps. """ - @classmethod - def get_app_experience(cls) -> AppExperience: - """Return the overall experience provided by this mode.""" - raise NotImplementedError('AppMode subclasses must override this.') - @classmethod def can_handle_intent(cls, intent: AppIntent) -> bool: - """Return whether this mode can handle the provided intent. - - For this to return True, the AppMode must claim to support the - provided intent (via its _supports_intent() method) AND the - AppExperience associated with the AppMode must be supported by - the current app and runtime environment. - """ - # FIXME: check AppExperience. - return cls._supports_intent(intent) - - @classmethod - def _supports_intent(cls, intent: AppIntent) -> bool: - """Return whether our mode can handle the provided intent. - - AppModes should override this to define what they can handle. - Note that AppExperience does not have to be considered here; that - is handled automatically by the can_handle_intent() call.""" + """Override this to define indent handling for an app-mode.""" raise NotImplementedError('AppMode subclasses must override this.') def handle_intent(self, intent: AppIntent) -> None: @@ -48,14 +27,101 @@ class AppMode: raise NotImplementedError('AppMode subclasses must override this.') def on_activate(self) -> None: - """Called when the mode is being activated.""" + """Called when the mode is becoming the active one fro the app.""" def on_deactivate(self) -> None: - """Called when the mode is being deactivated.""" + """Called when the mode stops being the active one for the app. + + On platforms where the app is explicitly exited (such as desktop + PC) this will also be called at app shutdown. + + To best cover both mobile and desktop style platforms, actions + such as saving state should generally happen in response to both + :meth:`on_deactivate()` and :meth:`on_app_active_changed()` + (when active is False). + """ def on_app_active_changed(self) -> None: - """Called when babase.app.active changes. + """Called when the app's active state changes while in this app-mode. - The app-mode may want to take action such as pausing a running - game in such cases. + This corresponds to the app's :attr:`~babase.App.active` attr. + App-active state becomes false when the app is hidden, + minimized, backgrounded, etc. The app-mode may want to take + action such as pausing a running game or saving state when this + occurs. + + On platforms such as mobile where apps get suspended and later + silently terminated by the OS, this is likely to be the last + reliable place to save state/etc. + + To best cover both mobile and desktop style platforms, actions + such as saving state should generally happen in response to both + :meth:`on_deactivate()` and :meth:`on_app_active_changed()` + (when active is False). """ + + def on_purchase_process_begin( + self, item_id: str, user_initiated: bool + ) -> None: + """Called when in-app-purchase processing is beginning. + + This call happens after a purchase has been completed locally + but before its receipt/info is sent to the master-server to + apply to the account. + + :meta private: + """ + # pylint: disable=cyclic-import + import babase + + del item_id # Unused. + + # Show nothing for stuff not directly kicked off by the user. + if not user_initiated: + return + + babase.screenmessage( + babase.Lstr(resource='updatingAccountText'), + color=(0, 1, 0), + ) + # Ick; we can be called early in the bootstrapping process + # before we're allowed to load assets. Guard against that. + if babase.asset_loads_allowed(): + babase.getsimplesound('click01').play() + + def on_purchase_process_end( + self, item_id: str, user_initiated: bool, applied: bool + ) -> None: + """Called when in-app-purchase processing completes. + + Each call to :meth:`on_purchase_process_begin()` will be + followed up by a call to this method. If the purchase was found + to be valid and was applied to the account, applied will be + True. In the case of redundant or invalid purchases or + communication failures it will be False. + + :meta private: + """ + # pylint: disable=cyclic-import + import babase + + # Ignore this; we want to announce newly applied stuff even if + # it was from a different launch or client or whatever. + del user_initiated + + # If the purchase wasn't applied, do nothing. This likely means it + # was redundant or something else harmless. + if not applied: + return + + # By default just announce the item id we got. Real app-modes + # probably want to do something more specific based on item-id. + babase.screenmessage( + babase.Lstr( + translate=('serverResponses', 'You got a ${ITEM}!'), + subs=[('${ITEM}', item_id)], + ), + color=(0, 1, 0), + ) + if babase.asset_loads_allowed(): + babase.getsimplesound('cashRegister').play() diff --git a/dist/ba_data/python/babase/_appmodeselector.py b/dist/ba_data/python/babase/_appmodeselector.py index 9dff2cb..bd4da08 100644 --- a/dist/ba_data/python/babase/_appmodeselector.py +++ b/dist/ba_data/python/babase/_appmodeselector.py @@ -6,27 +6,26 @@ from __future__ import annotations from typing import TYPE_CHECKING if TYPE_CHECKING: - from babase._appintent import AppIntent - from babase._appmode import AppMode + from babase import AppMode, AppIntent class AppModeSelector: - """Defines which AppModes to use to handle given AppIntents. + """Defines which app-modes should handle which app-intents. - Category: **App Classes** - - The app calls an instance of this class when passed an AppIntent to - determine which AppMode to use to handle the intent. Plugins or - spinoff projects can modify high level app behavior by replacing or - modifying the app's mode-selector. + The app calls an instance of this class when passed an + :class:`~babase.AppIntent` to determine which + :class:`~babase.AppMode` to use to handle it. Plugins or spinoff + projects can modify high level app behavior by replacing or + modifying the app's :attr:`~babase.App.mode_selector` attr or by + modifying settings used to construct the default one. """ def app_mode_for_intent(self, intent: AppIntent) -> type[AppMode] | None: - """Given an AppIntent, return the AppMode that should handle it. + """Given an app-intent, return the app-mode that should handle it. - If None is returned, the AppIntent will be ignored. + If None is returned, the intent will be ignored. This may be called in a background thread, so avoid any calls limited to logic thread use/etc. """ - raise NotImplementedError('app_mode_for_intent() should be overridden.') + raise NotImplementedError() diff --git a/dist/ba_data/python/babase/_appsubsystem.py b/dist/ba_data/python/babase/_appsubsystem.py index 78ba01d..1408ad9 100644 --- a/dist/ba_data/python/babase/_appsubsystem.py +++ b/dist/ba_data/python/babase/_appsubsystem.py @@ -5,31 +5,26 @@ from __future__ import annotations from typing import TYPE_CHECKING -import _babase if TYPE_CHECKING: - pass + from babase import UIScale class AppSubsystem: """Base class for an app subsystem. - Category: **App Classes** - An app 'subsystem' is a bit of a vague term, as pieces of the app can technically be any class and are not required to use this, but building one out of this base class provides conveniences such as predefined callbacks during app state changes. - Subsystems must be registered with the app before it completes its - transition to the 'running' state. + Subsystems should be registered with the app using + :meth:`~babase.App.register_subsystem()`. """ - def __init__(self) -> None: - _babase.app.register_subsystem(self) - def on_app_loading(self) -> None: - """Called when the app reaches the loading state. + """Called when the app reaches the + :attr:`~babase.AppState.LOADING` state. Note that subsystems created after the app switches to the loading state will not receive this callback. Subsystems created @@ -37,19 +32,48 @@ class AppSubsystem: """ def on_app_running(self) -> None: - """Called when the app reaches the running state.""" + """Called when the app enters the + :attr:`~babase.AppState.RUNNING` state. + """ def on_app_suspend(self) -> None: - """Called when the app enters the suspended state.""" + """Called when the app enters the + :attr:`~babase.AppState.SUSPENDED` state. + """ def on_app_unsuspend(self) -> None: - """Called when the app exits the suspended state.""" + """Called when the app exits the + :attr:`~babase.AppState.SUSPENDED` state. + """ def on_app_shutdown(self) -> None: - """Called when the app begins shutting down.""" + """Called when the app enters the + :attr:`~babase.AppState.SHUTTING_DOWN` state. + """ def on_app_shutdown_complete(self) -> None: - """Called when the app completes shutting down.""" + """Called when the app enters the + :attr:`~AppState.SHUTDOWN_COMPLETE` state. + """ def do_apply_app_config(self) -> None: """Called when the app config should be applied.""" + + def on_ui_scale_change(self) -> None: + """Called when screen ui-scale changes. + + Will not be called for the initial ui scale. + """ + + def on_screen_size_change(self) -> None: + """Called when the screen size changes. + + Will not be called for the initial screen size. + """ + + def reset(self) -> None: + """Reset the subsystem to a default state. + + This is called when switching app modes, but may be called at + other times too. + """ diff --git a/dist/ba_data/python/babase/_apputils.py b/dist/ba_data/python/babase/_apputils.py index 05d2b3d..049e500 100644 --- a/dist/ba_data/python/babase/_apputils.py +++ b/dist/ba_data/python/babase/_apputils.py @@ -5,38 +5,50 @@ from __future__ import annotations import gc import os -import logging from threading import Thread from functools import partial from dataclasses import dataclass from typing import TYPE_CHECKING, override -from efro.log import LogLevel +from efro.util import utc_now +from efro.logging import LogLevel from efro.dataclassio import ioprepped, dataclass_to_json, dataclass_from_json import _babase from babase._appsubsystem import AppSubsystem +from babase._logging import balog if TYPE_CHECKING: + import datetime from typing import Any, TextIO, Callable import babase +def utc_now_cloud() -> datetime.datetime: + """Returns estimated utc time regardless of local clock settings. + + Applies offsets pulled from server communication/etc. + """ + # TODO: wire this up. Just using local time for now. Make sure that + # BaseFeatureSet::TimeSinceEpochCloudSeconds() and this are synced + # up. + return utc_now() + + def is_browser_likely_available() -> bool: """Return whether a browser likely exists on the current device. - category: General Utility Functions - - If this returns False you may want to avoid calling babase.show_url() - with any lengthy addresses. (ba.show_url() will display an address - as a string in a window if unable to bring up a browser, but that - is only useful for simple URLs.) + If this returns False, you may want to avoid calling + :meth:`~babase.open_url()` with any lengthy addresses. + (:meth:`~babase.open_url()` will display an address as a + string/qr-code in a window if unable to bring up a browser, but that + is only reasonable for small-ish URLs.) """ app = _babase.app if app.classic is None: - logging.warning( + balog.warning( 'is_browser_likely_available() needs to be updated' ' to work without classic.' ) @@ -57,14 +69,14 @@ def is_browser_likely_available() -> bool: def get_remote_app_name() -> babase.Lstr: - """(internal)""" + """:meta private:""" from babase import _language return _language.Lstr(resource='remote_app.app_name') def should_submit_debug_info() -> bool: - """(internal)""" + """:meta private:""" val = _babase.app.config.get('Submit Debug Info', True) assert isinstance(val, bool) return val @@ -83,7 +95,7 @@ def handle_v1_cloud_log() -> None: if classic is None or plus is None: if _babase.do_once(): - logging.warning( + balog.warning( 'handle_v1_cloud_log should not be getting called' ' without classic and plus present.' ) @@ -115,14 +127,13 @@ def handle_v1_cloud_log() -> None: 'userRanCommands': _babase.has_user_run_commands(), 'time': _babase.apptime(), 'userModded': _babase.workspaces_in_use(), - 'newsShow': plus.get_news_show(), + 'newsShow': plus.get_classic_news_show(), } def response(data: Any) -> None: assert classic is not None - # A non-None response means success; lets - # take note that we don't need to report further - # log info this run + # A non-None response means success; lets take note that + # we don't need to report further log info this run if data is not None: classic.log_have_new = False _babase.mark_log_sent() @@ -131,8 +142,8 @@ def handle_v1_cloud_log() -> None: classic.log_upload_timer_started = True - # Delay our log upload slightly in case other - # pertinent info gets printed between now and then. + # Delay our log upload slightly in case other pertinent info + # gets printed between now and then. with _babase.ContextRef.empty(): _babase.apptimer(3.0, _put_log) @@ -149,7 +160,10 @@ def handle_v1_cloud_log() -> None: def handle_leftover_v1_cloud_log_file() -> None: - """Handle an un-uploaded v1-cloud-log from a previous run.""" + """Handle an un-uploaded v1-cloud-log from a previous run. + + :meta private: + """ # Only applies with classic present. if _babase.app.classic is None: @@ -167,8 +181,8 @@ def handle_leftover_v1_cloud_log_file() -> None: if do_send: def response(data: Any) -> None: - # Non-None response means we were successful; - # lets kill it. + # Non-None response means we were successful; lets + # kill it. if data is not None: try: os.remove(_babase.get_v1_cloud_log_file_path()) @@ -184,10 +198,9 @@ def handle_leftover_v1_cloud_log_file() -> None: else: # If they don't want logs uploaded just kill it. os.remove(_babase.get_v1_cloud_log_file_path()) - except Exception: - from babase import _error - _error.print_exception('Error handling leftover log file.') + except Exception: + balog.exception('Error handling leftover log file.') def garbage_collect_session_end() -> None: @@ -206,6 +219,7 @@ def garbage_collect_session_end() -> None: # running them with an explicit flag passed, but we should never # run them by default because gc.get_objects() can mess up the app. # See notes at top of efro.debug. + # if bool(False): # print_live_object_warnings('after session shutdown') @@ -213,11 +227,11 @@ def garbage_collect_session_end() -> None: def garbage_collect() -> None: """Run an explicit pass of garbage collection. - category: General Utility Functions - May also print warnings/etc. if collection takes too long or if uncollectible objects are found (so use this instead of simply - gc.collect(). + :meth:`gc.collect()`. + + :meta private: """ gc.collect() @@ -296,7 +310,7 @@ def dump_app_state( ) except Exception: # Abandon whole dump if we can't write metadata. - logging.exception('Error writing app state dump metadata.') + balog.exception('Error writing app state dump metadata.') return tbpath = os.path.join( @@ -370,13 +384,18 @@ def log_dumped_app_state(from_previous_run: bool = False) -> None: with open(tbpath, 'r', encoding='utf-8') as infile: out += '\nPython tracebacks:\n' + infile.read() os.unlink(tbpath) - logging.log(metadata.log_level.python_logging_level, out) + balog.log(metadata.log_level.python_logging_level, out) except Exception: - logging.exception('Error logging dumped app state.') + balog.exception('Error logging dumped app state.') -class AppHealthMonitor(AppSubsystem): - """Logs things like app-not-responding issues.""" +class AppHealthSubsystem(AppSubsystem): + """Subsystem for monitoring app health; logs not-responding issues, etc. + + The single shared instance of this class can be found on the + :attr:`~babase.App.health` attr on the :class:`~babase.App` + class. + """ def __init__(self) -> None: assert _babase.in_logic_thread() @@ -389,15 +408,28 @@ class AppHealthMonitor(AppSubsystem): @override def on_app_loading(self) -> None: + """:meta private:""" # If any traceback dumps happened last run, log and clear them. log_dumped_app_state(from_previous_run=True) + @override + def on_app_suspend(self) -> None: + """:meta private:""" + assert _babase.in_logic_thread() + self._running = False + + @override + def on_app_unsuspend(self) -> None: + """:meta private:""" + assert _babase.in_logic_thread() + self._running = True + def _app_monitor_thread_main(self) -> None: _babase.set_thread_name('ballistica app-monitor') try: self._monitor_app() except Exception: - logging.exception('Error in AppHealthMonitor thread.') + balog.exception('Error in AppHealthSubsystem thread.') def _set_response(self) -> None: assert _babase.in_logic_thread() @@ -450,13 +482,3 @@ class AppHealthMonitor(AppSubsystem): time.sleep(1.042) self._first_check = False - - @override - def on_app_suspend(self) -> None: - assert _babase.in_logic_thread() - self._running = False - - @override - def on_app_unsuspend(self) -> None: - assert _babase.in_logic_thread() - self._running = True diff --git a/dist/ba_data/python/babase/_cloud.py b/dist/ba_data/python/babase/_cloud.py index 3f5643d..9ea0662 100644 --- a/dist/ba_data/python/babase/_cloud.py +++ b/dist/ba_data/python/babase/_cloud.py @@ -1,197 +1,26 @@ # Released under the MIT License. See LICENSE for details. # -"""Functionality related to the cloud.""" - +"""Cloud related functionality.""" from __future__ import annotations -import logging -from typing import TYPE_CHECKING, overload +from typing import TYPE_CHECKING import _babase -from babase._appsubsystem import AppSubsystem if TYPE_CHECKING: - from typing import Callable, Any - - from efro.message import Message, Response - import bacommon.cloud - -DEBUG_LOG = False - -# TODO: Should make it possible to define a protocol in bacommon.cloud and -# autogenerate this. That would give us type safety between this and -# internal protocols. + pass -class CloudSubsystem(AppSubsystem): - """Manages communication with cloud components.""" +class CloudSubscription: + """User handle to a subscription to some cloud data. - @property - def connected(self) -> bool: - """Property equivalent of CloudSubsystem.is_connected().""" - return self.is_connected() + Do not instantiate these directly; use the subscribe methods in + :class:`~baplus.CloudSubsystem` to create them. + """ - def is_connected(self) -> bool: - """Return whether a connection to the cloud is present. + def __init__(self, subscription_id: int) -> None: + self._subscription_id = subscription_id - This is a good indicator (though not for certain) that sending - messages will succeed. - """ - return False # Needs to be overridden - - def on_connectivity_changed(self, connected: bool) -> None: - """Called when cloud connectivity state changes.""" - if DEBUG_LOG: - logging.debug('CloudSubsystem: Connectivity is now %s.', connected) - - plus = _babase.app.plus - assert plus is not None - - # Inform things that use this. - # (TODO: should generalize this into some sort of registration system) - plus.accounts.on_cloud_connectivity_changed(connected) - - @overload - def send_message_cb( - self, - msg: bacommon.cloud.LoginProxyRequestMessage, - on_response: Callable[ - [bacommon.cloud.LoginProxyRequestResponse | Exception], None - ], - ) -> None: - ... - - @overload - def send_message_cb( - self, - msg: bacommon.cloud.LoginProxyStateQueryMessage, - on_response: Callable[ - [bacommon.cloud.LoginProxyStateQueryResponse | Exception], None - ], - ) -> None: - ... - - @overload - def send_message_cb( - self, - msg: bacommon.cloud.LoginProxyCompleteMessage, - on_response: Callable[[None | Exception], None], - ) -> None: - ... - - @overload - def send_message_cb( - self, - msg: bacommon.cloud.PingMessage, - on_response: Callable[[bacommon.cloud.PingResponse | Exception], None], - ) -> None: - ... - - @overload - def send_message_cb( - self, - msg: bacommon.cloud.SignInMessage, - on_response: Callable[ - [bacommon.cloud.SignInResponse | Exception], None - ], - ) -> None: - ... - - @overload - def send_message_cb( - self, - msg: bacommon.cloud.ManageAccountMessage, - on_response: Callable[ - [bacommon.cloud.ManageAccountResponse | Exception], None - ], - ) -> None: - ... - - def send_message_cb( - self, - msg: Message, - on_response: Callable[[Any], None], - ) -> None: - """Asynchronously send a message to the cloud from the logic thread. - - The provided on_response call will be run in the logic thread - and passed either the response or the error that occurred. - """ - from babase._general import Call - - del msg # Unused. - - _babase.pushcall( - Call( - on_response, - RuntimeError('Cloud functionality is not available.'), - ) - ) - - @overload - def send_message( - self, msg: bacommon.cloud.WorkspaceFetchMessage - ) -> bacommon.cloud.WorkspaceFetchResponse: - ... - - @overload - def send_message( - self, msg: bacommon.cloud.MerchAvailabilityMessage - ) -> bacommon.cloud.MerchAvailabilityResponse: - ... - - @overload - def send_message( - self, msg: bacommon.cloud.TestMessage - ) -> bacommon.cloud.TestResponse: - ... - - def send_message(self, msg: Message) -> Response | None: - """Synchronously send a message to the cloud. - - Must be called from a background thread. - """ - raise RuntimeError('Cloud functionality is not available.') - - -def cloud_console_exec(code: str) -> None: - """Called by the cloud console to run code in the logic thread.""" - import sys - import __main__ - - try: - # First try it as eval. - try: - evalcode = compile(code, '', 'eval') - except SyntaxError: - evalcode = None - except Exception: - # hmm; when we can't compile it as eval will we always get - # syntax error? - logging.exception( - 'unexpected error compiling code for cloud-console eval.' - ) - evalcode = None - if evalcode is not None: - # pylint: disable=eval-used - value = eval(evalcode, vars(__main__), vars(__main__)) - # For eval-able statements, print the resulting value if - # it is not None (just like standard Python interpreter). - if value is not None: - print(repr(value), file=sys.stderr) - - # Fall back to exec if we couldn't compile it as eval. - else: - execcode = compile(code, '', 'exec') - # pylint: disable=exec-used - exec(execcode, vars(__main__), vars(__main__)) - except Exception: - import traceback - - apptime = _babase.apptime() - print(f'Exec error at time {apptime:.2f}.', file=sys.stderr) - traceback.print_exc() - - # This helps the logging system ship stderr back to the - # cloud promptly. - sys.stderr.flush() + def __del__(self) -> None: + if _babase.app.plus is not None: + _babase.app.plus.cloud.unsubscribe(self._subscription_id) diff --git a/dist/ba_data/python/babase/_devconsole.py b/dist/ba_data/python/babase/_devconsole.py index d4e7099..3bd4e21 100644 --- a/dist/ba_data/python/babase/_devconsole.py +++ b/dist/ba_data/python/babase/_devconsole.py @@ -4,9 +4,9 @@ from __future__ import annotations import os -from typing import TYPE_CHECKING, override -from dataclasses import dataclass import logging +from dataclasses import dataclass +from typing import TYPE_CHECKING import _babase @@ -15,10 +15,13 @@ if TYPE_CHECKING: class DevConsoleTab: - """Defines behavior for a tab in the dev-console.""" + """Base class for a :class:`~babase.DevConsoleSubsystem` tab.""" def refresh(self) -> None: - """Called when the tab should refresh itself.""" + """Called when the tab should refresh itself. + + Overridden by subclasses to implement tab behavior. + """ def request_refresh(self) -> None: """The tab can call this to request that it be refreshed.""" @@ -30,10 +33,27 @@ class DevConsoleTab: pos: tuple[float, float], size: tuple[float, float], call: Callable[[], Any] | None = None, + *, h_anchor: Literal['left', 'center', 'right'] = 'center', label_scale: float = 1.0, corner_radius: float = 8.0, - style: Literal['normal', 'dark'] = 'normal', + style: Literal[ + 'normal', + 'bright', + 'red', + 'red_bright', + 'purple', + 'purple_bright', + 'yellow', + 'yellow_bright', + 'blue', + 'blue_bright', + 'white', + 'white_bright', + 'black', + 'black_bright', + ] = 'normal', + disabled: bool = False, ) -> None: """Add a button to the tab being refreshed.""" assert _babase.app.devconsole.is_refreshing @@ -48,12 +68,14 @@ class DevConsoleTab: label_scale, corner_radius, style, + disabled, ) def text( self, text: str, pos: tuple[float, float], + *, h_anchor: Literal['left', 'center', 'right'] = 'center', h_align: Literal['left', 'center', 'right'] = 'center', v_align: Literal['top', 'center', 'bottom', 'none'] = 'center', @@ -72,108 +94,98 @@ class DevConsoleTab: @property def width(self) -> float: - """Return the current tab width. Only call during refreshes.""" + """The current tab width. Only valid during refreshes.""" assert _babase.app.devconsole.is_refreshing return _babase.dev_console_tab_width() @property def height(self) -> float: - """Return the current tab height. Only call during refreshes.""" + """The current tab height. Only valid during refreshes.""" assert _babase.app.devconsole.is_refreshing return _babase.dev_console_tab_height() @property def base_scale(self) -> float: - """A scale value set depending on the app's UI scale. + """A scale value based on the app's current :class:`~babase.UIScale`. - Dev-console tabs can incorporate this into their UI sizes and - positions if they desire. This must be done manually however. + Dev-console tabs can manually incorporate this into their UI + sizes and positions if they desire. By default, dev-console tabs + are uniform across all ui-scales. """ assert _babase.app.devconsole.is_refreshing return _babase.dev_console_base_scale() -class DevConsoleTabPython(DevConsoleTab): - """The Python dev-console tab.""" - - @override - def refresh(self) -> None: - self.python_terminal() - - -class DevConsoleTabTest(DevConsoleTab): - """Test dev-console tab.""" - - @override - def refresh(self) -> None: - import random - - self.button( - f'FLOOP-{random.randrange(200)}', - pos=(10, 10), - size=(100, 30), - h_anchor='left', - label_scale=0.6, - call=self.request_refresh, - ) - self.button( - f'FLOOP2-{random.randrange(200)}', - pos=(120, 10), - size=(100, 30), - h_anchor='left', - label_scale=0.6, - style='dark', - ) - self.text( - 'TestText', - scale=0.8, - pos=(15, 50), - h_anchor='left', - h_align='left', - v_align='none', - ) - - @dataclass class DevConsoleTabEntry: - """Represents a distinct tab in the dev-console.""" + """Represents a distinct tab in the :class:`~babase.DevConsoleSubsystem`.""" name: str factory: Callable[[], DevConsoleTab] class DevConsoleSubsystem: - """Subsystem for wrangling the dev console. + """Subsystem for wrangling the dev-console. - The single instance of this class can be found at - babase.app.devconsole. The dev-console is a simple always-available - UI intended for use by developers; not end users. Traditionally it - is available by typing a backtick (`) key on a keyboard, but now can - be accessed via an on-screen button (see settings/advanced to enable - said button). + Access the single shared instance of this class via the + :attr:`~babase.App.devconsole` attr on the :class:`~babase.App` + class. + + The dev-console is a simple always-available UI intended for use by + developers; not end users. Traditionally it is available by typing a + backtick (`) key on a keyboard, but can also be accessed via an + on-screen button (see settings/advanced/dev-tools to enable said + button). """ def __init__(self) -> None: - # All tabs in the dev-console. Add your own stuff here via - # plugins or whatnot. + # pylint: disable=cyclic-import + from babase._devconsoletabs import ( + DevConsoleTabPython, + DevConsoleTabAppModes, + DevConsoleTabUI, + DevConsoleTabLogging, + DevConsoleTabTest, + ) + + #: All tabs in the dev-console. Add your own stuff here via + #: plugins or whatnot to customize the console. self.tabs: list[DevConsoleTabEntry] = [ - DevConsoleTabEntry('Python', DevConsoleTabPython) + DevConsoleTabEntry('Python', DevConsoleTabPython), + DevConsoleTabEntry('AppModes', DevConsoleTabAppModes), + DevConsoleTabEntry('UI', DevConsoleTabUI), + DevConsoleTabEntry('Logging', DevConsoleTabLogging), ] if os.environ.get('BA_DEV_CONSOLE_TEST_TAB', '0') == '1': self.tabs.append(DevConsoleTabEntry('Test', DevConsoleTabTest)) self.is_refreshing = False + self._tab_instances: dict[str, DevConsoleTab] = {} def do_refresh_tab(self, tabname: str) -> None: - """Called by the C++ layer when a tab should be filled out.""" + """Called by the C++ layer when a tab should be filled out. + + :meta private: + """ assert _babase.in_logic_thread() - # FIXME: We currently won't handle multiple tabs with the same - # name. We should give a clean error or something in that case. - tab: DevConsoleTab | None = None - for tabentry in self.tabs: - if tabentry.name == tabname: - tab = tabentry.factory() - break + # Make noise if we have repeating tab names, as that breaks our + # logic. + if __debug__: + alltabnames = set[str](tabentry.name for tabentry in self.tabs) + if len(alltabnames) != len(self.tabs): + logging.error( + 'Duplicate dev-console tab names found;' + ' tabs may behave unpredictably.' + ) + + tab: DevConsoleTab | None = self._tab_instances.get(tabname) + + # If we haven't instantiated this tab yet, do so. + if tab is None: + for tabentry in self.tabs: + if tabentry.name == tabname: + tab = self._tab_instances[tabname] = tabentry.factory() + break if tab is None: logging.error( diff --git a/dist/ba_data/python/babase/_devconsoletabs.py b/dist/ba_data/python/babase/_devconsoletabs.py new file mode 100644 index 0000000..9299d7f --- /dev/null +++ b/dist/ba_data/python/babase/_devconsoletabs.py @@ -0,0 +1,669 @@ +# Released under the MIT License. See LICENSE for details. +# +"""Predefined tabs for the dev console.""" +from __future__ import annotations + +import math +import random +import logging +from functools import partial +from typing import TYPE_CHECKING, override + +import _babase + +from babase._devconsole import DevConsoleTab + +if TYPE_CHECKING: + from typing import Callable, Literal + + from bacommon.loggercontrol import LoggerControlConfig + from babase import AppMode + + +class DevConsoleTabPython(DevConsoleTab): + """The Python dev-console tab.""" + + @override + def refresh(self) -> None: + self.python_terminal() + + +class DevConsoleTabAppModes(DevConsoleTab): + """Tab to switch app modes.""" + + def __init__(self) -> None: + self._app_modes: list[type[AppMode]] | None = None + self._app_modes_loading = False + + def _on_app_modes_loaded(self, modes: list[type[AppMode]]) -> None: + from babase._appintent import AppIntentDefault + + intent = AppIntentDefault() + + # Limit to modes that can handle default intents since that's + # what we use. + self._app_modes = [ + mode for mode in modes if mode.can_handle_intent(intent) + ] + self.request_refresh() + + @override + def refresh(self) -> None: + from babase import AppMode + + # Kick off a load if applicable. + if self._app_modes is None and not self._app_modes_loading: + _babase.app.meta.load_exported_classes( + 'babase.AppMode', AppMode, self._on_app_modes_loaded + ) + + # Just say 'loading' if we don't have app-modes yet. + if self._app_modes is None: + self.text( + 'Loading...', pos=(0, 30), h_anchor='center', h_align='center' + ) + return + + bwidth = 300 + bpadding = 5 + + xoffs = -0.5 * bwidth * len(self._app_modes) + + self.text( + 'Available AppModes:', + scale=0.8, + pos=(0, 75), + h_align='center', + v_align='center', + ) + # pylint: disable=protected-access + for i, mode in enumerate(self._app_modes): + self.button( + f'{mode.__module__}.{mode.__qualname__}', + pos=(xoffs + i * bwidth + bpadding, 10), + size=(bwidth - 2.0 * bpadding, 40), + label_scale=0.6, + call=partial(self._set_app_mode, mode), + style=( + 'bright' + if isinstance(_babase.app._mode, mode) + else 'normal' + ), + ) + + def _set_app_mode(self, mode: type[AppMode]) -> None: + from babase._appintent import AppIntentDefault + + intent = AppIntentDefault() + + # Use private functionality to force a specific app-mode to + # handle this intent. Note that this should never be done + # outside of this explicit testing case. It is the app's job to + # determine which app-mode should be used to handle a given + # intent. + setattr(intent, '_force_app_mode_handler', mode) + + _babase.app.set_intent(intent) + + # Slight hackish: need to wait a moment before refreshing to + # pick up the newly current mode, as mode switches are + # asynchronous. + _babase.apptimer(0.1, self.request_refresh) + + +class DevConsoleTabUI(DevConsoleTab): + """Tab to debug/test UI stuff.""" + + @override + def refresh(self) -> None: + from babase._mgen.enums import UIScale + + xoffs = -375 + + self.text( + 'Make sure all UIs either fit in the virtual safe area' + ' or dynamically respond to screen size changes.', + scale=0.6, + pos=(xoffs + 15, 70), + h_align='left', + v_align='center', + ) + + ui_overlay = _babase.get_draw_virtual_safe_area_bounds() + self.button( + 'Virtual Safe Area ON' if ui_overlay else 'Virtual Safe Area OFF', + pos=(xoffs + 10, 10), + size=(200, 30), + label_scale=0.6, + call=self.toggle_ui_overlay, + style='bright' if ui_overlay else 'normal', + ) + x = 300 + self.text( + 'UI-Scale', + pos=(xoffs + x - 5, 15), + h_align='right', + v_align='none', + scale=0.6, + ) + + bwidth = 100 + for scale in UIScale: + self.button( + scale.name.capitalize(), + pos=(xoffs + x, 10), + size=(bwidth, 30), + label_scale=0.6, + call=partial(_babase.app.set_ui_scale, scale), + style=( + 'bright' + if scale.name.lower() == _babase.get_ui_scale() + else 'normal' + ), + ) + x += bwidth + 2 + + def toggle_ui_overlay(self) -> None: + """Toggle UI overlay drawing.""" + _babase.set_draw_virtual_safe_area_bounds( + not _babase.get_draw_virtual_safe_area_bounds() + ) + self.request_refresh() + + +class Table[T]: + """Used to show controls for arbitrarily large data in a grid form.""" + + def __init__( + self, + title: str, + entries: list[T], + draw_entry_call: Callable[ + [int, T, DevConsoleTab, float, float, float, float], None + ], + *, + entry_width: float = 300.0, + entry_height: float = 40.0, + margin_left_right: float = 60.0, + debug_bounds: bool = False, + max_columns: int | None = None, + ) -> None: + self._title = title + self._entry_width = entry_width + self._entry_height = entry_height + self._margin_left_right = margin_left_right + self._focus_entry_index = 0 + self._entries_per_page = 1 + self._debug_bounds = debug_bounds + self._entries = entries + self._draw_entry_call = draw_entry_call + self._max_columns = max_columns + + # Values updated on refresh (for aligning other custom + # widgets/etc.) + self.top_left: tuple[float, float] = (0.0, 0.0) + self.top_right: tuple[float, float] = (0.0, 0.0) + + def set_entries(self, entries: list[T]) -> None: + """Update table entries.""" + self._entries = entries + + # Clamp focus to new entries. + self._focus_entry_index = max( + 0, min(len(self._entries) - 1, self._focus_entry_index) + ) + + def set_focus_entry_index(self, index: int) -> None: + """Explicitly set the focused entry. + + This affects which page is shown at the next refresh. + """ + self._focus_entry_index = max(0, min(len(self._entries) - 1, index)) + + def refresh(self, tab: DevConsoleTab) -> None: + """Call to refresh the data.""" + # pylint: disable=too-many-locals + + margin_top = 50.0 + margin_bottom = 10.0 + + # Update how much we can fit on a page based on our current size. + max_entry_area_width = tab.width - (self._margin_left_right * 2.0) + max_entry_area_height = tab.height - (margin_top + margin_bottom) + columns = max(1, int(max_entry_area_width / self._entry_width)) + if self._max_columns is not None: + columns = min(columns, self._max_columns) + rows = max(1, int(max_entry_area_height / self._entry_height)) + self._entries_per_page = rows * columns + + # See which page our focus index falls in. + pagemax = math.ceil(len(self._entries) / self._entries_per_page) + + page = self._focus_entry_index // self._entries_per_page + entry_offset = page * self._entries_per_page + + entries_on_this_page = min( + self._entries_per_page, len(self._entries) - entry_offset + ) + columns_on_this_page = math.ceil(entries_on_this_page / rows) + rows_on_this_page = min(entries_on_this_page, rows) + + # We attach things to the center so resizes are smooth but we do + # some math in a left-centric way. + center_to_left = tab.width * -0.5 + + # Center our columns. + xoffs = 0.5 * ( + max_entry_area_width - columns_on_this_page * self._entry_width + ) + + # Align everything to the bottom of the dev-console. + # + # UPDATE: Nevermind; top feels better. Keeping this code around + # in case we ever want to make it an option though. + if bool(False): + yoffs = -1.0 * ( + tab.height + - ( + rows_on_this_page * self._entry_height + + margin_top + + margin_bottom + ) + ) + else: + yoffs = 0 + + # Keep our corners up to date for user use. + self.top_left = (center_to_left + xoffs, tab.height + yoffs) + self.top_right = ( + self.top_left[0] + + self._margin_left_right * 2.0 + + columns_on_this_page * self._entry_width, + self.top_left[1], + ) + + # Page left/right buttons. + tab.button( + '<', + pos=( + center_to_left + xoffs, + yoffs + tab.height - margin_top - rows * self._entry_height, + ), + size=( + self._margin_left_right, + rows * self._entry_height, + ), + call=partial(self._page_left, tab), + disabled=entry_offset == 0, + ) + tab.button( + '>', + pos=( + center_to_left + + xoffs + + self._margin_left_right + + columns_on_this_page * self._entry_width, + yoffs + tab.height - margin_top - rows * self._entry_height, + ), + size=( + self._margin_left_right, + rows * self._entry_height, + ), + call=partial(self._page_right, tab), + disabled=( + entry_offset + entries_on_this_page >= len(self._entries) + ), + ) + + for column in range(columns): + for row in range(rows): + entry_index = entry_offset + column * rows + row + if entry_index >= len(self._entries): + break + + xpos = ( + xoffs + self._margin_left_right + self._entry_width * column + ) + ypos = ( + yoffs + + tab.height + - margin_top + - self._entry_height * (row + 1.0) + ) + # Draw debug bounds. + if self._debug_bounds: + tab.button( + str(entry_index), + pos=( + center_to_left + xpos, + ypos, + ), + size=(self._entry_width, self._entry_height), + # h_anchor='left', + ) + # Run user drawing. + self._draw_entry_call( + entry_index, + self._entries[entry_index], + tab, + center_to_left + xpos, + ypos, + self._entry_width, + self._entry_height, + ) + + if entry_index >= len(self._entries): + break + + tab.text( + f'{self._title} ({page + 1}/{pagemax})', + scale=0.8, + pos=(0, yoffs + tab.height - margin_top * 0.5), + h_align='center', + v_align='center', + ) + + def _page_right(self, tab: DevConsoleTab) -> None: + # Set focus on the first entry in the page before the current. + page = self._focus_entry_index // self._entries_per_page + page += 1 + self.set_focus_entry_index(page * self._entries_per_page) + tab.request_refresh() + + def _page_left(self, tab: DevConsoleTab) -> None: + # Set focus on the first entry in the page after the current. + page = self._focus_entry_index // self._entries_per_page + page -= 1 + self.set_focus_entry_index(page * self._entries_per_page) + tab.request_refresh() + + +class DevConsoleTabLogging(DevConsoleTab): + """Tab to wrangle logging levels.""" + + def __init__(self) -> None: + + self._table = Table( + title='Logging Levels', + entry_width=800, + entry_height=42, + debug_bounds=False, + entries=list[str](), + draw_entry_call=self._draw_entry, + max_columns=1, + ) + + @override + def refresh(self) -> None: + assert self._table is not None + + # Update table entries with the latest set of loggers (this can + # change over time). + self._table.set_entries( + ['root'] + sorted(logging.root.manager.loggerDict) + ) + + # Draw the table. + self._table.refresh(self) + + # Draw our control buttons in the corners. + tl = self._table.top_left + tr = self._table.top_right + bwidth = 140.0 + bheight = 30.0 + bvpad = 10.0 + self.button( + 'Reset', + pos=(tl[0], tl[1] - bheight - bvpad), + size=(bwidth, bheight), + label_scale=0.6, + call=self._reset, + disabled=( + not self._get_reset_logger_control_config().would_make_changes() + ), + ) + self.button( + 'Cloud Control OFF', + pos=(tr[0] - bwidth, tl[1] - bheight - bvpad), + size=(bwidth, bheight), + label_scale=0.6, + disabled=True, + ) + + def _get_reset_logger_control_config(self) -> LoggerControlConfig: + from bacommon.logging import get_base_logger_control_config_client + + return get_base_logger_control_config_client() + + def _reset(self) -> None: + + self._get_reset_logger_control_config().apply() + + # Let the native layer know that levels changed. + _babase.update_internal_logger_levels() + + # Blow away any existing values in app-config. + appconfig = _babase.app.config + if 'Log Levels' in appconfig: + del appconfig['Log Levels'] + appconfig.commit() + + self.request_refresh() + + def _set_entry_val(self, entry_index: int, entry: str, val: int) -> None: + + from bacommon.logging import get_base_logger_control_config_client + from bacommon.loggercontrol import LoggerControlConfig + + # Focus on this entry with any interaction, so if we get resized + # it'll still be visible. + self._table.set_focus_entry_index(entry_index) + + logging.getLogger(entry).setLevel(val) + + # Let the native layer know that levels changed. + _babase.update_internal_logger_levels() + + # Store only changes compared to the base config. + baseconfig = get_base_logger_control_config_client() + config = LoggerControlConfig.from_current_loggers().diff(baseconfig) + + appconfig = _babase.app.config + appconfig['Log Levels'] = config.levels + appconfig.commit() + + self.request_refresh() + + def _draw_entry( + self, + entry_index: int, + entry: str, + tab: DevConsoleTab, + x: float, + y: float, + width: float, + height: float, + ) -> None: + # pylint: disable=too-many-positional-arguments + # pylint: disable=too-many-locals + + xoffs = -15.0 + bwidth = 80.0 + btextscale = 0.5 + tab.text( + entry, + ( + x + width - bwidth * 6.5 - 10.0 + xoffs, + y + height * 0.5, + ), + h_align='right', + scale=0.7, + ) + + logger = logging.getLogger(entry) + level = logger.level + index = 0 + effectivelevel = logger.getEffectiveLevel() + # if entry != 'root' and level == logging.NOTSET: + # # Show the level being inherited in NOTSET cases. + # notsetlevelname = logging.getLevelName(logger.getEffectiveLevel()) + # if notsetlevelname == 'NOTSET': + # notsetname = 'Not Set' + # else: + # notsetname = f'Not Set ({notsetlevelname.capitalize()})' + # else: + notsetname = 'Not Set' + tab.button( + notsetname, + pos=(x + width - bwidth * 6.5 + xoffs + 1.0, y + 5.0), + size=(bwidth * 1.0 - 2.0, height - 10), + label_scale=btextscale, + style='white_bright' if level == logging.NOTSET else 'black', + call=partial( + self._set_entry_val, entry_index, entry, logging.NOTSET + ), + ) + index += 1 + tab.button( + 'Debug', + pos=(x + width - bwidth * 5 + xoffs + 1.0, y + 5.0), + size=(bwidth - 2.0, height - 10), + label_scale=btextscale, + style=( + 'white_bright' + if level == logging.DEBUG + else 'blue' if effectivelevel <= logging.DEBUG else 'black' + ), + # style='bright' if level == logging.DEBUG else 'normal', + call=partial( + self._set_entry_val, entry_index, entry, logging.DEBUG + ), + ) + index += 1 + tab.button( + 'Info', + pos=(x + width - bwidth * 4 + xoffs + 1.0, y + 5.0), + size=(bwidth - 2.0, height - 10), + label_scale=btextscale, + style=( + 'white_bright' + if level == logging.INFO + else 'white' if effectivelevel <= logging.INFO else 'black' + ), + # style='bright' if level == logging.INFO else 'normal', + call=partial(self._set_entry_val, entry_index, entry, logging.INFO), + ) + index += 1 + tab.button( + 'Warning', + pos=(x + width - bwidth * 3 + xoffs + 1.0, y + 5.0), + size=(bwidth - 2.0, height - 10), + label_scale=btextscale, + style=( + 'white_bright' + if level == logging.WARNING + else 'yellow' if effectivelevel <= logging.WARNING else 'black' + ), + call=partial( + self._set_entry_val, entry_index, entry, logging.WARNING + ), + ) + index += 1 + tab.button( + 'Error', + pos=(x + width - bwidth * 2 + xoffs + 1.0, y + 5.0), + size=(bwidth - 2.0, height - 10), + label_scale=btextscale, + style=( + 'white_bright' + if level == logging.ERROR + else 'red' if effectivelevel <= logging.ERROR else 'black' + ), + call=partial( + self._set_entry_val, entry_index, entry, logging.ERROR + ), + ) + index += 1 + tab.button( + 'Critical', + pos=(x + width - bwidth * 1 + xoffs + 1.0, y + 5.0), + size=(bwidth - 2.0, height - 10), + label_scale=btextscale, + style=( + 'white_bright' + if level == logging.CRITICAL + else ( + 'purple' if effectivelevel <= logging.CRITICAL else 'black' + ) + ), + call=partial( + self._set_entry_val, entry_index, entry, logging.CRITICAL + ), + ) + + +class DevConsoleTabTest(DevConsoleTab): + """Test dev-console tab.""" + + @override + def refresh(self) -> None: + + self.button( + f'FLOOP-{random.randrange(200)}', + pos=(10, 10), + size=(100, 30), + h_anchor='left', + label_scale=0.6, + call=self.request_refresh, + ) + self.button( + f'FLOOP2-{random.randrange(200)}', + pos=(120, 10), + size=(100, 30), + h_anchor='left', + label_scale=0.6, + style='bright', + ) + self.text( + 'TestText', + scale=0.8, + pos=(15, 50), + h_anchor='left', + h_align='left', + v_align='none', + ) + + # Throw little bits of text in the corners to make sure + # widths/heights are correct. + self.text( + 'BL', + scale=0.25, + pos=(0, 0), + h_anchor='left', + h_align='left', + v_align='bottom', + ) + self.text( + 'BR', + scale=0.25, + pos=(self.width, 0), + h_anchor='left', + h_align='right', + v_align='bottom', + ) + self.text( + 'TL', + scale=0.25, + pos=(0, self.height), + h_anchor='left', + h_align='left', + v_align='top', + ) + self.text( + 'TR', + scale=0.25, + pos=(self.width, self.height), + h_anchor='left', + h_align='right', + v_align='top', + ) diff --git a/dist/ba_data/python/babase/_emptyappmode.py b/dist/ba_data/python/babase/_emptyappmode.py index 6745d21..2c83a14 100644 --- a/dist/ba_data/python/babase/_emptyappmode.py +++ b/dist/ba_data/python/babase/_emptyappmode.py @@ -5,7 +5,7 @@ from __future__ import annotations from typing import TYPE_CHECKING, override -from bacommon.app import AppExperience +# from bacommon.app import AppExperience import _babase from babase._appmode import AppMode @@ -15,34 +15,33 @@ if TYPE_CHECKING: from babase import AppIntent +# ba_meta export babase.AppMode class EmptyAppMode(AppMode): - """An empty app mode that can be used as a fallback/etc.""" + """An AppMode that does not do much at all. + + :meta private: + """ @override @classmethod - def get_app_experience(cls) -> AppExperience: - return AppExperience.EMPTY - - @override - @classmethod - def _supports_intent(cls, intent: AppIntent) -> bool: + def can_handle_intent(cls, intent: AppIntent) -> bool: # We support default and exec intents currently. return isinstance(intent, AppIntentExec | AppIntentDefault) @override def handle_intent(self, intent: AppIntent) -> None: if isinstance(intent, AppIntentExec): - _babase.empty_app_mode_handle_intent_exec(intent.code) + _babase.empty_app_mode_handle_app_intent_exec(intent.code) return assert isinstance(intent, AppIntentDefault) - _babase.empty_app_mode_handle_intent_default() + _babase.empty_app_mode_handle_app_intent_default() @override def on_activate(self) -> None: # Let the native layer do its thing. - _babase.on_empty_app_mode_activate() + _babase.empty_app_mode_activate() @override def on_deactivate(self) -> None: # Let the native layer do its thing. - _babase.on_empty_app_mode_deactivate() + _babase.empty_app_mode_deactivate() diff --git a/dist/ba_data/python/babase/_env.py b/dist/ba_data/python/babase/_env.py index 5efc253..ff06b51 100644 --- a/dist/ba_data/python/babase/_env.py +++ b/dist/ba_data/python/babase/_env.py @@ -9,11 +9,11 @@ import logging import warnings from typing import TYPE_CHECKING, override -from efro.log import LogLevel +from efro.logging import LogLevel if TYPE_CHECKING: from typing import Any - from efro.log import LogEntry, LogHandler + from efro.logging import LogEntry, LogHandler _g_babase_imported = False # pylint: disable=invalid-name _g_babase_app_started = False # pylint: disable=invalid-name @@ -144,6 +144,10 @@ def on_main_thread_start_app() -> None: # situations. __main__.__builtins__.help = _CustomHelper() + # UPDATE: As of May 2025 I'm no longer seeing the below issue, so + # disabling this workaround for now and will remove it soon if no + # issues arise. + # On Windows I'm seeing the following error creating asyncio loops # in background threads with the default proactor setup: @@ -155,7 +159,7 @@ def on_main_thread_start_app() -> None: # thread; previously the various asyncio bg thread loops were # working fine (maybe something caused them to default to selector # in that case?.. - if sys.platform == 'win32': + if sys.platform == 'win32' and bool(False): import asyncio asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy()) @@ -186,7 +190,10 @@ def _feed_logs_to_babase(log_handler: LogHandler) -> None: # Forward this along to the engine to display in the in-app # console, in the Android log, etc. _babase.emit_log( - name=entry.name, level=entry.level.name, message=entry.message + name=entry.name, + level=entry.level.name, + timestamp=entry.time.timestamp(), + message=entry.message, ) # We also want to feed some logs to the old v1-cloud-log system. diff --git a/dist/ba_data/python/babase/_error.py b/dist/ba_data/python/babase/_error.py index 65c97bf..e95dc54 100644 --- a/dist/ba_data/python/babase/_error.py +++ b/dist/ba_data/python/babase/_error.py @@ -6,183 +6,66 @@ from __future__ import annotations from typing import TYPE_CHECKING -import _babase - if TYPE_CHECKING: from typing import Any class ContextError(Exception): - """Exception raised when a call is made in an invalid context. + """Raised when a call is made in an invalid context. - Category: **Exception Classes** - - Examples of this include calling UI functions within an Activity context - or calling scene manipulation functions outside of a game context. + Examples of this include calling UI functions within an activity + context or calling scene manipulation functions outside of a scene + context. """ class NotFoundError(Exception): - """Exception raised when a referenced object does not exist. - - Category: **Exception Classes** - """ + """Raised when a referenced object does not exist.""" class PlayerNotFoundError(NotFoundError): - """Exception raised when an expected player does not exist. - - Category: **Exception Classes** - """ + """Raised when an expected player does not exist.""" class SessionPlayerNotFoundError(NotFoundError): - """Exception raised when an expected session-player does not exist. - - Category: **Exception Classes** - """ + """Exception raised when an expected session-player does not exist.""" class TeamNotFoundError(NotFoundError): - """Exception raised when an expected bascenev1.Team does not exist. - - Category: **Exception Classes** - """ + """Raised when an expected team does not exist.""" class MapNotFoundError(NotFoundError): - """Exception raised when an expected bascenev1.Map does not exist. - - Category: **Exception Classes** - """ + """Raised when an expected map does not exist.""" class DelegateNotFoundError(NotFoundError): - """Exception raised when an expected delegate object does not exist. - - Category: **Exception Classes** - """ + """Raised when an expected delegate object does not exist.""" class SessionTeamNotFoundError(NotFoundError): - """Exception raised when an expected session-team does not exist. - - Category: **Exception Classes** - """ + """Raised when an expected session-team does not exist.""" class NodeNotFoundError(NotFoundError): - """Exception raised when an expected Node does not exist. - - Category: **Exception Classes** - """ + """Raised when an expected node does not exist.""" class ActorNotFoundError(NotFoundError): - """Exception raised when an expected actor does not exist. - - Category: **Exception Classes** - """ + """Raised when an expected actor does not exist.""" class ActivityNotFoundError(NotFoundError): - """Exception raised when an expected bascenev1.Activity does not exist. - - Category: **Exception Classes** - """ + """Raised when an expected activity does not exist.""" class SessionNotFoundError(NotFoundError): - """Exception raised when an expected session does not exist. - - Category: **Exception Classes** - """ + """Raised when an expected session does not exist.""" class InputDeviceNotFoundError(NotFoundError): - """Exception raised when an expected input-device does not exist. - - Category: **Exception Classes** - """ + """Raised when an expected input-device does not exist.""" class WidgetNotFoundError(NotFoundError): - """Exception raised when an expected widget does not exist. - - Category: **Exception Classes** - """ - - -# TODO: Should integrate some sort of context printing into our -# log handling so we can just use logging.exception() and kill these -# two functions. - - -def print_exception(*args: Any, **keywds: Any) -> None: - """Print info about an exception along with pertinent context state. - - Category: **General Utility Functions** - - Prints all arguments provided along with various info about the - current context and the outstanding exception. - Pass the keyword 'once' as True if you want the call to only happen - one time from an exact calling location. - """ - import traceback - - if keywds: - allowed_keywds = ['once'] - if any(keywd not in allowed_keywds for keywd in keywds): - raise TypeError('invalid keyword(s)') - try: - # If we're only printing once and already have, bail. - if keywds.get('once', False): - if not _babase.do_once(): - return - - err_str = ' '.join([str(a) for a in args]) - print('ERROR:', err_str) - _babase.print_context() - print('PRINTED-FROM:') - - # Basically the output of traceback.print_stack() - stackstr = ''.join(traceback.format_stack()) - print(stackstr, end='') - print('EXCEPTION:') - - # Basically the output of traceback.print_exc() - excstr = traceback.format_exc() - print('\n'.join(' ' + l for l in excstr.splitlines())) - except Exception: - # I suppose using print_exception here would be a bad idea. - print('ERROR: exception in babase.print_exception():') - traceback.print_exc() - - -def print_error(err_str: str, once: bool = False) -> None: - """Print info about an error along with pertinent context state. - - Category: **General Utility Functions** - - Prints all positional arguments provided along with various info about the - current context. - Pass the keyword 'once' as True if you want the call to only happen - one time from an exact calling location. - """ - import traceback - - try: - # If we're only printing once and already have, bail. - if once: - if not _babase.do_once(): - return - - print('ERROR:', err_str) - _babase.print_context() - - # Basically the output of traceback.print_stack() - stackstr = ''.join(traceback.format_stack()) - print(stackstr, end='') - except Exception: - print('ERROR: exception in babase.print_error():') - traceback.print_exc() + """Raised when an expected widget does not exist.""" diff --git a/dist/ba_data/python/babase/_general.py b/dist/ba_data/python/babase/_general.py index d9c2185..977805c 100644 --- a/dist/ba_data/python/babase/_general.py +++ b/dist/ba_data/python/babase/_general.py @@ -34,48 +34,40 @@ DisplayTime = NewType('DisplayTime', float) class Existable(Protocol): - """A Protocol for objects supporting an exists() method. - - Category: **Protocols** - """ + """A Protocol for objects supporting an ``exists()`` method.""" def exists(self) -> bool: """Whether this object exists.""" -ExistableT = TypeVar('ExistableT', bound=Existable) -T = TypeVar('T') - - -def existing(obj: ExistableT | None) -> ExistableT | None: +def existing[ExistableT: Existable]( + obj: ExistableT | None, +) -> ExistableT | None: """Convert invalid references to None for any babase.Existable object. - Category: **Gameplay Functions** - - To best support type checking, it is important that invalid references - not be passed around and instead get converted to values of None. - That way the type checker can properly flag attempts to pass possibly-dead - objects (FooType | None) into functions expecting only live ones - (FooType), etc. This call can be used on any 'existable' object - (one with an exists() method) and will convert it to a None value - if it does not exist. + To best support type checking, it is important that invalid + references not be passed around and instead get converted to values + of None. That way the type checker can properly flag attempts to + pass possibly-dead objects (``FooType | None``) into functions + expecting only live ones (``FooType``), etc. This call can be used + on any 'existable' object (one with an ``exists()`` method) and will + convert it to a ``None`` value if it does not exist. For more info, see notes on 'existables' here: https://ballistica.net/wiki/Coding-Style-Guide """ - assert obj is None or hasattr(obj, 'exists'), f'No "exists" on {obj}' + assert obj is None or hasattr(obj, 'exists'), f'No "exists" attr on {obj}.' return obj if obj is not None and obj.exists() else None -def getclass( +def getclass[T]( name: str, subclassof: type[T], check_sdlib_modulename_clash: bool = False ) -> type[T]: - """Given a full class name such as foo.bar.MyClass, return the class. + """Given a full class name such as ``foo.bar.MyClass``, return the class. - Category: **General Utility Functions** - - The class will be checked to make sure it is a subclass of the provided - 'subclassof' class, and a TypeError will be raised if not. + The class will be checked to make sure it is a subclass of the + provided 'subclassof' class, and a :class:`TypeError` will be raised + if not. """ import importlib @@ -92,78 +84,62 @@ def getclass( return cls -def utf8_all(data: Any) -> Any: - """Convert any unicode data in provided sequence(s) to utf8 bytes.""" - if isinstance(data, dict): - return dict( - (utf8_all(key), utf8_all(value)) - for key, value in list(data.items()) - ) - if isinstance(data, list): - return [utf8_all(element) for element in data] - if isinstance(data, tuple): - return tuple(utf8_all(element) for element in data) - if isinstance(data, str): - return data.encode('utf-8', errors='ignore') - return data - - def get_type_name(cls: type) -> str: - """Return a full type name including module for a class.""" - return f'{cls.__module__}.{cls.__name__}' + """Return a fully qualified type name for a class.""" + return f'{cls.__module__}.{cls.__qualname__}' class _WeakCall: """Wrap a callable and arguments into a single callable object. - Category: **General Utility Classes** + When passed a bound method as the callable, the instance portion of + it is weak-referenced, meaning the underlying instance is free to + die if all other references to it go away. Should this occur, + calling the weak-call is simply a no-op. - When passed a bound method as the callable, the instance portion - of it is weak-referenced, meaning the underlying instance is - free to die if all other references to it go away. Should this - occur, calling the WeakCall is simply a no-op. + Think of this as a handy way to tell an object to do something at + some point in the future if it happens to still exist. - Think of this as a handy way to tell an object to do something - at some point in the future if it happens to still exist. + **EXAMPLE A:** This code will create a ``FooClass`` instance and + call its ``bar()`` method 5 seconds later; it will be kept alive + even though we overwrite its variable with None because the bound + method we pass as a timer callback (``foo.bar``) strong-references + it:: - ##### Examples - **EXAMPLE A:** this code will create a FooClass instance and call its - bar() method 5 seconds later; it will be kept alive even though - we overwrite its variable with None because the bound method - we pass as a timer callback (foo.bar) strong-references it - >>> foo = FooClass() - ... babase.apptimer(5.0, foo.bar) - ... foo = None + foo = FooClass() + babase.apptimer(5.0, foo.bar) + foo = None - **EXAMPLE B:** This code will *not* keep our object alive; it will die - when we overwrite it with None and the timer will be a no-op when it - fires - >>> foo = FooClass() - ... babase.apptimer(5.0, ba.WeakCall(foo.bar)) - ... foo = None + **EXAMPLE B:** This code will *not* keep our object alive; it will + die when we overwrite it with ``None`` and the timer will be a no-op + when it fires:: - **EXAMPLE C:** Wrap a method call with some positional and keyword args: - >>> myweakcall = babase.WeakCall(self.dostuff, argval1, - ... namedarg=argval2) - ... # Now we have a single callable to run that whole mess. - ... # The same as calling myobj.dostuff(argval1, namedarg=argval2) - ... # (provided my_obj still exists; this will do nothing - ... # otherwise). - ... myweakcall() + foo = FooClass() + babase.apptimer(5.0, ba.WeakCall(foo.bar)) + foo = None - Note: additional args and keywords you provide to the WeakCall() - constructor are stored as regular strong-references; you'll need - to wrap them in weakrefs manually if desired. + **EXAMPLE C:** Wrap a method call with some positional and keyword + args:: + + myweakcall = babase.WeakCall(self.dostuff, argval1, + namedarg=argval2) + + # Now we have a single callable to run that whole mess. + # The same as calling myobj.dostuff(argval1, namedarg=argval2) + # (provided my_obj still exists; this will do nothing otherwise). + myweakcall() + + Note: additional args and keywords you provide to the weak-call + constructor are stored as regular strong-references; you'll need to + wrap them in weakrefs manually if desired. """ + # Optimize performance a bit; we shouldn't need to be super dynamic. + __slots__ = ['_call', '_args', '_keywds'] + _did_invalid_call_warning = False def __init__(self, *args: Any, **keywds: Any) -> None: - """Instantiate a WeakCall. - - Pass a callable as the first arg, followed by any number of - arguments or keywords. - """ if hasattr(args[0], '__func__'): self._call = WeakMethod(args[0]) else: @@ -173,9 +149,10 @@ class _WeakCall: 'Warning: callable passed to babase.WeakCall() is not' ' weak-referencable (%s); use functools.partial instead' ' to avoid this warning.', + args[0], stack_info=True, ) - self._did_invalid_call_warning = True + type(self)._did_invalid_call_warning = True self._call = args[0] self._args = args[1:] self._keywds = keywds @@ -199,34 +176,27 @@ class _WeakCall: class _Call: """Wraps a callable and arguments into a single callable object. - Category: **General Utility Classes** - The callable is strong-referenced so it won't die until this object does. - WARNING: This is exactly the same as Python's built in functools.partial(). - Use functools.partial instead of this for new code, as this will probably - be deprecated at some point. - Note that a bound method (ex: ``myobj.dosomething``) contains a reference to ``self`` (``myobj`` in that case), so you will be keeping that object alive too. Use babase.WeakCall if you want to pass a method to a callback without keeping its object alive. + + Example: Wrap a method call with 1 positional and 1 keyword arg:: + + mycall = babase.Call(myobj.dostuff, argval, namedarg=argval2) + + # Now we have a single callable to run that whole mess. + # ..the same as calling myobj.dostuff(argval, namedarg=argval2) + mycall() """ + # Optimize performance a bit; we shouldn't need to be super dynamic. + __slots__ = ['_call', '_args', '_keywds'] + def __init__(self, *args: Any, **keywds: Any): - """Instantiate a Call. - - Pass a callable as the first arg, followed by any number of - arguments or keywords. - - ##### Example - Wrap a method call with 1 positional and 1 keyword arg: - >>> mycall = babase.Call(myobj.dostuff, argval, namedarg=argval2) - ... # Now we have a single callable to run that whole mess. - ... # ..the same as calling myobj.dostuff(argval, namedarg=argval2) - ... mycall() - """ self._call = args[0] self._args = args[1:] self._keywds = keywds @@ -252,6 +222,14 @@ if TYPE_CHECKING: # type checking on both positional and keyword arguments (as of mypy # 1.11). + # FIXME: Actually, currently (as of Dec 2024) mypy doesn't fully + # type check partial. The partial() call itself is checked, but the + # resulting callable seems to be essentially untyped. We should + # probably revise this stuff so that Call and WeakCall are for 100% + # complete calls so we can fully type check them using ParamSpecs or + # whatnot. We could then write a weak_partial() call if we actually + # need that particular combination of functionality. + # Note: Something here is wonky with pylint, possibly related to our # custom pylint plugin. Disabling all checks seems to fix it. # pylint: disable=all @@ -272,6 +250,9 @@ class WeakMethod: free to die. If called with a dead target, is simply a no-op. """ + # Optimize performance a bit; we shouldn't need to be super dynamic. + __slots__ = ['_func', '_obj'] + def __init__(self, call: types.MethodType): assert isinstance(call, types.MethodType) self._func = call.__func__ @@ -291,8 +272,6 @@ class WeakMethod: def verify_object_death(obj: object) -> None: """Warn if an object does not get freed within a short period. - Category: **General Utility Functions** - This can be handy to detect and prevent memory/resource leaks. """ @@ -333,27 +312,27 @@ def _verify_object_death(wref: weakref.ref) -> None: def storagename(suffix: str | None = None) -> str: """Generate a unique name for storing class data in shared places. - Category: **General Utility Functions** - - This consists of a leading underscore, the module path at the - call site with dots replaced by underscores, the containing class's + This consists of a leading underscore, the module path at the call + site with dots replaced by underscores, the containing class's qualified name, and the provided suffix. When storing data in public places such as 'customdata' dicts, this minimizes the chance of collisions with other similarly named classes. Note that this will function even if called in the class definition. - ##### Examples - Generate a unique name for storage purposes: - >>> class MyThingie: - ... # This will give something like - ... # '_mymodule_submodule_mythingie_data'. - ... _STORENAME = babase.storagename('data') - ... - ... # Use that name to store some data in the Activity we were - ... # passed. - ... def __init__(self, activity): - ... activity.customdata[self._STORENAME] = {} + Example: Generate a unique name for storage purposes:: + + class MyThingie: + + # This will give something like + # '_mymodule_submodule_mythingie_data'. + _STORENAME = babase.storagename('data') + + # Use that name to store some data in the Activity we were + # passed. + def __init__(self, activity): + activity.customdata[self._STORENAME] = {} + """ frame = inspect.currentframe() if frame is None: diff --git a/dist/ba_data/python/babase/_hooks.py b/dist/ba_data/python/babase/_hooks.py index c344d26..ed16fe0 100644 --- a/dist/ba_data/python/babase/_hooks.py +++ b/dist/ba_data/python/babase/_hooks.py @@ -430,3 +430,40 @@ def unsupported_controller_message(name: str) -> None: Lstr(resource='unsupportedControllerText', subs=[('${NAME}', name)]), color=(1, 0, 0), ) + + +def copy_dev_console_history() -> None: + """Copy log history from the dev console.""" + import baenv + from babase._language import Lstr + + if not _babase.clipboard_is_supported(): + _babase.getsimplesound('error').play() + _babase.screenmessage( + 'Clipboard not supported on this build.', + color=(1, 0, 0), + ) + return + + # This requires us to be running with a log-handler set up. + envconfig = baenv.get_config() + if envconfig.log_handler is None: + _babase.getsimplesound('error').play() + _babase.screenmessage( + 'Not available; standard engine logging is not enabled.', + color=(1, 0, 0), + ) + return + + # Just dump everything that's in the log-handler's cache. + archive = envconfig.log_handler.get_cached() + lines: list[str] = [] + stdnames = ('stdout', 'stderr') + for entry in archive.entries: + reltime = entry.time.timestamp() - envconfig.launch_time + level_ex = '' if entry.name in stdnames else f' {entry.level.name}' + lines.append(f'{reltime:.3f}{level_ex} {entry.name}: {entry.message}') + + _babase.clipboard_set_text('\n'.join(lines)) + _babase.screenmessage(Lstr(resource='copyConfirmText'), color=(0, 1, 0)) + _babase.getsimplesound('gunCocking').play() diff --git a/dist/ba_data/python/babase/_keyboard.py b/dist/ba_data/python/babase/_keyboard.py deleted file mode 100644 index 6d18ac6..0000000 --- a/dist/ba_data/python/babase/_keyboard.py +++ /dev/null @@ -1,33 +0,0 @@ -# Released under the MIT License. See LICENSE for details. -# -"""On-screen Keyboard related functionality.""" - -from __future__ import annotations - -from typing import TYPE_CHECKING - -if TYPE_CHECKING: - pass - - -class Keyboard: - """Chars definitions for on-screen keyboard. - - Category: **App Classes** - - Keyboards are discoverable by the meta-tag system - and the user can select which one they want to use. - On-screen keyboard uses chars from active babase.Keyboard. - """ - - name: str - """Displays when user selecting this keyboard.""" - - chars: list[tuple[str, ...]] - """Used for row/column lengths.""" - - pages: dict[str, tuple[str, ...]] - """Extra chars like emojis.""" - - nums: tuple[str, ...] - """The 'num' page.""" diff --git a/dist/ba_data/python/babase/_language.py b/dist/ba_data/python/babase/_language.py index 4e118b5..460d48f 100644 --- a/dist/ba_data/python/babase/_language.py +++ b/dist/ba_data/python/babase/_language.py @@ -5,12 +5,12 @@ from __future__ import annotations import os import json -import logging from functools import partial from typing import TYPE_CHECKING, overload, override import _babase from babase._appsubsystem import AppSubsystem +from babase._logging import applog if TYPE_CHECKING: from typing import Any, Sequence @@ -19,17 +19,20 @@ if TYPE_CHECKING: class LanguageSubsystem(AppSubsystem): - """Language functionality for the app. + """Legacy language functionality for the app. - Category: **App Classes** + Access the single shared instance of this class via the + :attr:`~babase.App.lang` attr on the :class:`~babase.App` class. - Access the single instance of this class at 'babase.app.lang'. + .. deprecated:: 1.7.40 + + Use :class:`~babase.LocaleSubsystem` for language/locale + functionality when possible. This old class remains for + compatibility and will be removed eventually. """ def __init__(self) -> None: super().__init__() - self.default_language: str = self._get_default_language() - self._language: str | None = None self._language_target: AttrDict | None = None self._language_merged: AttrDict | None = None @@ -37,15 +40,20 @@ class LanguageSubsystem(AppSubsystem): @property def locale(self) -> str: - """Raw country/language code detected by the game (such as 'en_US'). + """Raw country/language code detected by the game (such as "en_US"). Generally for language-specific code you should look at - babase.App.language, which is the language the game is using - (which may differ from locale if the user sets a language, etc.) + :attr:`language`, which is the language the game is using (which + may differ from locale if the user sets a language, etc.) """ env = _babase.env() - assert isinstance(env['locale'], str) - return env['locale'] + locale = env.get('locale') + if not isinstance(locale, str): + applog.warning( + 'Seem to be running in a dummy env; returning en_US locale.' + ) + locale = 'en_US' + return locale @property def language(self) -> str: @@ -56,45 +64,9 @@ class LanguageSubsystem(AppSubsystem): """ if self._language is None: raise RuntimeError('App language is not yet set.') + return self._language - @property - def available_languages(self) -> list[str]: - """A list of all available languages. - - Note that languages that may be present in game assets but which - are not displayable on the running version of the game are not - included here. - """ - langs = set() - try: - names = os.listdir( - os.path.join( - _babase.app.env.data_directory, - 'ba_data', - 'data', - 'languages', - ) - ) - names = [n.replace('.json', '').capitalize() for n in names] - - # FIXME: our simple capitalization fails on multi-word names; - # should handle this in a better way... - for i, name in enumerate(names): - if name == 'Chinesetraditional': - names[i] = 'ChineseTraditional' - except Exception: - from babase import _error - - _error.print_exception() - names = [] - for name in names: - if self._can_display_language(name): - langs.add(name) - return sorted( - name for name in names if self._can_display_language(name) - ) - def testlanguage(self, langid: str) -> None: """Set the app to test an in-progress language. @@ -132,21 +104,28 @@ class LanguageSubsystem(AppSubsystem): def setlanguage( self, - language: str | dict | None, + language: str | dict, + *, print_change: bool = True, store_to_config: bool = True, + ignore_redundant: bool = False, ) -> None: """Set the active app language. - Pass None to use OS default language. + Note that this only applies to the legacy language system and + should not be used directly these days. """ + # pylint: disable=too-many-locals # pylint: disable=too-many-statements - # pylint: disable=too-many-branches assert _babase.in_logic_thread() + cfg = _babase.app.config cur_language = cfg.get('Lang', None) + if ignore_redundant and language == self._language: + return + with open( os.path.join( _babase.app.env.data_directory, @@ -171,19 +150,19 @@ class LanguageSubsystem(AppSubsystem): # Store this in the config if its changing. if language != cur_language and store_to_config: - if language is None: - if 'Lang' in cfg: - del cfg['Lang'] # Clear it out for default. - else: - cfg['Lang'] = language + # if language is None: + # if 'Lang' in cfg: + # del cfg['Lang'] # Clear it out for default. + # else: + cfg['Lang'] = language cfg.commit() switched = True else: switched = False # None implies default. - if language is None: - language = self.default_language + # if language is None: + # language = self.default_language try: if language == 'English': lmodvalues = None @@ -198,7 +177,7 @@ class LanguageSubsystem(AppSubsystem): with open(lmodfile, encoding='utf-8') as infile: lmodvalues = json.loads(infile.read()) except Exception: - logging.exception("Error importing language '%s'.", language) + applog.exception("Error importing language '%s'.", language) _babase.screenmessage( f"Error setting language to '{language}';" f' see log for details.', @@ -266,14 +245,6 @@ class LanguageSubsystem(AppSubsystem): color=(0, 1, 0), ) - @override - def do_apply_app_config(self) -> None: - assert _babase.in_logic_thread() - assert isinstance(_babase.app.config, dict) - lang = _babase.app.config.get('Lang', self.default_language) - if lang != self._language: - self.setlanguage(lang, print_change=False, store_to_config=False) - def get_resource( self, resource: str, @@ -282,7 +253,11 @@ class LanguageSubsystem(AppSubsystem): ) -> Any: """Return a translation resource by name. - DEPRECATED; use babase.Lstr functionality for these purposes. + .. warning:: + + Use :class:`~babase.Lstr` instead of this function whenever + possible, as it will gracefully handle displaying correctly + across multiple clients in multiple languages simultaneously. """ try: # If we have no language set, try and set it to english. @@ -290,7 +265,7 @@ class LanguageSubsystem(AppSubsystem): if self._language_merged is None: try: if _babase.do_once(): - logging.warning( + applog.warning( 'get_resource() called before language' ' set; falling back to english.' ) @@ -298,9 +273,7 @@ class LanguageSubsystem(AppSubsystem): 'English', print_change=False, store_to_config=False ) except Exception: - logging.exception( - 'Error setting fallback english language.' - ) + applog.exception('Error setting fallback english language.') raise # If they provided a fallback_resource value, try the @@ -373,9 +346,13 @@ class LanguageSubsystem(AppSubsystem): raise_exceptions: bool = False, print_errors: bool = False, ) -> str: - """Translate a value (or return the value if no translation available) + """Translate a value (or return the value if no translation available). - DEPRECATED; use babase.Lstr functionality for these purposes. + .. warning:: + + Use :class:`~babase.Lstr` instead of this function whenever + possible, as it will gracefully handle displaying correctly + across multiple clients in multiple languages simultaneously. """ try: translated = self.get_resource('translations')[category][strval] @@ -410,120 +387,85 @@ class LanguageSubsystem(AppSubsystem): raise ValueError('Invalid Input; must be length 1') return 0xE000 <= ord(char) <= 0xF8FF - def _can_display_language(self, language: str) -> bool: - """Tell whether we can display a particular language. - - On some platforms we don't have unicode rendering yet which - limits the languages we can draw. - """ - - # We don't yet support full unicode display on windows or linux :-(. - if ( - language - in { - 'Chinese', - 'ChineseTraditional', - 'Persian', - 'Korean', - 'Arabic', - 'Hindi', - 'Vietnamese', - 'Thai', - 'Tamil', - } - and not _babase.can_display_full_unicode() - ): - return False - return True - - def _get_default_language(self) -> str: - languages = { - 'ar': 'Arabic', - 'be': 'Belarussian', - 'zh': 'Chinese', - 'hr': 'Croatian', - 'cs': 'Czech', - 'da': 'Danish', - 'nl': 'Dutch', - 'eo': 'Esperanto', - 'fil': 'Filipino', - 'fr': 'French', - 'de': 'German', - 'el': 'Greek', - 'hi': 'Hindi', - 'hu': 'Hungarian', - 'id': 'Indonesian', - 'it': 'Italian', - 'ko': 'Korean', - 'ms': 'Malay', - 'fa': 'Persian', - 'pl': 'Polish', - 'pt': 'Portuguese', - 'ro': 'Romanian', - 'ru': 'Russian', - 'sr': 'Serbian', - 'es': 'Spanish', - 'sk': 'Slovak', - 'sv': 'Swedish', - 'ta': 'Tamil', - 'th': 'Thai', - 'tr': 'Turkish', - 'uk': 'Ukrainian', - 'vec': 'Venetian', - 'vi': 'Vietnamese', - } - - # Special case for Chinese: map specific variations to - # traditional. (otherwise will map to 'Chinese' which is - # simplified) - if self.locale in ('zh_HANT', 'zh_TW'): - language = 'ChineseTraditional' - else: - language = languages.get(self.locale[:2], 'English') - if not self._can_display_language(language): - language = 'English' - return language - class Lstr: """Used to define strings in a language-independent way. - Category: **General Utility Classes** - These should be used whenever possible in place of hard-coded strings so that in-game or UI elements show up correctly on all - clients in their currently-active language. + clients in their currently active language. - To see available resource keys, look at any of the bs_language_*.py - files in the game or the translations pages at - legacy.ballistica.net/translate. + To see available resource keys, look at any of the + ``ba_data/data/languages/*.json`` files in the game or the + translations pages at `legacy.ballistica.net/translate + `_. - ##### Examples - EXAMPLE 1: specify a string from a resource path - >>> mynode.text = babase.Lstr(resource='audioSettingsWindow.titleText') + Args: - EXAMPLE 2: specify a translated string via a category and english - value; if a translated value is available, it will be used; otherwise - the english value will be. To see available translation categories, - look under the 'translations' resource section. - >>> mynode.text = babase.Lstr(translate=('gameDescriptions', - ... 'Defeat all enemies')) + resource: + Pass a string to look up a translation by resource key. - EXAMPLE 3: specify a raw value and some substitutions. Substitutions - can be used with resource and translate modes as well. - >>> mynode.text = babase.Lstr(value='${A} / ${B}', - ... subs=[('${A}', str(score)), ('${B}', str(total))]) + translate: + Pass a tuple consisting of a translation category and + untranslated value. Any matching translation found in that + category will be used. Otherwise the untranslated value will + be. - EXAMPLE 4: babase.Lstr's can be nested. This example would display the - resource at res_a but replace ${NAME} with the value of the - resource at res_b - >>> mytextnode.text = babase.Lstr( - ... resource='res_a', - ... subs=[('${NAME}', babase.Lstr(resource='res_b'))]) + value: + Pass a regular string value to be used as-is. + + subs: + A sequence of 2-member tuples consisting of values and + replacements. Replacements can be regular strings or other ``Lstr`` + values. + + fallback_resource: + A resource key that will be used if the main one is not present for + the current language instead of falling back to the english value + ('resource' mode only). + + fallback_value: + A regular string that will be used if neither the resource nor the + fallback resource is found ('resource' mode only). + + + **Example 1: Resource path** :: + + mynode.text = babase.Lstr(resource='audioSettingsWindow.titleText') + + **Example 2: Translation** + + If a translated value is available, it will be used; otherwise the + English value will be. To see available translation categories, look + under the ``translations`` resource section. :: + + mynode.text = babase.Lstr(translate=('gameDescriptions', + 'Defeat all enemies')) + + **Example 3: Substitutions** + + Substitutions can be used with ``resource`` and ``translate`` modes + as well as the ``value`` shown here. :: + + mynode.text = babase.Lstr(value='${A} / ${B}', + subs=[('${A}', str(score)), + ('${B}', str(total))]) + + **Example 4: Nesting** + + ``Lstr`` instances can be nested. This example would display + the translated resource at ``'res_a'`` but replace any instances of + ``'${NAME}'`` it contains with the translated resource at ``'res_b'``. :: + + mytextnode.text = babase.Lstr( + resource='res_a', + subs=[('${NAME}', babase.Lstr(resource='res_b'))]) """ - # pylint: disable=dangerous-default-value - # noinspection PyDefaultArgument + # This class is used a lot in UI stuff and doesn't need to be + # flexible, so let's optimize its performance a bit. + __slots__ = ['args'] + @overload def __init__( self, @@ -531,67 +473,55 @@ class Lstr: resource: str, fallback_resource: str = '', fallback_value: str = '', - subs: Sequence[tuple[str, str | Lstr]] = [], + subs: Sequence[tuple[str, str | Lstr]] | None = None, ) -> None: """Create an Lstr from a string resource.""" - # noinspection PyShadowingNames,PyDefaultArgument @overload def __init__( self, *, translate: tuple[str, str], - subs: Sequence[tuple[str, str | Lstr]] = [], + subs: Sequence[tuple[str, str | Lstr]] | None = None, ) -> None: """Create an Lstr by translating a string in a category.""" - # noinspection PyDefaultArgument @overload def __init__( - self, *, value: str, subs: Sequence[tuple[str, str | Lstr]] = [] + self, + *, + value: str, + subs: Sequence[tuple[str, str | Lstr]] | None = None, ) -> None: """Create an Lstr from a raw string value.""" - # pylint: enable=redefined-outer-name, dangerous-default-value - def __init__(self, *args: Any, **keywds: Any) -> None: - """Instantiate a Lstr. - - Pass a value for either 'resource', 'translate', - or 'value'. (see Lstr help for examples). - 'subs' can be a sequence of 2-member sequences consisting of values - and replacements. - 'fallback_resource' can be a resource key that will be used if the - main one is not present for - the current language in place of falling back to the english value - ('resource' mode only). - 'fallback_value' can be a literal string that will be used if neither - the resource nor the fallback resource is found ('resource' mode only). - """ # pylint: disable=too-many-branches if args: raise TypeError('Lstr accepts only keyword arguments') - # Basically just store the exact args they passed. - # However if they passed any Lstr values for subs, - # replace them with that Lstr's dict. + #: Basically just stores the exact args passed. However if Lstr + #: values were passed for subs, they are replaced with that + #: Lstr's dict. self.args = keywds our_type = type(self) if isinstance(self.args.get('value'), our_type): raise TypeError("'value' must be a regular string; not an Lstr") - if 'subs' in self.args: - subs_new = [] - for key, value in keywds['subs']: - if isinstance(value, our_type): - subs_new.append((key, value.args)) - else: - subs_new.append((key, value)) - self.args['subs'] = subs_new + if 'subs' in keywds: + subs = keywds.get('subs') + subs_filtered = [] + if subs is not None: + for key, value in keywds['subs']: + if isinstance(value, our_type): + subs_filtered.append((key, value.args)) + else: + subs_filtered.append((key, value)) + self.args['subs'] = subs_filtered - # As of protocol 31 we support compact key names - # ('t' instead of 'translate', etc). Convert as needed. + # As of protocol 31 we support compact key names ('t' instead of + # 'translate', etc). Convert as needed. if 'translate' in keywds: keywds['t'] = keywds['translate'] del keywds['translate'] @@ -602,13 +532,11 @@ class Lstr: keywds['v'] = keywds['value'] del keywds['value'] if 'fallback' in keywds: - from babase import _error - - _error.print_error( - 'deprecated "fallback" arg passed to Lstr(); use ' - 'either "fallback_resource" or "fallback_value"', - once=True, - ) + if _babase.do_once(): + applog.error( + 'Deprecated "fallback" arg passed to Lstr(); use ' + 'either "fallback_resource" or "fallback_value".' + ) keywds['f'] = keywds['fallback'] del keywds['fallback'] if 'fallback_resource' in keywds: @@ -622,15 +550,15 @@ class Lstr: del keywds['fallback_value'] def evaluate(self) -> str: - """Evaluate the Lstr and returns a flat string in the current language. + """Evaluate to a flat string in the current language. You should avoid doing this as much as possible and instead pass - and store Lstr values. + and store ``Lstr`` values. """ return _babase.evaluate_lstr(self._get_json()) def is_flat_value(self) -> bool: - """Return whether the Lstr is a 'flat' value. + """Return whether this instance represents a 'flat' value. This is defined as a simple string value incorporating no translations, resources, or substitutions. In this case it may @@ -645,20 +573,23 @@ class Lstr: except Exception: from babase import _error - _error.print_exception('_get_json failed for', self.args) + applog.exception('_get_json failed for %s.', self.args) return 'JSON_ERR' @override def __str__(self) -> str: - return '' + return f'' @override def __repr__(self) -> str: - return '' + return f'' @staticmethod def from_json(json_string: str) -> babase.Lstr: - """Given a json string, returns a babase.Lstr. Does no validation.""" + """Given a json string, returns a ``Lstr``. + + Does no validation. + """ lstr = Lstr(value='') lstr.args = json.loads(json_string) return lstr diff --git a/dist/ba_data/python/babase/_locale.py b/dist/ba_data/python/babase/_locale.py new file mode 100644 index 0000000..bda9972 --- /dev/null +++ b/dist/ba_data/python/babase/_locale.py @@ -0,0 +1,175 @@ +# Released under the MIT License. See LICENSE for details. +# +"""Locale related functionality.""" +from __future__ import annotations + +from typing import TYPE_CHECKING, override, assert_never + +from functools import cache + +from bacommon.locale import Locale, LocaleResolved + +import _babase +from babase._appsubsystem import AppSubsystem +from babase._logging import applog + +if TYPE_CHECKING: + from typing import Any, Sequence + + import babase + + +class LocaleSubsystem(AppSubsystem): + """Locale functionality for the app. + + Access the single shared instance of this class via the + :attr:`~babase.App.locale` attr on the :class:`~babase.App` class. + """ + + def __init__(self) -> None: + super().__init__() + self._current_locale: Locale | None = None + + # Calc our default locale based on the locale-tag provided by + # the native layer. + env = _babase.env() + ba_locale = env.get('ba_locale') + locale_tag = env.get('locale') + if not isinstance(ba_locale, str) or not isinstance(locale_tag, str): + applog.warning( + 'Seem to be running in a dummy env; using en-US locale-tag.' + ) + ba_locale = '' + locale_tag = 'en-US' + + #: The default locale based on the current runtime environment + #: and app capabilities. This locale will be used unless the user + #: explicitly overrides it. + self.default_locale: Locale = Locale.ENGLISH + + # If a Locale long-name was provided, try to use that. + have_valid_ba_locale = False + if ba_locale: + try: + self.default_locale = Locale.from_long_value(ba_locale) + have_valid_ba_locale = True + except ValueError: + applog.error( + 'Invalid ba_locale "%s";' + ' will fall back to using locale tag.', + ba_locale, + ) + + # Otherwise calc Locale from a tag ('en-US', etc.) + if not have_valid_ba_locale: + self.default_locale = LocaleResolved.from_tag(locale_tag).locale + + # If we can't properly display this default locale, set it to + # English instead. + if ( + self.requires_full_unicode_display(self.default_locale.resolved) + and not _babase.supports_unicode_display() + ): + self.default_locale = Locale.ENGLISH + + @override + def do_apply_app_config(self) -> None: + """:meta private:""" + assert _babase.in_logic_thread() + assert isinstance(_babase.app.config, dict) + + locale = self.default_locale + + # Look for a 'Lang' in app-config to override the default. We + # expect this to be a Locale long-value such as + # 'ChineseTraditional'. + lang = _babase.app.config.get('Lang') + if lang is not None: + try: + locale = Locale.from_long_value(lang) + except ValueError: + applog.error( + 'Invalid Lang "%s"; falling back to default.', lang + ) + # Convert the locale to resolved and back again to make sure + # we're loading a currently-supported one (for example this will + # convert 'Spanish' to 'SpanishLatinAmerica'). + locale = locale.resolved.locale + + self._current_locale = locale + + _babase.app.lang.setlanguage( + locale.long_value, + print_change=False, + store_to_config=False, + ignore_redundant=True, + ) + + @property + def current_locale(self) -> Locale: + """The current locale for the app.""" + if self._current_locale is None: + raise RuntimeError('Locale is not set.') + return self._current_locale + + @staticmethod + @cache + def requires_full_unicode_display( + locale: LocaleResolved, + ) -> bool: + """Does the locale require full unicode support to display?""" + # pylint: disable=too-many-boolean-expressions + + cls = LocaleResolved + + # DO need full unicode. + if ( + locale is cls.CHINESE_TRADITIONAL + or locale is cls.CHINESE_SIMPLIFIED + or locale is cls.ARABIC + or locale is cls.HINDI + or locale is cls.KOREAN + or locale is cls.PERSIAN + or locale is cls.TAMIL + or locale is cls.THAI + or locale is cls.VIETNAMESE + ): + return True + + # Do NOT need full unicode. + if ( + locale is cls.ENGLISH + or locale is cls.PORTUGUESE_PORTUGAL + or locale is cls.PORTUGUESE_BRAZIL + or locale is cls.BELARUSSIAN + or locale is cls.CROATIAN + or locale is cls.CZECH + or locale is cls.DANISH + or locale is cls.DUTCH + or locale is cls.PIRATE_SPEAK + or locale is cls.ESPERANTO + or locale is cls.FILIPINO + or locale is cls.FRENCH + or locale is cls.GERMAN + or locale is cls.GIBBERISH + or locale is cls.GREEK + or locale is cls.HUNGARIAN + or locale is cls.INDONESIAN + or locale is cls.ITALIAN + or locale is cls.MALAY + or locale is cls.POLISH + or locale is cls.ROMANIAN + or locale is cls.RUSSIAN + or locale is cls.SERBIAN + or locale is cls.SPANISH_LATIN_AMERICA + or locale is cls.SPANISH_SPAIN + or locale is cls.SLOVAK + or locale is cls.SWEDISH + or locale is cls.TURKISH + or locale is cls.UKRAINIAN + or locale is cls.VENETIAN + ): + return False + + # Make sure we're covering all cases. + assert_never(locale) diff --git a/dist/ba_data/python/babase/_logging.py b/dist/ba_data/python/babase/_logging.py new file mode 100644 index 0000000..42d063d --- /dev/null +++ b/dist/ba_data/python/babase/_logging.py @@ -0,0 +1,12 @@ +# Released under the MIT License. See LICENSE for details. +# +"""Logging functionality.""" + +from __future__ import annotations + +import logging + +# Our standard set of loggers. +balog = logging.getLogger('ba') +applog = logging.getLogger('ba.app') +lifecyclelog = logging.getLogger('ba.lifecycle') diff --git a/dist/ba_data/python/babase/_login.py b/dist/ba_data/python/babase/_login.py index 0f3d1c4..27b20b3 100644 --- a/dist/ba_data/python/babase/_login.py +++ b/dist/ba_data/python/babase/_login.py @@ -17,13 +17,12 @@ import _babase if TYPE_CHECKING: from typing import Callable - -DEBUG_LOG = False +logger = logging.getLogger('ba.loginadapter') @dataclass class LoginInfo: - """Basic info about a login available in the app.plus.accounts section.""" + """Info for a login used by :class:`~babase.AccountV2Handle`.""" name: str @@ -31,13 +30,13 @@ class LoginInfo: class LoginAdapter: """Allows using implicit login types in an explicit way. - Some login types such as Google Play Game Services or Game Center are - basically always present and often do not provide a way to log out - from within a running app, so this adapter exists to use them in a - flexible manner by 'attaching' and 'detaching' from an always-present - login, allowing for its use alongside other login types. It also - provides common functionality for server-side account verification and - other handy bits. + Some login types such as Google Play Game Services or Game Center + are basically always present and often do not provide a way to log + out from within a running app, so this adapter exists to use them in + a flexible manner by 'attaching to' and 'detaching from' an + always-present login, allowing for its use alongside other login + types. It also provides common functionality for server-side account + verification and other handy bits. """ @dataclass @@ -71,7 +70,10 @@ class LoginAdapter: self._last_sign_in_desc: str | None = None def on_app_loading(self) -> None: - """Should be called for each adapter in on_app_loading.""" + """Should be called for each adapter in on_app_loading. + + :meta private: + """ assert not self._on_app_loading_called self._on_app_loading_called = True @@ -94,20 +96,17 @@ class LoginAdapter: if state == self._implicit_login_state: return - if DEBUG_LOG: - if state is None: - logging.debug( - 'LoginAdapter: %s implicit state changed;' - ' now signed out.', - self.login_type.name, - ) - else: - logging.debug( - 'LoginAdapter: %s implicit state changed;' - ' now signed in as %s.', - self.login_type.name, - state.display_name, - ) + if state is None: + logger.debug( + '%s implicit state changed; now signed out.', + self.login_type.name, + ) + else: + logger.debug( + '%s implicit state changed; now signed in as %s.', + self.login_type.name, + state.display_name, + ) self._implicit_login_state = state self._implicit_login_state_dirty = True @@ -126,14 +125,15 @@ class LoginAdapter: to the currently-in-use account. Note that the logins dict passed in should be immutable as only a reference to it is stored, not a copy. + + :meta private: """ assert _babase.in_logic_thread() - if DEBUG_LOG: - logging.debug( - 'LoginAdapter: %s adapter got active logins %s.', - self.login_type.name, - {k: v[:4] + '...' + v[-4:] for k, v in logins.items()}, - ) + logger.debug( + '%s adapter got active logins %s.', + self.login_type.name, + {k: v[:4] + '...' + v[-4:] for k, v in logins.items()}, + ) self._active_login_id = logins.get(self.login_type) self._update_back_end_active() @@ -141,12 +141,12 @@ class LoginAdapter: def on_back_end_active_change(self, active: bool) -> None: """Called when active state for the back-end is (possibly) changing. - Meant to be overridden by subclasses. - Being active means that the implicit login provided by the back-end - is actually being used by the app. It should therefore register - unlocked achievements, leaderboard scores, allow viewing native - UIs, etc. When not active it should ignore everything and behave - as if signed out, even if it technically is still signed in. + Meant to be overridden by subclasses. Being active means that + the implicit login provided by the back-end is actually being + used by the app. It should therefore register unlocked + achievements, leaderboard scores, allow viewing native UIs, etc. + When not active it should ignore everything and behave as if + signed out, even if it technically is still signed in. """ assert _babase.in_logic_thread() del active # Unused. @@ -161,7 +161,7 @@ class LoginAdapter: This can be called even if the back-end is not implicitly signed in; the adapter will attempt to sign in if possible. An exception will - be returned if the sign-in attempt fails. + be passed to the callback if the sign-in attempt fails. """ assert _babase.in_logic_thread() @@ -197,24 +197,21 @@ class LoginAdapter: self._last_sign_in_desc = description self._last_sign_in_time = now - if DEBUG_LOG: - logging.debug( - 'LoginAdapter: %s adapter sign_in() called;' - ' fetching sign-in-token...', - self.login_type.name, - ) + logger.debug( + '%s adapter sign_in() called; fetching sign-in-token...', + self.login_type.name, + ) def _got_sign_in_token_result(result: str | None) -> None: import bacommon.cloud # Failed to get a sign-in-token. if result is None: - if DEBUG_LOG: - logging.debug( - 'LoginAdapter: %s adapter sign-in-token fetch failed;' - ' aborting sign-in.', - self.login_type.name, - ) + logger.debug( + '%s adapter sign-in-token fetch failed;' + ' aborting sign-in.', + self.login_type.name, + ) _babase.pushcall( partial( result_cb, @@ -227,25 +224,22 @@ class LoginAdapter: # Got a sign-in token! Now pass it to the cloud which will use # it to verify our identity and give us app credentials on # success. - if DEBUG_LOG: - logging.debug( - 'LoginAdapter: %s adapter sign-in-token fetch succeeded;' - ' passing to cloud for verification...', - self.login_type.name, - ) + logger.debug( + '%s adapter sign-in-token fetch succeeded;' + ' passing to cloud for verification...', + self.login_type.name, + ) def _got_sign_in_response( response: bacommon.cloud.SignInResponse | Exception, ) -> None: # This likely means we couldn't communicate with the server. if isinstance(response, Exception): - if DEBUG_LOG: - logging.debug( - 'LoginAdapter: %s adapter got error' - ' sign-in response: %s', - self.login_type.name, - response, - ) + logger.debug( + '%s adapter got error sign-in response: %s', + self.login_type.name, + response, + ) _babase.pushcall(partial(result_cb, self, response)) else: # This means our credentials were explicitly rejected. @@ -254,12 +248,10 @@ class LoginAdapter: RuntimeError('Sign-in-token was rejected.') ) else: - if DEBUG_LOG: - logging.debug( - 'LoginAdapter: %s adapter got successful' - ' sign-in response', - self.login_type.name, - ) + logger.debug( + '%s adapter got successful sign-in response', + self.login_type.name, + ) result2 = self.SignInResult( credentials=response.credentials ) @@ -288,11 +280,12 @@ class LoginAdapter: ) -> None: """Get a sign-in token from the adapter back end. - This token is then passed to the master-server to complete the - sign-in process. The adapter can use this opportunity to bring - up account creation UI, call its internal sign_in function, etc. - as needed. The provided completion_cb should then be called with - either a token or None if sign in failed or was cancelled. + This token is then passed to the cloud to complete the sign-in + process. The adapter can use this opportunity to bring up + account creation UI, call its internal sign-in function, etc. as + needed. The provided ``completion_cb`` should then be called + with either a token or with ``None`` if sign in failed or was + cancelled. """ # Default implementation simply fails immediately. @@ -305,12 +298,10 @@ class LoginAdapter: # any existing state so it can properly respond to this. if self._implicit_login_state_dirty and self._on_app_loading_called: - if DEBUG_LOG: - logging.debug( - 'LoginAdapter: %s adapter sending' - ' implicit-state-changed to app.', - self.login_type.name, - ) + logger.debug( + '%s adapter sending implicit-state-changed to app.', + self.login_type.name, + ) assert _babase.app.plus is not None _babase.pushcall( @@ -331,12 +322,11 @@ class LoginAdapter: self._implicit_login_state.login_id == self._active_login_id ) if was_active != is_active: - if DEBUG_LOG: - logging.debug( - 'LoginAdapter: %s adapter back-end-active is now %s.', - self.login_type.name, - is_active, - ) + logger.debug( + '%s adapter back-end-active is now %s.', + self.login_type.name, + is_active, + ) self.on_back_end_active_change(is_active) self._back_end_active = is_active diff --git a/dist/ba_data/python/babase/_math.py b/dist/ba_data/python/babase/_math.py index 90ce3cb..8834ee9 100644 --- a/dist/ba_data/python/babase/_math.py +++ b/dist/ba_data/python/babase/_math.py @@ -14,14 +14,13 @@ if TYPE_CHECKING: def vec3validate(value: Sequence[float]) -> Sequence[float]: """Ensure a value is valid for use as a Vec3. - category: General Utility Functions + Raises a TypeError exception if not. Valid values include any type + of sequence consisting of 3 numeric values. Returns the same value + as passed in (but with a definite type so this can be used to + disambiguate 'Any' types). Generally this should be used in 'if + __debug__' or assert clauses to keep runtime overhead minimal. - Raises a TypeError exception if not. - Valid values include any type of sequence consisting of 3 numeric values. - Returns the same value as passed in (but with a definite type - so this can be used to disambiguate 'Any' types). - Generally this should be used in 'if __debug__' or assert clauses - to keep runtime overhead minimal. + :meta private: """ from numbers import Number @@ -37,9 +36,9 @@ def vec3validate(value: Sequence[float]) -> Sequence[float]: def is_point_in_box(pnt: Sequence[float], box: Sequence[float]) -> bool: """Return whether a given point is within a given box. - category: General Utility Functions - For use with standard def boxes (position|rotate|scale). + + :meta private: """ return ( (abs(pnt[0] - box[0]) <= box[6] * 0.5) @@ -49,10 +48,7 @@ def is_point_in_box(pnt: Sequence[float], box: Sequence[float]) -> bool: def normalized_color(color: Sequence[float]) -> tuple[float, ...]: - """Scale a color so its largest value is 1; useful for coloring lights. - - category: General Utility Functions - """ + """Scale a color so its largest value is 1.0; useful for coloring lights.""" color_biased = tuple(max(c, 0.01) for c in color) # account for black mult = 1.0 / max(color_biased) return tuple(c * mult for c in color_biased) diff --git a/dist/ba_data/python/babase/_meta.py b/dist/ba_data/python/babase/_meta.py index 9a66d77..0de8ec0 100644 --- a/dist/ba_data/python/babase/_meta.py +++ b/dist/ba_data/python/babase/_meta.py @@ -10,7 +10,7 @@ import logging from pathlib import Path from threading import Thread from functools import partial -from typing import TYPE_CHECKING, TypeVar +from typing import TYPE_CHECKING from dataclasses import dataclass, field import _babase @@ -29,8 +29,6 @@ EXPORT_CLASS_NAME_SHORTCUTS: dict[str, str] = { 'keyboard': 'bauiv1.Keyboard', } -T = TypeVar('T') - @dataclass class ScanResults: @@ -40,17 +38,22 @@ class ScanResults: incorrect_api_modules: list[str] = field(default_factory=list) announce_errors_occurred: bool = False - def exports_of_class(self, cls: type) -> list[str]: - """Return exports of a given class.""" - return self.exports.get(f'{cls.__module__}.{cls.__qualname__}', []) + def exports_by_name(self, name: str) -> list[str]: + """Return exports matching a given name.""" + return self.exports.get(name, []) + + # def exports_of_class(self, cls: type) -> list[str]: + # """Return exports of a given class.""" + + # print('RETURNING', cls) + # return self.exports.get(f'{cls.__module__}.{cls.__qualname__}', []) class MetadataSubsystem: """Subsystem for working with script metadata in the app. - Category: **App Classes** - - Access the single shared instance of this class at 'babase.app.meta'. + Access the single shared instance of this class via the + :attr:`~babase.App.meta` attr on the :class:`~babase.App` class. """ def __init__(self) -> None: @@ -68,8 +71,10 @@ class MetadataSubsystem: """Begin the overall scan. This will start scanning built in directories (which for vanilla - installs should be the vast majority of the work). This should only - be called once. + installs should be the vast majority of the work). This should + only be called once. + + :meta private: """ assert self._scan_complete_cb is None assert self._scan is None @@ -95,12 +100,15 @@ class MetadataSubsystem: This is for parts of the scan that must be delayed until workspace sync completion or other such events. This must be called exactly once. + + :meta private: """ assert self._scan is not None self._scan.set_extras(self.extra_scan_dirs) - def load_exported_classes( + def load_exported_classes[T]( self, + exportname: str, cls: type[T], completion_cb: Callable[[list[type[T]]], None], completion_cb_in_bg_thread: bool = False, @@ -113,11 +121,12 @@ class MetadataSubsystem: to messaged to the user in some way but the callback will be called regardless. To run the completion callback directly in the bg thread where the - loading work happens, pass completion_cb_in_bg_thread=True. + loading work happens, pass ``completion_cb_in_bg_thread=True``. """ Thread( target=partial( self._load_exported_classes, + exportname, cls, completion_cb, completion_cb_in_bg_thread, @@ -125,8 +134,9 @@ class MetadataSubsystem: daemon=True, ).start() - def _load_exported_classes( + def _load_exported_classes[T]( self, + exportname: str, cls: type[T], completion_cb: Callable[[list[type[T]]], None], completion_cb_in_bg_thread: bool, @@ -135,7 +145,10 @@ class MetadataSubsystem: classes: list[type[T]] = [] try: - classnames = self._wait_for_scan_results().exports_of_class(cls) + # classnames = self._wait_for_scan_results().exports_of_class(cls) + classnames = self._wait_for_scan_results().exports.get( + exportname, [] + ) for classname in classnames: try: classes.append(getclass(classname, cls)) @@ -161,8 +174,8 @@ class MetadataSubsystem: ' this can cause hitches.' ) - # Now wait a bit for the scan to complete. - # Eventually error though if it doesn't. + # Now wait a bit for the scan to complete. Eventually error + # though if it doesn't. starttime = time.time() while self.scanresults is None: time.sleep(0.05) @@ -170,6 +183,7 @@ class MetadataSubsystem: raise TimeoutError( 'timeout waiting for meta scan to complete.' ) + return self.scanresults def _run_scan_in_bg(self) -> None: @@ -279,7 +293,7 @@ class DirectoryScan: except Exception: logging.exception("metascan: Error scanning '%s'.", subpath) - # Sort our results + # Sort our results. for exportlist in self.results.exports.values(): exportlist.sort() @@ -327,7 +341,11 @@ class DirectoryScan: meta_lines = { lnum: l[1:].split() for lnum, l in enumerate(flines) - if '# ba_meta ' in l + # Do a simple 'in' check for speed but then make sure its + # also at the beginning of the line. This allows disabling + # meta-lines and avoids false positives from code that + # wrangles them. + if ('# ba_meta' in l and l.strip().startswith('# ba_meta ')) } is_top_level = len(subpath.parts) <= 1 required_api = self._get_api_requirement( @@ -384,12 +402,16 @@ class DirectoryScan: # meta_lines is just anything containing '# ba_meta '; make sure # the ba_meta is in the right place. if mline[0] != 'ba_meta': - logging.warning( - 'metascan: %s:%d: malformed ba_meta statement.', - subpath, - lindex + 1, - ) - self.results.announce_errors_occurred = True + # Make an exception for this specific file, otherwise we + # get lots of warnings about ba_meta showing up in weird + # places here. + if subpath.as_posix() != 'babase/_meta.py': + logging.warning( + 'metascan: %s:%d: malformed ba_meta statement.', + subpath, + lindex + 1, + ) + self.results.announce_errors_occurred = True elif ( len(mline) == 4 and mline[1] == 'require' and mline[2] == 'api' ): diff --git a/dist/ba_data/python/babase/_mgen/enums.py b/dist/ba_data/python/babase/_mgen/enums.py index 9eb72b0..960a87f 100644 --- a/dist/ba_data/python/babase/_mgen/enums.py +++ b/dist/ba_data/python/babase/_mgen/enums.py @@ -5,11 +5,7 @@ from enum import Enum class InputType(Enum): - """Types of input a controller can send to the game. - - Category: Enums - - """ + """Types of input a controller can send to the game.""" UP_DOWN = 2 LEFT_RIGHT = 3 @@ -39,19 +35,18 @@ class InputType(Enum): class QuitType(Enum): - """Types of input a controller can send to the game. - - Category: Enums + """Types of quit behavior that can be requested from the app. 'soft' may hide/reset the app but keep the process running, depending - on the platform. + on the platform (generally a thing on mobile). 'back' is a variant of 'soft' which may give 'back-button-pressed' behavior depending on the platform. (returning to some previous activity instead of dumping to the home screen, etc.) 'hard' leads to the process exiting. This generally should be avoided - on platforms such as mobile. + on platforms such as mobile where apps are expected to keep running + until killed by the OS. """ SOFT = 0 @@ -65,8 +60,6 @@ class UIScale(Enum): might render the game at similar pixel resolutions but the size they display content at will vary significantly. - Category: Enums - 'large' is used for devices such as desktop PCs where fine details can be clearly seen. UI elements are generally smaller on the screen and more content can be seen at once. @@ -80,25 +73,19 @@ class UIScale(Enum): readable from an average distance. """ - LARGE = 0 + SMALL = 0 MEDIUM = 1 - SMALL = 2 + LARGE = 2 class Permission(Enum): - """Permissions that can be requested from the OS. - - Category: Enums - """ + """Permissions that can be requested from the OS.""" STORAGE = 0 class SpecialChar(Enum): - """Special characters the game can print. - - Category: Enums - """ + """Special characters the game can print.""" DOWN_ARROW = 0 UP_ARROW = 1 diff --git a/dist/ba_data/python/babase/_net.py b/dist/ba_data/python/babase/_net.py index 93522ad..6f19744 100644 --- a/dist/ba_data/python/babase/_net.py +++ b/dist/ba_data/python/babase/_net.py @@ -33,7 +33,7 @@ class NetworkSubsystem: # that a nearby server has been pinged. self.zone_pings: dict[str, float] = {} - # For debugging. + # For debugging/progress. self.v1_test_log: str = '' self.v1_ctest_results: dict[int, str] = {} self.connectivity_state = 'uninited' @@ -42,7 +42,10 @@ class NetworkSubsystem: def get_ip_address_type(addr: str) -> socket.AddressFamily: - """Return socket.AF_INET6 or socket.AF_INET4 for the provided address.""" + """Return an address-type given an address. + + Can be :attr:`socket.AF_INET` or :attr:`socket.AF_INET6`. + """ version = ipaddress.ip_address(addr).version if version == 4: diff --git a/dist/ba_data/python/babase/_plugin.py b/dist/ba_data/python/babase/_plugin.py index 5e5f675..b9a8b9b 100644 --- a/dist/ba_data/python/babase/_plugin.py +++ b/dist/ba_data/python/babase/_plugin.py @@ -10,6 +10,7 @@ from typing import TYPE_CHECKING, override import _babase from babase._appsubsystem import AppSubsystem +from babase._logging import balog if TYPE_CHECKING: from typing import Any @@ -18,31 +19,36 @@ if TYPE_CHECKING: class PluginSubsystem(AppSubsystem): - """Subsystem for plugin handling in the app. + """Subsystem for wrangling plugins. - Category: **App Classes** - - Access the single shared instance of this class at `ba.app.plugins`. + Access the single shared instance of this class via the + :attr:`~babase.App.plugins` attr on the :class:`~babase.App` class. """ + #: :meta private: AUTO_ENABLE_NEW_PLUGINS_CONFIG_KEY = 'Auto Enable New Plugins' + + #: :meta private: AUTO_ENABLE_NEW_PLUGINS_DEFAULT = True def __init__(self) -> None: super().__init__() - # Info about plugins that we are aware of. This may include - # plugins discovered through meta-scanning as well as plugins - # registered in the app-config. This may include plugins that - # cannot be loaded for various reasons or that have been - # intentionally disabled. + #: Info about plugins that we are aware of. This may include + #: plugins discovered through meta-scanning as well as plugins + #: registered in the app-config. This may include plugins that + #: cannot be loaded for various reasons or that have been + #: intentionally disabled. self.plugin_specs: dict[str, babase.PluginSpec] = {} - # The set of live active plugin objects. + #: The set of live active plugin instances. self.active_plugins: list[babase.Plugin] = [] def on_meta_scan_complete(self) -> None: - """Called when meta-scanning is complete.""" + """Called when meta-scanning is complete. + + :meta private: + """ from babase._language import Lstr config_changed = False @@ -68,7 +74,7 @@ class PluginSubsystem(AppSubsystem): # Create a plugin-spec for each plugin class we found in the # meta-scan. - for class_path in results.exports_of_class(Plugin): + for class_path in results.exports_by_name('babase.Plugin'): assert class_path not in self.plugin_specs plugspec = self.plugin_specs[class_path] = PluginSpec( class_path=class_path, loadable=True @@ -93,7 +99,7 @@ class PluginSubsystem(AppSubsystem): # that weren't covered by the meta stuff above, either creating # plugin-specs for them or clearing them out. This covers # plugins with api versions not matching ours, plugins without - # ba_meta tags, and plugins that have since disappeared. + # ba_*meta tags, and plugins that have since disappeared. assert isinstance(plugstates, dict) wrong_api_prefixes = [f'{m}.' for m in results.incorrect_api_modules] @@ -160,61 +166,53 @@ class PluginSubsystem(AppSubsystem): @override def on_app_running(self) -> None: + """:meta private:""" # Load up our plugins and go ahead and call their on_app_running # calls. - self.load_plugins() + self._load_plugins() for plugin in self.active_plugins: try: plugin.on_app_running() except Exception: - from babase import _error - - _error.print_exception('Error in plugin on_app_running()') + balog.exception('Error in plugin on_app_running().') @override def on_app_suspend(self) -> None: + """:meta private:""" for plugin in self.active_plugins: try: plugin.on_app_suspend() except Exception: - from babase import _error - - _error.print_exception('Error in plugin on_app_suspend()') + balog.exception('Error in plugin on_app_suspend().') @override def on_app_unsuspend(self) -> None: + """:meta private:""" for plugin in self.active_plugins: try: plugin.on_app_unsuspend() except Exception: - from babase import _error - - _error.print_exception('Error in plugin on_app_unsuspend()') + balog.exception('Error in plugin on_app_unsuspend().') @override def on_app_shutdown(self) -> None: + """:meta private:""" for plugin in self.active_plugins: try: plugin.on_app_shutdown() except Exception: - from babase import _error - - _error.print_exception('Error in plugin on_app_shutdown()') + balog.exception('Error in plugin on_app_shutdown().') @override def on_app_shutdown_complete(self) -> None: + """:meta private:""" for plugin in self.active_plugins: try: plugin.on_app_shutdown_complete() except Exception: - from babase import _error + balog.exception('Error in plugin on_app_shutdown_complete().') - _error.print_exception( - 'Error in plugin on_app_shutdown_complete()' - ) - - def load_plugins(self) -> None: - """(internal)""" + def _load_plugins(self) -> None: # Load plugins from any specs that are enabled & able to. for _class_path, plug_spec in sorted(self.plugin_specs.items()): @@ -224,32 +222,36 @@ class PluginSubsystem(AppSubsystem): class PluginSpec: - """Represents a plugin the engine knows about. - - Category: **App Classes** - - The 'enabled' attr represents whether this plugin is set to load. - Getting or setting that attr affects the corresponding app-config - key. Remember to commit the app-config after making any changes. - - The 'attempted_load' attr will be True if the engine has attempted - to load the plugin. If 'attempted_load' is True for a PluginSpec - but the 'plugin' attr is None, it means there was an error loading - the plugin. If a plugin's api-version does not match the running - app, if a new plugin is detected with auto-enable-plugins disabled, - or if the user has explicitly disabled a plugin, the engine will not - even attempt to load it. - """ + """Represents a plugin the engine knows about.""" def __init__(self, class_path: str, loadable: bool): + + #: Fully qualified class path for the plugin. self.class_path = class_path + + #: Can we attempt to load the plugin? self.loadable = loadable + + #: Whether the engine has attempted to load the plugin. If this + #: is True but the value of :attr:`plugin` is None, it means + #: there was an error loading the plugin. If a plugin's + #: api-version does not match the running app, if a new plugin is + #: detected with auto-enable-plugins disabled, or if the user has + #: explicitly disabled a plugin, the engine will not even attempt + #: to load it. self.attempted_load = False + + #: The associated :class:`~babase.Plugin`, if any. self.plugin: Plugin | None = None @property def enabled(self) -> bool: - """Whether the user wants this plugin to load.""" + """Whether this plugin is set to load. + + Getting or setting this attr affects the corresponding + app-config key. Remember to commit the app-config after making any + changes. + """ plugstates: dict[str, dict] = _babase.app.config.get('Plugins', {}) assert isinstance(plugstates, dict) val = plugstates.get(self.class_path, {}).get('enabled', False) is True @@ -321,12 +323,10 @@ class PluginSpec: class Plugin: """A plugin to alter app behavior in some way. - Category: **App Classes** - - Plugins are discoverable by the meta-tag system - and the user can select which ones they want to enable. - Enabled plugins are then called at specific times as the - app is running in order to modify its behavior in some way. + Plugins are discoverable by the :class:`~babase.MetadataSubsystem` + system and the user can select which ones they want to enable. + Enabled plugins are then called at specific times as the app is + running in order to modify its behavior in some way. """ def on_app_running(self) -> None: diff --git a/dist/ba_data/python/babase/_stringedit.py b/dist/ba_data/python/babase/_stringedit.py index 915199d..0a5284d 100644 --- a/dist/ba_data/python/babase/_stringedit.py +++ b/dist/ba_data/python/babase/_stringedit.py @@ -22,7 +22,12 @@ if TYPE_CHECKING: class StringEditSubsystem: - """Full string-edit state for the app.""" + """Full string-edit state for the app. + + Access the single shared instance of this class via the + :attr:`~babase.App.stringedit` attr on the :class:`~babase.App` + class. + """ def __init__(self) -> None: self.active_adapter = empty_weakref(StringEditAdapter) @@ -35,11 +40,11 @@ class StringEditAdapter: subclass this to make their contents editable on all platforms. There can only be one string-edit at a time for the app. New - StringEdits will attempt to register themselves as the globally - active one in their constructor, but this may not succeed. When - creating a StringEditAdapter, always check its 'is_valid()' value after - creating it. If this is False, it was not able to set itself as - the global active one and should be discarded. + string-edits will attempt to register themselves as the globally + active one in their constructor, but this may not succeed. If + :meth:`can_be_replaced()` returns ``True`` for an adapter + immediately after creating it, that means it was not able to set + itself as the global one. """ def __init__( @@ -72,8 +77,8 @@ class StringEditAdapter: """Return whether this adapter can be replaced by a new one. This is mainly a safeguard to allow adapters whose drivers have - gone away without calling apply or cancel to time out and be - replaced with new ones. + gone away without calling :meth:`apply` or :meth:`cancel` to + time out and be replaced with new ones. """ if not _babase.in_logic_thread(): raise RuntimeError('This must be called from the logic thread.') @@ -104,7 +109,7 @@ class StringEditAdapter: """Should be called by the owner when editing is complete. Note that in some cases this call may be a no-op (such as if - this StringEditAdapter is no longer the globally active one). + this adapter is no longer the globally active one). """ if not _babase.in_logic_thread(): raise RuntimeError('This must be called from the logic thread.') diff --git a/dist/ba_data/python/babase/_text.py b/dist/ba_data/python/babase/_text.py index 24642c7..8bc3190 100644 --- a/dist/ba_data/python/babase/_text.py +++ b/dist/ba_data/python/babase/_text.py @@ -15,18 +15,18 @@ def timestring( timeval: float | int, centi: bool = True, ) -> babase.Lstr: - """Generate a babase.Lstr for displaying a time value. + """Generate a localized string for displaying a time value. - Category: **General Utility Functions** - - Given a time value, returns a babase.Lstr with: + Given a time value, returns a localized string with: (hours if > 0 ) : minutes : seconds : (centiseconds if centi=True). - WARNING: the underlying Lstr value is somewhat large so don't use this - to rapidly update Node text values for an onscreen timer or you may - consume significant network bandwidth. For that purpose you should - use a 'timedisplay' Node and attribute connections. + .. warning:: + the underlying localized-string value is somewhat large, so don't + use this to rapidly update text values for an in-game timer or you + may consume significant network bandwidth. For that sort of thing + you should use things like 'timedisplay' nodes and attribute + connections. """ from babase._language import Lstr diff --git a/dist/ba_data/python/babase/_workspace.py b/dist/ba_data/python/babase/_workspace.py index 554392a..4b6df6c 100644 --- a/dist/ba_data/python/babase/_workspace.py +++ b/dist/ba_data/python/babase/_workspace.py @@ -26,9 +26,9 @@ if TYPE_CHECKING: class WorkspaceSubsystem: """Subsystem for workspace handling in the app. - Category: **App Classes** - - Access the single shared instance of this class at `ba.app.workspaces`. + Access the single shared instance of this class via the + :attr:`~babase.App.workspaces` attr on the :class:`~babase.App` + class. """ def __init__(self) -> None: @@ -41,7 +41,10 @@ class WorkspaceSubsystem: workspacename: str, on_completed: Callable[[], None], ) -> None: - """(internal)""" + """(internal) + + :meta private: + """ # Do our work in a background thread so we don't destroy # interactivity. diff --git a/dist/ba_data/python/babase/modutils.py b/dist/ba_data/python/babase/modutils.py index d63e914..831e9dd 100644 --- a/dist/ba_data/python/babase/modutils.py +++ b/dist/ba_data/python/babase/modutils.py @@ -7,6 +7,7 @@ from typing import TYPE_CHECKING import os import _babase +from babase._logging import applog if TYPE_CHECKING: from typing import Sequence @@ -46,9 +47,6 @@ def get_human_readable_user_scripts_path() -> str: def _request_storage_permission() -> bool: """If needed, requests storage permission from the user (& return true).""" from babase._language import Lstr - - # noinspection PyProtectedMember - # (PyCharm inspection bug?) from babase._mgen.enums import Permission if not _babase.have_permission(Permission.STORAGE): @@ -95,14 +93,11 @@ def show_user_scripts() -> None: with open(file_name, 'w', encoding='utf-8') as outfile: outfile.write( 'You can drop files in here to mod the game.' - ' See settings/advanced' - ' in the game for more info.' + ' See settings/advanced in the game for more info.' ) except Exception: - from babase import _error - - _error.print_exception('error writing about_this_folder stuff') + applog.exception('Error writing about_this_folder stuff.') # On platforms that support it, open the dir in the UI. if _babase.supports_open_dir_externally(): diff --git a/dist/ba_data/python/baclassic/__init__.py b/dist/ba_data/python/baclassic/__init__.py index 51f50da..472832f 100644 --- a/dist/ba_data/python/baclassic/__init__.py +++ b/dist/ba_data/python/baclassic/__init__.py @@ -1,38 +1,53 @@ # Released under the MIT License. See LICENSE for details. # -"""Classic ballistica components. +"""Components for the classic BombSquad experience. -This package is used as a 'dumping ground' for functionality that is -necessary to keep legacy parts of the app working, but which may no -longer be the best way to do things going forward. - -New code should try to avoid using code from here when possible. - -Functionality in this package should be exposed through the -ClassicSubsystem. This allows type-checked code to go through the -babase.app.classic singleton which forces it to explicitly handle the -possibility of babase.app.classic being None. When code instead imports -classic submodules directly, it is much harder to make it cleanly handle -classic not being present. +This package/feature-set contains functionality related to the classic +BombSquad experience. Note that much legacy BombSquad code is still a +bit tangled and thus this feature-set is largely inseperable from +:mod:`bascenev1` and :mod:`bauiv1`. Future feature-sets will be +designed in a more modular way. """ -# ba_meta require api 8 +# ba_meta require api 9 # Note: Code relying on classic should import things from here *only* -# for type-checking and use the versions in app.classic at runtime; that -# way type-checking will cleanly cover the classic-not-present case -# (app.classic being None). +# for type-checking and use the versions in ba*.app.classic at runtime; +# that way type-checking will cleanly cover the classic-not-present case +# (ba*.app.classic being None). import logging -from baclassic._subsystem import ClassicSubsystem +# from efro.util import set_canonical_module_names + +from baclassic._appmode import ClassicAppMode +from baclassic._appsubsystem import ClassicAppSubsystem from baclassic._achievement import Achievement, AchievementSubsystem +from baclassic._chest import ( + ChestAppearanceDisplayInfo, + CHEST_APPEARANCE_DISPLAY_INFO_DEFAULT, + CHEST_APPEARANCE_DISPLAY_INFOS, +) +from baclassic._displayitem import show_display_item +from baclassic._music import MusicPlayer __all__ = [ - 'ClassicSubsystem', + 'ChestAppearanceDisplayInfo', + 'CHEST_APPEARANCE_DISPLAY_INFO_DEFAULT', + 'CHEST_APPEARANCE_DISPLAY_INFOS', + 'ClassicAppMode', + 'ClassicAppSubsystem', 'Achievement', 'AchievementSubsystem', + 'show_display_item', + 'MusicPlayer', ] +# We want stuff here to show up as packagename.Foo instead of +# packagename._submodule.Foo. +# UPDATE: Trying without this for now. Seems like this might cause more +# harm than good. Can flip it back on if it is missed. +# set_canonical_module_names(globals()) + # Sanity check: we want to keep ballistica's dependencies and # bootstrapping order clearly defined; let's check a few particular # modules to make sure they never directly or indirectly import us diff --git a/dist/ba_data/python/baclassic/_accountv1.py b/dist/ba_data/python/baclassic/_accountv1.py index 47b7dae..7b56ea5 100644 --- a/dist/ba_data/python/baclassic/_accountv1.py +++ b/dist/ba_data/python/baclassic/_accountv1.py @@ -17,9 +17,8 @@ if TYPE_CHECKING: class AccountV1Subsystem: """Subsystem for legacy account handling in the app. - Category: **App Classes** - - Access the single instance of this class at 'ba.app.classic.accounts'. + Access the single instance of this class at + 'ba.app.classic.accounts'. """ def __init__(self) -> None: @@ -125,7 +124,11 @@ class AccountV1Subsystem: if subset is not None: raise ValueError('invalid subset value: ' + str(subset)) - if data['p']: + # We used to give this bonus for pro, but on recent versions of + # the game give it for everyone (since we are phasing out Pro). + + # if data['p']: + if bool(True): if babase.app.plus is None: pro_mult = 1.0 else: @@ -176,7 +179,9 @@ class AccountV1Subsystem: else {} ) for item_name, item in list(store_items.items()): - if item_name.startswith('icons.') and plus.get_purchased(item_name): + if item_name.startswith( + 'icons.' + ) and plus.get_v1_account_product_purchased(item_name): icons.append(item['icon']) return icons @@ -196,7 +201,7 @@ class AccountV1Subsystem: # If the short version of our account name currently cant be # displayed by the game, cancel. - if not babase.have_chars( + if not babase.can_display_chars( plus.get_v1_account_display_string(full=False) ): return @@ -227,13 +232,12 @@ class AccountV1Subsystem: if plus is None: return False - # Check our tickets-based pro upgrade and our two real-IAP based - # upgrades. Also always unlock this stuff in ballistica-core builds. + # Check various server-side purchases that mean we have pro. return bool( - plus.get_purchased('upgrades.pro') - or plus.get_purchased('static.pro') - or plus.get_purchased('static.pro_sale') - or 'ballistica' + 'kit' == babase.appname() + plus.get_v1_account_product_purchased('gold_pass') + or plus.get_v1_account_product_purchased('upgrades.pro') + or plus.get_v1_account_product_purchased('static.pro') + or plus.get_v1_account_product_purchased('static.pro_sale') ) def have_pro_options(self) -> bool: @@ -247,10 +251,9 @@ class AccountV1Subsystem: if plus is None: return False - # We expose pro options if the server tells us to - # (which is generally just when we own pro), - # or also if we've been grandfathered in - # or are using ballistica-core builds. + # We expose pro options if the server tells us to (which is + # generally just when we own pro), or also if we've been + # grandfathered in. return self.have_pro() or bool( plus.get_v1_account_misc_read_val_2('proOptionsUnlocked', False) or babase.app.config.get('lc14292', 0) > 1 diff --git a/dist/ba_data/python/baclassic/_achievement.py b/dist/ba_data/python/baclassic/_achievement.py index 3ef3bed..6641829 100644 --- a/dist/ba_data/python/baclassic/_achievement.py +++ b/dist/ba_data/python/baclassic/_achievement.py @@ -6,6 +6,11 @@ from __future__ import annotations import logging from typing import TYPE_CHECKING +from bacommon.bs import ClassicChestAppearance +from baclassic._chest import ( + CHEST_APPEARANCE_DISPLAY_INFOS, + CHEST_APPEARANCE_DISPLAY_INFO_DEFAULT, +) import babase import bascenev1 import bauiv1 @@ -68,8 +73,6 @@ ACH_LEVEL_NAMES = { class AchievementSubsystem: """Subsystem for achievement handling. - Category: **App Classes** - Access the single shared instance of this class at 'ba.app.ach'. """ @@ -86,429 +89,311 @@ class AchievementSubsystem: def _init_achievements(self) -> None: """Fill in available achievements.""" - achs = self.achievements - - # 5 - achs.append( - Achievement('In Control', 'achievementInControl', (1, 1, 1), '', 5) - ) - # 15 - achs.append( + self.achievements += [ + Achievement( + 'In Control', + 'achievementInControl', + (1, 1, 1), + '', + award=5, + ), Achievement( 'Sharing is Caring', 'achievementSharingIsCaring', (1, 1, 1), '', - 15, - ) - ) - # 10 - achs.append( + award=15, + ), Achievement( - 'Dual Wielding', 'achievementDualWielding', (1, 1, 1), '', 10 - ) - ) - - # 10 - achs.append( + 'Dual Wielding', + 'achievementDualWielding', + (1, 1, 1), + '', + award=10, + ), Achievement( - 'Free Loader', 'achievementFreeLoader', (1, 1, 1), '', 10 - ) - ) - # 20 - achs.append( + 'Free Loader', + 'achievementFreeLoader', + (1, 1, 1), + '', + award=10, + ), Achievement( - 'Team Player', 'achievementTeamPlayer', (1, 1, 1), '', 20 - ) - ) - - # 5 - achs.append( + 'Team Player', + 'achievementTeamPlayer', + (1, 1, 1), + '', + award=20, + ), Achievement( 'Onslaught Training Victory', 'achievementOnslaught', (1, 1, 1), 'Default:Onslaught Training', - 5, - ) - ) - # 5 - achs.append( + award=5, + ), Achievement( 'Off You Go Then', 'achievementOffYouGo', (1, 1.1, 1.3), 'Default:Onslaught Training', - 5, - ) - ) - # 10 - achs.append( + award=5, + ), Achievement( 'Boxer', 'achievementBoxer', (1, 0.6, 0.6), 'Default:Onslaught Training', - 10, + award=10, hard_mode_only=True, - ) - ) - - # 10 - achs.append( + ), Achievement( 'Rookie Onslaught Victory', 'achievementOnslaught', (0.5, 1.4, 0.6), 'Default:Rookie Onslaught', - 10, - ) - ) - # 10 - achs.append( + award=10, + ), Achievement( 'Mine Games', 'achievementMine', (1, 1, 1.4), 'Default:Rookie Onslaught', - 10, - ) - ) - # 15 - achs.append( + award=10, + ), Achievement( 'Flawless Victory', 'achievementFlawlessVictory', (1, 1, 1), 'Default:Rookie Onslaught', - 15, + award=15, hard_mode_only=True, - ) - ) - - # 10 - achs.append( + ), Achievement( 'Rookie Football Victory', 'achievementFootballVictory', (1.0, 1, 0.6), 'Default:Rookie Football', - 10, - ) - ) - # 10 - achs.append( + award=10, + ), Achievement( 'Super Punch', 'achievementSuperPunch', (1, 1, 1.8), 'Default:Rookie Football', - 10, - ) - ) - # 15 - achs.append( + award=10, + ), Achievement( 'Rookie Football Shutout', 'achievementFootballShutout', (1, 1, 1), 'Default:Rookie Football', - 15, + award=15, hard_mode_only=True, - ) - ) - - # 15 - achs.append( + ), Achievement( 'Pro Onslaught Victory', 'achievementOnslaught', (0.3, 1, 2.0), 'Default:Pro Onslaught', - 15, - ) - ) - # 15 - achs.append( + award=15, + ), Achievement( 'Boom Goes the Dynamite', 'achievementTNT', (1.4, 1.2, 0.8), 'Default:Pro Onslaught', - 15, - ) - ) - # 20 - achs.append( + award=15, + ), Achievement( 'Pro Boxer', 'achievementBoxer', (2, 2, 0), 'Default:Pro Onslaught', - 20, + award=20, hard_mode_only=True, - ) - ) - - # 15 - achs.append( + ), Achievement( 'Pro Football Victory', 'achievementFootballVictory', (1.3, 1.3, 2.0), 'Default:Pro Football', - 15, - ) - ) - # 15 - achs.append( + award=15, + ), Achievement( 'Super Mega Punch', 'achievementSuperPunch', (2, 1, 0.6), 'Default:Pro Football', - 15, - ) - ) - # 20 - achs.append( + award=15, + ), Achievement( 'Pro Football Shutout', 'achievementFootballShutout', (0.7, 0.7, 2.0), 'Default:Pro Football', - 20, + award=20, hard_mode_only=True, - ) - ) - - # 15 - achs.append( + ), Achievement( 'Pro Runaround Victory', 'achievementRunaround', (1, 1, 1), 'Default:Pro Runaround', - 15, - ) - ) - # 20 - achs.append( + award=15, + ), Achievement( 'Precision Bombing', 'achievementCrossHair', (1, 1, 1.3), 'Default:Pro Runaround', - 20, + award=20, hard_mode_only=True, - ) - ) - # 25 - achs.append( + ), Achievement( 'The Wall', 'achievementWall', (1, 0.7, 0.7), 'Default:Pro Runaround', - 25, + award=25, hard_mode_only=True, - ) - ) - - # 30 - achs.append( + ), Achievement( 'Uber Onslaught Victory', 'achievementOnslaught', (2, 2, 1), 'Default:Uber Onslaught', - 30, - ) - ) - # 30 - achs.append( + award=30, + ), Achievement( 'Gold Miner', 'achievementMine', (2, 1.6, 0.2), 'Default:Uber Onslaught', - 30, + award=30, hard_mode_only=True, - ) - ) - # 30 - achs.append( + ), Achievement( 'TNT Terror', 'achievementTNT', (2, 1.8, 0.3), 'Default:Uber Onslaught', - 30, + award=30, hard_mode_only=True, - ) - ) - - # 30 - achs.append( + ), Achievement( 'Uber Football Victory', 'achievementFootballVictory', (1.8, 1.4, 0.3), 'Default:Uber Football', - 30, - ) - ) - # 30 - achs.append( + award=30, + ), Achievement( 'Got the Moves', 'achievementGotTheMoves', (2, 1, 0), 'Default:Uber Football', - 30, + award=30, hard_mode_only=True, - ) - ) - # 40 - achs.append( + ), Achievement( 'Uber Football Shutout', 'achievementFootballShutout', (2, 2, 0), 'Default:Uber Football', - 40, + award=40, hard_mode_only=True, - ) - ) - - # 30 - achs.append( + ), Achievement( 'Uber Runaround Victory', 'achievementRunaround', (1.5, 1.2, 0.2), 'Default:Uber Runaround', - 30, - ) - ) - # 40 - achs.append( + award=30, + ), Achievement( 'The Great Wall', 'achievementWall', (2, 1.7, 0.4), 'Default:Uber Runaround', - 40, + award=40, hard_mode_only=True, - ) - ) - # 40 - achs.append( + ), Achievement( 'Stayin\' Alive', 'achievementStayinAlive', (2, 2, 1), 'Default:Uber Runaround', - 40, + award=40, hard_mode_only=True, - ) - ) - - # 20 - achs.append( + ), Achievement( 'Last Stand Master', 'achievementMedalSmall', (2, 1.5, 0.3), 'Default:The Last Stand', - 20, + award=20, hard_mode_only=True, - ) - ) - # 40 - achs.append( + ), Achievement( 'Last Stand Wizard', 'achievementMedalMedium', (2, 1.5, 0.3), 'Default:The Last Stand', - 40, + award=40, hard_mode_only=True, - ) - ) - # 60 - achs.append( + ), Achievement( 'Last Stand God', 'achievementMedalLarge', (2, 1.5, 0.3), 'Default:The Last Stand', - 60, + award=60, hard_mode_only=True, - ) - ) - - # 5 - achs.append( + ), Achievement( 'Onslaught Master', 'achievementMedalSmall', (0.7, 1, 0.7), 'Challenges:Infinite Onslaught', - 5, - ) - ) - # 15 - achs.append( + award=5, + ), Achievement( 'Onslaught Wizard', 'achievementMedalMedium', (0.7, 1.0, 0.7), 'Challenges:Infinite Onslaught', - 15, - ) - ) - # 30 - achs.append( + award=15, + ), Achievement( 'Onslaught God', 'achievementMedalLarge', (0.7, 1.0, 0.7), 'Challenges:Infinite Onslaught', - 30, - ) - ) - - # 5 - achs.append( + award=30, + ), Achievement( 'Runaround Master', 'achievementMedalSmall', (1.0, 1.0, 1.2), 'Challenges:Infinite Runaround', - 5, - ) - ) - # 15 - achs.append( + award=5, + ), Achievement( 'Runaround Wizard', 'achievementMedalMedium', (1.0, 1.0, 1.2), 'Challenges:Infinite Runaround', - 15, - ) - ) - # 30 - achs.append( + award=15, + ), Achievement( 'Runaround God', 'achievementMedalLarge', (1.0, 1.0, 1.2), 'Challenges:Infinite Runaround', - 30, - ) - ) + award=30, + ), + ] def award_local_achievement(self, achname: str) -> None: """For non-game-based achievements such as controller-connection.""" @@ -643,23 +528,22 @@ def _display_next_achievement() -> None: class Achievement: - """Represents attributes and state for an individual achievement. - - Category: **App Classes** - """ + """Represents attributes and state for an individual achievement.""" def __init__( self, name: str, icon_name: str, - icon_color: Sequence[float], + icon_color: tuple[float, float, float], level_name: str, + *, award: int, hard_mode_only: bool = False, ): self._name = name self._icon_name = icon_name - self._icon_color: Sequence[float] = list(icon_color) + [1] + assert len(icon_color) == 3 + self._icon_color = icon_color + (1.0,) self._level_name = level_name self._completion_banner_slot: int | None = None self._award = award @@ -842,16 +726,48 @@ class Achievement: ], ) - def get_award_ticket_value(self, include_pro_bonus: bool = False) -> int: - """Get the ticket award value for this achievement.""" + def get_award_chest_type(self) -> ClassicChestAppearance: + """Return the type of chest given for this achievement.""" + + # For now just map our old ticket values to chest types. + # Can add distinct values if need be later. plus = babase.app.plus - if plus is None: - return 0 - val: int = plus.get_v1_account_misc_read_val( - 'achAward.' + self._name, self._award - ) * _get_ach_mult(include_pro_bonus) - assert isinstance(val, int) - return val + assert plus is not None + t = plus.get_v1_account_misc_read_val( + f'achAward.{self.name}', self._award + ) + return ( + ClassicChestAppearance.L6 + if t >= 30 + else ( + ClassicChestAppearance.L5 + if t >= 25 + else ( + ClassicChestAppearance.L4 + if t >= 20 + else ( + ClassicChestAppearance.L3 + if t >= 15 + else ( + ClassicChestAppearance.L2 + if t >= 10 + else ClassicChestAppearance.L1 + ) + ) + ) + ) + ) + + # def get_award_ticket_value(self, include_pro_bonus: bool = False) -> int: + # """Get the ticket award value for this achievement.""" + # plus = babase.app.plus + # if plus is None: + # return 0 + # val: int = plus.get_v1_account_misc_read_val( + # 'achAward.' + self._name, self._award + # ) * _get_ach_mult(include_pro_bonus) + # assert isinstance(val, int) + # return val @property def power_ranking_value(self) -> int: @@ -870,6 +786,7 @@ class Achievement: x: float, y: float, delay: float, + *, outdelay: float | None = None, color: Sequence[float] | None = None, style: str = 'post_game', @@ -1015,42 +932,72 @@ class Achievement: txtactor.node.rotate = 10 objs.append(txtactor) - # Ticket-award. + # Chest award. award_x = -100 - objs.append( - Text( - babase.charstr(babase.SpecialChar.TICKET), - host_only=True, - position=(x + award_x + 33, y + 7), - transition=Text.Transition.FADE_IN, - scale=1.5, - h_attach=h_attach, - v_attach=v_attach, - h_align=Text.HAlign.CENTER, - v_align=Text.VAlign.CENTER, - color=(1, 1, 1, 0.2 if hmo else 0.4), - transition_delay=delay + 0.05, - transition_out_delay=out_delay_fin, - ).autoretain() + chesttype = self.get_award_chest_type() + chestdisplayinfo = CHEST_APPEARANCE_DISPLAY_INFOS.get( + chesttype, CHEST_APPEARANCE_DISPLAY_INFO_DEFAULT ) objs.append( - Text( - '+' + str(self.get_award_ticket_value()), - host_only=True, - position=(x + award_x + 28, y + 16), - transition=Text.Transition.FADE_IN, - scale=0.7, - flatness=1, - h_attach=h_attach, - v_attach=v_attach, - h_align=Text.HAlign.CENTER, - v_align=Text.VAlign.CENTER, - color=cl2, + Image( + # Provide magical extended dict version of texture + # that Image actor supports. + texture={ + 'texture': bascenev1.gettexture( + chestdisplayinfo.texclosed + ), + 'tint_texture': bascenev1.gettexture( + chestdisplayinfo.texclosedtint + ), + 'tint_color': chestdisplayinfo.tint, + 'tint2_color': chestdisplayinfo.tint2, + 'mask_texture': None, + }, + color=chestdisplayinfo.color + (0.5 if hmo else 1.0,), + position=(x + award_x + 37, y + 12), + scale=(32.0, 32.0), + transition=Image.Transition.FADE_IN, transition_delay=delay + 0.05, transition_out_delay=out_delay_fin, + host_only=True, + attach=Image.Attach.TOP_LEFT, ).autoretain() ) + # objs.append( + # Text( + # babase.charstr(babase.SpecialChar.TICKET), + # host_only=True, + # position=(x + award_x + 33, y + 7), + # transition=Text.Transition.FADE_IN, + # scale=1.5, + # h_attach=h_attach, + # v_attach=v_attach, + # h_align=Text.HAlign.CENTER, + # v_align=Text.VAlign.CENTER, + # color=(1, 1, 1, 0.2 if hmo else 0.4), + # transition_delay=delay + 0.05, + # transition_out_delay=out_delay_fin, + # ).autoretain() + # ) + # objs.append( + # Text( + # '+' + str(self.get_award_ticket_value()), + # host_only=True, + # position=(x + award_x + 28, y + 16), + # transition=Text.Transition.FADE_IN, + # scale=0.7, + # flatness=1, + # h_attach=h_attach, + # v_attach=v_attach, + # h_align=Text.HAlign.CENTER, + # v_align=Text.VAlign.CENTER, + # color=cl2, + # transition_delay=delay + 0.05, + # transition_out_delay=out_delay_fin, + # ).autoretain() + # ) + else: complete = self.complete objs = [] @@ -1092,40 +1039,71 @@ class Achievement: else: if not complete: award_x = -100 - objs.append( - Text( - babase.charstr(babase.SpecialChar.TICKET), - host_only=True, - position=(x + award_x + 33, y + 7), - transition=Text.Transition.IN_RIGHT, - scale=1.5, - h_attach=h_attach, - v_attach=v_attach, - h_align=Text.HAlign.CENTER, - v_align=Text.VAlign.CENTER, - color=(1, 1, 1, (0.1 if hmo else 0.2)), - transition_delay=delay + 0.05, - transition_out_delay=None, - ).autoretain() + # objs.append( + # Text( + # babase.charstr(babase.SpecialChar.TICKET), + # host_only=True, + # position=(x + award_x + 33, y + 7), + # transition=Text.Transition.IN_RIGHT, + # scale=1.5, + # h_attach=h_attach, + # v_attach=v_attach, + # h_align=Text.HAlign.CENTER, + # v_align=Text.VAlign.CENTER, + # color=(1, 1, 1, (0.1 if hmo else 0.2)), + # transition_delay=delay + 0.05, + # transition_out_delay=None, + # ).autoretain() + # ) + chesttype = self.get_award_chest_type() + chestdisplayinfo = CHEST_APPEARANCE_DISPLAY_INFOS.get( + chesttype, CHEST_APPEARANCE_DISPLAY_INFO_DEFAULT ) objs.append( - Text( - '+' + str(self.get_award_ticket_value()), - host_only=True, - position=(x + award_x + 28, y + 16), - transition=Text.Transition.IN_RIGHT, - scale=0.7, - flatness=1, - h_attach=h_attach, - v_attach=v_attach, - h_align=Text.HAlign.CENTER, - v_align=Text.VAlign.CENTER, - color=(0.6, 0.6, 0.6, (0.2 if hmo else 0.4)), + Image( + # Provide magical extended dict version of texture + # that Image actor supports. + texture={ + 'texture': bascenev1.gettexture( + chestdisplayinfo.texclosed + ), + 'tint_texture': bascenev1.gettexture( + chestdisplayinfo.texclosedtint + ), + 'tint_color': chestdisplayinfo.tint, + 'tint2_color': chestdisplayinfo.tint2, + 'mask_texture': None, + }, + color=chestdisplayinfo.color + + (0.5 if hmo else 1.0,), + position=(x + award_x + 38, y + 14), + scale=(32.0, 32.0), + transition=Image.Transition.IN_RIGHT, transition_delay=delay + 0.05, transition_out_delay=None, + host_only=True, + attach=attach, ).autoretain() ) + # objs.append( + # Text( + # '+' + str(self.get_award_ticket_value()), + # host_only=True, + # position=(x + award_x + 28, y + 16), + # transition=Text.Transition.IN_RIGHT, + # scale=0.7, + # flatness=1, + # h_attach=h_attach, + # v_attach=v_attach, + # h_align=Text.HAlign.CENTER, + # v_align=Text.VAlign.CENTER, + # color=(0.6, 0.6, 0.6, (0.2 if hmo else 0.4)), + # transition_delay=delay + 0.05, + # transition_out_delay=None, + # ).autoretain() + # ) + # Show 'hard-mode-only' only over incomplete achievements # when that's the case. if hmo: @@ -1457,68 +1435,70 @@ class Achievement: assert objt.node objt.node.host_only = True - objt = Text( - babase.charstr(babase.SpecialChar.TICKET), - position=(-120 - 170 + 5, 75 + y_offs - 20), - front=True, - v_attach=Text.VAttach.BOTTOM, - h_align=Text.HAlign.CENTER, - v_align=Text.VAlign.CENTER, - transition=Text.Transition.IN_BOTTOM, - vr_depth=base_vr_depth, - transition_delay=in_time, - transition_out_delay=out_time, - flash=True, - color=(0.5, 0.5, 0.5, 1), - scale=3.0, - ).autoretain() - objs.append(objt) - assert objt.node - objt.node.host_only = True + # objt = Text( + # babase.charstr(babase.SpecialChar.TICKET), + # position=(-120 - 170 + 5, 75 + y_offs - 20), + # front=True, + # v_attach=Text.VAttach.BOTTOM, + # h_align=Text.HAlign.CENTER, + # v_align=Text.VAlign.CENTER, + # transition=Text.Transition.IN_BOTTOM, + # vr_depth=base_vr_depth, + # transition_delay=in_time, + # transition_out_delay=out_time, + # flash=True, + # color=(0.5, 0.5, 0.5, 1), + # scale=3.0, + # ).autoretain() + # objs.append(objt) + # assert objt.node + # objt.node.host_only = True + + # print('FIXME SHOW ACH CHEST3') + # objt = Text( + # '+' + str(self.get_award_ticket_value()), + # position=(-120 - 180 + 5, 80 + y_offs - 20), + # v_attach=Text.VAttach.BOTTOM, + # front=True, + # h_align=Text.HAlign.CENTER, + # v_align=Text.VAlign.CENTER, + # transition=Text.Transition.IN_BOTTOM, + # vr_depth=base_vr_depth, + # flatness=0.5, + # shadow=1.0, + # transition_delay=in_time, + # transition_out_delay=out_time, + # flash=True, + # color=(0, 1, 0, 1), + # scale=1.5, + # ).autoretain() + # objs.append(objt) - objt = Text( - '+' + str(self.get_award_ticket_value()), - position=(-120 - 180 + 5, 80 + y_offs - 20), - v_attach=Text.VAttach.BOTTOM, - front=True, - h_align=Text.HAlign.CENTER, - v_align=Text.VAlign.CENTER, - transition=Text.Transition.IN_BOTTOM, - vr_depth=base_vr_depth, - flatness=0.5, - shadow=1.0, - transition_delay=in_time, - transition_out_delay=out_time, - flash=True, - color=(0, 1, 0, 1), - scale=1.5, - ).autoretain() - objs.append(objt) assert objt.node objt.node.host_only = True # Add the 'x 2' if we've got pro. - if app.classic.accounts.have_pro(): - objt = Text( - 'x 2', - position=(-120 - 180 + 45, 80 + y_offs - 50), - v_attach=Text.VAttach.BOTTOM, - front=True, - h_align=Text.HAlign.CENTER, - v_align=Text.VAlign.CENTER, - transition=Text.Transition.IN_BOTTOM, - vr_depth=base_vr_depth, - flatness=0.5, - shadow=1.0, - transition_delay=in_time, - transition_out_delay=out_time, - flash=True, - color=(0.4, 0, 1, 1), - scale=0.9, - ).autoretain() - objs.append(objt) - assert objt.node - objt.node.host_only = True + # if app.classic.accounts.have_pro(): + # objt = Text( + # 'x 2', + # position=(-120 - 180 + 45, 80 + y_offs - 50), + # v_attach=Text.VAttach.BOTTOM, + # front=True, + # h_align=Text.HAlign.CENTER, + # v_align=Text.VAlign.CENTER, + # transition=Text.Transition.IN_BOTTOM, + # vr_depth=base_vr_depth, + # flatness=0.5, + # shadow=1.0, + # transition_delay=in_time, + # transition_out_delay=out_time, + # flash=True, + # color=(0.4, 0, 1, 1), + # scale=0.9, + # ).autoretain() + # objs.append(objt) + # assert objt.node + # objt.node.host_only = True objt = Text( self.description_complete, diff --git a/dist/ba_data/python/baclassic/_ads.py b/dist/ba_data/python/baclassic/_ads.py index 5cd454d..25dabb2 100644 --- a/dist/ba_data/python/baclassic/_ads.py +++ b/dist/ba_data/python/baclassic/_ads.py @@ -18,8 +18,6 @@ if TYPE_CHECKING: class AdsSubsystem: """Subsystem for ads functionality in the app. - Category: **App Classes** - Access the single shared instance of this class at 'ba.app.ads'. """ @@ -48,19 +46,7 @@ class AdsSubsystem: 1.0, lambda: babase.screenmessage( babase.Lstr( - resource='removeInGameAdsText', - subs=[ - ( - '${PRO}', - babase.Lstr( - resource='store.bombSquadProNameText' - ), - ), - ( - '${APP_NAME}', - babase.Lstr(resource='titleText'), - ), - ], + resource='removeInGameAdsTokenPurchaseText' ), color=(1, 1, 0), ), @@ -100,8 +86,14 @@ class AdsSubsystem: # No ads without net-connections, etc. if not plus.can_show_ad(): show = False - if classic.accounts.have_pro(): - show = False # Pro disables interstitials. + + # Pro or other upgrades disable interstitials. + if ( + classic.accounts.have_pro() + or classic.gold_pass + or classic.remove_ads + ): + show = False try: session = bascenev1.get_foreground_host_session() assert session is not None diff --git a/dist/ba_data/python/baclassic/_appdelegate.py b/dist/ba_data/python/baclassic/_appdelegate.py deleted file mode 100644 index 1dd1a6b..0000000 --- a/dist/ba_data/python/baclassic/_appdelegate.py +++ /dev/null @@ -1,46 +0,0 @@ -# Released under the MIT License. See LICENSE for details. -# -"""Defines AppDelegate class for handling high level app functionality.""" -from __future__ import annotations - -from typing import TYPE_CHECKING - -import babase - -if TYPE_CHECKING: - from typing import Callable - import bascenev1 - - -class AppDelegate: - """Defines handlers for high level app functionality. - - Category: App Classes - """ - - def create_default_game_settings_ui( - self, - gameclass: type[bascenev1.GameActivity], - sessiontype: type[bascenev1.Session], - settings: dict | None, - completion_call: Callable[[dict | None], None], - ) -> None: - """Launch a UI to configure the given game config. - - It should manipulate the contents of config and call completion_call - when done. - """ - # Replace the main window once we come up successfully. - from bauiv1lib.playlist.editgame import PlaylistEditGameWindow - - assert babase.app.classic is not None - babase.app.ui_v1.clear_main_menu_window(transition='out_left') - babase.app.ui_v1.set_main_menu_window( - PlaylistEditGameWindow( - gameclass, - sessiontype, - settings, - completion_call=completion_call, - ).get_root_widget(), - from_window=False, # Disable check since we don't know. - ) diff --git a/dist/ba_data/python/baclassic/_appmode.py b/dist/ba_data/python/baclassic/_appmode.py new file mode 100644 index 0000000..b56ffec --- /dev/null +++ b/dist/ba_data/python/baclassic/_appmode.py @@ -0,0 +1,902 @@ +# Released under the MIT License. See LICENSE for details. +# +"""Contains ClassicAppMode.""" +from __future__ import annotations + +import os +import logging +from functools import partial +from typing import TYPE_CHECKING, override + +# from bacommon.app import AppExperience +import bacommon.bs +import babase +import bauiv1 +from bauiv1lib.connectivity import wait_for_connectivity +from bauiv1lib.account.signin import show_sign_in_prompt + +import _baclassic + +if TYPE_CHECKING: + from typing import Callable, Any, Literal + + from efro.call import CallbackRegistration + import bacommon.cloud + from bauiv1lib.chest import ChestWindow + + +# ba_meta export babase.AppMode +class ClassicAppMode(babase.AppMode): + """AppMode for the classic BombSquad experience.""" + + _LEAGUE_VIS_VALS_CONFIG_KEY = 'ClassicLeagueVisVals' + + def __init__(self) -> None: + self._on_primary_account_changed_callback: ( + CallbackRegistration | None + ) = None + self._on_connectivity_changed_callback: CallbackRegistration | None = ( + None + ) + self._test_sub: babase.CloudSubscription | None = None + self._account_data_sub: babase.CloudSubscription | None = None + + self._have_account_values = False + self._have_connectivity = False + self._current_account_id: str | None = None + self._should_restore_account_display_state = False + + self._purchase_ui_pause: bauiv1.RootUIUpdatePause | None = None + self._last_tokens_value = 0 + + @override + @classmethod + def can_handle_intent(cls, intent: babase.AppIntent) -> bool: + # We support default and exec intents currently. + return isinstance( + intent, babase.AppIntentExec | babase.AppIntentDefault + ) + + @override + def handle_intent(self, intent: babase.AppIntent) -> None: + if isinstance(intent, babase.AppIntentExec): + _baclassic.classic_app_mode_handle_app_intent_exec(intent.code) + return + assert isinstance(intent, babase.AppIntentDefault) + _baclassic.classic_app_mode_handle_app_intent_default() + + @override + def on_activate(self) -> None: + + # Let the native layer do its thing. + _baclassic.classic_app_mode_activate() + + app = babase.app + plus = app.plus + assert plus is not None + + # Wire up the root ui to do what we want. + ui = app.ui_v1 + ui.root_ui_calls[ui.RootUIElement.ACCOUNT_BUTTON] = ( + self._root_ui_account_press + ) + ui.root_ui_calls[ui.RootUIElement.MENU_BUTTON] = ( + self._root_ui_menu_press + ) + ui.root_ui_calls[ui.RootUIElement.SQUAD_BUTTON] = ( + self._root_ui_squad_press + ) + ui.root_ui_calls[ui.RootUIElement.SETTINGS_BUTTON] = ( + self._root_ui_settings_press + ) + ui.root_ui_calls[ui.RootUIElement.STORE_BUTTON] = ( + self._root_ui_store_press + ) + ui.root_ui_calls[ui.RootUIElement.INVENTORY_BUTTON] = ( + self._root_ui_inventory_press + ) + ui.root_ui_calls[ui.RootUIElement.GET_TOKENS_BUTTON] = ( + self._root_ui_get_tokens_press + ) + ui.root_ui_calls[ui.RootUIElement.INBOX_BUTTON] = ( + self._root_ui_inbox_press + ) + ui.root_ui_calls[ui.RootUIElement.TICKETS_METER] = ( + self._root_ui_tickets_meter_press + ) + ui.root_ui_calls[ui.RootUIElement.TOKENS_METER] = ( + self._root_ui_tokens_meter_press + ) + ui.root_ui_calls[ui.RootUIElement.TROPHY_METER] = ( + self._root_ui_trophy_meter_press + ) + ui.root_ui_calls[ui.RootUIElement.LEVEL_METER] = ( + self._root_ui_level_meter_press + ) + ui.root_ui_calls[ui.RootUIElement.ACHIEVEMENTS_BUTTON] = ( + self._root_ui_achievements_press + ) + ui.root_ui_calls[ui.RootUIElement.CHEST_SLOT_0] = partial( + self._root_ui_chest_slot_pressed, 0 + ) + ui.root_ui_calls[ui.RootUIElement.CHEST_SLOT_1] = partial( + self._root_ui_chest_slot_pressed, 1 + ) + ui.root_ui_calls[ui.RootUIElement.CHEST_SLOT_2] = partial( + self._root_ui_chest_slot_pressed, 2 + ) + ui.root_ui_calls[ui.RootUIElement.CHEST_SLOT_3] = partial( + self._root_ui_chest_slot_pressed, 3 + ) + + # We want to be informed when connectivity changes. + self._on_connectivity_changed_callback = ( + plus.cloud.on_connectivity_changed_callbacks.register( + self._update_for_connectivity_change + ) + ) + # We want to be informed when primary account changes. + self._on_primary_account_changed_callback = ( + plus.accounts.on_primary_account_changed_callbacks.register( + self._update_for_primary_account + ) + ) + # Establish subscriptions/etc. for any current primary account. + self._update_for_primary_account(plus.accounts.primary) + self._have_connectivity = plus.cloud.is_connected() + self._update_for_connectivity_change(self._have_connectivity) + + @override + def on_deactivate(self) -> None: + + classic = babase.app.classic + + # Store latest league vis vals for any active account. + self._save_account_display_state() + + # Stop being informed of account changes. + self._on_primary_account_changed_callback = None + + # Cancel any ui-pause we may have had going. + self._purchase_ui_pause = None + + # Remove anything following any current account. + self._update_for_primary_account(None) + + # Save where we were in the UI so we return there next time. + if classic is not None: + classic.save_ui_state() + + # Let the native layer do its thing. + _baclassic.classic_app_mode_deactivate() + + @override + def on_app_active_changed(self) -> None: + if not babase.app.active: + # If we've gone inactive, bring up the main menu, which has the + # side effect of pausing the action (when possible). + babase.invoke_main_menu() + + # Also store any league vis state for the active account. + # this may be our last chance to do this on mobile. + self._save_account_display_state() + + @override + def on_purchase_process_begin( + self, item_id: str, user_initiated: bool + ) -> None: + + # Do the default thing (announces 'updating account...') + super().on_purchase_process_begin( + item_id=item_id, user_initiated=user_initiated + ) + + # Pause the root ui so stuff like token counts don't change + # automatically, allowing us to animate them. Note that we + # need to explicitly kill this pause if we are deactivated since + # we wouldn't get the on_purchase_process_end() call; the next + # app-mode would. + self._purchase_ui_pause = bauiv1.RootUIUpdatePause() + + # Also grab our last known token count here to plug into animations. + # We need to do this here before the purchase gets submitted so that + # we know we're seeing the old value. + assert babase.app.classic is not None + self._last_tokens_value = babase.app.classic.tokens + + @override + def on_purchase_process_end( + self, item_id: str, user_initiated: bool, applied: bool + ) -> None: + + # Let the UI auto-update again after any animations we may apply + # here. + self._purchase_ui_pause = None + + # Ignore user_initiated; we want to announce newly applied stuff + # even if it was from a different launch or client or whatever. + del user_initiated + + # If the purchase wasn't applied, do nothing. This likely means it + # was redundant or something else harmless. + if not applied: + return + + if item_id.startswith('tokens'): + if item_id == 'tokens1': + tokens = bacommon.bs.TOKENS1_COUNT + tokens_str = str(tokens) + anim_time = 2.0 + elif item_id == 'tokens2': + tokens = bacommon.bs.TOKENS2_COUNT + tokens_str = str(tokens) + anim_time = 2.5 + elif item_id == 'tokens3': + tokens = bacommon.bs.TOKENS3_COUNT + tokens_str = str(tokens) + anim_time = 3.0 + elif item_id == 'tokens4': + tokens = bacommon.bs.TOKENS4_COUNT + tokens_str = str(tokens) + anim_time = 3.5 + else: + tokens = 0 + tokens_str = '???' + anim_time = 2.5 + logging.warning( + 'Unhandled item_id in on_purchase_process_end: %s', item_id + ) + + assert babase.app.classic is not None + effects: list[bacommon.bs.ClientEffect] = [ + bacommon.bs.ClientEffectTokensAnimation( + duration=anim_time, + startvalue=self._last_tokens_value, + endvalue=self._last_tokens_value + tokens, + ), + bacommon.bs.ClientEffectDelay(anim_time), + bacommon.bs.ClientEffectScreenMessage( + message='You got ${COUNT} tokens!', + subs=['${COUNT}', tokens_str], + color=(0, 1, 0), + ), + bacommon.bs.ClientEffectSound( + sound=bacommon.bs.ClientEffectSound.Sound.CASH_REGISTER + ), + ] + babase.app.classic.run_bs_client_effects(effects) + + elif item_id.startswith('gold_pass'): + babase.screenmessage( + babase.Lstr( + translate=('serverResponses', 'You got a ${ITEM}!'), + subs=[ + ( + '${ITEM}', + babase.Lstr(resource='goldPass.goldPassText'), + ) + ], + ), + color=(0, 1, 0), + ) + if babase.asset_loads_allowed(): + babase.getsimplesound('cashRegister').play() + + else: + + # Fallback: simply announce item id. + logging.warning( + 'on_purchase_process_end got unexpected item_id: %s.', item_id + ) + babase.screenmessage( + babase.Lstr( + translate=('serverResponses', 'You got a ${ITEM}!'), + subs=[('${ITEM}', item_id)], + ), + color=(0, 1, 0), + ) + if babase.asset_loads_allowed(): + babase.getsimplesound('cashRegister').play() + + def on_engine_will_reset(self) -> None: + """Called just before classic resets the engine. + + This happens at various times such as session switches. + """ + + self._save_account_display_state() + + def on_engine_did_reset(self) -> None: + """Called just after classic resets the engine. + + This happens at various times such as session switches. + """ + + # Restore any old league vis state we had; this allows the user + # to see animations for league improvements or other changes + # that have occurred since the last time we were visible. + self._restore_account_display_state() + + def _update_for_primary_account( + self, account: babase.AccountV2Handle | None + ) -> None: + """Update subscriptions/etc. for a new primary account state.""" + assert babase.in_logic_thread() + plus = babase.app.plus + + assert plus is not None + + classic = babase.app.classic + assert classic is not None + + if account is not None: + self._current_account_id = account.accountid + babase.set_ui_account_state(True, account.tag) + self._should_restore_account_display_state = True + else: + # If we had an account, save any existing league vis state + # so we'll properly animate to new values the next time we + # sign in. + self._save_account_display_state() + + self._current_account_id = None + babase.set_ui_account_state(False) + self._should_restore_account_display_state = False + + # For testing subscription functionality. + if os.environ.get('BA_SUBSCRIPTION_TEST') == '1': + if account is None: + self._test_sub = None + else: + with account: + self._test_sub = plus.cloud.subscribe_test( + self._on_sub_test_update + ) + else: + self._test_sub = None + + if account is None: + classic.gold_pass = False + classic.tokens = 0 + classic.chest_dock_full = False + classic.remove_ads = False + self._account_data_sub = None + _baclassic.set_root_ui_account_values( + tickets=-1, + tokens=-1, + league_type='', + league_number=-1, + league_rank=-1, + achievements_percent_text='', + level_text='', + xp_text='', + inbox_count=-1, + inbox_count_is_max=False, + inbox_announce_text='', + gold_pass=False, + chest_0_appearance='', + chest_1_appearance='', + chest_2_appearance='', + chest_3_appearance='', + chest_0_create_time=-1.0, + chest_1_create_time=-1.0, + chest_2_create_time=-1.0, + chest_3_create_time=-1.0, + chest_0_unlock_time=-1.0, + chest_1_unlock_time=-1.0, + chest_2_unlock_time=-1.0, + chest_3_unlock_time=-1.0, + chest_0_unlock_tokens=-1, + chest_1_unlock_tokens=-1, + chest_2_unlock_tokens=-1, + chest_3_unlock_tokens=-1, + chest_0_ad_allow_time=-1.0, + chest_1_ad_allow_time=-1.0, + chest_2_ad_allow_time=-1.0, + chest_3_ad_allow_time=-1.0, + ) + self._have_account_values = False + self._update_ui_live_state() + + else: + with account: + self._account_data_sub = ( + plus.cloud.subscribe_classic_account_data( + self._on_classic_account_data_change + ) + ) + + def _update_for_connectivity_change(self, connected: bool) -> None: + """Update when the app's connectivity state changes.""" + self._have_connectivity = connected + self._update_ui_live_state() + + def _update_ui_live_state(self) -> None: + # We want to show ui elements faded if we don't have a live + # connection to the master-server OR if we haven't received a + # set of account values from them yet. If we just plug in raw + # connectivity state here we get UI stuff un-fading a moment or + # two before values appear (since the subscriptions have not + # sent us any values yet) which looks odd. + _baclassic.set_have_live_account_values( + self._have_connectivity and self._have_account_values + ) + + def _on_sub_test_update(self, val: int | None) -> None: + print(f'GOT SUB TEST UPDATE: {val}') + + def _on_classic_account_data_change( + self, val: bacommon.bs.ClassicAccountLiveData + ) -> None: + achp = round(val.achievements / max(val.achievements_total, 1) * 100.0) + # ibc = str(val.inbox_count) + # if val.inbox_count_is_max: + # ibc += '+' + + chest0 = val.chests.get('0') + chest1 = val.chests.get('1') + chest2 = val.chests.get('2') + chest3 = val.chests.get('3') + + # Keep a few handy values on classic updated with the latest + # data. + classic = babase.app.classic + assert classic is not None + classic.remove_ads = val.remove_ads + classic.gold_pass = val.gold_pass + classic.tokens = val.tokens + classic.chest_dock_full = ( + chest0 is not None + and chest1 is not None + and chest2 is not None + and chest3 is not None + ) + + _baclassic.set_root_ui_account_values( + tickets=val.tickets, + tokens=val.tokens, + league_type=( + '' if val.league_type is None else val.league_type.value + ), + league_number=(-1 if val.league_num is None else val.league_num), + league_rank=(-1 if val.league_rank is None else val.league_rank), + achievements_percent_text=f'{achp}%', + level_text=str(val.level), + xp_text=f'{val.xp}/{val.xpmax}', + inbox_count=val.inbox_count, + inbox_count_is_max=val.inbox_count_is_max, + inbox_announce_text=( + babase.Lstr(resource='unclaimedPrizesText').evaluate() + if val.inbox_contains_prize + else '' + ), + gold_pass=val.gold_pass, + chest_0_appearance=( + '' if chest0 is None else chest0.appearance.value + ), + chest_1_appearance=( + '' if chest1 is None else chest1.appearance.value + ), + chest_2_appearance=( + '' if chest2 is None else chest2.appearance.value + ), + chest_3_appearance=( + '' if chest3 is None else chest3.appearance.value + ), + chest_0_create_time=( + -1.0 if chest0 is None else chest0.create_time.timestamp() + ), + chest_1_create_time=( + -1.0 if chest1 is None else chest1.create_time.timestamp() + ), + chest_2_create_time=( + -1.0 if chest2 is None else chest2.create_time.timestamp() + ), + chest_3_create_time=( + -1.0 if chest3 is None else chest3.create_time.timestamp() + ), + chest_0_unlock_time=( + -1.0 if chest0 is None else chest0.unlock_time.timestamp() + ), + chest_1_unlock_time=( + -1.0 if chest1 is None else chest1.unlock_time.timestamp() + ), + chest_2_unlock_time=( + -1.0 if chest2 is None else chest2.unlock_time.timestamp() + ), + chest_3_unlock_time=( + -1.0 if chest3 is None else chest3.unlock_time.timestamp() + ), + chest_0_unlock_tokens=( + -1 if chest0 is None else chest0.unlock_tokens + ), + chest_1_unlock_tokens=( + -1 if chest1 is None else chest1.unlock_tokens + ), + chest_2_unlock_tokens=( + -1 if chest2 is None else chest2.unlock_tokens + ), + chest_3_unlock_tokens=( + -1 if chest3 is None else chest3.unlock_tokens + ), + chest_0_ad_allow_time=( + -1.0 + if chest0 is None or chest0.ad_allow_time is None + else chest0.ad_allow_time.timestamp() + ), + chest_1_ad_allow_time=( + -1.0 + if chest1 is None or chest1.ad_allow_time is None + else chest1.ad_allow_time.timestamp() + ), + chest_2_ad_allow_time=( + -1.0 + if chest2 is None or chest2.ad_allow_time is None + else chest2.ad_allow_time.timestamp() + ), + chest_3_ad_allow_time=( + -1.0 + if chest3 is None or chest3.ad_allow_time is None + else chest3.ad_allow_time.timestamp() + ), + ) + if self._should_restore_account_display_state: + # If we have a previous display-state for this account, + # restore it. This will cause us to animate or otherwise + # display league changes that have occurred since we were + # last visible. Note we need to do this *after* setting real + # vals so there is a current state to animate to. + self._restore_account_display_state() + self._should_restore_account_display_state = False + + # Note that we have values and updated faded state accordingly. + self._have_account_values = True + self._update_ui_live_state() + + def _root_ui_menu_press(self) -> None: + from babase import push_back_press + + ui = babase.app.ui_v1 + + # If *any* main-window is up, kill it and resume play. + old_window = ui.get_main_window() + if old_window is not None: + + classic = babase.app.classic + assert classic is not None + classic.resume() + + ui.clear_main_window() + return + + # Otherwise + push_back_press() + + def _root_ui_account_press(self) -> None: + from bauiv1lib.account.settings import AccountSettingsWindow + + self._auxiliary_window_nav( + win_type=AccountSettingsWindow, + win_create_call=lambda: AccountSettingsWindow( + origin_widget=bauiv1.get_special_widget('account_button') + ), + ) + + def _root_ui_squad_press(self) -> None: + btn = bauiv1.get_special_widget('squad_button') + center = btn.get_screen_space_center() + if bauiv1.app.classic is not None: + bauiv1.app.classic.party_icon_activate(center) + else: + logging.warning('party_icon_activate: no classic.') + + def _root_ui_settings_press(self) -> None: + from bauiv1lib.settings.allsettings import AllSettingsWindow + + self._auxiliary_window_nav( + win_type=AllSettingsWindow, + win_create_call=lambda: AllSettingsWindow( + origin_widget=bauiv1.get_special_widget('settings_button') + ), + ) + + def _auxiliary_window_nav( + self, + win_type: type[bauiv1.MainWindow], + win_create_call: Callable[[], bauiv1.MainWindow], + ) -> None: + """Navigate to or away from an Auxiliary window. + + Auxiliary windows can be thought of as 'side quests' in the + window hierarchy; places such as settings windows or league + ranking windows that the user might want to visit without losing + their place in the regular hierarchy. + """ + # pylint: disable=unidiomatic-typecheck + + ui = babase.app.ui_v1 + + current_main_window = ui.get_main_window() + + # Scan our ancestors for auxiliary states matching our type as + # well as auxiliary states in general. + aux_matching_state: bauiv1.MainWindowState | None = None + aux_state: bauiv1.MainWindowState | None = None + + if current_main_window is None: + raise RuntimeError( + 'Not currently handling no-top-level-window case.' + ) + + state = current_main_window.main_window_back_state + while state is not None: + assert state.window_type is not None + if state.is_auxiliary: + if state.window_type is win_type: + aux_matching_state = state + else: + aux_state = state + + state = state.parent + + # If there's an ancestor auxiliary window-state matching our + # type, back out past it (example: poking settings, navigating + # down a level or two, and then poking settings again should + # back out of settings). + if aux_matching_state is not None: + current_main_window.main_window_back_state = ( + aux_matching_state.parent + ) + current_main_window.main_window_back() + return + + # If there's an ancestory auxiliary state *not* matching our + # type, crop the state and swap in our new auxiliary UI + # (example: poking settings, then poking account, then poking + # back should end up where things were before the settings + # poke). + if aux_state is not None: + # Blow away the window stack and build a fresh one. + ui.clear_main_window() + ui.set_main_window( + win_create_call(), + from_window=False, # Disable from-check. + back_state=aux_state.parent, + suppress_warning=True, + is_auxiliary=True, + ) + return + + # Ok, no auxiliary states found. Now if current window is + # auxiliary and the type matches, simply do a back. + if ( + current_main_window.main_window_is_auxiliary + and type(current_main_window) is win_type + ): + current_main_window.main_window_back() + return + + # If current window is auxiliary but type doesn't match, + # swap it out for our new auxiliary UI. + if current_main_window.main_window_is_auxiliary: + ui.clear_main_window() + ui.set_main_window( + win_create_call(), + from_window=False, # Disable from-check. + back_state=current_main_window.main_window_back_state, + suppress_warning=True, + is_auxiliary=True, + ) + return + + # Ok, no existing auxiliary stuff was found period. Just + # navigate forward to this UI. + current_main_window.main_window_replace( + win_create_call(), is_auxiliary=True + ) + + def _root_ui_achievements_press(self) -> None: + from bauiv1lib.achievements import AchievementsWindow + + if not self._ensure_signed_in_v1(): + return + + wait_for_connectivity( + on_connected=lambda: self._auxiliary_window_nav( + win_type=AchievementsWindow, + win_create_call=lambda: AchievementsWindow( + origin_widget=bauiv1.get_special_widget( + 'achievements_button' + ) + ), + ) + ) + + def _root_ui_inbox_press(self) -> None: + from bauiv1lib.inbox import InboxWindow + + if not self._ensure_signed_in(): + return + + wait_for_connectivity( + on_connected=lambda: self._auxiliary_window_nav( + win_type=InboxWindow, + win_create_call=lambda: InboxWindow( + origin_widget=bauiv1.get_special_widget('inbox_button') + ), + ) + ) + + def _root_ui_store_press(self) -> None: + from bauiv1lib.store.browser import StoreBrowserWindow + + if not self._ensure_signed_in_v1(): + return + + wait_for_connectivity( + on_connected=lambda: self._auxiliary_window_nav( + win_type=StoreBrowserWindow, + win_create_call=lambda: StoreBrowserWindow( + origin_widget=bauiv1.get_special_widget('store_button') + ), + ) + ) + + def _root_ui_tickets_meter_press(self) -> None: + from bauiv1lib.resourcetypeinfo import ResourceTypeInfoWindow + + ResourceTypeInfoWindow( + 'tickets', origin_widget=bauiv1.get_special_widget('tickets_meter') + ) + + def _root_ui_tokens_meter_press(self) -> None: + from bauiv1lib.resourcetypeinfo import ResourceTypeInfoWindow + + ResourceTypeInfoWindow( + 'tokens', origin_widget=bauiv1.get_special_widget('tokens_meter') + ) + + def _root_ui_trophy_meter_press(self) -> None: + from bauiv1lib.league.rankwindow import LeagueRankWindow + + if not self._ensure_signed_in_v1(): + return + + self._auxiliary_window_nav( + win_type=LeagueRankWindow, + win_create_call=lambda: LeagueRankWindow( + origin_widget=bauiv1.get_special_widget('trophy_meter') + ), + ) + + def _root_ui_level_meter_press(self) -> None: + from bauiv1lib.resourcetypeinfo import ResourceTypeInfoWindow + + ResourceTypeInfoWindow( + 'xp', origin_widget=bauiv1.get_special_widget('level_meter') + ) + + def _root_ui_inventory_press(self) -> None: + from bauiv1lib.inventory import InventoryWindow + + if not self._ensure_signed_in_v1(): + return + + self._auxiliary_window_nav( + win_type=InventoryWindow, + win_create_call=lambda: InventoryWindow( + origin_widget=bauiv1.get_special_widget('inventory_button') + ), + ) + + def _ensure_signed_in(self) -> bool: + """Make sure we're signed in (requiring modern v2 accounts).""" + plus = bauiv1.app.plus + if plus is None: + bauiv1.screenmessage('This requires plus.', color=(1, 0, 0)) + bauiv1.getsound('error').play() + return False + if plus.accounts.primary is None: + show_sign_in_prompt() + return False + return True + + def _ensure_signed_in_v1(self) -> bool: + """Make sure we're signed in (allowing legacy v1-only accounts).""" + plus = bauiv1.app.plus + if plus is None: + bauiv1.screenmessage('This requires plus.', color=(1, 0, 0)) + bauiv1.getsound('error').play() + return False + if plus.get_v1_account_state() != 'signed_in': + show_sign_in_prompt() + return False + return True + + def _root_ui_get_tokens_press(self) -> None: + from bauiv1lib.gettokens import GetTokensWindow + + if not self._ensure_signed_in(): + return + + self._auxiliary_window_nav( + win_type=GetTokensWindow, + win_create_call=lambda: GetTokensWindow( + origin_widget=bauiv1.get_special_widget('get_tokens_button') + ), + ) + + def _root_ui_chest_slot_pressed(self, index: int) -> None: + from bauiv1lib.chest import ( + ChestWindow0, + ChestWindow1, + ChestWindow2, + ChestWindow3, + ) + + widgetid: Literal[ + 'chest_0_button', + 'chest_1_button', + 'chest_2_button', + 'chest_3_button', + ] + winclass: type[ChestWindow] + if index == 0: + widgetid = 'chest_0_button' + winclass = ChestWindow0 + elif index == 1: + widgetid = 'chest_1_button' + winclass = ChestWindow1 + elif index == 2: + widgetid = 'chest_2_button' + winclass = ChestWindow2 + elif index == 3: + widgetid = 'chest_3_button' + winclass = ChestWindow3 + else: + raise RuntimeError(f'Invalid index {index}') + + wait_for_connectivity( + on_connected=lambda: self._auxiliary_window_nav( + win_type=winclass, + win_create_call=lambda: winclass( + index=index, + origin_widget=bauiv1.get_special_widget(widgetid), + ), + ) + ) + + def _save_account_display_state(self) -> None: + + # If we currently have an account, save the state of what we're + # currently displaying for it in the root ui/etc. We'll then + # restore that state as a starting point the next time we are + # active. This allows things like league rank changes to be + # properly animated even if they occurred while we were offline + # or while the UI was hidden. + + if self._current_account_id is not None: + vals = _baclassic.get_account_display_state() + if vals is not None: + # Stuff our account id in there and save it to our + # config. + assert 'a' not in vals + vals['a'] = self._current_account_id + cfg = babase.app.config + cfg[self._LEAGUE_VIS_VALS_CONFIG_KEY] = vals + cfg.commit() + + def _restore_account_display_state(self) -> None: + + # If we currently have an account and it matches the + # display-state we have stored in the config, restore the state. + if self._current_account_id is not None: + cfg = babase.app.config + vals = cfg.get(self._LEAGUE_VIS_VALS_CONFIG_KEY) + if isinstance(vals, dict): + valsaccount = vals.get('a') + if ( + isinstance(valsaccount, str) + and valsaccount == self._current_account_id + ): + _baclassic.set_account_display_state(vals) diff --git a/dist/ba_data/python/baclassic/_subsystem.py b/dist/ba_data/python/baclassic/_appsubsystem.py similarity index 70% rename from dist/ba_data/python/baclassic/_subsystem.py rename to dist/ba_data/python/baclassic/_appsubsystem.py index 16611ec..ab57c40 100644 --- a/dist/ba_data/python/baclassic/_subsystem.py +++ b/dist/ba_data/python/baclassic/_appsubsystem.py @@ -3,10 +3,10 @@ """Provides classic app subsystem.""" from __future__ import annotations -from typing import TYPE_CHECKING, override import random import logging import weakref +from typing import TYPE_CHECKING, override, assert_never from efro.dataclassio import dataclass_from_dict import babase @@ -26,15 +26,15 @@ from baclassic import _input if TYPE_CHECKING: from typing import Callable, Any, Sequence + import bacommon.bs from bascenev1lib.actor import spazappearance from bauiv1lib.party import PartyWindow - from baclassic._appdelegate import AppDelegate from baclassic._servermode import ServerController from baclassic._net import MasterServerCallback -class ClassicSubsystem(babase.AppSubsystem): +class ClassicAppSubsystem(babase.AppSubsystem): """Subsystem for classic functionality in the app. The single shared instance of this app can be accessed at @@ -45,7 +45,6 @@ class ClassicSubsystem(babase.AppSubsystem): # pylint: disable=too-many-public-methods - # noinspection PyUnresolvedReferences from baclassic._music import MusicPlayMode def __init__(self) -> None: @@ -72,10 +71,15 @@ class ClassicSubsystem(babase.AppSubsystem): self.stress_test_update_timer: babase.AppTimer | None = None self.stress_test_update_timer_2: babase.AppTimer | None = None self.value_test_defaults: dict = {} - self.special_offer: dict | None = None self.ping_thread_count = 0 self.allow_ticket_purchases: bool = True + # Classic-specific account state. + self.remove_ads = False + self.gold_pass = False + self.tokens = 0 + self.chest_dock_full = False + # Main Menu. self.main_menu_did_initial_transition = False self.main_menu_last_news_fetch_time: float | None = None @@ -93,17 +97,17 @@ class ClassicSubsystem(babase.AppSubsystem): # We include this extra hash with shared input-mapping names so # that we don't share mappings between differently-configured - # systems. For instance, different android devices may give different - # key values for the same controller type so we keep their mappings - # distinct. + # systems. For instance, different android devices may give + # different key values for the same controller type so we keep + # their mappings distinct. self.input_map_hash: str | None = None # Maps. self.maps: dict[str, type[bascenev1.Map]] = {} # Gameplay. - self.teams_series_length = 7 # deprecated, left for old mods - self.ffa_series_length = 24 # deprecated, left for old mods + self.teams_series_length = 7 # Deprecated, left for old mods. + self.ffa_series_length = 24 # Deprecated, left for old mods. self.coop_session_args: dict = {} # UI. @@ -111,8 +115,9 @@ class ClassicSubsystem(babase.AppSubsystem): self.did_menu_intro = False # FIXME: Move to mainmenu class. self.main_menu_window_refresh_check_count = 0 # FIXME: Mv to mainmenu. self.invite_confirm_windows: list[Any] = [] # FIXME: Don't use Any. - self.delegate: AppDelegate | None = None self.party_window: weakref.ref[PartyWindow] | None = None + self.main_menu_resume_callbacks: list = [] + self.saved_ui_state: bauiv1.MainWindowState | None = None # Store. self.store_layout: dict[str, list[dict[str, Any]]] | None = None @@ -120,6 +125,16 @@ class ClassicSubsystem(babase.AppSubsystem): self.pro_sale_start_time: int | None = None self.pro_sale_start_val: int | None = None + def add_main_menu_close_callback(self, call: Callable[[], Any]) -> None: + """(internal)""" + + # If there's no main window up, just call immediately. + if not babase.app.ui_v1.has_main_window(): + with babase.ContextRef.empty(): + call() + else: + self.main_menu_resume_callbacks.append(call) + @property def platform(self) -> str: """Name of the current platform. @@ -154,8 +169,6 @@ class ClassicSubsystem(babase.AppSubsystem): from bascenev1lib.actor import spazappearance from bascenev1lib import maps as stdmaps - from baclassic._appdelegate import AppDelegate - plus = babase.app.plus assert plus is not None @@ -164,34 +177,13 @@ class ClassicSubsystem(babase.AppSubsystem): self.music.on_app_loading() - self.delegate = AppDelegate() - - # Non-test, non-debug builds should generally be blessed; warn if not. - # (so I don't accidentally release a build that can't play tourneys) + # Non-test, non-debug builds should generally be blessed; warn + # if not (so I don't accidentally release a build that can't + # play tourneys). if not env.debug and not env.test and not plus.is_blessed(): babase.screenmessage('WARNING: NON-BLESSED BUILD', color=(1, 0, 0)) - # FIXME: This should not be hard-coded. - for maptype in [ - stdmaps.HockeyStadium, - stdmaps.FootballStadium, - stdmaps.Bridgit, - stdmaps.BigG, - stdmaps.Roundabout, - stdmaps.MonkeyFace, - stdmaps.ZigZag, - stdmaps.ThePad, - stdmaps.DoomShroom, - stdmaps.LakeFrigid, - stdmaps.TipTop, - stdmaps.CragCastle, - stdmaps.TowerD, - stdmaps.HappyThoughts, - stdmaps.StepRightUp, - stdmaps.Courtyard, - stdmaps.Rampage, - ]: - bascenev1.register_map(maptype) + stdmaps.register_all_maps() spazappearance.register_appearances() bascenev1.init_campaigns() @@ -207,24 +199,6 @@ class ClassicSubsystem(babase.AppSubsystem): cfg['launchCount'] = launch_count cfg.commit() - # Run a test in a few seconds to see if we should pop up an existing - # pending special offer. - def check_special_offer() -> None: - assert plus is not None - - from bauiv1lib.specialoffer import show_offer - - if ( - 'pendingSpecialOffer' in cfg - and plus.get_v1_account_public_login_id() - == cfg['pendingSpecialOffer']['a'] - ): - self.special_offer = cfg['pendingSpecialOffer']['o'] - show_offer() - - if babase.app.env.gui: - babase.apptimer(3.0, check_special_offer) - # If there's a leftover log file, attempt to upload it to the # master-server and/or get rid of it. babase.handle_leftover_v1_cloud_log_file() @@ -261,8 +235,8 @@ class ClassicSubsystem(babase.AppSubsystem): from babase import Lstr from bascenev1 import NodeActor - # FIXME: Shouldn't be touching scene stuff here; - # should just pass the request on to the host-session. + # FIXME: Shouldn't be touching scene stuff here; should just + # pass the request on to the host-session. with activity.context: globs = activity.globalsnode if not globs.paused: @@ -289,8 +263,8 @@ class ClassicSubsystem(babase.AppSubsystem): to resume. """ - # FIXME: Shouldn't be touching scene stuff here; - # should just pass the request on to the host-session. + # FIXME: Shouldn't be touching scene stuff here; should just + # pass the request on to the host-session. activity = bascenev1.get_foreground_host_activity() if activity is not None: with activity.context: @@ -340,6 +314,9 @@ class ClassicSubsystem(babase.AppSubsystem): ) return False + # Save where we are in the UI to come back to when done. + babase.app.classic.save_ui_state() + # Ok, we're good to go. self.coop_session_args = { 'campaign': campaignname, @@ -374,24 +351,24 @@ class ClassicSubsystem(babase.AppSubsystem): assert plus is not None if reset_ui: - babase.app.ui_v1.clear_main_menu_window() + babase.app.ui_v1.clear_main_window() if isinstance(bascenev1.get_foreground_host_session(), MainMenuSession): - # It may be possible we're on the main menu but the screen is faded - # so fade back in. + # It may be possible we're on the main menu but the screen + # is faded so fade back in. babase.fade_screen(True) return _benchmark.stop_stress_test() # Stop stress-test if in progress. - # If we're in a host-session, tell them to end. - # This lets them tear themselves down gracefully. + # If we're in a host-session, tell them to end. This lets them + # tear themselves down gracefully. host_session: bascenev1.Session | None = ( bascenev1.get_foreground_host_session() ) if host_session is not None: - # Kick off a little transaction so we'll hopefully have all the - # latest account state when we get back to the menu. + # Kick off a little transaction so we'll hopefully have all + # the latest account state when we get back to the menu. plus.add_v1_account_transaction( {'type': 'END_SESSION', 'sType': str(type(host_session))} ) @@ -408,8 +385,6 @@ class ClassicSubsystem(babase.AppSubsystem): def getmaps(self, playtype: str) -> list[str]: """Return a list of bascenev1.Map types supporting a playtype str. - Category: **Asset Functions** - Maps supporting a given playtype must provide a particular set of features and lend themselves to a certain style of play. @@ -500,7 +475,10 @@ class ClassicSubsystem(babase.AppSubsystem): callback: MasterServerCallback | None = None, response_type: MasterServerResponseType = MasterServerResponseType.JSON, ) -> None: - """Make a call to the master server via a http GET.""" + """Make a call to the master server via a http GET. + + :meta private: + """ MasterServerV1CallThread( request, 'get', data, callback, response_type @@ -513,16 +491,44 @@ class ClassicSubsystem(babase.AppSubsystem): callback: MasterServerCallback | None = None, response_type: MasterServerResponseType = MasterServerResponseType.JSON, ) -> None: - """Make a call to the master server via a http POST.""" + """Make a call to the master server via a http POST. + + :meta private: + """ MasterServerV1CallThread( request, 'post', data, callback, response_type ).start() - def get_tournament_prize_strings(self, entry: dict[str, Any]) -> list[str]: + def set_tournament_prize_image( + self, entry: dict[str, Any], index: int, image: bauiv1.Widget + ) -> None: """Given a tournament entry, return strings for its prize levels.""" from baclassic import _tournament - return _tournament.get_tournament_prize_strings(entry) + return _tournament.set_tournament_prize_chest_image(entry, index, image) + + def create_in_game_tournament_prize_image( + self, + entry: dict[str, Any], + index: int, + position: tuple[float, float], + ) -> None: + """Given a tournament entry, return strings for its prize levels.""" + from baclassic import _tournament + + _tournament.create_in_game_tournament_prize_image( + entry, index, position + ) + + def get_tournament_prize_strings( + self, entry: dict[str, Any], include_tickets: bool + ) -> list[str]: + """Given a tournament entry, return strings for its prize levels.""" + from baclassic import _tournament + + return _tournament.get_tournament_prize_strings( + entry, include_tickets=include_tickets + ) def getcampaign(self, name: str) -> bascenev1.Campaign: """Return a campaign by name.""" @@ -536,26 +542,21 @@ class ClassicSubsystem(babase.AppSubsystem): tip = self.tips.pop() return tip - def run_gpu_benchmark(self) -> None: - """Kick off a benchmark to test gpu speeds.""" - from baclassic._benchmark import run_gpu_benchmark as run - - run() - def run_cpu_benchmark(self) -> None: """Kick off a benchmark to test cpu speeds.""" - from baclassic._benchmark import run_cpu_benchmark as run + from baclassic._benchmark import run_cpu_benchmark - run() + run_cpu_benchmark() def run_media_reload_benchmark(self) -> None: """Kick off a benchmark to test media reloading speeds.""" - from baclassic._benchmark import run_media_reload_benchmark as run + from baclassic._benchmark import run_media_reload_benchmark - run() + run_media_reload_benchmark() def run_stress_test( self, + *, playlist_type: str = 'Random', playlist_name: str = '__default__', player_count: int = 8, @@ -563,9 +564,9 @@ class ClassicSubsystem(babase.AppSubsystem): attract_mode: bool = False, ) -> None: """Run a stress test.""" - from baclassic._benchmark import run_stress_test as run + from baclassic._benchmark import run_stress_test - run( + run_stress_test( playlist_type=playlist_type, playlist_name=playlist_name, player_count=player_count, @@ -684,14 +685,6 @@ class ClassicSubsystem(babase.AppSubsystem): babase.Call(ServerDialogWindow, sddata), ) - def ticket_icon_press(self) -> None: - """(internal)""" - from bauiv1lib.resourcetypeinfo import ResourceTypeInfoWindow - - ResourceTypeInfoWindow( - origin_widget=bauiv1.get_special_widget('tickets_info_button') - ) - def show_url_window(self, address: str) -> None: """(internal)""" from bauiv1lib.url import ShowURLWindow @@ -707,6 +700,7 @@ class ClassicSubsystem(babase.AppSubsystem): def tournament_entry_window( self, tournament_id: str, + *, tournament_activity: bascenev1.Activity | None = None, position: tuple[float, float] = (0.0, 0.0), delegate: Any = None, @@ -733,37 +727,36 @@ class ClassicSubsystem(babase.AppSubsystem): return MainMenuSession - def continues_window( - self, - activity: bascenev1.Activity, - cost: int, - continue_call: Callable[[], Any], - cancel_call: Callable[[], Any], - ) -> None: - """(internal)""" - from bauiv1lib.continues import ContinuesWindow - - ContinuesWindow(activity, cost, continue_call, cancel_call) - def profile_browser_window( self, transition: str = 'in_right', - in_main_menu: bool = True, - selected_profile: str | None = None, origin_widget: bauiv1.Widget | None = None, + selected_profile: str | None = None, ) -> None: """(internal)""" from bauiv1lib.profile.browser import ProfileBrowserWindow - ProfileBrowserWindow( - transition, in_main_menu, selected_profile, origin_widget + main_window = babase.app.ui_v1.get_main_window() + if main_window is not None: + logging.warning( + 'profile_browser_window()' + ' called with existing main window; should not happen.' + ) + return + + babase.app.ui_v1.set_main_window( + ProfileBrowserWindow( + transition=transition, + selected_profile=selected_profile, + origin_widget=origin_widget, + minimal_toolbar=True, + ), + is_top_level=True, + suppress_warning=True, ) def preload_map_preview_media(self) -> None: - """Preload media needed for map preview UIs. - - Category: **Asset Functions** - """ + """Preload media needed for map preview UIs.""" try: bauiv1.getmesh('level_select_button_opaque') bauiv1.getmesh('level_select_button_transparent') @@ -781,6 +774,9 @@ class ClassicSubsystem(babase.AppSubsystem): assert app.env.gui + # Play explicit swish sound so it occurs due to keypresses/etc. + # This means we have to disable it for any button or else we get + # double. bauiv1.getsound('swish').play() # If it exists, dismiss it; otherwise make a new one. @@ -794,18 +790,187 @@ class ClassicSubsystem(babase.AppSubsystem): def device_menu_press(self, device_id: int | None) -> None: """(internal)""" - from bauiv1lib.mainmenu import MainMenuWindow + from bauiv1lib.ingamemenu import InGameMenuWindow from bauiv1 import set_ui_input_device assert babase.app is not None - in_main_menu = babase.app.ui_v1.has_main_menu_window() + in_main_menu = babase.app.ui_v1.has_main_window() if not in_main_menu: set_ui_input_device(device_id) + # Hack(ish). We play swish sound here so it happens for + # device presses, but this means we need to disable default + # swish sounds for any menu buttons or we'll get double. if babase.app.env.gui: bauiv1.getsound('swish').play() - babase.app.ui_v1.set_main_menu_window( - MainMenuWindow().get_root_widget(), - from_window=False, # Disable check here. + # Pause gameplay. + self.pause() + + babase.app.ui_v1.set_main_window( + InGameMenuWindow(), is_top_level=True, suppress_warning=True ) + + def save_ui_state(self) -> None: + """Store our current place in the UI.""" + ui = babase.app.ui_v1 + mainwindow = ui.get_main_window() + if mainwindow is not None: + self.saved_ui_state = ui.save_main_window_state(mainwindow) + else: + self.saved_ui_state = None + + def invoke_main_menu_ui(self) -> None: + """Bring up main menu ui.""" + + # Bring up the last place we were, or start at the main menu + # otherwise. + app = bauiv1.app + env = app.env + with bascenev1.ContextRef.empty(): + + assert app.classic is not None + if app.env.headless: + # UI stuff fails now in headless builds; avoid it. + pass + else: + + # When coming back from a kiosk-mode game, jump to the + # kiosk start screen. + if env.demo or env.arcade: + # pylint: disable=cyclic-import + from bauiv1lib.kiosk import KioskWindow + + app.ui_v1.set_main_window( + KioskWindow(), is_top_level=True, suppress_warning=True + ) + else: + # If there's a saved ui state, restore that. + if self.saved_ui_state is not None: + app.ui_v1.restore_main_window_state(self.saved_ui_state) + else: + # Otherwise start fresh at the main menu. + from bauiv1lib.mainmenu import MainMenuWindow + + app.ui_v1.set_main_window( + MainMenuWindow(transition=None), + is_top_level=True, + suppress_warning=True, + ) + + @staticmethod + def run_bs_client_effects( + effects: list[bacommon.bs.ClientEffect], delay: float = 0.0 + ) -> None: + """Run client effects sent from the master server.""" + from baclassic._clienteffect import run_bs_client_effects + + run_bs_client_effects(effects, delay=delay) + + @staticmethod + def basic_client_ui_button_label_str( + label: bacommon.bs.BasicClientUI.ButtonLabel, + ) -> babase.Lstr: + """Given a client-ui label, return an Lstr.""" + import bacommon.bs + + cls = bacommon.bs.BasicClientUI.ButtonLabel + if label is cls.UNKNOWN: + # Server should not be sending us unknown stuff; make noise + # if they do. + logging.error( + 'Got BasicClientUI.ButtonLabel.UNKNOWN; should not happen.' + ) + return babase.Lstr(value='') + + rsrc: str | None = None + if label is cls.OK: + rsrc = 'okText' + elif label is cls.APPLY: + rsrc = 'applyText' + elif label is cls.CANCEL: + rsrc = 'cancelText' + elif label is cls.ACCEPT: + rsrc = 'gatherWindow.partyInviteAcceptText' + elif label is cls.DECLINE: + rsrc = 'gatherWindow.partyInviteDeclineText' + elif label is cls.IGNORE: + rsrc = 'gatherWindow.partyInviteIgnoreText' + elif label is cls.CLAIM: + rsrc = 'claimText' + elif label is cls.DISCARD: + rsrc = 'discardText' + else: + assert_never(label) + + return babase.Lstr(resource=rsrc) + + def required_purchases_for_game(self, game: str) -> list[str]: + """Return which purchase (if any) is required for a game.""" + # pylint: disable=too-many-return-statements + + if game in ( + 'Challenges:Infinite Runaround', + 'Challenges:Tournament Infinite Runaround', + ): + # Special case: Pro used to unlock this. + return ( + [] + if self.accounts.have_pro() + else ['upgrades.infinite_runaround'] + ) + if game in ( + 'Challenges:Infinite Onslaught', + 'Challenges:Tournament Infinite Onslaught', + ): + # Special case: Pro used to unlock this. + return ( + [] + if self.accounts.have_pro() + else ['upgrades.infinite_onslaught'] + ) + if game in ( + 'Challenges:Meteor Shower', + 'Challenges:Epic Meteor Shower', + ): + return ['games.meteor_shower'] + + if game in ( + 'Challenges:Target Practice', + 'Challenges:Target Practice B', + ): + return ['games.target_practice'] + + if game in ( + 'Challenges:Ninja Fight', + 'Challenges:Pro Ninja Fight', + ): + return ['games.ninja_fight'] + + if game in ('Challenges:Race', 'Challenges:Pro Race'): + return ['games.race'] + + if game in ('Challenges:Lake Frigid Race',): + return ['games.race', 'maps.lake_frigid'] + + if game in ( + 'Challenges:Easter Egg Hunt', + 'Challenges:Pro Easter Egg Hunt', + ): + return ['games.easter_egg_hunt'] + + return [] + + def is_game_unlocked(self, game: str) -> bool: + """Is a particular game unlocked?""" + plus = babase.app.plus + assert plus is not None + + purchases = self.required_purchases_for_game(game) + if not purchases: + return True + + for purchase in purchases: + if not plus.get_v1_account_product_purchased(purchase): + return False + return True diff --git a/dist/ba_data/python/baclassic/_benchmark.py b/dist/ba_data/python/baclassic/_benchmark.py index 0c25f59..b110e25 100644 --- a/dist/ba_data/python/baclassic/_benchmark.py +++ b/dist/ba_data/python/baclassic/_benchmark.py @@ -20,11 +20,14 @@ def run_cpu_benchmark() -> None: # pylint: disable=cyclic-import from bascenev1lib import tutorial + # Save our UI state that we'll return to when done. + if babase.app.classic is not None: + babase.app.classic.save_ui_state() + class BenchmarkSession(bascenev1.Session): """Session type for cpu benchmark.""" def __init__(self) -> None: - # print('FIXME: BENCHMARK SESSION WOULD CALC DEPS.') depsets: Sequence[bascenev1.DependencySet] = [] super().__init__(depsets) @@ -99,7 +102,9 @@ def _start_stress_test(args: _StressTestArgs) -> None: """(internal)""" from bascenev1 import DualTeamSession, FreeForAllSession - assert babase.app.classic is not None + classic = babase.app.classic + + assert classic is not None appconfig = babase.app.config playlist_type = args.playlist_type @@ -116,6 +121,10 @@ def _start_stress_test(args: _StressTestArgs) -> None: + args.playlist_name + '")...' ) + + # Save where we are in the UI so we'll return there when done. + classic.save_ui_state() + if playlist_type == 'Teams': appconfig['Team Tournament Playlist Selection'] = args.playlist_name appconfig['Team Tournament Playlist Randomize'] = 1 @@ -137,11 +146,11 @@ def _start_stress_test(args: _StressTestArgs) -> None: ), ) _baclassic.set_stress_testing(True, args.player_count, args.attract_mode) - babase.app.classic.stress_test_update_timer = babase.AppTimer( + classic.stress_test_update_timer = babase.AppTimer( args.round_duration, babase.Call(_reset_stress_test, args) ) if args.attract_mode: - babase.app.classic.stress_test_update_timer_2 = babase.AppTimer( + classic.stress_test_update_timer_2 = babase.AppTimer( 0.48, babase.Call(_update_attract_mode_test, args), repeat=True ) @@ -170,12 +179,6 @@ def _reset_stress_test(args: _StressTestArgs) -> None: babase.apptimer(1.0, babase.Call(_start_stress_test, args)) -def run_gpu_benchmark() -> None: - """Kick off a benchmark to test gpu speeds.""" - # FIXME: Not wired up yet. - babase.screenmessage('Not wired up yet.', color=(1, 0, 0)) - - def run_media_reload_benchmark() -> None: """Kick off a benchmark to test media reloading speeds.""" babase.reload_media() @@ -199,6 +202,6 @@ def run_media_reload_benchmark() -> None: babase.add_clean_frame_callback(babase.Call(doit, start_time)) - # The reload starts (should add a completion callback to the - # reload func to fix this). + # The reload starts (should add a completion callback to the reload + # func to fix this). babase.apptimer(0.05, babase.Call(delay_add, babase.apptime())) diff --git a/dist/ba_data/python/baclassic/_chest.py b/dist/ba_data/python/baclassic/_chest.py new file mode 100644 index 0000000..b5e18ce --- /dev/null +++ b/dist/ba_data/python/baclassic/_chest.py @@ -0,0 +1,91 @@ +# Released under the MIT License. See LICENSE for details. +# +"""Chest related functionality.""" +from __future__ import annotations + +from dataclasses import dataclass +from typing import TYPE_CHECKING + +from bacommon.bs import ClassicChestAppearance + +if TYPE_CHECKING: + pass + + +@dataclass +class ChestAppearanceDisplayInfo: + """Info about how to locally display chest appearances.""" + + # NOTE TO SELF: Don't rename these attrs; the C++ layer is hard + # coded to look for them. + + texclosed: str + texclosedtint: str + texopen: str + texopentint: str + color: tuple[float, float, float] + tint: tuple[float, float, float] + tint2: tuple[float, float, float] + + +# Info for chest types we know how to draw. Anything not found in here +# should fall back to the DEFAULT entry. +CHEST_APPEARANCE_DISPLAY_INFO_DEFAULT = ChestAppearanceDisplayInfo( + texclosed='chestIcon', + texclosedtint='chestIconTint', + texopen='chestOpenIcon', + texopentint='chestOpenIconTint', + color=(1, 1, 1), + tint=(1, 1, 1), + tint2=(1, 1, 1), +) + +CHEST_APPEARANCE_DISPLAY_INFOS: dict[ + ClassicChestAppearance, ChestAppearanceDisplayInfo +] = { + ClassicChestAppearance.L2: ChestAppearanceDisplayInfo( + texclosed='chestIcon', + texclosedtint='chestIconTint', + texopen='chestOpenIcon', + texopentint='chestOpenIconTint', + color=(0.8, 1.0, 0.93), + tint=(0.65, 1.0, 0.8), + tint2=(0.65, 1.0, 0.8), + ), + ClassicChestAppearance.L3: ChestAppearanceDisplayInfo( + texclosed='chestIcon', + texclosedtint='chestIconTint', + texopen='chestOpenIcon', + texopentint='chestOpenIconTint', + color=(0.75, 0.9, 1.3), + tint=(0.7, 1, 1.9), + tint2=(0.7, 1, 1.9), + ), + ClassicChestAppearance.L4: ChestAppearanceDisplayInfo( + texclosed='chestIcon', + texclosedtint='chestIconTint', + texopen='chestOpenIcon', + texopentint='chestOpenIconTint', + color=(0.7, 1.0, 1.4), + tint=(1.4, 1.6, 2.0), + tint2=(1.4, 1.6, 2.0), + ), + ClassicChestAppearance.L5: ChestAppearanceDisplayInfo( + texclosed='chestIcon', + texclosedtint='chestIconTint', + texopen='chestOpenIcon', + texopentint='chestOpenIconTint', + color=(0.75, 0.5, 2.4), + tint=(1.0, 0.8, 0.0), + tint2=(1.0, 0.8, 0.0), + ), + ClassicChestAppearance.L6: ChestAppearanceDisplayInfo( + texclosed='chestIcon', + texclosedtint='chestIconTint', + texopen='chestOpenIcon', + texopentint='chestOpenIconTint', + color=(1.1, 0.8, 0.0), + tint=(2, 2, 2), + tint2=(2, 2, 2), + ), +} diff --git a/dist/ba_data/python/baclassic/_clienteffect.py b/dist/ba_data/python/baclassic/_clienteffect.py new file mode 100644 index 0000000..50e3be7 --- /dev/null +++ b/dist/ba_data/python/baclassic/_clienteffect.py @@ -0,0 +1,135 @@ +# Released under the MIT License. See LICENSE for details. +# +"""Functionality related to running client-effects from the master server.""" + +from __future__ import annotations + +import logging +from typing import TYPE_CHECKING, assert_never + +from efro.util import strict_partial + +import bacommon.bs +import bauiv1 + +import _baclassic + +if TYPE_CHECKING: + pass + + +def run_bs_client_effects( + effects: list[bacommon.bs.ClientEffect], delay: float = 0.0 +) -> None: + """Run effects.""" + # pylint: disable=too-many-branches + from bacommon.bs import ClientEffectTypeID + + for effect in effects: + effecttype = effect.get_type_id() + if effecttype is ClientEffectTypeID.SCREEN_MESSAGE: + assert isinstance(effect, bacommon.bs.ClientEffectScreenMessage) + textfin = bauiv1.Lstr( + translate=('serverResponses', effect.message) + ).evaluate() + if effect.subs is not None: + # Should always be even. + assert len(effect.subs) % 2 == 0 + for j in range(0, len(effect.subs) - 1, 2): + textfin = textfin.replace( + effect.subs[j], + effect.subs[j + 1], + ) + bauiv1.apptimer( + delay, + strict_partial( + bauiv1.screenmessage, textfin, color=effect.color + ), + ) + + elif effecttype is ClientEffectTypeID.SOUND: + assert isinstance(effect, bacommon.bs.ClientEffectSound) + smcls = bacommon.bs.ClientEffectSound.Sound + soundfile: str | None = None + if effect.sound is smcls.UNKNOWN: + # Server should avoid sending us sounds we don't + # support. Make some noise if it happens. + logging.error('Got unrecognized bacommon.bs.ClientEffectSound.') + elif effect.sound is smcls.CASH_REGISTER: + soundfile = 'cashRegister' + elif effect.sound is smcls.ERROR: + soundfile = 'error' + elif effect.sound is smcls.POWER_DOWN: + soundfile = 'powerdown01' + elif effect.sound is smcls.GUN_COCKING: + soundfile = 'gunCocking' + else: + assert_never(effect.sound) + if soundfile is not None: + bauiv1.apptimer( + delay, + strict_partial( + bauiv1.getsound(soundfile).play, volume=effect.volume + ), + ) + + elif effecttype is ClientEffectTypeID.DELAY: + assert isinstance(effect, bacommon.bs.ClientEffectDelay) + delay += effect.seconds + + elif effecttype is ClientEffectTypeID.CHEST_WAIT_TIME_ANIMATION: + assert isinstance( + effect, bacommon.bs.ClientEffectChestWaitTimeAnimation + ) + bauiv1.apptimer( + delay, + strict_partial( + _baclassic.animate_root_ui_chest_unlock_time, + chestid=effect.chestid, + duration=effect.duration, + startvalue=effect.startvalue.timestamp(), + endvalue=effect.endvalue.timestamp(), + ), + ) + + elif effecttype is ClientEffectTypeID.TICKETS_ANIMATION: + assert isinstance(effect, bacommon.bs.ClientEffectTicketsAnimation) + bauiv1.apptimer( + delay, + strict_partial( + _baclassic.animate_root_ui_tickets, + duration=effect.duration, + startvalue=effect.startvalue, + endvalue=effect.endvalue, + ), + ) + + elif effecttype is ClientEffectTypeID.TOKENS_ANIMATION: + assert isinstance(effect, bacommon.bs.ClientEffectTokensAnimation) + bauiv1.apptimer( + delay, + strict_partial( + _baclassic.animate_root_ui_tokens, + duration=effect.duration, + startvalue=effect.startvalue, + endvalue=effect.endvalue, + ), + ) + + elif effecttype is ClientEffectTypeID.UNKNOWN: + # Server should not send us stuff we can't digest. Make + # some noise if it happens. + logging.error( + 'Got unrecognized bacommon.bs.ClientEffect;' + ' should not happen.' + ) + + else: + # For type-checking purposes to remind us to implement new + # types; should this this in real life. + assert_never(effecttype) + + # Lastly, put a pause on root ui auto-updates so that everything we + # just scheduled is free to muck with it freely. + bauiv1.root_ui_pause_updates() + bauiv1.apptimer(delay + 0.25, bauiv1.root_ui_resume_updates) diff --git a/dist/ba_data/python/baclassic/_displayitem.py b/dist/ba_data/python/baclassic/_displayitem.py new file mode 100644 index 0000000..da8215c --- /dev/null +++ b/dist/ba_data/python/baclassic/_displayitem.py @@ -0,0 +1,109 @@ +# Released under the MIT License. See LICENSE for details. +# +"""Display-item related functionality.""" +from __future__ import annotations + +from typing import TYPE_CHECKING + +from efro.util import pairs_from_flat +import bacommon.bs +import bauiv1 + + +if TYPE_CHECKING: + pass + + +def show_display_item( + itemwrapper: bacommon.bs.DisplayItemWrapper, + parent: bauiv1.Widget, + pos: tuple[float, float], + width: float, +) -> None: + """Create ui to depict a display-item.""" + + height = width * 0.666 + + # Silent no-op if our parent ui is dead. + if not parent: + return + + img: str | None = None + img_y_offs = 0.0 + text_y_offs = 0.0 + show_text = True + + if isinstance(itemwrapper.item, bacommon.bs.TicketsDisplayItem): + img = 'tickets' + img_y_offs = width * 0.11 + text_y_offs = width * -0.15 + elif isinstance(itemwrapper.item, bacommon.bs.TokensDisplayItem): + img = 'coin' + img_y_offs = width * 0.11 + text_y_offs = width * -0.15 + elif isinstance(itemwrapper.item, bacommon.bs.ChestDisplayItem): + from baclassic._chest import ( + CHEST_APPEARANCE_DISPLAY_INFOS, + CHEST_APPEARANCE_DISPLAY_INFO_DEFAULT, + ) + + img = None + show_text = False + c_info = CHEST_APPEARANCE_DISPLAY_INFOS.get( + itemwrapper.item.appearance, CHEST_APPEARANCE_DISPLAY_INFO_DEFAULT + ) + c_size = width * 0.85 + bauiv1.imagewidget( + parent=parent, + position=(pos[0] - c_size * 0.5, pos[1] - c_size * 0.5), + color=c_info.color, + size=(c_size, c_size), + texture=bauiv1.gettexture(c_info.texclosed), + tint_texture=bauiv1.gettexture(c_info.texclosedtint), + tint_color=c_info.tint, + tint2_color=c_info.tint2, + ) + + # Enable this for testing spacing. + if bool(False): + bauiv1.imagewidget( + parent=parent, + position=( + pos[0] - width * 0.5, + pos[1] - height * 0.5, + ), + size=(width, height), + texture=bauiv1.gettexture('white'), + color=(0, 1, 0), + opacity=0.1, + ) + + imgsize = width * 0.33 + if img is not None: + bauiv1.imagewidget( + parent=parent, + position=( + pos[0] - imgsize * 0.5, + pos[1] + img_y_offs - imgsize * 0.5, + ), + size=(imgsize, imgsize), + texture=bauiv1.gettexture(img), + ) + if show_text: + subs = itemwrapper.description_subs + if subs is None: + subs = [] + bauiv1.textwidget( + parent=parent, + position=(pos[0], pos[1] + text_y_offs), + scale=width * 0.006, + size=(0, 0), + text=bauiv1.Lstr( + translate=('displayItemNames', itemwrapper.description), + subs=pairs_from_flat(subs), + ), + maxwidth=width * 0.9, + color=(0.0, 1.0, 0.0), + h_align='center', + v_align='center', + ) diff --git a/dist/ba_data/python/baclassic/_hooks.py b/dist/ba_data/python/baclassic/_hooks.py new file mode 100644 index 0000000..236d9b5 --- /dev/null +++ b/dist/ba_data/python/baclassic/_hooks.py @@ -0,0 +1,38 @@ +# Released under the MIT License. See LICENSE for details. +# +"""Hooks for C++ layer to use for ClassicAppMode.""" +from __future__ import annotations + +import logging + +import babase + + +def on_engine_will_reset() -> None: + """Called just before classic resets the engine.""" + from baclassic._appmode import ClassicAppMode + + appmode = babase.app.mode + + # Just pass this along to our mode instance for handling. + if isinstance(appmode, ClassicAppMode): + appmode.on_engine_will_reset() + else: + logging.error( + 'on_engine_will_reset called without ClassicAppMode active.' + ) + + +def on_engine_did_reset() -> None: + """Called just after classic resets the engine.""" + from baclassic._appmode import ClassicAppMode + + appmode = babase.app.mode + + # Just pass this along to our mode instance for handling. + if isinstance(appmode, ClassicAppMode): + appmode.on_engine_did_reset() + else: + logging.error( + 'on_engine_did_reset called without ClassicAppMode active.' + ) diff --git a/dist/ba_data/python/baclassic/_music.py b/dist/ba_data/python/baclassic/_music.py index 8f439d7..5d63316 100644 --- a/dist/ba_data/python/baclassic/_music.py +++ b/dist/ba_data/python/baclassic/_music.py @@ -16,12 +16,11 @@ from bascenev1 import MusicType if TYPE_CHECKING: from typing import Callable, Any + import bauiv1 + class MusicPlayMode(Enum): - """Influences behavior when playing music. - - Category: **Enums** - """ + """Influences behavior when playing music.""" REGULAR = 'regular' TEST = 'test' @@ -29,10 +28,7 @@ class MusicPlayMode(Enum): @dataclass class AssetSoundtrackEntry: - """A music entry using an internal asset. - - Category: **App Classes** - """ + """A music entry using an internal asset.""" assetname: str volume: float = 1.0 @@ -79,8 +75,6 @@ ASSET_SOUNDTRACK_ENTRIES: dict[MusicType, AssetSoundtrackEntry] = { class MusicSubsystem: """Subsystem for music playback in the app. - Category: **App Classes** - Access the single shared instance of this class at 'ba.app.music'. """ @@ -372,8 +366,6 @@ class MusicSubsystem: class MusicPlayer: """Wrangles soundtrack music playback. - Category: **App Classes** - Music can be played either through the game itself or via a platform-specific external player. """ @@ -389,7 +381,7 @@ class MusicPlayer: callback: Callable[[Any], None], current_entry: Any, selection_target_name: str, - ) -> Any: + ) -> bauiv1.MainWindow: """Summons a UI to select a new soundtrack entry.""" return self.on_select_entry( callback, current_entry, selection_target_name @@ -432,11 +424,12 @@ class MusicPlayer: callback: Callable[[Any], None], current_entry: Any, selection_target_name: str, - ) -> Any: + ) -> bauiv1.MainWindow: """Present a GUI to select an entry. The callback should be called with a valid entry or None to signify that the default soundtrack should be used..""" + raise NotImplementedError() # Subclasses should override the following: diff --git a/dist/ba_data/python/baclassic/_net.py b/dist/ba_data/python/baclassic/_net.py index 359c442..7678661 100644 --- a/dist/ba_data/python/baclassic/_net.py +++ b/dist/ba_data/python/baclassic/_net.py @@ -35,6 +35,8 @@ class MasterServerV1CallThread(threading.Thread): callback: MasterServerCallback | None, response_type: MasterServerResponseType, ): + # pylint: disable=too-many-positional-arguments + # Set daemon=True so long-running requests don't keep us from # quitting the app. super().__init__(daemon=True) @@ -52,8 +54,9 @@ class MasterServerV1CallThread(threading.Thread): self._activity = weakref.ref(activity) if activity is not None else None def _run_callback(self, arg: None | dict[str, Any]) -> None: - # If we were created in an activity context and that activity has - # since died, do nothing. + # If we were created in an activity context and that activity + # has since died, do nothing. + # FIXME: Should we just be using a ContextCall instead of doing # this check manually? if self._activity is not None: @@ -93,7 +96,7 @@ class MasterServerV1CallThread(threading.Thread): try: classic = babase.app.classic assert classic is not None - self._data = babase.utf8_all(self._data) + self._data = _utf8_all(self._data) babase.set_thread_name('BA_ServerCallThread') if self._request_type == 'get': msaddr = plus.get_master_server_address() @@ -161,3 +164,19 @@ class MasterServerV1CallThread(threading.Thread): babase.Call(self._run_callback, response_data), from_other_thread=True, ) + + +def _utf8_all(data: Any) -> Any: + """Convert any unicode data in provided sequence(s) to utf8 bytes.""" + if isinstance(data, dict): + return dict( + (_utf8_all(key), _utf8_all(value)) + for key, value in list(data.items()) + ) + if isinstance(data, list): + return [_utf8_all(element) for element in data] + if isinstance(data, tuple): + return tuple(_utf8_all(element) for element in data) + if isinstance(data, str): + return data.encode('utf-8', errors='ignore') + return data diff --git a/dist/ba_data/python/baclassic/_servermode.py b/dist/ba_data/python/baclassic/_servermode.py index a9ce949..f21b6a1 100644 --- a/dist/ba_data/python/baclassic/_servermode.py +++ b/dist/ba_data/python/baclassic/_servermode.py @@ -87,10 +87,7 @@ def _cmd(command_data: bytes) -> None: class ServerController: - """Overall controller for the app in server mode. - - Category: **App Classes** - """ + """Overall controller for the app in server mode.""" def __init__(self, config: ServerConfig) -> None: self._config = config diff --git a/dist/ba_data/python/baclassic/_store.py b/dist/ba_data/python/baclassic/_store.py index f469012..4b15a84 100644 --- a/dist/ba_data/python/baclassic/_store.py +++ b/dist/ba_data/python/baclassic/_store.py @@ -26,6 +26,7 @@ class StoreSubsystem: def get_store_item_name_translated(self, item_name: str) -> babase.Lstr: """Return a babase.Lstr for a store item name.""" # pylint: disable=cyclic-import + # pylint: disable=too-many-return-statements item_info = self.get_store_item(item_name) if item_name.startswith('characters.'): return babase.Lstr( @@ -46,6 +47,14 @@ class StoreSubsystem: return gametype.get_display_string() if item_name.startswith('icons.'): return babase.Lstr(resource='editProfileWindow.iconText') + if item_name == 'upgrades.infinite_runaround': + return babase.Lstr( + translate=('coopLevelNames', 'Infinite Runaround') + ) + if item_name == 'upgrades.infinite_onslaught': + return babase.Lstr( + translate=('coopLevelNames', 'Infinite Onslaught') + ) raise ValueError('unrecognized item: ' + item_name) def get_store_item_display_size( @@ -81,14 +90,17 @@ class StoreSubsystem: assert babase.app.classic is not None if babase.app.classic.store_items is None: - from bascenev1lib.game import ninjafight - from bascenev1lib.game import meteorshower - from bascenev1lib.game import targetpractice - from bascenev1lib.game import easteregghunt + from bascenev1lib.game.race import RaceGame + from bascenev1lib.game.ninjafight import NinjaFightGame + from bascenev1lib.game.meteorshower import MeteorShowerGame + from bascenev1lib.game.targetpractice import TargetPracticeGame + from bascenev1lib.game.easteregghunt import EasterEggHuntGame # IMPORTANT - need to keep this synced with the master server. # (doing so manually for now) babase.app.classic.store_items = { + 'upgrades.infinite_runaround': {}, + 'upgrades.infinite_onslaught': {}, 'characters.kronk': {'character': 'Kronk'}, 'characters.zoe': {'character': 'Zoe'}, 'characters.jackmorgan': {'character': 'Jack Morgan'}, @@ -111,20 +123,28 @@ class StoreSubsystem: 'merch': {}, 'pro': {}, 'maps.lake_frigid': {'map_type': maps.LakeFrigid}, + 'games.race': { + 'gametype': RaceGame, + 'previewTex': 'bigGPreview', + }, 'games.ninja_fight': { - 'gametype': ninjafight.NinjaFightGame, + 'gametype': NinjaFightGame, 'previewTex': 'courtyardPreview', }, 'games.meteor_shower': { - 'gametype': meteorshower.MeteorShowerGame, + 'gametype': MeteorShowerGame, + 'previewTex': 'rampagePreview', + }, + 'games.infinite_onslaught': { + 'gametype': MeteorShowerGame, 'previewTex': 'rampagePreview', }, 'games.target_practice': { - 'gametype': targetpractice.TargetPracticeGame, + 'gametype': TargetPracticeGame, 'previewTex': 'doomShroomPreview', }, 'games.easter_egg_hunt': { - 'gametype': easteregghunt.EasterEggHuntGame, + 'gametype': EasterEggHuntGame, 'previewTex': 'towerDPreview', }, 'icons.flag_us': { @@ -365,9 +385,12 @@ class StoreSubsystem: store_layout['minigames'] = [ { 'items': [ + 'games.race', 'games.ninja_fight', 'games.meteor_shower', 'games.target_practice', + 'upgrades.infinite_onslaught', + 'upgrades.infinite_runaround', ] } ] @@ -446,8 +469,9 @@ class StoreSubsystem: 'price.' + item, None ) if ticket_cost is not None: - if our_tickets >= ticket_cost and not plus.get_purchased( - item + if ( + our_tickets >= ticket_cost + and not plus.get_v1_account_product_purchased(item) ): count += 1 return count @@ -522,7 +546,7 @@ class StoreSubsystem: for section in store_layout[tab]: for item in section['items']: if item in sales_raw: - if not plus.get_purchased(item): + if not plus.get_v1_account_product_purchased(item): to_end = ( datetime.datetime.fromtimestamp( sales_raw[item]['e'], datetime.UTC @@ -541,16 +565,16 @@ class StoreSubsystem: return None def get_unowned_maps(self) -> list[str]: - """Return the list of local maps not owned by the current account. - - Category: **Asset Functions** - """ + """Return the list of local maps not owned by the current account.""" plus = babase.app.plus unowned_maps: set[str] = set() if babase.app.env.gui: for map_section in self.get_store_layout()['maps']: for mapitem in map_section['items']: - if plus is None or not plus.get_purchased(mapitem): + if ( + plus is None + or not plus.get_v1_account_product_purchased(mapitem) + ): m_info = self.get_store_item(mapitem) unowned_maps.add(m_info['map_type'].name) return sorted(unowned_maps) @@ -563,7 +587,14 @@ class StoreSubsystem: if babase.app.env.gui: for section in self.get_store_layout()['minigames']: for mname in section['items']: - if plus is None or not plus.get_purchased(mname): + if mname.startswith('upgrades.'): + # Ignore things like infinite onslaught which + # aren't actually game types. + continue + if ( + plus is None + or not plus.get_v1_account_product_purchased(mname) + ): m_info = self.get_store_item(mname) unowned_games.add(m_info['gametype']) return unowned_games diff --git a/dist/ba_data/python/baclassic/_tournament.py b/dist/ba_data/python/baclassic/_tournament.py index 242ba52..e71d960 100644 --- a/dist/ba_data/python/baclassic/_tournament.py +++ b/dist/ba_data/python/baclassic/_tournament.py @@ -6,13 +6,23 @@ from __future__ import annotations from typing import TYPE_CHECKING +from bacommon.bs import ClassicChestAppearance import babase +import bauiv1 +import bascenev1 + +from baclassic._chest import ( + CHEST_APPEARANCE_DISPLAY_INFOS, + CHEST_APPEARANCE_DISPLAY_INFO_DEFAULT, +) if TYPE_CHECKING: from typing import Any -def get_tournament_prize_strings(entry: dict[str, Any]) -> list[str]: +def get_tournament_prize_strings( + entry: dict[str, Any], include_tickets: bool +) -> list[str]: """Given a tournament entry, return strings for its prize levels.""" # pylint: disable=too-many-locals from bascenev1 import get_trophy_string @@ -27,7 +37,7 @@ def get_tournament_prize_strings(entry: dict[str, Any]) -> list[str]: trophy_type_2 = entry.get('prizeTrophy2') trophy_type_3 = entry.get('prizeTrophy3') out_vals = [] - for rng, prize, trophy_type in ( + for rng, ticket_prize, trophy_type in ( (range1, prize1, trophy_type_1), (range2, prize2, trophy_type_2), (range3, prize3, trophy_type_3), @@ -45,14 +55,100 @@ def get_tournament_prize_strings(entry: dict[str, Any]) -> list[str]: if trophy_type is not None: pvval += get_trophy_string(trophy_type) - # If we've got trophies but not for this entry, throw some space - # in to compensate so the ticket counts line up. - if prize is not None: + if ticket_prize is not None and include_tickets: pvval = ( babase.charstr(babase.SpecialChar.TICKET_BACKING) - + str(prize) + + str(ticket_prize) + pvval ) out_vals.append(prval) out_vals.append(pvval) return out_vals + + +def set_tournament_prize_chest_image( + entry: dict[str, Any], index: int, image: bauiv1.Widget +) -> None: + """Set image attrs representing a tourney prize chest.""" + ranges = [ + entry.get('prizeRange1'), + entry.get('prizeRange2'), + entry.get('prizeRange3'), + ] + chests = [ + entry.get('prizeChest1'), + entry.get('prizeChest2'), + entry.get('prizeChest3'), + ] + + assert 0 <= index < 3 + + # If tourney doesn't include this prize, just hide the image. + if ranges[index] is None: + bauiv1.imagewidget(edit=image, opacity=0.0) + return + + try: + appearance = ClassicChestAppearance(chests[index]) + except ValueError: + appearance = ClassicChestAppearance.DEFAULT + chestdisplayinfo = CHEST_APPEARANCE_DISPLAY_INFOS.get( + appearance, CHEST_APPEARANCE_DISPLAY_INFO_DEFAULT + ) + bauiv1.imagewidget( + edit=image, + opacity=1.0, + color=chestdisplayinfo.color, + texture=bauiv1.gettexture(chestdisplayinfo.texclosed), + tint_texture=bauiv1.gettexture(chestdisplayinfo.texclosedtint), + tint_color=chestdisplayinfo.tint, + tint2_color=chestdisplayinfo.tint2, + ) + + +def create_in_game_tournament_prize_image( + entry: dict[str, Any], index: int, position: tuple[float, float] +) -> None: + """Create a display for the prize chest (if any) in-game.""" + from bascenev1lib.actor.image import Image + + ranges = [ + entry.get('prizeRange1'), + entry.get('prizeRange2'), + entry.get('prizeRange3'), + ] + chests = [ + entry.get('prizeChest1'), + entry.get('prizeChest2'), + entry.get('prizeChest3'), + ] + + # If tourney doesn't include this prize, no-op. + if ranges[index] is None: + return + + try: + appearance = ClassicChestAppearance(chests[index]) + except ValueError: + appearance = ClassicChestAppearance.DEFAULT + chestdisplayinfo = CHEST_APPEARANCE_DISPLAY_INFOS.get( + appearance, CHEST_APPEARANCE_DISPLAY_INFO_DEFAULT + ) + Image( + # Provide magical extended dict version of texture that Image + # actor supports. + texture={ + 'texture': bascenev1.gettexture(chestdisplayinfo.texclosed), + 'tint_texture': bascenev1.gettexture( + chestdisplayinfo.texclosedtint + ), + 'tint_color': chestdisplayinfo.tint, + 'tint2_color': chestdisplayinfo.tint2, + 'mask_texture': None, + }, + color=chestdisplayinfo.color + (1.0,), + position=position, + scale=(48.0, 48.0), + transition=Image.Transition.FADE_IN, + transition_delay=2.0, + ).autoretain() diff --git a/dist/ba_data/python/baclassic/macmusicapp.py b/dist/ba_data/python/baclassic/macmusicapp.py index 6b4b9b4..48a41e5 100644 --- a/dist/ba_data/python/baclassic/macmusicapp.py +++ b/dist/ba_data/python/baclassic/macmusicapp.py @@ -15,6 +15,8 @@ from baclassic._music import MusicPlayer if TYPE_CHECKING: from typing import Callable, Any + import bauiv1 + class MacMusicAppMusicPlayer(MusicPlayer): """A music-player that utilizes the macOS Music.app for playback. @@ -33,7 +35,7 @@ class MacMusicAppMusicPlayer(MusicPlayer): callback: Callable[[Any], None], current_entry: Any, selection_target_name: str, - ) -> Any: + ) -> bauiv1.MainWindow: # pylint: disable=cyclic-import from bauiv1lib.soundtrack import entrytypeselect as etsel diff --git a/dist/ba_data/python/baclassic/osmusic.py b/dist/ba_data/python/baclassic/osmusic.py index 919df49..8a79bf7 100644 --- a/dist/ba_data/python/baclassic/osmusic.py +++ b/dist/ba_data/python/baclassic/osmusic.py @@ -16,6 +16,8 @@ from baclassic._music import MusicPlayer if TYPE_CHECKING: from typing import Callable, Any + import bauiv1 + class OSMusicPlayer(MusicPlayer): """Music player that talks to internal C++ layer for functionality. @@ -39,7 +41,7 @@ class OSMusicPlayer(MusicPlayer): callback: Callable[[Any], None], current_entry: Any, selection_target_name: str, - ) -> Any: + ) -> bauiv1.MainWindow: # pylint: disable=cyclic-import from bauiv1lib.soundtrack.entrytypeselect import ( SoundtrackEntryTypeSelectWindow, diff --git a/dist/ba_data/python/bacommon/__init__.py b/dist/ba_data/python/bacommon/__init__.py index 26ce706..7619c1f 100644 --- a/dist/ba_data/python/bacommon/__init__.py +++ b/dist/ba_data/python/bacommon/__init__.py @@ -1,3 +1,6 @@ # Released under the MIT License. See LICENSE for details. # -"""Functionality and data common to ballistica client and server components.""" +"""Functionality and data shared by all Ballistica components. + +This includes clients, various servers, tools, etc. +""" diff --git a/dist/ba_data/python/bacommon/app.py b/dist/ba_data/python/bacommon/app.py index 5f42c89..1093ac3 100644 --- a/dist/ba_data/python/bacommon/app.py +++ b/dist/ba_data/python/bacommon/app.py @@ -1,71 +1,96 @@ # Released under the MIT License. See LICENSE for details. # -"""Common high level values/functionality related to apps.""" +"""Common high level values/functionality related to Ballistica apps.""" from __future__ import annotations from enum import Enum -from dataclasses import dataclass -from typing import TYPE_CHECKING, Annotated - -from efro.dataclassio import ioprepped, IOAttrs +from typing import TYPE_CHECKING if TYPE_CHECKING: pass +# NOTE TO SELF - These are used on various server components, so be sure +# to update ALL servers before running any clients that might be using +# newly defined values. Alterntely we could set up fallback values but I +# don't think that will be necessary and could mask problems. + class AppInterfaceIdiom(Enum): """A general form-factor or method of experiencing a Ballistica app. - Note that it is possible for a running app to switch idioms (for + Note that it may be possible for a running app to switch idioms (for instance if a mobile device or computer is connected to a TV). """ + #: Small screen; assumed to have touch as primary input. PHONE = 'phone' + + #: Medium size screen; assumed to have touch as primary input. TABLET = 'tablet' + + #: Screen with medium amount of detail visible; assumed to have game + #: controller(s) as primary input. Note that this covers handheld or + #: arcade cabinet scenarios in addition to tv-connected consoles. + CONSOLE = 'console' + + #: Screen with high amount of detail visible; assumed to have + #: keyboard/mouse as primary input. DESKTOP = 'desktop' - TV = 'tv' - XR = 'xr' + + #: Displayed over or in place of of the real world on a headset; + #: assumed to have hand tracking or spatial controllers as primary + #: input. + XR_HEADSET = 'xr_headset' + + #: Displayed over or instead of the real world on a small screen; + #: assumed to have device movement augmented by physical or + #: touchscreen controls as primary input. + XR_PHONE = 'xr_phone' + + #: Displayed over or instead of the real world on a medium size + #: screen; assumed to have device movement augmented by physical or + #: touchscreen controls as primary input. + XR_TABLET = 'xr_tablet' + + #: The app has no interface (generally is acting as a server). + HEADLESS = 'headless' -class AppExperience(Enum): - """A particular experience that can be provided by a Ballistica app. +# UPDATE: Don't think this will be necessary. Will keep it around for a +# moment in case I change my mind. Current plan is to just have AppModes +# check for compatible AppInterfaceIdioms or whatever else as part of +# their can_handle_intent() call. - This is one metric used to isolate different playerbases from - each other where there might be no technical barriers doing so. For - example, a casual one-hand-playable phone game and an augmented - reality tabletop game may both use the same scene-versions and - networking-protocols and whatnot, but it would make no sense to - allow players of one to join servers of the other. AppExperience can - be used to keep these player bases separate. +# class AppExperience(Enum): +# """A type of experience provided by a Ballistica app. - Generally a single Ballistica app targets a single AppExperience. - This is not a technical requirement, however. A single app may - support multiple experiences, or there may be multiple apps - targeting one experience. Cloud components such as leagues are - generally associated with an AppExperience so that they are only - visible to client apps designed for that play style. - """ +# This metric is used to ensure that an :class:`~babase.AppMode` can +# be properly presented by a running app. Requirements for supporting +# an experience can include things like running in a particular +# :class:`AppInterfaceIdiom` or having particular features or input +# device(s) present. +# """ - # An experience that is supported everywhere. Used for the default - # empty AppMode when starting the app, etc. - EMPTY = 'empty' +# #: A special experience that is supported everywhere. Used for the +# #: default empty AppMode when starting the app, etc. +# EMPTY = 'empty' - # The traditional BombSquad experience: multiple players using - # traditional game controllers (or touch screen equivalents) in a - # single arena small enough for all action to be viewed on a single - # screen. - MELEE = 'melee' +# #: The traditional BombSquad experience - multiple players using +# #: game controllers (or touch screen equivalents) in a single arena +# #: small enough for all action to be viewed on a single screen. +# MELEE = 'melee' - # The traditional BombSquad Remote experience; buttons on a - # touch-screen allowing a mobile device to be used as a game - # controller. - REMOTE = 'remote' +# #: The traditional BombSquad Remote experience; buttons on a +# #: touch-screen allowing a mobile device to be used as a game +# #: controller. +# REMOTE = 'remote' class AppArchitecture(Enum): - """Processor architecture the App is running on.""" + """Processor architecture an app can be running on.""" + UNKNOWN = 'unknown' ARM = 'arm' ARM64 = 'arm64' X86 = 'x86' @@ -73,15 +98,16 @@ class AppArchitecture(Enum): class AppPlatform(Enum): - """Overall platform a Ballistica build is targeting. + """Overall platform a build can target. - Each distinct flavor of an app has a unique combination - of AppPlatform and AppVariant. Generally platform describes - a set of hardware, while variant describes a destination or - purpose for the build. + Each distinct flavor of an app has a unique combination of + AppPlatform and AppVariant. Generally platform describes a set of + hardware, while variant describes a destination or purpose for the + build. """ - MAC = 'mac' + UNKNOWN = 'unknown' + MACOS = 'macos' WINDOWS = 'windows' LINUX = 'linux' ANDROID = 'android' @@ -92,23 +118,23 @@ class AppPlatform(Enum): class AppVariant(Enum): """A unique Ballistica build type within a single platform. - Each distinct flavor of an app has a unique combination - of AppPlatform and AppVariant. Generally platform describes - a set of hardware, while variant describes a destination or - purpose for the build. + Each distinct flavor of an app has a unique combination of + AppPlatform and AppVariant. Generally platform describes a set of + hardware, while variant describes a destination or purpose for the + build. """ - # Default builds. + #: Default builds. GENERIC = 'generic' - # Builds intended for public testing (may have some extra checks - # or logging enabled). - TEST = 'test' + #: Particular builds intended for public testing (may have some extra + #: checks or logging enabled). + TEST_BUILD = 'test_build' # Various stores. AMAZON_APPSTORE = 'amazon_appstore' GOOGLE_PLAY = 'google_play' - APP_STORE = 'app_store' + APPLE_APP_STORE = 'apple_app_store' WINDOWS_STORE = 'windows_store' STEAM = 'steam' META = 'meta' @@ -117,24 +143,4 @@ class AppVariant(Enum): # Other. ARCADE = 'arcade' DEMO = 'demo' - - -@ioprepped -@dataclass -class AppInstanceInfo: - """General info about an individual running app.""" - - name = Annotated[str, IOAttrs('n')] - - engine_version = Annotated[str, IOAttrs('ev')] - engine_build = Annotated[int, IOAttrs('eb')] - - platform = Annotated[AppPlatform, IOAttrs('p')] - variant = Annotated[AppVariant, IOAttrs('va')] - architecture = Annotated[AppArchitecture, IOAttrs('a')] - os_version = Annotated[str | None, IOAttrs('o')] - - interface_idiom: Annotated[AppInterfaceIdiom, IOAttrs('i')] - locale: Annotated[str, IOAttrs('l')] - - device: Annotated[str | None, IOAttrs('d')] + CARDBOARD = 'cardboard' diff --git a/dist/ba_data/python/bacommon/bacloud.py b/dist/ba_data/python/bacommon/bacloud.py index 5fe8c1b..0b54add 100644 --- a/dist/ba_data/python/bacommon/bacloud.py +++ b/dist/ba_data/python/bacommon/bacloud.py @@ -51,44 +51,7 @@ class RequestData: @ioprepped @dataclass class ResponseData: - """Response sent from the bacloud server to the client. - - Attributes: - message: If present, client should print this message before any other - response processing (including error handling) occurs. - message_end: end arg for message print() call. - error: If present, client should abort with this error message. - delay_seconds: How long to wait before proceeding with remaining - response (can be useful when waiting for server progress in a loop). - login: If present, a token that should be stored client-side and passed - with subsequent commands. - logout: If True, any existing client-side token should be discarded. - dir_manifest: If present, client should generate a manifest of this dir. - It should be added to end_command args as 'manifest'. - uploads: If present, client should upload the requested files (arg1) - individually to a server command (arg2) with provided args (arg3). - uploads_inline: If present, a list of pathnames that should be gzipped - and uploaded to an 'uploads_inline' bytes dict in end_command args. - This should be limited to relatively small files. - deletes: If present, file paths that should be deleted on the client. - downloads: If present, describes files the client should individually - request from the server if not already present on the client. - downloads_inline: If present, pathnames mapped to gzipped data to - be written to the client. This should only be used for relatively - small files as they are all included inline as part of the response. - dir_prune_empty: If present, all empty dirs under this one should be - removed. - open_url: If present, url to display to the user. - input_prompt: If present, a line of input is read and placed into - end_command args as 'input'. The first value is the prompt printed - before reading and the second is whether it should be read as a - password (without echoing to the terminal). - end_message: If present, a message that should be printed after all other - response processing is done. - end_message_end: end arg for end_message print() call. - end_command: If present, this command is run with these args at the end - of response processing. - """ + """Response sent from the bacloud server to the client.""" @ioprepped @dataclass @@ -101,62 +64,114 @@ class ResponseData: """Individual download.""" path: Annotated[str, IOAttrs('p')] - # Args include with this particular request (combined with - # baseargs). + + #: Args include with this particular request (combined with + #: baseargs). args: Annotated[dict[str, str], IOAttrs('a')] + # TODO: could add a hash here if we want the client to # verify hashes. - # If present, will be prepended to all entry paths via os.path.join. + #: If present, will be prepended to all entry paths via os.path.join. basepath: Annotated[str | None, IOAttrs('p')] - # Server command that should be called for each download. The - # server command is expected to respond with a downloads_inline - # containing a single 'default' entry. In the future this may - # be expanded to a more streaming-friendly process. + #: Server command that should be called for each download. The + #: server command is expected to respond with a downloads_inline + #: containing a single 'default' entry. In the future this may + #: be expanded to a more streaming-friendly process. cmd: Annotated[str, IOAttrs('c')] - # Args that should be included with all download requests. + #: Args that should be included with all download requests. baseargs: Annotated[dict[str, str], IOAttrs('a')] - # Everything that should be downloaded. + #: Everything that should be downloaded. entries: Annotated[list[Entry], IOAttrs('e')] + #: If present, client should print this message before any other + #: response processing (including error handling) occurs. message: Annotated[str | None, IOAttrs('m', store_default=False)] = None + + #: End arg for message print() call. message_end: Annotated[str, IOAttrs('m_end', store_default=False)] = '\n' + + #: If present, client should abort with this error message. error: Annotated[str | None, IOAttrs('e', store_default=False)] = None + + #: How long to wait before proceeding with remaining response (can + #: be useful when waiting for server progress in a loop). delay_seconds: Annotated[float, IOAttrs('d', store_default=False)] = 0.0 + + #: If present, a token that should be stored client-side and passed + #: with subsequent commands. login: Annotated[str | None, IOAttrs('l', store_default=False)] = None + + #: If True, any existing client-side token should be discarded. logout: Annotated[bool, IOAttrs('lo', store_default=False)] = False + + #: If present, client should generate a manifest of this dir. + #: It should be added to end_command args as 'manifest'. dir_manifest: Annotated[str | None, IOAttrs('man', store_default=False)] = ( None ) + + #: If present, client should upload the requested files (arg1) + #: individually to a server command (arg2) with provided args (arg3). uploads: Annotated[ tuple[list[str], str, dict] | None, IOAttrs('u', store_default=False) ] = None + + #: If present, a list of pathnames that should be gzipped + #: and uploaded to an 'uploads_inline' bytes dict in end_command args. + #: This should be limited to relatively small files. uploads_inline: Annotated[ list[str] | None, IOAttrs('uinl', store_default=False) ] = None + + #: If present, file paths that should be deleted on the client. deletes: Annotated[ list[str] | None, IOAttrs('dlt', store_default=False) ] = None + + #: If present, describes files the client should individually + #: request from the server if not already present on the client. downloads: Annotated[ Downloads | None, IOAttrs('dl', store_default=False) ] = None + + #: If present, pathnames mapped to gzipped data to + #: be written to the client. This should only be used for relatively + #: small files as they are all included inline as part of the response. downloads_inline: Annotated[ dict[str, bytes] | None, IOAttrs('dinl', store_default=False) ] = None + + #: If present, all empty dirs under this one should be removed. dir_prune_empty: Annotated[ str | None, IOAttrs('dpe', store_default=False) ] = None + + #: If present, url to display to the user. open_url: Annotated[str | None, IOAttrs('url', store_default=False)] = None + + #: If present, a line of input is read and placed into + #: end_command args as 'input'. The first value is the prompt printed + #: before reading and the second is whether it should be read as a + #: password (without echoing to the terminal). input_prompt: Annotated[ tuple[str, bool] | None, IOAttrs('inp', store_default=False) ] = None + + #: If present, a message that should be printed after all other + #: response processing is done. end_message: Annotated[str | None, IOAttrs('em', store_default=False)] = ( None ) + + #: End arg for end_message print() call. end_message_end: Annotated[str, IOAttrs('eme', store_default=False)] = '\n' + + #: If present, this command is run with these args at the end + #: of response processing. end_command: Annotated[ tuple[str, dict] | None, IOAttrs('ec', store_default=False) ] = None diff --git a/dist/ba_data/python/bacommon/bs.py b/dist/ba_data/python/bacommon/bs.py new file mode 100644 index 0000000..82a87e8 --- /dev/null +++ b/dist/ba_data/python/bacommon/bs.py @@ -0,0 +1,959 @@ +# Released under the MIT License. See LICENSE for details. +# +"""BombSquad specific bits.""" + +from __future__ import annotations + +import datetime +from enum import Enum +from dataclasses import dataclass, field +from typing import Annotated, override, assert_never + +from efro.util import pairs_to_flat +from efro.dataclassio import ioprepped, IOAttrs, IOMultiType +from efro.message import Message, Response + +# Token counts for our various packs. +TOKENS1_COUNT = 50 +TOKENS2_COUNT = 500 +TOKENS3_COUNT = 1200 +TOKENS4_COUNT = 2600 + + +@ioprepped +@dataclass +class PrivatePartyMessage(Message): + """Message asking about info we need for private-party UI.""" + + need_datacode: Annotated[bool, IOAttrs('d')] + + @override + @classmethod + def get_response_types(cls) -> list[type[Response] | None]: + return [PrivatePartyResponse] + + +@ioprepped +@dataclass +class PrivatePartyResponse(Response): + """Here's that private party UI info you asked for, boss.""" + + success: Annotated[bool, IOAttrs('s')] + tokens: Annotated[int, IOAttrs('t')] + gold_pass: Annotated[bool, IOAttrs('g')] + datacode: Annotated[str | None, IOAttrs('d')] + + +class ClassicChestAppearance(Enum): + """Appearances bombsquad classic chests can have.""" + + UNKNOWN = 'u' + DEFAULT = 'd' + L1 = 'l1' + L2 = 'l2' + L3 = 'l3' + L4 = 'l4' + L5 = 'l5' + L6 = 'l6' + + @property + def pretty_name(self) -> str: + """Pretty name for the chest in English.""" + # pylint: disable=too-many-return-statements + cls = type(self) + + if self is cls.UNKNOWN: + return 'Unknown Chest' + if self is cls.DEFAULT: + return 'Chest' + if self is cls.L1: + return 'L1 Chest' + if self is cls.L2: + return 'L2 Chest' + if self is cls.L3: + return 'L3 Chest' + if self is cls.L4: + return 'L4 Chest' + if self is cls.L5: + return 'L5 Chest' + if self is cls.L6: + return 'L6 Chest' + + assert_never(self) + + +@ioprepped +@dataclass +class ClassicAccountLiveData: + """Live account data fed to the client in the bs classic app mode.""" + + @dataclass + class Chest: + """A lovely chest.""" + + appearance: Annotated[ + ClassicChestAppearance, + IOAttrs('a', enum_fallback=ClassicChestAppearance.UNKNOWN), + ] + create_time: Annotated[datetime.datetime, IOAttrs('c')] + unlock_time: Annotated[datetime.datetime, IOAttrs('t')] + unlock_tokens: Annotated[int, IOAttrs('k')] + ad_allow_time: Annotated[datetime.datetime | None, IOAttrs('at')] + + class LeagueType(Enum): + """Type of league we are in.""" + + BRONZE = 'b' + SILVER = 's' + GOLD = 'g' + DIAMOND = 'd' + + tickets: Annotated[int, IOAttrs('ti')] + + tokens: Annotated[int, IOAttrs('to')] + gold_pass: Annotated[bool, IOAttrs('g')] + remove_ads: Annotated[bool, IOAttrs('r')] + + achievements: Annotated[int, IOAttrs('a')] + achievements_total: Annotated[int, IOAttrs('at')] + + league_type: Annotated[LeagueType | None, IOAttrs('lt')] + league_num: Annotated[int | None, IOAttrs('ln')] + league_rank: Annotated[int | None, IOAttrs('lr')] + + level: Annotated[int, IOAttrs('lv')] + xp: Annotated[int, IOAttrs('xp')] + xpmax: Annotated[int, IOAttrs('xpm')] + + inbox_count: Annotated[int, IOAttrs('ibc')] + inbox_count_is_max: Annotated[bool, IOAttrs('ibcm')] + inbox_contains_prize: Annotated[bool, IOAttrs('icp')] + + chests: Annotated[dict[str, Chest], IOAttrs('c')] + + +class DisplayItemTypeID(Enum): + """Type ID for each of our subclasses.""" + + UNKNOWN = 'u' + TICKETS = 't' + TOKENS = 'k' + TEST = 's' + CHEST = 'c' + + +class DisplayItem(IOMultiType[DisplayItemTypeID]): + """Some amount of something that can be shown or described. + + Used to depict chest contents or other rewards or prices. + """ + + @override + @classmethod + def get_type_id(cls) -> DisplayItemTypeID: + # Require child classes to supply this themselves. If we did a + # full type registry/lookup here it would require us to import + # everything and would prevent lazy loading. + raise NotImplementedError() + + @override + @classmethod + def get_type(cls, type_id: DisplayItemTypeID) -> type[DisplayItem]: + """Return the subclass for each of our type-ids.""" + # pylint: disable=cyclic-import + + t = DisplayItemTypeID + if type_id is t.UNKNOWN: + return UnknownDisplayItem + if type_id is t.TICKETS: + return TicketsDisplayItem + if type_id is t.TOKENS: + return TokensDisplayItem + if type_id is t.TEST: + return TestDisplayItem + if type_id is t.CHEST: + return ChestDisplayItem + + # Important to make sure we provide all types. + assert_never(type_id) + + def get_description(self) -> tuple[str, list[tuple[str, str]]]: + """Return a string description and subs for the item. + + These decriptions are baked into the DisplayItemWrapper and + should be accessed from there when available. This allows + clients to give descriptions even for newer display items they + don't recognize. + """ + raise NotImplementedError() + + # Implement fallbacks so client can digest item lists even if they + # contain unrecognized stuff. DisplayItemWrapper contains basic + # baked down info that they can still use in such cases. + @override + @classmethod + def get_unknown_type_fallback(cls) -> DisplayItem: + return UnknownDisplayItem() + + +@ioprepped +@dataclass +class UnknownDisplayItem(DisplayItem): + """Something we don't know how to display.""" + + @override + @classmethod + def get_type_id(cls) -> DisplayItemTypeID: + return DisplayItemTypeID.UNKNOWN + + @override + def get_description(self) -> tuple[str, list[tuple[str, str]]]: + import logging + + # Make noise but don't break. + logging.exception( + 'UnknownDisplayItem.get_description() should never be called.' + ' Always access descriptions on the DisplayItemWrapper.' + ) + return 'Unknown', [] + + +@ioprepped +@dataclass +class TicketsDisplayItem(DisplayItem): + """Some amount of tickets.""" + + count: Annotated[int, IOAttrs('c')] + + @override + @classmethod + def get_type_id(cls) -> DisplayItemTypeID: + return DisplayItemTypeID.TICKETS + + @override + def get_description(self) -> tuple[str, list[tuple[str, str]]]: + return '${C} Tickets', [('${C}', str(self.count))] + + +@ioprepped +@dataclass +class TokensDisplayItem(DisplayItem): + """Some amount of tokens.""" + + count: Annotated[int, IOAttrs('c')] + + @override + @classmethod + def get_type_id(cls) -> DisplayItemTypeID: + return DisplayItemTypeID.TOKENS + + @override + def get_description(self) -> tuple[str, list[tuple[str, str]]]: + return '${C} Tokens', [('${C}', str(self.count))] + + +@ioprepped +@dataclass +class TestDisplayItem(DisplayItem): + """Fills usable space for a display-item - good for calibration.""" + + @override + @classmethod + def get_type_id(cls) -> DisplayItemTypeID: + return DisplayItemTypeID.TEST + + @override + def get_description(self) -> tuple[str, list[tuple[str, str]]]: + return 'Test Display Item Here', [] + + +@ioprepped +@dataclass +class ChestDisplayItem(DisplayItem): + """Display a chest.""" + + appearance: Annotated[ClassicChestAppearance, IOAttrs('a')] + + @override + @classmethod + def get_type_id(cls) -> DisplayItemTypeID: + return DisplayItemTypeID.CHEST + + @override + def get_description(self) -> tuple[str, list[tuple[str, str]]]: + return self.appearance.pretty_name, [] + + +@ioprepped +@dataclass +class DisplayItemWrapper: + """Wraps a DisplayItem and common info.""" + + item: Annotated[DisplayItem, IOAttrs('i')] + description: Annotated[str, IOAttrs('d')] + description_subs: Annotated[list[str] | None, IOAttrs('s')] + + @classmethod + def for_display_item(cls, item: DisplayItem) -> DisplayItemWrapper: + """Convenience method to wrap a DisplayItem.""" + desc, subs = item.get_description() + return DisplayItemWrapper(item, desc, pairs_to_flat(subs)) + + +@ioprepped +@dataclass +class ChestInfoMessage(Message): + """Request info about a chest.""" + + chest_id: Annotated[str, IOAttrs('i')] + + @override + @classmethod + def get_response_types(cls) -> list[type[Response] | None]: + return [ChestInfoResponse] + + +@ioprepped +@dataclass +class ChestInfoResponse(Response): + """Here's that chest info you asked for, boss.""" + + @dataclass + class Chest: + """A lovely chest.""" + + @dataclass + class PrizeSet: + """A possible set of prizes for this chest.""" + + weight: Annotated[float, IOAttrs('w')] + contents: Annotated[list[DisplayItemWrapper], IOAttrs('c')] + + appearance: Annotated[ + ClassicChestAppearance, + IOAttrs('a', enum_fallback=ClassicChestAppearance.UNKNOWN), + ] + + # How much it costs to unlock *now*. + unlock_tokens: Annotated[int, IOAttrs('tk')] + + # When it unlocks on its own. + unlock_time: Annotated[datetime.datetime, IOAttrs('t')] + + # Possible prizes we contain. + prizesets: Annotated[list[PrizeSet], IOAttrs('p')] + + # Are ads allowed now? + ad_allow: Annotated[bool, IOAttrs('aa')] + + chest: Annotated[Chest | None, IOAttrs('c')] + user_tokens: Annotated[int | None, IOAttrs('t')] + + +class ClientUITypeID(Enum): + """Type ID for each of our subclasses.""" + + UNKNOWN = 'u' + BASIC = 'b' + + +class ClientUI(IOMultiType[ClientUITypeID]): + """Defines some user interface on the client.""" + + @override + @classmethod + def get_type_id(cls) -> ClientUITypeID: + # Require child classes to supply this themselves. If we did a + # full type registry/lookup here it would require us to import + # everything and would prevent lazy loading. + raise NotImplementedError() + + @override + @classmethod + def get_type(cls, type_id: ClientUITypeID) -> type[ClientUI]: + """Return the subclass for each of our type-ids.""" + # pylint: disable=cyclic-import + out: type[ClientUI] + + t = ClientUITypeID + if type_id is t.UNKNOWN: + out = UnknownClientUI + elif type_id is t.BASIC: + out = BasicClientUI + else: + # Important to make sure we provide all types. + assert_never(type_id) + return out + + @override + @classmethod + def get_unknown_type_fallback(cls) -> ClientUI: + # If we encounter some future message type we don't know + # anything about, drop in a placeholder. + return UnknownClientUI() + + +@ioprepped +@dataclass +class UnknownClientUI(ClientUI): + """Fallback type for unrecognized entries.""" + + @override + @classmethod + def get_type_id(cls) -> ClientUITypeID: + return ClientUITypeID.UNKNOWN + + +class BasicClientUIComponentTypeID(Enum): + """Type ID for each of our subclasses.""" + + UNKNOWN = 'u' + TEXT = 't' + LINK = 'l' + BS_CLASSIC_TOURNEY_RESULT = 'ct' + DISPLAY_ITEMS = 'di' + EXPIRE_TIME = 'd' + + +class BasicClientUIComponent(IOMultiType[BasicClientUIComponentTypeID]): + """Top level class for our multitype.""" + + @override + @classmethod + def get_type_id(cls) -> BasicClientUIComponentTypeID: + # Require child classes to supply this themselves. If we did a + # full type registry/lookup here it would require us to import + # everything and would prevent lazy loading. + raise NotImplementedError() + + @override + @classmethod + def get_type( + cls, type_id: BasicClientUIComponentTypeID + ) -> type[BasicClientUIComponent]: + """Return the subclass for each of our type-ids.""" + # pylint: disable=cyclic-import + + t = BasicClientUIComponentTypeID + if type_id is t.UNKNOWN: + return BasicClientUIComponentUnknown + if type_id is t.TEXT: + return BasicClientUIComponentText + if type_id is t.LINK: + return BasicClientUIComponentLink + if type_id is t.BS_CLASSIC_TOURNEY_RESULT: + return BasicClientUIBsClassicTourneyResult + if type_id is t.DISPLAY_ITEMS: + return BasicClientUIDisplayItems + if type_id is t.EXPIRE_TIME: + return BasicClientUIExpireTime + + # Important to make sure we provide all types. + assert_never(type_id) + + @override + @classmethod + def get_unknown_type_fallback(cls) -> BasicClientUIComponent: + # If we encounter some future message type we don't know + # anything about, drop in a placeholder. + return BasicClientUIComponentUnknown() + + +@ioprepped +@dataclass +class BasicClientUIComponentUnknown(BasicClientUIComponent): + """An unknown basic client component type. + + In practice these should never show up since the master-server + generates these on the fly for the client and so should not send + clients one they can't digest. + """ + + @override + @classmethod + def get_type_id(cls) -> BasicClientUIComponentTypeID: + return BasicClientUIComponentTypeID.UNKNOWN + + +@ioprepped +@dataclass +class BasicClientUIComponentText(BasicClientUIComponent): + """Show some text in the inbox message.""" + + text: Annotated[str, IOAttrs('t')] + subs: Annotated[list[str], IOAttrs('s', store_default=False)] = field( + default_factory=list + ) + scale: Annotated[float, IOAttrs('sc', store_default=False)] = 1.0 + color: Annotated[ + tuple[float, float, float, float], IOAttrs('c', store_default=False) + ] = (1.0, 1.0, 1.0, 1.0) + spacing_top: Annotated[float, IOAttrs('st', store_default=False)] = 0.0 + spacing_bottom: Annotated[float, IOAttrs('sb', store_default=False)] = 0.0 + + @override + @classmethod + def get_type_id(cls) -> BasicClientUIComponentTypeID: + return BasicClientUIComponentTypeID.TEXT + + +@ioprepped +@dataclass +class BasicClientUIComponentLink(BasicClientUIComponent): + """Show a link in the inbox message.""" + + url: Annotated[str, IOAttrs('u')] + label: Annotated[str, IOAttrs('l')] + subs: Annotated[list[str], IOAttrs('s', store_default=False)] = field( + default_factory=list + ) + spacing_top: Annotated[float, IOAttrs('st', store_default=False)] = 0.0 + spacing_bottom: Annotated[float, IOAttrs('sb', store_default=False)] = 0.0 + + @override + @classmethod + def get_type_id(cls) -> BasicClientUIComponentTypeID: + return BasicClientUIComponentTypeID.LINK + + +@ioprepped +@dataclass +class BasicClientUIBsClassicTourneyResult(BasicClientUIComponent): + """Show info about a classic tourney.""" + + tournament_id: Annotated[str, IOAttrs('t')] + game: Annotated[str, IOAttrs('g')] + players: Annotated[int, IOAttrs('p')] + rank: Annotated[int, IOAttrs('r')] + trophy: Annotated[str | None, IOAttrs('tr')] + prizes: Annotated[list[DisplayItemWrapper], IOAttrs('pr')] + + @override + @classmethod + def get_type_id(cls) -> BasicClientUIComponentTypeID: + return BasicClientUIComponentTypeID.BS_CLASSIC_TOURNEY_RESULT + + +@ioprepped +@dataclass +class BasicClientUIDisplayItems(BasicClientUIComponent): + """Show some display-items.""" + + items: Annotated[list[DisplayItemWrapper], IOAttrs('d')] + width: Annotated[float, IOAttrs('w')] = 100.0 + spacing_top: Annotated[float, IOAttrs('st', store_default=False)] = 0.0 + spacing_bottom: Annotated[float, IOAttrs('sb', store_default=False)] = 0.0 + + @override + @classmethod + def get_type_id(cls) -> BasicClientUIComponentTypeID: + return BasicClientUIComponentTypeID.DISPLAY_ITEMS + + +@ioprepped +@dataclass +class BasicClientUIExpireTime(BasicClientUIComponent): + """Show expire-time.""" + + time: Annotated[datetime.datetime, IOAttrs('d')] + spacing_top: Annotated[float, IOAttrs('st', store_default=False)] = 0.0 + spacing_bottom: Annotated[float, IOAttrs('sb', store_default=False)] = 0.0 + + @override + @classmethod + def get_type_id(cls) -> BasicClientUIComponentTypeID: + return BasicClientUIComponentTypeID.EXPIRE_TIME + + +@ioprepped +@dataclass +class BasicClientUI(ClientUI): + """A basic UI for the client.""" + + class ButtonLabel(Enum): + """Distinct button labels we support.""" + + UNKNOWN = 'u' + OK = 'o' + APPLY = 'a' + CANCEL = 'c' + ACCEPT = 'ac' + DECLINE = 'dn' + IGNORE = 'ig' + CLAIM = 'cl' + DISCARD = 'd' + + class InteractionStyle(Enum): + """Overall interaction styles we support.""" + + UNKNOWN = 'u' + BUTTON_POSITIVE = 'p' + BUTTON_POSITIVE_NEGATIVE = 'pn' + + components: Annotated[list[BasicClientUIComponent], IOAttrs('s')] + + interaction_style: Annotated[ + InteractionStyle, IOAttrs('i', enum_fallback=InteractionStyle.UNKNOWN) + ] = InteractionStyle.BUTTON_POSITIVE + + button_label_positive: Annotated[ + ButtonLabel, IOAttrs('p', enum_fallback=ButtonLabel.UNKNOWN) + ] = ButtonLabel.OK + + button_label_negative: Annotated[ + ButtonLabel, IOAttrs('n', enum_fallback=ButtonLabel.UNKNOWN) + ] = ButtonLabel.CANCEL + + @override + @classmethod + def get_type_id(cls) -> ClientUITypeID: + return ClientUITypeID.BASIC + + def contains_unknown_elements(self) -> bool: + """Whether something within us is an unknown type or enum.""" + return ( + self.interaction_style is self.InteractionStyle.UNKNOWN + or self.button_label_positive is self.ButtonLabel.UNKNOWN + or self.button_label_negative is self.ButtonLabel.UNKNOWN + or any( + c.get_type_id() is BasicClientUIComponentTypeID.UNKNOWN + for c in self.components + ) + ) + + +@ioprepped +@dataclass +class ClientUIWrapper: + """Wrapper for a ClientUI and its common data.""" + + id: Annotated[str, IOAttrs('i')] + createtime: Annotated[datetime.datetime, IOAttrs('c')] + ui: Annotated[ClientUI, IOAttrs('e')] + + +@ioprepped +@dataclass +class InboxRequestMessage(Message): + """Message requesting our inbox.""" + + @override + @classmethod + def get_response_types(cls) -> list[type[Response] | None]: + return [InboxRequestResponse] + + +@ioprepped +@dataclass +class InboxRequestResponse(Response): + """Here's that inbox contents you asked for, boss.""" + + wrappers: Annotated[list[ClientUIWrapper], IOAttrs('w')] + + # Printable error if something goes wrong. + error: Annotated[str | None, IOAttrs('e')] = None + + +class ClientUIAction(Enum): + """Types of actions we can run.""" + + BUTTON_PRESS_POSITIVE = 'p' + BUTTON_PRESS_NEGATIVE = 'n' + + +class ClientEffectTypeID(Enum): + """Type ID for each of our subclasses.""" + + UNKNOWN = 'u' + SCREEN_MESSAGE = 'm' + SOUND = 's' + DELAY = 'd' + CHEST_WAIT_TIME_ANIMATION = 't' + TICKETS_ANIMATION = 'ta' + TOKENS_ANIMATION = 'toa' + + +class ClientEffect(IOMultiType[ClientEffectTypeID]): + """Something that can happen on the client. + + This can include screen messages, sounds, visual effects, etc. + """ + + @override + @classmethod + def get_type_id(cls) -> ClientEffectTypeID: + # Require child classes to supply this themselves. If we did a + # full type registry/lookup here it would require us to import + # everything and would prevent lazy loading. + raise NotImplementedError() + + @override + @classmethod + def get_type(cls, type_id: ClientEffectTypeID) -> type[ClientEffect]: + """Return the subclass for each of our type-ids.""" + # pylint: disable=cyclic-import + # pylint: disable=too-many-return-statements + + t = ClientEffectTypeID + if type_id is t.UNKNOWN: + return ClientEffectUnknown + if type_id is t.SCREEN_MESSAGE: + return ClientEffectScreenMessage + if type_id is t.SOUND: + return ClientEffectSound + if type_id is t.DELAY: + return ClientEffectDelay + if type_id is t.CHEST_WAIT_TIME_ANIMATION: + return ClientEffectChestWaitTimeAnimation + if type_id is t.TICKETS_ANIMATION: + return ClientEffectTicketsAnimation + if type_id is t.TOKENS_ANIMATION: + return ClientEffectTokensAnimation + + # Important to make sure we provide all types. + assert_never(type_id) + + @override + @classmethod + def get_unknown_type_fallback(cls) -> ClientEffect: + # If we encounter some future message type we don't know + # anything about, drop in a placeholder. + return ClientEffectUnknown() + + +@ioprepped +@dataclass +class ClientEffectUnknown(ClientEffect): + """Fallback substitute for types we don't recognize.""" + + @override + @classmethod + def get_type_id(cls) -> ClientEffectTypeID: + return ClientEffectTypeID.UNKNOWN + + +@ioprepped +@dataclass +class ClientEffectScreenMessage(ClientEffect): + """Display a screen-message.""" + + message: Annotated[str, IOAttrs('m')] + subs: Annotated[list[str], IOAttrs('s')] + color: Annotated[tuple[float, float, float], IOAttrs('c')] = (1.0, 1.0, 1.0) + + @override + @classmethod + def get_type_id(cls) -> ClientEffectTypeID: + return ClientEffectTypeID.SCREEN_MESSAGE + + +@ioprepped +@dataclass +class ClientEffectSound(ClientEffect): + """Play a sound.""" + + class Sound(Enum): + """Sounds that can be made alongside the message.""" + + UNKNOWN = 'u' + CASH_REGISTER = 'c' + ERROR = 'e' + POWER_DOWN = 'p' + GUN_COCKING = 'g' + + sound: Annotated[Sound, IOAttrs('s', enum_fallback=Sound.UNKNOWN)] + volume: Annotated[float, IOAttrs('v')] = 1.0 + + @override + @classmethod + def get_type_id(cls) -> ClientEffectTypeID: + return ClientEffectTypeID.SOUND + + +@ioprepped +@dataclass +class ClientEffectChestWaitTimeAnimation(ClientEffect): + """Animate chest wait time changing.""" + + chestid: Annotated[str, IOAttrs('c')] + duration: Annotated[float, IOAttrs('u')] + startvalue: Annotated[datetime.datetime, IOAttrs('o')] + endvalue: Annotated[datetime.datetime, IOAttrs('n')] + + @override + @classmethod + def get_type_id(cls) -> ClientEffectTypeID: + return ClientEffectTypeID.CHEST_WAIT_TIME_ANIMATION + + +@ioprepped +@dataclass +class ClientEffectTicketsAnimation(ClientEffect): + """Animate tickets count.""" + + duration: Annotated[float, IOAttrs('u')] + startvalue: Annotated[int, IOAttrs('s')] + endvalue: Annotated[int, IOAttrs('e')] + + @override + @classmethod + def get_type_id(cls) -> ClientEffectTypeID: + return ClientEffectTypeID.TICKETS_ANIMATION + + +@ioprepped +@dataclass +class ClientEffectTokensAnimation(ClientEffect): + """Animate tokens count.""" + + duration: Annotated[float, IOAttrs('u')] + startvalue: Annotated[int, IOAttrs('s')] + endvalue: Annotated[int, IOAttrs('e')] + + @override + @classmethod + def get_type_id(cls) -> ClientEffectTypeID: + return ClientEffectTypeID.TOKENS_ANIMATION + + +@ioprepped +@dataclass +class ClientEffectDelay(ClientEffect): + """Delay effect processing.""" + + seconds: Annotated[float, IOAttrs('s')] + + @override + @classmethod + def get_type_id(cls) -> ClientEffectTypeID: + return ClientEffectTypeID.DELAY + + +@ioprepped +@dataclass +class ClientUIActionMessage(Message): + """Do something to a client ui.""" + + id: Annotated[str, IOAttrs('i')] + action: Annotated[ClientUIAction, IOAttrs('a')] + + @override + @classmethod + def get_response_types(cls) -> list[type[Response] | None]: + return [ClientUIActionResponse] + + +@ioprepped +@dataclass +class ClientUIActionResponse(Response): + """Did something to that inbox entry, boss.""" + + class ErrorType(Enum): + """Types of errors that may have occurred.""" + + # Probably a future error type we don't recognize. + UNKNOWN = 'u' + + # Something went wrong on the server, but specifics are not + # relevant. + INTERNAL = 'i' + + # The entry expired on the server. In various cases such as 'ok' + # buttons this can generally be ignored. + EXPIRED = 'e' + + error_type: Annotated[ + ErrorType | None, IOAttrs('et', enum_fallback=ErrorType.UNKNOWN) + ] + + # User facing error message in the case of errors. + error_message: Annotated[str | None, IOAttrs('em')] + + effects: Annotated[list[ClientEffect], IOAttrs('fx')] + + +@ioprepped +@dataclass +class ScoreSubmitMessage(Message): + """Let the server know we got some score in something.""" + + score_token: Annotated[str, IOAttrs('t')] + + @override + @classmethod + def get_response_types(cls) -> list[type[Response] | None]: + return [ScoreSubmitResponse] + + +@ioprepped +@dataclass +class ScoreSubmitResponse(Response): + """Did something to that inbox entry, boss.""" + + # Things we should show on our end. + effects: Annotated[list[ClientEffect], IOAttrs('fx')] + + +@ioprepped +@dataclass +class ChestActionMessage(Message): + """Request action about a chest.""" + + class Action(Enum): + """Types of actions we can request.""" + + # Unlocking (for free or with tokens). + UNLOCK = 'u' + + # Watched an ad to reduce wait. + AD = 'ad' + + action: Annotated[Action, IOAttrs('a')] + + # Tokens we are paying (only applies to unlock). + token_payment: Annotated[int, IOAttrs('t')] + + chest_id: Annotated[str, IOAttrs('i')] + + @override + @classmethod + def get_response_types(cls) -> list[type[Response] | None]: + return [ChestActionResponse] + + +@ioprepped +@dataclass +class ChestActionResponse(Response): + """Here's the results of that action you asked for, boss.""" + + # Tokens that were actually charged. + tokens_charged: Annotated[int, IOAttrs('t')] = 0 + + # If present, signifies the chest has been opened and we should show + # the user this stuff that was in it. + contents: Annotated[list[DisplayItemWrapper] | None, IOAttrs('c')] = None + + # If contents are present, which of the chest's prize-sets they + # represent. + prizeindex: Annotated[int, IOAttrs('i')] = 0 + + # Printable error if something goes wrong. + error: Annotated[str | None, IOAttrs('e')] = None + + # Printable warning. Shown in orange with an error sound. Does not + # mean the action failed; only that there's something to tell the + # users such as 'It looks like you are faking ad views; stop it or + # you won't have ad options anymore.' + warning: Annotated[str | None, IOAttrs('w', store_default=False)] = None + + # Printable success message. Shown in green with a cash-register + # sound. Can be used for things like successful wait reductions via + # ad views. Used in builds earlier than 22311; can remove once + # 22311+ is ubiquitous. + success_msg: Annotated[str | None, IOAttrs('s', store_default=False)] = None + + # Effects to show on the client. Replaces warning and success_msg in + # build 22311 or newer. + effects: Annotated[ + list[ClientEffect], IOAttrs('fx', store_default=False) + ] = field(default_factory=list) diff --git a/dist/ba_data/python/bacommon/cloud.py b/dist/ba_data/python/bacommon/cloud.py index 223fb71..fe01354 100644 --- a/dist/ba_data/python/bacommon/cloud.py +++ b/dist/ba_data/python/bacommon/cloud.py @@ -3,12 +3,14 @@ """Functionality related to cloud functionality.""" from __future__ import annotations + +from enum import Enum from dataclasses import dataclass, field from typing import TYPE_CHECKING, Annotated, override -from enum import Enum from efro.message import Message, Response from efro.dataclassio import ioprepped, IOAttrs +from bacommon.securedata import SecureDataChecker from bacommon.transfer import DirectoryManifest from bacommon.login import LoginType @@ -303,23 +305,41 @@ class StoreQueryResponse(Response): @ioprepped @dataclass -class BSPrivatePartyMessage(Message): - """Message asking about info we need for private-party UI.""" +class SecureDataCheckMessage(Message): + """Was this data signed by the master-server?.""" - need_datacode: Annotated[bool, IOAttrs('d')] + data: Annotated[bytes, IOAttrs('d')] + signature: Annotated[bytes, IOAttrs('s')] @override @classmethod def get_response_types(cls) -> list[type[Response] | None]: - return [BSPrivatePartyResponse] + return [SecureDataCheckResponse] @ioprepped @dataclass -class BSPrivatePartyResponse(Response): - """Here's that private party UI info you asked for, boss.""" +class SecureDataCheckResponse(Response): + """Here's the result of that data check, boss.""" - success: Annotated[bool, IOAttrs('s')] - tokens: Annotated[int, IOAttrs('t')] - gold_pass: Annotated[bool, IOAttrs('g')] - datacode: Annotated[str | None, IOAttrs('d')] + # Whether the data signature was valid. + result: Annotated[bool, IOAttrs('v')] + + +@ioprepped +@dataclass +class SecureDataCheckerRequest(Message): + """Can I get a checker over here?.""" + + @override + @classmethod + def get_response_types(cls) -> list[type[Response] | None]: + return [SecureDataCheckerResponse] + + +@ioprepped +@dataclass +class SecureDataCheckerResponse(Response): + """Here's that checker ya asked for, boss.""" + + checker: Annotated[SecureDataChecker, IOAttrs('c')] diff --git a/dist/ba_data/python/bacommon/locale.py b/dist/ba_data/python/bacommon/locale.py new file mode 100644 index 0000000..7667ca3 --- /dev/null +++ b/dist/ba_data/python/bacommon/locale.py @@ -0,0 +1,729 @@ +# Released under the MIT License. See LICENSE for details. +# +"""Functionality for wrangling locale info.""" + +from __future__ import annotations + +import logging +from enum import Enum +from functools import cached_property, lru_cache +from typing import TYPE_CHECKING, assert_never, assert_type + +if TYPE_CHECKING: + pass + + +class Locale(Enum): + """A distinct grouping of language, cultural norms, etc. + + This list of locales is considered 'sacred' - we assume any values + (and associated long values) added here remain in use out in the + wild indefinitely. If a locale value is superseded by a newer or + more specific one, the new value should be added and both new and + old should map to the same LocaleResolved value. + """ + + # Locale values are not iso codes or anything specific; just + # abbreviated English strings intended to be recognizable. In cases + # where space is unimportant or humans might be writing these, go + # with long-values which . + + ENGLISH = 'eng' + CHINESE = 'chn' # Obsolete + CHINESE_TRADITIONAL = 'chn_tr' + CHINESE_SIMPLIFIED = 'chn_sim' + PORTUGUESE = 'prtg' # Obsolete + PORTUGUESE_PORTUGAL = 'prtg_pr' + PORTUGUESE_BRAZIL = 'prtg_brz' + ARABIC = 'arabc' + BELARUSSIAN = 'blrs' + CROATIAN = 'croat' + CZECH = 'czch' + DANISH = 'dnsh' + DUTCH = 'dtch' + PIRATE_SPEAK = 'pirate' + ESPERANTO = 'esprnto' + FILIPINO = 'filp' + FRENCH = 'frnch' + GERMAN = 'grmn' + GIBBERISH = 'gibber' + GREEK = 'greek' + HINDI = 'hndi' + HUNGARIAN = 'hngr' + INDONESIAN = 'indnsn' + ITALIAN = 'italn' + KOREAN = 'kor' + MALAY = 'mlay' + PERSIAN = 'pers' + POLISH = 'pol' + ROMANIAN = 'rom' + RUSSIAN = 'rusn' + SERBIAN = 'srbn' + SPANISH = 'spn' # Obsolete + SPANISH_LATIN_AMERICA = 'spn_lat' + SPANISH_SPAIN = 'spn_spn' + SLOVAK = 'slvk' + SWEDISH = 'swed' + TAMIL = 'taml' + THAI = 'thai' + TURKISH = 'turk' + UKRAINIAN = 'ukrn' + VENETIAN = 'venetn' + VIETNAMESE = 'viet' + + # Note: We use if-statement chains here so we can use assert_never() + # to ensure we cover all existing values. But we cache lookups so + # that we only have to go through those long if-statement chains + # once per enum value. + + @cached_property + def long_value(self) -> str: + """A longer more human readable alternative to value. + + Like the regular enum values, these values will never change and + can be used for persistent storage/etc. + """ + # pylint: disable=too-many-branches + # pylint: disable=too-many-return-statements + + cls = type(self) + + if self is cls.ENGLISH: + return 'English' + if self is cls.CHINESE: + return 'Chinese' + if self is cls.CHINESE_TRADITIONAL: + return 'ChineseTraditional' + if self is cls.CHINESE_SIMPLIFIED: + return 'ChineseSimplified' + if self is cls.PORTUGUESE: + return 'Portuguese' + if self is cls.PORTUGUESE_PORTUGAL: + return 'PortuguesePortugal' + if self is cls.PORTUGUESE_BRAZIL: + return 'PortugueseBrazil' + if self is cls.ARABIC: + return 'Arabic' + if self is cls.BELARUSSIAN: + return 'Belarussian' + if self is cls.CROATIAN: + return 'Croatian' + if self is cls.CZECH: + return 'Czech' + if self is cls.DANISH: + return 'Danish' + if self is cls.DUTCH: + return 'Dutch' + if self is cls.PIRATE_SPEAK: + return 'PirateSpeak' + if self is cls.ESPERANTO: + return 'Esperanto' + if self is cls.FILIPINO: + return 'Filipino' + if self is cls.FRENCH: + return 'French' + if self is cls.GERMAN: + return 'German' + if self is cls.GIBBERISH: + return 'Gibberish' + if self is cls.GREEK: + return 'Greek' + if self is cls.HINDI: + return 'Hindi' + if self is cls.HUNGARIAN: + return 'Hungarian' + if self is cls.INDONESIAN: + return 'Indonesian' + if self is cls.ITALIAN: + return 'Italian' + if self is cls.KOREAN: + return 'Korean' + if self is cls.MALAY: + return 'Malay' + if self is cls.PERSIAN: + return 'Persian' + if self is cls.POLISH: + return 'Polish' + if self is cls.ROMANIAN: + return 'Romanian' + if self is cls.RUSSIAN: + return 'Russian' + if self is cls.SERBIAN: + return 'Serbian' + if self is cls.SPANISH: + return 'Spanish' + if self is cls.SPANISH_LATIN_AMERICA: + return 'SpanishLatinAmerica' + if self is cls.SPANISH_SPAIN: + return 'SpanishSpain' + if self is cls.SLOVAK: + return 'Slovak' + if self is cls.SWEDISH: + return 'Swedish' + if self is cls.TAMIL: + return 'Tamil' + if self is cls.THAI: + return 'Thai' + if self is cls.TURKISH: + return 'Turkish' + if self is cls.UKRAINIAN: + return 'Ukrainian' + if self is cls.VENETIAN: + return 'Venetian' + if self is cls.VIETNAMESE: + return 'Vietnamese' + + # Make sure we've covered all cases. + assert_never(self) + + @classmethod + def from_long_value(cls, value: str) -> Locale: + """Given a long value, return a Locale.""" + + # Build a map of long-values to locales on demand. + storekey = '_from_long_value' + fromvals: dict[str, Locale] | None = getattr(cls, storekey, None) + if fromvals is None: + fromvals = {val.long_value: val for val in cls} + setattr(cls, storekey, fromvals) + + try: + return fromvals[value] + except KeyError as exc: + raise ValueError(f'Invalid long value "{value}"') from exc + + @cached_property + def resolved(self) -> LocaleResolved: + """Return the associated resolved locale.""" + # pylint: disable=too-many-return-statements + # pylint: disable=too-many-branches + + cls = type(self) + R = LocaleResolved + + if self is cls.ENGLISH: + return R.ENGLISH + if self is cls.CHINESE_SIMPLIFIED or self is cls.CHINESE: + return R.CHINESE_SIMPLIFIED + if self is cls.CHINESE_TRADITIONAL: + return R.CHINESE_TRADITIONAL + if self is cls.PORTUGUESE_BRAZIL or self is cls.PORTUGUESE: + return R.PORTUGUESE_BRAZIL + if self is cls.PORTUGUESE_PORTUGAL: + return R.PORTUGUESE_PORTUGAL + if self is cls.SPANISH_LATIN_AMERICA or self is cls.SPANISH: + return R.SPANISH_LATIN_AMERICA + if self is cls.SPANISH_SPAIN: + return R.SPANISH_SPAIN + if self is cls.ARABIC: + return R.ARABIC + if self is cls.BELARUSSIAN: + return R.BELARUSSIAN + if self is cls.CROATIAN: + return R.CROATIAN + if self is cls.CZECH: + return R.CZECH + if self is cls.DANISH: + return R.DANISH + if self is cls.DUTCH: + return R.DUTCH + if self is cls.PIRATE_SPEAK: + return R.PIRATE_SPEAK + if self is cls.ESPERANTO: + return R.ESPERANTO + if self is cls.FILIPINO: + return R.FILIPINO + if self is cls.FRENCH: + return R.FRENCH + if self is cls.GERMAN: + return R.GERMAN + if self is cls.GIBBERISH: + return R.GIBBERISH + if self is cls.GREEK: + return R.GREEK + if self is cls.HINDI: + return R.HINDI + if self is cls.HUNGARIAN: + return R.HUNGARIAN + if self is cls.INDONESIAN: + return R.INDONESIAN + if self is cls.ITALIAN: + return R.ITALIAN + if self is cls.KOREAN: + return R.KOREAN + if self is cls.MALAY: + return R.MALAY + if self is cls.PERSIAN: + return R.PERSIAN + if self is cls.POLISH: + return R.POLISH + if self is cls.ROMANIAN: + return R.ROMANIAN + if self is cls.RUSSIAN: + return R.RUSSIAN + if self is cls.SERBIAN: + return R.SERBIAN + if self is cls.SLOVAK: + return R.SLOVAK + if self is cls.SWEDISH: + return R.SWEDISH + if self is cls.TAMIL: + return R.TAMIL + if self is cls.THAI: + return R.THAI + if self is cls.TURKISH: + return R.TURKISH + if self is cls.UKRAINIAN: + return R.UKRAINIAN + if self is cls.VENETIAN: + return R.VENETIAN + if self is cls.VIETNAMESE: + return R.VIETNAMESE + + # Make sure we're covering all cases. + assert_never(self) + + +class LocaleResolved(Enum): + """A resolved :class:`Locale` for use in logic. + + These values should never be stored or transmitted and should always + come from resolving a :class:`Locale` which *can* be + stored/transmitted. This gives us the freedom to revise this list as + needed to keep our actual list of implemented resolved-locales as + trim as possible. + """ + + ENGLISH = 'eng' + CHINESE_TRADITIONAL = 'chn_tr' + CHINESE_SIMPLIFIED = 'chn_sim' + PORTUGUESE_PORTUGAL = 'prtg_pr' + PORTUGUESE_BRAZIL = 'prtg_brz' + ARABIC = 'arabc' + BELARUSSIAN = 'blrs' + CROATIAN = 'croat' + CZECH = 'czch' + DANISH = 'dnsh' + DUTCH = 'dtch' + PIRATE_SPEAK = 'pirate' + ESPERANTO = 'esprnto' + FILIPINO = 'filp' + FRENCH = 'frnch' + GERMAN = 'grmn' + GIBBERISH = 'gibber' + GREEK = 'greek' + HINDI = 'hndi' + HUNGARIAN = 'hngr' + INDONESIAN = 'indnsn' + ITALIAN = 'italn' + KOREAN = 'kor' + MALAY = 'mlay' + PERSIAN = 'pers' + POLISH = 'pol' + ROMANIAN = 'rom' + RUSSIAN = 'rusn' + SERBIAN = 'srbn' + SPANISH_LATIN_AMERICA = 'spn_lat' + SPANISH_SPAIN = 'spn_spn' + SLOVAK = 'slvk' + SWEDISH = 'swed' + TAMIL = 'taml' + THAI = 'thai' + TURKISH = 'turk' + UKRAINIAN = 'ukrn' + VENETIAN = 'venetn' + VIETNAMESE = 'viet' + + # Note: We use if-statement chains here so we can use assert_never() + # to ensure we cover all existing values. But we cache lookups so + # that we only have to go through those long if-statement chains + # once per enum value. + + @cached_property + def locale(self) -> Locale: + """Return a locale that resolves to this resolved locale. + + In some cases, such as when presenting locale options to the + user, it makes sense to iterate over resolved locale values, as + regular locales may include obsolete or redundant values. When + storing locale values to disk or transmitting them, however, it + is important to use plain locales. This method can be used to + get back to a plain locale from a resolved one. + """ + # pylint: disable=too-many-return-statements + # pylint: disable=too-many-branches + + cls = type(self) + + if self is cls.ENGLISH: + return Locale.ENGLISH + if self is cls.CHINESE_TRADITIONAL: + return Locale.CHINESE_TRADITIONAL + if self is cls.CHINESE_SIMPLIFIED: + return Locale.CHINESE_SIMPLIFIED + if self is cls.PORTUGUESE_PORTUGAL: + return Locale.PORTUGUESE_PORTUGAL + if self is cls.PORTUGUESE_BRAZIL: + return Locale.PORTUGUESE_BRAZIL + if self is cls.ARABIC: + return Locale.ARABIC + if self is cls.BELARUSSIAN: + return Locale.BELARUSSIAN + if self is cls.CROATIAN: + return Locale.CROATIAN + if self is cls.CZECH: + return Locale.CZECH + if self is cls.DANISH: + return Locale.DANISH + if self is cls.DUTCH: + return Locale.DUTCH + if self is cls.PIRATE_SPEAK: + return Locale.PIRATE_SPEAK + if self is cls.ESPERANTO: + return Locale.ESPERANTO + if self is cls.FILIPINO: + return Locale.FILIPINO + if self is cls.FRENCH: + return Locale.FRENCH + if self is cls.GERMAN: + return Locale.GERMAN + if self is cls.GIBBERISH: + return Locale.GIBBERISH + if self is cls.GREEK: + return Locale.GREEK + if self is cls.HINDI: + return Locale.HINDI + if self is cls.HUNGARIAN: + return Locale.HUNGARIAN + if self is cls.INDONESIAN: + return Locale.INDONESIAN + if self is cls.ITALIAN: + return Locale.ITALIAN + if self is cls.KOREAN: + return Locale.KOREAN + if self is cls.MALAY: + return Locale.MALAY + if self is cls.PERSIAN: + return Locale.PERSIAN + if self is cls.POLISH: + return Locale.POLISH + if self is cls.ROMANIAN: + return Locale.ROMANIAN + if self is cls.RUSSIAN: + return Locale.RUSSIAN + if self is cls.SERBIAN: + return Locale.SERBIAN + if self is cls.SPANISH_LATIN_AMERICA: + return Locale.SPANISH_LATIN_AMERICA + if self is cls.SPANISH_SPAIN: + return Locale.SPANISH_SPAIN + if self is cls.SLOVAK: + return Locale.SLOVAK + if self is cls.SWEDISH: + return Locale.SWEDISH + if self is cls.TAMIL: + return Locale.TAMIL + if self is cls.THAI: + return Locale.THAI + if self is cls.TURKISH: + return Locale.TURKISH + if self is cls.UKRAINIAN: + return Locale.UKRAINIAN + if self is cls.VENETIAN: + return Locale.VENETIAN + if self is cls.VIETNAMESE: + return Locale.VIETNAMESE + + # Make sure we're covering all cases. + assert_never(self) + + @cached_property + def tag(self) -> str: + """An IETF BCP 47 tag for this locale. + + This is often simply a language code ('en') but may in some + cases include the country ('pt-BR') or script ('zh-Hans'). + Locales which are not "real" will include an 'x' in the middle + ('en-x-pirate'). + """ + # pylint: disable=too-many-branches + # pylint: disable=too-many-statements + cls = type(self) + + val: str | None = None + + if self is cls.ENGLISH: + val = 'en' + elif self is cls.CHINESE_TRADITIONAL: + val = 'zh-Hant' + elif self is cls.CHINESE_SIMPLIFIED: + val = 'zh-Hans' + elif self is cls.PORTUGUESE_PORTUGAL: + val = 'pt-PT' + elif self is cls.PORTUGUESE_BRAZIL: + val = 'pt-BR' + elif self is cls.ARABIC: + val = 'ar' + elif self is cls.BELARUSSIAN: + val = 'be' + elif self is cls.CROATIAN: + val = 'hr' + elif self is cls.CZECH: + val = 'cs' + elif self is cls.DANISH: + val = 'da' + elif self is cls.DUTCH: + val = 'nl' + elif self is cls.PIRATE_SPEAK: + # 'x' in BCP 47 denotes private-use values. + val = 'en-x-pirate' + elif self is cls.ESPERANTO: + val = 'eo' + elif self is cls.FILIPINO: + val = 'fil' + elif self is cls.FRENCH: + val = 'fr' + elif self is cls.GERMAN: + val = 'de' + elif self is cls.GIBBERISH: + # 'x' in BCP 47 denotes private-use values. + val = 'en-x-gibberish' + elif self is cls.GREEK: + val = 'el' + elif self is cls.HINDI: + val = 'hi' + elif self is cls.HUNGARIAN: + val = 'hu' + elif self is cls.INDONESIAN: + val = 'id' + elif self is cls.ITALIAN: + val = 'it' + elif self is cls.KOREAN: + val = 'ko' + elif self is cls.MALAY: + val = 'ms' + elif self is cls.PERSIAN: + val = 'fa' + elif self is cls.POLISH: + val = 'pl' + elif self is cls.ROMANIAN: + val = 'ro' + elif self is cls.RUSSIAN: + val = 'ru' + elif self is cls.SERBIAN: + val = 'sr' + elif self is cls.SPANISH_LATIN_AMERICA: + val = 'es-419' + elif self is cls.SPANISH_SPAIN: + val = 'es-ES' + elif self is cls.SLOVAK: + val = 'sk' + elif self is cls.SWEDISH: + val = 'sv' + elif self is cls.TAMIL: + val = 'ta' + elif self is cls.THAI: + val = 'th' + elif self is cls.TURKISH: + val = 'tr' + elif self is cls.UKRAINIAN: + val = 'uk' + elif self is cls.VENETIAN: + val = 'vec' + elif self is cls.VIETNAMESE: + val = 'vi' + else: + # Make sure we cover all cases. + assert_never(self) + + assert_type(val, str) + + # Sanity check: the tag we return should lead back to us if we + # use it to get a Locale and then resolve that Locale. Make some + # noise if not so we can fix it. + lrcheck = LocaleResolved.from_tag(val) + if lrcheck is not self: + logging.warning( + 'LocaleResolved.from_tag().resolved for "%s" yielded %s;' + ' expected %s.', + val, + lrcheck.name, + self.name, + ) + + return val + + @classmethod + @lru_cache(maxsize=128) + def from_tag(cls, tag: str) -> LocaleResolved: + """Return a locale for a given string tag. + + Tags can be provided in BCP 47 form ('en-US') or POSIX locale + string form ('en_US.UTF-8'). + """ + # pylint: disable=too-many-branches + # pylint: disable=too-many-statements + # pylint: disable=too-many-return-statements + + # POSIX locale strings can contain a dot followed by an + # encoding. Strip that off. + tag2 = tag.split('.')[0] + + # Normalize things to lowercase and underscores (we should see + # 'zh_HANT' and 'zh-Hant' as the same). + bits = [bit.lower() for bit in tag2.replace('-', '_').split('_')] + + if not bits or not bits[0]: + raise ValueError(f'Invalid tag "{tag}".') + + lang = bits[0] + extras = bits[1:] + + if lang == 'en': + if 'x' in extras and 'pirate' in extras: + return cls.PIRATE_SPEAK + if 'x' in extras and 'gibberish' in extras: + return cls.GIBBERISH + return cls.ENGLISH + if lang == 'zh': + # With no extras, default to simplified. + if not extras or any(val in extras for val in ['hans', 'cn', 'sg']): + return cls.CHINESE_SIMPLIFIED + if any(val in extras for val in ['hant', 'tw']): + return cls.CHINESE_TRADITIONAL + + # Make noise if we come across something unexpected so we + # can add it. + fallback = cls.CHINESE_SIMPLIFIED + logging.warning( + '%s: Unknown Chinese tag variant "%s"; returning %s.', + cls.__name__, + tag, + fallback.name, + ) + return fallback + if lang == 'pt': + # With no extras, default to Brazil. + if not extras or 'br' in extras: + return cls.PORTUGUESE_BRAZIL + if any( + val in extras + for val in ['pt', 'ao', 'mz', 'tl', 'cv', 'gw', 'st'] + ): + return cls.PORTUGUESE_PORTUGAL + + # Make noise if we come across something unexpected so we + # can add it. + fallback = cls.PORTUGUESE_BRAZIL + logging.warning( + '%s: Unknown Portuguese tag variant "%s"; returning %s.', + cls.__name__, + tag, + fallback.name, + ) + return fallback + if lang == 'es': + # With no extras, default to latin-america spanish. + if not extras or any( + val in extras + for val in [ + '419', + 'mx', + 'ar', + 'co', + 'cl', + 'pe', + 've', + 'cr', + 'pr', + 'do', + 'uy', + 'ec', + 'pa', + ] + ): + return cls.SPANISH_LATIN_AMERICA + if 'es' in extras: + return cls.SPANISH_SPAIN + + # Make noise if we come across something unexpected so we + # can add it. + fallback = cls.SPANISH_LATIN_AMERICA + logging.warning( + '%s: Unknown Spanish tag variant "%s"; returning %s.', + cls.__name__, + tag, + fallback.name, + ) + return fallback + if lang == 'ar': + return cls.ARABIC + if lang == 'be': + return cls.BELARUSSIAN + if lang == 'hr': + return cls.CROATIAN + if lang == 'cs': + return cls.CZECH + if lang == 'da': + return cls.DANISH + if lang == 'nl': + return cls.DUTCH + if lang == 'eo': + return cls.ESPERANTO + if lang == 'fil': + return cls.FILIPINO + if lang == 'fr': + return cls.FRENCH + if lang == 'de': + return cls.GERMAN + if lang == 'el': + return cls.GREEK + if lang == 'hi': + return cls.HINDI + if lang == 'hu': + return cls.HUNGARIAN + if lang == 'id': + return cls.INDONESIAN + if lang == 'it': + return cls.ITALIAN + if lang == 'ko': + return cls.KOREAN + if lang == 'ms': + return cls.MALAY + if lang == 'fa': + return cls.PERSIAN + if lang == 'pl': + return cls.POLISH + if lang == 'ro': + return cls.ROMANIAN + if lang == 'ru': + return cls.RUSSIAN + if lang == 'sr': + return cls.SERBIAN + if lang == 'sk': + return cls.SLOVAK + if lang == 'sv': + return cls.SWEDISH + if lang == 'ta': + return cls.TAMIL + if lang == 'th': + return cls.THAI + if lang == 'tr': + return cls.TURKISH + if lang == 'uk': + return cls.UKRAINIAN + if lang == 'vec': + return cls.VENETIAN + if lang == 'vi': + return cls.VIETNAMESE + + # Make noise if we come across something unexpected so we can + # add it. + fallback = cls.ENGLISH + logging.warning( + '%s: Unknown tag "%s"; returning %s.', + cls.__name__, + tag, + fallback.name, + ) + return fallback diff --git a/dist/ba_data/python/bacommon/loggercontrol.py b/dist/ba_data/python/bacommon/loggercontrol.py new file mode 100644 index 0000000..e07e811 --- /dev/null +++ b/dist/ba_data/python/bacommon/loggercontrol.py @@ -0,0 +1,212 @@ +# Released under the MIT License. See LICENSE for details. +# +"""System for managing loggers.""" + +from __future__ import annotations + +import logging +from typing import TYPE_CHECKING, Annotated +from dataclasses import dataclass, field + +from efro.dataclassio import ioprepped, IOAttrs + +if TYPE_CHECKING: + from typing import Self, Sequence + + +@ioprepped +@dataclass +class LoggerControlConfig: + """A logging level configuration that applies to all loggers. + + Any loggers not explicitly contained in the configuration will be + set to NOTSET. + """ + + # Logger names mapped to log-level values (from system logging + # module). + levels: Annotated[dict[str, int], IOAttrs('l', store_default=False)] = ( + field(default_factory=dict) + ) + + def apply( + self, + *, + warn_unexpected_loggers: bool = False, + warn_missing_loggers: bool = False, + ignore_log_prefixes: list[str] | None = None, + ) -> None: + """Apply the config to all Python loggers. + + If 'warn_unexpected_loggers' is True, warnings will be issues for + any loggers not explicitly covered by the config. This is useful + to help ensure controls for all possible loggers are present in + a UI/etc. + + If 'warn_missing_loggers' is True, warnings will be issued for + any loggers present in the config that are not found at apply time. + This can be useful for pruning settings for no longer used loggers. + + Warnings for any log names beginning with any strings in + 'ignore_log_prefixes' will be suppressed. This can allow + ignoring loggers associated with submodules for a given package + and instead presenting only a top level logger (or none at all). + """ + if ignore_log_prefixes is None: + ignore_log_prefixes = [] + + existinglognames = ( + set(['root']) | logging.root.manager.loggerDict.keys() + ) + + # First issue any warnings they want. + if warn_unexpected_loggers: + for logname in sorted(existinglognames): + if logname not in self.levels and not any( + logname.startswith(pre) for pre in ignore_log_prefixes + ): + logging.warning( + 'Found a logger not covered by LoggerControlConfig:' + " '%s'.", + logname, + ) + if warn_missing_loggers: + for logname in sorted(self.levels.keys()): + if logname not in existinglognames and not any( + logname.startswith(pre) for pre in ignore_log_prefixes + ): + logging.warning( + 'Logger covered by LoggerControlConfig does not exist:' + ' %s.', + logname, + ) + + # First, update levels for all existing loggers. + for logname in existinglognames: + logger = logging.getLogger(logname) + level = self.levels.get(logname) + if level is None: + level = logging.NOTSET + logger.setLevel(level) + + # Next, assign levels to any loggers that don't exist. + for logname, level in self.levels.items(): + if logname not in existinglognames: + logging.getLogger(logname).setLevel(level) + + def sanity_check_effective_levels(self) -> None: + """Checks existing loggers to make sure they line up with us. + + This can be called periodically to ensure that a control-config + is properly driving log levels and that nothing else is changing + them behind our back. + """ + + existinglognames = ( + set(['root']) | logging.root.manager.loggerDict.keys() + ) + for logname in existinglognames: + logger = logging.getLogger(logname) + if logger.getEffectiveLevel() != self.get_effective_level(logname): + logging.error( + 'loggercontrol effective-level sanity check failed;' + ' expected logger %s to have effective level %s' + ' but it has %s.', + logname, + logging.getLevelName(self.get_effective_level(logname)), + logging.getLevelName(logger.getEffectiveLevel()), + ) + + def get_effective_level(self, logname: str) -> int: + """Given a log name, predict its level if this config is applied.""" + splits = logname.split('.') + + splen = len(splits) + for i in range(splen): + subname = '.'.join(splits[: splen - i]) + thisval = self.levels.get(subname) + if thisval is not None and thisval != logging.NOTSET: + return thisval + + # Haven't found anything; just return root value. + thisval = self.levels.get('root') + return ( + logging.DEBUG + if thisval is None + else logging.DEBUG if thisval == logging.NOTSET else thisval + ) + + def would_make_changes(self) -> bool: + """Return whether calling apply would change anything.""" + + existinglognames = ( + set(['root']) | logging.root.manager.loggerDict.keys() + ) + + # Return True if we contain any nonexistent loggers. Even if + # we wouldn't change their level, the fact that we'd create + # them still counts as a difference. + if any( + logname not in existinglognames for logname in self.levels.keys() + ): + return True + + # Now go through all existing loggers and return True if we + # would change their level. + for logname in existinglognames: + logger = logging.getLogger(logname) + level = self.levels.get(logname) + if level is None: + level = logging.NOTSET + if logger.level != level: + return True + + return False + + def diff(self, baseconfig: LoggerControlConfig) -> LoggerControlConfig: + """Return a config containing only changes compared to a base config. + + Note that this omits all NOTSET values that resolve to NOTSET in + the base config. + + This diffed config can later be used with apply_diff() against the + base config to recreate the state represented by self. + """ + cls = type(self) + config = cls() + for loggername, level in self.levels.items(): + baselevel = baseconfig.levels.get(loggername, logging.NOTSET) + if level != baselevel: + config.levels[loggername] = level + return config + + def apply_diff( + self, diffconfig: LoggerControlConfig + ) -> LoggerControlConfig: + """Apply a diff config to ourself. + + Note that values that resolve to NOTSET are left intact in the + output config. This is so all loggers expected by either the + base or diff config to exist can be created if desired/etc. + """ + cls = type(self) + + # Create a new config (with an indepenent levels dict copy). + config = cls(levels=dict(self.levels)) + + # Overlay the diff levels dict onto our new one. + config.levels.update(diffconfig.levels) + + # Note: we do NOT prune NOTSET values here. This is so all + # loggers mentioned in the base config get created if we are + # applied, even if they are assigned a default level. + return config + + @classmethod + def from_current_loggers(cls) -> Self: + """Build a config from the current set of loggers.""" + lognames = ['root'] + sorted(logging.root.manager.loggerDict) + config = cls() + for logname in lognames: + config.levels[logname] = logging.getLogger(logname).level + return config diff --git a/dist/ba_data/python/bacommon/logging.py b/dist/ba_data/python/bacommon/logging.py new file mode 100644 index 0000000..723c9fc --- /dev/null +++ b/dist/ba_data/python/bacommon/logging.py @@ -0,0 +1,27 @@ +# Released under the MIT License. See LICENSE for details. +# +"""Logging functionality.""" + +from __future__ import annotations + +import logging +from typing import TYPE_CHECKING +from bacommon.loggercontrol import LoggerControlConfig + +if TYPE_CHECKING: + pass + + +def get_base_logger_control_config_client() -> LoggerControlConfig: + """Return the logger-control-config used by the ballistica client. + + This should remain consistent since local logger configurations + are stored relative to this. + """ + + # By default, go with WARNING on everything to keep things mostly + # clean but show INFO for ba.app to get basic app startup messages + # and whatnot. + return LoggerControlConfig( + levels={'root': logging.WARNING, 'ba.app': logging.INFO} + ) diff --git a/dist/ba_data/python/bacommon/login.py b/dist/ba_data/python/bacommon/login.py index c1531c5..7fc3729 100644 --- a/dist/ba_data/python/bacommon/login.py +++ b/dist/ba_data/python/bacommon/login.py @@ -20,18 +20,18 @@ if TYPE_CHECKING: class LoginType(Enum): """Types of logins available.""" - # Email/password + #: Email/password EMAIL = 'email' - # Google Play Game Services + #: Google Play Game Services GPGS = 'gpgs' - # Apple's Game Center + #: Apple's Game Center GAME_CENTER = 'game_center' @property def displayname(self) -> str: - """Human readable name for this value.""" + """A human readable name for this value.""" cls = type(self) match self: case cls.EMAIL: @@ -43,7 +43,7 @@ class LoginType(Enum): @property def displaynameshort(self) -> str: - """Human readable name for this value.""" + """A short human readable name for this value.""" cls = type(self) match self: case cls.EMAIL: diff --git a/dist/ba_data/python/bacommon/securedata.py b/dist/ba_data/python/bacommon/securedata.py new file mode 100644 index 0000000..2b4d740 --- /dev/null +++ b/dist/ba_data/python/bacommon/securedata.py @@ -0,0 +1,56 @@ +# Released under the MIT License. See LICENSE for details. +# +"""Functionality related to verifying ballistica server generated data.""" + +import datetime +from dataclasses import dataclass +from typing import TYPE_CHECKING, Annotated + +from efro.util import utc_now +from efro.dataclassio import ioprepped, IOAttrs + +if TYPE_CHECKING: + pass + + +@ioprepped +@dataclass +class SecureDataChecker: + """Verifies data as being signed by our master server.""" + + # Time period this checker is valid for. + starttime: Annotated[datetime.datetime, IOAttrs('s')] + endtime: Annotated[datetime.datetime, IOAttrs('e')] + + # Current set of public keys. + publickeys: Annotated[list[bytes], IOAttrs('k')] + + def check(self, data: bytes, signature: bytes) -> bool: + """Verify data, returning True if successful. + + Note that this call imports and uses the cryptography module and + can be slow; it generally should be done in a background thread + or on a server. + """ + from cryptography.hazmat.primitives.asymmetric import ed25519 + from cryptography.exceptions import InvalidSignature + + now = utc_now() + + # Make sure we seem valid based on local time. + if now < self.starttime: + raise RuntimeError('SecureDataChecker starttime is in the future.') + if now > self.endtime: + raise RuntimeError('SecureDataChecker endtime is in the past.') + + # Try our keys from newest to oldest. Most stuff will be using + # the newest key so this should be most efficient. + for key in reversed(self.publickeys): + try: + publickey = ed25519.Ed25519PublicKey.from_public_bytes(key) + publickey.verify(signature, data) + return True + except InvalidSignature: + pass + + return False diff --git a/dist/ba_data/python/bacommon/servermanager.py b/dist/ba_data/python/bacommon/servermanager.py index 31f235f..20b9f4e 100644 --- a/dist/ba_data/python/bacommon/servermanager.py +++ b/dist/ba_data/python/bacommon/servermanager.py @@ -186,6 +186,11 @@ class ServerConfig: # involving leaving and rejoining or switching teams rapidly. player_rejoin_cooldown: float = 10.0 + # Log levels for particular loggers, overriding the engine's + # defaults. Valid values are NOTSET, DEBUG, INFO, WARNING, ERROR, or + # CRITICAL. + log_levels: dict[str, str] | None = None + # NOTE: as much as possible, communication from the server-manager to # the child-process should go through these and not ad-hoc Python string diff --git a/dist/ba_data/python/bacommon/workspace/__init__.py b/dist/ba_data/python/bacommon/workspace/__init__.py index c17a0f0..2a14ba7 100644 --- a/dist/ba_data/python/bacommon/workspace/__init__.py +++ b/dist/ba_data/python/bacommon/workspace/__init__.py @@ -1,3 +1,3 @@ # Released under the MIT License. See LICENSE for details. # -"""Workspace functionality.""" +"""Functionality related to ballistica.net workspaces.""" diff --git a/dist/ba_data/python/bacommon/workspace/assetsv1.py b/dist/ba_data/python/bacommon/workspace/assetsv1.py index 7047c31..eb067ca 100644 --- a/dist/ba_data/python/bacommon/workspace/assetsv1.py +++ b/dist/ba_data/python/bacommon/workspace/assetsv1.py @@ -10,11 +10,13 @@ settings that are not accessible through the UI/etc. from __future__ import annotations +import datetime from enum import Enum -from dataclasses import dataclass +from dataclasses import dataclass, field from typing import TYPE_CHECKING, Annotated, override, assert_never from efro.dataclassio import ioprepped, IOAttrs, IOMultiType +from bacommon.locale import Locale if TYPE_CHECKING: @@ -35,10 +37,84 @@ class AssetsV1GlobalVals: ] = '' +class AssetsV1StrInputTypeID(Enum): + """Type ID for each of our subclasses.""" + + BASIC = 'b' + + +class AssetsV1StrInput(IOMultiType[AssetsV1StrInputTypeID]): + """Top level class for our multitype.""" + + @override + @classmethod + def get_type_id(cls) -> AssetsV1StrInputTypeID: + # Require child classes to supply this themselves. If we did a + # full type registry/lookup here it would require us to import + # everything and would prevent lazy loading. + raise NotImplementedError() + + @override + @classmethod + def get_type( + cls, type_id: AssetsV1StrInputTypeID + ) -> type[AssetsV1StrInput]: + """Return the subclass for each of our type-ids.""" + # pylint: disable=cyclic-import + + t = AssetsV1StrInputTypeID + if type_id is t.BASIC: + return BasicV1StrInput + + # Important to make sure we provide all types. + assert_never(type_id) + + +@ioprepped +@dataclass +class BasicV1StrInput(AssetsV1StrInput): + """Just a test.""" + + @override + @classmethod + def get_type_id(cls) -> AssetsV1StrInputTypeID: + return AssetsV1StrInputTypeID.BASIC + + +@ioprepped +@dataclass +class AssetsV1StrData: + """Data and output for a string asset.""" + + @dataclass + class Output: + """Represents a single instance of localized output.""" + + class Source(Enum): + """Where localized output can come from.""" + + AI_V1 = 'ai_v1' + + output_id: Annotated[int, IOAttrs('i')] + created: Annotated[datetime.datetime, IOAttrs('c')] + source: Annotated[Source, IOAttrs('s')] + locale: Annotated[Locale, IOAttrs('l')] + value_default: Annotated[ + str | None, IOAttrs('d', store_default=False) + ] = None + + inputs: Annotated[list[AssetsV1StrInput], IOAttrs('i')] = field( + default_factory=list + ) + outputs: Annotated[list[Output], IOAttrs('o')] = field(default_factory=list) + next_output_id: Annotated[int, IOAttrs('n')] = 0 + + class AssetsV1PathValsTypeID(Enum): """Types of vals we can store for paths.""" TEX_V1 = 'tex_v1' + # STR_V1 = 'str_v1' class AssetsV1PathVals(IOMultiType[AssetsV1PathValsTypeID]): @@ -63,15 +139,13 @@ class AssetsV1PathVals(IOMultiType[AssetsV1PathValsTypeID]): cls, type_id: AssetsV1PathValsTypeID ) -> type[AssetsV1PathVals]: # pylint: disable=cyclic-import - out: type[AssetsV1PathVals] t = AssetsV1PathValsTypeID if type_id is t.TEX_V1: - out = AssetsV1PathValsTexV1 - else: - # Important to make sure we provide all types. - assert_never(type_id) - return out + return AssetsV1PathValsTexV1 + + # Important to make sure we provide all types. + assert_never(type_id) @ioprepped diff --git a/dist/ba_data/python/baenv.py b/dist/ba_data/python/baenv.py index a087524..0f8d971 100644 --- a/dist/ba_data/python/baenv.py +++ b/dist/ba_data/python/baenv.py @@ -1,11 +1,11 @@ # Released under the MIT License. See LICENSE for details. # -"""Manage ballistica execution environment. +"""Manage Ballistica execution environment. This module is used to set up and/or check the global Python environment -before running a ballistica app. This includes things such as paths, +before running a Ballistica app. This includes things such as paths, logging, and app-dirs. Because these things are global in nature, this -should be done before any ballistica modules are imported. +should be done before any Ballistica modules are imported. This module can also be exec'ed directly to set up a default environment and then run the app. @@ -18,6 +18,7 @@ from __future__ import annotations import os import sys +import time import logging from pathlib import Path from dataclasses import dataclass @@ -27,7 +28,7 @@ import __main__ if TYPE_CHECKING: from typing import Any - from efro.log import LogHandler + from efro.logging import LogHandler # IMPORTANT - It is likely (and in some cases expected) that this # module's code will be exec'ed multiple times. This is because it is @@ -52,58 +53,56 @@ if TYPE_CHECKING: # Build number and version of the ballistica binary we expect to be # using. -TARGET_BALLISTICA_BUILD = 21949 -TARGET_BALLISTICA_VERSION = '1.7.37' +TARGET_BALLISTICA_BUILD = 22381 +TARGET_BALLISTICA_VERSION = '1.7.41' @dataclass class EnvConfig: """Final config values we provide to the engine.""" - # Where app config/state data lives. + #: Where app config/state data lives. config_dir: str - # Directory containing ba_data and any other platform-specific data. + #: Directory containing ba_data and any other platform-specific data. data_dir: str - # Where the app's built-in Python stuff lives. + #: Where the app's built-in Python stuff lives. app_python_dir: str | None - # Where the app's built-in Python stuff lives in the default case. + #: Where the app's built-in Python stuff lives in the default case. standard_app_python_dir: str - # Where the app's bundled third party Python stuff lives. + #: Where the app's bundled third party Python stuff lives. site_python_dir: str | None - # Custom Python provided by the user (mods). + #: Custom Python provided by the user (mods). user_python_dir: str | None - # We have a mechanism allowing app scripts to be overridden by - # placing a specially named directory in a user-scripts dir. - # This is true if that is enabled. + #: We have a mechanism allowing app scripts to be overridden by + #: placing a specially named directory in a user-scripts dir. This is + #: true if that is enabled. is_user_app_python_dir: bool - # Our fancy app log handler. This handles feeding logs, stdout, and - # stderr into the engine so they show up on in-app consoles, etc. + #: Our fancy app log handler. This handles feeding logs, stdout, and + #: stderr into the engine so they show up on in-app consoles, etc. log_handler: LogHandler | None - # Initial data from the ballisticakit-config.json file. This is - # passed mostly as an optimization to avoid reading the same config - # file twice, since config data is first needed in baenv and next in - # the engine. It will be cleared after passing it to the app's - # config management subsystem and should not be accessed by any - # other code. + #: Initial data from the config.json file in the config dir. The + #: config file is parsed by initial_app_config: Any + #: Timestamp when we first started doing stuff. + launch_time: float + @dataclass class _EnvGlobals: """Globals related to baenv's operation. - We store this in __main__ instead of in our own module because it - is likely that multiple versions of our module will be spun up - and we want a single set of globals (see notes at top of our module - code). + We store this in __main__ instead of in our own module because it is + likely that multiple versions of our module will be spun up and we + want a single set of globals (see notes at top of our module code). """ config: EnvConfig | None = None @@ -156,6 +155,7 @@ def get_config() -> EnvConfig: def configure( + *, config_dir: str | None = None, data_dir: str | None = None, user_python_dir: str | None = None, @@ -171,6 +171,11 @@ def configure( are imported; the environment is locked in as soon as that happens. """ + # Measure when we start doing this stuff. We plug this in to show + # relative times in our log timestamp displays and also pass this to + # the engine to do the same there. + launch_time = time.time() + envglobals = _EnvGlobals.get() # Keep track of whether we've been *called*, not whether a config @@ -205,11 +210,19 @@ def configure( config_dir, ) - # The second thing we do is set up our logging system and pipe - # Python's stdout/stderr into it. At this point we can at least - # debug problems on systems where native stdout/stderr is not easily - # accessible such as Android. - log_handler = _setup_logging() if setup_logging else None + # Set up our log-handler and pipe Python's stdout/stderr into it. + # Later, once the engine comes up, the handler will feed its logs + # (including cached history) to the os-specific output location. + # This means anything printed or logged at this point forward should + # be visible on all platforms. + log_handler = _create_log_handler(launch_time) if setup_logging else None + + # Load the raw app-config dict. + app_config = _read_app_config(os.path.join(config_dir, 'config.json')) + + # Set logging levels to stored values or defaults. + if setup_logging: + _set_log_levels(app_config) # We want to always be run in UTF-8 mode; complain if we're not. if sys.flags.utf8_mode != 1: @@ -234,10 +247,46 @@ def configure( site_python_dir=site_python_dir, log_handler=log_handler, is_user_app_python_dir=is_user_app_python_dir, - initial_app_config=None, + initial_app_config=app_config, + launch_time=launch_time, ) +def _read_app_config(config_file_path: str) -> dict: + """Read the app config.""" + import json + + config: dict | Any + config_contents = '' + try: + if os.path.exists(config_file_path): + with open(config_file_path, encoding='utf-8') as infile: + config_contents = infile.read() + config = json.loads(config_contents) + if not isinstance(config, dict): + raise RuntimeError('Got non-dict for config root.') + else: + config = {} + + except Exception: + logging.exception( + "Error reading config file '%s'.\n" + "Backing up broken config to'%s.broken'.", + config_file_path, + config_file_path, + ) + + try: + import shutil + + shutil.copyfile(config_file_path, config_file_path + '.broken') + except Exception: + logging.exception('Error copying broken config.') + config = {} + + return config + + def _calc_data_dir(data_dir: str | None) -> str: if data_dir is None: # To calc default data_dir, we assume this module was imported @@ -261,23 +310,58 @@ def _calc_data_dir(data_dir: str | None) -> str: return data_dir -def _setup_logging() -> LogHandler: - from efro.log import setup_logging, LogLevel +def _create_log_handler(launch_time: float) -> LogHandler: + from efro.logging import setup_logging, LogLevel - # TODO: should set this up with individual loggers under a top level - # 'ba' logger, and at that point we can kill off the - # suppress_non_root_debug option since we'll only ever need to set - # 'ba' to DEBUG at most. log_handler = setup_logging( log_path=None, - level=LogLevel.DEBUG, - suppress_non_root_debug=True, + level=LogLevel.INFO, log_stdout_stderr=True, cache_size_limit=1024 * 1024, + launch_time=launch_time, ) return log_handler +def _set_log_levels(app_config: dict) -> None: + + from bacommon.logging import get_base_logger_control_config_client + from bacommon.loggercontrol import LoggerControlConfig + + try: + config = app_config.get('Log Levels', None) + + if config is None: + get_base_logger_control_config_client().apply() + return + + # Make sure data is expected types/values since this is user + # editable. + valid_levels = { + logging.NOTSET, + logging.DEBUG, + logging.INFO, + logging.WARNING, + logging.ERROR, + logging.CRITICAL, + } + for logname, loglevel in config.items(): + if ( + not isinstance(logname, str) + or not logname + or not isinstance(loglevel, int) + or not loglevel in valid_levels + ): + raise ValueError("Invalid 'Log Levels' data read from config.") + + get_base_logger_control_config_client().apply_diff( + LoggerControlConfig(levels=config) + ).apply() + + except Exception: + logging.exception('Error setting log levels.') + + def _setup_certs(contains_python_dist: bool) -> None: # In situations where we're bringing our own Python, let's also # provide our own root certs so ssl works. We can consider diff --git a/dist/ba_data/python/baplus/__init__.py b/dist/ba_data/python/baplus/__init__.py index 4040f7b..6242173 100644 --- a/dist/ba_data/python/baplus/__init__.py +++ b/dist/ba_data/python/baplus/__init__.py @@ -3,25 +3,25 @@ """Closed-source bits of ballistica. This code concerns sensitive things like accounts and master-server -communication so the native C++ parts of it remain closed. Native +communication, so the native C++ parts of it remain closed. Native precompiled static libraries of this portion are provided for those who -want to compile the rest of the engine, and a fully open-source engine -can also be built by removing this 'plus' feature-set. +want to compile the rest of the engine, or a fully open-source app can +also be built by removing this feature-set. """ from __future__ import annotations -# Note: there's not much here. -# All comms with this feature-set should go through app.plus. +# Note: there's not much here. Most interaction with this feature-set +# should go through ba*.app.plus. import logging from baplus._cloud import CloudSubsystem -from baplus._subsystem import PlusSubsystem +from baplus._appsubsystem import PlusAppSubsystem __all__ = [ 'CloudSubsystem', - 'PlusSubsystem', + 'PlusAppSubsystem', ] # Sanity check: we want to keep ballistica's dependencies and diff --git a/dist/ba_data/python/baplus/_subsystem.py b/dist/ba_data/python/baplus/_appsubsystem.py similarity index 70% rename from dist/ba_data/python/baplus/_subsystem.py rename to dist/ba_data/python/baplus/_appsubsystem.py index c5ef5ff..5712a00 100644 --- a/dist/ba_data/python/baplus/_subsystem.py +++ b/dist/ba_data/python/baplus/_appsubsystem.py @@ -12,18 +12,19 @@ import _baplus if TYPE_CHECKING: from typing import Callable, Any + import bacommon.bs from babase import AccountV2Subsystem from baplus._cloud import CloudSubsystem -class PlusSubsystem(AppSubsystem): +class PlusAppSubsystem(AppSubsystem): """Subsystem for plus functionality in the app. - The single shared instance of this app can be accessed at - babase.app.plus. Note that it is possible for this to be None if the - plus package is not present, and code should handle that case - gracefully. + Access the single shared instance of this class via the + :attr:`~babase.App.plus` attr on the :class:`~babase.App` class. + Note that it is possible for this to be ``None`` if the plus package + is not present, so code should handle that case gracefully. """ # pylint: disable=too-many-public-methods @@ -37,181 +38,172 @@ class PlusSubsystem(AppSubsystem): @override def on_app_loading(self) -> None: + """:meta private:""" _baplus.on_app_loading() self.accounts.on_app_loading() - # noinspection PyUnresolvedReferences @staticmethod def add_v1_account_transaction( transaction: dict, callback: Callable | None = None ) -> None: - """(internal)""" + """:meta private:""" return _baplus.add_v1_account_transaction(transaction, callback) @staticmethod def game_service_has_leaderboard(game: str, config: str) -> bool: - """(internal) + """Given a game and config string, returns whether there is a + leaderboard for it on the game service. - Given a game and config string, returns whether there is a leaderboard - for it on the game service. + :meta private: """ return _baplus.game_service_has_leaderboard(game, config) @staticmethod def get_master_server_address(source: int = -1, version: int = 1) -> str: - """(internal) + """Return the address of the master server. - Return the address of the master server. + :meta private: """ return _baplus.get_master_server_address(source, version) @staticmethod - def get_news_show() -> str: - """(internal)""" - return _baplus.get_news_show() + def get_classic_news_show() -> str: + """:meta private:""" + return _baplus.get_classic_news_show() @staticmethod def get_price(item: str) -> str | None: - """(internal)""" + """:meta private:""" return _baplus.get_price(item) @staticmethod - def get_purchased(item: str) -> bool: - """(internal)""" - return _baplus.get_purchased(item) + def get_v1_account_product_purchased(item: str) -> bool: + """:meta private:""" + return _baplus.get_v1_account_product_purchased(item) @staticmethod - def get_purchases_state() -> int: - """(internal)""" - return _baplus.get_purchases_state() + def get_v1_account_product_purchases_state() -> int: + """:meta private:""" + return _baplus.get_v1_account_product_purchases_state() @staticmethod def get_v1_account_display_string(full: bool = True) -> str: - """(internal)""" + """:meta private:""" return _baplus.get_v1_account_display_string(full) @staticmethod def get_v1_account_misc_read_val(name: str, default_value: Any) -> Any: - """(internal)""" + """:meta private:""" return _baplus.get_v1_account_misc_read_val(name, default_value) @staticmethod def get_v1_account_misc_read_val_2(name: str, default_value: Any) -> Any: - """(internal)""" + """:meta private:""" return _baplus.get_v1_account_misc_read_val_2(name, default_value) @staticmethod def get_v1_account_misc_val(name: str, default_value: Any) -> Any: - """(internal)""" + """:meta private:""" return _baplus.get_v1_account_misc_val(name, default_value) @staticmethod def get_v1_account_name() -> str: - """(internal)""" + """:meta private:""" return _baplus.get_v1_account_name() @staticmethod def get_v1_account_public_login_id() -> str | None: - """(internal)""" + """:meta private:""" return _baplus.get_v1_account_public_login_id() @staticmethod def get_v1_account_state() -> str: - """(internal)""" + """:meta private:""" return _baplus.get_v1_account_state() @staticmethod def get_v1_account_state_num() -> int: - """(internal)""" + """:meta private:""" return _baplus.get_v1_account_state_num() @staticmethod def get_v1_account_ticket_count() -> int: - """(internal) + """Return the number of tickets for the current account. - Returns the number of tickets for the current account. + :meta private: """ return _baplus.get_v1_account_ticket_count() @staticmethod def get_v1_account_type() -> str: - """(internal)""" + """:meta private:""" return _baplus.get_v1_account_type() @staticmethod def get_v2_fleet() -> str: - """(internal)""" + """:meta private:""" return _baplus.get_v2_fleet() @staticmethod def have_outstanding_v1_account_transactions() -> bool: - """(internal)""" + """:meta private:""" return _baplus.have_outstanding_v1_account_transactions() @staticmethod def in_game_purchase(item: str, price: int) -> None: - """(internal)""" + """:meta private:""" return _baplus.in_game_purchase(item, price) @staticmethod def is_blessed() -> bool: - """(internal)""" + """:meta private:""" return _baplus.is_blessed() @staticmethod def mark_config_dirty() -> None: - """(internal) - - Category: General Utility Functions - """ + """:meta private:""" return _baplus.mark_config_dirty() @staticmethod def power_ranking_query(callback: Callable, season: Any = None) -> None: - """(internal)""" + """:meta private:""" return _baplus.power_ranking_query(callback, season) @staticmethod def purchase(item: str) -> None: - """(internal)""" + """:meta private:""" return _baplus.purchase(item) @staticmethod def report_achievement( achievement: str, pass_to_account: bool = True ) -> None: - """(internal)""" + """:meta private:""" return _baplus.report_achievement(achievement, pass_to_account) @staticmethod def reset_achievements() -> None: - """(internal)""" + """:meta private:""" return _baplus.reset_achievements() @staticmethod def restore_purchases() -> None: - """(internal)""" + """:meta private:""" return _baplus.restore_purchases() @staticmethod def run_v1_account_transactions() -> None: - """(internal)""" + """:meta private:""" return _baplus.run_v1_account_transactions() @staticmethod def sign_in_v1(account_type: str) -> None: - """(internal) - - Category: General Utility Functions - """ + """:meta private:""" return _baplus.sign_in_v1(account_type) @staticmethod def sign_out_v1(v2_embedded: bool = False) -> None: - """(internal) - - Category: General Utility Functions - """ + """:meta private:""" return _baplus.sign_out_v1(v2_embedded) @staticmethod @@ -221,18 +213,21 @@ class PlusSubsystem(AppSubsystem): name: Any, score: int | None, callback: Callable, + *, order: str = 'increasing', tournament_id: str | None = None, score_type: str = 'points', campaign: str | None = None, level: str | None = None, ) -> None: - """(internal) + """Submit a score to the server. - Submit a score to the server; callback will be called with the results. - As a courtesy, please don't send fake scores to the server. I'd prefer - to devote my time to improving the game instead of trying to make the - score server more mischief-proof. + Callback will be called with the results. As a courtesy, please + don't send fake scores to the server. I'd prefer to devote my + time to improving the game instead of trying to make the score + server more mischief-proof. + + :meta private: """ return _baplus.submit_score( game, @@ -251,41 +246,59 @@ class PlusSubsystem(AppSubsystem): def tournament_query( callback: Callable[[dict | None], None], args: dict ) -> None: - """(internal)""" + """:meta private:""" return _baplus.tournament_query(callback, args) @staticmethod def supports_purchases() -> bool: - """Does this platform support in-app-purchases?""" + """Does this platform support in-app-purchases? + + :meta private: + """ return _baplus.supports_purchases() @staticmethod def have_incentivized_ad() -> bool: - """Is an incentivized ad available?""" + """Is an incentivized ad available? + + :meta private: + """ return _baplus.have_incentivized_ad() @staticmethod def has_video_ads() -> bool: - """Are video ads available?""" + """Are video ads available? + + :meta private: + """ return _baplus.has_video_ads() @staticmethod def can_show_ad() -> bool: - """Can we show an ad?""" + """Can we show an ad? + + :meta private: + """ return _baplus.can_show_ad() @staticmethod def show_ad( purpose: str, on_completion_call: Callable[[], None] | None = None ) -> None: - """Show an ad.""" + """Show an ad. + + :meta private: + """ _baplus.show_ad(purpose, on_completion_call) @staticmethod def show_ad_2( purpose: str, on_completion_call: Callable[[bool], None] | None = None ) -> None: - """Show an ad.""" + """Show an ad. + + :meta private: + """ _baplus.show_ad_2(purpose, on_completion_call) @staticmethod @@ -294,5 +307,8 @@ class PlusSubsystem(AppSubsystem): game: str | None = None, game_version: str | None = None, ) -> None: - """Show game-service provided UI.""" + """Show game-service provided UI. + + :meta private: + """ _baplus.show_game_service_ui(show, game, game_version) diff --git a/dist/ba_data/python/baplus/_cloud.py b/dist/ba_data/python/baplus/_cloud.py index 0fcc0ae..ca5042cd 100644 --- a/dist/ba_data/python/baplus/_cloud.py +++ b/dist/ba_data/python/baplus/_cloud.py @@ -7,6 +7,7 @@ from __future__ import annotations import logging from typing import TYPE_CHECKING, overload +from efro.call import CallbackSet import babase if TYPE_CHECKING: @@ -14,8 +15,8 @@ if TYPE_CHECKING: from efro.message import Message, Response import bacommon.cloud + import bacommon.bs -DEBUG_LOG = False # TODO: Should make it possible to define a protocol in bacommon.cloud and # autogenerate this. That would give us type safety between this and @@ -23,32 +24,51 @@ DEBUG_LOG = False class CloudSubsystem(babase.AppSubsystem): - """Manages communication with cloud components.""" + """Manages communication with cloud components. + + Access the shared single instance of this class via the + :attr:`~baplus.PlusAppSubsystem.cloud` attr on the + :class:`~baplus.PlusAppSubsystem` class. + """ + + def __init__(self) -> None: + super().__init__() + self.on_connectivity_changed_callbacks: CallbackSet[ + Callable[[bool], None] + ] = CallbackSet() @property def connected(self) -> bool: - """Property equivalent of CloudSubsystem.is_connected().""" - return self.is_connected() - - def is_connected(self) -> bool: - """Return whether a connection to the cloud is present. + """Whether a connection to the cloud is present. This is a good indicator (though not for certain) that sending messages will succeed. """ - return False # Needs to be overridden + return self.is_connected() + + def is_connected(self) -> bool: + """Implementation for connected attr. + + :meta private: + """ + raise NotImplementedError() def on_connectivity_changed(self, connected: bool) -> None: - """Called when cloud connectivity state changes.""" - if DEBUG_LOG: - logging.debug('CloudSubsystem: Connectivity is now %s.', connected) + """Called when cloud connectivity state changes. + + :meta private: + """ + babase.balog.debug('Connectivity is now %s.', connected) plus = babase.app.plus assert plus is not None - # Inform things that use this. - # (TODO: should generalize this into some sort of registration system) - plus.accounts.on_cloud_connectivity_changed(connected) + # Fire any registered callbacks for this. + for call in self.on_connectivity_changed_callbacks.getcalls(): + try: + call(connected) + except Exception: + logging.exception('Error in connectivity-changed callback.') @overload def send_message_cb( @@ -112,9 +132,72 @@ class CloudSubsystem(babase.AppSubsystem): @overload def send_message_cb( self, - msg: bacommon.cloud.BSPrivatePartyMessage, + msg: bacommon.bs.PrivatePartyMessage, on_response: Callable[ - [bacommon.cloud.BSPrivatePartyResponse | Exception], None + [bacommon.bs.PrivatePartyResponse | Exception], None + ], + ) -> None: ... + + @overload + def send_message_cb( + self, + msg: bacommon.bs.InboxRequestMessage, + on_response: Callable[ + [bacommon.bs.InboxRequestResponse | Exception], None + ], + ) -> None: ... + + @overload + def send_message_cb( + self, + msg: bacommon.bs.ClientUIActionMessage, + on_response: Callable[ + [bacommon.bs.ClientUIActionResponse | Exception], None + ], + ) -> None: ... + + @overload + def send_message_cb( + self, + msg: bacommon.bs.ChestInfoMessage, + on_response: Callable[ + [bacommon.bs.ChestInfoResponse | Exception], None + ], + ) -> None: ... + + @overload + def send_message_cb( + self, + msg: bacommon.bs.ChestActionMessage, + on_response: Callable[ + [bacommon.bs.ChestActionResponse | Exception], None + ], + ) -> None: ... + + @overload + def send_message_cb( + self, + msg: bacommon.bs.ScoreSubmitMessage, + on_response: Callable[ + [bacommon.bs.ScoreSubmitResponse | Exception], None + ], + ) -> None: ... + + @overload + def send_message_cb( + self, + msg: bacommon.cloud.SecureDataCheckMessage, + on_response: Callable[ + [bacommon.cloud.SecureDataCheckResponse | Exception], None + ], + ) -> None: ... + + @overload + def send_message_cb( + self, + msg: bacommon.cloud.SecureDataCheckerRequest, + on_response: Callable[ + [bacommon.cloud.SecureDataCheckerResponse | Exception], None ], ) -> None: ... @@ -125,17 +208,11 @@ class CloudSubsystem(babase.AppSubsystem): ) -> None: """Asynchronously send a message to the cloud from the logic thread. - The provided on_response call will be run in the logic thread + The provided ``on_response`` call will be run in the logic thread and passed either the response or the error that occurred. """ - - del msg # Unused. - - babase.pushcall( - babase.Call( - on_response, - RuntimeError('Cloud functionality is not available.'), - ) + raise NotImplementedError( + 'Cloud functionality is not present in this build.' ) @overload @@ -158,7 +235,9 @@ class CloudSubsystem(babase.AppSubsystem): Must be called from a background thread. """ - raise RuntimeError('Cloud functionality is not available.') + raise NotImplementedError( + 'Cloud functionality is not present in this build.' + ) @overload async def send_message_async( @@ -171,11 +250,44 @@ class CloudSubsystem(babase.AppSubsystem): ) -> bacommon.cloud.TestResponse: ... async def send_message_async(self, msg: Message) -> Response | None: - """Synchronously send a message to the cloud. + """Asynchronously send a message to the cloud. Must be called from the logic thread. """ - raise RuntimeError('Cloud functionality is not available.') + raise NotImplementedError( + 'Cloud functionality is not present in this build.' + ) + + def subscribe_test( + self, updatecall: Callable[[int | None], None] + ) -> babase.CloudSubscription: + """Subscribe to some test data. + + :meta private: + """ + raise NotImplementedError( + 'Cloud functionality is not present in this build.' + ) + + def subscribe_classic_account_data( + self, + updatecall: Callable[[bacommon.bs.ClassicAccountLiveData], None], + ) -> babase.CloudSubscription: + """Subscribe to classic account data.""" + raise NotImplementedError( + 'Cloud functionality is not present in this build.' + ) + + def unsubscribe(self, subscription_id: int) -> None: + """Unsubscribe from some subscription. + + Do not call this manually; it is called by CloudSubscription. + + :meta private: + """ + raise NotImplementedError( + 'Cloud functionality is not present in this build.' + ) def cloud_console_exec(code: str) -> None: diff --git a/dist/ba_data/python/bascenev1/__init__.py b/dist/ba_data/python/bascenev1/__init__.py index b351348..a1bb44f 100644 --- a/dist/ba_data/python/bascenev1/__init__.py +++ b/dist/ba_data/python/bascenev1/__init__.py @@ -1,8 +1,8 @@ # Released under the MIT License. See LICENSE for details. # -"""Ballistica scene api version 1. Basically all gameplay related code.""" +"""Gameplay-centric api for classic BombSquad.""" -# ba_meta require api 8 +# ba_meta require api 9 # The stuff we expose here at the top level is our 'public' api for use # from other modules/packages. Code *within* this package should import @@ -16,13 +16,17 @@ import logging # other modules; the goal is to let most simple mods rely solely on this # module to keep things simple. -from efro.util import set_canonical_module_names +# from efro.util import set_canonical_module_names from babase import ( + ActivityNotFoundError, + add_clean_frame_callback, app, + App, AppIntent, AppIntentDefault, AppIntentExec, AppMode, + AppState, apptime, AppTime, apptimer, @@ -51,6 +55,8 @@ from babase import ( safecolor, screenmessage, set_analytics_screen, + SessionNotFoundError, + SessionTeamNotFoundError, storagename, timestring, UIScale, @@ -149,7 +155,6 @@ from _bascenev1 import ( from bascenev1._activity import Activity from bascenev1._activitytypes import JoinActivity, ScoreScreenActivity from bascenev1._actor import Actor -from bascenev1._appmode import SceneV1AppMode from bascenev1._campaign import init_campaigns, Campaign from bascenev1._collision import Collision, getcollision from bascenev1._coopgame import CoopGameActivity @@ -164,7 +169,7 @@ from bascenev1._dependency import ( from bascenev1._dualteamsession import DualTeamSession from bascenev1._freeforallsession import FreeForAllSession from bascenev1._gameactivity import GameActivity -from bascenev1._gameresults import GameResults +from bascenev1._gameresults import GameResults, WinnerGroup from bascenev1._gameutils import ( animate, animate_array, @@ -176,7 +181,7 @@ from bascenev1._gameutils import ( Time, ) from bascenev1._level import Level -from bascenev1._lobby import Lobby, Chooser +from bascenev1._lobby import Lobby, Chooser, JoinInfo from bascenev1._map import ( get_filtered_map_name, get_map_class, @@ -246,14 +251,18 @@ from bascenev1._teamgame import TeamGameActivity __all__ = [ 'Activity', 'ActivityData', + 'ActivityNotFoundError', 'Actor', 'animate', 'animate_array', + 'add_clean_frame_callback', 'app', + 'App', 'AppIntent', 'AppIntentDefault', 'AppIntentExec', 'AppMode', + 'AppState', 'AppTime', 'apptime', 'apptimer', @@ -364,6 +373,7 @@ __all__ = [ 'is_point_in_box', 'is_replay_paused', 'JoinActivity', + 'JoinInfo', 'Level', 'Lobby', 'lock_all_input', @@ -410,10 +420,11 @@ __all__ = [ 'seek_replay', 'safecolor', 'screenmessage', - 'SceneV1AppMode', 'ScoreConfig', 'ScoreScreenActivity', 'ScoreType', + 'SessionNotFoundError', + 'SessionTeamNotFoundError', 'broadcastmessage', 'Session', 'SessionData', @@ -462,11 +473,14 @@ __all__ = [ 'unlock_all_input', 'Vec3', 'WeakCall', + 'WinnerGroup', ] # We want stuff here to show up as bascenev1.Foo instead of # bascenev1._submodule.Foo. -set_canonical_module_names(globals()) +# UPDATE: Trying without this for now. Seems like this might cause more +# harm than good. Can flip it back on if it is missed. +# set_canonical_module_names(globals()) # Sanity check: we want to keep ballistica's dependencies and # bootstrapping order clearly defined; let's check a few particular diff --git a/dist/ba_data/python/bascenev1/_activity.py b/dist/ba_data/python/bascenev1/_activity.py index ca5042c9..c78f1a6 100644 --- a/dist/ba_data/python/bascenev1/_activity.py +++ b/dist/ba_data/python/bascenev1/_activity.py @@ -5,117 +5,114 @@ from __future__ import annotations import weakref import logging -from typing import TYPE_CHECKING, Generic, TypeVar +from typing import TYPE_CHECKING import babase import _bascenev1 from bascenev1._dependency import DependencyComponent -from bascenev1._team import Team from bascenev1._messages import UNHANDLED -from bascenev1._player import Player + if TYPE_CHECKING: from typing import Any import bascenev1 -PlayerT = TypeVar('PlayerT', bound=Player) -TeamT = TypeVar('TeamT', bound=Team) +class Activity[PlayerT: bascenev1.Player, TeamT: bascenev1.Team]( + DependencyComponent +): + """Units of execution wrangled by a :class:`bascenev1.Session`. -class Activity(DependencyComponent, Generic[PlayerT, TeamT]): - """Units of execution wrangled by a bascenev1.Session. - - Category: Gameplay Classes - - Examples of Activities include games, score-screens, cutscenes, etc. - A bascenev1.Session has one 'current' Activity at any time, though - their existence can overlap during transitions. + Examples of activities include games, score-screens, cutscenes, etc. + A :class:`bascenev1.Session` has one 'current' activity at any time, + though their existence can overlap during transitions. """ # pylint: disable=too-many-public-methods + #: The settings dict passed in when the activity was made. This + #: attribute is deprecated and should be avoided when possible; + #: activities should pull all values they need from the ``settings`` + #: arg passed to the activity's __init__ call. settings_raw: dict[str, Any] - """The settings dict passed in when the activity was made. - This attribute is deprecated and should be avoided when possible; - activities should pull all values they need from the 'settings' arg - passed to the Activity __init__ call.""" + #: The list of teams in the activity. This gets populated just before + #: on_begin() is called and is updated automatically as players join + #: or leave the game. (at least in free-for-all mode where every + #: player gets their own team; in teams mode there are always 2 teams + #: regardless of the player count). teams: list[TeamT] - """The list of bascenev1.Team-s in the Activity. This gets populated just - before on_begin() is called and is updated automatically as players - join or leave the game. (at least in free-for-all mode where every - player gets their own team; in teams mode there are always 2 teams - regardless of the player count).""" + #: The list of players in the activity. This gets populated just + #: before :meth:`~bascenev1.Activity.on_begin()` is called and is + #: updated automatically as players join or leave the game. players: list[PlayerT] - """The list of bascenev1.Player-s in the Activity. This gets populated - just before on_begin() is called and is updated automatically as - players join or leave the game.""" + #: Whether to print every time a player dies. This can be pertinent + #: in games such as Death-Match but can be annoying in games where it + #: doesn't matter. announce_player_deaths = False - """Whether to print every time a player dies. This can be pertinent - in games such as Death-Match but can be annoying in games where it - doesn't matter.""" + #: Joining activities are for waiting for initial player joins. They + #: are treated slightly differently than regular activities, mainly + #: in that all players are passed to the activity at once instead of + #: as each joins. is_joining_activity = False - """Joining activities are for waiting for initial player joins. - They are treated slightly differently than regular activities, - mainly in that all players are passed to the activity at once - instead of as each joins.""" + #: Whether scene-time should still progress when in menus/etc. allow_pausing = False - """Whether game-time should still progress when in menus/etc.""" + #: Whether idle players can potentially be kicked (should not happen + #: in menus/etc). allow_kick_idle_players = True - """Whether idle players can potentially be kicked (should not happen in - menus/etc).""" + #: In vr mode, this determines whether overlay nodes (text, images, + #: etc) are created at a fixed position in space or one that moves + #: based on the current map. Generally this should be on for games + #: and off for transitions/score-screens/etc. that persist between + #: maps. use_fixed_vr_overlay = False - """In vr mode, this determines whether overlay nodes (text, images, etc) - are created at a fixed position in space or one that moves based on - the current map. Generally this should be on for games and off for - transitions/score-screens/etc. that persist between maps.""" + #: If True, runs in slow motion and turns down sound pitch. slow_motion = False - """If True, runs in slow motion and turns down sound pitch.""" + #: Set this to True to inherit slow motion setting from previous + #: activity (useful for transitions to avoid hitches). inherits_slow_motion = False - """Set this to True to inherit slow motion setting from previous - activity (useful for transitions to avoid hitches).""" + #: Set this to True to keep playing the music from the previous + #: activity (without even restarting it). inherits_music = False - """Set this to True to keep playing the music from the previous activity - (without even restarting it).""" + #: Set this to true to inherit VR camera offsets from the previous + #: activity (useful for preventing sporadic camera movement during + #: transitions). inherits_vr_camera_offset = False - """Set this to true to inherit VR camera offsets from the previous - activity (useful for preventing sporadic camera movement - during transitions).""" + #: Set this to true to inherit (non-fixed) VR overlay positioning + #: from the previous activity (useful for prevent sporadic overlay + #: jostling during transitions). inherits_vr_overlay_center = False - """Set this to true to inherit (non-fixed) VR overlay positioning from - the previous activity (useful for prevent sporadic overlay jostling - during transitions).""" + #: Set this to true to inherit screen tint/vignette colors from the + #: previous activity (useful to prevent sudden color changes during + #: transitions). inherits_tint = False - """Set this to true to inherit screen tint/vignette colors from the - previous activity (useful to prevent sudden color changes during - transitions).""" + #: Whether players should be allowed to join in the middle of this + #: activity. Note that a :class:`bascenev1.Session` may not allow + #: mid-activity-joins even if the activity says it is ok. allow_mid_activity_joins: bool = True - """Whether players should be allowed to join in the middle of this - activity. Note that Sessions may not allow mid-activity-joins even - if the activity says its ok.""" + #: If the activity fades or transitions in, it should set the length + #: of time here so that previous activities will be kept alive for + #: that long (avoiding 'holes' in the screen) This value is given in + #: real-time seconds. transition_time = 0.0 - """If the activity fades or transitions in, it should set the length of - time here so that previous activities will be kept alive for that - long (avoiding 'holes' in the screen) - This value is given in real-time seconds.""" + #: Is it ok to show an ad after this activity ends before showing the + #: next activity? can_show_ad_on_death = False - """Is it ok to show an ad after this activity ends before showing - the next activity?""" def __init__(self, settings: dict): """Creates an Activity in the current bascenev1.Session. @@ -149,7 +146,7 @@ class Activity(DependencyComponent, Generic[PlayerT, TeamT]): self._session = weakref.ref(_bascenev1.getsession()) - # Preloaded data for actors, maps, etc; indexed by type. + #: Preloaded data for actors, maps, etc; indexed by type. self.preloads: dict[type, Any] = {} # Hopefully can eventually kill this; activities should @@ -208,8 +205,9 @@ class Activity(DependencyComponent, Generic[PlayerT, TeamT]): @property def globalsnode(self) -> bascenev1.Node: - """The 'globals' bascenev1.Node for the activity. This contains various - global controls and values. + """The 'globals' :class:`~bascenev1.Node` for the activity. + + This contains various global controls and values. """ node = self._globalsnode if not node: @@ -221,7 +219,7 @@ class Activity(DependencyComponent, Generic[PlayerT, TeamT]): """The stats instance accessible while the activity is running. If access is attempted before or after, raises a - bascenev1.NotFoundError. + :class:`~bascenev1.NotFoundError`. """ if self._stats is None: raise babase.NotFoundError() @@ -260,22 +258,24 @@ class Activity(DependencyComponent, Generic[PlayerT, TeamT]): @property def playertype(self) -> type[PlayerT]: - """The type of bascenev1.Player this Activity is using.""" + """The :class:`~bascenev1.Player` subclass this activity uses.""" return self._playertype @property def teamtype(self) -> type[TeamT]: - """The type of bascenev1.Team this Activity is using.""" + """The :class:`~bascenev1.Team` subclass this activity uses.""" return self._teamtype def set_has_ended(self, val: bool) -> None: - """(internal)""" + """Internal - used by session. + + :meta private:""" self._has_ended = val def expire(self) -> None: - """Begin the process of tearing down the activity. + """Internal; Begin the process of tearing down the activity. - (internal) + :meta private: """ # Create an app-timer that watches a weak-ref of this activity @@ -304,11 +304,12 @@ class Activity(DependencyComponent, Generic[PlayerT, TeamT]): ) def retain_actor(self, actor: bascenev1.Actor) -> None: - """Add a strong-reference to a bascenev1.Actor to this Activity. + """Add a strong-ref to a :class:`bascenev1.Actor` to this activity. - The reference will be lazily released once bascenev1.Actor.exists() - returns False for the Actor. The bascenev1.Actor.autoretain() method - is a convenient way to access this same functionality. + The reference will be lazily released once + :meth:`bascenev1.Actor.exists()` returns False for the actor. + The :meth:`bascenev1.Actor.autoretain()` method is a convenient + way to access this same functionality. """ if __debug__: from bascenev1._actor import Actor @@ -317,9 +318,9 @@ class Activity(DependencyComponent, Generic[PlayerT, TeamT]): self._actor_refs.append(actor) def add_actor_weak_ref(self, actor: bascenev1.Actor) -> None: - """Add a weak-reference to a bascenev1.Actor to the bascenev1.Activity. + """Add a weak-ref to a :class:`bascenev1.Actor` to the activity. - (called by the bascenev1.Actor base class) + (called by the :class:`bascenev1.Actor` base class) """ if __debug__: from bascenev1._actor import Actor @@ -329,9 +330,10 @@ class Activity(DependencyComponent, Generic[PlayerT, TeamT]): @property def session(self) -> bascenev1.Session: - """The bascenev1.Session this bascenev1.Activity belongs to. + """The session this activity belongs to. - Raises a babase.SessionNotFoundError if the Session no longer exists. + Raises a :class:`~bascenev1.SessionNotFoundError` if the session + no longer exists. """ session = self._session() if session is None: @@ -339,44 +341,44 @@ class Activity(DependencyComponent, Generic[PlayerT, TeamT]): return session def on_player_join(self, player: PlayerT) -> None: - """Called when a new bascenev1.Player has joined the Activity. + """Called when a player joins the activity. - (including the initial set of Players) + (including the initial set of players) """ def on_player_leave(self, player: PlayerT) -> None: - """Called when a bascenev1.Player is leaving the Activity.""" + """Called when a player is leaving the Activity.""" def on_team_join(self, team: TeamT) -> None: - """Called when a new bascenev1.Team joins the Activity. + """Called when a new team joins the activity. - (including the initial set of Teams) + (including the initial set of teams) """ def on_team_leave(self, team: TeamT) -> None: - """Called when a bascenev1.Team leaves the Activity.""" + """Called when a team leaves the activity.""" def on_transition_in(self) -> None: - """Called when the Activity is first becoming visible. + """Called when the activity is first becoming visible. - Upon this call, the Activity should fade in backgrounds, - start playing music, etc. It does not yet have access to players - or teams, however. They remain owned by the previous Activity - up until bascenev1.Activity.on_begin() is called. + Upon this call, the activity should fade in backgrounds, start + playing music, etc. It does not yet have access to players or + teams, however. They remain owned by the previous activity up + until :meth:`~bascenev1.Activity.on_begin()` is called. """ def on_transition_out(self) -> None: """Called when your activity begins transitioning out. - Note that this may happen at any time even if bascenev1.Activity.end() - has not been called. + Note that this may happen at any time even if + :meth:`bascenev1.Activity.end()` has not been called. """ def on_begin(self) -> None: - """Called once the previous Activity has finished transitioning out. + """Called once the previous activity has finished transitioning out. - At this point the activity's initial players and teams are filled in - and it should begin its actual game logic. + At this point the activity's initial players and teams are + filled in and it should begin its actual game logic. """ def handlemessage(self, msg: Any) -> Any: @@ -385,11 +387,11 @@ class Activity(DependencyComponent, Generic[PlayerT, TeamT]): return UNHANDLED def has_transitioned_in(self) -> bool: - """Return whether bascenev1.Activity.on_transition_in() has run.""" + """Whether :meth:`~bascenev1.Activity.on_transition_in()` has run.""" return self._has_transitioned_in def has_begun(self) -> bool: - """Return whether bascenev1.Activity.on_begin() has run.""" + """Whether :meth:`~bascenev1.Activity.on_begin()` has run.""" return self._has_begun def has_ended(self) -> bool: @@ -397,13 +399,13 @@ class Activity(DependencyComponent, Generic[PlayerT, TeamT]): return self._has_ended def is_transitioning_out(self) -> bool: - """Return whether bascenev1.Activity.on_transition_out() has run.""" + """Whether :meth:`~bascenev1.Activity.on_transition_out()` has run.""" return self._transitioning_out def transition_in(self, prev_globals: bascenev1.Node | None) -> None: - """Called by Session to kick off transition-in. + """Internal; called by session to kick off transition-in. - (internal) + :meta private: """ assert not self._has_transitioned_in self._has_transitioned_in = True @@ -459,7 +461,10 @@ class Activity(DependencyComponent, Generic[PlayerT, TeamT]): self._activity_data.make_foreground() def transition_out(self) -> None: - """Called by the Session to start us transitioning out.""" + """Internal; called by session to start us transitioning out. + + :meta private: + """ assert not self._transitioning_out self._transitioning_out = True with self.context: @@ -469,9 +474,9 @@ class Activity(DependencyComponent, Generic[PlayerT, TeamT]): logging.exception('Error in on_transition_out for %s.', self) def begin(self, session: bascenev1.Session) -> None: - """Begin the activity. + """Internal; Begin the activity. - (internal) + :meta private: """ assert not self._has_begun @@ -499,45 +504,46 @@ class Activity(DependencyComponent, Generic[PlayerT, TeamT]): def end( self, results: Any = None, delay: float = 0.0, force: bool = False ) -> None: - """Commences Activity shutdown and delivers results to the Session. + """Commence activity shutdown and delivers results to the session. - 'delay' is the time delay before the Activity actually ends - (in seconds). Further calls to end() will be ignored up until - this time, unless 'force' is True, in which case the new results - will replace the old. + 'delay' is the time delay before the Activity actually ends (in + seconds). Further end calls will be ignored up until this time, + unless 'force' is True, in which case the new results will + replace the old. """ # Ask the session to end us. self.session.end_activity(self, results, delay, force) def create_player(self, sessionplayer: bascenev1.SessionPlayer) -> PlayerT: - """Create the Player instance for this Activity. + """Create a :class:`bascenev1.Player` instance for this activity. - Subclasses can override this if the activity's player class - requires a custom constructor; otherwise it will be called with - no args. Note that the player object should not be used at this - point as it is not yet fully wired up; wait for - bascenev1.Activity.on_player_join() for that. + Note that the player object should not be used at this point as + it is not yet fully wired up; wait for + :meth:`bascenev1.Activity.on_player_join()` for that. """ del sessionplayer # Unused. player = self._playertype() return player def create_team(self, sessionteam: bascenev1.SessionTeam) -> TeamT: - """Create the Team instance for this Activity. + """Create a :class:`bascenev1.Team` instance for this activity. Subclasses can override this if the activity's team class requires a custom constructor; otherwise it will be called with no args. Note that the team object should not be used at this - point as it is not yet fully wired up; wait for on_team_join() - for that. + point as it is not yet fully wired up; wait for + :meth:`bascenev1.Activity.on_team_join()` for that. """ del sessionteam # Unused. team = self._teamtype() return team def add_player(self, sessionplayer: bascenev1.SessionPlayer) -> None: - """(internal)""" + """Internal + + :meta private: + """ assert sessionplayer.sessionteam is not None sessionplayer.resetinput() sessionteam = sessionplayer.sessionteam @@ -565,7 +571,7 @@ class Activity(DependencyComponent, Generic[PlayerT, TeamT]): logging.exception('Error in on_player_join for %s.', self) def remove_player(self, sessionplayer: bascenev1.SessionPlayer) -> None: - """Remove a player from the Activity while it is running. + """Remove a player from the activity while it is running. (internal) """ @@ -584,10 +590,6 @@ class Activity(DependencyComponent, Generic[PlayerT, TeamT]): self.players.remove(player) assert player not in self.players - # This should allow our bascenev1.Player instance to die. - # Complain if that doesn't happen. - # verify_object_death(player) - with self.context: try: self.on_player_leave(player) @@ -608,9 +610,9 @@ class Activity(DependencyComponent, Generic[PlayerT, TeamT]): self._players_that_left.append(weakref.ref(player)) def add_team(self, sessionteam: bascenev1.SessionTeam) -> None: - """Add a team to the Activity + """Internal; Add a team to the activity - (internal) + :meta private: """ assert not self.expired @@ -624,9 +626,9 @@ class Activity(DependencyComponent, Generic[PlayerT, TeamT]): logging.exception('Error in on_team_join for %s.', self) def remove_team(self, sessionteam: bascenev1.SessionTeam) -> None: - """Remove a team from a Running Activity + """Internal; remove a team from a running activity - (internal) + :meta private: """ assert not self.expired assert sessionteam.activityteam is not None @@ -685,10 +687,12 @@ class Activity(DependencyComponent, Generic[PlayerT, TeamT]): sessionplayer.setactivity(None) sessionplayer.activityplayer = None - # noinspection PyUnresolvedReferences def _setup_player_and_team_types(self) -> None: """Pull player and team types from our typing.Generic params.""" + from bascenev1._player import Player + from bascenev1._team import Team + # TODO: There are proper calls for pulling these in Python 3.8; # should update this code when we adopt that. # NOTE: If we get Any as PlayerT or TeamT (generally due diff --git a/dist/ba_data/python/bascenev1/_actor.py b/dist/ba_data/python/bascenev1/_actor.py index 11f4f07..62d002d 100644 --- a/dist/ba_data/python/bascenev1/_actor.py +++ b/dist/ba_data/python/bascenev1/_actor.py @@ -6,7 +6,7 @@ from __future__ import annotations import weakref import logging -from typing import TYPE_CHECKING, TypeVar, overload +from typing import TYPE_CHECKING, overload import babase @@ -19,61 +19,63 @@ from bascenev1._messages import ( ) if TYPE_CHECKING: - from typing import Any, Literal + from typing import Any, Literal, Self import bascenev1 -ActorT = TypeVar('ActorT', bound='Actor') - class Actor: - """High level logical entities in a bascenev1.Activity. + """High level logical entities in an :class:`~bascenev1.Activity`. - Category: **Gameplay Classes** + Actors act as controllers, combining some number of + :class:`~bascenev1.Node`, :class:`~bascenev1.Texture`, + :class:`~bascenev1.Sound`, and other type objects into a high-level + cohesive unit. - Actors act as controllers, combining some number of Nodes, Textures, - Sounds, etc. into a high-level cohesive unit. + Some example actors include the :class:`~bascenev1lib.actor.bomb.Bomb`, + :class:`~bascenev1lib.actor.flag.Flag`, and + :class:`~bascenev1lib.actor.spaz.Spaz`, classes that live in the + :mod:`bascenev1lib.actor` package. - Some example actors include the Bomb, Flag, and Spaz classes that - live in the bascenev1lib.actor.* modules. + One key feature of actors is that they generally 'die' (killing off + or transitioning out their nodes) when the last Python reference to + them disappears, so you can use logic such as:: - One key feature of Actors is that they generally 'die' - (killing off or transitioning out their nodes) when the last Python - reference to them disappears, so you can use logic such as: + # Create a flag actor in our game activity (self): + from bascenev1lib.actor.flag import Flag - ##### Example - >>> # Create a flag Actor in our game activity: - ... from bascenev1lib.actor.flag import Flag - ... self.flag = Flag(position=(0, 10, 0)) - ... - ... # Later, destroy the flag. - ... # (provided nothing else is holding a reference to it) - ... # We could also just assign a new flag to this value. - ... # Either way, the old flag disappears. - ... self.flag = None + self.flag = Flag(position=(0, 10, 0)) + + # Later, destroy the flag (provided nothing else is holding a + # reference to it). We could also just assign a new flag to this + # value. Either way, the old flag should disappear. + self.flag = None This is in contrast to the behavior of the more low level - bascenev1.Node, which is always explicitly created and destroyed - and doesn't care how many Python references to it exist. + :class:`~bascenev1.Node` class, which is always explicitly created + and destroyed and doesn't care how many Python references to it + exist. - Note, however, that you can use the bascenev1.Actor.autoretain() method - if you want an Actor to stick around until explicitly killed + Note, however, that you can use the :meth:`~bascenev1.Actor.autoretain()` + method if you want an actor to stick around until explicitly killed regardless of references. - Another key feature of bascenev1.Actor is its - bascenev1.Actor.handlemessage() method, which takes a single arbitrary - object as an argument. This provides a safe way to communicate between - bascenev1.Actor, bascenev1.Activity, bascenev1.Session, and any other - class providing a handlemessage() method. The most universally handled - message type for Actors is the bascenev1.DieMessage. + Another key feature of actors is their + :meth:`~bascenev1.Actor.handlemessage()` method, which takes a single + arbitrary object as an argument. This provides a safe way to communicate + between :class:`~bascenev1.Actor`, :class:`~bascenev1.Activity`, + :class:`~bascenev1.Session`, and any other class providing a + ``handlemessage()`` method. The most universally handled + message type for actors is the :class:`~bascenev1.DieMessage`. Another way to kill the flag from the example above: - We can safely call this on any type with a 'handlemessage' method + We can safely call this on any type with a ``handlemessage`` method (though its not guaranteed to always have a meaningful effect). - In this case the Actor instance will still be around, but its - bascenev1.Actor.exists() and bascenev1.Actor.is_alive() methods will - both return False. - >>> self.flag.handlemessage(bascenev1.DieMessage()) + In this case the actor instance will still be around, but its + :meth:`~bascenev1.Actor.exists()` and :meth:`~bascenev1.Actor.is_alive()` + methods will both return False:: + + self.flag.handlemessage(bascenev1.DieMessage()) """ def __init__(self) -> None: @@ -107,18 +109,18 @@ class Actor: return UNHANDLED - def autoretain(self: ActorT) -> ActorT: - """Keep this Actor alive without needing to hold a reference to it. + def autoretain(self) -> Self: + """Keep this actor alive without needing to hold a reference to it. - This keeps the bascenev1.Actor in existence by storing a reference - to it with the bascenev1.Activity it was created in. The reference - is lazily released once bascenev1.Actor.exists() returns False for - it or when the Activity is set as expired. This can be a convenient - alternative to storing references explicitly just to keep a - bascenev1.Actor from dying. - For convenience, this method returns the bascenev1.Actor it is called - with, enabling chained statements such as: - myflag = bascenev1.Flag().autoretain() + This keeps the actor in existence by storing a reference to it + with the :class:`~bascenev1.Activity` it was created in. The + reference is lazily released once + :meth:`~bascenev1.Actor.exists()` returns False for the actor or + when the :class:`~bascenev1.Activity` is set as expired. This + can be a convenient alternative to storing references explicitly + just to keep an actor from dying. For convenience, this method + returns the actor it is called with, enabling chained statements + such as: ``myflag = bascenev1.Flag().autoretain()`` """ activity = self._activity() if activity is None: @@ -127,43 +129,44 @@ class Actor: return self def on_expire(self) -> None: - """Called for remaining `bascenev1.Actor`s when their activity dies. + """Called for remaining actors when their activity dies. Actors can use this opportunity to clear callbacks or other - references which have the potential of keeping the bascenev1.Activity - alive inadvertently (Activities can not exit cleanly while - any Python references to them remain.) + references which have the potential of keeping the + :class:`~bascenev1.Activity` alive inadvertently (activities can + not exit cleanly while any Python references to them remain.) - Once an actor is expired (see bascenev1.Actor.is_expired()) it should - no longer perform any game-affecting operations (creating, modifying, - or deleting nodes, media, timers, etc.) Attempts to do so will - likely result in errors. + Once an actor is expired (see :attr:`~bascenev1.Actor.expired`) + it should no longer perform any game-affecting operations + (creating, modifying, or deleting nodes, media, timers, etc.) + Attempts to do so will likely result in errors. """ @property def expired(self) -> bool: - """Whether the Actor is expired. + """Whether the actor is expired. - (see bascenev1.Actor.on_expire()) + (see :meth:`~bascenev1.Actor.on_expire()`) """ activity = self.getactivity(doraise=False) return True if activity is None else activity.expired def exists(self) -> bool: - """Returns whether the Actor is still present in a meaningful way. + """Returns whether the actor is still present in a meaningful way. Note that a dying character should still return True here as long as their corpse is visible; this is about presence, not being 'alive' - (see bascenev1.Actor.is_alive() for that). + (see :meth:`~bascenev1.Actor.is_alive()` for that). - If this returns False, it is assumed the Actor can be completely - deleted without affecting the game; this call is often used - when pruning lists of Actors, such as with bascenev1.Actor.autoretain() + If this returns False, it is assumed the actor can be completely + deleted without affecting the game; this call is often used when + pruning lists of actors, such as with + :meth:`bascenev1.Actor.autoretain()` The default implementation of this method always return True. - Note that the boolean operator for the Actor class calls this method, - so a simple "if myactor" test will conveniently do the right thing + Note that the boolean operator for the actor class calls this method, + so a simple ``if myactor`` test will conveniently do the right thing even if myactor is set to None. """ return True @@ -173,22 +176,21 @@ class Actor: return self.exists() def is_alive(self) -> bool: - """Returns whether the Actor is 'alive'. + """Returns whether the actor is 'alive'. - What this means is up to the Actor. - It is not a requirement for Actors to be able to die; - just that they report whether they consider themselves - to be alive or not. In cases where dead/alive is - irrelevant, True should be returned. + What this means is up to the actor. It is not a requirement for + actors to be able to die; just that they report whether they + consider themselves to be alive or not. In cases where + dead/alive is irrelevant, True should be returned. """ return True @property def activity(self) -> bascenev1.Activity: - """The Activity this Actor was created in. + """The activity this actor was created in. - Raises a bascenev1.ActivityNotFoundError if the Activity no longer - exists. + Raises a :class:`~bascenev1.ActivityNotFoundError` if the + activity no longer exists. """ activity = self._activity() if activity is None: @@ -208,11 +210,11 @@ class Actor: ) -> bascenev1.Activity | None: ... def getactivity(self, doraise: bool = True) -> bascenev1.Activity | None: - """Return the bascenev1.Activity this Actor is associated with. + """Return the activity this actor is associated with. - If the Activity no longer exists, raises a - bascenev1.ActivityNotFoundError or returns None depending on whether - 'doraise' is True. + If the activity no longer exists, raises a + :class:`~bascenev1.ActivityNotFoundError` or returns None + depending on whether ``doraise`` is True. """ activity = self._activity() if activity is None and doraise: diff --git a/dist/ba_data/python/bascenev1/_appmode.py b/dist/ba_data/python/bascenev1/_appmode.py deleted file mode 100644 index 72a77ae..0000000 --- a/dist/ba_data/python/bascenev1/_appmode.py +++ /dev/null @@ -1,60 +0,0 @@ -# Released under the MIT License. See LICENSE for details. -# -"""Provides AppMode functionality.""" -from __future__ import annotations - -from typing import TYPE_CHECKING, override - -from bacommon.app import AppExperience -from babase import ( - app, - AppMode, - AppIntentExec, - AppIntentDefault, - invoke_main_menu, -) - -import _bascenev1 - -if TYPE_CHECKING: - from babase import AppIntent - - -class SceneV1AppMode(AppMode): - """Our app-mode.""" - - @override - @classmethod - def get_app_experience(cls) -> AppExperience: - return AppExperience.MELEE - - @override - @classmethod - def _supports_intent(cls, intent: AppIntent) -> bool: - # We support default and exec intents currently. - return isinstance(intent, AppIntentExec | AppIntentDefault) - - @override - def handle_intent(self, intent: AppIntent) -> None: - if isinstance(intent, AppIntentExec): - _bascenev1.handle_app_intent_exec(intent.code) - return - assert isinstance(intent, AppIntentDefault) - _bascenev1.handle_app_intent_default() - - @override - def on_activate(self) -> None: - # Let the native layer do its thing. - _bascenev1.on_app_mode_activate() - - @override - def on_deactivate(self) -> None: - # Let the native layer do its thing. - _bascenev1.on_app_mode_deactivate() - - @override - def on_app_active_changed(self) -> None: - # If we've gone inactive, bring up the main menu, which has the - # side effect of pausing the action (when possible). - if not app.active: - invoke_main_menu() diff --git a/dist/ba_data/python/bascenev1/_campaign.py b/dist/ba_data/python/bascenev1/_campaign.py index 56cdba5..f45f8bc 100644 --- a/dist/ba_data/python/bascenev1/_campaign.py +++ b/dist/ba_data/python/bascenev1/_campaign.py @@ -19,10 +19,7 @@ def register_campaign(campaign: bascenev1.Campaign) -> None: class Campaign: - """Represents a unique set or series of baclassic.Level-s. - - Category: **App Classes** - """ + """Represents a unique set of :class:`~bascenev1.Level` instances.""" def __init__( self, @@ -39,18 +36,18 @@ class Campaign: @property def name(self) -> str: - """The name of the Campaign.""" + """The name of the campaign.""" return self._name @property def sequential(self) -> bool: - """Whether this Campaign's levels must be played in sequence.""" + """Whether this campaign's levels must be played in sequence.""" return self._sequential def addlevel( self, level: bascenev1.Level, index: int | None = None ) -> None: - """Adds a baclassic.Level to the Campaign.""" + """Add a level to the campaign.""" if level.campaign is not None: raise RuntimeError('Level already belongs to a campaign.') level.set_campaign(self, len(self._levels)) @@ -61,11 +58,11 @@ class Campaign: @property def levels(self) -> list[bascenev1.Level]: - """The list of baclassic.Level-s in the Campaign.""" + """The list of levels in the campaign.""" return self._levels def getlevel(self, name: str) -> bascenev1.Level: - """Return a contained baclassic.Level by name.""" + """Return a contained level by name.""" for level in self._levels: if level.name == name: @@ -75,11 +72,11 @@ class Campaign: ) def reset(self) -> None: - """Reset state for the Campaign.""" + """Reset state for the campaign.""" babase.app.config.setdefault('Campaigns', {})[self._name] = {} - # FIXME should these give/take baclassic.Level instances instead - # of level names?.. + # FIXME: should these give/take baclassic.Level instances instead of + # level names?.. def set_selected_level(self, levelname: str) -> None: """Set the Level currently selected in the UI (by name).""" self.configdict['Selection'] = levelname diff --git a/dist/ba_data/python/bascenev1/_collision.py b/dist/ba_data/python/bascenev1/_collision.py index d7ac555..11877f6 100644 --- a/dist/ba_data/python/bascenev1/_collision.py +++ b/dist/ba_data/python/bascenev1/_collision.py @@ -14,10 +14,7 @@ if TYPE_CHECKING: class Collision: - """A class providing info about occurring collisions. - - Category: **Gameplay Classes** - """ + """A class providing info about occurring collisions.""" @property def position(self) -> bascenev1.Vec3: @@ -28,9 +25,9 @@ class Collision: def sourcenode(self) -> bascenev1.Node: """The node containing the material triggering the current callback. - Throws a bascenev1.NodeNotFoundError if the node does not exist, - though the node should always exist (at least at the start of the - collision callback). + Throws a :class:`~babase.NodeNotFoundError` if the node does + not exist, though the node should always exist (at least at the + start of the collision callback). """ node = _bascenev1.get_collision_info('sourcenode') assert isinstance(node, (_bascenev1.Node, type(None))) @@ -42,9 +39,10 @@ class Collision: def opposingnode(self) -> bascenev1.Node: """The node the current callback material node is hitting. - Throws a bascenev1.NodeNotFoundError if the node does not exist. - This can be expected in some cases such as in 'disconnect' - callbacks triggered by deleting a currently-colliding node. + Throws a :class:`~babase.NodeNotFoundError` if the node does + not exist. This can be expected in some cases such as in + 'disconnect' callbacks triggered by deleting a + currently-colliding node. """ node = _bascenev1.get_collision_info('opposingnode') assert isinstance(node, (_bascenev1.Node, type(None))) @@ -65,8 +63,5 @@ _collision = Collision() def getcollision() -> Collision: - """Return the in-progress collision. - - Category: **Gameplay Functions** - """ + """Return the in-progress collision.""" return _collision diff --git a/dist/ba_data/python/bascenev1/_coopgame.py b/dist/ba_data/python/bascenev1/_coopgame.py index e4f20e3..dd12148 100644 --- a/dist/ba_data/python/bascenev1/_coopgame.py +++ b/dist/ba_data/python/bascenev1/_coopgame.py @@ -4,7 +4,7 @@ from __future__ import annotations import logging -from typing import TYPE_CHECKING, TypeVar, override +from typing import TYPE_CHECKING, override import babase @@ -18,15 +18,17 @@ if TYPE_CHECKING: import bascenev1 -PlayerT = TypeVar('PlayerT', bound='bascenev1.Player') -TeamT = TypeVar('TeamT', bound='bascenev1.Team') + +# Note: Need to suppress an undefined variable here because our pylint +# plugin clears type-arg declarations (which we don't require to be +# present at runtime) but keeps parent type-args (which we sometimes use +# at runtime). -class CoopGameActivity(GameActivity[PlayerT, TeamT]): - """Base class for cooperative-mode games. - - Category: **Gameplay Classes** - """ +class CoopGameActivity[PlayerT: bascenev1.Player, TeamT: bascenev1.Team]( + GameActivity[PlayerT, TeamT] # pylint: disable=undefined-variable +): + """Base class for cooperative-mode games.""" # We can assume our session is a CoopSession. session: bascenev1.CoopSession diff --git a/dist/ba_data/python/bascenev1/_coopsession.py b/dist/ba_data/python/bascenev1/_coopsession.py index d5040e0..3f1d95f 100644 --- a/dist/ba_data/python/bascenev1/_coopsession.py +++ b/dist/ba_data/python/bascenev1/_coopsession.py @@ -20,13 +20,10 @@ TEAM_NAMES = ['Good Guys'] class CoopSession(Session): - """A bascenev1.Session which runs cooperative-mode games. + """A session which runs cooperative-mode games. - Category: **Gameplay Classes** - - These generally consist of 1-4 players against - the computer and include functionality such as - high score lists. + These generally consist of 1-4 players against the computer and + include functionality such as high score lists. """ use_teams = True diff --git a/dist/ba_data/python/bascenev1/_dependency.py b/dist/ba_data/python/bascenev1/_dependency.py index 9741493..8e89d59 100644 --- a/dist/ba_data/python/bascenev1/_dependency.py +++ b/dist/ba_data/python/bascenev1/_dependency.py @@ -5,7 +5,7 @@ from __future__ import annotations import weakref -from typing import Generic, TypeVar, TYPE_CHECKING, override +from typing import TYPE_CHECKING, override import babase @@ -16,14 +16,10 @@ if TYPE_CHECKING: import bascenev1 -T = TypeVar('T', bound='DependencyComponent') - -class Dependency(Generic[T]): +class Dependency[T: DependencyComponent]: """A dependency on a DependencyComponent (with an optional config). - Category: **Dependency Classes** - This class is used to request and access functionality provided by other DependencyComponent classes from a DependencyComponent class. The class functions as a descriptor, allowing dependencies to @@ -92,10 +88,7 @@ class Dependency(Generic[T]): class DependencyComponent: - """Base class for all classes that can act as or use dependencies. - - Category: **Dependency Classes** - """ + """Base class for all classes that can act as or use dependencies.""" _dep_entry: weakref.ref[DependencyEntry] @@ -127,7 +120,7 @@ class DependencyComponent: return [] -class DependencyEntry: +class DependencyEntry[T: DependencyComponent]: """Data associated with a dep/config pair in bascenev1.DependencySet.""" # def __del__(self) -> None: @@ -170,11 +163,9 @@ class DependencyEntry: return component -class DependencySet(Generic[T]): +class DependencySet[T: DependencyComponent]: """Set of resolved dependencies and their associated data. - Category: **Dependency Classes** - To use DependencyComponents, a set must be created, resolved, and then loaded. The DependencyComponents are only valid while the set remains in existence. @@ -296,10 +287,7 @@ class DependencySet(Generic[T]): class AssetPackage(DependencyComponent): - """bascenev1.DependencyComponent representing a bundled package of assets. - - Category: **Asset Classes** - """ + """bascenev1.DependencyComponent representing a package of assets.""" def __init__(self) -> None: super().__init__() @@ -430,9 +418,7 @@ def test_depset() -> None: class DependencyError(Exception): - """Exception raised when one or more bascenev1.Dependency items are missing. - - Category: **Exception Classes** + """:class:`Exception` raised when bascenev1.Dependency items are missing. (this will generally be missing assets). """ diff --git a/dist/ba_data/python/bascenev1/_dualteamsession.py b/dist/ba_data/python/bascenev1/_dualteamsession.py index 4e0eb43..7ea0a13 100644 --- a/dist/ba_data/python/bascenev1/_dualteamsession.py +++ b/dist/ba_data/python/bascenev1/_dualteamsession.py @@ -15,10 +15,7 @@ if TYPE_CHECKING: class DualTeamSession(MultiTeamSession): - """bascenev1.Session type for teams mode games. - - Category: **Gameplay Classes** - """ + """bascenev1.Session type for teams mode games.""" # Base class overrides: use_teams = True diff --git a/dist/ba_data/python/bascenev1/_freeforallsession.py b/dist/ba_data/python/bascenev1/_freeforallsession.py index f32eb64..615b51b 100644 --- a/dist/ba_data/python/bascenev1/_freeforallsession.py +++ b/dist/ba_data/python/bascenev1/_freeforallsession.py @@ -16,10 +16,7 @@ if TYPE_CHECKING: class FreeForAllSession(MultiTeamSession): - """bascenev1.Session type for free-for-all mode games. - - Category: **Gameplay Classes** - """ + """bascenev1.Session type for free-for-all mode games.""" use_teams = False use_team_colors = False diff --git a/dist/ba_data/python/bascenev1/_gameactivity.py b/dist/ba_data/python/bascenev1/_gameactivity.py index 1517733..3c82c76 100644 --- a/dist/ba_data/python/bascenev1/_gameactivity.py +++ b/dist/ba_data/python/bascenev1/_gameactivity.py @@ -7,7 +7,7 @@ from __future__ import annotations import random import logging -from typing import TYPE_CHECKING, TypeVar, override +from typing import TYPE_CHECKING, override import babase @@ -24,17 +24,20 @@ if TYPE_CHECKING: from bascenev1lib.actor.playerspaz import PlayerSpaz from bascenev1lib.actor.bomb import TNTSpawner + import bascenev1 -PlayerT = TypeVar('PlayerT', bound='bascenev1.Player') -TeamT = TypeVar('TeamT', bound='bascenev1.Team') + +# Note: Need to suppress an undefined variable here because our pylint +# plugin clears type-arg declarations (which we don't require to be +# present at runtime) but keeps parent type-args (which we sometimes use +# at runtime). -class GameActivity(Activity[PlayerT, TeamT]): - """Common base class for all game bascenev1.Activities. - - Category: **Gameplay Classes** - """ +class GameActivity[PlayerT: bascenev1.Player, TeamT: bascenev1.Team]( + Activity[PlayerT, TeamT] # pylint: disable=undefined-variable +): + """Common base class for all game activities.""" # pylint: disable=too-many-public-methods @@ -64,36 +67,6 @@ class GameActivity(Activity[PlayerT, TeamT]): # (unless overridden by the map). default_music: bascenev1.MusicType | None = None - @classmethod - def create_settings_ui( - cls, - sessiontype: type[bascenev1.Session], - settings: dict | None, - completion_call: Callable[[dict | None], None], - ) -> None: - """Launch an in-game UI to configure settings for a game type. - - 'sessiontype' should be the bascenev1.Session class the game will - be used in. - - 'settings' should be an existing settings dict (implies 'edit' - ui mode) or None (implies 'add' ui mode). - - 'completion_call' will be called with a filled-out settings dict on - success or None on cancel. - - Generally subclasses don't need to override this; if they override - bascenev1.GameActivity.get_available_settings() and - bascenev1.GameActivity.get_supported_maps() they can just rely on - the default implementation here which calls those methods. - """ - assert babase.app.classic is not None - delegate = babase.app.classic.delegate - assert delegate is not None - delegate.create_default_game_settings_ui( - cls, sessiontype, settings, completion_call - ) - @classmethod def getscoreconfig(cls) -> bascenev1.ScoreConfig: """Return info about game scoring setup; can be overridden by games.""" @@ -228,7 +201,7 @@ class GameActivity(Activity[PlayerT, TeamT]): def supports_session_type( cls, sessiontype: type[bascenev1.Session] ) -> bool: - """Return whether this game supports the provided Session type.""" + """Return whether this game supports the provided session type.""" from bascenev1._multiteamsession import MultiTeamSession # By default, games support any versus mode @@ -238,10 +211,8 @@ class GameActivity(Activity[PlayerT, TeamT]): """Instantiate the Activity.""" super().__init__(settings) - plus = babase.app.plus - - # Holds some flattened info about the player set at the point - # when on_begin() is called. + #: Holds some flattened info about the player set at the point + #: when :meth:`on_begin()` is called. self.initialplayerinfos: list[bascenev1.PlayerInfo] | None = None # Go ahead and get our map loading. @@ -269,23 +240,6 @@ class GameActivity(Activity[PlayerT, TeamT]): None ) self._zoom_message_times: dict[int, float] = {} - self._is_waiting_for_continue = False - - self._continue_cost = ( - 25 - if plus is None - else plus.get_v1_account_misc_read_val('continueStartCost', 25) - ) - self._continue_cost_mult = ( - 2 - if plus is None - else plus.get_v1_account_misc_read_val('continuesMult', 2) - ) - self._continue_cost_offset = ( - 0 - if plus is None - else plus.get_v1_account_misc_read_val('continuesOffset', 0) - ) @property def map(self) -> _map.Map: @@ -392,103 +346,6 @@ class GameActivity(Activity[PlayerT, TeamT]): if music is not None: _music.setmusic(music) - def on_continue(self) -> None: - """ - This is called if a game supports and offers a continue and the player - accepts. In this case the player should be given an extra life or - whatever is relevant to keep the game going. - """ - - def _continue_choice(self, do_continue: bool) -> None: - plus = babase.app.plus - assert plus is not None - self._is_waiting_for_continue = False - if self.has_ended(): - return - with self.context: - if do_continue: - _bascenev1.getsound('shieldUp').play() - _bascenev1.getsound('cashRegister').play() - plus.add_v1_account_transaction( - {'type': 'CONTINUE', 'cost': self._continue_cost} - ) - if plus is not None: - plus.run_v1_account_transactions() - self._continue_cost = ( - self._continue_cost * self._continue_cost_mult - + self._continue_cost_offset - ) - self.on_continue() - else: - self.end_game() - - def is_waiting_for_continue(self) -> bool: - """Returns whether or not this activity is currently waiting for the - player to continue (or timeout)""" - return self._is_waiting_for_continue - - def continue_or_end_game(self) -> None: - """If continues are allowed, prompts the player to purchase a continue - and calls either end_game or continue_game depending on the result - """ - # pylint: disable=too-many-nested-blocks - # pylint: disable=cyclic-import - from bascenev1._coopsession import CoopSession - - classic = babase.app.classic - assert classic is not None - continues_window = classic.continues_window - - # Turning these off. I want to migrate towards monetization that - # feels less pay-to-win-ish. - allow_continues = False - - plus = babase.app.plus - try: - if ( - plus is not None - and plus.get_v1_account_misc_read_val('enableContinues', False) - and allow_continues - ): - session = self.session - - # We only support continuing in non-tournament games. - tournament_id = session.tournament_id - if tournament_id is None: - # We currently only support continuing in sequential - # co-op campaigns. - if isinstance(session, CoopSession): - assert session.campaign is not None - if session.campaign.sequential: - gnode = self.globalsnode - - # Only attempt this if we're not currently paused - # and there appears to be no UI. - assert babase.app.classic is not None - hmmw = babase.app.ui_v1.has_main_menu_window() - if not gnode.paused and not hmmw: - self._is_waiting_for_continue = True - with babase.ContextRef.empty(): - babase.apptimer( - 0.5, - lambda: continues_window( - self, - self._continue_cost, - continue_call=babase.WeakCall( - self._continue_choice, True - ), - cancel_call=babase.WeakCall( - self._continue_choice, False - ), - ), - ) - return - - except Exception: - logging.exception('Error handling continues.') - - self.end_game() - @override def on_begin(self) -> None: super().on_begin() @@ -940,9 +797,10 @@ class GameActivity(Activity[PlayerT, TeamT]): self.spawn_player(player) def spawn_player(self, player: PlayerT) -> bascenev1.Actor: - """Spawn *something* for the provided bascenev1.Player. + """Spawn *something* for the provided player. - The default implementation simply calls spawn_player_spaz(). + The default implementation simply calls + :meth:`spawn_player_spaz()`. """ assert player # Dead references should never be passed as args. @@ -954,7 +812,7 @@ class GameActivity(Activity[PlayerT, TeamT]): position: Sequence[float] = (0, 0, 0), angle: float | None = None, ) -> PlayerSpaz: - """Create and wire up a bascenev1.PlayerSpaz for the provided Player.""" + """Create and wire up a player-spaz for the provided player.""" # pylint: disable=too-many-locals # pylint: disable=cyclic-import from bascenev1._gameutils import animate @@ -1277,6 +1135,7 @@ class GameActivity(Activity[PlayerT, TeamT]): def show_zoom_message( self, message: babase.Lstr, + *, color: Sequence[float] = (0.9, 0.4, 0.0), scale: float = 0.8, duration: float = 2.0, diff --git a/dist/ba_data/python/bascenev1/_gameresults.py b/dist/ba_data/python/bascenev1/_gameresults.py index 8735ff3..795070c 100644 --- a/dist/ba_data/python/bascenev1/_gameresults.py +++ b/dist/ba_data/python/bascenev1/_gameresults.py @@ -21,20 +21,17 @@ if TYPE_CHECKING: @dataclass class WinnerGroup: - """Entry for a winning team or teams calculated by game-results.""" + """Winning team or teams as calculated by a :class:`GameResults`.""" score: int | None - teams: Sequence[bascenev1.SessionTeam] + teams: list[bascenev1.SessionTeam] class GameResults: - """ - Results for a completed game. + """Results for a completed game. - Category: **Gameplay Classes** - - Upon completion, a game should fill one of these out and pass it to its - bascenev1.Activity.end call. + Upon completion, a game should fill one of these out and pass it to + its :meth:`~bascenev1.Activity.end()` call. """ def __init__(self) -> None: @@ -69,8 +66,8 @@ class GameResults: def set_team_score(self, team: bascenev1.Team, score: int | None) -> None: """Set the score for a given team. - This can be a number or None. - (see the none_is_winner arg in the constructor) + This can be a number or None (see the ``none_is_winner`` arg in + the constructor). """ assert isinstance(team, Team) sessionteam = team.sessionteam @@ -79,7 +76,7 @@ class GameResults: def get_sessionteam_score( self, sessionteam: bascenev1.SessionTeam ) -> int | None: - """Return the score for a given bascenev1.SessionTeam.""" + """Return the score for a given team.""" assert isinstance(sessionteam, SessionTeam) for score in list(self._scores.values()): if score[0]() is sessionteam: @@ -90,7 +87,7 @@ class GameResults: @property def sessionteams(self) -> list[bascenev1.SessionTeam]: - """Return all bascenev1.SessionTeams in the results.""" + """Return all teams in the results.""" if not self._game_set: raise RuntimeError("Can't get teams until game is set.") teams = [] @@ -104,13 +101,13 @@ class GameResults: def has_score_for_sessionteam( self, sessionteam: bascenev1.SessionTeam ) -> bool: - """Return whether there is a score for a given session-team.""" + """Return whether there is a score for a given team.""" return any(s[0]() is sessionteam for s in self._scores.values()) def get_sessionteam_score_str( self, sessionteam: bascenev1.SessionTeam ) -> babase.Lstr: - """Return the score for the given session-team as an Lstr. + """Return the score for the given team as an :class:`~bascenev1.Lstr`. (properly formatted for the score type.) """ @@ -163,7 +160,7 @@ class GameResults: @property def winning_sessionteam(self) -> bascenev1.SessionTeam | None: - """The winning SessionTeam if there is exactly one, or else None.""" + """The winning team if there is exactly one, or else None.""" if not self._game_set: raise RuntimeError("Can't get winners until game is set.") winners = self.winnergroups @@ -173,7 +170,7 @@ class GameResults: @property def winnergroups(self) -> list[WinnerGroup]: - """Get an ordered list of winner groups.""" + """The ordered list of winner-groups.""" if not self._game_set: raise RuntimeError("Can't get winners until game is set.") diff --git a/dist/ba_data/python/bascenev1/_gameutils.py b/dist/ba_data/python/bascenev1/_gameutils.py index 814e4bb..cc5f8cd 100644 --- a/dist/ba_data/python/bascenev1/_gameutils.py +++ b/dist/ba_data/python/bascenev1/_gameutils.py @@ -4,6 +4,7 @@ from __future__ import annotations +import random from dataclasses import dataclass from typing import TYPE_CHECKING, NewType @@ -30,10 +31,7 @@ TROPHY_CHARS = { @dataclass class GameTip: - """Defines a tip presentable to the user at the start of a game. - - Category: **Gameplay Classes** - """ + """Defines a tip presentable to the user at the start of a game.""" text: str icon: bascenev1.Texture | None = None @@ -56,8 +54,6 @@ def animate( ) -> bascenev1.Node: """Animate values on a target bascenev1.Node. - Category: **Gameplay Functions** - Creates an 'animcurve' node with the provided values and time as an input, connect it to the provided attribute, and set it to die with the target. Key values are provided as time:value dictionary pairs. Time values are @@ -111,13 +107,12 @@ def animate_array( attr: str, size: int, keys: dict[float, Sequence[float]], + *, loop: bool = False, offset: float = 0, ) -> None: """Animate an array of values on a target bascenev1.Node. - Category: **Gameplay Functions** - Like bs.animate, but operates on array attributes. """ combine = _bascenev1.newnode('combine', owner=node, attrs={'size': size}) @@ -174,10 +169,7 @@ def animate_array( def show_damage_count( damage: str, position: Sequence[float], direction: Sequence[float] ) -> None: - """Pop up a damage count at a position in space. - - Category: **Gameplay Functions** - """ + """Pop up a damage count at a position in space.""" lifespan = 1.0 app = babase.app @@ -237,13 +229,10 @@ def show_damage_count( def cameraflash(duration: float = 999.0) -> None: """Create a strobing camera flash effect. - Category: **Gameplay Functions** - (as seen when a team wins a game) Duration is in seconds. """ # pylint: disable=too-many-locals - import random from bascenev1._nodeactor import NodeActor x_spread = 10 diff --git a/dist/ba_data/python/bascenev1/_level.py b/dist/ba_data/python/bascenev1/_level.py index 6da0a7e..0f777dc 100644 --- a/dist/ba_data/python/bascenev1/_level.py +++ b/dist/ba_data/python/bascenev1/_level.py @@ -16,10 +16,7 @@ if TYPE_CHECKING: class Level: - """An entry in a bascenev1.Campaign. - - Category: **Gameplay Classes** - """ + """An entry in a :class:`~bascenev1.Campaign`.""" def __init__( self, @@ -27,6 +24,7 @@ class Level: gametype: type[bascenev1.GameActivity], settings: dict, preview_texture_name: str, + *, displayname: str | None = None, ): self._name = name @@ -45,7 +43,7 @@ class Level: @property def name(self) -> str: - """The unique name for this Level.""" + """The unique name for this level.""" return self._name def get_settings(self) -> dict[str, Any]: @@ -59,16 +57,12 @@ class Level: @property def preview_texture_name(self) -> str: - """The preview texture name for this Level.""" + """The preview texture name for this level.""" return self._preview_texture_name - # def get_preview_texture(self) -> bauiv1.Texture: - # """Load/return the preview Texture for this Level.""" - # return _bauiv1.gettexture(self._preview_texture_name) - @property def displayname(self) -> bascenev1.Lstr: - """The localized name for this Level.""" + """The localized name for this level.""" return babase.Lstr( translate=( 'coopLevelNames', @@ -85,20 +79,20 @@ class Level: @property def gametype(self) -> type[bascenev1.GameActivity]: - """The type of game used for this Level.""" + """The type of game used for this level.""" return self._gametype @property def campaign(self) -> bascenev1.Campaign | None: - """The baclassic.Campaign this Level is associated with, or None.""" + """The campaign this level is associated with, or None.""" return None if self._campaign is None else self._campaign() @property def index(self) -> int: - """The zero-based index of this Level in its baclassic.Campaign. + """The zero-based index of this level in its campaign. - Access results in a RuntimeError if the Level is not assigned to a - Campaign. + Access results in a RuntimeError if the level is not assigned to + a campaign. """ if self._index is None: raise RuntimeError('Level is not part of a Campaign') @@ -106,7 +100,7 @@ class Level: @property def complete(self) -> bool: - """Whether this Level has been completed.""" + """Whether this level has been completed.""" config = self._get_config_dict() val = config.get('Complete', False) assert isinstance(val, bool) @@ -122,7 +116,7 @@ class Level: config['Complete'] = val def get_high_scores(self) -> dict: - """Return the current high scores for this Level.""" + """Return the current high scores for this level.""" config = self._get_config_dict() high_scores_key = 'High Scores' + self.get_score_version_string() if high_scores_key not in config: @@ -136,10 +130,11 @@ class Level: config[high_scores_key] = high_scores def get_score_version_string(self) -> str: - """Return the score version string for this Level. + """Return the score version string for this level. - If a Level's gameplay changes significantly, its version string - can be changed to separate its new high score lists/etc. from the old. + If a level's gameplay changes significantly, its version string + can be changed to separate its new high score lists/etc. from + the old. """ if self._score_version_string is None: scorever = self._gametype.getscoreconfig().version @@ -151,13 +146,13 @@ class Level: @property def rating(self) -> float: - """The current rating for this Level.""" + """The current rating for this level.""" val = self._get_config_dict().get('Rating', 0.0) assert isinstance(val, float) return val def set_rating(self, rating: float) -> None: - """Set a rating for this Level, replacing the old ONLY IF higher.""" + """Set a rating for this level, replacing the old ONLY IF higher.""" old_rating = self.rating config = self._get_config_dict() config['Rating'] = max(old_rating, rating) @@ -165,8 +160,9 @@ class Level: def _get_config_dict(self) -> dict[str, Any]: """Return/create the persistent state dict for this level. - The referenced dict exists under the game's config dict and - can be modified in place.""" + The referenced dict exists under the game's config dict and can + be modified in place. + """ campaign = self.campaign if campaign is None: raise RuntimeError('Level is not in a campaign.') @@ -178,8 +174,9 @@ class Level: return val def set_campaign(self, campaign: bascenev1.Campaign, index: int) -> None: - """For use by baclassic.Campaign when adding levels to itself. + """Internal: Used by campaign when adding levels to itself. - (internal)""" + :meta private: + """ self._campaign = weakref.ref(campaign) self._index = index diff --git a/dist/ba_data/python/bascenev1/_lobby.py b/dist/ba_data/python/bascenev1/_lobby.py index 001aa2d..528e8da 100644 --- a/dist/ba_data/python/bascenev1/_lobby.py +++ b/dist/ba_data/python/bascenev1/_lobby.py @@ -178,10 +178,7 @@ class ChangeMessage: class Chooser: - """A character/team selector for a bascenev1.Player. - - Category: Gameplay Classes - """ + """A character/team selector for a player.""" def __del__(self) -> None: # Just kill off our base node; the rest should go down with it. @@ -364,7 +361,7 @@ class Chooser: @property def sessionplayer(self) -> bascenev1.SessionPlayer: - """The bascenev1.SessionPlayer associated with this chooser.""" + """The session-player associated with this chooser.""" return self._sessionplayer @property @@ -373,11 +370,17 @@ class Chooser: return self._ready def set_vpos(self, vpos: float) -> None: - """(internal)""" + """(internal) + + :meta private: + """ self._vpos = vpos def set_dead(self, val: bool) -> None: - """(internal)""" + """(internal) + + :meta private: + """ self._dead = val @property @@ -387,7 +390,7 @@ class Chooser: @property def lobby(self) -> bascenev1.Lobby: - """The chooser's baclassic.Lobby.""" + """The chooser's lobby.""" lobby = self._lobby() if lobby is None: raise babase.NotFoundError('Lobby does not exist.') @@ -588,10 +591,11 @@ class Chooser: # Handle '_edit' as a special case. if profilename == '_edit' and ready: with babase.ContextRef.empty(): - classic.profile_browser_window(in_main_menu=False) - # Give their input-device UI ownership too - # (prevent someone else from snatching it in crowded games) + classic.profile_browser_window() + + # Give their input-device UI ownership too (prevent + # someone else from snatching it in crowded games). babase.set_ui_input_device(self._sessionplayer.inputdevice.id) return @@ -939,10 +943,7 @@ class Chooser: class Lobby: - """Container for baclassic.Choosers. - - Category: Gameplay Classes - """ + """Environment where players can selecting characters, etc.""" def __del__(self) -> None: # Reset any players that still have a chooser in us. @@ -986,7 +987,7 @@ class Lobby: @property def use_team_colors(self) -> bool: - """A bool for whether this lobby is using team colors. + """Whether this lobby is using team colors. If False, inidividual player colors are used instead. """ @@ -994,7 +995,7 @@ class Lobby: @property def sessionteams(self) -> list[bascenev1.SessionTeam]: - """bascenev1.SessionTeams available in this lobby.""" + """The teams available in this lobby.""" allteams = [] for tref in self._sessionteams: team = tref() @@ -1003,7 +1004,7 @@ class Lobby: return allteams def get_choosers(self) -> list[Chooser]: - """Return the lobby's current choosers.""" + """The current choosers present.""" return self.choosers def create_join_info(self) -> JoinInfo: @@ -1069,8 +1070,8 @@ class Lobby: found = True # Mark it as dead since there could be more - # change-commands/etc coming in still for it; - # want to avoid duplicate player-adds/etc. + # change-commands/etc coming in still for it; want to + # avoid duplicate player-adds/etc. chooser.set_dead(True) self.choosers.remove(chooser) break diff --git a/dist/ba_data/python/bascenev1/_map.py b/dist/ba_data/python/bascenev1/_map.py index 4b3b7a9..5718289 100644 --- a/dist/ba_data/python/bascenev1/_map.py +++ b/dist/ba_data/python/bascenev1/_map.py @@ -20,8 +20,6 @@ if TYPE_CHECKING: def get_filtered_map_name(name: str) -> str: """Filter a map name to account for name changes, etc. - Category: **Asset Functions** - This can be used to support old playlists, etc. """ # Some legacy name fallbacks... can remove these eventually. @@ -33,18 +31,12 @@ def get_filtered_map_name(name: str) -> str: def get_map_display_string(name: str) -> babase.Lstr: - """Return a babase.Lstr for displaying a given map\'s name. - - Category: **Asset Functions** - """ + """Return a babase.Lstr for displaying a given map's name.""" return babase.Lstr(translate=('mapsNames', name)) def get_map_class(name: str) -> type[Map]: - """Return a map type given a name. - - Category: **Asset Functions** - """ + """Return a map type given a name.""" assert babase.app.classic is not None name = get_filtered_map_name(name) try: @@ -57,8 +49,6 @@ def get_map_class(name: str) -> type[Map]: class Map(Actor): """A game map. - Category: **Gameplay Classes** - Consists of a collection of terrain nodes, metadata, and other functionality comprising a game map. """ @@ -343,7 +333,7 @@ class Map(Actor): ) -> Sequence[float]: """Return a flag position on the map for the given team index. - Pass None to get the default flag point. + Pass ``None`` to get the default flag point. (used for things such as king-of-the-hill) """ if team_index is None: diff --git a/dist/ba_data/python/bascenev1/_messages.py b/dist/ba_data/python/bascenev1/_messages.py index cecf8db..2c8166c 100644 --- a/dist/ba_data/python/bascenev1/_messages.py +++ b/dist/ba_data/python/bascenev1/_messages.py @@ -5,14 +5,18 @@ from __future__ import annotations from dataclasses import dataclass -from typing import TYPE_CHECKING, TypeVar +from typing import TYPE_CHECKING from enum import Enum import babase if TYPE_CHECKING: + # pylint: disable=cyclic-import from typing import Sequence, Any + # from _bascenev1 import Node + # from bascenev1._player import Player + import bascenev1 @@ -28,17 +32,11 @@ UNHANDLED = _UnhandledType() @dataclass class OutOfBoundsMessage: - """A message telling an object that it is out of bounds. - - Category: Message Classes - """ + """A message telling an object that it is out of bounds.""" class DeathType(Enum): - """A reason for a death. - - Category: Enums - """ + """A reason for a death.""" GENERIC = 'generic' OUT_OF_BOUNDS = 'out_of_bounds' @@ -52,29 +50,21 @@ class DeathType(Enum): class DieMessage: """A message telling an object to die. - Category: **Message Classes** - Most bascenev1.Actor-s respond to this. """ + #: If this is set to True, the actor should disappear immediately. + #: This is for 'removing' stuff from the game more so than 'killing' + #: it. If False, the actor should die a 'normal' death and can take + #: its time with lingering corpses, sound effects, etc. immediate: bool = False - """If this is set to True, the actor should disappear immediately. - This is for 'removing' stuff from the game more so than 'killing' - it. If False, the actor should die a 'normal' death and can take - its time with lingering corpses, sound effects, etc.""" + #: The particular reason for death. how: DeathType = DeathType.GENERIC - """The particular reason for death.""" - - -PlayerT = TypeVar('PlayerT', bound='bascenev1.Player') class PlayerDiedMessage: - """A message saying a bascenev1.Player has died. - - Category: **Message Classes** - """ + """A message saying a bascenev1.Player has died.""" killed: bool """If True, the player was killed; @@ -102,7 +92,9 @@ class PlayerDiedMessage: self.killed = was_killed self.how = how - def getkillerplayer(self, playertype: type[PlayerT]) -> PlayerT | None: + def getkillerplayer[PlayerT: bascenev1.Player]( + self, playertype: type[PlayerT] + ) -> PlayerT | None: """Return the bascenev1.Player responsible for the killing, if any. Pass the Player type being used by the current game. @@ -110,7 +102,9 @@ class PlayerDiedMessage: assert isinstance(self._killerplayer, (playertype, type(None))) return self._killerplayer - def getplayer(self, playertype: type[PlayerT]) -> PlayerT: + def getplayer[PlayerT: bascenev1.Player]( + self, playertype: type[PlayerT] + ) -> PlayerT: """Return the bascenev1.Player that died. The type of player for the current activity should be passed so that @@ -129,8 +123,6 @@ class PlayerDiedMessage: class StandMessage: """A message telling an object to move to a position in space. - Category: **Message Classes** - Used when teleporting players to home base, etc. """ @@ -143,10 +135,7 @@ class StandMessage: @dataclass class PickUpMessage: - """Tells an object that it has picked something up. - - Category: **Message Classes** - """ + """Tells an object that it has picked something up.""" node: bascenev1.Node """The bascenev1.Node that is getting picked up.""" @@ -154,18 +143,12 @@ class PickUpMessage: @dataclass class DropMessage: - """Tells an object that it has dropped what it was holding. - - Category: **Message Classes** - """ + """Tells an object that it has dropped what it was holding.""" @dataclass class PickedUpMessage: - """Tells an object that it has been picked up by something. - - Category: **Message Classes** - """ + """Tells an object that it has been picked up by something.""" node: bascenev1.Node """The bascenev1.Node doing the picking up.""" @@ -173,10 +156,7 @@ class PickedUpMessage: @dataclass class DroppedMessage: - """Tells an object that it has been dropped. - - Category: **Message Classes** - """ + """Tells an object that it has been dropped.""" node: bascenev1.Node """The bascenev1.Node doing the dropping.""" @@ -184,18 +164,12 @@ class DroppedMessage: @dataclass class ShouldShatterMessage: - """Tells an object that it should shatter. - - Category: **Message Classes** - """ + """Tells an object that it should shatter.""" @dataclass class ImpactDamageMessage: - """Tells an object that it has been jarred violently. - - Category: **Message Classes** - """ + """Tells an object that it has been jarred violently.""" intensity: float """The intensity of the impact.""" @@ -205,26 +179,21 @@ class ImpactDamageMessage: class FreezeMessage: """Tells an object to become frozen. - Category: **Message Classes** - As seen in the effects of an ice bascenev1.Bomb. """ + time: float = 5.0 + """The amount of time the object will be frozen.""" + @dataclass class ThawMessage: - """Tells an object to stop being frozen. - - Category: **Message Classes** - """ + """Tells an object to stop being frozen.""" @dataclass class CelebrateMessage: - """Tells an object to celebrate. - - Category: **Message Classes** - """ + """Tells an object to celebrate.""" duration: float = 10.0 """Amount of time to celebrate in seconds.""" @@ -233,14 +202,13 @@ class CelebrateMessage: class HitMessage: """Tells an object it has been hit in some way. - Category: **Message Classes** - - This is used by punches, explosions, etc to convey - their effect to a target. + This is used by punches, explosions, etc to convey their effect to a + target. """ def __init__( self, + *, srcnode: bascenev1.Node | None = None, pos: Sequence[float] | None = None, velocity: Sequence[float] | None = None, @@ -274,7 +242,9 @@ class HitMessage: force_direction if force_direction is not None else velocity ) - def get_source_player(self, playertype: type[PlayerT]) -> PlayerT | None: + def get_source_player[PlayerT: bascenev1.Player]( + self, playertype: type[PlayerT] + ) -> PlayerT | None: """Return the source-player if one exists and is the provided type.""" player: Any = self._source_player diff --git a/dist/ba_data/python/bascenev1/_multiteamsession.py b/dist/ba_data/python/bascenev1/_multiteamsession.py index 6dad127..85b6799 100644 --- a/dist/ba_data/python/bascenev1/_multiteamsession.py +++ b/dist/ba_data/python/bascenev1/_multiteamsession.py @@ -25,8 +25,6 @@ DEFAULT_TEAM_NAMES = ('Blue', 'Red') class MultiTeamSession(Session): """Common base for DualTeamSession and FreeForAllSession. - Category: **Gameplay Classes** - Free-for-all-mode is essentially just teams-mode with each bascenev1.Player having their own bascenev1.Team, so there is much overlap in functionality. diff --git a/dist/ba_data/python/bascenev1/_music.py b/dist/ba_data/python/bascenev1/_music.py index 52e4216..c1c3c25 100644 --- a/dist/ba_data/python/bascenev1/_music.py +++ b/dist/ba_data/python/bascenev1/_music.py @@ -16,8 +16,6 @@ if TYPE_CHECKING: class MusicType(Enum): """Types of music available to play in-game. - Category: **Enums** - These do not correspond to specific pieces of music, but rather to 'situations'. The actual music played for each type can be overridden by the game or by the user. @@ -50,16 +48,15 @@ class MusicType(Enum): def setmusic(musictype: MusicType | None, continuous: bool = False) -> None: """Set the app to play (or stop playing) a certain type of music. - category: **Gameplay Functions** + This function will handle loading and playing sound assets as + necessary, and also supports custom user soundtracks on specific + platforms so the user can override particular game music with their + own. - This function will handle loading and playing sound assets as necessary, - and also supports custom user soundtracks on specific platforms so the - user can override particular game music with their own. + Pass ``None`` to stop music. - Pass None to stop music. - - if 'continuous' is True and musictype is the same as what is already - playing, the playing track will not be restarted. + if ``continuous`` is True and musictype is the same as what is + already playing, the playing track will not be restarted. """ # All we do here now is set a few music attrs on the current globals diff --git a/dist/ba_data/python/bascenev1/_nodeactor.py b/dist/ba_data/python/bascenev1/_nodeactor.py index 965b596..8455910 100644 --- a/dist/ba_data/python/bascenev1/_nodeactor.py +++ b/dist/ba_data/python/bascenev1/_nodeactor.py @@ -18,8 +18,6 @@ if TYPE_CHECKING: class NodeActor(Actor): """A simple bascenev1.Actor type that wraps a single bascenev1.Node. - Category: **Gameplay Classes** - This Actor will delete its Node when told to die, and it's exists() call will return whether the Node still exists or not. """ diff --git a/dist/ba_data/python/bascenev1/_player.py b/dist/ba_data/python/bascenev1/_player.py index 47879d6..53a056b 100644 --- a/dist/ba_data/python/bascenev1/_player.py +++ b/dist/ba_data/python/bascenev1/_player.py @@ -6,7 +6,7 @@ from __future__ import annotations import logging from dataclasses import dataclass -from typing import TYPE_CHECKING, TypeVar, Generic, cast +from typing import TYPE_CHECKING, cast import babase @@ -18,16 +18,10 @@ if TYPE_CHECKING: import bascenev1 -PlayerT = TypeVar('PlayerT', bound='bascenev1.Player') -TeamT = TypeVar('TeamT', bound='bascenev1.Team') - @dataclass class PlayerInfo: - """Holds basic info about a player. - - Category: Gameplay Classes - """ + """Holds basic info about a player.""" name: str character: str @@ -35,20 +29,15 @@ class PlayerInfo: @dataclass class StandLocation: - """Describes a point in space and an angle to face. - - Category: Gameplay Classes - """ + """Describes a point in space and an angle to face.""" position: babase.Vec3 angle: float | None = None -class Player(Generic[TeamT]): +class Player[TeamT: bascenev1.Team]: """A player in a specific bascenev1.Activity. - Category: Gameplay Classes - These correspond to bascenev1.SessionPlayer objects, but are associated with a single bascenev1.Activity instance. This allows activities to specify their own custom bascenev1.Player types. @@ -102,7 +91,10 @@ class Player(Generic[TeamT]): self.character = sessionplayer.character self.color = sessionplayer.color self.highlight = sessionplayer.highlight - self._team = cast(TeamT, sessionplayer.sessionteam.activityteam) + self._team = cast( + TeamT, # pylint: disable=undefined-variable + sessionplayer.sessionteam.activityteam, + ) assert self._team is not None self._customdata = {} self._expired = False @@ -282,8 +274,6 @@ class Player(Generic[TeamT]): class EmptyPlayer(Player['bascenev1.EmptyTeam']): """An empty player for use by Activities that don't need to define one. - Category: Gameplay Classes - bascenev1.Player and bascenev1.Team are 'Generic' types, and so passing those top level classes as type arguments when defining a bascenev1.Activity reduces type safety. For example, @@ -303,11 +293,11 @@ class EmptyPlayer(Player['bascenev1.EmptyTeam']): # instead of requiring extra work by them. -def playercast(totype: type[PlayerT], player: bascenev1.Player) -> PlayerT: +def playercast[PlayerT: bascenev1.Player]( + totype: type[PlayerT], player: bascenev1.Player +) -> PlayerT: """Cast a bascenev1.Player to a specific bascenev1.Player subclass. - Category: Gameplay Functions - When writing type-checked code, sometimes code will deal with raw bascenev1.Player objects which need to be cast back to a game's actual player type so that access can be properly type-checked. This function @@ -321,12 +311,9 @@ def playercast(totype: type[PlayerT], player: bascenev1.Player) -> PlayerT: # NOTE: ideally we should have a single playercast() call and use overloads # for the optional variety, but that currently seems to not be working. # See: https://github.com/python/mypy/issues/8800 -def playercast_o( +def playercast_o[PlayerT: bascenev1.Player]( totype: type[PlayerT], player: bascenev1.Player | None ) -> PlayerT | None: - """A variant of bascenev1.playercast() for use with optional Player values. - - Category: Gameplay Functions - """ + """A variant of bascenev1.playercast() for optional Player values.""" assert isinstance(player, (totype, type(None))) return player diff --git a/dist/ba_data/python/bascenev1/_playlist.py b/dist/ba_data/python/bascenev1/_playlist.py index 013f6e5..c06199d 100644 --- a/dist/ba_data/python/bascenev1/_playlist.py +++ b/dist/ba_data/python/bascenev1/_playlist.py @@ -21,6 +21,7 @@ PlaylistType = list[dict[str, Any]] def filter_playlist( playlist: PlaylistType, sessiontype: type[Session], + *, add_resolved_type: bool = False, remove_unowned: bool = True, mark_unowned: bool = False, diff --git a/dist/ba_data/python/bascenev1/_powerup.py b/dist/ba_data/python/bascenev1/_powerup.py index 494b014..ba11f86 100644 --- a/dist/ba_data/python/bascenev1/_powerup.py +++ b/dist/ba_data/python/bascenev1/_powerup.py @@ -17,9 +17,8 @@ if TYPE_CHECKING: class PowerupMessage: """A message telling an object to accept a powerup. - Category: **Message Classes** - - This message is normally received by touching a bascenev1.PowerupBox. + This message is normally received by touching a + bascenev1.PowerupBox. """ poweruptype: str @@ -38,10 +37,8 @@ class PowerupMessage: class PowerupAcceptMessage: """A message informing a bascenev1.Powerup that it was accepted. - Category: **Message Classes** - - This is generally sent in response to a bascenev1.PowerupMessage - to inform the box (or whoever granted it) that it can go away. + This is generally sent in response to a bascenev1.PowerupMessage to + inform the box (or whoever granted it) that it can go away. """ diff --git a/dist/ba_data/python/bascenev1/_score.py b/dist/ba_data/python/bascenev1/_score.py index 0be5758..bf12d73 100644 --- a/dist/ba_data/python/bascenev1/_score.py +++ b/dist/ba_data/python/bascenev1/_score.py @@ -14,10 +14,7 @@ if TYPE_CHECKING: @unique class ScoreType(Enum): - """Type of scores. - - Category: **Enums** - """ + """Type of scores.""" SECONDS = 's' MILLISECONDS = 'ms' @@ -26,10 +23,7 @@ class ScoreType(Enum): @dataclass class ScoreConfig: - """Settings for how a game handles scores. - - Category: **Gameplay Classes** - """ + """Settings for how a game handles scores.""" label: str = 'Score' """A label show to the user for scores; 'Score', 'Time Survived', etc.""" diff --git a/dist/ba_data/python/bascenev1/_session.py b/dist/ba_data/python/bascenev1/_session.py index dd75734..da2cab9 100644 --- a/dist/ba_data/python/bascenev1/_session.py +++ b/dist/ba_data/python/bascenev1/_session.py @@ -40,62 +40,64 @@ def set_max_players_override(max_players: int | None) -> None: class Session: - """Defines a high level series of bascenev1.Activity-es. + """Wrangles a series of :class:`~bascenev1.Activity` instances. - Category: **Gameplay Classes** + Examples of sessions are :class:`bascenev1.FreeForAllSession`, + :class:`bascenev1.DualTeamSession`, and + :class:`bascenev1.CoopSession`. - Examples of sessions are bascenev1.FreeForAllSession, - bascenev1.DualTeamSession, and bascenev1.CoopSession. - - A Session is responsible for wrangling and transitioning between various - bascenev1.Activity instances such as mini-games and score-screens, and for - maintaining state between them (players, teams, score tallies, etc). + A session is responsible for wrangling and transitioning between + various activity instances such as mini-games and score-screens, and + for maintaining state between them (players, teams, score tallies, + etc). """ + #: Whether this session groups players into an explicit set of teams. + #: If this is off, a unique team is generated for each player that + #: joins. use_teams: bool = False - """Whether this session groups players into an explicit set of - teams. If this is off, a unique team is generated for each - player that joins.""" + #: Whether players on a team should all adopt the colors of that team + #: instead of their own profile colors. This only applies if + #: :attr:`use_teams` is enabled. use_team_colors: bool = True - """Whether players on a team should all adopt the colors of that - team instead of their own profile colors. This only applies if - use_teams is enabled.""" - # Note: even though these are instance vars, we annotate and document them - # at the class level so that looks better and nobody get lost while - # reading large __init__ + # Note: even though these are instance vars, we annotate and + # document them at the class level so that looks better and nobody + # get lost while reading large __init__ + #: The lobby instance where new players go to select a + #: profile/team/etc. before being added to games. Be aware this value + #: may be None if a session does not allow any such selection. lobby: bascenev1.Lobby - """The baclassic.Lobby instance where new bascenev1.Player-s go to select - a Profile/Team/etc. before being added to games. - Be aware this value may be None if a Session does not allow - any such selection.""" + #: The maximum number of players allowed in the Session. max_players: int - """The maximum number of players allowed in the Session.""" + #: The minimum number of players who must be present for the Session + #: to proceed past the initial joining screen min_players: int - """The minimum number of players who must be present for the Session - to proceed past the initial joining screen""" + #: All players in the session. Note that most things should use the + #: list of :class:`~bascenev1.Player` instances found in the + #: :class:`~bascenev1.Activity`; not this. Some players, such as + #: those who have not yet selected a character, will only be found on + #: this list. sessionplayers: list[bascenev1.SessionPlayer] - """All bascenev1.SessionPlayers in the Session. Most things should use - the list of bascenev1.Player-s in bascenev1.Activity; not this. Some - players, such as those who have not yet selected a character, will - only be found on this list.""" + #: A shared dictionary for objects to use as storage on this session. + #: Ensure that keys here are unique to avoid collisions. customdata: dict - """A shared dictionary for objects to use as storage on this session. - Ensure that keys here are unique to avoid collisions.""" + #: All the teams in the session. Most things will operate on the list + #: of :class:`~bascenev1.Team` instances found in an + #: :class:`~bascenev1.Activity`; not this. sessionteams: list[bascenev1.SessionTeam] - """All the bascenev1.SessionTeams in the Session. Most things should - use the list of bascenev1.Team-s in bascenev1.Activity; not this.""" def __init__( self, depsets: Sequence[bascenev1.DependencySet], + *, team_names: Sequence[str] | None = None, team_colors: Sequence[Sequence[float]] | None = None, min_players: int = 1, @@ -242,7 +244,7 @@ class Session: @property def sessionglobalsnode(self) -> bascenev1.Node: - """The sessionglobals bascenev1.Node for the session.""" + """The sessionglobals node for the session.""" node = self._sessionglobalsnode if not node: raise babase.NodeNotFoundError() @@ -253,15 +255,15 @@ class Session: ) -> bool: """Ask ourself if we should allow joins during an Activity. - Note that for a join to be allowed, both the Session and Activity - have to be ok with it (via this function and the - Activity.allow_mid_activity_joins property. + Note that for a join to be allowed, both the session and + activity have to be ok with it (via this function and the + :attr:`bascenev1.Activity.allow_mid_activity_joins` property. """ del activity # Unused. return True def on_player_request(self, player: bascenev1.SessionPlayer) -> bool: - """Called when a new bascenev1.Player wants to join the Session. + """Called when a new player wants to join the session. This should return True or False to accept/reject. """ @@ -425,10 +427,10 @@ class Session: ) def end(self) -> None: - """Initiates an end to the session and a return to the main menu. + """Initiate an end to the session and a return to the main menu. - Note that this happens asynchronously, allowing the - session and its activities to shut down gracefully. + Note that this happens asynchronously, allowing the session and + its activities to shut down gracefully. """ self._wants_to_end = True if self._next_activity is None: @@ -456,10 +458,10 @@ class Session: self._ending = True # Prevent further actions. def on_team_join(self, team: bascenev1.SessionTeam) -> None: - """Called when a new bascenev1.Team joins the session.""" + """Called when a new team joins the session.""" def on_team_leave(self, team: bascenev1.SessionTeam) -> None: - """Called when a bascenev1.Team is leaving the session.""" + """Called when a team is leaving the session.""" def end_activity( self, @@ -468,12 +470,12 @@ class Session: delay: float, force: bool, ) -> None: - """Commence shutdown of a bascenev1.Activity (if not already occurring). + """Commence shutdown of an activity (if not already occurring). - 'delay' is the time delay before the Activity actually ends - (in seconds). Further calls to end() will be ignored up until - this time, unless 'force' is True, in which case the new results - will replace the old. + 'delay' is the time delay before the activity actually ends (in + seconds). Further calls to end the activity will be ignored up + until this time, unless 'force' is True, in which case the new + results will replace the old. """ # Only pay attention if this is coming from our current activity. if activity is not self._activity_retained: @@ -529,13 +531,13 @@ class Session: self._session._in_set_activity = False def setactivity(self, activity: bascenev1.Activity) -> None: - """Assign a new current bascenev1.Activity for the session. + """Assign a new current activity for the session. Note that this will not change the current context to the new - Activity's. Code must be run in the new activity's methods - (on_transition_in, etc) to get it. (so you can't do - session.setactivity(foo) and then bascenev1.newnode() to add a node - to foo) + activity's. Code must be run in the new activity's methods + (:meth:`~bascenev1.Activity.on_transition_in()`, etc) to get it. + (so you can't do ``session.setactivity(foo)`` and then + ``bascenev1.newnode()`` to add a node to foo). """ # Make sure we don't get called recursively. @@ -655,16 +657,16 @@ class Session: def on_activity_end( self, activity: bascenev1.Activity, results: Any ) -> None: - """Called when the current bascenev1.Activity has ended. + """Called when the current activity has ended. - The bascenev1.Session should look at the results and start - another bascenev1.Activity. + The session should look at the results and start another + activity. """ def begin_next_activity(self) -> None: """Called once the previous activity has been totally torn down. - This means we're ready to begin the next one + This means we're ready to begin the next one. """ if self._next_activity is None: # Should this ever happen? @@ -741,7 +743,10 @@ class Session: def transitioning_out_activity_was_freed( self, can_show_ad_on_death: bool ) -> None: - """(internal)""" + """(internal) + + :meta private: + """ # pylint: disable=cyclic-import # Since things should be generally still right now, it's a good time diff --git a/dist/ba_data/python/bascenev1/_settings.py b/dist/ba_data/python/bascenev1/_settings.py index 3534fdb..2aea006 100644 --- a/dist/ba_data/python/bascenev1/_settings.py +++ b/dist/ba_data/python/bascenev1/_settings.py @@ -13,10 +13,7 @@ if TYPE_CHECKING: @dataclass class Setting: - """Defines a user-controllable setting for a game or other entity. - - Category: Gameplay Classes - """ + """Defines a user-controllable setting for a game or other entity.""" name: str default: Any @@ -24,20 +21,14 @@ class Setting: @dataclass class BoolSetting(Setting): - """A boolean game setting. - - Category: Settings Classes - """ + """A boolean game setting.""" default: bool @dataclass class IntSetting(Setting): - """An integer game setting. - - Category: Settings Classes - """ + """An integer game setting.""" default: int min_value: int = 0 @@ -47,10 +38,7 @@ class IntSetting(Setting): @dataclass class FloatSetting(Setting): - """A floating point game setting. - - Category: Settings Classes - """ + """A floating point game setting.""" default: float min_value: float = 0.0 @@ -60,20 +48,14 @@ class FloatSetting(Setting): @dataclass class ChoiceSetting(Setting): - """A setting with multiple choices. - - Category: Settings Classes - """ + """A setting with multiple choices.""" choices: list[tuple[str, Any]] @dataclass class IntChoiceSetting(ChoiceSetting): - """An int setting with multiple choices. - - Category: Settings Classes - """ + """An int setting with multiple choices.""" default: int choices: list[tuple[str, int]] @@ -81,10 +63,7 @@ class IntChoiceSetting(ChoiceSetting): @dataclass class FloatChoiceSetting(ChoiceSetting): - """A float setting with multiple choices. - - Category: Settings Classes - """ + """A float setting with multiple choices.""" default: float choices: list[tuple[str, float]] diff --git a/dist/ba_data/python/bascenev1/_stats.py b/dist/ba_data/python/bascenev1/_stats.py index 4f3a0db..d5a2877 100644 --- a/dist/ba_data/python/bascenev1/_stats.py +++ b/dist/ba_data/python/bascenev1/_stats.py @@ -22,10 +22,7 @@ if TYPE_CHECKING: @dataclass class PlayerScoredMessage: - """Informs something that a bascenev1.Player scored. - - Category: **Message Classes** - """ + """Informs something that a bascenev1.Player scored.""" score: int """The score value.""" @@ -34,8 +31,6 @@ class PlayerScoredMessage: class PlayerRecord: """Stats for an individual player in a bascenev1.Stats object. - Category: **Gameplay Classes** - This does not necessarily correspond to a bascenev1.Player that is still present (stats may be retained for players that leave mid-game) @@ -196,6 +191,7 @@ class PlayerRecord: scale2: float, sound2: bascenev1.Sound | None, ) -> None: + # pylint: disable=too-many-positional-arguments from bascenev1lib.actor.popuptext import PopupText # Only award this if they're still alive and we can get @@ -252,10 +248,7 @@ class PlayerRecord: class Stats: - """Manages scores and statistics for a bascenev1.Session. - - Category: **Gameplay Classes** - """ + """Manages scores and statistics for a bascenev1.Session.""" def __init__(self) -> None: self._activity: weakref.ref[bascenev1.Activity] | None = None @@ -341,6 +334,7 @@ class Stats: self, player: bascenev1.Player, base_points: int = 1, + *, target: Sequence[float] | None = None, kill: bool = False, victim_player: bascenev1.Player | None = None, diff --git a/dist/ba_data/python/bascenev1/_team.py b/dist/ba_data/python/bascenev1/_team.py index 7deef3a..d9b99ad 100644 --- a/dist/ba_data/python/bascenev1/_team.py +++ b/dist/ba_data/python/bascenev1/_team.py @@ -6,7 +6,7 @@ from __future__ import annotations import weakref import logging -from typing import TYPE_CHECKING, TypeVar, Generic +from typing import TYPE_CHECKING import babase @@ -17,34 +17,32 @@ if TYPE_CHECKING: class SessionTeam: - """A team of one or more bascenev1.SessionPlayers. + """A team of one or more :class:`~bascenev1.SessionPlayer`. - Category: **Gameplay Classes** - - Note that a SessionPlayer *always* has a SessionTeam; - in some cases, such as free-for-all bascenev1.Sessions, - each SessionTeam consists of just one SessionPlayer. + Note that a player will *always* have a team. in some cases, such as + free-for-all :class:`~bascenev1.Session`, each team consists of + just one player. """ - # Annotate our attr types at the class level so they're introspectable. + # We annotate our attr types at the class level so they're more + # introspectable by docs tools/etc. + #: The team's name. name: babase.Lstr | str - """The team's name.""" + #: The team's color. color: tuple[float, ...] # FIXME: can't we make this fixed len? - """The team's color.""" + #: The list of players on the team. players: list[bascenev1.SessionPlayer] - """The list of bascenev1.SessionPlayer-s on the team.""" + #: A dict for use by the current :class:`~bascenev1.Session` for + #: storing data associated with this team. Unlike customdata, this + #: persists for the duration of the session. customdata: dict - """A dict for use by the current bascenev1.Session for - storing data associated with this team. - Unlike customdata, this persists for the duration - of the session.""" + #: The unique numeric id of the team. id: int - """The unique numeric id of the team.""" def __init__( self, @@ -52,12 +50,6 @@ class SessionTeam: name: babase.Lstr | str = '', color: Sequence[float] = (1.0, 1.0, 1.0), ): - """Instantiate a bascenev1.SessionTeam. - - In most cases, all teams are provided to you by the bascenev1.Session, - bascenev1.Session, so calling this shouldn't be necessary. - """ - self.id = team_id self.name = name self.color = tuple(color) @@ -66,20 +58,19 @@ class SessionTeam: self.activityteam: Team | None = None def leave(self) -> None: - """(internal)""" + """(internal) + + :meta private: + """ self.customdata = {} -PlayerT = TypeVar('PlayerT', bound='bascenev1.Player') +class Team[PlayerT: bascenev1.Player]: + """A team in a specific :class:`~bascenev1.Activity`. - -class Team(Generic[PlayerT]): - """A team in a specific bascenev1.Activity. - - Category: **Gameplay Classes** - - These correspond to bascenev1.SessionTeam objects, but are created - per activity so that the activity can use its own custom team subclass. + These correspond to :class:`~bascenev1.SessionTeam` objects, but are + created per activity so that the activity can use its own custom + team subclass. """ # Defining these types at the class level instead of in __init__ so @@ -97,9 +88,9 @@ class Team(Generic[PlayerT]): # get called by default if a dataclass inherits from us. def postinit(self, sessionteam: SessionTeam) -> None: - """Wire up a newly created SessionTeam. + """Internal: Wire up a newly created SessionTeam. - (internal) + :meta private: """ # Sanity check; if a dataclass is created that inherits from us, @@ -136,22 +127,23 @@ class Team(Generic[PlayerT]): @property def customdata(self) -> dict: - """Arbitrary values associated with the team. - Though it is encouraged that most player values be properly defined - on the bascenev1.Team subclass, it may be useful for player-agnostic - objects to store values here. This dict is cleared when the team - leaves or expires so objects stored here will be disposed of at - the expected time, unlike the Team instance itself which may - continue to be referenced after it is no longer part of the game. + """Arbitrary values associated with the team. Though it is + encouraged that most player values be properly defined on the + :class:`~bascenev1.Team` subclass, it may be useful for + player-agnostic objects to store values here. This dict is + cleared when the team leaves or expires so objects stored here + will be disposed of at the expected time, unlike the + :class:`~bascenev1.Team` instance itself which may continue to + be referenced after it is no longer part of the game. """ assert self._postinited assert not self._expired return self._customdata def leave(self) -> None: - """Called when the Team leaves a running game. + """Internal: Called when the team leaves a running game. - (internal) + :meta private: """ assert self._postinited assert not self._expired @@ -159,9 +151,9 @@ class Team(Generic[PlayerT]): del self.players def expire(self) -> None: - """Called when the Team is expiring (due to the Activity expiring). + """Internal: Called when team is expiring (due to its activity). - (internal) + :meta private: """ assert self._postinited assert not self._expired @@ -180,9 +172,10 @@ class Team(Generic[PlayerT]): @property def sessionteam(self) -> SessionTeam: - """Return the bascenev1.SessionTeam corresponding to this Team. + """The :class:`~bascenev1.SessionTeam` corresponding to this team. - Throws a babase.SessionTeamNotFoundError if there is none. + Throws a :class:`~babase.SessionTeamNotFoundError` if there is + none. """ assert self._postinited if self._sessionteam is not None: @@ -194,18 +187,16 @@ class Team(Generic[PlayerT]): class EmptyTeam(Team['bascenev1.EmptyPlayer']): - """An empty player for use by Activities that don't need to define one. + """An empty player for use by Activities that don't define one. - Category: **Gameplay Classes** - - bascenev1.Player and bascenev1.Team are 'Generic' types, and so passing - those top level classes as type arguments when defining a + bascenev1.Player and bascenev1.Team are 'Generic' types, and so + passing those top level classes as type arguments when defining a bascenev1.Activity reduces type safety. For example, activity.teams[0].player will have type 'Any' in that case. For that reason, it is better to pass EmptyPlayer and EmptyTeam when defining a bascenev1.Activity that does not need custom types of its own. - Note that EmptyPlayer defines its team type as EmptyTeam and vice versa, - so if you want to define your own class for one of them you should do so - for both. + Note that EmptyPlayer defines its team type as EmptyTeam and vice + versa, so if you want to define your own class for one of them you + should do so for both. """ diff --git a/dist/ba_data/python/bascenev1/_teamgame.py b/dist/ba_data/python/bascenev1/_teamgame.py index 29ecf7d..7e1c38d 100644 --- a/dist/ba_data/python/bascenev1/_teamgame.py +++ b/dist/ba_data/python/bascenev1/_teamgame.py @@ -5,7 +5,7 @@ from __future__ import annotations import logging -from typing import TYPE_CHECKING, TypeVar, override +from typing import TYPE_CHECKING, override import babase @@ -22,17 +22,20 @@ if TYPE_CHECKING: import bascenev1 -PlayerT = TypeVar('PlayerT', bound='bascenev1.Player') -TeamT = TypeVar('TeamT', bound='bascenev1.Team') + +# Note: Need to suppress an undefined variable here because our pylint +# plugin clears type-arg declarations (which we don't require to be +# present at runtime) but keeps parent type-args (which we sometimes use +# at runtime). -class TeamGameActivity(GameActivity[PlayerT, TeamT]): +class TeamGameActivity[PlayerT: bascenev1.Player, TeamT: bascenev1.Team]( + GameActivity[PlayerT, TeamT] # pylint: disable=undefined-variable +): """Base class for teams and free-for-all mode games. - Category: **Gameplay Classes** - - (Free-for-all is essentially just a special case where every - bascenev1.Player has their own bascenev1.Team) + (Free-for-all is essentially just a special case where every player + has their own team) """ @override @@ -40,11 +43,7 @@ class TeamGameActivity(GameActivity[PlayerT, TeamT]): def supports_session_type( cls, sessiontype: type[bascenev1.Session] ) -> bool: - """ - Class method override; - returns True for ba.DualTeamSessions and ba.FreeForAllSessions; - False otherwise. - """ + # By default, team games support dual-teams and ffa. return issubclass(sessiontype, DualTeamSession) or issubclass( sessiontype, FreeForAllSession ) @@ -52,9 +51,9 @@ class TeamGameActivity(GameActivity[PlayerT, TeamT]): def __init__(self, settings: dict): super().__init__(settings) - # By default we don't show kill-points in free-for-all sessions. + # By default we don't show kill-points in free-for-all sessions # (there's usually some activity-specific score and we don't - # wanna confuse things) + # wanna confuse things). if isinstance(self.session, FreeForAllSession): self.show_kill_points = False @@ -66,9 +65,9 @@ class TeamGameActivity(GameActivity[PlayerT, TeamT]): super().on_transition_in() - # On the first game, show the controls UI momentarily. - # (unless we're being run in co-op mode, in which case we leave - # it up to them) + # On the first game, show the controls UI momentarily (unless + # we're being run in co-op mode, in which case we leave it up to + # them). if not isinstance(self.session, CoopSession) and getattr( self, 'show_controls_guide', True ): @@ -114,12 +113,13 @@ class TeamGameActivity(GameActivity[PlayerT, TeamT]): position: Sequence[float] | None = None, angle: float | None = None, ) -> PlayerSpaz: - """ - Method override; spawns and wires up a standard bascenev1.PlayerSpaz - for a bascenev1.Player. + """Override to spawn and wire up a standard + :class:`~bascenev1lib.actor.playerspaz.PlayerSpaz` for a + :class:`~bascenev1.Player`. - If position or angle is not supplied, a default will be chosen based - on the bascenev1.Player and their bascenev1.Team. + If position or angle is not supplied, a default will be chosen + based on the :class:`~bascenev1.Player` and their + :class:`~bascenev1.Team`. """ if position is None: # In teams-mode get our team-start-location. diff --git a/dist/ba_data/python/bascenev1lib/__init__.py b/dist/ba_data/python/bascenev1lib/__init__.py index 4e8f537..b1fa37e 100644 --- a/dist/ba_data/python/bascenev1lib/__init__.py +++ b/dist/ba_data/python/bascenev1lib/__init__.py @@ -2,4 +2,4 @@ # """Library of stuff using the bascenev1 api: games, actors, etc.""" -# ba_meta require api 8 +# ba_meta require api 9 diff --git a/dist/ba_data/python/bascenev1lib/activity/coopscore.py b/dist/ba_data/python/bascenev1lib/activity/coopscore.py index 4b92b69..2eca62a 100644 --- a/dist/ba_data/python/bascenev1lib/activity/coopscore.py +++ b/dist/ba_data/python/bascenev1lib/activity/coopscore.py @@ -9,6 +9,8 @@ import random import logging from typing import TYPE_CHECKING, override +from efro.util import strict_partial +import bacommon.bs from bacommon.login import LoginType import bascenev1 as bs import bauiv1 as bui @@ -19,9 +21,6 @@ from bascenev1lib.actor.zoomtext import ZoomText if TYPE_CHECKING: from typing import Any, Sequence - from bauiv1lib.store.button import StoreButton - from bauiv1lib.league.rankbutton import LeagueRankButton - class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): """Score screen showing the results of a cooperative game.""" @@ -105,10 +104,7 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): # Ui bits. self._corner_button_offs: tuple[float, float] | None = None - self._league_rank_button: LeagueRankButton | None = None - self._store_button_instance: StoreButton | None = None self._restart_button: bui.Widget | None = None - self._update_corner_button_positions_timer: bui.AppTimer | None = None self._next_level_error: bs.Actor | None = None # Score/gameplay bits. @@ -207,20 +203,12 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): ) def _ui_menu(self) -> None: - from bauiv1lib import specialoffer - - if specialoffer.show_offer(): - return bui.containerwidget(edit=self._root_ui, transition='out_left') with self.context: bs.timer(0.1, bs.Call(bs.WeakCall(self.session.end))) def _ui_restart(self) -> None: from bauiv1lib.tournamententry import TournamentEntryWindow - from bauiv1lib import specialoffer - - if specialoffer.show_offer(): - return # If we're in a tournament and it looks like there's no time left, # disallow. @@ -268,10 +256,6 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): self.end({'outcome': 'restart'}) def _ui_next(self) -> None: - from bauiv1lib.specialoffer import show_offer - - if show_offer(): - return # If we didn't just complete this level but are choosing to play the # next one, set it as current (this won't happen otherwise). @@ -331,23 +315,30 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): ) def _should_show_worlds_best_button(self) -> bool: + + # Old high score lists webpage for tourneys seems broken + # (looking at meteor shower at least). + if self.session.tournament_id is not None: + return False + # Link is too complicated to display with no browser. return bui.is_browser_likely_available() def request_ui(self) -> None: """Set up a callback to show our UI at the next opportune time.""" - assert bui.app.classic is not None + classic = bui.app.classic + assert classic is not None # We don't want to just show our UI in case the user already has the # main menu up, so instead we add a callback for when the menu # closes; if we're still alive, we'll come up then. # If there's no main menu this gets called immediately. - bui.app.ui_v1.add_main_menu_close_callback(bui.WeakCall(self.show_ui)) + classic.add_main_menu_close_callback(bui.WeakCall(self.show_ui)) def show_ui(self) -> None: """Show the UI for restarting, playing the next Level, etc.""" # pylint: disable=too-many-locals - from bauiv1lib.store.button import StoreButton - from bauiv1lib.league.rankbutton import LeagueRankButton + # pylint: disable=too-many-statements + # pylint: disable=too-many-branches assert bui.app.classic is not None @@ -361,11 +352,14 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): return rootc = self._root_ui = bui.containerwidget( - size=(0, 0), transition='in_right' + size=(0, 0), + transition='in_right', + toolbar_visibility='no_menu_minimal', ) h_offs = 7.0 v_offs = -280.0 + v_offs2 = -236.0 # We wanna prevent controllers users from popping up browsers # or game-center widgets in cases where they can't easily get back @@ -393,7 +387,7 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): bui.buttonwidget( parent=rootc, color=(0.45, 0.4, 0.5), - position=(160, v_offs + 480), + position=(240, v_offs2 + 439), size=(350, 62), label=( bui.Lstr(resource='tournamentStandingsText') @@ -415,40 +409,85 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): show_next_button = self._is_more_levels and not (env.demo or env.arcade) if not show_next_button: - h_offs += 70 + h_offs += 60 - menu_button = bui.buttonwidget( - parent=rootc, - autoselect=True, - position=(h_offs - 130 - 60, v_offs), - size=(110, 85), - label='', - on_activate_call=bui.WeakCall(self._ui_menu), - ) - bui.imagewidget( - parent=rootc, - draw_controller=menu_button, - position=(h_offs - 130 - 60 + 22, v_offs + 14), - size=(60, 60), - texture=self._menu_icon_texture, - opacity=0.8, - ) - self._restart_button = restart_button = bui.buttonwidget( - parent=rootc, - autoselect=True, - position=(h_offs - 60, v_offs), - size=(110, 85), - label='', - on_activate_call=bui.WeakCall(self._ui_restart), - ) - bui.imagewidget( - parent=rootc, - draw_controller=restart_button, - position=(h_offs - 60 + 19, v_offs + 7), - size=(70, 70), - texture=self._replay_icon_texture, - opacity=0.8, - ) + # Due to virtual-bounds changes, have to squish buttons a bit to + # avoid overlapping with tips at bottom. Could look nicer to + # rework things in the middle to get more space, but would + # rather not touch this old code more than necessary. + small_buttons = False + + if small_buttons: + menu_button = bui.buttonwidget( + parent=rootc, + autoselect=True, + position=(h_offs - 130 - 45, v_offs + 40), + size=(100, 50), + label='', + button_type='square', + on_activate_call=bui.WeakCall(self._ui_menu), + ) + bui.imagewidget( + parent=rootc, + draw_controller=menu_button, + position=(h_offs - 130 - 60 + 43, v_offs + 43), + size=(45, 45), + texture=self._menu_icon_texture, + opacity=0.8, + ) + else: + menu_button = bui.buttonwidget( + parent=rootc, + autoselect=True, + position=(h_offs - 130 - 60, v_offs), + size=(110, 85), + label='', + on_activate_call=bui.WeakCall(self._ui_menu), + ) + bui.imagewidget( + parent=rootc, + draw_controller=menu_button, + position=(h_offs - 130 - 60 + 22, v_offs + 14), + size=(60, 60), + texture=self._menu_icon_texture, + opacity=0.8, + ) + + if small_buttons: + self._restart_button = restart_button = bui.buttonwidget( + parent=rootc, + autoselect=True, + position=(h_offs - 60, v_offs + 40), + size=(100, 50), + label='', + button_type='square', + on_activate_call=bui.WeakCall(self._ui_restart), + ) + bui.imagewidget( + parent=rootc, + draw_controller=restart_button, + position=(h_offs - 60 + 25, v_offs + 42), + size=(47, 47), + texture=self._replay_icon_texture, + opacity=0.8, + ) + else: + self._restart_button = restart_button = bui.buttonwidget( + parent=rootc, + autoselect=True, + position=(h_offs - 60, v_offs), + size=(110, 85), + label='', + on_activate_call=bui.WeakCall(self._ui_restart), + ) + bui.imagewidget( + parent=rootc, + draw_controller=restart_button, + position=(h_offs - 60 + 19, v_offs + 7), + size=(70, 70), + texture=self._replay_icon_texture, + opacity=0.8, + ) next_button: bui.Widget | None = None @@ -465,58 +504,53 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): button_sound = False image_opacity = 0.2 color = (0.3, 0.3, 0.3) - next_button = bui.buttonwidget( - parent=rootc, - autoselect=True, - position=(h_offs + 130 - 60, v_offs), - size=(110, 85), - label='', - on_activate_call=call, - color=color, - enable_sound=button_sound, - ) - bui.imagewidget( - parent=rootc, - draw_controller=next_button, - position=(h_offs + 130 - 60 + 12, v_offs + 5), - size=(80, 80), - texture=self._next_level_icon_texture, - opacity=image_opacity, - ) + + if small_buttons: + next_button = bui.buttonwidget( + parent=rootc, + autoselect=True, + position=(h_offs + 130 - 75, v_offs + 40), + size=(100, 50), + label='', + button_type='square', + on_activate_call=call, + color=color, + enable_sound=button_sound, + ) + bui.imagewidget( + parent=rootc, + draw_controller=next_button, + position=(h_offs + 130 - 60 + 12, v_offs + 40), + size=(50, 50), + texture=self._next_level_icon_texture, + opacity=image_opacity, + ) + else: + next_button = bui.buttonwidget( + parent=rootc, + autoselect=True, + position=(h_offs + 130 - 60, v_offs), + size=(110, 85), + label='', + on_activate_call=call, + color=color, + enable_sound=button_sound, + ) + bui.imagewidget( + parent=rootc, + draw_controller=next_button, + position=(h_offs + 130 - 60 + 12, v_offs + 5), + size=(80, 80), + texture=self._next_level_icon_texture, + opacity=image_opacity, + ) x_offs_extra = 0 if show_next_button else -100 self._corner_button_offs = ( - h_offs + 300.0 + 100.0 + x_offs_extra, - v_offs + 560.0, + h_offs + 300.0 + x_offs_extra, + v_offs + 519.0, ) - if env.demo or env.arcade: - self._league_rank_button = None - self._store_button_instance = None - else: - self._league_rank_button = LeagueRankButton( - parent=rootc, - position=(h_offs + 300 + 100 + x_offs_extra, v_offs + 560), - size=(100, 60), - scale=0.9, - color=(0.4, 0.4, 0.9), - textcolor=(0.9, 0.9, 2.0), - transition_delay=0.0, - smooth_update_delay=5.0, - ) - self._store_button_instance = StoreButton( - parent=rootc, - position=(h_offs + 400 + 100 + x_offs_extra, v_offs + 560), - show_tickets=True, - sale_scale=0.85, - size=(100, 60), - scale=0.9, - button_type='square', - color=(0.35, 0.25, 0.45), - textcolor=(0.9, 0.7, 1.0), - transition_delay=0.0, - ) - bui.containerwidget( edit=rootc, selected_child=( @@ -527,26 +561,12 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): on_cancel_call=menu_button.activate, ) - self._update_corner_button_positions() - self._update_corner_button_positions_timer = bui.AppTimer( - 1.0, bui.WeakCall(self._update_corner_button_positions), repeat=True - ) - - def _update_corner_button_positions(self) -> None: - offs = -55 if bui.is_party_icon_visible() else 0 - assert self._corner_button_offs is not None - pos_x = self._corner_button_offs[0] + offs - pos_y = self._corner_button_offs[1] - if self._league_rank_button is not None: - self._league_rank_button.set_position((pos_x, pos_y)) - if self._store_button_instance is not None: - self._store_button_instance.set_position((pos_x + 100, pos_y)) - def _player_press(self) -> None: # (Only for headless builds). - # If this activity is a good 'end point', ask server-mode just once if - # it wants to do anything special like switch sessions or kill the app. + # If this activity is a good 'end point', ask server-mode just + # once if it wants to do anything special like switch sessions + # or kill the app. if ( self._allow_server_transition and bs.app.classic is not None @@ -597,7 +617,6 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): @override def on_begin(self) -> None: - # FIXME: Clean this up. # pylint: disable=too-many-statements # pylint: disable=too-many-branches # pylint: disable=too-many-locals @@ -865,7 +884,7 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): # If we're not doing the world's-best button, just show a title # instead. ts_height = 300 - ts_h_offs = 210 + ts_h_offs = 290 v_offs = 40 txt = Text( ( @@ -939,7 +958,6 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): if display_scores[i][1] is None: name_str = '-' else: - # noinspection PyUnresolvedReferences name_str = ', '.join( [p['name'] for p in display_scores[i][1]['players']] ) @@ -1008,9 +1026,8 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): ts_h_offs = -480 v_offs = 40 - # Only make this if we don't have the button - # (never want clients to see it so no need for client-only - # version, etc). + # Only make this if we don't have the button (never want clients + # to see it so no need for client-only version, etc). if self._have_achievements: if not self._account_has_achievements: Text( @@ -1052,7 +1069,6 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): ).autoretain() def _got_friend_score_results(self, results: list[Any] | None) -> None: - # FIXME: tidy this up # pylint: disable=too-many-locals # pylint: disable=too-many-branches # pylint: disable=too-many-statements @@ -1187,35 +1203,77 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): transition_delay=tdelay2, ).autoretain() + def _on_v2_score_results( + self, response: bacommon.bs.ScoreSubmitResponse | Exception + ) -> None: + + if isinstance(response, Exception): + logging.debug('Got error score-submit response: %s', response) + return + + assert isinstance(response, bacommon.bs.ScoreSubmitResponse) + + # Aim to have these effects run shortly after the final rating + # hit happens. + with self.context: + assert self._begin_time is not None + delay = max(0, 5.5 - (bs.time() - self._begin_time)) + + assert bui.app.classic is not None + bs.timer( + delay, + strict_partial( + bui.app.classic.run_bs_client_effects, response.effects + ), + ) + def _got_score_results(self, results: dict[str, Any] | None) -> None: - # FIXME: tidy this up # pylint: disable=too-many-locals # pylint: disable=too-many-branches # pylint: disable=too-many-statements plus = bs.app.plus assert plus is not None + classic = bs.app.classic + assert classic is not None # We need to manually run this in the context of our activity # and only if we aren't shutting down. # (really should make the submit_score call handle that stuff itself) if self.expired: return + with self.context: # Delay a bit if results come in too fast. assert self._begin_time is not None base_delay = max(0, 2.7 - (bs.time() - self._begin_time)) - v_offs = 20 + # v_offs = 20 + v_offs = 64 if results is None: self._score_loading_status = Text( bs.Lstr(resource='worldScoresUnavailableText'), - position=(230, 150 + v_offs), + position=(280, 130 + v_offs), color=(1, 1, 1, 0.4), transition=Text.Transition.FADE_IN, transition_delay=base_delay + 0.3, scale=0.7, ) else: + + # If there's a score-uuid bundled, ship it along to the + # v2 master server to ask about any rewards from that + # end. + score_token = results.get('token') + if ( + isinstance(score_token, str) + and plus.accounts.primary is not None + ): + with plus.accounts.primary: + plus.cloud.send_message_cb( + bacommon.bs.ScoreSubmitMessage(score_token), + on_response=bui.WeakCall(self._on_v2_score_results), + ) + self._score_link = results['link'] assert self._score_link is not None # Prepend our master-server addr if its a relative addr. @@ -1254,7 +1312,7 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): (1.5 + base_delay), bs.WeakCall(self._show_world_rank, offs_x), ) - ts_h_offs = 200 + ts_h_offs = 280 ts_height = 300 # Show world tops. @@ -1274,7 +1332,7 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): ), position=( ts_h_offs - 35 + 95, - ts_height / 2 + 6 + v_offs, + ts_height / 2 + 6 + v_offs - 41, ), color=(0.4, 0.4, 0.4, 1.0), scale=0.7, @@ -1282,7 +1340,7 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): transition_delay=base_delay + 0.3, ).autoretain() else: - v_offs += 20 + v_offs += 40 h_offs_extra = 0 v_offs_names = 0 @@ -1309,6 +1367,37 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): random.randrange(0, len(times) + 1), (base_delay + i * 0.05, base_delay + 0.4 + i * 0.05), ) + + # Conundrum: We want to place line numbers to the + # left of our score column based on the largest + # score width. However scores may use Lstrs and thus + # may have different widths in different languages. + # We don't want to bake down the Lstrs we display + # because then clients can't view scores in their + # own language. So as a compromise lets measure + # max-width based on baked down Lstrs but then + # display regular Lstrs with max-width set based on + # that. Hopefully that'll look reasonable for most + # languages. + max_score_width = 10.0 + for tval in self._show_info['tops']: + score = int(tval[0]) + name_str = tval[1] + if name_str != '-': + max_score_width = max( + max_score_width, + bui.get_string_width( + ( + str(score) + if self._score_type == 'points' + else bs.timestring( + (score * 10) / 1000.0 + ).evaluate() + ), + suppress_warning=True, + ), + ) + for i, tval in enumerate(self._show_info['tops']): score = int(tval[0]) name_str = tval[1] @@ -1330,19 +1419,45 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): tdelay2 = times[i][1] if name_str != '-': + sstr = ( + str(score) + if self._score_type == 'points' + else bs.timestring((score * 10) / 1000.0) + ) + + # Line number. Text( - ( - str(score) - if self._score_type == 'points' - else bs.timestring((score * 10) / 1000.0) + str(i + 1), + position=( + ts_h_offs + + 20 + + h_offs_extra + - max_score_width + - 8.0, + ts_height / 2 + + -ts_height * (i + 1) / 10 + + v_offs + - 30.0, ), + scale=0.5, + h_align=Text.HAlign.RIGHT, + v_align=Text.VAlign.CENTER, + color=(0.3, 0.3, 0.3), + transition=Text.Transition.IN_LEFT, + transition_delay=tdelay1, + ).autoretain() + + # Score. + Text( + sstr, position=( ts_h_offs + 20 + h_offs_extra, ts_height / 2 + -ts_height * (i + 1) / 10 + v_offs - + 11.0, + - 30.0, ), + maxwidth=max_score_width, h_align=Text.HAlign.RIGHT, v_align=Text.VAlign.CENTER, color=color0, @@ -1350,6 +1465,7 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): transition=Text.Transition.IN_LEFT, transition_delay=tdelay1, ).autoretain() + # Player name. Text( bs.Lstr(value=name_str), position=( @@ -1358,7 +1474,7 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): + -ts_height * (i + 1) / 10 + v_offs_names + v_offs - + 11.0, + - 30.0, ), maxwidth=80.0 + 100.0 * len(self._playerinfos), v_align=Text.VAlign.CENTER, @@ -1453,16 +1569,12 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): ] # pylint: disable=useless-suppression # pylint: disable=unbalanced-tuple-unpacking - ( - pr1, - pv1, - pr2, - pv2, - pr3, - pv3, - ) = bs.app.classic.get_tournament_prize_strings( - tourney_info + (pr1, pv1, pr2, pv2, pr3, pv3) = ( + bs.app.classic.get_tournament_prize_strings( + tourney_info, include_tickets=False + ) ) + # pylint: enable=unbalanced-tuple-unpacking # pylint: enable=useless-suppression @@ -1478,10 +1590,14 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): transition_delay=2.0, ).autoretain() vval = -107 + 70 - for rng, val in ((pr1, pv1), (pr2, pv2), (pr3, pv3)): + for i, rng, val in ( + (0, pr1, pv1), + (1, pr2, pv2), + (2, pr3, pv3), + ): Text( rng, - position=(-410 + 10, vval), + position=(-430 + 10, vval), color=(1, 1, 1, 0.7), h_align=Text.HAlign.RIGHT, v_align=Text.VAlign.CENTER, @@ -1492,7 +1608,7 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): ).autoretain() Text( val, - position=(-390 + 10, vval), + position=(-410 + 10, vval), color=(0.7, 0.7, 0.7, 1.0), h_align=Text.HAlign.LEFT, v_align=Text.VAlign.CENTER, @@ -1501,6 +1617,9 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): maxwidth=300, transition_delay=2.0, ).autoretain() + bs.app.classic.create_in_game_tournament_prize_image( + tourney_info, i, (-410 + 70, vval) + ) vval -= 35 except Exception: logging.exception('Error showing prize ranges.') @@ -1573,6 +1692,7 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): transition_delay=1.0, ).autoretain() else: + assert rating is not None ZoomText( ( f'{rating:.1f}' diff --git a/dist/ba_data/python/bascenev1lib/activity/dualteamscore.py b/dist/ba_data/python/bascenev1lib/activity/dualteamscore.py index dc01ac5..6929a10 100644 --- a/dist/ba_data/python/bascenev1lib/activity/dualteamscore.py +++ b/dist/ba_data/python/bascenev1lib/activity/dualteamscore.py @@ -145,6 +145,7 @@ class TeamVictoryScoreScreenActivity(MultiTeamScoreScreenActivity): kill_delay: float, shiftdelay: float, ) -> None: + # pylint: disable=too-many-positional-arguments del kill_delay # Unused arg. ZoomText( str(sessionteam.customdata['score']), diff --git a/dist/ba_data/python/bascenev1lib/activity/freeforallvictory.py b/dist/ba_data/python/bascenev1lib/activity/freeforallvictory.py index 5f2189f..3f88e3b 100644 --- a/dist/ba_data/python/bascenev1lib/activity/freeforallvictory.py +++ b/dist/ba_data/python/bascenev1lib/activity/freeforallvictory.py @@ -87,6 +87,7 @@ class FreeForAllVictoryScoreScreenActivity(MultiTeamScoreScreenActivity): extrascale: float, flash: bool = False, ) -> Text: + # pylint: disable=too-many-positional-arguments return Text( text, position=( diff --git a/dist/ba_data/python/bascenev1lib/activity/multiteamscore.py b/dist/ba_data/python/bascenev1lib/activity/multiteamscore.py index 9feb385..b398f7d 100644 --- a/dist/ba_data/python/bascenev1lib/activity/multiteamscore.py +++ b/dist/ba_data/python/bascenev1lib/activity/multiteamscore.py @@ -57,6 +57,7 @@ class MultiTeamScoreScreenActivity(bs.ScoreScreenActivity): def show_player_scores( self, + *, delay: float = 2.5, results: bs.GameResults | None = None, scale: float = 1.0, @@ -134,6 +135,7 @@ class MultiTeamScoreScreenActivity(bs.ScoreScreenActivity): xoffs: float, yoffs: float, text: bs.Lstr, + *, h_align: Text.HAlign = Text.HAlign.RIGHT, extrascale: float = 1.0, maxwidth: float | None = 120.0, diff --git a/dist/ba_data/python/bascenev1lib/activity/multiteamvictory.py b/dist/ba_data/python/bascenev1lib/activity/multiteamvictory.py index a8ecc28..058ffd4 100644 --- a/dist/ba_data/python/bascenev1lib/activity/multiteamvictory.py +++ b/dist/ba_data/python/bascenev1lib/activity/multiteamvictory.py @@ -4,12 +4,15 @@ from __future__ import annotations -from typing import override +from typing import override, TYPE_CHECKING import bascenev1 as bs from bascenev1lib.activity.multiteamscore import MultiTeamScoreScreenActivity +if TYPE_CHECKING: + from typing import Any + class TeamSeriesVictoryScoreScreenActivity(MultiTeamScoreScreenActivity): """Final score screen for a team series.""" @@ -24,6 +27,8 @@ class TeamSeriesVictoryScoreScreenActivity(MultiTeamScoreScreenActivity): self._allow_server_transition = True self._tips_text = None self._default_show_tips = False + self._ffa_top_player_info: list[Any] | None = None + self._ffa_top_player_rec: bs.PlayerRecord | None = None @override def on_begin(self) -> None: @@ -70,6 +75,16 @@ class TeamSeriesVictoryScoreScreenActivity(MultiTeamScoreScreenActivity): ) ) player_entries.sort(reverse=True, key=lambda x: x[0]) + if len(player_entries) > 0: + # Store some info for the top ffa player so we can + # show winner info even if they leave. + self._ffa_top_player_info = list(player_entries[0]) + self._ffa_top_player_info[1] = self._ffa_top_player_info[ + 2 + ].getname() + self._ffa_top_player_info[2] = self._ffa_top_player_info[ + 2 + ].get_icon() else: for _pkey, prec in self.stats.get_records().items(): player_entries.append((prec.score, prec.name_full, prec)) @@ -308,7 +323,7 @@ class TeamSeriesVictoryScoreScreenActivity(MultiTeamScoreScreenActivity): most_killed = entry[2].killed_count if mkp is not None: Text( - bs.Lstr(resource='mostViolatedPlayerText'), + bs.Lstr(resource='mostDestroyedPlayerText'), color=(0.5, 0.5, 0.5, 1.0), v_align=Text.VAlign.CENTER, maxwidth=300, @@ -433,25 +448,42 @@ class TeamSeriesVictoryScoreScreenActivity(MultiTeamScoreScreenActivity): maxwidth=250, ).autoretain() else: - offs_v = -80.0 + offs_v = -80 + assert isinstance(self.session, bs.MultiTeamSession) + series_length = self.session.get_ffa_series_length() + icon: dict | None + # Pull live player info if they're still around. if len(team.players) == 1: + icon = team.players[0].get_icon() + player_name = team.players[0].getname(full=True, icon=False) + # Otherwise use the special info we stored when we came in. + elif ( + self._ffa_top_player_info is not None + and self._ffa_top_player_info[0] >= series_length + ): + icon = self._ffa_top_player_info[2] + player_name = self._ffa_top_player_info[1] + else: + icon = None + player_name = 'Player Not Found' + + if icon is not None: i = Image( - team.players[0].get_icon(), + icon, position=(0, 143), scale=(100, 100), ).autoretain() assert i.node bs.animate(i.node, 'opacity', {0.0: 0.0, 0.25: 1.0}) - ZoomText( - bs.Lstr( - value=team.players[0].getname(full=True, icon=False) - ), - position=(0, 97 + offs_v), - color=team.color, - scale=1.15, - jitter=1.0, - maxwidth=250, - ).autoretain() + + ZoomText( + bs.Lstr(value=player_name), + position=(0, 97 + offs_v + (0 if icon is not None else 60)), + color=team.color, + scale=1.15, + jitter=1.0, + maxwidth=250, + ).autoretain() s_extra = 1.0 if self._is_ffa else 1.0 diff --git a/dist/ba_data/python/bascenev1lib/actor/bomb.py b/dist/ba_data/python/bascenev1lib/actor/bomb.py index c73eceb..04dc297 100644 --- a/dist/ba_data/python/bascenev1lib/actor/bomb.py +++ b/dist/ba_data/python/bascenev1lib/actor/bomb.py @@ -8,7 +8,7 @@ from __future__ import annotations import random -from typing import TYPE_CHECKING, TypeVar, override +from typing import TYPE_CHECKING, override import bascenev1 as bs @@ -17,121 +17,118 @@ from bascenev1lib.gameutils import SharedObjects if TYPE_CHECKING: from typing import Any, Sequence, Callable -PlayerT = TypeVar('PlayerT', bound='bs.Player') - class BombFactory: - """Wraps up media and other resources used by bs.Bombs. + """Wraps up media and other resources used by the + :class:`~bascenev1lib.actor.bomb.Bomb` actor. - Category: **Gameplay Classes** - - A single instance of this is shared between all bombs - and can be retrieved via bascenev1lib.actor.bomb.get_factory(). + A single instance of this is shared between all bombs and can be + retrieved via the static :meth:`BombFactory.get()` method. """ + #: The mesh used for standard or ice bombs. bomb_mesh: bs.Mesh - """The bs.Mesh of a standard or ice bomb.""" + #: The mesh used for sticky-bombs. sticky_bomb_mesh: bs.Mesh - """The bs.Mesh of a sticky-bomb.""" + #: The mesh used for impact-bombs. impact_bomb_mesh: bs.Mesh - """The bs.Mesh of an impact-bomb.""" + #: The mesh used for land-mines. land_mine_mesh: bs.Mesh - """The bs.Mesh of a land-mine.""" + #: The mesh used of a tnt box. tnt_mesh: bs.Mesh - """The bs.Mesh of a tnt box.""" + #: The texture used for regular bombs. regular_tex: bs.Texture - """The bs.Texture for regular bombs.""" + #: The bs.Texture for ice bombs. ice_tex: bs.Texture - """The bs.Texture for ice bombs.""" + #: The bs.Texture for sticky bombs. sticky_tex: bs.Texture - """The bs.Texture for sticky bombs.""" + #: The bs.Texture for impact bombs. impact_tex: bs.Texture - """The bs.Texture for impact bombs.""" + #: The texture for impact bombs with lights lit. impact_lit_tex: bs.Texture - """The bs.Texture for impact bombs with lights lit.""" + #: The texture for land-mines. land_mine_tex: bs.Texture - """The bs.Texture for land-mines.""" + #: The texture for land-mines with the light lit. land_mine_lit_tex: bs.Texture - """The bs.Texture for land-mines with the light lit.""" + #: The texture for tnt boxes. tnt_tex: bs.Texture - """The bs.Texture for tnt boxes.""" + #: The sound for the hiss sound an ice bomb makes. hiss_sound: bs.Sound - """The bs.Sound for the hiss sound an ice bomb makes.""" + #: The sound for random falling debris after an explosion. debris_fall_sound: bs.Sound - """The bs.Sound for random falling debris after an explosion.""" + #: A sound for random wood debris falling after an explosion. wood_debris_fall_sound: bs.Sound - """A bs.Sound for random wood debris falling after an explosion.""" + #: A tuple of sounds for explosions. explode_sounds: Sequence[bs.Sound] - """A tuple of bs.Sound-s for explosions.""" + #: A sound of an ice bomb freezing something. freeze_sound: bs.Sound - """A bs.Sound of an ice bomb freezing something.""" + #: A sound of a burning fuse. fuse_sound: bs.Sound - """A bs.Sound of a burning fuse.""" + #: A sound for an activating impact bomb. activate_sound: bs.Sound - """A bs.Sound for an activating impact bomb.""" + #: A sound for an impact bomb about to explode due to time-out. warn_sound: bs.Sound - """A bs.Sound for an impact bomb about to explode due to time-out.""" + #: A material applied to all bombs. bomb_material: bs.Material - """A bs.Material applied to all bombs.""" + #: A material that generates standard bomb noises on impacts, etc. normal_sound_material: bs.Material - """A bs.Material that generates standard bomb noises on impacts, etc.""" + #: A material that makes 'splat' sounds and makes collisions softer. sticky_material: bs.Material - """A bs.Material that makes 'splat' sounds and makes collisions softer.""" + #: A material that keeps land-mines from blowing up. Applied to + #: land-mines when they are created to allow land-mines to touch + #: without exploding.""" land_mine_no_explode_material: bs.Material - """A bs.Material that keeps land-mines from blowing up. - Applied to land-mines when they are created to allow land-mines to - touch without exploding.""" + #: A bs.Material applied to activated land-mines that causes them to + #: explode on impact.""" land_mine_blast_material: bs.Material - """A bs.Material applied to activated land-mines that causes them to - explode on impact.""" + #: A material applied to activated impact-bombs that causes them + #: to explode on impact.""" impact_blast_material: bs.Material - """A bs.Material applied to activated impact-bombs that causes them to - explode on impact.""" blast_material: bs.Material - """A bs.Material applied to bomb blast geometry which triggers impact - events with what it touches.""" + #: A bs.Material applied to bomb blast geometry which triggers impact + #: events with what it touches. + #: A tuple of sounds for when bombs hit the ground. dink_sounds: Sequence[bs.Sound] - """A tuple of bs.Sound-s for when bombs hit the ground.""" + #: The sound for a squish made by a sticky bomb hitting something. sticky_impact_sound: bs.Sound - """The bs.Sound for a squish made by a sticky bomb hitting something.""" + #: The sound for a rolling bomb. roll_sound: bs.Sound - """bs.Sound for a rolling bomb.""" _STORENAME = bs.storagename() @classmethod def get(cls) -> BombFactory: - """Get/create a shared bascenev1lib.actor.bomb.BombFactory object.""" + """Create and/or return the single shared instance of this class.""" activity = bs.getactivity() factory = activity.customdata.get(cls._STORENAME) if factory is None: @@ -141,7 +138,7 @@ class BombFactory: return factory def random_explode_sound(self) -> bs.Sound: - """Return a random explosion bs.Sound from the factory.""" + """Return a random explosion sound from the factory.""" return self.explode_sounds[random.randrange(len(self.explode_sounds))] def __init__(self) -> None: @@ -333,6 +330,7 @@ class Blast(bs.Actor): def __init__( self, + *, position: Sequence[float] = (0.0, 1.0, 0.0), velocity: Sequence[float] = (0.0, 0.0, 0.0), blast_radius: float = 2.0, @@ -715,6 +713,7 @@ class Bomb(bs.Actor): def __init__( self, + *, position: Sequence[float] = (0.0, 1.0, 0.0), velocity: Sequence[float] = (0.0, 0.0, 0.0), bomb_type: str = 'normal', @@ -928,7 +927,9 @@ class Bomb(bs.Actor): {0: 0, 0.2: 1.3 * self.scale, 0.26: self.scale}, ) - def get_source_player(self, playertype: type[PlayerT]) -> PlayerT | None: + def get_source_player[PlayerT: bs.Player]( + self, playertype: type[PlayerT] + ) -> PlayerT | None: """Return the source-player if one exists and is the provided type.""" player: Any = self._source_player return ( diff --git a/dist/ba_data/python/bascenev1lib/actor/controlsguide.py b/dist/ba_data/python/bascenev1lib/actor/controlsguide.py index a750dfd..40b3f18 100644 --- a/dist/ba_data/python/bascenev1lib/actor/controlsguide.py +++ b/dist/ba_data/python/bascenev1lib/actor/controlsguide.py @@ -24,6 +24,7 @@ class ControlsGuide(bs.Actor): def __init__( self, + *, position: tuple[float, float] = (390.0, 120.0), scale: float = 1.0, delay: float = 0.0, diff --git a/dist/ba_data/python/bascenev1lib/actor/flag.py b/dist/ba_data/python/bascenev1lib/actor/flag.py index 0347203..591c73b 100644 --- a/dist/ba_data/python/bascenev1lib/actor/flag.py +++ b/dist/ba_data/python/bascenev1lib/actor/flag.py @@ -16,38 +16,31 @@ if TYPE_CHECKING: class FlagFactory: - """Wraps up media and other resources used by `Flag`s. + """Wraps up media and resources used by :class:`Flag`. - Category: **Gameplay Classes** - - A single instance of this is shared between all flags - and can be retrieved via FlagFactory.get(). + A single instance of this is shared between all flags and can be + retrieved via :meth:`FlagFactory.get()`. """ + #: The material applied to all flags. flagmaterial: bs.Material - """The bs.Material applied to all `Flag`s.""" + #: The sound used when a flag hits the ground. impact_sound: bs.Sound - """The bs.Sound used when a `Flag` hits the ground.""" + #: The sound used when a flag skids along the ground. skid_sound: bs.Sound - """The bs.Sound used when a `Flag` skids along the ground.""" + #: A material that prevents contact with most objects. + #: This gets applied to 'non-touchable' flags. no_hit_material: bs.Material - """A bs.Material that prevents contact with most objects; - applied to 'non-touchable' flags.""" flag_texture: bs.Texture - """The bs.Texture for flags.""" + """The texture for flags.""" _STORENAME = bs.storagename() def __init__(self) -> None: - """Instantiate a `FlagFactory`. - - You shouldn't need to do this; call FlagFactory.get() to - get a shared instance. - """ shared = SharedObjects.get() self.flagmaterial = bs.Material() self.flagmaterial.add_actions( @@ -110,7 +103,7 @@ class FlagFactory: @classmethod def get(cls) -> FlagFactory: - """Get/create a shared `FlagFactory` instance.""" + """Get/create a shared flag-factory instance.""" activity = bs.getactivity() factory = activity.customdata.get(cls._STORENAME) if factory is None: @@ -122,53 +115,46 @@ class FlagFactory: @dataclass class FlagPickedUpMessage: - """A message saying a `Flag` has been picked up. - - Category: **Message Classes** - """ + """A message saying a flag has been picked up.""" + #: The flag that has been picked up. flag: Flag - """The `Flag` that has been picked up.""" + #: The bs.Node doing the picking up. node: bs.Node - """The bs.Node doing the picking up.""" @dataclass class FlagDiedMessage: - """A message saying a `Flag` has died. - - Category: **Message Classes** - """ + """A message saying a `Flag` has died.""" + #: The flag that died. flag: Flag - """The `Flag` that died.""" + + #: Whether the flag killed itself. + self_kill: bool = False @dataclass class FlagDroppedMessage: - """A message saying a `Flag` has been dropped. - - Category: **Message Classes** - """ + """A message saying a `Flag` has been dropped.""" + #: The flag that was dropped. flag: Flag - """The `Flag` that was dropped.""" + #: The node that was holding the flag. node: bs.Node - """The bs.Node that was holding it.""" class Flag(bs.Actor): """A flag; used in games such as capture-the-flag or king-of-the-hill. - Category: **Gameplay Classes** - Can be stationary or carry-able by players. """ def __init__( self, + *, position: Sequence[float] = (0.0, 1.0, 0.0), color: Sequence[float] = (1.0, 1.0, 1.0), materials: Sequence[bs.Material] | None = None, @@ -282,7 +268,9 @@ class Flag(bs.Actor): ) self._counter.text = str(self._count) if self._count < 1: - self.handlemessage(bs.DieMessage()) + self.handlemessage( + bs.DieMessage(how=bs.DeathType.LEFT_GAME) + ) else: assert self._counter self._counter.text = '' @@ -336,7 +324,11 @@ class Flag(bs.Actor): if self.node: self.node.delete() if not msg.immediate: - self.activity.handlemessage(FlagDiedMessage(self)) + self.activity.handlemessage( + FlagDiedMessage( + self, (msg.how is bs.DeathType.LEFT_GAME) + ) + ) elif isinstance(msg, bs.HitMessage): assert self.node assert msg.force_direction is not None @@ -372,7 +364,7 @@ class Flag(bs.Actor): @staticmethod def project_stand(pos: Sequence[float]) -> None: - """Project a flag-stand onto the ground at the given position. + """Project a flag-stand onto the ground from a position. Useful for games such as capture-the-flag to show where a movable flag originated from. diff --git a/dist/ba_data/python/bascenev1lib/actor/image.py b/dist/ba_data/python/bascenev1lib/actor/image.py index daa648b..4e38f6b 100644 --- a/dist/ba_data/python/bascenev1lib/actor/image.py +++ b/dist/ba_data/python/bascenev1lib/actor/image.py @@ -37,6 +37,7 @@ class Image(bs.Actor): def __init__( self, texture: bs.Texture | dict[str, Any], + *, position: tuple[float, float] = (0, 0), transition: Transition | None = None, transition_delay: float = 0.0, @@ -55,15 +56,21 @@ class Image(bs.Actor): # pylint: disable=too-many-locals super().__init__() - # If they provided a dict as texture, assume its an icon. - # otherwise its just a texture value itself. + # If they provided a dict as texture, use it to wire up extended + # stuff like tints and masks. mask_texture: bs.Texture | None if isinstance(texture, dict): tint_color = texture['tint_color'] tint2_color = texture['tint2_color'] tint_texture = texture['tint_texture'] + + # Assume we're dealing with a character icon but allow + # overriding. + mask_tex_name = texture.get('mask_texture', 'characterIconMask') + mask_texture = ( + None if mask_tex_name is None else bs.gettexture(mask_tex_name) + ) texture = texture['texture'] - mask_texture = bs.gettexture('characterIconMask') else: tint_color = (1, 1, 1) tint2_color = None diff --git a/dist/ba_data/python/bascenev1lib/actor/onscreencountdown.py b/dist/ba_data/python/bascenev1lib/actor/onscreencountdown.py index 7c2364f..9fb811d 100644 --- a/dist/ba_data/python/bascenev1lib/actor/onscreencountdown.py +++ b/dist/ba_data/python/bascenev1lib/actor/onscreencountdown.py @@ -15,8 +15,6 @@ if TYPE_CHECKING: class OnScreenCountdown(bs.Actor): """A Handy On-Screen Timer. - category: Gameplay Classes - Useful for time-based games that count down to zero. """ diff --git a/dist/ba_data/python/bascenev1lib/actor/onscreentimer.py b/dist/ba_data/python/bascenev1lib/actor/onscreentimer.py index 11050ee..196674e 100644 --- a/dist/ba_data/python/bascenev1lib/actor/onscreentimer.py +++ b/dist/ba_data/python/bascenev1lib/actor/onscreentimer.py @@ -15,8 +15,6 @@ if TYPE_CHECKING: class OnScreenTimer(bs.Actor): """A handy on-screen timer. - category: Gameplay Classes - Useful for time-based games where time increases. """ diff --git a/dist/ba_data/python/bascenev1lib/actor/playerspaz.py b/dist/ba_data/python/bascenev1lib/actor/playerspaz.py index 07caae5..0dd38d1 100644 --- a/dist/ba_data/python/bascenev1lib/actor/playerspaz.py +++ b/dist/ba_data/python/bascenev1lib/actor/playerspaz.py @@ -4,7 +4,7 @@ from __future__ import annotations -from typing import TYPE_CHECKING, TypeVar, overload, override +from typing import TYPE_CHECKING, overload, override import bascenev1 as bs @@ -13,14 +13,9 @@ from bascenev1lib.actor.spaz import Spaz if TYPE_CHECKING: from typing import Any, Sequence, Literal -PlayerT = TypeVar('PlayerT', bound=bs.Player) - class PlayerSpazHurtMessage: - """A message saying a PlayerSpaz was hurt. - - Category: **Message Classes** - """ + """A message saying a PlayerSpaz was hurt.""" spaz: PlayerSpaz """The PlayerSpaz that was hurt""" @@ -33,8 +28,6 @@ class PlayerSpazHurtMessage: class PlayerSpaz(Spaz): """A Spaz subclass meant to be controlled by a bascenev1.Player. - Category: **Gameplay Classes** - When a PlayerSpaz dies, it delivers a bascenev1.PlayerDiedMessage to the current bascenev1.Activity. (unless the death was the result of the player leaving the game, in which case no message is sent) @@ -46,6 +39,7 @@ class PlayerSpaz(Spaz): def __init__( self, player: bs.Player, + *, color: Sequence[float] = (1.0, 1.0, 1.0), highlight: Sequence[float] = (0.5, 0.5, 0.5), character: str = 'Spaz', @@ -76,16 +70,16 @@ class PlayerSpaz(Spaz): # Overloads to tell the type system our return type based on doraise val. @overload - def getplayer( + def getplayer[PlayerT: bs.Player]( self, playertype: type[PlayerT], doraise: Literal[False] = False ) -> PlayerT | None: ... @overload - def getplayer( + def getplayer[PlayerT: bs.Player]( self, playertype: type[PlayerT], doraise: Literal[True] ) -> PlayerT: ... - def getplayer( + def getplayer[PlayerT: bs.Player]( self, playertype: type[PlayerT], doraise: bool = False ) -> PlayerT | None: """Get the bascenev1.Player associated with this Spaz. @@ -102,6 +96,7 @@ class PlayerSpaz(Spaz): def connect_controls_to_player( self, + *, enable_jump: bool = True, enable_punch: bool = True, enable_pickup: bool = True, diff --git a/dist/ba_data/python/bascenev1lib/actor/popuptext.py b/dist/ba_data/python/bascenev1lib/actor/popuptext.py index ca375fc..9c0d09c 100644 --- a/dist/ba_data/python/bascenev1lib/actor/popuptext.py +++ b/dist/ba_data/python/bascenev1lib/actor/popuptext.py @@ -22,6 +22,7 @@ class PopupText(bs.Actor): def __init__( self, text: str | bs.Lstr, + *, position: Sequence[float] = (0.0, 0.0, 0.0), color: Sequence[float] = (1.0, 1.0, 1.0, 1.0), random_offset: float = 0.5, diff --git a/dist/ba_data/python/bascenev1lib/actor/powerupbox.py b/dist/ba_data/python/bascenev1lib/actor/powerupbox.py index c6ebd56..dd19b54 100644 --- a/dist/ba_data/python/bascenev1lib/actor/powerupbox.py +++ b/dist/ba_data/python/bascenev1lib/actor/powerupbox.py @@ -24,8 +24,6 @@ class _TouchedMessage: class PowerupBoxFactory: """A collection of media and other resources used by bs.Powerups. - Category: **Gameplay Classes** - A single instance of this is shared between all powerups and can be retrieved via bs.Powerup.get_factory(). """ @@ -190,19 +188,18 @@ class PowerupBoxFactory: class PowerupBox(bs.Actor): """A box that grants a powerup. - category: Gameplay Classes - - This will deliver a bs.PowerupMessage to anything that touches it - which has the bs.PowerupBoxFactory.powerup_accept_material applied. + This will deliver a :class:`~bascenev1.PowerupMessage` to anything + that touches it which has the + :class:`~PowerupBoxFactory.powerup_accept_material` applied. """ + #: The string powerup type. This can be 'triple_bombs', 'punch', + #: 'ice_bombs', 'impact_bombs', 'land_mines', 'sticky_bombs', + #: 'shield', 'health', or 'curse'. poweruptype: str - """The string powerup type. This can be 'triple_bombs', 'punch', - 'ice_bombs', 'impact_bombs', 'land_mines', 'sticky_bombs', 'shield', - 'health', or 'curse'.""" node: bs.Node - """The 'prop' bs.Node representing this box.""" + """The 'prop' node representing this box.""" def __init__( self, diff --git a/dist/ba_data/python/bascenev1lib/actor/respawnicon.py b/dist/ba_data/python/bascenev1lib/actor/respawnicon.py index 59aa881..3e31350 100644 --- a/dist/ba_data/python/bascenev1lib/actor/respawnicon.py +++ b/dist/ba_data/python/bascenev1lib/actor/respawnicon.py @@ -12,9 +12,7 @@ import bascenev1 as bs class RespawnIcon: """An icon with a countdown that appears alongside the screen. - category: Gameplay Classes - - This is used to indicate that a bascenev1.Player is waiting to respawn. + This is used to indicate that a player is waiting to respawn. """ _MASKTEXSTORENAME = bs.storagename('masktex') diff --git a/dist/ba_data/python/bascenev1lib/actor/scoreboard.py b/dist/ba_data/python/bascenev1lib/actor/scoreboard.py index 05a1ba5..18ba89d 100644 --- a/dist/ba_data/python/bascenev1lib/actor/scoreboard.py +++ b/dist/ba_data/python/bascenev1lib/actor/scoreboard.py @@ -22,14 +22,18 @@ class _Entry: scale: float, label: bs.Lstr | None, flash_length: float, + width: float | None = None, + height: float | None = None, ): + # pylint: disable=too-many-locals # pylint: disable=too-many-statements + # pylint: disable=too-many-positional-arguments self._scoreboard = weakref.ref(scoreboard) self._do_cover = do_cover self._scale = scale self._flash_length = flash_length - self._width = 140.0 * self._scale - self._height = 32.0 * self._scale + self._width = (140.0 if width is None else width) * self._scale + self._height = (32.0 if height is None else height) * self._scale self._bar_width = 2.0 * self._scale self._bar_height = 32.0 * self._scale self._bar_tex = self._backing_tex = bs.gettexture('bar') @@ -277,6 +281,7 @@ class _Entry: def set_value( self, score: float, + *, max_score: float | None = None, countdown: bool = False, flash: bool = True, @@ -368,16 +373,26 @@ class Scoreboard: _ENTRYSTORENAME = bs.storagename('entry') - def __init__(self, label: bs.Lstr | None = None, score_split: float = 0.7): + def __init__( + self, + label: bs.Lstr | None = None, + score_split: float = 0.7, + pos: Sequence[float] | None = None, + width: float | None = None, + height: float | None = None, + ): """Instantiate a scoreboard. Label can be something like 'points' and will show up on boards if provided. """ + # pylint: disable=too-many-positional-arguments self._flat_tex = bs.gettexture('null') self._entries: dict[int, _Entry] = {} self._label = label self.score_split = score_split + self._width = width + self._height = height # For free-for-all we go simpler since we have one per player. self._pos: Sequence[float] @@ -393,12 +408,14 @@ class Scoreboard: self._pos = (20.0, -70.0) self._scale = 1.0 self._flash_length = 1.0 + self._pos = self._pos if pos is None else pos def set_team_value( self, team: bs.Team, score: float, max_score: float | None = None, + *, countdown: bool = False, flash: bool = True, show_value: bool = True, @@ -430,6 +447,8 @@ class Scoreboard: do_cover=self._do_cover, scale=self._scale, label=self._label, + width=self._width, + height=self._height, flash_length=self._flash_length, ) self._update_teams() diff --git a/dist/ba_data/python/bascenev1lib/actor/spawner.py b/dist/ba_data/python/bascenev1lib/actor/spawner.py index 78fa56c..b0ebf65 100644 --- a/dist/ba_data/python/bascenev1lib/actor/spawner.py +++ b/dist/ba_data/python/bascenev1lib/actor/spawner.py @@ -16,17 +16,12 @@ if TYPE_CHECKING: class Spawner: """Utility for delayed spawning of objects. - Category: **Gameplay Classes** - - Creates a light flash and sends a Spawner.SpawnMessage - to the current activity after a delay. + Creates a light flash and sends a Spawner.SpawnMessage to the + current activity after a delay. """ class SpawnMessage: - """Spawn message sent by a Spawner after its delay has passed. - - Category: **Message Classes** - """ + """Spawn message sent by a Spawner after its delay has passed.""" spawner: Spawner """The bascenev1.Spawner we came from.""" @@ -50,6 +45,7 @@ class Spawner: def __init__( self, + *, data: Any = None, pt: Sequence[float] = (0, 0, 0), spawn_time: float = 1.0, diff --git a/dist/ba_data/python/bascenev1lib/actor/spaz.py b/dist/ba_data/python/bascenev1lib/actor/spaz.py index f70383f..6d76027 100644 --- a/dist/ba_data/python/bascenev1lib/actor/spaz.py +++ b/dist/ba_data/python/bascenev1lib/actor/spaz.py @@ -46,8 +46,6 @@ class Spaz(bs.Actor): """ Base class for various Spazzes. - Category: **Gameplay Classes** - A Spaz is the standard little humanoid character in the game. It can be controlled by a player or by AI, and can have various different appearances. The name 'Spaz' is not to be @@ -71,6 +69,7 @@ class Spaz(bs.Actor): def __init__( self, + *, color: Sequence[float] = (1.0, 1.0, 1.0), highlight: Sequence[float] = (0.5, 0.5, 0.5), character: str = 'Spaz', @@ -885,7 +884,9 @@ class Spaz(bs.Actor): if not self.frozen: self.frozen = True self.node.frozen = True - bs.timer(5.0, bs.WeakCall(self.handlemessage, bs.ThawMessage())) + bs.timer( + msg.time, bs.WeakCall(self.handlemessage, bs.ThawMessage()) + ) # Instantly shatter if we're already dead. # (otherwise its hard to tell we're dead). if self.hitpoints <= 0: @@ -1195,11 +1196,12 @@ class Spaz(bs.Actor): if self.node: self.node.delete() elif self.node: - self.node.hurt = 1.0 - if self.play_big_death_sound and not wasdead: - SpazFactory.get().single_player_death_sound.play() - self.node.dead = True - bs.timer(2.0, self.node.delete) + if not wasdead: + self.node.hurt = 1.0 + if self.play_big_death_sound: + SpazFactory.get().single_player_death_sound.play() + self.node.dead = True + bs.timer(2.0, self.node.delete) elif isinstance(msg, bs.OutOfBoundsMessage): # By default we just die here. diff --git a/dist/ba_data/python/bascenev1lib/actor/spazappearance.py b/dist/ba_data/python/bascenev1lib/actor/spazappearance.py index 7cff495..a2122d8 100644 --- a/dist/ba_data/python/bascenev1lib/actor/spazappearance.py +++ b/dist/ba_data/python/bascenev1lib/actor/spazappearance.py @@ -14,7 +14,7 @@ def get_appearances(include_locked: bool = False) -> list[str]: assert plus is not None assert bs.app.classic is not None - get_purchased = plus.get_purchased + get_purchased = plus.get_v1_account_product_purchased disallowed = [] if not include_locked: # Hmm yeah this'll be tough to hack... diff --git a/dist/ba_data/python/bascenev1lib/actor/spazbot.py b/dist/ba_data/python/bascenev1lib/actor/spazbot.py index 56118af..7cbbcc8 100644 --- a/dist/ba_data/python/bascenev1lib/actor/spazbot.py +++ b/dist/ba_data/python/bascenev1lib/actor/spazbot.py @@ -26,10 +26,7 @@ PRO_BOT_HIGHLIGHT = (0.6, 0.1, 0.05) class SpazBotPunchedMessage: - """A message saying a bs.SpazBot got punched. - - Category: **Message Classes** - """ + """A message saying a bs.SpazBot got punched.""" spazbot: SpazBot """The bs.SpazBot that got punched.""" @@ -44,10 +41,7 @@ class SpazBotPunchedMessage: class SpazBotDiedMessage: - """A message saying a bs.SpazBot has died. - - Category: **Message Classes** - """ + """A message saying a bs.SpazBot has died.""" spazbot: SpazBot """The SpazBot that was killed.""" @@ -73,8 +67,6 @@ class SpazBotDiedMessage: class SpazBot(Spaz): """A really dumb AI version of bs.Spaz. - Category: **Bot Classes** - Add these to a bs.BotSet to use them. Note: currently the AI has no real ability to @@ -947,9 +939,9 @@ class SpazBotSet: on_spawn_call: Callable[[SpazBot], Any] | None = None, ) -> None: """Spawn a bot from this set.""" - from bascenev1lib.actor import spawner + from bascenev1lib.actor.spawner import Spawner - spawner.Spawner( + Spawner( pt=pos, spawn_time=spawn_time, send_spawn_message=False, diff --git a/dist/ba_data/python/bascenev1lib/actor/spazfactory.py b/dist/ba_data/python/bascenev1lib/actor/spazfactory.py index a3f524b..134dbfe 100644 --- a/dist/ba_data/python/bascenev1lib/actor/spazfactory.py +++ b/dist/ba_data/python/bascenev1lib/actor/spazfactory.py @@ -16,8 +16,6 @@ if TYPE_CHECKING: class SpazFactory: """Wraps up media and other resources used by bs.Spaz instances. - Category: **Gameplay Classes** - Generally one of these is created per bascenev1.Activity and shared between all spaz instances. Use bs.Spaz.get_factory() to return the shared factory for the current activity. diff --git a/dist/ba_data/python/bascenev1lib/actor/text.py b/dist/ba_data/python/bascenev1lib/actor/text.py index cdea37d..42611e8 100644 --- a/dist/ba_data/python/bascenev1lib/actor/text.py +++ b/dist/ba_data/python/bascenev1lib/actor/text.py @@ -56,6 +56,7 @@ class Text(bs.Actor): def __init__( self, text: str | bs.Lstr, + *, position: tuple[float, float] = (0.0, 0.0), h_align: HAlign = HAlign.LEFT, v_align: VAlign = VAlign.NONE, diff --git a/dist/ba_data/python/bascenev1lib/actor/zoomtext.py b/dist/ba_data/python/bascenev1lib/actor/zoomtext.py index 46525aa..d65b728 100644 --- a/dist/ba_data/python/bascenev1lib/actor/zoomtext.py +++ b/dist/ba_data/python/bascenev1lib/actor/zoomtext.py @@ -17,8 +17,6 @@ if TYPE_CHECKING: class ZoomText(bs.Actor): """Big Zooming Text. - Category: Gameplay Classes - Used for things such as the 'BOB WINS' victory messages. """ @@ -26,6 +24,7 @@ class ZoomText(bs.Actor): self, text: str | bs.Lstr, position: tuple[float, float] = (0.0, 0.0), + *, shiftposition: tuple[float, float] | None = None, shiftdelay: float | None = None, lifespan: float | None = None, diff --git a/dist/ba_data/python/bascenev1lib/game/assault.py b/dist/ba_data/python/bascenev1lib/game/assault.py index 051cb7f..1f0938c 100644 --- a/dist/ba_data/python/bascenev1lib/game/assault.py +++ b/dist/ba_data/python/bascenev1lib/game/assault.py @@ -2,7 +2,7 @@ # """Defines assault minigame.""" -# ba_meta require api 8 +# ba_meta require api 9 # (see https://ballistica.net/wiki/meta-tag-system) from __future__ import annotations @@ -29,8 +29,14 @@ class Team(bs.Team[Player]): """Our team type for this game.""" def __init__(self, base_pos: Sequence[float], flag: Flag) -> None: + + #: Where our base is. self.base_pos = base_pos + + #: Flag for this team. self.flag = flag + + #: Current score. self.score = 0 @@ -80,6 +86,7 @@ class AssaultGame(bs.TeamGameActivity[Player, Team]): @override @classmethod def get_supported_maps(cls, sessiontype: type[bs.Session]) -> list[str]: + # (Pylint Bug?) pylint: disable=missing-function-docstring assert bs.app.classic is not None return bs.app.classic.getmaps('team_flag') @@ -101,18 +108,21 @@ class AssaultGame(bs.TeamGameActivity[Player, Team]): @override def get_instance_description(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring if self._score_to_win == 1: return 'Touch the enemy flag.' return 'Touch the enemy flag ${ARG1} times.', self._score_to_win @override def get_instance_description_short(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring if self._score_to_win == 1: return 'touch 1 flag' return 'touch ${ARG1} flags', self._score_to_win @override def create_team(self, sessionteam: bs.SessionTeam) -> Team: + # (Pylint Bug?) pylint: disable=missing-function-docstring shared = SharedObjects.get() base_pos = self.map.get_flag_position(sessionteam.id) bs.newnode( @@ -159,6 +169,8 @@ class AssaultGame(bs.TeamGameActivity[Player, Team]): @override def on_team_join(self, team: Team) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + # Can't do this in create_team because the team's color/etc. have # not been wired up yet at that point. self._update_scoreboard() @@ -171,6 +183,8 @@ class AssaultGame(bs.TeamGameActivity[Player, Team]): @override def handlemessage(self, msg: Any) -> Any: + # (Pylint Bug?) pylint: disable=missing-function-docstring + if isinstance(msg, bs.PlayerDiedMessage): super().handlemessage(msg) # Augment standard. self.respawn_player(msg.getplayer(Player)) diff --git a/dist/ba_data/python/bascenev1lib/game/capturetheflag.py b/dist/ba_data/python/bascenev1lib/game/capturetheflag.py index a5e65ed..465d83e 100644 --- a/dist/ba_data/python/bascenev1lib/game/capturetheflag.py +++ b/dist/ba_data/python/bascenev1lib/game/capturetheflag.py @@ -2,7 +2,7 @@ # """Defines a capture-the-flag game.""" -# ba_meta require api 8 +# ba_meta require api 9 # (see https://ballistica.net/wiki/meta-tag-system) from __future__ import annotations @@ -32,6 +32,7 @@ class CTFFlag(Flag): activity: CaptureTheFlagGame def __init__(self, team: Team): + assert team.flagmaterial is not None super().__init__( materials=[team.flagmaterial], @@ -73,6 +74,7 @@ class Team(bs.Team[Player]): def __init__( self, + *, base_pos: Sequence[float], base_region_material: bs.Material, base_region: bs.Node, @@ -150,6 +152,8 @@ class CaptureTheFlagGame(bs.TeamGameActivity[Player, Team]): @override @classmethod def get_supported_maps(cls, sessiontype: type[bs.Session]) -> list[str]: + # (Pylint Bug?) pylint: disable=missing-function-docstring + assert bs.app.classic is not None return bs.app.classic.getmaps('team_flag') @@ -178,18 +182,24 @@ class CaptureTheFlagGame(bs.TeamGameActivity[Player, Team]): @override def get_instance_description(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring + if self._score_to_win == 1: return 'Steal the enemy flag.' return 'Steal the enemy flag ${ARG1} times.', self._score_to_win @override def get_instance_description_short(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring + if self._score_to_win == 1: return 'return 1 flag' return 'return ${ARG1} flags', self._score_to_win @override def create_team(self, sessionteam: bs.SessionTeam) -> Team: + # (Pylint Bug?) pylint: disable=missing-function-docstring + # Create our team instance and its initial values. base_pos = self.map.get_flag_position(sessionteam.id) @@ -280,6 +290,8 @@ class CaptureTheFlagGame(bs.TeamGameActivity[Player, Team]): @override def on_team_join(self, team: Team) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + # Can't do this in create_team because the team's color/etc. have # not been wired up yet at that point. self._spawn_flag_for_team(team) @@ -416,6 +428,8 @@ class CaptureTheFlagGame(bs.TeamGameActivity[Player, Team]): @override def end_game(self) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + results = bs.GameResults() for team in self.teams: results.set_team_score(team, team.score) @@ -619,6 +633,8 @@ class CaptureTheFlagGame(bs.TeamGameActivity[Player, Team]): @override def handlemessage(self, msg: Any) -> Any: + # (Pylint Bug?) pylint: disable=missing-function-docstring + if isinstance(msg, bs.PlayerDiedMessage): super().handlemessage(msg) # Augment standard behavior. self._handle_death_flag_capture(msg.getplayer(Player)) diff --git a/dist/ba_data/python/bascenev1lib/game/chosenone.py b/dist/ba_data/python/bascenev1lib/game/chosenone.py index 1716010..983521d 100644 --- a/dist/ba_data/python/bascenev1lib/game/chosenone.py +++ b/dist/ba_data/python/bascenev1lib/game/chosenone.py @@ -2,7 +2,7 @@ # """Provides the chosen-one mini-game.""" -# ba_meta require api 8 +# ba_meta require api 9 # (see https://ballistica.net/wiki/meta-tag-system) from __future__ import annotations @@ -125,18 +125,26 @@ class ChosenOneGame(bs.TeamGameActivity[Player, Team]): @override def get_instance_description(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring + return 'There can be only one.' @override def create_team(self, sessionteam: bs.SessionTeam) -> Team: + # (Pylint Bug?) pylint: disable=missing-function-docstring + return Team(time_remaining=self._chosen_one_time) @override def on_team_join(self, team: Team) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + self._update_scoreboard() @override def on_player_leave(self, player: Player) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + super().on_player_leave(player) if self._get_chosen_one_player() is player: self._set_chosen_one_player(None) @@ -260,6 +268,8 @@ class ChosenOneGame(bs.TeamGameActivity[Player, Team]): @override def end_game(self) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + results = bs.GameResults() for team in self.teams: results.set_team_score( @@ -345,6 +355,8 @@ class ChosenOneGame(bs.TeamGameActivity[Player, Team]): @override def handlemessage(self, msg: Any) -> Any: + # (Pylint Bug?) pylint: disable=missing-function-docstring + if isinstance(msg, bs.PlayerDiedMessage): # Augment standard behavior. super().handlemessage(msg) diff --git a/dist/ba_data/python/bascenev1lib/game/conquest.py b/dist/ba_data/python/bascenev1lib/game/conquest.py index 7c14011..ee9c355 100644 --- a/dist/ba_data/python/bascenev1lib/game/conquest.py +++ b/dist/ba_data/python/bascenev1lib/game/conquest.py @@ -2,7 +2,7 @@ # """Provides the Conquest game.""" -# ba_meta require api 8 +# ba_meta require api 9 # (see https://ballistica.net/wiki/meta-tag-system) from __future__ import annotations @@ -117,6 +117,8 @@ class ConquestGame(bs.TeamGameActivity[Player, Team]): @override @classmethod def get_supported_maps(cls, sessiontype: type[bs.Session]) -> list[str]: + # (Pylint Bug?) pylint: disable=missing-function-docstring + assert bs.app.classic is not None return bs.app.classic.getmaps('conquest') @@ -148,19 +150,27 @@ class ConquestGame(bs.TeamGameActivity[Player, Team]): @override def get_instance_description(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring + return 'Secure all ${ARG1} flags.', len(self.map.flag_points) @override def get_instance_description_short(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring + return 'secure all ${ARG1} flags', len(self.map.flag_points) @override def on_team_join(self, team: Team) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + if self.has_begun(): self._update_scores() @override def on_player_join(self, player: Player) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + player.respawn_timer = None # Only spawn if this player's team has a flag currently. @@ -231,6 +241,8 @@ class ConquestGame(bs.TeamGameActivity[Player, Team]): @override def end_game(self) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + results = bs.GameResults() for team in self.teams: results.set_team_score(team, team.flags_held) @@ -283,6 +295,8 @@ class ConquestGame(bs.TeamGameActivity[Player, Team]): @override def handlemessage(self, msg: Any) -> Any: + # (Pylint Bug?) pylint: disable=missing-function-docstring + if isinstance(msg, bs.PlayerDiedMessage): # Augment standard behavior. super().handlemessage(msg) @@ -299,6 +313,8 @@ class ConquestGame(bs.TeamGameActivity[Player, Team]): @override def spawn_player(self, player: Player) -> bs.Actor: + # (Pylint Bug?) pylint: disable=missing-function-docstring + # We spawn players at different places based on what flags are held. return self.spawn_player_spaz( player, self._get_player_spawn_position(player) diff --git a/dist/ba_data/python/bascenev1lib/game/deathmatch.py b/dist/ba_data/python/bascenev1lib/game/deathmatch.py index 85ff142..7fdd8e4 100644 --- a/dist/ba_data/python/bascenev1lib/game/deathmatch.py +++ b/dist/ba_data/python/bascenev1lib/game/deathmatch.py @@ -2,7 +2,7 @@ # """DeathMatch game and support classes.""" -# ba_meta require api 8 +# ba_meta require api 9 # (see https://ballistica.net/wiki/meta-tag-system) from __future__ import annotations @@ -99,6 +99,8 @@ class DeathMatchGame(bs.TeamGameActivity[Player, Team]): @override @classmethod def get_supported_maps(cls, sessiontype: type[bs.Session]) -> list[str]: + # (Pylint Bug?) pylint: disable=missing-function-docstring + assert bs.app.classic is not None return bs.app.classic.getmaps('melee') @@ -122,14 +124,20 @@ class DeathMatchGame(bs.TeamGameActivity[Player, Team]): @override def get_instance_description(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring + return 'Crush ${ARG1} of your enemies.', self._score_to_win @override def get_instance_description_short(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring + return 'kill ${ARG1} enemies', self._score_to_win @override def on_team_join(self, team: Team) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + if self.has_begun(): self._update_scoreboard() @@ -147,6 +155,8 @@ class DeathMatchGame(bs.TeamGameActivity[Player, Team]): @override def handlemessage(self, msg: Any) -> Any: + # (Pylint Bug?) pylint: disable=missing-function-docstring + if isinstance(msg, bs.PlayerDiedMessage): # Augment standard behavior. super().handlemessage(msg) @@ -208,6 +218,8 @@ class DeathMatchGame(bs.TeamGameActivity[Player, Team]): @override def end_game(self) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + results = bs.GameResults() for team in self.teams: results.set_team_score(team, team.score) diff --git a/dist/ba_data/python/bascenev1lib/game/easteregghunt.py b/dist/ba_data/python/bascenev1lib/game/easteregghunt.py index 260628a..443c77b 100644 --- a/dist/ba_data/python/bascenev1lib/game/easteregghunt.py +++ b/dist/ba_data/python/bascenev1lib/game/easteregghunt.py @@ -2,7 +2,7 @@ # """Provides an easter egg hunt game.""" -# ba_meta require api 8 +# ba_meta require api 9 # (see https://ballistica.net/wiki/meta-tag-system) from __future__ import annotations @@ -98,6 +98,7 @@ class EasterEggHuntGame(bs.TeamGameActivity[Player, Team]): @override def on_team_join(self, team: Team) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring if self.has_begun(): self._update_scoreboard() @@ -125,6 +126,7 @@ class EasterEggHuntGame(bs.TeamGameActivity[Player, Team]): # Overriding the default character spawning. @override def spawn_player(self, player: Player) -> bs.Actor: + # (Pylint Bug?) pylint: disable=missing-function-docstring spaz = self.spawn_player_spaz(player) spaz.connect_controls_to_player() return spaz @@ -199,6 +201,8 @@ class EasterEggHuntGame(bs.TeamGameActivity[Player, Team]): # Various high-level game events come through this method. @override def handlemessage(self, msg: Any) -> Any: + # (Pylint Bug?) pylint: disable=missing-function-docstring + # Respawn dead players. if isinstance(msg, bs.PlayerDiedMessage): # Augment standard behavior. @@ -240,6 +244,7 @@ class EasterEggHuntGame(bs.TeamGameActivity[Player, Team]): @override def end_game(self) -> None: + """End the game.""" results = bs.GameResults() for team in self.teams: results.set_team_score(team, team.score) diff --git a/dist/ba_data/python/bascenev1lib/game/elimination.py b/dist/ba_data/python/bascenev1lib/game/elimination.py index c0434fb..dedf2f2 100644 --- a/dist/ba_data/python/bascenev1lib/game/elimination.py +++ b/dist/ba_data/python/bascenev1lib/game/elimination.py @@ -2,7 +2,7 @@ # """Elimination mini-game.""" -# ba_meta require api 8 +# ba_meta require api 9 # (see https://ballistica.net/wiki/meta-tag-system) from __future__ import annotations @@ -27,6 +27,7 @@ class Icon(bs.Actor): player: Player, position: tuple[float, float], scale: float, + *, show_lives: bool = True, show_death: bool = True, name_scale: float = 1.0, @@ -251,6 +252,7 @@ class EliminationGame(bs.TeamGameActivity[Player, Team]): @override @classmethod def get_supported_maps(cls, sessiontype: type[bs.Session]) -> list[str]: + # (Pylint Bug?) pylint: disable=missing-function-docstring assert bs.app.classic is not None return bs.app.classic.getmaps('melee') @@ -276,6 +278,7 @@ class EliminationGame(bs.TeamGameActivity[Player, Team]): @override def get_instance_description(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring return ( 'Last team standing wins.' if isinstance(self.session, bs.DualTeamSession) @@ -284,6 +287,7 @@ class EliminationGame(bs.TeamGameActivity[Player, Team]): @override def get_instance_description_short(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring return ( 'last team standing wins' if isinstance(self.session, bs.DualTeamSession) @@ -292,6 +296,7 @@ class EliminationGame(bs.TeamGameActivity[Player, Team]): @override def on_player_join(self, player: Player) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring player.lives = self._lives_per_player if self._solo_mode: @@ -484,6 +489,7 @@ class EliminationGame(bs.TeamGameActivity[Player, Team]): @override def spawn_player(self, player: Player) -> bs.Actor: + """Spawn a player (override).""" actor = self.spawn_player_spaz(player, self._get_spawn_point(player)) if not self._solo_mode: bs.timer(0.3, bs.Call(self._print_lives, player)) @@ -511,6 +517,7 @@ class EliminationGame(bs.TeamGameActivity[Player, Team]): @override def on_player_leave(self, player: Player) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring super().on_player_leave(player) player.icons = [] @@ -606,6 +613,7 @@ class EliminationGame(bs.TeamGameActivity[Player, Team]): @override def end_game(self) -> None: + """End the game.""" if self.has_ended(): return results = bs.GameResults() diff --git a/dist/ba_data/python/bascenev1lib/game/football.py b/dist/ba_data/python/bascenev1lib/game/football.py index 3555794..b686e65 100644 --- a/dist/ba_data/python/bascenev1lib/game/football.py +++ b/dist/ba_data/python/bascenev1lib/game/football.py @@ -1,9 +1,10 @@ # Released under the MIT License. See LICENSE for details. # -# pylint: disable=too-many-lines """Implements football games (both co-op and teams varieties).""" -# ba_meta require api 8 +# pylint: disable=too-many-lines + +# ba_meta require api 9 # (see https://ballistica.net/wiki/meta-tag-system) from __future__ import annotations @@ -139,6 +140,8 @@ class FootballTeamGame(bs.TeamGameActivity[Player, Team]): @override @classmethod def get_supported_maps(cls, sessiontype: type[bs.Session]) -> list[str]: + # (Pylint Bug?) pylint: disable=missing-function-docstring + assert bs.app.classic is not None return bs.app.classic.getmaps('football') @@ -176,6 +179,8 @@ class FootballTeamGame(bs.TeamGameActivity[Player, Team]): @override def get_instance_description(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring + touchdowns = self._score_to_win / 7 # NOTE: if use just touchdowns = self._score_to_win // 7 @@ -188,6 +193,8 @@ class FootballTeamGame(bs.TeamGameActivity[Player, Team]): @override def get_instance_description_short(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring + touchdowns = self._score_to_win / 7 touchdowns = math.ceil(touchdowns) if touchdowns > 1: @@ -233,6 +240,8 @@ class FootballTeamGame(bs.TeamGameActivity[Player, Team]): @override def on_team_join(self, team: Team) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + self._update_scoreboard() def _kill_flag(self) -> None: @@ -295,6 +304,8 @@ class FootballTeamGame(bs.TeamGameActivity[Player, Team]): @override def end_game(self) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + results = bs.GameResults() for team in self.teams: results.set_team_score(team, team.score) @@ -309,6 +320,8 @@ class FootballTeamGame(bs.TeamGameActivity[Player, Team]): @override def handlemessage(self, msg: Any) -> Any: + # (Pylint Bug?) pylint: disable=missing-function-docstring + if isinstance(msg, FlagPickedUpMessage): assert isinstance(msg.flag, FootballFlag) try: @@ -332,7 +345,10 @@ class FootballTeamGame(bs.TeamGameActivity[Player, Team]): # Respawn dead flags. elif isinstance(msg, FlagDiedMessage): if not self.has_ended(): - self._flag_respawn_timer = bs.Timer(3.0, self._spawn_flag) + if msg.self_kill: + self._spawn_flag() + else: + self._flag_respawn_timer = bs.Timer(3.0, self._spawn_flag) self._flag_respawn_light = bs.NodeActor( bs.newnode( 'light', @@ -395,6 +411,8 @@ class FootballCoopGame(bs.CoopGameActivity[Player, Team]): @override def get_instance_description(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring + touchdowns = self._score_to_win / 7 touchdowns = math.ceil(touchdowns) if touchdowns > 1: @@ -403,6 +421,8 @@ class FootballCoopGame(bs.CoopGameActivity[Player, Team]): @override def get_instance_description_short(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring + touchdowns = self._score_to_win / 7 touchdowns = math.ceil(touchdowns) if touchdowns > 1: @@ -459,6 +479,8 @@ class FootballCoopGame(bs.CoopGameActivity[Player, Team]): @override def on_transition_in(self) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + super().on_transition_in() self._scoreboard = Scoreboard() self._flag_spawn_pos = self.map.get_flag_position(None) @@ -655,11 +677,6 @@ class FootballCoopGame(bs.CoopGameActivity[Player, Team]): for bot in bots: bot.target_flag = None - # If we're waiting on a continue, stop here so they don't keep scoring. - if self.is_waiting_for_continue(): - self._bots.stop_moving() - return - # If we've got a flag and no player are holding it, find the closest # bot to it, and make them the designated flag-bearer. assert self._flag is not None @@ -812,18 +829,12 @@ class FootballCoopGame(bs.CoopGameActivity[Player, Team]): @override def end_game(self) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + bs.setmusic(None) self._bots.final_celebrate() bs.timer(0.001, bs.Call(self.do_end, 'defeat')) - @override - def on_continue(self) -> None: - # Subtract one touchdown from the bots and get them moving again. - assert self._bot_team is not None - self._bot_team.score -= 7 - self._bots.start_moving() - self.update_scores() - def update_scores(self) -> None: """update scoreboard and check for winners""" # FIXME: tidy this up @@ -838,7 +849,7 @@ class FootballCoopGame(bs.CoopGameActivity[Player, Team]): if not have_scoring_team: self._scoring_team = team if team is self._bot_team: - self.continue_or_end_game() + self.end_game() else: bs.setmusic(bs.MusicType.VICTORY) @@ -893,8 +904,7 @@ class FootballCoopGame(bs.CoopGameActivity[Player, Team]): ) self._time_text_input.node.timemax = self._final_time_ms - # FIXME: Does this still need to be deferred? - bs.pushcall(bs.Call(self.do_end, 'victory')) + self.do_end('victory') def do_end(self, outcome: str) -> None: """End the game with the specified outcome.""" @@ -945,7 +955,10 @@ class FootballCoopGame(bs.CoopGameActivity[Player, Team]): # Respawn dead flags. elif isinstance(msg, FlagDiedMessage): assert isinstance(msg.flag, FootballFlag) - msg.flag.respawn_timer = bs.Timer(3.0, self._spawn_flag) + if msg.self_kill: + self._spawn_flag() + else: + msg.flag.respawn_timer = bs.Timer(3.0, self._spawn_flag) self._flag_respawn_light = bs.NodeActor( bs.newnode( 'light', @@ -962,7 +975,7 @@ class FootballCoopGame(bs.CoopGameActivity[Player, Team]): self._flag_respawn_light.node, 'intensity', {0: 0, 0.25: 0.15, 0.5: 0}, - loop=True, + loop=(not msg.self_kill), ) bs.timer(3.0, self._flag_respawn_light.node.delete) else: @@ -979,6 +992,8 @@ class FootballCoopGame(bs.CoopGameActivity[Player, Team]): @override def spawn_player(self, player: Player) -> bs.Actor: + # (Pylint Bug?) pylint: disable=missing-function-docstring + spaz = self.spawn_player_spaz( player, position=self.map.get_start_position(player.team.id) ) diff --git a/dist/ba_data/python/bascenev1lib/game/hockey.py b/dist/ba_data/python/bascenev1lib/game/hockey.py index c8b8449..57f97d3 100644 --- a/dist/ba_data/python/bascenev1lib/game/hockey.py +++ b/dist/ba_data/python/bascenev1lib/game/hockey.py @@ -2,7 +2,7 @@ # """Hockey game and support classes.""" -# ba_meta require api 8 +# ba_meta require api 9 # (see https://ballistica.net/wiki/meta-tag-system) from __future__ import annotations @@ -162,6 +162,7 @@ class HockeyGame(bs.TeamGameActivity[Player, Team]): @override @classmethod def get_supported_maps(cls, sessiontype: type[bs.Session]) -> list[str]: + # (Pylint Bug?) pylint: disable=missing-function-docstring assert bs.app.classic is not None return bs.app.classic.getmaps('hockey') @@ -237,12 +238,14 @@ class HockeyGame(bs.TeamGameActivity[Player, Team]): @override def get_instance_description(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring if self._score_to_win == 1: return 'Score a goal.' return 'Score ${ARG1} goals.', self._score_to_win @override def get_instance_description_short(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring if self._score_to_win == 1: return 'score a goal' return 'score ${ARG1} goals', self._score_to_win @@ -290,6 +293,7 @@ class HockeyGame(bs.TeamGameActivity[Player, Team]): @override def on_team_join(self, team: Team) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring self._update_scoreboard() def _handle_puck_player_collide(self) -> None: @@ -374,6 +378,7 @@ class HockeyGame(bs.TeamGameActivity[Player, Team]): @override def end_game(self) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring results = bs.GameResults() for team in self.teams: results.set_team_score(team, team.score) @@ -386,6 +391,7 @@ class HockeyGame(bs.TeamGameActivity[Player, Team]): @override def handlemessage(self, msg: Any) -> Any: + """Handle arbitrary message.""" # Respawn dead players if they're still in the game. if isinstance(msg, bs.PlayerDiedMessage): # Augment standard behavior... diff --git a/dist/ba_data/python/bascenev1lib/game/keepaway.py b/dist/ba_data/python/bascenev1lib/game/keepaway.py index 874b03e..6fe75ec 100644 --- a/dist/ba_data/python/bascenev1lib/game/keepaway.py +++ b/dist/ba_data/python/bascenev1lib/game/keepaway.py @@ -2,7 +2,7 @@ # """Defines a keep-away game type.""" -# ba_meta require api 8 +# ba_meta require api 9 # (see https://ballistica.net/wiki/meta-tag-system) from __future__ import annotations @@ -97,6 +97,8 @@ class KeepAwayGame(bs.TeamGameActivity[Player, Team]): @override @classmethod def get_supported_maps(cls, sessiontype: type[bs.Session]) -> list[str]: + # (Pylint Bug?) pylint: disable=missing-function-docstring + assert bs.app.classic is not None return bs.app.classic.getmaps('keep_away') @@ -134,18 +136,26 @@ class KeepAwayGame(bs.TeamGameActivity[Player, Team]): @override def get_instance_description(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring + return 'Carry the flag for ${ARG1} seconds.', self._hold_time @override def get_instance_description_short(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring + return 'carry the flag for ${ARG1} seconds', self._hold_time @override def create_team(self, sessionteam: bs.SessionTeam) -> Team: + # (Pylint Bug?) pylint: disable=missing-function-docstring + return Team(timeremaining=self._hold_time) @override def on_team_join(self, team: Team) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + self._update_scoreboard() @override @@ -191,6 +201,8 @@ class KeepAwayGame(bs.TeamGameActivity[Player, Team]): @override def end_game(self) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + results = bs.GameResults() for team in self.teams: results.set_team_score(team, self._hold_time - team.timeremaining) @@ -279,6 +291,8 @@ class KeepAwayGame(bs.TeamGameActivity[Player, Team]): @override def handlemessage(self, msg: Any) -> Any: + # (Pylint Bug?) pylint: disable=missing-function-docstring + if isinstance(msg, bs.PlayerDiedMessage): # Augment standard behavior. super().handlemessage(msg) diff --git a/dist/ba_data/python/bascenev1lib/game/kingofthehill.py b/dist/ba_data/python/bascenev1lib/game/kingofthehill.py index 24244f2..f4375af 100644 --- a/dist/ba_data/python/bascenev1lib/game/kingofthehill.py +++ b/dist/ba_data/python/bascenev1lib/game/kingofthehill.py @@ -2,7 +2,7 @@ # """Defines the King of the Hill game.""" -# ba_meta require api 8 +# ba_meta require api 9 # (see https://ballistica.net/wiki/meta-tag-system) from __future__ import annotations @@ -93,6 +93,8 @@ class KingOfTheHillGame(bs.TeamGameActivity[Player, Team]): @override @classmethod def get_supported_maps(cls, sessiontype: type[bs.Session]) -> list[str]: + # (Pylint Bug?) pylint: disable=missing-function-docstring + assert bs.app.classic is not None return bs.app.classic.getmaps('king_of_the_hill') @@ -149,14 +151,20 @@ class KingOfTheHillGame(bs.TeamGameActivity[Player, Team]): @override def get_instance_description(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring + return 'Secure the flag for ${ARG1} seconds.', self._hold_time @override def get_instance_description_short(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring + return 'secure the flag for ${ARG1} seconds', self._hold_time @override def create_team(self, sessionteam: bs.SessionTeam) -> Team: + # (Pylint Bug?) pylint: disable=missing-function-docstring + return Team(time_remaining=self._hold_time) @override @@ -232,6 +240,8 @@ class KingOfTheHillGame(bs.TeamGameActivity[Player, Team]): @override def end_game(self) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + results = bs.GameResults() for team in self.teams: results.set_team_score(team, self._hold_time - team.time_remaining) @@ -293,6 +303,8 @@ class KingOfTheHillGame(bs.TeamGameActivity[Player, Team]): @override def handlemessage(self, msg: Any) -> Any: + # (Pylint Bug?) pylint: disable=missing-function-docstring + if isinstance(msg, bs.PlayerDiedMessage): super().handlemessage(msg) # Augment default. diff --git a/dist/ba_data/python/bascenev1lib/game/meteorshower.py b/dist/ba_data/python/bascenev1lib/game/meteorshower.py index 7596632..187c558 100644 --- a/dist/ba_data/python/bascenev1lib/game/meteorshower.py +++ b/dist/ba_data/python/bascenev1lib/game/meteorshower.py @@ -2,7 +2,7 @@ # """Defines a bomb-dodging mini-game.""" -# ba_meta require api 8 +# ba_meta require api 9 # (see https://ballistica.net/wiki/meta-tag-system) from __future__ import annotations @@ -107,6 +107,8 @@ class MeteorShowerGame(bs.TeamGameActivity[Player, Team]): @override def on_player_leave(self, player: Player) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + # Augment default behavior. super().on_player_leave(player) @@ -116,6 +118,8 @@ class MeteorShowerGame(bs.TeamGameActivity[Player, Team]): # overriding the default character spawning.. @override def spawn_player(self, player: Player) -> bs.Actor: + # (Pylint Bug?) pylint: disable=missing-function-docstring + spaz = self.spawn_player_spaz(player) # Let's reconnect this player's controls to this @@ -131,6 +135,7 @@ class MeteorShowerGame(bs.TeamGameActivity[Player, Team]): # Various high-level game events come through this method. @override def handlemessage(self, msg: Any) -> Any: + """Handle a message.""" if isinstance(msg, bs.PlayerDiedMessage): # Augment standard behavior. super().handlemessage(msg) @@ -227,6 +232,7 @@ class MeteorShowerGame(bs.TeamGameActivity[Player, Team]): @override def end_game(self) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring cur_time = bs.time() assert self._timer is not None start_time = self._timer.getstarttime() diff --git a/dist/ba_data/python/bascenev1lib/game/ninjafight.py b/dist/ba_data/python/bascenev1lib/game/ninjafight.py index 67658cf..e398432 100644 --- a/dist/ba_data/python/bascenev1lib/game/ninjafight.py +++ b/dist/ba_data/python/bascenev1lib/game/ninjafight.py @@ -2,7 +2,7 @@ # """Provides Ninja Fight mini-game.""" -# ba_meta require api 8 +# ba_meta require api 9 # (see https://ballistica.net/wiki/meta-tag-system) from __future__ import annotations @@ -129,6 +129,8 @@ class NinjaFightGame(bs.TeamGameActivity[Player, Team]): # Called for each spawning player. @override def spawn_player(self, player: Player) -> bs.Actor: + # (Pylint Bug?) pylint: disable=missing-function-docstring + # Let's spawn close to the center. spawn_center = (0, 3, -2) pos = ( @@ -151,6 +153,8 @@ class NinjaFightGame(bs.TeamGameActivity[Player, Team]): # Called for miscellaneous messages. @override def handlemessage(self, msg: Any) -> Any: + # (Pylint Bug?) pylint: disable=missing-function-docstring + # A player has died. if isinstance(msg, bs.PlayerDiedMessage): super().handlemessage(msg) # Augment standard behavior. @@ -174,6 +178,8 @@ class NinjaFightGame(bs.TeamGameActivity[Player, Team]): # to a tournament ending or other external reason). @override def end_game(self) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + # Stop our on-screen timer so players can see what they got. assert self._timer is not None self._timer.stop() diff --git a/dist/ba_data/python/bascenev1lib/game/onslaught.py b/dist/ba_data/python/bascenev1lib/game/onslaught.py index 6933a0c..e56beeb 100644 --- a/dist/ba_data/python/bascenev1lib/game/onslaught.py +++ b/dist/ba_data/python/bascenev1lib/game/onslaught.py @@ -5,7 +5,7 @@ # Yes this is a long one.. # pylint: disable=too-many-lines -# ba_meta require api 8 +# ba_meta require api 9 # (see https://ballistica.net/wiki/meta-tag-system) from __future__ import annotations @@ -225,6 +225,8 @@ class OnslaughtGame(bs.CoopGameActivity[Player, Team]): @override def on_transition_in(self) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + super().on_transition_in() customdata = bs.getsession().customdata @@ -805,6 +807,7 @@ class OnslaughtGame(bs.CoopGameActivity[Player, Team]): max_level: int, ) -> list[list[tuple[int, int]]]: """Calculate a distribution of bad guys given some params.""" + # pylint: disable=too-many-positional-arguments max_iterations = 10 + max_dudes * 2 groups: list[list[tuple[int, int]]] = [] @@ -1194,7 +1197,7 @@ class OnslaughtGame(bs.CoopGameActivity[Player, Team]): def _respawn_players_for_wave(self) -> None: # Respawn applicable players. - if self._wavenum > 1 and not self.is_waiting_for_continue(): + if self._wavenum > 1: for player in self.players: if ( not player.is_alive() @@ -1521,6 +1524,8 @@ class OnslaughtGame(bs.CoopGameActivity[Player, Team]): @override def handlemessage(self, msg: Any) -> Any: + # (Pylint Bug?) pylint: disable=missing-function-docstring + if isinstance(msg, PlayerSpazHurtMessage): msg.spaz.getplayer(Player, True).has_been_hurt = True self._a_player_has_been_hurt = True @@ -1634,6 +1639,8 @@ class OnslaughtGame(bs.CoopGameActivity[Player, Team]): @override def end_game(self) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + # Tell our bots to celebrate just to rub it in. assert self._bots is not None self._bots.final_celebrate() @@ -1641,19 +1648,9 @@ class OnslaughtGame(bs.CoopGameActivity[Player, Team]): self.do_end('defeat', delay=2.0) bs.setmusic(None) - @override - def on_continue(self) -> None: - for player in self.players: - if not player.is_alive(): - self.spawn_player(player) - def _checkroundover(self) -> None: """Potentially end the round based on the state of the game.""" if self.has_ended(): return if not any(player.is_alive() for player in self.teams[0].players): - # Allow continuing after wave 1. - if self._wavenum > 1: - self.continue_or_end_game() - else: - self.end_game() + self.end_game() diff --git a/dist/ba_data/python/bascenev1lib/game/race.py b/dist/ba_data/python/bascenev1lib/game/race.py index c555616..7ebbe93 100644 --- a/dist/ba_data/python/bascenev1lib/game/race.py +++ b/dist/ba_data/python/bascenev1lib/game/race.py @@ -2,7 +2,7 @@ # """Defines Race mini-game.""" -# ba_meta require api 8 +# ba_meta require api 9 # (see https://ballistica.net/wiki/meta-tag-system) from __future__ import annotations @@ -138,11 +138,15 @@ class RaceGame(bs.TeamGameActivity[Player, Team]): @override @classmethod def supports_session_type(cls, sessiontype: type[bs.Session]) -> bool: - return issubclass(sessiontype, bs.MultiTeamSession) + return issubclass(sessiontype, bs.MultiTeamSession) or issubclass( + sessiontype, bs.CoopSession + ) @override @classmethod def get_supported_maps(cls, sessiontype: type[bs.Session]) -> list[str]: + # (Pylint Bug?) pylint: disable=missing-function-docstring + assert bs.app.classic is not None return bs.app.classic.getmaps('race') @@ -185,6 +189,8 @@ class RaceGame(bs.TeamGameActivity[Player, Team]): @override def get_instance_description(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring + if ( isinstance(self.session, bs.DualTeamSession) and self._entire_team_must_finish @@ -199,6 +205,8 @@ class RaceGame(bs.TeamGameActivity[Player, Team]): @override def get_instance_description_short(self) -> str | Sequence: + # (Pylint Bug?) pylint: disable=missing-function-docstring + if self._laps > 1: return 'run ${ARG1} laps', self._laps return 'run 1 lap' @@ -388,10 +396,14 @@ class RaceGame(bs.TeamGameActivity[Player, Team]): @override def on_team_join(self, team: Team) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + self._update_scoreboard() @override def on_player_leave(self, player: Player) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + super().on_player_leave(player) # A player leaving disqualifies the team if 'Entire Team Must Finish' @@ -682,6 +694,8 @@ class RaceGame(bs.TeamGameActivity[Player, Team]): @override def spawn_player(self, player: Player) -> bs.Actor: + # (Pylint Bug?) pylint: disable=missing-function-docstring + if player.team.finished: # FIXME: This is not type-safe! # This call is expected to always return an Actor! @@ -771,6 +785,8 @@ class RaceGame(bs.TeamGameActivity[Player, Team]): @override def end_game(self) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + # Stop updating our time text, and set it to show the exact last # finish time if we have one. (so users don't get upset if their # final time differs from what they see onscreen by a tiny amount) @@ -803,6 +819,8 @@ class RaceGame(bs.TeamGameActivity[Player, Team]): @override def handlemessage(self, msg: Any) -> Any: + # (Pylint Bug?) pylint: disable=missing-function-docstring + if isinstance(msg, bs.PlayerDiedMessage): # Augment default behavior. super().handlemessage(msg) diff --git a/dist/ba_data/python/bascenev1lib/game/runaround.py b/dist/ba_data/python/bascenev1lib/game/runaround.py index 8d0b993..c8f0d70 100644 --- a/dist/ba_data/python/bascenev1lib/game/runaround.py +++ b/dist/ba_data/python/bascenev1lib/game/runaround.py @@ -5,7 +5,7 @@ # We wear the cone of shame. # pylint: disable=too-many-lines -# ba_meta require api 8 +# ba_meta require api 9 # (see https://ballistica.net/wiki/meta-tag-system) from __future__ import annotations @@ -198,6 +198,8 @@ class RunaroundGame(bs.CoopGameActivity[Player, Team]): @override def on_transition_in(self) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + super().on_transition_in() self._scoreboard = Scoreboard( label=bs.Lstr(resource='scoreText'), score_split=0.5 @@ -487,9 +489,9 @@ class RunaroundGame(bs.CoopGameActivity[Player, Team]): assert bs.app.classic is not None uiscale = bs.app.ui_v1.uiscale l_offs = ( - -80 + -120 if uiscale is bs.UIScale.SMALL - else -40 if uiscale is bs.UIScale.MEDIUM else 0 + else -60 if uiscale is bs.UIScale.MEDIUM else -30 ) self._lives_bg = bs.NodeActor( @@ -550,7 +552,7 @@ class RunaroundGame(bs.CoopGameActivity[Player, Team]): self._lives -= 1 if self._lives == 0: self._bots.stop_moving() - self.continue_or_end_game() + self.end_game() # Heartbeat behavior if self._lives < 5: @@ -613,16 +615,10 @@ class RunaroundGame(bs.CoopGameActivity[Player, Team]): ), ) - @override - def on_continue(self) -> None: - self._lives = 3 - assert self._lives_text is not None - assert self._lives_text.node - self._lives_text.node.text = str(self._lives) - self._bots.start_moving() - @override def spawn_player(self, player: Player) -> bs.Actor: + # (Pylint Bug?) pylint: disable=missing-function-docstring + pos = ( self._spawn_center[0] + random.uniform(-1.5, 1.5), self._spawn_center[1], @@ -700,6 +696,8 @@ class RunaroundGame(bs.CoopGameActivity[Player, Team]): @override def end_game(self) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring + bs.pushcall(bs.Call(self.do_end, 'defeat')) bs.setmusic(None) self._player_death_sound.play() @@ -1333,6 +1331,8 @@ class RunaroundGame(bs.CoopGameActivity[Player, Team]): @override def handlemessage(self, msg: Any) -> Any: + # (Pylint Bug?) pylint: disable=missing-function-docstring + if isinstance(msg, bs.PlayerScoredMessage): self._score += msg.score self._update_scores() diff --git a/dist/ba_data/python/bascenev1lib/game/targetpractice.py b/dist/ba_data/python/bascenev1lib/game/targetpractice.py index 18d9410..ae0b3c1 100644 --- a/dist/ba_data/python/bascenev1lib/game/targetpractice.py +++ b/dist/ba_data/python/bascenev1lib/game/targetpractice.py @@ -2,7 +2,7 @@ # """Implements Target Practice game.""" -# ba_meta require api 8 +# ba_meta require api 9 # (see https://ballistica.net/wiki/meta-tag-system) from __future__ import annotations @@ -75,6 +75,7 @@ class TargetPracticeGame(bs.TeamGameActivity[Player, Team]): @override def on_team_join(self, team: Team) -> None: + # (Pylint Bug?) pylint: disable=missing-function-docstring if self.has_begun(): self.update_scoreboard() @@ -93,6 +94,7 @@ class TargetPracticeGame(bs.TeamGameActivity[Player, Team]): @override def spawn_player(self, player: Player) -> bs.Actor: + # (Pylint Bug?) pylint: disable=missing-function-docstring spawn_center = (0, 3, -5) pos = ( spawn_center[0] + random.uniform(-1.5, 1.5), @@ -177,6 +179,8 @@ class TargetPracticeGame(bs.TeamGameActivity[Player, Team]): @override def handlemessage(self, msg: Any) -> Any: + # (Pylint Bug?) pylint: disable=missing-function-docstring + # When players die, respawn them. if isinstance(msg, bs.PlayerDiedMessage): super().handlemessage(msg) # Do standard stuff. @@ -197,6 +201,7 @@ class TargetPracticeGame(bs.TeamGameActivity[Player, Team]): @override def end_game(self) -> None: + """End the game.""" results = bs.GameResults() for team in self.teams: results.set_team_score(team, team.score) diff --git a/dist/ba_data/python/bascenev1lib/game/thelaststand.py b/dist/ba_data/python/bascenev1lib/game/thelaststand.py index 15b7cb9..7cca417 100644 --- a/dist/ba_data/python/bascenev1lib/game/thelaststand.py +++ b/dist/ba_data/python/bascenev1lib/game/thelaststand.py @@ -34,6 +34,7 @@ from bascenev1lib.actor.spazbot import ( if TYPE_CHECKING: from typing import Any, Sequence + from bascenev1lib.actor.spazbot import SpazBot @@ -112,6 +113,8 @@ class TheLastStandGame(bs.CoopGameActivity[Player, Team]): @override def on_transition_in(self) -> None: + # (Pylint bug?) pylint: disable=missing-function-docstring + super().on_transition_in() bs.timer(1.3, self._new_wave_sound.play) self._scoreboard = Scoreboard( @@ -134,6 +137,8 @@ class TheLastStandGame(bs.CoopGameActivity[Player, Team]): @override def spawn_player(self, player: Player) -> bs.Actor: + # (Pylint bug?) pylint: disable=missing-function-docstring + pos = ( self._spawn_center[0] + random.uniform(-1.5, 1.5), self._spawn_center[1], @@ -296,6 +301,8 @@ class TheLastStandGame(bs.CoopGameActivity[Player, Team]): @override def handlemessage(self, msg: Any) -> Any: + # (Pylint bug?) pylint: disable=missing-function-docstring + if isinstance(msg, bs.PlayerDiedMessage): player = msg.getplayer(Player) self.stats.player_was_killed(player) @@ -334,6 +341,8 @@ class TheLastStandGame(bs.CoopGameActivity[Player, Team]): @override def end_game(self) -> None: + # (Pylint bug?) pylint: disable=missing-function-docstring + # Tell our bots to celebrate just to rub it in. self._bots.final_celebrate() bs.setmusic(None) diff --git a/dist/ba_data/python/bascenev1lib/gameutils.py b/dist/ba_data/python/bascenev1lib/gameutils.py index 35810d0..2b9afc0 100644 --- a/dist/ba_data/python/bascenev1lib/gameutils.py +++ b/dist/ba_data/python/bascenev1lib/gameutils.py @@ -15,8 +15,6 @@ if TYPE_CHECKING: class SharedObjects: """Various common components for use in games. - Category: Gameplay Classes - Objects contained here are created on-demand as accessed and shared by everything in the current activity. This includes things such as standard materials. diff --git a/dist/ba_data/python/bascenev1lib/mainmenu.py b/dist/ba_data/python/bascenev1lib/mainmenu.py index 4e90293..2396e75 100644 --- a/dist/ba_data/python/bascenev1lib/mainmenu.py +++ b/dist/ba_data/python/bascenev1lib/mainmenu.py @@ -1,7 +1,6 @@ # Released under the MIT License. See LICENSE for details. # """Session and Activity for displaying the main menu bg.""" -# pylint: disable=too-many-lines from __future__ import annotations @@ -10,12 +9,15 @@ import random import weakref from typing import TYPE_CHECKING, override +from bacommon.locale import LocaleResolved import bascenev1 as bs import bauiv1 as bui if TYPE_CHECKING: from typing import Any + import bacommon.bs + class MainMenuActivity(bs.Activity[bs.Player, bs.Team]): """Activity showing the rotating main menu bg stuff.""" @@ -43,55 +45,23 @@ class MainMenuActivity(bs.Activity[bs.Player, bs.Team]): self._update_timer: bs.Timer | None = None self._news: NewsDisplay | None = None self._attract_mode_timer: bs.Timer | None = None + self._logo_rotate_timer: bs.Timer | None = None @override def on_transition_in(self) -> None: # pylint: disable=too-many-locals # pylint: disable=too-many-statements - # pylint: disable=too-many-branches super().on_transition_in() random.seed(123) app = bs.app env = app.env assert app.classic is not None - plus = bui.app.plus + plus = bs.app.plus assert plus is not None - # FIXME: We shouldn't be doing things conditionally based on whether - # the host is VR mode or not (clients may differ in that regard). - # Any differences need to happen at the engine level so everyone - # sees things in their own optimal way. - vr_mode = bs.app.env.vr - - if not bs.app.ui_v1.use_toolbars: - color = (1.0, 1.0, 1.0, 1.0) if vr_mode else (0.5, 0.6, 0.5, 0.6) - - # FIXME: Need a node attr for vr-specific-scale. - scale = ( - 0.9 - if (app.ui_v1.uiscale is bs.UIScale.SMALL or vr_mode) - else 0.7 - ) - self.my_name = bs.NodeActor( - bs.newnode( - 'text', - attrs={ - 'v_attach': 'bottom', - 'h_align': 'center', - 'color': color, - 'flatness': 1.0, - 'shadow': 1.0 if vr_mode else 0.5, - 'scale': scale, - 'position': (0, 10), - 'vr_depth': -10, - 'text': '\xa9 2011-2024 Eric Froemling', - }, - ) - ) - - # Throw up some text that only clients can see so they know that the - # host is navigating menus while they're just staring at an + # Throw up some text that only clients can see so they know that + # the host is navigating menus while they're just staring at an # empty-ish screen. tval = bs.Lstr( resource='hostIsNavigatingMenusText', @@ -109,73 +79,16 @@ class MainMenuActivity(bs.Activity[bs.Player, bs.Team]): }, ) ) - if not app.classic.main_menu_did_initial_transition and hasattr( - self, 'my_name' + if ( + not app.classic.main_menu_did_initial_transition + and self.my_name is not None ): - assert self.my_name is not None assert self.my_name.node bs.animate(self.my_name.node, 'opacity', {2.3: 0, 3.0: 1.0}) - # FIXME: We shouldn't be doing things conditionally based on whether - # the host is vr mode or not (clients may not be or vice versa). - # Any differences need to happen at the engine level so everyone sees - # things in their own optimal way. - vr_mode = app.env.vr - uiscale = app.ui_v1.uiscale - - # In cases where we're doing lots of dev work lets always show the - # build number. - force_show_build_number = False - - if not bs.app.ui_v1.use_toolbars: - if env.debug or env.test or force_show_build_number: - if env.debug: - text = bs.Lstr( - value='${V} (${B}) (${D})', - subs=[ - ('${V}', app.env.engine_version), - ('${B}', str(app.env.engine_build_number)), - ('${D}', bs.Lstr(resource='debugText')), - ], - ) - else: - text = bs.Lstr( - value='${V} (${B})', - subs=[ - ('${V}', app.env.engine_version), - ('${B}', str(app.env.engine_build_number)), - ], - ) - else: - text = bs.Lstr( - value='${V}', subs=[('${V}', app.env.engine_version)] - ) - scale = 0.9 if (uiscale is bs.UIScale.SMALL or vr_mode) else 0.7 - color = (1, 1, 1, 1) if vr_mode else (0.5, 0.6, 0.5, 0.7) - self.version = bs.NodeActor( - bs.newnode( - 'text', - attrs={ - 'v_attach': 'bottom', - 'h_attach': 'right', - 'h_align': 'right', - 'flatness': 1.0, - 'vr_depth': -10, - 'shadow': 1.0 if vr_mode else 0.5, - 'color': color, - 'scale': scale, - 'position': (-260, 10) if vr_mode else (-10, 10), - 'text': text, - }, - ) - ) - if not app.classic.main_menu_did_initial_transition: - assert self.version.node - bs.animate(self.version.node, 'opacity', {2.3: 0, 3.0: 1.0}) - # Throw in test build info. self.beta_info = self.beta_info_2 = None - if env.test and not (env.demo or env.arcade): + if env.test: pos = (230, 35) self.beta_info = bs.NodeActor( bs.newnode( @@ -292,125 +205,20 @@ class MainMenuActivity(bs.Activity[bs.Player, bs.Team]): self._update() # Hopefully this won't hitch but lets space these out anyway. - bui.add_clean_frame_callback(bs.WeakCall(self._start_preloads)) + bs.add_clean_frame_callback(bs.WeakCall(self._start_preloads)) random.seed() - if not (env.demo or env.arcade) and not app.ui_v1.use_toolbars: - self._news = NewsDisplay(self) + # Need to update this for toolbar mode; currenly doesn't fit. + if bool(False): + if not (env.demo or env.arcade): + self._news = NewsDisplay(self) self._attract_mode_timer = bs.Timer( 3.12, self._update_attract_mode, repeat=True ) - # Bring up the last place we were, or start at the main menu otherwise. - with bs.ContextRef.empty(): - from bauiv1lib import specialoffer - - assert bs.app.classic is not None - if bui.app.env.headless: - # UI stuff fails now in headless builds; avoid it. - pass - elif bool(False): - uicontroller = bs.app.ui_v1.controller - assert uicontroller is not None - uicontroller.show_main_menu() - else: - main_menu_location = bs.app.ui_v1.get_main_menu_location() - - # When coming back from a kiosk-mode game, jump to - # the kiosk start screen. - if env.demo or env.arcade: - # pylint: disable=cyclic-import - from bauiv1lib.kiosk import KioskWindow - - bs.app.ui_v1.set_main_menu_window( - KioskWindow().get_root_widget(), - from_window=False, # Disable check here. - ) - # ..or in normal cases go back to the main menu - else: - if main_menu_location == 'Gather': - # pylint: disable=cyclic-import - from bauiv1lib.gather import GatherWindow - - bs.app.ui_v1.set_main_menu_window( - GatherWindow(transition=None).get_root_widget(), - from_window=False, # Disable check here. - ) - elif main_menu_location == 'Watch': - # pylint: disable=cyclic-import - from bauiv1lib.watch import WatchWindow - - bs.app.ui_v1.set_main_menu_window( - WatchWindow(transition=None).get_root_widget(), - from_window=False, # Disable check here. - ) - elif main_menu_location == 'Team Game Select': - # pylint: disable=cyclic-import - from bauiv1lib.playlist.browser import ( - PlaylistBrowserWindow, - ) - - bs.app.ui_v1.set_main_menu_window( - PlaylistBrowserWindow( - sessiontype=bs.DualTeamSession, transition=None - ).get_root_widget(), - from_window=False, # Disable check here. - ) - elif main_menu_location == 'Free-for-All Game Select': - # pylint: disable=cyclic-import - from bauiv1lib.playlist.browser import ( - PlaylistBrowserWindow, - ) - - bs.app.ui_v1.set_main_menu_window( - PlaylistBrowserWindow( - sessiontype=bs.FreeForAllSession, - transition=None, - ).get_root_widget(), - from_window=False, # Disable check here. - ) - elif main_menu_location == 'Coop Select': - # pylint: disable=cyclic-import - from bauiv1lib.coop.browser import CoopBrowserWindow - - bs.app.ui_v1.set_main_menu_window( - CoopBrowserWindow( - transition=None - ).get_root_widget(), - from_window=False, # Disable check here. - ) - elif main_menu_location == 'Benchmarks & Stress Tests': - # pylint: disable=cyclic-import - from bauiv1lib.debug import DebugWindow - - bs.app.ui_v1.set_main_menu_window( - DebugWindow(transition=None).get_root_widget(), - from_window=False, # Disable check here. - ) - else: - # pylint: disable=cyclic-import - from bauiv1lib.mainmenu import MainMenuWindow - - bs.app.ui_v1.set_main_menu_window( - MainMenuWindow(transition=None).get_root_widget(), - from_window=False, # Disable check here. - ) - - # attempt to show any pending offers immediately. - # If that doesn't work, try again in a few seconds - # (we may not have heard back from the server) - # ..if that doesn't work they'll just have to wait - # until the next opportunity. - if not specialoffer.show_offer(): - - def try_again() -> None: - if not specialoffer.show_offer(): - # Try one last time.. - bui.apptimer(2.0, specialoffer.show_offer) - - bui.apptimer(2.0, try_again) + app.classic.invoke_main_menu_ui() app.classic.main_menu_did_initial_transition = True @@ -445,7 +253,7 @@ class MainMenuActivity(bs.Activity[bs.Player, bs.Team]): y = 20 base_scale = 1.1 self._word_actors = [] - base_delay = 1.0 + base_delay = 0.8 delay = base_delay delay_inc = 0.02 @@ -458,7 +266,10 @@ class MainMenuActivity(bs.Activity[bs.Player, bs.Team]): # We draw higher in kiosk mode (make sure to test this # when making adjustments) for now we're hard-coded for # a few languages.. should maybe look into generalizing this?.. - if app.lang.language == 'Chinese': + if ( + app.locale.current_locale.resolved + is LocaleResolved.CHINESE_SIMPLIFIED + ): base_x = -270.0 x = base_x - 20.0 spacing = 85.0 * base_scale @@ -628,6 +439,7 @@ class MainMenuActivity(bs.Activity[bs.Player, bs.Team]): word: str, x: float, y: float, + *, scale: float = 1.0, delay: float = 0.0, vr_depth_offset: float = 0.0, @@ -676,9 +488,8 @@ class MainMenuActivity(bs.Activity[bs.Player, bs.Team]): ) self._word_actors.append(word_obj) - # Add a bit of stop-motion-y jitter to the logo - # (unless we're in VR mode in which case its best to - # leave things still). + # Add a bit of stop-motion-y jitter to the logo (unless we're in + # VR mode in which case its best to leave things still). if not bs.app.env.vr: cmb: bs.Node | None cmb2: bs.Node | None @@ -757,13 +568,13 @@ class MainMenuActivity(bs.Activity[bs.Player, bs.Team]): y: float, scale: float, delay: float, + *, custom_texture: str | None = None, jitter_scale: float = 1.0, rotate: float = 0.0, vr_depth_offset: float = 0.0, ) -> None: # pylint: disable=too-many-locals - # Temp easter goodness. if custom_texture is None: custom_texture = self._get_custom_logo_tex_name() self._custom_logo_tex_name = custom_texture @@ -776,60 +587,92 @@ class MainMenuActivity(bs.Activity[bs.Player, bs.Team]): if custom_texture is not None else bs.getmesh('logoTransparent') ) - logo = bs.NodeActor( - bs.newnode( - 'image', - attrs={ - 'texture': ltex, - 'mesh_opaque': mopaque, - 'mesh_transparent': mtrans, - 'vr_depth': -10 + vr_depth_offset, - 'rotate': rotate, - 'attach': 'center', - 'tilt_translate': 0.21, - 'absolute_scale': True, - }, - ) - ) + logo_attrs = { + 'position': (x, y), + 'texture': ltex, + 'mesh_opaque': mopaque, + 'mesh_transparent': mtrans, + 'vr_depth': -10 + vr_depth_offset, + 'rotate': rotate, + 'attach': 'center', + 'tilt_translate': 0.21, + 'absolute_scale': True, + } + if custom_texture is None: + logo_attrs['scale'] = (2000.0, 2000.0) + logo = bs.NodeActor(bs.newnode('image', attrs=logo_attrs)) self._logo_node = logo.node self._word_actors.append(logo) - # Add a bit of stop-motion-y jitter to the logo - # (unless we're in VR mode in which case its best to - # leave things still). + # Add a bit of stop-motion-y jitter to the logo (unless we're in + # VR mode in which case its best to leave things still). assert logo.node - if not bs.app.env.vr: + + def jitter() -> None: + if not bs.app.env.vr: + cmb = bs.newnode('combine', owner=logo.node, attrs={'size': 2}) + cmb.connectattr('output', logo.node, 'position') + keys = {} + time_v = 0.0 + + # Gen some random keys for that stop-motion-y look + for _i in range(10): + keys[time_v] = ( + x + (random.random() - 0.5) * 0.7 * jitter_scale + ) + time_v += random.random() * 0.1 + bs.animate(cmb, 'input0', keys, loop=True) + keys = {} + time_v = 0.0 + for _i in range(10): + keys[time_v * self._ts] = ( + y + (random.random() - 0.5) * 0.7 * jitter_scale + ) + time_v += random.random() * 0.1 + bs.animate(cmb, 'input1', keys, loop=True) + + # Do a fun spinny animation on the logo the first time in. + if ( + custom_texture is None + and bs.app.classic is not None + and not bs.app.classic.main_menu_did_initial_transition + ): + jitter() cmb = bs.newnode('combine', owner=logo.node, attrs={'size': 2}) - cmb.connectattr('output', logo.node, 'position') - keys = {} - time_v = 0.0 - # Gen some random keys for that stop-motion-y look - for _i in range(10): - keys[time_v] = x + (random.random() - 0.5) * 0.7 * jitter_scale - time_v += random.random() * 0.1 - bs.animate(cmb, 'input0', keys, loop=True) - keys = {} - time_v = 0.0 - for _i in range(10): - keys[time_v * self._ts] = ( - y + (random.random() - 0.5) * 0.7 * jitter_scale - ) - time_v += random.random() * 0.1 - bs.animate(cmb, 'input1', keys, loop=True) + delay = 0.0 + keys = { + delay: 5000.0 * scale, + delay + 0.4: 530.0 * scale, + delay + 0.45: 620.0 * scale, + delay + 0.5: 590.0 * scale, + delay + 0.55: 605.0 * scale, + delay + 0.6: 600.0 * scale, + } + bs.animate(cmb, 'input0', keys) + bs.animate(cmb, 'input1', keys) + cmb.connectattr('output', logo.node, 'scale') + + keys = { + delay: 100.0, + delay + 0.4: 370.0, + delay + 0.45: 357.0, + delay + 0.5: 360.0, + } + bs.animate(logo.node, 'rotate', keys) else: - logo.node.position = (x, y) + # For all other cases do a simple scale up animation. + jitter() + cmb = bs.newnode('combine', owner=logo.node, attrs={'size': 2}) - cmb = bs.newnode('combine', owner=logo.node, attrs={'size': 2}) - - keys = { - delay: 0.0, - delay + 0.1: 700.0 * scale, - delay + 0.2: 600.0 * scale, - } - bs.animate(cmb, 'input0', keys) - bs.animate(cmb, 'input1', keys) - cmb.connectattr('output', logo.node, 'scale') + keys = { + delay: 0.0, + delay + 0.1: 700.0 * scale, + delay + 0.2: 600.0 * scale, + } + bs.animate(cmb, 'input0', keys) + bs.animate(cmb, 'input1', keys) + cmb.connectattr('output', logo.node, 'scale') def _start_preloads(self) -> None: # FIXME: The func that calls us back doesn't save/restore state @@ -879,8 +722,8 @@ class NewsDisplay: self._used_phrases: list[str] = [] self._phrase_change_timer: bs.Timer | None = None - # If we're signed in, fetch news immediately. - # Otherwise wait until we are signed in. + # If we're signed in, fetch news immediately. Otherwise wait + # until we are signed in. self._fetch_timer: bs.Timer | None = bs.Timer( 1.0, bs.WeakCall(self._try_fetching_news), repeat=True ) @@ -913,8 +756,8 @@ class NewsDisplay: app = bs.app assert app.classic is not None - # If our news is way out of date, lets re-request it; - # otherwise, rotate our phrase. + # If our news is way out of date, lets re-request it; otherwise, + # rotate our phrase. assert app.classic.main_menu_last_news_fetch_time is not None if time.time() - app.classic.main_menu_last_news_fetch_time > 600.0: self._fetch_news() @@ -981,17 +824,16 @@ class NewsDisplay: self._text.node.text = val def _got_news(self, news: str) -> None: - # Run this stuff in the context of our activity since we - # need to make nodes and stuff.. should fix the serverget - # call so it. + # Run this stuff in the context of our activity since we need to + # make nodes and stuff.. should fix the serverget call so it. activity = self._activity() if activity is None or activity.expired: return with activity.context: self._phrases.clear() - # Show upcoming achievements in non-vr versions - # (currently too hard to read in vr). + # Show upcoming achievements in non-vr versions (currently + # too hard to read in vr). self._used_phrases = (['__ACH__'] if not bs.app.env.vr else []) + [ s for s in news.split('
\n') if s != '' ] diff --git a/dist/ba_data/python/bascenev1lib/maps.py b/dist/ba_data/python/bascenev1lib/maps.py index 04f5b36..6646b72 100644 --- a/dist/ba_data/python/bascenev1lib/maps.py +++ b/dist/ba_data/python/bascenev1lib/maps.py @@ -15,6 +15,30 @@ if TYPE_CHECKING: from typing import Any +def register_all_maps() -> None: + """Registering all maps.""" + for maptype in [ + HockeyStadium, + FootballStadium, + Bridgit, + BigG, + Roundabout, + MonkeyFace, + ZigZag, + ThePad, + DoomShroom, + LakeFrigid, + TipTop, + CragCastle, + TowerD, + HappyThoughts, + StepRightUp, + Courtyard, + Rampage, + ]: + bs.register_map(maptype) + + class HockeyStadium(bs.Map): """Stadium map used for ice hockey games.""" diff --git a/dist/ba_data/python/bascenev1lib/tutorial.py b/dist/ba_data/python/bascenev1lib/tutorial.py index 541e611..d9b6e29 100644 --- a/dist/ba_data/python/bascenev1lib/tutorial.py +++ b/dist/ba_data/python/bascenev1lib/tutorial.py @@ -515,6 +515,7 @@ class TutorialActivity(bs.Activity[Player, Team]): self, num: int, position: Sequence[float], + *, color: Sequence[float] = (1.0, 1.0, 1.0), make_current: bool = False, relative_to: int | None = None, @@ -577,6 +578,7 @@ class TutorialActivity(bs.Activity[Player, Team]): self, num: int, position: Sequence[float], + *, color: Sequence[float] = (1.0, 1.0, 1.0), make_current: bool = False, relative_to: int | None = None, diff --git a/dist/ba_data/python/batemplatefs/__init__.py b/dist/ba_data/python/batemplatefs/__init__.py index 58ad2cd..ed09764 100644 --- a/dist/ba_data/python/batemplatefs/__init__.py +++ b/dist/ba_data/python/batemplatefs/__init__.py @@ -2,14 +2,14 @@ # """Ballistica Template Feature Set - just an example.""" -# ba_meta require api 8 +# ba_meta require api 9 # Package up various private bits (including stuff from our native # module) into a nice clean public API. from _batemplatefs import hello_again_world -from batemplatefs._subsystem import TemplateFsSubsystem +from batemplatefs._appsubsystem import TemplateFsAppSubsystem __all__ = [ - 'TemplateFsSubsystem', + 'TemplateFsAppSubsystem', 'hello_again_world', ] diff --git a/dist/ba_data/python/batemplatefs/_appsubsystem.py b/dist/ba_data/python/batemplatefs/_appsubsystem.py new file mode 100644 index 0000000..74a6ebd --- /dev/null +++ b/dist/ba_data/python/batemplatefs/_appsubsystem.py @@ -0,0 +1,19 @@ +# Released under the MIT License. See LICENSE for details. +# +"""Provides the TemplateFs App-Subsystem.""" +from __future__ import annotations + +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + pass + + +class TemplateFsAppSubsystem: + """Subsystem for TemplateFs functionality in the app. + + If :attr:`~batools.featureset.FeatureSet.has_python_app_subsystem` + is enabled for our feature-set, the single shared instance of this + class can be accessed as `template_fs` on the :class:`~babase.App` + instance. + """ diff --git a/dist/ba_data/python/batemplatefs/_subsystem.py b/dist/ba_data/python/batemplatefs/_subsystem.py deleted file mode 100644 index 2645fbf..0000000 --- a/dist/ba_data/python/batemplatefs/_subsystem.py +++ /dev/null @@ -1,19 +0,0 @@ -# Released under the MIT License. See LICENSE for details. -# -"""Provides the TemplateFs subsystem.""" -from __future__ import annotations - -from typing import TYPE_CHECKING - -if TYPE_CHECKING: - pass - - -class TemplateFsSubsystem: - """Subsystem for TemplateFs functionality in the app. - - The single shared instance of this app can be accessed at - babase.app.templatefs. Note that it is possible for babase.app.templatefs - to be None if the TemplateFs feature-set is not enabled, and code - should handle that case gracefully. - """ diff --git a/dist/ba_data/python/bauiv1/__init__.py b/dist/ba_data/python/bauiv1/__init__.py index 2e3144b..86b30a7 100644 --- a/dist/ba_data/python/bauiv1/__init__.py +++ b/dist/ba_data/python/bauiv1/__init__.py @@ -2,7 +2,7 @@ # """Ballistica user interface api version 1""" -# ba_meta require api 8 +# ba_meta require api 9 # The stuff we expose here at the top level is our 'public' api. # It should only be imported by code outside of this package or @@ -16,10 +16,12 @@ from __future__ import annotations import logging -from efro.util import set_canonical_module_names +# from efro.util import set_canonical_module_names from babase import ( add_clean_frame_callback, + allows_ticket_sales, app, + App, AppIntent, AppIntentDefault, AppIntentExec, @@ -27,6 +29,7 @@ from babase import ( appname, appnameupper, apptime, + AppState, AppTime, apptimer, AppTimer, @@ -45,6 +48,7 @@ from babase import ( displaytimer, DisplayTimer, do_once, + existing, fade_screen, get_display_resolution, get_input_idle_time, @@ -56,9 +60,12 @@ from babase import ( get_string_height, get_string_width, get_type_name, + get_virtual_safe_area_size, + get_virtual_screen_size, getclass, have_permission, in_logic_thread, + in_main_menu, increment_analytics_count, is_browser_likely_available, is_xcode_build, @@ -90,9 +97,11 @@ from babase import ( SpecialChar, supports_max_fps, supports_vsync, + supports_unicode_display, timestring, UIScale, unlock_all_input, + utc_now_cloud, WeakCall, workspaces_in_use, ) @@ -109,12 +118,13 @@ from _bauiv1 import ( gettexture, hscrollwidget, imagewidget, - is_party_icon_visible, Mesh, + root_ui_pause_updates, + root_ui_resume_updates, rowwidget, scrollwidget, - set_party_icon_always_visible, set_party_window_open, + spinnerwidget, Sound, Texture, textwidget, @@ -123,12 +133,22 @@ from _bauiv1 import ( widget, ) from bauiv1._keyboard import Keyboard -from bauiv1._uitypes import Window, uicleanupcheck -from bauiv1._subsystem import UIV1Subsystem +from bauiv1._uitypes import ( + Window, + MainWindowState, + BasicMainWindowState, + uicleanupcheck, + MainWindow, + RootUIUpdatePause, + MainWindowAutoRecreateSuppress, +) +from bauiv1._appsubsystem import UIV1AppSubsystem __all__ = [ 'add_clean_frame_callback', + 'allows_ticket_sales', 'app', + 'App', 'AppIntent', 'AppIntentDefault', 'AppIntentExec', @@ -136,10 +156,12 @@ __all__ = [ 'appname', 'appnameupper', 'appnameupper', + 'AppState', 'apptime', 'AppTime', 'apptimer', 'AppTimer', + 'BasicMainWindowState', 'buttonwidget', 'Call', 'fullscreen_control_available', @@ -159,6 +181,7 @@ __all__ = [ 'displaytimer', 'DisplayTimer', 'do_once', + 'existing', 'fade_screen', 'get_display_resolution', 'get_input_idle_time', @@ -172,6 +195,8 @@ __all__ = [ 'get_string_height', 'get_string_width', 'get_type_name', + 'get_virtual_safe_area_size', + 'get_virtual_screen_size', 'getclass', 'getmesh', 'getsound', @@ -180,15 +205,18 @@ __all__ = [ 'hscrollwidget', 'imagewidget', 'in_logic_thread', + 'in_main_menu', 'increment_analytics_count', 'is_browser_likely_available', - 'is_party_icon_visible', 'is_xcode_build', 'Keyboard', 'lock_all_input', 'LoginAdapter', 'LoginInfo', 'Lstr', + 'MainWindow', + 'MainWindowAutoRecreateSuppress', + 'MainWindowState', 'Mesh', 'native_review_request', 'native_review_request_supported', @@ -206,27 +234,32 @@ __all__ = [ 'quit', 'QuitType', 'request_permission', + 'root_ui_pause_updates', + 'root_ui_resume_updates', + 'RootUIUpdatePause', 'rowwidget', 'safecolor', 'screenmessage', 'scrollwidget', 'set_analytics_screen', 'set_low_level_config_value', - 'set_party_icon_always_visible', 'set_party_window_open', 'set_ui_input_device', 'Sound', 'SpecialChar', + 'spinnerwidget', 'supports_max_fps', 'supports_vsync', + 'supports_unicode_display', 'Texture', 'textwidget', 'timestring', 'uibounds', 'uicleanupcheck', 'UIScale', - 'UIV1Subsystem', + 'UIV1AppSubsystem', 'unlock_all_input', + 'utc_now_cloud', 'WeakCall', 'widget', 'Widget', @@ -235,7 +268,9 @@ __all__ = [ ] # We want stuff to show up as bauiv1.Foo instead of bauiv1._sub.Foo. -set_canonical_module_names(globals()) +# UPDATE: Trying without this for now. Seems like this might cause more +# harm than good. Can flip it back on if it is missed. +# set_canonical_module_names(globals()) # Sanity check: we want to keep ballistica's dependencies and # bootstrapping order clearly defined; let's check a few particular diff --git a/dist/ba_data/python/bauiv1/_appsubsystem.py b/dist/ba_data/python/bauiv1/_appsubsystem.py new file mode 100644 index 0000000..d95b4ba --- /dev/null +++ b/dist/ba_data/python/bauiv1/_appsubsystem.py @@ -0,0 +1,485 @@ +# Released under the MIT License. See LICENSE for details. +# +"""User interface related functionality.""" + +from __future__ import annotations + +import time +import logging +import inspect +import weakref +import warnings +from enum import Enum +from typing import TYPE_CHECKING, override + +from efro.util import empty_weakref +import babase + +import _bauiv1 + +if TYPE_CHECKING: + from typing import Any, Callable + + from bauiv1._uitypes import ( + UICleanupCheck, + Window, + MainWindow, + MainWindowState, + ) + import bauiv1 + + +class UIV1AppSubsystem(babase.AppSubsystem): + """Consolidated UI functionality for the app. + + To use this class, access the single instance of it at 'ba.app.ui'. + """ + + class RootUIElement(Enum): + """Stuff provided by the root ui.""" + + MENU_BUTTON = 'menu_button' + SQUAD_BUTTON = 'squad_button' + ACCOUNT_BUTTON = 'account_button' + SETTINGS_BUTTON = 'settings_button' + INBOX_BUTTON = 'inbox_button' + STORE_BUTTON = 'store_button' + INVENTORY_BUTTON = 'inventory_button' + ACHIEVEMENTS_BUTTON = 'achievements_button' + GET_TOKENS_BUTTON = 'get_tokens_button' + TICKETS_METER = 'tickets_meter' + TOKENS_METER = 'tokens_meter' + TROPHY_METER = 'trophy_meter' + LEVEL_METER = 'level_meter' + CHEST_SLOT_0 = 'chest_slot_0' + CHEST_SLOT_1 = 'chest_slot_1' + CHEST_SLOT_2 = 'chest_slot_2' + CHEST_SLOT_3 = 'chest_slot_3' + + def __init__(self) -> None: + from bauiv1._uitypes import MainWindow + + super().__init__() + + # We hold only a weak ref to the current main Window; we want it + # to be able to disappear on its own. That being said, we do + # expect MainWindows to keep themselves alive until replaced by + # another MainWindow and we complain if they don't. + self._main_window = empty_weakref(MainWindow) + self._main_window_widget: bauiv1.Widget | None = None + + self.quit_window: bauiv1.Widget | None = None + + # For storing arbitrary class-level state data for Windows or + # other UI related classes. + self.window_states: dict[type, Any] = {} + + self._uiscale: babase.UIScale + self._update_ui_scale() + + self.cleanupchecks: list[UICleanupCheck] = [] + self.upkeeptimer: babase.AppTimer | None = None + + self.title_color = (0.72, 0.7, 0.75) + self.heading_color = (0.72, 0.7, 0.75) + self.infotextcolor = (0.7, 0.9, 0.7) + + self.window_auto_recreate_suppress_count = 0 + + self._last_win_recreate_screen_size: tuple[float, float] | None = None + self._last_win_recreate_uiscale: bauiv1.UIScale | None = None + self._last_win_recreate_time: float | None = None + self._win_recreate_timer: babase.AppTimer | None = None + + # Elements in our root UI will call anything here when + # activated. + self.root_ui_calls: dict[ + UIV1AppSubsystem.RootUIElement, Callable[[], None] + ] = {} + + def _update_ui_scale(self) -> None: + uiscalestr = babase.get_ui_scale() + if uiscalestr == 'large': + self._uiscale = babase.UIScale.LARGE + elif uiscalestr == 'medium': + self._uiscale = babase.UIScale.MEDIUM + elif uiscalestr == 'small': + self._uiscale = babase.UIScale.SMALL + else: + logging.error("Invalid UIScale '%s'.", uiscalestr) + self._uiscale = babase.UIScale.MEDIUM + + @property + def available(self) -> bool: + """Can uiv1 currently be used? + + Code that may run in headless mode, before the UI has been spun up, + while other ui systems are active, etc. can check this to avoid + likely erroring. + """ + return _bauiv1.is_available() + + @override + def reset(self) -> None: + from bauiv1._uitypes import MainWindow + + self.root_ui_calls.clear() + self._main_window = empty_weakref(MainWindow) + self._main_window_widget = None + + @property + def uiscale(self) -> babase.UIScale: + """Current ui scale for the app.""" + return self._uiscale + + @override + def on_app_loading(self) -> None: + from bauiv1._uitypes import ui_upkeep + + # Kick off our periodic UI upkeep. + self.upkeeptimer = babase.AppTimer(2.6543, ui_upkeep, repeat=True) + + def get_main_window(self) -> bauiv1.MainWindow | None: + """Return main window, if any.""" + return self._main_window() + + def set_main_window( + self, + window: bauiv1.MainWindow, + *, + from_window: bauiv1.MainWindow | None | bool = True, + is_back: bool = False, + is_top_level: bool = False, + is_auxiliary: bool = False, + back_state: MainWindowState | None = None, + suppress_warning: bool = False, + ) -> None: + """Set the current 'main' window. + + Generally this should not be called directly; The high level + MainWindow methods main_window_replace() and main_window_back() + should be used whenever possible to implement navigation. + + The caller is responsible for cleaning up any previous main + window. + """ + # pylint: disable=too-many-locals + # pylint: disable=too-many-branches + # pylint: disable=too-many-statements + from bauiv1._uitypes import MainWindow + + # If we haven't grabbed initial uiscale or screen size for recreate + # comparision purposes, this is a good time to do so. + if self._last_win_recreate_screen_size is None: + self._last_win_recreate_screen_size = ( + babase.get_virtual_screen_size() + ) + if self._last_win_recreate_uiscale is None: + self._last_win_recreate_uiscale = babase.app.ui_v1.uiscale + + # Encourage migration to the new higher level nav calls. + if not suppress_warning: + warnings.warn( + 'set_main_window() should usually not be called directly;' + ' use the main_window_replace() or main_window_back()' + ' methods on MainWindow objects for navigation instead.' + ' If you truly need to use set_main_window(),' + ' pass suppress_warning=True to silence this warning.', + DeprecationWarning, + stacklevel=2, + ) + + # We used to accept Widgets but now want MainWindows. + if not isinstance(window, MainWindow): + raise RuntimeError( + f'set_main_window() now takes a MainWindow as its "window" arg.' + f' You passed a {type(window)}.', + ) + window_weakref = weakref.ref(window) + window_widget = window.get_root_widget() + + if not isinstance(from_window, MainWindow): + if from_window is not None and not isinstance(from_window, bool): + raise RuntimeError( + f'set_main_window() now takes a MainWindow or bool or None' + f'as its "from_window" arg.' + f' You passed a {type(from_window)}.', + ) + + existing = self._main_window() + + # If they passed a back-state, make sure it is fully filled out. + if back_state is not None: + if ( + back_state.is_top_level is None + or back_state.is_auxiliary is None + or back_state.window_type is None + ): + raise RuntimeError( + 'Provided back_state is incomplete.' + ' Make sure to only pass fully-filled-out MainWindowStates.' + ) + + # If a top-level main-window is being set, complain if there already + # is a main-window. + if is_top_level: + if existing: + logging.warning( + 'set_main_window() called with top-level window %s' + ' but found existing main-window %s.', + window, + existing, + ) + else: + # In other cases, sanity-check that the window asking for + # this switch is the one we're switching away from. + try: + if isinstance(from_window, bool): + # For default val True we warn that the arg wasn't + # passed. False can be explicitly passed to disable + # this check. + if from_window is True: + caller_frame = inspect.stack()[1] + caller_filename = caller_frame.filename + caller_line_number = caller_frame.lineno + logging.warning( + 'set_main_window() should be passed a' + " 'from_window' value to help ensure proper" + ' UI behavior (%s line %i).', + caller_filename, + caller_line_number, + ) + else: + # For everything else, warn if what they passed + # wasn't the previous main menu widget. + if from_window is not existing: + caller_frame = inspect.stack()[1] + caller_filename = caller_frame.filename + caller_line_number = caller_frame.lineno + logging.warning( + "set_main_window() was passed 'from_window' %s" + ' but existing main-menu-window is %s.' + ' (%s line %i).', + from_window, + existing, + caller_filename, + caller_line_number, + ) + except Exception: + # Prevent any bugs in these checks from causing problems. + logging.exception('Error checking from_window') + + if is_back: + # These values should only be passed for forward navigation. + assert not is_top_level + assert not is_auxiliary + # Make sure back state is complete. + assert back_state is not None + assert back_state.is_top_level is not None + assert back_state.is_auxiliary is not None + assert back_state.window_type is type(window) + window.main_window_back_state = back_state.parent + window.main_window_is_top_level = back_state.is_top_level + window.main_window_is_auxiliary = back_state.is_auxiliary + else: + # Store if the window is top-level so we won't complain later if + # we go back from it and there's nowhere to go to. + window.main_window_is_top_level = is_top_level + + window.main_window_is_auxiliary = is_auxiliary + + # When navigating forward, generate a back-window-state from + # the outgoing window. + if is_top_level: + # Top level windows don't have or expect anywhere to + # go back to. + window.main_window_back_state = None + elif back_state is not None: + window.main_window_back_state = back_state + else: + oldwin = self._main_window() + if oldwin is None: + # We currenty only hold weak refs to windows so that + # they are free to die on their own, but we expect + # the main menu window to keep itself alive as long + # as its the main one. Holler if that seems to not + # be happening. + logging.warning( + 'set_main_window: No old MainWindow found' + ' and is_top_level is False;' + ' this should not happen.' + ) + window.main_window_back_state = None + else: + window.main_window_back_state = self.save_main_window_state( + oldwin + ) + + self._main_window = window_weakref + self._main_window_widget = window_widget + + def has_main_window(self) -> bool: + """Return whether a main menu window is present.""" + return bool(self._main_window_widget) + + def clear_main_window(self, transition: str | None = None) -> None: + """Clear any existing main window.""" + from bauiv1._uitypes import MainWindow + + main_window = self._main_window() + if main_window: + main_window.main_window_close(transition=transition) + else: + # Fallback; if we have a widget but no window, nuke the widget. + if self._main_window_widget: + logging.error( + 'Have _main_window_widget but no main_window' + ' on clear_main_window; unexpected.' + ) + self._main_window_widget.delete() + + self._main_window = empty_weakref(MainWindow) + self._main_window_widget = None + + def save_main_window_state(self, window: MainWindow) -> MainWindowState: + """Fully initialize a window-state from a window. + + Use this to get a complete state for later restoration purposes. + Calling the window's get_main_window_state() directly is + insufficient. + """ + winstate = window.get_main_window_state() + + # Store some common window stuff on its state. + winstate.parent = window.main_window_back_state + winstate.is_top_level = window.main_window_is_top_level + winstate.is_auxiliary = window.main_window_is_auxiliary + winstate.window_type = type(window) + + return winstate + + def restore_main_window_state(self, state: MainWindowState) -> None: + """Restore UI to a saved state.""" + existing = self.get_main_window() + if existing is not None: + raise RuntimeError('There is already a MainWindow.') + + # Valid states should have a value here. + assert state.is_top_level is not None + assert state.is_auxiliary is not None + assert state.window_type is not None + + win = state.create_window(transition=None) + self.set_main_window( + win, + from_window=False, # disable check + is_top_level=state.is_top_level, + is_auxiliary=state.is_auxiliary, + back_state=state.parent, + suppress_warning=True, + ) + + def should_suppress_window_recreates(self) -> bool: + """Should we avoid auto-recreating windows at the current time?""" + + # This is slightly hack-ish and ideally we can get to the point + # where we never need this and can remove it. + + # Currently string-edits grab a weak-ref to the exact text + # widget they're targeting. So we need to suppress recreates + # while edits are in progress. Ideally we should change that to + # use ids or something that would survive a recreate. + if babase.app.stringedit.active_adapter() is not None: + return True + + # Suppress if anything else is requesting suppression (such as + # generic Windows that don't handle being recreated). + return babase.app.ui_v1.window_auto_recreate_suppress_count > 0 + + @override + def on_ui_scale_change(self) -> None: + # Update our stored UIScale. + self._update_ui_scale() + + # Update native bits (allow root widget to rebuild itself/etc.) + _bauiv1.on_ui_scale_change() + + self._schedule_main_win_recreate() + + @override + def on_screen_size_change(self) -> None: + + self._schedule_main_win_recreate() + + def _schedule_main_win_recreate(self) -> None: + + # If there is a timer set already, do nothing. + if self._win_recreate_timer is not None: + return + + # Recreating a MainWindow is a kinda heavy thing and it doesn't + # seem like we should be doing it at 120hz during a live window + # resize, so let's limit the max rate we do it. We also use the + # same mechanism to defer window recreates while anything is + # suppressing them. + now = time.monotonic() + + # Up to 4 refreshes per second seems reasonable. + interval = 0.25 + + # Ok; there's no timer. Schedule one. + till_update = ( + interval + if self.should_suppress_window_recreates() + else ( + 0.0 + if self._last_win_recreate_time is None + else max(0.0, self._last_win_recreate_time + interval - now) + ) + ) + self._win_recreate_timer = babase.AppTimer( + till_update, self._do_main_win_recreate + ) + + def _do_main_win_recreate(self) -> None: + self._last_win_recreate_time = time.monotonic() + self._win_recreate_timer = None + + # If win-recreates are currently suppressed, just kick off + # another timer. We'll do our actual thing once suppression + # finally ends. + if self.should_suppress_window_recreates(): + self._schedule_main_win_recreate() + return + + mainwindow = self.get_main_window() + + # Can't recreate what doesn't exist. + if mainwindow is None: + return + + virtual_screen_size = babase.get_virtual_screen_size() + uiscale = babase.app.ui_v1.uiscale + + # These should always get actual values when a main-window is + # assigned so should never still be None here. + assert self._last_win_recreate_uiscale is not None + assert self._last_win_recreate_screen_size is not None + + # If uiscale hasn't changed and our screen-size hasn't either + # (or it has but we don't care) then we're done. + if uiscale is self._last_win_recreate_uiscale and ( + virtual_screen_size == self._last_win_recreate_screen_size + or not mainwindow.refreshes_on_screen_size_changes + ): + return + + # Do the recreate. + winstate = self.save_main_window_state(mainwindow) + self.clear_main_window(transition='instant') + self.restore_main_window_state(winstate) + + # Store the size we created this for to avoid redundant + # future recreates. + self._last_win_recreate_uiscale = uiscale + self._last_win_recreate_screen_size = virtual_screen_size diff --git a/dist/ba_data/python/bauiv1/_hooks.py b/dist/ba_data/python/bauiv1/_hooks.py index b65c139..644ecd3 100644 --- a/dist/ba_data/python/bauiv1/_hooks.py +++ b/dist/ba_data/python/bauiv1/_hooks.py @@ -15,49 +15,130 @@ if TYPE_CHECKING: from typing import Sequence import babase - - -def ticket_icon_press() -> None: - from babase import app - - if app.classic is None: - logging.exception('Classic not present.') - return - - app.classic.ticket_icon_press() - - -def trophy_icon_press() -> None: - print('TROPHY ICON PRESSED') - - -def level_icon_press() -> None: - print('LEVEL ICON PRESSED') - - -def coin_icon_press() -> None: - print('COIN ICON PRESSED') + import bauiv1 def empty_call() -> None: pass -def back_button_press() -> None: - _bauiv1.back_press() +def _root_ui_button_press( + rootuitype: bauiv1.UIV1AppSubsystem.RootUIElement, +) -> None: + import babase + + ui = babase.app.ui_v1 + call = ui.root_ui_calls.get(rootuitype) + if call is not None: + call() -def friends_button_press() -> None: - print('FRIEND BUTTON PRESSED!') +def root_ui_account_button_press() -> None: + from bauiv1._appsubsystem import UIV1AppSubsystem + + _root_ui_button_press(UIV1AppSubsystem.RootUIElement.ACCOUNT_BUTTON) -def party_icon_activate(origin: Sequence[float]) -> None: - from babase import app +def root_ui_inbox_button_press() -> None: + from bauiv1._appsubsystem import UIV1AppSubsystem - if app.classic is not None: - app.classic.party_icon_activate(origin) - else: - logging.warning('party_icon_activate: no classic.') + _root_ui_button_press(UIV1AppSubsystem.RootUIElement.INBOX_BUTTON) + + +def root_ui_settings_button_press() -> None: + from bauiv1._appsubsystem import UIV1AppSubsystem + + _root_ui_button_press(UIV1AppSubsystem.RootUIElement.SETTINGS_BUTTON) + + +def root_ui_achievements_button_press() -> None: + from bauiv1._appsubsystem import UIV1AppSubsystem + + _root_ui_button_press(UIV1AppSubsystem.RootUIElement.ACHIEVEMENTS_BUTTON) + + +def root_ui_store_button_press() -> None: + from bauiv1._appsubsystem import UIV1AppSubsystem + + _root_ui_button_press(UIV1AppSubsystem.RootUIElement.STORE_BUTTON) + + +def root_ui_chest_slot_0_press() -> None: + from bauiv1._appsubsystem import UIV1AppSubsystem + + _root_ui_button_press(UIV1AppSubsystem.RootUIElement.CHEST_SLOT_0) + + +def root_ui_chest_slot_1_press() -> None: + from bauiv1._appsubsystem import UIV1AppSubsystem + + _root_ui_button_press(UIV1AppSubsystem.RootUIElement.CHEST_SLOT_1) + + +def root_ui_chest_slot_2_press() -> None: + from bauiv1._appsubsystem import UIV1AppSubsystem + + _root_ui_button_press(UIV1AppSubsystem.RootUIElement.CHEST_SLOT_2) + + +def root_ui_chest_slot_3_press() -> None: + from bauiv1._appsubsystem import UIV1AppSubsystem + + _root_ui_button_press(UIV1AppSubsystem.RootUIElement.CHEST_SLOT_3) + + +def root_ui_inventory_button_press() -> None: + from bauiv1._appsubsystem import UIV1AppSubsystem + + _root_ui_button_press(UIV1AppSubsystem.RootUIElement.INVENTORY_BUTTON) + + +def root_ui_ticket_icon_press() -> None: + from bauiv1._appsubsystem import UIV1AppSubsystem + + _root_ui_button_press(UIV1AppSubsystem.RootUIElement.TICKETS_METER) + + +def root_ui_get_tokens_button_press() -> None: + from bauiv1._appsubsystem import UIV1AppSubsystem + + _root_ui_button_press(UIV1AppSubsystem.RootUIElement.GET_TOKENS_BUTTON) + + +def root_ui_tokens_meter_press() -> None: + from bauiv1._appsubsystem import UIV1AppSubsystem + + _root_ui_button_press(UIV1AppSubsystem.RootUIElement.TOKENS_METER) + + +def root_ui_trophy_meter_press() -> None: + from bauiv1._appsubsystem import UIV1AppSubsystem + + _root_ui_button_press(UIV1AppSubsystem.RootUIElement.TROPHY_METER) + + +def root_ui_level_icon_press() -> None: + from bauiv1._appsubsystem import UIV1AppSubsystem + + _root_ui_button_press(UIV1AppSubsystem.RootUIElement.LEVEL_METER) + + +def root_ui_menu_button_press() -> None: + from bauiv1._appsubsystem import UIV1AppSubsystem + + _root_ui_button_press(UIV1AppSubsystem.RootUIElement.MENU_BUTTON) + + +def root_ui_back_button_press() -> None: + # Native layer handles this directly. (technically we could wire + # this up to not even come through Python). + _bauiv1.root_ui_back_press() + + +def root_ui_squad_button_press() -> None: + from bauiv1._appsubsystem import UIV1AppSubsystem + + _root_ui_button_press(UIV1AppSubsystem.RootUIElement.SQUAD_BUTTON) def on_button_press_x() ->None: diff --git a/dist/ba_data/python/bauiv1/_keyboard.py b/dist/ba_data/python/bauiv1/_keyboard.py index 6d18ac6..821ab67 100644 --- a/dist/ba_data/python/bauiv1/_keyboard.py +++ b/dist/ba_data/python/bauiv1/_keyboard.py @@ -13,11 +13,9 @@ if TYPE_CHECKING: class Keyboard: """Chars definitions for on-screen keyboard. - Category: **App Classes** - - Keyboards are discoverable by the meta-tag system - and the user can select which one they want to use. - On-screen keyboard uses chars from active babase.Keyboard. + Keyboards are discoverable by the meta-tag system and the user can + select which one they want to use. On-screen keyboard uses chars + from active babase.Keyboard. """ name: str diff --git a/dist/ba_data/python/bauiv1/_subsystem.py b/dist/ba_data/python/bauiv1/_subsystem.py deleted file mode 100644 index c9bd7f5..0000000 --- a/dist/ba_data/python/bauiv1/_subsystem.py +++ /dev/null @@ -1,250 +0,0 @@ -# Released under the MIT License. See LICENSE for details. -# -"""User interface related functionality.""" - -from __future__ import annotations - -import logging -import inspect -from typing import TYPE_CHECKING, override - -import babase - -import _bauiv1 - -if TYPE_CHECKING: - from typing import Any, Callable - - from bauiv1._uitypes import UICleanupCheck, UIController - import bauiv1 - - -class UIV1Subsystem(babase.AppSubsystem): - """Consolidated UI functionality for the app. - - Category: **App Classes** - - To use this class, access the single instance of it at 'ba.app.ui'. - """ - - def __init__(self) -> None: - super().__init__() - env = babase.env() - - self.controller: UIController | None = None - - self._main_menu_window: bauiv1.Widget | None = None - self._main_menu_location: str | None = None - self.quit_window: bauiv1.Widget | None = None - - # From classic. - self.main_menu_resume_callbacks: list = [] # Can probably go away. - - self._uiscale: babase.UIScale - - interfacetype = babase.app.config.get('UI Scale', env['ui_scale']) - if interfacetype == 'auto': - interfacetype = env['ui_scale'] - - if interfacetype == 'large': - self._uiscale = babase.UIScale.LARGE - elif interfacetype == 'medium': - self._uiscale = babase.UIScale.MEDIUM - elif interfacetype == 'small': - self._uiscale = babase.UIScale.SMALL - else: - raise RuntimeError(f'Invalid UIScale value: {interfacetype}') - - self.window_states: dict[type, Any] = {} # FIXME: Kill this. - self.main_menu_selection: str | None = None # FIXME: Kill this. - self.have_party_queue_window = False - self.cleanupchecks: list[UICleanupCheck] = [] - self.upkeeptimer: babase.AppTimer | None = None - self.use_toolbars = _bauiv1.toolbar_test() - - self.title_color = (0.72, 0.7, 0.75) - self.heading_color = (0.72, 0.7, 0.75) - self.infotextcolor = (0.7, 0.9, 0.7) - - # Switch our overall game selection UI flow between Play and - # Private-party playlist selection modes; should do this in - # a more elegant way once we revamp high level UI stuff a bit. - self.selecting_private_party_playlist: bool = False - - @property - def available(self) -> bool: - """Can uiv1 currently be used? - - Code that may run in headless mode, before the UI has been spun up, - while other ui systems are active, etc. can check this to avoid - likely erroring. - """ - return _bauiv1.is_available() - - @property - def uiscale(self) -> babase.UIScale: - """Current ui scale for the app.""" - return self._uiscale - - @override - def on_app_loading(self) -> None: - from bauiv1._uitypes import UIController, ui_upkeep - - # IMPORTANT: If tweaking UI stuff, make sure it behaves for small, - # medium, and large UI modes. (doesn't run off screen, etc). - # The overrides below can be used to test with different sizes. - # Generally small is used on phones, medium is used on tablets/tvs, - # and large is on desktop computers or perhaps large tablets. When - # possible, run in windowed mode and resize the window to assure - # this holds true at all aspect ratios. - - # UPDATE: A better way to test this is now by setting the environment - # variable BA_UI_SCALE to "small", "medium", or "large". - # This will affect system UIs not covered by the values below such - # as screen-messages. The below values remain functional, however, - # for cases such as Android where environment variables can't be set - # easily. - - if bool(False): # force-test ui scale - self._uiscale = babase.UIScale.SMALL - with babase.ContextRef.empty(): - babase.pushcall( - lambda: babase.screenmessage( - f'FORCING UISCALE {self._uiscale.name} FOR TESTING', - color=(1, 0, 1), - log=True, - ) - ) - - self.controller = UIController() - - # Kick off our periodic UI upkeep. - # FIXME: Can probably kill this if we do immediate UI death checks. - self.upkeeptimer = babase.AppTimer(2.6543, ui_upkeep, repeat=True) - - def set_main_menu_window( - self, - window: bauiv1.Widget, - from_window: bauiv1.Widget | None | bool = True, - ) -> None: - """Set the current 'main' window, replacing any existing. - - If 'from_window' is passed as a bauiv1.Widget or None, a warning - will be issued if it that value does not match the current main - window. This can help clean up flawed code that can lead to bad - UI states. A value of False will disable the check. - """ - - existing = self._main_menu_window - - try: - if isinstance(from_window, bool): - # For default val True we warn that the arg wasn't - # passed. False can be explicitly passed to disable this - # check. - if from_window is True: - caller_frame = inspect.stack()[1] - caller_filename = caller_frame.filename - caller_line_number = caller_frame.lineno - logging.warning( - 'set_main_menu_window() should be passed a' - " 'from_window' value to help ensure proper UI behavior" - ' (%s line %i).', - caller_filename, - caller_line_number, - ) - else: - # For everything else, warn if what they passed wasn't - # the previous main menu widget. - if from_window is not existing: - caller_frame = inspect.stack()[1] - caller_filename = caller_frame.filename - caller_line_number = caller_frame.lineno - logging.warning( - "set_main_menu_window() was passed 'from_window' %s" - ' but existing main-menu-window is %s. (%s line %i).', - from_window, - existing, - caller_filename, - caller_line_number, - ) - except Exception: - # Prevent any bugs in these checks from causing problems. - logging.exception('Error checking from_window') - - # Once the above code leads to us fixing all leftover window bugs - # at the source, we can kill the code below. - - # Let's grab the location where we were called from to report - # if we have to force-kill the existing window (which normally - # should not happen). - frameline = None - try: - frame = inspect.currentframe() - if frame is not None: - frame = frame.f_back - if frame is not None: - frameinfo = inspect.getframeinfo(frame) - frameline = f'{frameinfo.filename} {frameinfo.lineno}' - except Exception: - logging.exception('Error calcing line for set_main_menu_window') - - # With our legacy main-menu system, the caller is responsible for - # clearing out the old main menu window when assigning the new. - # However there are corner cases where that doesn't happen and we get - # old windows stuck under the new main one. So let's guard against - # that. However, we can't simply delete the existing main window when - # a new one is assigned because the user may transition the old out - # *after* the assignment. Sigh. So, as a happy medium, let's check in - # on the old after a short bit of time and kill it if its still alive. - # That will be a bit ugly on screen but at least should un-break - # things. - def _delay_kill() -> None: - import time - - if existing: - print( - f'Killing old main_menu_window' - f' when called at: {frameline} t={time.time():.3f}' - ) - existing.delete() - - babase.apptimer(1.0, _delay_kill) - self._main_menu_window = window - - def clear_main_menu_window(self, transition: str | None = None) -> None: - """Clear any existing 'main' window with the provided transition.""" - assert transition is None or not transition.endswith('_in') - if self._main_menu_window: - if ( - transition is not None - and not self._main_menu_window.transitioning_out - ): - _bauiv1.containerwidget( - edit=self._main_menu_window, transition=transition - ) - else: - self._main_menu_window.delete() - self._main_menu_window = None - - def add_main_menu_close_callback(self, call: Callable[[], Any]) -> None: - """(internal)""" - - # If there's no main menu up, just call immediately. - if not self.has_main_menu_window(): - with babase.ContextRef.empty(): - call() - else: - self.main_menu_resume_callbacks.append(call) - - def has_main_menu_window(self) -> bool: - """Return whether a main menu window is present.""" - return bool(self._main_menu_window) - - def set_main_menu_location(self, location: str) -> None: - """Set the location represented by the current main menu window.""" - self._main_menu_location = location - - def get_main_menu_location(self) -> str | None: - """Return the current named main menu location, if any.""" - return self._main_menu_location diff --git a/dist/ba_data/python/bauiv1/_uitypes.py b/dist/ba_data/python/bauiv1/_uitypes.py index 6431a55..b062984 100644 --- a/dist/ba_data/python/bauiv1/_uitypes.py +++ b/dist/ba_data/python/bauiv1/_uitypes.py @@ -6,6 +6,7 @@ from __future__ import annotations import os import weakref +import logging from dataclasses import dataclass from typing import TYPE_CHECKING, override @@ -14,7 +15,7 @@ import babase import _bauiv1 if TYPE_CHECKING: - from typing import Any, Type + from typing import Any, Type, Literal, Callable import bauiv1 @@ -26,13 +27,30 @@ DEBUG_UI_CLEANUP_CHECKS = os.environ.get('BA_DEBUG_UI_CLEANUP_CHECKS') == '1' class Window: """A basic window. - Category: User Interface Classes + Essentially wraps a ContainerWidget with some higher level + functionality. """ - def __init__(self, root_widget: bauiv1.Widget, cleanupcheck: bool = True): + def __init__( + self, + root_widget: bauiv1.Widget, + cleanupcheck: bool = True, + prevent_main_window_auto_recreate: bool = True, + ): self._root_widget = root_widget - # Complain if we outlive our root widget. + # By default, the presence of any generic windows prevents the + # app from running its fancy main-window-auto-recreate mechanism + # on screen-resizes and whatnot. This avoids things like + # temporary popup windows getting stuck under auto-re-created + # main-windows. + self._window_main_window_auto_recreate_suppress = ( + MainWindowAutoRecreateSuppress() + if prevent_main_window_auto_recreate + else None + ) + + # Generally we complain if we outlive our root widget. if cleanupcheck: uicleanupcheck(self, root_widget) @@ -41,6 +59,274 @@ class Window: return self._root_widget +class MainWindow(Window): + """A special type of window that can be set as 'main'. + + The UI system has at most one main window at any given time. + MainWindows support high level functionality such as saving and + restoring states, allowing them to be automatically recreated when + navigating back from other locations or when something like ui-scale + changes. + """ + + def __init__( + self, + root_widget: bauiv1.Widget, + *, + transition: str | None, + origin_widget: bauiv1.Widget | None, + cleanupcheck: bool = True, + refresh_on_screen_size_changes: bool = False, + ): + """Create a MainWindow given a root widget and transition info. + + Automatically handles in and out transitions on the provided + widget, so there is no need to set transitions when creating it. + """ + # A back-state supplied by the ui system. + self.main_window_back_state: MainWindowState | None = None + + self.main_window_is_top_level: bool = False + + # Windows that size tailor themselves to exact screen dimensions + # can pass True for this. Generally this only applies to small + # ui scale and at larger scales windows simply fit in the + # virtual safe area. + self.refreshes_on_screen_size_changes = refresh_on_screen_size_changes + + # Windows can be flagged as auxiliary when not related to the + # main UI task at hand. UI code may choose to handle auxiliary + # windows in special ways, such as by implicitly replacing + # existing auxiliary windows with new ones instead of keeping + # old ones as back targets. + self.main_window_is_auxiliary: bool = False + + self._main_window_transition = transition + self._main_window_origin_widget = origin_widget + super().__init__( + root_widget, + cleanupcheck=cleanupcheck, + prevent_main_window_auto_recreate=False, + ) + + scale_origin: tuple[float, float] | None + if origin_widget is not None: + self._main_window_transition_out = 'out_scale' + scale_origin = origin_widget.get_screen_space_center() + transition = 'in_scale' + else: + self._main_window_transition_out = 'out_right' + scale_origin = None + _bauiv1.containerwidget( + edit=root_widget, + transition=transition, + scale_origin_stack_offset=scale_origin, + ) + + def main_window_close(self, transition: str | None = None) -> None: + """Get window transitioning out if still alive.""" + + # no-op if our underlying widget is dead or on its way out. + if not self._root_widget or self._root_widget.transitioning_out: + return + + # Transition ourself out. + try: + self.on_main_window_close() + except Exception: + logging.exception('Error in on_main_window_close() for %s.', self) + + # Note: normally transition of None means instant, but we use + # that to mean 'do the default' so we support a special + # 'instant' string. + if transition == 'instant': + self._root_widget.delete() + else: + _bauiv1.containerwidget( + edit=self._root_widget, + transition=( + self._main_window_transition_out + if transition is None + else transition + ), + ) + + def main_window_has_control(self) -> bool: + """Is this MainWindow allowed to change the global main window? + + It is a good idea to make sure this is True before calling + main_window_replace(). This prevents fluke UI breakage such as + multiple simultaneous events causing a MainWindow to spawn + multiple replacements for itself. + """ + # We are allowed to change main windows if we are the current one + # AND our underlying widget is still alive and not transitioning out. + return ( + babase.app.ui_v1.get_main_window() is self + and bool(self._root_widget) + and not self._root_widget.transitioning_out + ) + + def main_window_back(self) -> None: + """Move back in the main window stack. + + Is a no-op if the main window does not have control; + no need to check main_window_has_control() first. + """ + + # Users should always check main_window_has_control() before + # calling us. Error if it seems they did not. + if not self.main_window_has_control(): + return + + uiv1 = babase.app.ui_v1 + + # Get the 'back' window coming in. + if not self.main_window_is_top_level: + + back_state = self.main_window_back_state + if back_state is None: + raise RuntimeError( + f'Main window {self} provides no back-state.' + ) + + # Valid states should have values here. + assert back_state.is_top_level is not None + assert back_state.is_auxiliary is not None + assert back_state.window_type is not None + + backwin = back_state.create_window(transition='in_left') + + uiv1.set_main_window( + backwin, + from_window=self, + is_back=True, + back_state=back_state, + suppress_warning=True, + ) + + # Transition ourself out. + self.main_window_close() + + def main_window_replace( + self, + new_window: MainWindow, + back_state: MainWindowState | None = None, + is_auxiliary: bool = False, + ) -> None: + """Replace ourself with a new MainWindow.""" + + # Users should always check main_window_has_control() *before* + # creating new MainWindows and passing them in here. Kill the + # passed window and Error if it seems they did not. + if not self.main_window_has_control(): + new_window.get_root_widget().delete() + raise RuntimeError( + f'main_window_replace() called on a not-in-control window' + f' ({self}); always check main_window_has_control() before' + f' calling main_window_replace().' + ) + + # Just shove the old out the left to give the feel that we're + # adding to the nav stack. + transition = 'out_left' + + # Transition ourself out. + try: + self.on_main_window_close() + except Exception: + logging.exception('Error in on_main_window_close() for %s.', self) + + _bauiv1.containerwidget(edit=self._root_widget, transition=transition) + babase.app.ui_v1.set_main_window( + new_window, + from_window=self, + back_state=back_state, + is_auxiliary=is_auxiliary, + suppress_warning=True, + ) + + def on_main_window_close(self) -> None: + """Called before transitioning out a main window. + + A good opportunity to save window state/etc. + """ + + def get_main_window_state(self) -> MainWindowState: + """Return a WindowState to recreate this window, if supported.""" + raise NotImplementedError() + + +class MainWindowState: + """Persistent state for a specific MainWindow. + + This allows MainWindows to be automatically recreated for back-button + purposes, when switching app-modes, etc. + """ + + def __init__(self) -> None: + # The window that back/cancel navigation should take us to. + self.parent: MainWindowState | None = None + self.is_top_level: bool | None = None + self.is_auxiliary: bool | None = None + self.window_type: type[MainWindow] | None = None + self.selection: str | None = None + + def create_window( + self, + transition: Literal['in_right', 'in_left', 'in_scale'] | None = None, + origin_widget: bauiv1.Widget | None = None, + ) -> MainWindow: + """Create a window based on this state. + + WindowState child classes should override this to recreate their + particular type of window. + """ + raise NotImplementedError() + + +class BasicMainWindowState(MainWindowState): + """A basic MainWindowState holding a lambda to recreate a MainWindow.""" + + def __init__( + self, + create_call: Callable[ + [ + Literal['in_right', 'in_left', 'in_scale'] | None, + bauiv1.Widget | None, + ], + bauiv1.MainWindow, + ], + ) -> None: + super().__init__() + self.create_call = create_call + + @override + def create_window( + self, + transition: Literal['in_right', 'in_left', 'in_scale'] | None = None, + origin_widget: bauiv1.Widget | None = None, + ) -> bauiv1.MainWindow: + return self.create_call(transition, origin_widget) + + +class MainWindowAutoRecreateSuppress: + """Suppresses main-window auto-recreate while in existence. + + Can be instantiated and held by windows or processes within windows + for the purpose of preventing the main-window auto-recreate + mechanism from firing. This mechanism normally fires when the screen + is resized or the ui-scale is changed, allowing windows to be + recreated to adapt to the new configuration. + """ + + def __init__(self) -> None: + babase.app.ui_v1.window_auto_recreate_suppress_count += 1 + + def __del__(self) -> None: + babase.app.ui_v1.window_auto_recreate_suppress_count -= 1 + + @dataclass class UICleanupCheck: """Holds info about a uicleanupcheck target.""" @@ -50,129 +336,8 @@ class UICleanupCheck: widget_death_time: float | None -class UILocation: - """Defines a specific 'place' in the UI the user can navigate to. - - Category: User Interface Classes - """ - - def __init__(self) -> None: - pass - - def save_state(self) -> None: - """Serialize this instance's state to a dict.""" - - def restore_state(self) -> None: - """Restore this instance's state from a dict.""" - - def push_location(self, location: str) -> None: - """Push a new location to the stack and transition to it.""" - - -class UILocationWindow(UILocation): - """A UILocation consisting of a single root window widget. - - Category: User Interface Classes - """ - - def __init__(self) -> None: - super().__init__() - self._root_widget: bauiv1.Widget | None = None - - def get_root_widget(self) -> bauiv1.Widget: - """Return the root widget for this window.""" - assert self._root_widget is not None - return self._root_widget - - -class UIEntry: - """State for a UILocation on the stack.""" - - def __init__(self, name: str, controller: UIController): - self._name = name - self._state = None - self._args = None - self._instance: UILocation | None = None - self._controller = weakref.ref(controller) - - def create(self) -> None: - """Create an instance of our UI.""" - cls = self._get_class() - self._instance = cls() - - def destroy(self) -> None: - """Transition out our UI if it exists.""" - if self._instance is None: - return - print('WOULD TRANSITION OUT', self._name) - - def _get_class(self) -> Type[UILocation]: - """Returns the UI class our name points to.""" - # pylint: disable=cyclic-import - - # TEMP HARD CODED - WILL REPLACE THIS WITH BA_META LOOKUPS. - if self._name == 'mainmenu': - # Shut pylint up. - if bool(False): - return UILocation - raise RuntimeError('FIXME UNIMPLEMENTED') - # from bauiv1lib import mainmenu - # return cast(Type[UILocation], mainmenu.MainMenuWindow) - - raise ValueError('unknown ui class ' + str(self._name)) - - -class UIController: - """Wrangles bauiv1.UILocations. - - Category: User Interface Classes - """ - - def __init__(self) -> None: - # FIXME: document why we have separate stacks for game and menu... - self._main_stack_game: list[UIEntry] = [] - self._main_stack_menu: list[UIEntry] = [] - - # This points at either the game or menu stack. - self._main_stack: list[UIEntry] | None = None - - # There's only one of these since we don't need to preserve its state - # between sessions. - self._dialog_stack: list[UIEntry] = [] - - def show_main_menu(self, in_game: bool = True) -> None: - """Show the main menu, clearing other UIs from location stacks.""" - self._main_stack = [] - self._dialog_stack = [] - self._main_stack = ( - self._main_stack_game if in_game else self._main_stack_menu - ) - self._main_stack.append(UIEntry('mainmenu', self)) - self._update_ui() - - def _update_ui(self) -> None: - """Instantiate the topmost ui in our stacks.""" - - # First tell any existing UIs to get outta here. - for stack in (self._dialog_stack, self._main_stack): - assert stack is not None - for entry in stack: - entry.destroy() - - # Now create the topmost one if there is one. - entrynew = ( - self._dialog_stack[-1] - if self._dialog_stack - else self._main_stack[-1] if self._main_stack else None - ) - if entrynew is not None: - entrynew.create() - - def uicleanupcheck(obj: Any, widget: bauiv1.Widget) -> None: - """Add a check to ensure a widget-owning object gets cleaned up properly. - - Category: User Interface Functions + """Checks to ensure a widget-owning object gets cleaned up properly. This adds a check which will print an error message if the provided object still exists ~5 seconds after the provided bauiv1.Widget dies. @@ -232,9 +397,11 @@ def ui_upkeep() -> None: print( 'WARNING:', obj, - 'is still alive 5 second after its widget died;' - ' you might have a memory leak. See efro.debug module' - ' for tools to help debug this.', + 'is still alive 5 second after its Widget died;' + ' you might have a memory leak. Look for circular' + ' references or outside things referencing your Window' + ' class instance. See efro.debug module' + ' for tools that can help debug this sort of thing.', ) else: remainingchecks.append(check) @@ -273,3 +440,13 @@ class TextWidgetStringEditAdapter(babase.StringEditAdapter): def _do_cancel(self) -> None: if self.widget: _bauiv1.textwidget(edit=self.widget, adapter_finished=True) + + +class RootUIUpdatePause: + """Pauses updates to the root-ui while in existence.""" + + def __init__(self) -> None: + _bauiv1.root_ui_pause_updates() + + def __del__(self) -> None: + _bauiv1.root_ui_resume_updates() diff --git a/dist/ba_data/python/bauiv1/onscreenkeyboard.py b/dist/ba_data/python/bauiv1/onscreenkeyboard.py index dc02071..e506f50 100644 --- a/dist/ba_data/python/bauiv1/onscreenkeyboard.py +++ b/dist/ba_data/python/bauiv1/onscreenkeyboard.py @@ -252,7 +252,9 @@ class OnScreenKeyboardWindow(Window): # Show change instructions only if we have more than one # keyboard option. keyboards = ( - babase.app.meta.scanresults.exports_of_class(Keyboard) + babase.app.meta.scanresults.exports_by_name( + 'bauiv1.Keyboard' + ) if babase.app.meta.scanresults is not None else [] ) @@ -284,9 +286,9 @@ class OnScreenKeyboardWindow(Window): def _get_keyboard(self) -> bui.Keyboard: assert babase.app.meta.scanresults is not None - classname = babase.app.meta.scanresults.exports_of_class(Keyboard)[ - self._keyboard_index - ] + classname = babase.app.meta.scanresults.exports_by_name( + 'bauiv1.Keyboard' + )[self._keyboard_index] kbclass = babase.getclass(classname, Keyboard) return kbclass() @@ -384,7 +386,9 @@ class OnScreenKeyboardWindow(Window): def _next_keyboard(self) -> None: assert babase.app.meta.scanresults is not None - kbexports = babase.app.meta.scanresults.exports_of_class(Keyboard) + kbexports = babase.app.meta.scanresults.exports_by_name( + 'bauiv1.Keyboard' + ) self._keyboard_index = (self._keyboard_index + 1) % len(kbexports) self._load_keyboard() diff --git a/dist/ba_data/python/bauiv1lib/__init__.py b/dist/ba_data/python/bauiv1lib/__init__.py index f7720bd..454e03f 100644 --- a/dist/ba_data/python/bauiv1lib/__init__.py +++ b/dist/ba_data/python/bauiv1lib/__init__.py @@ -2,4 +2,4 @@ # """Library of stuff using the bauiv1 api: windows, custom controls, etc.""" -# ba_meta require api 8 +# ba_meta require api 9 diff --git a/dist/ba_data/python/bauiv1lib/account/__init__.py b/dist/ba_data/python/bauiv1lib/account/__init__.py index 5ce2650..1d25ed0 100644 --- a/dist/ba_data/python/bauiv1lib/account/__init__.py +++ b/dist/ba_data/python/bauiv1lib/account/__init__.py @@ -1,38 +1,3 @@ # Released under the MIT License. See LICENSE for details. # """UI functionality related to accounts.""" - -from __future__ import annotations - -import bauiv1 as bui - - -def show_sign_in_prompt(account_type: str | None = None) -> None: - """Bring up a prompt telling the user they must sign in.""" - from bauiv1lib.confirm import ConfirmWindow - from bauiv1lib.account import settings - - if account_type == 'Google Play': - - def _do_sign_in() -> None: - plus = bui.app.plus - assert plus is not None - plus.sign_in_v1('Google Play') - - ConfirmWindow( - bui.Lstr(resource='notSignedInGooglePlayErrorText'), - _do_sign_in, - ok_text=bui.Lstr(resource='accountSettingsWindow.signInText'), - width=460, - height=130, - ) - else: - ConfirmWindow( - bui.Lstr(resource='notSignedInErrorText'), - lambda: settings.AccountSettingsWindow( - modal=True, close_once_signed_in=True - ), - ok_text=bui.Lstr(resource='accountSettingsWindow.signInText'), - width=460, - height=130, - ) diff --git a/dist/ba_data/python/bauiv1lib/account/link.py b/dist/ba_data/python/bauiv1lib/account/link.py index 58828ad..d19ed06 100644 --- a/dist/ba_data/python/bauiv1lib/account/link.py +++ b/dist/ba_data/python/bauiv1lib/account/link.py @@ -105,13 +105,13 @@ class AccountLinkWindow(bui.Window): ) def _generate_press(self) -> None: - from bauiv1lib import account + from bauiv1lib.account.signin import show_sign_in_prompt plus = bui.app.plus assert plus is not None if plus.get_v1_account_state() != 'signed_in': - account.show_sign_in_prompt() + show_sign_in_prompt() return bui.screenmessage( bui.Lstr(resource='gatherWindow.requestingAPromoCodeText'), diff --git a/dist/ba_data/python/bauiv1lib/account/settings.py b/dist/ba_data/python/bauiv1lib/account/settings.py index 9476f32..0768285 100644 --- a/dist/ba_data/python/bauiv1lib/account/settings.py +++ b/dist/ba_data/python/bauiv1lib/account/settings.py @@ -7,12 +7,14 @@ from __future__ import annotations import time import logging +from typing import override from bacommon.cloud import WebLocation from bacommon.login import LoginType import bacommon.cloud import bauiv1 as bui +from bauiv1lib.connectivity import wait_for_connectivity # These days we're directing people to the web based account settings # for V2 account linking and trying to get them to disconnect remaining @@ -20,17 +22,17 @@ import bauiv1 as bui FORCE_ENABLE_V1_LINKING = False -class AccountSettingsWindow(bui.Window): +class AccountSettingsWindow(bui.MainWindow): """Window for account related functionality.""" def __init__( self, - transition: str = 'in_right', - modal: bool = False, + transition: str | None = 'in_right', origin_widget: bui.Widget | None = None, close_once_signed_in: bool = False, ): # pylint: disable=too-many-statements + # pylint: disable=too-many-locals plus = bui.app.plus assert plus is not None @@ -46,18 +48,7 @@ class AccountSettingsWindow(bui.Window): self._explicitly_signed_out_of_gpgs = False - # If they provided an origin-widget, scale up from that. - scale_origin: tuple[float, float] | None - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None - self._r = 'accountSettingsWindow' - self._modal = modal self._needs_refresh = False self._v1_signed_in = plus.get_v1_account_state() == 'signed_in' self._v1_account_state_num = plus.get_v1_account_state_num() @@ -66,24 +57,47 @@ class AccountSettingsWindow(bui.Window): ) self._can_reset_achievements = False + self._recreate_suppress: bui.MainWindowAutoRecreateSuppress | None = ( + None + ) app = bui.app assert app.classic is not None uiscale = app.ui_v1.uiscale - self._width = 860 if uiscale is bui.UIScale.SMALL else 660 - x_offs = 100 if uiscale is bui.UIScale.SMALL else 0 + self._width = 980 if uiscale is bui.UIScale.SMALL else 660 self._height = ( - 390 + 600 if uiscale is bui.UIScale.SMALL else 430 if uiscale is bui.UIScale.MEDIUM else 490 ) + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + + scale = ( + 1.9 + if uiscale is bui.UIScale.SMALL + else 1.4 if uiscale is bui.UIScale.MEDIUM else 1.0 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_width = min(self._width - 80, screensize[0] / scale) + target_height = min(self._height - 80, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * self._height + 0.5 * target_height + 30.0 + + self._scroll_width = target_width + self._scroll_height = target_height - 33 + scroll_bottom = yoffs - 61 - self._scroll_height + self._sign_in_button = None self._sign_in_text = None - self._scroll_width = self._width - (100 + x_offs * 2) - self._scroll_height = self._height - 120 self._sub_width = self._scroll_width - 20 # Determine which sign-in/sign-out buttons we should show. @@ -98,62 +112,63 @@ class AccountSettingsWindow(bui.Window): # Always want to show our web-based v2 login option. self._show_sign_in_buttons.append('V2Proxy') - # Legacy v1 device accounts available only if the user - # has explicitly enabled deprecated login types. + # Legacy v1 device accounts available only if the user has + # explicitly enabled deprecated login types. if bui.app.config.resolve('Show Deprecated Login Types'): self._show_sign_in_buttons.append('Device') - top_extra = 15 if uiscale is bui.UIScale.SMALL else 0 super().__init__( root_widget=bui.containerwidget( - size=(self._width, self._height + top_extra), - transition=transition, - toolbar_visibility='menu_minimal', - scale_origin_stack_offset=scale_origin, - scale=( - 2.09 + size=(self._width, self._height), + toolbar_visibility=( + 'menu_minimal' if uiscale is bui.UIScale.SMALL - else 1.4 if uiscale is bui.UIScale.MEDIUM else 1.0 + else 'menu_full' ), - stack_offset=( - (0, -19) if uiscale is bui.UIScale.SMALL else (0, 0) - ), - ) + scale=scale, + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) - if uiscale is bui.UIScale.SMALL and app.ui_v1.use_toolbars: + if uiscale is bui.UIScale.SMALL: self._back_button = None bui.containerwidget( - edit=self._root_widget, on_cancel_call=self._back + edit=self._root_widget, on_cancel_call=self.main_window_back ) else: self._back_button = btn = bui.buttonwidget( parent=self._root_widget, - position=(51 + x_offs, self._height - 62), + position=(51, yoffs - 52.0), size=(120, 60), scale=0.8, text_scale=1.2, autoselect=True, - label=bui.Lstr( - resource='doneText' if self._modal else 'backText' - ), - button_type='regular' if self._modal else 'back', - on_activate_call=self._back, + label=bui.Lstr(resource='backText'), + button_type='back', + on_activate_call=self.main_window_back, ) bui.containerwidget(edit=self._root_widget, cancel_button=btn) - if not self._modal: - bui.buttonwidget( - edit=btn, - button_type='backSmall', - size=(60, 56), - label=bui.charstr(bui.SpecialChar.BACK), - ) + bui.buttonwidget( + edit=btn, + button_type='backSmall', + size=(60, 56), + label=bui.charstr(bui.SpecialChar.BACK), + ) + titleyoffs = -45.0 if uiscale is bui.UIScale.SMALL else -28.0 + titlescale = 0.7 if uiscale is bui.UIScale.SMALL else 1.0 bui.textwidget( parent=self._root_widget, - position=(self._width * 0.5, self._height - 41), + position=( + self._width * 0.5, + yoffs + titleyoffs, + ), size=(0, 0), text=bui.Lstr(resource=f'{self._r}.titleText'), color=app.ui_v1.title_color, + scale=titlescale, maxwidth=self._width - 340, h_align='center', v_align='center', @@ -162,31 +177,45 @@ class AccountSettingsWindow(bui.Window): self._scrollwidget = bui.scrollwidget( parent=self._root_widget, highlight=False, - position=( - (self._width - self._scroll_width) * 0.5, - self._height - 65 - self._scroll_height, - ), size=(self._scroll_width, self._scroll_height), + position=( + self._width * 0.5 - self._scroll_width * 0.5, + scroll_bottom, + ), claims_left_right=True, - claims_tab=True, selection_loops_to_parent=True, + border_opacity=0.4, ) self._subcontainer: bui.Widget | None = None self._refresh() self._restore_state() + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) + + @override + def on_main_window_close(self) -> None: + self._save_state() + def _update(self) -> None: plus = bui.app.plus assert plus is not None # If they want us to close once we're signed in, do so. if self._close_once_signed_in and self._v1_signed_in: - self._back() + self.main_window_back() return # Hmm should update this to use get_account_state_num. - # Theoretically if we switch from one signed-in account to another - # in the background this would break. + # Theoretically if we switch from one signed-in account to + # another in the background this would break. v1_account_state_num = plus.get_v1_account_state_num() v1_account_state = plus.get_v1_account_state() show_legacy_unlink_button = self._should_show_legacy_unlink_button() @@ -201,8 +230,8 @@ class AccountSettingsWindow(bui.Window): self._show_legacy_unlink_button = show_legacy_unlink_button self._refresh() - # Go ahead and refresh some individual things - # that may change under us. + # Go ahead and refresh some individual things that may change + # under us. self._update_linked_accounts_text() self._update_unlink_accounts_button() self._refresh_campaign_progress_text() @@ -215,7 +244,6 @@ class AccountSettingsWindow(bui.Window): # pylint: disable=too-many-branches # pylint: disable=too-many-locals # pylint: disable=cyclic-import - from bauiv1lib import confirm plus = bui.app.plus assert plus is not None @@ -313,12 +341,8 @@ class AccountSettingsWindow(bui.Window): deprecated_space = 60 # Game Center currently has a single UI for everything. - show_game_service_button = game_center_active - game_service_button_space = 60.0 - - # Phasing this out. - show_what_is_v2 = False - # show_what_is_v2 = self._v1_signed_in and v1_account_type == 'V2' + show_game_center_button = game_center_active + game_center_button_space = 60.0 # Phasing this out (for V2 accounts at least). show_linked_accounts_text = ( @@ -326,44 +350,51 @@ class AccountSettingsWindow(bui.Window): ) linked_accounts_text_space = 60.0 - # Always show achievements except in the game-center case where - # its unified UI covers them. - show_achievements_button = self._v1_signed_in and not game_center_active - achievements_button_space = 60.0 - - show_achievements_text = ( - self._v1_signed_in and not show_achievements_button - ) + # Update: No longer showing this since its visible on main + # toolbar. + show_achievements_text = False achievements_text_space = 27.0 show_leaderboards_button = self._v1_signed_in and gpgs_active leaderboards_button_space = 60.0 - show_campaign_progress = self._v1_signed_in + # Update: No longer showing this; trying to get progress type + # stuff out of the account panel. + # show_campaign_progress = self._v1_signed_in + show_campaign_progress = False campaign_progress_space = 27.0 - show_tickets = self._v1_signed_in + # show_tickets = self._v1_signed_in + show_tickets = False tickets_space = 27.0 - show_reset_progress_button = False - reset_progress_button_space = 70.0 + show_manage_account_button = primary_v2_account is not None + manage_account_button_space = 70.0 - show_manage_v2_account_button = primary_v2_account is not None - manage_v2_account_button_space = 100.0 + show_create_account_button = show_v2_proxy_sign_in_button + create_account_button_space = 70.0 - show_delete_account_button = primary_v2_account is not None - delete_account_button_space = 80.0 - - show_player_profiles_button = self._v1_signed_in - player_profiles_button_space = ( - 70.0 if show_manage_v2_account_button else 100.0 + # Apple asks us to make a delete-account button directly + # available in the UI. Currently disabling this elsewhere + # however as I feel that poking 'Manage Account' and scrolling + # down to 'Delete Account' is not hard to find. + show_delete_account_button = primary_v2_account is not None and ( + bui.app.classic is not None + and bui.app.classic.platform == 'mac' + and bui.app.classic.subplatform == 'appstore' ) + delete_account_button_space = 70.0 show_link_accounts_button = self._v1_signed_in and ( primary_v2_account is None or FORCE_ENABLE_V1_LINKING ) link_accounts_button_space = 70.0 + show_v1_obsolete_note = self._v1_signed_in and ( + primary_v2_account is None + ) + v1_obsolete_note_space = 80.0 + show_unlink_accounts_button = show_link_accounts_button unlink_accounts_button_space = 90.0 @@ -376,7 +407,7 @@ class AccountSettingsWindow(bui.Window): show_sign_out_button = primary_v2_account is not None or ( self._v1_signed_in and v1_account_type == 'Local' ) - sign_out_button_space = 80.0 + sign_out_button_space = 70.0 # We can show cancel if we're either waiting on an adapter to # provide us with v2 credentials or waiting for those @@ -403,14 +434,12 @@ class AccountSettingsWindow(bui.Window): self._sub_height += sign_in_button_space if show_device_sign_in_button: self._sub_height += sign_in_button_space + deprecated_space - if show_game_service_button: - self._sub_height += game_service_button_space + if show_game_center_button: + self._sub_height += game_center_button_space if show_linked_accounts_text: self._sub_height += linked_accounts_text_space if show_achievements_text: self._sub_height += achievements_text_space - if show_achievements_button: - self._sub_height += achievements_button_space if show_leaderboards_button: self._sub_height += leaderboards_button_space if show_campaign_progress: @@ -419,14 +448,14 @@ class AccountSettingsWindow(bui.Window): self._sub_height += tickets_space if show_sign_in_benefits: self._sub_height += sign_in_benefits_space - if show_reset_progress_button: - self._sub_height += reset_progress_button_space - if show_manage_v2_account_button: - self._sub_height += manage_v2_account_button_space - if show_player_profiles_button: - self._sub_height += player_profiles_button_space + if show_manage_account_button: + self._sub_height += manage_account_button_space + if show_create_account_button: + self._sub_height += create_account_button_space if show_link_accounts_button: self._sub_height += link_accounts_button_space + if show_v1_obsolete_note: + self._sub_height += v1_obsolete_note_space if show_unlink_accounts_button: self._sub_height += unlink_accounts_button_space if show_v2_link_info: @@ -444,7 +473,6 @@ class AccountSettingsWindow(bui.Window): size=(self._sub_width, self._sub_height), background=False, claims_left_right=True, - claims_tab=True, selection_loops_to_parent=True, ) @@ -452,8 +480,6 @@ class AccountSettingsWindow(bui.Window): v = self._sub_height - 10.0 assert bui.app.classic is not None - self._account_name_what_is_text: bui.Widget | None - self._account_name_what_is_y = 0.0 self._account_name_text: bui.Widget | None if show_signed_in_as: v -= signed_in_as_space * 0.2 @@ -485,32 +511,6 @@ class AccountSettingsWindow(bui.Window): v_align='center', ) - if show_what_is_v2: - self._account_name_what_is_y = v - 23.0 - self._account_name_what_is_text = bui.textwidget( - parent=self._subcontainer, - position=(0.0, self._account_name_what_is_y), - size=(220.0, 60), - text=bui.Lstr( - value='${WHAT} -->', - subs=[('${WHAT}', bui.Lstr(resource='whatIsThisText'))], - ), - scale=0.6, - color=(0.3, 0.7, 0.05), - maxwidth=130.0, - h_align='right', - v_align='center', - autoselect=True, - selectable=True, - on_activate_call=show_what_is_v2_page, - click_activate=True, - glow_type='uniform', - ) - if first_selectable is None: - first_selectable = self._account_name_what_is_text - else: - self._account_name_what_is_text = None - self._refresh_account_name_text() v -= signed_in_as_space * 0.4 @@ -565,7 +565,6 @@ class AccountSettingsWindow(bui.Window): else: self._account_name_text = None - self._account_name_what_is_text = None if self._back_button is None: bbtn = bui.get_special_widget('back_button') @@ -641,11 +640,9 @@ class AccountSettingsWindow(bui.Window): ) if first_selectable is None: first_selectable = btn - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=btn, - right_widget=bui.get_special_widget('party_button'), - ) + bui.widget( + edit=btn, right_widget=bui.get_special_widget('squad_button') + ) bui.widget(edit=btn, left_widget=bbtn) bui.widget(edit=btn, show_buffer_bottom=40, show_buffer_top=100) self._sign_in_text = None @@ -683,11 +680,9 @@ class AccountSettingsWindow(bui.Window): ) if first_selectable is None: first_selectable = btn - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=btn, - right_widget=bui.get_special_widget('party_button'), - ) + bui.widget( + edit=btn, right_widget=bui.get_special_widget('squad_button') + ) bui.widget(edit=btn, left_widget=bbtn) bui.widget(edit=btn, show_buffer_bottom=40, show_buffer_top=100) self._sign_in_text = None @@ -752,11 +747,9 @@ class AccountSettingsWindow(bui.Window): ) if first_selectable is None: first_selectable = btn - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=btn, - right_widget=bui.get_special_widget('party_button'), - ) + bui.widget( + edit=btn, right_widget=bui.get_special_widget('squad_button') + ) bui.widget(edit=btn, left_widget=bbtn) bui.widget(edit=btn, show_buffer_bottom=40, show_buffer_top=100) self._sign_in_text = None @@ -821,21 +814,39 @@ class AccountSettingsWindow(bui.Window): ) if first_selectable is None: first_selectable = btn - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=btn, - right_widget=bui.get_special_widget('party_button'), - ) + bui.widget( + edit=btn, right_widget=bui.get_special_widget('squad_button') + ) bui.widget(edit=btn, left_widget=bbtn) bui.widget(edit=btn, show_buffer_bottom=40, show_buffer_top=100) self._sign_in_text = None - if show_manage_v2_account_button: - button_width = 300 - v -= manage_v2_account_button_space - self._manage_v2_button = btn = bui.buttonwidget( + if show_v1_obsolete_note: + v -= v1_obsolete_note_space + bui.textwidget( parent=self._subcontainer, - position=((self._sub_width - button_width) * 0.5, v + 30), + h_align='center', + v_align='center', + size=(0, 0), + position=(self._sub_width * 0.5, v + 35.0), + text=( + 'YOU ARE SIGNED IN WITH A V1 ACCOUNT.\n' + 'THESE ARE NO LONGER SUPPORTED AND MANY\n' + 'FEATURES WILL NOT WORK. PLEASE SWITCH TO\n' + 'A V2 ACCOUNT OR UPGRADE THIS ONE.' + ), + maxwidth=self._sub_width * 0.8, + color=(1, 0, 0), + shadow=1.0, + flatness=1.0, + ) + + if show_manage_account_button: + button_width = 300 + v -= manage_account_button_space + self._manage_button = btn = bui.buttonwidget( + parent=self._subcontainer, + position=((self._sub_width - button_width) * 0.5, v), autoselect=True, size=(button_width, 60), label=bui.Lstr(resource=f'{self._r}.manageAccountText'), @@ -846,45 +857,40 @@ class AccountSettingsWindow(bui.Window): ) if first_selectable is None: first_selectable = btn - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=btn, - right_widget=bui.get_special_widget('party_button'), - ) + bui.widget( + edit=btn, right_widget=bui.get_special_widget('squad_button') + ) bui.widget(edit=btn, left_widget=bbtn) - if show_player_profiles_button: + if show_create_account_button: button_width = 300 - v -= player_profiles_button_space - self._player_profiles_button = btn = bui.buttonwidget( + v -= create_account_button_space + self._create_button = btn = bui.buttonwidget( parent=self._subcontainer, - position=((self._sub_width - button_width) * 0.5, v + 30), + position=((self._sub_width - button_width) * 0.5, v - 30), autoselect=True, size=(button_width, 60), - label=bui.Lstr(resource='playerProfilesWindow.titleText'), + label=bui.Lstr(resource=f'{self._r}.createAnAccountText'), color=(0.55, 0.5, 0.6), - icon=bui.gettexture('cuteSpaz'), textcolor=(0.75, 0.7, 0.8), - on_activate_call=self._player_profiles_press, + on_activate_call=bui.WeakCall(self._on_create_account_press), ) if first_selectable is None: first_selectable = btn - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=btn, - right_widget=bui.get_special_widget('party_button'), - ) - bui.widget(edit=btn, left_widget=bbtn, show_buffer_bottom=0) + bui.widget( + edit=btn, right_widget=bui.get_special_widget('squad_button') + ) + bui.widget(edit=btn, left_widget=bbtn) # the button to go to OS-Specific leaderboards/high-score-lists/etc. - if show_game_service_button: + if show_game_center_button: button_width = 300 - v -= game_service_button_space * 0.6 + v -= game_center_button_space * 1.0 if game_center_active: # Note: Apparently Game Center is just called 'Game Center' # in all languages. Can revisit if not true. # https://developer.apple.com/forums/thread/725779 - game_service_button_label = bui.Lstr( + game_center_button_label = bui.Lstr( value=bui.charstr(bui.SpecialChar.GAME_CENTER_LOGO) + 'Game Center' ) @@ -892,27 +898,25 @@ class AccountSettingsWindow(bui.Window): raise ValueError( "unknown account type: '" + str(v1_account_type) + "'" ) - self._game_service_button = btn = bui.buttonwidget( + self._game_center_button = btn = bui.buttonwidget( parent=self._subcontainer, position=((self._sub_width - button_width) * 0.5, v), color=(0.55, 0.5, 0.6), textcolor=(0.75, 0.7, 0.8), autoselect=True, - on_activate_call=self._on_game_service_button_press, + on_activate_call=self._on_game_center_button_press, size=(button_width, 50), - label=game_service_button_label, + label=game_center_button_label, ) if first_selectable is None: first_selectable = btn - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=btn, - right_widget=bui.get_special_widget('party_button'), - ) + bui.widget( + edit=btn, right_widget=bui.get_special_widget('squad_button') + ) bui.widget(edit=btn, left_widget=bbtn) - v -= game_service_button_space * 0.4 + v -= game_center_button_space * 0.4 else: - self.game_service_button = None + self.game_center_button = None self._achievements_text: bui.Widget | None if show_achievements_text: @@ -931,51 +935,13 @@ class AccountSettingsWindow(bui.Window): else: self._achievements_text = None - self._achievements_button: bui.Widget | None - if show_achievements_button: - button_width = 300 - v -= achievements_button_space * 0.85 - self._achievements_button = btn = bui.buttonwidget( - parent=self._subcontainer, - position=((self._sub_width - button_width) * 0.5, v), - color=(0.55, 0.5, 0.6), - textcolor=(0.75, 0.7, 0.8), - autoselect=True, - icon=bui.gettexture( - 'googlePlayAchievementsIcon' - if gpgs_active - else 'achievementsIcon' - ), - icon_color=( - (0.8, 0.95, 0.7) if gpgs_active else (0.85, 0.8, 0.9) - ), - on_activate_call=( - self._on_custom_achievements_press - if gpgs_active - else self._on_achievements_press - ), - size=(button_width, 50), - label='', - ) - if first_selectable is None: - first_selectable = btn - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=btn, - right_widget=bui.get_special_widget('party_button'), - ) - bui.widget(edit=btn, left_widget=bbtn) - v -= achievements_button_space * 0.15 - else: - self._achievements_button = None - - if show_achievements_text or show_achievements_button: + if show_achievements_text: self._refresh_achievements() self._leaderboards_button: bui.Widget | None if show_leaderboards_button: button_width = 300 - v -= leaderboards_button_space * 0.85 + v -= leaderboards_button_space self._leaderboards_button = btn = bui.buttonwidget( parent=self._subcontainer, position=((self._sub_width - button_width) * 0.5, v), @@ -990,13 +956,10 @@ class AccountSettingsWindow(bui.Window): ) if first_selectable is None: first_selectable = btn - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=btn, - right_widget=bui.get_special_widget('party_button'), - ) + bui.widget( + edit=btn, right_widget=bui.get_special_widget('squad_button') + ) bui.widget(edit=btn, left_widget=bbtn) - v -= leaderboards_button_space * 0.15 else: self._leaderboards_button = None @@ -1039,41 +1002,9 @@ class AccountSettingsWindow(bui.Window): self._tickets_text = None # bit of spacing before the reset/sign-out section - v -= 5 + # v -= 5 - button_width = 250 - if show_reset_progress_button: - confirm_text = ( - bui.Lstr(resource=f'{self._r}.resetProgressConfirmText') - if self._can_reset_achievements - else bui.Lstr( - resource=f'{self._r}.resetProgressConfirmNoAchievementsText' - ) - ) - v -= reset_progress_button_space - self._reset_progress_button = btn = bui.buttonwidget( - parent=self._subcontainer, - position=((self._sub_width - button_width) * 0.5, v), - color=(0.55, 0.5, 0.6), - textcolor=(0.75, 0.7, 0.8), - autoselect=True, - size=(button_width, 60), - label=bui.Lstr(resource=f'{self._r}.resetProgressText'), - on_activate_call=lambda: confirm.ConfirmWindow( - text=confirm_text, - width=500, - height=200, - action=self._reset_progress, - ), - ) - if first_selectable is None: - first_selectable = btn - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=btn, - right_widget=bui.get_special_widget('party_button'), - ) - bui.widget(edit=btn, left_widget=bbtn) + button_width = 300 self._linked_accounts_text: bui.Widget | None if show_linked_accounts_text: @@ -1133,11 +1064,9 @@ class AccountSettingsWindow(bui.Window): ) if first_selectable is None: first_selectable = btn - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=btn, - right_widget=bui.get_special_widget('party_button'), - ) + bui.widget( + edit=btn, right_widget=bui.get_special_widget('squad_button') + ) bui.widget(edit=btn, left_widget=bbtn, show_buffer_bottom=50) self._unlink_accounts_button: bui.Widget | None @@ -1165,11 +1094,9 @@ class AccountSettingsWindow(bui.Window): ) if first_selectable is None: first_selectable = btn - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=btn, - right_widget=bui.get_special_widget('party_button'), - ) + bui.widget( + edit=btn, right_widget=bui.get_special_widget('squad_button') + ) bui.widget(edit=btn, left_widget=bbtn, show_buffer_bottom=50) self._update_unlink_accounts_button() else: @@ -1235,11 +1162,9 @@ class AccountSettingsWindow(bui.Window): ) if first_selectable is None: first_selectable = btn - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=btn, - right_widget=bui.get_special_widget('party_button'), - ) + bui.widget( + edit=btn, right_widget=bui.get_special_widget('squad_button') + ) bui.widget(edit=btn, left_widget=bbtn, show_buffer_bottom=15) if show_cancel_sign_in_button: @@ -1256,11 +1181,9 @@ class AccountSettingsWindow(bui.Window): ) if first_selectable is None: first_selectable = btn - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=btn, - right_widget=bui.get_special_widget('party_button'), - ) + bui.widget( + edit=btn, right_widget=bui.get_special_widget('squad_button') + ) bui.widget(edit=btn, left_widget=bbtn, show_buffer_bottom=15) if show_delete_account_button: @@ -1277,11 +1200,9 @@ class AccountSettingsWindow(bui.Window): ) if first_selectable is None: first_selectable = btn - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=btn, - right_widget=bui.get_special_widget('party_button'), - ) + bui.widget( + edit=btn, right_widget=bui.get_special_widget('squad_button') + ) bui.widget(edit=btn, left_widget=bbtn, show_buffer_bottom=15) # Whatever the topmost selectable thing is, we want it to scroll all @@ -1296,7 +1217,7 @@ class AccountSettingsWindow(bui.Window): ) self._needs_refresh = False - def _on_game_service_button_press(self) -> None: + def _on_game_center_button_press(self) -> None: if bui.app.plus is not None: bui.app.plus.show_game_service_ui() else: @@ -1313,38 +1234,27 @@ class AccountSettingsWindow(bui.Window): else: logging.warning('show_game_service_ui requires plus feature-set.') - def _on_achievements_press(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib import achievements - - assert self._achievements_button is not None - achievements.AchievementsWindow( - position=self._achievements_button.get_screen_space_center() - ) - - def _on_what_is_v2_press(self) -> None: - show_what_is_v2_page() - def _on_manage_account_press(self) -> None: self._do_manage_account_press(WebLocation.ACCOUNT_EDITOR) + def _on_create_account_press(self) -> None: + bui.open_url('https://ballistica.net/createaccount') + def _on_delete_account_press(self) -> None: self._do_manage_account_press(WebLocation.ACCOUNT_DELETE_SECTION) def _do_manage_account_press(self, weblocation: WebLocation) -> None: + # If we're still waiting for our master-server connection, + # keep the user informed of this instead of rushing in and + # failing immediately. + wait_for_connectivity( + on_connected=lambda: self._do_manage_account(weblocation) + ) + + def _do_manage_account(self, weblocation: WebLocation) -> None: plus = bui.app.plus assert plus is not None - # Preemptively fail if it looks like we won't be able to talk to - # the server anyway. - if not plus.cloud.connected: - bui.screenmessage( - bui.Lstr(resource='internal.unavailableNoConnectionText'), - color=(1, 0, 0), - ) - bui.getsound('error').play() - return - bui.screenmessage(bui.Lstr(resource='oneMomentText')) # We expect to have a v2 account signed in if we get here. @@ -1386,8 +1296,8 @@ class AccountSettingsWindow(bui.Window): plus = bui.app.plus assert plus is not None - # if this is not present, we haven't had contact from the server so - # let's not proceed.. + # If this is not present, we haven't had contact from the server + # so let's not proceed. if plus.get_v1_account_public_login_id() is None: return False accounts = plus.get_v1_account_misc_read_val_2('linkedAccounts', []) @@ -1404,7 +1314,8 @@ class AccountSettingsWindow(bui.Window): def _should_show_legacy_unlink_button(self) -> bool: plus = bui.app.plus - assert plus is not None + if plus is None: + return False # Only show this when fully signed in to a v2 account. if not self._v1_signed_in or plus.accounts.primary is None: @@ -1502,23 +1413,10 @@ class AccountSettingsWindow(bui.Window): name_str = '??' bui.textwidget(edit=self._account_name_text, text=name_str) - if self._account_name_what_is_text is not None: - swidth = bui.get_string_width(name_str, suppress_warning=True) - # Eww; number-fudging. Need to recalibrate this if - # account name scaling changes. - x = self._sub_width * 0.5 - swidth * 0.75 - 190 - - bui.textwidget( - edit=self._account_name_what_is_text, - position=(x, self._account_name_what_is_y), - ) def _refresh_achievements(self) -> None: assert bui.app.classic is not None - if ( - self._achievements_text is None - and self._achievements_button is None - ): + if self._achievements_text is None: return complete = sum( 1 if a.complete else 0 for a in bui.app.classic.ach.achievements @@ -1531,8 +1429,6 @@ class AccountSettingsWindow(bui.Window): if self._achievements_text is not None: bui.textwidget(edit=self._achievements_text, text=txt_final) - if self._achievements_button is not None: - bui.buttonwidget(edit=self._achievements_button, label=txt_final) def _link_accounts_press(self) -> None: # pylint: disable=cyclic-import @@ -1550,23 +1446,6 @@ class AccountSettingsWindow(bui.Window): AccountUnlinkWindow(origin_widget=self._unlink_accounts_button) - def _player_profiles_press(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.profile.browser import ProfileBrowserWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - bui.app.ui_v1.set_main_menu_window( - ProfileBrowserWindow( - origin_widget=self._player_profiles_button - ).get_root_widget(), - from_window=self._root_widget, - ) - def _cancel_sign_in_press(self) -> None: # If we're waiting on an adapter to give us credentials, abort. self._signing_in_adapter = None @@ -1611,11 +1490,19 @@ class AccountSettingsWindow(bui.Window): bui.apptimer(0.1, bui.WeakCall(self._update)) def _sign_in_press(self, login_type: str | LoginType) -> None: - from bauiv1lib.connectivity import wait_for_connectivity - # If we're still waiting for our master-server connection, - # keep the user informed of this instead of rushing in and - # failing immediately. + # Any time we initiate a sign in, turn off auto-recreates for + # the remainder of our existence. We want to make sure we stick + # around to handle the entire sign-in flow, and things like + # system sign-in dialogs could potentially cause toolbars to + # show/hide or other things that could affect window dimensions + # and thus trigger window recreates which could interrupt our + # process. + self._recreate_suppress = bui.MainWindowAutoRecreateSuppress() + + # If we're still waiting for our master-server connection, keep + # the user informed of this instead of rushing in and failing + # immediately. wait_for_connectivity(on_connected=lambda: self._sign_in(login_type)) def _sign_in(self, login_type: str | LoginType) -> None: @@ -1674,14 +1561,14 @@ class AccountSettingsWindow(bui.Window): bui.getsound('error').play() else: # Success! Plug in these credentials which will begin - # verifying them and set our primary account-handle - # when finished. + # verifying them and set our primary account-handle when + # finished. plus = bui.app.plus assert plus is not None plus.accounts.set_primary_credentials(result.credentials) - # Special case - if the user has explicitly logged out and - # logged in again with GPGS via this button, warn them that + # Special case - if the user has explicitly signed out and + # signed in again with GPGS via this button, warn them that # they need to use the app if they want to switch to a # different GPGS account. if ( @@ -1706,12 +1593,19 @@ class AccountSettingsWindow(bui.Window): bui.apptimer(0.1, bui.WeakCall(self._update)) def _v2_proxy_sign_in_press(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.connectivity import wait_for_connectivity - # If we're still waiting for our master-server connection, - # keep the user informed of this instead of rushing in and - # failing immediately. + # Any time we initiate a sign in, turn off auto-recreates for + # the remainder of our existence. We want to make sure we stick + # around to handle the entire sign-in flow, and things like + # system sign-in dialogs could potentially cause toolbars to + # show/hide or other things that could affect window dimensions + # and thus trigger window recreates which could interrupt our + # process. + self._recreate_suppress = bui.MainWindowAutoRecreateSuppress() + + # If we're still waiting for our master-server connection, keep + # the user informed of this instead of rushing in and failing + # immediately. wait_for_connectivity(on_connected=self._v2_proxy_sign_in) def _v2_proxy_sign_in(self) -> None: @@ -1721,44 +1615,6 @@ class AccountSettingsWindow(bui.Window): assert self._sign_in_v2_proxy_button is not None V2ProxySignInWindow(origin_widget=self._sign_in_v2_proxy_button) - def _reset_progress(self) -> None: - try: - assert bui.app.classic is not None - # FIXME: This would need to happen server-side these days. - if self._can_reset_achievements: - logging.warning('ach resets not wired up.') - # bui.app.config['Achievements'] = {} - # bui.reset_achievements() - campaign = bui.app.classic.getcampaign('Default') - campaign.reset() # also writes the config.. - campaign = bui.app.classic.getcampaign('Challenges') - campaign.reset() # also writes the config.. - except Exception: - logging.exception('Error resetting co-op campaign progress.') - - bui.getsound('shieldDown').play() - self._refresh() - - def _back(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.mainmenu import MainMenuWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - self._save_state() - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - - if not self._modal: - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - MainMenuWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) - def _save_state(self) -> None: try: sel = self._root_widget.get_selected_child() @@ -1788,15 +1644,6 @@ class AccountSettingsWindow(bui.Window): logging.exception('Error restoring state for %s.', self) -def show_what_is_v2_page() -> None: - """Show the webpage describing V2 accounts.""" - plus = bui.app.plus - assert plus is not None - - bamasteraddr = plus.get_master_server_address(version=2) - bui.open_url(f'{bamasteraddr}/whatisv2') - - def show_what_is_legacy_unlinking_page() -> None: """Show the webpage describing legacy unlinking.""" plus = bui.app.plus diff --git a/dist/ba_data/python/bauiv1lib/account/signin.py b/dist/ba_data/python/bauiv1lib/account/signin.py new file mode 100644 index 0000000..0b22723 --- /dev/null +++ b/dist/ba_data/python/bauiv1lib/account/signin.py @@ -0,0 +1,51 @@ +# Released under the MIT License. See LICENSE for details. +# +"""UI functionality related to accounts.""" + +from __future__ import annotations + +import bauiv1 as bui + + +def show_sign_in_prompt() -> None: + """Bring up a prompt telling the user they must sign in.""" + from bauiv1lib.confirm import ConfirmWindow + + ConfirmWindow( + bui.Lstr(resource='notSignedInErrorText'), + _show_account_settings, + ok_text=bui.Lstr(resource='accountSettingsWindow.signInText'), + width=460, + height=130, + ) + + +def _show_account_settings() -> None: + from bauiv1lib.account.settings import AccountSettingsWindow + + # NOTE TO USERS: The code below is not the proper way to do things; + # whenever possible one should use a MainWindow's + # main_window_replace() or main_window_back() methods. We just need + # to do things a bit more manually in this case. + + prev_main_window = bui.app.ui_v1.get_main_window() + + # Special-case: If it seems we're already in the account window, do + # nothing. + if isinstance(prev_main_window, AccountSettingsWindow): + return + + # Set our new main window. + bui.app.ui_v1.set_main_window( + AccountSettingsWindow( + close_once_signed_in=True, + origin_widget=bui.get_special_widget('account_button'), + ), + from_window=False, + is_auxiliary=True, + suppress_warning=True, + ) + + # Transition out any previous main window. + if prev_main_window is not None: + prev_main_window.main_window_close() diff --git a/dist/ba_data/python/bauiv1lib/account/v2proxy.py b/dist/ba_data/python/bauiv1lib/account/v2proxy.py index d91f1f0..386c671 100644 --- a/dist/ba_data/python/bauiv1lib/account/v2proxy.py +++ b/dist/ba_data/python/bauiv1lib/account/v2proxy.py @@ -34,13 +34,19 @@ class V2ProxySignInWindow(bui.Window): origin_widget.get_screen_space_center() ), scale=( - 1.25 + 1.16 if uiscale is bui.UIScale.SMALL - else 1.05 if uiscale is bui.UIScale.MEDIUM else 0.9 + else 1.0 if uiscale is bui.UIScale.MEDIUM else 0.9 ), ) ) + self._loading_spinner = bui.spinnerwidget( + parent=self._root_widget, + position=(self._width * 0.5, self._height * 0.5), + size=60, + style='bomb', + ) self._state_text = bui.textwidget( parent=self._root_widget, position=(self._width * 0.5, self._height * 0.6), @@ -49,10 +55,11 @@ class V2ProxySignInWindow(bui.Window): size=(0, 0), scale=1.4, maxwidth=0.9 * self._width, - text=bui.Lstr( - value='${A}...', - subs=[('${A}', bui.Lstr(resource='loadingText'))], - ), + # text=bui.Lstr( + # value='${A}...', + # subs=[('${A}', bui.Lstr(resource='loadingText'))], + # ), + text='', color=(1, 1, 1), ) self._sub_state_text = bui.textwidget( @@ -141,6 +148,7 @@ class V2ProxySignInWindow(bui.Window): def _set_error_state(self, error_location: str) -> None: msaddress = self._get_server_address() addr = msaddress.removeprefix('https://') + bui.spinnerwidget(edit=self._loading_spinner, visible=False) bui.textwidget( edit=self._state_text, text=f'Unable to connect to {addr}.', @@ -190,6 +198,7 @@ class V2ProxySignInWindow(bui.Window): self._complete = True # Clear out stuff we use to show progress/errors. + self._loading_spinner.delete() self._sub_state_text.delete() self._sub_state_text2.delete() diff --git a/dist/ba_data/python/bauiv1lib/account/viewer.py b/dist/ba_data/python/bauiv1lib/account/viewer.py index 2dbb1de..c97973c 100644 --- a/dist/ba_data/python/bauiv1lib/account/viewer.py +++ b/dist/ba_data/python/bauiv1lib/account/viewer.py @@ -23,6 +23,7 @@ class AccountViewerWindow(PopupWindow): def __init__( self, account_id: str, + *, profile_id: str | None = None, position: tuple[float, float] = (0.0, 0.0), scale: float | None = None, @@ -87,7 +88,7 @@ class AccountViewerWindow(PopupWindow): scale=0.6, text=bui.Lstr(resource='playerInfoText'), maxwidth=200, - color=(0.7, 0.7, 0.7, 0.7), + color=bui.app.ui_v1.title_color, ) self._scrollwidget = bui.scrollwidget( @@ -96,20 +97,26 @@ class AccountViewerWindow(PopupWindow): position=(30, 30), capture_arrows=True, simple_culling_v=10, + border_opacity=0.4, ) bui.widget(edit=self._scrollwidget, autoselect=True) + # Note to self: Make sure to always update loading text and + # spinner visibility together. self._loading_text = bui.textwidget( parent=self._scrollwidget, scale=0.5, - text=bui.Lstr( - value='${A}...', - subs=[('${A}', bui.Lstr(resource='loadingText'))], - ), + text='', size=(self._width - 60, 100), h_align='center', v_align='center', ) + self._loading_spinner = bui.spinnerwidget( + parent=self.root_widget, + position=(self._width * 0.5, self._height * 0.5), + style='bomb', + size=48, + ) # In cases where the user most likely has a browser/email, lets # offer a 'report this user' button. @@ -226,9 +233,11 @@ class AccountViewerWindow(PopupWindow): edit=self._loading_text, text=bui.Lstr(resource='internal.unavailableNoConnectionText'), ) + bui.spinnerwidget(edit=self._loading_spinner, visible=False) else: try: self._loading_text.delete() + self._loading_spinner.delete() trophystr = '' try: trophystr = data['trophies'] diff --git a/dist/ba_data/python/bauiv1lib/achievements.py b/dist/ba_data/python/bauiv1lib/achievements.py index 228e773..b5e2f3f 100644 --- a/dist/ba_data/python/bauiv1lib/achievements.py +++ b/dist/ba_data/python/bauiv1lib/achievements.py @@ -6,54 +6,92 @@ from __future__ import annotations from typing import override -from bauiv1lib.popup import PopupWindow import bauiv1 as bui -class AchievementsWindow(PopupWindow): +class AchievementsWindow(bui.MainWindow): """Popup window to view achievements.""" def __init__( - self, position: tuple[float, float], scale: float | None = None + self, + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, ): # pylint: disable=too-many-locals + # pylint: disable=too-many-statements + # pylint: disable=cyclic-import + from baclassic import ( + CHEST_APPEARANCE_DISPLAY_INFOS, + CHEST_APPEARANCE_DISPLAY_INFO_DEFAULT, + ) + assert bui.app.classic is not None uiscale = bui.app.ui_v1.uiscale - if scale is None: - scale = ( - 2.3 - if uiscale is bui.UIScale.SMALL - else 1.65 if uiscale is bui.UIScale.MEDIUM else 1.23 - ) - self._transitioning_out = False - self._width = 450 + + self._width = 700 if uiscale is bui.UIScale.SMALL else 550 self._height = ( - 300 + 450 if uiscale is bui.UIScale.SMALL else 370 if uiscale is bui.UIScale.MEDIUM else 450 ) - bg_color = (0.5, 0.4, 0.6) - # creates our _root_widget + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 2.7 + if uiscale is bui.UIScale.SMALL + else 1.5 if uiscale is bui.UIScale.MEDIUM else 1.2 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_width = min(self._width - 60, screensize[0] / scale) + target_height = min(self._height - 70, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * self._height + 0.5 * target_height + 30.0 + + scroll_width = target_width + scroll_height = target_height - 25 + scroll_bottom = yoffs - 54 - scroll_height + super().__init__( - position=position, - size=(self._width, self._height), - scale=scale, - bg_color=bg_color, + root_widget=bui.containerwidget( + size=(self._width, self._height), + toolbar_visibility=( + 'menu_minimal' + if uiscale is bui.UIScale.SMALL + else 'menu_full' + ), + scale=scale, + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) - self._cancel_button = bui.buttonwidget( - parent=self.root_widget, - position=(50, self._height - 30), - size=(50, 50), - scale=0.5, - label='', - color=bg_color, - on_activate_call=self._on_cancel_press, - autoselect=True, - icon=bui.gettexture('crossOut'), - iconscale=1.2, - ) + if uiscale is bui.UIScale.SMALL: + bui.containerwidget( + edit=self._root_widget, on_cancel_call=self.main_window_back + ) + self._back_button = None + else: + self._back_button = bui.buttonwidget( + parent=self._root_widget, + autoselect=True, + position=(50, yoffs - 48), + size=(60, 60), + scale=0.6, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + on_activate_call=self.main_window_back, + ) + bui.containerwidget( + edit=self._root_widget, cancel_button=self._back_button + ) achievements = bui.app.classic.ach.achievements num_complete = len([a for a in achievements if a.complete]) @@ -66,32 +104,41 @@ class AchievementsWindow(PopupWindow): ], ) self._title_text = bui.textwidget( - parent=self.root_widget, - position=(self._width * 0.5, self._height - 20), + parent=self._root_widget, + position=( + self._width * 0.5, + yoffs - (42 if uiscale is bui.UIScale.SMALL else 30), + ), size=(0, 0), h_align='center', v_align='center', scale=0.6, text=txt_final, maxwidth=200, - color=(1, 1, 1, 0.4), + color=bui.app.ui_v1.title_color, ) self._scrollwidget = bui.scrollwidget( - parent=self.root_widget, - size=(self._width - 60, self._height - 70), - position=(30, 30), + parent=self._root_widget, + size=(scroll_width, scroll_height), + position=(self._width * 0.5 - scroll_width * 0.5, scroll_bottom), capture_arrows=True, simple_culling_v=10, + border_opacity=0.4, ) bui.widget(edit=self._scrollwidget, autoselect=True) + if uiscale is bui.UIScale.SMALL: + bui.widget( + edit=self._scrollwidget, + left_widget=bui.get_special_widget('back_button'), + ) bui.containerwidget( - edit=self.root_widget, cancel_button=self._cancel_button + edit=self._root_widget, cancel_button=self._back_button ) incr = 36 - sub_width = self._width - 90 + sub_width = scroll_width - 25 sub_height = 40 + len(achievements) * incr eq_rsrc = 'coopSelectWindow.powerRankingPointsEqualsText' @@ -174,6 +221,25 @@ class AchievementsWindow(PopupWindow): h_align='left', v_align='center', ) + chest_type = ach.get_award_chest_type() + chestdisplayinfo = CHEST_APPEARANCE_DISPLAY_INFOS.get( + chest_type, CHEST_APPEARANCE_DISPLAY_INFO_DEFAULT + ) + chestsize = 24.0 + bui.imagewidget( + parent=self._subcontainer, + opacity=0.0 if complete else 1.0, + position=( + sub_width * 0.92 - 40.0 - chestsize * 0.5, + sub_height - 20 - incr * i - chestsize * 0.5, + ), + size=(chestsize, chestsize), + color=chestdisplayinfo.color, + texture=bui.gettexture(chestdisplayinfo.texclosed), + tint_texture=bui.gettexture(chestdisplayinfo.texclosedtint), + tint_color=chestdisplayinfo.tint, + tint2_color=chestdisplayinfo.tint2, + ) pts = ach.power_ranking_value bui.textwidget( @@ -223,15 +289,12 @@ class AchievementsWindow(PopupWindow): v_align='center', ) - def _on_cancel_press(self) -> None: - self._transition_out() - - def _transition_out(self) -> None: - if not self._transitioning_out: - self._transitioning_out = True - bui.containerwidget(edit=self.root_widget, transition='out_scale') - @override - def on_popup_cancel(self) -> None: - bui.getsound('swish').play() - self._transition_out() + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) diff --git a/dist/ba_data/python/bauiv1lib/appinvite.py b/dist/ba_data/python/bauiv1lib/appinvite.py index 4bcbbcb..48857c3 100644 --- a/dist/ba_data/python/bauiv1lib/appinvite.py +++ b/dist/ba_data/python/bauiv1lib/appinvite.py @@ -29,7 +29,7 @@ class ShowFriendCodeWindow(bui.Window): color=(0.45, 0.63, 0.15), transition='in_scale', scale=( - 1.7 + 1.5 if uiscale is bui.UIScale.SMALL else 1.35 if uiscale is bui.UIScale.MEDIUM else 1.0 ), diff --git a/dist/ba_data/python/bauiv1lib/characterpicker.py b/dist/ba_data/python/bauiv1lib/characterpicker.py index 5e6ad30..835f3f0 100644 --- a/dist/ba_data/python/bauiv1lib/characterpicker.py +++ b/dist/ba_data/python/bauiv1lib/characterpicker.py @@ -14,6 +14,18 @@ if TYPE_CHECKING: from typing import Any, Sequence +class CharacterPickerDelegate: + """Delegate for character-picker.""" + + def on_character_picker_pick(self, character: str) -> None: + """Called when a character is selected.""" + raise NotImplementedError() + + def on_character_picker_get_more_press(self) -> None: + """Called when the 'get more characters' button is pressed.""" + raise NotImplementedError() + + class CharacterPicker(PopupWindow): """Popup window for selecting characters.""" @@ -21,7 +33,7 @@ class CharacterPicker(PopupWindow): self, parent: bui.Widget, position: tuple[float, float] = (0.0, 0.0), - delegate: Any = None, + delegate: CharacterPickerDelegate | None = None, scale: float | None = None, offset: tuple[float, float] = (0.0, 0.0), tint_color: Sequence[float] = (1.0, 1.0, 1.0), @@ -29,6 +41,7 @@ class CharacterPicker(PopupWindow): selected_character: str | None = None, ): # pylint: disable=too-many-locals + # pylint: disable=too-many-positional-arguments from bascenev1lib.actor import spazappearance assert bui.app.classic is not None @@ -180,8 +193,7 @@ class CharacterPicker(PopupWindow): bui.widget(edit=btn, show_buffer_top=30, show_buffer_bottom=30) def _on_store_press(self) -> None: - from bauiv1lib.account import show_sign_in_prompt - from bauiv1lib.store.browser import StoreBrowserWindow + from bauiv1lib.account.signin import show_sign_in_prompt plus = bui.app.plus assert plus is not None @@ -189,12 +201,11 @@ class CharacterPicker(PopupWindow): if plus.get_v1_account_state() != 'signed_in': show_sign_in_prompt() return + + if self._delegate is not None: + self._delegate.on_character_picker_get_more_press() + self._transition_out() - StoreBrowserWindow( - modal=True, - show_tab=StoreBrowserWindow.TabID.CHARACTERS, - origin_widget=self._get_more_characters_button, - ) def _select_character(self, character: str) -> None: if self._delegate is not None: diff --git a/dist/ba_data/python/bauiv1lib/chest.py b/dist/ba_data/python/bauiv1lib/chest.py new file mode 100644 index 0000000..fd57f2e --- /dev/null +++ b/dist/ba_data/python/bauiv1lib/chest.py @@ -0,0 +1,1225 @@ +# Released under the MIT License. See LICENSE for details. +# +# pylint: disable=too-many-lines +"""Provides chest related ui.""" + +from __future__ import annotations + +import math +import random +from typing import override, TYPE_CHECKING + +from efro.util import strict_partial +import bacommon.bs +import bauiv1 as bui + +if TYPE_CHECKING: + import datetime + + import baclassic + +_g_open_voices: list[tuple[float, str, float]] = [] + + +class ChestWindow(bui.MainWindow): + """Allows viewing and performing operations on a chest.""" + + _HIGHLIGHT_TOKEN_PURCHASES_CONFIG_KEY = ( + 'Highlight Potential Token Purchases' + ) + + def __init__( + self, + index: int, + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, + ): + # pylint: disable=too-many-statements + self._index = index + + # Get this loading before we need it. + self._quote_bubble_tex = bui.gettexture('quoteBubble') + + assert bui.app.classic is not None + uiscale = bui.app.ui_v1.uiscale + self._width = 1200 if uiscale is bui.UIScale.SMALL else 750 + self._height = 800 if uiscale is bui.UIScale.SMALL else 450 + self._action_in_flight = False + self._open_now_button: bui.Widget | None = None + self._open_now_spinner: bui.Widget | None = None + self._open_now_texts: list[bui.Widget] = [] + self._open_now_images: list[bui.Widget] = [] + self._watch_ad_button: bui.Widget | None = None + self._open_me_backing: bui.Widget | None = None + self._open_me_widgets: list[bui.Widget] = [] + self._time_string_timer: bui.AppTimer | None = None + self._time_string_text: bui.Widget | None = None + self._open_me_flash_timer: bui.AppTimer | None = None + self._prizesets: list[bacommon.bs.ChestInfoResponse.Chest.PrizeSet] = [] + self._prizeindex = -1 + self._prizesettxts: dict[int, list[bui.Widget]] = {} + self._prizesetimgs: dict[int, list[bui.Widget]] = {} + self._chestdisplayinfo: baclassic.ChestAppearanceDisplayInfo | None = ( + None + ) + self._suppressing_window_auto_recreates = False + + self._chest_action_ui_pause: bui.RootUIUpdatePause | None = None + + self._recreate_suppress: bui.MainWindowAutoRecreateSuppress | None = ( + None + ) + + # The set of widgets we keep when doing a clear. + self._core_widgets: list[bui.Widget] = [] + + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 1.6 + if uiscale is bui.UIScale.SMALL + else 1.1 if uiscale is bui.UIScale.MEDIUM else 0.9 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_height = min(self._height - 120, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + self._yoffstop = 0.5 * self._height + 0.5 * target_height + 18 + + # Offset for stuff we want centered. + self._yoffs = 0.5 * self._height + ( + 220 if uiscale is bui.UIScale.SMALL else 190 + ) + + self._chest_yoffs = self._yoffs - 223 + + super().__init__( + root_widget=bui.containerwidget( + size=(self._width, self._height), + toolbar_visibility='menu_full', + scale=scale, + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, + ) + + self._title_text = bui.textwidget( + parent=self._root_widget, + position=( + self._width * 0.5, + self._yoffstop - (36 if uiscale is bui.UIScale.SMALL else 10), + ), + size=(0, 0), + text=bui.Lstr( + resource='chests.slotText', + subs=[('${NUM}', str(index + 1))], + ), + color=bui.app.ui_v1.title_color, + maxwidth=110.0 if uiscale is bui.UIScale.SMALL else 200, + scale=0.9 if uiscale is bui.UIScale.SMALL else 1.1, + h_align='center', + v_align='center', + ) + self._core_widgets.append(self._title_text) + + if uiscale is bui.UIScale.SMALL: + bui.containerwidget( + edit=self._root_widget, on_cancel_call=self.main_window_back + ) + else: + btn = bui.buttonwidget( + parent=self._root_widget, + position=(50, self._yoffs - 44), + size=(60, 55), + scale=0.8, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + extra_touch_border_scale=2.0, + autoselect=True, + on_activate_call=self.main_window_back, + ) + bui.containerwidget(edit=self._root_widget, cancel_button=btn) + self._core_widgets.append(btn) + + # Note: Don't need to explicitly clean this up. Just not adding + # it to core_widgets so it will go away on next reset. + self._loadingspinner = bui.spinnerwidget( + parent=self._root_widget, + position=(self._width * 0.5, self._height * 0.5), + size=48, + style='bomb', + ) + + self._infotext = bui.textwidget( + parent=self._root_widget, + position=(self._width * 0.5, self._yoffs - 200), + size=(0, 0), + text='', + maxwidth=700, + scale=0.8, + color=(0.6, 0.5, 0.6), + h_align='center', + v_align='center', + ) + self._core_widgets.append(self._infotext) + + plus = bui.app.plus + if plus is None: + self._error('Plus feature-set is not present.') + return + + if plus.accounts.primary is None: + self._error(bui.Lstr(resource='notSignedInText')) + return + + # Start by showing info/options for our target chest. Note that + # we always ask the server for these values even though we may + # have them through our appmode subscription which updates the + # chest UI. This is because the wait_for_connectivity() + # mechanism will often bring our window up a split second before + # the chest subscription receives its first values which would + # lead us to incorrectly think there is no chest there. If we + # want to optimize this in the future we could perhaps use local + # values only if there is a chest present in them. + assert not self._action_in_flight + self._action_in_flight = True + with plus.accounts.primary: + plus.cloud.send_message_cb( + bacommon.bs.ChestInfoMessage(chest_id=str(self._index)), + on_response=bui.WeakCall(self._on_chest_info_response), + ) + + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + + # Pull anything we need from self out here; if we do it in the + # lambda we keep self alive which is bad. + index = self._index + + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + index=index, transition=transition, origin_widget=origin_widget + ) + ) + + def _update_time_display(self, unlock_time: datetime.datetime) -> None: + # Once our target text widget disappears, kill our timer. + if not self._time_string_text: + self._time_string_timer = None + return + now = bui.utc_now_cloud() + secs_till_open = max(0.0, (unlock_time - now).total_seconds()) + tstr = ( + bui.timestring(secs_till_open, centi=False) + if secs_till_open > 0 + else '' + ) + bui.textwidget(edit=self._time_string_text, text=tstr) + + def _on_chest_info_response( + self, response: bacommon.bs.ChestInfoResponse | Exception + ) -> None: + assert self._action_in_flight # Should be us. + self._action_in_flight = False + + if isinstance(response, Exception): + self._error( + bui.Lstr(resource='internal.unableToCompleteTryAgainText'), + minor=True, + ) + return + + if response.chest is None: + self._show_about_chest_slots() + return + + assert response.user_tokens is not None + self._show_chest_actions(response.user_tokens, response.chest) + + def _on_chest_action_response( + self, response: bacommon.bs.ChestActionResponse | Exception + ) -> None: + assert self._action_in_flight # Should be us. + self._action_in_flight = False + + # Allow the root ui to resume its normal automatic value display + # as soon as any animations we kick off here complete. + self._chest_action_ui_pause = None + + # Communication/local error: + if isinstance(response, Exception): + self._error( + bui.Lstr(resource='internal.unableToCompleteTryAgainText'), + minor=True, + ) + return + + # Server-side error: + if response.error is not None: + self._error(bui.Lstr(translate=('serverResponses', response.error))) + return + + toffs = 0.0 + # If there's contents listed in the response, show them. + if response.contents is not None: + toffs = self._show_chest_contents(response) + else: + # Otherwise we're done here; just close out our UI. + self.main_window_back() + + # Lastly, run any bundled effects. + assert bui.app.classic is not None + bui.app.classic.run_bs_client_effects(response.effects, delay=toffs) + + def _show_chest_actions( + self, user_tokens: int, chest: bacommon.bs.ChestInfoResponse.Chest + ) -> None: + """Show state for our chest.""" + # pylint: disable=too-many-statements + # pylint: disable=too-many-locals + # pylint: disable=cyclic-import + from baclassic import ( + ClassicAppMode, + CHEST_APPEARANCE_DISPLAY_INFOS, + CHEST_APPEARANCE_DISPLAY_INFO_DEFAULT, + ) + + plus = bui.app.plus + assert plus is not None + + # We expect to be run under classic app mode. + mode = bui.app.mode + if not isinstance(mode, ClassicAppMode): + self._error('Classic app mode not active.') + return + + self._reset() + + self._chestdisplayinfo = CHEST_APPEARANCE_DISPLAY_INFOS.get( + chest.appearance, CHEST_APPEARANCE_DISPLAY_INFO_DEFAULT + ) + + bui.textwidget( + edit=self._title_text, + text=bui.Lstr( + translate=('displayItemNames', chest.appearance.pretty_name) + ), + ) + + imgsize = 145 + bui.imagewidget( + parent=self._root_widget, + position=(self._width * 0.5 - imgsize * 0.5, self._chest_yoffs), + color=self._chestdisplayinfo.color, + size=(imgsize, imgsize), + texture=bui.gettexture(self._chestdisplayinfo.texclosed), + tint_texture=bui.gettexture(self._chestdisplayinfo.texclosedtint), + tint_color=self._chestdisplayinfo.tint, + tint2_color=self._chestdisplayinfo.tint2, + ) + + # Store the prize-sets so we can display odds/etc. Sort them + # with largest weights first. + self._prizesets = sorted( + chest.prizesets, key=lambda s: s.weight, reverse=True + ) + + if chest.unlock_tokens > 0: + lsize = 30 + bui.imagewidget( + parent=self._root_widget, + position=( + self._width * 0.5 - imgsize * 0.4 - lsize * 0.5, + self._chest_yoffs + 27.0, + ), + size=(lsize, lsize), + texture=bui.gettexture('lock'), + ) + + # Time string. + if chest.unlock_tokens != 0: + self._time_string_text = bui.textwidget( + parent=self._root_widget, + position=(self._width * 0.5, self._yoffs - 85), + size=(0, 0), + text='', + maxwidth=700, + scale=0.6, + color=(0.7, 0.7, 0.83), + h_align='center', + v_align='center', + ) + bui.textwidget( + parent=self._root_widget, + position=(self._width * 0.5, self._yoffs - 85 + 18), + size=(0, 0), + text=bui.Lstr(resource='chests.unlocksInText'), + maxwidth=700, + scale=0.4, + color=(0.7, 0.65, 1, 0.55), + h_align='center', + v_align='center', + flatness=1.0, + shadow=1.0, + ) + self._update_time_display(chest.unlock_time) + self._time_string_timer = bui.AppTimer( + 1.0, + repeat=True, + call=bui.WeakCall(self._update_time_display, chest.unlock_time), + ) + + # Allow watching an ad IF the server tells us we can AND we have + # an ad ready to show. + show_ad_button = ( + chest.unlock_tokens > 0 + and chest.ad_allow + and plus.have_incentivized_ad() + ) + + bwidth = 130 + bheight = 90 + bposy = -330 if chest.unlock_tokens == 0 else -340 + hspace = 20 + boffsx = (hspace * -0.5 - bwidth * 0.5) if show_ad_button else 0.0 + + self._open_now_button = bui.buttonwidget( + parent=self._root_widget, + position=( + self._width * 0.5 - bwidth * 0.5 + boffsx, + self._yoffs + bposy, + ), + size=(bwidth, bheight), + label='', + button_type='square', + autoselect=True, + on_activate_call=bui.WeakCall( + self._open_press, user_tokens, chest.unlock_tokens + ), + enable_sound=False, + ) + bui.containerwidget( + edit=self._root_widget, selected_child=self._open_now_button + ) + self._open_now_images = [] + self._open_now_texts = [] + + iconsize = 50 + if chest.unlock_tokens == 0: + self._open_now_texts.append( + bui.textwidget( + parent=self._root_widget, + text=bui.Lstr(resource='openText'), + position=( + self._width * 0.5 + boffsx, + self._yoffs + bposy + bheight * 0.5, + ), + color=(0, 1, 0), + draw_controller=self._open_now_button, + scale=0.7, + maxwidth=bwidth * 0.8, + size=(0, 0), + h_align='center', + v_align='center', + ) + ) + else: + self._open_now_texts.append( + bui.textwidget( + parent=self._root_widget, + text=bui.Lstr(resource='openNowText'), + position=( + self._width * 0.5 + boffsx, + self._yoffs + bposy + bheight * 1.15, + ), + maxwidth=bwidth * 0.8, + scale=0.7, + color=(0.7, 1, 0.7), + size=(0, 0), + h_align='center', + v_align='center', + ) + ) + self._open_now_images.append( + bui.imagewidget( + parent=self._root_widget, + size=(iconsize, iconsize), + position=( + self._width * 0.5 - iconsize * 0.5 + boffsx, + self._yoffs + bposy + bheight * 0.35, + ), + draw_controller=self._open_now_button, + texture=bui.gettexture('coin'), + ) + ) + self._open_now_texts.append( + bui.textwidget( + parent=self._root_widget, + text=bui.Lstr( + resource='tokens.numTokensText', + subs=[('${COUNT}', str(chest.unlock_tokens))], + ), + position=( + self._width * 0.5 + boffsx, + self._yoffs + bposy + bheight * 0.25, + ), + scale=0.65, + color=(0, 1, 0), + draw_controller=self._open_now_button, + maxwidth=bwidth * 0.8, + size=(0, 0), + h_align='center', + v_align='center', + ) + ) + self._open_now_spinner = bui.spinnerwidget( + parent=self._root_widget, + position=( + self._width * 0.5 + boffsx, + self._yoffs + bposy + 0.5 * bheight, + ), + visible=False, + ) + + if show_ad_button: + bui.textwidget( + parent=self._root_widget, + text=bui.Lstr(resource='chests.reduceWaitText'), + position=( + self._width * 0.5 + hspace * 0.5 + bwidth * 0.5, + self._yoffs + bposy + bheight * 1.15, + ), + maxwidth=bwidth * 0.8, + scale=0.7, + color=(0.7, 1, 0.7), + size=(0, 0), + h_align='center', + v_align='center', + ) + self._watch_ad_button = bui.buttonwidget( + parent=self._root_widget, + position=( + self._width * 0.5 + hspace * 0.5, + self._yoffs + bposy, + ), + size=(bwidth, bheight), + label='', + button_type='square', + autoselect=True, + on_activate_call=bui.WeakCall(self._watch_ad_press), + enable_sound=False, + ) + bui.imagewidget( + parent=self._root_widget, + size=(iconsize, iconsize), + position=( + self._width * 0.5 + + hspace * 0.5 + + bwidth * 0.5 + - iconsize * 0.5, + self._yoffs + bposy + bheight * 0.35, + ), + draw_controller=self._watch_ad_button, + color=(1.5, 1.0, 2.0), + texture=bui.gettexture('tv'), + ) + # Note to self: AdMob requires rewarded ad usage + # specifically says 'Ad' in it. + bui.textwidget( + parent=self._root_widget, + text=bui.Lstr(resource='watchAnAdText'), + position=( + self._width * 0.5 + hspace * 0.5 + bwidth * 0.5, + self._yoffs + bposy + bheight * 0.25, + ), + scale=0.65, + color=(0, 1, 0), + draw_controller=self._watch_ad_button, + maxwidth=bwidth * 0.8, + size=(0, 0), + h_align='center', + v_align='center', + ) + + self._show_odds(initial_highlighted_row=-1) + + # Show 'open me' tip IF we don't have a gold pass but do have + # enough tokens to open the chest now and have not suppressed + # the tip. + classic = bui.app.classic + assert classic is not None + if ( + not classic.gold_pass + and chest.unlock_tokens > 0 + and user_tokens >= chest.unlock_tokens + and bui.app.config.resolve( + self._HIGHLIGHT_TOKEN_PURCHASES_CONFIG_KEY + ) + ): + + open_me_x = self._width * 0.5 - 210 + open_me_y = self._yoffs - 60 + self._open_me_backing = bui.imagewidget( + parent=self._root_widget, + position=(open_me_x - 125, open_me_y - 226), + color=(0, 1.0, 0.3), + opacity=0.3, + size=(270, 270), + texture=self._quote_bubble_tex, + ) + self._open_me_flash_timer = bui.AppTimer( + 0.05, + repeat=True, + call=bui.WeakCall(self._open_me_backing_update), + ) + self._open_me_widgets.clear() + self._open_me_widgets.append(self._open_me_backing) + self._open_me_widgets.append( + bui.textwidget( + parent=self._root_widget, + position=(open_me_x, open_me_y - 40), + size=(0, 0), + text=bui.Lstr( + value='*${A}', + subs=[('${A}', bui.Lstr(resource='openMeText'))], + ), + # text=bui.Lstr(resource='openMeText'), + maxwidth=175, + scale=0.7, + color=(0, 1.0, 0.7, 1), + h_align='center', + v_align='center', + flatness=0.8, + shadow=0.2, + ) + ) + self._open_me_widgets.append( + bui.textwidget( + parent=self._root_widget, + position=(open_me_x, open_me_y - 79), + size=(0, 0), + text=bui.Lstr(resource='tokens.openNowDescriptionText'), + maxwidth=175, + max_height=55, + scale=0.55, + color=(0, 1.0, 0.7, 1), + h_align='center', + v_align='center', + flatness=1.0, + shadow=0.2, + ) + ) + btn = bui.buttonwidget( + parent=self._root_widget, + position=(open_me_x - 70, open_me_y - 140), + label=bui.Lstr(resource='stopRemindingMeText'), + size=(140, 30), + textcolor=(0.0, 1.0, 0.7), + text_scale=0.5, + color=(0.0, 0.8, 0.5), + autoselect=True, + text_flatness=1.0, + on_activate_call=bui.WeakCall(self._stop_showing_open_me_press), + ) + # Avoid depth issues with the quote-bubble image. + bui.widget(edit=btn, depth_range=(0.1, 1.0)) + self._open_me_widgets.append(btn) + + def _open_me_backing_update(self) -> None: + # Once our target widget disappears, kill our timer. + if not self._open_me_backing: + self._open_me_flash_timer = None + return + + mult = 1.0 + 0.06 * math.sin(bui.apptime() * 16.0) + bui.imagewidget( + edit=self._open_me_backing, + color=(0, mult, 0.4 * mult), + ) + + def _stop_showing_open_me_press(self) -> None: + for widget in self._open_me_widgets: + widget.delete(ignore_missing=True) + + bui.app.config[self._HIGHLIGHT_TOKEN_PURCHASES_CONFIG_KEY] = False + bui.app.config.apply_and_commit() + + def _highlight_odds_row(self, row: int, extra: bool = False) -> None: + + for rindex, imgs in self._prizesetimgs.items(): + opacity = ( + (0.9 if extra else 0.75) + if rindex == row + else (0.4 if extra else 0.5) + ) + for img in imgs: + if img: + bui.imagewidget(edit=img, opacity=opacity) + + for rindex, txts in self._prizesettxts.items(): + opacity = ( + (0.9 if extra else 0.75) + if rindex == row + else (0.4 if extra else 0.5) + ) + for txt in txts: + if txt: + bui.textwidget(edit=txt, color=(0.7, 0.65, 1, opacity)) + + def _show_odds( + self, + *, + initial_highlighted_row: int, + initial_highlighted_extra: bool = False, + ) -> None: + # pylint: disable=too-many-locals + xoffs = 110 + + totalweight = max(0.001, sum(t.weight for t in self._prizesets)) + + rowheight = 25 + totalheight = (len(self._prizesets) + 1) * rowheight + x = self._width * 0.5 + xoffs + y = self._yoffs - 150.0 + totalheight * 0.5 + + # Title. + bui.textwidget( + parent=self._root_widget, + text=bui.Lstr(resource='chests.prizeOddsText'), + color=(0.7, 0.65, 1, 0.5), + flatness=1.0, + shadow=1.0, + position=(x, y), + scale=0.55, + size=(0, 0), + h_align='left', + v_align='center', + ) + y -= 5.0 + + prizesettxts: list[bui.Widget] + prizesetimgs: list[bui.Widget] + + def _mkicon(img: str) -> None: + iconsize = 20.0 + nonlocal x + nonlocal prizesetimgs + prizesetimgs.append( + bui.imagewidget( + parent=self._root_widget, + size=(iconsize, iconsize), + position=(x, y - iconsize * 0.5), + texture=bui.gettexture(img), + opacity=0.4, + ) + ) + x += iconsize + + def _mktxt(txt: str, advance: bool = True) -> None: + tscale = 0.45 + nonlocal x + nonlocal prizesettxts + prizesettxts.append( + bui.textwidget( + parent=self._root_widget, + text=txt, + flatness=1.0, + shadow=1.0, + position=(x, y), + scale=tscale, + size=(0, 0), + h_align='left', + v_align='center', + ) + ) + if advance: + x += (bui.get_string_width(txt, suppress_warning=True)) * tscale + + self._prizesettxts = {} + self._prizesetimgs = {} + + for i, p in enumerate(self._prizesets): + prizesettxts = self._prizesettxts.setdefault(i, []) + prizesetimgs = self._prizesetimgs.setdefault(i, []) + x = self._width * 0.5 + xoffs + y -= rowheight + percent = 100.0 * p.weight / totalweight + + # Show decimals only if we get very small percentages (looks + # better than rounding as '0%'). + percenttxt = ( + f'{percent:.2f}%:' + if percent < 0.095 + else ( + f'{percent:.1f}%:' + if percent < 0.95 + else f'{round(percent)}%:' + ) + ) + + # We advance manually here to keep values lined up + # (otherwise single digit percent rows don't line up with + # double digit ones). + _mktxt(percenttxt, advance=False) + x += 35.0 + + for item in p.contents: + x += 5.0 + if isinstance(item.item, bacommon.bs.TicketsDisplayItem): + _mktxt(str(item.item.count)) + _mkicon('tickets') + elif isinstance(item.item, bacommon.bs.TokensDisplayItem): + _mktxt(str(item.item.count)) + _mkicon('coin') + else: + # For other cases just fall back on text desc. + # + # Translate the wrapper description and apply any subs. + descfin = bui.Lstr( + translate=('serverResponses', item.description) + ).evaluate() + subs = ( + [] + if item.description_subs is None + else item.description_subs + ) + assert len(subs) % 2 == 0 # Should always be even. + for j in range(0, len(subs) - 1, 2): + descfin = descfin.replace(subs[j], subs[j + 1]) + _mktxt(descfin) + self._highlight_odds_row( + initial_highlighted_row, extra=initial_highlighted_extra + ) + + def _open_press(self, user_tokens: int, token_payment: int) -> None: + from bauiv1lib.gettokens import show_get_tokens_prompt + + bui.getsound('click01').play() + + # Allow only one in-flight action at once. + if self._action_in_flight: + bui.screenmessage( + bui.Lstr(resource='pleaseWaitText'), color=(1, 0, 0) + ) + bui.getsound('error').play() + return + + plus = bui.app.plus + assert plus is not None + + if plus.accounts.primary is None: + self._error(bui.Lstr(resource='notSignedInText')) + return + + # Offer to purchase tokens if they don't have enough. + if user_tokens < token_payment: + # Hack: We disable normal swish for the open button and it + # seems weird without a swish here, so explicitly do one. + bui.getsound('swish').play() + show_get_tokens_prompt() + return + + self._action_in_flight = True + + # Pause implicit root-ui updates at least until we're done with + # this message, as we might want to explicitly animate stuff from + # the results and don't want live values to jump the gun. + self._chest_action_ui_pause = bui.RootUIUpdatePause() + + with plus.accounts.primary: + plus.cloud.send_message_cb( + bacommon.bs.ChestActionMessage( + chest_id=str(self._index), + action=bacommon.bs.ChestActionMessage.Action.UNLOCK, + token_payment=token_payment, + ), + on_response=bui.WeakCall(self._on_chest_action_response), + ) + + # Convey that something is in progress. + if self._open_now_button: + bui.spinnerwidget(edit=self._open_now_spinner, visible=True) + for twidget in self._open_now_texts: + bui.textwidget(edit=twidget, color=(1, 1, 1, 0.2)) + for iwidget in self._open_now_images: + bui.imagewidget(edit=iwidget, opacity=0.2) + + def _watch_ad_press(self) -> None: + + bui.getsound('click01').play() + + # Allow only one in-flight action at once. + if self._action_in_flight: + bui.screenmessage( + bui.Lstr(resource='pleaseWaitText'), color=(1, 0, 0) + ) + bui.getsound('error').play() + return + + assert bui.app.classic is not None + + # If we watch an ad, suppress window auto-recreates until our + # window goes away. It is possible for ad viewing to do things + # like show/hide system toolbars which can cause our app window + # to resize, and we don't want that to result in our chest + # window being recreated which effectively cancels the ad view + # flow. + self._recreate_suppress = bui.MainWindowAutoRecreateSuppress() + + self._action_in_flight = True + bui.app.classic.ads.show_ad_2( + 'reduce_chest_wait', + on_completion_call=bui.WeakCall(self._watch_ad_complete), + ) + + # Convey that something is in progress. + if self._watch_ad_button: + bui.buttonwidget(edit=self._watch_ad_button, color=(0.4, 0.4, 0.4)) + + def _watch_ad_complete(self, actually_showed: bool) -> None: + + assert self._action_in_flight # Should be ad view. + self._action_in_flight = False + + if not actually_showed: + return + + # Allow only one in-flight action at once. + if self._action_in_flight: + bui.screenmessage( + bui.Lstr(resource='pleaseWaitText'), color=(1, 0, 0) + ) + bui.getsound('error').play() + return + + plus = bui.app.plus + assert plus is not None + + if plus.accounts.primary is None: + self._error(bui.Lstr(resource='notSignedInText')) + return + + self._action_in_flight = True + + # Pause implicit root-ui updates at least until we're done with + # this message, as we might want to explicitly animate stuff from + # the results and don't want live values to jump the gun. + self._chest_action_ui_pause = bui.RootUIUpdatePause() + + with plus.accounts.primary: + plus.cloud.send_message_cb( + bacommon.bs.ChestActionMessage( + chest_id=str(self._index), + action=bacommon.bs.ChestActionMessage.Action.AD, + token_payment=0, + ), + on_response=bui.WeakCall(self._on_chest_action_response), + ) + + def _reset(self) -> None: + """Clear all non-permanent widgets and clear infotext.""" + for widget in self._root_widget.get_children(): + if widget not in self._core_widgets: + widget.delete() + bui.textwidget(edit=self._infotext, text='', color=(1, 1, 1)) + + def _error(self, msg: str | bui.Lstr, minor: bool = False) -> None: + """Put ourself in an error state with a visible error message.""" + self._reset() + bui.textwidget( + edit=self._infotext, + text=msg, + color=(1, 0.5, 0.5) if minor else (1, 0, 0), + ) + + def _show_about_chest_slots(self) -> None: + # No-op if our ui is dead. + if not self._root_widget: + return + + self._reset() + bui.textwidget( + edit=self._infotext, + text=bui.Lstr(resource='chests.slotDescriptionText'), + color=(1, 1, 1), + ) + + def _show_chest_contents( + self, response: bacommon.bs.ChestActionResponse + ) -> float: + # pylint: disable=too-many-locals + + from baclassic import show_display_item + + # No-op if our ui is dead. + if not self._root_widget: + return 0.0 + + assert response.contents is not None + + # Insert test items for testing. + if bool(False): + response.contents += [ + bacommon.bs.DisplayItemWrapper.for_display_item( + bacommon.bs.TestDisplayItem() + ) + ] + + tincr = 0.4 + tendoffs = tincr * 4.0 + toffs = 0.0 + + bui.getsound('revUp').play(volume=2.0) + + # Show nothing but the chest icon and animate it shaking. + self._reset() + imgsize = 145 + assert self._chestdisplayinfo is not None + img = bui.imagewidget( + parent=self._root_widget, + color=self._chestdisplayinfo.color, + texture=bui.gettexture(self._chestdisplayinfo.texclosed), + tint_texture=bui.gettexture(self._chestdisplayinfo.texclosedtint), + tint_color=self._chestdisplayinfo.tint, + tint2_color=self._chestdisplayinfo.tint2, + ) + + def _set_img(x: float, scale: float) -> None: + if not img: + return + bui.imagewidget( + edit=img, + position=( + self._width * 0.5 - imgsize * scale * 0.5 + x, + self._yoffs - 223 + imgsize * 0.5 - imgsize * scale * 0.5, + ), + size=(imgsize * scale, imgsize * scale), + ) + + # Set initial place. + _set_img(0.0, 1.0) + + sign = 1.0 + while toffs < tendoffs: + toffs += 0.03 * random.uniform(0.5, 1.5) + sign = -sign + bui.apptimer( + toffs, + bui.Call( + _set_img, + x=( + 20.0 + * random.uniform(0.3, 1.0) + * math.pow(toffs / tendoffs, 2.0) + * sign + ), + scale=1.0 - 0.2 * math.pow(toffs / tendoffs, 2.0), + ), + ) + + xspacing = 100 + xoffs = -0.5 * (len(response.contents) - 1) * xspacing + bui.apptimer( + toffs - 0.2, lambda: bui.getsound('corkPop2').play(volume=4.0) + ) + # Play a variety of voice sounds. + + # We keep a global list of voice options which we randomly pull + # from and refill when empty. This ensures everything gets + # played somewhat frequently and minimizes annoying repeats. + global _g_open_voices # pylint: disable=global-statement + if not _g_open_voices: + _g_open_voices = [ + (0.3, 'woo3', 2.5), + (0.1, 'gasp', 1.3), + (0.2, 'woo2', 2.0), + (0.2, 'wow', 2.0), + (0.2, 'kronk2', 2.0), + (0.2, 'mel03', 2.0), + (0.2, 'aww', 2.0), + (0.4, 'nice', 2.0), + (0.3, 'yeah', 1.5), + (0.2, 'woo', 1.0), + (0.5, 'ooh', 0.8), + ] + + voicetimeoffs, voicename, volume = _g_open_voices.pop( + random.randrange(len(_g_open_voices)) + ) + bui.apptimer( + toffs + voicetimeoffs, + lambda: bui.getsound(voicename).play(volume=volume), + ) + + toffsopen = toffs + bui.apptimer(toffs, bui.WeakCall(self._show_chest_opening)) + toffs += tincr * 1.0 + width = xspacing * 0.95 + + for item in response.contents: + toffs += tincr + bui.apptimer( + toffs - 0.1, lambda: bui.getsound('cashRegister').play() + ) + bui.apptimer( + toffs, + strict_partial( + show_display_item, + item, + self._root_widget, + pos=( + self._width * 0.5 + xoffs, + self._yoffs - 250.0, + ), + width=width, + ), + ) + xoffs += xspacing + toffs += tincr + bui.apptimer(toffs, bui.WeakCall(self._show_done_button)) + + self._show_odds(initial_highlighted_row=-1) + + # Store this for later + self._prizeindex = response.prizeindex + + # The final result was already randomly selected on the server, + # but we want to give the illusion of randomness here, so cycle + # through highlighting our options and stop on the winner when + # the chest opens. To do this, we start at the end at the prize + # and work backwards setting timers. + if self._prizesets: + toffs2 = toffsopen - 0.01 + amt = 0.02 + i = self._prizeindex + while toffs2 > 0.0: + bui.apptimer( + toffs2, + bui.WeakCall(self._highlight_odds_row, i), + ) + toffs2 -= amt + amt *= 1.05 * random.uniform(0.9, 1.1) + i = (i - 1) % len(self._prizesets) + + # Let the caller know how long we'll take in case they want to + # schedule stuff after. + return toffs + tincr + + def _show_chest_opening(self) -> None: + + # No-op if our ui is dead. + if not self._root_widget: + return + + self._reset() + imgsize = 145 + bui.getsound('hiss').play() + assert self._chestdisplayinfo is not None + img = bui.imagewidget( + parent=self._root_widget, + color=self._chestdisplayinfo.color, + texture=bui.gettexture(self._chestdisplayinfo.texopen), + tint_texture=bui.gettexture(self._chestdisplayinfo.texopentint), + tint_color=self._chestdisplayinfo.tint, + tint2_color=self._chestdisplayinfo.tint2, + ) + tincr = 0.8 + tendoffs = tincr * 2.0 + toffs = 0.0 + + def _set_img(x: float, scale: float) -> None: + if not img: + return + bui.imagewidget( + edit=img, + position=( + self._width * 0.5 - imgsize * scale * 0.5 + x, + self._yoffs - 223 + imgsize * 0.5 - imgsize * scale * 0.5, + ), + size=(imgsize * scale, imgsize * scale), + ) + + # Set initial place. + _set_img(0.0, 1.0) + + sign = 1.0 + while toffs < tendoffs: + toffs += 0.03 * random.uniform(0.5, 1.5) + sign = -sign + # Note: we speed x along here (multing toffs) so position + # comes to rest before scale. + bui.apptimer( + toffs, + bui.Call( + _set_img, + x=( + 1.0 + * random.uniform(0.3, 1.0) + * ( + 1.0 + - math.pow(min(1.0, 3.0 * toffs / tendoffs), 2.0) + ) + * sign + ), + scale=1.0 - 0.1 * math.pow(toffs / tendoffs, 0.5), + ), + ) + + self._show_odds( + initial_highlighted_row=self._prizeindex, + initial_highlighted_extra=True, + ) + + def _show_done_button(self) -> None: + # No-op if our ui is dead. + if not self._root_widget: + return + + bwidth = 200 + bheight = 60 + + btn = bui.buttonwidget( + parent=self._root_widget, + position=( + self._width * 0.5 - bwidth * 0.5, + self._yoffs - 350, + ), + size=(bwidth, bheight), + label=bui.Lstr(resource='doneText'), + autoselect=True, + on_activate_call=self.main_window_back, + ) + bui.containerwidget( + edit=self._root_widget, selected_child=btn, start_button=btn + ) + + +# Slight hack: we define window different classes for our different +# chest slots so that the default UI behavior is to replace each other +# when different ones are pressed. If they are all the same window class +# then the default behavior for such presses is to toggle the existing +# one back off. + + +class ChestWindow0(ChestWindow): + """Child class of ChestWindow for slighty hackish reasons.""" + + +class ChestWindow1(ChestWindow): + """Child class of ChestWindow for slighty hackish reasons.""" + + +class ChestWindow2(ChestWindow): + """Child class of ChestWindow for slighty hackish reasons.""" + + +class ChestWindow3(ChestWindow): + """Child class of ChestWindow for slighty hackish reasons.""" diff --git a/dist/ba_data/python/bauiv1lib/colorpicker.py b/dist/ba_data/python/bauiv1lib/colorpicker.py index 2896427..31f171c 100644 --- a/dist/ba_data/python/bauiv1lib/colorpicker.py +++ b/dist/ba_data/python/bauiv1lib/colorpicker.py @@ -12,6 +12,8 @@ import bauiv1 as bui if TYPE_CHECKING: from typing import Any, Sequence +REQUIRE_PRO = False + class ColorPicker(PopupWindow): """A popup UI to select from a set of colors. @@ -23,6 +25,7 @@ class ColorPicker(PopupWindow): self, parent: bui.Widget, position: tuple[float, float], + *, initial_color: Sequence[float] = (1.0, 1.0, 1.0), delegate: Any = None, scale: float | None = None, @@ -105,9 +108,8 @@ class ColorPicker(PopupWindow): on_activate_call=bui.WeakCall(self._select_other), ) - # Custom colors are limited to pro currently. assert bui.app.classic is not None - if not bui.app.classic.accounts.have_pro(): + if REQUIRE_PRO and not bui.app.classic.accounts.have_pro(): bui.imagewidget( parent=self.root_widget, position=(50, 12), @@ -137,7 +139,7 @@ class ColorPicker(PopupWindow): # Requires pro. assert bui.app.classic is not None - if not bui.app.classic.accounts.have_pro(): + if REQUIRE_PRO and not bui.app.classic.accounts.have_pro(): purchase.PurchaseWindow(items=['pro']) self._transition_out() return @@ -183,6 +185,7 @@ class ColorPickerExact(PopupWindow): self, parent: bui.Widget, position: tuple[float, float], + *, initial_color: Sequence[float] = (1.0, 1.0, 1.0), delegate: Any = None, scale: float | None = None, @@ -245,7 +248,6 @@ class ColorPickerExact(PopupWindow): editable=True, maxwidth=70, allow_clear_button=False, - force_internal_editing=True, glow_type='uniform', ) @@ -442,10 +444,10 @@ def color_to_hex(r: float, g: float, b: float, a: float | None = 1.0) -> str: """Converts an rgb1 tuple to a HEX color code. Args: - r (float): Red. - g (float): Green. - b (float): Blue. - a (float, optional): Alpha. Defaults to 1.0. + r: Red. + g: Green. + b: Blue. + a: Alpha. Defaults to 1.0. Returns: str: The hexified rgba values. @@ -465,14 +467,14 @@ def color_to_hex(r: float, g: float, b: float, a: float | None = 1.0) -> str: def color_overlay_func( r: float, g: float, b: float, a: float | None = None -) -> tuple: +) -> tuple[float, ...]: """I could NOT come up with a better function name. Args: - r (float): Red. - g (float): Green. - b (float): Blue. - a (float | None, optional): Alpha. Defaults to None. + r: Red. + g: Green. + b: Blue. + a: Alpha. Defaults to None. Returns: tuple: A brighter color if the provided one is dark, diff --git a/dist/ba_data/python/bauiv1lib/config.py b/dist/ba_data/python/bauiv1lib/config.py index 337a25f..1845330 100644 --- a/dist/ba_data/python/bauiv1lib/config.py +++ b/dist/ba_data/python/bauiv1lib/config.py @@ -28,6 +28,7 @@ class ConfigCheckBox: configkey: str, position: tuple[float, float], size: tuple[float, float], + *, displayname: str | bui.Lstr | None = None, scale: float | None = None, maxwidth: float | None = None, @@ -85,6 +86,7 @@ class ConfigNumberEdit: parent: bui.Widget, configkey: str, position: tuple[float, float], + *, minval: float = 0.0, maxval: float = 100.0, increment: float = 1.0, @@ -107,7 +109,7 @@ class ConfigNumberEdit: self._callback = callback try: self._value = bui.app.config.resolve(configkey) - except ValueError: + except KeyError: self._value = bui.app.config.get(configkey, fallback_value) self._value = ( self._minval diff --git a/dist/ba_data/python/bauiv1lib/configerror.py b/dist/ba_data/python/bauiv1lib/configerror.py deleted file mode 100644 index c64a31d..0000000 --- a/dist/ba_data/python/bauiv1lib/configerror.py +++ /dev/null @@ -1,80 +0,0 @@ -# Released under the MIT License. See LICENSE for details. -# -"""UI for dealing with broken config files.""" - -from __future__ import annotations - -import bauiv1 as bui - - -class ConfigErrorWindow(bui.Window): - """Window for dealing with a broken config.""" - - def __init__(self) -> None: - self._config_file_path = bui.app.env.config_file_path - width = 800 - super().__init__( - bui.containerwidget(size=(width, 400), transition='in_right') - ) - padding = 20 - bui.textwidget( - parent=self._root_widget, - position=(padding, 220 + 60), - size=(width - 2 * padding, 100 - 2 * padding), - h_align='center', - v_align='top', - scale=0.73, - text=( - f'Error reading {bui.appnameupper()} config file' - ':\n\n\nCheck the console' - ' (press ~ twice) for details.\n\nWould you like to quit and' - ' try to fix it by hand\nor overwrite it with defaults?\n\n' - '(high scores, player profiles, etc will be lost if you' - ' overwrite)' - ), - ) - bui.textwidget( - parent=self._root_widget, - position=(padding, 198 + 60), - size=(width - 2 * padding, 100 - 2 * padding), - h_align='center', - v_align='top', - scale=0.5, - text=self._config_file_path, - ) - quit_button = bui.buttonwidget( - parent=self._root_widget, - position=(35, 30), - size=(240, 54), - label='Quit and Edit', - on_activate_call=self._quit, - ) - bui.buttonwidget( - parent=self._root_widget, - position=(width - 370, 30), - size=(330, 54), - label='Overwrite with Defaults', - on_activate_call=self._defaults, - ) - bui.containerwidget( - edit=self._root_widget, - cancel_button=quit_button, - selected_child=quit_button, - ) - - def _quit(self) -> None: - bui.apptimer(0.001, self._edit_and_quit) - bui.lock_all_input() - - def _edit_and_quit(self) -> None: - bui.open_file_externally(self._config_file_path) - bui.apptimer(0.1, bui.quit) - - def _defaults(self) -> None: - bui.containerwidget(edit=self._root_widget, transition='out_left') - bui.getsound('gunCocking').play() - bui.screenmessage('settings reset.', color=(1, 1, 0)) - - # At this point settings are already set; lets just commit them - # to disk. - bui.commit_app_config(force=True) diff --git a/dist/ba_data/python/bauiv1lib/confirm.py b/dist/ba_data/python/bauiv1lib/confirm.py index 394f2fe..3aff09d 100644 --- a/dist/ba_data/python/bauiv1lib/confirm.py +++ b/dist/ba_data/python/bauiv1lib/confirm.py @@ -22,6 +22,7 @@ class ConfirmWindow: action: Callable[[], Any] | None = None, width: float = 360.0, height: float = 100.0, + *, cancel_button: bool = True, cancel_is_selected: bool = False, color: tuple[float, float, float] = (1, 1, 1), @@ -61,7 +62,7 @@ class ConfirmWindow: toolbar_visibility='menu_minimal_no_back', parent=bui.get_special_widget('overlay_stack'), scale=( - 2.1 + 1.9 if uiscale is bui.UIScale.SMALL else 1.5 if uiscale is bui.UIScale.MEDIUM else 1.0 ), diff --git a/dist/ba_data/python/bauiv1lib/connect.py b/dist/ba_data/python/bauiv1lib/connect.py new file mode 100644 index 0000000..099d698 --- /dev/null +++ b/dist/ba_data/python/bauiv1lib/connect.py @@ -0,0 +1,89 @@ +# Released under the MIT License. See LICENSE for details. +# +"""UI functionality related to master-server connectivity.""" + +from __future__ import annotations + +from typing import TYPE_CHECKING + +import bauiv1 as bui + +if TYPE_CHECKING: + from typing import Callable, Any + + +class ConnectWindow(bui.Window): + """Window for preparing to connect to a game. + + Shows progress while wrangling credentials, asks for password, or + anything else necessary to prepare for a connection. + """ + + def __init__( + self, + ) -> None: + self._width = 650 + self._height = 300 + super().__init__( + root_widget=bui.containerwidget( + size=(self._width, self._height), + transition='in_scale', + parent=bui.get_special_widget('overlay_stack'), + ) + ) + bui.textwidget( + parent=self._root_widget, + position=(self._width * 0.5, self._height * 0.7), + size=(0, 0), + scale=1.2, + h_align='center', + v_align='center', + text=bui.Lstr(resource='internal.connectingToPartyText'), + maxwidth=self._width * 0.9, + ) + + self._spinner = bui.spinnerwidget( + parent=self._root_widget, + position=(self._width * 0.5, self._height * 0.54), + style='bomb', + size=48, + ) + + self._info_text = bui.textwidget( + parent=self._root_widget, + position=(self._width * 0.5, self._height * 0.4), + size=(0, 0), + color=(0.6, 0.5, 0.6), + flatness=1.0, + shadow=0.0, + scale=0.75, + h_align='center', + v_align='center', + text='HELLO THERE', + maxwidth=self._width * 0.9, + ) + self._info_text_str = '' + + cancel_button = bui.buttonwidget( + parent=self._root_widget, + autoselect=True, + position=(50, 30), + size=(150, 50), + label=bui.Lstr(resource='cancelText'), + on_activate_call=self._cancel, + ) + bui.containerwidget(edit=self._root_widget, cancel_button=cancel_button) + self._update_timer = bui.AppTimer( + 0.113, bui.WeakCall(self._update), repeat=True + ) + + def _update(self) -> None: + print('updating...') + + def _cancel(self) -> None: + if not self._root_widget or self._root_widget.transitioning_out: + return + bui.containerwidget( + edit=self._root_widget, + transition=('out_scale'), + ) diff --git a/dist/ba_data/python/bauiv1lib/connectivity.py b/dist/ba_data/python/bauiv1lib/connectivity.py index 41062f8..e1a810b 100644 --- a/dist/ba_data/python/bauiv1lib/connectivity.py +++ b/dist/ba_data/python/bauiv1lib/connectivity.py @@ -4,7 +4,6 @@ from __future__ import annotations -import time from typing import TYPE_CHECKING import bauiv1 as bui @@ -20,9 +19,10 @@ def wait_for_connectivity( """Wait for the engine to establish a master-server connection. If need be, shows a window to keep the user informed of connectivity - state and allows the user to cancel the operation. Note that canceling - does not prevent the engine from continuing its attempt to establish - connectivity; it simply cancels the operation that depends on it. + state and allows the user to cancel the operation. Note that + canceling does not prevent the engine from continuing its attempt to + establish connectivity; it simply cancels the operation that is + waiting for connectivity. """ plus = bui.app.plus assert plus is not None @@ -49,12 +49,6 @@ class WaitForConnectivityWindow(bui.Window): self._on_cancel = on_cancel self._width = 650 self._height = 300 - self._infos: list[str | bui.Lstr] = [ - 'This can take a few moments, especially on first launch.', - 'Make sure your internet connection is working.', - ] - self._last_info_switch_time = time.monotonic() - self._info_index = 0 super().__init__( root_widget=bui.containerwidget( size=(self._width, self._height), @@ -64,26 +58,36 @@ class WaitForConnectivityWindow(bui.Window): ) bui.textwidget( parent=self._root_widget, - position=(self._width * 0.5, self._height * 0.65), + position=(self._width * 0.5, self._height * 0.7), size=(0, 0), scale=1.2, h_align='center', v_align='center', - text='Locating nearest regional servers...', + text=bui.Lstr(resource='internal.connectingToPartyText'), maxwidth=self._width * 0.9, ) + + self._spinner = bui.spinnerwidget( + parent=self._root_widget, + position=(self._width * 0.5, self._height * 0.54), + style='bomb', + size=48, + ) + self._info_text = bui.textwidget( parent=self._root_widget, - position=(self._width * 0.5, self._height * 0.45), + position=(self._width * 0.5, self._height * 0.4), size=(0, 0), - color=(0.7, 0.6, 0.7), + color=(0.6, 0.5, 0.6), flatness=1.0, - scale=0.8, + shadow=0.0, + scale=0.75, h_align='center', v_align='center', - text=self._infos[0], + text='', maxwidth=self._width * 0.9, ) + self._info_text_str = '' cancel_button = bui.buttonwidget( parent=self._root_widget, autoselect=True, @@ -98,7 +102,6 @@ class WaitForConnectivityWindow(bui.Window): ) def _update(self) -> None: - now = time.monotonic() plus = bui.app.plus assert plus is not None @@ -107,16 +110,29 @@ class WaitForConnectivityWindow(bui.Window): self._connected() return - if now - self._last_info_switch_time > 5.0: - self._info_index = (self._info_index + 1) % len(self._infos) - bui.textwidget( - edit=self._info_text, text=self._infos[self._info_index] - ) - self._last_info_switch_time = now + # Show what connectivity is up to if we don't have any published + # zone-pings yet (or if we do but there's no transport state to + # show yet). + if not bui.app.net.zone_pings or not bui.app.net.transport_state: + infotext = bui.app.net.connectivity_state + else: + infotext = bui.app.net.transport_state + if infotext != self._info_text_str: + self._info_text_str = infotext + bui.textwidget(edit=self._info_text, text=infotext) def _connected(self) -> None: if not self._root_widget or self._root_widget.transitioning_out: return + + # Show 'connected.' and kill the spinner for the brief moment + # we're visible on our way out. + bui.textwidget( + edit=self._info_text, text=bui.Lstr(resource='remote_app.connected') + ) + if self._spinner: + self._spinner.delete() + bui.containerwidget( edit=self._root_widget, transition=('out_scale'), diff --git a/dist/ba_data/python/bauiv1lib/continues.py b/dist/ba_data/python/bauiv1lib/continues.py deleted file mode 100644 index 366fcbb..0000000 --- a/dist/ba_data/python/bauiv1lib/continues.py +++ /dev/null @@ -1,256 +0,0 @@ -# Released under the MIT License. See LICENSE for details. -# -"""Provides a popup window to continue a game.""" - -from __future__ import annotations - -import weakref -from typing import TYPE_CHECKING - -import bauiv1 as bui - -if TYPE_CHECKING: - from typing import Any, Callable - - import bascenev1 as bs - - -class ContinuesWindow(bui.Window): - """A window to continue a game.""" - - def __init__( - self, - activity: bs.Activity, - cost: int, - continue_call: Callable[[], Any], - cancel_call: Callable[[], Any], - ): - assert bui.app.classic is not None - self._activity = weakref.ref(activity) - self._cost = cost - self._continue_call = continue_call - self._cancel_call = cancel_call - self._start_count = self._count = 20 - self._width = 300 - self._height = 200 - self._transitioning_out = False - super().__init__( - bui.containerwidget( - size=(self._width, self._height), - background=False, - toolbar_visibility='menu_currency', - transition='in_scale', - scale=1.5, - ) - ) - txt = ( - bui.Lstr(resource='continuePurchaseText') - .evaluate() - .split('${PRICE}') - ) - t_left = txt[0] - t_left_width = bui.get_string_width(t_left, suppress_warning=True) - t_price = bui.charstr(bui.SpecialChar.TICKET) + str(self._cost) - t_price_width = bui.get_string_width(t_price, suppress_warning=True) - t_right = txt[-1] - t_right_width = bui.get_string_width(t_right, suppress_warning=True) - width_total_half = (t_left_width + t_price_width + t_right_width) * 0.5 - - bui.textwidget( - parent=self._root_widget, - text=t_left, - flatness=1.0, - shadow=1.0, - size=(0, 0), - h_align='left', - v_align='center', - position=(self._width * 0.5 - width_total_half, self._height - 30), - ) - bui.textwidget( - parent=self._root_widget, - text=t_price, - flatness=1.0, - shadow=1.0, - color=(0.2, 1.0, 0.2), - size=(0, 0), - position=( - self._width * 0.5 - width_total_half + t_left_width, - self._height - 30, - ), - h_align='left', - v_align='center', - ) - bui.textwidget( - parent=self._root_widget, - text=t_right, - flatness=1.0, - shadow=1.0, - size=(0, 0), - h_align='left', - v_align='center', - position=( - self._width * 0.5 - - width_total_half - + t_left_width - + t_price_width - + 5, - self._height - 30, - ), - ) - - self._tickets_text_base: str | None - self._tickets_text: bui.Widget | None - if not bui.app.ui_v1.use_toolbars: - self._tickets_text_base = bui.Lstr( - resource='getTicketsWindow.youHaveShortText', - fallback_resource='getTicketsWindow.youHaveText', - ).evaluate() - self._tickets_text = bui.textwidget( - parent=self._root_widget, - text='', - flatness=1.0, - color=(0.2, 1.0, 0.2), - shadow=1.0, - position=( - self._width * 0.5 + width_total_half, - self._height - 50, - ), - size=(0, 0), - scale=0.35, - h_align='right', - v_align='center', - ) - else: - self._tickets_text_base = None - self._tickets_text = None - - self._counter_text = bui.textwidget( - parent=self._root_widget, - text=str(self._count), - color=(0.7, 0.7, 0.7), - scale=1.2, - size=(0, 0), - big=True, - position=(self._width * 0.5, self._height - 80), - flatness=1.0, - shadow=1.0, - h_align='center', - v_align='center', - ) - self._cancel_button = bui.buttonwidget( - parent=self._root_widget, - position=(30, 30), - size=(120, 50), - label=bui.Lstr(resource='endText', fallback_resource='cancelText'), - autoselect=True, - enable_sound=False, - on_activate_call=self._on_cancel_press, - ) - self._continue_button = bui.buttonwidget( - parent=self._root_widget, - label=bui.Lstr(resource='continueText'), - autoselect=True, - position=(self._width - 130, 30), - size=(120, 50), - on_activate_call=self._on_continue_press, - ) - bui.containerwidget( - edit=self._root_widget, - cancel_button=self._cancel_button, - start_button=self._continue_button, - selected_child=self._cancel_button, - ) - - self._counting_down = True - self._countdown_timer = bui.AppTimer( - 1.0, bui.WeakCall(self._tick), repeat=True - ) - - # If there is foreground activity, suspend it. - bui.app.classic.pause() - self._tick() - - def __del__(self) -> None: - # If there is suspended foreground activity, resume it. - assert bui.app.classic is not None - bui.app.classic.resume() - - def _tick(self) -> None: - plus = bui.app.plus - assert plus is not None - - # if our target activity is gone or has ended, go away - activity = self._activity() - if activity is None or activity.has_ended(): - self._on_cancel() - return - - if plus.get_v1_account_state() == 'signed_in': - sval = bui.charstr(bui.SpecialChar.TICKET) + str( - plus.get_v1_account_ticket_count() - ) - else: - sval = '?' - if self._tickets_text is not None: - assert self._tickets_text_base is not None - bui.textwidget( - edit=self._tickets_text, - text=self._tickets_text_base.replace('${COUNT}', sval), - ) - - if self._counting_down: - self._count -= 1 - bui.getsound('tick').play() - if self._count <= 0: - self._on_cancel() - else: - bui.textwidget(edit=self._counter_text, text=str(self._count)) - - def _on_cancel_press(self) -> None: - # disallow for first second - if self._start_count - self._count < 2: - bui.getsound('error').play() - else: - self._on_cancel() - - def _on_continue_press(self) -> None: - from bauiv1lib import gettickets - - plus = bui.app.plus - assert plus is not None - - # Disallow for first second. - if self._start_count - self._count < 2: - bui.getsound('error').play() - else: - # If somehow we got signed out... - if plus.get_v1_account_state() != 'signed_in': - bui.screenmessage( - bui.Lstr(resource='notSignedInText'), color=(1, 0, 0) - ) - bui.getsound('error').play() - return - - # If it appears we don't have enough tickets, offer to buy more. - tickets = plus.get_v1_account_ticket_count() - if tickets < self._cost: - # FIXME: Should we start the timer back up again after? - self._counting_down = False - bui.textwidget(edit=self._counter_text, text='') - bui.getsound('error').play() - gettickets.show_get_tickets_prompt() - return - if not self._transitioning_out: - bui.getsound('swish').play() - self._transitioning_out = True - bui.containerwidget( - edit=self._root_widget, transition='out_scale' - ) - self._continue_call() - - def _on_cancel(self) -> None: - if not self._transitioning_out: - bui.getsound('swish').play() - self._transitioning_out = True - bui.containerwidget(edit=self._root_widget, transition='out_scale') - self._cancel_call() diff --git a/dist/ba_data/python/bauiv1lib/coop/browser.py b/dist/ba_data/python/bauiv1lib/coop/browser.py index 81a936e..22411f7 100644 --- a/dist/ba_data/python/bauiv1lib/coop/browser.py +++ b/dist/ba_data/python/bauiv1lib/coop/browser.py @@ -7,12 +7,9 @@ from __future__ import annotations import logging -from threading import Thread -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, override + -from bauiv1lib.store.button import StoreButton -from bauiv1lib.league.rankbutton import LeagueRankButton -from bauiv1lib.store.browser import StoreBrowserWindow import bauiv1 as bui if TYPE_CHECKING: @@ -20,8 +17,10 @@ if TYPE_CHECKING: from bauiv1lib.coop.tournamentbutton import TournamentButton +HARD_REQUIRES_PRO = False -class CoopBrowserWindow(bui.Window): + +class CoopBrowserWindow(bui.MainWindow): """Window for browsing co-op levels/games/etc.""" def __init__( @@ -30,6 +29,7 @@ class CoopBrowserWindow(bui.Window): origin_widget: bui.Widget | None = None, ): # pylint: disable=too-many-statements + # pylint: disable=too-many-locals # pylint: disable=cyclic-import plus = bui.app.plus @@ -37,17 +37,19 @@ class CoopBrowserWindow(bui.Window): # Preload some modules we use in a background thread so we won't # have a visual hitch when the user taps them. - Thread(target=self._preload_modules).start() + bui.app.threadpool.submit_no_wait(self._preload_modules) bui.set_analytics_screen('Coop Window') app = bui.app - assert app.classic is not None + classic = app.classic + assert classic is not None cfg = app.config # Quick note to players that tourneys won't work in ballistica - # core builds. (need to split the word so it won't get subbed out) - if 'ballistica' + 'kit' == bui.appname(): + # core builds. (need to split the word so it won't get subbed + # out) + if 'ballistica' + 'kit' == bui.appname() and bui.do_once(): bui.apptimer( 1.0, lambda: bui.screenmessage( @@ -56,16 +58,6 @@ class CoopBrowserWindow(bui.Window): ), ) - # If they provided an origin-widget, scale up from that. - scale_origin: tuple[float, float] | None - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None - # Try to recreate the same number of buttons we had last time so our # re-selection code works. self._tournament_button_count = app.config.get('Tournament Rows', 0) @@ -83,18 +75,15 @@ class CoopBrowserWindow(bui.Window): self._hard_button_lock_image: bui.Widget | None = None self._campaign_percent_text: bui.Widget | None = None - assert bui.app.classic is not None - uiscale = bui.app.ui_v1.uiscale - self._width = 1520 if uiscale is bui.UIScale.SMALL else 1120 - self._x_inset = x_inset = 200 if uiscale is bui.UIScale.SMALL else 0 + uiscale = app.ui_v1.uiscale + self._width = 1600 if uiscale is bui.UIScale.SMALL else 1120 self._height = ( - 657 + 1200 if uiscale is bui.UIScale.SMALL else 730 if uiscale is bui.UIScale.MEDIUM else 800 ) - app.ui_v1.set_main_menu_location('Coop Select') self._r = 'coopSelectWindow' - top_extra = 20 if uiscale is bui.UIScale.SMALL else 0 + top_extra = 0 if uiscale is bui.UIScale.SMALL else 0 self._tourney_data_up_to_date = False @@ -104,7 +93,8 @@ class CoopBrowserWindow(bui.Window): if ( self._campaign_difficulty == 'hard' - and not app.classic.accounts.have_pro_options() + and HARD_REQUIRES_PRO + and not classic.accounts.have_pro_options() ): plus.add_v1_account_transaction( { @@ -115,103 +105,59 @@ class CoopBrowserWindow(bui.Window): ) self._campaign_difficulty = 'easy' + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 1.5 + if uiscale is bui.UIScale.SMALL + else 0.8 if uiscale is bui.UIScale.MEDIUM else 0.75 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_width = min(self._width - 120, screensize[0] / scale) + target_height = min(self._height - 120, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * self._height + 0.5 * target_height + 30.0 + + self._scroll_width = target_width + self._scroll_height = target_height - 40 + self._scroll_bottom = yoffs - 70 - self._scroll_height + super().__init__( root_widget=bui.containerwidget( size=(self._width, self._height + top_extra), toolbar_visibility='menu_full', - scale_origin_stack_offset=scale_origin, - stack_offset=( - (0, -15) - if uiscale is bui.UIScale.SMALL - else (0, 0) if uiscale is bui.UIScale.MEDIUM else (0, 0) - ), - transition=transition, - scale=( - 1.2 - if uiscale is bui.UIScale.SMALL - else 0.8 if uiscale is bui.UIScale.MEDIUM else 0.75 - ), - ) + scale=scale, + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) - if app.ui_v1.use_toolbars and uiscale is bui.UIScale.SMALL: - self._back_button = None + if uiscale is bui.UIScale.SMALL: + self._back_button = bui.get_special_widget('back_button') + bui.containerwidget( + edit=self._root_widget, on_cancel_call=self.main_window_back + ) else: self._back_button = bui.buttonwidget( parent=self._root_widget, - position=( - 75 + x_inset, - self._height - - 87 - - (4 if uiscale is bui.UIScale.SMALL else 0), - ), - size=(120, 60), + position=(75, yoffs - 48.0), + size=(60, 50), scale=1.2, autoselect=True, - label=bui.Lstr(resource='backText'), - button_type='back', + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + on_activate_call=self.main_window_back, ) - - self._league_rank_button: LeagueRankButton | None - self._store_button: StoreButton | None - self._store_button_widget: bui.Widget | None - self._league_rank_button_widget: bui.Widget | None - - if not app.ui_v1.use_toolbars: - prb = self._league_rank_button = LeagueRankButton( - parent=self._root_widget, - position=( - self._width - (282 + x_inset), - self._height - - 85 - - (4 if uiscale is bui.UIScale.SMALL else 0), - ), - size=(100, 60), - color=(0.4, 0.4, 0.9), - textcolor=(0.9, 0.9, 2.0), - scale=1.05, - on_activate_call=bui.WeakCall(self._switch_to_league_rankings), + bui.containerwidget( + edit=self._root_widget, cancel_button=self._back_button ) - self._league_rank_button_widget = prb.get_button() - - sbtn = self._store_button = StoreButton( - parent=self._root_widget, - position=( - self._width - (170 + x_inset), - self._height - - 85 - - (4 if uiscale is bui.UIScale.SMALL else 0), - ), - size=(100, 60), - color=(0.6, 0.4, 0.7), - show_tickets=True, - button_type='square', - sale_scale=0.85, - textcolor=(0.9, 0.7, 1.0), - scale=1.05, - on_activate_call=bui.WeakCall(self._switch_to_score, None), - ) - self._store_button_widget = sbtn.get_button() - bui.widget( - edit=self._back_button, - right_widget=self._league_rank_button_widget, - ) - bui.widget( - edit=self._league_rank_button_widget, - left_widget=self._back_button, - ) - else: - self._league_rank_button = None - self._store_button = None - self._store_button_widget = None - self._league_rank_button_widget = None - - # Move our corner buttons dynamically to keep them out of the way of - # the party icon :-( - self._update_corner_button_positions() - self._update_corner_button_positions_timer = bui.AppTimer( - 1.0, bui.WeakCall(self._update_corner_button_positions), repeat=True - ) self._last_tournament_query_time: float | None = None self._last_tournament_query_response_time: float | None = None @@ -224,14 +170,18 @@ class CoopBrowserWindow(bui.Window): 'Selected Coop Custom Level', None ) + if uiscale is bui.UIScale.SMALL: + tmaxw = 130 if bui.get_virtual_screen_size()[0] < 1320 else 175 + else: + tmaxw = 300 + # Don't want initial construction affecting our last-selected. self._do_selection_callbacks = False - v = self._height - 95 - txt = bui.textwidget( + bui.textwidget( parent=self._root_widget, position=( self._width * 0.5, - v + 40 - (0 if uiscale is bui.UIScale.SMALL else 0), + yoffs - (50 if uiscale is bui.UIScale.SMALL else 24), ), size=(0, 0), text=bui.Lstr( @@ -240,55 +190,66 @@ class CoopBrowserWindow(bui.Window): ), h_align='center', color=app.ui_v1.title_color, - scale=1.5, - maxwidth=500, + scale=0.85 if uiscale is bui.UIScale.SMALL else 1.5, + maxwidth=tmaxw, v_align='center', ) - if app.ui_v1.use_toolbars and uiscale is bui.UIScale.SMALL: - bui.textwidget(edit=txt, text='') - - if self._back_button is not None: - bui.buttonwidget( - edit=self._back_button, - button_type='backSmall', - size=(60, 50), - position=( - 75 + x_inset, - self._height - - 87 - - (4 if uiscale is bui.UIScale.SMALL else 0) - + 6, - ), - label=bui.charstr(bui.SpecialChar.BACK), - ) - self._selected_row = cfg.get('Selected Coop Row', None) - self._scroll_width = self._width - (130 + 2 * x_inset) - self._scroll_height = self._height - ( - 190 - if uiscale is bui.UIScale.SMALL and app.ui_v1.use_toolbars - else 160 - ) - self._subcontainerwidth = 800.0 self._subcontainerheight = 1400.0 self._scrollwidget = bui.scrollwidget( parent=self._root_widget, highlight=False, - position=( - (65 + x_inset, 120) - if uiscale is bui.UIScale.SMALL and app.ui_v1.use_toolbars - else (65 + x_inset, 70) - ), size=(self._scroll_width, self._scroll_height), + position=( + self._width * 0.5 - self._scroll_width * 0.5, + self._scroll_bottom, + ), simple_culling_v=10.0, claims_left_right=True, - claims_tab=True, selection_loops_to_parent=True, + border_opacity=0.4, ) + + if uiscale is bui.UIScale.SMALL: + blotchwidth = 500.0 + blotchheight = 200.0 + bimg = bui.imagewidget( + parent=self._root_widget, + texture=bui.gettexture('uiAtlas'), + mesh_transparent=bui.getmesh('windowBGBlotch'), + position=( + self._width * 0.5 + - self._scroll_width * 0.5 + + 60.0 + - blotchwidth * 0.5, + self._scroll_bottom - blotchheight * 0.5, + ), + size=(blotchwidth, blotchheight), + color=(0.4, 0.37, 0.49), + # color=(1, 0, 0), + ) + bui.widget(edit=bimg, depth_range=(0.9, 1.0)) + bimg = bui.imagewidget( + parent=self._root_widget, + texture=bui.gettexture('uiAtlas'), + mesh_transparent=bui.getmesh('windowBGBlotch'), + position=( + self._width * 0.5 + + self._scroll_width * 0.5 + - 60.0 + - blotchwidth * 0.5, + self._scroll_bottom - blotchheight * 0.5, + ), + size=(blotchwidth, blotchheight), + color=(0.4, 0.37, 0.49), + # color=(1, 0, 0), + ) + bui.widget(edit=bimg, depth_range=(0.9, 1.0)) + self._subcontainer: bui.Widget | None = None # Take note of our account state; we'll refresh later if this changes. @@ -309,17 +270,17 @@ class CoopBrowserWindow(bui.Window): # each one of those tournaments, go ahead and display it as a # starting point. if ( - app.classic.accounts.account_tournament_list is not None - and app.classic.accounts.account_tournament_list[0] + classic.accounts.account_tournament_list is not None + and classic.accounts.account_tournament_list[0] == plus.get_v1_account_state_num() and all( - t_id in app.classic.accounts.tournament_info - for t_id in app.classic.accounts.account_tournament_list[1] + t_id in classic.accounts.tournament_info + for t_id in classic.accounts.account_tournament_list[1] ) ): tourney_data = [ - app.classic.accounts.tournament_info[t_id] - for t_id in app.classic.accounts.account_tournament_list[1] + classic.accounts.tournament_info[t_id] + for t_id in classic.accounts.account_tournament_list[1] ] self._update_for_data(tourney_data) @@ -329,37 +290,24 @@ class CoopBrowserWindow(bui.Window): ) self._update() - def _update_corner_button_positions(self) -> None: - assert bui.app.classic is not None - uiscale = bui.app.ui_v1.uiscale - offs = ( - -55 - if uiscale is bui.UIScale.SMALL and bui.is_party_icon_visible() - else 0 + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) ) - if self._league_rank_button is not None: - self._league_rank_button.set_position( - ( - self._width - 282 + offs - self._x_inset, - self._height - - 85 - - (4 if uiscale is bui.UIScale.SMALL else 0), - ) - ) - if self._store_button is not None: - self._store_button.set_position( - ( - self._width - 170 + offs - self._x_inset, - self._height - - 85 - - (4 if uiscale is bui.UIScale.SMALL else 0), - ) - ) - # noinspection PyUnresolvedReferences + @override + def on_main_window_close(self) -> None: + self._save_state() + @staticmethod def _preload_modules() -> None: """Preload modules we use; avoids hitches (called in bg thread).""" + # pylint: disable=cyclic-import import bauiv1lib.purchase as _unused1 import bauiv1lib.coop.gamebutton as _unused2 import bauiv1lib.confirm as _unused3 @@ -382,9 +330,9 @@ class CoopBrowserWindow(bui.Window): cur_time = bui.apptime() - # If its been a while since we got a tournament update, consider the - # data invalid (prevents us from joining tournaments if our internet - # connection goes down for a while). + # If its been a while since we got a tournament update, consider + # the data invalid (prevents us from joining tournaments if our + # internet connection goes down for a while). if ( self._last_tournament_query_response_time is None or bui.apptime() - self._last_tournament_query_response_time @@ -392,8 +340,10 @@ class CoopBrowserWindow(bui.Window): ): self._tourney_data_up_to_date = False - # If our account state has changed, do a full request. + # If our account login state has changed, do a + # full request. account_state_num = plus.get_v1_account_state_num() + if account_state_num != self._account_state_num: self._account_state_num = account_state_num self._save_state() @@ -459,15 +409,21 @@ class CoopBrowserWindow(bui.Window): bui.imagewidget( edit=self._hard_button_lock_image, opacity=( - 0.0 if bui.app.classic.accounts.have_pro_options() else 1.0 + 0.0 + if ( + (not HARD_REQUIRES_PRO) + or bui.app.classic.accounts.have_pro_options() + ) + else 1.0 ), ) except Exception: logging.exception('Error updating campaign lock.') def _update_for_data(self, data: list[dict[str, Any]] | None) -> None: - # If the number of tournaments or challenges in the data differs from - # our current arrangement, refresh with the new number. + + # If the number of tournaments or challenges in the data differs + # from our current arrangement, refresh with the new number. if (data is None and self._tournament_button_count != 0) or ( data is not None and (len(data) != self._tournament_button_count) ): @@ -519,6 +475,7 @@ class CoopBrowserWindow(bui.Window): if difficulty != self._campaign_difficulty: if ( difficulty == 'hard' + and HARD_REQUIRES_PRO and not bui.app.classic.accounts.have_pro_options() ): PurchaseWindow(items=['pro']) @@ -541,6 +498,7 @@ class CoopBrowserWindow(bui.Window): def _refresh_campaign_row(self) -> None: # pylint: disable=too-many-locals + # pylint: disable=too-many-statements # pylint: disable=cyclic-import from bauiv1lib.coop.gamebutton import GameButton @@ -660,14 +618,19 @@ class CoopBrowserWindow(bui.Window): bui.widget(edit=campaign_buttons[0], left_widget=self._easy_button) - if self._back_button is not None: - bui.widget(edit=self._easy_button, up_widget=self._back_button) - for btn in campaign_buttons: - bui.widget( - edit=btn, - up_widget=self._back_button, - down_widget=next_widget_down, - ) + bui.widget( + edit=self._easy_button, + left_widget=self._back_button, + up_widget=self._back_button, + ) + bui.widget(edit=self._hard_button, left_widget=self._back_button) + for btn in campaign_buttons: + bui.widget( + edit=btn, + up_widget=self._back_button, + ) + for btn in campaign_buttons: + bui.widget(edit=btn, down_widget=next_widget_down) # Update our existing percent-complete text. assert bui.app.classic is not None @@ -721,7 +684,7 @@ class CoopBrowserWindow(bui.Window): tourney_row_height = 200 self._subcontainerheight = ( - 620 + self._tournament_button_count * tourney_row_height + 700 + self._tournament_button_count * tourney_row_height ) self._subcontainer = bui.containerwidget( @@ -729,22 +692,17 @@ class CoopBrowserWindow(bui.Window): size=(self._subcontainerwidth, self._subcontainerheight), background=False, claims_left_right=True, - claims_tab=True, selection_loops_to_parent=True, ) bui.containerwidget( edit=self._root_widget, selected_child=self._scrollwidget ) - if self._back_button is not None: - bui.containerwidget( - edit=self._root_widget, cancel_button=self._back_button - ) w_parent = self._subcontainer h_base = 6 - v = self._subcontainerheight - 73 + v = self._subcontainerheight - 90 self._campaign_percent_text = bui.textwidget( parent=w_parent, @@ -757,12 +715,12 @@ class CoopBrowserWindow(bui.Window): scale=1.1, ) - row_v_show_buffer = 100 + row_v_show_buffer = 80 v -= 198 h_scroll = bui.hscrollwidget( parent=w_parent, - size=(self._scroll_width - 10, 205), + size=(self._scroll_width, 205), position=(-5, v), simple_culling_h=70, highlight=False, @@ -817,17 +775,17 @@ class CoopBrowserWindow(bui.Window): textcolor=(0.7, 0.6, 0.75), autoselect=True, up_widget=self._campaign_h_scroll, + left_widget=self._back_button, on_activate_call=self._on_tournament_info_press, ) bui.widget( edit=self._tournament_info_button, - left_widget=self._tournament_info_button, right_widget=self._tournament_info_button, ) - # Say 'unavailable' if there are zero tournaments, and if we're not - # signed in add that as well (that's probably why we see - # no tournaments). + # Say 'unavailable' if there are zero tournaments, and if we're + # not signed in add that as well (that's probably why we see no + # tournaments). if self._tournament_button_count == 0: unavailable_text = bui.Lstr(resource='unavailableText') if plus.get_v1_account_state() != 'signed_in': @@ -856,7 +814,7 @@ class CoopBrowserWindow(bui.Window): for i in range(self._tournament_button_count): tournament_h_scroll = h_scroll = bui.hscrollwidget( parent=w_parent, - size=(self._scroll_width - 10, 205), + size=(self._scroll_width, 205), position=(-5, v), highlight=False, border_opacity=0.0, @@ -926,7 +884,7 @@ class CoopBrowserWindow(bui.Window): # Show easter-egg-hunt either if its easter or we own it. if plus.get_v1_account_misc_read_val( 'easter', False - ) or plus.get_purchased('games.easter_egg_hunt'): + ) or plus.get_v1_account_product_purchased('games.easter_egg_hunt'): items = [ 'Challenges:Easter Egg Hunt', 'Challenges:Pro Easter Egg Hunt', @@ -938,7 +896,7 @@ class CoopBrowserWindow(bui.Window): self._custom_h_scroll = custom_h_scroll = h_scroll = bui.hscrollwidget( parent=w_parent, - size=(self._scroll_width - 10, 205), + size=(self._scroll_width, 205), position=(-5, v), highlight=False, border_opacity=0.0, @@ -989,6 +947,7 @@ class CoopBrowserWindow(bui.Window): if i + 1 < len(self._tournament_buttons) else custom_h_scroll ), + left_widget=self._back_button, ) bui.widget( edit=tbutton.more_scores_button, @@ -1007,7 +966,7 @@ class CoopBrowserWindow(bui.Window): ), ) - for btn in self._custom_buttons: + for i, btn in enumerate(self._custom_buttons): try: bui.widget( edit=btn.get_button(), @@ -1017,18 +976,14 @@ class CoopBrowserWindow(bui.Window): else self._tournament_info_button ), ) + if i == 0: + bui.widget( + edit=btn.get_button(), left_widget=self._back_button + ) + except Exception: logging.exception('Error wiring up custom buttons.') - if self._back_button is not None: - bui.buttonwidget( - edit=self._back_button, on_activate_call=self._back - ) - else: - bui.containerwidget( - edit=self._root_widget, on_cancel_call=self._back - ) - # There's probably several 'onSelected' callbacks pushed onto the # event queue.. we need to push ours too so we're enabled *after* them. bui.pushcall(self._enable_selectable_callback) @@ -1041,75 +996,42 @@ class CoopBrowserWindow(bui.Window): def _enable_selectable_callback(self) -> None: self._do_selection_callbacks = True - def _switch_to_league_rankings(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.account import show_sign_in_prompt - from bauiv1lib.league.rankwindow import LeagueRankWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - plus = bui.app.plus - assert plus is not None - - if plus.get_v1_account_state() != 'signed_in': - show_sign_in_prompt() - return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert self._league_rank_button is not None - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - LeagueRankWindow( - origin_widget=self._league_rank_button.get_button() - ).get_root_widget(), - from_window=self._root_widget, - ) - - def _switch_to_score( - self, - show_tab: ( - StoreBrowserWindow.TabID | None - ) = StoreBrowserWindow.TabID.EXTRAS, - ) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.account import show_sign_in_prompt - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - plus = bui.app.plus - assert plus is not None - - if plus.get_v1_account_state() != 'signed_in': - show_sign_in_prompt() - return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert self._store_button is not None - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - StoreBrowserWindow( - origin_widget=self._store_button.get_button(), - show_tab=show_tab, - back_location='CoopBrowserWindow', - ).get_root_widget(), - from_window=self._root_widget, - ) - def is_tourney_data_up_to_date(self) -> bool: """Return whether our tourney data is up to date.""" return self._tourney_data_up_to_date - def run_game(self, game: str) -> None: + def run_game( + self, game: str, origin_widget: bui.Widget | None = None + ) -> None: + """Run the provided game.""" + from efro.util import strict_partial + from bauiv1lib.confirm import ConfirmWindow + + classic = bui.app.classic + assert classic is not None + + if classic.chest_dock_full: + ConfirmWindow( + bui.Lstr(resource='chests.slotsFullWarningText'), + width=550, + height=140, + ok_text=bui.Lstr(resource='continueText'), + origin_widget=origin_widget, + action=strict_partial( + self._run_game, game=game, origin_widget=origin_widget + ), + ) + else: + self._run_game(game=game, origin_widget=origin_widget) + + def _run_game( + self, game: str, origin_widget: bui.Widget | None = None + ) -> None: """Run the provided game.""" - # pylint: disable=too-many-branches # pylint: disable=cyclic-import from bauiv1lib.confirm import ConfirmWindow from bauiv1lib.purchase import PurchaseWindow - from bauiv1lib.account import show_sign_in_prompt + from bauiv1lib.account.signin import show_sign_in_prompt plus = bui.app.plus assert plus is not None @@ -1130,50 +1052,18 @@ class CoopBrowserWindow(bui.Window): ) return - # Infinite onslaught/runaround require pro; bring up a store link - # if need be. - if ( - game - in ( - 'Challenges:Infinite Runaround', - 'Challenges:Infinite Onslaught', - ) - and not bui.app.classic.accounts.have_pro() - ): - if plus.get_v1_account_state() != 'signed_in': - show_sign_in_prompt() - else: - PurchaseWindow(items=['pro']) - return + required_purchases = bui.app.classic.required_purchases_for_game(game) - required_purchase: str | None - if game in ['Challenges:Meteor Shower']: - required_purchase = 'games.meteor_shower' - elif game in [ - 'Challenges:Target Practice', - 'Challenges:Target Practice B', - ]: - required_purchase = 'games.target_practice' - elif game in ['Challenges:Ninja Fight']: - required_purchase = 'games.ninja_fight' - elif game in ['Challenges:Pro Ninja Fight']: - required_purchase = 'games.ninja_fight' - elif game in [ - 'Challenges:Easter Egg Hunt', - 'Challenges:Pro Easter Egg Hunt', - ]: - required_purchase = 'games.easter_egg_hunt' - else: - required_purchase = None - - if required_purchase is not None and not plus.get_purchased( - required_purchase - ): - if plus.get_v1_account_state() != 'signed_in': - show_sign_in_prompt() - else: - PurchaseWindow(items=[required_purchase]) - return + # Show pop-up to allow purchasing any required stuff we don't have. + for purchase in required_purchases: + if not plus.get_v1_account_product_purchased(purchase): + if plus.get_v1_account_state() != 'signed_in': + show_sign_in_prompt() + else: + PurchaseWindow( + items=[purchase], origin_widget=origin_widget + ) + return self._save_state() @@ -1182,12 +1072,18 @@ class CoopBrowserWindow(bui.Window): def run_tournament(self, tournament_button: TournamentButton) -> None: """Run the provided tournament game.""" - from bauiv1lib.account import show_sign_in_prompt + # pylint: disable=too-many-return-statements + + from bauiv1lib.purchase import PurchaseWindow + from bauiv1lib.account.signin import show_sign_in_prompt from bauiv1lib.tournamententry import TournamentEntryWindow plus = bui.app.plus assert plus is not None + classic = bui.app.classic + assert classic is not None + if plus.get_v1_account_state() != 'signed_in': show_sign_in_prompt() return @@ -1237,6 +1133,38 @@ class CoopBrowserWindow(bui.Window): bui.getsound('error').play() return + if tournament_button.game is not None and not classic.is_game_unlocked( + tournament_button.game + ): + required_purchases = classic.required_purchases_for_game( + tournament_button.game + ) + # We gotta be missing *something* if its locked. + assert required_purchases + + for purchase in required_purchases: + if not plus.get_v1_account_product_purchased(purchase): + if plus.get_v1_account_state() != 'signed_in': + show_sign_in_prompt() + else: + PurchaseWindow( + items=[purchase], + origin_widget=tournament_button.button, + ) + return + + # assert required_purchases + # if plus.get_v1_account_state() != 'signed_in': + # show_sign_in_prompt() + # else: + # # Hmm; just show the first requirement. They can come + # # back to see more after they purchase the first. + # PurchaseWindow( + # items=[required_purchases[0]], + # origin_widget=tournament_button.button, + # ) + # return + if tournament_button.time_remaining <= 0: bui.screenmessage( bui.Lstr(resource='tournamentEndedText'), color=(1, 0, 0) @@ -1252,35 +1180,12 @@ class CoopBrowserWindow(bui.Window): position=tournament_button.button.get_screen_space_center(), ) - def _back(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.play import PlayWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - # If something is selected, store it. - self._save_state() - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - PlayWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) - def _save_state(self) -> None: cfg = bui.app.config try: sel = self._root_widget.get_selected_child() if sel == self._back_button: sel_name = 'Back' - elif sel == self._store_button_widget: - sel_name = 'Store' - elif sel == self._league_rank_button_widget: - sel_name = 'PowerRanking' elif sel == self._scrollwidget: sel_name = 'Scroll' else: @@ -1305,10 +1210,6 @@ class CoopBrowserWindow(bui.Window): sel = self._back_button elif sel_name == 'Scroll': sel = self._scrollwidget - elif sel_name == 'PowerRanking': - sel = self._league_rank_button_widget - elif sel_name == 'Store': - sel = self._store_button_widget else: sel = self._scrollwidget bui.containerwidget(edit=self._root_widget, selected_child=sel) diff --git a/dist/ba_data/python/bauiv1lib/coop/gamebutton.py b/dist/ba_data/python/bauiv1lib/coop/gamebutton.py index 5172e3a..55a06d7 100644 --- a/dist/ba_data/python/bauiv1lib/coop/gamebutton.py +++ b/dist/ba_data/python/bauiv1lib/coop/gamebutton.py @@ -5,6 +5,7 @@ from __future__ import annotations import random +import weakref from typing import TYPE_CHECKING import bauiv1 as bui @@ -26,6 +27,7 @@ class GameButton: select: bool, row: str, ): + # pylint: disable=too-many-positional-arguments # pylint: disable=too-many-statements # pylint: disable=too-many-locals @@ -58,12 +60,15 @@ class GameButton: else: stars = 1 + self._window = weakref.ref(window) + self._game = game + self._button = btn = bui.buttonwidget( parent=parent, position=(x + 23, y + 4), size=(sclx, scly), label='', - on_activate_call=bui.Call(window.run_game, game), + on_activate_call=self._on_press, button_type='square', autoselect=True, on_select_call=bui.Call(window.sel_change, row, game), @@ -186,12 +191,16 @@ class GameButton: ) self._update() + def _on_press(self) -> None: + window = self._window() + if window is not None: + window.run_game(self._game, origin_widget=self._button) + def get_button(self) -> bui.Widget: """Return the underlying button bui.Widget.""" return self._button def _update(self) -> None: - # pylint: disable=too-many-boolean-expressions plus = bui.app.plus assert plus is not None @@ -231,44 +240,7 @@ class GameButton: # Hard-code games we haven't unlocked. assert bui.app.classic is not None - if ( - ( - game - in ( - 'Challenges:Infinite Runaround', - 'Challenges:Infinite Onslaught', - ) - and not bui.app.classic.accounts.have_pro() - ) - or ( - game in ('Challenges:Meteor Shower',) - and not plus.get_purchased('games.meteor_shower') - ) - or ( - game - in ( - 'Challenges:Target Practice', - 'Challenges:Target Practice B', - ) - and not plus.get_purchased('games.target_practice') - ) - or ( - game in ('Challenges:Ninja Fight',) - and not plus.get_purchased('games.ninja_fight') - ) - or ( - game in ('Challenges:Pro Ninja Fight',) - and not plus.get_purchased('games.ninja_fight') - ) - or ( - game - in ( - 'Challenges:Easter Egg Hunt', - 'Challenges:Pro Easter Egg Hunt', - ) - and not plus.get_purchased('games.easter_egg_hunt') - ) - ): + if not bui.app.classic.is_game_unlocked(game): unlocked = False # Let's tint levels a slightly different color when easy mode diff --git a/dist/ba_data/python/bauiv1lib/coop/tournamentbutton.py b/dist/ba_data/python/bauiv1lib/coop/tournamentbutton.py index 1c5a926..f24d370 100644 --- a/dist/ba_data/python/bauiv1lib/coop/tournamentbutton.py +++ b/dist/ba_data/python/bauiv1lib/coop/tournamentbutton.py @@ -12,6 +12,11 @@ import bauiv1 as bui if TYPE_CHECKING: from typing import Any, Callable +# As of 1.7.37, no longer charging entry fees for tourneys (tourneys now +# reward chests and the game now makes its money from tokens/ads used to +# speed up chest openings). +USE_ENTRY_FEES = False + class TournamentButton: """Button showing a tournament in coop window.""" @@ -24,6 +29,8 @@ class TournamentButton: select: bool, on_pressed: Callable[[TournamentButton], None], ) -> None: + # pylint: disable=too-many-positional-arguments + # pylint: disable=too-many-statements self._r = 'coopSelectWindow' sclx = 300 scly = 195.0 @@ -32,10 +39,12 @@ class TournamentButton: self.lsbo = bui.getmesh('level_select_button_opaque') self.allow_ads = False self.tournament_id: str | None = None + self.game: str | None = None self.time_remaining: int = 0 self.has_time_remaining: bool = False self.leader: Any = None self.required_league: str | None = None + self._base_x_offs = 0 if USE_ENTRY_FEES else -45.0 self.button = btn = bui.buttonwidget( parent=parent, position=(x + 23, y + 4), @@ -73,8 +82,8 @@ class TournamentButton: self.lock_image = bui.imagewidget( parent=parent, draw_controller=btn, - position=(x + 21 + sclx * 0.5 - image_width * 0.25, y + scly - 150), - size=(image_width * 0.5, image_width * 0.5), + position=(x + 21 + sclx * 0.5 - image_width * 0.15, y + scly - 130), + size=(image_width * 0.3, image_width * 0.3), texture=bui.gettexture('lock'), opacity=0.0, ) @@ -95,69 +104,72 @@ class TournamentButton: header_color = (0.43, 0.4, 0.5, 1) value_color = (0.6, 0.6, 0.6, 1) - x_offs = 0 - bui.textwidget( - parent=parent, - draw_controller=btn, - position=(x + 360, y + scly - 20), - size=(0, 0), - h_align='center', - text=bui.Lstr(resource=f'{self._r}.entryFeeText'), - v_align='center', - maxwidth=100, - scale=0.9, - color=header_color, - flatness=1.0, - ) + x_offs = self._base_x_offs - self.entry_fee_text_top = bui.textwidget( - parent=parent, - draw_controller=btn, - position=(x + 360, y + scly - 60), - size=(0, 0), - h_align='center', - text='-', - v_align='center', - maxwidth=60, - scale=1.3, - color=value_color, - flatness=1.0, - ) - self.entry_fee_text_or = bui.textwidget( - parent=parent, - draw_controller=btn, - position=(x + 360, y + scly - 90), - size=(0, 0), - h_align='center', - text='', - v_align='center', - maxwidth=60, - scale=0.5, - color=value_color, - flatness=1.0, - ) - self.entry_fee_text_remaining = bui.textwidget( - parent=parent, - draw_controller=btn, - position=(x + 360, y + scly - 90), - size=(0, 0), - h_align='center', - text='', - v_align='center', - maxwidth=60, - scale=0.5, - color=value_color, - flatness=1.0, - ) + # No longer using entry fees. + if USE_ENTRY_FEES: + bui.textwidget( + parent=parent, + draw_controller=btn, + position=(x + 360, y + scly - 20), + size=(0, 0), + h_align='center', + text=bui.Lstr(resource=f'{self._r}.entryFeeText'), + v_align='center', + maxwidth=100, + scale=0.9, + color=header_color, + flatness=1.0, + ) - self.entry_fee_ad_image = bui.imagewidget( - parent=parent, - size=(40, 40), - draw_controller=btn, - position=(x + 360 - 20, y + scly - 140), - opacity=0.0, - texture=bui.gettexture('tv'), - ) + self.entry_fee_text_top = bui.textwidget( + parent=parent, + draw_controller=btn, + position=(x + 360, y + scly - 60), + size=(0, 0), + h_align='center', + text='-', + v_align='center', + maxwidth=60, + scale=1.3, + color=value_color, + flatness=1.0, + ) + self.entry_fee_text_or = bui.textwidget( + parent=parent, + draw_controller=btn, + position=(x + 360, y + scly - 90), + size=(0, 0), + h_align='center', + text='', + v_align='center', + maxwidth=60, + scale=0.5, + color=value_color, + flatness=1.0, + ) + self.entry_fee_text_remaining = bui.textwidget( + parent=parent, + draw_controller=btn, + position=(x + 360, y + scly - 90), + size=(0, 0), + h_align='center', + text='', + v_align='center', + maxwidth=60, + scale=0.5, + color=value_color, + flatness=1.0, + ) + + self.entry_fee_ad_image = bui.imagewidget( + parent=parent, + size=(40, 40), + draw_controller=btn, + position=(x + 360 - 20, y + scly - 140), + opacity=0.0, + texture=bui.gettexture('tv'), + ) x_offs += 50 @@ -179,8 +191,8 @@ class TournamentButton: self.button_y = y self.button_scale_y = scly - xo2 = 0 - prize_value_scale = 1.5 + # Offset for prize range/values. + xo2 = 0.0 self.prize_range_1_text = bui.textwidget( parent=parent, @@ -190,7 +202,7 @@ class TournamentButton: h_align='right', v_align='center', maxwidth=50, - text='-', + text='', scale=0.8, color=header_color, flatness=1.0, @@ -201,13 +213,21 @@ class TournamentButton: position=(x + 380 + xo2 + x_offs, y + scly - 93), size=(0, 0), h_align='left', - text='-', + text='', v_align='center', maxwidth=100, - scale=prize_value_scale, color=value_color, flatness=1.0, ) + self._chestsz = 50 + self.prize_chest_1_image = bui.imagewidget( + parent=parent, + draw_controller=btn, + texture=bui.gettexture('white'), + position=(x + 380 + xo2 + x_offs, y + scly - 93), + size=(self._chestsz, self._chestsz), + opacity=0.0, + ) self.prize_range_2_text = bui.textwidget( parent=parent, @@ -215,6 +235,7 @@ class TournamentButton: position=(x + 355 + xo2 + x_offs, y + scly - 93), size=(0, 0), h_align='right', + text='', v_align='center', maxwidth=50, scale=0.8, @@ -230,10 +251,17 @@ class TournamentButton: text='', v_align='center', maxwidth=100, - scale=prize_value_scale, color=value_color, flatness=1.0, ) + self.prize_chest_2_image = bui.imagewidget( + parent=parent, + draw_controller=btn, + texture=bui.gettexture('white'), + position=(x + 380 + xo2 + x_offs, y + scly - 93), + size=(self._chestsz, self._chestsz), + opacity=0.0, + ) self.prize_range_3_text = bui.textwidget( parent=parent, @@ -241,6 +269,7 @@ class TournamentButton: position=(x + 355 + xo2 + x_offs, y + scly - 93), size=(0, 0), h_align='right', + text='', v_align='center', maxwidth=50, scale=0.8, @@ -256,15 +285,22 @@ class TournamentButton: text='', v_align='center', maxwidth=100, - scale=prize_value_scale, color=value_color, flatness=1.0, ) + self.prize_chest_3_image = bui.imagewidget( + parent=parent, + draw_controller=btn, + texture=bui.gettexture('white'), + position=(x + 380 + xo2 + x_offs, y + scly - 93), + size=(self._chestsz, self._chestsz), + opacity=0.0, + ) bui.textwidget( parent=parent, draw_controller=btn, - position=(x + 620 + x_offs, y + scly - 20), + position=(x + 625 + x_offs, y + scly - 20), size=(0, 0), h_align='center', text=bui.Lstr(resource=f'{self._r}.currentBestText'), @@ -278,7 +314,7 @@ class TournamentButton: parent=parent, draw_controller=btn, position=( - x + 620 + x_offs - (170 / 1.4) * 0.5, + x + 625 + x_offs - (170 / 1.4) * 0.5, y + scly - 60 - 40 * 0.5, ), selectable=True, @@ -298,7 +334,7 @@ class TournamentButton: self.current_leader_score_text = bui.textwidget( parent=parent, draw_controller=btn, - position=(x + 620 + x_offs, y + scly - 113 + 10), + position=(x + 625 + x_offs, y + scly - 113 + 10), size=(0, 0), h_align='center', text='-', @@ -311,7 +347,7 @@ class TournamentButton: self.more_scores_button = bui.buttonwidget( parent=parent, - position=(x + 620 + x_offs - 60, y + scly - 50 - 125), + position=(x + 625 + x_offs - 60, y + scly - 50 - 125), color=(0.5, 0.5, 0.6), textcolor=(0.7, 0.7, 0.8), label='-', @@ -329,7 +365,7 @@ class TournamentButton: bui.textwidget( parent=parent, draw_controller=btn, - position=(x + 820 + x_offs, y + scly - 20), + position=(x + 840 + x_offs, y + scly - 20), size=(0, 0), h_align='center', text=bui.Lstr(resource=f'{self._r}.timeRemainingText'), @@ -342,7 +378,7 @@ class TournamentButton: self.time_remaining_value_text = bui.textwidget( parent=parent, draw_controller=btn, - position=(x + 820 + x_offs, y + scly - 68), + position=(x + 840 + x_offs, y + scly - 68), size=(0, 0), h_align='center', text='-', @@ -355,7 +391,7 @@ class TournamentButton: self.time_remaining_out_of_text = bui.textwidget( parent=parent, draw_controller=btn, - position=(x + 820 + x_offs, y + scly - 110), + position=(x + 840 + x_offs, y + scly - 110), size=(0, 0), h_align='center', text='-', @@ -365,6 +401,9 @@ class TournamentButton: color=(0.4, 0.4, 0.5), flatness=1.0, ) + self._lock_update_timer = bui.AppTimer( + 1.03, bui.WeakCall(self._update_lock_state), repeat=True + ) def _pressed(self) -> None: self.on_pressed(self) @@ -405,6 +444,33 @@ class TournamentButton: position=self.more_scores_button.get_screen_space_center(), ) + def _update_lock_state(self) -> None: + + if self.game is None: + return + + assert bui.app.classic is not None + + campaignname, levelname = self.game.split(':') + campaign = bui.app.classic.getcampaign(campaignname) + + enabled = ( + self.required_league is None + and bui.app.classic.is_game_unlocked(self.game) + ) + bui.buttonwidget( + edit=self.button, + color=(0.5, 0.7, 0.2) if enabled else (0.5, 0.5, 0.5), + ) + bui.imagewidget(edit=self.lock_image, opacity=0.0 if enabled else 1.0) + bui.imagewidget( + edit=self.image, + texture=bui.gettexture( + campaign.getlevel(levelname).preview_texture_name + ), + opacity=1.0 if enabled else 0.5, + ) + def update_for_data(self, entry: dict[str, Any]) -> None: """Update for new incoming data.""" # pylint: disable=too-many-statements @@ -414,105 +480,132 @@ class TournamentButton: plus = bui.app.plus assert plus is not None - assert bui.app.classic is not None + classic = bui.app.classic + assert classic is not None + prize_y_offs = ( 34 if 'prizeRange3' in entry else 20 if 'prizeRange2' in entry else 12 ) - x_offs = 90 + x_offs = self._base_x_offs + 90 - # pylint: disable=useless-suppression - # pylint: disable=unbalanced-tuple-unpacking - ( - pr1, - pv1, - pr2, - pv2, - pr3, - pv3, - ) = bui.app.classic.get_tournament_prize_strings(entry) - # pylint: enable=unbalanced-tuple-unpacking - # pylint: enable=useless-suppression + # Special offset for prize ranges/vals. + x_offs2 = x_offs - 20.0 - enabled = 'requiredLeague' not in entry - bui.buttonwidget( - edit=self.button, - color=(0.5, 0.7, 0.2) if enabled else (0.5, 0.5, 0.5), + # Special offset for prize chests. + x_offs2c = x_offs2 + 50 + + # Fetch prize range and trophy strings. + (pr1, pv1, pr2, pv2, pr3, pv3) = classic.get_tournament_prize_strings( + entry, include_tickets=False ) - bui.imagewidget(edit=self.lock_image, opacity=0.0 if enabled else 1.0) + + self.time_remaining = entry['timeRemaining'] + self.has_time_remaining = entry is not None + self.tournament_id = entry['tournamentID'] + self.required_league = entry.get('requiredLeague') + + assert bui.app.classic is not None + self.game = bui.app.classic.accounts.tournament_info[ + self.tournament_id + ]['game'] + assert isinstance(self.game, str) + + campaignname, levelname = self.game.split(':') + campaign = bui.app.classic.getcampaign(campaignname) + + self._update_lock_state() + bui.textwidget( edit=self.prize_range_1_text, text='-' if pr1 == '' else pr1, position=( - self.button_x + 365 + x_offs, + self.button_x + 365 + x_offs2, self.button_y + self.button_scale_y - 93 + prize_y_offs, ), ) - # We want to draw values containing tickets a bit smaller - # (scratch that; we now draw medals a bit bigger). - ticket_char = bui.charstr(bui.SpecialChar.TICKET_BACKING) - prize_value_scale_large = 1.0 - prize_value_scale_small = 1.0 - bui.textwidget( edit=self.prize_value_1_text, text='-' if pv1 == '' else pv1, - scale=( - prize_value_scale_large - if ticket_char not in pv1 - else prize_value_scale_small - ), position=( - self.button_x + 380 + x_offs, + self.button_x + 380 + x_offs2, self.button_y + self.button_scale_y - 93 + prize_y_offs, ), ) + bui.imagewidget( + edit=self.prize_chest_1_image, + position=( + self.button_x + 380 + x_offs2c, + self.button_y + + self.button_scale_y + - 93 + + prize_y_offs + - 0.5 * self._chestsz, + ), + ) + classic.set_tournament_prize_image(entry, 0, self.prize_chest_1_image) bui.textwidget( edit=self.prize_range_2_text, text=pr2, position=( - self.button_x + 365 + x_offs, + self.button_x + 365 + x_offs2, self.button_y + self.button_scale_y - 93 - 45 + prize_y_offs, ), ) bui.textwidget( edit=self.prize_value_2_text, text=pv2, - scale=( - prize_value_scale_large - if ticket_char not in pv2 - else prize_value_scale_small - ), position=( - self.button_x + 380 + x_offs, + self.button_x + 380 + x_offs2, self.button_y + self.button_scale_y - 93 - 45 + prize_y_offs, ), ) + bui.imagewidget( + edit=self.prize_chest_2_image, + position=( + self.button_x + 380 + x_offs2c, + self.button_y + + self.button_scale_y + - 93 + - 45 + + prize_y_offs + - 0.5 * self._chestsz, + ), + ) + classic.set_tournament_prize_image(entry, 1, self.prize_chest_2_image) bui.textwidget( edit=self.prize_range_3_text, text=pr3, position=( - self.button_x + 365 + x_offs, + self.button_x + 365 + x_offs2, self.button_y + self.button_scale_y - 93 - 90 + prize_y_offs, ), ) bui.textwidget( edit=self.prize_value_3_text, text=pv3, - scale=( - prize_value_scale_large - if ticket_char not in pv3 - else prize_value_scale_small - ), position=( - self.button_x + 380 + x_offs, + self.button_x + 380 + x_offs2, self.button_y + self.button_scale_y - 93 - 90 + prize_y_offs, ), ) + bui.imagewidget( + edit=self.prize_chest_3_image, + position=( + self.button_x + 380 + x_offs2c, + self.button_y + + self.button_scale_y + - 93 + - 90 + + prize_y_offs + - 0.5 * self._chestsz, + ), + ) + classic.set_tournament_prize_image(entry, 2, self.prize_chest_3_image) leader_name = '-' leader_score: str | bui.Lstr = '-' @@ -552,52 +645,33 @@ class TournamentButton: edit=self.time_remaining_out_of_text, text=out_of_time_text ) - self.time_remaining = entry['timeRemaining'] - self.has_time_remaining = entry is not None - self.tournament_id = entry['tournamentID'] - self.required_league = ( - None if 'requiredLeague' not in entry else entry['requiredLeague'] - ) + # if self.game is None: + # bui.textwidget(edit=self.button_text, text='-') + # bui.imagewidget( + # edit=self.image, texture=bui.gettexture('black'), opacity=0.2 + # ) + # else: + max_players = bui.app.classic.accounts.tournament_info[ + self.tournament_id + ]['maxPlayers'] - assert bui.app.classic is not None - game = bui.app.classic.accounts.tournament_info[self.tournament_id][ - 'game' - ] - - if game is None: - bui.textwidget(edit=self.button_text, text='-') - bui.imagewidget( - edit=self.image, texture=bui.gettexture('black'), opacity=0.2 - ) - else: - campaignname, levelname = game.split(':') - campaign = bui.app.classic.getcampaign(campaignname) - max_players = bui.app.classic.accounts.tournament_info[ - self.tournament_id - ]['maxPlayers'] - txt = bui.Lstr( - value='${A} ${B}', - subs=[ - ('${A}', campaign.getlevel(levelname).displayname), - ( - '${B}', - bui.Lstr( - resource='playerCountAbbreviatedText', - subs=[('${COUNT}', str(max_players))], - ), + txt = bui.Lstr( + value='${A} ${B}', + subs=[ + ('${A}', campaign.getlevel(levelname).displayname), + ( + '${B}', + bui.Lstr( + resource='playerCountAbbreviatedText', + subs=[('${COUNT}', str(max_players))], ), - ], - ) - bui.textwidget(edit=self.button_text, text=txt) - bui.imagewidget( - edit=self.image, - texture=bui.gettexture( - campaign.getlevel(levelname).preview_texture_name ), - opacity=1.0 if enabled else 0.5, - ) + ], + ) + bui.textwidget(edit=self.button_text, text=txt) fee = entry['fee'] + assert isinstance(fee, int | None) if fee is None: fee_var = None @@ -609,18 +683,23 @@ class TournamentButton: fee_var = 'price.tournament_entry_2' elif fee == 1: fee_var = 'price.tournament_entry_1' + elif fee == -1: + fee_var = None else: if fee != 0: print('Unknown fee value:', fee) fee_var = 'price.tournament_entry_0' - self.allow_ads = allow_ads = entry['allowAds'] + self.allow_ads = allow_ads = ( + entry['allowAds'] if USE_ENTRY_FEES else False + ) - final_fee: int | None = ( + final_fee = ( None if fee_var is None else plus.get_v1_account_misc_read_val(fee_var, '?') ) + assert isinstance(final_fee, int | None) final_fee_str: str | bui.Lstr if fee_var is None: @@ -637,72 +716,77 @@ class TournamentButton: ad_tries_remaining = bui.app.classic.accounts.tournament_info[ self.tournament_id ]['adTriesRemaining'] + assert isinstance(ad_tries_remaining, int | None) free_tries_remaining = bui.app.classic.accounts.tournament_info[ self.tournament_id ]['freeTriesRemaining'] + assert isinstance(free_tries_remaining, int | None) - # Now, if this fee allows ads and we support video ads, show - # the 'or ad' version. - if allow_ads and plus.has_video_ads(): - ads_enabled = plus.have_incentivized_ad() - bui.imagewidget( - edit=self.entry_fee_ad_image, - opacity=1.0 if ads_enabled else 0.25, - ) - or_text = ( - bui.Lstr(resource='orText', subs=[('${A}', ''), ('${B}', '')]) - .evaluate() - .strip() - ) - bui.textwidget(edit=self.entry_fee_text_or, text=or_text) - bui.textwidget( - edit=self.entry_fee_text_top, - position=( - self.button_x + 360, - self.button_y + self.button_scale_y - 60, - ), - scale=1.3, - text=final_fee_str, - ) + # Now, if this fee allows ads and we support video ads, show the + # 'or ad' version. + if USE_ENTRY_FEES: + if allow_ads and plus.has_video_ads(): + ads_enabled = plus.have_incentivized_ad() + bui.imagewidget( + edit=self.entry_fee_ad_image, + opacity=1.0 if ads_enabled else 0.25, + ) + or_text = ( + bui.Lstr( + resource='orText', subs=[('${A}', ''), ('${B}', '')] + ) + .evaluate() + .strip() + ) + bui.textwidget(edit=self.entry_fee_text_or, text=or_text) + bui.textwidget( + edit=self.entry_fee_text_top, + position=( + self.button_x + 360, + self.button_y + self.button_scale_y - 60, + ), + scale=1.3, + text=final_fee_str, + ) - # Possibly show number of ad-plays remaining. - bui.textwidget( - edit=self.entry_fee_text_remaining, - position=( - self.button_x + 360, - self.button_y + self.button_scale_y - 146, - ), - text=( - '' - if ad_tries_remaining in [None, 0] - else ('' + str(ad_tries_remaining)) - ), - color=(0.6, 0.6, 0.6, 1 if ads_enabled else 0.2), - ) - else: - bui.imagewidget(edit=self.entry_fee_ad_image, opacity=0.0) - bui.textwidget(edit=self.entry_fee_text_or, text='') - bui.textwidget( - edit=self.entry_fee_text_top, - position=( - self.button_x + 360, - self.button_y + self.button_scale_y - 80, - ), - scale=1.3, - text=final_fee_str, - ) + # Possibly show number of ad-plays remaining. + bui.textwidget( + edit=self.entry_fee_text_remaining, + position=( + self.button_x + 360, + self.button_y + self.button_scale_y - 146, + ), + text=( + '' + if ad_tries_remaining in [None, 0] + else ('' + str(ad_tries_remaining)) + ), + color=(0.6, 0.6, 0.6, 1 if ads_enabled else 0.2), + ) + else: + bui.imagewidget(edit=self.entry_fee_ad_image, opacity=0.0) + bui.textwidget(edit=self.entry_fee_text_or, text='') + bui.textwidget( + edit=self.entry_fee_text_top, + position=( + self.button_x + 360, + self.button_y + self.button_scale_y - 80, + ), + scale=1.3, + text=final_fee_str, + ) - # Possibly show number of free-plays remaining. - bui.textwidget( - edit=self.entry_fee_text_remaining, - position=( - self.button_x + 360, - self.button_y + self.button_scale_y - 100, - ), - text=( - '' - if (free_tries_remaining in [None, 0] or final_fee != 0) - else ('' + str(free_tries_remaining)) - ), - color=(0.6, 0.6, 0.6, 1), - ) + # Possibly show number of free-plays remaining. + bui.textwidget( + edit=self.entry_fee_text_remaining, + position=( + self.button_x + 360, + self.button_y + self.button_scale_y - 100, + ), + text=( + '' + if (free_tries_remaining in [None, 0] or final_fee != 0) + else ('' + str(free_tries_remaining)) + ), + color=(0.6, 0.6, 0.6, 1), + ) diff --git a/dist/ba_data/python/bauiv1lib/creditslist.py b/dist/ba_data/python/bauiv1lib/credits.py similarity index 76% rename from dist/ba_data/python/bauiv1lib/creditslist.py rename to dist/ba_data/python/bauiv1lib/credits.py index 711d3ff..c605c04 100644 --- a/dist/ba_data/python/bauiv1lib/creditslist.py +++ b/dist/ba_data/python/bauiv1lib/credits.py @@ -5,8 +5,9 @@ from __future__ import annotations import os +import json import logging -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, override import bauiv1 as bui @@ -14,113 +15,116 @@ if TYPE_CHECKING: from typing import Sequence -class CreditsListWindow(bui.Window): +class CreditsWindow(bui.MainWindow): """Window for displaying game credits.""" - def __init__(self, origin_widget: bui.Widget | None = None): + def __init__( + self, + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, + ): # pylint: disable=too-many-locals # pylint: disable=too-many-statements - import json bui.set_analytics_screen('Credits Window') - # if they provided an origin-widget, scale up from that - scale_origin: tuple[float, float] | None - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None - transition = 'in_right' - assert bui.app.classic is not None uiscale = bui.app.ui_v1.uiscale - width = 870 if uiscale is bui.UIScale.SMALL else 670 - x_inset = 100 if uiscale is bui.UIScale.SMALL else 0 - height = 398 if uiscale is bui.UIScale.SMALL else 500 + width = 990 if uiscale is bui.UIScale.SMALL else 670 + height = 750 if uiscale is bui.UIScale.SMALL else 500 + + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 2.0 + if uiscale is bui.UIScale.SMALL + else 1.2 if uiscale is bui.UIScale.MEDIUM else 1.0 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_width = min(width - 80, screensize[0] / scale) + target_height = min(height - 80, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * height + 0.5 * target_height + 30.0 + + scroll_width = target_width + scroll_height = target_height - 29 + scroll_y = yoffs - 58 - scroll_height self._r = 'creditsWindow' super().__init__( root_widget=bui.containerwidget( size=(width, height), - transition=transition, - toolbar_visibility='menu_minimal', - scale_origin_stack_offset=scale_origin, - scale=( - 2.0 + toolbar_visibility=( + 'menu_minimal' if uiscale is bui.UIScale.SMALL - else 1.3 if uiscale is bui.UIScale.MEDIUM else 1.0 + else 'menu_full' ), - stack_offset=( - (0, -8) if uiscale is bui.UIScale.SMALL else (0, 0) - ), - ) + scale=scale, + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) - if bui.app.ui_v1.use_toolbars and uiscale is bui.UIScale.SMALL: + if uiscale is bui.UIScale.SMALL: bui.containerwidget( - edit=self._root_widget, on_cancel_call=self._back + edit=self._root_widget, on_cancel_call=self.main_window_back ) else: btn = bui.buttonwidget( parent=self._root_widget, - position=( - 40 + x_inset, - height - (68 if uiscale is bui.UIScale.SMALL else 62), - ), - size=(140, 60), + position=(40, yoffs - 46), + size=(60, 48), scale=0.8, - label=bui.Lstr(resource='backText'), - button_type='back', - on_activate_call=self._back, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + on_activate_call=self.main_window_back, autoselect=True, ) bui.containerwidget(edit=self._root_widget, cancel_button=btn) - bui.buttonwidget( - edit=btn, - button_type='backSmall', - position=( - 40 + x_inset, - height - (68 if uiscale is bui.UIScale.SMALL else 62) + 5, - ), - size=(60, 48), - label=bui.charstr(bui.SpecialChar.BACK), - ) - bui.textwidget( parent=self._root_widget, - position=(0, height - (59 if uiscale is bui.UIScale.SMALL else 54)), - size=(width, 30), + position=( + width * 0.5, + yoffs - (44 if uiscale is bui.UIScale.SMALL else 28), + ), + size=(0, 0), + scale=0.8 if uiscale is bui.UIScale.SMALL else 1.0, text=bui.Lstr( resource=f'{self._r}.titleText', subs=[('${APP_NAME}', bui.Lstr(resource='titleText'))], ), h_align='center', - color=bui.app.ui_v1.title_color, - maxwidth=330, v_align='center', + color=bui.app.ui_v1.title_color, + maxwidth=scroll_width * 0.7, ) scroll = bui.scrollwidget( parent=self._root_widget, - position=(40 + x_inset, 35), - size=(width - (80 + 2 * x_inset), height - 100), + size=(scroll_width, scroll_height), + position=(width * 0.5 - scroll_width * 0.5, scroll_y), capture_arrows=True, + border_opacity=0.4, + center_small_content_horizontally=True, ) - if bui.app.ui_v1.use_toolbars: + bui.widget( + edit=scroll, + right_widget=bui.get_special_widget('squad_button'), + ) + if uiscale is bui.UIScale.SMALL: bui.widget( edit=scroll, - right_widget=bui.get_special_widget('party_button'), + left_widget=bui.get_special_widget('back_button'), ) - if uiscale is bui.UIScale.SMALL: - bui.widget( - edit=scroll, - left_widget=bui.get_special_widget('back_button'), - ) def _format_names(names2: Sequence[str], inset: float) -> str: sval = '' @@ -327,7 +331,7 @@ class CreditsListWindow(bui.Window): line_height = 20 scale = 0.55 - self._sub_width = width - 80 + self._sub_width = min(700, width - 80) self._sub_height = line_height * len(lines) + 40 container = self._subcontainer = bui.containerwidget( @@ -335,7 +339,6 @@ class CreditsListWindow(bui.Window): size=(self._sub_width, self._sub_height), background=False, claims_left_right=False, - claims_tab=False, ) voffs = 0 @@ -354,18 +357,12 @@ class CreditsListWindow(bui.Window): ) voffs -= line_height - def _back(self) -> None: - from bauiv1lib.mainmenu import MainMenuWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - MainMenuWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) ) diff --git a/dist/ba_data/python/bauiv1lib/discord.py b/dist/ba_data/python/bauiv1lib/discord.py index de891b2..40aa34f 100644 --- a/dist/ba_data/python/bauiv1lib/discord.py +++ b/dist/ba_data/python/bauiv1lib/discord.py @@ -51,7 +51,7 @@ class DiscordWindow(bui.Window): ) ) - if app.ui_v1.use_toolbars and uiscale is bui.UIScale.SMALL: + if uiscale is bui.UIScale.SMALL: bui.containerwidget( edit=self._root_widget, on_cancel_call=self._do_back ) diff --git a/dist/ba_data/python/bauiv1lib/fileselector.py b/dist/ba_data/python/bauiv1lib/fileselector.py index a2547b2..b99164f 100644 --- a/dist/ba_data/python/bauiv1lib/fileselector.py +++ b/dist/ba_data/python/bauiv1lib/fileselector.py @@ -16,23 +16,26 @@ if TYPE_CHECKING: from typing import Any, Callable, Sequence -class FileSelectorWindow(bui.Window): +class FileSelectorWindow(bui.MainWindow): """Window for selecting files.""" def __init__( self, path: str, callback: Callable[[str | None], Any] | None = None, + *, show_base_path: bool = True, valid_file_extensions: Sequence[str] | None = None, allow_folders: bool = False, + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, ): if valid_file_extensions is None: valid_file_extensions = [] assert bui.app.classic is not None uiscale = bui.app.ui_v1.uiscale - self._width = 700 if uiscale is bui.UIScale.SMALL else 600 - self._x_inset = x_inset = 50 if uiscale is bui.UIScale.SMALL else 0 + self._width = 850 if uiscale is bui.UIScale.SMALL else 600 + self._x_inset = x_inset = 100 if uiscale is bui.UIScale.SMALL else 0 self._height = 365 if uiscale is bui.UIScale.SMALL else 418 self._callback = callback self._base_path = path @@ -51,16 +54,17 @@ class FileSelectorWindow(bui.Window): super().__init__( root_widget=bui.containerwidget( size=(self._width, self._height), - transition='in_right', scale=( - 2.23 + 1.93 if uiscale is bui.UIScale.SMALL else 1.4 if uiscale is bui.UIScale.MEDIUM else 1.0 ), stack_offset=( (0, -35) if uiscale is bui.UIScale.SMALL else (0, 0) ), - ) + ), + transition=transition, + origin_widget=origin_widget, ) bui.textwidget( parent=self._root_widget, @@ -135,6 +139,31 @@ class FileSelectorWindow(bui.Window): ) self._set_path(path) + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + + # Pull everything out of self here. If we do it below in the lambda, + # we'll keep self alive which is bad. + path = self._base_path + callback = self._callback + show_base_path = self._show_base_path + valid_file_extensions = self._valid_file_extensions + allow_folders = self._allow_folders + + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, + origin_widget=origin_widget, + path=path, + callback=callback, + show_base_path=show_base_path, + valid_file_extensions=valid_file_extensions, + allow_folders=allow_folders, + ) + ) + def _on_up_press(self) -> None: self._on_entry_activated('..') @@ -147,7 +176,6 @@ class FileSelectorWindow(bui.Window): bui.getsound('error').play() def _on_folder_entry_activated(self) -> None: - bui.containerwidget(edit=self._root_widget, transition='out_right') if self._callback is not None: assert self._path is not None self._callback(self._path) @@ -176,9 +204,6 @@ class FileSelectorWindow(bui.Window): elif os.path.isfile(test_path): if self._is_valid_file_path(test_path): bui.getsound('swish').play() - bui.containerwidget( - edit=self._root_widget, transition='out_right' - ) if self._callback is not None: self._callback(test_path) else: @@ -362,12 +387,10 @@ class FileSelectorWindow(bui.Window): bui.containerwidget( edit=self._scrollwidget, claims_left_right=False, - claims_tab=False, ) bui.containerwidget( edit=self._subcontainer, claims_left_right=False, - claims_tab=False, selection_loops=False, print_list_exit_instructions=False, ) @@ -458,6 +481,6 @@ class FileSelectorWindow(bui.Window): ) def _cancel(self) -> None: - bui.containerwidget(edit=self._root_widget, transition='out_right') + self.main_window_back() if self._callback is not None: self._callback(None) diff --git a/dist/ba_data/python/bauiv1lib/gather/__init__.py b/dist/ba_data/python/bauiv1lib/gather/__init__.py index 6e35d6a..93c9073 100644 --- a/dist/ba_data/python/bauiv1lib/gather/__init__.py +++ b/dist/ba_data/python/bauiv1lib/gather/__init__.py @@ -7,10 +7,14 @@ from __future__ import annotations import weakref import logging from enum import Enum +from typing import override, TYPE_CHECKING from bauiv1lib.tabs import TabRow import bauiv1 as bui +if TYPE_CHECKING: + from bauiv1lib.play import PlaylistSelectContext + class GatherTab: """Defines a tab for use in the gather UI.""" @@ -40,6 +44,7 @@ class GatherTab: The tab should create and return a container widget covering the specified region. """ + # pylint: disable=too-many-positional-arguments raise RuntimeError('Should not get here.') def on_deactivate(self) -> None: @@ -52,7 +57,7 @@ class GatherTab: """Called when the parent window is restoring state.""" -class GatherWindow(bui.Window): +class GatherWindow(bui.MainWindow): """Window for joining/inviting friends.""" class TabID(Enum): @@ -69,7 +74,6 @@ class GatherWindow(bui.Window): transition: str | None = 'in_right', origin_widget: bui.Widget | None = None, ): - # pylint: disable=too-many-statements # pylint: disable=too-many-locals # pylint: disable=cyclic-import from bauiv1lib.gather.abouttab import AboutGatherTab @@ -82,96 +86,99 @@ class GatherWindow(bui.Window): assert plus is not None bui.set_analytics_screen('Gather Window') - scale_origin: tuple[float, float] | None - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_location('Gather') - bui.set_party_icon_always_visible(True) uiscale = bui.app.ui_v1.uiscale - self._width = 1440 if uiscale is bui.UIScale.SMALL else 1040 - x_offs = 200 if uiscale is bui.UIScale.SMALL else 0 - self._height = ( - 582 + self._width = ( + 1640 if uiscale is bui.UIScale.SMALL - else 680 if uiscale is bui.UIScale.MEDIUM else 800 + else 1100 if uiscale is bui.UIScale.MEDIUM else 1200 + ) + self._height = ( + 1000 + if uiscale is bui.UIScale.SMALL + else 730 if uiscale is bui.UIScale.MEDIUM else 900 ) self._current_tab: GatherWindow.TabID | None = None - extra_top = 20 if uiscale is bui.UIScale.SMALL else 0 self._r = 'gatherWindow' + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 1.4 + if uiscale is bui.UIScale.SMALL + else 0.88 if uiscale is bui.UIScale.MEDIUM else 0.66 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_width = min(self._width - 130, screensize[0] / scale) + target_height = min(self._height - 130, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * self._height + 0.5 * target_height + 30.0 + + self._scroll_width = target_width + self._scroll_height = target_height - 65 + self._scroll_bottom = yoffs - 93 - self._scroll_height + self._scroll_left = (self._width - self._scroll_width) * 0.5 + super().__init__( root_widget=bui.containerwidget( - size=(self._width, self._height + extra_top), - transition=transition, - toolbar_visibility='menu_minimal', - scale_origin_stack_offset=scale_origin, - scale=( - 1.3 + size=(self._width, self._height), + toolbar_visibility=( + 'menu_tokens' if uiscale is bui.UIScale.SMALL - else 0.97 if uiscale is bui.UIScale.MEDIUM else 0.8 + else 'menu_full' ), - stack_offset=( - (0, -11) - if uiscale is bui.UIScale.SMALL - else (0, 0) if uiscale is bui.UIScale.MEDIUM else (0, 0) - ), - ) + scale=scale, + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) - if uiscale is bui.UIScale.SMALL and bui.app.ui_v1.use_toolbars: + if uiscale is bui.UIScale.SMALL: bui.containerwidget( - edit=self._root_widget, on_cancel_call=self._back + edit=self._root_widget, on_cancel_call=self.main_window_back ) self._back_button = None else: self._back_button = btn = bui.buttonwidget( parent=self._root_widget, - position=(70 + x_offs, self._height - 74), - size=(140, 60), + position=(70, yoffs - 43), + size=(60, 60), scale=1.1, autoselect=True, - label=bui.Lstr(resource='backText'), - button_type='back', - on_activate_call=self._back, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + on_activate_call=self.main_window_back, ) bui.containerwidget(edit=self._root_widget, cancel_button=btn) - bui.buttonwidget( - edit=btn, - button_type='backSmall', - position=(70 + x_offs, self._height - 78), - size=(60, 60), - label=bui.charstr(bui.SpecialChar.BACK), - ) - condensed = uiscale is not bui.UIScale.LARGE - t_offs_y = ( - 0 if not condensed else 25 if uiscale is bui.UIScale.MEDIUM else 17 - ) bui.textwidget( parent=self._root_widget, - position=(self._width * 0.5, self._height - 42 + t_offs_y), + position=( + ( + self._width * 0.5 + + ( + (self._scroll_width * -0.5 + 170.0 - 70.0) + if uiscale is bui.UIScale.SMALL + else 0.0 + ) + ), + yoffs - (64 if uiscale is bui.UIScale.SMALL else 4), + ), size=(0, 0), color=bui.app.ui_v1.title_color, - scale=( - 1.5 - if not condensed - else 1.0 if uiscale is bui.UIScale.MEDIUM else 0.6 - ), - h_align='center', + scale=1.3 if uiscale is bui.UIScale.SMALL else 1.0, + h_align='left' if uiscale is bui.UIScale.SMALL else 'center', v_align='center', - text=bui.Lstr(resource=f'{self._r}.titleText'), - maxwidth=550, + text=(bui.Lstr(resource=f'{self._r}.titleText')), + maxwidth=135 if uiscale is bui.UIScale.SMALL else 320, ) - scroll_buffer_h = 130 + 2 * x_offs - tab_buffer_h = (320 if condensed else 250) + 2 * x_offs - # Build up the set of tabs we want. tabdefs: list[tuple[GatherWindow.TabID, bui.Lstr]] = [ (self.TabID.ABOUT, bui.Lstr(resource=f'{self._r}.aboutText')) @@ -193,14 +200,16 @@ class GatherWindow(bui.Window): (self.TabID.MANUAL, bui.Lstr(resource=f'{self._r}.manualText')) ) - # On small UI, push our tabs up closer to the top of the screen to - # save a bit of space. - tabs_top_extra = 42 if condensed else 0 + tab_inset = 250.0 if uiscale is bui.UIScale.SMALL else 100.0 + self._tab_row = TabRow( self._root_widget, tabdefs, - pos=(tab_buffer_h * 0.5, self._height - 130 + tabs_top_extra), - size=(self._width - tab_buffer_h, 50), + size=(self._scroll_width - 2.0 * tab_inset, 50), + pos=( + self._scroll_left + tab_inset, + self._scroll_bottom + self._scroll_height - 4.0, + ), on_select_call=bui.WeakCall(self._set_tab), ) @@ -218,64 +227,70 @@ class GatherWindow(bui.Window): if tabtype is not None: self._tabs[tab_id] = tabtype(self) - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=self._tab_row.tabs[tabdefs[-1][0]].button, - right_widget=bui.get_special_widget('party_button'), - ) - if uiscale is bui.UIScale.SMALL: - bui.widget( - edit=self._tab_row.tabs[tabdefs[0][0]].button, - left_widget=bui.get_special_widget('back_button'), - ) - - self._scroll_width = self._width - scroll_buffer_h - self._scroll_height = self._height - 180.0 + tabs_top_extra - - self._scroll_left = (self._width - self._scroll_width) * 0.5 - self._scroll_bottom = ( - self._height - self._scroll_height - 79 - 48 + tabs_top_extra + # Eww; tokens meter may or may not be here; should be smarter + # about this. + bui.widget( + edit=self._tab_row.tabs[tabdefs[-1][0]].button, + right_widget=bui.get_special_widget('tokens_meter'), ) - buffer_h = 10 - buffer_v = 4 + if uiscale is bui.UIScale.SMALL: + bui.widget( + edit=self._tab_row.tabs[tabdefs[0][0]].button, + left_widget=bui.get_special_widget('back_button'), + up_widget=bui.get_special_widget('back_button'), + ) # Not actually using a scroll widget anymore; just an image. bui.imagewidget( parent=self._root_widget, + size=(self._scroll_width, self._scroll_height), position=( - self._scroll_left - buffer_h, - self._scroll_bottom - buffer_v, - ), - size=( - self._scroll_width + 2 * buffer_h, - self._scroll_height + 2 * buffer_v, + self._width * 0.5 - self._scroll_width * 0.5, + self._scroll_bottom, ), texture=bui.gettexture('scrollWidget'), mesh_transparent=bui.getmesh('softEdgeOutside'), + opacity=0.4, ) self._tab_container: bui.Widget | None = None self._restore_state() - def __del__(self) -> None: - bui.set_party_icon_always_visible(False) + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) - def playlist_select(self, origin_widget: bui.Widget) -> None: + @override + def on_main_window_close(self) -> None: + self._save_state() + + def playlist_select( + self, + origin_widget: bui.Widget, + context: PlaylistSelectContext, + ) -> None: """Called by the private-hosting tab to select a playlist.""" from bauiv1lib.play import PlayWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # Avoid redundant window spawns. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.selecting_private_party_playlist = True - bui.app.ui_v1.set_main_menu_window( - PlayWindow(origin_widget=origin_widget).get_root_widget(), - from_window=self._root_widget, + playwindow = PlayWindow( + origin_widget=origin_widget, playlist_select_context=context ) + self.main_window_replace(playwindow) + + # Grab the newly-set main-window's back-state; that will lead us + # back here once we're done going down our main-window + # rabbit-hole for playlist selection. + context.back_state = playwindow.main_window_back_state def _set_tab(self, tab_id: TabID) -> None: if self._current_tab is tab_id: @@ -340,8 +355,6 @@ class GatherWindow(bui.Window): logging.exception('Error saving state for %s.', self) def _restore_state(self) -> None: - from efro.util import enum_by_value - try: for tab in self._tabs.values(): tab.restore_state() @@ -354,7 +367,7 @@ class GatherWindow(bui.Window): current_tab = self.TabID.ABOUT gather_tab_val = bui.app.config.get('Gather Tab') try: - stored_tab = enum_by_value(self.TabID, gather_tab_val) + stored_tab = self.TabID(gather_tab_val) if stored_tab in self._tab_row.tabs: current_tab = stored_tab except ValueError: @@ -366,9 +379,7 @@ class GatherWindow(bui.Window): sel = self._tab_container elif isinstance(sel_name, str) and sel_name.startswith('Tab:'): try: - sel_tab_id = enum_by_value( - self.TabID, sel_name.split(':')[-1] - ) + sel_tab_id = self.TabID(sel_name.split(':')[-1]) except ValueError: sel_tab_id = self.TabID.ABOUT sel = self._tab_row.tabs[sel_tab_id].button @@ -378,20 +389,3 @@ class GatherWindow(bui.Window): except Exception: logging.exception('Error restoring state for %s.', self) - - def _back(self) -> None: - from bauiv1lib.mainmenu import MainMenuWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - self._save_state() - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - MainMenuWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) diff --git a/dist/ba_data/python/bauiv1lib/gather/abouttab.py b/dist/ba_data/python/bauiv1lib/gather/abouttab.py index 086471e..b677637 100644 --- a/dist/ba_data/python/bauiv1lib/gather/abouttab.py +++ b/dist/ba_data/python/bauiv1lib/gather/abouttab.py @@ -27,6 +27,7 @@ class AboutGatherTab(GatherTab): region_bottom: float, ) -> bui.Widget: # pylint: disable=too-many-locals + # pylint: disable=too-many-positional-arguments plus = bui.app.plus assert plus is not None @@ -157,6 +158,7 @@ class AboutGatherTab(GatherTab): autoselect=True, on_activate_call=bui.WeakCall(self._invite_to_try_press), up_widget=tab_button, + show_buffer_top=500, ) y -= invite_height else: @@ -198,7 +200,7 @@ class AboutGatherTab(GatherTab): return scroll_widget def _invite_to_try_press(self) -> None: - from bauiv1lib.account import show_sign_in_prompt + from bauiv1lib.account.signin import show_sign_in_prompt from bauiv1lib.appinvite import handle_app_invites_press plus = bui.app.plus diff --git a/dist/ba_data/python/bauiv1lib/gather/manualtab.py b/dist/ba_data/python/bauiv1lib/gather/manualtab.py index 8c889ef..23d7621 100644 --- a/dist/ba_data/python/bauiv1lib/gather/manualtab.py +++ b/dist/ba_data/python/bauiv1lib/gather/manualtab.py @@ -47,11 +47,15 @@ class _HostLookupThread(Thread): try: import socket - result = [ + aresult = [ item[-1][0] for item in socket.getaddrinfo(self.name, self._port) ][0] + if isinstance(aresult, int): + raise RuntimeError('Unexpected getaddrinfo int result') + result = aresult except Exception: + # Hmm should we be logging this? result = None bui.pushcall( lambda: self._call(result, self._port), from_other_thread=True @@ -89,10 +93,10 @@ class ManualGatherTab(GatherTab): self._container: bui.Widget | None = None self._join_by_address_text: bui.Widget | None = None self._favorites_text: bui.Widget | None = None - self._width: int | None = None - self._height: int | None = None - self._scroll_width: int | None = None - self._scroll_height: int | None = None + self._width: float | None = None + self._height: float | None = None + self._scroll_width: float | None = None + self._scroll_height: float | None = None self._favorites_scroll_width: int | None = None self._favorites_connect_button: bui.Widget | None = None self._scrollwidget: bui.Widget | None = None @@ -114,6 +118,7 @@ class ManualGatherTab(GatherTab): region_left: float, region_bottom: float, ) -> bui.Widget: + # pylint: disable=too-many-positional-arguments c_width = region_width c_height = region_height - 20 @@ -241,7 +246,7 @@ class ManualGatherTab(GatherTab): self._build_join_by_address_tab(region_width, region_height) if value is SubTabType.FAVORITES: - self._build_favorites_tab(region_height) + self._build_favorites_tab(region_width, region_height) # The old manual tab def _build_join_by_address_tab( @@ -276,7 +281,9 @@ class ManualGatherTab(GatherTab): maxwidth=380, size=(420, 60), ) + assert self._join_by_address_text is not None bui.widget(edit=self._join_by_address_text, down_widget=txt) + assert self._favorites_text is not None bui.widget(edit=self._favorites_text, down_widget=txt) bui.textwidget( parent=self._container, @@ -348,14 +355,16 @@ class ManualGatherTab(GatherTab): ) bui.widget(edit=self._check_button, up_widget=btn) - # Tab containing saved favorite addresses - def _build_favorites_tab(self, region_height: float) -> None: + # Tab containing saved favorite addresses. + def _build_favorites_tab( + self, region_width: float, region_height: float + ) -> None: c_height = region_height - 20 v = c_height - 35 - 25 - 30 assert bui.app.classic is not None uiscale = bui.app.ui_v1.uiscale - self._width = 1240 if uiscale is bui.UIScale.SMALL else 1040 + self._width = region_width x_inset = 100 if uiscale is bui.UIScale.SMALL else 0 self._height = ( 578 @@ -400,7 +409,7 @@ class ManualGatherTab(GatherTab): self._favorites_connect_button = btn1 = bui.buttonwidget( parent=self._container, size=(b_width, b_height), - position=(40 if uiscale is bui.UIScale.SMALL else 40, btnv), + position=(140 if uiscale is bui.UIScale.SMALL else 40, btnv), button_type='square', color=(0.6, 0.53, 0.63), textcolor=(0.75, 0.7, 0.8), @@ -409,7 +418,7 @@ class ManualGatherTab(GatherTab): label=bui.Lstr(resource='gatherWindow.manualConnectText'), autoselect=True, ) - if uiscale is bui.UIScale.SMALL and bui.app.ui_v1.use_toolbars: + if uiscale is bui.UIScale.SMALL: bui.widget( edit=btn1, left_widget=bui.get_special_widget('back_button'), @@ -418,7 +427,7 @@ class ManualGatherTab(GatherTab): bui.buttonwidget( parent=self._container, size=(b_width, b_height), - position=(40 if uiscale is bui.UIScale.SMALL else 40, btnv), + position=(140 if uiscale is bui.UIScale.SMALL else 40, btnv), button_type='square', color=(0.6, 0.53, 0.63), textcolor=(0.75, 0.7, 0.8), @@ -431,7 +440,7 @@ class ManualGatherTab(GatherTab): bui.buttonwidget( parent=self._container, size=(b_width, b_height), - position=(40 if uiscale is bui.UIScale.SMALL else 40, btnv), + position=(140 if uiscale is bui.UIScale.SMALL else 40, btnv), button_type='square', color=(0.6, 0.53, 0.63), textcolor=(0.75, 0.7, 0.8), @@ -444,7 +453,7 @@ class ManualGatherTab(GatherTab): v -= sub_scroll_height + 23 self._scrollwidget = scrlw = bui.scrollwidget( parent=self._container, - position=(190 if uiscale is bui.UIScale.SMALL else 225, v), + position=(290 if uiscale is bui.UIScale.SMALL else 225, v), size=(sub_scroll_width, sub_scroll_height), claims_left_right=True, ) @@ -469,7 +478,7 @@ class ManualGatherTab(GatherTab): scale=1.2, position=( ( - (190 if uiscale is bui.UIScale.SMALL else 225) + (240 if uiscale is bui.UIScale.SMALL else 225) + sub_scroll_width * 0.5 ), v + sub_scroll_height * 0.5, @@ -760,6 +769,7 @@ class ManualGatherTab(GatherTab): claims_left_right=bool(servers), claims_up_down=bool(servers), ) + assert self._scrollwidget is not None bui.widget( edit=self._scrollwidget, up_widget=self._favorites_text, @@ -864,6 +874,11 @@ class ManualGatherTab(GatherTab): config['Last Manual Party Connect Address'] = resolved_address config['Last Manual Party Connect Port'] = port config.commit() + + # Store UI location to return to when done. + if bs.app.classic is not None: + bs.app.classic.save_ui_state() + bs.connect_to_party(resolved_address, port=port) def _run_addr_fetch(self) -> None: diff --git a/dist/ba_data/python/bauiv1lib/gather/nearbytab.py b/dist/ba_data/python/bauiv1lib/gather/nearbytab.py index 3301204..5a6b5a9 100644 --- a/dist/ba_data/python/bauiv1lib/gather/nearbytab.py +++ b/dist/ba_data/python/bauiv1lib/gather/nearbytab.py @@ -53,6 +53,11 @@ class NetScanner: self._last_selected_host = host def _on_activate(self, host: dict[str, Any]) -> None: + + # Store UI location to return to when done. + if bs.app.classic is not None: + bs.app.classic.save_ui_state() + bs.connect_to_party(host['address']) def update(self) -> None: @@ -115,6 +120,7 @@ class NearbyGatherTab(GatherTab): region_left: float, region_bottom: float, ) -> bui.Widget: + # pylint: disable=too-many-positional-arguments c_width = region_width c_height = region_height - 20 sub_scroll_height = c_height - 85 diff --git a/dist/ba_data/python/bauiv1lib/gather/privatetab.py b/dist/ba_data/python/bauiv1lib/gather/privatetab.py index 223d6d2..5a46e81 100644 --- a/dist/ba_data/python/bauiv1lib/gather/privatetab.py +++ b/dist/ba_data/python/bauiv1lib/gather/privatetab.py @@ -22,8 +22,9 @@ from bacommon.net import ( PrivatePartyConnectResult, ) from bauiv1lib.gather import GatherTab +from bauiv1lib.play import PlaylistSelectContext -from bauiv1lib.gettokens import GetTokensWindow, show_get_tokens_prompt +from bauiv1lib.gettokens import show_get_tokens_prompt import bascenev1 as bs import bauiv1 as bui @@ -49,6 +50,7 @@ class State: """Our core state that persists while the app is running.""" sub_tab: SubTabType = SubTabType.JOIN + playlist_select_context: PlaylistSelectContext | None = None class PrivateGatherTab(GatherTab): @@ -60,7 +62,7 @@ class PrivateGatherTab(GatherTab): self._state: State = State() self._last_datacode_refresh_time: float | None = None self._hostingstate = PrivateHostingState() - self._v2state: bacommon.cloud.BSPrivatePartyResponse | None = None + self._v2state: bacommon.bs.PrivatePartyResponse | None = None self._join_sub_tab_text: bui.Widget | None = None self._host_sub_tab_text: bui.Widget | None = None self._update_timer: bui.AppTimer | None = None @@ -97,6 +99,7 @@ class PrivateGatherTab(GatherTab): region_left: float, region_bottom: float, ) -> bui.Widget: + # pylint: disable=too-many-positional-arguments self._c_width = region_width self._c_height = region_height - 20 self._container = bui.containerwidget( @@ -336,7 +339,7 @@ class PrivateGatherTab(GatherTab): if plus.accounts.primary is not None: with plus.accounts.primary: plus.cloud.send_message_cb( - bacommon.cloud.BSPrivatePartyMessage( + bacommon.bs.PrivatePartyMessage( need_datacode=( self._last_datacode_refresh_time is None or time.monotonic() @@ -352,7 +355,7 @@ class PrivateGatherTab(GatherTab): self._last_v2_state_query_time = now def _on_private_party_query_response( - self, response: bacommon.cloud.BSPrivatePartyResponse | Exception + self, response: bacommon.bs.PrivatePartyResponse | Exception ) -> None: if isinstance(response, Exception): self._debug_server_comm('got pp v2 state response (err)') @@ -539,7 +542,7 @@ class PrivateGatherTab(GatherTab): btn = bui.buttonwidget( parent=self._container, size=(300, 70), - label=bui.Lstr(resource='gatherWindow.' 'manualConnectText'), + label=bui.Lstr(resource='gatherWindow.manualConnectText'), position=(self._c_width * 0.5 - 150, self._c_height - 350), on_activate_call=self._join_connect_press, autoselect=True, @@ -548,18 +551,11 @@ class PrivateGatherTab(GatherTab): edit=self._join_party_code_text, on_return_press_call=btn.activate ) - def _on_get_tokens_press(self) -> None: - if self._waiting_for_start_stop_response: - return - - # Bring up get-tickets window and then kill ourself (we're on - # the overlay layer so we'd show up above it). - GetTokensWindow(origin_widget=self._get_tokens_button) - def _build_host_tab(self) -> None: # pylint: disable=too-many-branches # pylint: disable=too-many-statements - assert bui.app.classic is not None + classic = bui.app.classic + assert classic is not None plus = bui.app.plus assert plus is not None @@ -636,41 +632,7 @@ class PrivateGatherTab(GatherTab): and hostingstate.tickets_to_host_now != 0 and not havegoldpass ): - if not bui.app.ui_v1.use_toolbars: - - # Currently have no allow_token_purchases value like - # we had with tickets; just assuming we always allow. - if bool(True): - # if bui.app.classic.allow_ticket_purchases: - self._get_tokens_button = bui.buttonwidget( - parent=self._container, - position=( - self._c_width - 210 + 125, - self._c_height - 44, - ), - autoselect=True, - scale=0.6, - size=(120, 60), - textcolor=(1.0, 0.6, 0.0), - label=bui.charstr(bui.SpecialChar.TOKEN), - color=(0.65, 0.5, 0.8), - on_activate_call=self._on_get_tokens_press, - ) - else: - self._token_count_text = bui.textwidget( - parent=self._container, - scale=0.6, - position=( - self._c_width - 210 + 125, - self._c_height - 44, - ), - color=(1.0, 0.6, 0.0), - h_align='center', - v_align='center', - ) - - # Set initial token count. - self._update_currency_ui() + pass v = self._c_height - 90 if hostingstate.party_code is None: @@ -689,7 +651,7 @@ class PrivateGatherTab(GatherTab): ), ) - v -= 100 + v -= 90 if hostingstate.party_code is None: # We've got no current party running; show options to set # one up. @@ -718,12 +680,13 @@ class PrivateGatherTab(GatherTab): # If it appears we're coming back from playlist selection, # re-select our playlist button. - if bui.app.ui_v1.selecting_private_party_playlist: + if self._state.playlist_select_context is not None: + self._state.playlist_select_context = None bui.containerwidget( edit=self._container, selected_child=self._host_playlist_button, ) - bui.app.ui_v1.selecting_private_party_playlist = False + else: # We've got a current party; show its info. bui.textwidget( @@ -785,7 +748,7 @@ class PrivateGatherTab(GatherTab): autoselect=True, ) - v -= 120 + v -= 110 # Line above the main action button: @@ -952,7 +915,13 @@ class PrivateGatherTab(GatherTab): def _playlist_press(self) -> None: assert self._host_playlist_button is not None - self.window.playlist_select(origin_widget=self._host_playlist_button) + + self._state.playlist_select_context = PlaylistSelectContext() + + self.window.playlist_select( + origin_widget=self._host_playlist_button, + context=self._state.playlist_select_context, + ) def _host_copy_press(self) -> None: assert self._hostingstate.party_code is not None @@ -971,8 +940,8 @@ class PrivateGatherTab(GatherTab): ) def _connect_to_party_code(self, code: str) -> None: - # Ignore attempted followup sends for a few seconds. (this will - # reset if we get a response) + # Ignore attempted followup sends for a few seconds (this will + # reset if we get a response). plus = bui.app.plus assert plus is not None @@ -1104,6 +1073,11 @@ class PrivateGatherTab(GatherTab): return self._debug_server_comm('got valid connect response') assert cresult.address4 is not None and cresult.port is not None + + # Store UI location to return to when done. + if bs.app.classic is not None: + bs.app.classic.save_ui_state() + bs.connect_to_party(cresult.address4, port=cresult.port) except Exception: self._debug_server_comm('got connect response error') diff --git a/dist/ba_data/python/bauiv1lib/gather/publictab.py b/dist/ba_data/python/bauiv1lib/gather/publictab.py index d8b2f14..fd66f62 100644 --- a/dist/ba_data/python/bauiv1lib/gather/publictab.py +++ b/dist/ba_data/python/bauiv1lib/gather/publictab.py @@ -96,6 +96,7 @@ class UIRow: ) -> None: """Update for the given data.""" # pylint: disable=too-many-locals + # pylint: disable=too-many-positional-arguments plus = bui.app.plus assert plus is not None @@ -161,7 +162,7 @@ class UIRow: Selection(party.get_key(), SelectionComponent.STATS_BUTTON), ), size=(120, 40), - position=(sub_scroll_width * 0.66 + hpos, 1 + vpos), + position=(sub_scroll_width - 270.0, 1 + vpos), scale=0.9, ) if existing_selection == Selection( @@ -175,7 +176,7 @@ class UIRow: text=str(party.size) + '/' + str(party.size_max), parent=columnwidget, size=(0, 0), - position=(sub_scroll_width * 0.86 + hpos, 20 + vpos), + position=(sub_scroll_width - 90, 20 + vpos), scale=0.7, color=(0.8, 0.8, 0.8), h_align='right', @@ -190,7 +191,7 @@ class UIRow: self._ping_widget = bui.textwidget( parent=columnwidget, size=(0, 0), - position=(sub_scroll_width * 0.94 + hpos, 20 + vpos), + position=(sub_scroll_width - 25.0, 20 + vpos), scale=0.7, h_align='right', v_align='center', @@ -366,10 +367,12 @@ class PublicGatherTab(GatherTab): self._last_server_list_query_time: float | None = None self._join_list_column: bui.Widget | None = None self._join_status_text: bui.Widget | None = None + self._join_status_spinner: bui.Widget | None = None self._no_servers_found_text: bui.Widget | None = None self._host_max_party_size_value: bui.Widget | None = None self._host_max_party_size_minus_button: bui.Widget | None = None self._host_max_party_size_plus_button: bui.Widget | None = None + self._join_sub_scroll_width: float | None = None self._host_status_text: bui.Widget | None = None self._signed_in = False self._ui_rows: list[UIRow] = [] @@ -404,6 +407,7 @@ class PublicGatherTab(GatherTab): region_left: float, region_bottom: float, ) -> bui.Widget: + # pylint: disable=too-many-positional-arguments c_width = region_width c_height = region_height - 20 self._container = bui.containerwidget( @@ -471,7 +475,8 @@ class PublicGatherTab(GatherTab): ) bui.widget(edit=self._join_text, right_widget=self._host_text) - # Attempt to fetch our local address so we have it for error messages. + # Attempt to fetch our local address so we have it for error + # messages. if self._local_address is None: AddrFetchThread(bui.WeakCall(self._fetch_local_addr_cb)).start() @@ -488,9 +493,9 @@ class PublicGatherTab(GatherTab): @override def save_state(self) -> None: # Save off a small number of parties with the lowest ping; we'll - # display these immediately when our UI comes back up which should - # be enough to make things feel nice and crisp while we do a full - # server re-query or whatnot. + # display these immediately when our UI comes back up which + # should be enough to make things feel nice and crisp while we + # do a full server re-query or whatnot. assert bui.app.classic is not None bui.app.ui_v1.window_states[type(self)] = State( sub_tab=self._sub_tab, @@ -520,7 +525,7 @@ class PublicGatherTab(GatherTab): self._next_entry_index = state.next_entry_index - # FIXME: should save/restore these too?.. + # FIXME: should save/restore these too? self._have_server_list_response = state.have_server_list_response self._have_valid_server_list = state.have_valid_server_list self._filter_value = state.filter_value @@ -536,9 +541,8 @@ class PublicGatherTab(GatherTab): if playsound: bui.getsound('click01').play() - # Reset our selection. - # (prevents selecting something way down the list if we switched away - # and came back) + # Reset our selection (prevents selecting something way down the + # list if we switched away and came back). self._selection = None self._have_user_selected_row = False @@ -576,7 +580,9 @@ class PublicGatherTab(GatherTab): c_width = region_width c_height = region_height - 20 sub_scroll_height = c_height - 125 - sub_scroll_width = 830 + self._join_sub_scroll_width = sub_scroll_width = min( + 1200, region_width - 80 + ) v = c_height - 35 v -= 60 filter_txt = bui.Lstr(resource='filterText') @@ -584,7 +590,7 @@ class PublicGatherTab(GatherTab): parent=self._container, text=self._filter_value, size=(350, 45), - position=(290, v - 10), + position=(c_width * 0.5 - 150, v - 10), h_align='left', v_align='center', editable=True, @@ -596,7 +602,7 @@ class PublicGatherTab(GatherTab): text=filter_txt, parent=self._container, size=(0, 0), - position=(270, v + 13), + position=(c_width * 0.5 - 170, v + 13), maxwidth=150, scale=0.8, color=(0.5, 0.46, 0.5), @@ -609,7 +615,7 @@ class PublicGatherTab(GatherTab): text=bui.Lstr(resource='nameText'), parent=self._container, size=(0, 0), - position=(90, v - 8), + position=((c_width - sub_scroll_width) * 0.5 + 50, v - 8), maxwidth=60, scale=0.6, color=(0.5, 0.46, 0.5), @@ -621,7 +627,10 @@ class PublicGatherTab(GatherTab): text=bui.Lstr(resource='gatherWindow.partySizeText'), parent=self._container, size=(0, 0), - position=(755, v - 8), + position=( + c_width * 0.5 + sub_scroll_width * 0.5 - 110, + v - 8, + ), maxwidth=60, scale=0.6, color=(0.5, 0.46, 0.5), @@ -633,7 +642,10 @@ class PublicGatherTab(GatherTab): text=bui.Lstr(resource='gatherWindow.pingText'), parent=self._container, size=(0, 0), - position=(825, v - 8), + position=( + c_width * 0.5 + sub_scroll_width * 0.5 - 30, + v - 8, + ), maxwidth=60, scale=0.6, color=(0.5, 0.46, 0.5), @@ -657,6 +669,9 @@ class PublicGatherTab(GatherTab): size=(400, 400), claims_left_right=True, ) + + # Create join status text and join spinner. Always make sure to + # update both of these together. self._join_status_text = bui.textwidget( parent=self._container, text='', @@ -670,6 +685,13 @@ class PublicGatherTab(GatherTab): color=(0.6, 0.6, 0.6), position=(c_width * 0.5, c_height * 0.5), ) + self._join_status_spinner = bui.spinnerwidget( + parent=self._container, + position=(c_width * 0.5, c_height * 0.5), + style='bomb', + size=64, + ) + self._no_servers_found_text = bui.textwidget( parent=self._container, text='', @@ -707,6 +729,9 @@ class PublicGatherTab(GatherTab): ) v -= 30 + # Nudge party name and size values to be mostly centered. + xoffs = region_width * 0.5 - 500 + party_name_text = bui.Lstr( resource='gatherWindow.partyNameText', fallback_resource='editGameListWindow.nameText', @@ -720,14 +745,14 @@ class PublicGatherTab(GatherTab): maxwidth=200, scale=0.8, color=bui.app.ui_v1.infotextcolor, - position=(210, v - 9), + position=(210 + xoffs, v - 9), text=party_name_text, ) self._host_name_text = bui.textwidget( parent=self._container, editable=True, size=(535, 40), - position=(230, v - 30), + position=(230 + xoffs, v - 30), text=bui.app.config.get('Public Party Name', ''), maxwidth=494, shadow=0.3, @@ -747,7 +772,7 @@ class PublicGatherTab(GatherTab): maxwidth=200, scale=0.8, color=bui.app.ui_v1.infotextcolor, - position=(210, v - 9), + position=(210 + xoffs, v - 9), text=bui.Lstr( resource='maxPartySizeText', fallback_resource='maxConnectionsText', @@ -760,7 +785,7 @@ class PublicGatherTab(GatherTab): v_align='center', scale=1.2, color=(1, 1, 1), - position=(240, v - 9), + position=(240 + xoffs, v - 9), text=str(bs.get_public_party_max_size()), ) btn1 = self._host_max_party_size_minus_button = bui.buttonwidget( @@ -769,7 +794,7 @@ class PublicGatherTab(GatherTab): on_activate_call=bui.WeakCall( self._on_max_public_party_size_minus_press ), - position=(280, v - 26), + position=(280 + xoffs, v - 26), label='-', autoselect=True, ) @@ -779,7 +804,7 @@ class PublicGatherTab(GatherTab): on_activate_call=bui.WeakCall( self._on_max_public_party_size_plus_press ), - position=(350, v - 26), + position=(350 + xoffs, v - 26), label='+', autoselect=True, ) @@ -811,6 +836,7 @@ class PublicGatherTab(GatherTab): bui.widget(edit=self._host_name_text, down_widget=btn2) bui.widget(edit=btn2, up_widget=self._host_name_text) bui.widget(edit=btn1, up_widget=self._host_name_text) + assert self._join_text is not None bui.widget(edit=self._join_text, down_widget=self._host_name_text) v -= 10 self._host_status_text = bui.textwidget( @@ -839,8 +865,8 @@ class PublicGatherTab(GatherTab): position=(c_width * 0.5, v), ) - # If public sharing is already on, - # launch a status-check immediately. + # If public sharing is already on, launch a status-check + # immediately. if bs.get_public_party_enabled(): self._do_status_check() @@ -864,9 +890,9 @@ class PublicGatherTab(GatherTab): self._pending_party_infos += parties_in # To avoid causing a stutter here, we do most processing of - # these entries incrementally in our _update() method. - # The one thing we do here is prune parties not contained in - # this result. + # these entries incrementally in our _update() method. The one + # thing we do here is prune parties not contained in this + # result. for partyval in list(self._parties.values()): partyval.claimed = False for party_in in parties_in: @@ -884,7 +910,6 @@ class PublicGatherTab(GatherTab): self._parties_sorted = [p for p in self._parties_sorted if p[1].claimed] self._party_lists_dirty = True - # self._update_server_list() if DEBUG_PROCESSING: print( f'Handled public party query results in ' @@ -897,11 +922,6 @@ class PublicGatherTab(GatherTab): plus = bui.app.plus assert plus is not None - # Special case: if a party-queue window is up, don't do any of this - # (keeps things smoother). - # if bui.app.ui.have_party_queue_window: - # return - if self._sub_tab is SubTabType.JOIN: # Keep our filter-text up to date from the UI. text = self._filter_text @@ -911,10 +931,10 @@ class PublicGatherTab(GatherTab): self._filter_value = filter_value self._party_lists_dirty = True - # Also wipe out party clean-row states. - # (otherwise if a party disappears from a row due to - # filtering and then reappears on that same row when - # the filter is removed it may not update) + # Also wipe out party clean-row states (otherwise if + # a party disappears from a row due to filtering and + # then reappears on that same row when the filter is + # removed it may not update). for party in self._parties.values(): party.clean_display_index = None @@ -940,37 +960,38 @@ class PublicGatherTab(GatherTab): name = cast(str, bui.textwidget(query=self._host_name_text)) bs.set_public_party_name(name) - # Update status text. - status_text = self._join_status_text - if status_text: + # Update status text and loading spinner. + if self._join_status_text: + assert self._join_status_spinner if not signed_in: bui.textwidget( - edit=status_text, text=bui.Lstr(resource='notSignedInText') + edit=self._join_status_text, + text=bui.Lstr(resource='notSignedInText'), ) + bui.spinnerwidget(edit=self._join_status_spinner, visible=False) else: - # If we have a valid list, show no status; just the list. - # Otherwise show either 'loading...' or 'error' depending - # on whether this is our first go-round. + # If we have a valid list, show no status; just the + # list. Otherwise show either 'loading...' or 'error' + # depending on whether this is our first go-round. if self._have_valid_server_list: - bui.textwidget(edit=status_text, text='') + bui.textwidget(edit=self._join_status_text, text='') + bui.spinnerwidget( + edit=self._join_status_spinner, visible=False + ) else: if self._have_server_list_response: bui.textwidget( - edit=status_text, + edit=self._join_status_text, text=bui.Lstr(resource='errorText'), ) + bui.spinnerwidget( + edit=self._join_status_spinner, visible=False + ) else: - bui.textwidget( - edit=status_text, - text=bui.Lstr( - value='${A}...', - subs=[ - ( - '${A}', - bui.Lstr(resource='store.loadingText'), - ) - ], - ), + # Show our loading spinner. + bui.textwidget(edit=self._join_status_text, text='') + bui.spinnerwidget( + edit=self._join_status_spinner, visible=True ) self._update_party_rows() @@ -1001,19 +1022,15 @@ class PublicGatherTab(GatherTab): self._ui_rows = self._ui_rows[:-clipcount] # If we have no parties to show, we're done. - if not self._parties_displayed: - text = self._join_status_text - if ( - plus.get_v1_account_state() == 'signed_in' - and cast(str, bui.textwidget(query=text)) == '' - ): - bui.textwidget( - edit=self._no_servers_found_text, - text=bui.Lstr(resource='noServersFoundText'), - ) + if self._have_valid_server_list and not self._parties_displayed: + bui.textwidget( + edit=self._no_servers_found_text, + text=bui.Lstr(resource='noServersFoundText'), + ) return - sub_scroll_width = 830 + assert self._join_sub_scroll_width is not None + sub_scroll_width = self._join_sub_scroll_width lineheight = 42 sub_scroll_height = lineheight * len(self._parties_displayed) + 50 bui.containerwidget( @@ -1021,27 +1038,27 @@ class PublicGatherTab(GatherTab): ) # Any time our height changes, reset the refresh back to the top - # so we don't see ugly empty spaces appearing during initial list - # filling. + # so we don't see ugly empty spaces appearing during initial + # list filling. if sub_scroll_height != self._last_sub_scroll_height: self._refresh_ui_row = 0 self._last_sub_scroll_height = sub_scroll_height - # Also note that we need to redisplay everything since its pos - # will have changed.. :( + # Also note that we need to redisplay everything since its + # pos will have changed.. :( for party in self._parties.values(): party.clean_display_index = None - # Ew; this rebuilding generates deferred selection callbacks - # so we need to push deferred notices so we know to ignore them. + # Ew; this rebuilding generates deferred selection callbacks so + # we need to push deferred notices so we know to ignore them. def refresh_on() -> None: self._refreshing_list = True bui.pushcall(refresh_on) - # Ok, now here's the deal: we want to avoid creating/updating this - # entire list at one time because it will lead to hitches. So we - # refresh individual rows quickly in a loop. + # Ok, now here's the deal: we want to avoid creating/updating + # this entire list at one time because it will lead to hitches. + # So we refresh individual rows quickly in a loop. rowcount = min(12, len(self._parties_displayed)) party_vals_displayed = list(self._parties_displayed.values()) @@ -1051,9 +1068,10 @@ class PublicGatherTab(GatherTab): self._ui_rows.append(UIRow()) refresh_row = len(self._ui_rows) - 1 - # For the first few seconds after getting our first server-list, - # refresh only the top section of the list; this allows the lowest - # ping servers to show up more quickly. + # For the first few seconds after getting our first + # server-list, refresh only the top section of the list; + # this allows the lowest ping servers to show up more + # quickly. if self._first_valid_server_list_time is not None: if time.time() - self._first_valid_server_list_time < 4.0: if refresh_row > 40: @@ -1083,7 +1101,8 @@ class PublicGatherTab(GatherTab): def _process_pending_party_infos(self) -> None: starttime = time.time() - # We want to do this in small enough pieces to not cause UI hitches. + # We want to do this in small enough pieces to not cause UI + # hitches. chunksize = 30 parties_in = self._pending_party_infos[:chunksize] self._pending_party_infos = self._pending_party_infos[chunksize:] @@ -1167,16 +1186,16 @@ class PublicGatherTab(GatherTab): else: self._parties_displayed = dict(self._parties_sorted) - # Any time our selection disappears from the displayed list, go back to - # auto-selecting the top entry. + # Any time our selection disappears from the displayed list, go + # back to auto-selecting the top entry. if ( self._selection is not None and self._selection.entry_key not in self._parties_displayed ): self._have_user_selected_row = False - # Whenever the user hasn't selected something, keep the first visible - # row selected. + # Whenever the user hasn't selected something, keep the first + # visible row selected. if not self._have_user_selected_row and self._parties_displayed: firstpartykey = next(iter(self._parties_displayed)) self._selection = Selection(firstpartykey, SelectionComponent.NAME) @@ -1228,8 +1247,8 @@ class PublicGatherTab(GatherTab): party.next_ping_time <= now and bui.app.classic.ping_thread_count < 15 ): - # Crank the interval up for high-latency or non-responding - # parties to save us some useless work. + # Crank the interval up for high-latency or + # non-responding parties to save us some useless work. mult = 1 if party.ping_responses == 0: if party.ping_attempts > 4: @@ -1259,16 +1278,18 @@ class PublicGatherTab(GatherTab): def _ping_callback( self, address: str, port: int | None, result: float | None ) -> None: - # Look for a widget corresponding to this target. - # If we find one, update our list. + # Look for a widget corresponding to this target. If we find + # one, update our list. party_key = f'{address}_{port}' party = self._parties.get(party_key) + if party is not None: + # print(f'PING {party.name} {result=} {time.monotonic():.1f}') if result is not None: party.ping_responses += 1 - # We now smooth ping a bit to reduce jumping around in the list - # (only where pings are relatively good). + # We now smooth ping a bit to reduce jumping around in the + # list (only where pings are relatively good). current_ping = party.ping if current_ping is not None and result is not None and result < 150: smoothing = 0.7 @@ -1371,7 +1392,7 @@ class PublicGatherTab(GatherTab): ) def _on_start_advertizing_press(self) -> None: - from bauiv1lib.account import show_sign_in_prompt + from bauiv1lib.account.signin import show_sign_in_prompt plus = bui.app.plus assert plus is not None @@ -1395,8 +1416,8 @@ class PublicGatherTab(GatherTab): bui.getsound('shieldUp').play() bs.set_public_party_enabled(True) - # In GUI builds we want to authenticate clients only when hosting - # public parties. + # In GUI builds we want to authenticate clients only when + # hosting public parties. bs.set_authenticate_clients(True) self._do_status_check() @@ -1412,8 +1433,8 @@ class PublicGatherTab(GatherTab): def _on_stop_advertising_press(self) -> None: bs.set_public_party_enabled(False) - # In GUI builds we want to authenticate clients only when hosting - # public parties. + # In GUI builds we want to authenticate clients only when + # hosting public parties. bs.set_authenticate_clients(False) bui.getsound('shieldDown').play() text = self._host_status_text @@ -1446,6 +1467,10 @@ class PublicGatherTab(GatherTab): address = party.address port = party.port + # Store UI location to return to when done. + if bs.app.classic is not None: + bs.app.classic.save_ui_state() + # Rate limit this a bit. now = time.time() last_connect_time = self._last_connect_attempt_time diff --git a/dist/ba_data/python/bauiv1lib/getcurrency.py b/dist/ba_data/python/bauiv1lib/getcurrency.py deleted file mode 100644 index 7883f61..0000000 --- a/dist/ba_data/python/bauiv1lib/getcurrency.py +++ /dev/null @@ -1,796 +0,0 @@ -# Released under the MIT License. See LICENSE for details. -# -"""UI functionality for purchasing/acquiring currency.""" - -from __future__ import annotations - -from typing import TYPE_CHECKING - -from efro.util import utc_now - -import bauiv1 as bui - -if TYPE_CHECKING: - from typing import Any - - -class GetCurrencyWindow(bui.Window): - """Window for purchasing/acquiring currency.""" - - def __init__( - self, - transition: str = 'in_right', - from_modal_store: bool = False, - modal: bool = False, - origin_widget: bui.Widget | None = None, - store_back_location: str | None = None, - ): - # pylint: disable=too-many-statements - # pylint: disable=too-many-locals - - plus = bui.app.plus - assert plus is not None - - bui.set_analytics_screen('Get Tickets Window') - - self._transitioning_out = False - self._store_back_location = store_back_location # ew. - - self._ad_button_greyed = False - self._smooth_update_timer: bui.AppTimer | None = None - self._ad_button = None - self._ad_label = None - self._ad_image = None - self._ad_time_text = None - - # If they provided an origin-widget, scale up from that. - scale_origin: tuple[float, float] | None - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None - - assert bui.app.classic is not None - uiscale = bui.app.ui_v1.uiscale - self._width = 1000.0 if uiscale is bui.UIScale.SMALL else 800.0 - x_inset = 100.0 if uiscale is bui.UIScale.SMALL else 0.0 - self._height = 480.0 - - self._modal = modal - self._from_modal_store = from_modal_store - self._r = 'getTicketsWindow' - - top_extra = 20 if uiscale is bui.UIScale.SMALL else 0 - - super().__init__( - root_widget=bui.containerwidget( - size=(self._width, self._height + top_extra), - transition=transition, - scale_origin_stack_offset=scale_origin, - color=(0.4, 0.37, 0.55), - scale=( - 1.63 - if uiscale is bui.UIScale.SMALL - else 1.2 if uiscale is bui.UIScale.MEDIUM else 1.0 - ), - stack_offset=( - (0, -3) if uiscale is bui.UIScale.SMALL else (0, 0) - ), - ) - ) - - btn = bui.buttonwidget( - parent=self._root_widget, - position=(55 + x_inset, self._height - 79), - size=(140, 60), - scale=1.0, - autoselect=True, - label=bui.Lstr(resource='doneText' if modal else 'backText'), - button_type='regular' if modal else 'back', - on_activate_call=self._back, - ) - - bui.containerwidget(edit=self._root_widget, cancel_button=btn) - - bui.textwidget( - parent=self._root_widget, - position=(self._width * 0.5, self._height - 55), - size=(0, 0), - color=bui.app.ui_v1.title_color, - scale=1.2, - h_align='center', - v_align='center', - text=bui.Lstr(resource=self._r + '.titleText'), - maxwidth=290, - ) - - if not modal: - bui.buttonwidget( - edit=btn, - button_type='backSmall', - size=(60, 60), - label=bui.charstr(bui.SpecialChar.BACK), - ) - - b_size = (220.0, 180.0) - v = self._height - b_size[1] - 80 - spacing = 1 - - self._ad_button = None - - def _add_button( - item: str, - position: tuple[float, float], - size: tuple[float, float], - label: bui.Lstr, - price: str | None = None, - tex_name: str | None = None, - tex_opacity: float = 1.0, - tex_scale: float = 1.0, - enabled: bool = True, - text_scale: float = 1.0, - ) -> bui.Widget: - btn2 = bui.buttonwidget( - parent=self._root_widget, - position=position, - button_type='square', - size=size, - label='', - autoselect=True, - color=None if enabled else (0.5, 0.5, 0.5), - on_activate_call=( - bui.Call(self._purchase, item) - if enabled - else self._disabled_press - ), - ) - txt = bui.textwidget( - parent=self._root_widget, - text=label, - position=( - position[0] + size[0] * 0.5, - position[1] + size[1] * 0.3, - ), - scale=text_scale, - maxwidth=size[0] * 0.75, - size=(0, 0), - h_align='center', - v_align='center', - draw_controller=btn2, - color=(0.7, 0.9, 0.7, 1.0 if enabled else 0.2), - ) - if price is not None and enabled: - bui.textwidget( - parent=self._root_widget, - text=price, - position=( - position[0] + size[0] * 0.5, - position[1] + size[1] * 0.17, - ), - scale=0.7, - maxwidth=size[0] * 0.75, - size=(0, 0), - h_align='center', - v_align='center', - draw_controller=btn2, - color=(0.4, 0.9, 0.4, 1.0), - ) - i = None - if tex_name is not None: - tex_size = 90.0 * tex_scale - i = bui.imagewidget( - parent=self._root_widget, - texture=bui.gettexture(tex_name), - position=( - position[0] + size[0] * 0.5 - tex_size * 0.5, - position[1] + size[1] * 0.66 - tex_size * 0.5, - ), - size=(tex_size, tex_size), - draw_controller=btn2, - opacity=tex_opacity * (1.0 if enabled else 0.25), - ) - if item == 'ad': - self._ad_button = btn2 - self._ad_label = txt - assert i is not None - self._ad_image = i - self._ad_time_text = bui.textwidget( - parent=self._root_widget, - text='1m 10s', - position=( - position[0] + size[0] * 0.5, - position[1] + size[1] * 0.5, - ), - scale=text_scale * 1.2, - maxwidth=size[0] * 0.85, - size=(0, 0), - h_align='center', - v_align='center', - draw_controller=btn2, - color=(0.4, 0.9, 0.4, 1.0), - ) - return btn2 - - rsrc = self._r + '.ticketsText' - - c2txt = bui.Lstr( - resource=rsrc, - subs=[ - ( - '${COUNT}', - str( - plus.get_v1_account_misc_read_val('tickets2Amount', 500) - ), - ) - ], - ) - c3txt = bui.Lstr( - resource=rsrc, - subs=[ - ( - '${COUNT}', - str( - plus.get_v1_account_misc_read_val( - 'tickets3Amount', 1500 - ) - ), - ) - ], - ) - c4txt = bui.Lstr( - resource=rsrc, - subs=[ - ( - '${COUNT}', - str( - plus.get_v1_account_misc_read_val( - 'tickets4Amount', 5000 - ) - ), - ) - ], - ) - c5txt = bui.Lstr( - resource=rsrc, - subs=[ - ( - '${COUNT}', - str( - plus.get_v1_account_misc_read_val( - 'tickets5Amount', 15000 - ) - ), - ) - ], - ) - - h = 110.0 - - # Enable buttons if we have prices. - tickets2_price = plus.get_price('tickets2') - tickets3_price = plus.get_price('tickets3') - tickets4_price = plus.get_price('tickets4') - tickets5_price = plus.get_price('tickets5') - - # TEMP - # tickets1_price = '$0.99' - # tickets2_price = '$4.99' - # tickets3_price = '$9.99' - # tickets4_price = '$19.99' - # tickets5_price = '$49.99' - - _add_button( - 'tickets2', - enabled=(tickets2_price is not None), - position=( - self._width * 0.5 - spacing * 1.5 - b_size[0] * 2.0 + h, - v, - ), - size=b_size, - label=c2txt, - price=tickets2_price, - tex_name='ticketsMore', - ) # 0.99-ish - _add_button( - 'tickets3', - enabled=(tickets3_price is not None), - position=( - self._width * 0.5 - spacing * 0.5 - b_size[0] * 1.0 + h, - v, - ), - size=b_size, - label=c3txt, - price=tickets3_price, - tex_name='ticketRoll', - ) # 4.99-ish - v -= b_size[1] - 5 - _add_button( - 'tickets4', - enabled=(tickets4_price is not None), - position=( - self._width * 0.5 - spacing * 1.5 - b_size[0] * 2.0 + h, - v, - ), - size=b_size, - label=c4txt, - price=tickets4_price, - tex_name='ticketRollBig', - tex_scale=1.2, - ) # 9.99-ish - _add_button( - 'tickets5', - enabled=(tickets5_price is not None), - position=( - self._width * 0.5 - spacing * 0.5 - b_size[0] * 1.0 + h, - v, - ), - size=b_size, - label=c5txt, - price=tickets5_price, - tex_name='ticketRolls', - tex_scale=1.2, - ) # 19.99-ish - - self._enable_ad_button = plus.has_video_ads() - h = self._width * 0.5 + 110.0 - v = self._height - b_size[1] - 115.0 - - if self._enable_ad_button: - h_offs = 35 - b_size_3 = (150, 120) - cdb = _add_button( - 'ad', - position=(h + h_offs, v), - size=b_size_3, - label=bui.Lstr( - resource=self._r + '.ticketsFromASponsorText', - subs=[ - ( - '${COUNT}', - str( - plus.get_v1_account_misc_read_val( - 'sponsorTickets', 5 - ) - ), - ) - ], - ), - tex_name='ticketsMore', - enabled=self._enable_ad_button, - tex_opacity=0.6, - tex_scale=0.7, - text_scale=0.7, - ) - bui.buttonwidget(edit=cdb, color=(0.65, 0.5, 0.7)) - - self._ad_free_text = bui.textwidget( - parent=self._root_widget, - text=bui.Lstr(resource=self._r + '.freeText'), - position=( - h + h_offs + b_size_3[0] * 0.5, - v + b_size_3[1] * 0.5 + 25, - ), - size=(0, 0), - color=(1, 1, 0, 1.0), - draw_controller=cdb, - rotate=15, - shadow=1.0, - maxwidth=150, - h_align='center', - v_align='center', - scale=1.0, - ) - v -= 125 - else: - v -= 20 - - if bool(True): - h_offs = 35 - b_size_3 = (150, 120) - cdb = _add_button( - 'app_invite', - position=(h + h_offs, v), - size=b_size_3, - label=bui.Lstr( - resource='gatherWindow.earnTicketsForRecommendingText', - subs=[ - ( - '${COUNT}', - str( - plus.get_v1_account_misc_read_val( - 'sponsorTickets', 5 - ) - ), - ) - ], - ), - tex_name='ticketsMore', - enabled=True, - tex_opacity=0.6, - tex_scale=0.7, - text_scale=0.7, - ) - bui.buttonwidget(edit=cdb, color=(0.65, 0.5, 0.7)) - - bui.textwidget( - parent=self._root_widget, - text=bui.Lstr(resource=self._r + '.freeText'), - position=( - h + h_offs + b_size_3[0] * 0.5, - v + b_size_3[1] * 0.5 + 25, - ), - size=(0, 0), - color=(1, 1, 0, 1.0), - draw_controller=cdb, - rotate=15, - shadow=1.0, - maxwidth=150, - h_align='center', - v_align='center', - scale=1.0, - ) - tc_y_offs = 0 - else: - tc_y_offs = 0 - - h = self._width - (185 + x_inset) - v = self._height - 95 + tc_y_offs - - txt1 = ( - bui.Lstr(resource=self._r + '.youHaveText') - .evaluate() - .partition('${COUNT}')[0] - .strip() - ) - txt2 = ( - bui.Lstr(resource=self._r + '.youHaveText') - .evaluate() - .rpartition('${COUNT}')[-1] - .strip() - ) - - bui.textwidget( - parent=self._root_widget, - text=txt1, - position=(h, v), - size=(0, 0), - color=(0.5, 0.5, 0.6), - maxwidth=200, - h_align='center', - v_align='center', - scale=0.8, - ) - v -= 30 - self._ticket_count_text = bui.textwidget( - parent=self._root_widget, - position=(h, v), - size=(0, 0), - color=(0.2, 1.0, 0.2), - maxwidth=200, - h_align='center', - v_align='center', - scale=1.6, - ) - v -= 30 - bui.textwidget( - parent=self._root_widget, - text=txt2, - position=(h, v), - size=(0, 0), - color=(0.5, 0.5, 0.6), - maxwidth=200, - h_align='center', - v_align='center', - scale=0.8, - ) - - self._ticking_sound: bui.Sound | None = None - self._smooth_ticket_count: float | None = None - self._ticket_count = 0 - self._update() - self._update_timer = bui.AppTimer( - 1.0, bui.WeakCall(self._update), repeat=True - ) - self._smooth_increase_speed = 1.0 - - def __del__(self) -> None: - if self._ticking_sound is not None: - self._ticking_sound.stop() - self._ticking_sound = None - - def _smooth_update(self) -> None: - if not self._ticket_count_text: - self._smooth_update_timer = None - return - - finished = False - - # If we're going down, do it immediately. - assert self._smooth_ticket_count is not None - if int(self._smooth_ticket_count) >= self._ticket_count: - self._smooth_ticket_count = float(self._ticket_count) - finished = True - else: - # We're going up; start a sound if need be. - self._smooth_ticket_count = min( - self._smooth_ticket_count + 1.0 * self._smooth_increase_speed, - self._ticket_count, - ) - if int(self._smooth_ticket_count) >= self._ticket_count: - finished = True - self._smooth_ticket_count = float(self._ticket_count) - elif self._ticking_sound is None: - self._ticking_sound = bui.getsound('scoreIncrease') - self._ticking_sound.play() - - bui.textwidget( - edit=self._ticket_count_text, - text=str(int(self._smooth_ticket_count)), - ) - - # If we've reached the target, kill the timer/sound/etc. - if finished: - self._smooth_update_timer = None - if self._ticking_sound is not None: - self._ticking_sound.stop() - self._ticking_sound = None - bui.getsound('cashRegister2').play() - - def _update(self) -> None: - import datetime - - plus = bui.app.plus - assert plus is not None - - # If we somehow get signed out, just die. - if plus.get_v1_account_state() != 'signed_in': - self._back() - return - - self._ticket_count = plus.get_v1_account_ticket_count() - - # Update our incentivized ad button depending on whether ads are - # available. - if self._ad_button is not None: - next_reward_ad_time = plus.get_v1_account_misc_read_val_2( - 'nextRewardAdTime', None - ) - if next_reward_ad_time is not None: - next_reward_ad_time = datetime.datetime.fromtimestamp( - next_reward_ad_time, datetime.UTC - ) - now = utc_now() - if plus.have_incentivized_ad() and ( - next_reward_ad_time is None or next_reward_ad_time <= now - ): - self._ad_button_greyed = False - bui.buttonwidget(edit=self._ad_button, color=(0.65, 0.5, 0.7)) - bui.textwidget(edit=self._ad_label, color=(0.7, 0.9, 0.7, 1.0)) - bui.textwidget(edit=self._ad_free_text, color=(1, 1, 0, 1)) - bui.imagewidget(edit=self._ad_image, opacity=0.6) - bui.textwidget(edit=self._ad_time_text, text='') - else: - self._ad_button_greyed = True - bui.buttonwidget(edit=self._ad_button, color=(0.5, 0.5, 0.5)) - bui.textwidget(edit=self._ad_label, color=(0.7, 0.9, 0.7, 0.2)) - bui.textwidget(edit=self._ad_free_text, color=(1, 1, 0, 0.2)) - bui.imagewidget(edit=self._ad_image, opacity=0.6 * 0.25) - sval: str | bui.Lstr - if ( - next_reward_ad_time is not None - and next_reward_ad_time > now - ): - sval = bui.timestring( - (next_reward_ad_time - now).total_seconds(), centi=False - ) - else: - sval = '' - bui.textwidget(edit=self._ad_time_text, text=sval) - - # If this is our first update, assign immediately; otherwise kick - # off a smooth transition if the value has changed. - if self._smooth_ticket_count is None: - self._smooth_ticket_count = float(self._ticket_count) - self._smooth_update() # will set the text widget - - elif ( - self._ticket_count != int(self._smooth_ticket_count) - and self._smooth_update_timer is None - ): - self._smooth_update_timer = bui.AppTimer( - 0.05, bui.WeakCall(self._smooth_update), repeat=True - ) - diff = abs(float(self._ticket_count) - self._smooth_ticket_count) - self._smooth_increase_speed = ( - diff / 100.0 - if diff >= 5000 - else ( - diff / 50.0 - if diff >= 1500 - else diff / 30.0 if diff >= 500 else diff / 15.0 - ) - ) - - def _disabled_press(self) -> None: - plus = bui.app.plus - assert plus is not None - - # If we're on a platform without purchases, inform the user they - # can link their accounts and buy stuff elsewhere. - app = bui.app - assert app.classic is not None - if ( - app.env.test - or ( - app.classic.platform == 'android' - and app.classic.subplatform in ['oculus', 'cardboard'] - ) - ) and plus.get_v1_account_misc_read_val('allowAccountLinking2', False): - bui.screenmessage( - bui.Lstr(resource=self._r + '.unavailableLinkAccountText'), - color=(1, 0.5, 0), - ) - else: - bui.screenmessage( - bui.Lstr(resource=self._r + '.unavailableText'), - color=(1, 0.5, 0), - ) - bui.getsound('error').play() - - def _purchase(self, item: str) -> None: - from bauiv1lib import account - from bauiv1lib import appinvite - - plus = bui.app.plus - assert plus is not None - - if bui.app.classic is None: - raise RuntimeError('This requires classic support.') - - if item == 'app_invite': - if plus.get_v1_account_state() != 'signed_in': - account.show_sign_in_prompt() - return - appinvite.handle_app_invites_press() - return - - # Here we ping the server to ask if it's valid for us to - # purchase this.. (better to fail now than after we've paid - # locally). - app = bui.app - assert app.classic is not None - bui.app.classic.master_server_v1_get( - 'bsAccountPurchaseCheck', - { - 'item': item, - 'platform': app.classic.platform, - 'subplatform': app.classic.subplatform, - 'version': app.env.engine_version, - 'buildNumber': app.env.engine_build_number, - }, - callback=bui.WeakCall(self._purchase_check_result, item), - ) - - def _purchase_check_result( - self, item: str, result: dict[str, Any] | None - ) -> None: - if result is None: - bui.getsound('error').play() - bui.screenmessage( - bui.Lstr(resource='internal.unavailableNoConnectionText'), - color=(1, 0, 0), - ) - else: - if result['allow']: - self._do_purchase(item) - else: - if result['reason'] == 'versionTooOld': - bui.getsound('error').play() - bui.screenmessage( - bui.Lstr(resource='getTicketsWindow.versionTooOldText'), - color=(1, 0, 0), - ) - else: - bui.getsound('error').play() - bui.screenmessage( - bui.Lstr(resource='getTicketsWindow.unavailableText'), - color=(1, 0, 0), - ) - - # Actually start the purchase locally. - def _do_purchase(self, item: str) -> None: - plus = bui.app.plus - assert plus is not None - - if item == 'ad': - import datetime - - # If ads are disabled until some time, error. - next_reward_ad_time = plus.get_v1_account_misc_read_val_2( - 'nextRewardAdTime', None - ) - if next_reward_ad_time is not None: - next_reward_ad_time = datetime.datetime.fromtimestamp( - next_reward_ad_time, datetime.UTC - ) - now = utc_now() - if ( - next_reward_ad_time is not None and next_reward_ad_time > now - ) or self._ad_button_greyed: - bui.getsound('error').play() - bui.screenmessage( - bui.Lstr( - resource='getTicketsWindow.unavailableTemporarilyText' - ), - color=(1, 0, 0), - ) - elif self._enable_ad_button: - assert bui.app.classic is not None - bui.app.classic.ads.show_ad('tickets') - else: - plus.purchase(item) - - def _back(self) -> None: - from bauiv1lib.store import browser - - # No-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - if self._transitioning_out: - return - - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - if not self._modal: - window = browser.StoreBrowserWindow( - transition='in_left', - modal=self._from_modal_store, - back_location=self._store_back_location, - ).get_root_widget() - if not self._from_modal_store: - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - window, from_window=self._root_widget - ) - self._transitioning_out = True - - -def show_get_tickets_prompt() -> None: - """Show a 'not enough tickets' prompt with an option to purchase more. - - Note that the purchase option may not always be available - depending on the build of the game. - """ - from bauiv1lib.confirm import ConfirmWindow - - assert bui.app.classic is not None - if bui.app.classic.allow_ticket_purchases: - ConfirmWindow( - bui.Lstr( - translate=( - 'serverResponses', - 'You don\'t have enough tickets for this!', - ) - ), - lambda: GetCurrencyWindow(modal=True), - ok_text=bui.Lstr(resource='getTicketsWindow.titleText'), - width=460, - height=130, - ) - else: - ConfirmWindow( - bui.Lstr( - translate=( - 'serverResponses', - 'You don\'t have enough tickets for this!', - ) - ), - cancel_button=False, - width=460, - height=130, - ) diff --git a/dist/ba_data/python/bauiv1lib/gettickets.py b/dist/ba_data/python/bauiv1lib/gettickets.py deleted file mode 100644 index 3d40a4a..0000000 --- a/dist/ba_data/python/bauiv1lib/gettickets.py +++ /dev/null @@ -1,881 +0,0 @@ -# Released under the MIT License. See LICENSE for details. -# -"""UI functionality for purchasing/acquiring currency.""" - -from __future__ import annotations - -from typing import TYPE_CHECKING - -from efro.util import utc_now - -import bauiv1 as bui - -if TYPE_CHECKING: - from typing import Any - - -class GetTicketsWindow(bui.Window): - """Window for purchasing/acquiring classic tickets.""" - - def __init__( - self, - transition: str = 'in_right', - from_modal_store: bool = False, - modal: bool = False, - origin_widget: bui.Widget | None = None, - store_back_location: str | None = None, - ): - # pylint: disable=too-many-statements - # pylint: disable=too-many-locals - - plus = bui.app.plus - assert plus is not None - - bui.set_analytics_screen('Get Tickets Window') - - self._transitioning_out = False - self._store_back_location = store_back_location # ew. - - self._ad_button_greyed = False - self._smooth_update_timer: bui.AppTimer | None = None - self._ad_button = None - self._ad_label = None - self._ad_image = None - self._ad_time_text = None - - # If they provided an origin-widget, scale up from that. - scale_origin: tuple[float, float] | None - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None - - assert bui.app.classic is not None - uiscale = bui.app.ui_v1.uiscale - self._width = 1000.0 if uiscale is bui.UIScale.SMALL else 800.0 - x_inset = 100.0 if uiscale is bui.UIScale.SMALL else 0.0 - self._height = 480.0 - - self._modal = modal - self._from_modal_store = from_modal_store - self._r = 'getTicketsWindow' - - top_extra = 20 if uiscale is bui.UIScale.SMALL else 0 - - super().__init__( - root_widget=bui.containerwidget( - size=(self._width, self._height + top_extra), - transition=transition, - scale_origin_stack_offset=scale_origin, - color=(0.4, 0.37, 0.55), - scale=( - 1.63 - if uiscale is bui.UIScale.SMALL - else 1.2 if uiscale is bui.UIScale.MEDIUM else 1.0 - ), - stack_offset=( - (0, -3) if uiscale is bui.UIScale.SMALL else (0, 0) - ), - ) - ) - - btn = bui.buttonwidget( - parent=self._root_widget, - position=(55 + x_inset, self._height - 79), - size=(140, 60), - scale=1.0, - autoselect=True, - label=bui.Lstr(resource='doneText' if modal else 'backText'), - button_type='regular' if modal else 'back', - on_activate_call=self._back, - ) - - bui.containerwidget(edit=self._root_widget, cancel_button=btn) - - bui.textwidget( - parent=self._root_widget, - position=(self._width * 0.5 - 15, self._height - 47), - size=(0, 0), - color=bui.app.ui_v1.title_color, - scale=1.2, - h_align='right', - v_align='center', - text=bui.Lstr(resource=f'{self._r}.titleText'), - # text='Testing really long text here blah blah', - maxwidth=260, - ) - - # Get Tokens button - bui.buttonwidget( - parent=self._root_widget, - position=(self._width * 0.5, self._height - 72), - color=(0.65, 0.5, 0.7), - textcolor=bui.app.ui_v1.title_color, - size=(190, 50), - autoselect=True, - label=bui.Lstr(resource='tokens.getTokensText'), - on_activate_call=self._get_tokens_press, - ) - - # 'New!' by tokens button - bui.textwidget( - parent=self._root_widget, - text=bui.Lstr(resource='newExclaimText'), - position=(self._width * 0.5 + 25, self._height - 32), - size=(0, 0), - color=(1, 1, 0, 1.0), - rotate=22, - shadow=1.0, - maxwidth=150, - h_align='center', - v_align='center', - scale=0.7, - ) - - if not modal: - bui.buttonwidget( - edit=btn, - button_type='backSmall', - size=(60, 60), - label=bui.charstr(bui.SpecialChar.BACK), - ) - - b_size = (220.0, 180.0) - v = self._height - b_size[1] - 80 - spacing = 1 - - self._ad_button = None - - def _add_button( - item: str, - position: tuple[float, float], - size: tuple[float, float], - label: bui.Lstr, - price: str | None = None, - tex_name: str | None = None, - tex_opacity: float = 1.0, - tex_scale: float = 1.0, - enabled: bool = True, - text_scale: float = 1.0, - ) -> bui.Widget: - btn2 = bui.buttonwidget( - parent=self._root_widget, - position=position, - button_type='square', - size=size, - label='', - autoselect=True, - color=None if enabled else (0.5, 0.5, 0.5), - on_activate_call=( - bui.Call(self._purchase, item) - if enabled - else self._disabled_press - ), - ) - txt = bui.textwidget( - parent=self._root_widget, - text=label, - position=( - position[0] + size[0] * 0.5, - position[1] + size[1] * 0.3, - ), - scale=text_scale, - maxwidth=size[0] * 0.75, - size=(0, 0), - h_align='center', - v_align='center', - draw_controller=btn2, - color=(0.7, 0.9, 0.7, 1.0 if enabled else 0.2), - ) - if price is not None and enabled: - bui.textwidget( - parent=self._root_widget, - text=price, - position=( - position[0] + size[0] * 0.5, - position[1] + size[1] * 0.17, - ), - scale=0.7, - maxwidth=size[0] * 0.75, - size=(0, 0), - h_align='center', - v_align='center', - draw_controller=btn2, - color=(0.4, 0.9, 0.4, 1.0), - ) - i = None - if tex_name is not None: - tex_size = 90.0 * tex_scale - i = bui.imagewidget( - parent=self._root_widget, - texture=bui.gettexture(tex_name), - position=( - position[0] + size[0] * 0.5 - tex_size * 0.5, - position[1] + size[1] * 0.66 - tex_size * 0.5, - ), - size=(tex_size, tex_size), - draw_controller=btn2, - opacity=tex_opacity * (1.0 if enabled else 0.25), - ) - if item == 'ad': - self._ad_button = btn2 - self._ad_label = txt - assert i is not None - self._ad_image = i - self._ad_time_text = bui.textwidget( - parent=self._root_widget, - text='1m 10s', - position=( - position[0] + size[0] * 0.5, - position[1] + size[1] * 0.5, - ), - scale=text_scale * 1.2, - maxwidth=size[0] * 0.85, - size=(0, 0), - h_align='center', - v_align='center', - draw_controller=btn2, - color=(0.4, 0.9, 0.4, 1.0), - ) - return btn2 - - rsrc = f'{self._r}.ticketsText' - - c2txt = bui.Lstr( - resource=rsrc, - subs=[ - ( - '${COUNT}', - str( - plus.get_v1_account_misc_read_val('tickets2Amount', 500) - ), - ) - ], - ) - c3txt = bui.Lstr( - resource=rsrc, - subs=[ - ( - '${COUNT}', - str( - plus.get_v1_account_misc_read_val( - 'tickets3Amount', 1500 - ) - ), - ) - ], - ) - c4txt = bui.Lstr( - resource=rsrc, - subs=[ - ( - '${COUNT}', - str( - plus.get_v1_account_misc_read_val( - 'tickets4Amount', 5000 - ) - ), - ) - ], - ) - c5txt = bui.Lstr( - resource=rsrc, - subs=[ - ( - '${COUNT}', - str( - plus.get_v1_account_misc_read_val( - 'tickets5Amount', 15000 - ) - ), - ) - ], - ) - - h = 110.0 - - # Enable buttons if we have prices. - tickets2_price = plus.get_price('tickets2') - tickets3_price = plus.get_price('tickets3') - tickets4_price = plus.get_price('tickets4') - tickets5_price = plus.get_price('tickets5') - - # TEMP - # tickets1_price = '$0.99' - # tickets2_price = '$4.99' - # tickets3_price = '$9.99' - # tickets4_price = '$19.99' - # tickets5_price = '$49.99' - - _add_button( - 'tickets2', - enabled=(tickets2_price is not None), - position=( - self._width * 0.5 - spacing * 1.5 - b_size[0] * 2.0 + h, - v, - ), - size=b_size, - label=c2txt, - price=tickets2_price, - tex_name='ticketsMore', - ) # 0.99-ish - _add_button( - 'tickets3', - enabled=(tickets3_price is not None), - position=( - self._width * 0.5 - spacing * 0.5 - b_size[0] * 1.0 + h, - v, - ), - size=b_size, - label=c3txt, - price=tickets3_price, - tex_name='ticketRoll', - ) # 4.99-ish - v -= b_size[1] - 5 - _add_button( - 'tickets4', - enabled=(tickets4_price is not None), - position=( - self._width * 0.5 - spacing * 1.5 - b_size[0] * 2.0 + h, - v, - ), - size=b_size, - label=c4txt, - price=tickets4_price, - tex_name='ticketRollBig', - tex_scale=1.2, - ) # 9.99-ish - _add_button( - 'tickets5', - enabled=(tickets5_price is not None), - position=( - self._width * 0.5 - spacing * 0.5 - b_size[0] * 1.0 + h, - v, - ), - size=b_size, - label=c5txt, - price=tickets5_price, - tex_name='ticketRolls', - tex_scale=1.2, - ) # 19.99-ish - - self._enable_ad_button = plus.has_video_ads() - h = self._width * 0.5 + 110.0 - v = self._height - b_size[1] - 115.0 - - if self._enable_ad_button: - h_offs = 35 - b_size_3 = (150, 120) - cdb = _add_button( - 'ad', - position=(h + h_offs, v), - size=b_size_3, - label=bui.Lstr( - resource=f'{self._r}.ticketsFromASponsorText', - subs=[ - ( - '${COUNT}', - str( - plus.get_v1_account_misc_read_val( - 'sponsorTickets', 5 - ) - ), - ) - ], - ), - tex_name='ticketsMore', - enabled=self._enable_ad_button, - tex_opacity=0.6, - tex_scale=0.7, - text_scale=0.7, - ) - bui.buttonwidget(edit=cdb, color=(0.65, 0.5, 0.7)) - - self._ad_free_text = bui.textwidget( - parent=self._root_widget, - text=bui.Lstr(resource=f'{self._r}.freeText'), - position=( - h + h_offs + b_size_3[0] * 0.5, - v + b_size_3[1] * 0.5 + 25, - ), - size=(0, 0), - color=(1, 1, 0, 1.0), - draw_controller=cdb, - rotate=15, - shadow=1.0, - maxwidth=150, - h_align='center', - v_align='center', - scale=1.0, - ) - v -= 125 - else: - v -= 20 - - if bool(True): - h_offs = 35 - b_size_3 = (150, 120) - cdb = _add_button( - 'app_invite', - position=(h + h_offs, v), - size=b_size_3, - label=bui.Lstr( - resource='gatherWindow.earnTicketsForRecommendingText', - subs=[ - ( - '${COUNT}', - str( - plus.get_v1_account_misc_read_val( - 'sponsorTickets', 5 - ) - ), - ) - ], - ), - tex_name='ticketsMore', - enabled=True, - tex_opacity=0.6, - tex_scale=0.7, - text_scale=0.7, - ) - bui.buttonwidget(edit=cdb, color=(0.65, 0.5, 0.7)) - - bui.textwidget( - parent=self._root_widget, - text=bui.Lstr(resource=f'{self._r}.freeText'), - position=( - h + h_offs + b_size_3[0] * 0.5, - v + b_size_3[1] * 0.5 + 25, - ), - size=(0, 0), - color=(1, 1, 0, 1.0), - draw_controller=cdb, - rotate=15, - shadow=1.0, - maxwidth=150, - h_align='center', - v_align='center', - scale=1.0, - ) - tc_y_offs = 0 - else: - tc_y_offs = 0 - - h = self._width - (185 + x_inset) - v = self._height - 105 + tc_y_offs - - txt1 = ( - bui.Lstr(resource=f'{self._r}.youHaveText') - .evaluate() - .partition('${COUNT}')[0] - .strip() - ) - txt2 = ( - bui.Lstr(resource=f'{self._r}.youHaveText') - .evaluate() - .rpartition('${COUNT}')[-1] - .strip() - ) - - bui.textwidget( - parent=self._root_widget, - text=txt1, - position=(h, v), - size=(0, 0), - color=(0.5, 0.5, 0.6), - maxwidth=200, - h_align='center', - v_align='center', - scale=0.8, - ) - v -= 30 - self._ticket_count_text = bui.textwidget( - parent=self._root_widget, - position=(h, v), - size=(0, 0), - color=(0.2, 1.0, 0.2), - maxwidth=200, - h_align='center', - v_align='center', - scale=1.6, - ) - v -= 30 - bui.textwidget( - parent=self._root_widget, - text=txt2, - position=(h, v), - size=(0, 0), - color=(0.5, 0.5, 0.6), - maxwidth=200, - h_align='center', - v_align='center', - scale=0.8, - ) - - self._ticking_sound: bui.Sound | None = None - self._smooth_ticket_count: float | None = None - self._ticket_count = 0 - self._update() - self._update_timer = bui.AppTimer( - 1.0, bui.WeakCall(self._update), repeat=True - ) - self._smooth_increase_speed = 1.0 - - def __del__(self) -> None: - if self._ticking_sound is not None: - self._ticking_sound.stop() - self._ticking_sound = None - - def _smooth_update(self) -> None: - if not self._ticket_count_text: - self._smooth_update_timer = None - return - - finished = False - - # If we're going down, do it immediately. - assert self._smooth_ticket_count is not None - if int(self._smooth_ticket_count) >= self._ticket_count: - self._smooth_ticket_count = float(self._ticket_count) - finished = True - else: - # We're going up; start a sound if need be. - self._smooth_ticket_count = min( - self._smooth_ticket_count + 1.0 * self._smooth_increase_speed, - self._ticket_count, - ) - if int(self._smooth_ticket_count) >= self._ticket_count: - finished = True - self._smooth_ticket_count = float(self._ticket_count) - elif self._ticking_sound is None: - self._ticking_sound = bui.getsound('scoreIncrease') - self._ticking_sound.play() - - bui.textwidget( - edit=self._ticket_count_text, - text=str(int(self._smooth_ticket_count)), - ) - - # If we've reached the target, kill the timer/sound/etc. - if finished: - self._smooth_update_timer = None - if self._ticking_sound is not None: - self._ticking_sound.stop() - self._ticking_sound = None - bui.getsound('cashRegister2').play() - - def _update(self) -> None: - import datetime - - plus = bui.app.plus - assert plus is not None - - # If we somehow get signed out, just die. - if plus.get_v1_account_state() != 'signed_in': - self._back() - return - - self._ticket_count = plus.get_v1_account_ticket_count() - - # Update our incentivized ad button depending on whether ads are - # available. - if self._ad_button is not None: - next_reward_ad_time = plus.get_v1_account_misc_read_val_2( - 'nextRewardAdTime', None - ) - if next_reward_ad_time is not None: - next_reward_ad_time = datetime.datetime.fromtimestamp( - next_reward_ad_time, datetime.UTC - ) - now = utc_now() - if plus.have_incentivized_ad() and ( - next_reward_ad_time is None or next_reward_ad_time <= now - ): - self._ad_button_greyed = False - bui.buttonwidget(edit=self._ad_button, color=(0.65, 0.5, 0.7)) - bui.textwidget(edit=self._ad_label, color=(0.7, 0.9, 0.7, 1.0)) - bui.textwidget(edit=self._ad_free_text, color=(1, 1, 0, 1)) - bui.imagewidget(edit=self._ad_image, opacity=0.6) - bui.textwidget(edit=self._ad_time_text, text='') - else: - self._ad_button_greyed = True - bui.buttonwidget(edit=self._ad_button, color=(0.5, 0.5, 0.5)) - bui.textwidget(edit=self._ad_label, color=(0.7, 0.9, 0.7, 0.2)) - bui.textwidget(edit=self._ad_free_text, color=(1, 1, 0, 0.2)) - bui.imagewidget(edit=self._ad_image, opacity=0.6 * 0.25) - sval: str | bui.Lstr - if ( - next_reward_ad_time is not None - and next_reward_ad_time > now - ): - sval = bui.timestring( - (next_reward_ad_time - now).total_seconds(), centi=False - ) - else: - sval = '' - bui.textwidget(edit=self._ad_time_text, text=sval) - - # If this is our first update, assign immediately; otherwise kick - # off a smooth transition if the value has changed. - if self._smooth_ticket_count is None: - self._smooth_ticket_count = float(self._ticket_count) - self._smooth_update() # will set the text widget - - elif ( - self._ticket_count != int(self._smooth_ticket_count) - and self._smooth_update_timer is None - ): - self._smooth_update_timer = bui.AppTimer( - 0.05, bui.WeakCall(self._smooth_update), repeat=True - ) - diff = abs(float(self._ticket_count) - self._smooth_ticket_count) - self._smooth_increase_speed = ( - diff / 100.0 - if diff >= 5000 - else ( - diff / 50.0 - if diff >= 1500 - else diff / 30.0 if diff >= 500 else diff / 15.0 - ) - ) - - def _disabled_press(self) -> None: - plus = bui.app.plus - assert plus is not None - - # If we're on a platform without purchases, inform the user they - # can link their accounts and buy stuff elsewhere. - app = bui.app - assert app.classic is not None - if ( - app.env.test - or ( - app.classic.platform == 'android' - and app.classic.subplatform in ['oculus', 'cardboard'] - ) - ) and plus.get_v1_account_misc_read_val('allowAccountLinking2', False): - bui.screenmessage( - bui.Lstr(resource=f'{self._r}.unavailableLinkAccountText'), - color=(1, 0.5, 0), - ) - else: - bui.screenmessage( - bui.Lstr(resource=f'{self._r}.unavailableText'), - color=(1, 0.5, 0), - ) - bui.getsound('error').play() - - def _purchase(self, item: str) -> None: - from bauiv1lib import account - from bauiv1lib import appinvite - - plus = bui.app.plus - assert plus is not None - - if bui.app.classic is None: - raise RuntimeError('This requires classic support.') - - if item == 'app_invite': - if plus.get_v1_account_state() != 'signed_in': - account.show_sign_in_prompt() - return - appinvite.handle_app_invites_press() - return - - # Here we ping the server to ask if it's valid for us to - # purchase this.. (better to fail now than after we've paid - # locally). - app = bui.app - assert app.classic is not None - bui.app.classic.master_server_v1_get( - 'bsAccountPurchaseCheck', - { - 'item': item, - 'platform': app.classic.platform, - 'subplatform': app.classic.subplatform, - 'version': app.env.engine_version, - 'buildNumber': app.env.engine_build_number, - }, - callback=bui.WeakCall(self._purchase_check_result, item), - ) - - def _purchase_check_result( - self, item: str, result: dict[str, Any] | None - ) -> None: - if result is None: - bui.getsound('error').play() - bui.screenmessage( - bui.Lstr(resource='internal.unavailableNoConnectionText'), - color=(1, 0, 0), - ) - else: - if result['allow']: - self._do_purchase(item) - else: - if result['reason'] == 'versionTooOld': - bui.getsound('error').play() - bui.screenmessage( - bui.Lstr(resource='getTicketsWindow.versionTooOldText'), - color=(1, 0, 0), - ) - else: - bui.getsound('error').play() - bui.screenmessage( - bui.Lstr(resource='getTicketsWindow.unavailableText'), - color=(1, 0, 0), - ) - - # Actually start the purchase locally. - def _do_purchase(self, item: str) -> None: - plus = bui.app.plus - assert plus is not None - - if item == 'ad': - import datetime - - # If ads are disabled until some time, error. - next_reward_ad_time = plus.get_v1_account_misc_read_val_2( - 'nextRewardAdTime', None - ) - if next_reward_ad_time is not None: - next_reward_ad_time = datetime.datetime.fromtimestamp( - next_reward_ad_time, datetime.UTC - ) - now = utc_now() - if ( - next_reward_ad_time is not None and next_reward_ad_time > now - ) or self._ad_button_greyed: - bui.getsound('error').play() - bui.screenmessage( - bui.Lstr( - resource='getTicketsWindow.unavailableTemporarilyText' - ), - color=(1, 0, 0), - ) - elif self._enable_ad_button: - assert bui.app.classic is not None - bui.app.classic.ads.show_ad('tickets') - else: - plus.purchase(item) - - def _get_tokens_press(self) -> None: - from functools import partial - - from bauiv1lib.gettokens import GetTokensWindow - - # No-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - if self._transitioning_out: - return - - bui.containerwidget(edit=self._root_widget, transition='out_left') - - # Note: Make sure we don't pass anything here that would - # capture 'self'. (a lambda would implicitly do this by capturing - # the stack frame). - restorecall = partial( - _restore_get_tickets_window, - self._modal, - self._from_modal_store, - self._store_back_location, - ) - - window = GetTokensWindow( - transition='in_right', - restore_previous_call=restorecall, - ).get_root_widget() - if not self._modal and not self._from_modal_store: - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - window, from_window=self._root_widget - ) - self._transitioning_out = True - - def _back(self) -> None: - from bauiv1lib.store import browser - - # No-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - if self._transitioning_out: - return - - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - if not self._modal: - window = browser.StoreBrowserWindow( - transition='in_left', - modal=self._from_modal_store, - back_location=self._store_back_location, - ).get_root_widget() - if not self._from_modal_store: - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - window, from_window=self._root_widget - ) - self._transitioning_out = True - - -# A call we can bundle up and pass to windows we open; allows them to -# get back to us without having to explicitly know about us. -def _restore_get_tickets_window( - modal: bool, - from_modal_store: bool, - store_back_location: str | None, - from_window: bui.Widget, -) -> None: - restored = GetTicketsWindow( - transition='in_left', - modal=modal, - from_modal_store=from_modal_store, - store_back_location=store_back_location, - ) - if not modal and not from_modal_store: - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - restored.get_root_widget(), from_window=from_window - ) - - -def show_get_tickets_prompt() -> None: - """Show a 'not enough tickets' prompt with an option to purchase more. - - Note that the purchase option may not always be available - depending on the build of the game. - """ - from bauiv1lib.confirm import ConfirmWindow - - assert bui.app.classic is not None - - if bui.app.classic.allow_ticket_purchases: - ConfirmWindow( - bui.Lstr( - translate=( - 'serverResponses', - 'You don\'t have enough tickets for this!', - ) - ), - lambda: GetTicketsWindow(modal=True), - ok_text=bui.Lstr(resource='getTicketsWindow.titleText'), - width=460, - height=130, - ) - else: - ConfirmWindow( - bui.Lstr( - translate=( - 'serverResponses', - 'You don\'t have enough tickets for this!', - ) - ), - cancel_button=False, - width=460, - height=130, - ) diff --git a/dist/ba_data/python/bauiv1lib/gettokens.py b/dist/ba_data/python/bauiv1lib/gettokens.py index 22bff44..522831e 100644 --- a/dist/ba_data/python/bauiv1lib/gettokens.py +++ b/dist/ba_data/python/bauiv1lib/gettokens.py @@ -8,9 +8,10 @@ import time from enum import Enum from functools import partial from dataclasses import dataclass -from typing import TYPE_CHECKING, assert_never +from typing import TYPE_CHECKING, assert_never, override import bacommon.cloud +import bacommon.bs import bauiv1 as bui @@ -54,7 +55,7 @@ class _TxtDef: rotate: float | None = None -class GetTokensWindow(bui.Window): +class GetTokensWindow(bui.MainWindow): """Window for purchasing/acquiring classic tickets.""" class State(Enum): @@ -67,12 +68,10 @@ class GetTokensWindow(bui.Window): def __init__( self, - transition: str = 'in_right', + transition: str | None = 'in_right', origin_widget: bui.Widget | None = None, - restore_previous_call: Callable[[bui.Widget], None] | None = None, ): # pylint: disable=too-many-locals - bwidthstd = 170 bwidthwide = 300 ycolor = (0, 0, 0.3) @@ -107,7 +106,7 @@ class GetTokensWindow(bui.Window): _TxtDef( bui.Lstr( resource='tokens.numTokensText', - subs=[('${COUNT}', '50')], + subs=[('${COUNT}', str(bacommon.bs.TOKENS1_COUNT))], ), pos=(bwidthstd * 0.5, pos1), color=(1.1, 1.05, 1.0), @@ -147,7 +146,7 @@ class GetTokensWindow(bui.Window): _TxtDef( bui.Lstr( resource='tokens.numTokensText', - subs=[('${COUNT}', '500')], + subs=[('${COUNT}', str(bacommon.bs.TOKENS2_COUNT))], ), pos=(bwidthstd * 0.5, pos1), color=(1.1, 1.05, 1.0), @@ -187,7 +186,7 @@ class GetTokensWindow(bui.Window): _TxtDef( bui.Lstr( resource='tokens.numTokensText', - subs=[('${COUNT}', '1200')], + subs=[('${COUNT}', str(bacommon.bs.TOKENS3_COUNT))], ), pos=(bwidthstd * 0.5, pos1), color=(1.1, 1.05, 1.0), @@ -227,7 +226,7 @@ class GetTokensWindow(bui.Window): _TxtDef( bui.Lstr( resource='tokens.numTokensText', - subs=[('${COUNT}', '2600')], + subs=[('${COUNT}', str(bacommon.bs.TOKENS4_COUNT))], ), pos=(bwidthstd * 0.5, pos1), color=(1.1, 1.05, 1.0), @@ -304,7 +303,6 @@ class GetTokensWindow(bui.Window): ] self._transitioning_out = False - self._restore_previous_call = restore_previous_call self._textcolor = (0.92, 0.92, 2.0) self._query_in_flight = False @@ -313,68 +311,72 @@ class GetTokensWindow(bui.Window): None ) - # If they provided an origin-widget, scale up from that. - scale_origin: tuple[float, float] | None - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None - uiscale = bui.app.ui_v1.uiscale - self._width = 1000.0 if uiscale is bui.UIScale.SMALL else 800.0 - self._x_inset = 100.0 if uiscale is bui.UIScale.SMALL else 0.0 - self._height = 480.0 + self._width = 1200.0 if uiscale is bui.UIScale.SMALL else 1070.0 + self._height = 800 if uiscale is bui.UIScale.SMALL else 520.0 self._r = 'getTokensWindow' - top_extra = 20 if uiscale is bui.UIScale.SMALL else 0 + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 1.5 + if uiscale is bui.UIScale.SMALL + else 1.1 if uiscale is bui.UIScale.MEDIUM else 0.95 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_width = min(self._width - 60, screensize[0] / scale) + target_height = min(self._height - 70, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + self._yoffs = 0.5 * self._height + 0.5 * target_height + 20.0 + + self._scroll_width = target_width super().__init__( root_widget=bui.containerwidget( - size=(self._width, self._height + top_extra), - transition=transition, - scale_origin_stack_offset=scale_origin, + size=(self._width, self._height), color=(0.3, 0.23, 0.36), - scale=( - 1.63 + scale=scale, + toolbar_visibility=( + 'get_tokens' if uiscale is bui.UIScale.SMALL - else 1.2 if uiscale is bui.UIScale.MEDIUM else 1.0 - ), - stack_offset=( - (0, -3) if uiscale is bui.UIScale.SMALL else (0, 0) + else 'menu_full' ), + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, + ) + + if uiscale is bui.UIScale.SMALL: + bui.containerwidget( + edit=self._root_widget, on_cancel_call=self.main_window_back + ) + self._back_button = bui.get_special_widget('back_button') + else: + self._back_button = bui.buttonwidget( + parent=self._root_widget, + position=(60, self._yoffs - 90), + size=((60, 60)), + scale=1.0, + autoselect=True, + label=(bui.charstr(bui.SpecialChar.BACK)), + button_type=('backSmall'), + on_activate_call=self.main_window_back, + ) + bui.containerwidget( + edit=self._root_widget, cancel_button=self._back_button ) - ) - - self._back_button = btn = bui.buttonwidget( - parent=self._root_widget, - position=(45 + self._x_inset, self._height - 80), - size=( - (140, 60) if self._restore_previous_call is None else (60, 60) - ), - scale=1.0, - autoselect=True, - label=( - bui.Lstr(resource='doneText') - if self._restore_previous_call is None - else bui.charstr(bui.SpecialChar.BACK) - ), - button_type=( - 'regular' - if self._restore_previous_call is None - else 'backSmall' - ), - on_activate_call=self._back, - ) - - bui.containerwidget(edit=self._root_widget, cancel_button=btn) self._title_text = bui.textwidget( parent=self._root_widget, - position=(self._width * 0.5, self._height - 47), + position=(self._width * 0.5, self._yoffs - 42), size=(0, 0), color=self._textcolor, flatness=0.0, @@ -394,7 +396,15 @@ class GetTokensWindow(bui.Window): v_align='center', color=(0.6, 0.6, 0.6), scale=0.75, - text=bui.Lstr(resource='store.loadingText'), + text='', + ) + # Create a spinner - it will get cleared when state changes from + # LOADING. + bui.spinnerwidget( + parent=self._root_widget, + size=60, + position=(self._width * 0.5, self._height * 0.5), + style='bomb', ) self._core_widgets = [ @@ -403,13 +413,6 @@ class GetTokensWindow(bui.Window): self._status_text, ] - self._token_count_widget: bui.Widget | None = None - self._smooth_update_timer: bui.AppTimer | None = None - self._smooth_token_count: float | None = None - self._token_count: int = 0 - self._smooth_increase_speed = 1.0 - self._ticking_sound: bui.Sound | None = None - # Get all textures used by our buttons preloading so hopefully # they'll be in place by the time we show them. for bdef in self._buttondefs: @@ -423,10 +426,15 @@ class GetTokensWindow(bui.Window): ) self._update() - def __del__(self) -> None: - if self._ticking_sound is not None: - self._ticking_sound.stop() - self._ticking_sound = None + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) def _update(self) -> None: # No-op if our underlying widget is dead or on its way out. @@ -475,7 +483,7 @@ class GetTokensWindow(bui.Window): return # Ok, state is changing. Start by resetting to a blank slate. - self._token_count_widget = None + # self._token_count_widget = None for widget in self._root_widget.get_children(): if widget not in self._core_widgets: widget.delete() @@ -526,43 +534,68 @@ class GetTokensWindow(bui.Window): ) -> None: # pylint: disable=too-many-locals plus = bui.app.plus + classic = bui.app.classic + + uiscale = bui.app.ui_v1.uiscale bui.textwidget(edit=self._status_text, text='') - xinset = 40 - - scrollwidth = self._width - 2 * (self._x_inset + xinset) scrollheight = 280 buttonpadding = -5 yoffs = 5 - # We currently don't handle the zero-button case. - assert self._buttondefs + available_purchases = { + p.purchaseid for p in response.available_purchases + } + buttondefs_shown = [ + b for b in self._buttondefs if b.itemid in available_purchases + ] - total_button_width = sum( - b.width + b.prepad for b in self._buttondefs - ) + buttonpadding * (len(self._buttondefs) - 1) + # Fail if something errored server-side or they didn't send us + # anything we can show. + if ( + response.result is not response.Result.SUCCESS + or not buttondefs_shown + ): + self._on_load_error() + return + + sidepad = 10.0 + xfudge = 6.0 + total_button_width = ( + sum(b.width + b.prepad for b in buttondefs_shown) + + buttonpadding * (len(buttondefs_shown) - 1) + + 2 * sidepad + ) h_scroll = bui.hscrollwidget( parent=self._root_widget, - size=(scrollwidth, scrollheight), - position=(self._x_inset + xinset, 45), + size=(self._scroll_width, scrollheight), + position=( + self._width * 0.5 - 0.5 * self._scroll_width, + self._height * 0.5 - 0.5 * scrollheight - 40, + ), claims_left_right=True, highlight=False, - border_opacity=0.25, + border_opacity=0.0, + center_small_content=True, ) subcontainer = bui.containerwidget( parent=h_scroll, background=False, - size=(max(total_button_width, scrollwidth), scrollheight), + size=(total_button_width, scrollheight), ) tinfobtn = bui.buttonwidget( parent=self._root_widget, autoselect=True, label=bui.Lstr(resource='learnMoreText'), - position=(self._width * 0.5 - 75, self._height * 0.703), - size=(180, 43), + text_scale=0.7, + position=( + self._width * 0.5 - 75, + self._yoffs - 100, + ), + size=(180, 40), scale=0.8, color=(0.4, 0.25, 0.5), textcolor=self._textcolor, @@ -570,15 +603,26 @@ class GetTokensWindow(bui.Window): self._on_learn_more_press, response.token_info_url ), ) + if uiscale is bui.UIScale.SMALL: + bui.widget( + edit=tinfobtn, + left_widget=bui.get_special_widget('back_button'), + up_widget=bui.get_special_widget('back_button'), + ) - x = 0.0 + bui.widget( + edit=tinfobtn, + right_widget=bui.get_special_widget('tokens_meter'), + ) + + x = sidepad + xfudge bwidgets: list[bui.Widget] = [] - for i, buttondef in enumerate(self._buttondefs): + for i, buttondef in enumerate(buttondefs_shown): price = None if plus is None else plus.get_price(buttondef.itemid) x += buttondef.prepad - tdelay = 0.3 - i / len(self._buttondefs) * 0.25 + tdelay = 0.3 - i / len(buttondefs_shown) * 0.25 btn = bui.buttonwidget( autoselect=True, label='', @@ -594,6 +638,10 @@ class GetTokensWindow(bui.Window): ), ) bwidgets.append(btn) + + if i == 0: + bui.widget(edit=btn, left_widget=self._back_button) + for imgdef in buttondef.imgdefs: _img = bui.imagewidget( parent=subcontainer, @@ -643,40 +691,43 @@ class GetTokensWindow(bui.Window): x += buttondef.width + buttonpadding bui.containerwidget(edit=subcontainer, visible_child=bwidgets[0]) - _tinfotxt = bui.textwidget( - parent=self._root_widget, - position=(self._width * 0.5, self._height * 0.812), - color=self._textcolor, - shadow=1.0, - scale=0.7, - size=(0, 0), - h_align='center', - v_align='center', - text=bui.Lstr(resource='tokens.shinyNewCurrencyText'), - ) - self._token_count_widget = bui.textwidget( - parent=self._root_widget, - position=(self._width - self._x_inset - 120.0, self._height - 48), - color=(2.0, 0.7, 0.0), - shadow=1.0, - flatness=0.0, - size=(0, 0), - h_align='left', - v_align='center', - text='', - ) - self._token_count = response.tokens - self._smooth_token_count = float(self._token_count) - self._smooth_update() # will set the text widget. + if bool(False): + _tinfotxt = bui.textwidget( + parent=self._root_widget, + position=( + self._width * 0.5, + self._yoffs - 70, + ), + color=self._textcolor, + shadow=1.0, + scale=0.7, + size=(0, 0), + h_align='center', + v_align='center', + text=bui.Lstr(resource='tokens.shinyNewCurrencyText'), + ) - _tlabeltxt = bui.textwidget( - parent=self._root_widget, - position=(self._width - self._x_inset - 123.0, self._height - 48), - size=(0, 0), - h_align='right', - v_align='center', - text=bui.charstr(bui.SpecialChar.TOKEN), + has_removed_ads = classic is not None and ( + classic.gold_pass + or classic.remove_ads + or classic.accounts.have_pro() ) + if plus is not None and plus.has_video_ads() and not has_removed_ads: + _tinfotxt = bui.textwidget( + parent=self._root_widget, + position=( + self._width * 0.5, + self._yoffs - 120, + ), + color=(0.4, 1.0, 0.4), + shadow=1.0, + scale=0.5, + size=(0, 0), + h_align='center', + v_align='center', + maxwidth=self._scroll_width * 0.9, + text=bui.Lstr(resource='removeInGameAdsTokenPurchaseText'), + ) def _purchase_press(self, itemid: str) -> None: plus = bui.app.plus @@ -700,83 +751,8 @@ class GetTokensWindow(bui.Window): def _update_store_state(self) -> None: """Called to make minor updates to an already shown store.""" - assert self._token_count_widget is not None assert self._last_query_response is not None - self._token_count = self._last_query_response.tokens - - # Kick off new smooth update if need be. - assert self._smooth_token_count is not None - if ( - self._token_count != int(self._smooth_token_count) - and self._smooth_update_timer is None - ): - self._smooth_update_timer = bui.AppTimer( - 0.05, bui.WeakCall(self._smooth_update), repeat=True - ) - diff = abs(float(self._token_count) - self._smooth_token_count) - self._smooth_increase_speed = ( - diff / 100.0 - if diff >= 5000 - else ( - diff / 50.0 - if diff >= 1500 - else diff / 30.0 if diff >= 500 else diff / 15.0 - ) - ) - - def _smooth_update(self) -> None: - - # Stop if the count widget disappears. - if not self._token_count_widget: - self._smooth_update_timer = None - return - - finished = False - - # If we're going down, do it immediately. - assert self._smooth_token_count is not None - if int(self._smooth_token_count) >= self._token_count: - self._smooth_token_count = float(self._token_count) - finished = True - else: - # We're going up; start a sound if need be. - self._smooth_token_count = min( - self._smooth_token_count + 1.0 * self._smooth_increase_speed, - self._token_count, - ) - if int(self._smooth_token_count) >= self._token_count: - finished = True - self._smooth_token_count = float(self._token_count) - elif self._ticking_sound is None: - self._ticking_sound = bui.getsound('scoreIncrease') - self._ticking_sound.play() - - bui.textwidget( - edit=self._token_count_widget, - text=str(int(self._smooth_token_count)), - ) - - # If we've reached the target, kill the timer/sound/etc. - if finished: - self._smooth_update_timer = None - if self._ticking_sound is not None: - self._ticking_sound.stop() - self._ticking_sound = None - bui.getsound('cashRegister2').play() - - def _back(self) -> None: - - # No-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - if self._restore_previous_call is not None: - self._restore_previous_call(self._root_widget) - def _on_learn_more_press(self, url: str) -> None: bui.open_url(url) @@ -795,7 +771,7 @@ def show_get_tokens_prompt() -> None: if bool(True): ConfirmWindow( bui.Lstr(resource='tokens.notEnoughTokensText'), - GetTokensWindow, + show_get_tokens_window, ok_text=bui.Lstr(resource='tokens.getTokensText'), width=460, height=130, @@ -807,3 +783,30 @@ def show_get_tokens_prompt() -> None: width=460, height=130, ) + + +def show_get_tokens_window(origin_widget: bui.Widget | None = None) -> None: + """Transition to the get-tokens main-window from anywhere.""" + + # NOTE TO USERS: The code below is not the proper way to do things; + # whenever possible one should use a MainWindow's + # main_window_replace() or main_window_back() methods. We just need + # to do things a bit more manually in this particular case. + + prev_main_window = bui.app.ui_v1.get_main_window() + + # Special-case: If it seems we're already in the window, do nothing. + if isinstance(prev_main_window, GetTokensWindow): + return + + # Set our new main window. + bui.app.ui_v1.set_main_window( + GetTokensWindow(origin_widget=origin_widget), + from_window=False, + is_auxiliary=True, + suppress_warning=True, + ) + + # Transition out any previous main window. + if prev_main_window is not None: + prev_main_window.main_window_close() diff --git a/dist/ba_data/python/bauiv1lib/helpui.py b/dist/ba_data/python/bauiv1lib/help.py similarity index 81% rename from dist/ba_data/python/bauiv1lib/helpui.py rename to dist/ba_data/python/bauiv1lib/help.py index 887f005..abb6370 100644 --- a/dist/ba_data/python/bauiv1lib/helpui.py +++ b/dist/ba_data/python/bauiv1lib/help.py @@ -4,137 +4,139 @@ from __future__ import annotations +from typing import override + +import random + import bauiv1 as bui -class HelpWindow(bui.Window): +class HelpWindow(bui.MainWindow): """A window providing help on how to play.""" def __init__( - self, main_menu: bool = False, origin_widget: bui.Widget | None = None + self, + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, ): # pylint: disable=too-many-statements # pylint: disable=too-many-locals bui.set_analytics_screen('Help Window') - # If they provided an origin-widget, scale up from that. - scale_origin: tuple[float, float] | None - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None - transition = 'in_right' - self._r = 'helpWindow' getres = bui.app.lang.get_resource - self._main_menu = main_menu assert bui.app.classic is not None uiscale = bui.app.ui_v1.uiscale width = 1050 if uiscale is bui.UIScale.SMALL else 750 - x_offs = 150 if uiscale is bui.UIScale.SMALL else 0 + height = ( - 460 + 700 if uiscale is bui.UIScale.SMALL else 530 if uiscale is bui.UIScale.MEDIUM else 600 ) + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 1.8 + if uiscale is bui.UIScale.SMALL + else 1.15 if uiscale is bui.UIScale.MEDIUM else 1.0 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_width = min(width - 90, screensize[0] / scale) + target_height = min(height - 90, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * height + 0.5 * target_height + 30.0 + + scroll_width = target_width + scroll_height = target_height - 36 + scroll_bottom = yoffs - 64 - scroll_height + super().__init__( root_widget=bui.containerwidget( size=(width, height), - transition=transition, - toolbar_visibility='menu_minimal', - scale_origin_stack_offset=scale_origin, - scale=( - 1.77 + toolbar_visibility=( + 'menu_minimal' if uiscale is bui.UIScale.SMALL - else 1.25 if uiscale is bui.UIScale.MEDIUM else 1.0 + else 'menu_full' ), - stack_offset=( - (0, -30) - if uiscale is bui.UIScale.SMALL - else (0, 15) if uiscale is bui.UIScale.MEDIUM else (0, 0) - ), - ) - ) - - bui.textwidget( - parent=self._root_widget, - position=(0, height - (50 if uiscale is bui.UIScale.SMALL else 45)), - size=(width, 25), - text=bui.Lstr( - resource=f'{self._r}.titleText', - subs=[('${APP_NAME}', bui.Lstr(resource='titleText'))], + scale=scale, ), - color=bui.app.ui_v1.title_color, - h_align='center', - v_align='top', + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) - self._scrollwidget = bui.scrollwidget( - parent=self._root_widget, - position=(44 + x_offs, 55 if uiscale is bui.UIScale.SMALL else 55), - simple_culling_v=100.0, - size=( - width - (88 + 2 * x_offs), - height - 120 + (5 if uiscale is bui.UIScale.SMALL else 0), - ), - capture_arrows=True, - ) - - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=self._scrollwidget, - right_widget=bui.get_special_widget('party_button'), - ) - bui.containerwidget( - edit=self._root_widget, selected_child=self._scrollwidget - ) - - # ugly: create this last so it gets first dibs at touch events (since - # we have it close to the scroll widget) - if uiscale is bui.UIScale.SMALL and bui.app.ui_v1.use_toolbars: + if uiscale is bui.UIScale.SMALL: bui.containerwidget( - edit=self._root_widget, on_cancel_call=self._close - ) - bui.widget( - edit=self._scrollwidget, - left_widget=bui.get_special_widget('back_button'), + edit=self._root_widget, on_cancel_call=self.main_window_back ) else: btn = bui.buttonwidget( parent=self._root_widget, - position=( - x_offs + (40 + 0 if uiscale is bui.UIScale.SMALL else 70), - height - (59 if uiscale is bui.UIScale.SMALL else 50), - ), - size=(140, 60), - scale=0.7 if uiscale is bui.UIScale.SMALL else 0.8, - label=( - bui.Lstr(resource='backText') - if self._main_menu - else 'Close' - ), - button_type='back' if self._main_menu else None, + position=(50, yoffs - 45), + size=(60, 55), + scale=0.8, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', extra_touch_border_scale=2.0, autoselect=True, - on_activate_call=self._close, + on_activate_call=self.main_window_back, ) bui.containerwidget(edit=self._root_widget, cancel_button=btn) - if self._main_menu: - bui.buttonwidget( - edit=btn, - button_type='backSmall', - size=(60, 55), - label=bui.charstr(bui.SpecialChar.BACK), - ) + bui.textwidget( + parent=self._root_widget, + position=( + width * 0.5, + yoffs - (47 if uiscale is bui.UIScale.SMALL else 25), + ), + size=(0, 0), + text=bui.Lstr( + resource=f'{self._r}.titleText', + subs=[('${APP_NAME}', bui.Lstr(resource='titleText'))], + ), + scale=0.9, + maxwidth=scroll_width * 0.7, + color=bui.app.ui_v1.title_color, + h_align='center', + v_align='center', + ) + self._scrollwidget = bui.scrollwidget( + parent=self._root_widget, + size=(scroll_width, scroll_height), + position=(width * 0.5 - scroll_width * 0.5, scroll_bottom), + simple_culling_v=100.0, + capture_arrows=True, + border_opacity=0.4, + center_small_content_horizontally=True, + ) + + if uiscale is bui.UIScale.SMALL: + bui.widget( + edit=self._scrollwidget, + left_widget=bui.get_special_widget('back_button'), + ) + + bui.widget( + edit=self._scrollwidget, + right_widget=bui.get_special_widget('squad_button'), + ) + bui.containerwidget( + edit=self._root_widget, selected_child=self._scrollwidget + ) + + # self._sub_width = 810 if uiscale is bui.UIScale.SMALL else 660 self._sub_width = 660 self._sub_height = ( 1590 @@ -149,7 +151,6 @@ class HelpWindow(bui.Window): size=(self._sub_width, self._sub_height), background=False, claims_left_right=False, - claims_tab=False, ) spacing = 1.0 @@ -405,12 +406,16 @@ class HelpWindow(bui.Window): # icon_size_2 = 30 hval2 = h - sep vval2 = v - bui.imagewidget( + bui.buttonwidget( parent=self._subcontainer, + label='', size=(icon_size, icon_size), position=(hval2 - 0.5 * icon_size, vval2 - 0.5 * icon_size), texture=bui.gettexture('buttonPunch'), color=(1, 0.7, 0.3), + selectable=False, + enable_sound=False, + on_activate_call=bui.WeakCall(self._play_sound, 'spazAttack0', 4), ) txt_scale = getres(f'{self._r}.punchInfoTextScale') @@ -429,12 +434,16 @@ class HelpWindow(bui.Window): hval2 = h + sep vval2 = v - bui.imagewidget( + bui.buttonwidget( parent=self._subcontainer, + label='', size=(icon_size, icon_size), position=(hval2 - 0.5 * icon_size, vval2 - 0.5 * icon_size), texture=bui.gettexture('buttonBomb'), color=(1, 0.3, 0.3), + selectable=False, + enable_sound=False, + on_activate_call=bui.WeakCall(self._play_sound, 'explosion0', 5), ) txt = bui.Lstr(resource=f'{self._r}.bombInfoText').evaluate() @@ -454,12 +463,16 @@ class HelpWindow(bui.Window): hval2 = h vval2 = v + sep - bui.imagewidget( + bui.buttonwidget( parent=self._subcontainer, + label='', size=(icon_size, icon_size), position=(hval2 - 0.5 * icon_size, vval2 - 0.5 * icon_size), texture=bui.gettexture('buttonPickUp'), color=(0.5, 0.5, 1), + selectable=False, + enable_sound=False, + on_activate_call=bui.WeakCall(self._play_sound, 'spazPickup0', 1), ) txtl = bui.Lstr(resource=f'{self._r}.pickUpInfoText') @@ -478,12 +491,16 @@ class HelpWindow(bui.Window): hval2 = h vval2 = v - sep - bui.imagewidget( + bui.buttonwidget( parent=self._subcontainer, + label='', size=(icon_size, icon_size), position=(hval2 - 0.5 * icon_size, vval2 - 0.5 * icon_size), texture=bui.gettexture('buttonJump'), color=(0.4, 1, 0.4), + selectable=False, + enable_sound=False, + on_activate_call=bui.WeakCall(self._play_sound, 'spazJump0', 4), ) txt = bui.Lstr(resource=f'{self._r}.jumpInfoText').evaluate() @@ -639,20 +656,15 @@ class HelpWindow(bui.Window): res_scale=0.5, ) - def _close(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.mainmenu import MainMenuWindow + def _play_sound(self, text: str, num: int) -> None: + bui.getsound(text + str(random.randint(1, num))).play() - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - if self._main_menu: - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - MainMenuWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget ) + ) diff --git a/dist/ba_data/python/bauiv1lib/iconpicker.py b/dist/ba_data/python/bauiv1lib/iconpicker.py index 968b9c1..0a9bd4b 100644 --- a/dist/ba_data/python/bauiv1lib/iconpicker.py +++ b/dist/ba_data/python/bauiv1lib/iconpicker.py @@ -14,6 +14,18 @@ if TYPE_CHECKING: from typing import Any, Sequence +class IconPickerDelegate: + """Delegate for character-picker.""" + + def on_icon_picker_pick(self, icon: str) -> None: + """Called when a character is selected.""" + raise NotImplementedError() + + def on_icon_picker_get_more_press(self) -> None: + """Called when the 'get more characters' button is pressed.""" + raise NotImplementedError() + + class IconPicker(PopupWindow): """Picker for icons.""" @@ -21,8 +33,9 @@ class IconPicker(PopupWindow): self, parent: bui.Widget, position: tuple[float, float] = (0.0, 0.0), - delegate: Any = None, + delegate: IconPickerDelegate | None = None, scale: float | None = None, + *, offset: tuple[float, float] = (0.0, 0.0), tint_color: Sequence[float] = (1.0, 1.0, 1.0), tint2_color: Sequence[float] = (1.0, 1.0, 1.0), @@ -158,8 +171,7 @@ class IconPicker(PopupWindow): bui.widget(edit=btn, show_buffer_top=30, show_buffer_bottom=30) def _on_store_press(self) -> None: - from bauiv1lib.account import show_sign_in_prompt - from bauiv1lib.store.browser import StoreBrowserWindow + from bauiv1lib.account.signin import show_sign_in_prompt plus = bui.app.plus assert plus is not None @@ -167,12 +179,11 @@ class IconPicker(PopupWindow): if plus.get_v1_account_state() != 'signed_in': show_sign_in_prompt() return + + if self._delegate is not None: + self._delegate.on_icon_picker_get_more_press() + self._transition_out() - StoreBrowserWindow( - modal=True, - show_tab=StoreBrowserWindow.TabID.ICONS, - origin_widget=self._get_more_icons_button, - ) def _select_icon(self, icon: str) -> None: if self._delegate is not None: diff --git a/dist/ba_data/python/bauiv1lib/inbox.py b/dist/ba_data/python/bauiv1lib/inbox.py new file mode 100644 index 0000000..a995504 --- /dev/null +++ b/dist/ba_data/python/bauiv1lib/inbox.py @@ -0,0 +1,1132 @@ +# Released under the MIT License. See LICENSE for details. +# +# pylint: disable=too-many-lines +"""Provides a popup window to view achievements.""" + +from __future__ import annotations + +import weakref +from functools import partial +from dataclasses import dataclass +from typing import override, assert_never, TYPE_CHECKING + +from efro.util import strict_partial, pairs_from_flat +from efro.error import CommunicationError +import bacommon.bs +import bauiv1 as bui + +if TYPE_CHECKING: + import datetime + from typing import Callable + + +class _Section: + def get_height(self) -> float: + """Return section height.""" + raise NotImplementedError() + + def get_button_row(self) -> list[bui.Widget]: + """Return rows of selectable controls.""" + return [] + + def emit(self, subcontainer: bui.Widget, y: float) -> None: + """Emit the section.""" + + +class _TextSection(_Section): + + def __init__( + self, + *, + sub_width: float, + text: bui.Lstr | str, + spacing_top: float = 0.0, + spacing_bottom: float = 0.0, + scale: float = 0.6, + color: tuple[float, float, float, float] = (1.0, 1.0, 1.0, 1.0), + ) -> None: + self.sub_width = sub_width + self.spacing_top = spacing_top + self.spacing_bottom = spacing_bottom + self.color = color + + # We need to bake this down since we plug its final size into + # our math. + self.textbaked = text.evaluate() if isinstance(text, bui.Lstr) else text + + # Calc scale to fit width and then see what height we need at + # that scale. + t_width = max( + 10.0, + bui.get_string_width(self.textbaked, suppress_warning=True) * scale, + ) + self.text_scale = scale * min(1.0, (sub_width * 0.9) / t_width) + + self.text_height = ( + 0.0 + if not self.textbaked + else bui.get_string_height(self.textbaked, suppress_warning=True) + ) * self.text_scale + + self.full_height = self.text_height + spacing_top + spacing_bottom + + @override + def get_height(self) -> float: + return self.full_height + + @override + def emit(self, subcontainer: bui.Widget, y: float) -> None: + bui.textwidget( + parent=subcontainer, + position=( + self.sub_width * 0.5, + y - self.spacing_top - self.text_height * 0.5, + ), + color=self.color, + scale=self.text_scale, + flatness=1.0, + shadow=1.0, + text=self.textbaked, + size=(0, 0), + h_align='center', + v_align='center', + ) + + +class _ButtonSection(_Section): + + def __init__( + self, + *, + sub_width: float, + label: bui.Lstr | str, + color: tuple[float, float, float], + label_color: tuple[float, float, float], + call: Callable[[_ButtonSection], None], + spacing_top: float = 0.0, + spacing_bottom: float = 0.0, + ) -> None: + self.sub_width = sub_width + self.spacing_top = spacing_top + self.spacing_bottom = spacing_bottom + self.color = color + self.label_color = label_color + self.button: bui.Widget | None = None + self.call = call + self.labelfin = label + self.button_width = 130 + self.button_height = 30 + self.full_height = self.button_height + spacing_top + spacing_bottom + + @override + def get_height(self) -> float: + return self.full_height + + @staticmethod + def weak_call(section: weakref.ref[_ButtonSection]) -> None: + """Call button section call if section still exists.""" + section_strong = section() + if section_strong is None: + return + + section_strong.call(section_strong) + + @override + def emit(self, subcontainer: bui.Widget, y: float) -> None: + self.button = bui.buttonwidget( + parent=subcontainer, + position=( + self.sub_width * 0.5 - self.button_width * 0.5, + y - self.spacing_top - self.button_height, + ), + autoselect=True, + label=self.labelfin, + textcolor=self.label_color, + text_scale=0.55, + size=(self.button_width, self.button_height), + color=self.color, + on_activate_call=strict_partial(self.weak_call, weakref.ref(self)), + ) + bui.widget(edit=self.button, depth_range=(0.1, 1.0)) + + @override + def get_button_row(self) -> list[bui.Widget]: + """Return rows of selectable controls.""" + assert self.button is not None + return [self.button] + + +class _DisplayItemsSection(_Section): + + def __init__( + self, + *, + sub_width: float, + items: list[bacommon.bs.DisplayItemWrapper], + width: float = 100.0, + spacing_top: float = 0.0, + spacing_bottom: float = 0.0, + ) -> None: + self.display_item_width = width + + # FIXME - ask for this somewhere in case it changes. + self.display_item_height = self.display_item_width * 0.666 + self.items = items + self.sub_width = sub_width + self.spacing_top = spacing_top + self.spacing_bottom = spacing_bottom + self.full_height = ( + self.display_item_height + spacing_top + spacing_bottom + ) + + @override + def get_height(self) -> float: + return self.full_height + + @override + def emit(self, subcontainer: bui.Widget, y: float) -> None: + # pylint: disable=cyclic-import + from baclassic import show_display_item + + xspacing = 1.1 * self.display_item_width + total_width = ( + 0 if not self.items else ((len(self.items) - 1) * xspacing) + ) + x = -0.5 * total_width + for item in self.items: + show_display_item( + item, + subcontainer, + pos=( + self.sub_width * 0.5 + x, + y - self.spacing_top - self.display_item_height * 0.5, + ), + width=self.display_item_width, + ) + x += xspacing + + +class _ExpireTimeSection(_Section): + + def __init__( + self, + *, + sub_width: float, + time: datetime.datetime, + spacing_top: float = 0.0, + spacing_bottom: float = 0.0, + ) -> None: + self.time = time + self.sub_width = sub_width + self.spacing_top = spacing_top + self.spacing_bottom = spacing_bottom + self.color = (1.0, 0.0, 1.0) + self._timer: bui.AppTimer | None = None + self._widget: bui.Widget | None = None + self.text_scale = 0.4 + self.text_height = 30.0 * self.text_scale + self.full_height = self.text_height + spacing_top + spacing_bottom + + @override + def get_height(self) -> float: + return self.full_height + + def _update(self) -> None: + if not self._widget: + return + + now = bui.utc_now_cloud() + + val: bui.Lstr + if now < self.time: + color = (1.0, 1.0, 1.0, 0.3) + val = bui.Lstr( + resource='expiresInText', + subs=[ + ( + '${T}', + bui.timestring( + (self.time - now).total_seconds(), centi=False + ), + ), + ], + ) + else: + color = (1.0, 0.3, 0.3, 0.5) + val = bui.Lstr( + resource='expiredAgoText', + subs=[ + ( + '${T}', + bui.timestring( + (now - self.time).total_seconds(), centi=False + ), + ), + ], + ) + bui.textwidget(edit=self._widget, text=val, color=color) + + @override + def emit(self, subcontainer: bui.Widget, y: float) -> None: + self._widget = bui.textwidget( + parent=subcontainer, + position=( + self.sub_width * 0.5, + y - self.spacing_top - self.text_height * 0.5, + ), + color=self.color, + scale=self.text_scale, + flatness=1.0, + shadow=1.0, + text='', + maxwidth=self.sub_width * 0.7, + size=(0, 0), + h_align='center', + v_align='center', + ) + self._timer = bui.AppTimer(1.0, bui.WeakCall(self._update), repeat=True) + self._update() + + +@dataclass +class _EntryDisplay: + interaction_style: bacommon.bs.BasicClientUI.InteractionStyle + button_label_positive: bacommon.bs.BasicClientUI.ButtonLabel + button_label_negative: bacommon.bs.BasicClientUI.ButtonLabel + sections: list[_Section] + id: str + total_height: float + color: tuple[float, float, float] + backing: bui.Widget | None = None + button_positive: bui.Widget | None = None + button_spinner_positive: bui.Widget | None = None + button_negative: bui.Widget | None = None + button_spinner_negative: bui.Widget | None = None + processing_complete: bool = False + + +class InboxWindow(bui.MainWindow): + """Popup window to show account messages.""" + + def __init__( + self, + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, + ): + + assert bui.app.classic is not None + uiscale = bui.app.ui_v1.uiscale + + self._entry_displays: list[_EntryDisplay] = [] + + self._width = 900 if uiscale is bui.UIScale.SMALL else 500 + self._height = ( + 600 + if uiscale is bui.UIScale.SMALL + else 460 if uiscale is bui.UIScale.MEDIUM else 600 + ) + + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 1.9 + if uiscale is bui.UIScale.SMALL + else 1.3 if uiscale is bui.UIScale.MEDIUM else 1.0 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_width = min(self._width - 60, screensize[0] / scale) + target_height = min(self._height - 70, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and offset + # by half the width/height of our target area. + yoffs = 0.5 * self._height + 0.5 * target_height + 30.0 + + scroll_width = target_width + scroll_height = target_height - 31 + scroll_bottom = yoffs - 59 - scroll_height + + super().__init__( + root_widget=bui.containerwidget( + size=(self._width, self._height), + toolbar_visibility=( + 'menu_full' if uiscale is bui.UIScale.SMALL else 'menu_full' + ), + scale=scale, + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, + ) + + if uiscale is bui.UIScale.SMALL: + bui.containerwidget( + edit=self._root_widget, on_cancel_call=self.main_window_back + ) + self._back_button = None + else: + self._back_button = bui.buttonwidget( + parent=self._root_widget, + autoselect=True, + position=(50, yoffs - 48), + size=(60, 60), + scale=0.6, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + on_activate_call=self.main_window_back, + ) + bui.containerwidget( + edit=self._root_widget, cancel_button=self._back_button + ) + + self._title_text = bui.textwidget( + parent=self._root_widget, + position=( + self._width * 0.5, + yoffs - (45 if uiscale is bui.UIScale.SMALL else 30), + ), + size=(0, 0), + h_align='center', + v_align='center', + scale=0.6 if uiscale is bui.UIScale.SMALL else 0.8, + text=bui.Lstr(resource='inboxText'), + maxwidth=200, + color=bui.app.ui_v1.title_color, + ) + + # Shows 'loading', 'no messages', etc. + self._infotext = bui.textwidget( + parent=self._root_widget, + position=(self._width * 0.5, self._height * 0.5), + maxwidth=self._width * 0.7, + scale=0.5, + flatness=1.0, + color=(0.4, 0.4, 0.5), + shadow=0.0, + text='', + size=(0, 0), + h_align='center', + v_align='center', + ) + self._loading_spinner = bui.spinnerwidget( + parent=self._root_widget, + position=(self._width * 0.5, self._height * 0.5), + style='bomb', + size=48, + ) + self._scrollwidget = bui.scrollwidget( + parent=self._root_widget, + size=(scroll_width, scroll_height), + position=(self._width * 0.5 - scroll_width * 0.5, scroll_bottom), + capture_arrows=True, + simple_culling_v=200, + claims_left_right=True, + claims_up_down=True, + # Centering messages vertically looks natural with + # fullscreen backing but weird in a window. + center_small_content=uiscale is bui.UIScale.SMALL, + center_small_content_horizontally=True, + border_opacity=0.4, + ) + bui.widget(edit=self._scrollwidget, autoselect=True) + if uiscale is bui.UIScale.SMALL: + bui.widget( + edit=self._scrollwidget, + left_widget=bui.get_special_widget('back_button'), + ) + + bui.containerwidget( + edit=self._root_widget, + cancel_button=self._back_button, + single_depth=True, + ) + + # Kick off request. + plus = bui.app.plus + if plus is None or plus.accounts.primary is None: + self._error(bui.Lstr(resource='notSignedInText')) + return + + with plus.accounts.primary: + plus.cloud.send_message_cb( + bacommon.bs.InboxRequestMessage(), + on_response=bui.WeakCall(self._on_inbox_request_response), + ) + + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) + + def _error(self, errmsg: bui.Lstr | str) -> None: + """Put ourself in a permanent error state.""" + bui.spinnerwidget(edit=self._loading_spinner, visible=False) + bui.textwidget( + edit=self._infotext, + color=(1, 0, 0), + text=errmsg, + ) + + def _on_entry_display_press( + self, + display_weak: weakref.ReferenceType[_EntryDisplay], + action: bacommon.bs.ClientUIAction, + ) -> None: + display = display_weak() + if display is None: + return + + bui.getsound('click01').play() + + self._neuter_entry_display(display) + + # We currently only recognize basic entries and their possible + # interaction types. + if ( + display.interaction_style + is bacommon.bs.BasicClientUI.InteractionStyle.UNKNOWN + ): + display.processing_complete = True + self._close_soon_if_all_processed() + return + + # Error if we're somehow signed out now. + plus = bui.app.plus + if plus is None or plus.accounts.primary is None: + bui.screenmessage( + bui.Lstr(resource='notSignedInText'), color=(1, 0, 0) + ) + bui.getsound('error').play() + return + + # Ask the master-server to run our action. + with plus.accounts.primary: + plus.cloud.send_message_cb( + bacommon.bs.ClientUIActionMessage(display.id, action), + on_response=bui.WeakCall( + self._on_client_ui_action_response, + display_weak, + action, + ), + ) + + # Tweak the UI to show that things are in motion. + button = ( + display.button_positive + if action is bacommon.bs.ClientUIAction.BUTTON_PRESS_POSITIVE + else display.button_negative + ) + button_spinner = ( + display.button_spinner_positive + if action is bacommon.bs.ClientUIAction.BUTTON_PRESS_POSITIVE + else display.button_spinner_negative + ) + if button is not None: + bui.buttonwidget(edit=button, label='') + if button_spinner is not None: + bui.spinnerwidget(edit=button_spinner, visible=True) + + def _close_soon_if_all_processed(self) -> None: + bui.apptimer(0.25, bui.WeakCall(self._close_if_all_processed)) + + def _close_if_all_processed(self) -> None: + if not all(m.processing_complete for m in self._entry_displays): + return + + self.main_window_back() + + def _neuter_entry_display(self, entry: _EntryDisplay) -> None: + errsound = bui.getsound('error') + if entry.button_positive is not None: + bui.buttonwidget( + edit=entry.button_positive, + color=(0.5, 0.5, 0.5), + textcolor=(0.4, 0.4, 0.4), + on_activate_call=errsound.play, + ) + if entry.button_negative is not None: + bui.buttonwidget( + edit=entry.button_negative, + color=(0.5, 0.5, 0.5), + textcolor=(0.4, 0.4, 0.4), + on_activate_call=errsound.play, + ) + if entry.backing is not None: + bui.imagewidget(edit=entry.backing, color=(0.4, 0.4, 0.4)) + + def _on_client_ui_action_response( + self, + display_weak: weakref.ReferenceType[_EntryDisplay], + action: bacommon.bs.ClientUIAction, + response: bacommon.bs.ClientUIActionResponse | Exception, + ) -> None: + # pylint: disable=too-many-branches + display = display_weak() + if display is None: + return + + assert not display.processing_complete + display.processing_complete = True + self._close_soon_if_all_processed() + + # No-op if our UI is dead or on its way out. + if not self._root_widget or self._root_widget.transitioning_out: + return + + # Tweak the button to show results. + button = ( + display.button_positive + if action is bacommon.bs.ClientUIAction.BUTTON_PRESS_POSITIVE + else display.button_negative + ) + button_spinner = ( + display.button_spinner_positive + if action is bacommon.bs.ClientUIAction.BUTTON_PRESS_POSITIVE + else display.button_spinner_negative + ) + # Always hide spinner at this point. + if button_spinner is not None: + bui.spinnerwidget(edit=button_spinner, visible=False) + + # See if we should show an error message. + if isinstance(response, Exception): + if isinstance(response, CommunicationError): + error_message = bui.Lstr( + resource='internal.unavailableNoConnectionText' + ) + else: + error_message = bui.Lstr(resource='errorText') + elif response.error_type is not None: + # If error_type is set, error should be also. + assert response.error_message is not None + error_message = bui.Lstr( + translate=('serverResponses', response.error_message) + ) + else: + error_message = None + + # Show error message if so. + if error_message is not None: + bui.screenmessage(error_message, color=(1, 0, 0)) + bui.getsound('error').play() + if button is not None: + bui.buttonwidget( + edit=button, label=bui.Lstr(resource='errorText') + ) + return + + # Success! + assert not isinstance(response, Exception) + + # Run any bundled effects. + assert bui.app.classic is not None + bui.app.classic.run_bs_client_effects(response.effects) + + # Whee; no error. Mark as done. + if button is not None: + # If we have full unicode, just show a checkmark in all cases. + label: str | bui.Lstr + if bui.supports_unicode_display(): + label = '✓' + else: + label = bui.Lstr(resource='doneText') + bui.buttonwidget(edit=button, label=label) + + def _on_inbox_request_response( + self, response: bacommon.bs.InboxRequestResponse | Exception + ) -> None: + # pylint: disable=too-many-locals + # pylint: disable=too-many-statements + # pylint: disable=too-many-branches + + # No-op if our UI is dead or on its way out. + if not self._root_widget or self._root_widget.transitioning_out: + return + + errmsg: str | bui.Lstr + if isinstance(response, Exception): + errmsg = bui.Lstr(resource='internal.unavailableNoConnectionText') + is_error = True + else: + is_error = response.error is not None + errmsg = ( + '' + if response.error is None + else bui.Lstr(translate=('serverResponses', response.error)) + ) + + if is_error: + self._error(errmsg) + return + + assert isinstance(response, bacommon.bs.InboxRequestResponse) + + # If we got no messages, don't touch anything. This keeps + # keyboard control working in the empty case. + if not response.wrappers: + bui.spinnerwidget(edit=self._loading_spinner, visible=False) + bui.textwidget( + edit=self._infotext, + color=(0.4, 0.4, 0.5), + text=bui.Lstr(resource='noMessagesText'), + ) + return + + bui.scrollwidget(edit=self._scrollwidget, highlight=False) + + bui.spinnerwidget(edit=self._loading_spinner, visible=False) + bui.textwidget(edit=self._infotext, text='') + + uiscale = bui.app.ui_v1.uiscale + + margin_top = 0.0 if uiscale is bui.UIScale.SMALL else 10.0 + margin_v = 0.0 if uiscale is bui.UIScale.SMALL else 5.0 + + # Need this to avoid the dock blocking access to buttons on our + # bottom message. + margin_bottom = 60.0 if uiscale is bui.UIScale.SMALL else 10.0 + + # Even though our window size varies with uiscale, we want + # notifications to target a fixed width. + sub_width = 400.0 + sub_height = margin_top + + # Construct entries for everything we'll display. + for i, wrapper in enumerate(response.wrappers): + + # We need to flatten text here so we can measure it. + # textfin: str + color: tuple[float, float, float] + + interaction_style: bacommon.bs.BasicClientUI.InteractionStyle + button_label_positive: bacommon.bs.BasicClientUI.ButtonLabel + button_label_negative: bacommon.bs.BasicClientUI.ButtonLabel + + sections: list[_Section] = [] + total_height = 80.0 + + # Display only entries where we recognize all style/label + # values and ui component types. + if ( + isinstance(wrapper.ui, bacommon.bs.BasicClientUI) + and not wrapper.ui.contains_unknown_elements() + ): + color = (0.55, 0.5, 0.7) + interaction_style = wrapper.ui.interaction_style + button_label_positive = wrapper.ui.button_label_positive + button_label_negative = wrapper.ui.button_label_negative + + idcls = bacommon.bs.BasicClientUIComponentTypeID + for component in wrapper.ui.components: + ctypeid = component.get_type_id() + section: _Section + + if ctypeid is idcls.TEXT: + assert isinstance( + component, bacommon.bs.BasicClientUIComponentText + ) + section = _TextSection( + sub_width=sub_width, + text=bui.Lstr( + translate=('serverResponses', component.text), + subs=pairs_from_flat(component.subs), + ), + color=component.color, + scale=component.scale, + spacing_top=component.spacing_top, + spacing_bottom=component.spacing_bottom, + ) + total_height += section.get_height() + sections.append(section) + + elif ctypeid is idcls.LINK: + assert isinstance( + component, bacommon.bs.BasicClientUIComponentLink + ) + + def _do_open_url(url: str, sec: _ButtonSection) -> None: + del sec # Unused. + bui.open_url(url) + + section = _ButtonSection( + sub_width=sub_width, + label=bui.Lstr( + translate=('serverResponses', component.label), + subs=pairs_from_flat(component.subs), + ), + color=color, + call=partial(_do_open_url, component.url), + label_color=(0.5, 0.7, 0.6), + spacing_top=component.spacing_top, + spacing_bottom=component.spacing_bottom, + ) + total_height += section.get_height() + sections.append(section) + + elif ctypeid is idcls.DISPLAY_ITEMS: + assert isinstance( + component, + bacommon.bs.BasicClientUIDisplayItems, + ) + section = _DisplayItemsSection( + sub_width=sub_width, + items=component.items, + width=component.width, + spacing_top=component.spacing_top, + spacing_bottom=component.spacing_bottom, + ) + total_height += section.get_height() + sections.append(section) + + elif ctypeid is idcls.BS_CLASSIC_TOURNEY_RESULT: + from bascenev1 import get_trophy_string + + assert isinstance( + component, + bacommon.bs.BasicClientUIBsClassicTourneyResult, + ) + campaignname, levelname = component.game.split(':') + assert bui.app.classic is not None + campaign = bui.app.classic.getcampaign(campaignname) + + tourney_name = bui.Lstr( + value='${A} ${B}', + subs=[ + ( + '${A}', + campaign.getlevel(levelname).displayname, + ), + ( + '${B}', + bui.Lstr( + resource='playerCountAbbreviatedText', + subs=[ + ('${COUNT}', str(component.players)) + ], + ), + ), + ], + ) + + if component.trophy is not None: + trophy_prefix = ( + get_trophy_string(component.trophy) + ' ' + ) + else: + trophy_prefix = '' + + section = _TextSection( + sub_width=sub_width, + text=bui.Lstr( + value='${P}${V}', + subs=[ + ('${P}', trophy_prefix), + ( + '${V}', + bui.Lstr( + translate=( + 'serverResponses', + 'You placed #${RANK}' + ' in a tournament!', + ), + subs=[ + ('${RANK}', str(component.rank)) + ], + ), + ), + ], + ), + color=(1.0, 1.0, 1.0, 1.0), + scale=0.6, + ) + total_height += section.get_height() + sections.append(section) + + section = _TextSection( + sub_width=sub_width, + text=tourney_name, + spacing_top=5, + color=(0.7, 0.7, 1.0, 1.0), + scale=0.7, + ) + total_height += section.get_height() + sections.append(section) + + def _do_tourney_scores( + tournament_id: str, sec: _ButtonSection + ) -> None: + from bauiv1lib.tournamentscores import ( + TournamentScoresWindow, + ) + + assert sec.button is not None + _ = ( + TournamentScoresWindow( + tournament_id=tournament_id, + position=( + sec.button + ).get_screen_space_center(), + ), + ) + + section = _ButtonSection( + sub_width=sub_width, + label=bui.Lstr( + resource='tournamentFinalStandingsText' + ), + color=color, + call=partial( + _do_tourney_scores, component.tournament_id + ), + label_color=(0.5, 0.7, 0.6), + spacing_top=7.0, + spacing_bottom=0.0 if component.prizes else 7.0, + ) + total_height += section.get_height() + sections.append(section) + + if component.prizes: + section = _TextSection( + sub_width=sub_width, + text=bui.Lstr(resource='yourPrizeText'), + spacing_top=6, + color=(1.0, 1.0, 1.0, 0.4), + scale=0.35, + ) + total_height += section.get_height() + sections.append(section) + + section = _DisplayItemsSection( + sub_width=sub_width, + items=component.prizes, + width=70.0, + spacing_top=0.0, + spacing_bottom=0.0, + ) + total_height += section.get_height() + sections.append(section) + + elif ctypeid is idcls.EXPIRE_TIME: + assert isinstance( + component, bacommon.bs.BasicClientUIExpireTime + ) + section = _ExpireTimeSection( + sub_width=sub_width, + time=component.time, + spacing_top=component.spacing_top, + spacing_bottom=component.spacing_bottom, + ) + total_height += section.get_height() + sections.append(section) + + elif ctypeid is idcls.UNKNOWN: + raise RuntimeError('Should not get here.') + + else: + # Make sure we handle all types. + assert_never(ctypeid) + else: + + # Display anything with unknown components as an + # 'upgrade your app to see this' message. + color = (0.6, 0.6, 0.6) + interaction_style = ( + bacommon.bs.BasicClientUI.InteractionStyle.UNKNOWN + ) + button_label_positive = bacommon.bs.BasicClientUI.ButtonLabel.OK + button_label_negative = ( + bacommon.bs.BasicClientUI.ButtonLabel.CANCEL + ) + + section = _TextSection( + sub_width=sub_width, + text=bui.Lstr( + value='You must update the app to view this.' + ), + ) + total_height += section.get_height() + sections.append(section) + + self._entry_displays.append( + _EntryDisplay( + interaction_style=interaction_style, + button_label_positive=button_label_positive, + button_label_negative=button_label_negative, + id=wrapper.id, + sections=sections, + total_height=total_height, + color=color, + ) + ) + sub_height += margin_v + total_height + + sub_height += margin_bottom + + subcontainer = bui.containerwidget( + id='inboxsub', + parent=self._scrollwidget, + size=(sub_width, sub_height), + background=False, + single_depth=True, + claims_left_right=True, + claims_up_down=True, + ) + + backing_tex = bui.gettexture('buttonSquareWide') + + assert bui.app.classic is not None + + buttonrows: list[list[bui.Widget]] = [] + y = sub_height - margin_top + for i, _wrapper in enumerate(response.wrappers): + entry_display = self._entry_displays[i] + entry_display_weak = weakref.ref(entry_display) + bwidth = 140 + bheight = 40 + + ysection = y - 23.0 + + # Backing. + entry_display.backing = img = bui.imagewidget( + parent=subcontainer, + position=( + -0.022 * sub_width, + y - entry_display.total_height * 1.09, + ), + texture=backing_tex, + size=(sub_width * 1.07, entry_display.total_height * 1.15), + color=entry_display.color, + opacity=0.9, + ) + bui.widget(edit=img, depth_range=(0, 0.1)) + + # Section contents. + for sec in entry_display.sections: + sec.emit(subcontainer, ysection) + # Wire up any widgets created by this section. + sec_button_row = sec.get_button_row() + if sec_button_row: + buttonrows.append(sec_button_row) + ysection -= sec.get_height() + + buttonrow: list[bui.Widget] = [] + have_negative_button = ( + entry_display.interaction_style + is ( + bacommon.bs.BasicClientUI + ).InteractionStyle.BUTTON_POSITIVE_NEGATIVE + ) + + bpos = ( + ( + (sub_width - bwidth - 25) + if have_negative_button + else ((sub_width - bwidth) * 0.5) + ), + y - entry_display.total_height + 15.0, + ) + entry_display.button_positive = btn = bui.buttonwidget( + parent=subcontainer, + position=bpos, + autoselect=True, + size=(bwidth, bheight), + label=bui.app.classic.basic_client_ui_button_label_str( + entry_display.button_label_positive + ), + color=entry_display.color, + textcolor=(0, 1, 0), + on_activate_call=bui.WeakCall( + self._on_entry_display_press, + entry_display_weak, + bacommon.bs.ClientUIAction.BUTTON_PRESS_POSITIVE, + ), + enable_sound=False, + ) + bui.widget(edit=btn, depth_range=(0.1, 1.0)) + buttonrow.append(btn) + spinner = entry_display.button_spinner_positive = bui.spinnerwidget( + parent=subcontainer, + position=( + bpos[0] + 0.5 * bwidth, + bpos[1] + 0.5 * bheight, + ), + visible=False, + ) + bui.widget(edit=spinner, depth_range=(0.1, 1.0)) + + if have_negative_button: + bpos = (25, y - entry_display.total_height + 15.0) + entry_display.button_negative = btn2 = bui.buttonwidget( + parent=subcontainer, + position=bpos, + autoselect=True, + size=(bwidth, bheight), + label=bui.app.classic.basic_client_ui_button_label_str( + entry_display.button_label_negative + ), + color=(0.85, 0.5, 0.7), + textcolor=(1, 0.4, 0.4), + on_activate_call=bui.WeakCall( + self._on_entry_display_press, + entry_display_weak, + (bacommon.bs.ClientUIAction).BUTTON_PRESS_NEGATIVE, + ), + enable_sound=False, + ) + bui.widget(edit=btn2, depth_range=(0.1, 1.0)) + buttonrow.append(btn2) + spinner = entry_display.button_spinner_negative = ( + bui.spinnerwidget( + parent=subcontainer, + position=( + bpos[0] + 0.5 * bwidth, + bpos[1] + 0.5 * bheight, + ), + visible=False, + ) + ) + bui.widget(edit=spinner, depth_range=(0.1, 1.0)) + + buttonrows.append(buttonrow) + + y -= margin_v + entry_display.total_height + + uiscale = bui.app.ui_v1.uiscale + above_widget = ( + bui.get_special_widget('back_button') + if uiscale is bui.UIScale.SMALL + else self._back_button + ) + assert above_widget is not None + for i, buttons in enumerate(buttonrows): + if i < len(buttonrows) - 1: + below_widget = buttonrows[i + 1][0] + else: + below_widget = None + + assert buttons # We should never have an empty row. + for j, button in enumerate(buttons): + bui.widget( + edit=button, + up_widget=above_widget, + down_widget=below_widget, + # down_widget=( + # button if below_widget is None else below_widget + # ), + right_widget=buttons[max(j - 1, 0)], + left_widget=buttons[min(j + 1, len(buttons) - 1)], + ) + + above_widget = buttons[0] + + +def _get_bs_classic_tourney_results_sections() -> list[_Section]: + return [] diff --git a/dist/ba_data/python/bauiv1lib/ingamemenu.py b/dist/ba_data/python/bauiv1lib/ingamemenu.py new file mode 100644 index 0000000..c9d0785 --- /dev/null +++ b/dist/ba_data/python/bauiv1lib/ingamemenu.py @@ -0,0 +1,591 @@ +# Released under the MIT License. See LICENSE for details. +# +"""Implements the in-gmae menu window.""" + +from __future__ import annotations + +from typing import TYPE_CHECKING, override +import logging + +import bauiv1 as bui +import bascenev1 as bs + +if TYPE_CHECKING: + from typing import Any, Callable + + +class InGameMenuWindow(bui.MainWindow): + """The menu that can be invoked while in a game.""" + + def __init__( + self, + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, + ): + + # Make a vanilla container; we'll modify it to our needs in + # refresh. + super().__init__( + root_widget=bui.containerwidget( + toolbar_visibility=('menu_in_game') + ), + transition=transition, + origin_widget=origin_widget, + ) + + # Grab this stuff in case it changes. + self._is_demo = bui.app.env.demo + self._is_arcade = bui.app.env.arcade + + self._p_index = 0 + self._use_autoselect = True + self._button_width = 200.0 + self._button_height = 45.0 + self._width = 100.0 + self._height = 100.0 + + self._refresh() + + @override + def get_main_window_state(self) -> bui.MainWindowState: + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) + + def _refresh(self) -> None: + + # Clear everything that was there. + children = self._root_widget.get_children() + for child in children: + child.delete() + + self._r = 'mainMenu' + + self._input_device = input_device = bs.get_ui_input_device() + + # Are we connected to a local player? + self._input_player = input_device.player if input_device else None + + # Are we connected to a remote player?. + self._connected_to_remote_player = ( + input_device.is_attached_to_player() + if (input_device and self._input_player is None) + else False + ) + + positions: list[tuple[float, float, float]] = [] + self._p_index = 0 + + self._refresh_in_game(positions) + + h, v, scale = positions[self._p_index] + self._p_index += 1 + + # If we're in a replay, we have a 'Leave Replay' button. + if bs.is_in_replay(): + bui.buttonwidget( + parent=self._root_widget, + position=(h - self._button_width * 0.5 * scale, v), + scale=scale, + size=(self._button_width, self._button_height), + autoselect=self._use_autoselect, + label=bui.Lstr(resource='replayEndText'), + on_activate_call=self._confirm_end_replay, + ) + elif bs.get_foreground_host_session() is not None: + bui.buttonwidget( + parent=self._root_widget, + position=(h - self._button_width * 0.5 * scale, v), + scale=scale, + size=(self._button_width, self._button_height), + autoselect=self._use_autoselect, + label=bui.Lstr( + resource=self._r + + ( + '.endTestText' + if self._is_benchmark() + else '.endGameText' + ) + ), + on_activate_call=( + self._confirm_end_test + if self._is_benchmark() + else self._confirm_end_game + ), + ) + else: + # Assume we're in a client-session. + bui.buttonwidget( + parent=self._root_widget, + position=(h - self._button_width * 0.5 * scale, v), + scale=scale, + size=(self._button_width, self._button_height), + autoselect=self._use_autoselect, + label=bui.Lstr(resource=f'{self._r}.leavePartyText'), + on_activate_call=self._confirm_leave_party, + ) + + # Add speed-up/slow-down buttons for replays. Ideally this + # should be part of a fading-out playback bar like most media + # players but this works for now. + if bs.is_in_replay(): + b_size = 50.0 + b_buffer_1 = 50.0 + b_buffer_2 = 10.0 + t_scale = 0.75 + assert bui.app.classic is not None + uiscale = bui.app.ui_v1.uiscale + if uiscale is bui.UIScale.SMALL: + b_size *= 0.6 + b_buffer_1 *= 0.8 + b_buffer_2 *= 1.0 + v_offs = -40 + t_scale = 0.5 + elif uiscale is bui.UIScale.MEDIUM: + v_offs = -70 + else: + v_offs = -100 + self._replay_speed_text = bui.textwidget( + parent=self._root_widget, + text=bui.Lstr( + resource='watchWindow.playbackSpeedText', + subs=[('${SPEED}', str(1.23))], + ), + position=(h, v + v_offs + 15 * t_scale), + h_align='center', + v_align='center', + size=(0, 0), + scale=t_scale, + ) + + # Update to current value. + self._change_replay_speed(0) + + # Keep updating in a timer in case it gets changed elsewhere. + self._change_replay_speed_timer = bui.AppTimer( + 0.25, bui.WeakCall(self._change_replay_speed, 0), repeat=True + ) + btn = bui.buttonwidget( + parent=self._root_widget, + position=( + h - b_size - b_buffer_1, + v - b_size - b_buffer_2 + v_offs, + ), + button_type='square', + size=(b_size, b_size), + label='', + autoselect=True, + on_activate_call=bui.Call(self._change_replay_speed, -1), + ) + bui.textwidget( + parent=self._root_widget, + draw_controller=btn, + text='-', + position=( + h - b_size * 0.5 - b_buffer_1, + v - b_size * 0.5 - b_buffer_2 + 5 * t_scale + v_offs, + ), + h_align='center', + v_align='center', + size=(0, 0), + scale=3.0 * t_scale, + ) + btn = bui.buttonwidget( + parent=self._root_widget, + position=(h + b_buffer_1, v - b_size - b_buffer_2 + v_offs), + button_type='square', + size=(b_size, b_size), + label='', + autoselect=True, + on_activate_call=bui.Call(self._change_replay_speed, 1), + ) + bui.textwidget( + parent=self._root_widget, + draw_controller=btn, + text='+', + position=( + h + b_size * 0.5 + b_buffer_1, + v - b_size * 0.5 - b_buffer_2 + 5 * t_scale + v_offs, + ), + h_align='center', + v_align='center', + size=(0, 0), + scale=3.0 * t_scale, + ) + self._pause_resume_button = btn = bui.buttonwidget( + parent=self._root_widget, + position=(h - b_size * 0.5, v - b_size - b_buffer_2 + v_offs), + button_type='square', + size=(b_size, b_size), + label=bui.charstr( + bui.SpecialChar.PLAY_BUTTON + if bs.is_replay_paused() + else bui.SpecialChar.PAUSE_BUTTON + ), + autoselect=True, + on_activate_call=bui.Call(self._pause_or_resume_replay), + ) + btn = bui.buttonwidget( + parent=self._root_widget, + position=( + h - b_size * 1.5 - b_buffer_1 * 2, + v - b_size - b_buffer_2 + v_offs, + ), + button_type='square', + size=(b_size, b_size), + label='', + autoselect=True, + on_activate_call=bui.WeakCall(self._rewind_replay), + ) + bui.textwidget( + parent=self._root_widget, + draw_controller=btn, + # text='<<', + text=bui.charstr(bui.SpecialChar.REWIND_BUTTON), + position=( + h - b_size - b_buffer_1 * 2, + v - b_size * 0.5 - b_buffer_2 + 5 * t_scale + v_offs, + ), + h_align='center', + v_align='center', + size=(0, 0), + scale=2.0 * t_scale, + ) + btn = bui.buttonwidget( + parent=self._root_widget, + position=( + h + b_size * 0.5 + b_buffer_1 * 2, + v - b_size - b_buffer_2 + v_offs, + ), + button_type='square', + size=(b_size, b_size), + label='', + autoselect=True, + on_activate_call=bui.WeakCall(self._forward_replay), + ) + bui.textwidget( + parent=self._root_widget, + draw_controller=btn, + # text='>>', + text=bui.charstr(bui.SpecialChar.FAST_FORWARD_BUTTON), + position=( + h + b_size + b_buffer_1 * 2, + v - b_size * 0.5 - b_buffer_2 + 5 * t_scale + v_offs, + ), + h_align='center', + v_align='center', + size=(0, 0), + scale=2.0 * t_scale, + ) + + def _rewind_replay(self) -> None: + bs.seek_replay(-2 * pow(2, bs.get_replay_speed_exponent())) + + def _forward_replay(self) -> None: + bs.seek_replay(2 * pow(2, bs.get_replay_speed_exponent())) + + def _refresh_in_game( + self, positions: list[tuple[float, float, float]] + ) -> tuple[float, float, float]: + # pylint: disable=too-many-branches + # pylint: disable=too-many-locals + # pylint: disable=too-many-statements + assert bui.app.classic is not None + custom_menu_entries: list[dict[str, Any]] = [] + session = bs.get_foreground_host_session() + if session is not None: + try: + custom_menu_entries = session.get_custom_menu_entries() + for cme in custom_menu_entries: + cme_any: Any = cme # Type check may not hold true. + if ( + not isinstance(cme_any, dict) + or 'label' not in cme + or not isinstance(cme['label'], (str, bui.Lstr)) + or 'call' not in cme + or not callable(cme['call']) + ): + raise ValueError( + 'invalid custom menu entry: ' + str(cme) + ) + except Exception: + custom_menu_entries = [] + logging.exception( + 'Error getting custom menu entries for %s.', session + ) + self._width = 250.0 + self._height = 250.0 if self._input_player else 180.0 + if (self._is_demo or self._is_arcade) and self._input_player: + self._height -= 40 + # if not self._have_settings_button: + self._height -= 50 + if self._connected_to_remote_player: + # In this case we have a leave *and* a disconnect button. + self._height += 50 + self._height += 50 * (len(custom_menu_entries)) + uiscale = bui.app.ui_v1.uiscale + bui.containerwidget( + edit=self._root_widget, + size=(self._width, self._height), + scale=( + 2.15 + if uiscale is bui.UIScale.SMALL + else 1.6 if uiscale is bui.UIScale.MEDIUM else 1.0 + ), + ) + h = 125.0 + v = self._height - 80.0 if self._input_player else self._height - 60 + h_offset = 0 + d_h_offset = 0 + v_offset = -50 + + for _i in range(6 + len(custom_menu_entries)): + positions.append((h, v, 1.0)) + v += v_offset + h += h_offset + h_offset += d_h_offset + + # Player name if applicable. + if self._input_player: + player_name = self._input_player.getname() + h, v, scale = positions[self._p_index] + v += 35 + bui.textwidget( + parent=self._root_widget, + position=(h - self._button_width / 2, v), + size=(self._button_width, self._button_height), + color=(1, 1, 1, 0.5), + scale=0.7, + h_align='center', + text=bui.Lstr(value=player_name), + ) + else: + player_name = '' + h, v, scale = positions[self._p_index] + self._p_index += 1 + btn = bui.buttonwidget( + parent=self._root_widget, + position=(h - self._button_width / 2, v), + size=(self._button_width, self._button_height), + scale=scale, + label=bui.Lstr(resource=f'{self._r}.resumeText'), + autoselect=self._use_autoselect, + on_activate_call=self._resume, + ) + bui.containerwidget(edit=self._root_widget, cancel_button=btn) + + # Add any custom options defined by the current game. + for entry in custom_menu_entries: + h, v, scale = positions[self._p_index] + self._p_index += 1 + + # Ask the entry whether we should resume when we call + # it (defaults to true). + resume = bool(entry.get('resume_on_call', True)) + + if resume: + call = bui.Call(self._resume_and_call, entry['call']) + else: + call = bui.Call(entry['call'], bui.WeakCall(self._resume)) + + bui.buttonwidget( + parent=self._root_widget, + position=(h - self._button_width / 2, v), + size=(self._button_width, self._button_height), + scale=scale, + on_activate_call=call, + label=entry['label'], + autoselect=self._use_autoselect, + ) + + # Add a 'leave' button if the menu-owner has a player. + if (self._input_player or self._connected_to_remote_player) and not ( + self._is_demo or self._is_arcade + ): + h, v, scale = positions[self._p_index] + self._p_index += 1 + btn = bui.buttonwidget( + parent=self._root_widget, + position=(h - self._button_width / 2, v), + size=(self._button_width, self._button_height), + scale=scale, + on_activate_call=self._leave, + label='', + autoselect=self._use_autoselect, + ) + + if ( + player_name != '' + and player_name[0] != '<' + and player_name[-1] != '>' + ): + txt = bui.Lstr( + resource=f'{self._r}.justPlayerText', + subs=[('${NAME}', player_name)], + ) + else: + txt = bui.Lstr(value=player_name) + bui.textwidget( + parent=self._root_widget, + position=( + h, + v + + self._button_height + * (0.64 if player_name != '' else 0.5), + ), + size=(0, 0), + text=bui.Lstr(resource=f'{self._r}.leaveGameText'), + scale=(0.83 if player_name != '' else 1.0), + color=(0.75, 1.0, 0.7), + h_align='center', + v_align='center', + draw_controller=btn, + maxwidth=self._button_width * 0.9, + ) + bui.textwidget( + parent=self._root_widget, + position=(h, v + self._button_height * 0.27), + size=(0, 0), + text=txt, + color=(0.75, 1.0, 0.7), + h_align='center', + v_align='center', + draw_controller=btn, + scale=0.45, + maxwidth=self._button_width * 0.9, + ) + return h, v, scale + + def _change_replay_speed(self, offs: int) -> None: + if not self._replay_speed_text: + if bui.do_once(): + print('_change_replay_speed called without widget') + return + bs.set_replay_speed_exponent(bs.get_replay_speed_exponent() + offs) + actual_speed = pow(2.0, bs.get_replay_speed_exponent()) + bui.textwidget( + edit=self._replay_speed_text, + text=bui.Lstr( + resource='watchWindow.playbackSpeedText', + subs=[('${SPEED}', str(actual_speed))], + ), + ) + + def _pause_or_resume_replay(self) -> None: + if bs.is_replay_paused(): + bs.resume_replay() + bui.buttonwidget( + edit=self._pause_resume_button, + label=bui.charstr(bui.SpecialChar.PAUSE_BUTTON), + ) + else: + bs.pause_replay() + bui.buttonwidget( + edit=self._pause_resume_button, + label=bui.charstr(bui.SpecialChar.PLAY_BUTTON), + ) + + def _is_benchmark(self) -> bool: + session = bs.get_foreground_host_session() + return getattr(session, 'benchmark_type', None) == 'cpu' or ( + bui.app.classic is not None + and bui.app.classic.stress_test_update_timer is not None + ) + + def _confirm_end_game(self) -> None: + # pylint: disable=cyclic-import + from bauiv1lib.confirm import ConfirmWindow + + # FIXME: Currently we crash calling this on client-sessions. + + # Select cancel by default; this occasionally gets called by accident + # in a fit of button mashing and this will help reduce damage. + ConfirmWindow( + bui.Lstr(resource=f'{self._r}.exitToMenuText'), + self._end_game, + cancel_is_selected=True, + ) + + def _confirm_end_test(self) -> None: + # pylint: disable=cyclic-import + from bauiv1lib.confirm import ConfirmWindow + + # Select cancel by default; this occasionally gets called by accident + # in a fit of button mashing and this will help reduce damage. + ConfirmWindow( + bui.Lstr(resource=f'{self._r}.exitToMenuText'), + self._end_game, + cancel_is_selected=True, + ) + + def _confirm_end_replay(self) -> None: + # pylint: disable=cyclic-import + from bauiv1lib.confirm import ConfirmWindow + + # Select cancel by default; this occasionally gets called by accident + # in a fit of button mashing and this will help reduce damage. + ConfirmWindow( + bui.Lstr(resource=f'{self._r}.exitToMenuText'), + self._end_game, + cancel_is_selected=True, + ) + + def _confirm_leave_party(self) -> None: + # pylint: disable=cyclic-import + from bauiv1lib.confirm import ConfirmWindow + + # Select cancel by default; this occasionally gets called by accident + # in a fit of button mashing and this will help reduce damage. + ConfirmWindow( + bui.Lstr(resource=f'{self._r}.leavePartyConfirmText'), + self._leave_party, + cancel_is_selected=True, + ) + + def _leave_party(self) -> None: + bs.disconnect_from_host() + + def _end_game(self) -> None: + assert bui.app.classic is not None + + # no-op if our underlying widget is dead or on its way out. + if not self._root_widget or self._root_widget.transitioning_out: + return + + bui.containerwidget(edit=self._root_widget, transition='out_left') + bui.app.classic.return_to_main_menu_session_gracefully(reset_ui=False) + + def _leave(self) -> None: + if self._input_player: + self._input_player.remove_from_game() + elif self._connected_to_remote_player: + if self._input_device: + self._input_device.detach_from_player() + self._resume() + + def _resume_and_call(self, call: Callable[[], Any]) -> None: + self._resume() + call() + + def _resume(self) -> None: + classic = bui.app.classic + + assert classic is not None + classic.resume() + + bui.app.ui_v1.clear_main_window() + + # If there's callbacks waiting for us to resume, call them. + for call in classic.main_menu_resume_callbacks: + try: + call() + except Exception: + logging.exception('Error in classic resume callback.') + + classic.main_menu_resume_callbacks.clear() + + # def __del__(self) -> None: + # self._resume() diff --git a/dist/ba_data/python/bauiv1lib/inventory.py b/dist/ba_data/python/bauiv1lib/inventory.py new file mode 100644 index 0000000..f2904cf --- /dev/null +++ b/dist/ba_data/python/bauiv1lib/inventory.py @@ -0,0 +1,143 @@ +# Released under the MIT License. See LICENSE for details. +# +"""Provides help related ui.""" + +from __future__ import annotations + +from typing import override + +import bauiv1 as bui + + +class InventoryWindow(bui.MainWindow): + """Shows what you got.""" + + def __init__( + self, + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, + ): + + bui.set_analytics_screen('Help Window') + + assert bui.app.classic is not None + uiscale = bui.app.ui_v1.uiscale + self._width = 1400 if uiscale is bui.UIScale.SMALL else 750 + self._height = ( + 1200 + if uiscale is bui.UIScale.SMALL + else 530 if uiscale is bui.UIScale.MEDIUM else 600 + ) + # xoffs = 70 if uiscale is bui.UIScale.SMALL else 0 + # yoffs = -45 if uiscale is bui.UIScale.SMALL else 0 + + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 1.55 + if uiscale is bui.UIScale.SMALL + else 1.15 if uiscale is bui.UIScale.MEDIUM else 1.0 + ) + + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + # target_width = min(self._width - 60, screensize[0] / scale) + target_height = min(self._height - 100, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * self._height + 0.5 * target_height + 30.0 + + super().__init__( + root_widget=bui.containerwidget( + size=(self._width, self._height), + toolbar_visibility=( + 'menu_full' if uiscale is bui.UIScale.SMALL else 'menu_full' + ), + scale=scale, + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, + ) + + bui.textwidget( + parent=self._root_widget, + position=( + self._width * 0.5, + yoffs - (50 if uiscale is bui.UIScale.SMALL else 30), + ), + size=(0, 0), + text=bui.Lstr(resource='inventoryText'), + color=bui.app.ui_v1.title_color, + scale=0.9 if uiscale is bui.UIScale.SMALL else 1.0, + maxwidth=(130 if uiscale is bui.UIScale.SMALL else 200), + h_align='center', + v_align='center', + ) + + if uiscale is bui.UIScale.SMALL: + bui.containerwidget( + edit=self._root_widget, on_cancel_call=self.main_window_back + ) + else: + btn = bui.buttonwidget( + parent=self._root_widget, + position=(50, yoffs - 50), + size=(60, 55), + scale=0.8, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + extra_touch_border_scale=2.0, + autoselect=True, + on_activate_call=self.main_window_back, + ) + bui.containerwidget(edit=self._root_widget, cancel_button=btn) + + button_width = 300 + self._player_profiles_button = btn = bui.buttonwidget( + parent=self._root_widget, + position=(self._width * 0.5 - button_width * 0.5, yoffs - 200), + autoselect=True, + size=(button_width, 60), + label=bui.Lstr(resource='playerProfilesWindow.titleText'), + color=(0.55, 0.5, 0.6), + icon=bui.gettexture('cuteSpaz'), + textcolor=(0.75, 0.7, 0.8), + on_activate_call=self._player_profiles_press, + ) + bui.textwidget( + parent=self._root_widget, + position=(self._width * 0.5, yoffs - 250), + size=(0, 0), + text=bui.Lstr(resource='moreSoonText'), + scale=0.7, + maxwidth=self._width * 0.9, + h_align='center', + v_align='center', + ) + + def _player_profiles_press(self) -> None: + # pylint: disable=cyclic-import + from bauiv1lib.profile.browser import ProfileBrowserWindow + + # no-op if our underlying widget is dead or on its way out. + if not self._root_widget or self._root_widget.transitioning_out: + return + + self.main_window_replace( + ProfileBrowserWindow(origin_widget=self._player_profiles_button) + ) + + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) diff --git a/dist/ba_data/python/bauiv1lib/keyboard/englishkeyboard.py b/dist/ba_data/python/bauiv1lib/keyboard/englishkeyboard.py index 3de74f8..e8b6507 100644 --- a/dist/ba_data/python/bauiv1lib/keyboard/englishkeyboard.py +++ b/dist/ba_data/python/bauiv1lib/keyboard/englishkeyboard.py @@ -2,7 +2,7 @@ # """Defines a default keyboards.""" -# ba_meta require api 8 +# ba_meta require api 9 # (see https://ballistica.net/wiki/meta-tag-system) from __future__ import annotations diff --git a/dist/ba_data/python/bauiv1lib/kiosk.py b/dist/ba_data/python/bauiv1lib/kiosk.py index 4647563..c3814cd 100644 --- a/dist/ba_data/python/bauiv1lib/kiosk.py +++ b/dist/ba_data/python/bauiv1lib/kiosk.py @@ -4,14 +4,20 @@ from __future__ import annotations +from typing import override + import bascenev1 as bs import bauiv1 as bui -class KioskWindow(bui.Window): +class KioskWindow(bui.MainWindow): """Kiosk mode window.""" - def __init__(self, transition: str = 'in_right'): + def __init__( + self, + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, + ): # pylint: disable=too-many-locals, too-many-statements from bauiv1lib.confirm import QuitWindow @@ -26,11 +32,13 @@ class KioskWindow(bui.Window): super().__init__( root_widget=bui.containerwidget( size=(self._width, self._height), - transition=transition, + # transition=transition, on_cancel_call=_do_cancel, background=False, stack_offset=(0, -130), - ) + ), + transition=transition, + origin_widget=origin_widget, ) self._r = 'kioskWindow' @@ -353,6 +361,20 @@ class KioskWindow(bui.Window): 1.0, bui.WeakCall(self._update), repeat=True ) + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) + + @override + def on_main_window_close(self) -> None: + self._save_state() + def _restore_state(self) -> None: assert bui.app.classic is not None sel_name = bui.app.ui_v1.window_states.get(type(self)) @@ -501,17 +523,16 @@ class KioskWindow(bui.Window): bui.containerwidget(edit=self._root_widget, transition='out_left') def _do_full_menu(self) -> None: + # pylint: disable=cyclic-import from bauiv1lib.mainmenu import MainMenuWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return assert bui.app.classic is not None self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') bui.app.classic.did_menu_intro = True # prevent delayed transition-in - bui.app.ui_v1.set_main_menu_window( - MainMenuWindow().get_root_widget(), from_window=self._root_widget - ) + + self.main_window_replace(MainMenuWindow()) diff --git a/dist/ba_data/python/bauiv1lib/league/rankbutton.py b/dist/ba_data/python/bauiv1lib/league/rankbutton.py deleted file mode 100644 index d952827..0000000 --- a/dist/ba_data/python/bauiv1lib/league/rankbutton.py +++ /dev/null @@ -1,422 +0,0 @@ -# Released under the MIT License. See LICENSE for details. -# -"""Provides a button showing league rank.""" - -from __future__ import annotations - -import logging -from typing import TYPE_CHECKING - -import bauiv1 as bui - -if TYPE_CHECKING: - from typing import Any, Callable - - -class LeagueRankButton: - """Button showing league rank.""" - - def __init__( - self, - parent: bui.Widget, - position: tuple[float, float], - size: tuple[float, float], - scale: float, - on_activate_call: Callable[[], Any] | None = None, - transition_delay: float | None = None, - color: tuple[float, float, float] | None = None, - textcolor: tuple[float, float, float] | None = None, - smooth_update_delay: float | None = None, - ): - if on_activate_call is None: - on_activate_call = bui.WeakCall(self._default_on_activate_call) - self._on_activate_call = on_activate_call - if smooth_update_delay is None: - smooth_update_delay = 1.0 - self._smooth_update_delay = smooth_update_delay - self._size = size - self._scale = scale - if color is None: - color = (0.5, 0.6, 0.5) - if textcolor is None: - textcolor = (1, 1, 1) - self._color = color - self._textcolor = textcolor - self._header_color = (0.8, 0.8, 2.0) - self._parent = parent - self._position: tuple[float, float] = (0.0, 0.0) - - self._button = bui.buttonwidget( - parent=parent, - size=size, - label='', - button_type='square', - scale=scale, - autoselect=True, - on_activate_call=self._on_activate, - transition_delay=transition_delay, - color=color, - ) - - self._title_text = bui.textwidget( - parent=parent, - size=(0, 0), - draw_controller=self._button, - h_align='center', - v_align='center', - maxwidth=size[0] * scale * 0.85, - text=bui.Lstr( - resource='league.leagueRankText', - fallback_resource='coopSelectWindow.powerRankingText', - ), - color=self._header_color, - flatness=1.0, - shadow=1.0, - scale=scale * 0.5, - transition_delay=transition_delay, - ) - - self._value_text = bui.textwidget( - parent=parent, - size=(0, 0), - h_align='center', - v_align='center', - maxwidth=size[0] * scale * 0.85, - text='-', - draw_controller=self._button, - big=True, - scale=scale, - transition_delay=transition_delay, - color=textcolor, - ) - - plus = bui.app.plus - assert plus is not None - - self._smooth_percent: float | None = None - self._percent: int | None = None - self._smooth_rank: float | None = None - self._rank: int | None = None - self._ticking_sound: bui.Sound | None = None - self._smooth_increase_speed = 1.0 - self._league: str | None = None - self._improvement_text: str | None = None - - self._smooth_update_timer: bui.AppTimer | None = None - - # Take note of our account state; we'll refresh later if this changes. - self._account_state_num = plus.get_v1_account_state_num() - self._last_power_ranking_query_time: float | None = None - self._doing_power_ranking_query = False - self.set_position(position) - self._bg_flash = False - self._update_timer = bui.AppTimer( - 1.0, bui.WeakCall(self._update), repeat=True - ) - self._update() - - # If we've got cached power-ranking data already, apply it. - assert bui.app.classic is not None - data = bui.app.classic.accounts.get_cached_league_rank_data() - if data is not None: - self._update_for_league_rank_data(data) - - def _on_activate(self) -> None: - bui.increment_analytics_count('League rank button press') - self._on_activate_call() - - def __del__(self) -> None: - if self._ticking_sound is not None: - self._ticking_sound.stop() - self._ticking_sound = None - - def _start_smooth_update(self) -> None: - self._smooth_update_timer = bui.AppTimer( - 0.05, bui.WeakCall(self._smooth_update), repeat=True - ) - - def _smooth_update(self) -> None: - # pylint: disable=too-many-branches - # pylint: disable=too-many-statements - try: - if not self._button: - return - if self._ticking_sound is None: - self._ticking_sound = bui.getsound('scoreIncrease') - self._ticking_sound.play() - self._bg_flash = not self._bg_flash - color_used = ( - (self._color[0] * 2, self._color[1] * 2, self._color[2] * 2) - if self._bg_flash - else self._color - ) - textcolor_used = (1, 1, 1) if self._bg_flash else self._textcolor - header_color_used = ( - (1, 1, 1) if self._bg_flash else self._header_color - ) - - if self._rank is not None: - assert self._smooth_rank is not None - self._smooth_rank -= 1.0 * self._smooth_increase_speed - finished = int(self._smooth_rank) <= self._rank - elif self._smooth_percent is not None: - self._smooth_percent += 1.0 * self._smooth_increase_speed - assert self._percent is not None - finished = int(self._smooth_percent) >= self._percent - else: - finished = True - if finished: - if self._rank is not None: - self._smooth_rank = float(self._rank) - elif self._percent is not None: - self._smooth_percent = float(self._percent) - color_used = self._color - textcolor_used = self._textcolor - self._smooth_update_timer = None - if self._ticking_sound is not None: - self._ticking_sound.stop() - self._ticking_sound = None - bui.getsound('cashRegister2').play() - assert self._improvement_text is not None - diff_text = bui.textwidget( - parent=self._parent, - size=(0, 0), - h_align='center', - v_align='center', - text='+' + self._improvement_text + '!', - position=( - self._position[0] + self._size[0] * 0.5 * self._scale, - self._position[1] + self._size[1] * -0.2 * self._scale, - ), - color=(0, 1, 0), - flatness=1.0, - shadow=0.0, - scale=self._scale * 0.7, - ) - - def safe_delete(widget: bui.Widget) -> None: - if widget: - widget.delete() - - bui.apptimer(2.0, bui.Call(safe_delete, diff_text)) - status_text: str | bui.Lstr - if self._rank is not None: - assert self._smooth_rank is not None - status_text = bui.Lstr( - resource='numberText', - subs=[('${NUMBER}', str(int(self._smooth_rank)))], - ) - elif self._smooth_percent is not None: - status_text = str(int(self._smooth_percent)) + '%' - else: - status_text = '-' - bui.textwidget( - edit=self._value_text, text=status_text, color=textcolor_used - ) - bui.textwidget(edit=self._title_text, color=header_color_used) - bui.buttonwidget(edit=self._button, color=color_used) - - except Exception: - logging.exception('Error doing smooth update.') - self._smooth_update_timer = None - - def _update_for_league_rank_data(self, data: dict[str, Any] | None) -> None: - # pylint: disable=too-many-branches - # pylint: disable=too-many-statements - - plus = bui.app.plus - assert plus is not None - - # If our button has died, ignore. - if not self._button: - return - - status_text: str | bui.Lstr - - in_top = data is not None and data['rank'] is not None - do_percent = False - if data is None or plus.get_v1_account_state() != 'signed_in': - self._percent = self._rank = None - status_text = '-' - elif in_top: - self._percent = None - self._rank = data['rank'] - prev_league = self._league - self._league = data['l'] - - # If this is the first set, league has changed, or rank has gotten - # worse, snap the smooth value immediately. - assert self._rank is not None - if ( - self._smooth_rank is None - or prev_league != self._league - or self._rank > int(self._smooth_rank) - ): - self._smooth_rank = float(self._rank) - status_text = bui.Lstr( - resource='numberText', - subs=[('${NUMBER}', str(int(self._smooth_rank)))], - ) - else: - try: - if not data['scores'] or data['scores'][-1][1] <= 0: - self._percent = self._rank = None - status_text = '-' - else: - assert bui.app.classic is not None - our_points = ( - bui.app.classic.accounts.get_league_rank_points(data) - ) - progress = float(our_points) / data['scores'][-1][1] - self._percent = int(progress * 100.0) - self._rank = None - do_percent = True - prev_league = self._league - self._league = data['l'] - - # If this is the first set, league has changed, or percent - # has decreased, snap the smooth value immediately. - if ( - self._smooth_percent is None - or prev_league != self._league - or self._percent < int(self._smooth_percent) - ): - self._smooth_percent = float(self._percent) - status_text = str(int(self._smooth_percent)) + '%' - - except Exception: - logging.exception('Error updating power ranking.') - self._percent = self._rank = None - status_text = '-' - - # If we're doing a smooth update, set a timer. - if ( - self._rank is not None - and self._smooth_rank is not None - and int(self._smooth_rank) != self._rank - ): - self._improvement_text = str( - -(int(self._rank) - int(self._smooth_rank)) - ) - diff = abs(self._rank - self._smooth_rank) - if diff > 100: - self._smooth_increase_speed = diff / 80.0 - elif diff > 50: - self._smooth_increase_speed = diff / 70.0 - elif diff > 25: - self._smooth_increase_speed = diff / 55.0 - else: - self._smooth_increase_speed = diff / 40.0 - self._smooth_increase_speed = max(0.4, self._smooth_increase_speed) - bui.apptimer( - self._smooth_update_delay, - bui.WeakCall(self._start_smooth_update), - ) - - if ( - self._percent is not None - and self._smooth_percent is not None - and int(self._smooth_percent) != self._percent - ): - self._improvement_text = str( - (int(self._percent) - int(self._smooth_percent)) - ) - self._smooth_increase_speed = 0.3 - bui.apptimer( - self._smooth_update_delay, - bui.WeakCall(self._start_smooth_update), - ) - - if do_percent: - bui.textwidget( - edit=self._title_text, - text=bui.Lstr(resource='coopSelectWindow.toRankedText'), - ) - else: - try: - assert data is not None - txt = bui.Lstr( - resource='league.leagueFullText', - subs=[ - ( - '${NAME}', - bui.Lstr(translate=('leagueNames', data['l']['n'])), - ), - ], - ) - t_color = data['l']['c'] - except Exception: - txt = bui.Lstr( - resource='league.leagueRankText', - fallback_resource='coopSelectWindow.powerRankingText', - ) - assert bui.app.classic is not None - t_color = bui.app.ui_v1.title_color - bui.textwidget(edit=self._title_text, text=txt, color=t_color) - bui.textwidget(edit=self._value_text, text=status_text) - - def _on_power_ranking_query_response( - self, data: dict[str, Any] | None - ) -> None: - self._doing_power_ranking_query = False - assert bui.app.classic is not None - bui.app.classic.accounts.cache_league_rank_data(data) - self._update_for_league_rank_data(data) - - def _update(self) -> None: - cur_time = bui.apptime() - - plus = bui.app.plus - assert plus is not None - - # If our account state has changed, refresh our UI. - account_state_num = plus.get_v1_account_state_num() - if account_state_num != self._account_state_num: - self._account_state_num = account_state_num - - # And power ranking too... - if not self._doing_power_ranking_query: - self._last_power_ranking_query_time = None - - # Send off a new power-ranking query if its been - # long enough or whatnot. - if not self._doing_power_ranking_query and ( - self._last_power_ranking_query_time is None - or cur_time - self._last_power_ranking_query_time > 30.0 - ): - self._last_power_ranking_query_time = cur_time - self._doing_power_ranking_query = True - plus.power_ranking_query( - callback=bui.WeakCall(self._on_power_ranking_query_response) - ) - - def _default_on_activate_call(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.league.rankwindow import LeagueRankWindow - - LeagueRankWindow(modal=True, origin_widget=self._button) - - def set_position(self, position: tuple[float, float]) -> None: - """Set the button's position.""" - self._position = position - if not self._button: - return - bui.buttonwidget(edit=self._button, position=self._position) - bui.textwidget( - edit=self._title_text, - position=( - self._position[0] + self._size[0] * 0.5 * self._scale, - self._position[1] + self._size[1] * 0.82 * self._scale, - ), - ) - bui.textwidget( - edit=self._value_text, - position=( - self._position[0] + self._size[0] * 0.5 * self._scale, - self._position[1] + self._size[1] * 0.36 * self._scale, - ), - ) - - def get_button(self) -> bui.Widget: - """Return the underlying button bui.Widget>""" - return self._button diff --git a/dist/ba_data/python/bauiv1lib/league/rankwindow.py b/dist/ba_data/python/bauiv1lib/league/rankwindow.py index 7e6d8d1..331e08e 100644 --- a/dist/ba_data/python/bauiv1lib/league/rankwindow.py +++ b/dist/ba_data/python/bauiv1lib/league/rankwindow.py @@ -7,7 +7,7 @@ from __future__ import annotations import copy import logging -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, override from bauiv1lib.popup import PopupMenu import bauiv1 as bui @@ -16,13 +16,12 @@ if TYPE_CHECKING: from typing import Any -class LeagueRankWindow(bui.Window): +class LeagueRankWindow(bui.MainWindow): """Window for showing league rank.""" def __init__( self, - transition: str = 'in_right', - modal: bool = False, + transition: str | None = 'in_right', origin_widget: bui.Widget | None = None, ): # pylint: disable=too-many-statements @@ -32,83 +31,112 @@ class LeagueRankWindow(bui.Window): bui.set_analytics_screen('League Rank Window') self._league_rank_data: dict[str, Any] | None = None - self._modal = modal self._power_ranking_achievements_button: bui.Widget | None = None - self._pro_mult_button: bui.Widget | None = None + self._up_to_date_bonus_button: bui.Widget | None = None self._power_ranking_trophies_button: bui.Widget | None = None self._league_title_text: bui.Widget | None = None self._league_text: bui.Widget | None = None self._league_number_text: bui.Widget | None = None self._your_power_ranking_text: bui.Widget | None = None + self._loading_spinner: bui.Widget | None = None self._season_ends_text: bui.Widget | None = None self._power_ranking_rank_text: bui.Widget | None = None self._to_ranked_text: bui.Widget | None = None self._trophy_counts_reset_text: bui.Widget | None = None - # If they provided an origin-widget, scale up from that. - scale_origin: tuple[float, float] | None - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None - assert bui.app.classic is not None uiscale = bui.app.ui_v1.uiscale - self._width = 1320 if uiscale is bui.UIScale.SMALL else 1120 + self._width = 1500 if uiscale is bui.UIScale.SMALL else 1120 x_inset = 100 if uiscale is bui.UIScale.SMALL else 0 self._height = ( - 657 + 1000 if uiscale is bui.UIScale.SMALL else 710 if uiscale is bui.UIScale.MEDIUM else 800 ) self._r = 'coopSelectWindow' self._rdict = bui.app.lang.get_resource(self._r) - top_extra = 20 if uiscale is bui.UIScale.SMALL else 0 + # top_extra = 20 if uiscale is bui.UIScale.SMALL else 0 + + # self._xoffs = 80.0 if uiscale is bui.UIScale.SMALL else 0 + self._xoffs = 40 self._league_url_arg = '' self._is_current_season = False self._can_do_more_button = True + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 1.3 + if uiscale is bui.UIScale.SMALL + else 0.93 if uiscale is bui.UIScale.MEDIUM else 0.8 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_width = min(self._width - 130, screensize[0] / scale) + target_height = min(self._height - 130, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * self._height + 0.5 * target_height + 30.0 + + self._scroll_width = target_width + self._scroll_height = target_height - 35 + scroll_bottom = yoffs - 80 - self._scroll_height + super().__init__( root_widget=bui.containerwidget( - size=(self._width, self._height + top_extra), + size=(self._width, self._height), stack_offset=( - (0, -15) + (0, 0) if uiscale is bui.UIScale.SMALL else (0, 10) if uiscale is bui.UIScale.MEDIUM else (0, 0) ), - transition=transition, - scale_origin_stack_offset=scale_origin, - scale=( - 1.2 + scale=scale, + toolbar_visibility=( + 'menu_minimal' if uiscale is bui.UIScale.SMALL - else 0.93 if uiscale is bui.UIScale.MEDIUM else 0.8 + else 'menu_full' ), - ) + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) - self._back_button = btn = bui.buttonwidget( - parent=self._root_widget, - position=( - 75 + x_inset, - self._height - 87 - (4 if uiscale is bui.UIScale.SMALL else 0), - ), - size=(120, 60), - scale=1.2, - autoselect=True, - label=bui.Lstr(resource='doneText' if self._modal else 'backText'), - button_type=None if self._modal else 'back', - on_activate_call=self._back, - ) + if uiscale is bui.UIScale.SMALL: + self._back_button = bui.get_special_widget('back_button') + bui.containerwidget( + edit=self._root_widget, on_cancel_call=self.main_window_back + ) + else: + self._back_button = bui.buttonwidget( + parent=self._root_widget, + position=(75 + x_inset, yoffs - 60), + size=(60, 55), + scale=1.2, + autoselect=True, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + on_activate_call=self.main_window_back, + ) + bui.containerwidget( + edit=self._root_widget, + cancel_button=self._back_button, + selected_child=self._back_button, + ) self._title_text = bui.textwidget( parent=self._root_widget, - position=(self._width * 0.5, self._height - 56), + position=( + self._width * 0.5, + yoffs - (55 if uiscale is bui.UIScale.SMALL else 30), + ), size=(0, 0), text=bui.Lstr( resource='league.leagueRankText', @@ -116,44 +144,31 @@ class LeagueRankWindow(bui.Window): ), h_align='center', color=bui.app.ui_v1.title_color, - scale=1.4, + scale=1.2 if uiscale is bui.UIScale.SMALL else 1.3, maxwidth=600, v_align='center', ) - bui.buttonwidget( - edit=btn, - button_type='backSmall', - position=( - 75 + x_inset, - self._height - 87 - (2 if uiscale is bui.UIScale.SMALL else 0), - ), - size=(60, 55), - label=bui.charstr(bui.SpecialChar.BACK), - ) - - self._scroll_width = self._width - (130 + 2 * x_inset) - self._scroll_height = self._height - 160 self._scrollwidget = bui.scrollwidget( parent=self._root_widget, highlight=False, - position=(65 + x_inset, 70), size=(self._scroll_width, self._scroll_height), + position=( + self._width * 0.5 - self._scroll_width * 0.5, + scroll_bottom, + ), center_small_content=True, + center_small_content_horizontally=True, + border_opacity=0.4, ) bui.widget(edit=self._scrollwidget, autoselect=True) bui.containerwidget(edit=self._scrollwidget, claims_left_right=True) - bui.containerwidget( - edit=self._root_widget, - cancel_button=self._back_button, - selected_child=self._back_button, - ) self._last_power_ranking_query_time: float | None = None self._doing_power_ranking_query = False self._subcontainer: bui.Widget | None = None - self._subcontainerwidth = 800 + self._subcontainerwidth = 1024 self._subcontainerheight = 483 self._power_ranking_score_widgets: list[bui.Widget] = [] @@ -161,13 +176,14 @@ class LeagueRankWindow(bui.Window): self._requested_season: str | None = None self._season: str | None = None - # take note of our account state; we'll refresh later if this changes + # Take note of our account state; we'll refresh later if this + # changes. self._account_state = plus.get_v1_account_state() self._refresh() self._restore_state() - # if we've got cached power-ranking data already, display it + # If we've got cached power-ranking data already, display it. assert bui.app.classic is not None info = bui.app.classic.accounts.get_cached_league_rank_data() if info is not None: @@ -178,17 +194,30 @@ class LeagueRankWindow(bui.Window): ) self._update(show=info is None) - def _on_achievements_press(self) -> None: - from bauiv1lib import achievements + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) - # only allow this for all-time or the current season - # (we currently don't keep specific achievement data for old seasons) + @override + def on_main_window_close(self) -> None: + self._save_state() + + def _on_achievements_press(self) -> None: + from bauiv1lib.achievements import AchievementsWindow + + # Only allow this for all-time or the current season (we + # currently don't keep specific achievement data for old + # seasons). if self._season == 'a' or self._is_current_season: prab = self._power_ranking_achievements_button assert prab is not None - achievements.AchievementsWindow( - position=prab.get_screen_space_center() - ) + self.main_window_replace(AchievementsWindow(origin_widget=prab)) else: bui.screenmessage( bui.Lstr( @@ -228,14 +257,14 @@ class LeagueRankWindow(bui.Window): origin_widget=self._activity_mult_button, ) - def _on_pro_mult_press(self) -> None: + def _on_up_to_date_bonus_press(self) -> None: from bauiv1lib import confirm plus = bui.app.plus assert plus is not None txt = bui.Lstr( - resource='coopSelectWindow.proMultInfoText', + resource='league.upToDateBonusDescriptionText', subs=[ ( '${PERCENT}', @@ -245,13 +274,6 @@ class LeagueRankWindow(bui.Window): ) ), ), - ( - '${PRO}', - bui.Lstr( - resource='store.bombSquadProNameText', - subs=[('${APP_NAME}', bui.Lstr(resource='titleText'))], - ), - ), ], ) confirm.ConfirmWindow( @@ -259,7 +281,7 @@ class LeagueRankWindow(bui.Window): cancel_button=False, width=460, height=130, - origin_widget=self._pro_mult_button, + origin_widget=self._up_to_date_bonus_button, ) def _on_trophies_press(self) -> None: @@ -281,7 +303,8 @@ class LeagueRankWindow(bui.Window): ) -> None: self._doing_power_ranking_query = False - # Important: *only* cache this if we requested the current season. + # Important: *only* cache this if we requested the current + # season. if data is not None and data.get('s', None) is None: assert bui.app.classic is not None bui.app.classic.accounts.cache_league_rank_data(data) @@ -310,8 +333,8 @@ class LeagueRankWindow(bui.Window): if not self._doing_power_ranking_query: self._last_power_ranking_query_time = None - # Send off a new power-ranking query if its been long enough or our - # requested season has changed or whatnot. + # Send off a new power-ranking query if its been long enough or + # our requested season has changed or whatnot. if not self._doing_power_ranking_query and ( self._last_power_ranking_query_time is None or cur_time - self._last_power_ranking_query_time > 30.0 @@ -321,13 +344,8 @@ class LeagueRankWindow(bui.Window): bui.textwidget(edit=self._league_title_text, text='') bui.textwidget(edit=self._league_text, text='') bui.textwidget(edit=self._league_number_text, text='') - bui.textwidget( - edit=self._your_power_ranking_text, - text=bui.Lstr( - value='${A}...', - subs=[('${A}', bui.Lstr(resource='loadingText'))], - ), - ) + bui.textwidget(edit=self._your_power_ranking_text, text='') + bui.spinnerwidget(edit=self._loading_spinner, visible=True) bui.textwidget(edit=self._to_ranked_text, text='') bui.textwidget(edit=self._power_ranking_rank_text, text='') bui.textwidget(edit=self._season_ends_text, text='') @@ -348,7 +366,7 @@ class LeagueRankWindow(bui.Window): plus = bui.app.plus assert plus is not None - # (re)create the sub-container if need be.. + # (Re)create the sub-container if need be. if self._subcontainer is not None: self._subcontainer.delete() self._subcontainer = bui.containerwidget( @@ -374,7 +392,7 @@ class LeagueRankWindow(bui.Window): bui.textwidget( parent=w_parent, - position=(h2 - 60, v2 + 106), + position=(self._xoffs + h2 - 60, v2 + 106), size=(0, 0), flatness=1.0, shadow=0.0, @@ -388,7 +406,7 @@ class LeagueRankWindow(bui.Window): self._power_ranking_achievements_button = bui.buttonwidget( parent=w_parent, - position=(h2 - 60, v2 + 10), + position=(self._xoffs + h2 - 60, v2 + 10), size=(200, 80), icon=bui.gettexture('achievementsIcon'), autoselect=True, @@ -402,7 +420,7 @@ class LeagueRankWindow(bui.Window): self._power_ranking_achievement_total_text = bui.textwidget( parent=w_parent, - position=(h2 + h_offs_tally, v2 + 45), + position=(self._xoffs + h2 + h_offs_tally, v2 + 45), size=(0, 0), flatness=1.0, shadow=0.0, @@ -418,7 +436,7 @@ class LeagueRankWindow(bui.Window): self._power_ranking_trophies_button = bui.buttonwidget( parent=w_parent, - position=(h2 - 60, v2 + 10), + position=(self._xoffs + h2 - 60, v2 + 10), size=(200, 80), icon=bui.gettexture('medalSilver'), autoselect=True, @@ -430,7 +448,7 @@ class LeagueRankWindow(bui.Window): ) self._power_ranking_trophies_total_text = bui.textwidget( parent=w_parent, - position=(h2 + h_offs_tally, v2 + 45), + position=(self._xoffs + h2 + h_offs_tally, v2 + 45), size=(0, 0), flatness=1.0, shadow=0.0, @@ -446,7 +464,7 @@ class LeagueRankWindow(bui.Window): bui.textwidget( parent=w_parent, - position=(h2 - 60, v2 + 86), + position=(self._xoffs + h2 - 60, v2 + 86), size=(0, 0), flatness=1.0, shadow=0.0, @@ -462,7 +480,7 @@ class LeagueRankWindow(bui.Window): if plus.get_v1_account_misc_read_val('act', False): self._activity_mult_button = bui.buttonwidget( parent=w_parent, - position=(h2 - 60, v2 + 10), + position=(self._xoffs + h2 - 60, v2 + 10), size=(200, 60), icon=bui.gettexture('heart'), icon_color=(0.5, 0, 0.5), @@ -476,7 +494,7 @@ class LeagueRankWindow(bui.Window): self._activity_mult_text = bui.textwidget( parent=w_parent, - position=(h2 + h_offs_tally, v2 + 40), + position=(self._xoffs + h2 + h_offs_tally, v2 + 40), size=(0, 0), flatness=1.0, shadow=0.0, @@ -491,26 +509,23 @@ class LeagueRankWindow(bui.Window): else: self._activity_mult_button = None - self._pro_mult_button = bui.buttonwidget( + self._up_to_date_bonus_button = bui.buttonwidget( parent=w_parent, - position=(h2 - 60, v2 + 10), + position=(self._xoffs + h2 - 60, v2 + 10), size=(200, 60), icon=bui.gettexture('logo'), icon_color=(0.3, 0, 0.3), - label=bui.Lstr( - resource='store.bombSquadProNameText', - subs=[('${APP_NAME}', bui.Lstr(resource='titleText'))], - ), + label=bui.Lstr(resource='league.upToDateBonusText'), autoselect=True, - on_activate_call=bui.WeakCall(self._on_pro_mult_press), + on_activate_call=bui.WeakCall(self._on_up_to_date_bonus_press), left_widget=self._back_button, color=(0.5, 0.5, 0.6), textcolor=(0.7, 0.7, 0.8), ) - self._pro_mult_text = bui.textwidget( + self._up_to_date_bonus_text = bui.textwidget( parent=w_parent, - position=(h2 + h_offs_tally, v2 + 40), + position=(self._xoffs + h2 + h_offs_tally, v2 + 40), size=(0, 0), flatness=1.0, shadow=0.0, @@ -526,7 +541,7 @@ class LeagueRankWindow(bui.Window): v2 -= spc bui.textwidget( parent=w_parent, - position=(h2 + h_offs_tally - 10 - 40, v2 + 35), + position=(self._xoffs + h2 + h_offs_tally - 10 - 40, v2 + 35), size=(0, 0), flatness=1.0, shadow=0.0, @@ -539,7 +554,7 @@ class LeagueRankWindow(bui.Window): ) self._power_ranking_total_text = bui.textwidget( parent=w_parent, - position=(h2 + h_offs_tally - 40, v2 + 35), + position=(self._xoffs + h2 + h_offs_tally - 40, v2 + 35), size=(0, 0), flatness=1.0, shadow=0.0, @@ -553,7 +568,7 @@ class LeagueRankWindow(bui.Window): self._season_show_text = bui.textwidget( parent=w_parent, - position=(390 - 15, v - 20), + position=(self._xoffs + 390 - 15, v - 20), size=(0, 0), color=(0.6, 0.6, 0.7), maxwidth=200, @@ -567,7 +582,7 @@ class LeagueRankWindow(bui.Window): self._league_title_text = bui.textwidget( parent=w_parent, - position=(470, v - 97), + position=(self._xoffs + 470, v - 97), size=(0, 0), color=(0.6, 0.6, 0.7), maxwidth=230, @@ -583,7 +598,7 @@ class LeagueRankWindow(bui.Window): self._league_text_maxwidth = 210 self._league_text = bui.textwidget( parent=w_parent, - position=(470, v - 140), + position=(self._xoffs + 470, v - 140), size=(0, 0), color=(1, 1, 1), maxwidth=self._league_text_maxwidth, @@ -597,7 +612,7 @@ class LeagueRankWindow(bui.Window): self._league_number_base_pos = (470, v - 140) self._league_number_text = bui.textwidget( parent=w_parent, - position=(470, v - 140), + position=(self._xoffs + 470, v - 140), size=(0, 0), color=(1, 1, 1), maxwidth=100, @@ -609,9 +624,18 @@ class LeagueRankWindow(bui.Window): flatness=1.0, ) + self._loading_spinner = bui.spinnerwidget( + parent=w_parent, + position=( + self._subcontainerwidth * 0.5, + self._subcontainerheight * 0.5, + ), + style='bomb', + size=64, + ) self._your_power_ranking_text = bui.textwidget( parent=w_parent, - position=(470, v - 142 - 70), + position=(self._xoffs + 470, v - 142 - 70), size=(0, 0), color=(0.6, 0.6, 0.7), maxwidth=230, @@ -625,7 +649,7 @@ class LeagueRankWindow(bui.Window): self._to_ranked_text = bui.textwidget( parent=w_parent, - position=(470, v - 250 - 70), + position=(self._xoffs + 470, v - 250 - 70), size=(0, 0), color=(0.6, 0.6, 0.7), maxwidth=230, @@ -639,7 +663,7 @@ class LeagueRankWindow(bui.Window): self._power_ranking_rank_text = bui.textwidget( parent=w_parent, - position=(473, v - 210 - 70), + position=(self._xoffs + 473, v - 210 - 70), size=(0, 0), big=False, text='-', @@ -650,7 +674,7 @@ class LeagueRankWindow(bui.Window): self._season_ends_text = bui.textwidget( parent=w_parent, - position=(470, v - 380), + position=(self._xoffs + 470, v - 380), size=(0, 0), color=(0.6, 0.6, 0.6), maxwidth=230, @@ -663,7 +687,7 @@ class LeagueRankWindow(bui.Window): ) self._trophy_counts_reset_text = bui.textwidget( parent=w_parent, - position=(470, v - 410), + position=(self._xoffs + 470, v - 410), size=(0, 0), color=(0.5, 0.5, 0.5), maxwidth=230, @@ -685,7 +709,7 @@ class LeagueRankWindow(bui.Window): self._see_more_button = bui.buttonwidget( parent=w_parent, label=self._rdict.seeMoreText, - position=(h, v), + position=(self._xoffs + h, v), color=(0.5, 0.5, 0.6), textcolor=(0.7, 0.7, 0.8), size=(230, 60), @@ -698,8 +722,6 @@ class LeagueRankWindow(bui.Window): assert plus is not None our_login_id = plus.get_v1_account_public_login_id() - # our_login_id = _bs.get_account_misc_read_val_2( - # 'resolvedAccountID', None) if not self._can_do_more_button or our_login_id is None: bui.getsound('error').play() bui.screenmessage( @@ -732,6 +754,7 @@ class LeagueRankWindow(bui.Window): if not self._root_widget: return plus = bui.app.plus + uiscale = bui.app.ui_v1.uiscale assert plus is not None assert bui.app.classic is not None accounts = bui.app.classic.accounts @@ -752,8 +775,8 @@ class LeagueRankWindow(bui.Window): status_text = num_text.replace('${NUMBER}', str(data['rank'])) elif data is not None: try: - # handle old seasons where we didn't wind up ranked - # at the end.. + # Handle old seasons where we didn't wind up ranked at + # the end. if not data['scores']: status_text = ( self._rdict.powerRankingFinishedSeasonUnrankedText @@ -796,7 +819,7 @@ class LeagueRankWindow(bui.Window): did_first = False self._is_current_season = False if data is not None: - # build our list of seasons we have available + # Build our list of seasons we have available. for ssn in data['sl']: season_choices.append(ssn) if ssn != 'a' and not did_first: @@ -807,8 +830,9 @@ class LeagueRankWindow(bui.Window): ) ) did_first = True - # if we either did not specify a season or specified the - # first, we're looking at the current.. + + # If we either did not specify a season or specified + # the first, we're looking at the current. if self._season in [ssn, None]: self._is_current_season = True elif ssn == 'a': @@ -825,7 +849,7 @@ class LeagueRankWindow(bui.Window): assert self._subcontainer self._season_popup_menu = PopupMenu( parent=self._subcontainer, - position=(390, v - 45), + position=(self._xoffs + 390, v - 45), width=150, button_size=(200, 50), choices=season_choices, @@ -843,11 +867,12 @@ class LeagueRankWindow(bui.Window): edit=self._season_popup_menu.get_button(), up_widget=self._back_button, ) - bui.widget( - edit=self._back_button, - down_widget=self._power_ranking_achievements_button, - right_widget=self._season_popup_menu.get_button(), - ) + if uiscale is not bui.UIScale.SMALL: + bui.widget( + edit=self._back_button, + down_widget=self._power_ranking_achievements_button, + right_widget=self._season_popup_menu.get_button(), + ) bui.textwidget( edit=self._league_title_text, @@ -928,7 +953,10 @@ class LeagueRankWindow(bui.Window): text=lnum, color=lcolor, position=( - self._league_number_base_pos[0] + l_text_width * 0.5 + 8, + self._xoffs + + self._league_number_base_pos[0] + + l_text_width * 0.5 + + 8, self._league_number_base_pos[1] + 10, ), ) @@ -954,10 +982,11 @@ class LeagueRankWindow(bui.Window): else '' ), ) + bui.spinnerwidget(edit=self._loading_spinner, visible=False) bui.textwidget( edit=self._power_ranking_rank_text, - position=(473, v - 70 - (170 if do_percent else 220)), + position=(self._xoffs + 473, v - 70 - (170 if do_percent else 220)), text=status_text, big=(in_top or do_percent), scale=( @@ -981,13 +1010,16 @@ class LeagueRankWindow(bui.Window): textcolor=(0.7, 0.7, 0.8, 1.0), icon_color=(0.5, 0, 0.5, 1.0), ) - # pylint: disable=consider-using-f-string bui.textwidget( edit=self._activity_mult_text, - text='x ' + ('%.2f' % data['act']), + text=f'x {data['act']:.2f}', ) - have_pro = False if data is None else data['p'] + # This used to be a bonus for 'BombSquad Pro' holders, but since + # we're transitioning away from that it is now a bonus for + # everyone running a recent-ish version of the game. + + have_up_to_date_bonus = data is not None pro_mult = ( 1.0 + float( @@ -995,19 +1027,20 @@ class LeagueRankWindow(bui.Window): ) * 0.01 ) - # pylint: disable=consider-using-f-string bui.textwidget( - edit=self._pro_mult_text, + edit=self._up_to_date_bonus_text, text=( ' -' - if (data is None or not have_pro) - else 'x ' + ('%.2f' % pro_mult) + if (data is None or not have_up_to_date_bonus) + else f'x {pro_mult:.2f}' ), ) bui.buttonwidget( - edit=self._pro_mult_button, - textcolor=(0.7, 0.7, 0.8, (1.0 if have_pro else 0.5)), - icon_color=(0.5, 0, 0.5) if have_pro else (0.5, 0, 0.5, 0.2), + edit=self._up_to_date_bonus_button, + textcolor=(0.7, 0.7, 0.8, (1.0 if have_up_to_date_bonus else 0.5)), + icon_color=( + (0.5, 0, 0.5) if have_up_to_date_bonus else (0.5, 0, 0.5, 0.2) + ), ) bui.buttonwidget( edit=self._power_ranking_achievements_button, @@ -1015,8 +1048,8 @@ class LeagueRankWindow(bui.Window): + bui.Lstr(resource='achievementsText').evaluate(), ) - # for the achievement value, use the number they gave us for - # non-current seasons; otherwise calc our own + # For the achievement value, use the number they gave us for + # non-current seasons; otherwise calc our own. total_ach_value = 0 for ach in bui.app.classic.ach.achievements: if ach.complete: @@ -1080,7 +1113,7 @@ class LeagueRankWindow(bui.Window): self._power_ranking_score_widgets.append( bui.textwidget( parent=w_parent, - position=(h2 - 20, v2), + position=(self._xoffs + h2 - 20, v2), size=(0, 0), color=(1, 1, 1) if is_us else (0.6, 0.6, 0.7), maxwidth=40, @@ -1095,7 +1128,7 @@ class LeagueRankWindow(bui.Window): self._power_ranking_score_widgets.append( bui.textwidget( parent=w_parent, - position=(h2 + 20, v2), + position=(self._xoffs + h2 + 20, v2), size=(0, 0), color=(1, 1, 1) if is_us else tally_color, maxwidth=60, @@ -1109,7 +1142,7 @@ class LeagueRankWindow(bui.Window): ) txt = bui.textwidget( parent=w_parent, - position=(h2 + 60, v2 - (28 * 0.5) / 0.9), + position=(self._xoffs + h2 + 60, v2 - (28 * 0.5) / 0.9), size=(210 / 0.9, 28), color=(1, 1, 1) if is_us else (0.6, 0.6, 0.6), maxwidth=210, @@ -1139,35 +1172,17 @@ class LeagueRankWindow(bui.Window): def _show_account_info( self, account_id: str, textwidget: bui.Widget ) -> None: - from bauiv1lib.account import viewer + from bauiv1lib.account.viewer import AccountViewerWindow bui.getsound('swish').play() - viewer.AccountViewerWindow( + AccountViewerWindow( account_id=account_id, position=textwidget.get_screen_space_center() ) def _on_season_change(self, value: str) -> None: self._requested_season = value - self._last_power_ranking_query_time = None # make sure we update asap + self._last_power_ranking_query_time = None # Update asap. self._update(show=True) def _save_state(self) -> None: pass - - def _back(self) -> None: - from bauiv1lib.coop.browser import CoopBrowserWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - self._save_state() - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - if not self._modal: - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - CoopBrowserWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) diff --git a/dist/ba_data/python/bauiv1lib/mainmenu.py b/dist/ba_data/python/bauiv1lib/mainmenu.py index cc79347..a38ec83 100644 --- a/dist/ba_data/python/bauiv1lib/mainmenu.py +++ b/dist/ba_data/python/bauiv1lib/mainmenu.py @@ -1,11 +1,10 @@ # Released under the MIT License. See LICENSE for details. # """Implements the main menu window.""" -# pylint: disable=too-many-lines from __future__ import annotations -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, override import logging import bauiv1 as bui @@ -15,41 +14,34 @@ if TYPE_CHECKING: from typing import Any, Callable -class MainMenuWindow(bui.Window): - """The main menu window, both in-game and in the main menu session.""" +class MainMenuWindow(bui.MainWindow): + """The main menu window.""" - def __init__(self, transition: str | None = 'in_right'): - # pylint: disable=cyclic-import - import threading - from bascenev1lib.mainmenu import MainMenuSession - - plus = bui.app.plus - assert plus is not None - - self._in_game = not isinstance( - bs.get_foreground_host_session(), - MainMenuSession, - ) + def __init__( + self, + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, + ): # Preload some modules we use in a background thread so we won't # have a visual hitch when the user taps them. - threading.Thread(target=self._preload_modules).start() + bui.app.threadpool.submit_no_wait(self._preload_modules) - if not self._in_game: - bui.set_analytics_screen('Main Menu') - self._show_remote_app_info_on_first_launch() + bui.set_analytics_screen('Main Menu') + self._show_remote_app_info_on_first_launch() + + uiscale = bui.app.ui_v1.uiscale # Make a vanilla container; we'll modify it to our needs in # refresh. super().__init__( root_widget=bui.containerwidget( - transition=transition, - toolbar_visibility=( - 'menu_minimal_no_back' - if self._in_game - else 'menu_minimal_no_back' - ), - ) + toolbar_visibility=('menu_full_no_back') + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) # Grab this stuff in case it changes. @@ -59,7 +51,6 @@ class MainMenuWindow(bui.Window): self._tdelay = 0.0 self._t_delay_inc = 0.02 self._t_delay_play = 1.7 - self._p_index = 0 self._use_autoselect = True self._button_width = 200.0 self._button_height = 45.0 @@ -67,42 +58,39 @@ class MainMenuWindow(bui.Window): self._height = 100.0 self._demo_menu_button: bui.Widget | None = None self._gather_button: bui.Widget | None = None - self._start_button: bui.Widget | None = None + self._play_button: bui.Widget | None = None self._watch_button: bui.Widget | None = None - self._account_button: bui.Widget | None = None self._how_to_play_button: bui.Widget | None = None self._credits_button: bui.Widget | None = None - self._settings_button: bui.Widget | None = None - self._next_refresh_allow_time = 0.0 - - self._store_char_tex = self._get_store_char_tex() self._refresh() + self._restore_state() - # Keep an eye on a few things and refresh if they change. - self._account_state = plus.get_v1_account_state() - self._account_state_num = plus.get_v1_account_state_num() - self._account_type = ( - plus.get_v1_account_type() - if self._account_state == 'signed_in' - else None - ) - self._refresh_timer = bui.AppTimer( - 0.27, bui.WeakCall(self._check_refresh), repeat=True + @override + def on_main_window_close(self) -> None: + self._save_state() + + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) ) @staticmethod def _preload_modules() -> None: """Preload modules we use; avoids hitches (called in bg thread).""" + # pylint: disable=cyclic-import import bauiv1lib.getremote as _unused import bauiv1lib.confirm as _unused2 - import bauiv1lib.store.button as _unused3 - import bauiv1lib.kiosk as _unused4 import bauiv1lib.account.settings as _unused5 import bauiv1lib.store.browser as _unused6 - import bauiv1lib.creditslist as _unused7 - import bauiv1lib.helpui as _unused8 + import bauiv1lib.credits as _unused7 + import bauiv1lib.help as _unused8 import bauiv1lib.settings.allsettings as _unused9 import bauiv1lib.gather as _unused10 import bauiv1lib.watch as _unused11 @@ -111,8 +99,9 @@ class MainMenuWindow(bui.Window): def _show_remote_app_info_on_first_launch(self) -> None: app = bui.app assert app.classic is not None - # The first time the non-in-game menu pops up, we might wanna show - # a 'get-remote-app' dialog in front of it. + + # The first time the non-in-game menu pops up, we might wanna + # show a 'get-remote-app' dialog in front of it. if app.classic.first_main_menu: app.classic.first_main_menu = False try: @@ -138,67 +127,16 @@ class MainMenuWindow(bui.Window): except Exception: logging.exception('Error showing get-remote-app info.') - def _get_store_char_tex(self) -> str: - plus = bui.app.plus - assert plus is not None - return ( - 'storeCharacterXmas' - if plus.get_v1_account_misc_read_val('xmas', False) - else ( - 'storeCharacterEaster' - if plus.get_v1_account_misc_read_val('easter', False) - else 'storeCharacter' - ) - ) - - def _check_refresh(self) -> None: - plus = bui.app.plus - assert plus is not None - - if not self._root_widget: - return - - now = bui.apptime() - if now < self._next_refresh_allow_time: - return - - # Don't refresh for the first few seconds the game is up so we - # don't interrupt the transition in. - - # bui.app.main_menu_window_refresh_check_count += 1 - # if bui.app.main_menu_window_refresh_check_count < 4: - # return - - store_char_tex = self._get_store_char_tex() - account_state_num = plus.get_v1_account_state_num() - if ( - account_state_num != self._account_state_num - or store_char_tex != self._store_char_tex - ): - self._store_char_tex = store_char_tex - self._account_state_num = account_state_num - account_state = self._account_state = plus.get_v1_account_state() - self._account_type = ( - plus.get_v1_account_type() - if account_state == 'signed_in' - else None - ) - self._save_state() - self._refresh() - self._restore_state() - def get_play_button(self) -> bui.Widget | None: """Return the play button.""" - return self._start_button + return self._play_button def _refresh(self) -> None: - # pylint: disable=too-many-branches - # pylint: disable=too-many-locals # pylint: disable=too-many-statements - from bauiv1lib.store.button import StoreButton + # pylint: disable=too-many-locals - plus = bui.app.plus - assert plus is not None + classic = bui.app.classic + assert classic is not None # Clear everything that was there. children = self._root_widget.get_children() @@ -215,492 +153,130 @@ class MainMenuWindow(bui.Window): app = bui.app assert app.classic is not None - self._have_quit_button = app.ui_v1.uiscale is bui.UIScale.LARGE or ( - app.classic.platform == 'windows' - and app.classic.subplatform == 'oculus' - ) + uiscale = app.ui_v1.uiscale - self._have_store_button = not self._in_game - - self._have_settings_button = ( - not self._in_game or not app.ui_v1.use_toolbars - ) and not (self._is_demo or self._is_arcade) - - self._input_device = input_device = bs.get_ui_input_device() - - # Are we connected to a local player? - self._input_player = input_device.player if input_device else None - - # Are we connected to a remote player?. - self._connected_to_remote_player = ( - input_device.is_attached_to_player() - if (input_device and self._input_player is None) - else False - ) - - positions: list[tuple[float, float, float]] = [] - self._p_index = 0 - - if self._in_game: - h, v, scale = self._refresh_in_game(positions) - else: - h, v, scale = self._refresh_not_in_game(positions) - - if self._have_settings_button: - h, v, scale = positions[self._p_index] - self._p_index += 1 - self._settings_button = bui.buttonwidget( - parent=self._root_widget, - position=(h - self._button_width * 0.5 * scale, v), - size=(self._button_width, self._button_height), - scale=scale, - autoselect=self._use_autoselect, - label=bui.Lstr(resource=f'{self._r}.settingsText'), - transition_delay=self._tdelay, - on_activate_call=self._settings, - ) - - # Scattered eggs on easter. - if ( - plus.get_v1_account_misc_read_val('easter', False) - and not self._in_game - ): - icon_size = 34 - bui.imagewidget( + # Temp note about UI changes. + if bool(False): + bui.textwidget( parent=self._root_widget, position=( - h - icon_size * 0.5 - 15, - v + self._button_height * scale - icon_size * 0.24 + 1.5, - ), - transition_delay=self._tdelay, - size=(icon_size, icon_size), - texture=bui.gettexture('egg3'), - tilt_scale=0.0, - ) - - self._tdelay += self._t_delay_inc - - if self._in_game: - h, v, scale = positions[self._p_index] - self._p_index += 1 - - # If we're in a replay, we have a 'Leave Replay' button. - if bs.is_in_replay(): - bui.buttonwidget( - parent=self._root_widget, - position=(h - self._button_width * 0.5 * scale, v), - scale=scale, - size=(self._button_width, self._button_height), - autoselect=self._use_autoselect, - label=bui.Lstr(resource='replayEndText'), - on_activate_call=self._confirm_end_replay, - ) - elif bs.get_foreground_host_session() is not None: - bui.buttonwidget( - parent=self._root_widget, - position=(h - self._button_width * 0.5 * scale, v), - scale=scale, - size=(self._button_width, self._button_height), - autoselect=self._use_autoselect, - label=bui.Lstr( - resource=self._r - + ( - '.endTestText' - if self._is_benchmark() - else '.endGameText' - ) - ), - on_activate_call=( - self._confirm_end_test - if self._is_benchmark() - else self._confirm_end_game - ), - ) - else: - # Assume we're in a client-session. - bui.buttonwidget( - parent=self._root_widget, - position=(h - self._button_width * 0.5 * scale, v), - scale=scale, - size=(self._button_width, self._button_height), - autoselect=self._use_autoselect, - label=bui.Lstr(resource=f'{self._r}.leavePartyText'), - on_activate_call=self._confirm_leave_party, - ) - - self._store_button: bui.Widget | None - if self._have_store_button: - this_b_width = self._button_width - h, v, scale = positions[self._p_index] - self._p_index += 1 - - sbtn = self._store_button_instance = StoreButton( - parent=self._root_widget, - position=(h - this_b_width * 0.5 * scale, v), - size=(this_b_width, self._button_height), - scale=scale, - on_activate_call=bui.WeakCall(self._on_store_pressed), - sale_scale=1.3, - transition_delay=self._tdelay, - ) - self._store_button = store_button = sbtn.get_button() - assert bui.app.classic is not None - uiscale = bui.app.ui_v1.uiscale - icon_size = ( - 55 - if uiscale is bui.UIScale.SMALL - else 55 if uiscale is bui.UIScale.MEDIUM else 70 - ) - bui.imagewidget( - parent=self._root_widget, - position=( - h - icon_size * 0.5, - v + self._button_height * scale - icon_size * 0.23, - ), - transition_delay=self._tdelay, - size=(icon_size, icon_size), - texture=bui.gettexture(self._store_char_tex), - tilt_scale=0.0, - draw_controller=store_button, - ) - self._tdelay += self._t_delay_inc - else: - self._store_button = None - - self._quit_button: bui.Widget | None - if not self._in_game and self._have_quit_button: - h, v, scale = positions[self._p_index] - self._p_index += 1 - self._quit_button = quit_button = bui.buttonwidget( - parent=self._root_widget, - autoselect=self._use_autoselect, - position=(h - self._button_width * 0.5 * scale, v), - size=(self._button_width, self._button_height), - scale=scale, - label=bui.Lstr( - resource=self._r - + ( - '.quitText' - if 'Mac' in app.classic.legacy_user_agent_string - else '.exitGameText' + (-400, 400) + if uiscale is bui.UIScale.LARGE + else ( + (-270, 320) + if uiscale is bui.UIScale.MEDIUM + else (-280, 280) ) ), - on_activate_call=self._quit, - transition_delay=self._tdelay, - ) - - # Scattered eggs on easter. - if plus.get_v1_account_misc_read_val('easter', False): - icon_size = 30 - bui.imagewidget( - parent=self._root_widget, - position=( - h - icon_size * 0.5 + 25, - v - + self._button_height * scale - - icon_size * 0.24 - + 1.5, - ), - transition_delay=self._tdelay, - size=(icon_size, icon_size), - texture=bui.gettexture('egg1'), - tilt_scale=0.0, - ) - - bui.containerwidget( - edit=self._root_widget, cancel_button=quit_button - ) - self._tdelay += self._t_delay_inc - else: - self._quit_button = None - - # If we're not in-game, have no quit button, and this is - # android, we want back presses to quit our activity. - if ( - not self._in_game - and not self._have_quit_button - and app.classic.platform == 'android' - ): - - def _do_quit() -> None: - bui.quit(confirm=True, quit_type=bui.QuitType.BACK) - - bui.containerwidget( - edit=self._root_widget, on_cancel_call=_do_quit - ) - - # Add speed-up/slow-down buttons for replays. Ideally this - # should be part of a fading-out playback bar like most media - # players but this works for now. - if bs.is_in_replay(): - b_size = 50.0 - b_buffer_1 = 50.0 - b_buffer_2 = 10.0 - t_scale = 0.75 - assert bui.app.classic is not None - uiscale = bui.app.ui_v1.uiscale - if uiscale is bui.UIScale.SMALL: - b_size *= 0.6 - b_buffer_1 *= 0.8 - b_buffer_2 *= 1.0 - v_offs = -40 - t_scale = 0.5 - elif uiscale is bui.UIScale.MEDIUM: - v_offs = -70 - else: - v_offs = -100 - self._replay_speed_text = bui.textwidget( - parent=self._root_widget, - text=bui.Lstr( - resource='watchWindow.playbackSpeedText', - subs=[('${SPEED}', str(1.23))], - ), - position=(h, v + v_offs + 15 * t_scale), - h_align='center', - v_align='center', size=(0, 0), - scale=t_scale, - ) - - # Update to current value. - self._change_replay_speed(0) - - # Keep updating in a timer in case it gets changed elsewhere. - self._change_replay_speed_timer = bui.AppTimer( - 0.25, bui.WeakCall(self._change_replay_speed, 0), repeat=True - ) - btn = bui.buttonwidget( - parent=self._root_widget, - position=( - h - b_size - b_buffer_1, - v - b_size - b_buffer_2 + v_offs, + scale=0.4, + flatness=1.0, + text=( + 'WARNING: This build contains a revamped UI\n' + 'which is still a work-in-progress. A number\n' + 'of features are not currently functional or\n' + 'contain bugs. To go back to the stable legacy UI,\n' + 'grab version 1.7.36 from ballistica.net' ), - button_type='square', - size=(b_size, b_size), - label='', - autoselect=True, - on_activate_call=bui.Call(self._change_replay_speed, -1), - ) - bui.textwidget( - parent=self._root_widget, - draw_controller=btn, - text='-', - position=( - h - b_size * 0.5 - b_buffer_1, - v - b_size * 0.5 - b_buffer_2 + 5 * t_scale + v_offs, - ), - h_align='center', - v_align='center', - size=(0, 0), - scale=3.0 * t_scale, - ) - btn = bui.buttonwidget( - parent=self._root_widget, - position=(h + b_buffer_1, v - b_size - b_buffer_2 + v_offs), - button_type='square', - size=(b_size, b_size), - label='', - autoselect=True, - on_activate_call=bui.Call(self._change_replay_speed, 1), - ) - bui.textwidget( - parent=self._root_widget, - draw_controller=btn, - text='+', - position=( - h + b_size * 0.5 + b_buffer_1, - v - b_size * 0.5 - b_buffer_2 + 5 * t_scale + v_offs, - ), - h_align='center', - v_align='center', - size=(0, 0), - scale=3.0 * t_scale, - ) - self._pause_resume_button = btn = bui.buttonwidget( - parent=self._root_widget, - position=(h - b_size * 0.5, v - b_size - b_buffer_2 + v_offs), - button_type='square', - size=(b_size, b_size), - label=bui.charstr( - bui.SpecialChar.PLAY_BUTTON - if bs.is_replay_paused() - else bui.SpecialChar.PAUSE_BUTTON - ), - autoselect=True, - on_activate_call=bui.Call(self._pause_or_resume_replay), - ) - btn = bui.buttonwidget( - parent=self._root_widget, - position=( - h - b_size * 1.5 - b_buffer_1 * 2, - v - b_size - b_buffer_2 + v_offs, - ), - button_type='square', - size=(b_size, b_size), - label='', - autoselect=True, - on_activate_call=bui.WeakCall(self._rewind_replay), - ) - bui.textwidget( - parent=self._root_widget, - draw_controller=btn, - # text='<<', - text=bui.charstr(bui.SpecialChar.REWIND_BUTTON), - position=( - h - b_size - b_buffer_1 * 2, - v - b_size * 0.5 - b_buffer_2 + 5 * t_scale + v_offs, - ), - h_align='center', - v_align='center', - size=(0, 0), - scale=2.0 * t_scale, - ) - btn = bui.buttonwidget( - parent=self._root_widget, - position=( - h + b_size * 0.5 + b_buffer_1 * 2, - v - b_size - b_buffer_2 + v_offs, - ), - button_type='square', - size=(b_size, b_size), - label='', - autoselect=True, - on_activate_call=bui.WeakCall(self._forward_replay), - ) - bui.textwidget( - parent=self._root_widget, - draw_controller=btn, - # text='>>', - text=bui.charstr(bui.SpecialChar.FAST_FORWARD_BUTTON), - position=( - h + b_size + b_buffer_1 * 2, - v - b_size * 0.5 - b_buffer_2 + 5 * t_scale + v_offs, - ), - h_align='center', - v_align='center', - size=(0, 0), - scale=2.0 * t_scale, + h_align='left', + v_align='top', ) - def _rewind_replay(self) -> None: - bs.seek_replay(-2 * pow(2, bs.get_replay_speed_exponent())) + self._have_quit_button = app.classic.platform in ( + 'windows', + 'mac', + 'linux', + ) - def _forward_replay(self) -> None: - bs.seek_replay(2 * pow(2, bs.get_replay_speed_exponent())) + if not classic.did_menu_intro: + self._tdelay = 1.6 + self._t_delay_inc = 0.03 + classic.did_menu_intro = True - def _refresh_not_in_game( - self, positions: list[tuple[float, float, float]] - ) -> tuple[float, float, float]: - # pylint: disable=too-many-branches - # pylint: disable=too-many-locals - # pylint: disable=too-many-statements - plus = bui.app.plus - assert plus is not None + td1 = 2 + td2 = 1 + td3 = 0 + td4 = -1 + td5 = -2 - assert bui.app.classic is not None - if not bui.app.classic.did_menu_intro: - self._tdelay = 2.0 - self._t_delay_inc = 0.02 - self._t_delay_play = 1.7 - - def _set_allow_time() -> None: - self._next_refresh_allow_time = bui.apptime() + 2.5 - - # Slight hack: widget transitions currently only progress - # when frames are being drawn, but this tends to get called - # before frame drawing even starts, meaning we don't know - # exactly how long we should wait before refreshing to avoid - # interrupting the transition. To make things a bit better, - # let's do a redundant set of the time in a deferred call - # which hopefully happens closer to actual frame draw times. - _set_allow_time() - bui.pushcall(_set_allow_time) - - bui.app.classic.did_menu_intro = True self._width = 400.0 self._height = 200.0 - enable_account_button = True - account_type_name: str | bui.Lstr - if plus.get_v1_account_state() == 'signed_in': - account_type_name = plus.get_v1_account_display_string() - account_type_icon = None - account_textcolor = (1.0, 1.0, 1.0) - else: - account_type_name = bui.Lstr( - resource='notSignedInText', - fallback_resource='accountSettingsWindow.titleText', - ) - account_type_icon = None - account_textcolor = (1.0, 0.2, 0.2) - account_type_icon_color = (1.0, 1.0, 1.0) - account_type_call = self._show_account_window - account_type_enable_button_sound = True - b_count = 3 # play, help, credits - if self._have_settings_button: - b_count += 1 - if enable_account_button: - b_count += 1 - if self._have_quit_button: - b_count += 1 - if self._have_store_button: - b_count += 1 - uiscale = bui.app.ui_v1.uiscale + + play_button_width = self._button_width * 0.65 + play_button_height = self._button_height * 1.1 + play_button_scale = 1.7 + hspace = 20.0 + side_button_width = self._button_width * 0.4 + side_button_height = side_button_width + side_button_scale = 0.95 + side_button_y_offs = 5.0 + hspace2 = 15.0 + side_button_2_width = self._button_width * 1.0 + side_button_2_height = side_button_2_width * 0.3 + side_button_2_y_offs = 10.0 + side_button_2_scale = 0.5 + if uiscale is bui.UIScale.SMALL: - root_widget_scale = 1.6 - play_button_width = self._button_width * 0.65 - play_button_height = self._button_height * 1.1 - small_button_scale = 0.51 if b_count > 6 else 0.63 + # We're a generally widescreen shaped window, so bump our + # overall scale up a bit when screen width is wider than safe + # bounds to take advantage of the extra space. + screensize = bui.get_virtual_screen_size() + safesize = bui.get_virtual_safe_area_size() + root_widget_scale = min(1.55, 1.3 * screensize[0] / safesize[0]) button_y_offs = -20.0 - button_y_offs2 = -60.0 self._button_height *= 1.3 - button_spacing = 1.04 elif uiscale is bui.UIScale.MEDIUM: root_widget_scale = 1.3 - play_button_width = self._button_width * 0.65 - play_button_height = self._button_height * 1.1 - small_button_scale = 0.6 button_y_offs = -55.0 - button_y_offs2 = -75.0 self._button_height *= 1.25 - button_spacing = 1.1 else: root_widget_scale = 1.0 - play_button_width = self._button_width * 0.65 - play_button_height = self._button_height * 1.1 - small_button_scale = 0.75 - button_y_offs = -80.0 - button_y_offs2 = -100.0 + button_y_offs = -90.0 self._button_height *= 1.2 - button_spacing = 1.1 - spc = self._button_width * small_button_scale * button_spacing + bui.containerwidget( edit=self._root_widget, size=(self._width, self._height), background=False, scale=root_widget_scale, ) - assert not positions - positions.append((self._width * 0.5, button_y_offs, 1.7)) - x_offs = self._width * 0.5 - (spc * (b_count - 1) * 0.5) + (spc * 0.5) - for i in range(b_count - 1): - positions.append( - ( - x_offs + spc * i - 1.0, - button_y_offs + button_y_offs2, - small_button_scale, - ) - ) + + # Version/copyright info. + thistdelay = self._tdelay + td3 * self._t_delay_inc + bui.textwidget( + parent=self._root_widget, + position=(self._width * 0.5, button_y_offs - 10), + size=(0, 0), + scale=0.4, + flatness=1.0, + color=(1, 1, 1, 0.3), + text=( + f'{app.env.engine_version}' + f' build {app.env.engine_build_number}.' + f' Copyright 2025 Eric Froemling.' + ), + h_align='center', + v_align='center', + # transition_delay=self._t_delay_play, + transition_delay=thistdelay, + ) + # In kiosk mode, provide a button to get back to the kiosk menu. if bui.app.env.demo or bui.app.env.arcade: - h, v, scale = positions[self._p_index] + # h, v, scale = positions[self._p_index] + h = self._width * 0.5 + v = button_y_offs + scale = 1.0 this_b_width = self._button_width * 0.4 * scale - demo_menu_delay = ( - 0.0 - if self._t_delay_play == 0.0 - else max(0, self._t_delay_play + 0.1) - ) + # demo_menu_delay = ( + # 0.0 + # if self._t_delay_play == 0.0 + # else max(0, self._t_delay_play + 0.1) + # ) + demo_menu_delay = 0.0 self._demo_menu_button = bui.buttonwidget( parent=self._root_widget, + id='demo', position=(self._width * 0.5 - this_b_width * 0.5, v + 90), size=(this_b_width, 45), autoselect=True, @@ -714,73 +290,101 @@ class MainMenuWindow(bui.Window): ) ), transition_delay=demo_menu_delay, - on_activate_call=self._demo_menu_press, + on_activate_call=self.main_window_back, ) else: self._demo_menu_button = None - uiscale = bui.app.ui_v1.uiscale - foof = ( - -1 - if uiscale is bui.UIScale.SMALL - else 1 if uiscale is bui.UIScale.MEDIUM else 3 + + # Gather button + h = self._width * 0.5 + h = ( + self._width * 0.5 + - play_button_width * play_button_scale * 0.5 + - hspace + - side_button_width * side_button_scale * 0.5 ) - h, v, scale = positions[self._p_index] - v = v + foof - gather_delay = ( - 0.0 - if self._t_delay_play == 0.0 - else max(0.0, self._t_delay_play + 0.1) - ) - assert play_button_width is not None - assert play_button_height is not None - this_h = h - play_button_width * 0.5 * scale - 40 * scale - this_b_width = self._button_width * 0.25 * scale - this_b_height = self._button_height * 0.82 * scale - self._gather_button = btn = bui.buttonwidget( + v = button_y_offs + side_button_y_offs + + thistdelay = self._tdelay + td2 * self._t_delay_inc + self._gather_button = bui.buttonwidget( parent=self._root_widget, - position=(this_h - this_b_width * 0.5, v), - size=(this_b_width, this_b_height), + position=(h - side_button_width * side_button_scale * 0.5, v), + size=(side_button_width, side_button_height), + scale=side_button_scale, autoselect=self._use_autoselect, button_type='square', label='', - transition_delay=gather_delay, + transition_delay=thistdelay, on_activate_call=self._gather_press, ) bui.textwidget( parent=self._root_widget, - position=(this_h, v + self._button_height * 0.33), + position=(h, v + side_button_height * side_button_scale * 0.25), size=(0, 0), scale=0.75, - transition_delay=gather_delay, - draw_controller=btn, + transition_delay=thistdelay, + draw_controller=self._gather_button, color=(0.75, 1.0, 0.7), - maxwidth=self._button_width * 0.33, + maxwidth=side_button_width * side_button_scale * 0.8, text=bui.Lstr(resource='gatherWindow.titleText'), h_align='center', v_align='center', ) - icon_size = this_b_width * 0.6 + icon_size = side_button_width * side_button_scale * 0.63 bui.imagewidget( parent=self._root_widget, size=(icon_size, icon_size), - draw_controller=btn, - transition_delay=gather_delay, - position=(this_h - 0.5 * icon_size, v + 0.31 * this_b_height), + draw_controller=self._gather_button, + transition_delay=thistdelay, + position=( + h - 0.5 * icon_size, + v + + 0.65 * side_button_height * side_button_scale + - 0.5 * icon_size, + ), texture=bui.gettexture('usersButton'), ) + thistdelay = self._tdelay + td1 * self._t_delay_inc + + h -= ( + side_button_width * side_button_scale * 0.5 + + hspace2 + + side_button_2_width * side_button_2_scale + ) + v = button_y_offs + side_button_2_y_offs + + self._how_to_play_button = bui.buttonwidget( + parent=self._root_widget, + id='howtoplay', + position=(h, v), + autoselect=self._use_autoselect, + size=(side_button_2_width, side_button_2_height * 2.0), + button_type='square', + scale=side_button_2_scale, + label=bui.Lstr(resource=f'{self._r}.howToPlayText'), + transition_delay=thistdelay, + on_activate_call=self._howtoplay, + ) + bui.widget( + edit=self._how_to_play_button, + left_widget=bui.get_special_widget('settings_button'), + ) # Play button. - h, v, scale = positions[self._p_index] - self._p_index += 1 - self._start_button = start_button = bui.buttonwidget( + h = self._width * 0.5 + v = button_y_offs + assert play_button_width is not None + assert play_button_height is not None + thistdelay = self._tdelay + td3 * self._t_delay_inc + self._play_button = start_button = bui.buttonwidget( parent=self._root_widget, - position=(h - play_button_width * 0.5 * scale, v), + position=(h - play_button_width * 0.5 * play_button_scale, v), size=(play_button_width, play_button_height), autoselect=self._use_autoselect, - scale=scale, + scale=play_button_scale, text_res_scale=2.0, label=bui.Lstr(resource='playText'), - transition_delay=self._t_delay_play, + transition_delay=thistdelay, on_activate_call=self._play_press, ) bui.containerwidget( @@ -788,346 +392,133 @@ class MainMenuWindow(bui.Window): start_button=start_button, selected_child=start_button, ) - v = v + foof - watch_delay = ( - 0.0 - if self._t_delay_play == 0.0 - else max(0.0, self._t_delay_play - 0.1) + + # self._tdelay += self._t_delay_inc + + h = ( + self._width * 0.5 + + play_button_width * play_button_scale * 0.5 + + hspace + + side_button_width * side_button_scale * 0.5 ) - this_h = h + play_button_width * 0.5 * scale + 40 * scale - this_b_width = self._button_width * 0.25 * scale - this_b_height = self._button_height * 0.82 * scale - self._watch_button = btn = bui.buttonwidget( + v = button_y_offs + side_button_y_offs + thistdelay = self._tdelay + td4 * self._t_delay_inc + self._watch_button = bui.buttonwidget( parent=self._root_widget, - position=(this_h - this_b_width * 0.5, v), - size=(this_b_width, this_b_height), + position=(h - side_button_width * side_button_scale * 0.5, v), + size=(side_button_width, side_button_height), + scale=side_button_scale, autoselect=self._use_autoselect, button_type='square', label='', - transition_delay=watch_delay, + transition_delay=thistdelay, on_activate_call=self._watch_press, ) bui.textwidget( parent=self._root_widget, - position=(this_h, v + self._button_height * 0.33), + position=(h, v + side_button_height * side_button_scale * 0.25), size=(0, 0), scale=0.75, - transition_delay=watch_delay, + transition_delay=thistdelay, color=(0.75, 1.0, 0.7), - draw_controller=btn, - maxwidth=self._button_width * 0.33, + draw_controller=self._watch_button, + maxwidth=side_button_width * side_button_scale * 0.8, text=bui.Lstr(resource='watchWindow.titleText'), h_align='center', v_align='center', ) - icon_size = this_b_width * 0.55 + icon_size = side_button_width * side_button_scale * 0.63 bui.imagewidget( parent=self._root_widget, size=(icon_size, icon_size), - draw_controller=btn, - transition_delay=watch_delay, - position=(this_h - 0.5 * icon_size, v + 0.33 * this_b_height), + draw_controller=self._watch_button, + transition_delay=thistdelay, + position=( + h - 0.5 * icon_size, + v + + 0.65 * side_button_height * side_button_scale + - 0.5 * icon_size, + ), texture=bui.gettexture('tv'), ) - if not self._in_game and enable_account_button: - this_b_width = self._button_width - h, v, scale = positions[self._p_index] - self._p_index += 1 - self._account_button = bui.buttonwidget( - parent=self._root_widget, - position=(h - this_b_width * 0.5 * scale, v), - size=(this_b_width, self._button_height), - scale=scale, - label=account_type_name, - autoselect=self._use_autoselect, - on_activate_call=account_type_call, - textcolor=account_textcolor, - icon=account_type_icon, - icon_color=account_type_icon_color, - transition_delay=self._tdelay, - enable_sound=account_type_enable_button_sound, - ) - # Scattered eggs on easter. - if ( - plus.get_v1_account_misc_read_val('easter', False) - and not self._in_game - ): - icon_size = 32 - bui.imagewidget( - parent=self._root_widget, - position=( - h - icon_size * 0.5 + 35, - v - + self._button_height * scale - - icon_size * 0.24 - + 1.5, - ), - transition_delay=self._tdelay, - size=(icon_size, icon_size), - texture=bui.gettexture('egg2'), - tilt_scale=0.0, - ) - self._tdelay += self._t_delay_inc - else: - self._account_button = None - - # How-to-play button. - h, v, scale = positions[self._p_index] - self._p_index += 1 - btn = bui.buttonwidget( - parent=self._root_widget, - position=(h - self._button_width * 0.5 * scale, v), - scale=scale, - autoselect=self._use_autoselect, - size=(self._button_width, self._button_height), - label=bui.Lstr(resource=f'{self._r}.howToPlayText'), - transition_delay=self._tdelay, - on_activate_call=self._howtoplay, - ) - self._how_to_play_button = btn - - # Scattered eggs on easter. - if ( - plus.get_v1_account_misc_read_val('easter', False) - and not self._in_game - ): - icon_size = 28 - bui.imagewidget( - parent=self._root_widget, - position=( - h - icon_size * 0.5 + 30, - v + self._button_height * scale - icon_size * 0.24 + 1.5, - ), - transition_delay=self._tdelay, - size=(icon_size, icon_size), - texture=bui.gettexture('egg4'), - tilt_scale=0.0, - ) # Credits button. - self._tdelay += self._t_delay_inc - h, v, scale = positions[self._p_index] - self._p_index += 1 + thistdelay = self._tdelay + td5 * self._t_delay_inc + + h += side_button_width * side_button_scale * 0.5 + hspace2 + v = button_y_offs + side_button_2_y_offs + + if self._have_quit_button: + v += 1.17 * side_button_2_height * side_button_2_scale + self._credits_button = bui.buttonwidget( parent=self._root_widget, - position=(h - self._button_width * 0.5 * scale, v), - size=(self._button_width, self._button_height), + position=(h, v), + button_type=None if self._have_quit_button else 'square', + size=( + side_button_2_width, + side_button_2_height * (1.0 if self._have_quit_button else 2.0), + ), + scale=side_button_2_scale, autoselect=self._use_autoselect, label=bui.Lstr(resource=f'{self._r}.creditsText'), - scale=scale, - transition_delay=self._tdelay, + transition_delay=thistdelay, on_activate_call=self._credits, ) - self._tdelay += self._t_delay_inc - return h, v, scale - def _refresh_in_game( - self, positions: list[tuple[float, float, float]] - ) -> tuple[float, float, float]: - # pylint: disable=too-many-branches - # pylint: disable=too-many-locals - # pylint: disable=too-many-statements - assert bui.app.classic is not None - custom_menu_entries: list[dict[str, Any]] = [] - session = bs.get_foreground_host_session() - if session is not None: - try: - custom_menu_entries = session.get_custom_menu_entries() - for cme in custom_menu_entries: - cme_any: Any = cme # Type check may not hold true. - if ( - not isinstance(cme_any, dict) - or 'label' not in cme - or not isinstance(cme['label'], (str, bui.Lstr)) - or 'call' not in cme - or not callable(cme['call']) - ): - raise ValueError( - 'invalid custom menu entry: ' + str(cme) - ) - except Exception: - custom_menu_entries = [] - logging.exception( - 'Error getting custom menu entries for %s.', session - ) - self._width = 250.0 - self._height = 250.0 if self._input_player else 180.0 - if (self._is_demo or self._is_arcade) and self._input_player: - self._height -= 40 - if not self._have_settings_button: - self._height -= 50 - if self._connected_to_remote_player: - # In this case we have a leave *and* a disconnect button. - self._height += 50 - self._height += 50 * (len(custom_menu_entries)) - uiscale = bui.app.ui_v1.uiscale - bui.containerwidget( - edit=self._root_widget, - size=(self._width, self._height), - scale=( - 2.15 - if uiscale is bui.UIScale.SMALL - else 1.6 if uiscale is bui.UIScale.MEDIUM else 1.0 - ), - ) - h = 125.0 - v = self._height - 80.0 if self._input_player else self._height - 60 - h_offset = 0 - d_h_offset = 0 - v_offset = -50 - for _i in range(6 + len(custom_menu_entries)): - positions.append((h, v, 1.0)) - v += v_offset - h += h_offset - h_offset += d_h_offset - self._start_button = None - bui.app.classic.pause() - - # Player name if applicable. - if self._input_player: - player_name = self._input_player.getname() - h, v, scale = positions[self._p_index] - v += 35 - bui.textwidget( + self._quit_button: bui.Widget | None + if self._have_quit_button: + v -= 1.1 * side_button_2_height * side_button_2_scale + # Nudge this a tiny bit right so we can press right from the + # credits button to get to it. + self._quit_button = quit_button = bui.buttonwidget( parent=self._root_widget, - position=(h - self._button_width / 2, v), - size=(self._button_width, self._button_height), - color=(1, 1, 1, 0.5), - scale=0.7, - h_align='center', - text=bui.Lstr(value=player_name), - ) - else: - player_name = '' - h, v, scale = positions[self._p_index] - self._p_index += 1 - btn = bui.buttonwidget( - parent=self._root_widget, - position=(h - self._button_width / 2, v), - size=(self._button_width, self._button_height), - scale=scale, - label=bui.Lstr(resource=f'{self._r}.resumeText'), - autoselect=self._use_autoselect, - on_activate_call=self._resume, - ) - bui.containerwidget(edit=self._root_widget, cancel_button=btn) - - # Add any custom options defined by the current game. - for entry in custom_menu_entries: - h, v, scale = positions[self._p_index] - self._p_index += 1 - - # Ask the entry whether we should resume when we call - # it (defaults to true). - resume = bool(entry.get('resume_on_call', True)) - - if resume: - call = bui.Call(self._resume_and_call, entry['call']) - else: - call = bui.Call(entry['call'], bui.WeakCall(self._resume)) - - bui.buttonwidget( - parent=self._root_widget, - position=(h - self._button_width / 2, v), - size=(self._button_width, self._button_height), - scale=scale, - on_activate_call=call, - label=entry['label'], autoselect=self._use_autoselect, - ) - # Add a 'leave' button if the menu-owner has a player. - if (self._input_player or self._connected_to_remote_player) and not ( - self._is_demo or self._is_arcade - ): - h, v, scale = positions[self._p_index] - self._p_index += 1 - btn = bui.buttonwidget( - parent=self._root_widget, - position=(h - self._button_width / 2, v), - size=(self._button_width, self._button_height), - scale=scale, - on_activate_call=self._leave, - label='', - autoselect=self._use_autoselect, - ) - - if ( - player_name != '' - and player_name[0] != '<' - and player_name[-1] != '>' - ): - txt = bui.Lstr( - resource=f'{self._r}.justPlayerText', - subs=[('${NAME}', player_name)], - ) - else: - txt = bui.Lstr(value=player_name) - bui.textwidget( - parent=self._root_widget, - position=( - h, - v - + self._button_height - * (0.64 if player_name != '' else 0.5), + position=(h + 4.0, v), + size=(side_button_2_width, side_button_2_height), + scale=side_button_2_scale, + label=bui.Lstr( + resource=self._r + + ( + '.quitText' + if 'Mac' in app.classic.legacy_user_agent_string + else '.exitGameText' + ) ), - size=(0, 0), - text=bui.Lstr(resource=f'{self._r}.leaveGameText'), - scale=(0.83 if player_name != '' else 1.0), - color=(0.75, 1.0, 0.7), - h_align='center', - v_align='center', - draw_controller=btn, - maxwidth=self._button_width * 0.9, + on_activate_call=self._quit, + transition_delay=thistdelay, ) - bui.textwidget( - parent=self._root_widget, - position=(h, v + self._button_height * 0.27), - size=(0, 0), - text=txt, - color=(0.75, 1.0, 0.7), - h_align='center', - v_align='center', - draw_controller=btn, - scale=0.45, - maxwidth=self._button_width * 0.9, - ) - return h, v, scale - def _change_replay_speed(self, offs: int) -> None: - if not self._replay_speed_text: - if bui.do_once(): - print('_change_replay_speed called without widget') - return - bs.set_replay_speed_exponent(bs.get_replay_speed_exponent() + offs) - actual_speed = pow(2.0, bs.get_replay_speed_exponent()) - bui.textwidget( - edit=self._replay_speed_text, - text=bui.Lstr( - resource='watchWindow.playbackSpeedText', - subs=[('${SPEED}', str(actual_speed))], - ), - ) - - def _pause_or_resume_replay(self) -> None: - if bs.is_replay_paused(): - bs.resume_replay() - bui.buttonwidget( - edit=self._pause_resume_button, - label=bui.charstr(bui.SpecialChar.PAUSE_BUTTON), + bui.containerwidget( + edit=self._root_widget, cancel_button=quit_button ) + # self._tdelay += self._t_delay_inc + rightmost_button = quit_button else: - bs.pause_replay() - bui.buttonwidget( - edit=self._pause_resume_button, - label=bui.charstr(bui.SpecialChar.PLAY_BUTTON), - ) + rightmost_button = self._credits_button + self._quit_button = None + + # If we're not in-game, have no quit button, and this is + # android, we want back presses to quit our activity. + if app.classic.platform == 'android': + + def _do_quit() -> None: + bui.quit(confirm=True, quit_type=bui.QuitType.BACK) + + bui.containerwidget( + edit=self._root_widget, on_cancel_call=_do_quit + ) + bui.widget( + edit=rightmost_button, + right_widget=bui.get_special_widget('store_button'), + ) def _quit(self) -> None: # pylint: disable=cyclic-import from bauiv1lib.confirm import QuitWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not currently in control. + if not self.main_window_has_control(): return # Note: Normally we should go through bui.quit(confirm=True) but @@ -1135,334 +526,115 @@ class MainMenuWindow(bui.Window): # button. QuitWindow(origin_widget=self._quit_button) - def _demo_menu_press(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.kiosk import KioskWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_right') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - KioskWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) - - def _show_account_window(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.account.settings import AccountSettingsWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - AccountSettingsWindow( - origin_widget=self._account_button - ).get_root_widget(), - from_window=self._root_widget, - ) - - def _on_store_pressed(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.store.browser import StoreBrowserWindow - from bauiv1lib.account import show_sign_in_prompt - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - plus = bui.app.plus - assert plus is not None - - if plus.get_v1_account_state() != 'signed_in': - show_sign_in_prompt() - return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - StoreBrowserWindow( - origin_widget=self._store_button - ).get_root_widget(), - from_window=self._root_widget, - ) - - def _is_benchmark(self) -> bool: - session = bs.get_foreground_host_session() - return getattr(session, 'benchmark_type', None) == 'cpu' or ( - bui.app.classic is not None - and bui.app.classic.stress_test_update_timer is not None - ) - - def _confirm_end_game(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.confirm import ConfirmWindow - - # FIXME: Currently we crash calling this on client-sessions. - - # Select cancel by default; this occasionally gets called by accident - # in a fit of button mashing and this will help reduce damage. - ConfirmWindow( - bui.Lstr(resource=f'{self._r}.exitToMenuText'), - self._end_game, - cancel_is_selected=True, - ) - - def _confirm_end_test(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.confirm import ConfirmWindow - - # Select cancel by default; this occasionally gets called by accident - # in a fit of button mashing and this will help reduce damage. - ConfirmWindow( - bui.Lstr(resource=f'{self._r}.exitToMenuText'), - self._end_game, - cancel_is_selected=True, - ) - - def _confirm_end_replay(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.confirm import ConfirmWindow - - # Select cancel by default; this occasionally gets called by accident - # in a fit of button mashing and this will help reduce damage. - ConfirmWindow( - bui.Lstr(resource=f'{self._r}.exitToMenuText'), - self._end_game, - cancel_is_selected=True, - ) - - def _confirm_leave_party(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.confirm import ConfirmWindow - - # Select cancel by default; this occasionally gets called by accident - # in a fit of button mashing and this will help reduce damage. - ConfirmWindow( - bui.Lstr(resource=f'{self._r}.leavePartyConfirmText'), - self._leave_party, - cancel_is_selected=True, - ) - - def _leave_party(self) -> None: - bs.disconnect_from_host() - - def _end_game(self) -> None: - assert bui.app.classic is not None - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - bui.containerwidget(edit=self._root_widget, transition='out_left') - bui.app.classic.return_to_main_menu_session_gracefully(reset_ui=False) - - def _leave(self) -> None: - if self._input_player: - self._input_player.remove_from_game() - elif self._connected_to_remote_player: - if self._input_device: - self._input_device.detach_from_player() - self._resume() - def _credits(self) -> None: # pylint: disable=cyclic-import - from bauiv1lib.creditslist import CreditsListWindow + from bauiv1lib.credits import CreditsWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not currently in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - CreditsListWindow( - origin_widget=self._credits_button - ).get_root_widget(), - from_window=self._root_widget, + self.main_window_replace( + CreditsWindow(origin_widget=self._credits_button), ) def _howtoplay(self) -> None: # pylint: disable=cyclic-import - from bauiv1lib.helpui import HelpWindow + from bauiv1lib.help import HelpWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not currently in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - HelpWindow( - main_menu=True, origin_widget=self._how_to_play_button - ).get_root_widget(), - from_window=self._root_widget, + self.main_window_replace( + HelpWindow(origin_widget=self._how_to_play_button), ) - def _settings(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.settings.allsettings import AllSettingsWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - AllSettingsWindow( - origin_widget=self._settings_button - ).get_root_widget(), - from_window=self._root_widget, - ) - - def _resume_and_call(self, call: Callable[[], Any]) -> None: - self._resume() - call() - - def _do_game_service_press(self) -> None: - self._save_state() - if bui.app.plus is not None: - bui.app.plus.show_game_service_ui() - else: - logging.warning( - 'plus feature-set is required to show game service ui' - ) - def _save_state(self) -> None: - # Don't do this for the in-game menu. - if self._in_game: - return - assert bui.app.classic is not None - ui = bui.app.ui_v1 - sel = self._root_widget.get_selected_child() - if sel == self._start_button: - ui.main_menu_selection = 'Start' - elif sel == self._gather_button: - ui.main_menu_selection = 'Gather' - elif sel == self._watch_button: - ui.main_menu_selection = 'Watch' - elif sel == self._how_to_play_button: - ui.main_menu_selection = 'HowToPlay' - elif sel == self._credits_button: - ui.main_menu_selection = 'Credits' - elif sel == self._settings_button: - ui.main_menu_selection = 'Settings' - elif sel == self._account_button: - ui.main_menu_selection = 'Account' - elif sel == self._store_button: - ui.main_menu_selection = 'Store' - elif sel == self._quit_button: - ui.main_menu_selection = 'Quit' - elif sel == self._demo_menu_button: - ui.main_menu_selection = 'DemoMenu' - else: - print('unknown widget in main menu store selection:', sel) - ui.main_menu_selection = 'Start' + try: + sel = self._root_widget.get_selected_child() + if sel == self._play_button: + sel_name = 'Start' + elif sel == self._gather_button: + sel_name = 'Gather' + elif sel == self._watch_button: + sel_name = 'Watch' + elif sel == self._how_to_play_button: + sel_name = 'HowToPlay' + elif sel == self._credits_button: + sel_name = 'Credits' + elif sel == self._quit_button: + sel_name = 'Quit' + elif sel == self._demo_menu_button: + sel_name = 'DemoMenu' + else: + print(f'Unknown widget in main menu selection: {sel}.') + sel_name = 'Start' + bui.app.ui_v1.window_states[type(self)] = {'sel_name': sel_name} + except Exception: + logging.exception('Error saving state for %s.', self) def _restore_state(self) -> None: - # pylint: disable=too-many-branches + try: - # Don't do this for the in-game menu. - if self._in_game: - return - assert bui.app.classic is not None - sel_name = bui.app.ui_v1.main_menu_selection - sel: bui.Widget | None - if sel_name is None: - sel_name = 'Start' - if sel_name == 'HowToPlay': - sel = self._how_to_play_button - elif sel_name == 'Gather': - sel = self._gather_button - elif sel_name == 'Watch': - sel = self._watch_button - elif sel_name == 'Credits': - sel = self._credits_button - elif sel_name == 'Settings': - sel = self._settings_button - elif sel_name == 'Account': - sel = self._account_button - elif sel_name == 'Store': - sel = self._store_button - elif sel_name == 'Quit': - sel = self._quit_button - elif sel_name == 'DemoMenu': - sel = self._demo_menu_button - else: - sel = self._start_button - if sel is not None: - bui.containerwidget(edit=self._root_widget, selected_child=sel) + sel: bui.Widget | None + + sel_name = bui.app.ui_v1.window_states.get(type(self), {}).get( + 'sel_name' + ) + assert isinstance(sel_name, (str, type(None))) + if sel_name is None: + sel_name = 'Start' + if sel_name == 'HowToPlay': + sel = self._how_to_play_button + elif sel_name == 'Gather': + sel = self._gather_button + elif sel_name == 'Watch': + sel = self._watch_button + elif sel_name == 'Credits': + sel = self._credits_button + elif sel_name == 'Quit': + sel = self._quit_button + elif sel_name == 'DemoMenu': + sel = self._demo_menu_button + else: + sel = self._play_button + if sel is not None: + bui.containerwidget(edit=self._root_widget, selected_child=sel) + + except Exception: + logging.exception('Error restoring state for %s.', self) def _gather_press(self) -> None: # pylint: disable=cyclic-import from bauiv1lib.gather import GatherWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not currently in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - GatherWindow(origin_widget=self._gather_button).get_root_widget(), - from_window=self._root_widget, + self.main_window_replace( + GatherWindow(origin_widget=self._gather_button) ) def _watch_press(self) -> None: # pylint: disable=cyclic-import from bauiv1lib.watch import WatchWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not currently in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - WatchWindow(origin_widget=self._watch_button).get_root_widget(), - from_window=self._root_widget, + self.main_window_replace( + WatchWindow(origin_widget=self._watch_button), ) def _play_press(self) -> None: # pylint: disable=cyclic-import from bauiv1lib.play import PlayWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not currently in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - - assert bui.app.classic is not None - bui.app.ui_v1.selecting_private_party_playlist = False - bui.app.ui_v1.set_main_menu_window( - PlayWindow(origin_widget=self._start_button).get_root_widget(), - from_window=self._root_widget, - ) - - def _resume(self) -> None: - assert bui.app.classic is not None - bui.app.classic.resume() - # if self._root_widget: - # bui.containerwidget(edit=self._root_widget, - # transition='out_right') - bui.app.ui_v1.clear_main_menu_window(transition='out_right') - - # If there's callbacks waiting for this window to go away, call them. - for call in bui.app.ui_v1.main_menu_resume_callbacks: - call() - del bui.app.ui_v1.main_menu_resume_callbacks[:] + self.main_window_replace(PlayWindow(origin_widget=self._play_button)) diff --git a/dist/ba_data/python/bauiv1lib/party.py b/dist/ba_data/python/bauiv1lib/party.py index 199db42..1afdcd9 100644 --- a/dist/ba_data/python/bauiv1lib/party.py +++ b/dist/ba_data/python/bauiv1lib/party.py @@ -48,18 +48,21 @@ class PartyWindow(bui.Window): on_outside_click_call=self.close_with_sound, scale_origin_stack_offset=origin, scale=( - 2.0 + 1.8 if uiscale is bui.UIScale.SMALL - else 1.35 if uiscale is bui.UIScale.MEDIUM else 1.0 + else 1.3 if uiscale is bui.UIScale.MEDIUM else 0.9 ), stack_offset=( - (0, -10) + (200, -10) if uiscale is bui.UIScale.SMALL else ( - (240, 0) if uiscale is bui.UIScale.MEDIUM else (330, 20) + (260, 0) if uiscale is bui.UIScale.MEDIUM else (370, 60) ) ), - ) + ), + # We exist in the overlay stack so main-windows being + # recreated doesn't affect us. + prevent_main_window_auto_recreate=False, ) self._cancel_button = bui.buttonwidget( @@ -112,9 +115,22 @@ class PartyWindow(bui.Window): self._empty_str = bui.textwidget( parent=self._root_widget, - scale=0.75, + scale=0.6, size=(0, 0), - position=(self._width * 0.5, self._height - 65), + # color=(0.5, 1.0, 0.5), + shadow=0.3, + position=(self._width * 0.5, self._height - 57), + maxwidth=self._width * 0.85, + h_align='center', + v_align='center', + ) + self._empty_str_2 = bui.textwidget( + parent=self._root_widget, + scale=0.5, + size=(0, 0), + color=(0.5, 1.0, 0.5), + shadow=0.1, + position=(self._width * 0.5, self._height - 75), maxwidth=self._width * 0.85, h_align='center', v_align='center', @@ -126,6 +142,7 @@ class PartyWindow(bui.Window): size=(self._scroll_width, self._height - 200), position=(30, 80), color=(0.4, 0.6, 0.3), + border_opacity=0.6, ) self._columnwidget = bui.columnwidget( parent=self._scrollwidget, border=2, left_border=-200, margin=0 @@ -296,6 +313,10 @@ class PartyWindow(bui.Window): edit=self._empty_str, text=bui.Lstr(resource=f'{self._r}.emptyText'), ) + bui.textwidget( + edit=self._empty_str_2, + text=bui.Lstr(resource='gatherWindow.descriptionShortText'), + ) bui.scrollwidget( edit=self._scrollwidget, size=( @@ -436,6 +457,7 @@ class PartyWindow(bui.Window): ) ) bui.textwidget(edit=self._empty_str, text='') + bui.textwidget(edit=self._empty_str_2, text='') bui.scrollwidget( edit=self._scrollwidget, size=( diff --git a/dist/ba_data/python/bauiv1lib/partyqueue.py b/dist/ba_data/python/bauiv1lib/partyqueue.py index ef51429..dbcfd7a 100644 --- a/dist/ba_data/python/bauiv1lib/partyqueue.py +++ b/dist/ba_data/python/bauiv1lib/partyqueue.py @@ -33,6 +33,7 @@ class PartyQueueWindow(bui.Window): account_id: str, name: str, ): + # pylint: disable=too-many-positional-arguments self.claimed = False self._line_left = parent.get_line_left() self._line_width = parent.get_line_width() @@ -223,7 +224,6 @@ class PartyQueueWindow(bui.Window): def __init__(self, queue_id: str, address: str, port: int): assert bui.app.classic is not None - bui.app.ui_v1.have_party_queue_window = True self._address = address self._port = port self._queue_id = queue_id @@ -329,8 +329,6 @@ class PartyQueueWindow(bui.Window): plus = bui.app.plus assert plus is not None - assert bui.app.classic is not None - bui.app.ui_v1.have_party_queue_window = False plus.add_v1_account_transaction( {'type': 'PARTY_QUEUE_REMOVE', 'q': self._queue_id} ) @@ -354,12 +352,12 @@ class PartyQueueWindow(bui.Window): self, account_id: str | None, origin_widget: bui.Widget ) -> None: """A dude was clicked so we should show his account info.""" - from bauiv1lib.account import viewer + from bauiv1lib.account.viewer import AccountViewerWindow if account_id is None: bui.getsound('error').play() return - viewer.AccountViewerWindow( + AccountViewerWindow( account_id=account_id, position=origin_widget.get_screen_space_center(), ) @@ -554,6 +552,11 @@ class PartyQueueWindow(bui.Window): self._last_connect_attempt_time is None or now - self._last_connect_attempt_time > 10.0 ): + + # Store UI location to return to when done. + if bs.app.classic is not None: + bs.app.classic.save_ui_state() + bs.connect_to_party( address=self._address, port=self._port, @@ -563,19 +566,24 @@ class PartyQueueWindow(bui.Window): def on_boost_press(self) -> None: """Boost was pressed.""" - from bauiv1lib import account - from bauiv1lib import gettickets + from bauiv1lib.account.signin import show_sign_in_prompt + + # from bauiv1lib import gettickets plus = bui.app.plus assert plus is not None if plus.get_v1_account_state() != 'signed_in': - account.show_sign_in_prompt() + show_sign_in_prompt() return if plus.get_v1_account_ticket_count() < self._boost_tickets: bui.getsound('error').play() - gettickets.show_get_tickets_prompt() + bui.screenmessage( + bui.Lstr(resource='notEnoughTicketsText'), + color=(1, 0, 0), + ) + # gettickets.show_get_tickets_prompt() return bui.getsound('laserReverse').play() diff --git a/dist/ba_data/python/bauiv1lib/play.py b/dist/ba_data/python/bauiv1lib/play.py index f33ffe6..98dce68 100644 --- a/dist/ba_data/python/bauiv1lib/play.py +++ b/dist/ba_data/python/bauiv1lib/play.py @@ -5,116 +5,174 @@ from __future__ import annotations import logging +from typing import override, TYPE_CHECKING import bascenev1 as bs import bauiv1 as bui +if TYPE_CHECKING: + from bauiv1 import MainWindowState -class PlayWindow(bui.Window): + +class PlaylistSelectContext: + """For using PlayWindow to select a playlist instead of running game.""" + + back_state: MainWindowState | None = None + + +class PlayWindow(bui.MainWindow): """Window for selecting overall play type.""" def __init__( self, - transition: str = 'in_right', + transition: str | None = 'in_right', origin_widget: bui.Widget | None = None, + playlist_select_context: PlaylistSelectContext | None = None, ): # pylint: disable=too-many-statements # pylint: disable=too-many-locals - import threading + + import bacommon.cloud + + # TEMP TESTING + if bool(False): + print('HELLO FROM TEST') + plus = bui.app.plus + assert plus is not None + plus.cloud.send_message_cb( + bacommon.cloud.SecureDataCheckMessage( + data=b'fo', signature=b'mo' + ), + on_response=lambda r: print('GOT CHECK RESPONSE', r), + ) + plus.cloud.send_message_cb( + bacommon.cloud.SecureDataCheckerRequest(), + on_response=lambda r: print('GOT CHECKER RESPONSE', r), + ) # Preload some modules we use in a background thread so we won't # have a visual hitch when the user taps them. - threading.Thread(target=self._preload_modules).start() + bui.app.threadpool.submit_no_wait(self._preload_modules) - # We can currently be used either for main menu duty or for selecting - # playlists (should make this more elegant/general). - assert bui.app.classic is not None - self._is_main_menu = not bui.app.ui_v1.selecting_private_party_playlist + classic = bui.app.classic + assert classic is not None + + self._playlist_select_context = playlist_select_context uiscale = bui.app.ui_v1.uiscale - width = 1100 if uiscale is bui.UIScale.SMALL else 800 - x_offs = 150 if uiscale is bui.UIScale.SMALL else 0 - height = 550 - button_width = 400 + width = 1300 if uiscale is bui.UIScale.SMALL else 1000 + height = 1000 if uiscale is bui.UIScale.SMALL else 550 + + button_width = 400.0 + button_height = 360.0 + button_spacing = 3.0 - scale_origin: tuple[float, float] | None if origin_widget is not None: + + # Need to store this ourself since we can function as a + # non-main window. self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' else: self._transition_out = 'out_right' - scale_origin = None self._r = 'playWindow' + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + safesize = bui.get_virtual_safe_area_size() + + # We're a generally widescreen shaped window, so bump our + # overall scale up a bit when screen width is wider than safe + # bounds to take advantage of the extra space. + smallscale = min(1.6, 1.35 * screensize[0] / safesize[0]) + + scale = ( + smallscale + if uiscale is bui.UIScale.SMALL + else 0.9 if uiscale is bui.UIScale.MEDIUM else 0.8 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_height = min(height - 80, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * height + 0.5 * target_height + 30.0 + super().__init__( root_widget=bui.containerwidget( size=(width, height), - transition=transition, - toolbar_visibility='menu_full', - scale_origin_stack_offset=scale_origin, - scale=( - 1.6 - if uiscale is bui.UIScale.SMALL - else 0.9 if uiscale is bui.UIScale.MEDIUM else 0.8 + toolbar_visibility=( + 'menu_full' + if playlist_select_context is None + else 'menu_minimal' ), - stack_offset=(0, 0) if uiscale is bui.UIScale.SMALL else (0, 0), - ) - ) - self._back_button = back_button = btn = bui.buttonwidget( - parent=self._root_widget, - position=(55 + x_offs, height - 132), - size=(120, 60), - scale=1.1, - text_res_scale=1.5, - text_scale=1.2, - autoselect=True, - label=bui.Lstr(resource='backText'), - button_type='back', + scale=scale, + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) - txt = bui.textwidget( + self._back_button: bui.Widget | None + if uiscale is bui.UIScale.SMALL: + self._back_button = None + bui.containerwidget( + edit=self._root_widget, + on_cancel_call=self.main_window_back, + ) + else: + self._back_button = bui.buttonwidget( + parent=self._root_widget, + position=(50, yoffs - 100), + size=(60, 60), + scale=1.1, + text_res_scale=1.5, + text_scale=1.2, + autoselect=True, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + on_activate_call=self.main_window_back, + ) + bui.containerwidget( + edit=self._root_widget, cancel_button=self._back_button + ) + + bui.textwidget( parent=self._root_widget, - position=(width * 0.5, height - 101), - # position=(width * 0.5, height - - # (101 if main_menu else 61)), + position=( + width * 0.5, + yoffs - (50 if uiscale is bui.UIScale.SMALL else 70), + ), size=(0, 0), text=bui.Lstr( resource=( (f'{self._r}.titleText') - if self._is_main_menu + if self._playlist_select_context is None else 'playlistsText' ) ), - scale=1.7, + scale=1.2 if uiscale is bui.UIScale.SMALL else 1.7, res_scale=2.0, - maxwidth=400, + maxwidth=250, color=bui.app.ui_v1.heading_color, h_align='center', v_align='center', ) - bui.buttonwidget( - edit=btn, - button_type='backSmall', - size=(60, 60), - label=bui.charstr(bui.SpecialChar.BACK), - ) - if bui.app.ui_v1.use_toolbars and uiscale is bui.UIScale.SMALL: - bui.textwidget(edit=txt, text='') - - v = height - (110 if self._is_main_menu else 90) - v -= 100 + scl = 0.75 if self._playlist_select_context is None else 0.68 + v = height * 0.5 - button_height * scl * 0.5 - 20.0 clr = (0.6, 0.7, 0.6, 1.0) - v -= 280 if self._is_main_menu else 180 - v += ( - 30 - if bui.app.ui_v1.use_toolbars and uiscale is bui.UIScale.SMALL - else 0 + + bcount = 3 if self._playlist_select_context is None else 2 + + total_b_width = ( + bcount * button_width * scl + (bcount - 1) * button_spacing ) - hoffs = x_offs + 80 if self._is_main_menu else x_offs - 100 - scl = 1.13 if self._is_main_menu else 0.68 + hoffs = (width - total_b_width) * 0.5 self._lineup_tex = bui.gettexture('playerLineup') angry_computer_transparent_mesh = bui.getmesh( @@ -136,24 +194,23 @@ class PlayWindow(bui.Window): self._coop_button: bui.Widget | None = None - # Only show coop button in main-menu variant. - if self._is_main_menu: + # Only show coop button in regular variant. + if self._playlist_select_context is None: self._coop_button = btn = bui.buttonwidget( parent=self._root_widget, - position=(hoffs, v + (scl * 15)), + position=(hoffs, v), size=( scl * button_width, - scl * 300, + scl * button_height, ), extra_touch_border_scale=0.1, autoselect=True, label='', button_type='square', - text_scale=1.13, on_activate_call=self._coop, ) - if bui.app.ui_v1.use_toolbars and uiscale is bui.UIScale.SMALL: + if uiscale is bui.UIScale.SMALL: bui.widget( edit=btn, left_widget=bui.get_special_widget('back_button'), @@ -220,7 +277,7 @@ class PlayWindow(bui.Window): h_align='center', v_align='center', color=(0.7, 0.9, 0.7, 1.0), - scale=scl * 2.3, + scale=scl * 1.5, ) bui.textwidget( @@ -237,32 +294,22 @@ class PlayWindow(bui.Window): color=clr, ) - scl = 0.5 if self._is_main_menu else 0.68 - hoffs += 440 if self._is_main_menu else 216 - v += 180 if self._is_main_menu else -68 + hoffs += scl * button_width + button_spacing self._teams_button = btn = bui.buttonwidget( parent=self._root_widget, - position=(hoffs, v + (scl * 15 if self._is_main_menu else 0)), + position=(hoffs, v), size=( scl * button_width, - scl * (300 if self._is_main_menu else 360), + scl * button_height, ), extra_touch_border_scale=0.1, autoselect=True, label='', button_type='square', - text_scale=1.13, on_activate_call=self._team_tourney, ) - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=btn, - up_widget=bui.get_special_widget('tickets_plus_button'), - right_widget=bui.get_special_widget('party_button'), - ) - xxx = -14 self._draw_dude( 2, @@ -352,7 +399,7 @@ class PlayWindow(bui.Window): h_align='center', v_align='center', color=(0.7, 0.9, 0.7, 1.0), - scale=scl * 2.3, + scale=scl * 1.5, ) bui.textwidget( parent=self._root_widget, @@ -363,26 +410,21 @@ class PlayWindow(bui.Window): h_align='center', v_align='center', res_scale=1.5, - scale=0.9 * scl, + scale=0.83 * scl, flatness=1.0, maxwidth=scl * button_width * 0.7, color=clr, ) - hoffs += 0 if self._is_main_menu else 300 - v -= 155 if self._is_main_menu else 0 + hoffs += scl * button_width + button_spacing self._free_for_all_button = btn = bui.buttonwidget( parent=self._root_widget, - position=(hoffs, v + (scl * 15 if self._is_main_menu else 0)), - size=( - scl * button_width, - scl * (300 if self._is_main_menu else 360), - ), + position=(hoffs, v), + size=(scl * button_width, scl * button_height), extra_touch_border_scale=0.1, autoselect=True, label='', button_type='square', - text_scale=1.13, on_activate_call=self._free_for_all, ) @@ -473,7 +515,7 @@ class PlayWindow(bui.Window): h_align='center', v_align='center', color=(0.7, 0.9, 0.7, 1.0), - scale=scl * 1.9, + scale=scl * 1.5, ) bui.textwidget( parent=self._root_widget, @@ -483,38 +525,53 @@ class PlayWindow(bui.Window): text=bui.Lstr(resource=f'{self._r}.twoToEightPlayersText'), h_align='center', v_align='center', - scale=0.9 * scl, + scale=0.83 * scl, flatness=1.0, maxwidth=scl * button_width * 0.7, color=clr, ) - if bui.app.ui_v1.use_toolbars and uiscale is bui.UIScale.SMALL: - back_button.delete() + if uiscale is bui.UIScale.SMALL: bui.containerwidget( edit=self._root_widget, - on_cancel_call=self._back, selected_child=( self._coop_button - if self._is_main_menu + if self._playlist_select_context is None else self._teams_button ), ) else: - bui.buttonwidget(edit=back_button, on_activate_call=self._back) bui.containerwidget( edit=self._root_widget, - cancel_button=back_button, selected_child=( self._coop_button - if self._is_main_menu + if self._playlist_select_context is None else self._teams_button ), ) self._restore_state() - # noinspection PyUnresolvedReferences + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + + # Pull any values out of self here; if we do it in the lambda + # we'll keep our window alive inadvertantly. + playlist_select_context = self._playlist_select_context + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, + origin_widget=origin_widget, + playlist_select_context=playlist_select_context, + ) + ) + + @override + def on_main_window_close(self) -> None: + self._save_state() + @staticmethod def _preload_modules() -> None: """Preload modules we use; avoids hitches (called in bg thread).""" @@ -523,45 +580,13 @@ class PlayWindow(bui.Window): import bauiv1lib.coop.browser as _unused3 import bauiv1lib.playlist.browser as _unused4 - def _back(self) -> None: - # pylint: disable=cyclic-import - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - if self._is_main_menu: - from bauiv1lib.mainmenu import MainMenuWindow - - self._save_state() - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - MainMenuWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - else: - from bauiv1lib.gather import GatherWindow - - self._save_state() - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - GatherWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - def _coop(self) -> None: # pylint: disable=cyclic-import - from bauiv1lib.account import show_sign_in_prompt + from bauiv1lib.account.signin import show_sign_in_prompt from bauiv1lib.coop.browser import CoopBrowserWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not currently in control. + if not self.main_window_has_control(): return plus = bui.app.plus @@ -570,51 +595,41 @@ class PlayWindow(bui.Window): if plus.get_v1_account_state() != 'signed_in': show_sign_in_prompt() return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - CoopBrowserWindow( - origin_widget=self._coop_button - ).get_root_widget(), - from_window=self._root_widget, + + self.main_window_replace( + CoopBrowserWindow(origin_widget=self._coop_button) ) def _team_tourney(self) -> None: # pylint: disable=cyclic-import from bauiv1lib.playlist.browser import PlaylistBrowserWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not currently in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( + self.main_window_replace( PlaylistBrowserWindow( - origin_widget=self._teams_button, sessiontype=bs.DualTeamSession - ).get_root_widget(), - from_window=self._root_widget, + origin_widget=self._teams_button, + sessiontype=bs.DualTeamSession, + playlist_select_context=self._playlist_select_context, + ) ) def _free_for_all(self) -> None: # pylint: disable=cyclic-import from bauiv1lib.playlist.browser import PlaylistBrowserWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not currently in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( + self.main_window_replace( PlaylistBrowserWindow( origin_widget=self._free_for_all_button, sessiontype=bs.FreeForAllSession, - ).get_root_widget(), - from_window=self._root_widget, + playlist_select_context=self._playlist_select_context, + ) ) def _draw_dude( @@ -627,6 +642,7 @@ class PlayWindow(bui.Window): position: tuple[float, float], color: tuple[float, float, float], ) -> None: + # pylint: disable=too-many-positional-arguments h_extra = -100 v_extra = 130 eye_color = ( @@ -763,7 +779,7 @@ class PlayWindow(bui.Window): sel = self._coop_button elif sel_name == 'Free-for-All Games': sel = self._free_for_all_button - elif sel_name == 'Back': + elif sel_name == 'Back' and self._back_button is not None: sel = self._back_button else: sel = ( diff --git a/dist/ba_data/python/bauiv1lib/playlist/addgame.py b/dist/ba_data/python/bauiv1lib/playlist/addgame.py index 317c9e9..ed62ad5 100644 --- a/dist/ba_data/python/bauiv1lib/playlist/addgame.py +++ b/dist/ba_data/python/bauiv1lib/playlist/addgame.py @@ -4,7 +4,7 @@ from __future__ import annotations -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, override import bascenev1 as bs import bauiv1 as bui @@ -13,55 +13,78 @@ if TYPE_CHECKING: from bauiv1lib.playlist.editcontroller import PlaylistEditController -class PlaylistAddGameWindow(bui.Window): +class PlaylistAddGameWindow(bui.MainWindow): """Window for selecting a game type to add to a playlist.""" def __init__( self, editcontroller: PlaylistEditController, - transition: str = 'in_right', + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, ): self._editcontroller = editcontroller self._r = 'addGameWindow' assert bui.app.classic is not None uiscale = bui.app.ui_v1.uiscale - self._width = 750 if uiscale is bui.UIScale.SMALL else 650 - x_inset = 50 if uiscale is bui.UIScale.SMALL else 0 + self._width = 900 if uiscale is bui.UIScale.SMALL else 650 + self._height = ( - 346 + 1200.0 if uiscale is bui.UIScale.SMALL - else 380 if uiscale is bui.UIScale.MEDIUM else 440 + else 450.0 if uiscale is bui.UIScale.MEDIUM else 500.0 ) - top_extra = 30 if uiscale is bui.UIScale.SMALL else 20 self._scroll_width = 210 + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 2.4 + if uiscale is bui.UIScale.SMALL + else 1.35 if uiscale is bui.UIScale.MEDIUM else 1.0 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_width = min(self._width - 50, screensize[0] / scale) + target_height = min(self._height - 70, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * self._height + 0.5 * target_height + 5.0 + x_inset = 0.5 * self._width - 0.5 * target_width + super().__init__( root_widget=bui.containerwidget( - size=(self._width, self._height + top_extra), - transition=transition, - scale=( - 2.17 - if uiscale is bui.UIScale.SMALL - else 1.5 if uiscale is bui.UIScale.MEDIUM else 1.0 - ), - stack_offset=(0, 1) if uiscale is bui.UIScale.SMALL else (0, 0), - ) + size=(self._width, self._height), + scale=scale, + toolbar_visibility='menu_minimal', + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) - self._back_button = bui.buttonwidget( - parent=self._root_widget, - position=(58 + x_inset, self._height - 53), - size=(165, 70), - scale=0.75, - text_scale=1.2, - label=bui.Lstr(resource='backText'), - autoselect=True, - button_type='back', - on_activate_call=self._back, - ) + if uiscale is bui.UIScale.SMALL: + self._back_button = bui.get_special_widget('back_button') + else: + self._back_button = bui.buttonwidget( + parent=self._root_widget, + position=(58 + x_inset, yoffs - 53), + size=(60, 48), + label=bui.charstr(bui.SpecialChar.BACK), + autoselect=True, + button_type='backSmall', + on_activate_call=self.main_window_back, + ) + self._select_button = select_button = bui.buttonwidget( parent=self._root_widget, - position=(self._width - (172 + x_inset), self._height - 50), + position=( + x_inset + target_width - 172, + yoffs - 50, + ), autoselect=True, size=(160, 60), scale=0.75, @@ -70,15 +93,14 @@ class PlaylistAddGameWindow(bui.Window): on_activate_call=self._add, ) - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=select_button, - right_widget=bui.get_special_widget('party_button'), - ) + bui.widget( + edit=select_button, + right_widget=bui.get_special_widget('squad_button'), + ) bui.textwidget( parent=self._root_widget, - position=(self._width * 0.5, self._height - 28), + position=(self._width * 0.5, yoffs - 28), size=(0, 0), scale=1.0, text=bui.Lstr(resource=f'{self._r}.titleText'), @@ -87,7 +109,7 @@ class PlaylistAddGameWindow(bui.Window): maxwidth=250, v_align='center', ) - v = self._height - 64 + v = yoffs - 64 self._selected_title_text = bui.textwidget( parent=self._root_widget, @@ -111,15 +133,16 @@ class PlaylistAddGameWindow(bui.Window): h_align='left', ) - scroll_height = self._height - 100 + scroll_height = target_height - 60 - v = self._height - 60 + v = yoffs - 60 self._scrollwidget = bui.scrollwidget( parent=self._root_widget, position=(x_inset + 61, v - scroll_height), size=(self._scroll_width, scroll_height), highlight=False, + border_opacity=0.4, ) bui.widget( edit=self._scrollwidget, @@ -130,11 +153,18 @@ class PlaylistAddGameWindow(bui.Window): self._column: bui.Widget | None = None v -= 35 - bui.containerwidget( - edit=self._root_widget, - cancel_button=self._back_button, - start_button=select_button, - ) + + if uiscale is bui.UIScale.SMALL: + bui.containerwidget( + edit=self._root_widget, on_cancel_call=self.main_window_back + ) + else: + bui.containerwidget( + edit=self._root_widget, + cancel_button=self._back_button, + ) + bui.containerwidget(edit=self._root_widget, start_button=select_button) + self._selected_game_type: type[bs.GameActivity] | None = None bui.containerwidget( @@ -145,6 +175,7 @@ class PlaylistAddGameWindow(bui.Window): # Get actual games loading in the bg. bui.app.meta.load_exported_classes( + 'bascenev1.GameActivity', bs.GameActivity, self._on_game_types_loaded, completion_cb_in_bg_thread=True, @@ -154,6 +185,23 @@ class PlaylistAddGameWindow(bui.Window): # game loading is complete. self._refresh() + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + + # Avoid dereferencing self from the lambda or we'll keep + # ourself alive indefinitely. + editcontroller = self._editcontroller + + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, + origin_widget=origin_widget, + editcontroller=editcontroller, + ) + ) + def _on_game_types_loaded( self, gametypes: list[type[bs.GameActivity]] ) -> None: @@ -225,30 +273,35 @@ class PlaylistAddGameWindow(bui.Window): ) def _on_get_more_games_press(self) -> None: - from bauiv1lib.account import show_sign_in_prompt + from bauiv1lib.account.signin import show_sign_in_prompt from bauiv1lib.store.browser import StoreBrowserWindow + # No-op if we're not in control. + if not self.main_window_has_control(): + return + plus = bui.app.plus assert plus is not None if plus.get_v1_account_state() != 'signed_in': show_sign_in_prompt() return - StoreBrowserWindow( - modal=True, - show_tab=StoreBrowserWindow.TabID.MINIGAMES, - on_close_call=self._on_store_close, - origin_widget=self._get_more_games_button, - ) - def _on_store_close(self) -> None: - self._refresh(select_get_more_games_button=True) + self.main_window_replace( + StoreBrowserWindow( + show_tab=StoreBrowserWindow.TabID.MINIGAMES, + origin_widget=self._get_more_games_button, + minimal_toolbars=True, + ) + ) def _add(self) -> None: bui.lock_all_input() # Make sure no more commands happen. bui.apptimer(0.1, bui.unlock_all_input) assert self._selected_game_type is not None - self._editcontroller.add_game_type_selected(self._selected_game_type) + self._editcontroller.add_game_type_selected( + self._selected_game_type, from_window=self + ) def _set_selected_game_type(self, gametype: type[bs.GameActivity]) -> None: self._selected_game_type = gametype @@ -261,6 +314,3 @@ class PlaylistAddGameWindow(bui.Window): self._editcontroller.get_session_type() ), ) - - def _back(self) -> None: - self._editcontroller.add_game_cancelled() diff --git a/dist/ba_data/python/bauiv1lib/playlist/browser.py b/dist/ba_data/python/bauiv1lib/playlist/browser.py index f8b1a73..917289b 100644 --- a/dist/ba_data/python/bauiv1lib/playlist/browser.py +++ b/dist/ba_data/python/bauiv1lib/playlist/browser.py @@ -4,15 +4,19 @@ from __future__ import annotations -import logging import copy import math +import logging +from typing import override, TYPE_CHECKING import bascenev1 as bs import bauiv1 as bui +if TYPE_CHECKING: + from bauiv1lib.play import PlaylistSelectContext -class PlaylistBrowserWindow(bui.Window): + +class PlaylistBrowserWindow(bui.MainWindow): """Window for starting teams games.""" def __init__( @@ -20,29 +24,15 @@ class PlaylistBrowserWindow(bui.Window): sessiontype: type[bs.Session], transition: str | None = 'in_right', origin_widget: bui.Widget | None = None, + playlist_select_context: PlaylistSelectContext | None = None, ): - # pylint: disable=too-many-statements # pylint: disable=cyclic-import from bauiv1lib.playlist import PlaylistTypeVars - # If they provided an origin-widget, scale up from that. - scale_origin: tuple[float, float] | None - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None - - assert bui.app.classic is not None - # Store state for when we exit the next game. if issubclass(sessiontype, bs.DualTeamSession): - bui.app.ui_v1.set_main_menu_location('Team Game Select') bui.set_analytics_screen('Teams Window') elif issubclass(sessiontype, bs.FreeForAllSession): - bui.app.ui_v1.set_main_menu_location('Free-for-All Game Select') bui.set_analytics_screen('FreeForAll Window') else: raise TypeError(f'Invalid sessiontype: {sessiontype}.') @@ -53,6 +43,7 @@ class PlaylistBrowserWindow(bui.Window): self._customize_button: bui.Widget | None = None self._sub_width: float | None = None self._sub_height: float | None = None + self._playlist_select_context = playlist_select_context self._ensure_standard_playlists_exist() @@ -62,104 +53,143 @@ class PlaylistBrowserWindow(bui.Window): ) uiscale = bui.app.ui_v1.uiscale - self._width = 1100.0 if uiscale is bui.UIScale.SMALL else 800.0 - x_inset = 150 if uiscale is bui.UIScale.SMALL else 0 - self._height = ( - 480 + self._width = ( + 1100.0 if uiscale is bui.UIScale.SMALL - else 510 if uiscale is bui.UIScale.MEDIUM else 580 + else 800.0 if uiscale is bui.UIScale.MEDIUM else 1040 + ) + self._height = ( + 600 + if uiscale is bui.UIScale.SMALL + else 550 if uiscale is bui.UIScale.MEDIUM else 700 ) - top_extra = 20 if uiscale is bui.UIScale.SMALL else 0 + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 1.85 + if uiscale is bui.UIScale.SMALL + else 1.0 if uiscale is bui.UIScale.MEDIUM else 0.8 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_width = min(self._width - 100, screensize[0] / scale) + target_height = min(self._height - 100, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * self._height + 0.5 * target_height + 30.0 + + self._scroll_width = target_width + self._scroll_height = target_height - 31 + scroll_bottom = yoffs - 60 - self._scroll_height super().__init__( root_widget=bui.containerwidget( - size=(self._width, self._height + top_extra), - transition=transition, - toolbar_visibility='menu_full', - scale_origin_stack_offset=scale_origin, - scale=( - 1.69 - if uiscale is bui.UIScale.SMALL - else 1.05 if uiscale is bui.UIScale.MEDIUM else 0.9 + size=(self._width, self._height), + toolbar_visibility=( + 'menu_minimal' + if ( + uiscale is bui.UIScale.SMALL + or playlist_select_context is not None + ) + else 'menu_full' ), - stack_offset=( - (0, -26) if uiscale is bui.UIScale.SMALL else (0, 0) - ), - ) + scale=scale, + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) - self._back_button: bui.Widget | None = bui.buttonwidget( + self._back_button: bui.Widget | None + if uiscale is bui.UIScale.SMALL: + self._back_button = None + bui.containerwidget( + edit=self._root_widget, on_cancel_call=self._on_back_press + ) + else: + self._back_button = bui.buttonwidget( + parent=self._root_widget, + position=(59, yoffs - 45), + size=(60, 54), + scale=1.0, + on_activate_call=self._on_back_press, + autoselect=True, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + ) + bui.containerwidget( + edit=self._root_widget, cancel_button=self._back_button + ) + + self._title_text = bui.textwidget( parent=self._root_widget, - position=(59 + x_inset, self._height - 70), - size=(120, 60), - scale=1.0, - on_activate_call=self._on_back_press, - autoselect=True, - label=bui.Lstr(resource='backText'), - button_type='back', - ) - bui.containerwidget( - edit=self._root_widget, cancel_button=self._back_button - ) - txt = self._title_text = bui.textwidget( - parent=self._root_widget, - position=(self._width * 0.5, self._height - 41), + position=( + self._width * 0.5, + yoffs - (45 if uiscale is bui.UIScale.SMALL else 20), + ), size=(0, 0), text=self._pvars.window_title_name, - scale=1.3, + scale=(0.8 if uiscale is bui.UIScale.SMALL else 1.3), res_scale=1.5, color=bui.app.ui_v1.heading_color, h_align='center', v_align='center', ) - if uiscale is bui.UIScale.SMALL and bui.app.ui_v1.use_toolbars: - bui.textwidget(edit=txt, text='') - bui.buttonwidget( - edit=self._back_button, - button_type='backSmall', - size=(60, 54), - position=(59 + x_inset, self._height - 67), - label=bui.charstr(bui.SpecialChar.BACK), - ) - - if uiscale is bui.UIScale.SMALL and bui.app.ui_v1.use_toolbars: - self._back_button.delete() - self._back_button = None - bui.containerwidget( - edit=self._root_widget, on_cancel_call=self._on_back_press - ) - scroll_offs = 33 - else: - scroll_offs = 0 - self._scroll_width = self._width - (100 + 2 * x_inset) - self._scroll_height = self._height - ( - 146 - if uiscale is bui.UIScale.SMALL and bui.app.ui_v1.use_toolbars - else 136 - ) self._scrollwidget = bui.scrollwidget( parent=self._root_widget, highlight=False, size=(self._scroll_width, self._scroll_height), position=( - (self._width - self._scroll_width) * 0.5, - 65 + scroll_offs, + self._width * 0.5 - self._scroll_width * 0.5, + scroll_bottom, ), + border_opacity=0.4, + center_small_content_horizontally=True, ) bui.containerwidget(edit=self._scrollwidget, claims_left_right=True) self._subcontainer: bui.Widget | None = None self._config_name_full = self._pvars.config_name + ' Playlists' self._last_config = None - # Update now and once per second. - # (this should do our initial refresh) + # Update now and once per second (this should do our initial + # refresh). self._update() self._update_timer = bui.AppTimer( 1.0, bui.WeakCall(self._update), repeat=True ) + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + + # Pull things out of self here; if we do it below in the lambda + # then we keep self alive. + sessiontype = self._sessiontype + + # Pull anything out of self here; if we do it in the lambda + # we'll inadvertanly keep self alive. + playlist_select_context = self._playlist_select_context + + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, + origin_widget=origin_widget, + sessiontype=sessiontype, + playlist_select_context=playlist_select_context, + ) + ) + + @override + def on_main_window_close(self) -> None: + self._save_state() + def _ensure_standard_playlists_exist(self) -> None: plus = bui.app.plus assert plus is not None @@ -348,15 +378,22 @@ class PlaylistBrowserWindow(bui.Window): items.sort(key=lambda x2: asserttype(x2[0], str).lower()) items = [['__default__', None]] + items # default is always first - count = len(items) - columns = 3 - rows = int(math.ceil(float(count) / columns)) button_width = 230 button_height = 230 button_buffer_h = -3 button_buffer_v = 0 - self._sub_width = self._scroll_width + count = len(items) + columns = max( + 1, + math.floor( + self._scroll_width / (button_width + 2 * button_buffer_h) + ), + ) + rows = int(math.ceil(float(count) / columns)) + + self._sub_width = columns * button_width + 2 * button_buffer_h + self._sub_height = ( 40.0 + rows * (button_height + 2 * button_buffer_v) + 90 ) @@ -372,11 +409,20 @@ class PlaylistBrowserWindow(bui.Window): for child in children: child.delete() + # On small ui-scale, nudge 'Playlists' text to the right when + # we're small enough so that the back button doesn't partly + # obscure it. + uiscale = bui.app.ui_v1.uiscale + screensize = bui.get_virtual_screen_size() + xoffs = ( + 40 if uiscale is bui.UIScale.SMALL and screensize[0] < 1400 else 0 + ) + assert bui.app.classic is not None bui.textwidget( parent=self._subcontainer, text=bui.Lstr(resource='playlistsText'), - position=(40, self._sub_height - 26), + position=(40 + xoffs, self._sub_height - 26), size=(0, 0), scale=1.0, maxwidth=400, @@ -392,7 +438,8 @@ class PlaylistBrowserWindow(bui.Window): mesh_transparent = bui.getmesh('level_select_button_transparent') mask_tex = bui.gettexture('mapPreviewMask') - h_offs = 225 if count == 1 else 115 if count == 2 else 0 + # h_offs = 225 if count == 1 else 115 if count == 2 else 0 + h_offs = 2 h_offs_bottom = 0 uiscale = bui.app.ui_v1.uiscale @@ -418,23 +465,15 @@ class PlaylistBrowserWindow(bui.Window): position=pos, ) - if ( - x == 0 - and bui.app.ui_v1.use_toolbars - and uiscale is bui.UIScale.SMALL - ): + if x == 0 and uiscale is bui.UIScale.SMALL: bui.widget( edit=btn, left_widget=bui.get_special_widget('back_button'), ) - if ( - x == columns - 1 - and bui.app.ui_v1.use_toolbars - and uiscale is bui.UIScale.SMALL - ): + if x == columns - 1 and uiscale is bui.UIScale.SMALL: bui.widget( edit=btn, - right_widget=bui.get_special_widget('party_button'), + right_widget=bui.get_special_widget('squad_button'), ) bui.buttonwidget( edit=btn, @@ -443,7 +482,16 @@ class PlaylistBrowserWindow(bui.Window): ), on_select_call=bui.Call(self._on_playlist_select, name), ) - bui.widget(edit=btn, show_buffer_top=50, show_buffer_bottom=50) + + # Top row biases things up more to show header above it. + if y == 0: + bui.widget( + edit=btn, show_buffer_top=60, show_buffer_bottom=5 + ) + else: + bui.widget( + edit=btn, show_buffer_top=30, show_buffer_bottom=30 + ) if self._selected_playlist == name: bui.containerwidget( @@ -635,15 +683,35 @@ class PlaylistBrowserWindow(bui.Window): def on_play_options_window_run_game(self) -> None: """(internal)""" - if not self._root_widget: + + # No-op if we're not in control. + if not self.main_window_has_control(): + # if not self._root_widget: return - bui.containerwidget(edit=self._root_widget, transition='out_left') + + if self._playlist_select_context is not None: + # Done doing a playlist selection; now back all the way out + # of our selection windows to our stored starting point. + if self._playlist_select_context.back_state is None: + logging.error( + 'No back state found' + ' after playlist select context completion.' + ) + else: + self.main_window_back_state = ( + self._playlist_select_context.back_state + ) + self.main_window_back() + else: + # Launching a regular game session; simply get our window + # transitioning out. + self.main_window_close(transition='out_left') def _on_playlist_select(self, playlist_name: str) -> None: self._selected_playlist = playlist_name def _update(self) -> None: - # make sure config exists + # Make sure config exists. if self._config_name_full not in bui.app.config: bui.app.config[self._config_name_full] = {} @@ -672,6 +740,7 @@ class PlaylistBrowserWindow(bui.Window): scale_origin=button.get_screen_space_center(), playlist=playlist_name, delegate=self, + playlist_select_context=self._playlist_select_context, ) def _on_customize_press(self) -> None: @@ -680,27 +749,23 @@ class PlaylistBrowserWindow(bui.Window): PlaylistCustomizeBrowserWindow, ) - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( + self.main_window_replace( PlaylistCustomizeBrowserWindow( origin_widget=self._customize_button, sessiontype=self._sessiontype, - ).get_root_widget(), - from_window=self._root_widget, + ) ) def _on_back_press(self) -> None: # pylint: disable=cyclic-import - from bauiv1lib.play import PlayWindow + # from bauiv1lib.play import PlayWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return # Store our selected playlist if that's changed. @@ -715,15 +780,7 @@ class PlaylistBrowserWindow(bui.Window): ) cfg.commit() - self._save_state() - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - PlayWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) + self.main_window_back() def _save_state(self) -> None: try: diff --git a/dist/ba_data/python/bauiv1lib/playlist/customizebrowser.py b/dist/ba_data/python/bauiv1lib/playlist/customizebrowser.py index 789e53f..5a76d5f 100644 --- a/dist/ba_data/python/bauiv1lib/playlist/customizebrowser.py +++ b/dist/ba_data/python/bauiv1lib/playlist/customizebrowser.py @@ -6,86 +6,115 @@ from __future__ import annotations import copy import time -import logging -from typing import TYPE_CHECKING -import bascenev1 as bs +from typing import TYPE_CHECKING, override + import bauiv1 as bui if TYPE_CHECKING: - from typing import Any + from typing import Any, Callable + + import bascenev1 as bs + +REQUIRE_PRO = False -class PlaylistCustomizeBrowserWindow(bui.Window): +class PlaylistCustomizeBrowserWindow(bui.MainWindow): """Window for viewing a playlist.""" def __init__( self, sessiontype: type[bs.Session], - transition: str = 'in_right', - select_playlist: str | None = None, + transition: str | None = 'in_right', origin_widget: bui.Widget | None = None, + select_playlist: str | None = None, ): - # Yes this needs tidying. # pylint: disable=too-many-locals # pylint: disable=too-many-statements # pylint: disable=cyclic-import from bauiv1lib import playlist - scale_origin: tuple[float, float] | None - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None - self._sessiontype = sessiontype self._pvars = playlist.PlaylistTypeVars(sessiontype) self._max_playlists = 30 self._r = 'gameListWindow' assert bui.app.classic is not None uiscale = bui.app.ui_v1.uiscale - self._width = 850.0 if uiscale is bui.UIScale.SMALL else 650.0 - x_inset = 100.0 if uiscale is bui.UIScale.SMALL else 0.0 + self._width = 1200.0 if uiscale is bui.UIScale.SMALL else 650.0 self._height = ( - 380.0 + 800.0 if uiscale is bui.UIScale.SMALL else 420.0 if uiscale is bui.UIScale.MEDIUM else 500.0 ) - top_extra = 20.0 if uiscale is bui.UIScale.SMALL else 0.0 + + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 1.8 + if uiscale is bui.UIScale.SMALL + else 1.4 if uiscale is bui.UIScale.MEDIUM else 1.0 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_width = min(self._width - 70, screensize[0] / scale) + target_height = min(self._height - 40, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = ( + 0.5 * self._height + + 0.5 * target_height + + (30.0 if uiscale is bui.UIScale.SMALL else 50) + ) + + self._button_width = 90 + self._x_inset = 10 + self._scroll_width = ( + target_width - self._button_width - 2.0 * self._x_inset + ) + self._scroll_height = target_height - 75 + self._scroll_bottom = yoffs - 98 - self._scroll_height + self._button_height = self._scroll_height / 6.0 super().__init__( root_widget=bui.containerwidget( - size=(self._width, self._height + top_extra), - transition=transition, - scale_origin_stack_offset=scale_origin, - scale=( - 2.05 + size=(self._width, self._height), + scale=scale, + toolbar_visibility=( + 'menu_minimal' if uiscale is bui.UIScale.SMALL - else 1.5 if uiscale is bui.UIScale.MEDIUM else 1.0 + else 'menu_full' ), - stack_offset=( - (0, -10) if uiscale is bui.UIScale.SMALL else (0, 0) - ), - ) + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) - self._back_button = back_button = btn = bui.buttonwidget( - parent=self._root_widget, - position=(43 + x_inset, self._height - 60), - size=(160, 68), - scale=0.77, - autoselect=True, - text_scale=1.3, - label=bui.Lstr(resource='backText'), - button_type='back', - ) + self._back_button: bui.Widget | None + if uiscale is bui.UIScale.SMALL: + self._back_button = None + bui.containerwidget( + edit=self._root_widget, on_cancel_call=self.main_window_back + ) + else: + self._back_button = bui.buttonwidget( + parent=self._root_widget, + position=(43, yoffs - 87), + size=(60, 60), + scale=0.77, + autoselect=True, + text_scale=1.3, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + ) bui.textwidget( parent=self._root_widget, - position=(0, self._height - 47), + position=(0, yoffs - (77 if uiscale is bui.UIScale.SMALL else 77)), size=(self._width, 25), text=bui.Lstr( resource=f'{self._r}.titleText', @@ -97,171 +126,92 @@ class PlaylistCustomizeBrowserWindow(bui.Window): v_align='center', ) - bui.buttonwidget( - edit=btn, - button_type='backSmall', - size=(60, 60), - label=bui.charstr(bui.SpecialChar.BACK), - ) - - v = self._height - 59.0 - h = 41 + x_inset + h = self._width * 0.5 - (self._scroll_width + self._button_width) * 0.5 b_color = (0.6, 0.53, 0.63) b_textcolor = (0.75, 0.7, 0.8) self._lock_images: list[bui.Widget] = [] - lock_tex = bui.gettexture('lock') + xmargin = 0.06 + ymargin = 0.05 - scl = ( - 1.1 - if uiscale is bui.UIScale.SMALL - else 1.27 if uiscale is bui.UIScale.MEDIUM else 1.57 - ) - scl *= 0.63 - v -= 65.0 * scl - new_button = btn = bui.buttonwidget( - parent=self._root_widget, - position=(h, v), - size=(90, 58.0 * scl), - on_activate_call=self._new_playlist, - color=b_color, - autoselect=True, - button_type='square', - textcolor=b_textcolor, - text_scale=0.7, - label=bui.Lstr( + def _make_button( + i: int, label: bui.Lstr, call: Callable[[], None] + ) -> bui.Widget: + v = self._scroll_bottom + self._button_height * i + return bui.buttonwidget( + parent=self._root_widget, + position=( + h + xmargin * self._button_width, + v + ymargin * self._button_height, + ), + size=( + self._button_width * (1.0 - 2.0 * xmargin), + self._button_height * (1.0 - 2.0 * ymargin), + ), + on_activate_call=call, + color=b_color, + autoselect=True, + button_type='square', + textcolor=b_textcolor, + text_scale=0.7, + label=label, + ) + + new_button = _make_button( + 5, + bui.Lstr( resource='newText', fallback_resource=f'{self._r}.newText' ), + self._new_playlist, ) - self._lock_images.append( - bui.imagewidget( - parent=self._root_widget, - size=(30, 30), - draw_controller=btn, - position=(h - 10, v + 58.0 * scl - 28), - texture=lock_tex, - ) - ) - - v -= 65.0 * scl - self._edit_button = edit_button = btn = bui.buttonwidget( - parent=self._root_widget, - position=(h, v), - size=(90, 58.0 * scl), - on_activate_call=self._edit_playlist, - color=b_color, - autoselect=True, - textcolor=b_textcolor, - button_type='square', - text_scale=0.7, - label=bui.Lstr( - resource='editText', fallback_resource=f'{self._r}.editText' + self._edit_button = _make_button( + 4, + bui.Lstr( + resource='editText', + fallback_resource=f'{self._r}.editText', ), - ) - self._lock_images.append( - bui.imagewidget( - parent=self._root_widget, - size=(30, 30), - draw_controller=btn, - position=(h - 10, v + 58.0 * scl - 28), - texture=lock_tex, - ) + self._edit_playlist, ) - v -= 65.0 * scl - duplicate_button = btn = bui.buttonwidget( - parent=self._root_widget, - position=(h, v), - size=(90, 58.0 * scl), - on_activate_call=self._duplicate_playlist, - color=b_color, - autoselect=True, - textcolor=b_textcolor, - button_type='square', - text_scale=0.7, - label=bui.Lstr( + duplicate_button = _make_button( + 3, + bui.Lstr( resource='duplicateText', fallback_resource=f'{self._r}.duplicateText', ), - ) - self._lock_images.append( - bui.imagewidget( - parent=self._root_widget, - size=(30, 30), - draw_controller=btn, - position=(h - 10, v + 58.0 * scl - 28), - texture=lock_tex, - ) + self._duplicate_playlist, ) - v -= 65.0 * scl - delete_button = btn = bui.buttonwidget( - parent=self._root_widget, - position=(h, v), - size=(90, 58.0 * scl), - on_activate_call=self._delete_playlist, - color=b_color, - autoselect=True, - textcolor=b_textcolor, - button_type='square', - text_scale=0.7, - label=bui.Lstr( + delete_button = _make_button( + 2, + bui.Lstr( resource='deleteText', fallback_resource=f'{self._r}.deleteText' ), - ) - self._lock_images.append( - bui.imagewidget( - parent=self._root_widget, - size=(30, 30), - draw_controller=btn, - position=(h - 10, v + 58.0 * scl - 28), - texture=lock_tex, - ) - ) - v -= 65.0 * scl - self._import_button = bui.buttonwidget( - parent=self._root_widget, - position=(h, v), - size=(90, 58.0 * scl), - on_activate_call=self._import_playlist, - color=b_color, - autoselect=True, - textcolor=b_textcolor, - button_type='square', - text_scale=0.7, - label=bui.Lstr(resource='importText'), - ) - v -= 65.0 * scl - btn = bui.buttonwidget( - parent=self._root_widget, - position=(h, v), - size=(90, 58.0 * scl), - on_activate_call=self._share_playlist, - color=b_color, - autoselect=True, - textcolor=b_textcolor, - button_type='square', - text_scale=0.7, - label=bui.Lstr(resource='shareText'), - ) - self._lock_images.append( - bui.imagewidget( - parent=self._root_widget, - size=(30, 30), - draw_controller=btn, - position=(h - 10, v + 58.0 * scl - 28), - texture=lock_tex, - ) + self._delete_playlist, + ) + + self._import_button = _make_button( + 1, bui.Lstr(resource='importText'), self._import_playlist + ) + + share_button = _make_button( + 0, bui.Lstr(resource='shareText'), self._share_playlist ) - v = self._height - 75 - self._scroll_height = self._height - 119 scrollwidget = bui.scrollwidget( parent=self._root_widget, - position=(140 + x_inset, v - self._scroll_height), - size=(self._width - (180 + 2 * x_inset), self._scroll_height + 10), + size=(self._scroll_width, self._scroll_height), + position=( + self._width * 0.5 + - (self._scroll_width + self._button_width) * 0.5 + + self._button_width, + self._scroll_bottom, + ), highlight=False, + border_opacity=0.4, ) - bui.widget(edit=back_button, right_widget=scrollwidget) + if self._back_button is not None: + bui.widget(edit=self._back_button, right_widget=scrollwidget) + self._columnwidget = bui.columnwidget( parent=scrollwidget, border=2, margin=0 ) @@ -274,20 +224,23 @@ class PlaylistCustomizeBrowserWindow(bui.Window): h += 210 - for btn in [new_button, delete_button, edit_button, duplicate_button]: + for btn in [ + new_button, + delete_button, + self._edit_button, + duplicate_button, + self._import_button, + share_button, + ]: bui.widget(edit=btn, right_widget=scrollwidget) bui.widget( edit=scrollwidget, left_widget=new_button, - right_widget=( - bui.get_special_widget('party_button') - if bui.app.ui_v1.use_toolbars - else None - ), + right_widget=bui.get_special_widget('squad_button'), ) - # make sure config exists - self._config_name_full = self._pvars.config_name + ' Playlists' + # Make sure config exists. + self._config_name_full = f'{self._pvars.config_name} Playlists' if self._config_name_full not in bui.app.config: bui.app.config[self._config_name_full] = {} @@ -298,8 +251,13 @@ class PlaylistCustomizeBrowserWindow(bui.Window): self._refresh(select_playlist=select_playlist) - bui.buttonwidget(edit=back_button, on_activate_call=self._back) - bui.containerwidget(edit=self._root_widget, cancel_button=back_button) + if self._back_button is not None: + bui.buttonwidget( + edit=self._back_button, on_activate_call=self.main_window_back + ) + bui.containerwidget( + edit=self._root_widget, cancel_button=self._back_button + ) bui.containerwidget(edit=self._root_widget, selected_child=scrollwidget) @@ -309,63 +267,44 @@ class PlaylistCustomizeBrowserWindow(bui.Window): ) self._update() - def _update(self) -> None: - assert bui.app.classic is not None - have = bui.app.classic.accounts.have_pro_options() - for lock in self._lock_images: - bui.imagewidget(edit=lock, opacity=0.0 if have else 1.0) + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) - def _back(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.playlist import browser + # Avoid dereferencing self within the lambda or we'll keep + # ourself alive indefinitely. + stype = self._sessiontype - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, + origin_widget=origin_widget, + sessiontype=stype, + ) + ) + @override + def on_main_window_close(self) -> None: if self._selected_playlist_name is not None: cfg = bui.app.config - cfg[self._pvars.config_name + ' Playlist Selection'] = ( + cfg[f'{self._pvars.config_name} Playlist Selection'] = ( self._selected_playlist_name ) cfg.commit() - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) + def _update(self) -> None: assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - browser.PlaylistBrowserWindow( - transition='in_left', sessiontype=self._sessiontype - ).get_root_widget(), - from_window=self._root_widget, - ) + have = bui.app.classic.accounts.have_pro_options() + for lock in self._lock_images: + bui.imagewidget( + edit=lock, opacity=0.0 if (have or not REQUIRE_PRO) else 1.0 + ) def _select(self, name: str, index: int) -> None: self._selected_playlist_name = name self._selected_playlist_index = index - def _run_selected_playlist(self) -> None: - # pylint: disable=cyclic-import - bui.unlock_all_input() - try: - bs.new_host_session(self._sessiontype) - except Exception: - from bascenev1lib import mainmenu - - logging.exception('Error running session %s.', self._sessiontype) - - # Drop back into a main menu session. - bs.new_host_session(mainmenu.MainMenuSession) - - def _choose_playlist(self) -> None: - if self._selected_playlist_name is None: - return - self._save_playlist_selection() - bui.containerwidget(edit=self._root_widget, transition='out_left') - bui.fade_screen(False, endcall=self._run_selected_playlist) - bui.lock_all_input() - def _refresh(self, select_playlist: str | None = None) -> None: from efro.util import asserttype @@ -416,9 +355,16 @@ class PlaylistCustomizeBrowserWindow(bui.Window): ) bui.widget(edit=txtw, show_buffer_top=50, show_buffer_bottom=50) - # Hitting up from top widget should jump to 'back' + # Hitting up from top widget should jump to 'back'. if index == 0: - bui.widget(edit=txtw, up_widget=self._back_button) + bui.widget( + edit=txtw, + up_widget=( + self._back_button + if self._back_button is not None + else bui.get_special_widget('back_button') + ), + ) self._playlist_widgets.append(txtw) @@ -431,8 +377,8 @@ class PlaylistCustomizeBrowserWindow(bui.Window): visible_child=txtw, ) else: - # Select this one if it was previously selected. - # Go by index if there's one. + # Select this one if it was previously selected. Go by + # index if there's one. if old_selection_index is not None: if index == old_selection_index: bui.columnwidget( @@ -451,10 +397,10 @@ class PlaylistCustomizeBrowserWindow(bui.Window): index += 1 def _save_playlist_selection(self) -> None: - # Store the selected playlist in prefs. - # This serves dual purposes of letting us re-select it next time - # if we want and also lets us pass it to the game (since we reset - # the whole python environment that's not actually easy). + # Store the selected playlist in prefs. This serves dual + # purposes of letting us re-select it next time if we want and + # also lets us pass it to the game (since we reset the whole + # python environment that's not actually easy). cfg = bui.app.config cfg[self._pvars.config_name + ' Playlist Selection'] = ( self._selected_playlist_name @@ -469,8 +415,12 @@ class PlaylistCustomizeBrowserWindow(bui.Window): from bauiv1lib.playlist.editcontroller import PlaylistEditController from bauiv1lib.purchase import PurchaseWindow + # No-op if we're not in control. + if not self.main_window_has_control(): + return + assert bui.app.classic is not None - if not bui.app.classic.accounts.have_pro_options(): + if REQUIRE_PRO and not bui.app.classic.accounts.have_pro_options(): PurchaseWindow(items=['pro']) return @@ -492,8 +442,7 @@ class PlaylistCustomizeBrowserWindow(bui.Window): self._save_playlist_selection() # Kick off the edit UI. - PlaylistEditController(sessiontype=self._sessiontype) - bui.containerwidget(edit=self._root_widget, transition='out_left') + PlaylistEditController(sessiontype=self._sessiontype, from_window=self) def _edit_playlist(self) -> None: # pylint: disable=cyclic-import @@ -501,7 +450,7 @@ class PlaylistCustomizeBrowserWindow(bui.Window): from bauiv1lib.purchase import PurchaseWindow assert bui.app.classic is not None - if not bui.app.classic.accounts.have_pro_options(): + if REQUIRE_PRO and not bui.app.classic.accounts.have_pro_options(): PurchaseWindow(items=['pro']) return if self._selected_playlist_name is None: @@ -516,8 +465,8 @@ class PlaylistCustomizeBrowserWindow(bui.Window): PlaylistEditController( existing_playlist_name=self._selected_playlist_name, sessiontype=self._sessiontype, + from_window=self, ) - bui.containerwidget(edit=self._root_widget, transition='out_left') def _do_delete_playlist(self) -> None: plus = bui.app.plus @@ -584,7 +533,7 @@ class PlaylistCustomizeBrowserWindow(bui.Window): assert plus is not None assert bui.app.classic is not None - if not bui.app.classic.accounts.have_pro_options(): + if REQUIRE_PRO and not bui.app.classic.accounts.have_pro_options(): PurchaseWindow(items=['pro']) return @@ -626,7 +575,7 @@ class PlaylistCustomizeBrowserWindow(bui.Window): from bauiv1lib.confirm import ConfirmWindow assert bui.app.classic is not None - if not bui.app.classic.accounts.have_pro_options(): + if REQUIRE_PRO and not bui.app.classic.accounts.have_pro_options(): PurchaseWindow(items=['pro']) return @@ -666,7 +615,7 @@ class PlaylistCustomizeBrowserWindow(bui.Window): assert plus is not None assert bui.app.classic is not None - if not bui.app.classic.accounts.have_pro_options(): + if REQUIRE_PRO and not bui.app.classic.accounts.have_pro_options(): PurchaseWindow(items=['pro']) return if self._selected_playlist_name is None: @@ -682,7 +631,7 @@ class PlaylistCustomizeBrowserWindow(bui.Window): bui.getsound('error').play() return - # clamp at our max playlist number + # Clamp at our max playlist number. if len(bui.app.config[self._config_name_full]) > self._max_playlists: bui.screenmessage( bui.Lstr( @@ -697,10 +646,11 @@ class PlaylistCustomizeBrowserWindow(bui.Window): return copy_text = bui.Lstr(resource='copyOfText').evaluate() - # get just 'Copy' or whatnot - copy_word = copy_text.replace('${NAME}', '').strip() - # find a valid dup name that doesn't exist + # Get just 'Copy' or whatnot. + copy_word = copy_text.replace('${NAME}', '').strip() + + # Find a valid dup name that doesn't exist. test_index = 1 base_name = self._get_playlist_display_name( self._selected_playlist_name diff --git a/dist/ba_data/python/bauiv1lib/playlist/edit.py b/dist/ba_data/python/bauiv1lib/playlist/edit.py index 3a3fcca..afb26ac 100644 --- a/dist/ba_data/python/bauiv1lib/playlist/edit.py +++ b/dist/ba_data/python/bauiv1lib/playlist/edit.py @@ -5,7 +5,7 @@ from __future__ import annotations import logging -from typing import TYPE_CHECKING, cast +from typing import TYPE_CHECKING, cast, override import bascenev1 as bs import bauiv1 as bui @@ -14,13 +14,14 @@ if TYPE_CHECKING: from bauiv1lib.playlist.editcontroller import PlaylistEditController -class PlaylistEditWindow(bui.Window): +class PlaylistEditWindow(bui.MainWindow): """Window for editing an individual game playlist.""" def __init__( self, editcontroller: PlaylistEditController, - transition: str = 'in_right', + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, ): # pylint: disable=too-many-statements # pylint: disable=too-many-locals @@ -34,29 +35,30 @@ class PlaylistEditWindow(bui.Window): self._width = 870 if uiscale is bui.UIScale.SMALL else 670 x_inset = 100 if uiscale is bui.UIScale.SMALL else 0 self._height = ( - 400 + 500 if uiscale is bui.UIScale.SMALL else 470 if uiscale is bui.UIScale.MEDIUM else 540 ) + yoffs = -68 if uiscale is bui.UIScale.SMALL else 0 - top_extra = 20 if uiscale is bui.UIScale.SMALL else 0 super().__init__( root_widget=bui.containerwidget( - size=(self._width, self._height + top_extra), - transition=transition, + size=(self._width, self._height), scale=( 2.0 if uiscale is bui.UIScale.SMALL else 1.3 if uiscale is bui.UIScale.MEDIUM else 1.0 ), stack_offset=( - (0, -16) if uiscale is bui.UIScale.SMALL else (0, 0) + (0, 0) if uiscale is bui.UIScale.SMALL else (0, 0) ), - ) + ), + transition=transition, + origin_widget=origin_widget, ) cancel_button = bui.buttonwidget( parent=self._root_widget, - position=(35 + x_inset, self._height - 60), + position=(35 + x_inset, self._height - 60 + yoffs), scale=0.8, size=(175, 60), autoselect=True, @@ -65,7 +67,7 @@ class PlaylistEditWindow(bui.Window): ) save_button = btn = bui.buttonwidget( parent=self._root_widget, - position=(self._width - (195 + x_inset), self._height - 60), + position=(self._width - (195 + x_inset), self._height - 60 + yoffs), scale=0.8, size=(190, 60), autoselect=True, @@ -74,11 +76,10 @@ class PlaylistEditWindow(bui.Window): text_scale=1.2, ) - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=btn, - right_widget=bui.get_special_widget('party_button'), - ) + bui.widget( + edit=btn, + right_widget=bui.get_special_widget('squad_button'), + ) bui.widget( edit=cancel_button, @@ -88,7 +89,7 @@ class PlaylistEditWindow(bui.Window): bui.textwidget( parent=self._root_widget, - position=(-10, self._height - 50), + position=(-10, self._height - 50 + yoffs), size=(self._width, 25), text=bui.Lstr(resource=f'{self._r}.titleText'), color=bui.app.ui_v1.title_color, @@ -98,7 +99,7 @@ class PlaylistEditWindow(bui.Window): maxwidth=270, ) - v = self._height - 115.0 + v = self._height - 115.0 + yoffs self._scroll_width = self._width - (205 + 2 * x_inset) @@ -135,7 +136,7 @@ class PlaylistEditWindow(bui.Window): self._list_widgets: list[bui.Widget] = [] h = 40 + x_inset - v = self._height - 172.0 + v = self._height - 172.0 + yoffs b_color = (0.6, 0.53, 0.63) b_textcolor = (0.75, 0.7, 0.8) @@ -221,14 +222,17 @@ class PlaylistEditWindow(bui.Window): repeat=True, ) - v = self._height - 100 - scroll_height = self._height - 155 + v = self._height - 100 + yoffs + scroll_height = self._height - ( + 250 if uiscale is bui.UIScale.SMALL else 155 + ) scrollwidget = bui.scrollwidget( parent=self._root_widget, position=(160 + x_inset, v - scroll_height), highlight=False, on_select_call=bui.Call(self._set_ui_selection, 'gameList'), size=(self._scroll_width, (scroll_height - 15)), + border_opacity=0.4, ) bui.widget( edit=scrollwidget, @@ -270,50 +274,52 @@ class PlaylistEditWindow(bui.Window): edit=self._root_widget, selected_child=scrollwidget ) + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + + editcontroller = self._editcontroller + + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, + origin_widget=origin_widget, + editcontroller=editcontroller, + ) + ) + def _set_ui_selection(self, selection: str) -> None: self._editcontroller.set_edit_ui_selection(selection) def _cancel(self) -> None: - from bauiv1lib.playlist.customizebrowser import ( - PlaylistCustomizeBrowserWindow, - ) # no-op if our underlying widget is dead or on its way out. if not self._root_widget or self._root_widget.transitioning_out: return bui.getsound('powerdown01').play() - bui.containerwidget(edit=self._root_widget, transition='out_right') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - PlaylistCustomizeBrowserWindow( - transition='in_left', - sessiontype=self._editcontroller.get_session_type(), - select_playlist=( - self._editcontroller.get_existing_playlist_name() - ), - ).get_root_widget(), - from_window=self._root_widget, - ) + self.main_window_back() def _add(self) -> None: # Store list name then tell the session to perform an add. self._editcontroller.setname( cast(str, bui.textwidget(query=self._text_field)) ) - self._editcontroller.add_game_pressed() + self._editcontroller.add_game_pressed(from_window=self) def _edit(self) -> None: # Store list name then tell the session to perform an add. self._editcontroller.setname( cast(str, bui.textwidget(query=self._text_field)) ) - self._editcontroller.edit_game_pressed() + self._editcontroller.edit_game_pressed(from_window=self) def _save_press(self) -> None: - from bauiv1lib.playlist.customizebrowser import ( - PlaylistCustomizeBrowserWindow, - ) + + # No-op if we're not in control. + if not self.main_window_has_control(): + return # no-op if our underlying widget is dead or on its way out. if not self._root_widget or self._root_widget.transitioning_out: @@ -376,17 +382,9 @@ class PlaylistEditWindow(bui.Window): ) plus.run_v1_account_transactions() - bui.containerwidget(edit=self._root_widget, transition='out_right') bui.getsound('gunCocking').play() - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - PlaylistCustomizeBrowserWindow( - transition='in_left', - sessiontype=self._editcontroller.get_session_type(), - select_playlist=new_name, - ).get_root_widget(), - from_window=self._root_widget, - ) + + self.main_window_back() def _save_press_with_sound(self) -> None: bui.getsound('swish').play() diff --git a/dist/ba_data/python/bauiv1lib/playlist/editcontroller.py b/dist/ba_data/python/bauiv1lib/playlist/editcontroller.py index 7ed9a92..7126022 100644 --- a/dist/ba_data/python/bauiv1lib/playlist/editcontroller.py +++ b/dist/ba_data/python/bauiv1lib/playlist/editcontroller.py @@ -11,7 +11,7 @@ import bascenev1 as bs import bauiv1 as bui if TYPE_CHECKING: - from typing import Any + from typing import Any, Callable class PlaylistEditController: @@ -20,8 +20,9 @@ class PlaylistEditController: def __init__( self, sessiontype: type[bs.Session], + from_window: bui.MainWindow, + *, existing_playlist_name: str | None = None, - transition: str = 'in_right', playlist: list[dict[str, Any]] | None = None, playlist_name: str | None = None, ): @@ -44,6 +45,9 @@ class PlaylistEditController: self._existing_playlist_name = existing_playlist_name self._config_name_full = self._pvars.config_name + ' Playlists' + self._pre_game_add_state: bui.MainWindowState | None = None + self._pre_game_edit_state: bui.MainWindowState | None = None + # Make sure config exists. if self._config_name_full not in appconfig: appconfig[self._config_name_full] = {} @@ -88,13 +92,12 @@ class PlaylistEditController: # and that's all they can do. self._edit_ui_selection = 'add_button' - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - PlaylistEditWindow( - editcontroller=self, transition=transition - ).get_root_widget(), - from_window=False, # Disable this check. - ) + editwindow = PlaylistEditWindow(editcontroller=self) + from_window.main_window_replace(editwindow) + + # Once we've set our start window, store the back state. We'll + # skip back to there once we're fully done. + self._back_state = editwindow.main_window_back_state def get_config_name(self) -> str: """(internal)""" @@ -144,83 +147,88 @@ class PlaylistEditController: """Sets the selected playlist index.""" self._selected_index = index - def add_game_pressed(self) -> None: + def add_game_pressed(self, from_window: bui.MainWindow) -> None: """(internal)""" from bauiv1lib.playlist.addgame import PlaylistAddGameWindow - assert bui.app.classic is not None - bui.app.ui_v1.clear_main_menu_window(transition='out_left') - bui.app.ui_v1.set_main_menu_window( - PlaylistAddGameWindow(editcontroller=self).get_root_widget(), - from_window=None, - ) + # assert bui.app.classic is not None - def edit_game_pressed(self) -> None: + # No op if we're not in control. + if not from_window.main_window_has_control(): + return + + addwindow = PlaylistAddGameWindow(editcontroller=self) + from_window.main_window_replace(addwindow) + + # Once we're there, store the back state. We'll use that to jump + # back to our current location once the edit is done. + assert self._pre_game_add_state is None + self._pre_game_add_state = addwindow.main_window_back_state + + def edit_game_pressed(self, from_window: bui.MainWindow) -> None: """Should be called by supplemental UIs when a game is to be edited.""" if not self._playlist: return + self._show_edit_ui( gametype=bui.getclass( self._playlist[self._selected_index]['type'], subclassof=bs.GameActivity, ), settings=self._playlist[self._selected_index], - ) - - def add_game_cancelled(self) -> None: - """(internal)""" - from bauiv1lib.playlist.edit import PlaylistEditWindow - - assert bui.app.classic is not None - bui.app.ui_v1.clear_main_menu_window(transition='out_right') - bui.app.ui_v1.set_main_menu_window( - PlaylistEditWindow( - editcontroller=self, transition='in_left' - ).get_root_widget(), - from_window=None, + from_window=from_window, ) def _show_edit_ui( - self, gametype: type[bs.GameActivity], settings: dict[str, Any] | None + self, + gametype: type[bs.GameActivity], + settings: dict[str, Any] | None, + from_window: bui.MainWindow, ) -> None: + # pylint: disable=cyclic-import + from bauiv1lib.playlist.editgame import PlaylistEditGameWindow + + if not from_window.main_window_has_control(): + return + self._editing_game = settings is not None self._editing_game_type = gametype assert self._sessiontype is not None - gametype.create_settings_ui( - self._sessiontype, copy.deepcopy(settings), self._edit_game_done + + # Jump into an edit window. + editwindow = PlaylistEditGameWindow( + gametype, + self._sessiontype, + copy.deepcopy(settings), + completion_call=self._edit_game_done, + ) + from_window.main_window_replace(editwindow) + + # Once we're there, store the back state. We'll use that to jump + # back to our current location once the edit is done. + assert self._pre_game_edit_state is None + self._pre_game_edit_state = editwindow.main_window_back_state + + def add_game_type_selected( + self, gametype: type[bs.GameActivity], from_window: bui.MainWindow + ) -> None: + """(internal)""" + self._show_edit_ui( + gametype=gametype, settings=None, from_window=from_window ) - def add_game_type_selected(self, gametype: type[bs.GameActivity]) -> None: - """(internal)""" - self._show_edit_ui(gametype=gametype, settings=None) + def _edit_game_done( + self, config: dict[str, Any] | None, from_window: bui.MainWindow + ) -> None: - def _edit_game_done(self, config: dict[str, Any] | None) -> None: - from bauiv1lib.playlist.edit import PlaylistEditWindow - from bauiv1lib.playlist.addgame import PlaylistAddGameWindow + # No-op if provided window isn't in charge. + if not from_window.main_window_has_control(): + return assert bui.app.classic is not None if config is None: - # If we were editing, go back to our list. - if self._editing_game: - bui.getsound('powerdown01').play() - bui.app.ui_v1.clear_main_menu_window(transition='out_right') - bui.app.ui_v1.set_main_menu_window( - PlaylistEditWindow( - editcontroller=self, transition='in_left' - ).get_root_widget(), - from_window=None, - ) - - # Otherwise we were adding; go back to the add type choice list. - else: - bui.app.ui_v1.clear_main_menu_window(transition='out_right') - bui.app.ui_v1.set_main_menu_window( - PlaylistAddGameWindow( - editcontroller=self, transition='in_left' - ).get_root_widget(), - from_window=None, - ) + bui.getsound('powerdown01').play() else: # Make sure type is in there. assert self._editing_game_type is not None @@ -237,10 +245,17 @@ class PlaylistEditController: self._selected_index = insert_index bui.getsound('gunCocking').play() - bui.app.ui_v1.clear_main_menu_window(transition='out_right') - bui.app.ui_v1.set_main_menu_window( - PlaylistEditWindow( - editcontroller=self, transition='in_left' - ).get_root_widget(), - from_window=None, - ) + + # If we're adding, jump to before the add started. + # Otherwise jump to before the edit started. + assert ( + self._pre_game_edit_state is not None + or self._pre_game_add_state is not None + ) + if self._pre_game_add_state is not None: + from_window.main_window_back_state = self._pre_game_add_state + elif self._pre_game_edit_state is not None: + from_window.main_window_back_state = self._pre_game_edit_state + from_window.main_window_back() + self._pre_game_edit_state = None + self._pre_game_add_state = None diff --git a/dist/ba_data/python/bauiv1lib/playlist/editgame.py b/dist/ba_data/python/bauiv1lib/playlist/editgame.py index 993aac3..9fac932 100644 --- a/dist/ba_data/python/bauiv1lib/playlist/editgame.py +++ b/dist/ba_data/python/bauiv1lib/playlist/editgame.py @@ -7,7 +7,7 @@ from __future__ import annotations import copy import random import logging -from typing import TYPE_CHECKING, cast +from typing import TYPE_CHECKING, cast, override import bascenev1 as bs import bauiv1 as bui @@ -16,7 +16,7 @@ if TYPE_CHECKING: from typing import Any, Callable -class PlaylistEditGameWindow(bui.Window): +class PlaylistEditGameWindow(bui.MainWindow): """Window for editing a game config.""" def __init__( @@ -24,12 +24,14 @@ class PlaylistEditGameWindow(bui.Window): gametype: type[bs.GameActivity], sessiontype: type[bs.Session], config: dict[str, Any] | None, - completion_call: Callable[[dict[str, Any] | None], Any], + completion_call: Callable[[dict[str, Any] | None, bui.MainWindow], Any], default_selection: str | None = None, - transition: str = 'in_right', + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, edit_info: dict[str, Any] | None = None, ): # pylint: disable=too-many-branches + # pylint: disable=too-many-positional-arguments # pylint: disable=too-many-statements # pylint: disable=too-many-locals from bascenev1 import ( @@ -64,6 +66,7 @@ class PlaylistEditGameWindow(bui.Window): bui.screenmessage(bui.Lstr(resource='noValidMapsErrorText')) raise RuntimeError('No valid maps found.') + self._config = config self._settings_defs = gametype.get_available_settings(sessiontype) self._completion_call = completion_call @@ -106,13 +109,14 @@ class PlaylistEditGameWindow(bui.Window): width = 820 if uiscale is bui.UIScale.SMALL else 620 x_inset = 100 if uiscale is bui.UIScale.SMALL else 0 height = ( - 365 + 400 if uiscale is bui.UIScale.SMALL else 460 if uiscale is bui.UIScale.MEDIUM else 550 ) spacing = 52 y_extra = 15 y_extra2 = 21 + yoffs = -30 if uiscale is bui.UIScale.SMALL else 0 map_tex_name = get_map_class(self._map).get_preview_texture_name() if map_tex_name is None: @@ -123,30 +127,31 @@ class PlaylistEditGameWindow(bui.Window): super().__init__( root_widget=bui.containerwidget( size=(width, height + top_extra), - transition=transition, scale=( - 2.19 + 2.3 if uiscale is bui.UIScale.SMALL else 1.35 if uiscale is bui.UIScale.MEDIUM else 1.0 ), stack_offset=( - (0, -17) if uiscale is bui.UIScale.SMALL else (0, 0) + (0, 0) if uiscale is bui.UIScale.SMALL else (0, 0) ), - ) + ), + transition=transition, + origin_widget=origin_widget, ) btn = bui.buttonwidget( parent=self._root_widget, - position=(45 + x_inset, height - 82 + y_extra2), - size=(180, 70) if is_add else (180, 65), + position=(45 + x_inset, height - 82 + y_extra2 + yoffs), + size=(60, 48) if is_add else (180, 65), label=( - bui.Lstr(resource='backText') + bui.charstr(bui.SpecialChar.BACK) if is_add else bui.Lstr(resource='cancelText') ), - button_type='back' if is_add else None, + button_type='backSmall' if is_add else None, autoselect=True, - scale=0.75, + scale=1.0 if is_add else 0.75, text_scale=1.3, on_activate_call=bui.Call(self._cancel), ) @@ -154,24 +159,23 @@ class PlaylistEditGameWindow(bui.Window): add_button = bui.buttonwidget( parent=self._root_widget, - position=(width - (193 + x_inset), height - 82 + y_extra2), + position=(width - (193 + x_inset), height - 82 + y_extra2 + yoffs), size=(200, 65), scale=0.75, text_scale=1.3, label=( bui.Lstr(resource=f'{self._r}.addGameText') if is_add - else bui.Lstr(resource='doneText') + else bui.Lstr(resource='applyText') ), ) - if bui.app.ui_v1.use_toolbars: - pbtn = bui.get_special_widget('party_button') - bui.widget(edit=add_button, right_widget=pbtn, up_widget=pbtn) + pbtn = bui.get_special_widget('squad_button') + bui.widget(edit=add_button, right_widget=pbtn, up_widget=pbtn) bui.textwidget( parent=self._root_widget, - position=(-8, height - 70 + y_extra2), + position=(-8, height - 70 + y_extra2 + yoffs), size=(width, 25), text=gametype.get_display_string(), color=bui.app.ui_v1.title_color, @@ -191,19 +195,24 @@ class PlaylistEditGameWindow(bui.Window): scroll_width = width - (86 + 2 * x_inset) self._scrollwidget = bui.scrollwidget( parent=self._root_widget, - position=(44 + x_inset, 35 + y_extra), - size=(scroll_width, height - 116), + position=( + 44 + x_inset, + (80 if uiscale is bui.UIScale.SMALL else 35) + y_extra + yoffs, + ), + size=( + scroll_width, + height - (166 if uiscale is bui.UIScale.SMALL else 116), + ), highlight=False, claims_left_right=True, - claims_tab=True, selection_loops_to_parent=True, + border_opacity=0.4, ) self._subcontainer = bui.containerwidget( parent=self._scrollwidget, size=(scroll_width, scroll_height), background=False, claims_left_right=True, - claims_tab=True, selection_loops_to_parent=True, ) @@ -483,11 +492,11 @@ class PlaylistEditGameWindow(bui.Window): if prev_widgets is not None: # Wire our rightmost to their rightmost. bui.widget(edit=prev_widgets[-1], down_widget=cwdg[-1]) - bui.widget(cwdg[-1], up_widget=prev_widgets[-1]) + bui.widget(edit=cwdg[-1], up_widget=prev_widgets[-1]) # Wire our leftmost to their leftmost. bui.widget(edit=prev_widgets[0], down_widget=cwdg[0]) - bui.widget(cwdg[0], up_widget=prev_widgets[0]) + bui.widget(edit=cwdg[0], up_widget=prev_widgets[0]) prev_widgets = cwdg except Exception: logging.exception( @@ -509,6 +518,29 @@ class PlaylistEditGameWindow(bui.Window): edit=self._subcontainer, selected_child=map_button ) + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + + # Pull things out of self here so we don't refer to self in the + # lambda below which would keep us alive. + gametype = self._gametype + sessiontype = self._sessiontype + config = self._config + completion_call = self._completion_call + + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, + origin_widget=origin_widget, + gametype=gametype, + sessiontype=sessiontype, + config=config, + completion_call=completion_call, + ) + ) + def _get_localized_setting_name(self, name: str) -> bui.Lstr: return bui.Lstr(translate=('settingNames', name)) @@ -516,22 +548,21 @@ class PlaylistEditGameWindow(bui.Window): # pylint: disable=cyclic-import from bauiv1lib.playlist.mapselect import PlaylistMapSelectWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # No-op if we're not in control. + if not self.main_window_has_control(): return + self._config = self._getconfig() + # Replace ourself with the map-select UI. - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( + self.main_window_replace( PlaylistMapSelectWindow( self._gametype, self._sessiontype, - copy.deepcopy(self._getconfig()), + self._config, self._edit_info, self._completion_call, - ).get_root_widget(), - from_window=self._root_widget, + ) ) def _choice_inc( @@ -561,7 +592,7 @@ class PlaylistEditGameWindow(bui.Window): ][1] def _cancel(self) -> None: - self._completion_call(None) + self._completion_call(None, self) def _check_value_change( self, setting_name: str, widget: bui.Widget, value: int @@ -582,7 +613,7 @@ class PlaylistEditGameWindow(bui.Window): return {'settings': settings} def _add(self) -> None: - self._completion_call(copy.deepcopy(self._getconfig())) + self._completion_call(self._getconfig(), self) def _inc( self, @@ -593,6 +624,7 @@ class PlaylistEditGameWindow(bui.Window): setting_type: type, setting_name: str, ) -> None: + # pylint: disable=too-many-positional-arguments if setting_type == float: val = float(cast(str, bui.textwidget(query=ctrl))) else: diff --git a/dist/ba_data/python/bauiv1lib/playlist/mapselect.py b/dist/ba_data/python/bauiv1lib/playlist/mapselect.py index 8e2cc8e..935accd 100644 --- a/dist/ba_data/python/bauiv1lib/playlist/mapselect.py +++ b/dist/ba_data/python/bauiv1lib/playlist/mapselect.py @@ -5,7 +5,7 @@ from __future__ import annotations import math -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, override import bauiv1 as bui @@ -15,7 +15,7 @@ if TYPE_CHECKING: import bascenev1 as bs -class PlaylistMapSelectWindow(bui.Window): +class PlaylistMapSelectWindow(bui.MainWindow): """Window to select a map.""" def __init__( @@ -24,9 +24,14 @@ class PlaylistMapSelectWindow(bui.Window): sessiontype: type[bs.Session], config: dict[str, Any], edit_info: dict[str, Any], - completion_call: Callable[[dict[str, Any] | None], Any], - transition: str = 'in_right', + completion_call: Callable[[dict[str, Any] | None, bui.MainWindow], Any], + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, + select_get_more_maps_button: bool = False, ): + # pylint: disable=too-many-locals + # pylint: disable=too-many-positional-arguments + from bascenev1 import get_filtered_map_name self._gametype = gametype @@ -35,6 +40,7 @@ class PlaylistMapSelectWindow(bui.Window): self._completion_call = completion_call self._edit_info = edit_info self._maps: list[tuple[str, bui.Texture]] = [] + self._selected_get_more_maps = False try: self._previous_map = get_filtered_map_name( config['settings']['map'] @@ -47,42 +53,43 @@ class PlaylistMapSelectWindow(bui.Window): width = 815 if uiscale is bui.UIScale.SMALL else 615 x_inset = 100 if uiscale is bui.UIScale.SMALL else 0 height = ( - 400 + 420 if uiscale is bui.UIScale.SMALL else 480 if uiscale is bui.UIScale.MEDIUM else 600 ) + yoffs = -37 if uiscale is bui.UIScale.SMALL else 0 - top_extra = 20 if uiscale is bui.UIScale.SMALL else 0 super().__init__( root_widget=bui.containerwidget( - size=(width, height + top_extra), - transition=transition, + size=(width, height), scale=( - 2.17 + 2.3 if uiscale is bui.UIScale.SMALL else 1.3 if uiscale is bui.UIScale.MEDIUM else 1.0 ), stack_offset=( - (0, -27) if uiscale is bui.UIScale.SMALL else (0, 0) + (0, 0) if uiscale is bui.UIScale.SMALL else (0, 0) ), - ) + ), + transition=transition, + origin_widget=origin_widget, ) self._cancel_button = btn = bui.buttonwidget( parent=self._root_widget, - position=(38 + x_inset, height - 67), + position=(38 + x_inset, height - 67 + yoffs), size=(140, 50), scale=0.9, text_scale=1.0, autoselect=True, label=bui.Lstr(resource='cancelText'), - on_activate_call=self._cancel, + on_activate_call=self.main_window_back, ) bui.containerwidget(edit=self._root_widget, cancel_button=btn) bui.textwidget( parent=self._root_widget, - position=(width * 0.5, height - 46), + position=(width * 0.5, height - 46 + yoffs), size=(0, 0), maxwidth=260, scale=1.1, @@ -94,14 +101,17 @@ class PlaylistMapSelectWindow(bui.Window): h_align='center', v_align='center', ) - v = height - 70 + v = height - 70 + yoffs self._scroll_width = width - (80 + 2 * x_inset) - self._scroll_height = height - 140 + self._scroll_height = height - ( + 170 if uiscale is bui.UIScale.SMALL else 140 + ) self._scrollwidget = bui.scrollwidget( parent=self._root_widget, position=(40 + x_inset, v - self._scroll_height), size=(self._scroll_width, self._scroll_height), + border_opacity=0.4, ) bui.containerwidget( edit=self._root_widget, selected_child=self._scrollwidget @@ -109,7 +119,34 @@ class PlaylistMapSelectWindow(bui.Window): bui.containerwidget(edit=self._scrollwidget, claims_left_right=True) self._subcontainer: bui.Widget | None = None - self._refresh() + self._refresh(select_get_more_maps_button=select_get_more_maps_button) + + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + + # Pull things out of self here; if we do it in the lambda we'll + # keep ourself alive. + gametype = self._gametype + sessiontype = self._sessiontype + config = self._config + edit_info = self._edit_info + completion_call = self._completion_call + select_get_more_maps = self._selected_get_more_maps + + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, + origin_widget=origin_widget, + gametype=gametype, + sessiontype=sessiontype, + config=config, + edit_info=edit_info, + completion_call=completion_call, + select_get_more_maps_button=select_get_more_maps, + ) + ) def _refresh(self, select_get_more_maps_button: bool = False) -> None: # pylint: disable=too-many-statements @@ -198,10 +235,10 @@ class PlaylistMapSelectWindow(bui.Window): bui.widget(edit=btn, left_widget=self._cancel_button) if y == 0: bui.widget(edit=btn, up_widget=self._cancel_button) - if x == columns - 1 and bui.app.ui_v1.use_toolbars: + if x == columns - 1: bui.widget( edit=btn, - right_widget=bui.get_special_widget('party_button'), + right_widget=bui.get_special_widget('squad_button'), ) bui.widget(edit=btn, show_buffer_top=60, show_buffer_bottom=60) @@ -247,71 +284,40 @@ class PlaylistMapSelectWindow(bui.Window): ) def _on_store_press(self) -> None: - from bauiv1lib import account + from bauiv1lib.account.signin import show_sign_in_prompt from bauiv1lib.store.browser import StoreBrowserWindow + # No-op if we're not in control. + if not self.main_window_has_control(): + return + plus = bui.app.plus assert plus is not None if plus.get_v1_account_state() != 'signed_in': - account.show_sign_in_prompt() + show_sign_in_prompt() return - StoreBrowserWindow( - modal=True, - show_tab=StoreBrowserWindow.TabID.MAPS, - on_close_call=self._on_store_close, - origin_widget=self._get_more_maps_button, + + self._selected_get_more_maps = True + + self.main_window_replace( + StoreBrowserWindow( + show_tab=StoreBrowserWindow.TabID.MAPS, + origin_widget=self._get_more_maps_button, + minimal_toolbars=True, + ) ) - def _on_store_close(self) -> None: - self._refresh(select_get_more_maps_button=True) - def _select(self, map_name: str) -> None: - from bauiv1lib.playlist.editgame import PlaylistEditGameWindow # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + if not self.main_window_has_control(): return self._config['settings']['map'] = map_name - bui.containerwidget(edit=self._root_widget, transition='out_right') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - PlaylistEditGameWindow( - self._gametype, - self._sessiontype, - self._config, - self._completion_call, - default_selection='map', - transition='in_left', - edit_info=self._edit_info, - ).get_root_widget(), - from_window=self._root_widget, - ) + self.main_window_back() def _select_with_delay(self, map_name: str) -> None: bui.lock_all_input() bui.apptimer(0.1, bui.unlock_all_input) bui.apptimer(0.1, bui.WeakCall(self._select, map_name)) - - def _cancel(self) -> None: - from bauiv1lib.playlist.editgame import PlaylistEditGameWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - bui.containerwidget(edit=self._root_widget, transition='out_right') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - PlaylistEditGameWindow( - self._gametype, - self._sessiontype, - self._config, - self._completion_call, - default_selection='map', - transition='in_left', - edit_info=self._edit_info, - ).get_root_widget(), - from_window=self._root_widget, - ) diff --git a/dist/ba_data/python/bauiv1lib/playoptions.py b/dist/ba_data/python/bauiv1lib/playoptions.py index cc69b3d..0bf2028 100644 --- a/dist/ba_data/python/bauiv1lib/playoptions.py +++ b/dist/ba_data/python/bauiv1lib/playoptions.py @@ -15,16 +15,22 @@ from bauiv1lib.popup import PopupWindow if TYPE_CHECKING: from typing import Any + from bauiv1lib.play import PlaylistSelectContext + +REQUIRE_PRO = False + class PlayOptionsWindow(PopupWindow): """A popup window for configuring play options.""" def __init__( self, + *, sessiontype: type[bs.Session], playlist: str, scale_origin: tuple[float, float], delegate: Any = None, + playlist_select_context: PlaylistSelectContext | None = None, ): # FIXME: Tidy this up. # pylint: disable=too-many-branches @@ -39,10 +45,7 @@ class PlayOptionsWindow(PopupWindow): self._pvars = PlaylistTypeVars(sessiontype) self._transitioning_out = False - # We behave differently if we're being used for playlist selection - # vs starting a game directly (should make this more elegant). - assert bui.app.classic is not None - self._selecting_mode = bui.app.ui_v1.selecting_private_party_playlist + self._playlist_select_context = playlist_select_context self._do_randomize_val = bui.app.config.get( self._pvars.config_name + ' Playlist Randomize', 0 @@ -65,7 +68,8 @@ class PlayOptionsWindow(PopupWindow): mesh_transparent = bui.getmesh('level_select_button_transparent') mask_tex = bui.gettexture('mapPreviewMask') - # Poke into this playlist and see if we can display some of its maps. + # Poke into this playlist and see if we can display some of its + # maps. map_textures = [] map_texture_entries = [] rows = 0 @@ -314,7 +318,7 @@ class PlayOptionsWindow(PopupWindow): label=bui.Lstr(resource='teamNamesColorText'), ) assert bui.app.classic is not None - if not bui.app.classic.accounts.have_pro(): + if REQUIRE_PRO and not bui.app.classic.accounts.have_pro(): bui.imagewidget( parent=self.root_widget, size=(30, 30), @@ -404,7 +408,11 @@ class PlayOptionsWindow(PopupWindow): on_activate_call=self._on_ok_press, autoselect=True, label=bui.Lstr( - resource='okText' if self._selecting_mode else 'playText' + resource=( + 'okText' + if self._playlist_select_context is not None + else 'playText' + ) ), ) @@ -426,7 +434,7 @@ class PlayOptionsWindow(PopupWindow): self._update() def _custom_colors_names_press(self) -> None: - from bauiv1lib.account import show_sign_in_prompt + from bauiv1lib.account.signin import show_sign_in_prompt from bauiv1lib.teamnamescolors import TeamNamesColorsWindow from bauiv1lib.purchase import PurchaseWindow @@ -434,7 +442,7 @@ class PlayOptionsWindow(PopupWindow): assert plus is not None assert bui.app.classic is not None - if not bui.app.classic.accounts.have_pro(): + if REQUIRE_PRO and not bui.app.classic.accounts.have_pro(): if plus.get_v1_account_state() != 'signed_in': show_sign_in_prompt() else: @@ -495,10 +503,10 @@ class PlayOptionsWindow(PopupWindow): cfg = bui.app.config cfg[self._pvars.config_name + ' Playlist Selection'] = self._playlist - # Head back to the gather window in playlist-select mode - # or start the game in regular mode. - if self._selecting_mode: - from bauiv1lib.gather import GatherWindow + # Head back to the gather window in playlist-select mode or + # start the game in regular mode. + if self._playlist_select_context is not None: + # from bauiv1lib.gather import GatherWindow if self._sessiontype is bs.FreeForAllSession: typename = 'ffa' @@ -508,14 +516,7 @@ class PlayOptionsWindow(PopupWindow): raise RuntimeError('Only teams and ffa currently supported') cfg['Private Party Host Session Type'] = typename bui.getsound('gunCocking').play() - assert bui.app.classic is not None - # Note: this is a wonky situation where we aren't actually - # the main window but we set it on behalf of the main window - # that popped us up. - bui.app.ui_v1.set_main_menu_window( - GatherWindow(transition='in_right').get_root_widget(), - from_window=False, # Disable this test. - ) + self._transition_out(transition='out_left') if self._delegate is not None: self._delegate.on_play_options_window_run_game() @@ -530,6 +531,11 @@ class PlayOptionsWindow(PopupWindow): def _run_selected_playlist(self) -> None: bui.unlock_all_input() + + # Save our place in the UI that we'll return to when done. + if bs.app.classic is not None: + bs.app.classic.save_ui_state() + try: bs.new_host_session(self._sessiontype) except Exception: diff --git a/dist/ba_data/python/bauiv1lib/popup.py b/dist/ba_data/python/bauiv1lib/popup.py index ef830f8..d431578 100644 --- a/dist/ba_data/python/bauiv1lib/popup.py +++ b/dist/ba_data/python/bauiv1lib/popup.py @@ -10,24 +10,28 @@ from typing import TYPE_CHECKING, override import bauiv1 as bui if TYPE_CHECKING: - from typing import Any, Sequence, Callable + from typing import Any, Sequence, Callable, Literal class PopupWindow: - """A transient window that positions and scales itself for visibility. - - Category: UI Classes""" + """A transient window that pops up from some position.""" def __init__( self, position: tuple[float, float], size: tuple[float, float], scale: float = 1.0, + *, offset: tuple[float, float] = (0, 0), bg_color: tuple[float, float, float] = (0.35, 0.55, 0.15), focus_position: tuple[float, float] = (0, 0), focus_size: tuple[float, float] | None = None, - toolbar_visibility: str = 'menu_minimal_no_back', + toolbar_visibility: Literal[ + 'inherit', + 'menu_minimal_no_back', + 'menu_store_no_back', + ] = 'menu_minimal_no_back', + edge_buffer_scale: float = 1.0, ): # pylint: disable=too-many-locals if focus_size is None: @@ -45,7 +49,7 @@ class PopupWindow: # we now need to ensure that we're all onscreen by scaling down if # need be and clamping it to the UI bounds. bounds = bui.uibounds() - edge_buffer = 15 + edge_buffer = 15 * edge_buffer_scale bounds_width = bounds[1] - bounds[0] - edge_buffer * 2 bounds_height = bounds[3] - bounds[2] - edge_buffer * 2 @@ -79,6 +83,10 @@ class PopupWindow: (focus_position[1] + focus_size[1] * 0.5) - (size[1] * 0.5) ) * scale + # NOTE: We do NOT need to suppress main-window-recreates here + # (like regular windows do) since we are always in the overlay + # stack and thus aren't affected by main-window recreation. + self.root_widget = bui.containerwidget( transition='in_scale', scale=scale, @@ -111,6 +119,7 @@ class PopupMenuWindow(PopupWindow): position: tuple[float, float], choices: Sequence[str], current_choice: str, + *, delegate: Any = None, width: float = 230.0, maxwidth: float | None = None, @@ -196,6 +205,7 @@ class PopupMenuWindow(PopupWindow): highlight=False, color=(0.35, 0.55, 0.15), size=(self._width - 40, self._height - 40), + border_opacity=0.5, ) self._columnwidget = bui.columnwidget( parent=self._scrollwidget, border=2, margin=0 @@ -296,6 +306,7 @@ class PopupMenu: parent: bui.Widget, position: tuple[float, float], choices: Sequence[str], + *, current_choice: str | None = None, on_value_change_call: Callable[[str], Any] | None = None, opening_call: Callable[[], Any] | None = None, diff --git a/dist/ba_data/python/bauiv1lib/profile/browser.py b/dist/ba_data/python/bauiv1lib/profile/browser.py index 4529cdb..649dc2c 100644 --- a/dist/ba_data/python/bauiv1lib/profile/browser.py +++ b/dist/ba_data/python/bauiv1lib/profile/browser.py @@ -5,7 +5,7 @@ from __future__ import annotations import logging -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, override import bauiv1 as bui import bascenev1 as bs @@ -14,23 +14,19 @@ if TYPE_CHECKING: from typing import Any -class ProfileBrowserWindow(bui.Window): +class ProfileBrowserWindow(bui.MainWindow): """Window for browsing player profiles.""" def __init__( self, - transition: str = 'in_right', - in_main_menu: bool = True, + transition: str | None = 'in_right', + # in_main_menu: bool = True, selected_profile: str | None = None, origin_widget: bui.Widget | None = None, + minimal_toolbar: bool = False, ): - # pylint: disable=too-many-statements - # pylint: disable=too-many-locals - self._in_main_menu = in_main_menu - if self._in_main_menu: - back_label = bui.Lstr(resource='backText') - else: - back_label = bui.Lstr(resource='doneText') + self._minimal_toolbar = minimal_toolbar + back_label = bui.Lstr(resource='backText') assert bui.app.classic is not None uiscale = bui.app.ui_v1.uiscale self._width = 800.0 if uiscale is bui.UIScale.SMALL else 600.0 @@ -41,20 +37,11 @@ class ProfileBrowserWindow(bui.Window): else 385.0 if uiscale is bui.UIScale.MEDIUM else 410.0 ) - # If we're being called up standalone, handle pause/resume ourself. - if not self._in_main_menu: - assert bui.app.classic is not None - bui.app.classic.pause() - - # If they provided an origin-widget, scale up from that. - scale_origin: tuple[float, float] | None + # Need to handle out-transitions ourself for modal mode. if origin_widget is not None: self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' else: self._transition_out = 'out_right' - scale_origin = None self._r = 'playerProfilesWindow' @@ -67,30 +54,47 @@ class ProfileBrowserWindow(bui.Window): super().__init__( root_widget=bui.containerwidget( size=(self._width, self._height + top_extra), - transition=transition, - scale_origin_stack_offset=scale_origin, + toolbar_visibility=( + 'menu_minimal' + if (uiscale is bui.UIScale.SMALL or minimal_toolbar) + else 'menu_full' + ), scale=( - 2.2 + 2.5 if uiscale is bui.UIScale.SMALL - else 1.6 if uiscale is bui.UIScale.MEDIUM else 1.0 + else 1.5 if uiscale is bui.UIScale.MEDIUM else 1.0 ), stack_offset=( (0, -14) if uiscale is bui.UIScale.SMALL else (0, 0) ), - ) + ), + transition=transition, + origin_widget=origin_widget, ) - self._back_button = btn = bui.buttonwidget( - parent=self._root_widget, - position=(40 + x_inset, self._height - 59), - size=(120, 60), - scale=0.8, - label=back_label, - button_type='back' if self._in_main_menu else None, - autoselect=True, - on_activate_call=self._back, - ) - bui.containerwidget(edit=self._root_widget, cancel_button=btn) + if bui.app.ui_v1.uiscale is bui.UIScale.SMALL: + self._back_button = bui.get_special_widget('back_button') + bui.containerwidget( + edit=self._root_widget, on_cancel_call=self.main_window_back + ) + else: + self._back_button = btn = bui.buttonwidget( + parent=self._root_widget, + position=(40 + x_inset, self._height - 59), + size=(120, 60), + scale=0.8, + label=back_label, + button_type='back', + autoselect=True, + on_activate_call=self.main_window_back, + ) + bui.containerwidget(edit=self._root_widget, cancel_button=btn) + bui.buttonwidget( + edit=btn, + button_type='backSmall', + size=(60, 60), + label=bui.charstr(bui.SpecialChar.BACK), + ) bui.textwidget( parent=self._root_widget, @@ -104,14 +108,6 @@ class ProfileBrowserWindow(bui.Window): v_align='center', ) - if self._in_main_menu: - bui.buttonwidget( - edit=btn, - button_type='backSmall', - size=(60, 60), - label=bui.charstr(bui.SpecialChar.BACK), - ) - scroll_height = self._height - 140.0 self._scroll_width = self._width - (188 + x_inset * 2) v = self._height - 84.0 @@ -203,13 +199,32 @@ class ProfileBrowserWindow(bui.Window): self._refresh() self._restore_state() + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + + minimal_toolbar = self._minimal_toolbar + + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, + origin_widget=origin_widget, + minimal_toolbar=minimal_toolbar, + ) + ) + + @override + def on_main_window_close(self) -> None: + self._save_state() + def _new_profile(self) -> None: # pylint: disable=cyclic-import from bauiv1lib.profile.edit import EditProfileWindow from bauiv1lib.purchase import PurchaseWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # No-op if we're not the in-control main window. + if not self.main_window_has_control(): return plus = bui.app.plus @@ -220,7 +235,8 @@ class ProfileBrowserWindow(bui.Window): assert self._profiles is not None assert bui.app.classic is not None if ( - not bui.app.classic.accounts.have_pro_options() + bool(False) # Phasing out pro. + and not bui.app.classic.accounts.have_pro_options() and len(self._profiles) >= max_non_pro_profiles ): PurchaseWindow( @@ -247,14 +263,7 @@ class ProfileBrowserWindow(bui.Window): bui.getsound('error').play() return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - bui.app.ui_v1.set_main_menu_window( - EditProfileWindow( - existing_profile=None, in_main_menu=self._in_main_menu - ).get_root_widget(), - from_window=self._root_widget if self._in_main_menu else False, - ) + self.main_window_replace(EditProfileWindow(existing_profile=None)) def _delete_profile(self) -> None: # pylint: disable=cyclic-import @@ -302,8 +311,8 @@ class ProfileBrowserWindow(bui.Window): # pylint: disable=cyclic-import from bauiv1lib.profile.edit import EditProfileWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # No-op if we're not in control. + if not self.main_window_has_control(): return if self._selected_profile is None: @@ -312,45 +321,13 @@ class ProfileBrowserWindow(bui.Window): bui.Lstr(resource='nothingIsSelectedErrorText'), color=(1, 0, 0) ) return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - EditProfileWindow( - self._selected_profile, in_main_menu=self._in_main_menu - ).get_root_widget(), - from_window=self._root_widget if self._in_main_menu else False, - ) + + self.main_window_replace(EditProfileWindow(self._selected_profile)) def _select(self, name: str, index: int) -> None: del index # Unused. self._selected_profile = name - def _back(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.account.settings import AccountSettingsWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - assert bui.app.classic is not None - - self._save_state() - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - if self._in_main_menu: - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - AccountSettingsWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) - - # If we're being called up standalone, handle pause/resume ourself. - else: - bui.app.classic.resume() - def _refresh(self) -> None: # pylint: disable=too-many-locals # pylint: disable=too-many-statements diff --git a/dist/ba_data/python/bauiv1lib/profile/edit.py b/dist/ba_data/python/bauiv1lib/profile/edit.py index b474776..4c9d739 100644 --- a/dist/ba_data/python/bauiv1lib/profile/edit.py +++ b/dist/ba_data/python/bauiv1lib/profile/edit.py @@ -5,49 +5,54 @@ from __future__ import annotations import random -from typing import cast +from typing import cast, override from bauiv1lib.colorpicker import ColorPicker +from bauiv1lib.characterpicker import CharacterPickerDelegate +from bauiv1lib.iconpicker import IconPickerDelegate import bauiv1 as bui import bascenev1 as bs -class EditProfileWindow(bui.Window): +class EditProfileWindow( + bui.MainWindow, CharacterPickerDelegate, IconPickerDelegate +): """Window for editing a player profile.""" - # FIXME: WILL NEED TO CHANGE THIS FOR UILOCATION. def reload_window(self) -> None: """Transitions out and recreates ourself.""" - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - EditProfileWindow( - self.getname(), self._in_main_menu - ).get_root_widget(), - from_window=self._root_widget, + # Replace ourself with ourself, but keep the same back location. + assert self.main_window_back_state is not None + self.main_window_replace( + EditProfileWindow(self.getname()), + back_state=self.main_window_back_state, ) + # def __del__(self) -> None: + # print(f'~EditProfileWindow({id(self)})') + def __init__( self, existing_profile: str | None, - in_main_menu: bool, - transition: str = 'in_right', + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, ): # FIXME: Tidy this up a bit. # pylint: disable=too-many-branches # pylint: disable=too-many-statements # pylint: disable=too-many-locals + assert bui.app.classic is not None + # print(f'EditProfileWindow({id(self)})') plus = bui.app.plus assert plus is not None - self._in_main_menu = in_main_menu self._existing_profile = existing_profile self._r = 'editProfileWindow' self._spazzes: list[str] = [] @@ -63,30 +68,31 @@ class EditProfileWindow(bui.Window): self._width = width = 880.0 if uiscale is bui.UIScale.SMALL else 680.0 self._x_inset = x_inset = 100.0 if uiscale is bui.UIScale.SMALL else 0.0 self._height = height = ( - 350.0 + 500.0 if uiscale is bui.UIScale.SMALL else 400.0 if uiscale is bui.UIScale.MEDIUM else 450.0 ) + yoffs = -42 if uiscale is bui.UIScale.SMALL else 0 spacing = 40 self._base_scale = ( - 2.05 + 2.0 if uiscale is bui.UIScale.SMALL - else 1.5 if uiscale is bui.UIScale.MEDIUM else 1.0 + else 1.35 if uiscale is bui.UIScale.MEDIUM else 1.0 ) - top_extra = 15 if uiscale is bui.UIScale.SMALL else 15 + top_extra = 70 if uiscale is bui.UIScale.SMALL else 15 super().__init__( root_widget=bui.containerwidget( size=(width, height + top_extra), - transition=transition, scale=self._base_scale, - stack_offset=( - (0, 15) if uiscale is bui.UIScale.SMALL else (0, 0) - ), - ) + stack_offset=(0, 0), + toolbar_visibility=None, + ), + transition=transition, + origin_widget=origin_widget, ) cancel_button = btn = bui.buttonwidget( parent=self._root_widget, - position=(52 + x_inset, height - 60), + position=(52 + x_inset, height - 60 + yoffs), size=(155, 60), scale=0.8, autoselect=True, @@ -96,7 +102,7 @@ class EditProfileWindow(bui.Window): bui.containerwidget(edit=self._root_widget, cancel_button=btn) save_button = btn = bui.buttonwidget( parent=self._root_widget, - position=(width - (177 + x_inset), height - 60), + position=(width - (177 + x_inset), height - 60 + yoffs), size=(155, 60), autoselect=True, scale=0.8, @@ -107,7 +113,7 @@ class EditProfileWindow(bui.Window): bui.containerwidget(edit=self._root_widget, start_button=btn) bui.textwidget( parent=self._root_widget, - position=(self._width * 0.5, height - 38), + position=(self._width * 0.5, height - 38 + yoffs), size=(0, 0), text=( bui.Lstr(resource=f'{self._r}.titleNewText') @@ -157,7 +163,7 @@ class EditProfileWindow(bui.Window): self._icon_index = icon_index bui.buttonwidget(edit=save_button, on_activate_call=self.save) - v = height - 115.0 + v = height - 115.0 + yoffs self._name = ( '' if self._existing_profile is None else self._existing_profile ) @@ -512,6 +518,23 @@ class EditProfileWindow(bui.Window): ) self._update_character() + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + + # Pull things out of self here; if we do it within the lambda + # we'll keep ourself alive which is bad. + + existing_profile = self._existing_profile + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, + origin_widget=origin_widget, + existing_profile=existing_profile, + ) + ) + def assign_random_name(self) -> None: """Assigning a random name to the player.""" names = bs.get_random_names() @@ -523,14 +546,23 @@ class EditProfileWindow(bui.Window): def upgrade_profile(self) -> None: """Attempt to upgrade the profile to global.""" - from bauiv1lib import account + from bauiv1lib.account.signin import show_sign_in_prompt from bauiv1lib.profile import upgrade as pupgrade + new_name = self.getname().strip() + + if self._existing_profile and self._existing_profile != new_name: + bui.screenmessage( + 'Unsaved changes found; you must save first.', color=(1, 0, 0) + ) + bui.getsound('error').play() + return + plus = bui.app.plus assert plus is not None if plus.get_v1_account_state() != 'signed_in': - account.show_sign_in_prompt() + show_sign_in_prompt() return pupgrade.ProfileUpgradeWindow(self) @@ -609,23 +641,55 @@ class EditProfileWindow(bui.Window): for s in self._spazzes ] + @override def on_icon_picker_pick(self, icon: str) -> None: """An icon has been selected by the picker.""" self._icon = icon self._update_icon() + @override + def on_icon_picker_get_more_press(self) -> None: + """User wants to get more icons.""" + from bauiv1lib.store.browser import StoreBrowserWindow + + if not self.main_window_has_control(): + return + + self.main_window_replace( + StoreBrowserWindow( + minimal_toolbars=True, + show_tab=StoreBrowserWindow.TabID.ICONS, + ) + ) + + @override def on_character_picker_pick(self, character: str) -> None: """A character has been selected by the picker.""" if not self._root_widget: return - # The player could have bought a new one while the picker was up. + # The player could have bought a new one while the picker was + # up. self.refresh_characters() self._icon_index = ( self._spazzes.index(character) if character in self._spazzes else 0 ) self._update_character() + @override + def on_character_picker_get_more_press(self) -> None: + from bauiv1lib.store.browser import StoreBrowserWindow + + if not self.main_window_has_control(): + return + + self.main_window_replace( + StoreBrowserWindow( + minimal_toolbars=True, + show_tab=StoreBrowserWindow.TabID.CHARACTERS, + ) + ) + def _on_character_press(self) -> None: from bauiv1lib import characterpicker @@ -672,22 +736,7 @@ class EditProfileWindow(bui.Window): ) def _cancel(self) -> None: - from bauiv1lib.profile.browser import ProfileBrowserWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - bui.containerwidget(edit=self._root_widget, transition='out_right') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - ProfileBrowserWindow( - 'in_left', - selected_profile=self._existing_profile, - in_main_menu=self._in_main_menu, - ).get_root_widget(), - from_window=self._root_widget, - ) + self.main_window_back() def _set_color(self, color: tuple[float, float, float]) -> None: self._color = color @@ -783,7 +832,6 @@ class EditProfileWindow(bui.Window): def save(self, transition_out: bool = True) -> bool: """Save has been selected.""" - from bauiv1lib.profile.browser import ProfileBrowserWindow # no-op if our underlying widget is dead or on its way out. if not self._root_widget or self._root_widget.transitioning_out: @@ -820,8 +868,8 @@ class EditProfileWindow(bui.Window): } ) - # Also lets be aware we're no longer global if we're taking a - # new name (will need to re-request it). + # Also lets be aware we're no longer global if we're taking + # a new name (will need to re-request it). self._global = False plus.add_v1_account_transaction( @@ -840,14 +888,6 @@ class EditProfileWindow(bui.Window): if transition_out: plus.run_v1_account_transactions() - bui.containerwidget(edit=self._root_widget, transition='out_right') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - ProfileBrowserWindow( - 'in_left', - selected_profile=new_name, - in_main_menu=self._in_main_menu, - ).get_root_widget(), - from_window=self._root_widget, - ) + self.main_window_back() + return True diff --git a/dist/ba_data/python/bauiv1lib/profile/upgrade.py b/dist/ba_data/python/bauiv1lib/profile/upgrade.py index 89340bb..cb2bc96 100644 --- a/dist/ba_data/python/bauiv1lib/profile/upgrade.py +++ b/dist/ba_data/python/bauiv1lib/profile/upgrade.py @@ -32,15 +32,16 @@ class ProfileUpgradeWindow(bui.Window): self._r = 'editProfileWindow' - self._width = 680 - self._height = 350 - assert bui.app.classic is not None uiscale = bui.app.ui_v1.uiscale + self._width = 750 if uiscale is bui.UIScale.SMALL else 680 + self._height = 450 if uiscale is bui.UIScale.SMALL else 350 + assert bui.app.classic is not None self._base_scale = ( - 2.05 + 1.92 if uiscale is bui.UIScale.SMALL else 1.5 if uiscale is bui.UIScale.MEDIUM else 1.2 ) + yoffs = -60.0 if uiscale is bui.UIScale.SMALL else 0 self._upgrade_start_time: float | None = None self._name = edit_profile_window.getname() self._edit_profile_window = weakref.ref(edit_profile_window) @@ -49,17 +50,17 @@ class ProfileUpgradeWindow(bui.Window): super().__init__( root_widget=bui.containerwidget( size=(self._width, self._height + top_extra), - toolbar_visibility='menu_currency', + toolbar_visibility='menu_store_no_back', transition=transition, scale=self._base_scale, stack_offset=( - (0, 15) if uiscale is bui.UIScale.SMALL else (0, 0) + (0, 0) if uiscale is bui.UIScale.SMALL else (0, 0) ), ) ) cancel_button = bui.buttonwidget( parent=self._root_widget, - position=(52, 30), + position=(52, self._height - 290 + yoffs), size=(155, 60), scale=0.8, autoselect=True, @@ -68,7 +69,7 @@ class ProfileUpgradeWindow(bui.Window): ) self._upgrade_button = bui.buttonwidget( parent=self._root_widget, - position=(self._width - 190, 30), + position=(self._width - 190, self._height - 290 + yoffs), size=(155, 60), scale=0.8, autoselect=True, @@ -85,7 +86,7 @@ class ProfileUpgradeWindow(bui.Window): assert bui.app.classic is not None bui.textwidget( parent=self._root_widget, - position=(self._width * 0.5, self._height - 38), + position=(self._width * 0.5, self._height - 38 + yoffs), size=(0, 0), text=bui.Lstr(resource=f'{self._r}.upgradeToGlobalProfileText'), color=bui.app.ui_v1.title_color, @@ -98,7 +99,7 @@ class ProfileUpgradeWindow(bui.Window): assert bui.app.classic is not None bui.textwidget( parent=self._root_widget, - position=(self._width * 0.5, self._height - 100), + position=(self._width * 0.5, self._height - 100 + yoffs), size=(0, 0), text=bui.Lstr(resource=f'{self._r}.upgradeProfileInfoText'), color=bui.app.ui_v1.infotextcolor, @@ -110,7 +111,7 @@ class ProfileUpgradeWindow(bui.Window): self._status_text = bui.textwidget( parent=self._root_widget, - position=(self._width * 0.5, self._height - 160), + position=(self._width * 0.5, self._height - 160 + yoffs), size=(0, 0), text=bui.Lstr( resource=f'{self._r}.checkingAvailabilityText', @@ -125,7 +126,7 @@ class ProfileUpgradeWindow(bui.Window): self._price_text = bui.textwidget( parent=self._root_widget, - position=(self._width * 0.5, self._height - 230), + position=(self._width * 0.5, self._height - 230 + yoffs), size=(0, 0), text='', color=(0.2, 1, 0.2), @@ -135,22 +136,6 @@ class ProfileUpgradeWindow(bui.Window): v_align='center', ) - self._tickets_text: bui.Widget | None - if not bui.app.ui_v1.use_toolbars: - self._tickets_text = bui.textwidget( - parent=self._root_widget, - position=(self._width * 0.9 - 5, self._height - 30), - size=(0, 0), - text=bui.charstr(bui.SpecialChar.TICKET) + '123', - color=(0.2, 1, 0.2), - maxwidth=100, - scale=0.5, - h_align='right', - v_align='center', - ) - else: - self._tickets_text = None - bui.app.classic.master_server_v1_get( 'bsGlobalProfileCheck', {'name': self._name, 'b': bui.app.env.engine_build_number}, @@ -161,7 +146,7 @@ class ProfileUpgradeWindow(bui.Window): ) self._status: str | None = 'waiting' self._update_timer = bui.AppTimer( - 1.0, bui.WeakCall(self._update), repeat=True + 1.023, bui.WeakCall(self._update), repeat=True ) self._update() @@ -210,7 +195,7 @@ class ProfileUpgradeWindow(bui.Window): ) def _on_upgrade_press(self) -> None: - from bauiv1lib import gettickets + # from bauiv1lib import gettickets if self._status is None: plus = bui.app.plus @@ -220,7 +205,11 @@ class ProfileUpgradeWindow(bui.Window): tickets = plus.get_v1_account_ticket_count() if tickets < self._cost: bui.getsound('error').play() - gettickets.show_get_tickets_prompt() + bui.screenmessage( + bui.Lstr(resource='notEnoughTicketsText'), + color=(1, 0, 0), + ) + # gettickets.show_get_tickets_prompt() return bui.screenmessage( bui.Lstr(resource='purchasingText'), color=(0, 1, 0) @@ -255,23 +244,11 @@ class ProfileUpgradeWindow(bui.Window): plus = bui.app.plus assert plus is not None - try: - t_str = str(plus.get_v1_account_ticket_count()) - except Exception: - t_str = '?' - if self._tickets_text is not None: - bui.textwidget( - edit=self._tickets_text, - text=bui.Lstr( - resource='getTicketsWindow.youHaveShortText', - subs=[ - ( - '${COUNT}', - bui.charstr(bui.SpecialChar.TICKET) + t_str, - ) - ], - ), - ) + # If our originating window dies at any point, cancel. + edit_profile_window = self._edit_profile_window() + if edit_profile_window is None: + self._cancel() + return # Once we've kicked off an upgrade attempt and all transactions go # through, we're done. diff --git a/dist/ba_data/python/bauiv1lib/promocode.py b/dist/ba_data/python/bauiv1lib/promocode.py deleted file mode 100644 index 09bcf86..0000000 --- a/dist/ba_data/python/bauiv1lib/promocode.py +++ /dev/null @@ -1,223 +0,0 @@ -# Released under the MIT License. See LICENSE for details. -# -"""UI functionality for entering promo codes.""" - -from __future__ import annotations - -import time -import logging -from typing import TYPE_CHECKING - -import bauiv1 as bui - -if TYPE_CHECKING: - from typing import Any - - -class PromoCodeWindow(bui.Window): - """Window for entering promo codes.""" - - def __init__( - self, modal: bool = False, origin_widget: bui.Widget | None = None - ): - scale_origin: tuple[float, float] | None - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None - transition = 'in_right' - - width = 450 - height = 330 - - self._modal = modal - self._r = 'promoCodeWindow' - - assert bui.app.classic is not None - uiscale = bui.app.ui_v1.uiscale - super().__init__( - root_widget=bui.containerwidget( - size=(width, height), - transition=transition, - toolbar_visibility='menu_minimal_no_back', - scale_origin_stack_offset=scale_origin, - scale=( - 2.0 - if uiscale is bui.UIScale.SMALL - else 1.5 - if uiscale is bui.UIScale.MEDIUM - else 1.0 - ), - ) - ) - - btn = bui.buttonwidget( - parent=self._root_widget, - scale=0.5, - position=(40, height - 40), - size=(60, 60), - label='', - on_activate_call=self._do_back, - autoselect=True, - color=(0.55, 0.5, 0.6), - icon=bui.gettexture('crossOut'), - iconscale=1.2, - ) - - v = height - 74 - bui.textwidget( - parent=self._root_widget, - text=bui.Lstr(resource='codesExplainText'), - maxwidth=width * 0.9, - position=(width * 0.5, v), - color=(0.7, 0.7, 0.7, 1.0), - size=(0, 0), - scale=0.8, - h_align='center', - v_align='center', - ) - v -= 60 - - bui.textwidget( - parent=self._root_widget, - text=bui.Lstr( - resource='supportEmailText', - subs=[('${EMAIL}', 'support@froemling.net')], - ), - maxwidth=width * 0.9, - position=(width * 0.5, v), - color=(0.7, 0.7, 0.7, 1.0), - size=(0, 0), - scale=0.65, - h_align='center', - v_align='center', - ) - - v -= 80 - - bui.textwidget( - parent=self._root_widget, - text=bui.Lstr(resource=self._r + '.codeText'), - position=(22, v), - color=(0.8, 0.8, 0.8, 1.0), - size=(90, 30), - h_align='right', - ) - v -= 8 - - self._text_field = bui.textwidget( - parent=self._root_widget, - position=(125, v), - size=(280, 46), - text='', - h_align='left', - v_align='center', - max_chars=64, - color=(0.9, 0.9, 0.9, 1.0), - description=bui.Lstr(resource=self._r + '.codeText'), - editable=True, - padding=4, - on_return_press_call=self._activate_enter_button, - ) - bui.widget(edit=btn, down_widget=self._text_field) - - v -= 79 - b_width = 200 - self._enter_button = btn2 = bui.buttonwidget( - parent=self._root_widget, - position=(width * 0.5 - b_width * 0.5, v), - size=(b_width, 60), - scale=1.0, - label=bui.Lstr( - resource='submitText', fallback_resource=self._r + '.enterText' - ), - on_activate_call=self._do_enter, - ) - bui.containerwidget( - edit=self._root_widget, - cancel_button=btn, - start_button=btn2, - selected_child=self._text_field, - ) - - def _do_back(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.settings.advanced import AdvancedSettingsWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - if not self._modal: - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - AdvancedSettingsWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) - - def _activate_enter_button(self) -> None: - self._enter_button.activate() - - def _do_enter(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.settings.advanced import AdvancedSettingsWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - if not self._modal: - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - AdvancedSettingsWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) - - code: Any = bui.textwidget(query=self._text_field) - assert isinstance(code, str) - - bui.app.create_async_task(_run_code(code)) - - -async def _run_code(code: str) -> None: - from bacommon.cloud import PromoCodeMessage - - plus = bui.app.plus - assert plus is not None - - try: - # If we're signed in with a V2 account, ship this to V2 server. - if plus.accounts.primary is not None: - with plus.accounts.primary: - response = await plus.cloud.send_message_async( - PromoCodeMessage(code) - ) - # If V2 handled it, we're done. - if response.valid: - # Support simple message printing from v2 server. - if response.message is not None: - bui.screenmessage(response.message, color=(0, 1, 0)) - return - - # If V2 didn't accept it (or isn't signed in) kick it over to V1. - plus.add_v1_account_transaction( - { - 'type': 'PROMO_CODE', - 'expire_time': time.time() + 5, - 'code': code, - } - ) - plus.run_v1_account_transactions() - except Exception: - logging.exception('Error sending promo code.') - bui.screenmessage('Error sending code (see log).', color=(1, 0, 0)) - bui.getsound('error').play() diff --git a/dist/ba_data/python/bauiv1lib/purchase.py b/dist/ba_data/python/bauiv1lib/purchase.py index 60f97b0..68c231b 100644 --- a/dist/ba_data/python/bauiv1lib/purchase.py +++ b/dist/ba_data/python/bauiv1lib/purchase.py @@ -18,7 +18,7 @@ class PurchaseWindow(bui.Window): def __init__( self, items: list[str], - transition: str = 'in_right', + origin_widget: bui.Widget | None = None, header_text: bui.Lstr | None = None, ): from bauiv1lib.store.item import instantiate_store_item_display @@ -40,16 +40,24 @@ class PurchaseWindow(bui.Window): self._width = 580 self._height = 520 uiscale = bui.app.ui_v1.uiscale + + if origin_widget is not None: + scale_origin = origin_widget.get_screen_space_center() + else: + scale_origin = None + super().__init__( root_widget=bui.containerwidget( + parent=bui.get_special_widget('overlay_stack'), size=(self._width, self._height), - transition=transition, - toolbar_visibility='menu_currency', + transition='in_scale', + toolbar_visibility='menu_store', scale=( 1.2 if uiscale is bui.UIScale.SMALL else 1.1 if uiscale is bui.UIScale.MEDIUM else 1.0 ), + scale_origin_stack_offset=scale_origin, stack_offset=( (0, -15) if uiscale is bui.UIScale.SMALL else (0, 0) ), @@ -155,14 +163,13 @@ class PurchaseWindow(bui.Window): if bui.app.classic.accounts.have_pro(): can_die = True else: - if plus.get_purchased(self._items[0]): + if plus.get_v1_account_product_purchased(self._items[0]): can_die = True if can_die: - bui.containerwidget(edit=self._root_widget, transition='out_left') + bui.containerwidget(edit=self._root_widget, transition='out_scale') def _purchase(self) -> None: - from bauiv1lib import gettickets plus = bui.app.plus assert plus is not None @@ -176,8 +183,12 @@ class PurchaseWindow(bui.Window): except Exception: ticket_count = None if ticket_count is not None and ticket_count < self._price: - gettickets.show_get_tickets_prompt() bui.getsound('error').play() + bui.screenmessage( + bui.Lstr(resource='notEnoughTicketsText'), + color=(1, 0, 0), + ) + # gettickets.show_get_tickets_prompt() return def do_it() -> None: @@ -189,4 +200,4 @@ class PurchaseWindow(bui.Window): do_it() def _cancel(self) -> None: - bui.containerwidget(edit=self._root_widget, transition='out_right') + bui.containerwidget(edit=self._root_widget, transition='out_scale') diff --git a/dist/ba_data/python/bauiv1lib/resourcetypeinfo.py b/dist/ba_data/python/bauiv1lib/resourcetypeinfo.py index a3e39eb..eb92e28 100644 --- a/dist/ba_data/python/bauiv1lib/resourcetypeinfo.py +++ b/dist/ba_data/python/bauiv1lib/resourcetypeinfo.py @@ -4,26 +4,34 @@ from __future__ import annotations -from typing import override +from typing import override, TYPE_CHECKING, assert_never from bauiv1lib.popup import PopupWindow import bauiv1 as bui +if TYPE_CHECKING: + from typing import Literal + class ResourceTypeInfoWindow(PopupWindow): """Popup window providing info about resource types.""" - def __init__(self, origin_widget: bui.Widget): + def __init__( + self, + resource_type: Literal['tickets', 'tokens', 'trophies', 'xp'], + origin_widget: bui.Widget, + ): assert bui.app.classic is not None uiscale = bui.app.ui_v1.uiscale scale = ( - 2.3 + 2.0 if uiscale is bui.UIScale.SMALL - else 1.65 if uiscale is bui.UIScale.MEDIUM else 1.23 + else 1.4 if uiscale is bui.UIScale.MEDIUM else 0.8 ) self._transitioning_out = False self._width = 570 - self._height = 350 + self._height = 400 + self._get_tokens_button: bui.Widget | None = None bg_color = (0.5, 0.4, 0.6) super().__init__( size=(self._width, self._height), @@ -31,12 +39,13 @@ class ResourceTypeInfoWindow(PopupWindow): scale=scale, bg_color=bg_color, position=origin_widget.get_screen_space_center(), + edge_buffer_scale=4.0, ) self._cancel_button = bui.buttonwidget( parent=self.root_widget, - position=(50, self._height - 30), + position=(40, self._height - 40), size=(50, 50), - scale=0.5, + scale=0.7, label='', color=bg_color, on_activate_call=self._on_cancel_press, @@ -45,6 +54,77 @@ class ResourceTypeInfoWindow(PopupWindow): iconscale=1.2, ) + yoffs = self._height - 145 + + max_rdesc_height = 160 + + rdesc: bui.Lstr | str + + if resource_type == 'tickets': + yoffs -= 20 + rdesc = bui.Lstr(resource='ticketsDescriptionText') + texname = 'tickets' + elif resource_type == 'tokens': + rdesc = bui.Lstr(resource='tokens.tokensDescriptionText') + texname = 'coin' + bwidth = 200 + bheight = 50 + + # Show 'Get Tokens' button if we don't have a gold pass + # (in case a user doesn't notice the '+' button or we have + # it disabled for some reason). + if not bui.app.classic.gold_pass: + self._get_tokens_button = bui.buttonwidget( + parent=self.root_widget, + position=( + self._width * 0.5 - bwidth * 0.5, + yoffs - 15.0 - bheight - max_rdesc_height, + ), + color=bg_color, + textcolor=(0.8, 0.8, 0.8), + label=bui.Lstr(resource='tokens.getTokensText'), + size=(bwidth, bheight), + autoselect=True, + on_activate_call=bui.WeakCall(self._on_get_tokens_press), + ) + + elif resource_type == 'trophies': + rdesc = 'TODO: Will show trophies & league rankings.' + texname = 'crossOut' + elif resource_type == 'xp': + rdesc = 'TODO: Will describe xp/levels.' + texname = 'crossOut' + else: + assert_never(resource_type) + + imgsize = 100.0 + bui.imagewidget( + parent=self.root_widget, + position=(self._width * 0.5 - imgsize * 0.5, yoffs + 5.0), + size=(imgsize, imgsize), + texture=bui.gettexture(texname), + ) + + bui.textwidget( + parent=self.root_widget, + h_align='center', + v_align='top', + size=(0, 0), + maxwidth=self._width * 0.8, + max_height=max_rdesc_height, + position=(self._width * 0.5, yoffs - 5.0), + text=rdesc, + scale=0.8, + ) + + def _on_get_tokens_press(self) -> None: + from bauiv1lib.gettokens import show_get_tokens_window + + self._transition_out() + show_get_tokens_window( + origin_widget=bui.existing(self._get_tokens_button) + ) + def _on_cancel_press(self) -> None: self._transition_out() diff --git a/dist/ba_data/python/bauiv1lib/sendinfo.py b/dist/ba_data/python/bauiv1lib/sendinfo.py index 0a1cf59..b1b8808 100644 --- a/dist/ba_data/python/bauiv1lib/sendinfo.py +++ b/dist/ba_data/python/bauiv1lib/sendinfo.py @@ -6,7 +6,7 @@ from __future__ import annotations import time import logging -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, override import bauiv1 as bui @@ -14,26 +14,23 @@ if TYPE_CHECKING: from typing import Any -class SendInfoWindow(bui.Window): +class SendInfoWindow(bui.MainWindow): """Window for sending info to the developer.""" def __init__( self, modal: bool = False, legacy_code_mode: bool = False, + transition: str | None = 'in_scale', origin_widget: bui.Widget | None = None, ): self._legacy_code_mode = legacy_code_mode - scale_origin: tuple[float, float] | None + # Need to wrangle our own transition-out in modal mode. if origin_widget is not None: self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' else: self._transition_out = 'out_right' - scale_origin = None - transition = 'in_right' width = 450 if legacy_code_mode else 600 height = 200 if legacy_code_mode else 300 @@ -46,15 +43,19 @@ class SendInfoWindow(bui.Window): super().__init__( root_widget=bui.containerwidget( size=(width, height), - transition=transition, - toolbar_visibility='menu_minimal_no_back', - scale_origin_stack_offset=scale_origin, + toolbar_visibility=( + 'menu_minimal_no_back' + if uiscale is bui.UIScale.SMALL or modal + else 'menu_full' + ), scale=( 2.0 if uiscale is bui.UIScale.SMALL else 1.5 if uiscale is bui.UIScale.MEDIUM else 1.0 ), - ) + ), + transition=transition, + origin_widget=origin_widget, ) btn = bui.buttonwidget( @@ -163,9 +164,33 @@ class SendInfoWindow(bui.Window): selected_child=self._text_field, ) + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + + assert not self._modal + + # Pull stuff out of self here; if we do it in the lambda we'll + # keep self alive which we don't want. + legacy_code_mode = self._legacy_code_mode + + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + legacy_code_mode=legacy_code_mode, + transition=transition, + origin_widget=origin_widget, + ) + ) + def _do_back(self) -> None: # pylint: disable=cyclic-import - from bauiv1lib.settings.advanced import AdvancedSettingsWindow + + if not self._modal: + self.main_window_back() + return + + # Handle modal case: # no-op if our underlying widget is dead or on its way out. if not self._root_widget or self._root_widget.transitioning_out: @@ -174,40 +199,33 @@ class SendInfoWindow(bui.Window): bui.containerwidget( edit=self._root_widget, transition=self._transition_out ) - if not self._modal: - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - AdvancedSettingsWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) def _activate_enter_button(self) -> None: self._enter_button.activate() def _do_enter(self) -> None: # pylint: disable=cyclic-import - from bauiv1lib.settings.advanced import AdvancedSettingsWindow + # from bauiv1lib.settings.advanced import AdvancedSettingsWindow plus = bui.app.plus assert plus is not None - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - if not self._modal: - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - AdvancedSettingsWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) - description: Any = bui.textwidget(query=self._text_field) assert isinstance(description, str) + if self._modal: + # no-op if our underlying widget is dead or on its way out. + if not self._root_widget or self._root_widget.transitioning_out: + return + bui.containerwidget( + edit=self._root_widget, transition=self._transition_out + ) + else: + # no-op if we're not in control. + if not self.main_window_has_control(): + return + self.main_window_back() + # Used for things like unlocking shared playlists or linking # accounts: talk directly to V1 server via transactions. if self._legacy_code_mode: diff --git a/dist/ba_data/python/bauiv1lib/settings/advanced.py b/dist/ba_data/python/bauiv1lib/settings/advanced.py index 521762a..e98e8de 100644 --- a/dist/ba_data/python/bauiv1lib/settings/advanced.py +++ b/dist/ba_data/python/bauiv1lib/settings/advanced.py @@ -1,13 +1,16 @@ # Released under the MIT License. See LICENSE for details. # +# pylint: disable=too-many-lines + """UI functionality for advanced settings.""" from __future__ import annotations import os import logging -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, override +from bacommon.locale import LocaleResolved from bauiv1lib.popup import PopupMenu import bauiv1 as bui @@ -15,66 +18,75 @@ if TYPE_CHECKING: from typing import Any -class AdvancedSettingsWindow(bui.Window): +class AdvancedSettingsWindow(bui.MainWindow): """Window for editing advanced app settings.""" def __init__( self, - transition: str = 'in_right', + transition: str | None = 'in_right', origin_widget: bui.Widget | None = None, ): # pylint: disable=too-many-statements - import threading if bui.app.classic is None: raise RuntimeError('This requires classic support.') # Preload some modules we use in a background thread so we won't # have a visual hitch when the user taps them. - threading.Thread(target=self._preload_modules).start() + bui.app.threadpool.submit_no_wait(self._preload_modules) app = bui.app assert app.classic is not None - # If they provided an origin-widget, scale up from that. - scale_origin: tuple[float, float] | None - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None - uiscale = bui.app.ui_v1.uiscale - self._width = 970.0 if uiscale is bui.UIScale.SMALL else 670.0 - x_inset = 150 if uiscale is bui.UIScale.SMALL else 0 + self._width = 1030.0 if uiscale is bui.UIScale.SMALL else 670.0 self._height = ( - 390.0 + 490.0 if uiscale is bui.UIScale.SMALL - else 450.0 if uiscale is bui.UIScale.MEDIUM else 520.0 + else 450.0 if uiscale is bui.UIScale.MEDIUM else 600.0 ) self._lang_status_text: bui.Widget | None = None self._spacing = 32 self._menu_open = False - top_extra = 10 if uiscale is bui.UIScale.SMALL else 0 + + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 2.2 + if uiscale is bui.UIScale.SMALL + else 1.3 if uiscale is bui.UIScale.MEDIUM else 0.9 + ) + + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_width = min(self._width - 80, screensize[0] / scale) + target_height = min(self._height - 80, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * self._height + 0.5 * target_height + 30.0 + + self._scroll_width = target_width + self._scroll_height = target_height - 25 + scroll_bottom = yoffs - 56 - self._scroll_height super().__init__( root_widget=bui.containerwidget( - size=(self._width, self._height + top_extra), - transition=transition, - toolbar_visibility='menu_minimal', - scale_origin_stack_offset=scale_origin, - scale=( - 2.06 + size=(self._width, self._height), + toolbar_visibility=( + 'menu_minimal' if uiscale is bui.UIScale.SMALL - else 1.4 if uiscale is bui.UIScale.MEDIUM else 1.0 + else 'menu_full' ), - stack_offset=( - (0, -25) if uiscale is bui.UIScale.SMALL else (0, 0) - ), - ) + scale=scale, + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) self._prev_lang = '' @@ -87,9 +99,7 @@ class AdvancedSettingsWindow(bui.Window): # so no need to show this. self._show_always_use_internal_keyboard = not app.env.vr - self._scroll_width = self._width - (100 + 2 * x_inset) - self._scroll_height = self._height - 115.0 - self._sub_width = self._scroll_width * 0.95 + self._sub_width = min(550, self._scroll_width * 0.95) self._sub_height = 870.0 if self._show_always_use_internal_keyboard: @@ -99,6 +109,10 @@ class AdvancedSettingsWindow(bui.Window): if self._show_disable_gyro: self._sub_height += 42 + self._show_use_insecure_connections = True + if self._show_use_insecure_connections: + self._sub_height += 82 + self._do_vr_test_button = app.env.vr self._do_net_test_button = True self._extra_button_spacing = self._spacing * 2.5 @@ -112,21 +126,21 @@ class AdvancedSettingsWindow(bui.Window): self._r = 'settingsWindowAdvanced' - if app.ui_v1.use_toolbars and uiscale is bui.UIScale.SMALL: + if uiscale is bui.UIScale.SMALL: bui.containerwidget( - edit=self._root_widget, on_cancel_call=self._do_back + edit=self._root_widget, on_cancel_call=self.main_window_back ) self._back_button = None else: self._back_button = bui.buttonwidget( parent=self._root_widget, - position=(53 + x_inset, self._height - 60), - size=(140, 60), + position=(50, yoffs - 48), + size=(60, 60), scale=0.8, autoselect=True, - label=bui.Lstr(resource='backText'), - button_type='back', - on_activate_call=self._do_back, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + on_activate_call=self.main_window_back, ) bui.containerwidget( edit=self._root_widget, cancel_button=self._back_button @@ -134,29 +148,30 @@ class AdvancedSettingsWindow(bui.Window): self._title_text = bui.textwidget( parent=self._root_widget, - position=(0, self._height - 52), - size=(self._width, 25), + position=( + self._width * 0.5, + yoffs - (43 if uiscale is bui.UIScale.SMALL else 25), + ), + size=(0, 0), + scale=0.75 if uiscale is bui.UIScale.SMALL else 1.0, text=bui.Lstr(resource=f'{self._r}.titleText'), color=app.ui_v1.title_color, h_align='center', - v_align='top', + v_align='center', ) - if self._back_button is not None: - bui.buttonwidget( - edit=self._back_button, - button_type='backSmall', - size=(60, 60), - label=bui.charstr(bui.SpecialChar.BACK), - ) - self._scrollwidget = bui.scrollwidget( parent=self._root_widget, - position=(50 + x_inset, 50), + size=(self._scroll_width, self._scroll_height), + position=( + self._width * 0.5 - self._scroll_width * 0.5, + scroll_bottom, + ), simple_culling_v=20.0, highlight=False, - size=(self._scroll_width, self._scroll_height), + center_small_content_horizontally=True, selection_loops_to_parent=True, + border_opacity=0.4, ) bui.widget(edit=self._scrollwidget, right_widget=self._scrollwidget) self._subcontainer = bui.containerwidget( @@ -180,10 +195,23 @@ class AdvancedSettingsWindow(bui.Window): callback=bui.WeakCall(self._completed_langs_cb), ) - # noinspection PyUnresolvedReferences + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) + + @override + def on_main_window_close(self) -> None: + self._save_state() + @staticmethod def _preload_modules() -> None: - """Preload modules we use; avoids hitches (called in bg thread).""" + """Preload stuff in bg thread to avoid hitches in logic thread""" from babase import modutils as _unused2 from bauiv1lib import config as _unused1 from bauiv1lib.settings import vrtesting as _unused3 @@ -191,7 +219,7 @@ class AdvancedSettingsWindow(bui.Window): from bauiv1lib import appinvite as _unused5 from bauiv1lib import account as _unused6 from bauiv1lib import sendinfo as _unused7 - from bauiv1lib import debug as _unused8 + from bauiv1lib.settings import benchmarks as _unused8 from bauiv1lib.settings import plugins as _unused9 from bauiv1lib.settings import devtools as _unused10 @@ -245,7 +273,20 @@ class AdvancedSettingsWindow(bui.Window): plus = bui.app.plus assert plus is not None - available_languages = bui.app.lang.available_languages + locale_ss = bui.app.locale + + # available_languages = bui.app.lang.available_languages + + # Build a list of long-values for locales we are able to display. + can_display_full_unicode = bui.supports_unicode_display() + available_languages = sorted( + l.locale.long_value + for l in LocaleResolved + if ( + can_display_full_unicode + or not locale_ss.requires_full_unicode_display(l) + ) + ) # Don't rebuild if the menu is open or if our language and # language-list hasn't changed. @@ -301,13 +342,10 @@ class AdvancedSettingsWindow(bui.Window): v_align='center', ) - languages = bui.app.lang.available_languages - cur_lang = bui.app.config.get('Lang', None) - if cur_lang is None: - cur_lang = 'Auto' + cur_lang = bui.app.locale.current_locale.long_value - # We have a special dict of language names in that language - # so we don't have to go digging through each full language. + # We have a special dict of language names in that language so + # we don't have to go digging through each full language. try: import json @@ -328,11 +366,11 @@ class AdvancedSettingsWindow(bui.Window): lang_names_translated = {} langs_translated = {} - for lang in languages: + for lang in available_languages: langs_translated[lang] = lang_names_translated.get(lang, lang) langs_full = {} - for lang in languages: + for lang in available_languages: lang_translated = bui.Lstr(translate=('languages', lang)).evaluate() if langs_translated[lang] == lang_translated: langs_full[lang] = lang_translated @@ -344,13 +382,13 @@ class AdvancedSettingsWindow(bui.Window): self._language_popup = PopupMenu( parent=self._subcontainer, position=(210, v - 19), - width=150, + width=250, opening_call=bui.WeakCall(self._on_menu_open), closing_call=bui.WeakCall(self._on_menu_close), autoselect=False, on_value_change_call=bui.WeakCall(self._on_menu_choice), - choices=['Auto'] + languages, - button_size=(250, 60), + choices=['Auto'] + available_languages, + button_size=(300, 60), choices_display=( [ bui.Lstr( @@ -360,14 +398,14 @@ class AdvancedSettingsWindow(bui.Window): + bui.Lstr( translate=( 'languages', - bui.app.lang.default_language, + bui.app.locale.default_locale.long_value, ) ).evaluate() + ')' ) ) ] - + [bui.Lstr(value=langs_full[l]) for l in languages] + + [bui.Lstr(value=langs_full[l]) for l in available_languages] ), current_choice=cur_lang, ) @@ -515,6 +553,47 @@ class AdvancedSettingsWindow(bui.Window): maxwidth=430, ) + self._use_insecure_connections_check_box: ConfigCheckBox | None + if self._show_use_insecure_connections: + v -= 42 + self._use_insecure_connections_check_box = ConfigCheckBox( + parent=self._subcontainer, + position=(50, v), + size=(self._sub_width - 100, 30), + configkey='Use Insecure Connections', + autoselect=True, + # displayname='USE INSECURE CONNECTIONS', + displayname=bui.Lstr( + resource=(f'{self._r}.insecureConnectionsText') + ), + # displayname=bui.Lstr( + # resource=f'{self._r}.alwaysUseInternalKeyboardText' + # ), + scale=1.0, + maxwidth=430, + ) + bui.textwidget( + parent=self._subcontainer, + position=(90, v - 20), + size=(0, 0), + # text=( + # 'not recommended, but may allow online play\n' + # 'from restricted countries or networks' + # ), + text=bui.Lstr( + resource=(f'{self._r}.insecureConnectionsDescriptionText') + ), + maxwidth=400, + flatness=1.0, + scale=0.65, + color=(0.4, 0.9, 0.4, 0.8), + h_align='left', + v_align='center', + ) + v -= 40 + else: + self._use_insecure_connections_check_box = None + self._always_use_internal_keyboard_check_box: ConfigCheckBox | None if self._show_always_use_internal_keyboard: v -= 42 @@ -684,14 +763,13 @@ class AdvancedSettingsWindow(bui.Window): for child in self._subcontainer.get_children(): bui.widget(edit=child, show_buffer_bottom=30, show_buffer_top=20) - if bui.app.ui_v1.use_toolbars: - pbtn = bui.get_special_widget('party_button') - bui.widget(edit=self._scrollwidget, right_widget=pbtn) - if self._back_button is None: - bui.widget( - edit=self._scrollwidget, - left_widget=bui.get_special_widget('back_button'), - ) + pbtn = bui.get_special_widget('squad_button') + bui.widget(edit=self._scrollwidget, right_widget=pbtn) + if self._back_button is None: + bui.widget( + edit=self._scrollwidget, + left_widget=bui.get_special_widget('back_button'), + ) self._restore_state() @@ -712,113 +790,76 @@ class AdvancedSettingsWindow(bui.Window): def _on_vr_test_press(self) -> None: from bauiv1lib.settings.vrtesting import VRTestingWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - VRTestingWindow(transition='in_right').get_root_widget(), - from_window=self._root_widget, - ) + self.main_window_replace(VRTestingWindow(transition='in_right')) def _on_net_test_press(self) -> None: - plus = bui.app.plus - assert plus is not None from bauiv1lib.settings.nettesting import NetTestingWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - NetTestingWindow(transition='in_right').get_root_widget(), - from_window=self._root_widget, - ) + self.main_window_replace(NetTestingWindow(transition='in_right')) def _on_friend_promo_code_press(self) -> None: from bauiv1lib import appinvite - from bauiv1lib import account + from bauiv1lib.account.signin import show_sign_in_prompt plus = bui.app.plus assert plus is not None if plus.get_v1_account_state() != 'signed_in': - account.show_sign_in_prompt() + show_sign_in_prompt() return appinvite.handle_app_invites_press() def _on_plugins_button_press(self) -> None: from bauiv1lib.settings.plugins import PluginWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - PluginWindow(origin_widget=self._plugins_button).get_root_widget(), - from_window=self._root_widget, + self.main_window_replace( + PluginWindow(origin_widget=self._plugins_button) ) def _on_dev_tools_button_press(self) -> None: # pylint: disable=cyclic-import from bauiv1lib.settings.devtools import DevToolsWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - DevToolsWindow( - origin_widget=self._dev_tools_button - ).get_root_widget(), - from_window=self._root_widget, + self.main_window_replace( + DevToolsWindow(origin_widget=self._dev_tools_button) ) def _on_send_info_press(self) -> None: from bauiv1lib.sendinfo import SendInfoWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - plus = bui.app.plus - assert plus is not None - - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - SendInfoWindow( - origin_widget=self._send_info_button - ).get_root_widget(), - from_window=self._root_widget, + self.main_window_replace( + SendInfoWindow(origin_widget=self._send_info_button) ) def _on_benchmark_press(self) -> None: - from bauiv1lib.debug import DebugWindow + from bauiv1lib.settings.benchmarks import BenchmarksAndStressTestsWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - DebugWindow(transition='in_right').get_root_widget(), - from_window=self._root_widget, + self.main_window_replace( + BenchmarksAndStressTestsWindow(transition='in_right') ) def _save_state(self) -> None: @@ -852,6 +893,11 @@ class AdvancedSettingsWindow(bui.Window): == self._always_use_internal_keyboard_check_box.widget ): sel_name = 'AlwaysUseInternalKeyboard' + elif ( + self._use_insecure_connections_check_box is not None + and sel == self._use_insecure_connections_check_box.widget + ): + sel_name = 'UseInsecureConnections' elif ( self._disable_gyro_check_box is not None and sel == self._disable_gyro_check_box.widget @@ -888,6 +934,7 @@ class AdvancedSettingsWindow(bui.Window): def _restore_state(self) -> None: # pylint: disable=too-many-branches + # pylint: disable=too-many-statements try: assert bui.app.classic is not None sel_name = bui.app.ui_v1.window_states.get(type(self), {}).get( @@ -922,6 +969,11 @@ class AdvancedSettingsWindow(bui.Window): and self._always_use_internal_keyboard_check_box is not None ): sel = self._always_use_internal_keyboard_check_box.widget + elif ( + sel_name == 'UseInsecureConnections' + and self._use_insecure_connections_check_box is not None + ): + sel = self._use_insecure_connections_check_box.widget elif ( sel_name == 'DisableGyro' and self._disable_gyro_check_box is not None @@ -961,8 +1013,21 @@ class AdvancedSettingsWindow(bui.Window): self._menu_open = False def _on_menu_choice(self, choice: str) -> None: - bui.app.lang.setlanguage(None if choice == 'Auto' else choice) + + cfg = bui.app.config + cfgkey = 'Lang' + + if choice == 'Auto': + if cfgkey in cfg: + del cfg[cfgkey] + else: + cfg[cfgkey] = choice + + cfg.apply_and_commit() + self._save_state() + + # bui.app.lang.setlanguage(None if choice == 'Auto' else choice) bui.apptimer(0.1, bui.WeakCall(self._rebuild)) def _completed_langs_cb(self, results: dict[str, Any] | None) -> None: @@ -973,20 +1038,3 @@ class AdvancedSettingsWindow(bui.Window): self._complete_langs_list = None self._complete_langs_error = True bui.apptimer(0.001, bui.WeakCall(self._update_lang_status)) - - def _do_back(self) -> None: - from bauiv1lib.settings.allsettings import AllSettingsWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - self._save_state() - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - AllSettingsWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) diff --git a/dist/ba_data/python/bauiv1lib/settings/allsettings.py b/dist/ba_data/python/bauiv1lib/settings/allsettings.py index 746000a..fb18c2f 100644 --- a/dist/ba_data/python/bauiv1lib/settings/allsettings.py +++ b/dist/ba_data/python/bauiv1lib/settings/allsettings.py @@ -4,222 +4,235 @@ from __future__ import annotations -from typing import TYPE_CHECKING -from threading import Thread +from typing import TYPE_CHECKING, override import logging import bauiv1 as bui if TYPE_CHECKING: - pass + from typing import Callable -class AllSettingsWindow(bui.Window): +class AllSettingsWindow(bui.MainWindow): """Window for selecting a settings category.""" def __init__( self, - transition: str = 'in_right', + transition: str | None = 'in_right', origin_widget: bui.Widget | None = None, ): - # pylint: disable=too-many-statements # pylint: disable=too-many-locals # Preload some modules we use in a background thread so we won't # have a visual hitch when the user taps them. - Thread(target=self._preload_modules).start() + bui.app.threadpool.submit_no_wait(self._preload_modules) bui.set_analytics_screen('Settings Window') - scale_origin: tuple[float, float] | None - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None assert bui.app.classic is not None uiscale = bui.app.ui_v1.uiscale - width = 1000 if uiscale is bui.UIScale.SMALL else 580 - x_inset = 125 if uiscale is bui.UIScale.SMALL else 0 - height = 435 + width = 1000 if uiscale is bui.UIScale.SMALL else 900 + height = 800 if uiscale is bui.UIScale.SMALL else 450 self._r = 'settingsWindow' - top_extra = 20 if uiscale is bui.UIScale.SMALL else 0 uiscale = bui.app.ui_v1.uiscale + + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + safesize = bui.get_virtual_safe_area_size() + + # We're a generally widescreen shaped window, so bump our + # overall scale up a bit when screen width is wider than safe + # bounds to take advantage of the extra space. + smallscale = min(2.0, 1.5 * screensize[0] / safesize[0]) + + scale = ( + smallscale + if uiscale is bui.UIScale.SMALL + else 1.1 if uiscale is bui.UIScale.MEDIUM else 0.8 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_height = min(height - 70, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * height + 0.5 * target_height + 30.0 + + # scroll_width = target_width + # scroll_height = target_height - 25 + # scroll_bottom = yoffs - 54 - scroll_height + super().__init__( root_widget=bui.containerwidget( - size=(width, height + top_extra), - transition=transition, - toolbar_visibility='menu_minimal', - scale_origin_stack_offset=scale_origin, - scale=( - 1.75 + size=(width, height), + toolbar_visibility=( + 'menu_minimal' if uiscale is bui.UIScale.SMALL - else 1.35 if uiscale is bui.UIScale.MEDIUM else 1.0 + else 'menu_full' ), - stack_offset=( - (0, -8) if uiscale is bui.UIScale.SMALL else (0, 0) - ), - ) + scale=scale, + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) - if bui.app.ui_v1.use_toolbars and uiscale is bui.UIScale.SMALL: + if uiscale is bui.UIScale.SMALL: self._back_button = None bui.containerwidget( - edit=self._root_widget, on_cancel_call=self._do_back + edit=self._root_widget, on_cancel_call=self.main_window_back ) else: self._back_button = btn = bui.buttonwidget( parent=self._root_widget, autoselect=True, - position=(40 + x_inset, height - 55), - size=(130, 60), + position=(50, yoffs - 80.0), + size=(70, 70), scale=0.8, text_scale=1.2, - label=bui.Lstr(resource='backText'), - button_type='back', - on_activate_call=self._do_back, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + on_activate_call=self.main_window_back, ) bui.containerwidget(edit=self._root_widget, cancel_button=btn) bui.textwidget( parent=self._root_widget, - position=(0, height - 44), + position=(0, yoffs - (70 if uiscale is bui.UIScale.SMALL else 60)), size=(width, 25), text=bui.Lstr(resource=f'{self._r}.titleText'), color=bui.app.ui_v1.title_color, h_align='center', v_align='center', + scale=1.1, maxwidth=130, ) - if self._back_button is not None: - bui.buttonwidget( - edit=self._back_button, - button_type='backSmall', - size=(60, 60), - label=bui.charstr(bui.SpecialChar.BACK), + bwidth = 200 + bheight = 230 + margin = 1 + all_buttons_width = 4.0 * bwidth + 3.0 * margin + + x = width * 0.5 - all_buttons_width * 0.5 + y = height * 0.5 - bheight * 0.5 - 20.0 + + def _button( + position: tuple[float, float], + label: bui.Lstr, + call: Callable[[], None], + texture: bui.Texture, + imgsize: float, + *, + color: tuple[float, float, float] = (1.0, 1.0, 1.0), + imgoffs: tuple[float, float] = (0.0, 0.0), + ) -> bui.Widget: + x, y = position + btn = bui.buttonwidget( + parent=self._root_widget, + autoselect=True, + position=(x, y), + size=(bwidth, bheight), + button_type='square', + label='', + on_activate_call=call, ) - - v = height - 80 - v -= 145 - - basew = 280 if uiscale is bui.UIScale.SMALL else 230 - baseh = 170 - x_offs = ( - x_inset + (105 if uiscale is bui.UIScale.SMALL else 72) - basew - ) # now unused - x_offs2 = x_offs + basew - 7 - x_offs3 = x_offs + 2 * (basew - 7) - x_offs4 = x_offs2 - x_offs5 = x_offs3 - - def _b_title( - x: float, y: float, button: bui.Widget, text: str | bui.Lstr - ) -> None: bui.textwidget( parent=self._root_widget, - text=text, - position=(x + basew * 0.47, y + baseh * 0.22), - maxwidth=basew * 0.7, + text=label, + position=(x + bwidth * 0.5, y + bheight * 0.25), + maxwidth=bwidth * 0.7, size=(0, 0), h_align='center', v_align='center', - draw_controller=button, + draw_controller=btn, color=(0.7, 0.9, 0.7, 1.0), ) + bui.imagewidget( + parent=self._root_widget, + position=( + x + bwidth * 0.5 - imgsize * 0.5 + imgoffs[0], + y + bheight * 0.56 - imgsize * 0.5 + imgoffs[1], + ), + size=(imgsize, imgsize), + texture=texture, + draw_controller=btn, + color=color, + ) + return btn - ctb = self._controllers_button = bui.buttonwidget( - parent=self._root_widget, - autoselect=True, - position=(x_offs2, v), - size=(basew, baseh), - button_type='square', - label='', - on_activate_call=self._do_controllers, - ) - if bui.app.ui_v1.use_toolbars and self._back_button is None: - bbtn = bui.get_special_widget('back_button') - bui.widget(edit=ctb, left_widget=bbtn) - _b_title( - x_offs2, v, ctb, bui.Lstr(resource=f'{self._r}.controllersText') - ) - imgw = imgh = 130 - bui.imagewidget( - parent=self._root_widget, - position=(x_offs2 + basew * 0.49 - imgw * 0.5, v + 35), - size=(imgw, imgh), + self._controllers_button = _button( + position=(x, y), + label=bui.Lstr(resource=f'{self._r}.controllersText'), + call=self._do_controllers, texture=bui.gettexture('controllerIcon'), - draw_controller=ctb, + imgsize=150, + imgoffs=(-2.0, 2.0), ) + x += bwidth + margin - gfxb = self._graphics_button = bui.buttonwidget( - parent=self._root_widget, - autoselect=True, - position=(x_offs3, v), - size=(basew, baseh), - button_type='square', - label='', - on_activate_call=self._do_graphics, - ) - if bui.app.ui_v1.use_toolbars: - pbtn = bui.get_special_widget('party_button') - bui.widget(edit=gfxb, up_widget=pbtn, right_widget=pbtn) - _b_title(x_offs3, v, gfxb, bui.Lstr(resource=f'{self._r}.graphicsText')) - imgw = imgh = 110 - bui.imagewidget( - parent=self._root_widget, - position=(x_offs3 + basew * 0.49 - imgw * 0.5, v + 42), - size=(imgw, imgh), + self._graphics_button = _button( + position=(x, y), + label=bui.Lstr(resource=f'{self._r}.graphicsText'), + call=self._do_graphics, texture=bui.gettexture('graphicsIcon'), - draw_controller=gfxb, + imgsize=135, + imgoffs=(0, 4.0), ) + x += bwidth + margin - v -= baseh - 5 - - abtn = self._audio_button = bui.buttonwidget( - parent=self._root_widget, - autoselect=True, - position=(x_offs4, v), - size=(basew, baseh), - button_type='square', - label='', - on_activate_call=self._do_audio, - ) - _b_title(x_offs4, v, abtn, bui.Lstr(resource=f'{self._r}.audioText')) - imgw = imgh = 120 - bui.imagewidget( - parent=self._root_widget, - position=(x_offs4 + basew * 0.49 - imgw * 0.5 + 5, v + 35), - size=(imgw, imgh), - color=(1, 1, 0), + self._audio_button = _button( + position=(x, y), + label=bui.Lstr(resource=f'{self._r}.audioText'), + call=self._do_audio, texture=bui.gettexture('audioIcon'), - draw_controller=abtn, + imgsize=150, + color=(1, 1, 0), + ) + x += bwidth + margin + + self._advanced_button = _button( + position=(x, y), + label=bui.Lstr(resource=f'{self._r}.advancedText'), + call=self._do_advanced, + texture=bui.gettexture('advancedIcon'), + imgsize=150, + color=(0.8, 0.95, 1), + imgoffs=(0, 5.0), ) - avb = self._advanced_button = bui.buttonwidget( - parent=self._root_widget, - autoselect=True, - position=(x_offs5, v), - size=(basew, baseh), - button_type='square', - label='', - on_activate_call=self._do_advanced, - ) - _b_title(x_offs5, v, avb, bui.Lstr(resource=f'{self._r}.advancedText')) - imgw = imgh = 120 - bui.imagewidget( - parent=self._root_widget, - position=(x_offs5 + basew * 0.49 - imgw * 0.5 + 5, v + 35), - size=(imgw, imgh), - color=(0.8, 0.95, 1), - texture=bui.gettexture('advancedIcon'), - draw_controller=avb, - ) + # Hmm; we're now wide enough that being limited to pressing up + # might be ok. + if bool(False): + # Left from our leftmost button should go to back button. + if self._back_button is None: + bbtn = bui.get_special_widget('back_button') + bui.widget(edit=self._controllers_button, left_widget=bbtn) + + # Right from our rightmost widget should go to squad button. + bui.widget( + edit=self._advanced_button, + right_widget=bui.get_special_widget('squad_button'), + ) + self._restore_state() - # noinspection PyUnresolvedReferences + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) + + @override + def on_main_window_close(self) -> None: + self._save_state() + @staticmethod def _preload_modules() -> None: """Preload modules we use; avoids hitches (called in bg thread).""" @@ -229,94 +242,52 @@ class AllSettingsWindow(bui.Window): import bauiv1lib.settings.audio as _unused4 import bauiv1lib.settings.advanced as _unused5 - def _do_back(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.mainmenu import MainMenuWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - self._save_state() - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - MainMenuWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) - def _do_controllers(self) -> None: # pylint: disable=cyclic-import from bauiv1lib.settings.controls import ControlsSettingsWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - ControlsSettingsWindow( - origin_widget=self._controllers_button - ).get_root_widget(), - from_window=self._root_widget, + self.main_window_replace( + ControlsSettingsWindow(origin_widget=self._controllers_button) ) def _do_graphics(self) -> None: # pylint: disable=cyclic-import from bauiv1lib.settings.graphics import GraphicsSettingsWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - GraphicsSettingsWindow( - origin_widget=self._graphics_button - ).get_root_widget(), - from_window=self._root_widget, + self.main_window_replace( + GraphicsSettingsWindow(origin_widget=self._graphics_button) ) def _do_audio(self) -> None: # pylint: disable=cyclic-import from bauiv1lib.settings.audio import AudioSettingsWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - AudioSettingsWindow( - origin_widget=self._audio_button - ).get_root_widget(), - from_window=self._root_widget, + self.main_window_replace( + AudioSettingsWindow(origin_widget=self._audio_button) ) def _do_advanced(self) -> None: # pylint: disable=cyclic-import from bauiv1lib.settings.advanced import AdvancedSettingsWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - AdvancedSettingsWindow( - origin_widget=self._advanced_button - ).get_root_widget(), - from_window=self._root_widget, + self.main_window_replace( + AdvancedSettingsWindow(origin_widget=self._advanced_button) ) def _save_state(self) -> None: diff --git a/dist/ba_data/python/bauiv1lib/settings/audio.py b/dist/ba_data/python/bauiv1lib/settings/audio.py index d04cdf6..3589431 100644 --- a/dist/ba_data/python/bauiv1lib/settings/audio.py +++ b/dist/ba_data/python/bauiv1lib/settings/audio.py @@ -4,7 +4,7 @@ from __future__ import annotations -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, override import logging import bauiv1 as bui @@ -13,89 +13,94 @@ if TYPE_CHECKING: pass -class AudioSettingsWindow(bui.Window): +class AudioSettingsWindow(bui.MainWindow): """Window for editing audio settings.""" def __init__( self, - transition: str = 'in_right', + transition: str | None = 'in_right', origin_widget: bui.Widget | None = None, ): - # pylint: disable=too-many-statements # pylint: disable=too-many-locals # pylint: disable=cyclic-import - from bauiv1lib.popup import PopupMenu from bauiv1lib.config import ConfigNumberEdit assert bui.app.classic is not None music = bui.app.classic.music - # If they provided an origin-widget, scale up from that. - scale_origin: tuple[float, float] | None - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None - self._r = 'audioSettingsWindow' spacing = 50.0 - width = 460.0 - height = 210.0 + uiscale = bui.app.ui_v1.uiscale - # Update: hard-coding head-relative audio to true now, - # so not showing options. - # show_vr_head_relative_audio = True if bui.app.vr_mode else False - show_vr_head_relative_audio = False - - if show_vr_head_relative_audio: - height += 70 + width = 1200.0 if uiscale is bui.UIScale.SMALL else 500.0 + height = 800.0 if uiscale is bui.UIScale.SMALL else 350.0 show_soundtracks = False if music.have_music_player(): show_soundtracks = True - height += spacing * 2.0 - uiscale = bui.app.ui_v1.uiscale - base_scale = ( - 2.05 + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 2.2 if uiscale is bui.UIScale.SMALL - else 1.6 if uiscale is bui.UIScale.MEDIUM else 1.0 + else 1.5 if uiscale is bui.UIScale.MEDIUM else 1.0 ) - popup_menu_scale = base_scale * 1.2 + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + # target_width = min(width - 60, screensize[0] / scale) + target_height = min(height - 70, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * height + 0.5 * target_height + 30.0 super().__init__( root_widget=bui.containerwidget( size=(width, height), - transition=transition, - scale=base_scale, - scale_origin_stack_offset=scale_origin, - stack_offset=( - (0, -20) if uiscale is bui.UIScale.SMALL else (0, 0) + scale=scale, + toolbar_visibility=( + 'menu_minimal' + if uiscale is bui.UIScale.SMALL + else 'menu_full' ), - ) + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) - self._back_button = back_button = btn = bui.buttonwidget( - parent=self._root_widget, - position=(35, height - 55), - size=(120, 60), - scale=0.8, - text_scale=1.2, - label=bui.Lstr(resource='backText'), - button_type='back', - on_activate_call=self._back, - autoselect=True, - ) - bui.containerwidget(edit=self._root_widget, cancel_button=btn) - v = height - 60 - v -= spacing * 1.0 + if uiscale is bui.UIScale.SMALL: + bui.containerwidget( + edit=self._root_widget, on_cancel_call=self.main_window_back + ) + self._back_button = None + else: + self._back_button = bui.buttonwidget( + parent=self._root_widget, + position=(35, yoffs - 55), + size=(60, 60), + scale=0.8, + text_scale=1.2, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + on_activate_call=self.main_window_back, + autoselect=True, + ) + bui.containerwidget( + edit=self._root_widget, cancel_button=self._back_button + ) + bui.textwidget( parent=self._root_widget, - position=(width * 0.5, height - 32), + position=( + width * 0.5, + yoffs - (48 if uiscale is bui.UIScale.SMALL else 32), + ), size=(0, 0), text=bui.Lstr(resource=f'{self._r}.titleText'), color=bui.app.ui_v1.title_color, @@ -104,16 +109,14 @@ class AudioSettingsWindow(bui.Window): v_align='center', ) - bui.buttonwidget( - edit=self._back_button, - button_type='backSmall', - size=(60, 60), - label=bui.charstr(bui.SpecialChar.BACK), - ) + # Roughly center everything else in our window. + x = width * 0.5 - 160 + y = height * 0.5 + (100 if show_soundtracks else 70) + y -= spacing * 1.0 self._sound_volume_numedit = svne = ConfigNumberEdit( parent=self._root_widget, - position=(40, v), + position=(x, y), xoffset=10, configkey='Sound Volume', displayname=bui.Lstr(resource=f'{self._r}.soundVolumeText'), @@ -122,15 +125,14 @@ class AudioSettingsWindow(bui.Window): increment=0.05, as_percent=True, ) - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=svne.plusbutton, - right_widget=bui.get_special_widget('party_button'), - ) - v -= spacing + bui.widget( + edit=svne.plusbutton, + right_widget=bui.get_special_widget('squad_button'), + ) + y -= spacing self._music_volume_numedit = ConfigNumberEdit( parent=self._root_widget, - position=(40, v), + position=(x, y), xoffset=10, configkey='Music Volume', displayname=bui.Lstr(resource=f'{self._r}.musicVolumeText'), @@ -142,105 +144,70 @@ class AudioSettingsWindow(bui.Window): as_percent=True, ) - v -= 0.5 * spacing - - self._vr_head_relative_audio_button: bui.Widget | None - if show_vr_head_relative_audio: - v -= 40 - bui.textwidget( - parent=self._root_widget, - position=(40, v + 24), - size=(0, 0), - text=bui.Lstr(resource=f'{self._r}.headRelativeVRAudioText'), - color=(0.8, 0.8, 0.8), - maxwidth=230, - h_align='left', - v_align='center', - ) - - popup = PopupMenu( - parent=self._root_widget, - position=(290, v), - width=120, - button_size=(135, 50), - scale=popup_menu_scale, - choices=['Auto', 'On', 'Off'], - choices_display=[ - bui.Lstr(resource='autoText'), - bui.Lstr(resource='onText'), - bui.Lstr(resource='offText'), - ], - current_choice=bui.app.config.resolve('VR Head Relative Audio'), - on_value_change_call=self._set_vr_head_relative_audio, - ) - self._vr_head_relative_audio_button = popup.get_button() - bui.textwidget( - parent=self._root_widget, - position=(width * 0.5, v - 11), - size=(0, 0), - text=bui.Lstr( - resource=f'{self._r}.headRelativeVRAudioInfoText' - ), - scale=0.5, - color=(0.7, 0.8, 0.7), - maxwidth=400, - flatness=1.0, - h_align='center', - v_align='center', - ) - v -= 30 - else: - self._vr_head_relative_audio_button = None + y -= 0.5 * spacing self._soundtrack_button: bui.Widget | None if show_soundtracks: - v -= 1.2 * spacing + y -= 1.2 * spacing self._soundtrack_button = bui.buttonwidget( parent=self._root_widget, - position=((width - 310) / 2, v), + position=(width * 0.5 - 155, y), size=(310, 50), autoselect=True, label=bui.Lstr(resource=f'{self._r}.soundtrackButtonText'), on_activate_call=self._do_soundtracks, ) - v -= spacing * 0.5 + y -= spacing * 0.3 bui.textwidget( parent=self._root_widget, - position=(0, v), - size=(width, 20), + position=(0.5 * width, y), + size=(0.0, 0.0), text=bui.Lstr(resource=f'{self._r}.soundtrackDescriptionText'), flatness=1.0, h_align='center', + v_align='center', + maxwidth=400, scale=0.5, color=(0.7, 0.8, 0.7, 1.0), - maxwidth=400, ) else: self._soundtrack_button = None # Tweak a few navigation bits. - try: - bui.widget(edit=back_button, down_widget=svne.minusbutton) - except Exception: - logging.exception('Error wiring AudioSettingsWindow.') + if self._back_button is not None: + bui.widget(edit=self._back_button, down_widget=svne.minusbutton) + else: + spback = bui.get_special_widget('back_button') + bui.widget( + edit=svne.minusbutton, up_widget=spback, left_widget=spback + ) self._restore_state() - def _set_vr_head_relative_audio(self, val: str) -> None: - cfg = bui.app.config - cfg['VR Head Relative Audio'] = val - cfg.apply_and_commit() + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) + + @override + def on_main_window_close(self) -> None: + self._save_state() def _do_soundtracks(self) -> None: # pylint: disable=cyclic-import - from bauiv1lib.soundtrack import browser as stb + from bauiv1lib.soundtrack.browser import SoundtrackBrowserWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - # We require disk access for soundtracks; - # if we don't have it, request it. + # We require disk access for soundtracks; request it if we don't + # have it. if not bui.have_permission(bui.Permission.STORAGE): bui.getsound('ding').play() bui.screenmessage( @@ -252,34 +219,8 @@ class AudioSettingsWindow(bui.Window): ) return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - stb.SoundtrackBrowserWindow( - origin_widget=self._soundtrack_button - ).get_root_widget(), - from_window=self._root_widget, - ) - - def _back(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.settings import allsettings - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - self._save_state() - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - allsettings.AllSettingsWindow( - transition='in_left' - ).get_root_widget(), - from_window=self._root_widget, + self.main_window_replace( + SoundtrackBrowserWindow(origin_widget=self._soundtrack_button) ) def _save_state(self) -> None: @@ -297,8 +238,6 @@ class AudioSettingsWindow(bui.Window): sel_name = 'Soundtrack' elif sel == self._back_button: sel_name = 'Back' - elif sel == self._vr_head_relative_audio_button: - sel_name = 'VRHeadRelative' else: raise ValueError(f'unrecognized selection \'{sel}\'') assert bui.app.classic is not None @@ -319,8 +258,6 @@ class AudioSettingsWindow(bui.Window): sel = self._music_volume_numedit.minusbutton elif sel_name == 'MusicPlus': sel = self._music_volume_numedit.plusbutton - elif sel_name == 'VRHeadRelative': - sel = self._vr_head_relative_audio_button elif sel_name == 'Soundtrack': sel = self._soundtrack_button elif sel_name == 'Back': diff --git a/dist/ba_data/python/bauiv1lib/debug.py b/dist/ba_data/python/bauiv1lib/settings/benchmarks.py similarity index 70% rename from dist/ba_data/python/bauiv1lib/debug.py rename to dist/ba_data/python/bauiv1lib/settings/benchmarks.py index e57ae07..2399601 100644 --- a/dist/ba_data/python/bauiv1lib/debug.py +++ b/dist/ba_data/python/bauiv1lib/settings/benchmarks.py @@ -5,83 +5,124 @@ from __future__ import annotations import logging -from typing import cast +from typing import cast, override import bauiv1 as bui +import bascenev1 as bs -class DebugWindow(bui.Window): - """Window for debugging internal values.""" +class BenchmarksAndStressTestsWindow(bui.MainWindow): + """Window for launching benchmarks or stress tests.""" - def __init__(self, transition: str | None = 'in_right'): + def __init__( + self, + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, + ): + # pylint: disable=too-many-locals # pylint: disable=too-many-statements # pylint: disable=cyclic-import from bauiv1lib import popup - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_location('Benchmarks & Stress Tests') uiscale = bui.app.ui_v1.uiscale - self._width = width = 580 + self._width = width = 1200 if uiscale is bui.UIScale.SMALL else 580 self._height = height = ( - 350 + 900 if uiscale is bui.UIScale.SMALL else 420 if uiscale is bui.UIScale.MEDIUM else 520 ) - self._scroll_width = self._width - 100 - self._scroll_height = self._height - 120 - - self._sub_width = self._scroll_width * 0.95 - self._sub_height = 520 - self._stress_test_game_type = 'Random' self._stress_test_playlist = '__default__' self._stress_test_player_count = 8 self._stress_test_round_duration = 30 + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 2.32 + if uiscale is bui.UIScale.SMALL + else 1.4 if uiscale is bui.UIScale.MEDIUM else 1.0 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_width = min(self._width - 70, screensize[0] / scale) + target_height = min(self._height - 70, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * self._height + 0.5 * target_height + 30.0 + + self._scroll_width = target_width + self._scroll_height = target_height - 31 + self._scroll_bottom = yoffs - 60 - self._scroll_height + + self._sub_width = min(510.0, self._scroll_width) + self._sub_height = 520 + self._r = 'debugWindow' uiscale = bui.app.ui_v1.uiscale super().__init__( root_widget=bui.containerwidget( size=(width, height), - transition=transition, - scale=( - 2.35 + scale=scale, + toolbar_visibility=( + 'menu_minimal' if uiscale is bui.UIScale.SMALL - else 1.55 if uiscale is bui.UIScale.MEDIUM else 1.0 + else 'menu_full' ), - stack_offset=( - (0, -30) if uiscale is bui.UIScale.SMALL else (0, 0) - ), - ) + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) - self._done_button = btn = bui.buttonwidget( - parent=self._root_widget, - position=(40, height - 67), - size=(120, 60), - scale=0.8, - autoselect=True, - label=bui.Lstr(resource='doneText'), - on_activate_call=self._done, - ) - bui.containerwidget(edit=self._root_widget, cancel_button=btn) + if bui.app.ui_v1.uiscale is bui.UIScale.SMALL: + bui.containerwidget( + edit=self._root_widget, on_cancel_call=self.main_window_back + ) + self._back_button = bui.get_special_widget('back_button') + else: + self._back_button = btn = bui.buttonwidget( + parent=self._root_widget, + position=(40, yoffs - 53), + size=(60, 60), + scale=0.8, + autoselect=True, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + on_activate_call=self.main_window_back, + ) + bui.containerwidget(edit=self._root_widget, cancel_button=btn) + bui.textwidget( parent=self._root_widget, - position=(0, height - 60), - size=(width, 30), + position=( + self._width * 0.5, + yoffs - (45 if uiscale is bui.UIScale.SMALL else 30), + ), + size=(0, 0), + maxwidth=360, + scale=0.8 if uiscale is bui.UIScale.SMALL else 1.0, text=bui.Lstr(resource=f'{self._r}.titleText'), h_align='center', - color=bui.app.ui_v1.title_color, v_align='center', - maxwidth=260, + color=bui.app.ui_v1.title_color, ) self._scrollwidget = bui.scrollwidget( parent=self._root_widget, highlight=False, size=(self._scroll_width, self._scroll_height), - position=((self._width - self._scroll_width) * 0.5, 50), + position=( + self._width * 0.5 - self._scroll_width * 0.5, + self._scroll_bottom, + ), + border_opacity=0.4, + center_small_content_horizontally=True, ) bui.containerwidget(edit=self._scrollwidget, claims_left_right=True) @@ -102,17 +143,7 @@ class DebugWindow(bui.Window): on_activate_call=self._run_cpu_benchmark_pressed, ) bui.widget( - edit=btn, up_widget=self._done_button, left_widget=self._done_button - ) - v -= 60 - - bui.buttonwidget( - parent=self._subcontainer, - position=((self._sub_width - button_width) * 0.5, v), - size=(button_width, 60), - autoselect=True, - label=bui.Lstr(resource=f'{self._r}.runGPUBenchmarkText'), - on_activate_call=self._run_gpu_benchmark_pressed, + edit=btn, up_widget=self._back_button, left_widget=self._back_button ) v -= 60 @@ -301,7 +332,17 @@ class DebugWindow(bui.Window): label=bui.Lstr(resource=f'{self._r}.runStressTestText'), on_activate_call=self._stress_test_pressed, ) - bui.widget(btn, show_buffer_bottom=50) + bui.widget(edit=btn, show_buffer_bottom=50) + + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) def _stress_test_player_count_decrement(self) -> None: self._stress_test_player_count = max( @@ -344,12 +385,6 @@ class DebugWindow(bui.Window): return bui.app.classic.run_cpu_benchmark() - def _run_gpu_benchmark_pressed(self) -> None: - if bui.app.classic is None: - logging.warning('run-gpu-benchmark requires classic') - return - bui.app.classic.run_gpu_benchmark() - def _run_media_reload_benchmark_pressed(self) -> None: if bui.app.classic is None: logging.warning('run-media-reload-benchmark requires classic') @@ -357,31 +392,25 @@ class DebugWindow(bui.Window): bui.app.classic.run_media_reload_benchmark() def _stress_test_pressed(self) -> None: + from bascenev1lib.mainmenu import MainMenuActivity + if bui.app.classic is None: logging.warning('stress-test requires classic') return - bui.app.classic.run_stress_test( - playlist_type=self._stress_test_game_type, - playlist_name=cast( - str, bui.textwidget(query=self._stress_test_playlist_name_field) - ), - player_count=self._stress_test_player_count, - round_duration=self._stress_test_round_duration, - ) - bui.containerwidget(edit=self._root_widget, transition='out_right') - - def _done(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.settings.advanced import AdvancedSettingsWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - bui.containerwidget(edit=self._root_widget, transition='out_right') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - AdvancedSettingsWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) + activity = bs.get_foreground_host_activity() + if isinstance(activity, MainMenuActivity): + bui.app.classic.run_stress_test( + playlist_type=self._stress_test_game_type, + playlist_name=cast( + str, + bui.textwidget(query=self._stress_test_playlist_name_field), + ), + player_count=self._stress_test_player_count, + round_duration=self._stress_test_round_duration, + ) + bui.containerwidget(edit=self._root_widget, transition='out_right') + else: + bui.screenmessage( + bui.Lstr(value='Already present in another activity.') + ) diff --git a/dist/ba_data/python/bauiv1lib/settings/controls.py b/dist/ba_data/python/bauiv1lib/settings/controls.py index 6a85dfd..3e6fbf6 100644 --- a/dist/ba_data/python/bauiv1lib/settings/controls.py +++ b/dist/ba_data/python/bauiv1lib/settings/controls.py @@ -4,17 +4,18 @@ from __future__ import annotations -from bauiv1lib.popup import PopupMenu +from typing import override + import bascenev1 as bs import bauiv1 as bui -class ControlsSettingsWindow(bui.Window): +class ControlsSettingsWindow(bui.MainWindow): """Top level control settings window.""" def __init__( self, - transition: str = 'in_right', + transition: str | None = 'in_right', origin_widget: bui.Widget | None = None, ): # FIXME: should tidy up here. @@ -25,30 +26,24 @@ class ControlsSettingsWindow(bui.Window): self._have_selected_child = False - scale_origin: tuple[float, float] | None - - # If they provided an origin-widget, scale up from that. - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None - self._r = 'configControllersWindow' + uiscale = bui.app.ui_v1.uiscale app = bui.app assert app.classic is not None spacing = 50.0 button_width = 350.0 - width = 460.0 - height = 130.0 + width = 1200.0 if uiscale is bui.UIScale.SMALL else 560.0 + height = 800 if uiscale is bui.UIScale.SMALL else 400.0 + # yoffs = -60 if uiscale is bui.UIScale.SMALL else 0 space_height = spacing * 0.3 - # FIXME: should create vis settings under platform or app-adapter - # to determine whether to show this stuff; not hard code it. + buttons_height = 0.0 + + # FIXME: should create vis settings under platform or + # app-adapter to determine whether to show this stuff; not + # hard-code it. show_gamepads = False platform = app.classic.platform @@ -58,88 +53,101 @@ class ControlsSettingsWindow(bui.Window): ) if platform in ('linux', 'android', 'mac') or non_vr_windows: show_gamepads = True - height += spacing + buttons_height += spacing show_touch = False if bs.have_touchscreen_input(): show_touch = True - height += spacing + buttons_height += spacing show_space_1 = False if show_gamepads or show_touch: show_space_1 = True - height += space_height + buttons_height += space_height show_keyboard = False if bs.getinputdevice('Keyboard', '#1', doraise=False) is not None: show_keyboard = True - height += spacing + buttons_height += spacing show_keyboard_p2 = False if app.env.vr else show_keyboard if show_keyboard_p2: - height += spacing + buttons_height += spacing show_space_2 = False if show_keyboard: show_space_2 = True - height += space_height + buttons_height += space_height if bool(True): show_remote = True - height += spacing + buttons_height += spacing else: show_remote = False - # On windows (outside of oculus/vr), show an option to disable xinput. + # On windows (outside of oculus/vr), show an option to disable + # xinput. show_xinput_toggle = False if platform == 'windows' and not app.env.vr: show_xinput_toggle = True - # On mac builds, show an option to switch between generic and - # made-for-iOS/Mac systems - # (we can run into problems where devices register as one of each - # type otherwise).. - # UPDATE: We always use the apple system these days (which should - # support older controllers). So no need for a switch. - show_mac_controller_subsystem = False - # if platform == 'mac' and bui.is_xcode_build(): - # show_mac_controller_subsystem = True - - if show_mac_controller_subsystem: - height += spacing * 1.5 - if show_xinput_toggle: - height += spacing + buttons_height += spacing assert bui.app.classic is not None - uiscale = bui.app.ui_v1.uiscale - smallscale = 1.7 if show_keyboard else 2.2 + + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 2.0 + if uiscale is bui.UIScale.SMALL + else 1.4 if uiscale is bui.UIScale.MEDIUM else 1.0 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + # target_width = min(width - 60, screensize[0] / scale) + target_height = min(height - 70, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * height + 0.5 * target_height + 30.0 + super().__init__( root_widget=bui.containerwidget( size=(width, height), - transition=transition, - scale_origin_stack_offset=scale_origin, - stack_offset=( - (0, -10) if uiscale is bui.UIScale.SMALL else (0, 0) - ), - scale=( - smallscale + scale=scale, + toolbar_visibility=( + 'menu_minimal' if uiscale is bui.UIScale.SMALL - else 1.5 if uiscale is bui.UIScale.MEDIUM else 1.0 + else 'menu_full' ), + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, + ) + + self._back_button: bui.Widget | None + if uiscale is bui.UIScale.SMALL: + bui.containerwidget( + edit=self._root_widget, on_cancel_call=self.main_window_back ) - ) - self._back_button = btn = bui.buttonwidget( - parent=self._root_widget, - position=(35, height - 60), - size=(140, 65), - scale=0.8, - text_scale=1.2, - autoselect=True, - label=bui.Lstr(resource='backText'), - button_type='back', - on_activate_call=self._back, - ) - bui.containerwidget(edit=self._root_widget, cancel_button=btn) + self._back_button = None + else: + self._back_button = btn = bui.buttonwidget( + parent=self._root_widget, + position=(35, height - 60), + size=(60, 60), + scale=0.8, + text_scale=1.2, + autoselect=True, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + on_activate_call=self.main_window_back, + ) + bui.containerwidget(edit=self._root_widget, cancel_button=btn) # We need these vars to exist even if the buttons don't. self._gamepads_button: bui.Widget | None = None @@ -150,21 +158,20 @@ class ControlsSettingsWindow(bui.Window): bui.textwidget( parent=self._root_widget, - position=(0, height - 49), - size=(width, 25), + position=( + width * 0.5, + yoffs - (52 if uiscale is bui.UIScale.SMALL else 32), + ), + maxwidth=260, + size=(0, 0), text=bui.Lstr(resource=f'{self._r}.titleText'), color=bui.app.ui_v1.title_color, h_align='center', - v_align='top', - ) - bui.buttonwidget( - edit=btn, - button_type='backSmall', - size=(60, 60), - label=bui.charstr(bui.SpecialChar.BACK), + v_align='center', ) - v = height - 75 + # Roughly center the rest of our stuff. + v = height * 0.5 + buttons_height * 0.5 - 10 v -= spacing if show_touch: @@ -176,18 +183,18 @@ class ControlsSettingsWindow(bui.Window): label=bui.Lstr(resource=f'{self._r}.configureTouchText'), on_activate_call=self._do_touchscreen, ) - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=btn, - right_widget=bui.get_special_widget('party_button'), - ) + bui.widget( + edit=btn, + right_widget=bui.get_special_widget('squad_button'), + ) if not self._have_selected_child: bui.containerwidget( edit=self._root_widget, selected_child=self._touch_button ) - bui.widget( - edit=self._back_button, down_widget=self._touch_button - ) + if self._back_button is not None: + bui.widget( + edit=self._back_button, down_widget=self._touch_button + ) self._have_selected_child = True v -= spacing @@ -200,18 +207,19 @@ class ControlsSettingsWindow(bui.Window): label=bui.Lstr(resource=f'{self._r}.configureControllersText'), on_activate_call=self._do_gamepads, ) - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=btn, - right_widget=bui.get_special_widget('party_button'), - ) + bui.widget( + edit=btn, + right_widget=bui.get_special_widget('squad_button'), + ) if not self._have_selected_child: bui.containerwidget( edit=self._root_widget, selected_child=self._gamepads_button ) - bui.widget( - edit=self._back_button, down_widget=self._gamepads_button - ) + if self._back_button is not None: + bui.widget( + edit=self._back_button, + down_widget=self._gamepads_button, + ) self._have_selected_child = True v -= spacing else: @@ -232,18 +240,19 @@ class ControlsSettingsWindow(bui.Window): bui.widget( edit=self._keyboard_button, left_widget=self._keyboard_button ) - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=btn, - right_widget=bui.get_special_widget('party_button'), - ) + bui.widget( + edit=btn, + right_widget=bui.get_special_widget('squad_button'), + ) if not self._have_selected_child: bui.containerwidget( edit=self._root_widget, selected_child=self._keyboard_button ) - bui.widget( - edit=self._back_button, down_widget=self._keyboard_button - ) + if self._back_button is not None: + bui.widget( + edit=self._back_button, + down_widget=self._keyboard_button, + ) self._have_selected_child = True v -= spacing if show_keyboard_p2: @@ -274,18 +283,19 @@ class ControlsSettingsWindow(bui.Window): bui.widget( edit=self._idevices_button, left_widget=self._idevices_button ) - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=btn, - right_widget=bui.get_special_widget('party_button'), - ) + bui.widget( + edit=btn, + right_widget=bui.get_special_widget('squad_button'), + ) if not self._have_selected_child: bui.containerwidget( edit=self._root_widget, selected_child=self._idevices_button ) - bui.widget( - edit=self._back_button, down_widget=self._idevices_button - ) + if self._back_button is not None: + bui.widget( + edit=self._back_button, + down_widget=self._idevices_button, + ) self._have_selected_child = True v -= spacing @@ -301,7 +311,10 @@ class ControlsSettingsWindow(bui.Window): xinput_checkbox = bui.checkboxwidget( parent=self._root_widget, - position=(100, v + 3), + position=( + width * (0.35 if uiscale is bui.UIScale.SMALL else 0.25), + v + 3, + ), size=(120, 30), value=(not bui.get_low_level_config_value('enablexinput', 1)), maxwidth=200, @@ -327,50 +340,22 @@ class ControlsSettingsWindow(bui.Window): ) v -= spacing - if show_mac_controller_subsystem: - PopupMenu( - parent=self._root_widget, - position=(260, v - 10), - width=160, - button_size=(150, 50), - scale=1.5, - choices=['Classic', 'MFi', 'Both'], - choices_display=[ - bui.Lstr(resource='macControllerSubsystemClassicText'), - bui.Lstr(resource='macControllerSubsystemMFiText'), - bui.Lstr(resource='macControllerSubsystemBothText'), - ], - current_choice=bui.app.config.resolve( - 'Mac Controller Subsystem' - ), - on_value_change_call=self._set_mac_controller_subsystem, - ) - bui.textwidget( - parent=self._root_widget, - position=(245, v + 13), - size=(0, 0), - text=bui.Lstr(resource='macControllerSubsystemTitleText'), - scale=1.0, - h_align='right', - v_align='center', - color=bui.app.ui_v1.infotextcolor, - maxwidth=180, - ) - bui.textwidget( - parent=self._root_widget, - position=(width * 0.5, v - 20), - size=(0, 0), - text=bui.Lstr(resource='macControllerSubsystemDescriptionText'), - scale=0.5, - h_align='center', - v_align='center', - color=bui.app.ui_v1.infotextcolor, - maxwidth=width * 0.8, - ) - v -= spacing * 1.5 - self._restore_state() + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) + + @override + def on_main_window_close(self) -> None: + self._save_state() + def _set_mac_controller_subsystem(self, val: str) -> None: cfg = bui.app.config cfg['Mac Controller Subsystem'] = val @@ -380,85 +365,55 @@ class ControlsSettingsWindow(bui.Window): # pylint: disable=cyclic-import from bauiv1lib.settings.keyboard import ConfigKeyboardWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - ConfigKeyboardWindow( - bs.getinputdevice('Keyboard', '#1') - ).get_root_widget(), - from_window=self._root_widget, + self.main_window_replace( + ConfigKeyboardWindow(bs.getinputdevice('Keyboard', '#1')) ) def _config_keyboard2(self) -> None: # pylint: disable=cyclic-import from bauiv1lib.settings.keyboard import ConfigKeyboardWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - ConfigKeyboardWindow( - bs.getinputdevice('Keyboard', '#2') - ).get_root_widget(), - from_window=self._root_widget, + self.main_window_replace( + ConfigKeyboardWindow(bs.getinputdevice('Keyboard', '#2')) ) def _do_mobile_devices(self) -> None: # pylint: disable=cyclic-import from bauiv1lib.settings.remoteapp import RemoteAppSettingsWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - RemoteAppSettingsWindow().get_root_widget(), - from_window=self._root_widget, - ) + self.main_window_replace(RemoteAppSettingsWindow()) def _do_gamepads(self) -> None: # pylint: disable=cyclic-import from bauiv1lib.settings.gamepadselect import GamepadSelectWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - GamepadSelectWindow().get_root_widget(), - from_window=self._root_widget, - ) + self.main_window_replace(GamepadSelectWindow()) def _do_touchscreen(self) -> None: # pylint: disable=cyclic-import from bauiv1lib.settings.touchscreen import TouchscreenSettingsWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - TouchscreenSettingsWindow().get_root_widget(), - from_window=self._root_widget, - ) + self.main_window_replace(TouchscreenSettingsWindow()) def _save_state(self) -> None: sel = self._root_widget.get_selected_child() @@ -499,21 +454,3 @@ class ControlsSettingsWindow(bui.Window): else self._back_button ) bui.containerwidget(edit=self._root_widget, selected_child=sel) - - def _back(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.settings.allsettings import AllSettingsWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - self._save_state() - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - AllSettingsWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) diff --git a/dist/ba_data/python/bauiv1lib/settings/devtools.py b/dist/ba_data/python/bauiv1lib/settings/devtools.py index 2db6e9c..93a381b 100644 --- a/dist/ba_data/python/bauiv1lib/settings/devtools.py +++ b/dist/ba_data/python/bauiv1lib/settings/devtools.py @@ -4,6 +4,8 @@ from __future__ import annotations +from typing import override + import babase import bauiv1 as bui from bauiv1lib.popup import PopupMenu @@ -11,79 +13,85 @@ from bauiv1lib.confirm import ConfirmWindow from bauiv1lib.config import ConfigCheckBox -class DevToolsWindow(bui.Window): +class DevToolsWindow(bui.MainWindow): """Window for accessing modding tools.""" def __init__( self, - transition: str = 'in_right', + transition: str | None = 'in_right', origin_widget: bui.Widget | None = None, ): app = bui.app assert app.classic is not None - # If they provided an origin-widget, scale up from that. - scale_origin: tuple[float, float] | None - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None - uiscale = app.ui_v1.uiscale - self._width = 970.0 if uiscale is bui.UIScale.SMALL else 670.0 - x_inset = 150 if uiscale is bui.UIScale.SMALL else 0 + self._width = 1200.0 if uiscale is bui.UIScale.SMALL else 670.0 self._height = ( - 390.0 + 800 if uiscale is bui.UIScale.SMALL else 450.0 if uiscale is bui.UIScale.MEDIUM else 520.0 ) - self._spacing = 32 - top_extra = 10 if uiscale is bui.UIScale.SMALL else 0 - self._scroll_width = self._width - (100 + 2 * x_inset) - self._scroll_height = self._height - 115.0 + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 2.13 + if uiscale is bui.UIScale.SMALL + else 1.4 if uiscale is bui.UIScale.MEDIUM else 1.0 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_width = min(self._width - 80, screensize[0] / scale) + target_height = min(self._height - 90, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * self._height + 0.5 * target_height + 30.0 + + self._scroll_width = target_width + self._scroll_height = target_height - 35 + self._scroll_bottom = yoffs - 64 - self._scroll_height + self._sub_width = self._scroll_width * 0.95 - self._sub_height = 350.0 + self._sub_height = 300.0 super().__init__( root_widget=bui.containerwidget( - size=(self._width, self._height + top_extra), - transition=transition, - toolbar_visibility='menu_minimal', - scale_origin_stack_offset=scale_origin, - scale=( - 2.06 + size=(self._width, self._height), + toolbar_visibility=( + 'menu_minimal' if uiscale is bui.UIScale.SMALL - else 1.4 if uiscale is bui.UIScale.MEDIUM else 1.0 + else 'menu_full' ), - stack_offset=( - (0, -25) if uiscale is bui.UIScale.SMALL else (0, 0) - ), - ) + scale=scale, + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) self._r = 'settingsDevTools' - if app.ui_v1.use_toolbars and uiscale is bui.UIScale.SMALL: + if uiscale is bui.UIScale.SMALL: bui.containerwidget( - edit=self._root_widget, on_cancel_call=self._do_back + edit=self._root_widget, on_cancel_call=self.main_window_back ) self._back_button = None else: self._back_button = bui.buttonwidget( parent=self._root_widget, - position=(53 + x_inset, self._height - 60), + position=(53, yoffs - 50), size=(140, 60), scale=0.8, autoselect=True, label=bui.Lstr(resource='backText'), button_type='back', - on_activate_call=self._do_back, + on_activate_call=self.main_window_back, ) bui.containerwidget( edit=self._root_widget, cancel_button=self._back_button @@ -91,8 +99,12 @@ class DevToolsWindow(bui.Window): self._title_text = bui.textwidget( parent=self._root_widget, - position=(self._width * 0.5, self._height - 48), + position=( + self._width * 0.5, + yoffs - (60 if uiscale is bui.UIScale.SMALL else 42), + ), size=(0, 25), + scale=(0.8 if uiscale is bui.UIScale.SMALL else 1.0), maxwidth=self._width - 200, text=bui.Lstr(resource='settingsWindowAdvanced.devToolsText'), color=app.ui_v1.title_color, @@ -110,11 +122,15 @@ class DevToolsWindow(bui.Window): self._scrollwidget = bui.scrollwidget( parent=self._root_widget, - position=(50 + x_inset, 50), + position=( + self._width * 0.5 - self._scroll_width * 0.5, + self._scroll_bottom, + ), simple_culling_v=20.0, highlight=False, size=(self._scroll_width, self._scroll_height), selection_loops_to_parent=True, + border_opacity=0.4, ) bui.widget(edit=self._scrollwidget, right_widget=self._scrollwidget) self._subcontainer = bui.containerwidget( @@ -169,36 +185,50 @@ class DevToolsWindow(bui.Window): ), ) - v -= self._spacing * 2.5 - bui.textwidget( - parent=self._subcontainer, - position=(170, v + 10), - size=(0, 0), - text=bui.Lstr(resource='uiScaleText'), - color=app.ui_v1.title_color, - h_align='center', - v_align='center', - ) + # Currently this is not wired up. The current official way to test + # UIScales is either to use the switcher in the dev-console or to + # set the BA_UI_SCALE env var. + if bool(False): + v -= self._spacing * 2.5 + bui.textwidget( + parent=self._subcontainer, + position=(170, v + 10), + size=(0, 0), + text=bui.Lstr(resource='uiScaleText'), + color=app.ui_v1.title_color, + h_align='center', + v_align='center', + ) - PopupMenu( - parent=self._subcontainer, - position=(230, v - 20), - button_size=(200.0, 60.0), - width=100.0, - choices=[ - 'auto', - 'small', - 'medium', - 'large', - ], - choices_display=[ - bui.Lstr(resource='autoText'), - bui.Lstr(resource='sizeSmallText'), - bui.Lstr(resource='sizeMediumText'), - bui.Lstr(resource='sizeLargeText'), - ], - current_choice=app.config.get('UI Scale', 'auto'), - on_value_change_call=self._set_uiscale, + PopupMenu( + parent=self._subcontainer, + position=(230, v - 20), + button_size=(200.0, 60.0), + width=100.0, + choices=[ + 'auto', + 'small', + 'medium', + 'large', + ], + choices_display=[ + bui.Lstr(resource='autoText'), + bui.Lstr(resource='sizeSmallText'), + bui.Lstr(resource='sizeMediumText'), + bui.Lstr(resource='sizeLargeText'), + ], + current_choice=app.config.get('UI Scale', 'auto'), + on_value_change_call=self._set_uiscale, + ) + + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) ) def _set_uiscale(self, val: str) -> None: @@ -210,19 +240,3 @@ class DevToolsWindow(bui.Window): bui.Lstr(resource='settingsWindowAdvanced.mustRestartText'), color=(1.0, 0.5, 0.0), ) - - def _do_back(self) -> None: - from bauiv1lib.settings.advanced import AdvancedSettingsWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - AdvancedSettingsWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) diff --git a/dist/ba_data/python/bauiv1lib/settings/gamepad.py b/dist/ba_data/python/bauiv1lib/settings/gamepad.py index 390af52..add9aa7 100644 --- a/dist/ba_data/python/bauiv1lib/settings/gamepad.py +++ b/dist/ba_data/python/bauiv1lib/settings/gamepad.py @@ -6,7 +6,7 @@ from __future__ import annotations import logging -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, override from bauiv1lib.popup import PopupMenuWindow import bascenev1 as bs @@ -14,29 +14,32 @@ import bauiv1 as bui if TYPE_CHECKING: from typing import Any, Callable + from bauiv1lib.popup import PopupWindow -class GamepadSettingsWindow(bui.Window): +class GamepadSettingsWindow(bui.MainWindow): """Window for configuring a gamepad.""" # pylint: disable=too-many-public-methods def __init__( self, - gamepad: bs.InputDevice, - is_main_menu: bool = True, - transition: str = 'in_right', + inputdevice: bs.InputDevice, + *, + modal: bool = False, + transition: str | None = 'in_right', transition_out: str = 'out_right', + origin_widget: bui.Widget | None = None, settings: dict | None = None, ): - self._input = gamepad + self._inputdevice = inputdevice # If our input-device went away, just return an empty zombie. - if not self._input: + if not self._inputdevice: return - self._name = self._input.name + self._name = self._inputdevice.name self._r = 'configGamepadWindow' self._transition_out = transition_out @@ -44,7 +47,7 @@ class GamepadSettingsWindow(bui.Window): # We're a secondary gamepad if supplied with settings. self._is_secondary = settings is not None self._ext = '_B' if self._is_secondary else '' - self._is_main_menu = is_main_menu + self._modal = modal self._displayname = self._name self._width = 700 if self._is_secondary else 730 self._height = 440 if self._is_secondary else 450 @@ -55,23 +58,45 @@ class GamepadSettingsWindow(bui.Window): root_widget=bui.containerwidget( size=(self._width, self._height), scale=( - 1.63 + 1.4 if uiscale is bui.UIScale.SMALL - else 1.35 if uiscale is bui.UIScale.MEDIUM else 1.0 + else 1.3 if uiscale is bui.UIScale.MEDIUM else 1.0 ), stack_offset=( - (-20, -16) if uiscale is bui.UIScale.SMALL else (0, 0) + (0, -10) if uiscale is bui.UIScale.SMALL else (0, 0) ), - transition=transition, - ) + ), + transition=transition, + origin_widget=origin_widget, ) self._settings: dict[str, int] = {} if not self._is_secondary: self._get_config_mapping() + # Don't ask to config joysticks while we're in here. self._rebuild_ui() + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + + # Pull stuff out of self here; if we do it in the lambda we keep + # self alive which we don't want. + assert not self._is_secondary + assert not self._modal + + inputdevice = self._inputdevice + + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + inputdevice=inputdevice, + transition=transition, + origin_widget=origin_widget, + ) + ) + def _get_config_mapping(self, default: bool = False) -> None: for button in [ 'buttonJump', @@ -134,7 +159,7 @@ class GamepadSettingsWindow(bui.Window): ]: assert bui.app.classic is not None val = bui.app.classic.get_input_device_mapped_value( - self._input, button, default + self._inputdevice, button, default ) if val != -1: self._settings[button] = val @@ -416,7 +441,7 @@ class GamepadSettingsWindow(bui.Window): def get_input(self) -> bs.InputDevice: """(internal)""" - return self._input + return self._inputdevice def _do_advanced(self) -> None: # pylint: disable=cyclic-import @@ -532,8 +557,8 @@ class GamepadSettingsWindow(bui.Window): def show_secondary_editor(self) -> None: """(internal)""" GamepadSettingsWindow( - self._input, - is_main_menu=False, + self._inputdevice, + modal=True, settings=self._settings, transition='in_scale', transition_out='out_scale', @@ -559,16 +584,16 @@ class GamepadSettingsWindow(bui.Window): assert isinstance(sval2, (int, type(None))) if sval1 is not None and sval2 is not None: return ( - self._input.get_axis_name(sval1) + self._inputdevice.get_axis_name(sval1) + ' / ' - + self._input.get_axis_name(sval2) + + self._inputdevice.get_axis_name(sval2) ) return bui.Lstr(resource=f'{self._r}.unsetText') # If they're looking for triggers. if control in ['triggerRun1' + self._ext, 'triggerRun2' + self._ext]: if control in self._settings: - return self._input.get_axis_name(self._settings[control]) + return self._inputdevice.get_axis_name(self._settings[control]) return bui.Lstr(resource=f'{self._r}.unsetText') # Dead-zone. @@ -589,7 +614,9 @@ class GamepadSettingsWindow(bui.Window): # If *any* dpad buttons are assigned, show only button assignments. if any(b in self._settings for b in dpad_buttons): if control in self._settings: - return self._input.get_button_name(self._settings[control]) + return self._inputdevice.get_button_name( + self._settings[control] + ) return bui.Lstr(resource=f'{self._r}.unsetText') # No dpad buttons - show the dpad number for all 4. @@ -614,7 +641,7 @@ class GamepadSettingsWindow(bui.Window): # Other buttons. if control in self._settings: - return self._input.get_button_name(self._settings[control]) + return self._inputdevice.get_button_name(self._settings[control]) return bui.Lstr(resource=f'{self._r}.unsetText') def _gamepad_event( @@ -691,7 +718,7 @@ class GamepadSettingsWindow(bui.Window): # Now launch the up/down listener. AwaitGamepadInputWindow( - self._input, + self._inputdevice, 'analogStickUD' + ext, self._gamepad_event, bui.Lstr(resource=f'{self._r}.pressUpDownText'), @@ -739,6 +766,7 @@ class GamepadSettingsWindow(bui.Window): color: tuple[float, float, float], texture: bui.Texture, button: str, + *, scale: float = 1.0, message: bui.Lstr | None = None, message2: bui.Lstr | None = None, @@ -780,7 +808,7 @@ class GamepadSettingsWindow(bui.Window): edit=btn, on_activate_call=bui.Call( AwaitGamepadInputWindow, - self._input, + self._inputdevice, button, self._gamepad_event, message, @@ -792,21 +820,16 @@ class GamepadSettingsWindow(bui.Window): return btn def _cancel(self) -> None: - from bauiv1lib.settings.controls import ControlsSettingsWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - if self._is_main_menu: - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - ControlsSettingsWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, + if self._modal: + # no-op if our underlying widget is dead or on its way out. + if not self._root_widget or self._root_widget.transitioning_out: + return + bui.containerwidget( + edit=self._root_widget, transition=self._transition_out ) + else: + self.main_window_back() def _reset(self) -> None: from bauiv1lib.confirm import ConfirmWindow @@ -894,18 +917,20 @@ class GamepadSettingsWindow(bui.Window): if not self._root_widget or self._root_widget.transitioning_out: return - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - # If we're a secondary editor we just go away (we were editing our # parent's settings dict). if self._is_secondary: + assert self._modal + bui.containerwidget( + edit=self._root_widget, transition=self._transition_out + ) return assert self._settings is not None - if self._input: - dst = classic.get_input_device_config(self._input, default=True) + if self._inputdevice: + dst = classic.get_input_device_config( + self._inputdevice, default=True + ) dst2: dict[str, Any] = dst[0][dst[1]] dst2.clear() @@ -916,7 +941,7 @@ class GamepadSettingsWindow(bui.Window): # If we're allowed to phone home, send this config so we can # generate more defaults in the future. - inputhash = classic.get_input_device_map_hash(self._input) + inputhash = classic.get_input_device_map_hash(self._inputdevice) classic.master_server_v1_post( 'controllerConfig', { @@ -933,14 +958,13 @@ class GamepadSettingsWindow(bui.Window): else: bui.getsound('error').play() - if self._is_main_menu: - from bauiv1lib.settings.controls import ControlsSettingsWindow - - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - ControlsSettingsWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, + if self._modal: + bui.containerwidget( + edit=self._root_widget, transition=self._transition_out ) + else: + assert self.main_window_has_control() + self.main_window_back() class AwaitGamepadInputWindow(bui.Window): @@ -954,6 +978,7 @@ class AwaitGamepadInputWindow(bui.Window): message: bui.Lstr | None = None, message2: bui.Lstr | None = None, ): + # pylint: disable=too-many-positional-arguments if message is None: print('AwaitGamepadInputWindow message is None!') # Shouldn't get here. @@ -1011,9 +1036,6 @@ class AwaitGamepadInputWindow(bui.Window): ) bs.capture_gamepad_input(bui.WeakCall(self._event_callback)) - def __del__(self) -> None: - pass - def die(self) -> None: """Kill the window.""" diff --git a/dist/ba_data/python/bauiv1lib/settings/gamepadadvanced.py b/dist/ba_data/python/bauiv1lib/settings/gamepadadvanced.py index 7ac9b80..ab06216 100644 --- a/dist/ba_data/python/bauiv1lib/settings/gamepadadvanced.py +++ b/dist/ba_data/python/bauiv1lib/settings/gamepadadvanced.py @@ -40,7 +40,7 @@ class GamepadAdvancedSettingsWindow(bui.Window): size=(self._width, self._height), scale=1.06 * ( - 1.85 + 1.6 if uiscale is bui.UIScale.SMALL else 1.35 if uiscale is bui.UIScale.MEDIUM else 1.0 ), @@ -99,7 +99,6 @@ class GamepadAdvancedSettingsWindow(bui.Window): ), size=(self._scroll_width, self._scroll_height), claims_left_right=True, - claims_tab=True, selection_loops_to_parent=True, ) self._subcontainer = bui.containerwidget( @@ -107,7 +106,6 @@ class GamepadAdvancedSettingsWindow(bui.Window): size=(self._sub_width, self._sub_height), background=False, claims_left_right=True, - claims_tab=True, selection_loops_to_parent=True, ) bui.containerwidget( @@ -473,6 +471,7 @@ class GamepadAdvancedSettingsWindow(bui.Window): name: bui.Lstr, control: str, position: tuple[float, float], + *, min_val: float = 0.0, max_val: float = 100.0, increment: float = 1.0, diff --git a/dist/ba_data/python/bauiv1lib/settings/gamepadselect.py b/dist/ba_data/python/bauiv1lib/settings/gamepadselect.py index ab0e7e1..79c4abb 100644 --- a/dist/ba_data/python/bauiv1lib/settings/gamepadselect.py +++ b/dist/ba_data/python/bauiv1lib/settings/gamepadselect.py @@ -4,8 +4,7 @@ from __future__ import annotations -import logging -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, override import bascenev1 as bs import bauiv1 as bui @@ -14,98 +13,14 @@ if TYPE_CHECKING: from typing import Any -def gamepad_configure_callback(event: dict[str, Any]) -> None: - """Respond to a gamepad button press during config selection.""" - from bauiv1lib.settings import gamepad - - # Ignore all but button-presses. - if event['type'] not in ['BUTTONDOWN', 'HATMOTION']: - return - bs.release_gamepad_input() - assert bui.app.classic is not None - try: - bui.app.ui_v1.clear_main_menu_window(transition='out_left') - except Exception: - logging.exception('Error transitioning out main_menu_window.') - bui.getsound('activateBeep').play() - bui.getsound('swish').play() - device = event['input_device'] - assert isinstance(device, bs.InputDevice) - if device.allows_configuring: - bui.app.ui_v1.set_main_menu_window( - gamepad.GamepadSettingsWindow(device).get_root_widget(), - from_window=None, - ) - else: - width = 700 - height = 200 - button_width = 80 - uiscale = bui.app.ui_v1.uiscale - dlg = bui.containerwidget( - scale=( - 1.7 - if uiscale is bui.UIScale.SMALL - else 1.4 if uiscale is bui.UIScale.MEDIUM else 1.0 - ), - size=(width, height), - transition='in_right', - ) - bui.app.ui_v1.set_main_menu_window(dlg, from_window=None) - - if device.allows_configuring_in_system_settings: - msg = bui.Lstr( - resource='configureDeviceInSystemSettingsText', - subs=[('${DEVICE}', device.name)], - ) - elif device.is_controller_app: - msg = bui.Lstr( - resource='bsRemoteConfigureInAppText', - subs=[('${REMOTE_APP_NAME}', bui.get_remote_app_name())], - ) - else: - msg = bui.Lstr( - resource='cantConfigureDeviceText', - subs=[('${DEVICE}', device.name)], - ) - bui.textwidget( - parent=dlg, - position=(0, height - 80), - size=(width, 25), - text=msg, - scale=0.8, - h_align='center', - v_align='top', - ) - - def _ok() -> None: - from bauiv1lib.settings import controls - - # no-op if our underlying widget is dead or on its way out. - if not dlg or dlg.transitioning_out: - return - - bui.containerwidget(edit=dlg, transition='out_right') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - controls.ControlsSettingsWindow( - transition='in_left' - ).get_root_widget(), - from_window=dlg, - ) - - bui.buttonwidget( - parent=dlg, - position=((width - button_width) / 2, 20), - size=(button_width, 60), - label=bui.Lstr(resource='okText'), - on_activate_call=_ok, - ) - - -class GamepadSelectWindow(bui.Window): +class GamepadSelectWindow(bui.MainWindow): """Window for selecting a gamepad to configure.""" - def __init__(self) -> None: + def __init__( + self, + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, + ) -> None: from typing import cast width = 480 @@ -123,8 +38,9 @@ class GamepadSelectWindow(bui.Window): else 1.5 if uiscale is bui.UIScale.MEDIUM else 1.0 ), size=(width, height), - transition='in_right', - ) + ), + transition=transition, + origin_widget=origin_widget, ) btn = bui.buttonwidget( @@ -134,10 +50,11 @@ class GamepadSelectWindow(bui.Window): label=bui.Lstr(resource='backText'), button_type='back', scale=0.8, - on_activate_call=self._back, + on_activate_call=self.main_window_back, ) - # Let's not have anything selected by default; its misleading looking - # for the controller getting configured. + + # Let's not have anything selected by default; its misleading + # looking for the controller getting configured. bui.containerwidget( edit=self._root_widget, cancel_button=btn, @@ -188,21 +105,133 @@ class GamepadSelectWindow(bui.Window): v_align='top', ) - bs.capture_gamepad_input(gamepad_configure_callback) + bs.capture_gamepad_input(bui.WeakCall(self.gamepad_configure_callback)) - def _back(self) -> None: - from bauiv1lib.settings import controls + def __del__(self) -> None: + bs.release_gamepad_input() - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) + + def gamepad_configure_callback(self, event: dict[str, Any]) -> None: + """Respond to a gamepad button press during config selection.""" + from bauiv1lib.settings.gamepad import GamepadSettingsWindow + + if not self.main_window_has_control(): return + # Ignore all but button-presses. + if event['type'] not in ['BUTTONDOWN', 'HATMOTION']: + return bs.release_gamepad_input() - bui.containerwidget(edit=self._root_widget, transition='out_right') + assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - controls.ControlsSettingsWindow( - transition='in_left' - ).get_root_widget(), - from_window=self._root_widget, + + bui.getsound('activateBeep').play() + bui.getsound('swish').play() + device = event['input_device'] + assert isinstance(device, bs.InputDevice) + + # No matter where we redirect to, we want their back + # functionality to skip over us and go to our parent. + assert self.main_window_back_state is not None + back_state = self.main_window_back_state + + if device.allows_configuring: + self.main_window_replace( + GamepadSettingsWindow(device), back_state=back_state + ) + else: + self.main_window_replace( + _NotConfigurableWindow(device), back_state=back_state + ) + + +class _NotConfigurableWindow(bui.MainWindow): + + def __init__( + self, + device: bs.InputDevice, + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, + ) -> None: + width = 700 + height = 200 + button_width = 80 + uiscale = bui.app.ui_v1.uiscale + super().__init__( + root_widget=bui.containerwidget( + scale=( + 1.7 + if uiscale is bui.UIScale.SMALL + else (1.4 if uiscale is bui.UIScale.MEDIUM else 1.0) + ), + size=(width, height), + ), + transition=transition, + origin_widget=origin_widget, + ) + self.device = device + + if device.allows_configuring_in_system_settings: + msg = bui.Lstr( + resource='configureDeviceInSystemSettingsText', + subs=[('${DEVICE}', device.name)], + ) + elif device.is_controller_app: + msg = bui.Lstr( + resource='bsRemoteConfigureInAppText', + subs=[ + ( + '${REMOTE_APP_NAME}', + bui.get_remote_app_name(), + ) + ], + ) + else: + msg = bui.Lstr( + resource='cantConfigureDeviceText', + subs=[('${DEVICE}', device.name)], + ) + bui.textwidget( + parent=self._root_widget, + position=(0, height - 80), + size=(width, 25), + text=msg, + scale=0.8, + h_align='center', + v_align='top', + ) + + btn = bui.buttonwidget( + parent=self._root_widget, + position=((width - button_width) / 2, 20), + size=(button_width, 60), + label=bui.Lstr(resource='okText'), + on_activate_call=self.main_window_back, + ) + bui.containerwidget(edit=self._root_widget, cancel_button=btn) + + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + + # Pull stuff out of self here; if we do it in the lambda we'll + # keep self alive which we don't want. + device = self.device + + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + device=device, + transition=transition, + origin_widget=origin_widget, + ) ) diff --git a/dist/ba_data/python/bauiv1lib/settings/graphics.py b/dist/ba_data/python/bauiv1lib/settings/graphics.py index 650d3cd..189a8a7 100644 --- a/dist/ba_data/python/bauiv1lib/settings/graphics.py +++ b/dist/ba_data/python/bauiv1lib/settings/graphics.py @@ -4,7 +4,7 @@ from __future__ import annotations -from typing import TYPE_CHECKING, cast +from typing import TYPE_CHECKING, cast, override from bauiv1lib.popup import PopupMenu from bauiv1lib.config import ConfigCheckBox @@ -14,28 +14,18 @@ if TYPE_CHECKING: from typing import Any -class GraphicsSettingsWindow(bui.Window): +class GraphicsSettingsWindow(bui.MainWindow): """Window for graphics settings.""" def __init__( self, - transition: str = 'in_right', + transition: str | None = 'in_right', origin_widget: bui.Widget | None = None, ): # pylint: disable=too-many-locals # pylint: disable=too-many-branches # pylint: disable=too-many-statements - # if they provided an origin-widget, scale up from that - scale_origin: tuple[float, float] | None - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None - self._r = 'graphicsSettingsWindow' app = bui.app assert app.classic is not None @@ -43,8 +33,8 @@ class GraphicsSettingsWindow(bui.Window): spacing = 32 self._have_selected_child = False uiscale = app.ui_v1.uiscale - width = 450.0 - height = 302.0 + width = 1200 if uiscale is bui.UIScale.SMALL else 450.0 + height = 900 if uiscale is bui.UIScale.SMALL else 302.0 self._max_fps_dirty = False self._last_max_fps_set_time = bui.apptime() self._last_max_fps_str = '' @@ -61,7 +51,7 @@ class GraphicsSettingsWindow(bui.Window): show_max_fps = bui.supports_max_fps() if show_max_fps: - height += 50 + height += 60 show_resolution = True if app.env.vr: @@ -69,52 +59,80 @@ class GraphicsSettingsWindow(bui.Window): app.classic.platform == 'android' and app.classic.subplatform == 'cardboard' ) - assert bui.app.classic is not None - uiscale = bui.app.ui_v1.uiscale - base_scale = ( - 2.0 + + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 1.9 if uiscale is bui.UIScale.SMALL - else 1.5 if uiscale is bui.UIScale.MEDIUM else 1.0 + else 1.4 if uiscale is bui.UIScale.MEDIUM else 1.0 ) - popup_menu_scale = base_scale * 1.2 - v = height - 50 - v -= spacing * 1.15 + popup_menu_scale = scale * 1.2 + + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + # target_width = min(width - 80, screensize[0] / scale) + target_height = min(height - 80, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * height + 0.5 * target_height + 30.0 + super().__init__( root_widget=bui.containerwidget( size=(width, height), - transition=transition, - scale_origin_stack_offset=scale_origin, - scale=base_scale, - stack_offset=( - (0, -30) if uiscale is bui.UIScale.SMALL else (0, 0) + scale=scale, + toolbar_visibility=( + 'menu_minimal' + if uiscale is bui.UIScale.SMALL + else 'menu_full' ), + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, + ) + + # Center most of our content in the middle of the window. + v = height * 0.5 + (100 if show_max_fps else 85) + h_offs = width * 0.5 - 220 + + if uiscale is bui.UIScale.SMALL: + bui.containerwidget( + edit=self._root_widget, on_cancel_call=self.main_window_back + ) + back_button = None + else: + back_button = bui.buttonwidget( + parent=self._root_widget, + position=(35, yoffs - 50), + size=(60, 60), + scale=0.8, + text_scale=1.2, + autoselect=True, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + on_activate_call=self.main_window_back, + ) + bui.containerwidget( + edit=self._root_widget, cancel_button=back_button ) - ) - - back_button = bui.buttonwidget( - parent=self._root_widget, - position=(35, height - 50), - # size=(120, 60), - size=(60, 60), - scale=0.8, - text_scale=1.2, - autoselect=True, - label=bui.charstr(bui.SpecialChar.BACK), - button_type='backSmall', - on_activate_call=self._back, - ) - - bui.containerwidget(edit=self._root_widget, cancel_button=back_button) bui.textwidget( parent=self._root_widget, - position=(0, height - 44), - size=(width, 25), + position=( + width * 0.5, + yoffs - (53 if uiscale is bui.UIScale.SMALL else 25), + ), + size=(0, 0), text=bui.Lstr(resource=f'{self._r}.titleText'), color=bui.app.ui_v1.title_color, h_align='center', - v_align='top', + v_align='center', ) self._fullscreen_checkbox: bui.Widget | None = None @@ -135,7 +153,7 @@ class GraphicsSettingsWindow(bui.Window): ) self._fullscreen_checkbox = bui.checkboxwidget( parent=self._root_widget, - position=(100, v), + position=(h_offs + 100, v), value=bui.fullscreen_control_get(), on_value_change_call=bui.fullscreen_control_set, maxwidth=250, @@ -157,7 +175,7 @@ class GraphicsSettingsWindow(bui.Window): # Quality bui.textwidget( parent=self._root_widget, - position=(60, v), + position=(h_offs + 60, v), size=(160, 25), text=bui.Lstr(resource=f'{self._r}.visualsText'), color=bui.app.ui_v1.heading_color, @@ -168,7 +186,7 @@ class GraphicsSettingsWindow(bui.Window): ) PopupMenu( parent=self._root_widget, - position=(60, v - 50), + position=(h_offs + 60, v - 50), width=150, scale=popup_menu_scale, choices=['Auto', 'Higher', 'High', 'Medium', 'Low'], @@ -191,7 +209,7 @@ class GraphicsSettingsWindow(bui.Window): # Texture controls bui.textwidget( parent=self._root_widget, - position=(230, v), + position=(h_offs + 230, v), size=(160, 25), text=bui.Lstr(resource=f'{self._r}.texturesText'), color=bui.app.ui_v1.heading_color, @@ -202,7 +220,7 @@ class GraphicsSettingsWindow(bui.Window): ) textures_popup = PopupMenu( parent=self._root_widget, - position=(230, v - 50), + position=(h_offs + 230, v - 50), width=150, scale=popup_menu_scale, choices=['Auto', 'High', 'Medium', 'Low'], @@ -215,15 +233,12 @@ class GraphicsSettingsWindow(bui.Window): current_choice=bui.app.config.resolve('Texture Quality'), on_value_change_call=self._set_textures, ) - if bui.app.ui_v1.use_toolbars: - bui.widget( - edit=textures_popup.get_button(), - right_widget=bui.get_special_widget('party_button'), - ) + bui.widget( + edit=textures_popup.get_button(), + right_widget=bui.get_special_widget('squad_button'), + ) v -= 80 - h_offs = 0 - resolution_popup: PopupMenu | None = None if show_resolution: @@ -317,7 +332,7 @@ class GraphicsSettingsWindow(bui.Window): if show_vsync: bui.textwidget( parent=self._root_widget, - position=(230, v), + position=(h_offs + 230, v), size=(160, 25), text=bui.Lstr(resource=f'{self._r}.verticalSyncText'), color=bui.app.ui_v1.heading_color, @@ -328,7 +343,7 @@ class GraphicsSettingsWindow(bui.Window): ) vsync_popup = PopupMenu( parent=self._root_widget, - position=(230, v - 50), + position=(h_offs + 230, v - 50), width=150, scale=popup_menu_scale, choices=['Auto', 'Always', 'Never'], @@ -358,7 +373,7 @@ class GraphicsSettingsWindow(bui.Window): v -= 5 bui.textwidget( parent=self._root_widget, - position=(155, v + 10), + position=(h_offs + 155, v + 10), size=(0, 0), text=bui.Lstr(resource=f'{self._r}.maxFPSText'), color=bui.app.ui_v1.heading_color, @@ -372,7 +387,7 @@ class GraphicsSettingsWindow(bui.Window): self._last_max_fps_str = max_fps_str self._max_fps_text = bui.textwidget( parent=self._root_widget, - position=(170, v - 5), + position=(h_offs + 170, v - 5), size=(105, 30), text=max_fps_str, max_chars=5, @@ -395,7 +410,7 @@ class GraphicsSettingsWindow(bui.Window): fpsc = ConfigCheckBox( parent=self._root_widget, - position=(69, v - 6), + position=(h_offs + 69, v - 6), size=(210, 30), scale=0.86, configkey='Show FPS', @@ -415,7 +430,7 @@ class GraphicsSettingsWindow(bui.Window): if show_tv_mode: tvc = ConfigCheckBox( parent=self._root_widget, - position=(240, v - 6), + position=(h_offs + 240, v - 6), size=(210, 30), scale=0.86, configkey='TV Border', @@ -433,28 +448,20 @@ class GraphicsSettingsWindow(bui.Window): 0.25, bui.WeakCall(self._update_controls), repeat=True ) - def _back(self) -> None: - from bauiv1lib.settings import allsettings + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - # Applying max-fps takes a few moments. Apply if it hasn't been - # yet. + @override + def on_main_window_close(self) -> None: self._apply_max_fps() - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - allsettings.AllSettingsWindow( - transition='in_left' - ).get_root_widget(), - from_window=self._root_widget, - ) - def _set_quality(self, quality: str) -> None: cfg = bui.app.config cfg['Graphics Quality'] = quality diff --git a/dist/ba_data/python/bauiv1lib/settings/keyboard.py b/dist/ba_data/python/bauiv1lib/settings/keyboard.py index 9bda0fb..0225a6f 100644 --- a/dist/ba_data/python/bauiv1lib/settings/keyboard.py +++ b/dist/ba_data/python/bauiv1lib/settings/keyboard.py @@ -4,7 +4,7 @@ from __future__ import annotations -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, override from bauiv1lib.popup import PopupMenuWindow import bauiv1 as bui @@ -12,13 +12,19 @@ import bascenev1 as bs if TYPE_CHECKING: from typing import Any + from bauiv1lib.popup import PopupWindow -class ConfigKeyboardWindow(bui.Window): +class ConfigKeyboardWindow(bui.MainWindow): """Window for configuring keyboards.""" - def __init__(self, c: bs.InputDevice, transition: str = 'in_right'): + def __init__( + self, + c: bs.InputDevice, + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, + ): self._r = 'configKeyboardWindow' self._input = c self._name = self._input.name @@ -39,13 +45,15 @@ class ConfigKeyboardWindow(bui.Window): root_widget=bui.containerwidget( size=(self._width, self._height), scale=( - 1.6 + 1.4 if uiscale is bui.UIScale.SMALL else 1.3 if uiscale is bui.UIScale.MEDIUM else 1.0 ), stack_offset=(0, 5) if uiscale is bui.UIScale.SMALL else (0, 0), transition=transition, - ) + ), + transition=transition, + origin_widget=origin_widget, ) self._settings: dict[str, int] = {} @@ -53,6 +61,23 @@ class ConfigKeyboardWindow(bui.Window): self._rebuild_ui() + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + + # Pull things from self here; if we do it within the lambda + # we'll keep self alive which is bad. + inputdevice = self._input + + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, + origin_widget=origin_widget, + c=inputdevice, + ) + ) + def _get_config_mapping(self, default: bool = False) -> None: for button in [ 'buttonJump', @@ -87,7 +112,7 @@ class ConfigKeyboardWindow(bui.Window): size=(170, 60), label=bui.Lstr(resource='cancelText'), scale=0.9, - on_activate_call=self._cancel, + on_activate_call=self.main_window_back, ) save_button = bui.buttonwidget( parent=self._root_widget, @@ -246,6 +271,7 @@ class ConfigKeyboardWindow(bui.Window): button: str, scale: float = 1.0, ) -> None: + # pylint: disable=too-many-positional-arguments base_size = 79 btn = bui.buttonwidget( parent=self._root_widget, @@ -287,20 +313,6 @@ class ConfigKeyboardWindow(bui.Window): bui.pushcall(doit) - def _cancel(self) -> None: - from bauiv1lib.settings.controls import ControlsSettingsWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - bui.containerwidget(edit=self._root_widget, transition='out_right') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - ControlsSettingsWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) - def _reset(self) -> None: from bauiv1lib.confirm import ConfirmWindow @@ -366,17 +378,16 @@ class ConfigKeyboardWindow(bui.Window): """Called when the popup is closing.""" def _save(self) -> None: - from bauiv1lib.settings.controls import ControlsSettingsWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return assert bui.app.classic is not None - bui.containerwidget(edit=self._root_widget, transition='out_right') bui.getsound('gunCocking').play() - # There's a chance the device disappeared; handle that gracefully. + # There's a chance the device disappeared; handle that + # gracefully. if not self._input: return @@ -391,8 +402,8 @@ class ConfigKeyboardWindow(bui.Window): if val != -1: dst2[key] = val - # Send this config to the master-server so we can generate - # more defaults in the future. + # Send this config to the master-server so we can generate more + # defaults in the future. if bui.app.classic is not None: bui.app.classic.master_server_v1_post( 'controllerConfig', @@ -405,10 +416,8 @@ class ConfigKeyboardWindow(bui.Window): }, ) bui.app.config.apply_and_commit() - bui.app.ui_v1.set_main_menu_window( - ControlsSettingsWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) + + self.main_window_back() class AwaitKeyboardInputWindow(bui.Window): diff --git a/dist/ba_data/python/bauiv1lib/settings/nettesting.py b/dist/ba_data/python/bauiv1lib/settings/nettesting.py index 2e7f7e8..4d36f5e 100644 --- a/dist/ba_data/python/bauiv1lib/settings/nettesting.py +++ b/dist/ba_data/python/bauiv1lib/settings/nettesting.py @@ -8,7 +8,7 @@ import time import copy import weakref from threading import Thread -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, override from efro.error import CleanError from bauiv1lib.settings.testing import TestingWindow @@ -22,40 +22,94 @@ if TYPE_CHECKING: MAX_TEST_SECONDS = 60 * 2 -class NetTestingWindow(bui.Window): +class NetTestingWindow(bui.MainWindow): """Window that runs a networking test suite to help diagnose issues.""" - def __init__(self, transition: str = 'in_right'): - self._width = 820 - self._height = 500 + def __init__( + self, + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, + ): + uiscale = bui.app.ui_v1.uiscale + self._width = 1200 if uiscale is bui.UIScale.SMALL else 820 + self._height = ( + 800 + if uiscale is bui.UIScale.SMALL + else 550 if uiscale is bui.UIScale.MEDIUM else 650 + ) + self._printed_lines: list[str] = [] assert bui.app.classic is not None - uiscale = bui.app.ui_v1.uiscale + + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 1.75 + if uiscale is bui.UIScale.SMALL + else 1.0 if uiscale is bui.UIScale.MEDIUM else 0.75 + ) + + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_width = min(self._width - 90, screensize[0] / scale) + target_height = min(self._height - 90, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * self._height + 0.5 * target_height + 30.0 + + scroll_width = target_width + scroll_height = target_height - 52 + scroll_bottom = yoffs - 82 - scroll_height + super().__init__( root_widget=bui.containerwidget( size=(self._width, self._height), - scale=( - 1.56 + scale=scale, + toolbar_visibility=( + 'menu_minimal' if uiscale is bui.UIScale.SMALL - else 1.2 if uiscale is bui.UIScale.MEDIUM else 0.8 + else 'menu_full' ), - stack_offset=(0.0, -7 if uiscale is bui.UIScale.SMALL else 0.0), - transition=transition, + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, + ) + self._back_button: bui.Widget | None + if uiscale is bui.UIScale.SMALL: + bui.containerwidget( + edit=self._root_widget, on_cancel_call=self.main_window_back + ) + self._back_button = None + else: + self._back_button = bui.buttonwidget( + parent=self._root_widget, + position=(46, yoffs - 77), + size=(60, 60), + scale=0.9, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + autoselect=True, + on_activate_call=self.main_window_back, + ) + bui.containerwidget( + edit=self._root_widget, cancel_button=self._back_button ) - ) - self._done_button = bui.buttonwidget( - parent=self._root_widget, - position=(40, self._height - 77), - size=(120, 60), - scale=0.8, - autoselect=True, - label=bui.Lstr(resource='doneText'), - on_activate_call=self._done, - ) + # Avoid squads button on small mode. + # xinset = -50 if uiscale is bui.UIScale.SMALL else 0 + + xextra = -80 if uiscale is bui.UIScale.SMALL else 0 self._copy_button = bui.buttonwidget( parent=self._root_widget, - position=(self._width - 200, self._height - 77), + position=( + self._width * 0.5 + scroll_width * 0.5 - 210 + 80 + xextra, + yoffs - 79, + ), size=(100, 60), scale=0.8, autoselect=True, @@ -65,7 +119,10 @@ class NetTestingWindow(bui.Window): self._settings_button = bui.buttonwidget( parent=self._root_widget, - position=(self._width - 100, self._height - 77), + position=( + self._width * 0.5 + scroll_width * 0.5 - 110 + 80 + xextra, + yoffs - 77, + ), size=(60, 60), scale=0.8, autoselect=True, @@ -73,31 +130,27 @@ class NetTestingWindow(bui.Window): on_activate_call=self._show_val_testing, ) - twidth = self._width - 450 bui.textwidget( parent=self._root_widget, - position=(self._width * 0.5, self._height - 55), + position=(self._width * 0.5, yoffs - 55), size=(0, 0), text=bui.Lstr(resource='settingsWindowAdvanced.netTestingText'), color=(0.8, 0.8, 0.8, 1.0), h_align='center', v_align='center', - maxwidth=twidth, + maxwidth=250, ) self._scroll = bui.scrollwidget( parent=self._root_widget, - position=(50, 50), - size=(self._width - 100, self._height - 140), + size=(scroll_width, scroll_height), + position=(self._width * 0.5 - scroll_width * 0.5, scroll_bottom), capture_arrows=True, autoselect=True, + border_opacity=0.4, ) self._rows = bui.columnwidget(parent=self._scroll) - bui.containerwidget( - edit=self._root_widget, cancel_button=self._done_button - ) - # Now kick off the tests. # Pass a weak-ref to this window so we don't keep it alive # if we back out before it completes. Also set is as daemon @@ -107,6 +160,16 @@ class NetTestingWindow(bui.Window): target=bui.Call(_run_diagnostics, weakref.ref(self)), ).start() + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) + def print(self, text: str, color: tuple[float, float, float]) -> None: """Print text to our console thingie.""" for line in text.splitlines(): @@ -134,30 +197,11 @@ class NetTestingWindow(bui.Window): def _show_val_testing(self) -> None: assert bui.app.classic is not None - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - bui.app.ui_v1.set_main_menu_window( - NetValTestingWindow().get_root_widget(), - from_window=self._root_widget, - ) - bui.containerwidget(edit=self._root_widget, transition='out_left') - - def _done(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.settings.advanced import AdvancedSettingsWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - AdvancedSettingsWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) - bui.containerwidget(edit=self._root_widget, transition='out_right') + self.main_window_replace(get_net_val_testing_window()) def _run_diagnostics(weakwin: weakref.ref[NetTestingWindow]) -> None: @@ -449,27 +493,48 @@ def _test_nearby_zone_ping(nearest_zone: tuple[str, float] | None) -> None: raise RuntimeError('Ping too high.') -class NetValTestingWindow(TestingWindow): - """Window to test network related settings.""" +def get_net_val_testing_window() -> TestingWindow: + """Create a window for testing net values.""" + entries = [ + {'name': 'bufferTime', 'label': 'Buffer Time', 'increment': 1.0}, + { + 'name': 'delaySampling', + 'label': 'Delay Sampling', + 'increment': 1.0, + }, + { + 'name': 'dynamicsSyncTime', + 'label': 'Dynamics Sync Time', + 'increment': 10, + }, + {'name': 'showNetInfo', 'label': 'Show Net Info', 'increment': 1}, + ] + return TestingWindow( + title=bui.Lstr(resource='settingsWindowAdvanced.netTestingText'), + entries=entries, + ) - def __init__(self, transition: str = 'in_right'): - entries = [ - {'name': 'bufferTime', 'label': 'Buffer Time', 'increment': 1.0}, - { - 'name': 'delaySampling', - 'label': 'Delay Sampling', - 'increment': 1.0, - }, - { - 'name': 'dynamicsSyncTime', - 'label': 'Dynamics Sync Time', - 'increment': 10, - }, - {'name': 'showNetInfo', 'label': 'Show Net Info', 'increment': 1}, - ] - super().__init__( - title=bui.Lstr(resource='settingsWindowAdvanced.netTestingText'), - entries=entries, - transition=transition, - back_call=lambda: NetTestingWindow(transition='in_left'), - ) + +# class NetValTestingWindow(TestingWindow): +# """Window to test network related settings.""" + +# def __init__(self, transition: str = 'in_right'): +# entries = [ +# {'name': 'bufferTime', 'label': 'Buffer Time', 'increment': 1.0}, +# { +# 'name': 'delaySampling', +# 'label': 'Delay Sampling', +# 'increment': 1.0, +# }, +# { +# 'name': 'dynamicsSyncTime', +# 'label': 'Dynamics Sync Time', +# 'increment': 10, +# }, +# {'name': 'showNetInfo', 'label': 'Show Net Info', 'increment': 1}, +# ] +# super().__init__( +# title=bui.Lstr(resource='settingsWindowAdvanced.netTestingText'), +# entries=entries, +# transition=transition, +# ) diff --git a/dist/ba_data/python/bauiv1lib/settings/plugins.py b/dist/ba_data/python/bauiv1lib/settings/plugins.py index b33216b..283e371 100644 --- a/dist/ba_data/python/bauiv1lib/settings/plugins.py +++ b/dist/ba_data/python/bauiv1lib/settings/plugins.py @@ -4,9 +4,9 @@ from __future__ import annotations -from enum import Enum import logging -from typing import TYPE_CHECKING, assert_never +from enum import Enum +from typing import TYPE_CHECKING, assert_never, override import bauiv1 as bui from bauiv1lib import popup @@ -28,77 +28,85 @@ class Category(Enum): return f'{self.value}Text' -class PluginWindow(bui.Window): +class PluginWindow(bui.MainWindow): """Window for configuring plugins.""" def __init__( self, - transition: str = 'in_right', + transition: str | None = 'in_right', origin_widget: bui.Widget | None = None, ): - # pylint: disable=too-many-statements + # pylint: disable=too-many-locals app = bui.app self._category = Category.ALL - # If they provided an origin-widget, scale up from that. - scale_origin: tuple[float, float] | None - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None - assert bui.app.classic is not None uiscale = bui.app.ui_v1.uiscale - self._width = 870.0 if uiscale is bui.UIScale.SMALL else 670.0 - x_inset = 100 if uiscale is bui.UIScale.SMALL else 0 + self._width = 1200.0 if uiscale is bui.UIScale.SMALL else 670.0 self._height = ( - 390.0 + 900.0 if uiscale is bui.UIScale.SMALL else 450.0 if uiscale is bui.UIScale.MEDIUM else 520.0 ) - top_extra = 10 if uiscale is bui.UIScale.SMALL else 0 + + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 1.9 + if uiscale is bui.UIScale.SMALL + else 1.4 if uiscale is bui.UIScale.MEDIUM else 1.0 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_width = min(self._width - 80, screensize[0] / scale) + target_height = min(self._height - 80, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * self._height + 0.5 * target_height + 20.0 + + self._scroll_width = target_width + self._scroll_height = target_height - 40 + self._scroll_bottom = yoffs - 64 - self._scroll_height + super().__init__( root_widget=bui.containerwidget( - size=(self._width, self._height + top_extra), - transition=transition, - toolbar_visibility='menu_minimal', - scale_origin_stack_offset=scale_origin, - scale=( - 2.06 + size=(self._width, self._height), + toolbar_visibility=( + 'menu_minimal' if uiscale is bui.UIScale.SMALL - else 1.4 if uiscale is bui.UIScale.MEDIUM else 1.0 + else 'menu_full' ), - stack_offset=( - (0, -25) if uiscale is bui.UIScale.SMALL else (0, 0) - ), - ) + scale=scale, + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) - self._scroll_width = self._width - (100 + 2 * x_inset) - self._scroll_height = self._height - 115.0 self._sub_width = self._scroll_width * 0.95 self._sub_height = 724.0 assert app.classic is not None - if app.ui_v1.use_toolbars and uiscale is bui.UIScale.SMALL: + if uiscale is bui.UIScale.SMALL: bui.containerwidget( - edit=self._root_widget, on_cancel_call=self._do_back + edit=self._root_widget, on_cancel_call=self.main_window_back ) self._back_button = None else: self._back_button = bui.buttonwidget( parent=self._root_widget, - position=(53 + x_inset, self._height - 60), - size=(140, 60), + position=(53, yoffs - 49), + size=(60, 60), scale=0.8, autoselect=True, - label=bui.Lstr(resource='backText'), - button_type='back', - on_activate_call=self._do_back, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + on_activate_call=self.main_window_back, ) bui.containerwidget( edit=self._root_widget, cancel_button=self._back_button @@ -106,7 +114,10 @@ class PluginWindow(bui.Window): self._title_text = bui.textwidget( parent=self._root_widget, - position=(self._width * 0.5, self._height - 41), + position=( + self._width * 0.5, + yoffs - (42 if uiscale is bui.UIScale.SMALL else 30), + ), size=(0, 0), text=bui.Lstr(resource='pluginsText'), color=app.ui_v1.title_color, @@ -115,19 +126,16 @@ class PluginWindow(bui.Window): v_align='center', ) - if self._back_button is not None: - bui.buttonwidget( - edit=self._back_button, - button_type='backSmall', - size=(60, 60), - label=bui.charstr(bui.SpecialChar.BACK), - ) - - settings_button_x = 670 if uiscale is bui.UIScale.SMALL else 570 + settings_button_x = ( + self._width * 0.5 + + self._scroll_width * 0.5 + - (100 if uiscale is bui.UIScale.SMALL else 40) + ) + button_row_yoffs = yoffs + (-2 if uiscale is bui.UIScale.SMALL else 10) self._num_plugins_text = bui.textwidget( parent=self._root_widget, - position=(settings_button_x - 130, self._height - 41), + position=(settings_button_x - 130, button_row_yoffs - 41), size=(0, 0), text='', h_align='center', @@ -137,7 +145,7 @@ class PluginWindow(bui.Window): self._category_button = bui.buttonwidget( parent=self._root_widget, scale=0.7, - position=(settings_button_x - 105, self._height - 60), + position=(settings_button_x - 105, button_row_yoffs - 60), size=(130, 60), label=bui.Lstr(resource='allText'), autoselect=True, @@ -148,7 +156,7 @@ class PluginWindow(bui.Window): self._settings_button = bui.buttonwidget( parent=self._root_widget, - position=(settings_button_x, self._height - 58), + position=(settings_button_x, button_row_yoffs - 58), size=(40, 40), label='', on_activate_call=self._open_settings, @@ -156,7 +164,7 @@ class PluginWindow(bui.Window): bui.imagewidget( parent=self._root_widget, - position=(settings_button_x + 3, self._height - 57), + position=(settings_button_x + 3, button_row_yoffs - 57), draw_controller=self._settings_button, size=(35, 35), texture=bui.gettexture('settingsIcon'), @@ -170,12 +178,16 @@ class PluginWindow(bui.Window): self._scrollwidget = bui.scrollwidget( parent=self._root_widget, - position=(50 + x_inset, 50), + size=(self._scroll_width, self._scroll_height), + position=( + self._width * 0.5 - self._scroll_width * 0.5, + self._scroll_bottom, + ), simple_culling_v=20.0, highlight=False, - size=(self._scroll_width, self._scroll_height), selection_loops_to_parent=True, claims_left_right=True, + border_opacity=0.4, ) bui.widget(edit=self._scrollwidget, right_widget=self._scrollwidget) @@ -213,6 +225,20 @@ class PluginWindow(bui.Window): ) self._restore_state() + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) + + @override + def on_main_window_close(self) -> None: + self._save_state() + def _check_value_changed(self, plug: bui.PluginSpec, value: bool) -> None: bui.screenmessage( bui.Lstr(resource='settingsWindowAdvanced.mustRestartText'), @@ -228,17 +254,11 @@ class PluginWindow(bui.Window): # pylint: disable=cyclic-import from bauiv1lib.settings.pluginsettings import PluginSettingsWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we don't have control. + if not self.main_window_has_control(): return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - PluginSettingsWindow(transition='in_right').get_root_widget(), - from_window=self._root_widget, - ) + self.main_window_replace(PluginSettingsWindow(transition='in_right')) def _show_category_options(self) -> None: uiscale = bui.app.ui_v1.uiscale @@ -451,21 +471,3 @@ class PluginWindow(bui.Window): bui.containerwidget(edit=self._root_widget, selected_child=sel) except Exception: logging.exception('Error restoring state for %s.', self) - - def _do_back(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.settings.advanced import AdvancedSettingsWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - self._save_state() - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - AdvancedSettingsWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) diff --git a/dist/ba_data/python/bauiv1lib/settings/pluginsettings.py b/dist/ba_data/python/bauiv1lib/settings/pluginsettings.py index d59554f..9d3344c 100644 --- a/dist/ba_data/python/bauiv1lib/settings/pluginsettings.py +++ b/dist/ba_data/python/bauiv1lib/settings/pluginsettings.py @@ -4,73 +4,101 @@ from __future__ import annotations +from typing import override + import bauiv1 as bui from bauiv1lib.confirm import ConfirmWindow -class PluginSettingsWindow(bui.Window): +class PluginSettingsWindow(bui.MainWindow): """Plugin Settings Window""" - def __init__(self, transition: str = 'in_right'): - scale_origin: tuple[float, float] | None - self._transition_out = 'out_right' - scale_origin = None + def __init__( + self, + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, + ): assert bui.app.classic is not None uiscale = bui.app.ui_v1.uiscale - width = 470.0 if uiscale is bui.UIScale.SMALL else 470.0 - height = ( - 365.0 + self._width = 1200.0 if uiscale is bui.UIScale.SMALL else 470.0 + self._height = 900.0 if uiscale is bui.UIScale.SMALL else 360.0 + + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 2.06 if uiscale is bui.UIScale.SMALL - else 300.0 if uiscale is bui.UIScale.MEDIUM else 370.0 + else 1.4 if uiscale is bui.UIScale.MEDIUM else 1.0 ) - top_extra = 10 if uiscale is bui.UIScale.SMALL else 0 + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + # target_width = min(self._width - 60, screensize[0] / scale) + target_height = min(self._height - 100, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + self._yoffs = 0.5 * self._height + 0.5 * target_height + 30.0 super().__init__( root_widget=bui.containerwidget( - size=(width, height + top_extra), - transition=transition, - toolbar_visibility='menu_minimal', - scale_origin_stack_offset=scale_origin, - scale=( - 2.06 + size=(self._width, self._height), + toolbar_visibility=( + 'menu_minimal' if uiscale is bui.UIScale.SMALL - else 1.4 if uiscale is bui.UIScale.MEDIUM else 1.0 + else 'menu_full' ), - stack_offset=( - (0, -25) if uiscale is bui.UIScale.SMALL else (0, 0) - ), - ) + scale=scale, + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) - self._back_button = bui.buttonwidget( - parent=self._root_widget, - position=(53, height - 60), - size=(60, 60), - scale=0.8, - autoselect=True, - label=bui.charstr(bui.SpecialChar.BACK), - button_type='backSmall', - on_activate_call=self._do_back, - ) - bui.containerwidget( - edit=self._root_widget, cancel_button=self._back_button - ) + if uiscale is bui.UIScale.SMALL: + self._back_button = bui.get_special_widget('back_button') + bui.containerwidget( + edit=self._root_widget, on_cancel_call=self.main_window_back + ) + else: + self._back_button = bui.buttonwidget( + parent=self._root_widget, + position=(55, self._yoffs - 33), + size=(60, 60), + scale=0.8, + autoselect=True, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + on_activate_call=self.main_window_back, + ) + bui.containerwidget( + edit=self._root_widget, cancel_button=self._back_button + ) self._title_text = bui.textwidget( parent=self._root_widget, - position=(0, height - 52), - size=(width, 25), + position=( + self._width * 0.5, + self._yoffs - (55 if uiscale is bui.UIScale.SMALL else 10), + ), + size=(0, 0), text=bui.Lstr(resource='pluginSettingsText'), + maxwidth=230, color=bui.app.ui_v1.title_color, h_align='center', - v_align='top', + v_align='center', ) - self._y_position = 170 if uiscale is bui.UIScale.MEDIUM else 205 + # Roughly center our few bits of content. + x = self._width * 0.5 - 175 + y = self._height * 0.5 + 30 + self._enable_plugins_button = bui.buttonwidget( parent=self._root_widget, - position=(65, self._y_position), + position=(x, y), size=(350, 60), autoselect=True, label=bui.Lstr(resource='pluginsEnableAllText'), @@ -80,10 +108,10 @@ class PluginSettingsWindow(bui.Window): ), ) - self._y_position -= 70 + y -= 70 self._disable_plugins_button = bui.buttonwidget( parent=self._root_widget, - position=(65, self._y_position), + position=(x, y), size=(350, 60), autoselect=True, label=bui.Lstr(resource='pluginsDisableAllText'), @@ -93,10 +121,10 @@ class PluginSettingsWindow(bui.Window): ), ) - self._y_position -= 70 + y -= 70 self._enable_new_plugins_check_box = bui.checkboxwidget( parent=self._root_widget, - position=(65, self._y_position), + position=(x, y), size=(350, 60), value=bui.app.config.get( bui.app.plugins.AUTO_ENABLE_NEW_PLUGINS_CONFIG_KEY, @@ -108,9 +136,10 @@ class PluginSettingsWindow(bui.Window): on_value_change_call=self._update_value, ) - bui.widget( - edit=self._back_button, down_widget=self._enable_plugins_button - ) + if uiscale is not bui.UIScale.SMALL: + bui.widget( + edit=self._back_button, down_widget=self._enable_plugins_button + ) bui.widget( edit=self._disable_plugins_button, @@ -124,6 +153,16 @@ class PluginSettingsWindow(bui.Window): down_widget=self._enable_new_plugins_check_box, ) + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) + def _enable_all_plugins(self) -> None: cfg = bui.app.config plugs: dict[str, dict] = cfg.setdefault('Plugins', {}) @@ -152,20 +191,3 @@ class PluginSettingsWindow(bui.Window): cfg = bui.app.config cfg[bui.app.plugins.AUTO_ENABLE_NEW_PLUGINS_CONFIG_KEY] = val cfg.apply_and_commit() - - def _do_back(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.settings.plugins import PluginWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - PluginWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) diff --git a/dist/ba_data/python/bauiv1lib/settings/remoteapp.py b/dist/ba_data/python/bauiv1lib/settings/remoteapp.py index f6a8216..0c124d7 100644 --- a/dist/ba_data/python/bauiv1lib/settings/remoteapp.py +++ b/dist/ba_data/python/bauiv1lib/settings/remoteapp.py @@ -4,49 +4,86 @@ from __future__ import annotations +from typing import override + import bauiv1 as bui -class RemoteAppSettingsWindow(bui.Window): +class RemoteAppSettingsWindow(bui.MainWindow): """Window showing info/settings related to the remote app.""" - def __init__(self) -> None: + def __init__( + self, + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, + ) -> None: self._r = 'connectMobileDevicesWindow' - width = 700 - height = 390 + app = bui.app + uiscale = app.ui_v1.uiscale + width = 1200 if uiscale is bui.UIScale.SMALL else 700 + height = 800 if uiscale is bui.UIScale.SMALL else 390 + # yoffs = -48 if uiscale is bui.UIScale.SMALL else 0 spacing = 40 assert bui.app.classic is not None - uiscale = bui.app.ui_v1.uiscale + + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 1.75 + if uiscale is bui.UIScale.SMALL + else 1.3 if uiscale is bui.UIScale.MEDIUM else 1.0 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + # target_width = min(width - 60, screensize[0] / scale) + target_height = min(height - 70, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * height + 0.5 * target_height + 30.0 + super().__init__( root_widget=bui.containerwidget( size=(width, height), - transition='in_right', - scale=( - 1.85 + toolbar_visibility=( + 'menu_minimal' if uiscale is bui.UIScale.SMALL - else 1.3 if uiscale is bui.UIScale.MEDIUM else 1.0 - ), - stack_offset=( - (-10, 0) if uiscale is bui.UIScale.SMALL else (0, 0) + else 'menu_full' ), + scale=scale, + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, + ) + if uiscale is bui.UIScale.SMALL: + bui.containerwidget( + edit=self.get_root_widget(), + on_cancel_call=self.main_window_back, ) - ) - btn = bui.buttonwidget( - parent=self._root_widget, - position=(40, height - 67), - size=(140, 65), - scale=0.8, - label=bui.Lstr(resource='backText'), - button_type='back', - text_scale=1.1, - autoselect=True, - on_activate_call=self._back, - ) - bui.containerwidget(edit=self._root_widget, cancel_button=btn) + else: + btn = bui.buttonwidget( + parent=self._root_widget, + position=(40, yoffs - 67), + size=(60, 60), + scale=0.8, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + text_scale=1.1, + autoselect=True, + on_activate_call=self.main_window_back, + ) + bui.containerwidget(edit=self._root_widget, cancel_button=btn) bui.textwidget( parent=self._root_widget, - position=(width * 0.5, height - 42), + position=( + width * 0.5, + yoffs - (62 if uiscale is bui.UIScale.SMALL else 42), + ), size=(0, 0), text=bui.Lstr(resource=f'{self._r}.titleText'), maxwidth=370, @@ -56,14 +93,8 @@ class RemoteAppSettingsWindow(bui.Window): v_align='center', ) - bui.buttonwidget( - edit=btn, - button_type='backSmall', - size=(60, 60), - label=bui.charstr(bui.SpecialChar.BACK), - ) - - v = height - 70.0 + # Generally center the rest of our contents vertically. + v = height * 0.5 + 140.0 v -= spacing * 1.2 bui.textwidget( parent=self._root_widget, @@ -108,7 +139,7 @@ class RemoteAppSettingsWindow(bui.Window): scale=0.65, text=bui.Lstr(resource=f'{self._r}.bestResultsText'), maxwidth=width * 0.95, - max_height=height * 0.19, + max_height=100, h_align='center', v_align='center', ) @@ -125,23 +156,17 @@ class RemoteAppSettingsWindow(bui.Window): on_value_change_call=self._on_check_changed, ) + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) + def _on_check_changed(self, value: bool) -> None: cfg = bui.app.config cfg['Enable Remote App'] = not value cfg.apply_and_commit() - - def _back(self) -> None: - from bauiv1lib.settings import controls - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - bui.containerwidget(edit=self._root_widget, transition='out_right') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - controls.ControlsSettingsWindow( - transition='in_left' - ).get_root_widget(), - from_window=self._root_widget, - ) diff --git a/dist/ba_data/python/bauiv1lib/settings/testing.py b/dist/ba_data/python/bauiv1lib/settings/testing.py index 5af029b..712ce93 100644 --- a/dist/ba_data/python/bauiv1lib/settings/testing.py +++ b/dist/ba_data/python/bauiv1lib/settings/testing.py @@ -5,7 +5,7 @@ from __future__ import annotations import copy -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, override import bauiv1 as bui @@ -13,83 +13,120 @@ if TYPE_CHECKING: from typing import Any, Callable -class TestingWindow(bui.Window): +class TestingWindow(bui.MainWindow): """Window for conveniently testing various settings.""" def __init__( self, title: bui.Lstr, entries: list[dict[str, Any]], - transition: str = 'in_right', - back_call: Callable[[], bui.Window] | None = None, + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, ): + # pylint: disable=too-many-locals assert bui.app.classic is not None uiscale = bui.app.ui_v1.uiscale - self._width = 600 - self._height = 324 if uiscale is bui.UIScale.SMALL else 400 + self._width = 1200 if uiscale is bui.UIScale.SMALL else 600 + self._height = 800 if uiscale is bui.UIScale.SMALL else 400 + self._entries_orig = copy.deepcopy(entries) self._entries = copy.deepcopy(entries) - self._back_call = back_call + + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 2.27 + if uiscale is bui.UIScale.SMALL + else 1.2 if uiscale is bui.UIScale.MEDIUM else 1.0 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_width = min(self._width - 60, screensize[0] / scale) + target_height = min(self._height - 70, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * self._height + 0.5 * target_height + 30.0 + + self._scroll_width = target_width + self._scroll_height = target_height - 47 + self._scroll_bottom = yoffs - 78 - self._scroll_height + super().__init__( root_widget=bui.containerwidget( size=(self._width, self._height), - transition=transition, - scale=( - 2.5 + scale=scale, + toolbar_visibility=( + 'menu_minimal' if uiscale is bui.UIScale.SMALL - else 1.2 if uiscale is bui.UIScale.MEDIUM else 1.0 - ), - stack_offset=( - (0, -28) if uiscale is bui.UIScale.SMALL else (0, 0) + else 'menu_full' ), + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, + ) + + if uiscale is bui.UIScale.SMALL: + self._back_button = bui.get_special_widget('back_button') + bui.containerwidget( + edit=self._root_widget, on_cancel_call=self.main_window_back ) - ) - self._back_button = btn = bui.buttonwidget( - parent=self._root_widget, - autoselect=True, - position=(65, self._height - 59), - size=(130, 60), - scale=0.8, - text_scale=1.2, - label=bui.Lstr(resource='backText'), - button_type='back', - on_activate_call=self._do_back, - ) + else: + self._back_button = btn = bui.buttonwidget( + parent=self._root_widget, + autoselect=True, + position=(35, yoffs - 59), + size=(60, 60), + scale=0.8, + text_scale=1.2, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + on_activate_call=self.main_window_back, + ) + bui.containerwidget(edit=self._root_widget, cancel_button=btn) + + self.title = title bui.textwidget( parent=self._root_widget, - position=(self._width * 0.5, self._height - 35), + position=( + self._width * 0.5, + yoffs - (43 if uiscale is bui.UIScale.SMALL else 35), + ), size=(0, 0), + scale=0.7 if uiscale is bui.UIScale.SMALL else 1.0, color=bui.app.ui_v1.title_color, h_align='center', v_align='center', maxwidth=245, - text=title, - ) - - bui.buttonwidget( - edit=self._back_button, - button_type='backSmall', - size=(60, 60), - label=bui.charstr(bui.SpecialChar.BACK), + text=self.title, ) bui.textwidget( parent=self._root_widget, - position=(self._width * 0.5, self._height - 75), + position=( + self._width * 0.5, + yoffs - 65, + ), size=(0, 0), + scale=0.5, color=bui.app.ui_v1.infotextcolor, h_align='center', v_align='center', - maxwidth=self._width * 0.75, + maxwidth=self._scroll_width * 0.75, text=bui.Lstr(resource='settingsWindowAdvanced.forTestingText'), ) - bui.containerwidget(edit=self._root_widget, cancel_button=btn) - self._scroll_width = self._width - 130 - self._scroll_height = self._height - 140 self._scrollwidget = bui.scrollwidget( parent=self._root_widget, size=(self._scroll_width, self._scroll_height), + position=( + self._width * 0.5 - self._scroll_width * 0.5, + self._scroll_bottom, + ), highlight=False, - position=((self._width - self._scroll_width) * 0.5, 40), + border_opacity=0.4, ) bui.containerwidget(edit=self._scrollwidget, claims_left_right=True) @@ -109,8 +146,8 @@ class TestingWindow(bui.Window): for i, entry in enumerate(self._entries): entry_name = entry['name'] - # If we haven't yet, record the default value for this name so - # we can reset if we want.. + # If we haven't yet, record the default value for this name + # so we can reset if we want.. if entry_name not in bui.app.classic.value_test_defaults: bui.app.classic.value_test_defaults[entry_name] = ( bui.app.classic.value_test(entry_name) @@ -138,7 +175,6 @@ class TestingWindow(bui.Window): ) if i == 0: bui.widget(edit=btn, up_widget=self._back_button) - # pylint: disable=consider-using-f-string entry['widget'] = bui.textwidget( parent=self._subcontainer, position=(h + 100, v), @@ -146,7 +182,7 @@ class TestingWindow(bui.Window): h_align='center', v_align='center', maxwidth=60, - text='%.4g' % bui.app.classic.value_test(entry_name), + text=f'{bui.app.classic.value_test(entry_name):.4g}', ) btn = bui.buttonwidget( parent=self._subcontainer, @@ -185,10 +221,9 @@ class TestingWindow(bui.Window): entry['name'], absolute=bui.app.classic.value_test_defaults[entry['name']], ) - # pylint: disable=consider-using-f-string bui.textwidget( edit=entry['widget'], - text='%.4g' % bui.app.classic.value_test(entry['name']), + text=f'{bui.app.classic.value_test(entry['name']):.4g}', ) def _on_minus_press(self, entry_name: str) -> None: @@ -211,21 +246,21 @@ class TestingWindow(bui.Window): text='%.4g' % bui.app.classic.value_test(entry['name']), ) - def _do_back(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.settings.advanced import AdvancedSettingsWindow + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return + # Pull values from self here; if we do it in the lambda we'll + # keep self alive which we don't want. + title = self.title + entries = self._entries_orig - bui.containerwidget(edit=self._root_widget, transition='out_right') - backwin = ( - self._back_call() - if self._back_call is not None - else AdvancedSettingsWindow(transition='in_left') - ) - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - backwin.get_root_widget(), from_window=self._root_widget + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + title=title, + entries=entries, + transition=transition, + origin_widget=origin_widget, + ) ) diff --git a/dist/ba_data/python/bauiv1lib/settings/touchscreen.py b/dist/ba_data/python/bauiv1lib/settings/touchscreen.py index 38aec5f..7dcfdf1 100644 --- a/dist/ba_data/python/bauiv1lib/settings/touchscreen.py +++ b/dist/ba_data/python/bauiv1lib/settings/touchscreen.py @@ -3,25 +3,25 @@ """UI settings functionality related to touchscreens.""" from __future__ import annotations +from typing import override + import bauiv1 as bui import bascenev1 as bs -class TouchscreenSettingsWindow(bui.Window): +class TouchscreenSettingsWindow(bui.MainWindow): """Settings window for touchscreens.""" def __del__(self) -> None: - # Note - this happens in 'back' too; - # we just do it here too in case the window is closed by other means. - - # FIXME: Could switch to a UI destroy callback now that those are a - # thing that exists. bs.set_touchscreen_editing(False) - def __init__(self) -> None: - self._width = 650 + def __init__( + self, + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, + ) -> None: + self._width = 780 self._height = 380 - self._spacing = 40 self._r = 'configTouchscreenWindow' bs.set_touchscreen_editing(True) @@ -31,29 +31,43 @@ class TouchscreenSettingsWindow(bui.Window): super().__init__( root_widget=bui.containerwidget( size=(self._width, self._height), - transition='in_right', scale=( 1.9 if uiscale is bui.UIScale.SMALL else 1.55 if uiscale is bui.UIScale.MEDIUM else 1.2 ), - ) + toolbar_visibility=( + 'menu_minimal' + if uiscale is bui.UIScale.SMALL + else 'menu_full' + ), + stack_offset=( + (0, -20) if uiscale is bui.UIScale.SMALL else (0, 0) + ), + ), + transition=transition, + origin_widget=origin_widget, ) - btn = bui.buttonwidget( - parent=self._root_widget, - position=(55, self._height - 60), - size=(120, 60), - label=bui.Lstr(resource='backText'), - button_type='back', - scale=0.8, - on_activate_call=self._back, - ) - bui.containerwidget(edit=self._root_widget, cancel_button=btn) + if uiscale is bui.UIScale.SMALL: + bui.containerwidget( + edit=self._root_widget, on_cancel_call=self.main_window_back + ) + else: + btn = bui.buttonwidget( + parent=self._root_widget, + position=(55, self._height - 60), + size=(60, 60), + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + scale=0.8, + on_activate_call=self.main_window_back, + ) + bui.containerwidget(edit=self._root_widget, cancel_button=btn) bui.textwidget( parent=self._root_widget, - position=(25, self._height - 50), + position=(25, self._height - 57), size=(self._width, 25), text=bui.Lstr(resource=f'{self._r}.titleText'), color=bui.app.ui_v1.title_color, @@ -62,13 +76,6 @@ class TouchscreenSettingsWindow(bui.Window): v_align='center', ) - bui.buttonwidget( - edit=btn, - button_type='backSmall', - size=(60, 60), - label=bui.charstr(bui.SpecialChar.BACK), - ) - self._scroll_width = self._width - 100 self._scroll_height = self._height - 110 self._sub_width = self._scroll_width - 20 @@ -82,7 +89,6 @@ class TouchscreenSettingsWindow(bui.Window): ), size=(self._scroll_width, self._scroll_height), claims_left_right=True, - claims_tab=True, selection_loops_to_parent=True, ) self._subcontainer = bui.containerwidget( @@ -90,12 +96,22 @@ class TouchscreenSettingsWindow(bui.Window): size=(self._sub_width, self._sub_height), background=False, claims_left_right=True, - claims_tab=True, selection_loops_to_parent=True, ) self._build_gui() + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) + def _build_gui(self) -> None: + # pylint: disable=too-many-locals from bauiv1lib.config import ConfigNumberEdit, ConfigCheckBox from bauiv1lib.radiogroup import make_radio_group @@ -104,13 +120,16 @@ class TouchscreenSettingsWindow(bui.Window): for child in children: child.delete() h = 30 + hoffs = 100 + hoffs2 = 70 + hoffs3 = 320 v = self._sub_height - 85 clr = (0.8, 0.8, 0.8, 1.0) clr2 = (0.8, 0.8, 0.8) bui.textwidget( parent=self._subcontainer, - position=(-10, v + 43), - size=(self._sub_width, 25), + position=(self._sub_width * 0.5, v + 63), + size=(0, 0), text=bui.Lstr(resource=f'{self._r}.swipeInfoText'), flatness=1.0, color=(0, 0.9, 0.1, 0.7), @@ -131,7 +150,7 @@ class TouchscreenSettingsWindow(bui.Window): ) cb1 = bui.checkboxwidget( parent=self._subcontainer, - position=(h + 220, v), + position=(h + hoffs + 220, v), size=(170, 30), text=bui.Lstr(resource=f'{self._r}.joystickText'), maxwidth=100, @@ -140,7 +159,7 @@ class TouchscreenSettingsWindow(bui.Window): ) cb2 = bui.checkboxwidget( parent=self._subcontainer, - position=(h + 357, v), + position=(h + hoffs + 357, v), size=(170, 30), text=bui.Lstr(resource=f'{self._r}.swipeText'), maxwidth=100, @@ -155,7 +174,7 @@ class TouchscreenSettingsWindow(bui.Window): ConfigNumberEdit( parent=self._subcontainer, position=(h, v), - xoffset=65, + xoffset=hoffs2 + 65, configkey='Touch Controls Scale Movement', displayname=bui.Lstr( resource=f'{self._r}.movementControlScaleText' @@ -178,7 +197,7 @@ class TouchscreenSettingsWindow(bui.Window): ) cb1 = bui.checkboxwidget( parent=self._subcontainer, - position=(h + 220, v), + position=(h + hoffs + 220, v), size=(170, 30), text=bui.Lstr(resource=f'{self._r}.buttonsText'), maxwidth=100, @@ -187,7 +206,7 @@ class TouchscreenSettingsWindow(bui.Window): ) cb2 = bui.checkboxwidget( parent=self._subcontainer, - position=(h + 357, v), + position=(h + hoffs + 357, v), size=(170, 30), text=bui.Lstr(resource=f'{self._r}.swipeText'), maxwidth=100, @@ -201,7 +220,7 @@ class TouchscreenSettingsWindow(bui.Window): ConfigNumberEdit( parent=self._subcontainer, position=(h, v), - xoffset=65, + xoffset=hoffs2 + 65, configkey='Touch Controls Scale Actions', displayname=bui.Lstr(resource=f'{self._r}.actionControlScaleText'), changesound=False, @@ -211,13 +230,23 @@ class TouchscreenSettingsWindow(bui.Window): ) v -= 50 + bui.textwidget( + parent=self._subcontainer, + position=(h, v - 2), + size=(0, 30), + text=bui.Lstr(resource=f'{self._r}.swipeControlsHiddenText'), + maxwidth=190, + color=clr, + v_align='center', + ) + ConfigCheckBox( parent=self._subcontainer, - position=(h, v), - size=(400, 30), + position=(h + hoffs3, v), + size=(100, 30), maxwidth=400, configkey='Touch Controls Swipe Hidden', - displayname=bui.Lstr(resource=f'{self._r}.swipeControlsHiddenText'), + displayname='', ) v -= 65 @@ -270,20 +299,3 @@ class TouchscreenSettingsWindow(bui.Window): del cfg[cfgkey] cfg.apply_and_commit() bui.apptimer(0, self._build_gui) - - def _back(self) -> None: - from bauiv1lib.settings import controls - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - bui.containerwidget(edit=self._root_widget, transition='out_right') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - controls.ControlsSettingsWindow( - transition='in_left' - ).get_root_widget(), - from_window=self._root_widget, - ) - bs.set_touchscreen_editing(False) diff --git a/dist/ba_data/python/bauiv1lib/soundtrack/browser.py b/dist/ba_data/python/bauiv1lib/soundtrack/browser.py index f16073b..fbfc17c 100644 --- a/dist/ba_data/python/bauiv1lib/soundtrack/browser.py +++ b/dist/ba_data/python/bauiv1lib/soundtrack/browser.py @@ -6,88 +6,86 @@ from __future__ import annotations import copy import logging -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, override import bauiv1 as bui if TYPE_CHECKING: from typing import Any +REQUIRE_PRO = False -class SoundtrackBrowserWindow(bui.Window): + +class SoundtrackBrowserWindow(bui.MainWindow): """Window for browsing soundtracks.""" def __init__( self, - transition: str = 'in_right', + transition: str | None = 'in_right', origin_widget: bui.Widget | None = None, ): - # pylint: disable=too-many-locals # pylint: disable=too-many-statements - - # If they provided an origin-widget, scale up from that. - scale_origin: tuple[float, float] | None - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None + # pylint: disable=too-many-locals self._r = 'editSoundtrackWindow' assert bui.app.classic is not None uiscale = bui.app.ui_v1.uiscale - self._width = 800 if uiscale is bui.UIScale.SMALL else 600 - x_inset = 100 if uiscale is bui.UIScale.SMALL else 0 - self._height = ( - 340 + self._width = 1200 if uiscale is bui.UIScale.SMALL else 650 + self._height = 800 if uiscale is bui.UIScale.SMALL else 400 + + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 2.1 if uiscale is bui.UIScale.SMALL - else 370 if uiscale is bui.UIScale.MEDIUM else 440 + else 1.5 if uiscale is bui.UIScale.MEDIUM else 1.0 ) - spacing = 40.0 - v = self._height - 40.0 - v -= spacing * 1.0 + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + # target_width = min(self._width - 60, screensize[0] / scale) + target_height = min(self._height - 70, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * self._height + 0.5 * target_height + 30.0 super().__init__( root_widget=bui.containerwidget( size=(self._width, self._height), - transition=transition, - toolbar_visibility='menu_minimal', - scale_origin_stack_offset=scale_origin, - scale=( - 2.3 + toolbar_visibility=( + 'menu_minimal' if uiscale is bui.UIScale.SMALL - else 1.6 if uiscale is bui.UIScale.MEDIUM else 1.0 + else 'menu_full' ), - stack_offset=( - (0, -18) if uiscale is bui.UIScale.SMALL else (0, 0) - ), - ) + scale=scale, + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) assert bui.app.classic is not None - if bui.app.ui_v1.use_toolbars and uiscale is bui.UIScale.SMALL: + if uiscale is bui.UIScale.SMALL: self._back_button = None else: self._back_button = bui.buttonwidget( parent=self._root_widget, - position=(45 + x_inset, self._height - 60), - size=(120, 60), - scale=0.8, - label=bui.Lstr(resource='backText'), - button_type='back', - autoselect=True, - ) - bui.buttonwidget( - edit=self._back_button, - button_type='backSmall', + position=(50, yoffs - 60), size=(60, 60), + scale=0.8, label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + autoselect=True, ) bui.textwidget( parent=self._root_widget, - position=(self._width * 0.5, self._height - 35), + position=( + self._width * 0.5, + yoffs - (55 if uiscale is bui.UIScale.SMALL else 35), + ), size=(0, 0), maxwidth=300, text=bui.Lstr(resource=f'{self._r}.titleText'), @@ -96,18 +94,17 @@ class SoundtrackBrowserWindow(bui.Window): v_align='center', ) + # Generally center all other content + x_inset = self._width * 0.5 - 320 + vbase = v = self._height * 0.5 + 130 + h = 43 + x_inset - v = self._height - 60 b_color = (0.6, 0.53, 0.63) b_textcolor = (0.75, 0.7, 0.8) lock_tex = bui.gettexture('lock') self._lock_images: list[bui.Widget] = [] - scl = ( - 1.0 - if uiscale is bui.UIScale.SMALL - else 1.13 if uiscale is bui.UIScale.MEDIUM else 1.4 - ) + scl = 1.2 v -= 60.0 * scl self._new_button = btn = bui.buttonwidget( parent=self._root_widget, @@ -227,23 +224,20 @@ class SoundtrackBrowserWindow(bui.Window): ) self._update() - v = self._height - 65 - scroll_height = self._height - 105 + v = vbase - 6 + scroll_height = 280 v -= scroll_height self._scrollwidget = scrollwidget = bui.scrollwidget( parent=self._root_widget, position=(152 + x_inset, v), highlight=False, - size=(self._width - (205 + 2 * x_inset), scroll_height), + size=(450, scroll_height), + border_opacity=0.4, ) bui.widget( edit=self._scrollwidget, left_widget=self._new_button, - right_widget=( - bui.get_special_widget('party_button') - if bui.app.ui_v1.use_toolbars - else self._scrollwidget - ), + right_widget=bui.get_special_widget('squad_button'), ) self._col = bui.columnwidget(parent=scrollwidget, border=2, margin=0) @@ -255,23 +249,39 @@ class SoundtrackBrowserWindow(bui.Window): self._refresh() if self._back_button is not None: bui.buttonwidget( - edit=self._back_button, on_activate_call=self._back + edit=self._back_button, on_activate_call=self.main_window_back ) bui.containerwidget( edit=self._root_widget, cancel_button=self._back_button ) else: bui.containerwidget( - edit=self._root_widget, on_cancel_call=self._back + edit=self._root_widget, on_cancel_call=self.main_window_back ) + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) + + @override + def on_main_window_close(self) -> None: + self._save_state() + def _update(self) -> None: - have = ( + have_pro = ( bui.app.classic is None or bui.app.classic.accounts.have_pro_options() ) for lock in self._lock_images: - bui.imagewidget(edit=lock, opacity=0.0 if have else 1.0) + bui.imagewidget( + edit=lock, opacity=0.0 if (have_pro or not REQUIRE_PRO) else 1.0 + ) def _do_delete_soundtrack(self) -> None: cfg = bui.app.config @@ -292,7 +302,7 @@ class SoundtrackBrowserWindow(bui.Window): from bauiv1lib.purchase import PurchaseWindow from bauiv1lib.confirm import ConfirmWindow - if ( + if REQUIRE_PRO and ( bui.app.classic is not None and not bui.app.classic.accounts.have_pro_options() ): @@ -321,7 +331,7 @@ class SoundtrackBrowserWindow(bui.Window): # pylint: disable=cyclic-import from bauiv1lib.purchase import PurchaseWindow - if ( + if REQUIRE_PRO and ( bui.app.classic is not None and not bui.app.classic.accounts.have_pro_options() ): @@ -387,29 +397,11 @@ class SoundtrackBrowserWindow(bui.Window): music.music_types[bui.app.classic.MusicPlayMode.REGULAR] ) - def _back(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.settings.audio import AudioSettingsWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - self._save_state() - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - AudioSettingsWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) - def _edit_soundtrack_with_sound(self) -> None: # pylint: disable=cyclic-import from bauiv1lib.purchase import PurchaseWindow - if ( + if REQUIRE_PRO and ( bui.app.classic is not None and not bui.app.classic.accounts.have_pro_options() ): @@ -423,18 +415,20 @@ class SoundtrackBrowserWindow(bui.Window): from bauiv1lib.purchase import PurchaseWindow from bauiv1lib.soundtrack.edit import SoundtrackEditWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we don't have control. + if not self.main_window_has_control(): return - if ( + if REQUIRE_PRO and ( bui.app.classic is not None and not bui.app.classic.accounts.have_pro_options() ): PurchaseWindow(items=['pro']) return + if self._selected_soundtrack is None: return + if self._selected_soundtrack == '__default__': bui.getsound('error').play() bui.screenmessage( @@ -443,14 +437,8 @@ class SoundtrackBrowserWindow(bui.Window): ) return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - SoundtrackEditWindow( - existing_soundtrack=self._selected_soundtrack - ).get_root_widget(), - from_window=self._root_widget, + self.main_window_replace( + SoundtrackEditWindow(existing_soundtrack=self._selected_soundtrack) ) def _get_soundtrack_display_name(self, soundtrack: str) -> bui.Lstr: @@ -541,18 +529,18 @@ class SoundtrackBrowserWindow(bui.Window): from bauiv1lib.purchase import PurchaseWindow from bauiv1lib.soundtrack.edit import SoundtrackEditWindow - if ( + # no-op if we're not in control. + if not self.main_window_has_control(): + return + + if REQUIRE_PRO and ( bui.app.classic is not None and not bui.app.classic.accounts.have_pro_options() ): PurchaseWindow(items=['pro']) return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - bui.app.ui_v1.set_main_menu_window( - SoundtrackEditWindow(existing_soundtrack=None).get_root_widget(), - from_window=self._root_widget, - ) + + self.main_window_replace(SoundtrackEditWindow(existing_soundtrack=None)) def _create_done(self, new_soundtrack: str) -> None: if new_soundtrack is not None: diff --git a/dist/ba_data/python/bauiv1lib/soundtrack/edit.py b/dist/ba_data/python/bauiv1lib/soundtrack/edit.py index 9a155a5..8d02e7f 100644 --- a/dist/ba_data/python/bauiv1lib/soundtrack/edit.py +++ b/dist/ba_data/python/bauiv1lib/soundtrack/edit.py @@ -6,7 +6,7 @@ from __future__ import annotations import copy import os -from typing import TYPE_CHECKING, cast +from typing import TYPE_CHECKING, cast, override import bascenev1 as bs import bauiv1 as bui @@ -15,47 +15,71 @@ if TYPE_CHECKING: from typing import Any -class SoundtrackEditWindow(bui.Window): +class SoundtrackEditWindow(bui.MainWindow): """Window for editing a soundtrack.""" def __init__( self, existing_soundtrack: str | dict[str, Any] | None, - transition: str = 'in_right', + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, ): # pylint: disable=too-many-statements + # pylint: disable=too-many-locals + appconfig = bui.app.config self._r = 'editSoundtrackWindow' self._folder_tex = bui.gettexture('folder') self._file_tex = bui.gettexture('file') assert bui.app.classic is not None uiscale = bui.app.ui_v1.uiscale - self._width = 848 if uiscale is bui.UIScale.SMALL else 648 - x_inset = 100 if uiscale is bui.UIScale.SMALL else 0 + self._width = 1200 if uiscale is bui.UIScale.SMALL else 648 self._height = ( - 395 + 800 if uiscale is bui.UIScale.SMALL else 450 if uiscale is bui.UIScale.MEDIUM else 560 ) + + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 1.8 + if uiscale is bui.UIScale.SMALL + else 1.5 if uiscale is bui.UIScale.MEDIUM else 1.0 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_width = min(self._width - 70, screensize[0] / scale) + target_height = min(self._height - 80, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = ( + 0.5 * self._height + + 0.5 * target_height + + (10.0 if uiscale is bui.UIScale.SMALL else 20) + ) + + self._scroll_width = target_width + self._scroll_height = target_height - 113 + scroll_bottom = yoffs - 120 - self._scroll_height + + x_inset = self._width * 0.5 - 0.5 * self._scroll_width + super().__init__( root_widget=bui.containerwidget( - size=(self._width, self._height), - transition=transition, - scale=( - 2.08 - if uiscale is bui.UIScale.SMALL - else 1.5 if uiscale is bui.UIScale.MEDIUM else 1.0 - ), - stack_offset=( - (0, -48) - if uiscale is bui.UIScale.SMALL - else (0, 15) if uiscale is bui.UIScale.MEDIUM else (0, 0) - ), - ) + size=(self._width, self._height), scale=scale + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) cancel_button = bui.buttonwidget( parent=self._root_widget, - position=(38 + x_inset, self._height - 60), + position=(x_inset + 10, yoffs - 60), size=(160, 60), autoselect=True, label=bui.Lstr(resource='cancelText'), @@ -63,7 +87,12 @@ class SoundtrackEditWindow(bui.Window): ) save_button = bui.buttonwidget( parent=self._root_widget, - position=(self._width - (168 + x_inset), self._height - 60), + position=( + self._width * 0.5 + + self._scroll_width * 0.5 + - (190 if uiscale is bui.UIScale.SMALL else 140), + yoffs - 60, + ), autoselect=True, size=(160, 60), label=bui.Lstr(resource='saveText'), @@ -73,7 +102,7 @@ class SoundtrackEditWindow(bui.Window): bui.widget(edit=cancel_button, right_widget=save_button) bui.textwidget( parent=self._root_widget, - position=(0, self._height - 50), + position=(0, yoffs - 50), size=(self._width, 25), text=bui.Lstr( resource=self._r @@ -86,13 +115,14 @@ class SoundtrackEditWindow(bui.Window): color=bui.app.ui_v1.title_color, h_align='center', v_align='center', - maxwidth=280, + maxwidth=270, ) - v = self._height - 110 + v = yoffs - 110 if 'Soundtracks' not in appconfig: appconfig['Soundtracks'] = {} self._soundtrack_name: str | None + self._existing_soundtrack = existing_soundtrack self._existing_soundtrack_name: str | None if existing_soundtrack is not None: # if they passed just a name, pull info from that soundtrack @@ -104,7 +134,7 @@ class SoundtrackEditWindow(bui.Window): self._existing_soundtrack_name = existing_soundtrack self._last_edited_song_type = None else: - # otherwise they can pass info on an in-progress edit + # Otherwise they can pass info on an in-progress edit. self._soundtrack = existing_soundtrack['soundtrack'] self._soundtrack_name = existing_soundtrack['name'] self._existing_soundtrack_name = existing_soundtrack[ @@ -161,22 +191,23 @@ class SoundtrackEditWindow(bui.Window): on_return_press_call=self._do_it_with_sound, ) - scroll_height = self._height - 180 self._scrollwidget = scrollwidget = bui.scrollwidget( parent=self._root_widget, highlight=False, - position=(40 + x_inset, v - (scroll_height + 10)), - size=(self._width - (80 + 2 * x_inset), scroll_height), + size=(self._scroll_width, self._scroll_height), + position=( + self._width * 0.5 - self._scroll_width * 0.5, + scroll_bottom, + ), simple_culling_v=10, claims_left_right=True, - claims_tab=True, selection_loops_to_parent=True, + border_opacity=0.4, ) bui.widget(edit=self._text_field, down_widget=self._scrollwidget) self._col = bui.columnwidget( parent=scrollwidget, claims_left_right=True, - claims_tab=True, selection_loops_to_parent=True, ) @@ -189,6 +220,28 @@ class SoundtrackEditWindow(bui.Window): bui.widget(edit=self._text_field, up_widget=cancel_button) bui.widget(edit=cancel_button, down_widget=self._text_field) + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + + # Pull this out of self here; if we do it in the lambda we'll + # keep our window alive due to the 'self' reference. + existing_soundtrack = { + 'name': self._soundtrack_name, + 'existing_name': self._existing_soundtrack_name, + 'soundtrack': self._soundtrack, + 'last_edited_song_type': self._last_edited_song_type, + } + + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, + origin_widget=origin_widget, + existing_soundtrack=existing_soundtrack, + ) + ) + def _refresh(self) -> None: for widget in self._col.get_children(): widget.delete() @@ -224,21 +277,20 @@ class SoundtrackEditWindow(bui.Window): for index, song_type in enumerate(types): row = bui.rowwidget( parent=self._col, - size=(self._width - 40, 40), + size=(self._scroll_width, 40), claims_left_right=True, - claims_tab=True, selection_loops_to_parent=True, ) type_name = type_names_translated.get(song_type, song_type) bui.textwidget( parent=row, - size=(230, 25), + size=(self._scroll_width - 350, 25), always_highlight=True, text=type_name, scale=0.7, h_align='left', v_align='center', - maxwidth=190, + maxwidth=self._scroll_width - 360, ) if song_type in self._soundtrack: @@ -346,10 +398,11 @@ class SoundtrackEditWindow(bui.Window): else: soundtrack[musictype] = entry - bui.app.ui_v1.set_main_menu_window( - cls(state, transition='in_left').get_root_widget(), - from_window=False, # Disable check here. - ) + mainwindow = bui.app.ui_v1.get_main_window() + assert mainwindow is not None + + mainwindow.main_window_back_state = state['back_state'] + mainwindow.main_window_back() def _get_entry( self, song_type: str, entry: Any, selection_target_name: str @@ -357,8 +410,8 @@ class SoundtrackEditWindow(bui.Window): assert bui.app.classic is not None music = bui.app.classic.music - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return if selection_target_name != '': @@ -369,17 +422,17 @@ class SoundtrackEditWindow(bui.Window): 'soundtrack': self._soundtrack, 'last_edited_song_type': song_type, } - bui.containerwidget(edit=self._root_widget, transition='out_left') - bui.app.ui_v1.set_main_menu_window( - music.get_music_player() - .select_entry( - bui.Call(self._restore_editor, state, song_type), - entry, - selection_target_name, - ) - .get_root_widget(), - from_window=self._root_widget, + new_win = music.get_music_player().select_entry( + bui.Call(self._restore_editor, state, song_type), + entry, + selection_target_name, ) + self.main_window_replace(new_win) + + # Once we've set the new window, grab the back-state; we'll use + # that to jump back here after selection completes. + assert new_win.main_window_back_state is not None + state['back_state'] = new_win.main_window_back_state def _test(self, song_type: bs.MusicType) -> None: assert bui.app.classic is not None @@ -423,7 +476,7 @@ class SoundtrackEditWindow(bui.Window): return None def _cancel(self) -> None: - from bauiv1lib.soundtrack.browser import SoundtrackBrowserWindow + # from bauiv1lib.soundtrack.browser import SoundtrackBrowserWindow # no-op if our underlying widget is dead or on its way out. if not self._root_widget or self._root_widget.transitioning_out: @@ -434,14 +487,10 @@ class SoundtrackEditWindow(bui.Window): # Resets music back to normal. music.set_music_play_mode(bui.app.classic.MusicPlayMode.REGULAR) - bui.containerwidget(edit=self._root_widget, transition='out_right') - bui.app.ui_v1.set_main_menu_window( - SoundtrackBrowserWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) + + self.main_window_back() def _do_it(self) -> None: - from bauiv1lib.soundtrack.browser import SoundtrackBrowserWindow # no-op if our underlying widget is dead or on its way out. if not self._root_widget or self._root_widget.transitioning_out: @@ -487,17 +536,13 @@ class SoundtrackEditWindow(bui.Window): cfg.commit() bui.getsound('gunCocking').play() - bui.containerwidget(edit=self._root_widget, transition='out_right') # Resets music back to normal. music.set_music_play_mode( bui.app.classic.MusicPlayMode.REGULAR, force_restart=True ) - bui.app.ui_v1.set_main_menu_window( - SoundtrackBrowserWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) + self.main_window_back() def _do_it_with_sound(self) -> None: bui.getsound('swish').play() diff --git a/dist/ba_data/python/bauiv1lib/soundtrack/entrytypeselect.py b/dist/ba_data/python/bauiv1lib/soundtrack/entrytypeselect.py index d0e6547..ff47eac 100644 --- a/dist/ba_data/python/bauiv1lib/soundtrack/entrytypeselect.py +++ b/dist/ba_data/python/bauiv1lib/soundtrack/entrytypeselect.py @@ -4,7 +4,7 @@ from __future__ import annotations import copy -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, override import bauiv1 as bui @@ -12,7 +12,7 @@ if TYPE_CHECKING: from typing import Any, Callable -class SoundtrackEntryTypeSelectWindow(bui.Window): +class SoundtrackEntryTypeSelectWindow(bui.MainWindow): """Window for selecting a soundtrack entry type.""" def __init__( @@ -20,12 +20,16 @@ class SoundtrackEntryTypeSelectWindow(bui.Window): callback: Callable[[Any], Any], current_entry: Any, selection_target_name: str, - transition: str = 'in_right', + *, + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, ): + # pylint: disable=too-many-locals assert bui.app.classic is not None music = bui.app.classic.music self._r = 'editSoundtrackWindow' + self._selection_target_name = selection_target_name self._callback = callback self._current_entry = copy.deepcopy(current_entry) @@ -53,13 +57,12 @@ class SoundtrackEntryTypeSelectWindow(bui.Window): # NOTE: When something is selected, we close our UI and kick off # another window which then calls us back when its done, so the - # standard UI-cleanup-check complains that something is holding on - # to our instance after its ui is gone. Should restructure in a - # cleaner way, but just disabling that check for now. + # standard UI-cleanup-check complains that something is holding + # on to our instance after its ui is gone. Should restructure in + # a cleaner way, but just disabling that check for now. super().__init__( root_widget=bui.containerwidget( size=(self._width, self._height), - transition=transition, scale=( 1.7 if uiscale is bui.UIScale.SMALL @@ -67,6 +70,8 @@ class SoundtrackEntryTypeSelectWindow(bui.Window): ), ), cleanupcheck=False, + transition=transition, + origin_widget=origin_widget, ) btn = bui.buttonwidget( parent=self._root_widget, @@ -157,6 +162,27 @@ class SoundtrackEntryTypeSelectWindow(bui.Window): bui.containerwidget(edit=self._root_widget, selected_child=btn) v -= spacing + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + + # Pull these out of self here; if we reference self in the + # lambda we'll keep our window alive which is bad. + current_entry = self._current_entry + callback = self._callback + selection_target_name = self._selection_target_name + + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, + origin_widget=origin_widget, + current_entry=current_entry, + callback=callback, + selection_target_name=selection_target_name, + ) + ) + def _on_mac_music_app_playlist_press(self) -> None: assert bui.app.classic is not None music = bui.app.classic.music @@ -164,12 +190,10 @@ class SoundtrackEntryTypeSelectWindow(bui.Window): MacMusicAppPlaylistSelectWindow, ) - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - bui.containerwidget(edit=self._root_widget, transition='out_left') - current_playlist_entry: str | None if ( music.get_soundtrack_entry_type(self._current_entry) @@ -180,11 +204,11 @@ class SoundtrackEntryTypeSelectWindow(bui.Window): ) else: current_playlist_entry = None - bui.app.ui_v1.set_main_menu_window( + + self.main_window_replace( MacMusicAppPlaylistSelectWindow( self._callback, current_playlist_entry, self._current_entry - ).get_root_widget(), - from_window=self._root_widget, + ) ) def _on_music_file_press(self) -> None: @@ -192,14 +216,14 @@ class SoundtrackEntryTypeSelectWindow(bui.Window): from baclassic.osmusic import OSMusicPlayer from bauiv1lib.fileselector import FileSelectorWindow - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - bui.containerwidget(edit=self._root_widget, transition='out_left') base_path = android_get_external_files_dir() assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( + + self.main_window_replace( FileSelectorWindow( base_path, callback=self._music_file_selector_cb, @@ -208,30 +232,28 @@ class SoundtrackEntryTypeSelectWindow(bui.Window): OSMusicPlayer.get_valid_music_file_extensions() ), allow_folders=False, - ).get_root_widget(), - from_window=self._root_widget, + ), ) def _on_music_folder_press(self) -> None: from bauiv1lib.fileselector import FileSelectorWindow from babase import android_get_external_files_dir - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: + # no-op if we're not in control. + if not self.main_window_has_control(): return - bui.containerwidget(edit=self._root_widget, transition='out_left') base_path = android_get_external_files_dir() assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( + + self.main_window_replace( FileSelectorWindow( base_path, callback=self._music_folder_selector_cb, show_base_path=False, valid_file_extensions=[], allow_folders=True, - ).get_root_widget(), - from_window=self._root_widget, + ), ) def _music_file_selector_cb(self, result: str | None) -> None: @@ -247,9 +269,9 @@ class SoundtrackEntryTypeSelectWindow(bui.Window): self._callback({'type': 'musicFolder', 'name': result}) def _on_default_press(self) -> None: - bui.containerwidget(edit=self._root_widget, transition='out_right') + self.main_window_back() self._callback(None) def _on_cancel_press(self) -> None: - bui.containerwidget(edit=self._root_widget, transition='out_right') + self.main_window_back() self._callback(self._current_entry) diff --git a/dist/ba_data/python/bauiv1lib/soundtrack/macmusicapp.py b/dist/ba_data/python/bauiv1lib/soundtrack/macmusicapp.py index 99c60a6..ee21dfe 100644 --- a/dist/ba_data/python/bauiv1lib/soundtrack/macmusicapp.py +++ b/dist/ba_data/python/bauiv1lib/soundtrack/macmusicapp.py @@ -5,7 +5,7 @@ from __future__ import annotations import copy -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, override import bauiv1 as bui @@ -13,7 +13,7 @@ if TYPE_CHECKING: from typing import Any, Callable -class MacMusicAppPlaylistSelectWindow(bui.Window): +class MacMusicAppPlaylistSelectWindow(bui.MainWindow): """Window for selecting an iTunes playlist.""" def __init__( @@ -21,6 +21,9 @@ class MacMusicAppPlaylistSelectWindow(bui.Window): callback: Callable[[Any], Any], existing_playlist: str | None, existing_entry: Any, + *, + transition: str | None = 'in_right', + origin_widget: bui.Widget | None = None, ): from baclassic.macmusicapp import MacMusicAppMusicPlayer @@ -34,9 +37,9 @@ class MacMusicAppPlaylistSelectWindow(bui.Window): v = self._height - 90.0 v -= self._spacing * 1.0 super().__init__( - root_widget=bui.containerwidget( - size=(self._width, self._height), transition='in_right' - ) + root_widget=bui.containerwidget(size=(self._width, self._height)), + transition=transition, + origin_widget=origin_widget, ) btn = bui.buttonwidget( parent=self._root_widget, @@ -62,13 +65,11 @@ class MacMusicAppPlaylistSelectWindow(bui.Window): parent=self._root_widget, position=(40, v - 340), size=(self._width - 80, 400), - claims_tab=True, selection_loops_to_parent=True, ) bui.widget(edit=self._scrollwidget, right_widget=self._scrollwidget) self._column = bui.columnwidget( parent=self._scrollwidget, - claims_tab=True, selection_loops_to_parent=True, ) @@ -87,6 +88,27 @@ class MacMusicAppPlaylistSelectWindow(bui.Window): edit=self._root_widget, selected_child=self._scrollwidget ) + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + + # Pull stuff out of self here; if we do it in the lambda we wind + # up keeping self alive which we don't want. + callback = self._callback + existing_playlist = self._existing_playlist + existing_entry = self._existing_entry + + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + callback=callback, + existing_playlist=existing_playlist, + existing_entry=existing_entry, + transition=transition, + origin_widget=origin_widget, + ) + ) + def _playlists_cb(self, playlists: list[str]) -> None: if self._column: for widget in self._column.get_children(): @@ -112,9 +134,12 @@ class MacMusicAppPlaylistSelectWindow(bui.Window): def _sel(self, selection: str) -> None: if self._root_widget: - bui.containerwidget(edit=self._root_widget, transition='out_right') + # bui.containerwidget( + # edit=self._root_widget, transition='out_right') self._callback({'type': 'iTunesPlaylist', 'name': selection}) + self.main_window_back() def _back(self) -> None: - bui.containerwidget(edit=self._root_widget, transition='out_right') + # bui.containerwidget(edit=self._root_widget, transition='out_right') + self.main_window_back() self._callback(self._existing_entry) diff --git a/dist/ba_data/python/bauiv1lib/specialoffer.py b/dist/ba_data/python/bauiv1lib/specialoffer.py deleted file mode 100644 index 3385342..0000000 --- a/dist/ba_data/python/bauiv1lib/specialoffer.py +++ /dev/null @@ -1,569 +0,0 @@ -# Released under the MIT License. See LICENSE for details. -# -"""UI for presenting sales/etc.""" - -from __future__ import annotations - -import copy -import logging -from typing import TYPE_CHECKING - -import bauiv1 as bui - -if TYPE_CHECKING: - from typing import Any - - -class SpecialOfferWindow(bui.Window): - """Window for presenting sales/etc.""" - - def __init__(self, offer: dict[str, Any], transition: str = 'in_right'): - # pylint: disable=too-many-statements - # pylint: disable=too-many-branches - # pylint: disable=too-many-locals - from babase import SpecialChar - from bauiv1lib.store import item as storeitemui - - plus = bui.app.plus - assert plus is not None - - assert bui.app.classic is not None - store = bui.app.classic.store - - self._cancel_delay = offer.get('cancelDelay', 0) - - # First thing: if we're offering pro or an IAP, see if we have a - # price for it. - # If not, abort and go into zombie mode (the user should never see - # us that way). - - real_price: str | None - - # Misnomer: 'pro' actually means offer 'pro_sale'. - if offer['item'] in ['pro', 'pro_fullprice']: - real_price = plus.get_price( - 'pro' if offer['item'] == 'pro_fullprice' else 'pro_sale' - ) - if real_price is None and bui.app.env.debug: - print('NOTE: Faking prices for debug build.') - real_price = '$1.23' - zombie = real_price is None - elif isinstance(offer['price'], str): - # (a string price implies IAP id) - real_price = plus.get_price(offer['price']) - if real_price is None and bui.app.env.debug: - print('NOTE: Faking price for debug build.') - real_price = '$1.23' - zombie = real_price is None - else: - real_price = None - zombie = False - if real_price is None: - real_price = '?' - - if offer['item'] in ['pro', 'pro_fullprice']: - self._offer_item = 'pro' - else: - self._offer_item = offer['item'] - - # If we wanted a real price but didn't find one, go zombie. - if zombie: - return - - # This can pop up suddenly, so lets block input for 1 second. - bui.lock_all_input() - bui.apptimer(1.0, bui.unlock_all_input) - bui.getsound('ding').play() - bui.apptimer(0.3, bui.getsound('ooh').play) - self._offer = copy.deepcopy(offer) - self._width = 580 - self._height = 590 - uiscale = bui.app.ui_v1.uiscale - super().__init__( - root_widget=bui.containerwidget( - size=(self._width, self._height), - transition=transition, - scale=( - 1.2 - if uiscale is bui.UIScale.SMALL - else 1.15 if uiscale is bui.UIScale.MEDIUM else 1.0 - ), - stack_offset=( - (0, -15) if uiscale is bui.UIScale.SMALL else (0, 0) - ), - ) - ) - self._is_bundle_sale = False - try: - if offer['item'] in ['pro', 'pro_fullprice']: - original_price_str = plus.get_price('pro') - if original_price_str is None: - original_price_str = '?' - new_price_str = plus.get_price('pro_sale') - if new_price_str is None: - new_price_str = '?' - percent_off_text = '' - else: - # If the offer includes bonus tickets, it's a bundle-sale. - if ( - 'bonusTickets' in offer - and offer['bonusTickets'] is not None - ): - self._is_bundle_sale = True - original_price = plus.get_v1_account_misc_read_val( - 'price.' + self._offer_item, 9999 - ) - - # For pure ticket prices we can show a percent-off. - if isinstance(offer['price'], int): - new_price = offer['price'] - tchar = bui.charstr(SpecialChar.TICKET) - original_price_str = tchar + str(original_price) - new_price_str = tchar + str(new_price) - percent_off = int( - round( - 100.0 - (float(new_price) / original_price) * 100.0 - ) - ) - percent_off_text = ' ' + bui.Lstr( - resource='store.salePercentText' - ).evaluate().replace('${PERCENT}', str(percent_off)) - else: - original_price_str = new_price_str = '?' - percent_off_text = '' - - except Exception: - logging.exception('Error setting up special-offer: %s.', offer) - original_price_str = new_price_str = '?' - percent_off_text = '' - - # If its a bundle sale, change the title. - if self._is_bundle_sale: - sale_text = bui.Lstr( - resource='store.saleBundleText', - fallback_resource='store.saleText', - ).evaluate() - else: - # For full pro we say 'Upgrade?' since its not really a sale. - if offer['item'] == 'pro_fullprice': - sale_text = bui.Lstr( - resource='store.upgradeQuestionText', - fallback_resource='store.saleExclaimText', - ).evaluate() - else: - sale_text = bui.Lstr( - resource='store.saleExclaimText', - fallback_resource='store.saleText', - ).evaluate() - - self._title_text = bui.textwidget( - parent=self._root_widget, - position=(self._width * 0.5, self._height - 40), - size=(0, 0), - text=sale_text - + ( - (' ' + bui.Lstr(resource='store.oneTimeOnlyText').evaluate()) - if self._offer['oneTimeOnly'] - else '' - ) - + percent_off_text, - h_align='center', - v_align='center', - maxwidth=self._width * 0.9 - 220, - scale=1.4, - color=(0.3, 1, 0.3), - ) - - self._flash_on = False - self._flashing_timer: bui.AppTimer | None = bui.AppTimer( - 0.05, bui.WeakCall(self._flash_cycle), repeat=True - ) - bui.apptimer(0.6, bui.WeakCall(self._stop_flashing)) - - size = store.get_store_item_display_size(self._offer_item) - display: dict[str, Any] = {} - storeitemui.instantiate_store_item_display( - self._offer_item, - display, - parent_widget=self._root_widget, - b_pos=( - self._width * 0.5 - - size[0] * 0.5 - + 10 - - ((size[0] * 0.5 + 30) if self._is_bundle_sale else 0), - self._height * 0.5 - - size[1] * 0.5 - + 20 - + (20 if self._is_bundle_sale else 0), - ), - b_width=size[0], - b_height=size[1], - button=not self._is_bundle_sale, - ) - - # Wire up the parts we need. - if self._is_bundle_sale: - self._plus_text = bui.textwidget( - parent=self._root_widget, - position=(self._width * 0.5, self._height * 0.5 + 50), - size=(0, 0), - text='+', - h_align='center', - v_align='center', - maxwidth=self._width * 0.9, - scale=1.4, - color=(0.5, 0.5, 0.5), - ) - self._plus_tickets = bui.textwidget( - parent=self._root_widget, - position=(self._width * 0.5 + 120, self._height * 0.5 + 50), - size=(0, 0), - text=bui.charstr(SpecialChar.TICKET_BACKING) - + str(offer['bonusTickets']), - h_align='center', - v_align='center', - maxwidth=self._width * 0.9, - scale=2.5, - color=(0.2, 1, 0.2), - ) - self._price_text = bui.textwidget( - parent=self._root_widget, - position=(self._width * 0.5, 150), - size=(0, 0), - text=real_price, - h_align='center', - v_align='center', - maxwidth=self._width * 0.9, - scale=1.4, - color=(0.2, 1, 0.2), - ) - # Total-value if they supplied it. - total_worth_item = offer.get('valueItem', None) - if total_worth_item is not None: - price = plus.get_price(total_worth_item) - total_worth_price = ( - store.get_clean_price(price) if price is not None else None - ) - if total_worth_price is not None: - total_worth_text = bui.Lstr( - resource='store.totalWorthText', - subs=[('${TOTAL_WORTH}', total_worth_price)], - ) - self._total_worth_text = bui.textwidget( - parent=self._root_widget, - text=total_worth_text, - position=(self._width * 0.5, 210), - scale=0.9, - maxwidth=self._width * 0.7, - size=(0, 0), - h_align='center', - v_align='center', - shadow=1.0, - flatness=1.0, - color=(0.3, 1, 1), - ) - - elif offer['item'] == 'pro_fullprice': - # for full-price pro we simply show full price - bui.textwidget(edit=display['price_widget'], text=real_price) - bui.buttonwidget( - edit=display['button'], on_activate_call=self._purchase - ) - else: - # Show old/new prices otherwise (for pro sale). - bui.buttonwidget( - edit=display['button'], on_activate_call=self._purchase - ) - bui.imagewidget(edit=display['price_slash_widget'], opacity=1.0) - bui.textwidget( - edit=display['price_widget_left'], text=original_price_str - ) - bui.textwidget( - edit=display['price_widget_right'], text=new_price_str - ) - - # Add ticket button only if this is ticket-purchasable. - if isinstance(offer.get('price'), int): - self._get_tickets_button = bui.buttonwidget( - parent=self._root_widget, - position=(self._width - 125, self._height - 68), - size=(90, 55), - scale=1.0, - button_type='square', - color=(0.7, 0.5, 0.85), - textcolor=(0.2, 1, 0.2), - autoselect=True, - label=bui.Lstr(resource='getTicketsWindow.titleText'), - on_activate_call=self._on_get_more_tickets_press, - ) - - self._ticket_text_update_timer = bui.AppTimer( - 1.0, bui.WeakCall(self._update_tickets_text), repeat=True - ) - self._update_tickets_text() - - self._update_timer = bui.AppTimer( - 1.0, bui.WeakCall(self._update), repeat=True - ) - - self._cancel_button = bui.buttonwidget( - parent=self._root_widget, - position=( - (50, 40) - if self._is_bundle_sale - else (self._width * 0.5 - 75, 40) - ), - size=(150, 60), - scale=1.0, - on_activate_call=self._cancel, - autoselect=True, - label=bui.Lstr(resource='noThanksText'), - ) - self._cancel_countdown_text = bui.textwidget( - parent=self._root_widget, - text='', - position=( - (50 + 150 + 20, 40 + 27) - if self._is_bundle_sale - else (self._width * 0.5 - 75 + 150 + 20, 40 + 27) - ), - scale=1.1, - size=(0, 0), - h_align='left', - v_align='center', - shadow=1.0, - flatness=1.0, - color=(0.6, 0.5, 0.5), - ) - self._update_cancel_button_graphics() - - if self._is_bundle_sale: - self._purchase_button = bui.buttonwidget( - parent=self._root_widget, - position=(self._width - 200, 40), - size=(150, 60), - scale=1.0, - on_activate_call=self._purchase, - autoselect=True, - label=bui.Lstr(resource='store.purchaseText'), - ) - - bui.containerwidget( - edit=self._root_widget, - cancel_button=self._cancel_button, - start_button=( - self._purchase_button if self._is_bundle_sale else None - ), - selected_child=( - self._purchase_button - if self._is_bundle_sale - else display['button'] - ), - ) - - def _stop_flashing(self) -> None: - self._flashing_timer = None - bui.textwidget(edit=self._title_text, color=(0.3, 1, 0.3)) - - def _flash_cycle(self) -> None: - if not self._root_widget: - return - self._flash_on = not self._flash_on - bui.textwidget( - edit=self._title_text, - color=(0.3, 1, 0.3) if self._flash_on else (1, 0.5, 0), - ) - - def _update_cancel_button_graphics(self) -> None: - bui.buttonwidget( - edit=self._cancel_button, - color=( - (0.5, 0.5, 0.5) if self._cancel_delay > 0 else (0.7, 0.4, 0.34) - ), - textcolor=( - (0.5, 0.5, 0.5) if self._cancel_delay > 0 else (0.9, 0.9, 1.0) - ), - ) - bui.textwidget( - edit=self._cancel_countdown_text, - text=str(self._cancel_delay) if self._cancel_delay > 0 else '', - ) - - def _update(self) -> None: - plus = bui.app.plus - assert plus is not None - - # If we've got seconds left on our countdown, update it. - if self._cancel_delay > 0: - self._cancel_delay = max(0, self._cancel_delay - 1) - self._update_cancel_button_graphics() - - can_die = False - - # We go away if we see that our target item is owned. - if self._offer_item == 'pro': - assert bui.app.classic is not None - if bui.app.classic.accounts.have_pro(): - can_die = True - else: - if plus.get_purchased(self._offer_item): - can_die = True - - if can_die: - self._transition_out('out_left') - - def _transition_out(self, transition: str = 'out_left') -> None: - # Also clear any pending-special-offer we've stored at this point. - cfg = bui.app.config - if 'pendingSpecialOffer' in cfg: - del cfg['pendingSpecialOffer'] - cfg.commit() - - bui.containerwidget(edit=self._root_widget, transition=transition) - - def _update_tickets_text(self) -> None: - from babase import SpecialChar - - plus = bui.app.plus - assert plus is not None - - if not self._root_widget: - return - sval: str | bui.Lstr - if plus.get_v1_account_state() == 'signed_in': - sval = bui.charstr(SpecialChar.TICKET) + str( - plus.get_v1_account_ticket_count() - ) - else: - sval = bui.Lstr(resource='getTicketsWindow.titleText') - bui.buttonwidget(edit=self._get_tickets_button, label=sval) - - def _on_get_more_tickets_press(self) -> None: - from bauiv1lib import account - from bauiv1lib import gettickets - - plus = bui.app.plus - assert plus is not None - - if plus.get_v1_account_state() != 'signed_in': - account.show_sign_in_prompt() - return - gettickets.GetTicketsWindow(modal=True).get_root_widget() - - def _purchase(self) -> None: - from bauiv1lib import gettickets - from bauiv1lib import confirm - - plus = bui.app.plus - assert plus is not None - - assert bui.app.classic is not None - store = bui.app.classic.store - - if self._offer['item'] == 'pro': - plus.purchase('pro_sale') - elif self._offer['item'] == 'pro_fullprice': - plus.purchase('pro') - elif self._is_bundle_sale: - # With bundle sales, the price is the name of the IAP. - plus.purchase(self._offer['price']) - else: - ticket_count: int | None - try: - ticket_count = plus.get_v1_account_ticket_count() - except Exception: - ticket_count = None - if ticket_count is not None and ticket_count < self._offer['price']: - gettickets.show_get_tickets_prompt() - bui.getsound('error').play() - return - - def do_it() -> None: - assert plus is not None - - plus.in_game_purchase( - 'offer:' + str(self._offer['id']), self._offer['price'] - ) - - bui.getsound('swish').play() - confirm.ConfirmWindow( - bui.Lstr( - resource='store.purchaseConfirmText', - subs=[ - ( - '${ITEM}', - store.get_store_item_name_translated( - self._offer['item'] - ), - ) - ], - ), - width=400, - height=120, - action=do_it, - ok_text=bui.Lstr( - resource='store.purchaseText', fallback_resource='okText' - ), - ) - - def _cancel(self) -> None: - if self._cancel_delay > 0: - bui.getsound('error').play() - return - self._transition_out('out_right') - - -def show_offer() -> bool: - """(internal)""" - try: - from bauiv1lib import feedback - - plus = bui.app.plus - assert plus is not None - - app = bui.app - if app.classic is None: - raise RuntimeError( - 'Classic feature-set is required to show offers.' - ) - - # Space things out a bit so we don't hit the poor user with an - # ad and then an in-game offer. - has_been_long_enough_since_ad = True - if app.classic.ads.last_ad_completion_time is not None and ( - bui.apptime() - app.classic.ads.last_ad_completion_time < 30.0 - ): - has_been_long_enough_since_ad = False - - if ( - app.classic.special_offer is not None - and has_been_long_enough_since_ad - ): - # Special case: for pro offers, store this in our prefs so - # we can re-show it if the user kills us (set phasers to - # 'NAG'!!!). - if app.classic.special_offer.get('item') == 'pro_fullprice': - cfg = app.config - cfg['pendingSpecialOffer'] = { - 'a': plus.get_v1_account_public_login_id(), - 'o': app.classic.special_offer, - } - cfg.commit() - - if app.classic.special_offer['item'] == 'rating': - # Go with a native thing if we've got one. - if bui.native_review_request_supported(): - bui.native_review_request() - else: - if app.ui_v1.available: - feedback.ask_for_rating() - else: - if app.ui_v1.available: - SpecialOfferWindow(app.classic.special_offer) - - app.classic.special_offer = None - return True - except Exception: - logging.exception('Error showing offer.') - - return False diff --git a/dist/ba_data/python/bauiv1lib/store/browser.py b/dist/ba_data/python/bauiv1lib/store/browser.py index 8ab5210..b9626b0 100644 --- a/dist/ba_data/python/bauiv1lib/store/browser.py +++ b/dist/ba_data/python/bauiv1lib/store/browser.py @@ -13,7 +13,7 @@ import weakref import datetime from enum import Enum from threading import Thread -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, override from efro.util import utc_now from efro.error import CommunicationError @@ -26,13 +26,13 @@ if TYPE_CHECKING: MERCH_LINK_KEY = 'Merch Link' -class StoreBrowserWindow(bui.Window): +class StoreBrowserWindow(bui.MainWindow): """Window for browsing the store.""" class TabID(Enum): """Our available tab types.""" - EXTRAS = 'extras' + # EXTRAS = 'extras' MAPS = 'maps' MINIGAMES = 'minigames' CHARACTERS = 'characters' @@ -40,12 +40,10 @@ class StoreBrowserWindow(bui.Window): def __init__( self, - transition: str = 'in_right', - modal: bool = False, - show_tab: StoreBrowserWindow.TabID | None = None, - on_close_call: Callable[[], Any] | None = None, - back_location: str | None = None, + transition: str | None = 'in_right', origin_widget: bui.Widget | None = None, + show_tab: StoreBrowserWindow.TabID | None = None, + minimal_toolbars: bool = False, ): # pylint: disable=too-many-statements # pylint: disable=too-many-locals @@ -58,110 +56,85 @@ class StoreBrowserWindow(bui.Window): bui.set_analytics_screen('Store Window') - scale_origin: tuple[float, float] | None - - # If they provided an origin-widget, scale up from that. - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None - self.button_infos: dict[str, dict[str, Any]] | None = None self.update_buttons_timer: bui.AppTimer | None = None self._status_textwidget_update_timer = None - self._back_location = back_location - self._on_close_call = on_close_call self._show_tab = show_tab - self._modal = modal - self._width = 1440 if uiscale is bui.UIScale.SMALL else 1040 - self._x_inset = x_inset = 200 if uiscale is bui.UIScale.SMALL else 0 - self._height = ( - 578 + self._width = ( + 1800 if uiscale is bui.UIScale.SMALL - else 645 if uiscale is bui.UIScale.MEDIUM else 800 + else 1000 if uiscale is bui.UIScale.MEDIUM else 1120 + ) + self._height = ( + 1200 + if uiscale is bui.UIScale.SMALL + else 700 if uiscale is bui.UIScale.MEDIUM else 800 ) self._current_tab: StoreBrowserWindow.TabID | None = None - extra_top = 30 if uiscale is bui.UIScale.SMALL else 0 + # extra_top = 30 if uiscale is bui.UIScale.SMALL else 0 self.request: Any = None self._r = 'store' self._last_buy_time: float | None = None + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 1.5 + if uiscale is bui.UIScale.SMALL + else 0.9 if uiscale is bui.UIScale.MEDIUM else 0.8 + ) + + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_width = min(self._width - 120, screensize[0] / scale) + target_height = min(self._height - 140, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + yoffs = 0.5 * self._height + 0.5 * target_height + 30.0 + + self._scroll_width = target_width + self._scroll_height = target_height - 59 + self._scroll_bottom = yoffs - 87 - self._scroll_height + super().__init__( root_widget=bui.containerwidget( - size=(self._width, self._height + extra_top), - transition=transition, - toolbar_visibility='menu_full', - scale=( - 1.3 - if uiscale is bui.UIScale.SMALL - else 0.9 if uiscale is bui.UIScale.MEDIUM else 0.8 + size=(self._width, self._height), + toolbar_visibility=( + 'menu_store' + if (uiscale is bui.UIScale.SMALL or minimal_toolbars) + else 'menu_full' ), - scale_origin_stack_offset=scale_origin, - stack_offset=( - (0, -5) - if uiscale is bui.UIScale.SMALL - else (0, 0) if uiscale is bui.UIScale.MEDIUM else (0, 0) - ), - ) + scale=scale, + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) self._back_button = btn = bui.buttonwidget( parent=self._root_widget, - position=(70 + x_inset, self._height - 74), - size=(140, 60), + position=(70, yoffs - 37), + size=(60, 60), scale=1.1, autoselect=True, - label=bui.Lstr(resource='doneText' if self._modal else 'backText'), - button_type=None if self._modal else 'back', - on_activate_call=self._back, + label=bui.charstr(SpecialChar.BACK), + button_type='backSmall', + on_activate_call=self.main_window_back, ) - bui.containerwidget(edit=self._root_widget, cancel_button=btn) - self._ticket_count_text: bui.Widget | None = None - self._get_tickets_button: bui.Widget | None = None - - if app.classic.allow_ticket_purchases: - self._get_tickets_button = bui.buttonwidget( - parent=self._root_widget, - size=(210, 65), - on_activate_call=self._on_get_more_tickets_press, - autoselect=True, - scale=0.9, - text_scale=1.4, - left_widget=self._back_button, - color=(0.7, 0.5, 0.85), - textcolor=(0.2, 1.0, 0.2), - label=bui.Lstr(resource='getTicketsWindow.titleText'), + if uiscale is bui.UIScale.SMALL: + self._back_button.delete() + bui.containerwidget( + edit=self._root_widget, on_cancel_call=self.main_window_back ) else: - self._ticket_count_text = bui.textwidget( - parent=self._root_widget, - size=(210, 64), - color=(0.2, 1.0, 0.2), - h_align='center', - v_align='center', - ) - - # Move this dynamically to keep it out of the way of the party icon. - self._update_get_tickets_button_pos() - self._get_ticket_pos_update_timer = bui.AppTimer( - 1.0, - bui.WeakCall(self._update_get_tickets_button_pos), - repeat=True, - ) - if self._get_tickets_button: - bui.widget( - edit=self._back_button, right_widget=self._get_tickets_button - ) - self._ticket_text_update_timer = bui.AppTimer( - 1.0, bui.WeakCall(self._update_tickets_text), repeat=True - ) - self._update_tickets_text() + bui.containerwidget(edit=self._root_widget, cancel_button=btn) if ( app.classic.platform in ['mac', 'ios'] @@ -183,29 +156,28 @@ class StoreBrowserWindow(bui.Window): bui.textwidget( parent=self._root_widget, - position=(self._width * 0.5, self._height - 44), + position=( + ( + self._width * 0.5 + + ( + (self._scroll_width * -0.5 + 90.0) + if uiscale is bui.UIScale.SMALL + else 0.0 + ) + ), + yoffs - (62 if uiscale is bui.UIScale.SMALL else -3.0), + ), size=(0, 0), color=app.ui_v1.title_color, - scale=1.5, - h_align='center', + scale=1.1 if uiscale is bui.UIScale.SMALL else 1.3, + h_align='left' if uiscale is bui.UIScale.SMALL else 'center', v_align='center', text=bui.Lstr(resource='storeText'), - maxwidth=420, + maxwidth=100 if uiscale is bui.UIScale.SMALL else 290, ) - if not self._modal: - bui.buttonwidget( - edit=self._back_button, - button_type='backSmall', - size=(60, 60), - label=bui.charstr(SpecialChar.BACK), - ) - - scroll_buffer_h = 130 + 2 * x_inset - tab_buffer_h = 250 + 2 * x_inset - tabs_def = [ - (self.TabID.EXTRAS, bui.Lstr(resource=f'{self._r}.extrasText')), + # (self.TabID.EXTRAS, bui.Lstr(resource=f'{self._r}.extrasText')), (self.TabID.MAPS, bui.Lstr(resource=f'{self._r}.mapsText')), ( self.TabID.MINIGAMES, @@ -218,11 +190,15 @@ class StoreBrowserWindow(bui.Window): (self.TabID.ICONS, bui.Lstr(resource=f'{self._r}.iconsText')), ] + tab_inset = 200 if uiscale is bui.UIScale.SMALL else 100 self._tab_row = TabRow( self._root_widget, tabs_def, - pos=(tab_buffer_h * 0.5, self._height - 130), - size=(self._width - tab_buffer_h, 50), + size=(self._scroll_width - 2.0 * tab_inset, 50), + pos=( + self._width * 0.5 - self._scroll_width * 0.5 + tab_inset, + self._scroll_bottom + self._scroll_height - 4.0, + ), on_select_call=self._set_tab, ) @@ -239,8 +215,8 @@ class StoreBrowserWindow(bui.Window): center = (pos[0] + 0.1 * size[0], pos[1] + 0.9 * size[1]) img = bui.imagewidget( parent=self._root_widget, - position=(center[0] - rad * 1.04, center[1] - rad * 1.15), - size=(rad * 2.2, rad * 2.2), + position=(center[0] - rad * 1.1, center[1] - rad * 1.2), + size=(rad * 2.4, rad * 2.4), texture=bui.gettexture('circleShadow'), color=(1, 0, 0), ) @@ -302,53 +278,34 @@ class StoreBrowserWindow(bui.Window): ) self._update_tabs() - if self._get_tickets_button: + if uiscale is bui.UIScale.SMALL: + first_tab_button = self._tab_row.tabs[tabs_def[0][0]].button last_tab_button = self._tab_row.tabs[tabs_def[-1][0]].button bui.widget( - edit=self._get_tickets_button, down_widget=last_tab_button + edit=first_tab_button, + left_widget=bui.get_special_widget('back_button'), + up_widget=bui.get_special_widget('back_button'), ) bui.widget( edit=last_tab_button, - up_widget=self._get_tickets_button, - right_widget=self._get_tickets_button, + up_widget=bui.get_special_widget('tickets_meter'), + right_widget=bui.get_special_widget('tickets_meter'), ) - self._scroll_width = self._width - scroll_buffer_h - self._scroll_height = self._height - 180 + # self._scroll_width = self._width - scroll_buffer_h + # self._scroll_height = self._height - 180 self._scrollwidget: bui.Widget | None = None self._status_textwidget: bui.Widget | None = None self._restore_state() - def _update_get_tickets_button_pos(self) -> None: - assert bui.app.classic is not None - uiscale = bui.app.ui_v1.uiscale - pos = ( - self._width - - 252 - - ( - self._x_inset - + ( - 47 - if uiscale is bui.UIScale.SMALL - and bui.is_party_icon_visible() - else 0 - ) - ), - self._height - 70, - ) - if self._get_tickets_button: - bui.buttonwidget(edit=self._get_tickets_button, position=pos) - if self._ticket_count_text: - bui.textwidget(edit=self._ticket_count_text, position=pos) - def _restore_purchases(self) -> None: - from bauiv1lib import account + from bauiv1lib.account.signin import show_sign_in_prompt plus = bui.app.plus assert plus is not None if plus.accounts.primary is None: - account.show_sign_in_prompt() + show_sign_in_prompt() else: plus.restore_purchases() @@ -385,25 +342,6 @@ class StoreBrowserWindow(bui.Window): bui.textwidget(edit=tab_data['text'], text='') bui.imagewidget(edit=tab_data['img'], opacity=0.0) - def _update_tickets_text(self) -> None: - from bauiv1 import SpecialChar - - if not self._root_widget: - return - plus = bui.app.plus - assert plus is not None - sval: str | bui.Lstr - if plus.get_v1_account_state() == 'signed_in': - sval = bui.charstr(SpecialChar.TICKET) + str( - plus.get_v1_account_ticket_count() - ) - else: - sval = bui.Lstr(resource='getTicketsWindow.titleText') - if self._get_tickets_button: - bui.buttonwidget(edit=self._get_tickets_button, label=sval) - if self._ticket_count_text: - bui.textwidget(edit=self._ticket_count_text, text=sval) - def _set_tab(self, tab_id: TabID) -> None: if self._current_tab is tab_id: return @@ -424,14 +362,14 @@ class StoreBrowserWindow(bui.Window): self._scrollwidget = bui.scrollwidget( parent=self._root_widget, highlight=False, - position=( - (self._width - self._scroll_width) * 0.5, - self._height - self._scroll_height - 79 - 48, - ), size=(self._scroll_width, self._scroll_height), + position=( + self._width * 0.5 - self._scroll_width * 0.5, + self._scroll_bottom, + ), claims_left_right=True, - claims_tab=True, selection_loops_to_parent=True, + border_opacity=0.4, ) # NOTE: this stuff is modified by the _Store class. @@ -465,7 +403,6 @@ class StoreBrowserWindow(bui.Window): window = self._window() if window is not None and (window.request is self): window.request = None - # noinspection PyProtectedMember window._on_response(data) # Kick off a server request. @@ -572,9 +509,8 @@ class StoreBrowserWindow(bui.Window): def buy(self, item: str) -> None: """Attempt to purchase the provided item.""" - from bauiv1lib import account + from bauiv1lib.account.signin import show_sign_in_prompt from bauiv1lib.confirm import ConfirmWindow - from bauiv1lib import gettickets assert bui.app.classic is not None store = bui.app.classic.store @@ -592,7 +528,7 @@ class StoreBrowserWindow(bui.Window): bui.getsound('error').play() else: if plus.get_v1_account_state() != 'signed_in': - account.show_sign_in_prompt() + show_sign_in_prompt() else: self._last_buy_time = curtime @@ -620,7 +556,11 @@ class StoreBrowserWindow(bui.Window): our_tickets = plus.get_v1_account_ticket_count() if price is not None and our_tickets < price: bui.getsound('error').play() - gettickets.show_get_tickets_prompt() + bui.screenmessage( + bui.Lstr(resource='notEnoughTicketsText'), + color=(1, 0, 0), + ) + # gettickets.show_get_tickets_prompt() else: def do_it() -> None: @@ -703,12 +643,13 @@ class StoreBrowserWindow(bui.Window): assert bui.app.classic is not None purchased = bui.app.classic.accounts.have_pro() else: - purchased = plus.get_purchased(b_type) + purchased = plus.get_v1_account_product_purchased(b_type) sale_opacity = 0.0 sale_title_text: str | bui.Lstr = '' sale_time_text: str | bui.Lstr = '' + call: Callable | None if purchased: title_color = (0.8, 0.7, 0.9, 1.0) color = (0.63, 0.55, 0.78) @@ -915,11 +856,12 @@ class StoreBrowserWindow(bui.Window): ) if 'title' not in section: section['title'] = '' - section['x_offs'] = ( - 130 - if self._tab == 'extras' - else 270 if self._tab == 'maps' else 0 - ) + section['x_offs'] = 0.0 + # section['x_offs'] = ( + # 130 + # if self._tab == 'extras' + # else 270 if self._tab == 'maps' else 0 + # ) section['y_offs'] = ( 20 if ( @@ -951,7 +893,7 @@ class StoreBrowserWindow(bui.Window): title_spacing = 40 button_border = 20 button_spacing = 4 - boffs_h = 40 + boffs_h = 0.0 self._height = 80.0 # Calc total height. @@ -960,17 +902,16 @@ class StoreBrowserWindow(bui.Window): assert self._height is not None self._height += title_spacing b_width, b_height = section['button_size'] - b_column_count = int( - math.floor( - (self._width - boffs_h - 20) - / (b_width + button_spacing) - ) - ) - b_row_count = int( - math.ceil( - float(len(section['items'])) / b_column_count - ) + b_count = len(section['items']) + b_column_count = min( + b_count, + int( + math.floor( + self._width / (b_width + button_spacing) + ) + ), ) + b_row_count = int(math.ceil(b_count / b_column_count)) b_height_total = ( 2 * button_border + b_row_count * b_height @@ -985,7 +926,6 @@ class StoreBrowserWindow(bui.Window): size=(self._width, self._height), background=False, claims_left_right=True, - claims_tab=True, selection_loops_to_parent=True, ) v = self._height - 20 @@ -996,11 +936,7 @@ class StoreBrowserWindow(bui.Window): subs=[ ( '${SETTINGS}', - bui.Lstr( - resource=( - 'accountSettingsWindow.titleText' - ) - ), + bui.Lstr(resource='inventoryText'), ), ( '${PLAYER_PROFILES}', @@ -1085,12 +1021,15 @@ class StoreBrowserWindow(bui.Window): if section['title'] != '': bui.textwidget( parent=cnt2, - position=(60, v - title_spacing * 0.8), + position=( + self._width * 0.5, + v - title_spacing * 0.8, + ), size=(0, 0), scale=1.0, transition_delay=delay, color=(0.7, 0.9, 0.7, 1), - h_align='left', + h_align='center', v_align='center', text=bui.Lstr(resource=section['title']), maxwidth=self._width * 0.7, @@ -1100,12 +1039,15 @@ class StoreBrowserWindow(bui.Window): v -= button_border b_width, b_height = section['button_size'] b_count = len(section['items']) - b_column_count = int( - math.floor( - (self._width - boffs_h - 20) - / (b_width + button_spacing) - ) + b_column_count = min( + b_count, + int( + math.floor( + self._width / (b_width + button_spacing) + ) + ), ) + col = 0 item: dict[str, Any] assert self._store_window.button_infos is not None @@ -1116,15 +1058,17 @@ class StoreBrowserWindow(bui.Window): item['call'] = bui.WeakCall( self._store_window.buy, item_name ) - if 'x_offs' in section: - boffs_h2 = section['x_offs'] - else: - boffs_h2 = 0 + boffs_h2 = section.get('x_offs', 0.0) + boffs_v2 = section.get('y_offs', 0.0) + + # Calc the diff between the space we use and + # the space available and nudge us right by + # half that to center things. + boffs_h2 += 0.5 * ( + self._width + - ((b_width + button_spacing) * b_column_count) + ) - if 'y_offs' in section: - boffs_v2 = section['y_offs'] - else: - boffs_v2 = 0 b_pos = ( boffs_h + boffs_h2 @@ -1192,8 +1136,9 @@ class StoreBrowserWindow(bui.Window): v -= button_border - # Set a timer to update these buttons periodically as long - # as we're alive (so if we buy one it will grey out, etc). + # Set a timer to update these buttons periodically + # as long as we're alive (so if we buy one it will + # grey out, etc). self._store_window.update_buttons_timer = bui.AppTimer( 0.5, bui.WeakCall(self._store_window.update_buttons), @@ -1204,7 +1149,7 @@ class StoreBrowserWindow(bui.Window): self._store_window.update_buttons() if self._current_tab in ( - self.TabID.EXTRAS, + # self.TabID.EXTRAS, self.TabID.MINIGAMES, self.TabID.CHARACTERS, self.TabID.MAPS, @@ -1223,7 +1168,6 @@ class StoreBrowserWindow(bui.Window): size=(self._scroll_width, self._scroll_height * 0.95), background=False, claims_left_right=True, - claims_tab=True, selection_loops_to_parent=True, ) self._status_textwidget = bui.textwidget( @@ -1242,6 +1186,20 @@ class StoreBrowserWindow(bui.Window): maxwidth=self._scroll_width * 0.9, ) + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) + + @override + def on_main_window_close(self) -> None: + self._save_state() + def _save_state(self) -> None: try: sel = self._root_widget.get_selected_child() @@ -1250,9 +1208,7 @@ class StoreBrowserWindow(bui.Window): for tab_id, tab in self._tab_row.tabs.items() if sel == tab.button ] - if sel == self._get_tickets_button: - sel_name = 'GetTickets' - elif sel == self._scrollwidget: + if sel == self._scrollwidget: sel_name = 'Scroll' elif sel == self._back_button: sel_name = 'Back' @@ -1269,7 +1225,6 @@ class StoreBrowserWindow(bui.Window): logging.exception('Error saving state for %s.', self) def _restore_state(self) -> None: - from efro.util import enum_by_value try: sel: bui.Widget | None @@ -1280,32 +1235,26 @@ class StoreBrowserWindow(bui.Window): assert isinstance(sel_name, (str, type(None))) try: - current_tab = enum_by_value( - self.TabID, bui.app.config.get('Store Tab') - ) + current_tab = self.TabID(bui.app.config.get('Store Tab')) except ValueError: current_tab = self.TabID.CHARACTERS if self._show_tab is not None: current_tab = self._show_tab - if sel_name == 'GetTickets' and self._get_tickets_button: - sel = self._get_tickets_button - elif sel_name == 'Back': + if sel_name == 'Back': sel = self._back_button elif sel_name == 'Scroll': sel = self._scrollwidget elif isinstance(sel_name, str) and sel_name.startswith('Tab:'): try: - sel_tab_id = enum_by_value( - self.TabID, sel_name.split(':')[-1] - ) + sel_tab_id = self.TabID(sel_name.split(':')[-1]) except ValueError: sel_tab_id = self.TabID.CHARACTERS sel = self._tab_row.tabs[sel_tab_id].button else: sel = self._tab_row.tabs[current_tab].button - # If we were requested to show a tab, select it too.. + # If we were requested to show a tab, select it too. if ( self._show_tab is not None and self._show_tab in self._tab_row.tabs @@ -1317,68 +1266,13 @@ class StoreBrowserWindow(bui.Window): except Exception: logging.exception('Error restoring state for %s.', self) - def _on_get_more_tickets_press(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.account import show_sign_in_prompt - from bauiv1lib.gettickets import GetTicketsWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - plus = bui.app.plus - assert plus is not None - - if plus.get_v1_account_state() != 'signed_in': - show_sign_in_prompt() - return - self._save_state() - bui.containerwidget(edit=self._root_widget, transition='out_left') - window = GetTicketsWindow( - from_modal_store=self._modal, - store_back_location=self._back_location, - ).get_root_widget() - if not self._modal: - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - window, from_window=self._root_widget - ) - - def _back(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.coop.browser import CoopBrowserWindow - from bauiv1lib.mainmenu import MainMenuWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - self._save_state() - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - if not self._modal: - assert bui.app.classic is not None - if self._back_location == 'CoopBrowserWindow': - bui.app.ui_v1.set_main_menu_window( - CoopBrowserWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) - else: - bui.app.ui_v1.set_main_menu_window( - MainMenuWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) - if self._on_close_call is not None: - self._on_close_call() - def _check_merch_availability_in_bg_thread() -> None: # pylint: disable=cell-var-from-loop - # Merch is available from some countries only. - # Make a reasonable check to ask the master-server about this at - # launch and store the results. + # Merch is available from some countries only. Make a reasonable + # check to ask the master-server about this at launch and store the + # results. plus = bui.app.plus assert plus is not None @@ -1419,6 +1313,6 @@ def _check_merch_availability_in_bg_thread() -> None: # be kicking off work at module import time. if ( os.environ.get('BA_RUNNING_WITH_DUMMY_MODULES') != '1' - and bui.app.state is not bui.app.State.NOT_STARTED + and bui.app.state is not bui.AppState.NOT_STARTED ): Thread(target=_check_merch_availability_in_bg_thread, daemon=True).start() diff --git a/dist/ba_data/python/bauiv1lib/store/button.py b/dist/ba_data/python/bauiv1lib/store/button.py deleted file mode 100644 index f205035..0000000 --- a/dist/ba_data/python/bauiv1lib/store/button.py +++ /dev/null @@ -1,324 +0,0 @@ -# Released under the MIT License. See LICENSE for details. -# -"""UI functionality for a button leading to the store.""" -from __future__ import annotations - -import logging -from typing import TYPE_CHECKING - -from efro.util import utc_now - -import bauiv1 as bui - -if TYPE_CHECKING: - from typing import Any, Sequence, Callable - - -class StoreButton: - """A button leading to the store.""" - - def __init__( - self, - parent: bui.Widget, - position: Sequence[float], - size: Sequence[float], - scale: float, - on_activate_call: Callable[[], Any] | None = None, - transition_delay: float | None = None, - color: Sequence[float] | None = None, - textcolor: Sequence[float] | None = None, - show_tickets: bool = False, - button_type: str | None = None, - sale_scale: float = 1.0, - ): - self._position = position - self._size = size - self._scale = scale - - if on_activate_call is None: - on_activate_call = bui.WeakCall(self._default_on_activate_call) - self._on_activate_call = on_activate_call - - self._button = bui.buttonwidget( - parent=parent, - size=size, - label='' if show_tickets else bui.Lstr(resource='storeText'), - scale=scale, - autoselect=True, - on_activate_call=self._on_activate, - transition_delay=transition_delay, - color=color, - button_type=button_type, - ) - - self._title_text: bui.Widget | None - self._ticket_text: bui.Widget | None - - if show_tickets: - self._title_text = bui.textwidget( - parent=parent, - position=( - position[0] + size[0] * 0.5 * scale, - position[1] + size[1] * 0.65 * scale, - ), - size=(0, 0), - h_align='center', - v_align='center', - maxwidth=size[0] * scale * 0.65, - text=bui.Lstr(resource='storeText'), - draw_controller=self._button, - scale=scale, - transition_delay=transition_delay, - color=textcolor, - ) - self._ticket_text = bui.textwidget( - parent=parent, - size=(0, 0), - h_align='center', - v_align='center', - maxwidth=size[0] * scale * 0.85, - text='', - color=(0.2, 1.0, 0.2), - flatness=1.0, - shadow=0.0, - scale=scale * 0.6, - transition_delay=transition_delay, - ) - else: - self._title_text = None - self._ticket_text = None - - self._circle_rad = 12 * scale - self._circle_center = (0.0, 0.0) - self._sale_circle_center = (0.0, 0.0) - - self._available_purchase_backing = bui.imagewidget( - parent=parent, - color=(1, 0, 0), - draw_controller=self._button, - size=(2.2 * self._circle_rad, 2.2 * self._circle_rad), - texture=bui.gettexture('circleShadow'), - transition_delay=transition_delay, - ) - self._available_purchase_text = bui.textwidget( - parent=parent, - size=(0, 0), - h_align='center', - v_align='center', - text='', - draw_controller=self._button, - color=(1, 1, 1), - flatness=1.0, - shadow=1.0, - scale=0.6 * scale, - maxwidth=self._circle_rad * 1.4, - transition_delay=transition_delay, - ) - - self._sale_circle_rad = 18 * scale * sale_scale - self._sale_backing = bui.imagewidget( - parent=parent, - color=(0.5, 0, 1.0), - draw_controller=self._button, - size=(2 * self._sale_circle_rad, 2 * self._sale_circle_rad), - texture=bui.gettexture('circleZigZag'), - transition_delay=transition_delay, - ) - self._sale_title_text = bui.textwidget( - parent=parent, - size=(0, 0), - h_align='center', - v_align='center', - draw_controller=self._button, - color=(0, 1, 0), - flatness=1.0, - shadow=0.0, - scale=0.5 * scale * sale_scale, - maxwidth=self._sale_circle_rad * 1.5, - transition_delay=transition_delay, - ) - self._sale_time_text = bui.textwidget( - parent=parent, - size=(0, 0), - h_align='center', - v_align='center', - draw_controller=self._button, - color=(0, 1, 0), - flatness=1.0, - shadow=0.0, - scale=0.4 * scale * sale_scale, - maxwidth=self._sale_circle_rad * 1.5, - transition_delay=transition_delay, - ) - - self.set_position(position) - self._update_timer = bui.AppTimer( - 1.0, bui.WeakCall(self._update), repeat=True - ) - self._update() - - def _on_activate(self) -> None: - bui.increment_analytics_count('Store button press') - self._on_activate_call() - - def set_position(self, position: Sequence[float]) -> None: - """Set the button position.""" - self._position = position - self._circle_center = ( - position[0] + 0.1 * self._size[0] * self._scale, - position[1] + self._size[1] * self._scale * 0.8, - ) - self._sale_circle_center = ( - position[0] + 0.07 * self._size[0] * self._scale, - position[1] + self._size[1] * self._scale * 0.8, - ) - - if not self._button: - return - bui.buttonwidget(edit=self._button, position=self._position) - if self._title_text is not None: - bui.textwidget( - edit=self._title_text, - position=( - self._position[0] + self._size[0] * 0.5 * self._scale, - self._position[1] + self._size[1] * 0.65 * self._scale, - ), - ) - if self._ticket_text is not None: - bui.textwidget( - edit=self._ticket_text, - position=( - position[0] + self._size[0] * 0.5 * self._scale, - position[1] + self._size[1] * 0.28 * self._scale, - ), - size=(0, 0), - ) - bui.imagewidget( - edit=self._available_purchase_backing, - position=( - self._circle_center[0] - self._circle_rad * 1.02, - self._circle_center[1] - self._circle_rad * 1.13, - ), - ) - bui.textwidget( - edit=self._available_purchase_text, position=self._circle_center - ) - - bui.imagewidget( - edit=self._sale_backing, - position=( - self._sale_circle_center[0] - self._sale_circle_rad, - self._sale_circle_center[1] - self._sale_circle_rad, - ), - ) - bui.textwidget( - edit=self._sale_title_text, - position=( - self._sale_circle_center[0], - self._sale_circle_center[1] + self._sale_circle_rad * 0.3, - ), - ) - bui.textwidget( - edit=self._sale_time_text, - position=( - self._sale_circle_center[0], - self._sale_circle_center[1] - self._sale_circle_rad * 0.3, - ), - ) - - def _default_on_activate_call(self) -> None: - # pylint: disable=cyclic-import - from bauiv1lib.account import show_sign_in_prompt - from bauiv1lib.store.browser import StoreBrowserWindow - - plus = bui.app.plus - assert plus is not None - if plus.get_v1_account_state() != 'signed_in': - show_sign_in_prompt() - return - StoreBrowserWindow(modal=True, origin_widget=self._button) - - def get_button(self) -> bui.Widget: - """Return the underlying button widget.""" - return self._button - - def _update(self) -> None: - # pylint: disable=too-many-branches - # pylint: disable=cyclic-import - from babase import SpecialChar - - plus = bui.app.plus - assert plus is not None - assert bui.app.classic is not None - store = bui.app.classic.store - - if not self._button: - return # Our instance may outlive our UI objects. - - if self._ticket_text is not None: - if plus.get_v1_account_state() == 'signed_in': - sval = bui.charstr(SpecialChar.TICKET) + str( - plus.get_v1_account_ticket_count() - ) - else: - sval = '-' - bui.textwidget(edit=self._ticket_text, text=sval) - available_purchases = store.get_available_purchase_count() - - # Old pro sale stuff.. - sale_time = store.get_available_sale_time('extras') - - # ..also look for new style sales. - if sale_time is None: - import datetime - - sales_raw = plus.get_v1_account_misc_read_val('sales', {}) - sale_times = [] - try: - # Look at the current set of sales; filter any with time - # remaining that we don't own. - for sale_item, sale_info in list(sales_raw.items()): - if not plus.get_purchased(sale_item): - to_end = ( - datetime.datetime.fromtimestamp( - sale_info['e'], datetime.UTC - ) - - utc_now() - ).total_seconds() - if to_end > 0: - sale_times.append(to_end) - except Exception: - logging.exception('Error parsing sales.') - if sale_times: - sale_time = int(min(sale_times) * 1000) - - if sale_time is not None: - bui.textwidget( - edit=self._sale_title_text, - text=bui.Lstr(resource='store.saleText'), - ) - bui.textwidget( - edit=self._sale_time_text, - text=bui.timestring(sale_time / 1000.0, centi=False), - ) - bui.imagewidget(edit=self._sale_backing, opacity=1.0) - bui.imagewidget(edit=self._available_purchase_backing, opacity=1.0) - bui.textwidget(edit=self._available_purchase_text, text='') - bui.imagewidget(edit=self._available_purchase_backing, opacity=0.0) - else: - bui.imagewidget(edit=self._sale_backing, opacity=0.0) - bui.textwidget(edit=self._sale_time_text, text='') - bui.textwidget(edit=self._sale_title_text, text='') - if available_purchases > 0: - bui.textwidget( - edit=self._available_purchase_text, - text=str(available_purchases), - ) - bui.imagewidget( - edit=self._available_purchase_backing, opacity=1.0 - ) - else: - bui.textwidget(edit=self._available_purchase_text, text='') - bui.imagewidget( - edit=self._available_purchase_backing, opacity=0.0 - ) diff --git a/dist/ba_data/python/bauiv1lib/store/item.py b/dist/ba_data/python/bauiv1lib/store/item.py index ee779cb..ca27e16 100644 --- a/dist/ba_data/python/bauiv1lib/store/item.py +++ b/dist/ba_data/python/bauiv1lib/store/item.py @@ -19,6 +19,7 @@ def instantiate_store_item_display( b_pos: tuple[float, float], b_width: float, b_height: float, + *, boffs_h: float = 0.0, boffs_h2: float = 0.0, boffs_v2: float = 0, @@ -26,6 +27,7 @@ def instantiate_store_item_display( button: bool = True, ) -> None: """(internal)""" + # pylint: disable=too-many-positional-arguments # pylint: disable=too-many-statements # pylint: disable=too-many-branches # pylint: disable=too-many-locals @@ -74,7 +76,7 @@ def instantiate_store_item_display( tint_color = None tint2_color = None tex_name: str | None = None - desc: str | None = None + desc: bui.Lstr | None = None modes: bui.Lstr | None = None if item_name.startswith('characters.'): @@ -149,6 +151,30 @@ def instantiate_store_item_display( base_text_scale = 0.8 title_v = 0.48 price_v = 0.17 + elif item_name == 'upgrades.infinite_runaround': + base_text_scale = 0.8 + desc = bui.Lstr( + translate=( + 'gameDescriptions', + 'Prevent enemies from reaching the exit.', + ) + ) + modes = bui.Lstr(resource='playModes.coopText') + tex_name = 'towerDPreview' + title_v = 0.48 + price_v = 0.17 + elif item_name == 'upgrades.infinite_onslaught': + base_text_scale = 0.8 + desc = bui.Lstr( + translate=( + 'gameDescriptions', + 'Defeat all enemies.', + ) + ) + modes = bui.Lstr(resource='playModes.coopText') + tex_name = 'doomShroomPreview' + title_v = 0.48 + price_v = 0.17 elif item_name.startswith('icons.'): base_text_scale = 1.5 @@ -510,7 +536,10 @@ def instantiate_store_item_display( texture=bui.gettexture(tex_name), ) - if item_name.startswith('games.'): + if item_name.startswith('games.') or item_name in ( + 'upgrades.infinite_runaround', + 'upgrades.infinite_onslaught', + ): frame_size = b_width * 0.8 im_dim = frame_size * (100.0 / 113.0) im_pos = ( diff --git a/dist/ba_data/python/bauiv1lib/tabs.py b/dist/ba_data/python/bauiv1lib/tabs.py index ffb0cff..9e01cfa 100644 --- a/dist/ba_data/python/bauiv1lib/tabs.py +++ b/dist/ba_data/python/bauiv1lib/tabs.py @@ -5,7 +5,7 @@ from __future__ import annotations from dataclasses import dataclass -from typing import TYPE_CHECKING, TypeVar, Generic +from typing import TYPE_CHECKING import bauiv1 as bui @@ -22,10 +22,7 @@ class Tab: size: tuple[float, float] -T = TypeVar('T') - - -class TabRow(Generic[T]): +class TabRow[T]: """Encapsulates a row of tab-styled buttons. Tabs are indexed by id which is an arbitrary user-provided type. @@ -37,6 +34,7 @@ class TabRow(Generic[T]): tabdefs: list[tuple[T, bui.Lstr]], pos: tuple[float, float], size: tuple[float, float], + *, on_select_call: Callable[[T], None] | None = None, ) -> None: if not tabdefs: @@ -71,12 +69,12 @@ class TabRow(Generic[T]): bui.buttonwidget( edit=tab.button, color=(0.5, 0.4, 0.93), - textcolor=(0.85, 0.75, 0.95), + textcolor=(0.82, 0.72, 0.92), ) # lit else: bui.buttonwidget( edit=tab.button, - color=(0.52, 0.48, 0.63), + color=(0.50, 0.44, 0.63), textcolor=(0.65, 0.6, 0.7), ) # unlit diff --git a/dist/ba_data/python/bauiv1lib/tournamententry.py b/dist/ba_data/python/bauiv1lib/tournamententry.py index 972fddc..550beaf 100644 --- a/dist/ba_data/python/bauiv1lib/tournamententry.py +++ b/dist/ba_data/python/bauiv1lib/tournamententry.py @@ -28,11 +28,13 @@ class TournamentEntryWindow(PopupWindow): offset: tuple[float, float] = (0.0, 0.0), on_close_call: Callable[[], Any] | None = None, ): - # Needs some tidying. + # pylint: disable=too-many-positional-arguments # pylint: disable=too-many-locals # pylint: disable=too-many-branches # pylint: disable=too-many-statements + from bauiv1lib.coop.tournamentbutton import USE_ENTRY_FEES + assert bui.app.classic is not None assert bui.app.plus bui.set_analytics_screen('Tournament Entry Window') @@ -42,9 +44,15 @@ class TournamentEntryWindow(PopupWindow): self._tournament_id ] + self._purchase_name: str | None + self._purchase_price_name: str | None + # Set a few vars depending on the tourney fee. self._fee = self._tournament_info['fee'] - self._allow_ads = self._tournament_info['allowAds'] + assert isinstance(self._fee, int | None) + self._allow_ads = ( + self._tournament_info['allowAds'] if USE_ENTRY_FEES else False + ) if self._fee == 4: self._purchase_name = 'tournament_entry_4' self._purchase_price_name = 'price.tournament_entry_4' @@ -57,6 +65,9 @@ class TournamentEntryWindow(PopupWindow): elif self._fee == 1: self._purchase_name = 'tournament_entry_1' self._purchase_price_name = 'price.tournament_entry_1' + elif self._fee is None or self._fee == -1: + self._purchase_name = None + self._purchase_price_name = 'FREE-WOOT' else: if self._fee != 0: raise ValueError('invalid fee: ' + str(self._fee)) @@ -100,7 +111,7 @@ class TournamentEntryWindow(PopupWindow): scale=scale, bg_color=bg_color, offset=offset, - toolbar_visibility='menu_currency', + toolbar_visibility='menu_store_no_back', ) self._last_ad_press_time = -9999.0 @@ -135,7 +146,8 @@ class TournamentEntryWindow(PopupWindow): scale=0.6, text=bui.Lstr(resource='tournamentEntryText'), maxwidth=180, - color=(1, 1, 1, 0.4), + # color=(1, 1, 1, 0.4), + color=bui.app.ui_v1.title_color, ) btn = self._pay_with_tickets_button = bui.buttonwidget( @@ -218,7 +230,7 @@ class TournamentEntryWindow(PopupWindow): h_align='center', v_align='center', scale=0.6, - # Note: AdMob now requires rewarded ad usage + # Note to self: AdMob requires rewarded ad usage # specifically says 'Ad' in it. text=bui.Lstr(resource='watchAnAdText'), maxwidth=95, @@ -273,28 +285,6 @@ class TournamentEntryWindow(PopupWindow): self._get_tickets_button: bui.Widget | None = None self._ticket_count_text: bui.Widget | None = None - if not bui.app.ui_v1.use_toolbars: - if bui.app.classic.allow_ticket_purchases: - self._get_tickets_button = bui.buttonwidget( - parent=self.root_widget, - position=(self._width - 190 + 105, self._height - 34), - autoselect=True, - scale=0.5, - size=(120, 60), - textcolor=(0.2, 1, 0.2), - label=bui.charstr(bui.SpecialChar.TICKET), - color=(0.65, 0.5, 0.8), - on_activate_call=self._on_get_tickets_press, - ) - else: - self._ticket_count_text = bui.textwidget( - parent=self.root_widget, - scale=0.5, - position=(self._width - 190 + 125, self._height - 34), - color=(0.2, 1, 0.2), - h_align='center', - v_align='center', - ) self._seconds_remaining = None @@ -461,29 +451,52 @@ class TournamentEntryWindow(PopupWindow): ) # Keep price up-to-date and update the button with it. - self._purchase_price = plus.get_v1_account_misc_read_val( - self._purchase_price_name, None - ) + if self._purchase_price_name is not None: + self._purchase_price = ( + 0 + if self._purchase_price_name == 'FREE-WOOT' + else plus.get_v1_account_misc_read_val( + self._purchase_price_name, None + ) + ) + # HACK - this is always free now, so just have this say 'PLAY' bui.textwidget( edit=self._ticket_cost_text, text=( - bui.Lstr(resource='getTicketsWindow.freeText') - if self._purchase_price == 0 - else bui.Lstr( - resource='getTicketsWindow.ticketsText', - subs=[ - ( - '${COUNT}', - ( - str(self._purchase_price) - if self._purchase_price is not None - else '?' - ), - ) - ], - ) + bui.Lstr(resource='playText') + # if self._purchase_price == 0 + # else bui.Lstr( + # resource='getTicketsWindow.ticketsText', + # subs=[ + # ( + # '${COUNT}', + # ( + # str(self._purchase_price) + # if self._purchase_price is not None + # else '?' + # ), + # ) + # ], + # ) ), + # text=( + # bui.Lstr(resource='getTicketsWindow.freeText') + # if self._purchase_price == 0 + # else bui.Lstr( + # resource='getTicketsWindow.ticketsText', + # subs=[ + # ( + # '${COUNT}', + # ( + # str(self._purchase_price) + # if self._purchase_price is not None + # else '?' + # ), + # ) + # ], + # ) + # ), position=( self._ticket_cost_text_position_free if self._purchase_price == 0 @@ -494,19 +507,20 @@ class TournamentEntryWindow(PopupWindow): bui.textwidget( edit=self._free_plays_remaining_text, - text=( - '' - if ( - self._tournament_info['freeTriesRemaining'] in [None, 0] - or self._purchase_price != 0 - ) - else '' + str(self._tournament_info['freeTriesRemaining']) - ), + # text=( + # '' + # if ( + # self._tournament_info['freeTriesRemaining'] in [None, 0] + # or self._purchase_price != 0 + # ) + # else '' + str(self._tournament_info['freeTriesRemaining']) + # ), + text='', # No longer relevant. ) bui.imagewidget( edit=self._ticket_img, - opacity=0.2 if self._purchase_price == 0 else 1.0, + opacity=0.0 if self._purchase_price == 0 else 1.0, position=( self._ticket_img_pos_free if self._purchase_price == 0 @@ -569,15 +583,16 @@ class TournamentEntryWindow(PopupWindow): self._launched = True launched = False - # If they gave us an existing, non-consistent - # practice activity, just restart it. + # If they gave us an existing, non-consistent practice activity, + # just restart it. if ( self._tournament_activity is not None and not practice == self._tournament_activity.session.submit_score ): try: if not practice: - bui.apptimer(0.1, bui.getsound('cashRegister').play) + bui.apptimer(0.1, bui.getsound('drumRollShort').play) + # bui.apptimer(0.1, bui.getsound('cashRegister').play) bui.screenmessage( bui.Lstr( translate=( @@ -606,7 +621,8 @@ class TournamentEntryWindow(PopupWindow): # launch a new session. if not launched: if not practice: - bui.apptimer(0.1, bui.getsound('cashRegister').play) + bui.apptimer(0.1, bui.getsound('drumRollShort').play) + # bui.apptimer(0.1, bui.getsound('cashRegister').play) bui.screenmessage( bui.Lstr( translate=('serverResponses', 'Entering tournament...') @@ -632,7 +648,7 @@ class TournamentEntryWindow(PopupWindow): bui.apptimer(0 if practice else 1.25, self._transition_out) def _on_pay_with_tickets_press(self) -> None: - from bauiv1lib import gettickets + # from bauiv1lib import gettickets plus = bui.app.plus assert plus is not None @@ -675,15 +691,21 @@ class TournamentEntryWindow(PopupWindow): ticket_count = None ticket_cost = self._purchase_price if ticket_count is not None and ticket_count < ticket_cost: - gettickets.show_get_tickets_prompt() bui.getsound('error').play() + bui.screenmessage( + bui.Lstr(resource='notEnoughTicketsText'), + color=(1, 0, 0), + ) + # gettickets.show_get_tickets_prompt() self._transition_out() return cur_time = bui.apptime() self._last_ticket_press_time = cur_time - assert isinstance(ticket_cost, int) - plus.in_game_purchase(self._purchase_name, ticket_cost) + + if self._purchase_name is not None: + assert isinstance(ticket_cost, int) + plus.in_game_purchase(self._purchase_name, ticket_cost) self._entering = True plus.add_v1_account_transaction( @@ -763,7 +785,7 @@ class TournamentEntryWindow(PopupWindow): # This should have awarded us the tournament_entry_ad purchase; # make sure that's present. # (otherwise the server will ignore our tournament entry anyway) - if not plus.get_purchased('tournament_entry_ad'): + if not plus.get_v1_account_product_purchased('tournament_entry_ad'): print('no tournament_entry_ad purchase present in _on_ad_complete') bui.screenmessage(bui.Lstr(resource='errorText'), color=(1, 0, 0)) bui.getsound('error').play() @@ -780,30 +802,20 @@ class TournamentEntryWindow(PopupWindow): plus.run_v1_account_transactions() self._launch() - def _on_get_tickets_press(self) -> None: - from bauiv1lib import gettickets - - # If we're already entering, ignore presses. - if self._entering: - return - - # Bring up get-tickets window and then kill ourself (we're on the - # overlay layer so we'd show up above it). - gettickets.GetTicketsWindow( - modal=True, origin_widget=self._get_tickets_button - ) - self._transition_out() - def _on_cancel(self) -> None: plus = bui.app.plus assert plus is not None # Don't allow canceling for several seconds after poking an enter # button if it looks like we're waiting on a purchase or entering # the tournament. - if (bui.apptime() - self._last_ticket_press_time < 6.0) and ( - plus.have_outstanding_v1_account_transactions() - or plus.get_purchased(self._purchase_name) - or self._entering + if ( + (bui.apptime() - self._last_ticket_press_time < 6.0) + and self._purchase_name is not None + and ( + plus.have_outstanding_v1_account_transactions() + or plus.get_v1_account_product_purchased(self._purchase_name) + or self._entering + ) ): bui.getsound('error').play() return diff --git a/dist/ba_data/python/bauiv1lib/tournamentscores.py b/dist/ba_data/python/bauiv1lib/tournamentscores.py index e4be2db..b504c1d 100644 --- a/dist/ba_data/python/bauiv1lib/tournamentscores.py +++ b/dist/ba_data/python/bauiv1lib/tournamentscores.py @@ -21,33 +21,21 @@ class TournamentScoresWindow(PopupWindow): def __init__( self, tournament_id: str, - tournament_activity: bs.GameActivity | None = None, + *, position: tuple[float, float] = (0.0, 0.0), - scale: float | None = None, - offset: tuple[float, float] = (0.0, 0.0), - tint_color: Sequence[float] = (1.0, 1.0, 1.0), - tint2_color: Sequence[float] = (1.0, 1.0, 1.0), - selected_character: str | None = None, - on_close_call: Callable[[], Any] | None = None, ): plus = bui.app.plus assert plus is not None - del tournament_activity # unused arg - del tint_color # unused arg - del tint2_color # unused arg - del selected_character # unused arg self._tournament_id = tournament_id self._subcontainer: bui.Widget | None = None - self._on_close_call = on_close_call assert bui.app.classic is not None uiscale = bui.app.ui_v1.uiscale - if scale is None: - scale = ( - 2.3 - if uiscale is bui.UIScale.SMALL - else 1.65 if uiscale is bui.UIScale.MEDIUM else 1.23 - ) + scale = ( + 2.3 + if uiscale is bui.UIScale.SMALL + else 1.65 if uiscale is bui.UIScale.MEDIUM else 1.23 + ) self._transitioning_out = False self._width = 400 @@ -59,13 +47,12 @@ class TournamentScoresWindow(PopupWindow): bg_color = (0.5, 0.4, 0.6) - # creates our _root_widget + # Creates our _root_widget. super().__init__( position=position, size=(self._width, self._height), scale=scale, bg_color=bg_color, - offset=offset, ) self._cancel_button = bui.buttonwidget( @@ -90,7 +77,7 @@ class TournamentScoresWindow(PopupWindow): scale=0.6, text=bui.Lstr(resource='tournamentStandingsText'), maxwidth=200, - color=(1, 1, 1, 0.4), + color=bui.app.ui_v1.title_color, ) self._scrollwidget = bui.scrollwidget( @@ -99,16 +86,20 @@ class TournamentScoresWindow(PopupWindow): position=(30, 30), highlight=False, simple_culling_v=10, + border_opacity=0.4, ) bui.widget(edit=self._scrollwidget, autoselect=True) + self._loading_spinner = bui.spinnerwidget( + parent=self.root_widget, + position=(self._width * 0.5, self._height * 0.5), + style='bomb', + size=48, + ) self._loading_text = bui.textwidget( parent=self._scrollwidget, scale=0.5, - text=bui.Lstr( - value='${A}...', - subs=[('${A}', bui.Lstr(resource='loadingText'))], - ), + text='', size=(self._width - 60, 100), h_align='center', v_align='center', @@ -131,10 +122,12 @@ class TournamentScoresWindow(PopupWindow): self, data: dict[str, Any] | None ) -> None: if data is not None: - # this used to be the whole payload + # This used to be the whole payload. data_t: list[dict[str, Any]] = data['t'] - # kill our loading text if we've got scores.. otherwise just - # replace it with 'no scores yet' + + # Kill our loading text if we've got scores; otherwise just + # replace it with 'no scores yet'. + bui.spinnerwidget(edit=self._loading_spinner, visible=False) if data_t[0]['scores']: self._loading_text.delete() else: @@ -218,7 +211,8 @@ class TournamentScoresWindow(PopupWindow): def _show_player_info(self, entry: Any, textwidget: bui.Widget) -> None: from bauiv1lib.account.viewer import AccountViewerWindow - # for the moment we only work if a single player-info is present.. + # For the moment we only work if a single player-info is + # present. if len(entry[2]) != 1: bui.getsound('error').play() return @@ -237,8 +231,6 @@ class TournamentScoresWindow(PopupWindow): if not self._transitioning_out: self._transitioning_out = True bui.containerwidget(edit=self.root_widget, transition='out_scale') - if self._on_close_call is not None: - self._on_close_call() @override def on_popup_cancel(self) -> None: diff --git a/dist/ba_data/python/bauiv1lib/trophies.py b/dist/ba_data/python/bauiv1lib/trophies.py index a7982f6..25cea2a 100644 --- a/dist/ba_data/python/bauiv1lib/trophies.py +++ b/dist/ba_data/python/bauiv1lib/trophies.py @@ -32,8 +32,8 @@ class TrophiesWindow(popup.PopupWindow): else 1.65 if uiscale is bui.UIScale.MEDIUM else 1.23 ) self._transitioning_out = False - self._width = 300 - self._height = 300 + self._width = 310 + self._height = 310 bg_color = (0.5, 0.4, 0.6) super().__init__( @@ -65,7 +65,8 @@ class TrophiesWindow(popup.PopupWindow): scale=0.6, text=bui.Lstr(resource='trophiesText'), maxwidth=200, - color=(1, 1, 1, 0.4), + # color=(1, 1, 1, 0.4), + color=bui.app.ui_v1.title_color, ) self._scrollwidget = bui.scrollwidget( @@ -73,6 +74,7 @@ class TrophiesWindow(popup.PopupWindow): size=(self._width - 60, self._height - 70), position=(30, 30), capture_arrows=True, + border_opacity=0.4, ) bui.widget(edit=self._scrollwidget, autoselect=True) @@ -134,6 +136,7 @@ class TrophiesWindow(popup.PopupWindow): sub_width: int, trophy_types: list[list[str]], ) -> int: + # pylint: disable=too-many-positional-arguments from bascenev1 import get_trophy_string total_pts = 0 diff --git a/dist/ba_data/python/bauiv1lib/v2upgrade.py b/dist/ba_data/python/bauiv1lib/v2upgrade.py index 1ce5b3b..381500e 100644 --- a/dist/ba_data/python/bauiv1lib/v2upgrade.py +++ b/dist/ba_data/python/bauiv1lib/v2upgrade.py @@ -11,7 +11,6 @@ class V2UpgradeWindow(bui.Window): """A window presenting a URL to the user visually.""" def __init__(self, login_name: str, code: str): - from bauiv1lib.account.settings import show_what_is_v2_page app = bui.app assert app.classic is not None @@ -116,3 +115,12 @@ class V2UpgradeWindow(bui.Window): def _done(self) -> None: bui.containerwidget(edit=self._root_widget, transition='out_left') + + +def show_what_is_v2_page() -> None: + """Show the webpage describing V2 accounts.""" + plus = bui.app.plus + assert plus is not None + + bamasteraddr = plus.get_master_server_address(version=2) + bui.open_url(f'{bamasteraddr}/whatisv2') diff --git a/dist/ba_data/python/bauiv1lib/watch.py b/dist/ba_data/python/bauiv1lib/watch.py index 84ef3c8..8663766 100644 --- a/dist/ba_data/python/bauiv1lib/watch.py +++ b/dist/ba_data/python/bauiv1lib/watch.py @@ -7,7 +7,7 @@ from __future__ import annotations import os import logging from enum import Enum -from typing import TYPE_CHECKING, cast +from typing import TYPE_CHECKING, cast, override import bascenev1 as bs import bauiv1 as bui @@ -16,7 +16,7 @@ if TYPE_CHECKING: from typing import Any -class WatchWindow(bui.Window): +class WatchWindow(bui.MainWindow): """Window for watching replays.""" class TabID(Enum): @@ -31,20 +31,9 @@ class WatchWindow(bui.Window): origin_widget: bui.Widget | None = None, ): # pylint: disable=too-many-locals - # pylint: disable=too-many-statements from bauiv1lib.tabs import TabRow bui.set_analytics_screen('Watch Window') - scale_origin: tuple[float, float] | None - if origin_widget is not None: - self._transition_out = 'out_scale' - scale_origin = origin_widget.get_screen_space_center() - transition = 'in_scale' - else: - self._transition_out = 'out_right' - scale_origin = None - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_location('Watch') self._tab_data: dict[str, Any] = {} self._my_replays_scroll_width: float | None = None self._my_replays_watch_replay_button: bui.Widget | None = None @@ -56,68 +45,89 @@ class WatchWindow(bui.Window): self._r = 'watchWindow' uiscale = bui.app.ui_v1.uiscale self._width = 1440 if uiscale is bui.UIScale.SMALL else 1040 - x_inset = 200 if uiscale is bui.UIScale.SMALL else 0 self._height = ( - 578 + 900 if uiscale is bui.UIScale.SMALL else 670 if uiscale is bui.UIScale.MEDIUM else 800 ) self._current_tab: WatchWindow.TabID | None = None - extra_top = 20 if uiscale is bui.UIScale.SMALL else 0 + + # Do some fancy math to fill all available screen area up to the + # size of our backing container. This lets us fit to the exact + # screen shape at small ui scale. + screensize = bui.get_virtual_screen_size() + scale = ( + 1.5 + if uiscale is bui.UIScale.SMALL + else 0.85 if uiscale is bui.UIScale.MEDIUM else 0.65 + ) + # Calc screen size in our local container space and clamp to a + # bit smaller than our container size. + target_width = min(self._width - 120, screensize[0] / scale) + target_height = min(self._height - 120, screensize[1] / scale) + + # To get top/left coords, go to the center of our window and + # offset by half the width/height of our target area. + self.yoffs = 0.5 * self._height + 0.5 * target_height + 30.0 + + self._scroll_width = target_width + self._scroll_height = target_height - 55 + self._scroll_y = self.yoffs - 85 - self._scroll_height super().__init__( root_widget=bui.containerwidget( - size=(self._width, self._height + extra_top), - transition=transition, - toolbar_visibility='menu_minimal', - scale_origin_stack_offset=scale_origin, - scale=( - 1.3 + size=(self._width, self._height), + toolbar_visibility=( + 'menu_minimal' if uiscale is bui.UIScale.SMALL - else 0.97 if uiscale is bui.UIScale.MEDIUM else 0.8 + else 'menu_full' ), - stack_offset=( - (0, -10) - if uiscale is bui.UIScale.SMALL - else (0, 15) if uiscale is bui.UIScale.MEDIUM else (0, 0) - ), - ) + scale=scale, + ), + transition=transition, + origin_widget=origin_widget, + # We're affected by screen size only at small ui-scale. + refresh_on_screen_size_changes=uiscale is bui.UIScale.SMALL, ) - if uiscale is bui.UIScale.SMALL and bui.app.ui_v1.use_toolbars: + if uiscale is bui.UIScale.SMALL: bui.containerwidget( - edit=self._root_widget, on_cancel_call=self._back + edit=self._root_widget, on_cancel_call=self.main_window_back ) self._back_button = None else: self._back_button = btn = bui.buttonwidget( parent=self._root_widget, autoselect=True, - position=(70 + x_inset, self._height - 74), - size=(140, 60), + position=(70, self.yoffs - 50), + size=(60, 60), scale=1.1, - label=bui.Lstr(resource='backText'), - button_type='back', - on_activate_call=self._back, + label=bui.charstr(bui.SpecialChar.BACK), + button_type='backSmall', + on_activate_call=self.main_window_back, ) bui.containerwidget(edit=self._root_widget, cancel_button=btn) - bui.buttonwidget( - edit=btn, - button_type='backSmall', - size=(60, 60), - label=bui.charstr(bui.SpecialChar.BACK), - ) bui.textwidget( parent=self._root_widget, - position=(self._width * 0.5, self._height - 38), + position=( + ( + self._width * 0.5 + + ( + (self._scroll_width * -0.5 + 93) + if uiscale is bui.UIScale.SMALL + else 0 + ) + ), + self.yoffs - (63 if uiscale is bui.UIScale.SMALL else 10), + ), size=(0, 0), color=bui.app.ui_v1.title_color, - scale=1.5, - h_align='center', + scale=1.3 if uiscale is bui.UIScale.SMALL else 1.5, + h_align='left' if uiscale is bui.UIScale.SMALL else 'center', v_align='center', text=bui.Lstr(resource=f'{self._r}.titleText'), - maxwidth=400, + maxwidth=200, ) tabdefs = [ @@ -125,55 +135,62 @@ class WatchWindow(bui.Window): self.TabID.MY_REPLAYS, bui.Lstr(resource=f'{self._r}.myReplaysText'), ), - # (self.TabID.TEST_TAB, bui.Lstr(value='Testing')), ] - scroll_buffer_h = 130 + 2 * x_inset - tab_buffer_h = 750 + 2 * x_inset + tab_bar_width = 200.0 * len(tabdefs) + tab_bar_inset = (self._scroll_width - tab_bar_width) * 0.5 self._tab_row = TabRow( self._root_widget, tabdefs, - pos=(tab_buffer_h * 0.5, self._height - 130), - size=(self._width - tab_buffer_h, 50), + pos=( + self._width * 0.5 - self._scroll_width * 0.5 + tab_bar_inset, + self._scroll_y + self._scroll_height - 4.0, + ), + size=(self._scroll_width - 2.0 * tab_bar_inset, 50), on_select_call=self._set_tab, ) - if bui.app.ui_v1.use_toolbars: - first_tab = self._tab_row.tabs[tabdefs[0][0]] - last_tab = self._tab_row.tabs[tabdefs[-1][0]] - bui.widget( - edit=last_tab.button, - right_widget=bui.get_special_widget('party_button'), - ) - if uiscale is bui.UIScale.SMALL: - bbtn = bui.get_special_widget('back_button') - bui.widget( - edit=first_tab.button, up_widget=bbtn, left_widget=bbtn - ) - - self._scroll_width = self._width - scroll_buffer_h - self._scroll_height = self._height - 180 + first_tab = self._tab_row.tabs[tabdefs[0][0]] + last_tab = self._tab_row.tabs[tabdefs[-1][0]] + bui.widget( + edit=last_tab.button, + right_widget=bui.get_special_widget('squad_button'), + ) + if uiscale is bui.UIScale.SMALL: + bbtn = bui.get_special_widget('back_button') + bui.widget(edit=first_tab.button, up_widget=bbtn, left_widget=bbtn) # Not actually using a scroll widget anymore; just an image. - scroll_left = (self._width - self._scroll_width) * 0.5 - scroll_bottom = self._height - self._scroll_height - 79 - 48 - buffer_h = 10 - buffer_v = 4 bui.imagewidget( parent=self._root_widget, - position=(scroll_left - buffer_h, scroll_bottom - buffer_v), - size=( - self._scroll_width + 2 * buffer_h, - self._scroll_height + 2 * buffer_v, + size=(self._scroll_width, self._scroll_height), + position=( + self._width * 0.5 - self._scroll_width * 0.5, + self._scroll_y, ), texture=bui.gettexture('scrollWidget'), mesh_transparent=bui.getmesh('softEdgeOutside'), + opacity=0.4, ) self._tab_container: bui.Widget | None = None self._restore_state() + @override + def get_main_window_state(self) -> bui.MainWindowState: + # Support recreating our window for back/refresh purposes. + cls = type(self) + return bui.BasicMainWindowState( + create_call=lambda transition, origin_widget: cls( + transition=transition, origin_widget=origin_widget + ) + ) + + @override + def on_main_window_close(self) -> None: + self._save_state() + def _set_tab(self, tab_id: TabID) -> None: # pylint: disable=too-many-locals @@ -193,7 +210,7 @@ class WatchWindow(bui.Window): if self._tab_container: self._tab_container.delete() scroll_left = (self._width - self._scroll_width) * 0.5 - scroll_bottom = self._height - self._scroll_height - 79 - 48 + scroll_bottom = self._scroll_y # A place where tabs can store data to get cleared when # switching to a different tab @@ -243,9 +260,9 @@ class WatchWindow(bui.Window): b_width = 140 if uiscale is bui.UIScale.SMALL else 178 b_height = ( - 107 + 110 if uiscale is bui.UIScale.SMALL - else 142 if uiscale is bui.UIScale.MEDIUM else 190 + else 142 if uiscale is bui.UIScale.MEDIUM else 180 ) b_space_extra = ( 0 @@ -258,14 +275,18 @@ class WatchWindow(bui.Window): btnv = ( c_height - ( - 48 + 40 if uiscale is bui.UIScale.SMALL - else 45 if uiscale is bui.UIScale.MEDIUM else 40 + else 40 if uiscale is bui.UIScale.MEDIUM else 40 ) - b_height ) - btnh = 40 if uiscale is bui.UIScale.SMALL else 40 - smlh = 190 if uiscale is bui.UIScale.SMALL else 225 + # Roughly center buttons and scroll-widget in the middle. + xextra = ( + self._scroll_width - (sub_scroll_width + b_width) + ) * 0.5 - 50.0 + btnh = (40 if uiscale is bui.UIScale.SMALL else 40) + xextra + smlh = (190 if uiscale is bui.UIScale.SMALL else 225) + xextra tscl = 1.0 if uiscale is bui.UIScale.SMALL else 1.2 self._my_replays_watch_replay_button = btn1 = bui.buttonwidget( parent=cnt, @@ -281,7 +302,7 @@ class WatchWindow(bui.Window): ) bui.widget(edit=btn1, up_widget=self._tab_row.tabs[tab_id].button) assert bui.app.classic is not None - if uiscale is bui.UIScale.SMALL and bui.app.ui_v1.use_toolbars: + if uiscale is bui.UIScale.SMALL: bui.widget( edit=btn1, left_widget=bui.get_special_widget('back_button'), @@ -350,6 +371,10 @@ class WatchWindow(bui.Window): return bui.increment_analytics_count('Replay watch') + # Save our place in the UI so we return there when done. + if bui.app.classic is not None: + bui.app.classic.save_ui_state() + def do_it() -> None: try: # Reset to normal speed. @@ -357,7 +382,7 @@ class WatchWindow(bui.Window): bui.fade_screen(True) assert self._my_replay_selected is not None bs.new_replay_session( - bui.get_replays_dir() + '/' + self._my_replay_selected + f'{bui.get_replays_dir()}/{self._my_replay_selected}' ) except Exception: logging.exception('Error running replay session.') @@ -387,6 +412,7 @@ class WatchWindow(bui.Window): ), size=(c_width, c_height), transition='in_scale', + parent=bui.get_special_widget('overlay_stack'), ) dname = self._get_replay_display_name(self._my_replay_selected) bui.textwidget( @@ -611,8 +637,6 @@ class WatchWindow(bui.Window): logging.exception('Error saving state for %s.', self) def _restore_state(self) -> None: - from efro.util import enum_by_value - try: sel: bui.Widget | None assert bui.app.classic is not None @@ -621,9 +645,7 @@ class WatchWindow(bui.Window): ) assert isinstance(sel_name, (str, type(None))) try: - current_tab = enum_by_value( - self.TabID, bui.app.config.get('Watch Tab') - ) + current_tab = self.TabID(bui.app.config.get('Watch Tab')) except ValueError: current_tab = self.TabID.MY_REPLAYS self._set_tab(current_tab) @@ -634,9 +656,7 @@ class WatchWindow(bui.Window): sel = self._tab_container elif isinstance(sel_name, str) and sel_name.startswith('Tab:'): try: - sel_tab_id = enum_by_value( - self.TabID, sel_name.split(':')[-1] - ) + sel_tab_id = self.TabID(sel_name.split(':')[-1]) except ValueError: sel_tab_id = self.TabID.MY_REPLAYS sel = self._tab_row.tabs[sel_tab_id].button @@ -648,20 +668,3 @@ class WatchWindow(bui.Window): bui.containerwidget(edit=self._root_widget, selected_child=sel) except Exception: logging.exception('Error restoring state for %s.', self) - - def _back(self) -> None: - from bauiv1lib.mainmenu import MainMenuWindow - - # no-op if our underlying widget is dead or on its way out. - if not self._root_widget or self._root_widget.transitioning_out: - return - - self._save_state() - bui.containerwidget( - edit=self._root_widget, transition=self._transition_out - ) - assert bui.app.classic is not None - bui.app.ui_v1.set_main_menu_window( - MainMenuWindow(transition='in_left').get_root_widget(), - from_window=self._root_widget, - ) diff --git a/dist/ba_data/python/efro/__init__.py b/dist/ba_data/python/efro/__init__.py index 1f50d61..fa63ac8 100644 --- a/dist/ba_data/python/efro/__init__.py +++ b/dist/ba_data/python/efro/__init__.py @@ -1,6 +1,6 @@ # Released under the MIT License. See LICENSE for details. # -"""Common bits of functionality shared between all efro projects. +"""Common bits of functionality shared between all Efro's projects. Things in here should be hardened, highly type-safe, and well-covered by unit tests since they are widely used in live client and server code. diff --git a/dist/ba_data/python/efro/call.py b/dist/ba_data/python/efro/call.py index 66b0f01..017dd7a 100644 --- a/dist/ba_data/python/efro/call.py +++ b/dist/ba_data/python/efro/call.py @@ -4,14 +4,92 @@ from __future__ import annotations -import functools +import weakref +import threading from typing import TYPE_CHECKING if TYPE_CHECKING: - pass + from typing import Callable -# TODO: should deprecate tpartial since it nowadays simply wraps -# functools.partial (mypy added support for functools.partial in 1.11 so -# there's no benefit to rolling our own type-safe version anymore). -# Perhaps we can use Python 13's @warnings.deprecated() stuff for this. -tpartial = functools.partial + +class CallbackSet[T]: + """A simple way to manage a set of callbacks. + + Any number of calls can be registered with a callback set. Each + registration results in a Registration object that can be used to + deregister the call from the set later. Callbacks are also + implicitly deregistered when an entry is deallocated, so make sure + to hold on to the return value when adding. + + CallbackSet instances should be used from a single thread only + (this will be checked in debug mode). + """ + + def __init__(self) -> None: + self._entries: list[weakref.ref[CallbackRegistration[T]]] = [] + self.thread: threading.Thread + if __debug__: + self.thread = threading.current_thread() + + def register(self, call: T) -> CallbackRegistration[T]: + """Register a new callback.""" + assert threading.current_thread() == self.thread + + self._prune() + + entry = CallbackRegistration(call, self) + self._entries.append(weakref.ref(entry)) + return entry + + def getcalls(self) -> list[T]: + """Return the current set of registered calls. + + Note that this returns a flattened list of calls; generally this + should protect against calls which themselves add or remove + callbacks. + """ + assert threading.current_thread() == self.thread + + self._prune() + + # Ignore calls that have been deallocated or explicitly + # deregistered. + entries = [e() for e in self._entries] + return [e.call for e in entries if e is not None and e.call is not None] + + def _prune(self) -> None: + + # Quick-out if all our entries are intact. + needs_prune = False + for entry in self._entries: + entrytarget = entry() + if entrytarget is None or entrytarget.call is None: + needs_prune = True + break + if not needs_prune: + return + + # Ok; something needs pruning. Rebuild the entries list. + newentries: list[weakref.ref[CallbackRegistration[T]]] = [] + for entry in self._entries: + entrytarget = entry() + if entrytarget is not None and entrytarget.call is not None: + newentries.append(entry) + self._entries = newentries + + +class CallbackRegistration[T]: + """An entry for a callback set.""" + + def __init__(self, call: T, callbackset: CallbackSet[T]) -> None: + self.call: T | None = call + self.callbackset: CallbackSet[T] | None = callbackset + + def deregister(self) -> None: + """Explicitly remove a callback from a CallbackSet.""" + assert ( + self.callbackset is None + or threading.current_thread() == self.callbackset.thread + ) + # Simply clear the call to mark us as dead. + self.call = None diff --git a/dist/ba_data/python/efro/dataclassio/__init__.py b/dist/ba_data/python/efro/dataclassio/__init__.py index 5c76cc7..f9feea1 100644 --- a/dist/ba_data/python/efro/dataclassio/__init__.py +++ b/dist/ba_data/python/efro/dataclassio/__init__.py @@ -10,13 +10,14 @@ data formats in a nondestructive manner. from __future__ import annotations -from efro.util import set_canonical_module_names +# from efro.util import set_canonical_module_names from efro.dataclassio._base import ( Codec, IOAttrs, IOExtendedData, IOMultiType, EXTRA_ATTRS_ATTR, + parse_annotated, ) from efro.dataclassio._prep import ( ioprep, @@ -52,9 +53,12 @@ __all__ = [ 'ioprep', 'ioprepped', 'is_ioprepped_dataclass', + 'parse_annotated', 'will_ioprep', ] # Have these things present themselves cleanly as 'thismodule.SomeClass' # instead of 'thismodule._internalmodule.SomeClass' -set_canonical_module_names(globals()) +# UPDATE: Trying without this for now. Seems like this might cause more +# harm than good. Can flip it back on if it is missed. +# set_canonical_module_names(globals()) diff --git a/dist/ba_data/python/efro/dataclassio/_api.py b/dist/ba_data/python/efro/dataclassio/_api.py index 7475cba..0342b54 100644 --- a/dist/ba_data/python/efro/dataclassio/_api.py +++ b/dist/ba_data/python/efro/dataclassio/_api.py @@ -12,7 +12,7 @@ from __future__ import annotations import json from enum import Enum -from typing import TYPE_CHECKING, TypeVar +from typing import TYPE_CHECKING from efro.dataclassio._outputter import _Outputter from efro.dataclassio._inputter import _Inputter @@ -21,22 +21,20 @@ from efro.dataclassio._base import Codec if TYPE_CHECKING: from typing import Any -T = TypeVar('T') - class JsonStyle(Enum): """Different style types for json.""" - # Single line, no spaces, no sorting. Not deterministic. - # Use this where speed is more important than determinism. + #: Single line, no spaces, no sorting. Not deterministic. + #: Use this where speed is more important than determinism. FAST = 'fast' - # Single line, no spaces, sorted keys. Deterministic. - # Use this when output may be hashed or compared for equality. + #: Single line, no spaces, sorted keys. Deterministic. + #: Use this when output may be hashed or compared for equality. SORTED = 'sorted' - # Multiple lines, spaces, sorted keys. Deterministic. - # Use this for pretty human readable output. + #: Multiple lines, spaces, sorted keys. Deterministic. + #: Use this for pretty human readable output. PRETTY = 'pretty' @@ -96,21 +94,23 @@ def dataclass_to_json( return json.dumps(jdict, separators=(',', ':'), sort_keys=sort_keys) -def dataclass_from_dict( +def dataclass_from_dict[T]( cls: type[T], values: dict, + *, codec: Codec = Codec.JSON, coerce_to_float: bool = True, allow_unknown_attrs: bool = True, discard_unknown_attrs: bool = False, + lossy: bool = False, ) -> T: """Given a dict, return a dataclass of a given type. The dict must be formatted to match the specified codec (generally json-friendly object types). This means that sequence values such as tuples or sets should be passed as lists, enums should be passed as - their associated values, nested dataclasses should be passed as dicts, - etc. + their associated values, nested dataclasses should be passed as + dicts, etc. All values are checked to ensure their types/values are valid. @@ -120,14 +120,22 @@ def dataclass_from_dict( (as this would break the ability to do a lossless round-trip with data). - If coerce_to_float is True, int values passed for float typed fields - will be converted to float values. Otherwise, a TypeError is raised. + If `coerce_to_float` is True, int values passed for float typed + fields will be converted to float values. Otherwise, a TypeError is + raised. - If `allow_unknown_attrs` is False, AttributeErrors will be raised for - attributes present in the dict but not on the data class. Otherwise, - they will be preserved as part of the instance and included if it is - exported back to a dict, unless `discard_unknown_attrs` is True, in - which case they will simply be discarded. + If 'allow_unknown_attrs' is False, AttributeErrors will be raised + for attributes present in the dict but not on the data class. + Otherwise, they will be preserved as part of the instance and + included if it is exported back to a dict, unless + `discard_unknown_attrs` is True, in which case they will simply be + discarded. + + If `lossy` is True, Enum attrs and IOMultiType types are allowed to + use any fallbacks defined for them. This can allow older schemas to + successfully load newer data, but this can fundamentally modify the + data, so the resulting object is flagged as 'lossy' and prevented + from being serialized back out by default. """ val = _Inputter( cls, @@ -135,17 +143,20 @@ def dataclass_from_dict( coerce_to_float=coerce_to_float, allow_unknown_attrs=allow_unknown_attrs, discard_unknown_attrs=discard_unknown_attrs, + lossy=lossy, ).run(values) assert isinstance(val, cls) return val -def dataclass_from_json( +def dataclass_from_json[T]( cls: type[T], json_str: str, + *, coerce_to_float: bool = True, allow_unknown_attrs: bool = True, discard_unknown_attrs: bool = False, + lossy: bool = False, ) -> T: """Return a dataclass instance given a json string. @@ -158,6 +169,7 @@ def dataclass_from_json( coerce_to_float=coerce_to_float, allow_unknown_attrs=allow_unknown_attrs, discard_unknown_attrs=discard_unknown_attrs, + lossy=lossy, ) diff --git a/dist/ba_data/python/efro/dataclassio/_base.py b/dist/ba_data/python/efro/dataclassio/_base.py index 246b04e..9b60a64 100644 --- a/dist/ba_data/python/efro/dataclassio/_base.py +++ b/dist/ba_data/python/efro/dataclassio/_base.py @@ -8,7 +8,7 @@ import dataclasses import typing import datetime from enum import Enum -from typing import TYPE_CHECKING, get_args, TypeVar, Generic +from typing import TYPE_CHECKING, get_args, override # noinspection PyProtectedMember from typing import _AnnotatedAlias # type: ignore @@ -24,21 +24,26 @@ SIMPLE_TYPES = {int, bool, str, float, type(None)} # present. EXTRA_ATTRS_ATTR = '_DCIOEXATTRS' +# Attr name for a bool attr for flagging data as lossy, which means it +# may have been modified in some way during load and should generally +# not be written back out. +LOSSY_ATTR = '_DCIOLOSSY' + class Codec(Enum): """Specifies expected data format exported to or imported from.""" - # Use only types that will translate cleanly to/from json: lists, - # dicts with str keys, bools, ints, floats, and None. + #: Use only types that will translate cleanly to/from json - lists, + #: dicts with str keys, bools, ints, floats, and None. JSON = 'json' - # Mostly like JSON but passes bytes and datetime objects through - # as-is instead of converting them to json-friendly types. + #: Mostly like JSON but passes bytes and datetime objects through + #: as-is instead of converting them to json-friendly types. FIRESTORE = 'firestore' class IOExtendedData: - """A class that data types can inherit from for extra functionality.""" + """A class types can inherit from for extra functionality.""" def will_output(self) -> None: """Called before data is sent to an outputter. @@ -49,7 +54,7 @@ class IOExtendedData: @classmethod def will_input(cls, data: dict) -> None: - """Called on raw data before a class instance is created from it. + """Called on data before a class instance is created from it. Can be overridden to migrate old data formats to new, etc. """ @@ -85,16 +90,13 @@ class IOExtendedData: # pylint: enable=useless-return -EnumT = TypeVar('EnumT', bound=Enum) - - -class IOMultiType(Generic[EnumT]): +class IOMultiType[EnumT: Enum]: """A base class for types that can map to multiple dataclass types. - This enables usage of high level base classes (for example - a 'Message' type) in annotations, with dataclassio automatically - serializing & deserializing dataclass subclasses based on their - type ('MessagePing', 'MessageChat', etc.) + This enables usage of high level base classes (for example a + 'Message' type) in annotations, with dataclassio automatically + serializing & deserializing dataclass subclasses based on their type + ('MessagePing', 'MessageChat', etc.) Standard usage involves creating a class which inherits from this one which acts as a 'registry', and then creating dataclass classes @@ -127,45 +129,79 @@ class IOMultiType(Generic[EnumT]): The default is an obscure value so that it does not conflict with members of individual type attrs, but in some cases one - might prefer to serialize it to something simpler like 'type' - by overriding this call. One just needs to make sure that no + might prefer to serialize it to something simpler like 'type' by + overriding this call. One just needs to make sure that no encompassed types serialize anything to 'type' themself. """ return '_dciotype' + # NOTE: Currently (Jan 2025) mypy complains if overrides annotate + # return type of 'Self | None'. Substituting their own explicit type + # works though (see test_dataclassio). + @classmethod + def get_unknown_type_fallback(cls) -> Self | None: + """Return a fallback object in cases of unrecognized types. + + This can allow newer data to remain readable in older + environments. Use caution with this option, however, as it + effectively modifies data. + """ + return None + class IOAttrs: """For specifying io behavior in annotations. - 'storagename', if passed, is the name used when storing to json/etc. - 'store_default' can be set to False to avoid writing values when equal - to the default value. Note that this requires the dataclass field - to define a default or default_factory or for its IOAttrs to - define a soft_default value. - 'whole_days', if True, requires datetime values to be exactly on day - boundaries (see efro.util.utc_today()). - 'whole_hours', if True, requires datetime values to lie exactly on hour - boundaries (see efro.util.utc_this_hour()). - 'whole_minutes', if True, requires datetime values to lie exactly on minute - boundaries (see efro.util.utc_this_minute()). - 'soft_default', if passed, injects a default value into dataclass - instantiation when the field is not present in the input data. - This allows dataclasses to add new non-optional fields while - gracefully 'upgrading' old data. Note that when a soft_default is - present it will take precedence over field defaults when determining - whether to store a value for a field with store_default=False - (since the soft_default value is what we'll get when reading that - same data back in when the field is omitted). - 'soft_default_factory' is similar to 'default_factory' in dataclass - fields; it should be used instead of 'soft_default' for mutable types - such as lists to prevent a single default object from unintentionally - changing over time. + :param storagename: If passed, is the name used when storing to + json/etc. + + :param store_default: Can be set to False to avoid writing values + when equal to the default value. Note that this requires the + dataclass field to define a default or default_factory or for + its IOAttrs to define a soft_default value. + + :param whole_days: If True, requires datetime values to be exactly + on day boundaries (see efro.util.utc_today()). + + :param whole_hours: If True, requires datetime values to lie exactly + on hour boundaries (see efro.util.utc_this_hour()). + + :param whole_minutes: If True, requires datetime values to lie + exactly on minute boundaries (see efro.util.utc_this_minute()). + + :param soft_default: If passed, injects a default value into + dataclass instantiation when the field is not present in the + input data. This allows dataclasses to add new non-optional + fields while gracefully 'upgrading' old data. Note that when a + soft_default is present it will take precedence over field + defaults when determining whether to store a value for a field + with store_default=False (since the soft_default value is what + we'll get when reading that same data back in when the field is + omitted). + + :param soft_default_factory: Is similar to 'default_factory' in + dataclass fields; it should be used instead of 'soft_default' + for mutable types such as lists to prevent a single default + object from unintentionally changing over time. + + :param enum_fallback: If provided, specifies an enum value that can + be substituted in the case of unrecognized input values. This + can allow newer data to remain loadable in older environments. + Note that 'lossy' must be enabled in the top level load call for + this to apply, since it can fundamentally modify data. + + :param multiline: If provided for a string, specifies whether multi + line values are allowed/expected. Can be referenced when creating + UI for editing the value. """ - # A sentinel object to detect if a parameter is supplied or not. Use + # A sentinel object to detect if a parameter is supplied or not. Use # a class to give it a better repr. class _MissingType: - pass + + @override + def __repr__(self) -> str: + return '' MISSING = _MissingType() @@ -176,16 +212,21 @@ class IOAttrs: whole_minutes: bool = False soft_default: Any = MISSING soft_default_factory: Callable[[], Any] | _MissingType = MISSING + enum_fallback: Enum | None = None + multiline: bool | None = None def __init__( self, storagename: str | None = storagename, + *, store_default: bool = store_default, whole_days: bool = whole_days, whole_hours: bool = whole_hours, whole_minutes: bool = whole_minutes, soft_default: Any = MISSING, soft_default_factory: Callable[[], Any] | _MissingType = MISSING, + enum_fallback: Enum | None = None, + multiline: bool | None = None, ): # Only store values that differ from class defaults to keep # our instances nice and lean. @@ -215,12 +256,17 @@ class IOAttrs: raise ValueError( 'Cannot set both soft_default and soft_default_factory' ) + if enum_fallback is not cls.enum_fallback: + self.enum_fallback = enum_fallback + if multiline is not cls.multiline: + self.multiline = multiline def validate_for_field(self, cls: type, field: dataclasses.Field) -> None: - """Ensure the IOAttrs instance is ok to use with the provided field.""" + """Ensure the IOAttrs is ok to use with provided field.""" - # Turning off store_default requires the field to have either - # a default or a default_factory or for us to have soft equivalents. + # Turning off store_default requires the field to have either a + # default or a default_factory or for us to have soft + # equivalents. if not self.store_default: field_default_factory: Any = field.default_factory @@ -318,8 +364,8 @@ def _is_valid_for_codec(obj: Any, codec: Codec) -> bool: def _get_origin(anntype: Any) -> Any: """Given a type annotation, return its origin or itself if there is none. - This differs from typing.get_origin in that it will never return None. - This lets us use the same code path for handling typing.List + This differs from typing.get_origin in that it will never return + None. This lets us use the same code path for handling typing.List that we do for handling list, which is good since they can be used interchangeably in annotations. """ @@ -327,8 +373,9 @@ def _get_origin(anntype: Any) -> Any: return anntype if origin is None else origin -def _parse_annotated(anntype: Any) -> tuple[Any, IOAttrs | None]: +def parse_annotated(anntype: Any) -> tuple[Any, IOAttrs | None]: """Parse Annotated() constructs, returning annotated type & IOAttrs.""" + # If we get an Annotated[foo, bar, eep] we take foo as the actual # type, and we look for IOAttrs instances in bar/eep to affect our # behavior. diff --git a/dist/ba_data/python/efro/dataclassio/_inputter.py b/dist/ba_data/python/efro/dataclassio/_inputter.py index e913816..3f8b06f 100644 --- a/dist/ba_data/python/efro/dataclassio/_inputter.py +++ b/dist/ba_data/python/efro/dataclassio/_inputter.py @@ -15,11 +15,12 @@ import types import datetime from typing import TYPE_CHECKING -from efro.util import enum_by_value, check_utc +from efro.util import check_utc from efro.dataclassio._base import ( Codec, - _parse_annotated, + parse_annotated, EXTRA_ATTRS_ATTR, + LOSSY_ATTR, _is_valid_for_codec, _get_origin, SIMPLE_TYPES, @@ -31,6 +32,7 @@ from efro.dataclassio._base import ( from efro.dataclassio._prep import PrepSession if TYPE_CHECKING: + from typing import Any from efro.dataclassio._base import IOAttrs @@ -41,10 +43,12 @@ class _Inputter: def __init__( self, cls: type[Any], + *, codec: Codec, coerce_to_float: bool, allow_unknown_attrs: bool = True, discard_unknown_attrs: bool = False, + lossy: bool = False, ): self._cls = cls self._codec = codec @@ -52,6 +56,7 @@ class _Inputter: self._allow_unknown_attrs = allow_unknown_attrs self._discard_unknown_attrs = discard_unknown_attrs self._soft_default_validator: _Outputter | None = None + self._lossy = lossy if not allow_unknown_attrs and discard_unknown_attrs: raise ValueError( @@ -65,11 +70,12 @@ class _Inputter: outcls: type[Any] # If we're dealing with a multi-type subclass which is NOT a - # dataclass, we must rely on its stored type to figure out - # what type of dataclass we're going to. If we are a dataclass - # then we already know what type we're going to so we can - # survive without this, which is often necessary when reading - # old data that doesn't have a type id attr yet. + # dataclass (generally a custom multitype base class), then we + # must rely on its stored type enum to figure out what type of + # dataclass we're going to create. If we *are* dealing with a + # dataclass then we already know what type we're going to so we + # can survive without this, which is often necessary when + # reading old data that doesn't have a type id attr yet. if issubclass(self._cls, IOMultiType) and not dataclasses.is_dataclass( self._cls ): @@ -80,7 +86,40 @@ class _Inputter: f' {values}.' ) type_id_enum = self._cls.get_type_id_type() - enum_val = type_id_enum(type_id_val) + try: + enum_val = type_id_enum(type_id_val) + except ValueError as exc: + + # Check the fallback even if not in lossy mode, as we + # inform the user of its existence in errors in that + # case. + fallback = self._cls.get_unknown_type_fallback() + + # Sanity check that fallback is correct type. + assert isinstance(fallback, self._cls | None) + + # If we're in lossy mode, provide the fallback value. + if self._lossy: + if fallback is not None: + # Ok; they provided a fallback. Flag it as lossy + # to prevent it from being written back out by + # default, and return it. + setattr(fallback, LOSSY_ATTR, True) + return fallback + else: + # If we're *not* in lossy mode, inform the user if + # we *would* have succeeded if we were. This is + # useful for debugging these sorts of situations. + if fallback is not None: + raise ValueError( + 'Failed loading unrecognized multitype object.' + ' Note that the multitype provides a fallback' + ' and thus would succeed in lossy mode.' + ) from exc + + # Otherwise the error stands as-is. + raise + outcls = self._cls.get_type(enum_val) else: outcls = self._cls @@ -99,6 +138,17 @@ class _Inputter: if is_ext: out.did_input() + # If we're running in lossy mode, flag the object as such so we + # don't allow writing it back out and potentially accidentally + # losing data. + # + # FIXME - We are currently only flagging this at the top level, + # but this will not prevent sub-objects from being written out. + # Is that worth worrying about? Though perfect is the enemy of + # good I suppose. + if self._lossy: + setattr(out, LOSSY_ATTR, True) + return out def _value_from_input( @@ -110,6 +160,7 @@ class _Inputter: ioattrs: IOAttrs | None, ) -> Any: """Convert an assigned value to what a dataclass field expects.""" + # pylint: disable=too-many-positional-arguments # pylint: disable=too-many-return-statements # pylint: disable=too-many-branches @@ -181,14 +232,29 @@ class _Inputter: # dataclass (all dataclasses inheriting from the multi-type # should just be processed as dataclasses). if issubclass(origin, IOMultiType): - return self._dataclass_from_input( - _get_multitype_type(anntype, fieldpath, value), - fieldpath, - value, - ) + return self._multitype_obj(anntype, fieldpath, value) if issubclass(origin, Enum): - return enum_by_value(origin, value) + try: + return origin(value) + except ValueError as exc: + # If a fallback enum was provided in ioattrs AND we're + # in lossy mode, return that for unrecognized values. If + # one was provided but we're *not* in lossy mode, note + # that we could have loaded it if lossy mode was + # enabled. + if ioattrs is not None and ioattrs.enum_fallback is not None: + # Sanity check; make sure fallback is valid. + assert type(ioattrs.enum_fallback) is origin + if self._lossy: + return ioattrs.enum_fallback + raise ValueError( + 'Failed to load Enum. Note that it has a fallback' + ' value and thus would succeed in lossy mode.' + ) from exc + + # Otherwise the error stands as-is. + raise if issubclass(origin, datetime.datetime): return self._datetime_from_input(cls, fieldpath, value, ioattrs) @@ -232,16 +298,17 @@ class _Inputter: """Given a dict, instantiates a dataclass of the given type. The dict must be in the json-friendly format as emitted from - dataclass_to_dict. This means that sequence values such as tuples or - sets should be passed as lists, enums should be passed as their - associated values, and nested dataclasses should be passed as dicts. + dataclass_to_dict. This means that sequence values such as + tuples or sets should be passed as lists, enums should be passed + as their associated values, and nested dataclasses should be + passed as dicts. """ try: return self._do_dataclass_from_input(cls, fieldpath, values) except Exception as exc: - # Extended data types can choose to sub default data in case - # of failures (generally not a good idea but occasionally - # useful). + # Extended data types can choose to substitute default data + # in case of failures (generally not a good idea but + # occasionally useful). if issubclass(cls, IOExtendedData): fallback = cls.handle_input_error(exc) if fallback is None: @@ -281,7 +348,7 @@ class _Inputter: # Preprocess all fields to convert Annotated[] to contained # types and IOAttrs. parsed_field_annotations = { - f.name: _parse_annotated(prep.annotations[f.name]) for f in fields + f.name: parse_annotated(prep.annotations[f.name]) for f in fields } # Special case: if this is a multi-type class it probably has a @@ -293,8 +360,8 @@ class _Inputter: # However we do want to make sure the class we're loading # doesn't itself use this same name, as this could lead to # tricky breakage. We can't verify this for types at prep - # time because IOMultiTypes are lazy-loaded, so this is - # the best we can do. + # time because IOMultiTypes are lazy-loaded, so this is the + # best we can do. if type_id_store_name in fields_by_name: raise RuntimeError( f"{cls} contains a '{type_id_store_name}' field" @@ -413,6 +480,7 @@ class _Inputter: value: Any, ioattrs: IOAttrs | None, ) -> Any: + # pylint: disable=too-many-positional-arguments # pylint: disable=too-many-branches # pylint: disable=too-many-locals @@ -491,7 +559,7 @@ class _Inputter: if enumvaltype is str: for key, val in value.items(): try: - enumval = enum_by_value(keyanntype, key) + enumval = keyanntype(key) except ValueError as exc: raise ValueError( f'Got invalid key value {key} for' @@ -506,7 +574,7 @@ class _Inputter: else: for key, val in value.items(): try: - enumval = enum_by_value(keyanntype, int(key)) + enumval = keyanntype(int(key)) except (ValueError, TypeError) as exc: raise ValueError( f'Got invalid key value {key} for' @@ -533,6 +601,7 @@ class _Inputter: seqtype: type, ioattrs: IOAttrs | None, ) -> Any: + # pylint: disable=too-many-positional-arguments # Because we are json-centric, we expect a list for all sequences. if type(value) is not list: raise TypeError( @@ -559,14 +628,13 @@ class _Inputter: # If our annotation type inherits from IOMultiType, use type-id # values to determine which type to load for each element. - if issubclass(childanntype, IOMultiType): + # Make sure we only pass actual types to issubclass; it will error + # if we give it something like typing.Any. + if isinstance(childanntype, type) and issubclass( + childanntype, IOMultiType + ): return seqtype( - self._dataclass_from_input( - _get_multitype_type(childanntype, fieldpath, i), - fieldpath, - i, - ) - for i in value + self._multitype_obj(childanntype, fieldpath, i) for i in value ) return seqtype( @@ -574,6 +642,21 @@ class _Inputter: for i in value ) + def _multitype_obj(self, anntype: Any, fieldpath: str, value: Any) -> Any: + try: + mttype = _get_multitype_type(anntype, fieldpath, value) + except ValueError: + if self._lossy: + out = anntype.get_unknown_type_fallback() + if out is not None: + # Ok; they provided a fallback. Make sure its of our + # expected type and return it. + assert isinstance(out, anntype) + return out + raise + + return self._dataclass_from_input(mttype, fieldpath, value) + def _tuple_from_input( self, cls: type, @@ -582,6 +665,7 @@ class _Inputter: value: Any, ioattrs: IOAttrs | None, ) -> Any: + # pylint: disable=too-many-positional-arguments out: list = [] # Because we are json-centric, we expect a list for all sequences. diff --git a/dist/ba_data/python/efro/dataclassio/_outputter.py b/dist/ba_data/python/efro/dataclassio/_outputter.py index 1ca3118..4d0e18b 100644 --- a/dist/ba_data/python/efro/dataclassio/_outputter.py +++ b/dist/ba_data/python/efro/dataclassio/_outputter.py @@ -19,8 +19,9 @@ from typing import TYPE_CHECKING, cast, Any from efro.util import check_utc from efro.dataclassio._base import ( Codec, - _parse_annotated, + parse_annotated, EXTRA_ATTRS_ATTR, + LOSSY_ATTR, _is_valid_for_codec, _get_origin, SIMPLE_TYPES, @@ -40,6 +41,7 @@ class _Outputter: def __init__( self, obj: Any, + *, create: bool, codec: Codec, coerce_to_float: bool, @@ -60,6 +62,14 @@ class _Outputter: # isinstance call below fails. assert dataclasses.is_dataclass(self._obj) + # If this data has been flagged as lossy, don't allow outputting + # it. This hopefully helps avoid unintentional data + # modification/loss. + if getattr(obj, LOSSY_ATTR, False): + raise ValueError( + 'Object has been flagged as lossy; output is disallowed.' + ) + # For special extended data types, call their 'will_output' callback. # FIXME - should probably move this into _process_dataclass so it # can work on nested values. @@ -99,7 +109,7 @@ class _Outputter: anntype = prep.annotations[fieldname] value = getattr(obj, fieldname) - anntype, ioattrs = _parse_annotated(anntype) + anntype, ioattrs = parse_annotated(anntype) # If we're not storing default values for this fella, # we can skip all output processing if we've got a default value. @@ -192,6 +202,7 @@ class _Outputter: value: Any, ioattrs: IOAttrs | None, ) -> Any: + # pylint: disable=too-many-positional-arguments # pylint: disable=too-many-return-statements # pylint: disable=too-many-branches # pylint: disable=too-many-statements @@ -295,7 +306,11 @@ class _Outputter: childanntype = childanntypes[0] # If that type is a multi-type, we determine our type per-object. - if issubclass(childanntype, IOMultiType): + # Make sure we only pass actual types to issubclass; it will error + # if we give it something like typing.Any. + if isinstance(childanntype, type) and issubclass( + childanntype, IOMultiType + ): # In the multi-type case, we use each object's own type # to do its conversion, but lets at least make sure each # of those types inherits from the annotated multi-type @@ -393,7 +408,8 @@ class _Outputter: ), key=( None - if childanntypes[0] in [str, int, float, bool] + if childanntypes[0] + in [str, int, float, bool, datetime.datetime] else lambda v: json.dumps(v, sort_keys=True) ), ) @@ -511,6 +527,7 @@ class _Outputter: value: dict, ioattrs: IOAttrs | None, ) -> Any: + # pylint: disable=too-many-positional-arguments # pylint: disable=too-many-branches if not isinstance(value, dict): raise TypeError( diff --git a/dist/ba_data/python/efro/dataclassio/_pathcapture.py b/dist/ba_data/python/efro/dataclassio/_pathcapture.py index 6b9a61a..db01f6f 100644 --- a/dist/ba_data/python/efro/dataclassio/_pathcapture.py +++ b/dist/ba_data/python/efro/dataclassio/_pathcapture.py @@ -5,16 +5,14 @@ from __future__ import annotations import dataclasses -from typing import TYPE_CHECKING, TypeVar, Generic +from typing import TYPE_CHECKING -from efro.dataclassio._base import _parse_annotated, _get_origin +from efro.dataclassio._base import parse_annotated, _get_origin from efro.dataclassio._prep import PrepSession if TYPE_CHECKING: from typing import Any, Callable -T = TypeVar('T') - class _PathCapture: """Utility for obtaining dataclass storage paths in a type safe way.""" @@ -42,7 +40,7 @@ class _PathCapture: anntype = prep.annotations[name] except KeyError as exc: raise AttributeError(f'{type(self)} has no {name} field.') from exc - anntype, ioattrs = _parse_annotated(anntype) + anntype, ioattrs = parse_annotated(anntype) storagename = ( name if (ioattrs is None or ioattrs.storagename is None) @@ -57,7 +55,7 @@ class _PathCapture: return '.'.join(self._pathparts) -class DataclassFieldLookup(Generic[T]): +class DataclassFieldLookup[T]: """Get info about nested dataclass fields in type-safe way.""" def __init__(self, cls: type[T]) -> None: diff --git a/dist/ba_data/python/efro/dataclassio/_prep.py b/dist/ba_data/python/efro/dataclassio/_prep.py index 8321dbd..6c9bbca 100644 --- a/dist/ba_data/python/efro/dataclassio/_prep.py +++ b/dist/ba_data/python/efro/dataclassio/_prep.py @@ -15,11 +15,11 @@ import dataclasses import typing import types import datetime -from typing import TYPE_CHECKING, TypeVar, get_type_hints +from typing import TYPE_CHECKING, get_type_hints # noinspection PyProtectedMember from efro.dataclassio._base import ( - _parse_annotated, + parse_annotated, _get_origin, SIMPLE_TYPES, IOMultiType, @@ -29,10 +29,9 @@ if TYPE_CHECKING: from typing import Any from efro.dataclassio._base import IOAttrs -T = TypeVar('T') -# How deep we go when prepping nested types -# (basically for detecting recursive types) +# How deep we go when prepping nested types (basically for detecting +# recursive types) MAX_RECURSION = 10 # Attr name for data we store on dataclass types that have been prepped. @@ -68,7 +67,7 @@ def ioprep(cls: type, globalns: dict | None = None) -> None: ) -def ioprepped(cls: type[T]) -> type[T]: +def ioprepped[T](cls: type[T]) -> type[T]: """Class decorator for easily prepping a dataclass at definition time. Note that in some cases it may not be possible to prep a dataclass @@ -81,7 +80,7 @@ def ioprepped(cls: type[T]) -> type[T]: return cls -def will_ioprep(cls: type[T]) -> type[T]: +def will_ioprep[T](cls: type[T]) -> type[T]: """Class decorator hinting that we will prep a class later. In some cases (such as recursive types) we cannot use the @ioprepped @@ -185,7 +184,7 @@ class PrepSession: # which allows us to pick up nested classes, etc. resolved_annotations = get_type_hints( cls, - localns=vars(cls), # type: ignore[arg-type] + localns=vars(cls), globalns=self.globalns, include_extras=True, ) @@ -209,7 +208,7 @@ class PrepSession: # recurse through them, verifying that we support all contained # types and prepping any contained dataclass types. for attrname, anntype in resolved_annotations.items(): - anntype, ioattrs = _parse_annotated(anntype) + anntype, ioattrs = parse_annotated(anntype) # If we found attached IOAttrs data, make sure it contains # valid values for the field it is attached to. @@ -261,6 +260,7 @@ class PrepSession: recursion_level: int, ) -> None: """Run prep on a dataclass.""" + # pylint: disable=too-many-positional-arguments # pylint: disable=too-many-return-statements # pylint: disable=too-many-branches # pylint: disable=too-many-statements @@ -361,7 +361,7 @@ class PrepSession: pass elif issubclass(childtypes[0], Enum): # Allow our usual str or int enum types as keys. - self.prep_enum(childtypes[0]) + self.prep_enum(childtypes[0], ioattrs=None) else: raise TypeError( f'Dict key type {childtypes[0]} for \'{attrname}\'' @@ -411,7 +411,7 @@ class PrepSession: return if issubclass(origin, Enum): - self.prep_enum(origin) + self.prep_enum(origin, ioattrs=ioattrs) return # We allow datetime objects (and google's extended subclass of @@ -461,7 +461,11 @@ class PrepSession: recursion_level=recursion_level + 1, ) - def prep_enum(self, enumtype: type[Enum]) -> None: + def prep_enum( + self, + enumtype: type[Enum], + ioattrs: IOAttrs | None, + ) -> None: """Run prep on an enum type.""" valtype: Any = None @@ -484,3 +488,13 @@ class PrepSession: f' value types; dataclassio requires' f' them to be uniform.' ) + + if ioattrs is not None: + # If they provided a fallback enum value, make sure it + # is the correct type. + if ioattrs.enum_fallback is not None: + if type(ioattrs.enum_fallback) is not enumtype: + raise TypeError( + f'enum_fallback {ioattrs.enum_fallback} does not' + f' match the field type ({enumtype}.' + ) diff --git a/dist/ba_data/python/efro/dataclassio/templatemultitype.py b/dist/ba_data/python/efro/dataclassio/templatemultitype.py new file mode 100644 index 0000000..9e91853 --- /dev/null +++ b/dist/ba_data/python/efro/dataclassio/templatemultitype.py @@ -0,0 +1,63 @@ +# Released under the MIT License. See LICENSE for details. +# +"""Template for an IOMultitype setup. + +To use this template, simply copy the contents of this module somewhere +and then replace 'TemplateMultiType' with 'YourType'. +""" + +from __future__ import annotations + +from typing import TYPE_CHECKING, assert_never, override + +from enum import Enum +from dataclasses import dataclass + +from efro.dataclassio import ioprepped, IOMultiType + +if TYPE_CHECKING: + pass + + +class TemplateMultiTypeTypeID(Enum): + """Type ID for each of our subclasses.""" + + TEST = 'test' + + +class TemplateMultiType(IOMultiType[TemplateMultiTypeTypeID]): + """Top level class for our multitype.""" + + @override + @classmethod + def get_type_id(cls) -> TemplateMultiTypeTypeID: + # Require child classes to supply this themselves. If we did a + # full type registry/lookup here it would require us to import + # everything and would prevent lazy loading. + raise NotImplementedError() + + @override + @classmethod + def get_type( + cls, type_id: TemplateMultiTypeTypeID + ) -> type[TemplateMultiType]: + """Return the subclass for each of our type-ids.""" + # pylint: disable=cyclic-import + + t = TemplateMultiTypeTypeID + if type_id is t.TEST: + return Test + + # Important to make sure we provide all types. + assert_never(type_id) + + +@ioprepped +@dataclass +class Test(TemplateMultiType): + """Just a test.""" + + @override + @classmethod + def get_type_id(cls) -> TemplateMultiTypeTypeID: + return TemplateMultiTypeTypeID.TEST diff --git a/dist/ba_data/python/efro/debug.py b/dist/ba_data/python/efro/debug.py index 01a3f77..f479b33 100644 --- a/dist/ba_data/python/efro/debug.py +++ b/dist/ba_data/python/efro/debug.py @@ -46,11 +46,15 @@ def getobjs( ) -> list[Any]: """Return all garbage-collected objects matching criteria. - 'type' can be an actual type or a string in which case objects - whose types contain that string will be returned. + Args: - If 'contains' is provided, objects will be filtered to those - containing that in their str() representations. + type: + Can be an actual type or a string in which case objects + whose types contain that string will be returned. + + contains: + If provided, objects will be filtered to those + containing that in their str() representations. """ # Don't wanna return stuff waiting to be garbage-collected. @@ -181,12 +185,19 @@ def printrefs( ) -> None: """Print human readable list of objects referring to an object. - 'max_level' specifies how many levels of recursion are printed. - 'exclude_objs' can be a list of exact objects to skip if found in the - referrers list. This can be useful to avoid printing the local context - where the object was passed in from (locals(), etc). - 'expand_ids' can be a list of object ids; if that particular object is - found, it will always be expanded even if max_level has been reached. + Args: + + max_level: + Specifies how many levels of recursion are printed. + + exclude_objs: + Can be a list of exact objects to skip if found in the + referrers list. This can be useful to avoid printing the local context + where the object was passed in from (locals(), etc). + + expand_ids: + Can be a list of object ids; if that particular object is + found, it will always be expanded even if max_level has been reached. """ _printrefs( obj, @@ -264,10 +275,8 @@ def printsizes( def _desctype(obj: Any) -> str: cls = type(obj) - # noinspection PyPep8 if cls is types.ModuleType: return f'{type(obj).__name__} {obj.__name__}' - # noinspection PyPep8 if cls is types.MethodType: bnd = 'bound' if hasattr(obj, '__self__') else 'unbound' return f'{bnd} {type(obj).__name__} {obj.__name__}' @@ -287,8 +296,8 @@ def _desc(obj: Any) -> str: ) extra = f' (len {len(obj)}{tpss})' elif isinstance(obj, dict): - # If it seems to be the vars() for a type or module, - # try to identify what. + # If it seems to be the vars() for a type or module, try to + # identify what. for ref in getrefs(obj): if hasattr(ref, '__dict__') and vars(ref) is obj: extra = f' (vars for {_desctype(ref)} @ {id(ref)})' @@ -312,6 +321,7 @@ def _desc(obj: Any) -> str: def _printrefs( obj: Any, + *, level: int, max_level: int, exclude_objs: list, @@ -324,9 +334,9 @@ def _printrefs( if level < max_level or (id(obj) in expand_ids and level < ABS_MAX_LEVEL): refs = getrefs(obj) for ref in refs: - # It seems we tend to get a transient cell object with contents - # set to obj. Would be nice to understand why that happens - # but just ignoring it for now. + # It seems we tend to get a transient cell object with + # contents set to obj. Would be nice to understand why that + # happens but just ignoring it for now. if isinstance(ref, types.CellType) and ref.cell_contents is obj: continue @@ -340,7 +350,8 @@ def _printrefs( continue # The 'refs' list we just made will be listed as a referrer - # of this obj, so explicitly exclude it from the obj's listing. + # of this obj, so explicitly exclude it from the obj's + # listing. _printrefs( ref, level=level + 1, diff --git a/dist/ba_data/python/efro/error.py b/dist/ba_data/python/efro/error.py index fed4252..791fe2c 100644 --- a/dist/ba_data/python/efro/error.py +++ b/dist/ba_data/python/efro/error.py @@ -9,6 +9,7 @@ import errno if TYPE_CHECKING: from typing import Any + import urllib3.response from efro.terminal import ClrBase @@ -105,6 +106,79 @@ class AuthenticationError(Exception): """ +class _Urllib3HttpError(Exception): + """Exception raised for non-200 html codes.""" + + def __init__(self, code: int) -> None: + self.code = code + + # So we can see code in tracebacks. + @override + def __str__(self) -> str: + from http import HTTPStatus + + try: + desc = HTTPStatus(self.code).description + except ValueError: + desc = 'Unknown HTTP Status Code' + return f'{self.code}: {desc}' + + +def raise_for_urllib3_status( + response: urllib3.response.BaseHTTPResponse, +) -> None: + """Raise an exception for html error codes aside from 200.""" + if response.status != 200: + raise _Urllib3HttpError(code=response.status) + + +def is_urllib3_communication_error(exc: BaseException, url: str | None) -> bool: + """Is the provided exception from urllib3 a communication-related error? + + Url, if provided, can provide extra context for when to treat an error + as such an error. + + This should be passed an exception which resulted from making + requests with urllib3. It returns True for any errors that could + conceivably arise due to unavailable/poor network connections, + firewall/connectivity issues, or other issues out of our control. + These errors can often be safely ignored or presented to the user as + general 'network-unavailable' states. + """ + # Need to start building these up. For now treat everything as a + # real error. + import urllib3.exceptions + + # If this error is from hitting max-retries, look at the underlying + # error instead. + if isinstance(exc, urllib3.exceptions.MaxRetryError): + # Hmm; will a max-retry error ever not have an underlying error? + if exc.reason is None: + return False + exc = exc.reason + + if isinstance(exc, _Urllib3HttpError): + # Special sub-case: appspot.com hosting seems to give 403 errors + # (forbidden) to some countries. I'm assuming for legal reasons?.. + # Let's consider that a communication error since its out of our + # control so we don't fill up logs with it. + if exc.code == 403 and url is not None and '.appspot.com' in url: + return True + + elif isinstance(exc, urllib3.exceptions.ReadTimeoutError): + return True + + elif isinstance(exc, urllib3.exceptions.ProtocolError): + # Most protocol errors quality as CommunicationErrors, but some + # may be due to server misconfigurations or whatnot so let's + # take it on a case by case basis. + excstr = str(exc) + if 'Connection aborted.' in excstr: + return True + + return False + + def is_urllib_communication_error(exc: BaseException, url: str | None) -> bool: """Is the provided exception from urllib a communication-related error? @@ -251,6 +325,11 @@ def is_asyncio_streams_communication_error(exc: BaseException) -> bool: if 'SSL: WRONG_VERSION_NUMBER' in excstr: return True + # Also getting this sometimes which sounds like corrupt SSL data + # or something. + if 'SSL: BAD_RECORD_TYPE' in excstr: + return True + # And seeing this very rarely; assuming its just data corruption? if 'SSL: DECRYPTION_FAILED_OR_BAD_RECORD_MAC' in excstr: return True diff --git a/dist/ba_data/python/efro/log.py b/dist/ba_data/python/efro/logging.py similarity index 81% rename from dist/ba_data/python/efro/log.py rename to dist/ba_data/python/efro/logging.py index 3e1326c..40fd984 100644 --- a/dist/ba_data/python/efro/log.py +++ b/dist/ba_data/python/efro/logging.py @@ -17,12 +17,12 @@ from typing import TYPE_CHECKING, Annotated, override from threading import Thread, current_thread, Lock from efro.util import utc_now -from efro.terminal import Clr +from efro.terminal import Clr, color_enabled from efro.dataclassio import ioprepped, IOAttrs, dataclass_to_json if TYPE_CHECKING: from pathlib import Path - from typing import Any, Callable, TextIO + from typing import Any, Callable, TextIO, Literal class LogLevel(Enum): @@ -126,23 +126,26 @@ class LogHandler(logging.Handler): def __init__( self, + *, path: str | Path | None, echofile: TextIO | None, - suppress_non_root_debug: bool, cache_size_limit: int, cache_time_limit: datetime.timedelta | None, + echofile_timestamp_format: Literal['default', 'relative'] = 'default', + launch_time: float | None = None, ): super().__init__() # pylint: disable=consider-using-with self._file = None if path is None else open(path, 'w', encoding='utf-8') self._echofile = echofile + self._echofile_timestamp_format = echofile_timestamp_format self._callbacks: list[Callable[[LogEntry], None]] = [] - self._suppress_non_root_debug = suppress_non_root_debug self._file_chunks: dict[str, list[str]] = {'stdout': [], 'stderr': []} self._file_chunk_ship_task: dict[str, asyncio.Task | None] = { 'stdout': None, 'stderr': None, } + self._launch_time = time.time() if launch_time is None else launch_time self._cache_size = 0 assert cache_size_limit >= 0 self._cache_size_limit = cache_size_limit @@ -158,8 +161,8 @@ class LogHandler(logging.Handler): self._thread.start() # Spin until our thread is up and running; otherwise we could - # wind up trying to push stuff to our event loop before the - # loop exists. + # wind up trying to push stuff to our event loop before the loop + # exists. while not self._thread_bootstrapped: time.sleep(0.001) @@ -234,8 +237,8 @@ class LogHandler(logging.Handler): await asyncio.sleep(61.27) now = utc_now() with self._cache_lock: - # Prune the oldest entry as long as there is a first one that - # is too old. + # Prune the oldest entry as long as there is a first one + # that is too old. while ( self._cache and (now - self._cache[0][1].time) >= self._cache_time_limit @@ -251,9 +254,9 @@ class LogHandler(logging.Handler): This will only include entries that have been processed by the background thread, so may not include just-submitted logs or - entries for partially written stdout/stderr lines. - Entries from the range [start_index:start_index+max_entries] - which are still present in the cache will be returned. + entries for partially written stdout/stderr lines. Entries from + the range [start_index:start_index+max_entries] which are still + present in the cache will be returned. """ assert start_index >= 0 @@ -282,11 +285,11 @@ class LogHandler(logging.Handler): def _cache_slice( self, start: int, end: int, step: int = 1 ) -> list[LogEntry]: - # Deque doesn't natively support slicing but we can do it manually. - # It sounds like rotating the deque and pulling from the beginning - # is the most efficient way to do this. The downside is the deque - # gets temporarily modified in the process so we need to make sure - # we're holding the lock. + # Deque doesn't natively support slicing but we can do it + # manually. It sounds like rotating the deque and pulling from + # the beginning is the most efficient way to do this. The + # downside is the deque gets temporarily modified in the process + # so we need to make sure we're holding the lock. assert self._cache_lock.locked() cache = self._cache cache.rotate(-start) @@ -309,25 +312,19 @@ class LogHandler(logging.Handler): @override def emit(self, record: logging.LogRecord) -> None: # pylint: disable=too-many-branches + # pylint: disable=too-many-locals + if __debug__: starttime = time.monotonic() # Called by logging to send us records. - # TODO - kill this. - if ( - self._suppress_non_root_debug - and record.name != 'root' - and record.levelname == 'DEBUG' - ): - return - # Optimization: if our log args are all simple immutable values, - # we can just kick the whole thing over to our background thread to - # be formatted there at our leisure. If anything is mutable and - # thus could possibly change between now and then or if we want - # to do immediate file echoing then we need to bite the bullet - # and do that stuff here at the call site. + # we can just kick the whole thing over to our background thread + # to be formatted there at our leisure. If anything is mutable + # and thus could possibly change between now and then or if we + # want to do immediate file echoing then we need to bite the + # bullet and do that stuff here at the call site. fast_path = self._echofile is None and self._is_immutable_log_data( record.args ) @@ -359,37 +356,39 @@ class LogHandler(logging.Handler): if __debug__: formattime = time.monotonic() - # Also immediately print pretty colored output to our echo file - # (generally stderr). We do this part here instead of in our bg - # thread because the delay can throw off command line prompts or - # make tight debugging harder. + # Also immediately print pretty colored output to our echo + # file (generally stderr). We do this part here instead of + # in our bg thread because the delay can throw off command + # line prompts or make tight debugging harder. if self._echofile is not None: - # try: - # if self._report_blocking_io_on_echo_error: - # premsg = ( - # 'WARNING: BlockingIOError ON LOG ECHO OUTPUT;' - # ' YOU ARE PROBABLY MISSING LOGS\n' - # ) - # self._report_blocking_io_on_echo_error = False - # else: - # premsg = '' - ends = LEVELNO_COLOR_CODES.get(record.levelno) - namepre = f'{Clr.WHT}{record.name}:{Clr.RST} ' - if ends is not None: - self._echofile.write( - f'{namepre}{ends[0]}' - f'{msg}{ends[1]}\n' - # f'{namepre}{ends[0]}' f'{premsg}{msg}{ends[1]}\n' - ) + if self._echofile_timestamp_format == 'relative': + timestamp = f'{record.created - self._launch_time:.3f}' else: - self._echofile.write(f'{namepre}{msg}\n') + timestamp = ( + datetime.datetime.fromtimestamp( + record.created, tz=datetime.UTC + ).strftime('%H:%M:%S') + + f'.{int(record.msecs):03d}' + ) + + # If color printing is disabled, show level through text + # instead of color. + lvlnameex = ( + '' + if color_enabled + else f' {logging.getLevelName(record.levelno)}' + ) + + preinfo = ( + f'{Clr.WHT}{timestamp}{lvlnameex} {record.name}:' + f'{Clr.RST} ' + ) + ends = LEVELNO_COLOR_CODES.get(record.levelno) + if ends is not None: + self._echofile.write(f'{preinfo}{ends[0]}{msg}{ends[1]}\n') + else: + self._echofile.write(f'{preinfo}{msg}\n') self._echofile.flush() - # except BlockingIOError: - # # Ran into this when doing a bunch of logging; assuming - # # this is asyncio's doing?.. For now trying to survive - # # the error but telling the user something is probably - # # missing in their output. - # self._report_blocking_io_on_echo_error = True if __debug__: echotime = time.monotonic() @@ -407,30 +406,29 @@ class LogHandler(logging.Handler): if __debug__: # pylint: disable=used-before-assignment - # Make noise if we're taking a significant amount of time here. - # Limit the noise to once every so often though; otherwise we - # could get a feedback loop where every log emit results in a - # warning log which results in another, etc. + # + # Make noise if we're taking a significant amount of time + # here. Limit the noise to once every so often though; + # otherwise we could get a feedback loop where every log + # emit results in a warning log which results in another, + # etc. now = time.monotonic() - # noinspection PyUnboundLocalVariable - duration = now - starttime # pyright: ignore - # noinspection PyUnboundLocalVariable - format_duration = formattime - starttime # pyright: ignore - # noinspection PyUnboundLocalVariable - echo_duration = echotime - formattime # pyright: ignore + duration = now - starttime + format_duration = formattime - starttime + echo_duration = echotime - formattime if duration > 0.05 and ( self._last_slow_emit_warning_time is None or now > self._last_slow_emit_warning_time + 10.0 ): - # Logging calls from *within* a logging handler - # sounds sketchy, so let's just kick this over to - # the bg event loop thread we've already got. + # Logging calls from *within* a logging handler sounds + # sketchy, so let's just kick this over to the bg event + # loop thread we've already got. self._last_slow_emit_warning_time = now self._event_loop.call_soon_threadsafe( partial( logging.warning, - 'efro.log.LogHandler emit took too long' - ' (%.2fs total; %.2fs format, %.2fs echo,' + 'efro.logging.LogHandler emit took too long' + ' (%.3fs total; %.3fs format, %.3fs echo,' ' fast_path=%s).', duration, format_duration, @@ -447,6 +445,7 @@ class LogHandler(logging.Handler): message: str | logging.LogRecord, labels: dict[str, str], ) -> None: + # pylint: disable=too-many-positional-arguments try: # If they passed a raw record here, bake it down to a string. if isinstance(message, logging.LogRecord): @@ -489,17 +488,17 @@ class LogHandler(logging.Handler): self._file_chunks[name].append(output) - # Individual parts of a print come across as separate writes, - # and the end of a print will be a standalone '\n' by default. - # Let's use that as a hint that we're likely at the end of - # a full print statement and ship what we've got. + # Individual parts of a print come across as separate + # writes, and the end of a print will be a standalone '\n' + # by default. Let's use that as a hint that we're likely at + # the end of a full print statement and ship what we've got. if output == '\n': self._ship_file_chunks(name, cancel_ship_task=True) else: - # By default just keep adding chunks. - # However we keep a timer running anytime we've got - # unshipped chunks so that we can ship what we've got - # after a short bit if we never get a newline. + # By default just keep adding chunks. However we keep a + # timer running anytime we've got unshipped chunks so + # that we can ship what we've got after a short bit if + # we never get a newline. ship_task = self._file_chunk_ship_task[name] if ship_task is None: self._file_chunk_ship_task[name] = ( @@ -610,6 +609,7 @@ class LogHandler(logging.Handler): self._run_callback_on_entry(call, entry) # Dump to our structured log file. + # # TODO: should set a timer for flushing; don't flush every line. if self._file is not None: entry_s = dataclass_to_json(entry) @@ -642,23 +642,9 @@ class FileLogEcho: self._name = name self._handler = handler - # Think this was a result of setting non-blocking stdin somehow; - # probably not needed. - # self._report_blocking_io_error = False - def write(self, output: Any) -> None: """Override standard write call.""" - # try: - # if self._report_blocking_io_error: - # self._report_blocking_io_error = False - # self._original.write( - # 'WARNING: BlockingIOError ENCOUNTERED;' - # ' OUTPUT IS PROBABLY MISSING' - # ) - self._original.write(output) - # except BlockingIOError: - # self._report_blocking_io_error = True self._handler.file_write(self._name, output) def flush(self) -> None: @@ -678,11 +664,12 @@ class FileLogEcho: def setup_logging( log_path: str | Path | None, level: LogLevel, - suppress_non_root_debug: bool = False, + *, log_stdout_stderr: bool = False, echo_to_stderr: bool = True, cache_size_limit: int = 0, cache_time_limit: datetime.timedelta | None = None, + launch_time: float | None = None, ) -> LogHandler: """Set up our logging environment. @@ -698,34 +685,35 @@ def setup_logging( LogLevel.CRITICAL: logging.CRITICAL, } - # Wire logger output to go to a structured log file. - # Also echo it to stderr IF we're running in a terminal. - # UPDATE: Actually gonna always go to stderr. Is there a - # reason we shouldn't? This makes debugging possible if all - # we have is access to a non-interactive terminal or file dump. - # We could add a '--quiet' arg or whatnot to change this behavior. + # Wire logger output to go to a structured log file. Also echo it to + # stderr IF we're running in a terminal. + # + # UPDATE: Actually gonna always go to stderr. Is there a reason we + # shouldn't? This makes debugging possible if all we have is access + # to a non-interactive terminal or file dump. We could add a + # '--quiet' arg or whatnot to change this behavior. # Note: by passing in the *original* stderr here before we - # (potentially) replace it, we ensure that our log echos - # won't themselves be intercepted and sent to the logger - # which would create an infinite loop. + # (potentially) replace it, we ensure that our log echos won't + # themselves be intercepted and sent to the logger which would + # create an infinite loop. loghandler = LogHandler( - log_path, + path=log_path, echofile=sys.stderr if echo_to_stderr else None, - suppress_non_root_debug=suppress_non_root_debug, + echofile_timestamp_format='relative', cache_size_limit=cache_size_limit, cache_time_limit=cache_time_limit, + launch_time=launch_time, ) # Note: going ahead with force=True here so that we replace any - # existing logger. Though we warn if it looks like we are doing - # that so we can try to avoid creating the first one. + # existing logger. Though we warn if it looks like we are doing that + # so we can try to avoid creating the first one. had_previous_handlers = bool(logging.root.handlers) logging.basicConfig( level=lmap[level], - # format='%(name)s: %(message)s', - # We dump *only* the message here. We pass various log record bits - # around and format things fancier where they end up. + # We dump *only* the message here. We pass various log record + # bits around so we can write rich logs or format things later. format='%(message)s', handlers=[loghandler], force=True, diff --git a/dist/ba_data/python/efro/message/__init__.py b/dist/ba_data/python/efro/message/__init__.py index d05b5d7..9247f04 100644 --- a/dist/ba_data/python/efro/message/__init__.py +++ b/dist/ba_data/python/efro/message/__init__.py @@ -6,7 +6,7 @@ Supports static typing for message types and possible return types. from __future__ import annotations -from efro.util import set_canonical_module_names +# from efro.util import set_canonical_module_names from efro.message._protocol import MessageProtocol from efro.message._sender import MessageSender, BoundMessageSender from efro.message._receiver import MessageReceiver, BoundMessageReceiver @@ -42,4 +42,6 @@ __all__ = [ # Have these things present themselves cleanly as 'thismodule.SomeClass' # instead of 'thismodule._internalmodule.SomeClass' -set_canonical_module_names(globals()) +# UPDATE: Trying without this for now. Seems like this might cause more +# harm than good. Can flip it back on if it is missed. +# set_canonical_module_names(globals()) diff --git a/dist/ba_data/python/efro/message/_message.py b/dist/ba_data/python/efro/message/_message.py index 0697ad5..188c570 100644 --- a/dist/ba_data/python/efro/message/_message.py +++ b/dist/ba_data/python/efro/message/_message.py @@ -23,6 +23,26 @@ class UnregisteredMessageIDError(Exception): class Message: """Base class for messages.""" + class RetryPolicy(Enum): + """Defines if/when/how retries are attempted for a message.""" + + #: The default retry policy - disallow any retries since we + #: assume it could lead to unintended effects on the server side + #: if repeat messages come in. + DISALLOW = 'disallow' + + #: Allow reasonable retry attempts for this message. By returning + #: this value, a message acknowledges that there will be no bad + #: effects if the server were to receive this message multiple + #: times. + ALLOW = 'allow' + + #: Like the :attr:`ALLOW` option, but retries may be attempted + #: for a longer period of time. Using this too much may gum up + #: servers, so limit its use to special cases on important + #: messages and use regular :attr:`ALLOW` for all others. + ALLOW_EXTRA = 'allow_extra' + @classmethod def get_response_types(cls) -> list[type[Response] | None]: """Return all Response types this Message can return when sent. @@ -31,6 +51,18 @@ class Message: """ return [None] + def get_retry_policy(self) -> RetryPolicy: + """Define how retries should be handled for this message. + + This returns :attr:`~RetryPolicy.DISALLOW` by default, but message + classes can override it depending on the behavior they desire. + Note that the implementation (or lack thereof) for these + policies is up to the particular messaging system; for example + something built on reliable transport probably has no need for + the concept of retries. + """ + return self.RetryPolicy.DISALLOW + class Response: """Base class for responses to messages.""" diff --git a/dist/ba_data/python/efro/message/_module.py b/dist/ba_data/python/efro/message/_module.py index 2fa91fa..db96f3b 100644 --- a/dist/ba_data/python/efro/message/_module.py +++ b/dist/ba_data/python/efro/message/_module.py @@ -19,6 +19,7 @@ def create_sender_module( protocol_create_code: str, enable_sync_sends: bool, enable_async_sends: bool, + *, private: bool = False, protocol_module_level_import_code: str | None = None, build_time_protocol_create_code: str | None = None, @@ -61,6 +62,7 @@ def create_receiver_module( basename: str, protocol_create_code: str, is_async: bool, + *, private: bool = False, protocol_module_level_import_code: str | None = None, build_time_protocol_create_code: str | None = None, diff --git a/dist/ba_data/python/efro/message/_protocol.py b/dist/ba_data/python/efro/message/_protocol.py index 928d1fa..8f0c3c3 100644 --- a/dist/ba_data/python/efro/message/_protocol.py +++ b/dist/ba_data/python/efro/message/_protocol.py @@ -42,10 +42,12 @@ class MessageProtocol: self, message_types: dict[int, type[Message]], response_types: dict[int, type[Response]], + *, forward_communication_errors: bool = False, forward_clean_errors: bool = False, remote_errors_include_stack_traces: bool = False, log_errors_on_receiver: bool = True, + log_response_decode_errors: bool = True, ) -> None: """Create a protocol with a given configuration. @@ -77,14 +79,22 @@ class MessageProtocol: goal is usually to avoid returning opaque RemoteErrors and to instead return something meaningful as part of the expected response type (even if that value itself represents a logical - error state). If 'log_errors_on_receiver' is False, however, such - exceptions will *not* be logged on the receiver. This can be - useful in combination with 'remote_errors_include_stack_traces' - and 'forward_clean_errors' in situations where all error - logging/management will be happening on the sender end. Be - aware, however, that in that case it may be possible for - communication errors to prevent such error messages from - ever being seen. + error state). If 'log_errors_on_receiver' is False, however, + such exceptions will *not* be logged on the receiver. This can + be useful in combination with + 'remote_errors_include_stack_traces' and 'forward_clean_errors' + in situations where all error logging/management will be + happening on the sender end. Be aware, however, that in that + case it may be possible for communication errors to prevent some + errors from ever being acknowledged. + + If an error occurs when decoding a message response, a + RuntimeError is generated locally. However, in practice it is + likely for such errors to be silently ignored by message + handling code alongside more common communication type errors, + meaning serious protocol breakage could go unnoticed. To avoid + this, a log message is also printed in such cases. Pass + 'log_response_decode_errors' as False to disable this logging. """ # pylint: disable=too-many-locals self.message_types_by_id: dict[int, type[Message]] = {} @@ -169,6 +179,7 @@ class MessageProtocol: remote_errors_include_stack_traces ) self.log_errors_on_receiver = log_errors_on_receiver + self.log_response_decode_errors = log_response_decode_errors @staticmethod def encode_dict(obj: dict) -> str: @@ -251,7 +262,7 @@ class MessageProtocol: return out def message_from_dict(self, data: dict) -> Message: - """Decode a message from a json string.""" + """Decode a message from a dict.""" out = self._from_dict(data, self.message_types_by_id, 'message') assert isinstance(out, Message) return out @@ -283,7 +294,14 @@ class MessageProtocol: raise UnregisteredMessageIDError( f'Got unregistered {opname} id of {m_id}.' ) - return dataclass_from_dict(msgtype, msgdict) + + # Explicitly allow any fallbacks we define for our enums and + # multitypes. This allows us to build message types that remain + # loadable even when containing unrecognized future + # enums/multitype data. Be aware that this flags the object as + # 'lossy' however which prevents it from being reserialized by + # default. + return dataclass_from_dict(msgtype, msgdict, lossy=True) def _get_module_header( self, @@ -414,6 +432,7 @@ class MessageProtocol: protocol_module_level_import_code: str | None = None, ) -> str: """Used by create_sender_module(); do not call directly.""" + # pylint: disable=too-many-positional-arguments # pylint: disable=too-many-locals # pylint: disable=too-many-branches import textwrap @@ -531,6 +550,7 @@ class MessageProtocol: ) -> str: """Used by create_receiver_module(); do not call directly.""" # pylint: disable=too-many-locals + # pylint: disable=too-many-positional-arguments import textwrap desc = 'asynchronous' if is_async else 'synchronous' diff --git a/dist/ba_data/python/efro/message/_receiver.py b/dist/ba_data/python/efro/message/_receiver.py index a10f8d6..5974a94 100644 --- a/dist/ba_data/python/efro/message/_receiver.py +++ b/dist/ba_data/python/efro/message/_receiver.py @@ -28,27 +28,30 @@ if TYPE_CHECKING: class MessageReceiver: """Facilitates receiving & responding to messages from a remote source. - This is instantiated at the class level with unbound methods registered - as handlers for different message types in the protocol. + This is instantiated at the class level with unbound methods + registered as handlers for different message types in the protocol. - Example: + Example:: - class MyClass: - receiver = MyMessageReceiver() + class MyClass: + receiver = MyMessageReceiver() - # MyMessageReceiver fills out handler() overloads to ensure all - # registered handlers have valid types/return-types. + # MyMessageReceiver is autogenerated with handler() overloads + # to ensure all handlers registered with it have valid message + # types and return-types. - @receiver.handler - def handle_some_message_type(self, message: SomeMsg) -> SomeResponse: - # Deal with this message type here. + @receiver.handler + def handle_some_message_type(self, message: SomeMsg) -> SomeResponse: + # Deal with this message type here. + return SomeResponse() - # This will trigger the registered handler being called. - obj = MyClass() - obj.receiver.handle_raw_message(some_raw_data) + # This will trigger the registered handler being called. + obj = MyClass() + obj.receiver.handle_raw_message(some_raw_data) - Any unhandled Exception occurring during message handling will result in - an efro.error.RemoteError being raised on the sending end. + Any unhandled Exception occurring during message handling will + result in an :class:`efro.error.RemoteError` being raised on the + sending end. """ is_async = False diff --git a/dist/ba_data/python/efro/message/_sender.py b/dist/ba_data/python/efro/message/_sender.py index 93cd38f..e1feb66 100644 --- a/dist/ba_data/python/efro/message/_sender.py +++ b/dist/ba_data/python/efro/message/_sender.py @@ -6,6 +6,7 @@ Supports static typing for message types and possible return types. from __future__ import annotations +import logging from typing import TYPE_CHECKING from efro.error import CleanError, RemoteError, CommunicationError @@ -21,32 +22,30 @@ if TYPE_CHECKING: class MessageSender: """Facilitates sending messages to a target and receiving responses. - These are instantiated at the class level and used to register unbound - class methods to handle raw message sending. Generally this class is not - used directly, but instead autogenerated subclasses which provide type - safe overloads are used instead. + These are instantiated at the class level and used to register + unbound class methods to handle raw message sending. Generally this + class is not used directly, but instead autogenerated subclasses + which provide type safe overloads are used instead. - Example: - (In this example, MyMessageSender is an autogenerated class that - inherits from MessageSender). + In the following example, MyMessageSender is an autogenerated class + that inherits from MessageSender:: - class MyClass: - msg = MyMessageSender() + class MyClass: + msg = MyMessageSender() - @msg.send_method - def send_raw_message(self, message: str) -> str: - # Actually send the message here. + @msg.send_method + def send_raw_message(self, message: str) -> str: + # Actually send the message here. - obj = MyClass() - - # The MyMessageSender generated class would provides overloads for - # send(), send_async(), etc. to provide type-safety for message types - # and their associated response types. - # Thus, given the statement below, a type-checker would know that - # 'response' is a SomeResponseType or whatever is associated with - # SomeMessageType. - response = obj.msg.send(SomeMessageType()) + obj = MyClass() + # The MyMessageSender generated class would provides overloads for + # send(), send_async(), etc. to provide type-safety for message types + # and their associated response types. + # Thus, given the statement below, a type-checker would know that + # 'response' is a SomeResponseType or whatever is associated with + # SomeMessageType. + response = obj.msg.send(SomeMessageType()) """ def __init__(self, protocol: MessageProtocol) -> None: @@ -369,6 +368,19 @@ class MessageSender: bound_obj, message, response_dict, response ) except Exception as exc: + + # We pragmatically log by default if decoding fails. This + # means a message type was likely changed in a way that + # breaks the protocol, but individual message handlers are + # likely to lump all errors together (communication and + # otherwise) which could cause such breakage to go + # unnoticed. + if self.protocol.log_response_decode_errors: + logging.exception( + 'Error decoding message response;' + ' protocol might be broken.', + ) + response = ErrorSysResponse( error_message='Error decoding raw response.', error_type=ErrorSysResponse.ErrorType.LOCAL, diff --git a/dist/ba_data/python/efro/rpc.py b/dist/ba_data/python/efro/rpc.py index 9acfab0..e4477cb 100644 --- a/dist/ba_data/python/efro/rpc.py +++ b/dist/ba_data/python/efro/rpc.py @@ -180,6 +180,7 @@ class RPCEndpoint: reader: asyncio.StreamReader, writer: asyncio.StreamWriter, label: str, + *, debug_print: bool = False, debug_print_io: bool = False, debug_print_call: Callable[[str], None] | None = None, @@ -426,6 +427,7 @@ class RPCEndpoint: bytes_awaitable: asyncio.Task[bytes], message_id: int, ) -> bytes: + # pylint: disable=too-many-positional-arguments # We need to know their protocol, so if we haven't gotten a handshake # from them yet, just wait. while self._peer_info is None: diff --git a/dist/ba_data/python/efro/threadpool.py b/dist/ba_data/python/efro/threadpool.py new file mode 100644 index 0000000..5a763b6 --- /dev/null +++ b/dist/ba_data/python/efro/threadpool.py @@ -0,0 +1,87 @@ +# Released under the MIT License. See LICENSE for details. +# +"""Thread pool functionality.""" + +from __future__ import annotations + +import time +import logging +import threading +from typing import TYPE_CHECKING, ParamSpec +from concurrent.futures import ThreadPoolExecutor + +if TYPE_CHECKING: + from typing import Any, Callable + from concurrent.futures import Future + +P = ParamSpec('P') + +logger = logging.getLogger(__name__) + + +class ThreadPoolExecutorEx(ThreadPoolExecutor): + """A ThreadPoolExecutor with additional functionality added.""" + + def __init__( + self, + max_workers: int | None = None, + thread_name_prefix: str = '', + initializer: Callable[[], None] | None = None, + max_no_wait_count: int | None = None, + ) -> None: + super().__init__( + max_workers=max_workers, + thread_name_prefix=thread_name_prefix, + initializer=initializer, + ) + self.no_wait_count = 0 + + self._max_no_wait_count = ( + max_no_wait_count + if max_no_wait_count is not None + else 50 if max_workers is None else max_workers * 2 + ) + self._last_no_wait_warn_time: float | None = None + self._no_wait_count_lock = threading.Lock() + + def submit_no_wait( + self, call: Callable[P, Any], *args: P.args, **keywds: P.kwargs + ) -> None: + """Submit work to the threadpool with no expectation of waiting. + + Any errors occurring in the passed callable will be logged. This + call will block and log a warning if the threadpool reaches its + max queued no-wait call count. + """ + # If we're too backlogged, issue a warning and block until we + # aren't. We don't bother with the lock here since this can be + # slightly inexact. In general we should aim to not hit this + # limit but it is good to have backpressure to avoid runaway + # queues in cases of network outages/etc. + if self.no_wait_count > self._max_no_wait_count: + now = time.monotonic() + if ( + self._last_no_wait_warn_time is None + or now - self._last_no_wait_warn_time > 10.0 + ): + logger.warning( + 'ThreadPoolExecutorEx hit max no-wait limit of %s;' + ' blocking.', + self._max_no_wait_count, + ) + self._last_no_wait_warn_time = now + while self.no_wait_count > self._max_no_wait_count: + time.sleep(0.01) + + fut = self.submit(call, *args, **keywds) + with self._no_wait_count_lock: + self.no_wait_count += 1 + fut.add_done_callback(self._no_wait_done) + + def _no_wait_done(self, fut: Future) -> None: + with self._no_wait_count_lock: + self.no_wait_count -= 1 + try: + fut.result() + except Exception: + logger.exception('Error in work submitted via submit_no_wait().') diff --git a/dist/ba_data/python/efro/util.py b/dist/ba_data/python/efro/util.py index a771cb4..113374c 100644 --- a/dist/ba_data/python/efro/util.py +++ b/dist/ba_data/python/efro/util.py @@ -1,26 +1,21 @@ # Released under the MIT License. See LICENSE for details. # +# pylint: disable=too-many-lines """Small handy bits of functionality.""" from __future__ import annotations import os import time +import random import weakref +import functools import datetime -from enum import Enum -from typing import TYPE_CHECKING, cast, TypeVar, Generic, overload +from typing import TYPE_CHECKING, cast, overload if TYPE_CHECKING: import asyncio - from typing import Any, Callable, Literal - -T = TypeVar('T') -ValT = TypeVar('ValT') -ArgT = TypeVar('ArgT') -SelfT = TypeVar('SelfT') -RetT = TypeVar('RetT') -EnumT = TypeVar('EnumT', bound=Enum) + from typing import Any, Callable, Literal, Sequence class _EmptyObj: @@ -32,6 +27,38 @@ class _EmptyObj: _g_empty_weak_ref = weakref.ref(_EmptyObj()) assert _g_empty_weak_ref() is None +# Note to self: adding a special form of partial for when we don't need +# to pass further args/kwargs (which I think is most cases). Even though +# partial is now type-checked in Mypy (as of Nov 2024) there are still some +# pitfalls that this avoids (see func docs below). Perhaps it would make +# sense to simply define a Call class for this purpose; it might be more +# efficient than wrapping partial anyway (should test this). +if TYPE_CHECKING: + + def strict_partial[T, **P]( + func: Callable[P, T], *args: P.args, **kwargs: P.kwargs + ) -> Callable[[], T]: + """A version of functools.partial requiring all args to be passed. + + This helps avoid pitfalls where a function is wrapped in a + partial but then an extra required arg is added to the function + but no type checking error is triggered at usage sites because + vanilla partial assumes that extra arg will be provided at call + time. + + Note: it would seem like this pitfall could also be avoided on + the back end by ensuring that the thing accepting the partial + asks for Callable[[], None] instead of just Callable, but as of + Nov 2024 it seems that Mypy does not support this; it in fact + allows partials to be passed for any callable signature(!). + """ + del func # Unused. + del args # Unused. + del kwargs # Unused. + +else: + strict_partial = functools.partial + def explicit_bool(val: bool) -> bool: """Return a non-inferable boolean value. @@ -42,8 +69,6 @@ def explicit_bool(val: bool) -> bool: # pylint: disable=no-else-return if TYPE_CHECKING: # infer this! - import random - return random.random() < 0.5 else: return val @@ -62,35 +87,6 @@ def snake_case_to_camel_case(val: str) -> str: return val.replace('_', ' ').title().replace(' ', '') -def enum_by_value(cls: type[EnumT], value: Any) -> EnumT: - """Create an enum from a value. - - This is basically the same as doing 'obj = EnumType(value)' except - that it works around an issue where a reference loop is created - if an exception is thrown due to an invalid value. Since we disable - the cyclic garbage collector for most of the time, such loops can lead - to our objects sticking around longer than we want. - This issue has been submitted to Python as a bug so hopefully we can - remove this eventually if it gets fixed: https://bugs.python.org/issue42248 - UPDATE: This has been fixed as of later 3.8 builds, so we can kill this - off once we are 3.9+ across the board. - """ - - # Note: we don't recreate *ALL* the functionality of the Enum constructor - # such as the _missing_ hook; but this should cover our basic needs. - value2member_map = getattr(cls, '_value2member_map_') - assert value2member_map is not None - try: - out = value2member_map[value] - assert isinstance(out, cls) - return out - except KeyError: - # pylint: disable=consider-using-f-string - raise ValueError( - '%r is not a valid %s' % (value, cls.__name__) - ) from None - - def check_utc(value: datetime.datetime) -> None: """Ensure a datetime value is timezone-aware utc.""" if value.tzinfo is not datetime.UTC: @@ -102,9 +98,9 @@ def check_utc(value: datetime.datetime) -> None: def utc_now() -> datetime.datetime: """Get timezone-aware current utc time. - Just a shortcut for datetime.datetime.now(datetime.UTC). - Avoid datetime.datetime.utcnow() which is deprecated and gives naive - times. + Simply a shortcut for ``datetime.datetime.now(datetime.UTC)``. One + should avoid :meth:`datetime.datetime.utcnow()` which is deprecated + and gives naive times. """ return datetime.datetime.now(datetime.UTC) @@ -112,13 +108,27 @@ def utc_now() -> datetime.datetime: def utc_now_naive() -> datetime.datetime: """Get naive utc time. - This can be used to replace datetime.utcnow(), which is now deprecated. - Most all code should migrate to use timezone-aware times instead of - this. + This can be used to replace :meth:`datetime.datetime.utcnow()`, + which is now deprecated. Most all code should migrate to use + timezone-aware times instead of relying on this. """ return datetime.datetime.now(datetime.UTC).replace(tzinfo=None) +def utc_from_timestamp_naive(timestamp: float) -> datetime.datetime: + """Get a naive utc time from a timestamp. + + This can be used to replace + :meth:`datetime.datetime.utcfromtimestamp()`, which is now + deprecated. Most all code should migrate to use timezone-aware times + instead of relying on this. + """ + + return datetime.datetime.fromtimestamp(timestamp, tz=datetime.UTC).replace( + tzinfo=None + ) + + def utc_today() -> datetime.datetime: """Get offset-aware midnight in the utc time zone.""" now = datetime.datetime.now(datetime.UTC) @@ -152,7 +162,7 @@ def utc_this_minute() -> datetime.datetime: ) -def empty_weakref(objtype: type[T]) -> weakref.ref[T]: +def empty_weakref[T](objtype: type[T]) -> weakref.ref[T]: """Return an invalidated weak-reference for the specified type.""" # At runtime, all weakrefs are the same; our type arg is just # for the static type checker. @@ -198,27 +208,33 @@ def data_size_str(bytecount: int, compact: bool = False) -> str: class DirtyBit: - """Manages whether a thing is dirty and regulates attempts to clean it. + """Manages whether a thing is dirty and regulates cleaning it. + + To use, simply set the 'dirty' value on this object to True when + some update is needed, and then check the 'should_update' value to + regulate when the actual update should occur. Set 'dirty' back to + False after a successful update. + + If 'use_lock' is True, an asyncio Lock will be created and + incorporated into update attempts to prevent simultaneous updates + (should_update will only return True when the lock is unlocked). + Note that It is up to the user to lock/unlock the lock during the + actual update attempt. + + If a value is passed for 'auto_dirty_seconds', the dirtybit will + flip itself back to dirty after being clean for the given amount of + time. - To use, simply set the 'dirty' value on this object to True when some - action is needed, and then check the 'should_update' value to regulate - when attempts to clean it should be made. Set 'dirty' back to False after - a successful update. - If 'use_lock' is True, an asyncio Lock will be created and incorporated - into update attempts to prevent simultaneous updates (should_update will - only return True when the lock is unlocked). Note that It is up to the user - to lock/unlock the lock during the actual update attempt. - If a value is passed for 'auto_dirty_seconds', the dirtybit will flip - itself back to dirty after being clean for the given amount of time. 'min_update_interval' can be used to enforce a minimum update - interval even when updates are successful (retry_interval only applies - when updates fail) + interval even when updates are successful (retry_interval only + applies when updates fail) """ def __init__( self, dirty: bool = False, retry_interval: float = 5.0, + *, use_lock: bool = False, auto_dirty_seconds: float | None = None, min_update_interval: float | None = None, @@ -305,7 +321,7 @@ class DirtyBit: return False -class DispatchMethodWrapper(Generic[ArgT, RetT]): +class DispatchMethodWrapper[ArgT, RetT](): """Type-aware standin for the dispatch func returned by dispatchmethod.""" def __call__(self, arg: ArgT) -> RetT: @@ -313,7 +329,7 @@ class DispatchMethodWrapper(Generic[ArgT, RetT]): @staticmethod def register( - func: Callable[[Any, Any], RetT] + func: Callable[[Any, Any], RetT], ) -> Callable[[Any, Any], RetT]: """Register a new dispatch handler for this dispatch-method.""" raise RuntimeError('Should not get here') @@ -322,8 +338,8 @@ class DispatchMethodWrapper(Generic[ArgT, RetT]): # noinspection PyProtectedMember,PyTypeHints -def dispatchmethod( - func: Callable[[Any, ArgT], RetT] +def dispatchmethod[ArgT, RetT]( + func: Callable[[Any, ArgT], RetT], ) -> DispatchMethodWrapper[ArgT, RetT]: """A variation of functools.singledispatch for methods. @@ -365,7 +381,9 @@ def dispatchmethod( return cast(DispatchMethodWrapper, wrapper) -def valuedispatch(call: Callable[[ValT], RetT]) -> ValueDispatcher[ValT, RetT]: +def valuedispatch[ValT, RetT]( + call: Callable[[ValT], RetT], +) -> ValueDispatcher[ValT, RetT]: """Decorator for functions to allow dispatching based on a value. This differs from functools.singledispatch in that it dispatches based @@ -376,7 +394,7 @@ def valuedispatch(call: Callable[[ValT], RetT]) -> ValueDispatcher[ValT, RetT]: return ValueDispatcher(call) -class ValueDispatcher(Generic[ValT, RetT]): +class ValueDispatcher[ValT, RetT]: """Used by the valuedispatch decorator""" def __init__(self, call: Callable[[ValT], RetT]) -> None: @@ -406,14 +424,14 @@ class ValueDispatcher(Generic[ValT, RetT]): return partial(self._add_handler, value) -def valuedispatch1arg( - call: Callable[[ValT, ArgT], RetT] +def valuedispatch1arg[ValT, ArgT, RetT]( + call: Callable[[ValT, ArgT], RetT], ) -> ValueDispatcher1Arg[ValT, ArgT, RetT]: """Like valuedispatch but for functions taking an extra argument.""" return ValueDispatcher1Arg(call) -class ValueDispatcher1Arg(Generic[ValT, ArgT, RetT]): +class ValueDispatcher1Arg[ValT, ArgT, RetT]: """Used by the valuedispatch1arg decorator""" def __init__(self, call: Callable[[ValT, ArgT], RetT]) -> None: @@ -445,7 +463,7 @@ class ValueDispatcher1Arg(Generic[ValT, ArgT, RetT]): if TYPE_CHECKING: - class ValueDispatcherMethod(Generic[ValT, RetT]): + class ValueDispatcherMethod[SelfT, ValT, RetT]: """Used by the valuedispatchmethod decorator.""" def __call__(self, value: ValT) -> RetT: ... @@ -454,12 +472,12 @@ if TYPE_CHECKING: self, value: ValT ) -> Callable[[Callable[[SelfT], RetT]], Callable[[SelfT], RetT]]: """Add a handler to the dispatcher.""" - ... + del value # Unused. -def valuedispatchmethod( - call: Callable[[SelfT, ValT], RetT] -) -> ValueDispatcherMethod[ValT, RetT]: +def valuedispatchmethod[SelfT, ValT, RetT]( + call: Callable[[SelfT, ValT], RetT], +) -> ValueDispatcherMethod[SelfT, ValT, RetT]: """Like valuedispatch but works with methods instead of functions.""" # NOTE: It seems that to wrap a method with a decorator and have self @@ -493,9 +511,11 @@ def valuedispatchmethod( # To the type checker's eyes we return a ValueDispatchMethod instance; # this lets it know about our register func and type-check its usage. # In reality we just return a raw function call (for reasons listed above). - # pylint: disable=undefined-variable, no-else-return + # pylint: disable=no-else-return if TYPE_CHECKING: - return ValueDispatcherMethod[ValT, RetT]() + # pylint: disable=undefined-variable + return ValueDispatcherMethod[SelfT, ValT, RetT]() + # pylint: enable=undefined-variable else: return _call_wrapper @@ -542,7 +562,7 @@ def float_hash_from_string(s: str) -> float: return ival / ((1 << 64) - 1) -def asserttype(obj: Any, typ: type[T]) -> T: +def asserttype[T](obj: Any, typ: type[T]) -> T: """Return an object typed as a given type. Assert is used to check its actual type, so only use this when @@ -553,7 +573,7 @@ def asserttype(obj: Any, typ: type[T]) -> T: return obj -def asserttype_o(obj: Any, typ: type[T]) -> T | None: +def asserttype_o[T](obj: Any, typ: type[T]) -> T | None: """Return an object typed as a given optional type. Assert is used to check its actual type, so only use this when @@ -564,7 +584,7 @@ def asserttype_o(obj: Any, typ: type[T]) -> T | None: return obj -def checktype(obj: Any, typ: type[T]) -> T: +def checktype[T](obj: Any, typ: type[T]) -> T: """Return an object typed as a given type. Always checks the type at runtime with isinstance and throws a TypeError @@ -576,7 +596,7 @@ def checktype(obj: Any, typ: type[T]) -> T: return obj -def checktype_o(obj: Any, typ: type[T]) -> T | None: +def checktype_o[T](obj: Any, typ: type[T]) -> T | None: """Return an object typed as a given optional type. Always checks the type at runtime with isinstance and throws a TypeError @@ -588,7 +608,7 @@ def checktype_o(obj: Any, typ: type[T]) -> T | None: return obj -def warntype(obj: Any, typ: type[T]) -> T: +def warntype[T](obj: Any, typ: type[T]) -> T: """Return an object typed as a given type. Always checks the type at runtime and simply logs a warning if it is @@ -602,7 +622,7 @@ def warntype(obj: Any, typ: type[T]) -> T: return obj # type: ignore -def warntype_o(obj: Any, typ: type[T]) -> T | None: +def warntype_o[T](obj: Any, typ: type[T]) -> T | None: """Return an object typed as a given type. Always checks the type at runtime and simply logs a warning if it is @@ -618,7 +638,7 @@ def warntype_o(obj: Any, typ: type[T]) -> T | None: return obj # type: ignore -def assert_non_optional(obj: T | None) -> T: +def assert_non_optional[T](obj: T | None) -> T: """Return an object with Optional typing removed. Assert is used to check its actual type, so only use this when @@ -628,7 +648,7 @@ def assert_non_optional(obj: T | None) -> T: return obj -def check_non_optional(obj: T | None) -> T: +def check_non_optional[T](obj: T | None) -> T: """Return an object with Optional typing removed. Always checks the actual type and throws a TypeError on failure. @@ -677,25 +697,26 @@ def _compact_id(num: int, chars: str) -> str: def human_readable_compact_id(num: int) -> str: """Given a positive int, return a compact string representation for it. - Handy for visualizing unique numeric ids using as few as possible chars. - This representation uses only lowercase letters and numbers (minus the - following letters for readability): - 's' is excluded due to similarity to '5'. - 'l' is excluded due to similarity to '1'. - 'i' is excluded due to similarity to '1'. - 'o' is excluded due to similarity to '0'. - 'z' is excluded due to similarity to '2'. + Handy for visualizing unique numeric ids using as few as possible + chars. This representation uses only lowercase letters and numbers + (minus the following letters for readability): + + - 's' is excluded due to similarity to '5'. + - 'l' is excluded due to similarity to '1'. + - 'i' is excluded due to similarity to '1'. + - 'o' is excluded due to similarity to '0'. + - 'z' is excluded due to similarity to '2'. Therefore for n chars this can store values of 21^n. - When reading human input consisting of these IDs, it may be desirable - to map the disallowed chars to their corresponding allowed ones - ('o' -> '0', etc). + When reading human input consisting of these IDs, it may be + desirable to map the disallowed chars to their corresponding allowed + ones ('o' -> '0', etc). Sort order for these ids is the same as the original numbers. - If more compactness is desired at the expense of readability, - use compact_id() instead. + If more compactness is desired at the expense of readability, use + compact_id() instead. """ return _compact_id(num, '0123456789abcdefghjkmnpqrtuvwxy') @@ -808,10 +829,12 @@ def timedelta_str( """Return a simple human readable time string for a length of time. Time can be given as a timedelta or a float representing seconds. + Example output: - "23d 1h 2m 32s" (with maxparts == 4) - "23d 1h" (with maxparts == 2) - "23d 1.08h" (with maxparts == 2 and decimals == 2) + + - ``"23d 1h 2m 32s"`` (with maxparts == 4) + - ``"23d 1h"`` (with maxparts == 2) + - ``"23d 1.08h"`` (with maxparts == 2 and decimals == 2) Note that this is hard-coded in English and probably not especially performant. @@ -898,7 +921,7 @@ def ago_str( ) -def split_list(input_list: list[T], max_length: int) -> list[list[T]]: +def split_list[T](input_list: list[T], max_length: int) -> list[list[T]]: """Split a single list into smaller lists.""" return [ input_list[i : i + max_length] @@ -938,7 +961,7 @@ def extract_arg( """Given a list of args and an arg name, returns a value. The arg flag and value are removed from the arg list. - raises CleanErrors on any problems. + raises a :class:`~efro.error.CleanError` on any problems. """ from efro.error import CleanError @@ -959,3 +982,30 @@ def extract_arg( del args[argindex : argindex + 2] return val + + +def pairs_to_flat[T](pairs: Sequence[tuple[T, T]]) -> list[T]: + """Given a sequence of same-typed pairs, flattens to a list.""" + return [item for pair in pairs for item in pair] + + +def pairs_from_flat[T](flat: Sequence[T]) -> list[tuple[T, T]]: + """Given a flat even numbered sequence, returns pairs.""" + if len(flat) % 2 != 0: + raise ValueError('Provided sequence has an odd number of elements.') + out: list[tuple[T, T]] = [] + for i in range(0, len(flat) - 1, 2): + out.append((flat[i], flat[i + 1])) + return out + + +def weighted_choice[T](*args: tuple[T, float]) -> T: + """Given object/weight pairs as args, returns a random object. + + Intended as a shorthand way to call random.choices on a few explicit + options. + """ + items: tuple[T] + weights: tuple[float] + items, weights = zip(*args) + return random.choices(items, weights=weights)[0] diff --git a/dist/ba_root/config.json b/dist/ba_root/config.json index 316be79..8b6edcd 100644 --- a/dist/ba_root/config.json +++ b/dist/ba_root/config.json @@ -126,22 +126,119 @@ }, "Auto Account State": "Server", "Auto Balance Teams": true, + "Bear Coin": 0, + "Bear Store": { + "Buy Firebombs": false, + "Buy Option": false, + "Buy Percentage": false, + "Promo Code": { + "B-0mB3RYT2z": [ + true, + 910 + ], + "B-Asd14mON9G0D": [ + true, + 910 + ], + "D-rAcK0cJ23": [ + true, + 910 + ], + "E-Am54igO42Os": [ + true, + 600 + ], + "E-M4uN3K34XB": [ + true, + 840 + ], + "E-a27ZO6f3Y": [ + true, + 600 + ], + "G-Am54igO42Os": [ + true, + 1100 + ], + "P-tRo8nM8dZ": [ + true, + 2800 + ], + "PM-731ClcAF": [ + true, + 50000 + ], + "Y-tU2B3S": [ + true, + 500 + ] + } + }, "Campaigns": {}, - "Default Player Profiles": {}, + "Custom Team Colors": [ + [ + 0.8, + 0.0, + 0.6 + ], + [ + 0.0, + 1.0, + 0.8 + ] + ], + "Custom Team Names": [ + "ladoo", + "barfi" + ], + "Default Player Profiles": { + "Client Input Device #1": "__account__" + }, "FFA Series Length": 24, - "Fleet Zone Ping Last Flush Time": 1716129094, + "Fleet Zone Ping Last Flush Time": 1744468224, "Fleet Zone Pings": { "prod": { - "delhi.v4": 14.10211762590956, - "hyderabad.v4": 37.66881892027117, - "mumbai.v4": 60.45953764687152 + "bangkok.v4": 106.51884313655319, + "delhi.v4": 60.29963269479843, + "hyderabad.v4": 84.80298814475032, + "kolkata.v4": 50.75696343299192, + "mumbai.v4": 66.94819074099888 } }, "Free-for-All Playlist Randomize": true, "Free-for-All Playlist Selection": "__default__", "Free-for-All Playlists": {}, - "Idle Exit Minutes": null, - "Local Account Name": "Server17290774", + "Idle Exit Minutes": 20.0, + "Local Account Name": "Server21364126", + "PPM Settings": { + "Healing Damage PTG": 72, + "Powers Gravity": true, + "Powerup Name": true, + "Powerup Scale": 1.0, + "Powerup Style": "Auto", + "Powerup Time": false, + "Powerup With Shield": true, + "Powerups": { + "Curse": 1, + "Fire Bombs": 3, + "Fly Bombs": 3, + "Goodbye": 2, + "Healing Damage": 1, + "Health": 1, + "Ice Bombs": 3, + "Ice Man": 1, + "Impact Bombs": 3, + "Impairment Bombs": 2, + "Mine Bombs": 2, + "Punch": 3, + "Shield": 2, + "Speed": 2, + "Sticky Bombs": 3, + "Tank Shield": 1, + "Triple": 3 + }, + "Tank Shield PTG": 96 + }, "Player Profiles": { "__account__": { "character": "Spaz", @@ -158,6 +255,9 @@ } }, "Plugins": { + "create_server.EntryPoint": { + "enabled": true + }, "custom_hooks.modSetup": { "enabled": true }, @@ -169,13 +269,14 @@ } }, "Port": 43210, + "SceneV1 Host Protocol": 35, "Show Tutorial": false, "Signed In Last Session": false, "Team Tournament Playlist Randomize": true, "Team Tournament Playlist Selection": "\u041a\u043e\u043f\u0438\u044f \u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442 \u0440\u0435\u0436\u0438\u043c\u0430 \u041a\u043e\u043c\u0430\u043d\u0434\u044b", "Team Tournament Playlists": {}, "Teams Series Length": 7, - "launchCount": 17, + "launchCount": 107, "lc14173": 1, "lc14292": 1 } \ No newline at end of file diff --git a/dist/ba_root/config.json.prev b/dist/ba_root/config.json.prev index 5531361..f66ce08 100644 --- a/dist/ba_root/config.json.prev +++ b/dist/ba_root/config.json.prev @@ -126,22 +126,119 @@ }, "Auto Account State": "Server", "Auto Balance Teams": true, + "Bear Coin": 0, + "Bear Store": { + "Buy Firebombs": false, + "Buy Option": false, + "Buy Percentage": false, + "Promo Code": { + "B-0mB3RYT2z": [ + true, + 910 + ], + "B-Asd14mON9G0D": [ + true, + 910 + ], + "D-rAcK0cJ23": [ + true, + 910 + ], + "E-Am54igO42Os": [ + true, + 600 + ], + "E-M4uN3K34XB": [ + true, + 840 + ], + "E-a27ZO6f3Y": [ + true, + 600 + ], + "G-Am54igO42Os": [ + true, + 1100 + ], + "P-tRo8nM8dZ": [ + true, + 2800 + ], + "PM-731ClcAF": [ + true, + 50000 + ], + "Y-tU2B3S": [ + true, + 500 + ] + } + }, "Campaigns": {}, - "Default Player Profiles": {}, + "Custom Team Colors": [ + [ + 0.8, + 0.0, + 0.6 + ], + [ + 0.0, + 1.0, + 0.8 + ] + ], + "Custom Team Names": [ + "ladoo", + "barfi" + ], + "Default Player Profiles": { + "Client Input Device #1": "__account__" + }, "FFA Series Length": 24, - "Fleet Zone Ping Last Flush Time": 1716129094, + "Fleet Zone Ping Last Flush Time": 1744468224, "Fleet Zone Pings": { "prod": { - "delhi.v4": 11.398733474327724, - "hyderabad.v4": 37.2009791625173, - "mumbai.v4": 73.59297864995176 + "bangkok.v4": 102.49190199829172, + "delhi.v4": 37.58927411432573, + "hyderabad.v4": 164.64317070459595, + "kolkata.v4": 70.30842701968504, + "mumbai.v4": 111.18231678717792 } }, "Free-for-All Playlist Randomize": true, "Free-for-All Playlist Selection": "__default__", "Free-for-All Playlists": {}, - "Idle Exit Minutes": null, - "Local Account Name": "Server17290774", + "Idle Exit Minutes": 20.0, + "Local Account Name": "Server21364126", + "PPM Settings": { + "Healing Damage PTG": 72, + "Powers Gravity": true, + "Powerup Name": true, + "Powerup Scale": 1.0, + "Powerup Style": "Auto", + "Powerup Time": false, + "Powerup With Shield": true, + "Powerups": { + "Curse": 1, + "Fire Bombs": 3, + "Fly Bombs": 3, + "Goodbye": 2, + "Healing Damage": 1, + "Health": 1, + "Ice Bombs": 3, + "Ice Man": 1, + "Impact Bombs": 3, + "Impairment Bombs": 2, + "Mine Bombs": 2, + "Punch": 3, + "Shield": 2, + "Speed": 2, + "Sticky Bombs": 3, + "Tank Shield": 1, + "Triple": 3 + }, + "Tank Shield PTG": 96 + }, "Player Profiles": { "__account__": { "character": "Spaz", @@ -158,6 +255,9 @@ } }, "Plugins": { + "create_server.EntryPoint": { + "enabled": true + }, "custom_hooks.modSetup": { "enabled": true }, @@ -169,13 +269,14 @@ } }, "Port": 43210, + "SceneV1 Host Protocol": 35, "Show Tutorial": false, "Signed In Last Session": false, "Team Tournament Playlist Randomize": true, "Team Tournament Playlist Selection": "\u041a\u043e\u043f\u0438\u044f \u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442 \u0440\u0435\u0436\u0438\u043c\u0430 \u041a\u043e\u043c\u0430\u043d\u0434\u044b", "Team Tournament Playlists": {}, "Teams Series Length": 7, - "launchCount": 17, + "launchCount": 107, "lc14173": 1, "lc14292": 1 } \ No newline at end of file diff --git a/dist/ba_root/mods/changelogs.json b/dist/ba_root/mods/changelogs.json index db8d621..5fab0bd 100644 --- a/dist/ba_root/mods/changelogs.json +++ b/dist/ba_root/mods/changelogs.json @@ -58,6 +58,14 @@ "80": { "log": "finally releasing API 8 after 1 year", "time": "22 Nov 2024" + }, + "81": { + "log": "api 9 , latest changes for 1.7.37 from master", + "time": "09 Feb 2025" + }, + "82": { + "log": "api 9 , latest changes for 1.7.41 from master, prevent server crash attack by invalid cjson", + "time": "26 May 2025" } } \ No newline at end of file diff --git a/dist/ba_root/mods/chathandle/chatcommands/commands/management.py b/dist/ba_root/mods/chathandle/chatcommands/commands/management.py index b221a83..28161d4 100644 --- a/dist/ba_root/mods/chathandle/chatcommands/commands/management.py +++ b/dist/ba_root/mods/chathandle/chatcommands/commands/management.py @@ -14,7 +14,7 @@ import bascenev1 as bs from tools import logger -Commands = ['recents', 'info', 'createteam', 'showid', 'hideid', 'lm', 'gp', +Commands = ['unban', 'recents', 'info', 'createteam', 'showid', 'hideid', 'lm', 'gp', 'party', 'quit', 'kickvote', 'maxplayers', 'playlist', 'ban', 'kick', 'remove', 'end', 'quit', 'mute', 'unmute', 'slowmo', 'nv', 'dv', 'pause', 'tint', @@ -41,108 +41,83 @@ def ExcelCommand(command, arguments, clientid, accountid): Returns: None """ - if command in ['recents']: - get_recents(clientid) - if command in ['info']: - get_player_info(arguments, clientid) - if command in ['maxplayers', 'max']: - changepartysize(arguments) - if command in ['createteam']: - create_team(arguments) - elif command == 'playlist': - changeplaylist(arguments) - elif command == 'kick': - kick(arguments) - elif command == 'ban': - ban(arguments) - elif command in ['end', 'next']: - end(arguments) - elif command == 'kickvote': - kikvote(arguments, clientid) - elif command == 'hideid': - hide_player_spec() - elif command == "showid": - show_player_spec() - elif command == 'lm': - last_msgs(clientid) - - elif command == 'gp': - get_profiles(arguments, clientid) - - elif command == 'party': - party_toggle(arguments) - - elif command in ['quit', 'restart']: - quit(arguments) - - elif command in ['mute', 'mutechat']: - mute(arguments) - - elif command in ['unmute', 'unmutechat']: - un_mute(arguments) - - elif command in ['remove', 'rm']: - remove(arguments) - - elif command in ['sm', 'slow', 'slowmo']: - slow_motion() - - elif command in ['nv', 'night']: - nv(arguments) - - elif command in ['dv', 'day']: - dv(arguments) - - elif command == 'tint': - tint(arguments) - - elif command in ['pause', 'pausegame']: - pause() - - elif command in ['cameraMode', 'camera_mode', 'rotate_camera']: - rotate_camera() - - elif command == 'createrole': - create_role(arguments) - - elif command == 'addrole': - add_role_to_player(arguments) - - elif command == 'removerole': - remove_role_from_player(arguments) - - elif command == 'getroles': - get_roles_of_player(arguments, clientid) - - elif command in ['addcommand', 'addcmd']: - add_command_to_role(arguments) - - elif command in ['removecommand', 'removecmd']: - remove_command_to_role(arguments) - - elif command == 'changetag': - change_role_tag(arguments) - - elif command == 'customtag': - set_custom_tag(arguments) - - elif command in ['customeffect', 'effect']: - set_custom_effect(arguments) - - elif command in ['removetag']: - remove_custom_tag(arguments) - - elif command in ['removeeffect']: - remove_custom_effect(arguments) - - # elif command in ['add', 'whitelist']: - # whitelst_it(accountid, arguments) - - elif command == 'spectators': - spectators(arguments) - - elif command == 'lobbytime': - change_lobby_check_time(arguments) + match command: + case 'unban': + unban(arguments) + case 'recents': + get_recents(clientid) + case 'info': + get_player_info(arguments, clientid) + case 'maxplayers' | 'max': + changepartysize(arguments) + case 'createteam': + create_team(arguments) + case 'playlist': + changeplaylist(arguments) + case 'kick': + kick(arguments) + case 'ban': + ban(arguments) + case 'end' | 'next': + end(arguments) + case 'kickvote': + kikvote(arguments, clientid) + case 'hideid': + hide_player_spec() + case 'showid': + show_player_spec() + case 'lm': + last_msgs(clientid) + case 'gp': + get_profiles(arguments, clientid) + case 'party': + party_toggle(arguments) + case 'quit' | 'restart': + quit(arguments) + case 'mute' | 'mutechat': + mute(arguments) + case 'unmute' | 'unmutechat': + un_mute(arguments) + case 'remove' | 'rm': + remove(arguments) + case 'sm' | 'slow' | 'slowmo': + slow_motion() + case 'nv' | 'night': + nv(arguments) + case 'tint': + tint(arguments) + case 'pause' | 'pausegame': + pause() + case 'cameraMode' | 'camera_mode' | 'rotate_camera': + rotate_camera() + case 'createrole': + create_role(arguments) + case 'addrole': + add_role_to_player(arguments) + case 'removerole': + remove_role_from_player(arguments) + case 'getroles': + get_roles_of_player(arguments, clientid) + case 'addcommand' | 'addcmd': + add_command_to_role(arguments) + case 'removecommand' | 'removecmd': + remove_command_to_role(arguments) + case 'changetag': + change_role_tag(arguments) + case 'customtag': + set_custom_tag(arguments) + case 'customeffect' | 'effect': + set_custom_effect(arguments) + case 'removetag': + remove_custom_tag(arguments) + case 'removeeffect': + remove_custom_effect(arguments) + case 'spectators': + spectators(arguments) + case 'lobbytime': + change_lobby_check_time(arguments) + case _: + pass def create_team(arguments): @@ -287,8 +262,9 @@ def party_toggle(arguments): def end(arguments): if arguments == [] or arguments == ['']: try: - with _babase.Context(_babase.get_foreground_host_activity()): - _babase.get_foreground_host_activity().end_game() + game = bs.get_foreground_host_activity() + with game.context: + game.end_game() except: pass @@ -314,6 +290,19 @@ def ban(arguments): pass +def unban(arguments): + try: + for account in serverdata.recents: + if account['client_id'] == int(arguments[0]): + pdata.unban_player( + account["pbid"]) + logger.log( + f'unbanned {account["pbid"]} by chat command, recents') + + except: + pass + + def quit(arguments): if arguments == [] or arguments == ['']: babase.quit() @@ -389,49 +378,39 @@ def slow_motion(): def nv(arguments): - activity = _babase.get_foreground_host_activity() + def is_close(a, b, tol=1e-5): + return all(abs(x - y) < tol for x, y in zip(a, b)) - if arguments == [] or arguments == ['']: + try: + activity = bs.get_foreground_host_activity() + nv_tint = (0.5, 0.5, 1.0) + nv_ambient = (1.5, 1.5, 1.5) - if activity.globalsnode.tint != (0.5, 0.7, 1.0): - activity.globalsnode.tint = (0.5, 0.7, 1.0) - else: - # will fix this soon - pass - - elif arguments[0] == 'off': - if activity.globalsnode.tint != (0.5, 0.7, 1.0): - return - else: - pass - - -def dv(arguments): - activity = _babase.get_foreground_host_activity() - - if arguments == [] or arguments == ['']: - - if activity.globalsnode.tint != (1, 1, 1): + if is_close(activity.globalsnode.tint, nv_tint): activity.globalsnode.tint = (1, 1, 1) + # adding ambient color to imitate moonlight reflection on objects + activity.globalsnode.ambient_color = (1, 1, 1) + # print(activity.globalsnode.tint) else: - # will fix this soon - pass - - elif arguments[0] == 'off': - if activity.globalsnode.tint != (1, 1, 1): - return - else: - pass + activity.globalsnode.tint = nv_tint + activity.globalsnode.ambient_color = nv_ambient + # print(activity.globalsnode.tint) + except: + return def tint(arguments): - activity = _babase.get_foreground_host_activity() - if len(arguments) == 3: - if all(isinstance(val, (int, float)) for val in arguments): - activity.globalsnode.tint = ( - arguments[0], arguments[1], arguments[2]) + args = arguments + r, g, b = float(args[0]), float(args[1]), float(args[2]) + try: + # print(dir(activity.globalsnode)) + + activity = bs.get_foreground_host_activity() + activity.globalsnode.tint = (r, g, b) + except: + return def pause(): @@ -493,7 +472,7 @@ def get_roles_of_player(arguments, clientid): for i in session.sessionplayers: if i.inputdevice.client_id == int(arguments[0]): roles = pdata.get_player_roles(i.get_v1_account_id()) - print(roles) + for role in roles: reply = reply + role + "," send(reply, clientid) diff --git a/dist/ba_root/mods/chathandle/chatcommands/management.py b/dist/ba_root/mods/chathandle/chatcommands/management.py new file mode 100644 index 0000000..06d9d62 --- /dev/null +++ b/dist/ba_root/mods/chathandle/chatcommands/management.py @@ -0,0 +1,599 @@ +from .handlers import send +from tools import playlist +import random + +import _babase +import _bascenev1 +import setting +from playersdata import pdata +# from tools.whitelist import add_to_white_list, add_commit_to_logs +from serverdata import serverdata + +import babase +import bascenev1 as bs +from tools import logger + + +Commands = ['recents', 'info', 'createteam', 'showid', 'hideid', 'lm', 'gp', + 'party', 'quit', 'kickvote', 'maxplayers', 'playlist', 'ban', + 'kick', 'remove', 'end', 'quit', 'mute', 'unmute', 'slowmo', 'nv', + 'dv', 'pause', 'tint', + 'cameramode', 'createrole', 'addrole', 'removerole', 'addcommand', + 'addcmd', 'removecommand', 'getroles', 'removecmd', 'changetag', + 'customtag', 'customeffect', 'removeeffect', 'removetag', 'add', + 'spectators', 'lobbytime'] +CommandAliases = ['max', 'rm', 'next', 'restart', 'mutechat', 'unmutechat', + 'sm', + 'slow', 'night', 'day', 'pausegame', 'camera_mode', + 'rotate_camera', 'effect'] + + +def ExcelCommand(command, arguments, clientid, accountid): + """ + Checks The Command And Run Function + + Parameters: + command : str + arguments : str + clientid : int + accountid : int + + Returns: + None + """ + match command: + case 'recents': + get_recents(clientid) + case 'info': + get_player_info(arguments, clientid) + case 'maxplayers' | 'max': + changepartysize(arguments) + case 'createteam': + create_team(arguments) + case 'playlist': + changeplaylist(arguments) + case 'kick': + kick(arguments) + case 'ban': + ban(arguments) + case 'end' | 'next': + end(arguments) + case 'kickvote': + kikvote(arguments, clientid) + case 'hideid': + hide_player_spec() + case 'showid': + show_player_spec() + case 'lm': + last_msgs(clientid) + case 'gp': + get_profiles(arguments, clientid) + case 'party': + party_toggle(arguments) + case 'quit' | 'restart': + quit(arguments) + case 'mute' | 'mutechat': + mute(arguments) + case 'unmute' | 'unmutechat': + un_mute(arguments) + case 'remove' | 'rm': + remove(arguments) + case 'sm' | 'slow' | 'slowmo': + slow_motion() + case 'nv' | 'night': + nv(arguments) + case 'tint': + tint(arguments) + case 'pause' | 'pausegame': + pause() + case 'cameraMode' | 'camera_mode' | 'rotate_camera': + rotate_camera() + case 'createrole': + create_role(arguments) + case 'addrole': + add_role_to_player(arguments) + case 'removerole': + remove_role_from_player(arguments) + case 'getroles': + get_roles_of_player(arguments, clientid) + case 'addcommand' | 'addcmd': + add_command_to_role(arguments) + case 'removecommand' | 'removecmd': + remove_command_to_role(arguments) + case 'changetag': + change_role_tag(arguments) + case 'customtag': + set_custom_tag(arguments) + case 'customeffect' | 'effect': + set_custom_effect(arguments) + case 'removetag': + remove_custom_tag(arguments) + case 'removeeffect': + remove_custom_effect(arguments) + case 'spectators': + spectators(arguments) + case 'lobbytime': + change_lobby_check_time(arguments) + case _: + pass + + +def create_team(arguments): + if len(arguments) == 0: + bs.chatmessage("enter team name") + else: + from bascenev1._team import SessionTeam + bs.get_foreground_host_session().sessionteams.append(SessionTeam( + team_id=len(bs.get_foreground_host_session().sessionteams) + 1, + name=str(arguments[0]), + color=(random.uniform(0, 1.2), random.uniform( + 0, 1.2), random.uniform(0, 1.2)))) + from bascenev1._lobby import Lobby + bs.get_foreground_host_session().lobby = Lobby() + + +def hide_player_spec(): + _babase.hide_player_device_id(True) + + +def show_player_spec(): + _babase.hide_player_device_id(False) + + +def get_player_info(arguments, client_id): + if len(arguments) == 0: + send("invalid client id", client_id) + for account in serverdata.recents: + if account['client_id'] == int(arguments[0]): + send(pdata.get_detailed_info(account["pbid"]), client_id) + + +def get_recents(client_id): + for players in serverdata.recents: + send( + f"{players['client_id']} {players['deviceId']} {players['pbid']}", + client_id) + + +def changepartysize(arguments): + if len(arguments) == 0: + bs.chatmessage("enter number") + else: + bs.set_public_party_max_size(int(arguments[0])) + + +def changeplaylist(arguments): + if len(arguments) == 0: + bs.chatmessage("enter list code or name") + else: + if arguments[0] == 'coop': + serverdata.coopmode = True + else: + serverdata.coopmode = False + playlist.setPlaylist(arguments[0]) + return + + +def kick(arguments): + cl_id = int(arguments[0]) + for ros in bs.get_game_roster(): + if ros["client_id"] == cl_id: + logger.log("kicked " + ros["display_string"]) + bs.disconnect_client(int(arguments[0])) + return + + +def kikvote(arguments, clientid): + if arguments == [] or arguments == [''] or len(arguments) < 2: + return + + elif arguments[0] == 'enable': + if arguments[1] == 'all': + _babase.set_enable_default_kick_voting(True) + else: + try: + cl_id = int(arguments[1]) + for ros in bs.get_game_roster(): + if ros["client_id"] == cl_id: + pdata.enable_kick_vote(ros["account_id"]) + logger.log( + f'kick vote enabled for {ros["account_id"]} {ros["display_string"]}') + send( + "Upon server restart, Kick-vote will be enabled for this person", + clientid) + return + except: + return + + elif arguments[0] == 'disable': + if arguments[1] == 'all': + _babase.set_enable_default_kick_voting(False) + else: + try: + cl_id = int(arguments[1]) + for ros in bs.get_game_roster(): + if ros["client_id"] == cl_id: + _bascenev1.disable_kickvote(ros["account_id"]) + send("Kick-vote disabled for this person", clientid) + logger.log( + f'kick vote disabled for {ros["account_id"]} {ros["display_string"]}') + pdata.disable_kick_vote( + ros["account_id"], 2, "by chat command") + return + except: + return + else: + return + + +def last_msgs(clientid): + for i in bs.get_chat_messages(): + send(i, clientid) + + +def get_profiles(arguments, clientid): + try: + playerID = int(arguments[0]) + num = 1 + for i in bs.get_foreground_host_session().sessionplayers[ + playerID].inputdevice.get_player_profiles(): + try: + send(f"{num})- {i}", clientid) + num += 1 + except: + pass + except: + pass + + +def party_toggle(arguments): + if arguments == ['public']: + bs.set_public_party_enabled(True) + bs.chatmessage("party is public now") + elif arguments == ['private']: + bs.set_public_party_enabled(False) + bs.chatmessage("party is private now") + else: + pass + + +def end(arguments): + if arguments == [] or arguments == ['']: + try: + game = bs.get_foreground_host_activity() + with game.context: + game.end_game() + except: + pass + + +def ban(arguments): + try: + cl_id = int(arguments[0]) + duration = int(arguments[1]) if len(arguments) >= 2 else 0.5 + for ros in bs.get_game_roster(): + if ros["client_id"] == cl_id: + pdata.ban_player(ros['account_id'], duration, + "by chat command") + logger.log(f'banned {ros["display_string"]} by chat command') + + for account in serverdata.recents: # backup case if player left the server + if account['client_id'] == int(arguments[0]): + pdata.ban_player( + account["pbid"], duration, "by chat command") + logger.log( + f'banned {account["pbid"]} by chat command, recents') + kick(arguments) + except: + pass + + +def quit(arguments): + if arguments == [] or arguments == ['']: + babase.quit() + + +def mute(arguments): + if len(arguments) == 0: + serverdata.muted = True + try: + cl_id = int(arguments[0]) + duration = int(arguments[1]) if len(arguments) >= 2 else 0.5 + for ros in bs.get_game_roster(): + if ros["client_id"] == cl_id: + ac_id = ros['account_id'] + logger.log(f'muted {ros["display_string"]}') + pdata.mute(ac_id, duration, "muted by chat command") + return + for account in serverdata.recents: # backup case if player left the server + if account['client_id'] == int(arguments[0]): + pdata.mute(account["pbid"], duration, + "muted by chat command, from recents") + except: + pass + return + + +def un_mute(arguments): + if len(arguments) == 0: + serverdata.muted = False + try: + cl_id = int(arguments[0]) + for ros in bs.get_game_roster(): + if ros["client_id"] == cl_id: + pdata.unmute(ros['account_id']) + logger.log(f'unmuted {ros["display_string"]} by chat command') + return + for account in serverdata.recents: # backup case if player left the server + if account['client_id'] == int(arguments[0]): + pdata.unmute(account["pbid"]) + logger.log( + f'unmuted {account["pbid"]} by chat command, recents') + except: + pass + + +def remove(arguments): + if arguments == [] or arguments == ['']: + return + + elif arguments[0] == 'all': + session = bs.get_foreground_host_session() + for i in session.sessionplayers: + i.remove_from_game() + + else: + try: + session = bs.get_foreground_host_session() + for i in session.sessionplayers: + if i.inputdevice.client_id == int(arguments[0]): + i.remove_from_game() + except: + return + + +def slow_motion(): + activity = _babase.get_foreground_host_activity() + + if not activity.globalsnode.slow_motion: + activity.globalsnode.slow_motion = True + + else: + activity.globalsnode.slow_motion = False + + +def nv(arguments): + def is_close(a, b, tol=1e-5): + return all(abs(x - y) < tol for x, y in zip(a, b)) + + try: + activity = bs.get_foreground_host_activity() + nv_tint = (0.5, 0.5, 1.0) + nv_ambient = (1.5, 1.5, 1.5) + + if is_close(activity.globalsnode.tint, nv_tint): + activity.globalsnode.tint = (1, 1, 1) + #adding ambient color to imitate moonlight reflection on objects + activity.globalsnode.ambient_color = (1, 1, 1) + #print(activity.globalsnode.tint) + else: + activity.globalsnode.tint = nv_tint + activity.globalsnode.ambient_color = nv_ambient + #print(activity.globalsnode.tint) + except: + return + + +def tint(arguments): + + if len(arguments) == 3: + args = arguments + r, g, b = float(args[0]), float(args[1]), float(args[2]) + try: + # print(dir(activity.globalsnode)) + + activity = bs.get_foreground_host_activity() + activity.globalsnode.tint = (r, g, b) + except: + return + + +def pause(): + activity = _babase.get_foreground_host_activity() + + if not activity.globalsnode.paused: + activity.globalsnode.paused = True + + else: + activity.globalsnode.paused = False + + +def rotate_camera(): + activity = _babase.get_foreground_host_activity() + + if activity.globalsnode.camera_mode != 'rotate': + activity.globalsnode.camera_mode = 'rotate' + + else: + activity.globalsnode.camera_mode = 'normal' + + +def create_role(arguments): + try: + pdata.create_role(arguments[0]) + except: + return + + +def add_role_to_player(arguments): + try: + + session = bs.get_foreground_host_session() + for i in session.sessionplayers: + if i.inputdevice.client_id == int(arguments[1]): + roles = pdata.add_player_role( + arguments[0], i.get_v1_account_id()) + except: + return + + +def remove_role_from_player(arguments): + try: + session = bs.get_foreground_host_session() + for i in session.sessionplayers: + if i.inputdevice.client_id == int(arguments[1]): + roles = pdata.remove_player_role( + arguments[0], i.get_v1_account_id()) + + except: + return + + +def get_roles_of_player(arguments, clientid): + try: + session = bs.get_foreground_host_session() + roles = [] + reply = "" + for i in session.sessionplayers: + if i.inputdevice.client_id == int(arguments[0]): + roles = pdata.get_player_roles(i.get_v1_account_id()) + + for role in roles: + reply = reply + role + "," + send(reply, clientid) + except: + return + + +def change_role_tag(arguments): + try: + pdata.change_role_tag(arguments[0], arguments[1]) + except: + return + + +def set_custom_tag(arguments): + try: + session = bs.get_foreground_host_session() + for i in session.sessionplayers: + if i.inputdevice.client_id == int(arguments[1]): + roles = pdata.set_tag(arguments[0], i.get_v1_account_id()) + except: + return + + +def remove_custom_tag(arguments): + try: + session = bs.get_foreground_host_session() + for i in session.sessionplayers: + if i.inputdevice.client_id == int(arguments[0]): + pdata.remove_tag(i.get_v1_account_id()) + except: + return + + +def remove_custom_effect(arguments): + try: + session = bs.get_foreground_host_session() + for i in session.sessionplayers: + if i.inputdevice.client_id == int(arguments[0]): + pdata.remove_effect(i.get_v1_account_id()) + except: + return + + +def set_custom_effect(arguments): + try: + session = bs.get_foreground_host_session() + for i in session.sessionplayers: + if i.inputdevice.client_id == int(arguments[1]): + pdata.set_effect(arguments[0], i.get_v1_account_id()) + except: + return + + +all_commands = ["changetag", "createrole", "addrole", "removerole", + "addcommand", "addcmd", "removecommand", "removecmd", "kick", + "remove", "rm", "end", "next", "quit", "restart", "mute", + "mutechat", "unmute", "unmutechat", "sm", "slow", "slowmo", + "nv", "night", "dv", "day", "pause", "pausegame", "cameraMode", + "camera_mode", "rotate_camera", "kill", "die", "heal", "heath", + "curse", "cur", "sleep", "sp", "superpunch", "gloves", "punch", + "shield", "protect", "freeze", "ice", "unfreeze", "thaw", "gm", + "godmode", "fly", "inv", "invisible", "hl", "headless", + "creepy", "creep", "celebrate", "celeb", "spaz"] + + +def add_command_to_role(arguments): + try: + if len(arguments) == 2: + pdata.add_command_role(arguments[0], arguments[1]) + else: + bs.chatmessage("invalid command arguments") + except: + return + + +def remove_command_to_role(arguments): + try: + if len(arguments) == 2: + pdata.remove_command_role(arguments[0], arguments[1]) + except: + return + + +# def whitelst_it(accountid : str, arguments): +# settings = setting.get_settings_data() + +# if arguments[0] == 'on': +# if settings["white_list"]["whitelist_on"]: +# bs.chatmessage("Already on") +# else: +# settings["white_list"]["whitelist_on"] = True +# setting.commit(settings) +# bs.chatmessage("whitelist on") +# from tools import whitelist +# whitelist.Whitelist() +# return + +# elif arguments[0] == 'off': +# settings["white_list"]["whitelist_on"] = False +# setting.commit(settings) +# bs.chatmessage("whitelist off") +# return + +# else: +# rost = bs.get_game_roster() + +# for i in rost: +# if i['client_id'] == int(arguments[0]): +# add_to_white_list(i['account_id'], i['display_string']) +# bs.chatmessage(str(i['display_string'])+" whitelisted") +# add_commit_to_logs(accountid+" added "+i['account_id']) + + +def spectators(arguments): + if arguments[0] in ['on', 'off']: + settings = setting.get_settings_data() + + if arguments[0] == 'on': + settings["white_list"]["spectators"] = True + setting.commit(settings) + bs.chatmessage("spectators on") + + elif arguments[0] == 'off': + settings["white_list"]["spectators"] = False + setting.commit(settings) + bs.chatmessage("spectators off") + + +def change_lobby_check_time(arguments): + try: + argument = int(arguments[0]) + except: + bs.chatmessage("must type number to change lobby check time") + return + settings = setting.get_settings_data() + settings["white_list"]["lobbychecktime"] = argument + setting.commit(settings) + bs.chatmessage(f"lobby check time is {argument} now") diff --git a/dist/ba_root/mods/chathandle/handlechat.py b/dist/ba_root/mods/chathandle/handlechat.py index 9179d2e..90d901f 100644 --- a/dist/ba_root/mods/chathandle/handlechat.py +++ b/dist/ba_root/mods/chathandle/handlechat.py @@ -17,6 +17,7 @@ settings = setting.get_settings_data() def filter_chat_message(msg, client_id): now = datetime.now() + # bypassing chat filter for host if client_id == -1: if msg.startswith("/"): command_executor.execute(msg, client_id) @@ -37,6 +38,11 @@ def filter_chat_message(msg, client_id): displaystring = i['display_string'] if acid: msg = chatfilter.filter(msg, acid, client_id) + else: + bs.broadcastmessage("Fetching your account info , please wait", + transient=True, clients=[client_id]) + return + if msg == None: return logger.log(f'{acid} | {displaystring}| {currentname} | {msg}', "chat") @@ -56,16 +62,16 @@ def filter_chat_message(msg, client_id): return elif acid in pdata.get_blacklist()[ - "muted-ids"] and now < datetime.strptime( - pdata.get_blacklist()["muted-ids"][acid]["till"], - "%Y-%m-%d %H:%M:%S"): + "muted-ids"] and now < datetime.strptime( + pdata.get_blacklist()["muted-ids"][acid]["till"], + "%Y-%m-%d %H:%M:%S"): bs.broadcastmessage( "You are on mute, maybe try after some time", transient=True, clients=[client_id]) return None elif servercheck.get_account_age( - serverdata.clients[acid]["accountAge"]) < settings[ - 'minAgeToChatInHours']: + serverdata.clients[acid]["accountAge"]) < settings[ + 'minAgeToChatInHours']: bs.broadcastmessage("New accounts not allowed to chat here", transient=True, clients=[client_id]) return None diff --git a/dist/ba_root/mods/custom_hooks.py b/dist/ba_root/mods/custom_hooks.py index 3161a71..8c6f8fc 100644 --- a/dist/ba_root/mods/custom_hooks.py +++ b/dist/ba_root/mods/custom_hooks.py @@ -1,6 +1,6 @@ """Custom hooks to pull of the in-game functions.""" -# ba_meta require api 8 +# ba_meta require api 9 # (see https://ballistica.net/wiki/meta-tag-system) # pylint: disable=import-error @@ -21,6 +21,8 @@ from typing import TYPE_CHECKING import babase import bascenev1 as bs +import _bascenev1 +from baclassic._appmode import ClassicAppMode import bauiv1 as bui import setting from baclassic._servermode import ServerController @@ -70,7 +72,7 @@ class modSetup(babase.Plugin): if (settings["useV2Account"]): if (plus.get_v1_account_state() == - 'signed_in' and plus.get_v1_account_type() == 'V2'): + 'signed_in' and plus.get_v1_account_type() == 'V2'): logging.debug("Account V2 is active") else: logging.warning("Account V2 login require ....stay tuned.") @@ -130,11 +132,6 @@ def bootstraping(): """Bootstarps the server.""" logging.warning("Bootstraping mods...") # server related - # _bascenev1.set_server_name(settings["HostName"]) - # _bascenev1.set_transparent_kickvote(settings["ShowKickVoteStarterName"]) - # _bascenev1.set_kickvote_msg_type(settings["KickVoteMsgType"]) - # bs.hide_player_device_id(settings["Anti-IdRevealer"]) TODO add call in - # cpp # check for auto update stats _thread.start_new_thread(mystats.refreshStats, ()) @@ -337,21 +334,21 @@ def shutdown(func) -> None: "Server will restart on next opportunity. (series end)") _babase.restart_scheduled = True bs.get_foreground_host_activity().restart_msg = bs.newnode('text', - attrs={ - 'text': "Server going to restart after this series.", - 'flatness': 1.0, - 'h_align': 'right', - 'v_attach': 'bottom', - 'h_attach': 'right', - 'scale': 0.5, - 'position': ( - -25, - 54), - 'color': ( - 1, - 0.5, - 0.7) - }) + attrs={ + 'text': "Server going to restart after this series.", + 'flatness': 1.0, + 'h_align': 'right', + 'v_attach': 'bottom', + 'h_attach': 'right', + 'scale': 0.5, + 'position': ( + -25, + 54), + 'color': ( + 1, + 0.5, + 0.7) + }) func(*args, **kwargs) return wrapper @@ -373,9 +370,9 @@ def on_player_request(func) -> bool: count += 1 if count >= settings["maxPlayersPerDevice"]: bs.broadcastmessage("Reached max players limit per device", - clients=[ - player.inputdevice.client_id], - transient=True, ) + clients=[ + player.inputdevice.client_id], + transient=True, ) return False return func(*args, **kwargs) @@ -384,7 +381,19 @@ def on_player_request(func) -> bool: Session.on_player_request = on_player_request(Session.on_player_request) -ServerController._access_check_response = servercontroller._access_check_response + +def on_access_check_response(self, data): + if data is not None: + addr = data['address'] + port = data['port'] + if settings["ballistica_web"]["enable"]: + bs.set_public_party_stats_url( + f'https://bombsquad-community.web.app/server-manager/?host={addr}:{port}') + + servercontroller._access_check_response(self, data) + + +ServerController._access_check_response = on_access_check_response def wrap_player_spaz_init(original_class): @@ -417,3 +426,25 @@ def wrap_player_spaz_init(original_class): playerspaz.PlayerSpaz = wrap_player_spaz_init(playerspaz.PlayerSpaz) + +original_classic_app_mode_activate = ClassicAppMode.on_activate + + +def new_classic_app_mode_activate(*args, **kwargs): + # Call the original function + result = original_classic_app_mode_activate(*args, **kwargs) + + # Perform additional actions after the original function call + on_classic_app_mode_active() + + return result + + +ClassicAppMode.on_activate = new_classic_app_mode_activate + + +def on_classic_app_mode_active(): + _bascenev1.set_server_name(settings["HostName"]) + _bascenev1.set_transparent_kickvote(settings["ShowKickVoteStarterName"]) + _bascenev1.set_kickvote_msg_type(settings["KickVoteMsgType"]) + _bascenev1.hide_player_device_id(settings["Anti-IdRevealer"]) diff --git a/dist/ba_root/mods/defaults/config.json b/dist/ba_root/mods/defaults/config.json new file mode 100644 index 0000000..3c0dea9 --- /dev/null +++ b/dist/ba_root/mods/defaults/config.json @@ -0,0 +1,44 @@ +{ + "party_name":"BombSquad Community Server", + "party_is_public":true, + "authenticate_clients":true, + "admins":[ + "pb-yOuRAccOuNtIdHErE", + "pb-aNdMayBeAnotherHeRE" + ], + "enable_default_kick_voting":true, + "port":43210, + "max_party_size":6, + "session_max_players_override":8, + "session_type":"ffa", + "playlist_code":12345, + "playlist_shuffle":true, + "auto_balance_teams":true, + "enable_telnet":false, + "teams_series_length":7, + "ffa_series_length":24, + "stats_url":"https://discord.gg/ucyaesh", + "clean_exit_minutes":60, + "unclean_exit_minutes":90, + "idle_exit_minutes":20, + "show_tutorial":false, + "team_names":[ + "ladoo", + "barfi" + ], + "team_colors":[ + [ + 0.8, + 0.0, + 0.6 + ], + [ + 0, + 1, + 0.8 + ] + ], + "enable_queue":true, + "protocol_version":35, + "player_rejoin_cooldown":10.0 +} \ No newline at end of file diff --git a/dist/ba_root/mods/defaults/config.toml b/dist/ba_root/mods/defaults/config.toml index a64cdc3..d7efc42 100644 --- a/dist/ba_root/mods/defaults/config.toml +++ b/dist/ba_root/mods/defaults/config.toml @@ -10,13 +10,13 @@ party_name = "BombSquad Community Server" # If true, your party will show up in the global public party list # Otherwise it will still be joinable via LAN or connecting by IP # address. -#party_is_public = true +party_is_public = true # If true, all connecting clients will be authenticated through the # master server to screen for fake account info. Generally this # should always be enabled unless you are hosting on a LAN with no # internet connection. -#authenticate_clients = true +authenticate_clients = true # IDs of server admins. Server admins are not kickable through the default # kick vote system and they are able to kick players without a vote. To get @@ -24,7 +24,7 @@ party_name = "BombSquad Community Server" admins = ["pb-yOuRAccOuNtIdHErE", "pb-aNdMayBeAnotherHeRE"] # Whether the default kick-voting system is enabled. -#enable_default_kick_voting = true +enable_default_kick_voting = true # To be included in the public server list, your server MUST be # accessible via an ipv4 address. By default, the master server will @@ -48,23 +48,23 @@ admins = ["pb-yOuRAccOuNtIdHErE", "pb-aNdMayBeAnotherHeRE"] # # 43210 is the default and the only port that will show up in the # LAN browser tab. -#port = 43210 +port = 43210 # Max devices in the party. Note that this does *NOT* mean max # players. Any device in the party can have more than one player on # it if they have multiple controllers. Also, this number currently # includes the server so generally make it 1 bigger than you need. -#max_party_size = 6 +max_party_size = 6 # Max players that can join a session. If present this will override # the session's preferred max_players. if a value below 0 is given # player limit will be removed. -#session_max_players_override = 8 +session_max_players_override = 8 # Options here are 'ffa' (free-for-all), 'teams' and 'coop' # (cooperative) This value is ignored if you supply a playlist_code # (see below). -#session_type = "ffa" +session_type = "ffa" # Playlist-code for teams or free-for-all mode sessions. # To host your own custom playlists, use the 'share' functionality in the @@ -80,11 +80,11 @@ playlist_code = 12345 # Whether to shuffle the playlist or play its games in designated # order. -#playlist_shuffle = true +playlist_shuffle = true # If true, keeps team sizes equal by disallowing joining the largest # team (teams mode only). -#auto_balance_teams = true +auto_balance_teams = true # The campaign used when in co-op session mode. Do # print(ba.app.campaigns) to see available campaign names. @@ -102,7 +102,7 @@ playlist_code = 12345 # possible through the mgr.cmd() function in the server script. Run # your server through tools such as 'screen' or 'tmux' and you can # reconnect to it remotely over a secure ssh connection. -#enable_telnet = false +enable_telnet = false # Series length in teams mode (7 == 'best-of-7' series; a team must # get 4 wins) @@ -128,22 +128,22 @@ stats_url = "https://discord.gg/ucyaesh" # auto-restart (the default) will then spin up a fresh subprocess. # This mechanism can be useful to clear out any memory leaks or # other accumulated bad state in the server subprocess. -#clean_exit_minutes = 60 +clean_exit_minutes = 60 # If present, the server subprocess will shut down immediately after # this amount of time. This can be useful as a fallback for # clean_exit_time. The server manager will then spin up a fresh # server subprocess if auto-restart is enabled (the default). -#unclean_exit_minutes = 90 +unclean_exit_minutes = 90 # If present, the server subprocess will shut down immediately if # this amount of time passes with no activity from any players. The # server manager will then spin up a fresh server subprocess if # auto-restart is enabled (the default). -#idle_exit_minutes = 20 +idle_exit_minutes = 20 # Should the tutorial be shown at the beginning of games? -#show_tutorial = false +show_tutorial = false # Team names (teams mode only). team_names = ["ladoo", "barfi"] @@ -154,15 +154,15 @@ team_colors = [[0.8, 0.0, 0.6], [0, 1, 0.8]] # Whether to enable the queue where players can line up before # entering your server. Disabling this can be used as a workaround # to deal with queue spamming attacks. -#enable_queue = true +enable_queue = true # Protocol version we host with. Currently the default is 33 which # still allows older 1.4 game clients to connect. Explicitly setting # to 35 no longer allows those clients but adds/fixes a few things # such as making camera shake properly work in net games. -#protocol_version = 35 +protocol_version = 35 # How many seconds individual players from a given account must wait # before rejoining the game. This can help suppress exploits # involving leaving and rejoining or switching teams rapidly. -#player_rejoin_cooldown = 10.0 +player_rejoin_cooldown = 10.0 diff --git a/dist/ba_root/mods/defaults/settings.json b/dist/ba_root/mods/defaults/settings.json index 5e6137e..5002c30 100644 --- a/dist/ba_root/mods/defaults/settings.json +++ b/dist/ba_root/mods/defaults/settings.json @@ -1,141 +1,181 @@ { - "whitelist": false, - "useV2Account": false, - "Anti-IdRevealer": false, - "ChatCommands": { - "BrodcastCommand": true + "Anti-IdRevealer": false, + "ChatCommands": { + "BrodcastCommand": true + }, + "HostDeviceName": "v1.4", + "HostName": "BCSv2", + "KickVoteMsgType": "chat", + "ScoreScreenAnnouncement": { + "enable": true, + "msg": [ + "click stats button to join discord", + "watch hey smoothy youtube channel", + "downlaod new mods from discord" + ] + }, + "ShowKickVoteStarterName": true, + "StumbledScoreScreen": true, + "WarnCooldownMinutes": 30, + "afk_remover": { + "enable": false, + "ingame_idle_time_in_secs": 60, + "kick_idle_from_lobby": true, + "lobby_idle_time_in_secs": 10 + }, + "afterWarnKickMsg": "Enough warnings, Goodbye have a nice day :)", + "allowInGameChat": true, + "allowTeamChat": true, + "allowVotes": true, + "autoNightMode": { + "enable": true, + "endTime": "06:00", + "fireflies": true, + "fireflies_random_color": false, + "startTime": "18:30" + }, + "autoTeamBalance": true, + "ballistica_web": { + "enable": true, + "server_password": "my_secerT_password_very_hard", + "discord_link": "https://discord.gg/ucyaesh" + }, + "character_chooser": { + "enable": true + }, + "colorful_explosions": { + "enable": true + }, + "colorfullMap": true, + "contributeData": true, + "coopModeWithLessPlayers": { + "enable": false, + "minPlayerToExitCoop": 3 + }, + "custom_characters": { + "enable": true + }, + "discordWebHook": { + "enable": false, + "webhookURL": "https://discord.com/api/webhooks/82649239/e7s0zyBJIuczXL7_CGSO5WM" + }, + "discordbot": { + "enable": false, + "liveChat": true, + "liveStatsChannelID": 925440043672285200, + "logsChannelID": 925440079843958800, + "token": "" + }, + "elPatronPowerups": { + "Quantity": { + "Curse": 1, + "Fire Bombs": 3, + "Fly Bombs": 3, + "Goodbye": 2, + "Healing Damage": 1, + "Health": 1, + "Ice Bombs": 3, + "Ice Man": 1, + "Impact Bombs": 3, + "Impairment Bombs": 2, + "Mine Bombs": 2, + "Punch": 3, + "Shield": 2, + "Speed": 2, + "Sticky Bombs": 3, + "Tank Shield": 1, + "Triple": 3 }, - "textonmap": { - "top watermark": "Welcome to server \nIP @IP PORT @PORT", - "bottom left watermark": "Owner : \nEditor : \nScripts : BCS1.7.13", - "center highlights":{ - "color":[1,0,0], - "randomColor":true, - "msg":[ - "type end to start end vote", - "start msg with prefix .(dot) to send in game popup msg", - "start msg with prefix ,(comma) to send msg to teammates", - "BombSquad Community Server - BCS" - ] - } + "enable": false, + "settings": { + "Healing Damage PTG": 72, + "Powers Gravity": true, + "Powerup Name": true, + "Powerup Scale": 1, + "Powerup Style": "Auto", + "Powerup Time": false, + "Powerup With Shield": true, + "Powerups": { + "Curse": 1, + "Fire Bombs": 3, + "Fly Bombs": 3, + "Goodbye": 2, + "Healing Damage": 1, + "Health": 1, + "Ice Bombs": 3, + "Ice Man": 1, + "Impact Bombs": 3, + "Impairment Bombs": 2, + "Mine Bombs": 2, + "Punch": 3, + "Shield": 2, + "Speed": 2, + "Sticky Bombs": 3, + "Tank Shield": 1, + "Triple": 3 + }, + "Tank Shield PTG": 96 + } + }, + "enableHitTexts": true, + "enableTagAnimation": true, + "enableTop5effects": true, + "enableeffects": true, + "enablehptag": true, + "enablerank": true, + "enablestats": true, + "enabletags": true, + "firstTimeJoinMsg": "Welcome to the server,we r saving all your account details and chats", + "leaderboard": { + "barsBehindName": true, + "enable": true + }, + "maxAccountPerIP": 3, + "maxPlayersPerDevice": 2, + "maxWarnCount": 2, + "mikirogQuickTurn": { + "enable": false + }, + "minAgeToChatInHours": 78, + "minAgeToJoinInHours": 24, + "newResultBoard": true, + "playermod": { + "default_bomb": "normal", + "default_bomb_count": 1, + "default_boxing_gloves": true, + "default_shield": false + }, + "playlists": { + "elim": 412172, + "epic": 412173, + "ffa": 412175, + "ffasmash": 412179, + "smash": 412151, + "soccer": 412160, + "team": 12345 + }, + "regularWelcomeMsg": "Welcome Back", + "sameCharacterForTeam": false, + "statsResetAfterDays": 31, + "textonmap": { + "bottom left watermark": "Owner : \nEditor : \nScripts : BCS1.7.39", + "center highlights": { + "color": [ + 1, + 0, + 0 + ], + "msg": [ + "type end to start end vote", + "start msg with prefix .(dot) to send in game popup msg", + "start msg with prefix ,(comma) to send msg to teammates", + "BombSquad Community Server - BCS" + ], + "randomColor": true }, - "ScoreScreenAnnouncement":{ - "enable": true, - "msg": ["click stats button to join discord", "watch hey smoothy youtube channel","download new mods from discord", "use /ping all to check others ping.", - "start msg with prefix ,(comma) to send msg to teammates", "start msg with prefix .(dot) to send in game popup msg","click stats button for leaderboard","get notification when friends join this server, checkout leaderboard", -"abusers, spammers will get auto ban", "doesnt matter who starts fight, if you abuse- you will get ban too."] - }, - "statsResetAfterDays":31, - "leaderboard":{ - "enable":true, - "barsBehindName":true - }, - "autoNightMode":{ - "enable":true, - "startTime":"18:30", - "endTime":"06:00", - "fireflies":true, - "fireflies_random_color":false - }, - "colorfullMap":true, - "playlists":{ - "team":12345, - "ffa":412175, - "elim":412172, - "soccer":412160, - "smash":412151, - "ffasmash":412179, - "epic":412173 - }, - "coopModeWithLessPlayers":{ - "enable":false, - "minPlayerToExitCoop":0 - }, - "mikirogQuickTurn":{ - "enable":false - }, - "colorful_explosions":{ - "enable":true - }, - "ballistica_web": { - "enable":true, - "server_password":"dfgeh54rhbrthsdfhfdh" - }, - "character_chooser":{ - "enable":true - }, - "custom_characters": { - "enable":true - }, - "StumbledScoreScreen":true, - "elPatronPowerups":{ - "enable":true, - "settings":{"Powers Gravity": true, - "Tank Shield PTG": 96, - "Healing Damage PTG": 72, - "Powerup Style": "Auto", - "Powerup Scale": 1.0, - "Powerup Name": true, - "Powerup With Shield": true, - "Powerup Time": false}, - "Quantity":{ "Shield": 2, - "Punch": 3, "Mine Bombs": 2, - "Impact Bombs": 3, "Ice Bombs": 3, "Triple": 3, - "Sticky Bombs": 3, "Curse": 1, "Health": 1, - "Speed": 2, "Healing Damage": 1, "Goodbye": 2, - "Ice Man": 1,"Tank Shield": 1, "Impairment Bombs": 2, - "Fire Bombs": 3, "Fly Bombs": 3} - }, - "discordbot":{ - "enable":false, - "token":"", - "liveChat":true, - "liveStatsChannelID":925440043672285205, - "logsChannelID":925440079843958834 - }, - "discordWebHook": { - "enable": false, - "webhookURL": "https://discord.com/api/webhooks/82649239/e7s0zyBJIuczXL7_CGSO5WM" - }, - "afk_remover":{ - "enable":true, - "ingame_idle_time_in_secs":60, - "kick_idle_from_lobby":true, - "lobby_idle_time_in_secs":10 - }, - "playermod": { - "default_boxing_gloves": true, - "default_shield" : false, - "default_bomb" : "normal", - "default_bomb_count" : 1 - }, - "allowTeamChat":true, - "allowVotes":true, - "allowInGameChat":true, - "sameCharacterForTeam":false, - "newResultBoard":true, - "HostDeviceName":"v1.4", - "HostName":"BCS", - "ShowKickVoteStarterName":true, - "autoTeamBalance": true, - "KickVoteMsgType":"chat", - "minAgeToChatInHours":78, - "minAgeToJoinInHours":24, - "maxWarnCount":2, - "WarnCooldownMinutes":30, - "maxAccountPerIP":1, - "maxPlayersPerDevice":1, - "warnMsg":"WARNING !!!", - "afterWarnKickMsg":"Enough warnings, Goodbye have a nice day :)", - "firstTimeJoinMsg":"Welcome to the server,we r saving all your account details and chats", - "regularWelcomeMsg":"Welcome Back", - "contributeData": true, - "enabletags": true, - "enablehptag": true, - "enablerank": true, - "enablestats": true, - "enableHitTexts": true, - "enableeffects": true, - "enableTop5effects": true, - "enableTagAnimation":true + "top watermark": "Welcome to server \nIP @IP PORT @PORT" + }, + "useV2Account": false, + "warnMsg": "WARNING !!!", + "whitelist": false } diff --git a/dist/ba_root/mods/features/afk_check.py b/dist/ba_root/mods/features/afk_check.py index 9a556f8..680eb72 100644 --- a/dist/ba_root/mods/features/afk_check.py +++ b/dist/ba_root/mods/features/afk_check.py @@ -15,7 +15,7 @@ cLastIdle = 0 class checkIdle(object): def start(self): - self.t1 = bs.timer(2, babase.Call(self.check), repeat=True) + self.t1 = bs.AppTimer(2, babase.Call(self.check), repeat=True) self.lobbies = {} def check(self): diff --git a/dist/ba_root/mods/features/votingmachine.py b/dist/ba_root/mods/features/votingmachine.py index 74c96d2..581a337 100644 --- a/dist/ba_root/mods/features/votingmachine.py +++ b/dist/ba_root/mods/features/votingmachine.py @@ -3,6 +3,7 @@ import time import _babase +import _bascenev1 import bascenev1 as bs @@ -58,7 +59,7 @@ def vote(pb_id, client_id, vote_type): else: activity = bs.get_foreground_host_activity() if activity is not None: - with _babase.Context(activity): + with activity.context: bs.broadcastmessage( f"{max_votes_required(len(active_players)) - len(voters)} votes required for {vote_type}", image={"texture": bs.gettexture( @@ -75,16 +76,17 @@ def vote(pb_id, client_id, vote_type): vote_machine[vote_type]["voters"] = [] if vote_type == "end": try: - with _babase.Context(bs.get_foreground_host_activity()): + activity = bs.get_foreground_host_activity() + with activity.context: bs.get_foreground_host_activity().end_game() except: pass elif vote_type == "nv": - _babase.chatmessage("/nv") + _bascenev1.chatmessage("/nv") elif vote_type == "dv": - _babase.chatmessage("/dv") + _bascenev1.chatmessage("/dv") elif vote_type == "sm": - _babase.chatmessage("/sm") + _bascenev1.chatmessage("/sm") def reset_votes(): @@ -120,7 +122,8 @@ def update_vote_text(votes_needed): activity.end_vote_text.node.text = "{} more votes to end this map\ntype 'end' to vote".format( votes_needed) except: - with _babase.Context(bs.get_foreground_host_activity()): + activity = bs.get_foreground_host_activity() + with activity.context: node = bs.NodeActor(bs.newnode('text', attrs={ 'v_attach': 'top', @@ -142,4 +145,4 @@ def remove_vote_text(): activity = bs.get_foreground_host_activity() if hasattr(activity, "end_vote_text") and activity.end_vote_text.node.exists(): - activity.end_vote_text.node.delete() + activity.end_vote_text.node.delete() \ No newline at end of file diff --git a/dist/ba_root/mods/playersdata/blacklist.json b/dist/ba_root/mods/playersdata/blacklist.json index 2ce587b..3ed0009 100644 --- a/dist/ba_root/mods/playersdata/blacklist.json +++ b/dist/ba_root/mods/playersdata/blacklist.json @@ -1,34 +1,34 @@ { - "ban": { - "ids": { - "pb-234": { - "till": "2023-06-07 21:59:20", - "reason": "auto ban for spam" - } + "ban": { + "ids": { + "pb-234": { + "till": "2023-06-07 21:59:20", + "reason": "auto ban for spam" + } + }, + "ips": { + "19.168.0.0.1": { + "till": "2023-06-07 21:59:20", + "reason": "auto ban for spam" + } + }, + "deviceids": { + "sdfdsfwr3": { + "till": "2023-06-07 21:59:20", + "reason": "auto ban for spam" + } + } }, - "ips": { - "19.168.0.0.1": { - "till": "2023-06-07 21:59:20", - "reason": "auto ban for spam" - } + "muted-ids": { + "pb-IF4iU0QaEw==": { + "till": "2023-06-19 19:44:47", + "reason": "manually from website" + } }, - "deviceids": { - "sdfdsfwr3": { - "till": "2023-06-07 21:59:20", - "reason": "auto ban for spam" - } + "kick-vote-disabled": { + "pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE": { + "till": "2023-06-12 19:37:48", + "reason": "manually from website" + } } - }, - "muted-ids": { - "pb-IF4iU0QaEw==": { - "till": "2023-06-19 19:44:47", - "reason": "manually from website" - } - }, - "kick-vote-disabled": { - "pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE": { - "till": "2023-06-12 19:37:48", - "reason": "manually from website" - } - } -} +} \ No newline at end of file diff --git a/dist/ba_root/mods/playersdata/custom.json b/dist/ba_root/mods/playersdata/custom.json index 1073bd9..b0ebe5b 100644 --- a/dist/ba_root/mods/playersdata/custom.json +++ b/dist/ba_root/mods/playersdata/custom.json @@ -1,17 +1,12 @@ { + "customtag": { + "pb-id": "smoothy", + "pb-45": "something", + "pb-IF4TVWwZUQ==": "proowner" + }, "customeffects": { "pb-IF4TVWwZUQ==": [ "spark" - ], - "pb-smoothy-effect": [ - "spark" - ], - "pb-testingroles": [ - "highlightshine" ] - }, - "customtag": { - "pb-id5y54y54": "smoothy", - "pb-smoothybro": "they smoothy" } } \ No newline at end of file diff --git a/dist/ba_root/mods/playersdata/custom.json.backup b/dist/ba_root/mods/playersdata/custom.json.backup index 1073bd9..b0ebe5b 100644 --- a/dist/ba_root/mods/playersdata/custom.json.backup +++ b/dist/ba_root/mods/playersdata/custom.json.backup @@ -1,17 +1,12 @@ { + "customtag": { + "pb-id": "smoothy", + "pb-45": "something", + "pb-IF4TVWwZUQ==": "proowner" + }, "customeffects": { "pb-IF4TVWwZUQ==": [ "spark" - ], - "pb-smoothy-effect": [ - "spark" - ], - "pb-testingroles": [ - "highlightshine" ] - }, - "customtag": { - "pb-id5y54y54": "smoothy", - "pb-smoothybro": "they smoothy" } } \ No newline at end of file diff --git a/dist/ba_root/mods/playersdata/pdata.py b/dist/ba_root/mods/playersdata/pdata.py index 213d9f1..1846328 100644 --- a/dist/ba_root/mods/playersdata/pdata.py +++ b/dist/ba_root/mods/playersdata/pdata.py @@ -160,7 +160,7 @@ def get_detailed_info(pbid): profiles = get_profiles() for key, value in profiles.items(): if ("lastIP" in value and value["lastIP"] == ip) or ( - "deviceUUID" in value and value["deviceUUID"] == deviceid): + "deviceUUID" in value and value["deviceUUID"] == deviceid): otheraccounts += ' '.join(value["display_string"]) return f"Accounts:{linked_accounts} \n other accounts {otheraccounts} \n created on {dob}" @@ -218,7 +218,7 @@ def add_profile( checkSpammer({'id': account_id, 'display': display_string, 'ip': ip, 'device': device_id}) if device_id in get_blacklist()["ban"]["deviceids"] or account_id in \ - get_blacklist()["ban"]["ids"]: + get_blacklist()["ban"]["ids"]: bs.disconnect_client(cid) serverdata.clients[account_id]["deviceUUID"] = device_id @@ -314,6 +314,11 @@ def unban_player(account_id): if account_id in current_profiles: ip = current_profiles[account_id]["lastIP"] device_id = current_profiles[account_id]["deviceUUID"] + else: + for account in serverdata.recents: + if account["pbid"] == account_id: + ip = account["ip"] + device_id = account["device_uuid"] CacheData.blacklist["ban"]["ips"].pop(ip, None) CacheData.blacklist["ban"]["deviceids"].pop(device_id, None) @@ -607,7 +612,7 @@ def get_custom() -> dict: custom["customeffects"][account_id] = [ custom["customeffects"][account_id]] if type( custom["customeffects"][account_id]) is str else \ - custom["customeffects"][account_id] + custom["customeffects"][account_id] return CacheData.custom @@ -626,7 +631,7 @@ def set_effect(effect: str, account_id: str) -> None: if account_id in custom["customeffects"]: effects = [custom["customeffects"][account_id]] if type( custom["customeffects"][account_id]) is str else \ - custom["customeffects"][account_id] + custom["customeffects"][account_id] effects.append(effect) custom["customeffects"][account_id] = effects else: diff --git a/dist/ba_root/mods/playersdata/profiles.json b/dist/ba_root/mods/playersdata/profiles.json index e3c4d6f..37787e2 100644 --- a/dist/ba_root/mods/playersdata/profiles.json +++ b/dist/ba_root/mods/playersdata/profiles.json @@ -1,22952 +1,4 @@ { - "pb-sdf": { - "spamCount": 0, - "lastSpam": 1685731277.5272515 - }, - "pb-IF41U2scIg==": { - "display_string": [ - "\ue063SHRUTIsom" - ], - "profiles": [], - "name": "\ue063SHRUTIsom", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 15:17:08", - "registerOn": 1685731349.0964909, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685731349.0964913, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686397345.3280551, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686397345.3280566, - "lastIP": "a\u007fk~}hhaoaalb", - "deviceUUID": "6169051b9ce5b5c6655bc02f404234df6a23021a", - "cMsgCount": 0, - "lastMsgTime": 1686339878.478897, - "lastMsg": "ok let's go", - "cSameMsg": 0 - }, - "pb-IF4hUBddUA==": { - "display_string": [ - "\ue063BLAZEXGAMI" - ], - "profiles": [], - "name": "\ue063BLAZEXGAMI", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-02 19:32:15", - "registerOn": 1685731499.6703212, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685731499.6703217, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685731499.6703298, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685731499.6703308, - "lastIP": "b}k~~`iajd}vb~o", - "deviceUUID": "bfd69c3b6bfa313e00ee48165f732d2d4ae5979d" - }, - "pb-IF4LU1gBKA==": { - "display_string": [ - "\ue063demoniojho" - ], - "profiles": [], - "name": "\ue063demoniojho", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-01 23:53:23", - "registerOn": 1685732245.4088056, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685732245.408806, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685732245.4088142, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685732285.2404647, - "lastIP": "a|i~\u007fvava~~nd", - "deviceUUID": "fdb55d616e3e2ee33266af3ae2e25688b3da0c88", - "cMsgCount": 0, - "lastMsgTime": 1685732686.8828566, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF40UGciNw==": { - "display_string": [ - "\ue030Mac293369", - "\ue030Android65029123", - "\ue030Android65115869" - ], - "profiles": [], - "name": "\ue030Android65115869", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-23 02:05:58", - "registerOn": 1685732460.4613266, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685732460.4613273, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686105161.0892274, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686105188.8491607, - "lastIP": "awl~zo~}jfanh", - "deviceUUID": "705a68e09584a42401a790b7da780cc38f6bff54", - "cMsgCount": 1, - "lastMsgTime": 1686105178.3818383, - "lastMsg": "Firestar349", - "cSameMsg": 0 - }, - "pb-IF4IV04ZKw==": { - "display_string": [ - "\ue063WhatsApp", - "\ue030Android26319971", - "\ue030PC355734" - ], - "profiles": [], - "name": "\ue063WhatsApp", - "isBan": true, - "isMuted": false, - "accountAge": "2019-04-06 01:19:11", - "registerOn": 1685733123.8936932, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685733123.8936937, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685733123.8937025, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685733123.8937035, - "lastIP": "azj~z`~xn~~ka", - "deviceUUID": "837792d99be742789307a4e5393657c411293d01" - }, - "pb-IF49I04z": { - "display_string": [ - "\ue063SingingTac" - ], - "profiles": [], - "name": "\ue063SingingTac", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-20 19:38:50", - "registerOn": 1685733358.4697912, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685733358.4697917, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686387076.4657092, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686387076.4657104, - "lastIP": "dvvd|vbzi~~`f", - "deviceUUID": "6c27f72b5a46b673ee416a8d677432818c95f663", - "cMsgCount": 1, - "lastMsgTime": 1686387401.8204188, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4eUBdYDQ==": { - "display_string": [ - "\ue030Android64719038" - ], - "profiles": [], - "name": "\ue030Android64719038", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-26 06:29:59", - "registerOn": 1685734395.3649848, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685734395.3649852, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685734395.364992, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685734395.3649929, - "lastIP": "awi~~ieaid|vay`", - "deviceUUID": "543a3d9d0d44390d8496fbfbb8fd54ddc55505a4" - }, - "pb-IF41U1U9BA==": { - "display_string": [ - "\ue063Classica67" - ], - "profiles": [], - "name": "\ue063Classica67", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-10 18:05:36", - "registerOn": 1685734785.480959, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685734785.4809594, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686237896.9827166, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686237896.982718, - "lastIP": "a\u007fk~~n`ajcxvb}a", - "deviceUUID": "447b2f34e6752d40d026da152470dcdab9192c75" - }, - "pb-IF4PUkYeCg==": { - "display_string": [ - "\ue063ksnsudn998", - "\ue030Android64349748", - "\ue030Android53209611" - ], - "profiles": [], - "name": "\ue030Android53209611", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-07 03:25:29", - "registerOn": 1685735019.5852716, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685735019.5852726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685735019.5852802, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685735019.5852814, - "lastIP": "a|j~}maai~~oa", - "deviceUUID": "b4cefd71f6a2c090d32e1660a673f2019ac277fb" - }, - "pb-IF4iU0QaEw==": { - "display_string": [ - "\ue063BCS" - ], - "profiles": [], - "name": "\ue063BCS", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 15:14:50", - "registerOn": 1685736259.819875, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685736259.819876, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1688134372.6383, - "verified": true, - "rejoincount": 1, - "lastJoin": 1688134372.6383042, - "lastIP": "axj~}h~{`~~", - "deviceUUID": "794cde3b6d1a862addc825b3bd75d7dcddc379e0", - "cMsgCount": 1, - "lastMsgTime": 1687090495.5832543, - "lastMsg": "kiya haal chal hai tumhare nalle ", - "cSameMsg": 0 - }, - "pb-IF4TV3RbDA==": { - "display_string": [ - "\ue063HypnoticA4" - ], - "profiles": [], - "name": "\ue063HypnoticA4", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-22 23:04:35", - "registerOn": 1685739855.4243777, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685739855.4243784, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686339315.0203977, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686339315.0203986, - "lastIP": "azo~{m~~leaihv", - "deviceUUID": "ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3", - "cMsgCount": 1, - "lastMsgTime": 1685884940.4133115, - "lastMsg": "how did I left", - "cSameMsg": 0 - }, - "pb-IF4GU1UdNQ==": { - "display_string": [ - "\ue030Android64210421" - ], - "profiles": [], - "name": "\ue030Android64210421", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-08 12:53:08", - "registerOn": 1685748838.1704845, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685748838.1704853, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686188406.973197, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686188406.9731984, - "lastIP": "a}h~}`~vi~~ic", - "deviceUUID": "59d2818bdaf074a54bfc14e041ee875b2afff306" - }, - "pb-IF49U0c-XA==": { - "display_string": [ - "\ue063Particu262" - ], - "profiles": [], - "name": "\ue063Particu262", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-17 00:17:46", - "registerOn": 1685749466.4146845, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685749466.4146852, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685749466.4146924, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685749466.4146934, - "lastIP": "dzvb|k~}icam`", - "deviceUUID": "9cc30dda6328aa103253475ad22b3fe177172285" - }, - "pb-IF4SVFkaCQ==": { - "display_string": [ - "\ue063CherryBlo2", - "\ue030Android46284403" - ], - "profiles": [], - "name": "\ue063CherryBlo2", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-23 14:44:45", - "registerOn": 1685756028.191234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685756028.1912346, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686297345.9766958, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686307018.1794052, - "lastIP": "a~l~~jbaia~vb|j", - "deviceUUID": "cc48352b9d235d86cf6193d054b7a9ab9a13059a" - }, - "pb-IF4XVUZfFA==": { - "display_string": [ - "\ue063BackwardB2" - ], - "profiles": [], - "name": "\ue063BackwardB2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-18 06:31:57", - "registerOn": 1685756083.3740258, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685756083.3740263, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685847464.5186415, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685852179.9344275, - "lastIP": "b\u007fj~zi~xn~|n", - "deviceUUID": "796c6e0013eee01a7508986e29b2cda6525e000a" - }, - "pb-IF4PUBQaPQ==": { - "display_string": [ - "\ue063EclecticK7" - ], - "profiles": [], - "name": "\ue063EclecticK7", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-14 14:29:21", - "registerOn": 1685756107.7864146, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685756107.786415, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685756107.7864208, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685756107.7864218, - "lastIP": "b}k~~`gai`zvb\u007f", - "deviceUUID": "a2a7e3069a0a7dba0e044d820dd7a54b0f66f204" - }, - "pb-IF4cUBYfCg==": { - "display_string": [ - "\ue063Hrithiksng" - ], - "profiles": [], - "name": "\ue063Hrithiksng", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-27 13:38:19", - "registerOn": 1685756157.9549563, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685756157.9549568, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686399541.9243326, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686400038.8405535, - "lastIP": "azo~zh~{m~}if", - "deviceUUID": "1c8cd1619da006e91ea3b5472fb0cdac0eea3942", - "cMsgCount": 0, - "lastMsgTime": 1686400202.2327187, - "lastMsg": "u cnt", - "cSameMsg": 0 - }, - "pb-IF41U0kfIw==": { - "display_string": [ - "\ue063Colloqui29" - ], - "profiles": [], - "name": "\ue063Colloqui29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-30 05:19:00", - "registerOn": 1685756456.2156708, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685756456.2156713, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685756456.2156785, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685756456.2156792, - "lastIP": "b{vexve\u007fvbzj", - "deviceUUID": "048c8a88c56a51b137c1fe4a49715bada7845888" - }, - "pb-IF4VUGEOPQ==": { - "display_string": [ - "\ue063Realiza260" - ], - "profiles": [], - "name": "\ue063Realiza260", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-18 05:49:52", - "registerOn": 1685756469.293031, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685756469.2930317, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685756469.2930388, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685758578.4363427, - "lastIP": "f~vb{m~~oaaib", - "deviceUUID": "1766ca73bab688b3546acebd9cbb73fb31057596", - "cMsgCount": 0, - "lastMsgTime": 1685758694.8271017, - "lastMsg": "hah", - "cSameMsg": 0 - }, - "pb-IF4PU2Y6VQ==": { - "display_string": [ - "\ue063BurlyBron2" - ], - "profiles": [], - "name": "\ue063BurlyBron2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-19 23:29:52", - "registerOn": 1685757357.1884499, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685757357.1884506, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686125735.265817, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686127495.4723828, - "lastIP": "a~h~}jfaih|vc", - "deviceUUID": "4eb8860c217488d77476288d99816fa776d12c0c", - "cMsgCount": 0, - "lastMsgTime": 1685885675.762257, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4uU28fVQ==": { - "display_string": [ - "\ue063Voraciou15" - ], - "profiles": [], - "name": "\ue063Voraciou15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-26 11:26:46", - "registerOn": 1685757410.4069986, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685757410.406999, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685986273.3197107, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685986273.319731, - "lastIP": "a\u007fk~~leaiiaid|", - "deviceUUID": "b4f2ce2e42c35bd790f4e81b2d365537d939c62a" - }, - "pb-IF5cUxIdPw==": { - "display_string": [ - "\ue063fredrickpl" - ], - "profiles": [], - "name": "\ue063fredrickpl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-28 11:01:38", - "registerOn": 1685758467.3431602, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685758467.3431606, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685758467.3431659, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685758467.3431668, - "lastIP": "dzva~o~}lgajd|", - "deviceUUID": "3fa28b37461bb3803f7d46a5870819cc40efc717" - }, - "pb-IF5XU0YhKg==": { - "display_string": [ - "\ue063bBoyy1" - ], - "profiles": [], - "name": "\ue063bBoyy1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 22:10:46", - "registerOn": 1685758783.50129, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685758783.5012908, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685758783.501298, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685769971.8702238, - "lastIP": "azo~zh~|`~}m`", - "deviceUUID": "009307dd452aa63a0473545aea930364bd26abb4" - }, - "pb-IF49UnYRLQ==": { - "display_string": [ - "\ue063Abby" - ], - "profiles": [], - "name": "\ue063Abby", - "isBan": true, - "isMuted": false, - "accountAge": "2021-12-30 19:43:31", - "registerOn": 1685761937.8591895, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685761937.8591905, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685761937.8591979, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685761937.8591988, - "lastIP": "dvvcyvb~i~~ha", - "deviceUUID": "690c3f7ca525541fd6d368f95dd77e48836a2345" - }, - "pb-IF4LV20GMw==": { - "display_string": [ - "\ue063sahniharsh" - ], - "profiles": [], - "name": "\ue063sahniharsh", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-24 21:14:08", - "registerOn": 1685762125.2217338, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685762125.2217348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686368049.8231812, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686368049.8231823, - "lastIP": "a\u007fi~\u007fve{vc", - "deviceUUID": "305f2513910ce5427877375161c5ae05dbf130aa" - }, - "pb-IF4OUBAqNQ==": { - "display_string": [ - "\ue063Intracel63" - ], - "profiles": [], - "name": "\ue063Intracel63", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-12 21:18:45", - "registerOn": 1685762247.6755157, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685762247.6755161, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686302590.5668628, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686302590.5668647, - "lastIP": "a\u007fk~{`~ya~~jb", - "deviceUUID": "d80ceba120b2edcef7c1e81823e041b3d12291af", - "cMsgCount": 0, - "lastMsgTime": 1686287223.8927777, - "lastMsg": "tum red me jao", - "cSameMsg": 0 - }, - "pb-IF4zU1EhAQ==": { - "display_string": [ - "\ue030Android64048679" - ], - "profiles": [], - "name": "\ue030Android64048679", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-14 15:38:25", - "registerOn": 1685762266.779462, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685762266.7794628, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685762266.7794712, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685762266.779472, - "lastIP": "bxvc{vayvev", - "deviceUUID": "e2a134ba4dde7046e52503e18cca074ae1bdfa49" - }, - "pb-IF4RV2pfIg==": { - "display_string": [ - "\ue063FancyPa647" - ], - "profiles": [], - "name": "\ue063FancyPa647", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-01 17:46:28", - "registerOn": 1685762295.8526645, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685762295.852665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685762295.8526719, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685762295.8526728, - "lastIP": "azj~z`~yn~~nd", - "deviceUUID": "65f6b8e451c6600b8d8f2de0fe7255792bb2336b" - }, - "pb-IF4wV24HBw==": { - "display_string": [ - "\ue063GiantRobot" - ], - "profiles": [], - "name": "\ue063GiantRobot", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-27 02:36:51", - "registerOn": 1685764529.08724, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685764529.0872407, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686381781.2034876, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686381781.2034888, - "lastIP": "a\u007fn~~acaii~vb\u007fo", - "deviceUUID": "38e44d8557238faa80f05e016a255f906ea1f512", - "cMsgCount": 0, - "lastMsgTime": 1685796463.9672859, - "lastMsg": "kya hua", - "cSameMsg": 0 - }, - "pb-IF4xUnQNVA==": { - "display_string": [ - "\ue063Chiragdhil", - "\ue030Android55309016" - ], - "profiles": [], - "name": "\ue063Chiragdhil", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-21 08:37:21", - "registerOn": 1685764578.9535306, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685764578.953531, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686247482.727529, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686247482.7275302, - "lastIP": "azo~|j~~haai`~", - "deviceUUID": "477a46d48ec2c3a3ed0c4fb1e42c2d889ad8233f" - }, - "pb-IF4uU2hTLQ==": { - "display_string": [ - "\ue063PosteriorU" - ], - "profiles": [], - "name": "\ue063PosteriorU", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-27 09:36:10", - "registerOn": 1685764991.486061, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685764991.4860618, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685764991.4860697, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685764991.4860706, - "lastIP": "azo~{a~~meajd\u007f", - "deviceUUID": "504fe72cb1576399397fe756d681d03b3a4511d1" - }, - "pb-IF4TU0o8Hw==": { - "display_string": [ - "\ue063FinalHair1" - ], - "profiles": [], - "name": "\ue063FinalHair1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 00:20:48", - "registerOn": 1685766087.7056847, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685766087.7056851, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685766087.7056916, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685766087.7056928, - "lastIP": "a\u007fk~~mfajcxva\u007fi", - "deviceUUID": "9c5ba3d0322e0a8621c0e4b2dc3d80b9520d3057" - }, - "pb-IF4gUBNSMg==": { - "display_string": [ - "\ue063Alvis017" - ], - "profiles": [], - "name": "\ue063Alvis017", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-06 13:43:16", - "registerOn": 1685766544.5190728, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685766544.5190732, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685766544.5190804, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685766544.519082, - "lastIP": "azo~{a~}ldai`y", - "deviceUUID": "f56b4563bf9bd73c48b9bf48631b994cffb4be20" - }, - "pb-IF4zUBUlNg==": { - "display_string": [ - "\ue030Android64653674" - ], - "profiles": [], - "name": "\ue030Android64653674", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-17 18:49:09", - "registerOn": 1685766881.7831008, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685766881.7831016, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686402406.4889953, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686402406.4889965, - "lastIP": "a\u007fn~}heaiiyvaym", - "deviceUUID": "859289bf71856de4196a0bbb1beaca24e35cfcb5", - "cMsgCount": 0, - "lastMsgTime": 1686403551.1138012, - "lastMsg": "\ud83d\ude11", - "cSameMsg": 0 - }, - "pb-IF4JUBEGVw==": { - "display_string": [ - "\ue063Matchle158" - ], - "profiles": [], - "name": "\ue063Matchle158", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-24 17:40:08", - "registerOn": 1685767689.0359678, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685767689.0359685, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685767689.035974, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685767689.035975, - "lastIP": "a~o~}ifangajdy", - "deviceUUID": "212d9269cda0f167ca66af20d000a518872a892e", - "cMsgCount": 0, - "lastMsgTime": 1685768880.2023003, - "lastMsg": "I'm sorry for that bombs", - "cSameMsg": 0 - }, - "pb-IF5RUBkiKA==": { - "display_string": [ - "\ue063Accredi385" - ], - "profiles": [], - "name": "\ue063Accredi385", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-25 13:48:10", - "registerOn": 1685767807.150114, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685767807.1501145, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686375297.1725993, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686387444.8214734, - "lastIP": "a\u007fn~~agajdwva\u007fi", - "deviceUUID": "877b93675e76cf2071129b0986e5bf39bbb7d2b0", - "cMsgCount": 0, - "lastMsgTime": 1686333387.4740543, - "lastMsg": "come", - "cSameMsg": 0 - }, - "pb-IF5dU3UiAw==": { - "display_string": [ - "\ue063BOMBSQUA32" - ], - "profiles": [], - "name": "\ue063BOMBSQUA32", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 21:03:46", - "registerOn": 1685768076.2118454, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685768076.2118459, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686400025.7832608, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686400025.7832623, - "lastIP": "a~o~}hdak`ana", - "deviceUUID": "2075f74ce3988b96997b4c4082726cec0bfd3b36", - "cMsgCount": 0, - "lastMsgTime": 1686400207.4892492, - "lastMsg": "ok bye ", - "cSameMsg": 0 - }, - "pb-IF4nUGgyFA==": { - "display_string": [ - "\ue063GoldDwarf7" - ], - "profiles": [], - "name": "\ue063GoldDwarf7", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-26 13:52:40", - "registerOn": 1685768134.4078405, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685768134.4078414, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685768134.4078474, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685768134.4078481, - "lastIP": "azo~|j~~ibai`\u007f", - "deviceUUID": "ee297ff43779f1cf5cba3b2b42714e181babba08" - }, - "pb-IF43UGY9Eg==": { - "display_string": [ - "\ue063RelatedCr3" - ], - "profiles": [], - "name": "\ue063RelatedCr3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-16 16:20:28", - "registerOn": 1685768212.7083004, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685768212.708301, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685768212.7083087, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685768212.7083101, - "lastIP": "a\u007fn~~agalba`i", - "deviceUUID": "01f56812426d458c1f684d751136943f07585aa4" - }, - "pb-IF4XU0gNJg==": { - "display_string": [ - "\ue063NoName14481" - ], - "profiles": [], - "name": "\ue063NoName14481", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 18:43:55", - "registerOn": 1685768338.1153538, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685768338.1153545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686201098.5208168, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686201194.8677526, - "lastIP": "a}j~~naalia`c", - "deviceUUID": "6f3d0491d6910430abbc41303840d02f678632d3", - "cMsgCount": 1, - "lastMsgTime": 1686201177.4074352, - "lastMsg": "sudrega nhi", - "cSameMsg": 0 - }, - "pb-IF4MUBVeMQ==": { - "display_string": [ - "\ue063avigupta34" - ], - "profiles": [], - "name": "\ue063avigupta34", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-17 12:39:33", - "registerOn": 1685768367.195631, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685768367.1956315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685768367.1956377, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685768431.1407201, - "lastIP": "a\u007fn~~adajdaiew", - "deviceUUID": "bd8158b473696d433dc1f27858a22b099d6cebc1" - }, - "pb-IF4MU085LA==": { - "display_string": [ - "\ue063Invisible6" - ], - "profiles": [], - "name": "\ue063Invisible6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 21:51:17", - "registerOn": 1685768430.4676096, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685768430.4676104, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685878357.6018364, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685878357.6018379, - "lastIP": "b}k~~oha`caig\u007f", - "deviceUUID": "fc09720498a246ca809ec2149e0e97ed763a2cc2" - }, - "pb-IF4AUBgdFg==": { - "display_string": [ - "\ue063ManifestPe" - ], - "profiles": [], - "name": "\ue063ManifestPe", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-06 14:42:44", - "registerOn": 1685768563.5448375, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685768563.5448377, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685768563.5448434, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685768563.5448446, - "lastIP": "a\u007fn~~adaie~vb{i", - "deviceUUID": "dfc352aa824c5b3f1bd0559831904c10ad5d1447" - }, - "pb-IF5TVEsdEA==": { - "display_string": [ - "\ue063Sistakala" - ], - "profiles": [], - "name": "\ue063Sistakala", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-21 20:37:45", - "registerOn": 1685769506.4876075, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685769506.4876084, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685769506.4876158, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685769506.4876165, - "lastIP": "b}k~}kgaofa`", - "deviceUUID": "b0f2cdf17af1b86954269f7d21f5703d931c6b81", - "cMsgCount": 0, - "lastMsgTime": 1685770300.6682649, - "lastMsg": "ok", - "cSameMsg": 0 - }, - "pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA": { - "display_string": [ - "\ue063tooworst", - "\ue030Android3334459" - ], - "profiles": [], - "name": "\ue063tooworst", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-22 17:44:50", - "registerOn": 1685769656.969174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685769656.9691746, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685967503.1601374, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685967503.1601386, - "lastIP": "a\u007fn~~afajhajc}", - "deviceUUID": "936c205c0c65262d62300105d4329a28095c9790", - "cMsgCount": 0, - "lastMsgTime": 1685968021.4073806, - "lastMsg": "sry", - "cSameMsg": 0 - }, - "pb-IF4qUGcgVA==": { - "display_string": [ - "\ue063PROGAM1NGL" - ], - "profiles": [], - "name": "\ue063PROGAM1NGL", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-21 12:03:49", - "registerOn": 1685769726.2536175, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685769726.2536182, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685769726.2536247, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685769726.2536254, - "lastIP": "dvvd}vczva\u007fh", - "deviceUUID": "8e15b72bce41376e864526b0b2219c7097510e54", - "cMsgCount": 0, - "lastMsgTime": 1685770132.5449078, - "lastMsg": "/sm", - "cSameMsg": 0 - }, - "pb-IF4lUBEuJg==": { - "display_string": [ - "\ue063JasminePro" - ], - "profiles": [], - "name": "\ue063JasminePro", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-19 20:12:20", - "registerOn": 1685769930.0098422, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685769930.0098426, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1685770012.87825, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685769930.009852, - "lastIP": "a~m~~keajhaiaz", - "deviceUUID": "620c52393bc846015da4f116ca02207c98263d1f", - "cMsgCount": 0, - "lastMsgTime": 1685770103.7087097, - "lastMsg": "hurry type 1 ij chat now", - "cSameMsg": 0 - }, - "pb-IF4HU0VcCA==": { - "display_string": [ - "\ue030PC605822" - ], - "profiles": [], - "name": "\ue030PC605822", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 18:43:13", - "registerOn": 1685770281.3011982, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685770281.301199, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686237217.2647736, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686237217.2647748, - "lastIP": "azl~}kiajavvcz", - "deviceUUID": "0048b280144da2caaeb58a3dd845b91cdf4d29b8", - "cMsgCount": 2, - "lastMsgTime": 1685770697.501155, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4HU2pTMQ==": { - "display_string": [ - "\ue063IcyCodger9" - ], - "profiles": [], - "name": "\ue063IcyCodger9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-03 10:22:58", - "registerOn": 1685770318.7225614, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685770318.7225616, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1685770691.993718, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685770318.7225683, - "lastIP": "axi~yi~{m~}id", - "deviceUUID": "868b9648585b7a3d368b58b60409f524fa43e28f", - "cMsgCount": 0, - "lastMsgTime": 1685770691.9934802, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF41U0YxAw==": { - "display_string": [ - "\ue063SkullmasTe", - "\ue030Android61073999" - ], - "profiles": [], - "name": "\ue063SkullmasTe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-11 13:14:49", - "registerOn": 1685770326.589534, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685770326.5895345, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686387358.512367, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686387358.5123682, - "lastIP": "azo~{l~~mgaob", - "deviceUUID": "77f59489dc04b88bc5a3b44acb659fb7f222308b", - "cMsgCount": 0, - "lastMsgTime": 1686042050.8400886, - "lastMsg": "tera bap", - "cSameMsg": 0 - }, - "pb-IF4IUGQRHw==": { - "display_string": [ - "\ue063Unworth119" - ], - "profiles": [], - "name": "\ue063Unworth119", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-09 18:58:35", - "registerOn": 1685770387.7944057, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685770387.7944062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686300293.8183951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686300293.8183963, - "lastIP": "azo~{n~~mcaj`y", - "deviceUUID": "75b42d0e6532c03c0a60bb7c5238043a93288156" - }, - "pb-IF4OU1IZVg==": { - "display_string": [ - "\ue063Bachi" - ], - "profiles": [], - "name": "\ue063Bachi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-24 20:02:07", - "registerOn": 1685770559.3659873, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685770559.3659878, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685971126.9978132, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685971126.997814, - "lastIP": "a|o~vo~wl~}kc", - "deviceUUID": "541973653043d7f242ff3b1078194e8678f82921" - }, - "pb-IF4VU3laVA==": { - "display_string": [ - "\ue030Android63074779" - ], - "profiles": [], - "name": "\ue030Android63074779", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-02 11:57:20", - "registerOn": 1685770595.821258, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685770595.821259, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686401436.2806838, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686401738.0722935, - "lastIP": "a\u007fk~~naaid{vb~", - "deviceUUID": "96e150468c1fe469b1343b5ac745beb26a8fdf2f", - "cMsgCount": 0, - "lastMsgTime": 1686402839.3218086, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4JUBICXA==": { - "display_string": [ - "\ue063StealthyH9" - ], - "profiles": [], - "name": "\ue063StealthyH9", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-02 11:31:40", - "registerOn": 1685770733.0147333, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685770733.014734, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685893953.8746586, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685893953.8746598, - "lastIP": "a|o~vo~wa~x", - "deviceUUID": "afbcc2be54038c709746560f3d68fccd8aca53c4" - }, - "pb-IF4AUGhaVQ==": { - "display_string": [ - "\ue030Android65128653" - ], - "profiles": [], - "name": "\ue030Android65128653", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-25 10:35:32", - "registerOn": 1685770877.8323083, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685770877.8323092, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685770877.8323169, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685770877.832318, - "lastIP": "dzva}i~vi~}j`", - "deviceUUID": "cab173d12dc4cfbd276f6a55ec4941596dce3c6f" - }, - "pb-IF4jV1U5Aw==": { - "display_string": [ - "\ue063pujan12346" - ], - "profiles": [], - "name": "\ue063pujan12346", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-11 13:31:55", - "registerOn": 1685770970.869423, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685770970.8694234, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685770970.869431, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685774393.1365538, - "lastIP": "aakhaacaihx", - "deviceUUID": "6d31f2e6c59ae1fabf27f3f452c224afed63e2b4" - }, - "pb-IF4cVXlaDQ==": { - "display_string": [ - "\ue063RiddenVill" - ], - "profiles": [], - "name": "\ue063RiddenVill", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-27 18:34:48", - "registerOn": 1685771200.6663513, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685771200.6663518, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686040752.5012906, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686040752.5012918, - "lastIP": "a\u007fk~~j`aif{vf{", - "deviceUUID": "ce5e2f736e4e516430adfe856033f9b818cd17d6" - }, - "pb-IF4JVFA6LQ==": { - "display_string": [ - "\ue063HELL502LOR" - ], - "profiles": [], - "name": "\ue063HELL502LOR", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-21 17:30:16", - "registerOn": 1685771521.8565776, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685771521.856578, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686140382.6407263, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686140628.4662557, - "lastIP": "azj~z`~~a~ym", - "deviceUUID": "f2739f56e5aff6d13c471c7e9c30137e9b789e2d" - }, - "pb-IF4-UxNTNA==": { - "display_string": [ - "\ue063BuffBeef14", - "\ue030Android55576586" - ], - "profiles": [], - "name": "\ue063BuffBeef14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-06 10:39:43", - "registerOn": 1685771523.865161, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685771523.8651614, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686216150.3757746, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686216150.375776, - "lastIP": "b\u007fk~~abajcvvew", - "deviceUUID": "43dd6ff7f240bb395ffa964f474087f11fd0115a" - }, - "pb-IF5TUlZaUw==": { - "display_string": [ - "\ue063ShakyMagic", - "\ue030Android55764376" - ], - "profiles": [], - "name": "\ue063ShakyMagic", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-30 20:45:12", - "registerOn": 1685771592.0994558, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685771592.0994563, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686381910.6788845, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686381910.6788857, - "lastIP": "azo~{o~~ihaie|", - "deviceUUID": "d637556c5e73b7945ab6162c495638d7ec9c7bf2" - }, - "pb-IF4jUlUhMQ==": { - "display_string": [ - "\ue063HornedMast" - ], - "profiles": [], - "name": "\ue063HornedMast", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-02 17:16:06", - "registerOn": 1685771656.682025, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685771656.6820257, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685771656.682033, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685771656.682034, - "lastIP": "azj~zo~}m~zn", - "deviceUUID": "bcdc88c3811bcd2453c01a373cb7cc6b8ce4a04b" - }, - "pb-IF43UkRZVQ==": { - "display_string": [ - "\ue063ProCaprico" - ], - "profiles": [], - "name": "\ue063ProCaprico", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-27 18:33:46", - "registerOn": 1685771709.8485324, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685771709.8485332, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685771709.8485386, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685773028.069132, - "lastIP": "b\u007fm~}mcakdamf", - "deviceUUID": "4d1e8a08dd1406c2a9ecbb390a6c033dc7c7bdf3", - "cMsgCount": 0, - "lastMsgTime": 1685774000.890072, - "lastMsg": "mutthal sala nalla hai kya", - "cSameMsg": 0 - }, - "pb-IF4yU0QRUg==": { - "display_string": [ - "\ue063TejasPati3", - "\ue030Android64335518" - ], - "profiles": [], - "name": "\ue063TejasPati3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 13:07:13", - "registerOn": 1685772129.2804163, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685772129.280417, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685772129.280422, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685772129.2804227, - "lastIP": "a\u007fn~}ibaieyva{j", - "deviceUUID": "d8031d480d0de8d34bda20b2b4ab8fcc5c73f592", - "cMsgCount": 0, - "lastMsgTime": 1685773207.3139207, - "lastMsg": "f", - "cSameMsg": 0 - }, - "pb-IF4JUBkxKw==": { - "display_string": [ - "\ue063SharpKnowI" - ], - "profiles": [], - "name": "\ue063SharpKnowI", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-10 21:00:44", - "registerOn": 1685772167.5780838, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685772167.5780845, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686337361.2434042, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686337361.2434049, - "lastIP": "dvvd|vb~`~}hi", - "deviceUUID": "744537108d53e730f1a041711ca9db3a11e5eb1a", - "cMsgCount": 0, - "lastMsgTime": 1686203997.889697, - "lastMsg": "yayayyaY", - "cSameMsg": 0 - }, - "pb-IF4TV2w6Bw==": { - "display_string": [ - "\ue063Balajiblaz" - ], - "profiles": [], - "name": "\ue063Balajiblaz", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-17 11:20:14", - "registerOn": 1685772257.604219, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685772257.6042192, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685862440.3889997, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685862976.282413, - "lastIP": "azo~zi~yvaxn", - "deviceUUID": "80a287f0d604941252beec3259f6ad0d60cccd4d" - }, - "pb-IF4nUGgiMg==": { - "display_string": [ - "\ue063ReddishDer" - ], - "profiles": [], - "name": "\ue063ReddishDer", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-25 06:11:09", - "registerOn": 1685773036.7590237, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685773036.7590241, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685773036.759031, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685773036.7590318, - "lastIP": "b}k~}kiai`zvf|", - "deviceUUID": "9c80fd00a0721393bbbd095368fc2ee255ac1fd0" - }, - "pb-IF5RUGYFPA==": { - "display_string": [ - "\ue063Danvendra2" - ], - "profiles": [], - "name": "\ue063Danvendra2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-02 10:11:35", - "registerOn": 1685773171.9249315, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685773171.9249318, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685890947.842924, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685890947.8429253, - "lastIP": "azo~|l~{m~vl", - "deviceUUID": "a6f8b8f546b075c2b5b996c172e832133a7e79cb", - "cMsgCount": 0, - "lastMsgTime": 1685774040.5150645, - "lastMsg": "not danvendran it's danvendra", - "cSameMsg": 0 - }, - "pb-IF4IUGVTMQ==": { - "display_string": [ - "\ue063niloferkha", - "\ue030Android48668741" - ], - "profiles": [], - "name": "\ue063niloferkha", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-10 18:25:09", - "registerOn": 1685773585.4748263, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685773585.4748268, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686333982.352782, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686333982.3527832, - "lastIP": "a\u007fn~~adaje\u007fvbw", - "deviceUUID": "c122767b74fe0c99f1c70247ae0b7d6375493e1d", - "cMsgCount": 0, - "lastMsgTime": 1686166113.5521305, - "lastMsg": "haha", - "cSameMsg": 0 - }, - "pb-IF4BUGYpXQ==": { - "display_string": [ - "\ue063Veterin296" - ], - "profiles": [], - "name": "\ue063Veterin296", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-18 12:44:45", - "registerOn": 1685773587.7920325, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685773587.7920332, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685781167.7725518, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685781167.7725527, - "lastIP": "a\u007fk~vo~vn~~ih", - "deviceUUID": "bee529e5919516d06661ac599784f60a04e85ce5" - }, - "pb-IF48UGY4Bw==": { - "display_string": [ - "\ue063ksproducti" - ], - "profiles": [], - "name": "\ue063ksproducti", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-13 23:27:31", - "registerOn": 1685773896.0777645, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685773896.0777652, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685773896.0777714, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685773896.0777726, - "lastIP": "a\u007fk~}l`ajcyva\u007fh", - "deviceUUID": "73f08758e941b7d7486a8fbda46c528543f89e36" - }, - "pb-IF4qU0cFIw==": { - "display_string": [ - "\ue063SensoryRe9" - ], - "profiles": [], - "name": "\ue063SensoryRe9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 15:35:07", - "registerOn": 1685774105.3908634, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685774105.3908641, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685774105.390872, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685774105.3908732, - "lastIP": "bxvevvb}o~~le", - "deviceUUID": "e70a49bb59c9e154a17f74bf09adcbefac59ca89" - }, - "pb-IF4QUxEhPw==": { - "display_string": [ - "\ue030Android60128258", - "\ue030Android65061767", - "\ue030Android65040981", - "\ue030Android65061826", - "\ue030Android65061792" - ], - "profiles": [], - "name": "\ue030Android60128258", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-30 22:20:31", - "registerOn": 1685774115.4329717, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685774115.4329722, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685774115.4329798, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685774115.4329808, - "lastIP": "a\u007fk~~hgaibxvfw", - "deviceUUID": "906954b16eb23117f1ad0c9aa42dfafdf50e3642" - }, - "pb-IF4PV24yPA==": { - "display_string": [ - "\ue063Agzx2244", - "\ue030Android48295628", - "\ue030Android50558008", - "\ue030PC351631", - "\ue030Android50407500" - ], - "profiles": [], - "name": "\ue063Agzx2244", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-27 10:21:40", - "registerOn": 1685774210.1137135, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685774210.113714, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686395525.0957105, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686395525.0957115, - "lastIP": "a~h~}jgameaibw", - "deviceUUID": "5bd1087e38783d3d08f01cfce5d36dfbf8440740" - }, - "pb-IF4BU0EsIg==": { - "display_string": [ - "\ue030Android63294581" - ], - "profiles": [], - "name": "\ue030Android63294581", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 16:51:32", - "registerOn": 1685774325.201672, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685774325.201673, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686324070.5445824, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686324070.5445838, - "lastIP": "azj~z`~}h`amc", - "deviceUUID": "c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc" - }, - "pb-IF4jUGk-Mg==": { - "display_string": [ - "\ue063Sporadi142" - ], - "profiles": [], - "name": "\ue063Sporadi142", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-30 11:59:39", - "registerOn": 1685774935.5784843, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685774935.5784848, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685774935.5784907, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685776405.601807, - "lastIP": "azo~|k~vk~~`b", - "deviceUUID": "0a02ab90b7ed8849a5d9749cb4c0463c406c3c70" - }, - "pb-IF4QUk1SUg==": { - "display_string": [ - "\ue063cskdhonifa", - "\ue030Android55923630" - ], - "profiles": [], - "name": "\ue063cskdhonifa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-05 13:31:18", - "registerOn": 1685775028.2633421, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685775028.2633426, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685775028.2633488, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685775028.2633498, - "lastIP": "azo~{a~}ieaod", - "deviceUUID": "75f7533c2aa50119ad2d3621695a32113ef3bd55" - }, - "pb-IF4uU3VdIg==": { - "display_string": [ - "\ue063Kaejo575" - ], - "profiles": [], - "name": "\ue063Kaejo575", - "isBan": true, - "isMuted": false, - "accountAge": "2022-08-16 16:44:29", - "registerOn": 1685775362.4217894, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685775362.4217896, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685775362.4217951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685775362.421796, - "lastIP": "", - "deviceUUID": "" - }, - "pb-JiNJARFdXUBIW1tHEEJVXFJEEUFdQlVE": { - "display_string": [ - "\ue063Akshatshah", - "\ue030Android52451220", - "\ue030Android52460434" - ], - "profiles": [], - "name": "\ue063Akshatshah", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-15 16:47:34", - "registerOn": 1685775407.2763205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685775407.276321, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685775407.2763274, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685775407.2763286, - "lastIP": "azo~|j~}hbaig|", - "deviceUUID": "f058e6eeb1a54f58ef7bfe92ded2dcb07e64ae5a" - }, - "pb-IF4hU1c7BA==": { - "display_string": [ - "\ue063Rewardi117" - ], - "profiles": [], - "name": "\ue063Rewardi117", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-28 15:32:25", - "registerOn": 1685775422.3892155, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685775422.3892162, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685817654.7798097, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685817654.7798111, - "lastIP": "a\u007fn~}ifaje}vavn", - "deviceUUID": "e63c1bcfdee1e40becd4d02f7fac17809bf5d6c1" - }, - "pb-IF4rUGcENA==": { - "display_string": [ - "\ue063rodanrjn" - ], - "profiles": [], - "name": "\ue063rodanrjn", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-22 16:22:09", - "registerOn": 1685775499.7081525, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685775499.7081532, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685775499.7081604, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685775499.7081614, - "lastIP": "a\u007fk~~h~}`~~lb", - "deviceUUID": "0bbe1d38805bcecb3eaacda7c16d63d5ac17ebe5" - }, - "pb-IF4PUxM7Mg==": { - "display_string": [ - "\ue063EastVentil" - ], - "profiles": [], - "name": "\ue063EastVentil", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-07 09:26:27", - "registerOn": 1685775598.9498293, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685775598.94983, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685775598.9498382, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685775598.949839, - "lastIP": "a|o~vo~va~yj", - "deviceUUID": "2005d3932c1dcb0f796e811b13b5e3ce8549c984" - }, - "pb-IF5dUGYuHw==": { - "display_string": [ - "\ue063itzADARSH0" - ], - "profiles": [], - "name": "\ue063itzADARSH0", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-05 07:11:47", - "registerOn": 1685775693.5483837, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685775693.5483842, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686140006.1896858, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686140006.1896868, - "lastIP": "azj~z`~~`iaid\u007f", - "deviceUUID": "874c403714e6060dbe7235bb3f44c8974130f59b" - }, - "pb-IF4DUBlZUg==": { - "display_string": [ - "\ue063HIMANSHUS9" - ], - "profiles": [], - "name": "\ue063HIMANSHUS9", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-06 17:21:42", - "registerOn": 1685775731.463903, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685775731.4639034, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686202624.9699426, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686202624.9699435, - "lastIP": "dvvc{va|`~~l", - "deviceUUID": "40ef570a51f0e5048e15170252cef791bd02461a" - }, - "pb-IF5dUGglAw==": { - "display_string": [ - "\ue063Goldest" - ], - "profiles": [], - "name": "\ue063Goldest", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-18 13:46:53", - "registerOn": 1685775846.907607, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685775846.9076078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686304069.63486, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686304069.634861, - "lastIP": "azo~|m~zvazh", - "deviceUUID": "064c60d9855d30b53be59aeb5dc7fdb93aa962b3" - }, - "pb-IF49VFdbEQ==": { - "display_string": [ - "\ue063iamtex0002", - "\ue063iamtex0001", - "\ue030Android62546100", - "\ue030Android44592291", - "\ue030Android45787994" - ], - "profiles": [], - "name": "\ue063iamtex0001", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-03 16:14:01", - "registerOn": 1685776198.1163392, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685776198.11634, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686272774.187769, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686272774.18777, - "lastIP": "b}k~}jhaje{va\u007fh", - "deviceUUID": "fd892340b3c80c5d33d18531428ab2dbcc8aa598", - "cMsgCount": 0, - "lastMsgTime": 1685973180.7282634, - "lastMsg": "bye", - "cSameMsg": 0 - }, - "pb-IF40UncaLg==": { - "display_string": [ - "\ue063TiredShift" - ], - "profiles": [], - "name": "\ue063TiredShift", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-03 12:48:25", - "registerOn": 1685777635.7373383, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685777635.7373388, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686059483.2548354, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686059483.2548373, - "lastIP": "a\u007fk~~`aaa~}`", - "deviceUUID": "0845551c633f214c29c0814079b0e6f6f04dc907", - "cMsgCount": 0, - "lastMsgTime": 1686059637.9172485, - "lastMsg": "/me", - "cSameMsg": 0 - }, - "pb-IF4XVFkNDg==": { - "display_string": [ - "\ue063SocialRanc" - ], - "profiles": [], - "name": "\ue063SocialRanc", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-20 20:44:28", - "registerOn": 1685777801.3884408, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685777801.3884413, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685777801.388447, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685777801.388448, - "lastIP": "azo~{n~~`faih{", - "deviceUUID": "c97701571b1446c415bb6ab8af4cc6d3d850cc92" - }, - "pb-IF49UxEpJg==": { - "display_string": [ - "\ue063ExcitedPar" - ], - "profiles": [], - "name": "\ue063ExcitedPar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-29 15:52:19", - "registerOn": 1685778030.266908, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685778030.2669084, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685778030.2669156, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685778030.2669168, - "lastIP": "aakhanhai`w", - "deviceUUID": "d124995d1bfbddcb75f13f5355f9a4f278c6a3eb" - }, - "pb-IF4DUGkyHA==": { - "display_string": [ - "\ue063ARYANN" - ], - "profiles": [], - "name": "\ue063ARYANN", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-01 18:34:59", - "registerOn": 1685778281.5227895, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685778281.52279, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685778281.5227957, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685778281.5227969, - "lastIP": "a~o~va~~k~ym", - "deviceUUID": "d12a34e4aca26d63be2813750ad9d81a1f804ef8" - }, - "pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL": { - "display_string": [ - "\ue063ImKala", - "\ue030Android14720987", - "\ue030Android14605457" - ], - "profiles": [], - "name": "\ue063ImKala", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-21 13:47:25", - "registerOn": 1685779066.3662853, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685779066.366286, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686236260.300471, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686243978.009308, - "lastIP": "dvvcyvh\u007fva{h", - "deviceUUID": "00620ec832d1781422f6039b958608ec3246b269" - }, - "pb-IF4DVVcZMg==": { - "display_string": [ - "\ue063Avengersg2" - ], - "profiles": [], - "name": "\ue063Avengersg2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-17 23:26:58", - "registerOn": 1685779284.206222, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685779284.206223, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685779284.2062523, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685779284.2062533, - "lastIP": "a\u007fk~~miaie|vb~j", - "deviceUUID": "6d636d44545cb617a9981c43d7d4d7e66cf0db40" - }, - "pb-IF4NUGgJMw==": { - "display_string": [ - "\ue063DarkAppren" - ], - "profiles": [], - "name": "\ue063DarkAppren", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-02 09:10:10", - "registerOn": 1685779624.710211, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685779624.7102115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685779624.7102165, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685779624.7102175, - "lastIP": "a\u007fk~~aiajbzvb~n", - "deviceUUID": "0703fad6a1d8290cdab397f3f2510f5549dd7f04" - }, - "pb-IF4OPhMg": { - "display_string": [ - "\ue063Nakumrahul" - ], - "profiles": [], - "name": "\ue063Nakumrahul", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-13 14:32:46", - "registerOn": 1685779825.426816, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685779825.4268167, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686377533.9035134, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686377533.9035144, - "lastIP": "a\u007fn~}jbaodaid}", - "deviceUUID": "1f959b8fe7791a2bac9762db2666f280a19946b6", - "cMsgCount": 0, - "lastMsgTime": 1686287253.2781687, - "lastMsg": "muje red me nai khelna aata", - "cSameMsg": 0 - }, - "pb-IF4AUxYpIw==": { - "display_string": [ - "\ue063Mirzaclegs" - ], - "profiles": [], - "name": "\ue063Mirzaclegs", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-17 14:10:40", - "registerOn": 1685780412.6345918, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685780412.6345923, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685780412.6346002, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685780412.634601, - "lastIP": "azo~{n~~heai`z", - "deviceUUID": "7ea05ccb4bce7444af2bf6f94b21f050f5d448a9" - }, - "pb-IF4RUGkZVw==": { - "display_string": [ - "\ue063Ballist375" - ], - "profiles": [], - "name": "\ue063Ballist375", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-02 15:37:05", - "registerOn": 1685780897.817382, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685780897.8173826, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685780897.8174567, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685780897.817514, - "lastIP": "bxvf\u007fvczvb~`", - "deviceUUID": "cb58bf7ebd9e054efb78580d3d13ede3f3519610" - }, - "pb-IF43U0o7Aw==": { - "display_string": [ - "\ue030Android63464104" - ], - "profiles": [], - "name": "\ue030Android63464104", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-14 23:00:13", - "registerOn": 1685781060.1428366, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685781060.142837, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685862116.0913754, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685862116.0913765, - "lastIP": "a\u007fn~}hgandaoi", - "deviceUUID": "a09d01e25240174cea2612707e52e93b11f5da7e" - }, - "pb-IF4HUGUDPw==": { - "display_string": [ - "\ue063Thirtee357" - ], - "profiles": [], - "name": "\ue063Thirtee357", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-10 19:10:02", - "registerOn": 1685782630.9658296, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685782630.96583, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685782630.9658487, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685782630.9658496, - "lastIP": "azo~zi~~aba``", - "deviceUUID": "52f722e2868a7a223fab2340f60103321ec30543" - }, - "pb-IF48Xmgz": { - "display_string": [ - "\ue063FlyingGuac", - "\ue030Android41040817" - ], - "profiles": [], - "name": "\ue063FlyingGuac", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-18 13:56:37", - "registerOn": 1685782758.2123492, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685782758.21235, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685782758.2123585, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685782758.2123594, - "lastIP": "azj~z`~|l~~nf", - "deviceUUID": "392af6ab26625d491b89764dd284820caf2b470a" - }, - "pb-IF4xVVcoUw==": { - "display_string": [ - "\ue063Persiste29", - "\ue030Android51951090" - ], - "profiles": [], - "name": "\ue063Persiste29", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-15 23:50:16", - "registerOn": 1685783026.2688599, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685783026.2688606, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685783026.2688663, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685783026.2688673, - "lastIP": "a}j~~ocaniaib\u007f", - "deviceUUID": "db2aec0e1c84a8a33de2c91978e0ecadda908b6c" - }, - "pb-IF4eU1MHNQ==": { - "display_string": [ - "\ue030Android64140305" - ], - "profiles": [], - "name": "\ue030Android64140305", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-28 16:03:19", - "registerOn": 1685783563.4036477, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685783563.4036486, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685783563.4036562, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685783570.05603, - "lastIP": "a\u007fn~}j`ajd\u007fvb}a", - "deviceUUID": "53e48929c811c3d3cf24b2d0e334806042a7ca33" - }, - "pb-IF4lU3cFFw==": { - "display_string": [ - "\ue063OFFENSIVE1" - ], - "profiles": [], - "name": "\ue063OFFENSIVE1", - "isBan": true, - "isMuted": false, - "accountAge": "2022-08-26 18:20:28", - "registerOn": 1685785164.4324253, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685785164.4324257, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685785164.4324331, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685785164.4324343, - "lastIP": "d|vb{i~~leaad", - "deviceUUID": "0235ea0c1dde4d192be104a208f316cb22bc09dc" - }, - "pb-IF4WUGQyPA==": { - "display_string": [ - "\ue063GenuineI13" - ], - "profiles": [], - "name": "\ue063GenuineI13", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-02 22:56:36", - "registerOn": 1685785484.6642225, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685785484.664223, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685870105.81901, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685870105.8190112, - "lastIP": "a\u007fk~~oeaicyva\u007fo", - "deviceUUID": "065cb87de02fe47b0ba32c0622eaefd3d8090768", - "cMsgCount": 0, - "lastMsgTime": 1685809725.9142144, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4iVUUMPQ==": { - "display_string": [ - "\ue063NoNameA3760866", - "\ue030Android65151386" - ], - "profiles": [], - "name": "\ue063NoNameA3760866", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-17 11:20:39", - "registerOn": 1685785557.2500095, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685785557.2500103, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685785557.2500181, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685785597.7538886, - "lastIP": "a\u007fn~~agaj`}vfw", - "deviceUUID": "d0b911a95620a1b04eb43f31ffa9a81bbf85a04e" - }, - "pb-IF4nVW0_LQ==": { - "display_string": [ - "\ue063THEDARKPOL" - ], - "profiles": [], - "name": "\ue063THEDARKPOL", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-06 18:34:59", - "registerOn": 1685785590.0443535, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685785590.044354, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685785590.0443614, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685785596.7497785, - "lastIP": "b}k~}kaaihyvdy", - "deviceUUID": "806b0c23668487da48d132da3807efb358a96935" - }, - "pb-IF41UBQPXA==": { - "display_string": [ - "\ue063TinyProfit" - ], - "profiles": [], - "name": "\ue063TinyProfit", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-15 09:45:30", - "registerOn": 1685785603.0704446, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685785603.070445, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686300476.4611015, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686300476.461103, - "lastIP": "a}l~~hfaid|vf", - "deviceUUID": "4053d4ecb6d73d755ad3c574aa4bd40384b30b43", - "cMsgCount": 0, - "lastMsgTime": 1686196557.864371, - "lastMsg": "go here ok see you later friend", - "cSameMsg": 0 - }, - "pb-IF4BVWIzDg==": { - "display_string": [ - "\ue063CoastalToa" - ], - "profiles": [], - "name": "\ue063CoastalToa", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-18 11:09:57", - "registerOn": 1685785704.4983792, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685785704.4983797, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685785704.4983869, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685785704.4983883, - "lastIP": "b\u007fn~wl~}kbalg", - "deviceUUID": "76ef5644c91435fc0b8aee8c33eaba88af9d6968" - }, - "pb-IF4WUGczMQ==": { - "display_string": [ - "\ue063StockyFram" - ], - "profiles": [], - "name": "\ue063StockyFram", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-21 12:19:35", - "registerOn": 1685785839.9809852, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685785839.9809859, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686025652.6898198, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686025652.6898212, - "lastIP": "a\u007fk~~aeaj`}vayl", - "deviceUUID": "220753c5a30bbc77c9dcec749d67d633217addb4", - "cMsgCount": 1, - "lastMsgTime": 1685885020.6559098, - "lastMsg": "bhakkk", - "cSameMsg": 0 - }, - "pb-IF4cUktZNg==": { - "display_string": [ - "\ue063Ainesh0001" - ], - "profiles": [], - "name": "\ue063Ainesh0001", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-24 13:00:03", - "registerOn": 1685785974.488089, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1685786930.780448, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686115443.3917696, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686115443.3917708, - "lastIP": "azj~z`~~mbaki", - "deviceUUID": "9b723cfe17a46c050affce23d9fadbc9106309da", - "cMsgCount": 0, - "lastMsgTime": 1685989191.393175, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4MUGRfDQ==": { - "display_string": [ - "\ue063FoundingTi" - ], - "profiles": [], - "name": "\ue063FoundingTi", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-02 19:03:24", - "registerOn": 1685786187.6084404, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685786187.6084409, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685971558.6649215, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685974089.9469101, - "lastIP": "azj~zo~}kbaje{", - "deviceUUID": "a154e84b754eff2dfa4f2ce30a3e74d840549d7d" - }, - "pb-IF40VXMlBA==": { - "display_string": [ - "\ue063FIGHTERMAN", - "\ue030Android62097492" - ], - "profiles": [], - "name": "\ue063FIGHTERMAN", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-18 00:09:01", - "registerOn": 1685786692.145756, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685786692.1457565, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686060258.1308355, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686060258.1308365, - "lastIP": "a\u007fn~~acaihvvazn", - "deviceUUID": "2567dc394522ed525d920d39eecafdfd32621b4d" - }, - "pb-IF4TU0UlXQ==": { - "display_string": [ - "\ue063NoNameD3604049" - ], - "profiles": [], - "name": "\ue063NoNameD3604049", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-03 11:15:31", - "registerOn": 1685787081.4904385, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685787081.490439, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685787081.4904435, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685787081.4904451, - "lastIP": "dxva~vb}o~vh", - "deviceUUID": "d0704ed196dfd0f2442b074a6b33f6d372927181" - }, - "pb-IF5XVXddBw==": { - "display_string": [ - "\ue030Android49832847" - ], - "profiles": [], - "name": "\ue030Android49832847", - "isBan": true, - "isMuted": false, - "accountAge": "2021-01-26 16:48:40", - "registerOn": 1685787546.6001277, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685787546.6001282, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685787546.6001353, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685787546.6001365, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF4qUBkYDg==": { - "display_string": [ - "\ue030Android64840495" - ], - "profiles": [], - "name": "\ue030Android64840495", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-11 10:20:06", - "registerOn": 1685787841.3934624, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685787841.3934634, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686040698.326222, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686040893.0254114, - "lastIP": "awj~xh~~ngaiiy", - "deviceUUID": "0566b8693fb2033765aa5987fdb4ddb6e70de446" - }, - "pb-IF4IU1c6Ug==": { - "display_string": [ - "\ue063Non6772u" - ], - "profiles": [], - "name": "\ue063Non6772u", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-23 21:29:14", - "registerOn": 1685788028.1026237, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685788028.1026242, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685788028.1026304, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685788028.1026316, - "lastIP": "dvvb\u007fn~|k~w", - "deviceUUID": "02d987a30ac1edb0630413af9dae845a32cbd676" - }, - "pb-IF49U0MCCA==": { - "display_string": [ - "\ue063LevelAccep" - ], - "profiles": [], - "name": "\ue063LevelAccep", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 17:54:58", - "registerOn": 1685788120.3819072, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685788120.381908, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686212468.2566385, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686214365.6253889, - "lastIP": "a\u007fk~}n~{a~~a`", - "deviceUUID": "9ea383f7480b8975143ccc19f4013e3081d1b7d7" - }, - "pb-IF49UBEhJA==": { - "display_string": [ - "\ue063PortableT8" - ], - "profiles": [], - "name": "\ue063PortableT8", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-21 21:41:30", - "registerOn": 1685788364.3285995, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685788364.3286006, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686232538.102828, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686233110.3950605, - "lastIP": "azo~|j~|m~~hd", - "deviceUUID": "a73760d72bdae57a9fa3725e8a485af6f4e5b7a4" - }, - "pb-IF42UGgDCw==": { - "display_string": [ - "\ue063Princel134" - ], - "profiles": [], - "name": "\ue063Princel134", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-29 21:16:43", - "registerOn": 1685788779.808304, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685788779.8083048, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685887477.7706087, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685887477.7706099, - "lastIP": "a\u007fk~~lgaj`vva{j", - "deviceUUID": "30120c4e06b22abd1dc138739178c3004ed4b37a" - }, - "pb-IF5SUBQcKw==": { - "display_string": [ - "\ue063xynn" - ], - "profiles": [], - "name": "\ue063xynn", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-03 19:24:45", - "registerOn": 1685789560.7849762, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685789560.784977, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685789560.784984, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685789560.7849858, - "lastIP": "dvvd}vh\u007fva|`", - "deviceUUID": "c6e9eaee8561dbd73a500a67ce2d4f21f4c1b07c" - }, - "pb-IF4jU00KPw==": { - "display_string": [ - "\ue063Explicab96", - "\ue030Android38294535" - ], - "profiles": [], - "name": "\ue063Explicab96", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 16:16:37", - "registerOn": 1685790159.0221987, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685790159.0221994, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685790159.022206, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685790159.0222068, - "lastIP": "dvvc{vbzi~{m", - "deviceUUID": "48b46017802267036e00f2a56da4a37ef4b35a19" - }, - "pb-IF4dUGU4KQ==": { - "display_string": [ - "\ue063Tattya" - ], - "profiles": [], - "name": "\ue063Tattya", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-12 21:37:33", - "registerOn": 1685790400.9516304, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685790400.951631, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685790400.9516385, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685790400.95164, - "lastIP": "azj~z`~~n~wa", - "deviceUUID": "7c09de64f0d8046fa981b15dbce724d4a41fb5d9" - }, - "pb-IF4WU0ItKg==": { - "display_string": [ - "\ue063AbundantBi" - ], - "profiles": [], - "name": "\ue063AbundantBi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-16 11:26:03", - "registerOn": 1685792365.5871093, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685792365.58711, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686202064.0303857, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686202064.0303872, - "lastIP": "b\u007fj~zi~xn~}h`", - "deviceUUID": "2eb1ab3363dce7fff90bdf144e5fe8f6906e35e1" - }, - "pb-IF4QU2ZeAw==": { - "display_string": [ - "\ue030Android61349985" - ], - "profiles": [], - "name": "\ue030Android61349985", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-19 16:15:50", - "registerOn": 1685792395.6988997, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685792395.6989002, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685792395.69891, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685792395.6989112, - "lastIP": "azo~|j~~hgaje\u007f", - "deviceUUID": "601ed813ddf54bb1f87aa8acb8bf392b406861ac" - }, - "pb-IF4rLkwp": { - "display_string": [ - "\ue063MPF", - "\ue030Android40308191", - "\ue030Android39582261", - "\ue030PC232491", - "\ue030Android38640036" - ], - "profiles": [], - "name": "\ue063MPF", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-07 02:20:26", - "registerOn": 1685792425.8388631, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685792425.838864, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686360935.3424814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686361019.6201708, - "lastIP": "a~j~~kdaj`vvawm", - "deviceUUID": "df02d23ec2516218c1d7a1fe312ef348dafd8124", - "cMsgCount": 0, - "lastMsgTime": 1685973046.0132053, - "lastMsg": "gg wp cya", - "cSameMsg": 0 - }, - "pb-IF4pU1NSUg==": { - "display_string": [ - "\ue063InsaneAgen" - ], - "profiles": [], - "name": "\ue063InsaneAgen", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-24 12:53:31", - "registerOn": 1685793088.3363104, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685793088.336311, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685793088.3363178, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685793088.3363187, - "lastIP": "azo~|`~|n~~mf", - "deviceUUID": "c62aca74740bc089144637726c69b251009a8931" - }, - "pb-IF4tNxUh": { - "display_string": [ - "\ue063prencadant", - "\ue063Gosportdel" - ], - "profiles": [], - "name": "\ue063Gosportdel", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-14 21:43:20", - "registerOn": 1685794063.1443121, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685794063.1443129, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686297408.1708965, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686297408.170898, - "lastIP": "axn~~jhaih\u007fvbv", - "deviceUUID": "60e4ad03622d0144201fd4c0feee6aa2b1f1aa6d" - }, - "pb-IF40U1dYUg==": { - "display_string": [ - "\ue063VirajBoY31" - ], - "profiles": [], - "name": "\ue063VirajBoY31", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-20 21:09:11", - "registerOn": 1685794305.0755782, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685794305.075579, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685794305.0755863, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685794305.0755875, - "lastIP": "a}h~w`~~ohajh", - "deviceUUID": "bca171beb7a1680384ccb8e99e02410f17027f01" - }, - "pb-IF5RVVMMIw==": { - "display_string": [ - "\ue030Android52676999" - ], - "profiles": [], - "name": "\ue030Android52676999", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-15 21:19:28", - "registerOn": 1685794775.780947, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685794775.7809477, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685794775.780983, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685794775.7809842, - "lastIP": "b\u007fj~~lbaia{vgx", - "deviceUUID": "2f813377170f808596cad6fba67ecc73ae310b13" - }, - "pb-IF4uUBVTEA==": { - "display_string": [ - "\ue063Irreduc159" - ], - "profiles": [], - "name": "\ue063Irreduc159", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-19 04:06:18", - "registerOn": 1685795294.9067497, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685795294.9067504, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685795294.906759, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685795294.9067602, - "lastIP": "awvayn~~kcajb~", - "deviceUUID": "effb71ee03f6808fb989135183fb6b09449c850c" - }, - "pb-IF48UGIvXQ==": { - "display_string": [ - "\ue030Android64884598" - ], - "profiles": [], - "name": "\ue030Android64884598", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-17 12:20:44", - "registerOn": 1685795359.5319571, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685795359.5319583, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685795359.531965, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685795359.5319662, - "lastIP": "azo~|j~vm~wk", - "deviceUUID": "33e4884313f4cb96b056cf1454394cacd6e367e1" - }, - "pb-IF4VVUk-CA==": { - "display_string": [ - "\ue030Android51952192" - ], - "profiles": [], - "name": "\ue030Android51952192", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-11 13:19:34", - "registerOn": 1685795679.6935115, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685795679.6935122, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685795679.6935189, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685795921.1277468, - "lastIP": "b}k~~`aajdyvaxh", - "deviceUUID": "f5ada0ef13c9058742417d2cbd7305a2a8416d28" - }, - "pb-IF5QUGtfEg==": { - "display_string": [ - "\ue063ItsDNA003" - ], - "profiles": [], - "name": "\ue063ItsDNA003", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-27 19:15:00", - "registerOn": 1685795876.2258017, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685795876.2258024, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685795876.2258103, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685795876.2258112, - "lastIP": "azo~{a~~odajby", - "deviceUUID": "d9eafa638dee4a9bb2e36b80a121a68b448a0547" - }, - "pb-JiNJARFdXUdGW1pEE0JZV1JCEUVdQVdA": { - "display_string": [ - "\ue063Thakkudus" - ], - "profiles": [], - "name": "\ue063Thakkudus", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-04 16:58:47", - "registerOn": 1685796215.7008972, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685796215.700898, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686364477.8820229, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686371309.7028344, - "lastIP": "a\u007fk~~o~~i`ao`", - "deviceUUID": "d3c1b69f4abe0a30b187a9f76dd0bf2ec4316172" - }, - "pb-IF4NUxFfEg==": { - "display_string": [ - "\ue063ClearCusto" - ], - "profiles": [], - "name": "\ue063ClearCusto", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-01 19:19:12", - "registerOn": 1685796448.6279469, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685796448.6279473, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686383128.2443612, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686383128.2443624, - "lastIP": "bxvf}vb{h~}o", - "deviceUUID": "3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a", - "cMsgCount": 0, - "lastMsgTime": 1685865547.6788206, - "lastMsg": "pata nhi", - "cSameMsg": 0 - }, - "pb-IF4KUmoYFw==": { - "display_string": [ - "\ue063deiisyyyy" - ], - "profiles": [], - "name": "\ue063deiisyyyy", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-03 19:21:03", - "registerOn": 1685796844.461005, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685796844.4610052, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685796844.461013, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685796844.461014, - "lastIP": "a{va|a~~agaii", - "deviceUUID": "79df48f5f0fc4610c51c4a1f6a000a20df395db8" - }, - "pb-IF4sAGcj": { - "display_string": [ - "\ue030Android60514277", - "\ue030PC450192", - "\ue063Warrior27" - ], - "profiles": [], - "name": "\ue063Warrior27", - "isBan": true, - "isMuted": false, - "accountAge": "2018-03-22 19:18:26", - "registerOn": 1685797471.7737083, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685797471.7737088, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685797471.773717, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685797471.7737188, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF4TUGEIDQ==": { - "display_string": [ - "\ue063fazalVenge" - ], - "profiles": [], - "name": "\ue063fazalVenge", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-16 22:01:52", - "registerOn": 1685797510.5995476, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685797510.599548, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686029056.2262022, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686029670.4848347, - "lastIP": "bxvf}vb{h~~hi", - "deviceUUID": "91e3ce447ee5451b00782def7f8823118f64bd4b", - "cMsgCount": 0, - "lastMsgTime": 1686030022.4683537, - "lastMsg": "well played ", - "cSameMsg": 0 - }, - "pb-IF5WU0gIUQ==": { - "display_string": [ - "\ue063LegendaryD", - "\ue030Android54488917" - ], - "profiles": [], - "name": "\ue063LegendaryD", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 21:20:32", - "registerOn": 1685798651.777055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685798651.7770555, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686302122.8533058, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686302347.6540897, - "lastIP": "azj~z`~}icai", - "deviceUUID": "7596ac03e3d2f58656b37560f47b1f7c5651c240", - "cMsgCount": 1, - "lastMsgTime": 1686302332.7108061, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4BVVU_BA==": { - "display_string": [ - "\ue030Android53159530" - ], - "profiles": [], - "name": "\ue030Android53159530", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-07 21:42:19", - "registerOn": 1685799583.3496504, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685799583.3496509, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686232557.1984563, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686232557.1984572, - "lastIP": "bxva{o~~n`ai`|", - "deviceUUID": "05e455762d1075e521e842a06f572d2a230ef49d" - }, - "pb-IF4tUGMBCg==": { - "display_string": [ - "\ue063Znab" - ], - "profiles": [], - "name": "\ue063Znab", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-27 11:51:44", - "registerOn": 1685799846.3812344, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685799846.3812351, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686224055.2321832, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686224076.2823741, - "lastIP": "b}k~~ohaiewvcw", - "deviceUUID": "677677fac4cdd18de9b2f61d36d5dd3491dbca39", - "cMsgCount": 0, - "lastMsgTime": 1686224275.2287712, - "lastMsg": "bye", - "cSameMsg": 0 - }, - "pb-IF41UGcPNQ==": { - "display_string": [ - "\ue063redmo79" - ], - "profiles": [], - "name": "\ue063redmo79", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-24 21:41:28", - "registerOn": 1685800194.6031623, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685800194.6031628, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686327771.343049, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686327771.3430498, - "lastIP": "i~vayh~zh~|`", - "deviceUUID": "7912aaeb116912fb8216874995084c198f22305d" - }, - "pb-IF4IU28qPA==": { - "display_string": [ - "\ue063gurunaray2" - ], - "profiles": [], - "name": "\ue063gurunaray2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-23 22:17:27", - "registerOn": 1685800210.6528242, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685800210.6528246, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686059721.075658, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686059721.0756593, - "lastIP": "azo~zi~~igajbv", - "deviceUUID": "2b676771bfc1043a69989576d24e1194aec0a626" - }, - "pb-IF4mUGEYKQ==": { - "display_string": [ - "\ue063SalientPu2" - ], - "profiles": [], - "name": "\ue063SalientPu2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-21 11:58:59", - "registerOn": 1685800873.304157, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685800873.3041577, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685800873.3041656, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685800873.3041666, - "lastIP": "a\u007fn~~agam~}if", - "deviceUUID": "1612fe560c7ad9a8bfea923cb047537d9c0dfd54" - }, - "pb-IF4jF1NY": { - "display_string": [ - "\ue063Hoemie" - ], - "profiles": [], - "name": "\ue063Hoemie", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-18 14:54:03", - "registerOn": 1685802853.7386012, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685802853.7386022, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686294512.8587997, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686303726.137223, - "lastIP": "azj~z`~{n~~`h", - "deviceUUID": "3e3f8bc694c422e5c1908bda415c823213210a3a", - "cMsgCount": 0, - "lastMsgTime": 1686300845.1901417, - "lastMsg": "bhai go in blue", - "cSameMsg": 0 - }, - "pb-IF4DU1QhBg==": { - "display_string": [ - "\ue063Digitalsar" - ], - "profiles": [], - "name": "\ue063Digitalsar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-31 19:43:18", - "registerOn": 1685805383.3237336, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685805383.3237338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685805383.3237412, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685805383.3237426, - "lastIP": "azo~|m~{m~~lg", - "deviceUUID": "650286e84f739f98c65de9127b6bc08186d34093" - }, - "pb-IF4hUGgzBw==": { - "display_string": [ - "\ue063Appropr296" - ], - "profiles": [], - "name": "\ue063Appropr296", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-03 15:49:07", - "registerOn": 1685805401.3877826, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685805401.3877835, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685805401.387791, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685805401.3877923, - "lastIP": "azo~{n~~jaaifx", - "deviceUUID": "0b0bf33e4d9cccc25167906150fcc4964b007dc9" - }, - "pb-IF5WU1QJFA==": { - "display_string": [ - "\ue063Unbreaka80" - ], - "profiles": [], - "name": "\ue063Unbreaka80", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-24 17:33:25", - "registerOn": 1685806563.3834827, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685806563.3834832, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685981067.7146885, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685981122.9444013, - "lastIP": "azo~|`~}jiaje", - "deviceUUID": "4a8a384698658621fce88e219c1c5bd3c01f6e7a" - }, - "pb-IF5RJW5d": { - "display_string": [ - "\ue063UniqueBana", - "\ue030Android29969603", - "\ue030Android29688865" - ], - "profiles": [], - "name": "\ue063UniqueBana", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-27 21:21:46", - "registerOn": 1685806862.8975136, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685806862.8975146, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685806862.8975236, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685806862.897525, - "lastIP": "bxvf|vb\u007fa~~mf", - "deviceUUID": "471ff9e4f8d3d84e1801b239887ccc95160e4ee4" - }, - "pb-IF4pU2wEDg==": { - "display_string": [ - "\ue063innocentk6", - "\ue030Android61909215" - ], - "profiles": [], - "name": "\ue063innocentk6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-11 22:24:33", - "registerOn": 1685807213.7458997, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685807213.7459004, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685807213.7459092, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685807213.745911, - "lastIP": "a\u007fk~~jaaigvva|h", - "deviceUUID": "a9c29cccf1c9b7119d85ea5fb9cbf5c314e1b9d6" - }, - "pb-IF4QUhcJVg==": { - "display_string": [ - "\ue063Fourteent7", - "\ue030Android56683623" - ], - "profiles": [], - "name": "\ue063Fourteent7", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-09 14:26:10", - "registerOn": 1685807636.4284205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685807636.428421, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685807636.4284277, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685807636.4284291, - "lastIP": "awk~wk~}khaibv", - "deviceUUID": "0de9b3a4952075cdeda1b5dd6e0d2b1769a18690" - }, - "pb-IF4UUGEkPA==": { - "display_string": [ - "\ue063HydroClose" - ], - "profiles": [], - "name": "\ue063HydroClose", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-12 22:22:31", - "registerOn": 1685807699.685343, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685807699.6853435, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686377895.4090176, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686377895.4090185, - "lastIP": "azo~|`~~kdajcy", - "deviceUUID": "3f42e534a87a7a16023bf65ab2abd1c7d5a1d0d6" - }, - "pb-IF4KUk8MAQ==": { - "display_string": [ - "\ue030Android58901320" - ], - "profiles": [], - "name": "\ue030Android58901320", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-13 18:46:39", - "registerOn": 1685807981.7091863, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685807981.7091868, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685807981.7091937, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685807981.7091947, - "lastIP": "f}va{l~}lhajcw", - "deviceUUID": "0342eb83366f258b8ff4ebea9cf190498f4f1f8d" - }, - "pb-IF4HVVMKEQ==": { - "display_string": [ - "\ue063joythegrea" - ], - "profiles": [], - "name": "\ue063joythegrea", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-27 12:37:43", - "registerOn": 1685808003.7987223, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685808003.7987227, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686314774.8531747, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686316959.1118784, - "lastIP": "a\u007fn~}icaiizvc~", - "deviceUUID": "3520ef70b75247a5bc7019d7245589c821a34168" - }, - "pb-IF4wBUUK": { - "display_string": [ - "\ue063RAEEEEEEEE", - "\ue030Android33511514" - ], - "profiles": [], - "name": "\ue063RAEEEEEEEE", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-09 23:20:43", - "registerOn": 1685808387.2523055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685808387.2523062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685808387.2523146, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685808387.2523158, - "lastIP": "azj~z`~|l~}if", - "deviceUUID": "926098526aa25628ccdb1426d99fc162ae24f8db" - }, - "pb-IF4MU08lCQ==": { - "display_string": [ - "\ue063lodhipro17" - ], - "profiles": [], - "name": "\ue063lodhipro17", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 13:04:15", - "registerOn": 1685808788.884347, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685808788.8843474, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686296782.9319918, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686296782.931993, - "lastIP": "azo~|l~~jaaj`{", - "deviceUUID": "496f898c6f42806db0970bac3faaa29f196c9610", - "cMsgCount": 0, - "lastMsgTime": 1686298160.09193, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF40PkMh": { - "display_string": [ - "\ue063dpvaghasiy" - ], - "profiles": [], - "name": "\ue063dpvaghasiy", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-15 19:47:18", - "registerOn": 1685808980.733831, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685808980.7338314, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685808980.7338402, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685808980.7338412, - "lastIP": "d}va\u007f`~~afaigv", - "deviceUUID": "a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e", - "cMsgCount": 0, - "lastMsgTime": 1685809737.1346183, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF48UmoZBg==": { - "display_string": [ - "\ue063RogueRadia" - ], - "profiles": [], - "name": "\ue063RogueRadia", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-04 11:11:42", - "registerOn": 1685809124.2146394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685809124.21464, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685809124.2146478, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685809124.2146492, - "lastIP": "a~o~}jiaif|vb~a", - "deviceUUID": "617b557d5e0b71538894fd0c90771a48d5eae264" - }, - "pb-IF4KU0YOUw==": { - "display_string": [ - "\ue063Hemdjrimix", - "\ue030Android64586252" - ], - "profiles": [], - "name": "\ue063Hemdjrimix", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 20:39:50", - "registerOn": 1685809268.8240507, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685809268.8240516, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685809268.8240595, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685809450.0794475, - "lastIP": "b\u007fj~~oiaogai`v", - "deviceUUID": "7182b3803fd8f27e19100f098dd813ebd70e2b9f", - "cMsgCount": 0, - "lastMsgTime": 1685809404.4342844, - "lastMsg": "lag", - "cSameMsg": 0 - }, - "pb-IF4qUxBfAw==": { - "display_string": [ - "\ue030Android61525964" - ], - "profiles": [], - "name": "\ue030Android61525964", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-26 18:55:13", - "registerOn": 1685809745.4703777, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685809745.4703784, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686378280.7442532, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686378280.7442544, - "lastIP": "dxviakbajc|", - "deviceUUID": "00a2149d5e7bb409e844da5b609ae87ebaccaffc", - "cMsgCount": 0, - "lastMsgTime": 1686368714.8968365, - "lastMsg": "haha", - "cSameMsg": 0 - }, - "pb-IF4wU1MPEg==": { - "display_string": [ - "\ue030Android64127677" - ], - "profiles": [], - "name": "\ue030Android64127677", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-26 18:55:50", - "registerOn": 1685810676.3353353, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685810676.3353357, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686330947.1887646, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686332290.089663, - "lastIP": "awj~ya~~ofake", - "deviceUUID": "0e4dfaee5e4dd1bc35566ef7de5193e1962ef968", - "cMsgCount": 1, - "lastMsgTime": 1686312177.5635092, - "lastMsg": "nhi to m jau", - "cSameMsg": 0 - }, - "pb-IF4HUGMOLQ==": { - "display_string": [ - "\ue063NoNameC3133807" - ], - "profiles": [], - "name": "\ue063NoNameC3133807", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-27 19:31:48", - "registerOn": 1685811705.7287908, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685811705.7287915, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685811705.728798, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685811705.7287993, - "lastIP": "awj~ya~}lcaj`y", - "deviceUUID": "a0775efa1f0e3fad84e98c543bd1e689099e5204" - }, - "pb-IF4FD1c8": { - "display_string": [ - "\ue063inom1712" - ], - "profiles": [], - "name": "\ue063inom1712", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-08 01:10:57", - "registerOn": 1685811713.7522151, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685811713.7522156, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686330430.3351283, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686330430.335129, - "lastIP": "azo~{n~~i`aif{", - "deviceUUID": "3f163443b545b5ee5c0ed1039bfb94a67b489363" - }, - "pb-IF5SUBcsFQ==": { - "display_string": [ - "\ue030Android64658055" - ], - "profiles": [], - "name": "\ue030Android64658055", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-18 09:37:54", - "registerOn": 1685812108.1830475, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685812108.1830482, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685812108.1830568, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685812289.4814076, - "lastIP": "b}k~~`iakhajc}", - "deviceUUID": "a3edf2d44c1ba4ef9262ee6d9191325fc46b4510" - }, - "pb-IF5dUGojXQ==": { - "display_string": [ - "\ue063javnov123" - ], - "profiles": [], - "name": "\ue063javnov123", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-28 12:47:37", - "registerOn": 1685812362.0730593, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685812362.0730598, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685812362.0730662, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685812744.2573683, - "lastIP": "a\u007fk~{`~ya~~jd", - "deviceUUID": "c8190be63dbdc034980d211da380877b420e652a" - }, - "pb-IF5cUkwjDA==": { - "display_string": [ - "\ue063DragonGhou" - ], - "profiles": [], - "name": "\ue063DragonGhou", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-20 11:15:03", - "registerOn": 1685812847.9331336, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685812847.933134, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685901773.8154244, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685901773.8154256, - "lastIP": "dvvcyvb~j~~ma", - "deviceUUID": "84e8c68a67793414f4f9ba929c4417de1a04f4b0", - "cMsgCount": 0, - "lastMsgTime": 1685902055.513574, - "lastMsg": "Thnks, meri samadhi todne ke liye", - "cSameMsg": 0 - }, - "pb-IF4VVG8gNQ==": { - "display_string": [ - "\ue063IAMTHEDON1" - ], - "profiles": [], - "name": "\ue063IAMTHEDON1", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-14 18:27:02", - "registerOn": 1685813851.2324355, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686382532.1761835, - "totaltimeplayer": 0, - "warnCount": 3, - "lastWarned": 1686382532.1751056, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686388020.4693785, - "lastIP": "azo~zi~~adajez", - "deviceUUID": "a5e3d553f606b7d284e04a9656b30ed571db2ee3", - "cMsgCount": 2, - "lastMsgTime": 1686382532.1754458, - "lastMsg": "fuck", - "cSameMsg": 0 - }, - "pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC": { - "display_string": [ - "\ue063Petrifie71" - ], - "profiles": [], - "name": "\ue063Petrifie71", - "isBan": false, - "isMuted": false, - "accountAge": "2016-06-08 11:59:54", - "registerOn": 1685814009.757301, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685814009.7573018, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686303698.038429, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686303698.0384302, - "lastIP": "aaihxvb~a~{m", - "deviceUUID": "9cda7087369c2e90d666dbb77d68c1d5d344ef7c" - }, - "pb-IF4vU2ISBg==": { - "display_string": [ - "\ue063Nikhil18", - "\ue063Incompe116", - "\ue030Android60304282", - "\ue030PC750627", - "\ue030PC453003" - ], - "profiles": [], - "name": "\ue063Nikhil18", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-08 11:29:20", - "registerOn": 1685814485.343263, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685814485.3432636, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685814485.3432727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685814485.3432736, - "lastIP": "a\u007fk~~mhaidyvb~m", - "deviceUUID": "cf89b6d6f66058d1895448bb09facf659e5d863d" - }, - "pb-IF4uV3omUw==": { - "display_string": [ - "\ue063SquareLor3" - ], - "profiles": [], - "name": "\ue063SquareLor3", - "isBan": false, - "isMuted": false, - "accountAge": "2019-01-24 13:39:08", - "registerOn": 1685814867.6889307, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685814867.6889315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685814867.6889398, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685814867.6889408, - "lastIP": "a\u007fk~w`~wj~}ic", - "deviceUUID": "489a8844e3d73d9056c08b79f499898354385f37" - }, - "pb-IF41VWJcLA==": { - "display_string": [ - "\ue063Harhsalgho" - ], - "profiles": [], - "name": "\ue063Harhsalgho", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-12 22:35:09", - "registerOn": 1685820219.814926, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685820219.8149264, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685820219.814934, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685820219.814935, - "lastIP": "a\u007fn~}ifajd{vf", - "deviceUUID": "622d7c2101c8beb358f52c1255e233b5b54eab40" - }, - "pb-IF4mVFMTHw==": { - "display_string": [ - "\ue063wisnufirst" - ], - "profiles": [], - "name": "\ue063wisnufirst", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-15 15:44:09", - "registerOn": 1685821115.1536496, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685821115.1536498, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685821115.153664, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685821115.153665, - "lastIP": "a~l~~lbaig\u007fvd|", - "deviceUUID": "b2163ea5de005c19f0daedee13621679b6588a4b" - }, - "pb-IF4uU1o-Pw==": { - "display_string": [ - "\ue030Android64424230" - ], - "profiles": [], - "name": "\ue030Android64424230", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-11 14:16:24", - "registerOn": 1685821466.8105226, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685821466.810523, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685821466.8105297, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685821466.8105311, - "lastIP": "cyvbzj~~o`ajb|", - "deviceUUID": "f84e373b90064e97874a3197cfbd00ba09a0966b" - }, - "pb-IF4TD1cf": { - "display_string": [ - "\ue063DevilXGhos" - ], - "profiles": [], - "name": "\ue063DevilXGhos", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-07 17:36:00", - "registerOn": 1685821509.0077775, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685821509.007778, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685821509.007786, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685821509.007787, - "lastIP": "dvvc}vb|a~~jf", - "deviceUUID": "f3af1d941719708fb2d6ed940c33f95bc772f822" - }, - "pb-IF4NVVg4Lw==": { - "display_string": [ - "\ue063ZentoSama", - "\ue063HarsherTr4" - ], - "profiles": [], - "name": "\ue063ZentoSama", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-24 21:43:39", - "registerOn": 1685821641.488523, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685821641.4885235, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685821641.4885323, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685821641.4885335, - "lastIP": "a\u007fn~}iaaaiai`v", - "deviceUUID": "e04457f8d2c649b7b3c72039d222a5214a56db9c" - }, - "pb-IF5QV00KNA==": { - "display_string": [ - "\ue063carloshrdz", - "\ue030Android55224273" - ], - "profiles": [], - "name": "\ue063carloshrdz", - "isBan": false, - "isMuted": false, - "accountAge": "2019-03-17 09:22:44", - "registerOn": 1685843900.0456982, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685843900.0456986, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685843900.0457056, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685843900.0457065, - "lastIP": "axo~}liaif~vaxj", - "deviceUUID": "b4e482faf1ee063a72af70b1cbd92e25e25eb20d" - }, - "pb-IF5UUGslNA==": { - "display_string": [ - "\ue063Spectra217" - ], - "profiles": [], - "name": "\ue063Spectra217", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-02 19:58:28", - "registerOn": 1685845130.478214, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685845130.4782152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685845130.4782226, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685845130.4782684, - "lastIP": "dxvbvvaxj~yo", - "deviceUUID": "2919f2c6cf85db0aebfa9a9860231739f9604a16" - }, - "pb-IF5SUGoTJw==": { - "display_string": [ - "\ue063thewhateth" - ], - "profiles": [], - "name": "\ue063thewhateth", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-30 13:36:54", - "registerOn": 1685847305.281732, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685847305.281733, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685847305.2817411, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685847305.281742, - "lastIP": "a{k~{l~~neaid\u007f", - "deviceUUID": "fdac4597d3684df3cff5878d29d7aaa49cc90566" - }, - "pb-IF4PXkIR": { - "display_string": [ - "\ue063AceBear802" - ], - "profiles": [], - "name": "\ue063AceBear802", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-20 10:55:54", - "registerOn": 1685847436.7438943, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685847436.7438948, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1685848933.1379611, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685848835.514361, - "lastIP": "dvvc{vhxvb{`", - "deviceUUID": "836f4656afbf757258cf8c2ba1cc4de3f434af84", - "cMsgCount": 0, - "lastMsgTime": 1685848933.1378655, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5SUGsDMQ==": { - "display_string": [ - "\ue063SurrealBur" - ], - "profiles": [], - "name": "\ue063SurrealBur", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 07:05:26", - "registerOn": 1685847537.1169739, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685847537.1169744, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685847537.1169813, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685847537.1169825, - "lastIP": "a|o~vo~wi~xn", - "deviceUUID": "7528d54f8064a899fdbbbb7f69ddcae02e8e6f10" - }, - "pb-IF4zAUcy": { - "display_string": [ - "\ue063HonkingAdv" - ], - "profiles": [], - "name": "\ue063HonkingAdv", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-27 20:23:20", - "registerOn": 1685848326.9837286, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685848326.9837294, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685848326.98376, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685848536.438777, - "lastIP": "dvvcxvavj~}la", - "deviceUUID": "6a5ed16692cd7f0d8457a7e18b16f09a5cae5df7" - }, - "pb-IF4TUGJSMg==": { - "display_string": [ - "\ue063CookieNINJ" - ], - "profiles": [], - "name": "\ue063CookieNINJ", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-20 12:27:06", - "registerOn": 1685848525.922023, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685848525.922024, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1685848602.7142148, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685849435.7105484, - "lastIP": "a}j~zh~}hhajf", - "deviceUUID": "5b6366838a6db9145967641211c974ddd2beb449", - "cMsgCount": 0, - "lastMsgTime": 1685848778.2015638, - "lastMsg": "\ud83d\ude02", - "cSameMsg": 0 - }, - "pb-IF4VU2c_Ig==": { - "display_string": [ - "\ue063Pavidude47" - ], - "profiles": [], - "name": "\ue063Pavidude47", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-24 13:54:19", - "registerOn": 1685848618.0232494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685848618.02325, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685848618.0232582, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685848618.0232592, - "lastIP": "azo~{a~}l`aiiv", - "deviceUUID": "6fd203dc40497cf889701d80700abadfdf8c1a5f" - }, - "pb-IF4IV1YBLQ==": { - "display_string": [ - "\ue063Nonsens393", - "\ue030Android35043270" - ], - "profiles": [], - "name": "\ue063Nonsens393", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-19 22:29:17", - "registerOn": 1685849931.1241055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685849931.1241062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685849931.1241164, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685849931.1241171, - "lastIP": "azo~|k~}kdajc}", - "deviceUUID": "6b19c54810e6137de9172ee699e0444d99bf2549" - }, - "pb-IF5UU1cNUA==": { - "display_string": [ - "\ue063naifrigor5" - ], - "profiles": [], - "name": "\ue063naifrigor5", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-11 05:54:28", - "registerOn": 1685849986.0741384, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685849986.0741389, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685849986.0741465, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685849986.0741477, - "lastIP": "axo~}jfaicyvb|n", - "deviceUUID": "7e3ebab3596a585cfcb585a17330226267756a0b" - }, - "pb-IF4QU1IlIA==": { - "display_string": [ - "\ue063Unforgiv64" - ], - "profiles": [], - "name": "\ue063Unforgiv64", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-24 12:07:07", - "registerOn": 1685850190.7975705, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685850190.7975714, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685850190.7975805, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685850190.7975817, - "lastIP": "b}k~}khaibyva}a", - "deviceUUID": "4af81f288a5d423ed5fec33f7c3d77de2d839040" - }, - "pb-IF4qU2JZVA==": { - "display_string": [ - "\ue063JauntyCens" - ], - "profiles": [], - "name": "\ue063JauntyCens", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-04 23:00:18", - "registerOn": 1685850562.1976528, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685850562.1976535, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686334111.8048294, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686336817.0981028, - "lastIP": "aya~~liajbxvaxn", - "deviceUUID": "3a70d7901c513e4594724ed96ee45577f43864e9", - "cMsgCount": 0, - "lastMsgTime": 1686337087.6744096, - "lastMsg": "good night to all my friends ", - "cSameMsg": 0 - }, - "pb-IF4mUGg8Hw==": { - "display_string": [ - "\ue063BoldestLak" - ], - "profiles": [], - "name": "\ue063BoldestLak", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-30 13:17:28", - "registerOn": 1685850654.6507995, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685850654.6508005, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685850654.6508088, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685850654.65081, - "lastIP": "dvvczvayl~}hb", - "deviceUUID": "50f5f95d53cb6f5ae199ee4bb76545e3440e50b2" - }, - "pb-IF4OUBJaPw==": { - "display_string": [ - "\ue063WeirdMonst" - ], - "profiles": [], - "name": "\ue063WeirdMonst", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-24 12:57:14", - "registerOn": 1685850776.304971, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685850776.3049712, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685850776.304978, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685850776.3049786, - "lastIP": "awj~ya~~ogaib|", - "deviceUUID": "1ddce71d518d7624c7be8e13de208fe8f638c7cc" - }, - "pb-IF5QU0waKw==": { - "display_string": [ - "\ue063TerseMuscl" - ], - "profiles": [], - "name": "\ue063TerseMuscl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-30 13:30:06", - "registerOn": 1685851389.2603202, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685851389.2603214, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685851389.2603283, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685851420.0737815, - "lastIP": "a|o~vo~vn~~ab", - "deviceUUID": "5ab6dd3fd4e4e704d2af65ce9aba920c3f597751" - }, - "pb-IF5SUno-Ug==": { - "display_string": [ - "\ue063ihateu234" - ], - "profiles": [], - "name": "\ue063ihateu234", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-05 12:13:24", - "registerOn": 1685851391.298782, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685851391.298783, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686401299.756512, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686401272.337739, - "lastIP": "dxvbvvaxj~~k`", - "deviceUUID": "295db2233cc8d02e28fa0f2cf29ed63651e100d5", - "cMsgCount": 2, - "lastMsgTime": 1686401550.9591944, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4-U2IPEg==": { - "display_string": [ - "\ue063Dominat145" - ], - "profiles": [], - "name": "\ue063Dominat145", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-08 09:41:18", - "registerOn": 1685851594.9813592, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685851594.98136, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685851594.9813678, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685851594.9813688, - "lastIP": "a\u007fn~}hfaj`{vb\u007fm", - "deviceUUID": "ec3ddf2b28b5fb8bf5582780dd4907c96872c568" - }, - "pb-IF4yVXVYIw==": { - "display_string": [ - "\ue063UB4LIFE" - ], - "profiles": [], - "name": "\ue063UB4LIFE", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-30 19:17:31", - "registerOn": 1685851640.6705287, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685851640.6705296, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685851640.6705346, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685851888.8396504, - "lastIP": "bxvc{ve\u007fvawl", - "deviceUUID": "6bd8a5c411a70ba6cacedae88d706bb49c7afe85", - "cMsgCount": 0, - "lastMsgTime": 1685851926.294196, - "lastMsg": "damn its lagging so much here", - "cSameMsg": 0 - }, - "pb-IF4uUBIvFA==": { - "display_string": [ - "\ue063SomberPlun" - ], - "profiles": [], - "name": "\ue063SomberPlun", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-28 14:50:47", - "registerOn": 1685851687.3704455, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685851687.370446, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685954733.8408277, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685954733.8408287, - "lastIP": "dvva{vaym~~``", - "deviceUUID": "a73b6fdd9e054dbc60c1bf0088704392b4897aaa" - }, - "pb-JiNJARFcUUZBWV9DEU5SUlxFFEZbRlNG": { - "display_string": [ - "\ue063zbAju" - ], - "profiles": [], - "name": "\ue063zbAju", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-28 20:43:31", - "registerOn": 1685851840.9999888, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685851840.9999893, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685851840.9999974, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685851840.9999986, - "lastIP": "azo~{m~vh~~ld", - "deviceUUID": "9885fd5b6bde67147b9a5bdc798058d63fa0cc83" - }, - "pb-IF4tU3olKg==": { - "display_string": [ - "\ue063BakedPerso" - ], - "profiles": [], - "name": "\ue063BakedPerso", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-06 12:19:03", - "registerOn": 1685852095.6102087, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685852095.6102095, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685852095.6102371, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685852095.6102383, - "lastIP": "axi~{`~~jeakg", - "deviceUUID": "4a8c3e1f3cc2088225e1b0bfc535ab3d9cd54ce8" - }, - "pb-IF4xUBcPAg==": { - "display_string": [ - "\ue020PulmonaryFate114", - "\ue030Android64391184" - ], - "profiles": [], - "name": "\ue030Android64391184", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-23 19:04:25", - "registerOn": 1685852112.0649712, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685852112.0649717, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685852112.06498, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685852112.064981, - "lastIP": "a~j~}h`aig{vb}k", - "deviceUUID": "13e9c32088d6d7508a973b70d9a880575bb7a1e8", - "cMsgCount": 0, - "lastMsgTime": 1685852117.3413408, - "lastMsg": "no", - "cSameMsg": 0 - }, - "pb-IF4XUGcKJA==": { - "display_string": [ - "\ue030Android65100259" - ], - "profiles": [], - "name": "\ue030Android65100259", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-20 17:19:52", - "registerOn": 1685852242.7690473, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685852242.7690477, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685852242.7690558, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685852242.7690566, - "lastIP": "a~o~}i`aigxvc|", - "deviceUUID": "5b4d4e527df9a20e65f6e91d48bb138c61374003" - }, - "pb-IF4UUxASAg==": { - "display_string": [ - "\ue063Transce200" - ], - "profiles": [], - "name": "\ue063Transce200", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-25 20:03:42", - "registerOn": 1685852473.3085506, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685852473.308551, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685852473.3085587, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685852473.3085597, - "lastIP": "aakhai`xvawj", - "deviceUUID": "15a78479cda4f12a7a0df5cabca9662117bce06c" - }, - "pb-IF4MUBMHKA==": { - "display_string": [ - "\ue063VividMysti" - ], - "profiles": [], - "name": "\ue063VividMysti", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-08 19:14:42", - "registerOn": 1685853082.7431686, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685853082.7431695, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686378355.127122, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686378355.1271229, - "lastIP": "azj~z`~~a~{i", - "deviceUUID": "4f63c21eaecd994d958646328f5b18004feeb901" - }, - "pb-IF4iUBElEA==": { - "display_string": [ - "\ue063SingingFa6" - ], - "profiles": [], - "name": "\ue063SingingFa6", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-24 10:06:23", - "registerOn": 1685853115.9777994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685853115.9778001, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686142523.9469304, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686142523.9469314, - "lastIP": "a~o~v`~~hdam`", - "deviceUUID": "e83f4298b0048cf959e8f1fe232b15af554f1270" - }, - "pb-IF5VUGsSUg==": { - "display_string": [ - "\ue063Babytani" - ], - "profiles": [], - "name": "\ue063Babytani", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 10:01:13", - "registerOn": 1685853455.8512602, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685853455.8512607, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685939535.186653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685939535.1866536, - "lastIP": "b}k~}khaiczvb~k", - "deviceUUID": "859289bf71856de4196a0bbb1beaca24e35cfcb5" - }, - "pb-IF4mUGY5Cg==": { - "display_string": [ - "\ue063ARYAN7777" - ], - "profiles": [], - "name": "\ue063ARYAN7777", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-19 13:33:24", - "registerOn": 1685853595.3807135, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685853595.3807142, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685853595.3807232, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685853595.3807242, - "lastIP": "dvvc{va|l~}lh", - "deviceUUID": "bc1249b82defec40c4920f2f126ec66b1bdc6bc7" - }, - "pb-IF4SVVEgJw==": { - "display_string": [ - "\ue063DK63963773" - ], - "profiles": [], - "name": "\ue063DK63963773", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-16 23:47:25", - "registerOn": 1685855246.6552246, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685855246.6552253, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685855246.6552327, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685855246.6552339, - "lastIP": "azo~|`~~kiaigx", - "deviceUUID": "c1b6fc6d998d060dfd11dd62a78ca6f7421d6f2d" - }, - "pb-IF43A0ZS": { - "display_string": [ - "\ue063N0Mercy4Y0", - "\ue030Android46924792", - "\ue030Android22593380", - "\ue030PC278594" - ], - "profiles": [], - "name": "\ue063N0Mercy4Y0", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-19 12:10:16", - "registerOn": 1685855765.8061996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685855765.8062, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1685892062.1406417, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685892210.4696474, - "lastIP": "dxvia`aaih{", - "deviceUUID": "d6082df172fcd00168fd24bcd92a7d488b5e02d4", - "cMsgCount": 0, - "lastMsgTime": 1685892127.8257627, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4lUxMSHw==": { - "display_string": [ - "\ue063eatEm" - ], - "profiles": [], - "name": "\ue063TopL", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-08 13:15:28", - "registerOn": 1685855821.320641, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685855821.3206418, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686381525.213978, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686389796.318727, - "lastIP": "a\u007fk~~`ca`balb", - "deviceUUID": "9697e7eb450fece0abe0f3d8adce316e47d4153b", - "cMsgCount": 0, - "lastMsgTime": 1685986225.8853414, - "lastMsg": "ill back", - "cSameMsg": 0 - }, - "pb-IF4XVHBdIQ==": { - "display_string": [ - "\ue063Pulove" - ], - "profiles": [], - "name": "\ue063Pulove", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-16 12:57:06", - "registerOn": 1685855907.277287, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685855907.2772875, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686225858.7485301, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686226195.0836396, - "lastIP": "azj~z`~}jeaie~", - "deviceUUID": "bb4a1622c7601f1a78263c6066c8e905a694ffb2" - }, - "pb-IF4FUGUcVQ==": { - "display_string": [ - "\ue063RAMYAQUEEN" - ], - "profiles": [], - "name": "\ue063RAMYAQUEEN", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-15 16:17:10", - "registerOn": 1685856628.010807, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685856628.010808, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685856628.0108147, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685856628.0108159, - "lastIP": "a\u007fn~~ahai`\u007fva|k", - "deviceUUID": "b7ca871bbc261c3008e337f215d3548e1636efcc" - }, - "pb-IF48UGcGLQ==": { - "display_string": [ - "\ue030Android65108497" - ], - "profiles": [], - "name": "\ue030Android65108497", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-21 20:32:26", - "registerOn": 1685856678.1154497, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685856678.1154501, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685856678.1154573, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685856678.1154583, - "lastIP": "a\u007fk~~oea`iaiix", - "deviceUUID": "54b1c296877827b58089ec5a4fab627556466737" - }, - "pb-IF40Um4tUw==": { - "display_string": [ - "\ue063Metabol369" - ], - "profiles": [], - "name": "\ue063Metabol369", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-20 15:00:25", - "registerOn": 1685856904.1218007, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685856904.121802, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685856904.1218114, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685856904.1218126, - "lastIP": "b\u007fj~~ocaibzvgv", - "deviceUUID": "45cac6fe6fa1ed79aeadf103e7cde2da59c902f7" - }, - "pb-IF4OU2QjMQ==": { - "display_string": [ - "\ue063Thorfinn0" - ], - "profiles": [], - "name": "\ue063Thorfinn0", - "isBan": true, - "isMuted": false, - "accountAge": "2022-06-12 18:34:35", - "registerOn": 1685857182.3704362, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685857182.3704371, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685857182.3704443, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685857182.3704455, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF4JU24bFQ==": { - "display_string": [ - "\ue063SucculentK" - ], - "profiles": [], - "name": "\ue063SucculentK", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-21 13:03:50", - "registerOn": 1685857457.0475905, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685857457.047591, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685857457.0475976, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685857457.0475986, - "lastIP": "azo~{n~wn~vk", - "deviceUUID": "a595dc8e6dbbf91400812ee3e51629ff7fa06e00" - }, - "pb-IF48UhEiEg==": { - "display_string": [ - "\ue030Android53825487" - ], - "profiles": [], - "name": "\ue030Android53825487", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-08 10:48:46", - "registerOn": 1685857603.5856926, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685857603.5856934, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686296132.5869553, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686300164.202519, - "lastIP": "a~m~v`~zn~}ic", - "deviceUUID": "33a8969f89cf728e65a2f6ff383ac3a2e126c4e2" - }, - "pb-IF4NUmY5Nw==": { - "display_string": [ - "\ue063Stochasti4", - "\ue030Android55430726" - ], - "profiles": [], - "name": "\ue063Stochasti4", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-18 20:43:37", - "registerOn": 1685857682.8400066, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685857682.840007, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685967097.3390565, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685967097.3390574, - "lastIP": "a\u007fk~~maaihvvawm", - "deviceUUID": "14f6c1a8e2da0f162e2f842c4655a9e8e8f3c3e9" - }, - "pb-IF4sUGMeVA==": { - "display_string": [ - "\ue063SSundee" - ], - "profiles": [], - "name": "\ue063SSundee", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-06 13:58:05", - "registerOn": 1685857861.4702811, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685857861.4702814, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686308825.5729797, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686308915.0309932, - "lastIP": "dvvcyvixva|`", - "deviceUUID": "ca54c08d6fc6365097bdf173ddbe14038cd3ce57", - "cMsgCount": 0, - "lastMsgTime": 1685876482.7042632, - "lastMsg": "uhh sir bcs can you join please", - "cSameMsg": 0 - }, - "pb-IF4nU3E-Jw==": { - "display_string": [ - "\ue030Android62335425" - ], - "profiles": [], - "name": "\ue030Android62335425", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-30 07:20:33", - "registerOn": 1685858309.258041, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685858309.2580419, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685858309.2580483, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685858309.2580495, - "lastIP": "awj~zl~~liaja}", - "deviceUUID": "2b92f8a7bd798cdb965e18bf87c871b47169e714", - "cMsgCount": 0, - "lastMsgTime": 1685858462.60966, - "lastMsg": "im not a good playet", - "cSameMsg": 0 - }, - "pb-IF40UBISLQ==": { - "display_string": [ - "\ue063GoodlySavi" - ], - "profiles": [], - "name": "\ue063GoodlySavi", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-04 11:19:35", - "registerOn": 1685858370.3460252, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685858370.3460257, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686395942.178356, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686395942.1783574, - "lastIP": "bxvf}vay`~~kc", - "deviceUUID": "431ed78324897abf61fdf94bab7bf96939fc1e64", - "cMsgCount": 0, - "lastMsgTime": 1685859423.2634423, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4WUBJcVQ==": { - "display_string": [ - "\ue063WHITEARMY1" - ], - "profiles": [], - "name": "\ue063WHITEARMY1", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-23 21:03:00", - "registerOn": 1685858465.7767878, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685858465.7767882, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686311556.6356304, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686314899.2901258, - "lastIP": "azh~~hgajd~vfv", - "deviceUUID": "c5359ea2230c101f3418aa0395a4ca7b53975d67", - "cMsgCount": 0, - "lastMsgTime": 1685858508.7071588, - "lastMsg": "hi bro", - "cSameMsg": 0 - }, - "pb-IF5TUxhbCg==": { - "display_string": [ - "\ue063BionicShou", - "\ue030Android62600400" - ], - "profiles": [], - "name": "\ue063BionicShou", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-17 13:40:35", - "registerOn": 1685858588.2063897, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685858588.2063906, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685858588.2063994, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685858588.2064009, - "lastIP": "azo~|k~}keai`{", - "deviceUUID": "e330619c9e5fe2cb25eaeeb935c513959ac5a05f" - }, - "pb-IF5VP0cq": { - "display_string": [ - "\ue063Piitaajii" - ], - "profiles": [], - "name": "\ue063Piitaajii", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-11 11:45:01", - "registerOn": 1685858680.9174051, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685858680.9174058, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685858680.9174132, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685858680.9174142, - "lastIP": "a\u007fn~}heajaxvb\u007fj", - "deviceUUID": "abbddc9d07574781c1bfe23fb21a46712a8d3b19" - }, - "pb-IF4oUxAGPQ==": { - "display_string": [ - "\ue063TejGamerNt" - ], - "profiles": [], - "name": "\ue063TejGamerNt", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-26 11:19:47", - "registerOn": 1685858850.1713293, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685858850.17133, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1685859332.360547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685858850.1713386, - "lastIP": "azj~zo~}jbajc\u007f", - "deviceUUID": "155d0f88da10e514ccb7a19d307599f0ca22129c", - "cMsgCount": 1, - "lastMsgTime": 1685859332.3604908, - "lastMsg": "ook", - "cSameMsg": 0 - }, - "pb-IF4hVVVeHQ==": { - "display_string": [ - "\ue063Abhisake69" - ], - "profiles": [], - "name": "\ue063Abhisake69", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-03 21:25:50", - "registerOn": 1685859086.017201, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685859086.0172017, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685943391.2088606, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685943391.2088616, - "lastIP": "a\u007fk~}ifa``aj`}", - "deviceUUID": "d48264bb111e9406c995bd034461104ca7dd849f", - "cMsgCount": 0, - "lastMsgTime": 1685943943.8391366, - "lastMsg": "me", - "cSameMsg": 0 - }, - "pb-IF4jU2gAEg==": { - "display_string": [ - "\ue063Lucklesspe" - ], - "profiles": [], - "name": "\ue063Lucklesspe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-26 13:10:22", - "registerOn": 1685859279.708426, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685859279.7084262, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686217569.6861112, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686217569.6861122, - "lastIP": "dvvb\u007fm~~hcaihw", - "deviceUUID": "83c458b93ee2737e52f3702e528207927f0fc4fc", - "cMsgCount": 1, - "lastMsgTime": 1685957996.8565269, - "lastMsg": "smash", - "cSameMsg": 0 - }, - "pb-IF5TUGgHHQ==": { - "display_string": [ - "\ue063Explain269" - ], - "profiles": [], - "name": "\ue063Explain269", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-18 15:45:39", - "registerOn": 1685859441.2697113, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685859441.2697122, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685859441.2697191, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685859441.2697198, - "lastIP": "azo~{`~~mfajb~", - "deviceUUID": "f7667f1030d818f57d281f94186675efd8237ae3" - }, - "pb-IF5RU1lfAQ==": { - "display_string": [ - "\ue063Egocent107" - ], - "profiles": [], - "name": "\ue063Egocent107", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-14 13:52:51", - "registerOn": 1685859646.1326742, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685859646.1326752, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686301386.909345, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686301386.9093463, - "lastIP": "a\u007fn~~aeaaaaia", - "deviceUUID": "a6ebbd0c7acb2aec57ffe4b7fec625847473f863" - }, - "pb-IF4hUGYACg==": { - "display_string": [ - "\ue063SweetLaugh" - ], - "profiles": [], - "name": "\ue063SweetLaugh", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-24 12:51:10", - "registerOn": 1685859970.6362486, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685859970.6362495, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685859970.6362584, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685859970.6362593, - "lastIP": "azo~zi~~hgaihz", - "deviceUUID": "42a2a988b40d4bcdda2a67a7f15352bd9fc3e2f6" - }, - "pb-IF4dVUNTFw==": { - "display_string": [ - "\ue063THEDRAGONH", - "\ue030Android50744370" - ], - "profiles": [], - "name": "\ue063THEDRAGONH", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-02 11:31:14", - "registerOn": 1685860674.9846349, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685860674.984636, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685860674.9846437, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685860884.4836116, - "lastIP": "azo~{`~}hcaka", - "deviceUUID": "454388770c402b63737cce2b3a7d99a74b923be7" - }, - "pb-IF4IUhMeFg==": { - "display_string": [ - "\ue063Chargea256", - "\ue030Android51692373" - ], - "profiles": [], - "name": "\ue063Chargea256", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-21 14:32:50", - "registerOn": 1685861070.844791, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685861070.844792, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685861070.8447998, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685861672.3497922, - "lastIP": "azo~{l~~ogaigx", - "deviceUUID": "df4c23617e32ad772632dbb878d1569e0e12d64d" - }, - "pb-IF4QU0gCJg==": { - "display_string": [ - "\ue063MeguminBak" - ], - "profiles": [], - "name": "\ue063MeguminBak", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 13:20:59", - "registerOn": 1685861390.9772966, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685861390.9772973, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685861390.9773045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685861390.977306, - "lastIP": "a\u007fn~~afaneaiez", - "deviceUUID": "aa01e05d05b5143b9de7f54167a1377cb74e48b6" - }, - "pb-IF5VUkQmXA==": { - "display_string": [ - "\ue063Karna" - ], - "profiles": [], - "name": "\ue063Karna", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-19 21:16:58", - "registerOn": 1685861542.1901503, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685861542.1901512, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685861542.1901593, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685861542.1901603, - "lastIP": "a|o~vo~~hhaic|", - "deviceUUID": "c1ee436e58deb4da5327ef2804dd7f1da072a6fe" - }, - "pb-IF4wUBMOVg==": { - "display_string": [ - "\ue063PottedSaga" - ], - "profiles": [], - "name": "\ue063PottedSaga", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-04 13:06:58", - "registerOn": 1685861555.2354019, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685861555.2354026, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685861555.2354097, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685861555.2354105, - "lastIP": "dvvc{va{n~vk", - "deviceUUID": "bad903af141f1a7190ddd2c4278c4475d4b79922" - }, - "pb-IF5WUno7PQ==": { - "display_string": [ - "\ue063Martinluth" - ], - "profiles": [], - "name": "\ue063Martinluth", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-05 11:47:06", - "registerOn": 1685861989.2113924, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685861989.2113934, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685861989.211486, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685861989.2114878, - "lastIP": "azj~zo~}kaakg", - "deviceUUID": "6164a3526ba984be44e85dfeb8283d2a6a9f3534" - }, - "pb-IF4dU1IOKQ==": { - "display_string": [ - "\ue063Hackneye37" - ], - "profiles": [], - "name": "\ue063Hackneye37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-25 18:23:17", - "registerOn": 1685862082.2359984, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685862082.2359989, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686129314.4104323, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686129314.4104335, - "lastIP": "b}k~}kaaif{va|l", - "deviceUUID": "0ea8bbe6ad0e9c005407166ad37923d1f241be41" - }, - "pb-IF4PVVI4Dg==": { - "display_string": [ - "\ue030Android52820777" - ], - "profiles": [], - "name": "\ue030Android52820777", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-22 13:42:00", - "registerOn": 1685862218.9799252, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685862218.979926, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685900335.2601097, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685900335.2601109, - "lastIP": "azo~zi~~mfaja", - "deviceUUID": "6a29727aad63a3fe69895447fa78c9d00140acab" - }, - "pb-IF4tU2wbNg==": { - "display_string": [ - "\ue063PithyAdver" - ], - "profiles": [], - "name": "\ue063PithyAdver", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-12 18:44:38", - "registerOn": 1685862254.015376, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685862254.0153768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685862254.0153854, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685862254.0153863, - "lastIP": "bxvexvb{a~xj", - "deviceUUID": "6de3fd2a1334123f5f15738b56aee50d02de8b0a" - }, - "pb-IF4qUGkgEw==": { - "display_string": [ - "\ue063DecisiveO3" - ], - "profiles": [], - "name": "\ue063DecisiveO3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-01 11:17:35", - "registerOn": 1685862454.7410166, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685862454.741017, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685862454.7410243, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685862454.7410252, - "lastIP": "a\u007fn~}hfajayvfy", - "deviceUUID": "777c893173f88050ba34d107e38902bef36d38cf" - }, - "pb-IF4JCUFS": { - "display_string": [ - "\ue063vickydivab" - ], - "profiles": [], - "name": "\ue063vickydivab", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-06 10:44:58", - "registerOn": 1685862504.2038867, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685862504.203888, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685862504.2038963, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685862504.2038972, - "lastIP": "a\u007fn~}hham`ajd~", - "deviceUUID": "62d46ccc8d7916cdccee598b2771ce8d1c66dba6" - }, - "pb-IF4PIFQ9": { - "display_string": [ - "\ue063mrpainless", - "\ue030Android29214702" - ], - "profiles": [], - "name": "\ue063mrpainless", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-26 17:52:31", - "registerOn": 1685862510.2432337, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685862510.2432346, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685862510.243242, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685862510.243243, - "lastIP": "azj~z`~}idai`{", - "deviceUUID": "593a69858f539a0b1f234b1980113bb4060a87b5" - }, - "pb-IF4IUlkMNg==": { - "display_string": [ - "\ue063Notorio207" - ], - "profiles": [], - "name": "\ue063Notorio207", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-20 14:29:37", - "registerOn": 1685862549.1087089, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685862549.1087098, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685862549.1087186, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685862549.1087196, - "lastIP": "azj~z`~|l~vj", - "deviceUUID": "81ae38faed5396bebddedae181158caecf1e4385" - }, - "pb-IF5VU1JZMw==": { - "display_string": [ - "\ue030Android63983659" - ], - "profiles": [], - "name": "\ue030Android63983659", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:37:20", - "registerOn": 1685862948.782392, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685862948.7823925, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686308752.3166165, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686309908.4561331, - "lastIP": "a\u007fn~}ica`caid~", - "deviceUUID": "fe898eb5191e4d7bc705688432e5bb261f253dad", - "cMsgCount": 1, - "lastMsgTime": 1686310511.998209, - "lastMsg": "bye", - "cSameMsg": 0 - }, - "pb-IF4oUlE_Vg==": { - "display_string": [ - "\ue063FloralPre3", - "\ue030Android55884054" - ], - "profiles": [], - "name": "\ue063FloralPre3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-20 13:01:28", - "registerOn": 1685863004.7138314, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685863004.7138321, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685863004.7138393, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685863004.7138405, - "lastIP": "a\u007fn~}ifajd~vb{", - "deviceUUID": "73923559526b6a85d9ccbd5c34e2684fead98327", - "cMsgCount": 0, - "lastMsgTime": 1685863096.6837397, - "lastMsg": "unfair", - "cSameMsg": 0 - }, - "pb-IF4SUGdYCQ==": { - "display_string": [ - "\ue063Melox" - ], - "profiles": [], - "name": "\ue063Melox", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-19 19:53:52", - "registerOn": 1685863230.6569333, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685863230.6569338, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1685863490.625785, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685863230.656943, - "lastIP": "azh~}lbaj`yvav`", - "deviceUUID": "67a5ea6ada9814508850fa2d1b1ad1b2e59289b7", - "cMsgCount": 2, - "lastMsgTime": 1685863676.1906805, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4yUGYGAw==": { - "display_string": [ - "\ue063jashangodp" - ], - "profiles": [], - "name": "\ue063jashangodp", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-20 12:51:50", - "registerOn": 1685863467.5185218, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685863467.5185223, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685863467.5185285, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685863467.51853, - "lastIP": "a\u007fn~}hfaia{vb\u007fk", - "deviceUUID": "7dc4e200f2f64ef666440b6a7a04ac9a843cd427" - }, - "pb-IF4qUBlTJg==": { - "display_string": [ - "\ue063Discred118" - ], - "profiles": [], - "name": "\ue063Discred118", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-07 16:25:34", - "registerOn": 1685863725.3780186, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685863725.3780193, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685980095.1429238, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685980384.26305, - "lastIP": "azo~|l~~m~}kd", - "deviceUUID": "df39427dfcf8c7bf8557360f56b36f938bd76932" - }, - "pb-IF5TIRVe": { - "display_string": [ - "\ue063RapidMaest" - ], - "profiles": [], - "name": "\ue063RapidMaest", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-15 12:55:29", - "registerOn": 1685864156.3045042, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685864156.3045046, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685864156.3045099, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685864156.3045108, - "lastIP": "a}j~~ndaiaxva}k", - "deviceUUID": "5aa4cd83ae8b991e10587188c6432a2e8c225c92" - }, - "pb-IF4CVWQGKQ==": { - "display_string": [ - "\ue063xTayxENo" - ], - "profiles": [], - "name": "\ue063xTayxENo", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-02 17:11:47", - "registerOn": 1685864410.9315622, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685864410.931563, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685864410.9315696, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685864410.9315705, - "lastIP": "azj~z`~~neajcy", - "deviceUUID": "a84ee0dd0a571a9e396d7504ca4e1870add3e84d" - }, - "pb-IF4gUksyMQ==": { - "display_string": [ - "\ue063subha1290" - ], - "profiles": [], - "name": "\ue063subha1290", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-26 13:23:57", - "registerOn": 1685864550.457292, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685864550.4572926, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686293500.994208, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686293525.0794363, - "lastIP": "b}k~}kialhajdx", - "deviceUUID": "b0ef821c8b60e5fcf4bad99d322e2a9451de48ac" - }, - "pb-IF5QUGsiIw==": { - "display_string": [ - "\ue063OcularFact" - ], - "profiles": [], - "name": "\ue063OcularFact", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-28 13:16:34", - "registerOn": 1685864799.3949893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685864799.3949897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685864799.3950055, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685864799.3950067, - "lastIP": "azj~z`~|l~~ma", - "deviceUUID": "7931894ff99547c74a71c0ea4e29868662b2f3a3" - }, - "pb-IF4eVFRTKQ==": { - "display_string": [ - "\ue063iINTELLIGE" - ], - "profiles": [], - "name": "\ue063iINTELLIGE", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-14 16:57:42", - "registerOn": 1685864858.6703928, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685864858.670394, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685864858.6704018, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685864858.6704028, - "lastIP": "azj~z`~wi~|j", - "deviceUUID": "246c7ce487e2aa23cce5936c46f2d67e2b4edf84" - }, - "pb-IF42VVIgHA==": { - "display_string": [ - "\ue063pubgGAMEIN" - ], - "profiles": [], - "name": "\ue063pubgGAMEIN", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-22 11:56:07", - "registerOn": 1685865113.5653756, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685865113.5653763, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685865113.5653825, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685865113.5653837, - "lastIP": "azo~zi~~idaoe", - "deviceUUID": "0b26401ddb8c65dc445059a04d3f902bddd18ff4" - }, - "pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE": { - "display_string": [ - "\ue063SmoothyBro", - "\ue043Mr.Smoothy" - ], - "profiles": [], - "name": "\ue063SmoothyBro", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-13 17:21:16", - "registerOn": 1685865183.1529565, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685865183.1529572, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686296432.6755242, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686296432.6755257, - "lastIP": "dvvd|vazm~vo", - "deviceUUID": "86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12", - "cMsgCount": 0, - "lastMsgTime": 1686297358.4257221, - "lastMsg": "kick \ue063lodhipro17", - "cSameMsg": 0 - }, - "pb-IF4DU0IEJg==": { - "display_string": [ - "\ue063CR7SIUU" - ], - "profiles": [], - "name": "\ue063CR7SIUU", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-18 08:46:35", - "registerOn": 1685865255.0575619, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685865255.0575626, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685865255.0575702, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685865255.0575714, - "lastIP": "b}k~~ohaja\u007fvew", - "deviceUUID": "7d458447bc3ba85dd196060878d8fccb56d4f62a", - "cMsgCount": 2, - "lastMsgTime": 1685865298.2300692, - "lastMsg": "back here", - "cSameMsg": 0 - }, - "pb-JiNJARBTV0JFXlxFEkRZXFRFEkVZR1RD": { - "display_string": [ - "\ue063JAMESBOND2", - "\ue030Android26482291" - ], - "profiles": [], - "name": "\ue063JAMESBOND2", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-05 19:11:10", - "registerOn": 1685865304.2939997, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685865304.2940004, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685865304.2940083, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685865304.2940094, - "lastIP": "azj~z`~}haaid|", - "deviceUUID": "5ded5c53497b9126cebd3f3e8d646051a0b157da" - }, - "pb-IF4iUGE9UA==": { - "display_string": [ - "\ue063JODLEVELGA" - ], - "profiles": [], - "name": "\ue063JODLEVELGA", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-18 10:54:58", - "registerOn": 1685866392.2554111, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685866392.2554116, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685866392.2554197, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685866392.2554207, - "lastIP": "dxvc~vb}l~~`e", - "deviceUUID": "98b04929d383ccffbcf024b21155e438536d92b4" - }, - "pb-IF4AU0IoCA==": { - "display_string": [ - "\ue063WeakerRes2", - "\ue030Android59086177" - ], - "profiles": [], - "name": "\ue063WeakerRes2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-16 12:05:03", - "registerOn": 1685866556.9061844, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685866556.9061852, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685866556.9061933, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685867229.9056242, - "lastIP": "bxvf}vb}h~xh", - "deviceUUID": "5338c9f7857c9f234f68a894e2a295023d1af3d3" - }, - "pb-IF4FU0UkVw==": { - "display_string": [ - "\ue063Inexcusa31" - ], - "profiles": [], - "name": "\ue063Inexcusa31", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-05 12:47:58", - "registerOn": 1685866752.5142982, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685866752.514299, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685866752.514306, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685869945.2794652, - "lastIP": "dvvb\u007fm~|k~yi", - "deviceUUID": "20dae1bfd78a21a744a1f1c6938db9816f145909" - }, - "pb-IF4OUBY-HA==": { - "display_string": [ - "\ue063UneasyThe2" - ], - "profiles": [], - "name": "\ue063UneasyThe2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-23 23:28:30", - "registerOn": 1685867161.958998, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685867161.9589992, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686156311.145438, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686156311.145439, - "lastIP": "a|j~~mdaa~{o", - "deviceUUID": "920b2722def0be678e51a3265ebda58396b9a250" - }, - "pb-IF4dUBkTLA==": { - "display_string": [ - "\ue063ArilenaThe" - ], - "profiles": [], - "name": "\ue063ArilenaThe", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-14 20:50:12", - "registerOn": 1685867279.5412164, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685867279.541217, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685867279.5412245, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685867279.5412254, - "lastIP": "bxvf}va|l~}`", - "deviceUUID": "32c8f4914a9c9be6a5fce997589f22d4edbfbb69" - }, - "pb-IF4GUBc7AA==": { - "display_string": [ - "\ue063Thousand53" - ], - "profiles": [], - "name": "\ue063Thousand53", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-27 15:12:41", - "registerOn": 1685867803.5394707, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685867803.5394714, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686114104.8026423, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686114104.8026438, - "lastIP": "bxvevva~k~z`", - "deviceUUID": "ef7261e7f53f2fd79626af05029ec7fbcc6a76ac" - }, - "pb-IF4RUGkREQ==": { - "display_string": [ - "\ue063messigame8" - ], - "profiles": [], - "name": "\ue063messigame8", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-03 12:07:14", - "registerOn": 1685867977.077076, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685867977.0770764, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685867977.0770833, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685867977.0770843, - "lastIP": "azo~{l~~nbaia|", - "deviceUUID": "7c783cf31b3c607efcb208032f0b76d1d4e855fd" - }, - "pb-IF4pU0syFw==": { - "display_string": [ - "\ue063THEpacemak" - ], - "profiles": [], - "name": "\ue063THEpacemak", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 20:00:02", - "registerOn": 1685868035.3061347, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685868035.3061357, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685868035.3061433, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685868035.3061442, - "lastIP": "azj~zo~~obajb~", - "deviceUUID": "f8e321c302da8b5dd8c916121ab14be736bc9c1d" - }, - "pb-IF4sU28eAg==": { - "display_string": [ - "\ue063Gamergirl" - ], - "profiles": [], - "name": "\ue063Gamergirl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-28 14:43:47", - "registerOn": 1685868216.8967333, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685868216.8967342, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685868216.896742, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685868216.8967438, - "lastIP": "azj~z`~}hcan`", - "deviceUUID": "8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f" - }, - "pb-IF43UGkpIw==": { - "display_string": [ - "\ue063Gratefu472" - ], - "profiles": [], - "name": "\ue063Gratefu472", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-31 14:18:35", - "registerOn": 1685868474.7809558, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685868474.7809567, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1685868683.1531496, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685868474.780968, - "lastIP": "dvvcxvb{vb\u007fi", - "deviceUUID": "4fe981c9877ca3a08a29156f3ba12c1950d150d7", - "cMsgCount": 0, - "lastMsgTime": 1685868683.1531694, - "lastMsg": "mc", - "cSameMsg": 0 - }, - "pb-IF4HUGkSVw==": { - "display_string": [ - "\ue063CladMarsh4" - ], - "profiles": [], - "name": "\ue063CladMarsh4", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 14:14:52", - "registerOn": 1685868601.1923196, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685868601.1923206, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685868601.192334, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685868601.192335, - "lastIP": "a\u007fk~}kbajc~vhz", - "deviceUUID": "9add7d6bbcb2cb48cb1f29ca9154025d205574e1" - }, - "pb-IF49UBEzDQ==": { - "display_string": [ - "\ue063TDMBOSS" - ], - "profiles": [], - "name": "\ue063TDMBOSS", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-23 15:34:33", - "registerOn": 1685869387.234663, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685869387.2346642, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685869387.2346704, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685869387.2346714, - "lastIP": "azo~{j~yvava", - "deviceUUID": "31e5382c3a74d39a8267c78102c75d9a4452930b" - }, - "pb-IF4CUmEDNQ==": { - "display_string": [ - "\ue063Yuthran30", - "\ue030Android54699299" - ], - "profiles": [], - "name": "\ue063Yuthran30", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-21 13:11:51", - "registerOn": 1685869395.632346, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685869395.6323464, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685869395.6323524, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685869395.6323535, - "lastIP": "dvvcxvb\u007fk~{`", - "deviceUUID": "f22b85900cab0b688490dd0f1d9ff84e06a8a908" - }, - "pb-IF4VUBkoNw==": { - "display_string": [ - "\ue063Allergic70" - ], - "profiles": [], - "name": "\ue063Allergic70", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-09 13:04:17", - "registerOn": 1685869529.8415258, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685869529.841527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685869529.8415356, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685869529.8415368, - "lastIP": "azo~{n~~heaid~", - "deviceUUID": "581bd5949cafd395bbe0f4d45ac03cfec5c18772" - }, - "pb-IF49UGI9Dg==": { - "display_string": [ - "\ue063Unselfi274" - ], - "profiles": [], - "name": "\ue063Unselfi274", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-23 15:39:52", - "registerOn": 1685869871.6367414, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685869871.6367419, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685869871.6367483, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685869871.6367495, - "lastIP": "azo~{a~vm~}l`", - "deviceUUID": "d0d1f54a3d3dfd2966c88459025ede9f1e346762" - }, - "pb-IF40UlUhJA==": { - "display_string": [ - "\ue063CaramelArc" - ], - "profiles": [], - "name": "\ue063CaramelArc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-04 20:44:14", - "registerOn": 1685870381.26236, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685870381.262361, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685898409.871753, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685901720.6209545, - "lastIP": "dxvc~vavi~zi", - "deviceUUID": "7224714a470e3a14106d7f3f1a010d4a71ee0367" - }, - "pb-IF4hVHg7CA==": { - "display_string": [ - "\ue063Saurabhtha" - ], - "profiles": [], - "name": "\ue063Saurabhtha", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-14 10:50:15", - "registerOn": 1685870461.5395174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685870461.5395184, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686218485.3205478, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686218707.0946207, - "lastIP": "a~o~}iaaibyvb{m", - "deviceUUID": "44056c893a669391687e2197c88bd5699b4c785b" - }, - "pb-IF5SU0oKLA==": { - "display_string": [ - "\ue063jishnulm10", - "\ue030Android65161537", - "\ue030Android65160188", - "\ue030Android65161568", - "\ue030Android65161493" - ], - "profiles": [], - "name": "\ue063jishnulm10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 19:59:55", - "registerOn": 1685870483.5808628, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685870483.5808635, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685870483.5808718, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685870525.4459193, - "lastIP": "a|o~vo~~idaii|", - "deviceUUID": "e5f0f502c7b9919be16ba8d8149a7dc1435c1841" - }, - "pb-IF4yVVEzDw==": { - "display_string": [ - "\ue020AfterDiscontent33", - "\ue030Android51559140" - ], - "profiles": [], - "name": "\ue030Android51559140", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-18 21:51:46", - "registerOn": 1685870536.865057, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685870536.8650577, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686400591.8287117, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686400591.8287132, - "lastIP": "azo~{n~~jga`g", - "deviceUUID": "719c2c24f5906351fa7a9e44a9b4042bd66943b2" - }, - "pb-IF4UUGdTJw==": { - "display_string": [ - "\ue063CheeryQue3" - ], - "profiles": [], - "name": "\ue063CheeryQue3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-18 19:54:20", - "registerOn": 1685870543.2078004, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685870543.207801, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685870543.2078326, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685870581.6901038, - "lastIP": "axi~xa~~lgani", - "deviceUUID": "0f28ccaf2f3a7b951c9c2665e4544595dbc61b1a" - }, - "pb-IF4IU01dMQ==": { - "display_string": [ - "\ue030Android63891667" - ], - "profiles": [], - "name": "\ue030Android63891667", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 07:53:12", - "registerOn": 1685870626.1408055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685870626.1408064, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685870626.1408143, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685870626.1408157, - "lastIP": "azo~zi~~`iaoh", - "deviceUUID": "77375cf7fda321b8a643081e69db6d763086ca3a" - }, - "pb-IF4QUGJaPQ==": { - "display_string": [ - "\ue063Embryon256" - ], - "profiles": [], - "name": "\ue063Embryon256", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-21 00:32:05", - "registerOn": 1685870951.4001172, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685870951.4001184, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685870951.4001257, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685870951.4001267, - "lastIP": "azj~z`~z`~z", - "deviceUUID": "fbe14ce7822060f969253fb4ac8a1d74ab37965f" - }, - "pb-LV4FURgIUhBIWg4VRBQDV1IRQg==": { - "display_string": [ - "\ue063AshuAmbros", - "\ue030PC538677" - ], - "profiles": [], - "name": "\ue063AshuAmbros", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-09 20:09:19", - "registerOn": 1685870970.495243, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685870970.4952438, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685870970.4952521, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685870970.4952533, - "lastIP": "a\u007fn~}hbaid}vb\u007fn", - "deviceUUID": "fe767daba4147f86a1b22cf652a44dd1e2f1da2b" - }, - "pb-IF4GUGpSVg==": { - "display_string": [ - "\ue063Untrain337" - ], - "profiles": [], - "name": "\ue063Untrain337", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 13:58:11", - "registerOn": 1685871622.938018, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685871622.938019, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685871622.9380276, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685871622.9380288, - "lastIP": "dvvcyvb~h~~ae", - "deviceUUID": "241cc0e6617e2f4bfd349c2699b8587fb5d75e5f" - }, - "pb-IF4cU20KEw==": { - "display_string": [ - "\ue063Adityashin" - ], - "profiles": [], - "name": "\ue063Adityashin", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-16 19:53:21", - "registerOn": 1685871678.1400385, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685871678.1400392, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685871678.1400476, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685872141.544818, - "lastIP": "azj~zo~|o~}jh", - "deviceUUID": "e8c3a734682b51d5302f82da0e2a4b7a65d1e22a" - }, - "pb-IF48UBgBCg==": { - "display_string": [ - "\ue063MissingPap" - ], - "profiles": [], - "name": "\ue063MissingPap", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-03 18:44:58", - "registerOn": 1685872070.5664763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685872070.5664768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685872070.5664847, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685872090.3398352, - "lastIP": "b~h~zn~vn~wk", - "deviceUUID": "f7918eddd5595888330962178c9eac4ad690149d" - }, - "pb-IF4yU28dPQ==": { - "display_string": [ - "\ue063Reasonab55" - ], - "profiles": [], - "name": "\ue063Reasonab55", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-26 13:36:21", - "registerOn": 1685872174.9813082, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685872174.9813087, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685883204.624337, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685883204.624338, - "lastIP": "azj~zo~|o~~m", - "deviceUUID": "7b69a76a036e26281208ec5c60892714eb36333f" - }, - "pb-IF4lUGUCFw==": { - "display_string": [ - "\ue030Android65049704" - ], - "profiles": [], - "name": "\ue030Android65049704", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-12 18:30:24", - "registerOn": 1685872244.5435295, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685872244.5435302, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685872244.5435383, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685872324.2364013, - "lastIP": "a\u007fk~~neaj`ajb{", - "deviceUUID": "1090f78bbce659b4b70c7d36615fa16e1034e60b" - }, - "pb-IF4-UBlTAA==": { - "display_string": [ - "\ue063Unfores238" - ], - "profiles": [], - "name": "\ue063Unfores238", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-07 21:48:14", - "registerOn": 1685872414.1195967, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685872414.1195972, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685872414.1196053, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685872414.119606, - "lastIP": "azo~zi~|h~~nh", - "deviceUUID": "90e8a917d4b7e74bf7328d07e5497902dd5da399" - }, - "pb-IF4vUGkxBw==": { - "display_string": [ - "\ue063Happyga326" - ], - "profiles": [], - "name": "\ue063Happyga326", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-02 15:02:40", - "registerOn": 1685872727.4634702, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685872727.4634712, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685872727.463477, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685872727.463478, - "lastIP": "azo~|m~}l~}k`", - "deviceUUID": "b255e7ed33d465f8232cd227e9bb1a3842819207" - }, - "pb-IF4LU20cEw==": { - "display_string": [ - "\ue030Android62093703" - ], - "profiles": [], - "name": "\ue030Android62093703", - "isBan": true, - "isMuted": false, - "accountAge": "2022-07-19 12:34:21", - "registerOn": 1685872785.375293, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685872785.3752935, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685872785.3752997, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685872785.3753006, - "lastIP": "a\u007fn~~aeaidajbw", - "deviceUUID": "4dc931cefdd3131eaa4546cd0cefbffb299ae055" - }, - "pb-IF5dMmkE": { - "display_string": [ - "\ue063HotDungeon", - "\ue030Android23456056" - ], - "profiles": [], - "name": "\ue063HotDungeon", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-19 18:30:19", - "registerOn": 1685872901.1002533, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685872901.1002543, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685872901.100263, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685872901.1002643, - "lastIP": "bxvf}vdzvi~", - "deviceUUID": "51d8e2c13b6a0c1500cd2ce6c8fb0df17198d682" - }, - "pb-IF4lUGk-Bw==": { - "display_string": [ - "\ue063Pronoun346" - ], - "profiles": [], - "name": "\ue063Pronoun346", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-02 22:11:29", - "registerOn": 1685873025.302512, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685873025.3025126, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685873025.3025208, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685873025.3025217, - "lastIP": "dvvcyvdvvc{", - "deviceUUID": "19da4c5da89c5bed054d687dc5c2ea7e2ce29891" - }, - "pb-IF4oUGVbAQ==": { - "display_string": [ - "\ue063Akkkkk99" - ], - "profiles": [], - "name": "\ue063Akkkkk99", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-07 12:47:54", - "registerOn": 1685873035.3413622, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685873035.341363, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685873035.3413708, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685873035.341372, - "lastIP": "a\u007fk~xl~~aiaib~", - "deviceUUID": "a5bc741bc3f59560f3f3b522680973c7c8ec15d9" - }, - "pb-IF4MUlYtUQ==": { - "display_string": [ - "\ue063RandomBom" - ], - "profiles": [], - "name": "\ue063RANDOMIZER", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-08 20:32:46", - "registerOn": 1685873267.2097795, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685873267.2097802, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686019145.7281835, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686019145.7281852, - "lastIP": "a|o~vo~~i`anc", - "deviceUUID": "8c66ad4b73db1af0504175c9f4d3b10298b04764", - "cMsgCount": 0, - "lastMsgTime": 1685873507.1253216, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4uUGUuCA==": { - "display_string": [ - "\ue063Untutor274" - ], - "profiles": [], - "name": "\ue063Untutor274", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-11 12:55:56", - "registerOn": 1685873309.383423, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685873309.3834238, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685873309.383432, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685873309.3834329, - "lastIP": "b\u007fj~}i~{k~~ic", - "deviceUUID": "603bb297c34675101a642d99082d64a9659eb44b" - }, - "pb-IF4vUxQhPw==": { - "display_string": [ - "\ue063DeadlyWhis" - ], - "profiles": [], - "name": "\ue063DeadlyWhis", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-11 17:04:44", - "registerOn": 1685873400.8987195, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685873400.8987203, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685873400.8987293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685873400.8987303, - "lastIP": "bxvevvb|a~wj", - "deviceUUID": "ce5cf5b66d72be41f41bb0e6ff7d240226beea49" - }, - "pb-IF4mUGIJIQ==": { - "display_string": [ - "\ue063InsideDip2" - ], - "profiles": [], - "name": "\ue063InsideDip2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-25 14:28:53", - "registerOn": 1685873554.4444842, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685873554.4444852, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685873554.4444928, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685873554.4444938, - "lastIP": "a\u007fk~~`dajcwvb~", - "deviceUUID": "8ec6e4c137476543190c028e251479a18678d655" - }, - "pb-IF40U3M9Iw==": { - "display_string": [ - "\ue063Bourne" - ], - "profiles": [], - "name": "\ue063Bourne", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-09 14:32:47", - "registerOn": 1685873641.7852547, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685873641.7852554, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685873641.7852864, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685873720.7403567, - "lastIP": "a\u007fk~~lhaj`ajb", - "deviceUUID": "3883806dd6267e8841d2eca75af93f435fb2d31f" - }, - "pb-IF48UGccBw==": { - "display_string": [ - "\ue063Unattac329" - ], - "profiles": [], - "name": "\ue063Unattac329", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-22 18:47:46", - "registerOn": 1685873664.8473144, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685873664.8473148, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685873664.8473232, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685873785.9615664, - "lastIP": "a\u007fk~~j`aacaog", - "deviceUUID": "ef298906ebef708da13843d9630f1ee42dfe96e0" - }, - "pb-JiNJARBYUUpGVV5JEEVQVlVLEkRWT1dE": { - "display_string": [ - "\ue063ZippyCrys3" - ], - "profiles": [], - "name": "\ue063ZippyCrys3", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-14 19:34:10", - "registerOn": 1685873864.5970025, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685873864.597003, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685873864.5970104, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685873864.5970116, - "lastIP": "azj~z`~zi~~oe", - "deviceUUID": "e770e93bd8dc295a9b34ad012a23e85acd3f51a2" - }, - "pb-IF4rU0kaUQ==": { - "display_string": [ - "\ue063TardyDevia" - ], - "profiles": [], - "name": "\ue063TardyDevia", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-27 22:32:09", - "registerOn": 1685873993.1237502, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685873993.1237507, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686047096.46434, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686047096.464341, - "lastIP": "a\u007fn~}ica``amd", - "deviceUUID": "9b9d41038cc9cb808d1069e7e82240bcf330aa91" - }, - "pb-IF4mUxRdLg==": { - "display_string": [ - "\ue030Android60391438" - ], - "profiles": [], - "name": "\ue030Android60391438", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-11 03:17:09", - "registerOn": 1685874099.638546, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685874099.638547, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685874099.6385539, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685874099.6385548, - "lastIP": "d~vb|o~w`~|k", - "deviceUUID": "c0ba0268d808e5d5f99e17197f3c9d220b3c650d" - }, - "pb-IF5RUGInJg==": { - "display_string": [ - "\ue063DEVBRO" - ], - "profiles": [], - "name": "\ue063DEVBRO", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-05 12:59:05", - "registerOn": 1685874154.9155753, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685874154.915576, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685878040.4679468, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685884132.9031405, - "lastIP": "ax`~}lhaia{vi", - "deviceUUID": "e6a7402ea4ee5bd392f89840e4f70824c0c64def" - }, - "pb-IF4IUBUMFg==": { - "display_string": [ - "\ue063CrushedFr5" - ], - "profiles": [], - "name": "\ue063CrushedFr5", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-22 08:56:56", - "registerOn": 1685874556.5009274, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685874556.5009284, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685874556.5009363, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685874556.5009372, - "lastIP": "b}k~}jhaihajb|", - "deviceUUID": "34259dd0f744a7ac6ba798a871bf4f69b60bd28c" - }, - "pb-IF4GU2UbPw==": { - "display_string": [ - "\ue063LimitedMis" - ], - "profiles": [], - "name": "\ue063LimitedMis", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-15 15:19:54", - "registerOn": 1685874603.78722, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685874603.7872207, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685874603.7872276, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685874603.7872286, - "lastIP": "a{vavj~}hiaic|", - "deviceUUID": "dc830001f4cba436d921eaa64491eebd924fe028" - }, - "pb-IF4tVFkiBg==": { - "display_string": [ - "\ue063saachi011" - ], - "profiles": [], - "name": "\ue063saachi011", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-20 15:05:52", - "registerOn": 1685874633.8078167, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685874633.8078172, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685874633.8078234, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685874633.8078244, - "lastIP": "a\u007fn~}i`akgaiew", - "deviceUUID": "7f9b55960f0993c7c8ebff9dda46eef574bd8fdd" - }, - "pb-IF4KUklYNg==": { - "display_string": [ - "\ue063Excelle514", - "\ue030Android41232773" - ], - "profiles": [], - "name": "\ue063Excelle514", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-15 12:47:02", - "registerOn": 1685874774.3966804, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685874774.396681, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685874774.3966892, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685874774.3966901, - "lastIP": "a}j~zh~}hfai", - "deviceUUID": "1cd64da7fc033c517b750ac999935353bad56eb8" - }, - "pb-IF4SUGgzAA==": { - "display_string": [ - "\ue063sudep" - ], - "profiles": [], - "name": "\ue063sudep", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-27 19:53:53", - "registerOn": 1685875490.0886445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685875490.0886455, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685875490.0886533, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685875490.0886543, - "lastIP": "azo~{m~~`cana", - "deviceUUID": "f28bda65c46f8fb57758477eb34737b0d1a121a7" - }, - "pb-IF4LUBUREA==": { - "display_string": [ - "\ue030Android55048734" - ], - "profiles": [], - "name": "\ue030Android55048734", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-20 23:06:05", - "registerOn": 1685875637.6392975, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685875637.639298, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685875637.6393049, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685875637.639306, - "lastIP": "i|vc{vb|o~}k", - "deviceUUID": "6149134c399efc355a2ea590d5c00edcc8821b6a" - }, - "pb-IF4zV2JYCw==": { - "display_string": [ - "\ue063Goofykhan" - ], - "profiles": [], - "name": "\ue063Goofykhan", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-12 23:54:27", - "registerOn": 1685876388.603068, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685876388.603069, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685876388.6030777, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685876388.6030784, - "lastIP": "d|vb|i~zn~}j`", - "deviceUUID": "ddd79dbe49a5528326068695913c90e0c4229cc3" - }, - "pb-IF4vM0Nd": { - "display_string": [ - "\ue063Incredi587" - ], - "profiles": [], - "name": "\ue063Incredi587", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-03 10:57:23", - "registerOn": 1685876649.655978, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685876649.6559784, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685876649.6559875, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685876649.6559885, - "lastIP": "a\u007fn~~adaocaje{", - "deviceUUID": "99e138110e043c0db3bf1e51c3506ff4213780ee" - }, - "pb-IF5RU2oJUA==": { - "display_string": [ - "\ue063quicksilv7" - ], - "profiles": [], - "name": "\ue063quicksilv7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-25 18:46:54", - "registerOn": 1685876963.7079167, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685876963.707917, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685876963.7079232, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685876963.7079241, - "lastIP": "a\u007fn~~adamcak", - "deviceUUID": "b52a0123a41243d56ed209aa5016622aec74d299" - }, - "pb-IF4VVWIbDA==": { - "display_string": [ - "\ue063ZoDxHeLL1" - ], - "profiles": [], - "name": "\ue063ZoDxHeLL1", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-20 14:56:57", - "registerOn": 1685877278.9989872, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685877278.9989877, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686140279.2574322, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686140279.2574334, - "lastIP": "bxvf|vb~`~~kc", - "deviceUUID": "cd28c01ba98a5e95ab3334337bb5e4c732e63f11" - }, - "pb-IF4jUBMiCg==": { - "display_string": [ - "\ue063GovindV755" - ], - "profiles": [], - "name": "\ue063GovindV755", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-01 11:31:53", - "registerOn": 1685877504.1119118, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685877504.1119125, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685877504.1119184, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685877504.1119194, - "lastIP": "a\u007fk~vl~~khajcx", - "deviceUUID": "c21d9f9c46d65881ac92a1086df09766b67eba14", - "cMsgCount": 0, - "lastMsgTime": 1685877572.064948, - "lastMsg": "yeeeeee", - "cSameMsg": 0 - }, - "pb-IF4sUGEMLg==": { - "display_string": [ - "\ue063smartite9" - ], - "profiles": [], - "name": "\ue063smartite9", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-22 14:47:22", - "registerOn": 1685877537.0112386, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685877537.0112395, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685877537.0112472, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685877537.011248, - "lastIP": "azj~z`~}h`aigy", - "deviceUUID": "9948ff0e2e78e1442cb895ff6f361cd0780ce939" - }, - "pb-IF4LPkVb": { - "display_string": [ - "\ue063FantaIce", - "???" - ], - "profiles": [], - "name": "\ue063FantaIce", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-16 13:07:35", - "registerOn": 1685877647.6642897, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685877647.6642907, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685877647.6642983, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685877647.6642995, - "lastIP": "izvh}viwva|m", - "deviceUUID": "61291b1e38e06b6fb1b58a82ffe643c996f9837a" - }, - "pb-IF4DUBdSAQ==": { - "display_string": [ - "\ue063LimitedJoc" - ], - "profiles": [], - "name": "\ue063LimitedJoc", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-27 11:06:20", - "registerOn": 1685877665.3930197, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685877665.3930204, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685877665.393028, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685877665.3930292, - "lastIP": "bxvf\u007fva\u007fl~~j`", - "deviceUUID": "9655938bb7b659d2e8117e60f9123d2085bbb555" - }, - "pb-IF40U08SFQ==": { - "display_string": [ - "\ue063ExultantF2" - ], - "profiles": [], - "name": "\ue063ExultantF2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-07 14:13:34", - "registerOn": 1685877700.883776, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685877700.8837764, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685877700.8837864, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685877700.8837879, - "lastIP": "dvvc}vazo~}lf", - "deviceUUID": "becba455cd7ccfbe77c9aea26b70ebfe9ff73899" - }, - "pb-IF5SU1ZaJg==": { - "display_string": [ - "\ue063Flyingmara" - ], - "profiles": [], - "name": "\ue063Flyingmara", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-31 22:49:12", - "registerOn": 1685878180.680544, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685878180.6805449, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685878180.6805518, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685878180.6805527, - "lastIP": "a\u007fk~~odaievvazi", - "deviceUUID": "fef94135fc461cd16b576363adf2192942e97b27" - }, - "pb-IF4lU0MtLQ==": { - "display_string": [ - "\ue063SHREYASHxO" - ], - "profiles": [], - "name": "\ue063SHREYASHxO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-20 14:53:22", - "registerOn": 1685878813.8520098, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685878813.85201, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685878813.8520172, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685878813.8520184, - "lastIP": "a\u007fn~}hgandaoi", - "deviceUUID": "a09d01e25240174cea2612707e52e93b11f5da7e" - }, - "pb-IF4tUGQDPQ==": { - "display_string": [ - "\ue063Seafari289" - ], - "profiles": [], - "name": "\ue063Seafari289", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-03 14:39:20", - "registerOn": 1685879534.3599854, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685879534.3599858, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685879534.3599923, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685879534.3599935, - "lastIP": "dvvcxvfyvcv", - "deviceUUID": "cafe4c97aae1ff5b9e3da6f3b8a1ce4b78552020" - }, - "pb-IF4VUlcBVQ==": { - "display_string": [ - "\ue063YashRenoun", - "\ue030Android60976993" - ], - "profiles": [], - "name": "\ue063YashRenoun", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-13 22:17:21", - "registerOn": 1685880095.555877, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685880095.5558774, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686385343.8440766, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686385343.8440778, - "lastIP": "a~o~vn~~nhaiaz", - "deviceUUID": "6016cf2b51eaa0c2b924cbe0d0872f3772657d01", - "cMsgCount": 0, - "lastMsgTime": 1686140261.106127, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4lU0EgFQ==": { - "display_string": [ - "\ue063UNIHI7890" - ], - "profiles": [], - "name": "\ue063UNIHI7890", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-11 16:03:21", - "registerOn": 1685880234.0064049, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685880234.0064056, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685880234.006412, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685880234.0064132, - "lastIP": "a|n~~`eal`aah", - "deviceUUID": "f8befc392abfd7b0614a69d229f3f6929bb6f4b8" - }, - "pb-IF4TUxEoKg==": { - "display_string": [ - "\ue063TUJABAAP00", - "\ue030Android60088344" - ], - "profiles": [], - "name": "\ue063TUJABAAP00", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-29 14:15:10", - "registerOn": 1685881320.2484128, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685881320.2484133, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686125952.0500228, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686125952.050024, - "lastIP": "azj~zo~}i`aj`{", - "deviceUUID": "e7135d56b8cdb8e4ddab0d4612deaec02a824e5d", - "cMsgCount": 0, - "lastMsgTime": 1685973581.441883, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4rV3cFEg==": { - "display_string": [ - "\ue063Cinnamon", - "\ue030Android56956336" - ], - "profiles": [], - "name": "\ue063Cinnamon", - "isBan": false, - "isMuted": false, - "accountAge": "2019-01-08 20:03:58", - "registerOn": 1685881568.92461, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685881568.9246104, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685881568.924623, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685882125.5905604, - "lastIP": "a\u007fk~~l~~jiaicz", - "deviceUUID": "8fc30db451300fc1018f625ac62e7aae76bd6f51", - "cMsgCount": 0, - "lastMsgTime": 1685882860.5312254, - "lastMsg": "so weak", - "cSameMsg": 0 - }, - "pb-IF4FU0sMKQ==": { - "display_string": [ - "\ue063MaximalDru" - ], - "profiles": [], - "name": "\ue063MaximalDru", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 18:48:41", - "registerOn": 1685881683.2318966, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685881683.231897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685881683.2319043, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685881683.2319052, - "lastIP": "azj~zo~}l`a`a", - "deviceUUID": "32430ddba4dd6ce5b3fe001cc76a30a2d0855b7c" - }, - "pb-IF4xVVpePw==": { - "display_string": [ - "\ue063Autocra162" - ], - "profiles": [], - "name": "\ue063Autocra162", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-30 01:21:57", - "registerOn": 1685881781.9143279, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685881781.9143283, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685881781.9143357, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685881781.914337, - "lastIP": "dvvcxvb\u007fk~{`", - "deviceUUID": "b64fd52156e95ad21ea2789b8f39677e724b29f9" - }, - "pb-IF4TUBFSBg==": { - "display_string": [ - "\ue020TriumphantPenguin681", - "\ue063OutwardCal", - "\ue020TalkativeLimit51", - "\ue020InfraredExcursion59", - "\ue030Android60579657" - ], - "profiles": [], - "name": "\ue063OutwardCal", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-03 18:17:10", - "registerOn": 1685881791.6375637, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685881791.6375642, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685881791.6375716, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685881791.6375728, - "lastIP": "azo~|l~~aiaj`|", - "deviceUUID": "d26458fbeef63c49fe91e5f53f0e30271a501e95" - }, - "pb-IF4AUGhcMQ==": { - "display_string": [ - "\ue063sushant99g" - ], - "profiles": [], - "name": "\ue063sushant99g", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-25 23:16:17", - "registerOn": 1685881926.498561, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685881926.4985619, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685881926.498571, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685881926.498572, - "lastIP": "azj~zo~~mgai`w", - "deviceUUID": "e383d5c257f5dd7406bc5942e93f887591fb5681", - "cMsgCount": 0, - "lastMsgTime": 1685883754.1385665, - "lastMsg": "bhaag", - "cSameMsg": 0 - }, - "pb-IF4NU1EhUw==": { - "display_string": [ - "\ue030Android64084966" - ], - "profiles": [], - "name": "\ue030Android64084966", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-20 14:58:16", - "registerOn": 1685881952.265857, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685881952.2658575, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685881952.2658648, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685881952.265866, - "lastIP": "dvvc}vazi~~mf", - "deviceUUID": "f4122b1458d906b9cb0c5820b705d7278c3f2c73" - }, - "pb-IF42UGgAFg==": { - "display_string": [ - "\ue063ruchi1522" - ], - "profiles": [], - "name": "\ue063ruchi1522", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-30 04:55:18", - "registerOn": 1685882026.4950411, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685882026.4950416, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685882026.4950473, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685882026.4950483, - "lastIP": "azo~|m~}l~~ae", - "deviceUUID": "b1c4e980c66609a65682452ea72d2a30d8e94916" - }, - "pb-IF4zUkwZBw==": { - "display_string": [ - "\ue063Muguntha14" - ], - "profiles": [], - "name": "\ue063Muguntha14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-02 16:13:06", - "registerOn": 1685882137.9194038, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685882137.9194043, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685882137.919413, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685882137.9194143, - "lastIP": "a}j~~nda``ajc|", - "deviceUUID": "bc1327009f9944b141f04912712143c738d96727" - }, - "pb-IF4gU1MdVg==": { - "display_string": [ - "\ue063Moon63" - ], - "profiles": [], - "name": "\ue063Moon63", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-01 12:25:56", - "registerOn": 1685882137.9995341, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685882137.9995346, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685882137.9995413, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685882137.9995425, - "lastIP": "dvvazvhzvcw", - "deviceUUID": "502692feea39ed0795c86272646d1f76ae23ff37" - }, - "pb-IF4OU0UyUA==": { - "display_string": [ - "\ue063PearlyColl", - "\ue030Android63609466" - ], - "profiles": [], - "name": "\ue063PearlyColl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-03 18:10:48", - "registerOn": 1685882398.8879957, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685882398.8879962, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685882398.8880057, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685883762.626881, - "lastIP": "azl~}kiaiezvb{j", - "deviceUUID": "fb3fbf605df31d20de44aacf85159ae5a128f168" - }, - "pb-IF5QV0kBCg==": { - "display_string": [ - "\ue063ForeignLea", - "\ue030Android32521852" - ], - "profiles": [], - "name": "\ue063ForeignLea", - "isBan": false, - "isMuted": false, - "accountAge": "2019-02-26 22:59:29", - "registerOn": 1685882974.066999, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685882974.0669994, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685882974.0670073, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685882974.0670085, - "lastIP": "azj~z`~|l~}o", - "deviceUUID": "4f35c9bcfbabbeda7b5642449dba881c9d5daf0a" - }, - "pb-IF4dVFo7Cw==": { - "display_string": [ - "\ue063Dragonlor2" - ], - "profiles": [], - "name": "\ue063Dragonlor2", - "isBan": true, - "isMuted": false, - "accountAge": "2020-06-28 22:54:10", - "registerOn": 1685882997.1924045, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685882997.192405, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685882997.1924126, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685882997.1924138, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF4WUkMeNQ==": { - "display_string": [ - "\ue063Tolerable6" - ], - "profiles": [], - "name": "\ue063Tolerable6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-26 22:25:20", - "registerOn": 1685883047.340292, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685883047.3402927, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685883047.340299, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685883047.3403, - "lastIP": "axi~zi~}hcaic{", - "deviceUUID": "883da177689561d174b436b1fe9f6faf0ce09696" - }, - "pb-IF4DUGRYKA==": { - "display_string": [ - "\ue063Laborio277" - ], - "profiles": [], - "name": "\ue063Laborio277", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-30 11:09:54", - "registerOn": 1685883071.4947226, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685883071.494723, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685883071.4947307, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685884508.38285, - "lastIP": "azj~z`~}k`ai`}", - "deviceUUID": "9d7b6f3a4670448fc2fe9d9c5585525df3ed9872" - }, - "pb-IF4jVFkmLw==": { - "display_string": [ - "\ue063bestgamerx" - ], - "profiles": [], - "name": "\ue063bestgamerx", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-18 22:35:52", - "registerOn": 1685883239.0820282, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685883239.0820286, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685883239.082034, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685883239.0820353, - "lastIP": "a~o~}hiaib|vgv", - "deviceUUID": "d124ef40dd4bf6da75ee46d44fd3a5419d17761c" - }, - "pb-IF5WUBEBFg==": { - "display_string": [ - "\ue063ROMANREI10" - ], - "profiles": [], - "name": "\ue063ROMANREI10", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-11 23:18:23", - "registerOn": 1685883545.1113565, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685883545.111357, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685903964.0209832, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685903964.0209844, - "lastIP": "dvvcyva}k~~`d", - "deviceUUID": "218d091b86cc9ed6276d93e8613c32207b3c6aac" - }, - "pb-IF4UU0wiKg==": { - "display_string": [ - "\ue063RegZeku77", - "\ue030Android55777421" - ], - "profiles": [], - "name": "\ue063RegZeku77", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-07 19:49:05", - "registerOn": 1685883559.233362, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685883559.2333624, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685883559.2333705, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685883559.233372, - "lastIP": "a\u007fn~}h`aofana", - "deviceUUID": "2e2381c912818f80b0ca133d124bc95e6ed78773" - }, - "pb-IF4LU0wKIw==": { - "display_string": [ - "\ue063Omiii15" - ], - "profiles": [], - "name": "\ue063Omiii15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 10:16:06", - "registerOn": 1685883624.4416122, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685883624.4416127, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685954351.3167856, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685971418.1527035, - "lastIP": "azj~zo~~aca``", - "deviceUUID": "d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff", - "cMsgCount": 0, - "lastMsgTime": 1685972714.2537072, - "lastMsg": "0", - "cSameMsg": 0 - }, - "pb-IF5QVFMCUg==": { - "display_string": [ - "\ue030Android43671493" - ], - "profiles": [], - "name": "\ue030Android43671493", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-24 14:54:08", - "registerOn": 1685883634.4719062, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685883634.471907, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686302359.6965845, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686302359.6965857, - "lastIP": "a\u007fn~}hcajgaoh", - "deviceUUID": "3b483075b2023edb95e323dc2cc0d8dc516cae08", - "cMsgCount": 0, - "lastMsgTime": 1686196757.3281875, - "lastMsg": "/ping", - "cSameMsg": 0 - }, - "pb-IF4sU1EeAA==": { - "display_string": [ - "\ue063Benefic168" - ], - "profiles": [], - "name": "\ue063Benefic168", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-24 15:02:19", - "registerOn": 1685883672.602105, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685883672.6021054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685883672.6021125, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685883672.6021135, - "lastIP": "bxvf\u007fvb~k~~`", - "deviceUUID": "a4ccc2a4110c9b63a5fd073bee5f4d32900d0444" - }, - "pb-IF4vUBY9Bw==": { - "display_string": [ - "\ue030Android64740868", - "\ue030Android64697333", - "\ue030Android64935193", - "\ue030Android64980251" - ], - "profiles": [], - "name": "\ue030Android64740868", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-23 17:08:32", - "registerOn": 1685884035.855068, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685884035.8550684, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685884035.8550754, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685884035.8550763, - "lastIP": "awl~}j~~jfaad", - "deviceUUID": "566691f7ff06845dbed95f30af4f134fd57364f8" - }, - "pb-IF4nUGQlJw==": { - "display_string": [ - "\ue030Android64980432" - ], - "profiles": [], - "name": "\ue030Android64980432", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-01 12:04:48", - "registerOn": 1685884983.6577728, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685884983.6577733, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685884983.6577845, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685884983.657786, - "lastIP": "a~h~}jfaih|vc", - "deviceUUID": "fcec08685829d53aecae461b40807006fa1f4790" - }, - "pb-IF4yVFgOVA==": { - "display_string": [ - "\ue063Xodv8" - ], - "profiles": [], - "name": "\ue063Xodv8", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-16 15:03:14", - "registerOn": 1685886633.8645785, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685886633.8645794, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686376186.4838738, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686376186.483875, - "lastIP": "a\u007fk~~`baifxvayo", - "deviceUUID": "d854623f8a8ec9715c4cf1e44f2a453d5344d791" - }, - "pb-IF4yUGRfNw==": { - "display_string": [ - "\ue030Android64993014" - ], - "profiles": [], - "name": "\ue030Android64993014", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-03 16:03:29", - "registerOn": 1685886825.537769, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685886825.53777, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685886825.5377781, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685886825.5377796, - "lastIP": "dvvcyvdwva}l", - "deviceUUID": "b7eef9cfe31a7bb2acbf0c68651a265aa9aa8ae8" - }, - "pb-IF4RUGRTMA==": { - "display_string": [ - "\ue063HipsterFl8" - ], - "profiles": [], - "name": "\ue063HipsterFl8", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-30 00:22:09", - "registerOn": 1685886868.715012, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685886868.7150128, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685886868.7150772, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685886868.715078, - "lastIP": "dvvc|vb\u007fj~}h`", - "deviceUUID": "bc63f3054aba560f83864cfd300b6b868345b1a0" - }, - "pb-IF4XUkwbKQ==": { - "display_string": [ - "\ue063GamerPB7", - "\ue030Android64844828", - "\ue030Android64787282", - "\ue030Android64828772" - ], - "profiles": [], - "name": "\ue030Android64787282", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-01 04:00:06", - "registerOn": 1685887514.535961, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685887514.5359616, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686124014.529624, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686124014.5296254, - "lastIP": "a\u007fk~~j`aje|vd|", - "deviceUUID": "56c52a22f44677a8424476af52c088d00b14a484" - }, - "pb-IF4wUGhdEg==": { - "display_string": [ - "\ue063LAKSKHYA" - ], - "profiles": [], - "name": "\ue063LAKSKHYA", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-23 16:23:06", - "registerOn": 1685889088.196647, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685889088.1966476, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685889088.1966553, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685889088.196657, - "lastIP": "dvvcyvb|o~~mc", - "deviceUUID": "b77f63a6d081b60acfeff8ed2e7f1015b30f5b2c" - }, - "pb-IF4pUGMENg==": { - "display_string": [ - "\ue063MrBakwaas" - ], - "profiles": [], - "name": "\ue063MrBakwaas", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-28 13:33:59", - "registerOn": 1685890958.2100935, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685890958.210094, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685890958.2101002, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685890958.2101014, - "lastIP": "a\u007fn~}haamaaod", - "deviceUUID": "c841656fd2611c82cda63490b2eccaefa440b442" - }, - "pb-IF4DUlcTCw==": { - "display_string": [ - "\ue063Unoppos746" - ], - "profiles": [], - "name": "\ue063Unoppos746", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-13 13:44:47", - "registerOn": 1685890969.2584598, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685890969.25846, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685890969.2584658, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685890969.2584674, - "lastIP": "a\u007fk~~`ca`baify", - "deviceUUID": "bc0cbc37f96d5c6c350c45e3ceaca2b89c239b07" - }, - "pb-IF4tU1pdJA==": { - "display_string": [ - "\ue063juleon237" - ], - "profiles": [], - "name": "\ue063juleon237", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-05 06:01:20", - "registerOn": 1685891382.6900444, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685891382.690045, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685891382.6900527, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685891382.6900542, - "lastIP": "awo~~lcajb\u007fvg{", - "deviceUUID": "b56100a6fafadc934bd64117d60a60904663e604" - }, - "pb-IF5QU3AaLg==": { - "display_string": [ - "\ue030Android62078969" - ], - "profiles": [], - "name": "\ue030Android62078969", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 19:45:30", - "registerOn": 1685891774.1623538, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685891774.1623547, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686368461.371773, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686368461.3718064, - "lastIP": "dvvc{vfzvb~h", - "deviceUUID": "67ca1700097a31623ecb8521a8c88e199829bedc" - }, - "pb-IF4BUGktJw==": { - "display_string": [ - "\ue063PolarTowe2" - ], - "profiles": [], - "name": "\ue063PolarTowe2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 20:46:34", - "registerOn": 1685891830.6480534, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685891830.6480546, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685891830.648147, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685891830.6481483, - "lastIP": "a\u007fk~~`cajc\u007fva\u007f", - "deviceUUID": "621f2189176996f7a3d703aa9fa3403b9e3f7a3d" - }, - "pb-IF4KVGsALQ==": { - "display_string": [ - "\ue063PickyNimro", - "\ue030Android52183011" - ], - "profiles": [], - "name": "\ue063PickyNimro", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-18 20:59:09", - "registerOn": 1685891934.7313607, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685891934.7313614, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685891934.7313685, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685891934.7313695, - "lastIP": "cxvayvayo~|k", - "deviceUUID": "73041cc290982a9eb346da4ae8d3f71066b556a4" - }, - "pb-IF5XVEQFFw==": { - "display_string": [ - "\ue063ImmenseExp" - ], - "profiles": [], - "name": "\ue063ImmenseExp", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-04 19:07:32", - "registerOn": 1685892067.5364625, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685892067.5364633, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686066517.6433737, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686066517.643375, - "lastIP": "azo~{n~}iaaiey", - "deviceUUID": "0e1631411da49abab97cf776e45447230798b50f", - "cMsgCount": 0, - "lastMsgTime": 1686066605.5185256, - "lastMsg": "wait", - "cSameMsg": 0 - }, - "pb-IF4CUhUlFg==": { - "display_string": [ - "\ue063BluishClas" - ], - "profiles": [], - "name": "\ue063BluishClas", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-27 12:13:35", - "registerOn": 1685892339.2736313, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685892339.2736318, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686386926.905038, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686386926.9050393, - "lastIP": "b}k~}kiangaih", - "deviceUUID": "7ff409e87c661733dd5ac8860f45e13b78990856" - }, - "pb-IF4KUGpYXQ==": { - "display_string": [ - "\ue030Android65194313" - ], - "profiles": [], - "name": "\ue030Android65194313", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 19:24:50", - "registerOn": 1685892536.844428, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685892536.8444285, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685892536.8444378, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685892536.8444393, - "lastIP": "azj~zo~xh~|", - "deviceUUID": "19c267565195bc72497b4b2ac1e849ce686c0ec8" - }, - "pb-IF4HUGkZIA==": { - "display_string": [ - "\ue030Android65188517" - ], - "profiles": [], - "name": "\ue030Android65188517", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-03 22:54:22", - "registerOn": 1685892555.0163991, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685892555.0163999, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685892555.0164082, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685892555.0164096, - "lastIP": "dzvawn~}meajb", - "deviceUUID": "2ef94565404bbfa119bff94d714c9733f66803f1" - }, - "pb-JiNJARBfUURFX1lFFkBUVFBGE0hXQllA": { - "display_string": [ - "\ue063ShubhangRa", - "\ue030Android43340139" - ], - "profiles": [], - "name": "\ue063ShubhangRa", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-14 11:21:22", - "registerOn": 1685892755.8437586, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685892755.843759, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685892755.8437848, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685892755.843786, - "lastIP": "a~o~}lhaja{va|l", - "deviceUUID": "ad21aeae4bd5451fafff843d8a32a6bb9a3bb4ec" - }, - "pb-IF4gU0wxBw==": { - "display_string": [ - "\ue063ZOYAsays" - ], - "profiles": [], - "name": "\ue063Enchantres", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 16:06:19", - "registerOn": 1685892943.5527651, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685892943.5527654, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686376142.3432322, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686389985.019828, - "lastIP": "a\u007fk~}hhaoaalb", - "deviceUUID": "e3264f0eeff4f52989ca84c4566b2adc69fb0f57" - }, - "pb-IF4oU00eUQ==": { - "display_string": [ - "\ue063SeniorSlum" - ], - "profiles": [], - "name": "\ue063SeniorSlum", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 14:09:35", - "registerOn": 1685893588.193877, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685893588.1938775, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685893588.193886, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685893588.193887, - "lastIP": "dvvcyvb}j~}ka", - "deviceUUID": "74b5de162044b737d00382159e2a42b0e62fdd5f" - }, - "pb-IF5WUGkeKA==": { - "display_string": [ - "\ue030Android65134984" - ], - "profiles": [], - "name": "\ue030Android65134984", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-26 11:00:53", - "registerOn": 1685894241.6284556, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685894241.628456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686314917.3562062, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686314917.3562074, - "lastIP": "dvvc{vd~vav", - "deviceUUID": "0ec746bbebbd7596f8c9a7887dff18de60322a94" - }, - "pb-IF4hVFQJPA==": { - "display_string": [ - "\ue063sheriff007" - ], - "profiles": [], - "name": "\ue063sheriff007", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-25 00:58:39", - "registerOn": 1685894880.0510962, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685894880.051097, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685894880.0511043, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685894880.0511053, - "lastIP": "azo~{a~y`~}hf", - "deviceUUID": "2075f74ce3988b96997b4c4082726cec0bfd3b36" - }, - "pb-IF4hVHMhXQ==": { - "display_string": [ - "\ue063Ashwin4628" - ], - "profiles": [], - "name": "\ue063Ashwin4628", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-14 16:52:24", - "registerOn": 1685895115.8337562, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685895115.833757, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685895115.8337665, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685895115.833768, - "lastIP": "azo~|`~{a~~k", - "deviceUUID": "54005b1edb806f7c3486d1a3bda28738b359935c" - }, - "pb-IF4LM2kN": { - "display_string": [ - "\ue063kushal9610" - ], - "profiles": [], - "name": "\ue063kushal9610", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-02 13:42:19", - "registerOn": 1685895299.7945018, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685895299.7945025, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685895299.7945092, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685895299.7945104, - "lastIP": "dvvb\u007fm~|l~}`", - "deviceUUID": "50f2d13d2b70e744edcedb506895702c4c4baa9d" - }, - "pb-IF4HU0U-Dw==": { - "display_string": [ - "\ue063MrGogito" - ], - "profiles": [], - "name": "\ue063MrGogito", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 16:21:01", - "registerOn": 1685895302.0364227, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685895302.0364232, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685895302.0364535, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685895302.0364547, - "lastIP": "dvvb\u007fm~|l~}`", - "deviceUUID": "cbf117a5e890ea85c889cfa01f0cffae98e229ac" - }, - "pb-IF4wVVk8Jg==": { - "display_string": [ - "\ue063Homulilly" - ], - "profiles": [], - "name": "\ue063Homulilly", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-23 22:49:07", - "registerOn": 1685895503.3662484, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685895503.3662488, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686399562.0096064, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686399597.0952578, - "lastIP": "a\u007fk~~`baifyvgz", - "deviceUUID": "62530b9e52c0b6fdb4947cced368552fe14938cf", - "cMsgCount": 0, - "lastMsgTime": 1686296892.4216235, - "lastMsg": "\ud83d\ude20", - "cSameMsg": 0 - }, - "pb-IF4UUGkHVA==": { - "display_string": [ - "\ue030Android65179175" - ], - "profiles": [], - "name": "\ue030Android65179175", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-02 15:47:33", - "registerOn": 1685895736.5101843, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685895736.5101848, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685895736.5101926, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685895736.5101936, - "lastIP": "azo~{j~~vi\u007f", - "deviceUUID": "fb82fc018f254a4c5ddbd027c764e2e378c3bde7" - }, - "pb-IF42U1MvNg==": { - "display_string": [ - "\ue063FallenLati" - ], - "profiles": [], - "name": "\ue063FallenLati", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-27 17:34:08", - "registerOn": 1685895917.9826965, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685895917.9826972, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685895917.9827087, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685896081.2474887, - "lastIP": "eaa`ai`xva}n", - "deviceUUID": "07007f2e0e6fdfb0d7925b5381e9b538574461d3" - }, - "pb-IF4zUxYJEw==": { - "display_string": [ - "\ue063FrostedLor" - ], - "profiles": [], - "name": "\ue063FrostedLor", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-19 22:59:21", - "registerOn": 1685897256.0995202, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685897256.099521, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685897256.0995271, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685897256.099528, - "lastIP": "a}l~~meaje{vaym", - "deviceUUID": "232ed654e1e17ea8b63c0e367c0c223ad5de6d8a" - }, - "pb-IF5VUGpdKg==": { - "display_string": [ - "\ue030Android65125599" - ], - "profiles": [], - "name": "\ue030Android65125599", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-24 20:35:12", - "registerOn": 1685897458.6496181, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685897458.6496186, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685897458.6496253, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685897458.6496263, - "lastIP": "dvvb\u007fm~wj~~jb", - "deviceUUID": "7edab0d9e08a1d755d06a9a7f4577e31ae39e99b" - }, - "pb-IF4vU0MENg==": { - "display_string": [ - "\ue063harshal" - ], - "profiles": [], - "name": "\ue063harshal", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-22 21:41:30", - "registerOn": 1685897483.7209902, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685897483.720991, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686216205.0434515, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686216182.4840093, - "lastIP": "a\u007fn~}icaagaidx", - "deviceUUID": "6382f3717c6ac3650740a14e9d6ab4b67728a26a", - "cMsgCount": 0, - "lastMsgTime": 1686216205.0433934, - "lastMsg": "/me", - "cSameMsg": 0 - }, - "pb-IF4HVHpcFQ==": { - "display_string": [ - "\ue063EliteSage2" - ], - "profiles": [], - "name": "\ue063EliteSage2", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-21 13:59:15", - "registerOn": 1685897809.9322286, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685897809.9322293, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686382068.2321563, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686392131.1853511, - "lastIP": "dvvcyva}h~~m", - "deviceUUID": "722099821f2d7b77a509edac87bacc7f8a830939", - "cMsgCount": 0, - "lastMsgTime": 1685898442.440952, - "lastMsg": "sry", - "cSameMsg": 0 - }, - "pb-IF4WUGcuIA==": { - "display_string": [ - "\ue063Kukdi" - ], - "profiles": [], - "name": "\ue063Kukdi", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-19 19:56:50", - "registerOn": 1685898307.7398095, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685898307.73981, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685898307.739817, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685898307.7398176, - "lastIP": "dvvczvavl~xk", - "deviceUUID": "fac9b50eb9f53d2a1eed5fc6fb283380d755dd33", - "cMsgCount": 2, - "lastMsgTime": 1685899170.1421645, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4IUGExHw==": { - "display_string": [ - "\ue063Rocksol681" - ], - "profiles": [], - "name": "\ue063Rocksol681", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-18 13:54:54", - "registerOn": 1685898744.9379048, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685898744.9379063, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686312881.4152722, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686313275.2925587, - "lastIP": "awj~ym~}lgaji", - "deviceUUID": "f7691dea6c35e9b72eb55bb69fa024eb1abf57e6", - "cMsgCount": 0, - "lastMsgTime": 1685976739.4947617, - "lastMsg": ". do it", - "cSameMsg": 0 - }, - "pb-IF5cUnQqHA==": { - "display_string": [ - "\ue063Unyieldi31" - ], - "profiles": [], - "name": "\ue063Unyieldi31", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-08 17:29:12", - "registerOn": 1685899032.5064712, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685899032.5064719, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685899032.5064793, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685899032.5064807, - "lastIP": "a\u007fk~vm~wi~{a", - "deviceUUID": "115323723d0de932467f154cc8c1aea75c7b3f7c" - }, - "pb-IF4iUGk5Aw==": { - "display_string": [ - "\ue030Android65194381" - ], - "profiles": [], - "name": "\ue030Android65194381", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 19:37:52", - "registerOn": 1685899285.6863399, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685899285.686341, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685899285.686347, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685899285.6863484, - "lastIP": "azo~|j~|n~}kd", - "deviceUUID": "37eadc37d66cb2676feb273a6b0d40fb321610a4" - }, - "pb-IF49VFQlPA==": { - "display_string": [ - "\ue063PAMU628", - "\ue063Aikuros" - ], - "profiles": [], - "name": "\ue063Aikuros", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-23 14:22:54", - "registerOn": 1685900047.5070214, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685900047.5070221, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686338265.7347305, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686338277.7734551, - "lastIP": "azo~zh~}i~~lh", - "deviceUUID": "495a6864495ade412247de1824d348dfe1ca43d4", - "cMsgCount": 1, - "lastMsgTime": 1686339872.8567216, - "lastMsg": "come rico", - "cSameMsg": 0 - }, - "pb-IF4FV0xYAg==": { - "display_string": [ - "\ue063MetalTorc3" - ], - "profiles": [], - "name": "\ue063MetalTorc3", - "isBan": false, - "isMuted": false, - "accountAge": "2019-03-23 12:28:25", - "registerOn": 1685902737.5351145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685902737.535115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685902737.535122, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685902737.5351226, - "lastIP": "dvvcxvg|vb|l", - "deviceUUID": "d0bb95b4e40a3cb3ade0c2c69294eb8ceda4f4ef" - }, - "pb-IF4AUGkaUQ==": { - "display_string": [ - "\ue063ThriftySu3" - ], - "profiles": [], - "name": "\ue063ThriftySu3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 20:56:51", - "registerOn": 1685902813.1256425, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685902813.1256433, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685902813.1256523, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685902813.1256533, - "lastIP": "azj~z`~~`~~jb", - "deviceUUID": "afebf17af2211e4f4ffd62a65558499641b0d9d8" - }, - "pb-IF4sUGQ_Vw==": { - "display_string": [ - "\ue063Handsom372" - ], - "profiles": [], - "name": "\ue063Handsom372", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-09 23:48:23", - "registerOn": 1685903233.6890898, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685903233.6890905, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685903233.6890974, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685903233.6890986, - "lastIP": "b}k~~oha``aihy", - "deviceUUID": "5ebe17b9a3997d120c7bdb4380fdf452548c4aee" - }, - "pb-IF4xUhUoLQ==": { - "display_string": [ - "\ue063Derivati12" - ], - "profiles": [], - "name": "\ue063Derivati12", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-27 20:05:29", - "registerOn": 1685903684.2908354, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685903684.2908363, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686127924.0478525, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686128261.3106613, - "lastIP": "azj~zo~~o`ajdv", - "deviceUUID": "5127f3db98893e1be9651ab9e524b1cd1074ff0c", - "cMsgCount": 0, - "lastMsgTime": 1686128226.271424, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF40UBNeFg==": { - "display_string": [ - "\ue063Materia104" - ], - "profiles": [], - "name": "\ue063Materia104", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-05 01:06:00", - "registerOn": 1685904080.0365686, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685904080.0365696, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686162133.1067188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686162133.10672, - "lastIP": "aaihxvb~l~~k", - "deviceUUID": "9cc6624173bef69fda79b5e1a6ceed20e9106d86", - "cMsgCount": 0, - "lastMsgTime": 1685904115.603105, - "lastMsg": "hello aikuros bhaiya ", - "cSameMsg": 0 - }, - "pb-IF4iVGYNEA==": { - "display_string": [ - "\ue063kharwa684" - ], - "profiles": [], - "name": "\ue063kharwa684", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-17 16:41:46", - "registerOn": 1685904557.5705938, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685904557.5705945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685904557.5706022, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685904557.570603, - "lastIP": "aakhaidzva", - "deviceUUID": "1f7ae0e2f8f1e1cbe24c00b30a7fa0c4a2e6d6fc" - }, - "pb-IF4LVW5cMQ==": { - "display_string": [ - "\ue063xblood98x", - "\ue063MrBoss398", - "\ue047Aaliyah\ue047" - ], - "profiles": [], - "name": "\ue063xblood98x", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-14 01:19:41", - "registerOn": 1685904671.97012, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1685906349.0384264, - "totaltimeplayer": 0, - "warnCount": 3, - "lastWarned": 1685906349.037539, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685906717.4091508, - "lastIP": "a\u007fl~}`~~mfai`", - "deviceUUID": "4872f6912c0df321761914266c0ff4d9df1d8e1c", - "cMsgCount": 0, - "lastMsgTime": 1685906349.0371547, - "lastMsg": "sus", - "cSameMsg": 0 - }, - "pb-IF4cVGMHLA==": { - "display_string": [ - "\ue063masoom1980" - ], - "profiles": [], - "name": "\ue063masoom1980", - "isBan": false, - "isMuted": false, - "accountAge": "2019-08-29 17:41:57", - "registerOn": 1685904926.3145494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685904926.3145506, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686333950.2276206, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686333950.2276216, - "lastIP": "a\u007fn~~adaje\u007fvbw", - "deviceUUID": "b055fe844b57210943a3bba37a3a7be5abc140d9", - "cMsgCount": 0, - "lastMsgTime": 1686166025.7060647, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4yUBElCg==": { - "display_string": [ - "\ue063ImpudentOu" - ], - "profiles": [], - "name": "\ue063ImpudentOu", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-22 19:47:58", - "registerOn": 1685906122.5539129, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685906122.5539136, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685906122.5539224, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685906122.5539234, - "lastIP": "a\u007fn~}jbamcajdv", - "deviceUUID": "08f82a2aeb797a2a2dc371d32962f9af31c491d1" - }, - "pb-IF4mUBFcUw==": { - "display_string": [ - "\ue063KARObstina" - ], - "profiles": [], - "name": "\ue063KARObstina", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-22 15:00:56", - "registerOn": 1685906209.859212, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685906209.8592129, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685985488.4799404, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685985488.4799414, - "lastIP": "a\u007fn~~acaliaiay", - "deviceUUID": "8759f152b99cfddd8c69e6a07a06adaec7e045f2" - }, - "pb-IF4gUnozMg==": { - "display_string": [ - "\ue063saaidicom" - ], - "profiles": [], - "name": "\ue063saaidicom", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-15 02:26:14", - "registerOn": 1685906723.13059, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685906723.1305904, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685906723.1305976, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685906955.2383866, - "lastIP": "ayh~~oganaaihy", - "deviceUUID": "c87f80fdbfa52859de2a813d657598b0fd6df74e" - }, - "pb-IF41UGlZIQ==": { - "display_string": [ - "\ue063KraZysoY56" - ], - "profiles": [], - "name": "\ue063KraZysoY56", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-01 13:39:06", - "registerOn": 1685907007.7179666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685907007.7179675, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685907007.7179766, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685907007.7179773, - "lastIP": "azo~{j~~vi\u007f", - "deviceUUID": "534ca8afe1a39ea924df59ae1f1c43b09bf1ac8d" - }, - "pb-IF4XDnY_": { - "display_string": [ - "\ue063jhonaskhan" - ], - "profiles": [], - "name": "\ue063jhonaskhan", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-31 16:40:56", - "registerOn": 1685911702.6142921, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685911702.6142933, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685911702.6143007, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685911702.614302, - "lastIP": "b}k~}kiakdaja\u007f", - "deviceUUID": "49e8d0580b7208b00968f7d8e5b37143681d70c3" - }, - "pb-IF4wUGkjCw==": { - "display_string": [ - "\ue063FreakySpe3" - ], - "profiles": [], - "name": "\ue063FreakySpe3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-29 13:04:41", - "registerOn": 1685912428.7677534, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685912428.7677543, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685912428.767761, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685912428.767762, - "lastIP": "a\u007fk~~aiajb{vb~a", - "deviceUUID": "5dde55d6a857a6f1dd668612ad69900383c0fec5" - }, - "pb-IF5UUGooLw==": { - "display_string": [ - "\ue030Android65138693" - ], - "profiles": [], - "name": "\ue030Android65138693", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-26 22:54:32", - "registerOn": 1685913674.4329515, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685913674.432953, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685913674.432962, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685913674.4329631, - "lastIP": "awk~~oaaib~vh\u007f", - "deviceUUID": "e90533c392f4069119f41beaf17dc6f54da5450c" - }, - "pb-IF4DUGkvMw==": { - "display_string": [ - "\ue030Android65160470" - ], - "profiles": [], - "name": "\ue030Android65160470", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-30 10:30:05", - "registerOn": 1685914622.9735868, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685914622.9735878, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685914622.9735968, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685914622.9735978, - "lastIP": "a\u007fk~}mcaleaig}", - "deviceUUID": "6eff1597565fad52642ef84e5a11bcf454860457" - }, - "pb-IF4TUmcFEQ==": { - "display_string": [ - "\ue030Android55478779" - ], - "profiles": [], - "name": "\ue030Android55478779", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-21 05:14:27", - "registerOn": 1685918000.4103146, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685918000.4103153, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685918000.410333, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685918000.4103336, - "lastIP": "axk~}ifameaihy", - "deviceUUID": "9f182025060954e36dc1f5c98753be6fb09b3311", - "cMsgCount": 0, - "lastMsgTime": 1685920055.2328463, - "lastMsg": "pm", - "cSameMsg": 0 - }, - "pb-IF4pU1U8VQ==": { - "display_string": [ - "\ue030Android64197238" - ], - "profiles": [], - "name": "\ue030Android64197238", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-06 08:03:00", - "registerOn": 1685918086.6602764, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685918086.6602774, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686001440.277382, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686001440.2773833, - "lastIP": "a~i~vj~xl~}ji", - "deviceUUID": "10c5129130345ffd919d3546c3dc1729aa6ba63f", - "cMsgCount": 0, - "lastMsgTime": 1685920128.735492, - "lastMsg": "cya", - "cSameMsg": 0 - }, - "pb-IF4PUGFaAQ==": { - "display_string": [ - "\ue063HybridPrac" - ], - "profiles": [], - "name": "\ue063HybridPrac", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-12 21:11:13", - "registerOn": 1685923022.8331542, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685923022.8331552, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685923022.8331628, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685923022.8331637, - "lastIP": "azj~zo~}iaami", - "deviceUUID": "b47755b33b19af71368a2901eece694bd27fbec6" - }, - "pb-IF5TUGo6VQ==": { - "display_string": [ - "\ue030Android65141946" - ], - "profiles": [], - "name": "\ue030Android65141946", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-27 13:15:10", - "registerOn": 1685924030.65205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685924030.6520507, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686305994.3953445, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686309269.6483343, - "lastIP": "bxvc{ve\u007fvayo", - "deviceUUID": "8d3fe4543537d59a49571b4432ccf773907d5082", - "cMsgCount": 0, - "lastMsgTime": 1686207166.0594919, - "lastMsg": "damn playing on phone is hard", - "cSameMsg": 0 - }, - "pb-IF5cVVM-": { - "display_string": [ - "\ue063NoName44141d", - "\ue030Android25982590", - "\ue030Android25872152" - ], - "profiles": [], - "name": "\ue063NoName44141d", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-16 13:19:09", - "registerOn": 1685933443.282893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685933443.282894, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685933443.2829227, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685933443.2829237, - "lastIP": "a~h~}jdaaeaj`{", - "deviceUUID": "6f571c9657a3e7ceca4d0a2ef9b68f16c33be75e" - }, - "pb-IF4UUGpcAg==": { - "display_string": [ - "\ue063Incapab358" - ], - "profiles": [], - "name": "\ue063Incapab358", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 20:48:03", - "registerOn": 1685935646.9163792, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685935646.9163797, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685935646.9163883, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685935646.9163897, - "lastIP": "azo~|`~yk~w", - "deviceUUID": "f111b097cde33f2e01db83d80c85b0cbe9370ccd" - }, - "pb-IF4nUnZfJg==": { - "display_string": [ - "\ue063Loiteri140" - ], - "profiles": [], - "name": "\ue063Loiteri140", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-25 20:40:52", - "registerOn": 1685938489.170622, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685938489.170623, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686302409.8964097, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686302409.8964112, - "lastIP": "azo~|j~}meai`v", - "deviceUUID": "4ba0df99dfeca7b3c40f7493f1c2420e1b54ed88", - "cMsgCount": 0, - "lastMsgTime": 1685944310.3927112, - "lastMsg": "game rame x", - "cSameMsg": 0 - }, - "pb-IF5UVEMIIg==": { - "display_string": [ - "\ue063OM189" - ], - "profiles": [], - "name": "\ue063OM189", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-29 08:48:11", - "registerOn": 1685939148.0819814, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685939148.0819821, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685939148.0825412, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685943309.940392, - "lastIP": "azo~|j~}liajb|", - "deviceUUID": "787c0e5b9335d70682a4629f650dd827a524180f" - }, - "pb-IF4-Uk4mEA==": { - "display_string": [ - "\ue063GroaningGl", - "\ue030Android59807208" - ], - "profiles": [], - "name": "\ue063GroaningGl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-09 11:11:12", - "registerOn": 1685942794.539002, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685942794.5390022, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686199898.1916113, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686199959.4036028, - "lastIP": "dvvcxvg{vdx", - "deviceUUID": "b1920ab07bd50671fd0897a7c4ccab774e5adc53", - "cMsgCount": 2, - "lastMsgTime": 1685984834.6377387, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4uUk4vMg==": { - "display_string": [ - "\ue063FuriousPhy" - ], - "profiles": [], - "name": "\ue063FuriousPhy", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-09 11:10:37", - "registerOn": 1685942879.6264908, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685942879.6264913, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686201500.3643978, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686199913.2375226, - "lastIP": "a~h~}jgaic~vb\u007f", - "deviceUUID": "6635c2af1bf357a9e95bbf3d6082a39d14dc3cdb", - "cMsgCount": 0, - "lastMsgTime": 1686201500.3645527, - "lastMsg": "mc", - "cSameMsg": 0 - }, - "pb-IF4CUGJeEw==": { - "display_string": [ - "\ue063theonlyjay" - ], - "profiles": [], - "name": "\ue063theonlyjay", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-18 17:33:13", - "registerOn": 1685943083.3394043, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685943083.339405, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685943083.3394158, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685943083.339417, - "lastIP": "a}j~~oba`gan", - "deviceUUID": "c9f528d7195d6911a320906a90e3bbfde07ba8a8" - }, - "pb-IF4VUGYlAg==": { - "display_string": [ - "\ue063gangster16" - ], - "profiles": [], - "name": "\ue063gangster16", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-17 11:55:33", - "registerOn": 1685943290.1644864, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685943290.1644874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685943290.1644957, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685943290.164497, - "lastIP": "a\u007fn~}icaic\u007fvaym", - "deviceUUID": "29cdc90ebdf75418117de71202892201257e64a2" - }, - "pb-IF5WUGsqEA==": { - "display_string": [ - "\ue030Android65178811", - "\ue030Android65178798", - "\ue030Android65178855", - "\ue030Android65178720", - "\ue030Android65178877" - ], - "profiles": [], - "name": "\ue030Android65178798", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-02 14:31:01", - "registerOn": 1685943633.7843394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685943633.7843401, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685943633.78435, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685943633.7843509, - "lastIP": "a\u007fn~}ieaje\u007fva", - "deviceUUID": "36fc8a1b57badfe90fd4d68322c19b78bf01d58a" - }, - "pb-IF4mU3IFMw==": { - "display_string": [ - "\ue063MeanestRe2" - ], - "profiles": [], - "name": "\ue063MeanestRe2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 22:05:54", - "registerOn": 1685943837.2628474, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685943837.2628481, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686142661.5874627, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686142661.5874636, - "lastIP": "a\u007fk~}i~~neajd}", - "deviceUUID": "317d3f94f15c9f0fcc8e560f5fa6377a7227f862", - "cMsgCount": 0, - "lastMsgTime": 1685944753.8412697, - "lastMsg": "i will kill u mf", - "cSameMsg": 0 - }, - "pb-IF4pU2ICCg==": { - "display_string": [ - "\ue063BroadestNi" - ], - "profiles": [], - "name": "\ue063BroadestNi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-06 12:54:25", - "registerOn": 1685944021.2030756, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685944021.2030766, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686245976.907569, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686245976.9075701, - "lastIP": "azo~|j~}heaib", - "deviceUUID": "8003a9b2cc7893c194deb4d708f9cde2b6e43b1e" - }, - "pb-IF4NUGgHNg==": { - "display_string": [ - "\ue030Android65184233" - ], - "profiles": [], - "name": "\ue030Android65184233", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-03 10:32:01", - "registerOn": 1685944331.3900971, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685944331.3900979, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685944331.3901045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685944331.3901052, - "lastIP": "a~o~}hea`daif|", - "deviceUUID": "330eb667ecfe97e21fc7087be2f944a07c082b3f" - }, - "pb-IF4dU2QjBA==": { - "display_string": [ - "\ue063DapperDust", - "\ue030Android44222806" - ], - "profiles": [], - "name": "\ue063DapperDust", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-13 13:46:57", - "registerOn": 1685944334.16583, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685944334.1658306, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685944334.1658368, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685944334.165838, - "lastIP": "evvhvvc\u007fvb{l", - "deviceUUID": "aca0e48b8fe3a60a49e99425b57aff3b64ef6ddd" - }, - "pb-IF4UUGZeIw==": { - "display_string": [ - "\ue030Android65048982" - ], - "profiles": [], - "name": "\ue030Android65048982", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-12 16:30:38", - "registerOn": 1685944554.0746489, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685944554.0746493, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685944554.0746562, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685944554.0746574, - "lastIP": "azj~z`~~`iai`\u007f", - "deviceUUID": "a7f0bac72e6969b0309781f12e80696d4d6d38d3" - }, - "pb-IF41UlMNFw==": { - "display_string": [ - "\ue063ArdentInit" - ], - "profiles": [], - "name": "\ue063ArdentInit", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-29 19:17:48", - "registerOn": 1685944777.941883, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685944777.9418836, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685944777.94189, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685944777.941891, - "lastIP": "azo~zi~~iiakh", - "deviceUUID": "893dee28c59b38cfaeeeac4571f46645ca7d8005" - }, - "pb-IF4mVGZaCw==": { - "display_string": [ - "\ue063iBombsquad" - ], - "profiles": [], - "name": "\ue063iBombsquad", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-11 23:42:41", - "registerOn": 1685945326.9670177, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685945326.9670186, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686115231.5654988, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686115231.5655007, - "lastIP": "dvvc}va|a~}o", - "deviceUUID": "5443e8995950585d3d18b3f58b0e281b86b8d92b", - "cMsgCount": 1, - "lastMsgTime": 1686115241.383992, - "lastMsg": " ", - "cSameMsg": 0 - }, - "pb-IF4hUmYfMA==": { - "display_string": [ - "\ue063UnheardCe3" - ], - "profiles": [], - "name": "\ue063UnheardCe3", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-20 18:59:39", - "registerOn": 1685945389.156675, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685945389.1566756, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685945389.1566825, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685945389.1566834, - "lastIP": "d|vbzh~~miaie{", - "deviceUUID": "ad7801172f7d74deb78fee7fdb9a1c34416f26a3" - }, - "pb-IF5RUGxdLA==": { - "display_string": [ - "\ue063Android65184544" - ], - "profiles": [], - "name": "\ue063Android65184544", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-03 12:00:28", - "registerOn": 1685946331.5966318, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685946331.5966334, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685946331.5966408, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685946855.6114585, - "lastIP": "a~h~}jdai`wvdz", - "deviceUUID": "c53329505d50b82632899f6e92e0f402d9550725", - "cMsgCount": 0, - "lastMsgTime": 1685946437.176685, - "lastMsg": "/em hi", - "cSameMsg": 0 - }, - "pb-IF5XUGYhDQ==": { - "display_string": [ - "\ue063AcidicBeat" - ], - "profiles": [], - "name": "\ue063AcidicBeat", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-30 06:30:39", - "registerOn": 1685946456.5047605, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685946456.504761, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686108923.178496, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686108923.1784973, - "lastIP": "azo~{n~~ibai`z", - "deviceUUID": "b1aca8f0a101de39f68a0aa1b4c592d9c46fc9b0" - }, - "pb-IF4CUGQtDA==": { - "display_string": [ - "\ue063LitDevice3" - ], - "profiles": [], - "name": "\ue063LitDevice3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-01 22:03:26", - "registerOn": 1685947436.4259882, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685947436.4259887, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685947436.4259953, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685947436.425996, - "lastIP": "awk~wj~}hdaia~", - "deviceUUID": "513c6269878ff0fc19be8f206c0d68e96b0c06c7" - }, - "pb-IF5QUGc7Ng==": { - "display_string": [ - "\ue063Effecti295" - ], - "profiles": [], - "name": "\ue063Effecti295", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-06 12:41:16", - "registerOn": 1685947499.3755748, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685947499.3755755, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685947499.3755827, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685947499.375584, - "lastIP": "a\u007fa~}mbaii~vfv", - "deviceUUID": "9e3990efa1cdddcba6f055914d8b4cd6fc1ea9f9" - }, - "pb-IF4-UGIEXQ==": { - "display_string": [ - "\ue063LocalEnume" - ], - "profiles": [], - "name": "\ue063LocalEnume", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-23 11:28:39", - "registerOn": 1685948396.8749657, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685948396.8749666, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686065461.537806, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686065759.7353733, - "lastIP": "azo~{a~~nbaiav", - "deviceUUID": "b360f68b4959d171a06bd29cb63b86a0291d844d" - }, - "pb-IF4WLEsf": { - "display_string": [ - "\ue063Thunderbir", - "\ue030Android32596318", - "\ue030Android39639104" - ], - "profiles": [], - "name": "\ue063Thunderbir", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-17 15:25:01", - "registerOn": 1685948481.193445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685948481.1934457, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685948481.193453, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685948481.193454, - "lastIP": "dvvcxvb{i~}`", - "deviceUUID": "bb005f8125b4cc2437589e64b1e0bfd55757fbf1", - "cMsgCount": 0, - "lastMsgTime": 1685948641.2403412, - "lastMsg": ". test", - "cSameMsg": 0 - }, - "pb-IF4LUGYKPw==": { - "display_string": [ - "\ue063BrinyLunat" - ], - "profiles": [], - "name": "\ue063BrinyLunat", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-20 12:48:37", - "registerOn": 1685949905.9817863, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685949905.9817874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686302772.2537396, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686302772.253741, - "lastIP": "a~n~}hfak`amf", - "deviceUUID": "6afd5a128c0a5a36176d7b5d5cb6f2d966270775", - "cMsgCount": 0, - "lastMsgTime": 1686303133.7794306, - "lastMsg": "hi guys", - "cSameMsg": 0 - }, - "pb-IF4QVXUqDg==": { - "display_string": [ - "\ue063ismartrohi" - ], - "profiles": [], - "name": "\ue063ismartrohi", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-02 16:35:13", - "registerOn": 1685950594.2325294, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685950594.2325299, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685950594.2325387, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685950594.2325397, - "lastIP": "azj~zo~wi~}ib", - "deviceUUID": "b444df0e41b7b166009a05df8e7cb4794be462e4" - }, - "pb-IF4dVVMqEA==": { - "display_string": [ - "\ue063Faction196" - ], - "profiles": [], - "name": "\ue063Faction196", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-26 20:03:03", - "registerOn": 1685950837.3734207, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685950837.373422, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685950837.373431, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685950837.3734322, - "lastIP": "a\u007fn~}iaakfaje~", - "deviceUUID": "f6c530a85834c01bb46f1bd7383c924f201b1a3e" - }, - "pb-IF4LVWEaPw==": { - "display_string": [ - "\ue063Dominat692", - "\ue030Android48339049" - ], - "profiles": [], - "name": "\ue063Dominat692", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-13 13:49:21", - "registerOn": 1685950908.6641426, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685950908.6641433, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685950908.664151, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685950908.6641524, - "lastIP": "dvvcyvb}i~~ha", - "deviceUUID": "cffd61797fd9d0f1729ffe7d0fd4f83e51898ffd" - }, - "pb-IF4GUGc_XA==": { - "display_string": [ - "\ue063GMDNB" - ], - "profiles": [], - "name": "\ue063GMDNB", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-20 14:00:03", - "registerOn": 1685951066.5271678, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685951066.5271685, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685951066.5271769, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685951066.527178, - "lastIP": "azj~z`~|o~~`d", - "deviceUUID": "1c839c5f99a02958384150fbadd025922191c34a" - }, - "pb-IF4iUms9Nw==": { - "display_string": [ - "\ue030Android55879409" - ], - "profiles": [], - "name": "\ue030Android55879409", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-07 16:11:41", - "registerOn": 1685951182.1655111, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685951182.1655118, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685951182.16552, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685951182.1655211, - "lastIP": "azi~}mdaje\u007fva}l", - "deviceUUID": "c5e62bee1e71c6647970f10472027e224f31044a" - }, - "pb-IF4JUGkiEw==": { - "display_string": [ - "\ue063RegalCroc4" - ], - "profiles": [], - "name": "\ue063RegalCroc4", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-02 13:10:04", - "registerOn": 1685951345.9847665, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685951345.9847672, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685951345.9847734, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685951345.9847744, - "lastIP": "a\u007fn~}hcaia}va|i", - "deviceUUID": "78a7e63c8b9a8c1c1e85c53b69d24874935ee75d" - }, - "pb-IF5WUmVdDQ==": { - "display_string": [ - "\ue063Electroo" - ], - "profiles": [], - "name": "\ue063Electroo", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-28 12:28:16", - "registerOn": 1685951560.458657, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685951560.4586577, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686312031.8651395, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686312031.865141, - "lastIP": "a\u007fk~~ncaii~ve}", - "deviceUUID": "6e77e4d6569489606b21c74613feb3498cce0cc9" - }, - "pb-IF49U1gjIg==": { - "display_string": [ - "\ue063Connect125" - ], - "profiles": [], - "name": "\ue063Connect125", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-28 19:18:46", - "registerOn": 1685952902.6431344, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685952902.6431358, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685952902.6431644, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685952902.6431653, - "lastIP": "azj~zo~wl~~o`", - "deviceUUID": "f82371239f6107dad9d22551ead0db03f86b552c" - }, - "pb-IF4oVUw_Uw==": { - "display_string": [ - "\ue063singhprith" - ], - "profiles": [], - "name": "\ue063singhprith", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-23 19:30:50", - "registerOn": 1685953008.0897582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685953008.0897589, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685953008.0897677, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685953008.0897686, - "lastIP": "dvvcyvbzvg|", - "deviceUUID": "d24bae5fdb4f7cc1b1ebec8f198cc82573feb044" - }, - "pb-IF4oUGYGNA==": { - "display_string": [ - "\ue063pranitsoma" - ], - "profiles": [], - "name": "\ue063pranitsoma", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-18 13:23:56", - "registerOn": 1685953145.6128955, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685953145.6128962, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685953145.6129045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685953145.6129055, - "lastIP": "a\u007fk~}leai`zva\u007f", - "deviceUUID": "5f94715e1ae59e2fa9d499799e47194888c6f7d9" - }, - "pb-IF42UGg4Vw==": { - "display_string": [ - "\ue063SHEBBYBOLT" - ], - "profiles": [], - "name": "\ue063SHEBBYBOLT", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-28 12:12:12", - "registerOn": 1685953632.4692569, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685953632.4692578, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685953632.4692657, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685953632.4692667, - "lastIP": "a\u007fk~~j`aacaog", - "deviceUUID": "e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb" - }, - "pb-IF43UBIIFQ==": { - "display_string": [ - "\ue063PrimLieute" - ], - "profiles": [], - "name": "\ue063PrimLieute", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-28 14:43:52", - "registerOn": 1685954133.8329258, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685954133.8329263, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685954133.832933, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685959570.0873728, - "lastIP": "dvvc{vaxl~~le", - "deviceUUID": "43f025b93e7eb580fdce4a93aa338f5ed5556390" - }, - "pb-IF42U2IHUA==": { - "display_string": [ - "\ue063Crystall58", - "\ue030Android63626212", - "\ue030Android63626171", - "\ue030Android63626178", - "\ue030Android63626214" - ], - "profiles": [], - "name": "\ue063Crystall58", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-08 23:39:32", - "registerOn": 1685954514.2947984, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685954514.2947989, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685954514.2948048, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685954514.2948055, - "lastIP": "a\u007fk~~mhaicvva}", - "deviceUUID": "8f9ad87f82377a16f1bb24f26c72efbe07ef4a05" - }, - "pb-IF4cUkM4KA==": { - "display_string": [ - "\ue063PANZERGMER" - ], - "profiles": [], - "name": "\ue063PANZERGMER", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-25 22:42:09", - "registerOn": 1685954696.036972, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685954696.0369725, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685954696.0369794, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685956494.5202186, - "lastIP": "a\u007fn~}idaig~vix", - "deviceUUID": "9bc7a3f5775e72da256f5f41eab0f446aaadc746" - }, - "pb-JiNJARFTUUFDX11GF0JVU1ZKGUhYQ1BK": { - "display_string": [ - "\ue063asxd", - "\ue030Android13750069" - ], - "profiles": [], - "name": "\ue063asxd", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-27 13:50:16", - "registerOn": 1685954713.1593907, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685954713.159391, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685954713.1593995, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685954713.1594007, - "lastIP": "azo~{a~~obaob", - "deviceUUID": "13fd4d208b3983f6e77c54b188c869c0b4091f3a" - }, - "pb-IF4RUxcRVw==": { - "display_string": [ - "\ue063Varshan" - ], - "profiles": [], - "name": "\ue063Varshan", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-24 19:18:47", - "registerOn": 1685954723.1018844, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685954723.1018848, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685954723.101892, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685954723.1018932, - "lastIP": "azo~{a~}kdajd}", - "deviceUUID": "76d4fe03c8f284420c1c788c4dfb75b38f4588c3" - }, - "pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB": { - "display_string": [ - "\ue063OpposingB3", - "\ue030Android18391339", - "\ue030PC201741", - "\ue030PC267200", - "\ue030Android46919247" - ], - "profiles": [], - "name": "\ue063OpposingB3", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-17 21:00:43", - "registerOn": 1685955431.9300346, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685955431.930035, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685979592.5915966, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685976403.5305557, - "lastIP": "b}k~~ohaja}vh|", - "deviceUUID": "78c06b4d948c8b6425fd95b584f9c5243e2bfa5b", - "cMsgCount": 0, - "lastMsgTime": 1685983369.10423, - "lastMsg": "hi friends", - "cSameMsg": 0 - }, - "pb-IF4zUGMGBg==": { - "display_string": [ - "\ue063NighBluepr" - ], - "profiles": [], - "name": "\ue063NighBluepr", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-29 14:29:48", - "registerOn": 1685955770.0895994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685955770.0896, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685955770.0896068, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685955770.089608, - "lastIP": "bxvf\u007fvayh~zl", - "deviceUUID": "e4c808c21493a1022f76463583bc441199cb7acc" - }, - "pb-IF5SUGs7IQ==": { - "display_string": [ - "\ue063BrassCongr" - ], - "profiles": [], - "name": "\ue063BrassCongr", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-02 13:57:15", - "registerOn": 1685956048.1445167, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685956048.1445172, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685956048.144523, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685956048.144524, - "lastIP": "aakhaih~ve|", - "deviceUUID": "9dbfce80064bf80513dc56dc995de0bf29d30153" - }, - "pb-IF5UU1UmNQ==": { - "display_string": [ - "\ue063Insisten38" - ], - "profiles": [], - "name": "\ue063Insisten38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-27 14:22:14", - "registerOn": 1685956212.724916, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685956212.7249167, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685956212.7249253, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685956212.7249262, - "lastIP": "azj~zo~|l~}hc", - "deviceUUID": "dde6b79db3ce96a18320f048758cdee0f0149fa8" - }, - "pb-IF4tVGtfDQ==": { - "display_string": [ - "\ue063Mudasser14" - ], - "profiles": [], - "name": "\ue063Mudasser14", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-14 17:08:08", - "registerOn": 1685956400.4949925, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685956400.494993, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685956400.4949994, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685956400.4950004, - "lastIP": "dvvc}va|a~~kg", - "deviceUUID": "20f7ffa7fc04ad49bcdee58ce9c8176c10a88710", - "cMsgCount": 0, - "lastMsgTime": 1685958015.6203492, - "lastMsg": "lol", - "cSameMsg": 0 - }, - "pb-IF4lUlBcCw==": { - "display_string": [ - "\ue063RainbowLo2" - ], - "profiles": [], - "name": "\ue063RainbowLo2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-14 21:11:51", - "registerOn": 1685956579.2852557, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685956579.2852561, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685956579.2852623, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685961377.839565, - "lastIP": "dvvd|vd~vaxm", - "deviceUUID": "c2eaf0fbd40a55ee44817b911bcb1124d8644b1f" - }, - "pb-IF5RUBUxAA==": { - "display_string": [ - "\ue063tenchogame" - ], - "profiles": [], - "name": "\ue063tenchogame", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-02 21:32:19", - "registerOn": 1685956811.0187001, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685956811.0187008, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685956811.0187397, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685956811.0187407, - "lastIP": "azo~|o~~lcaidw", - "deviceUUID": "86fe8f936634d05cef737a4a96ed579c3a881dfa" - }, - "pb-IF5VUkcmUA==": { - "display_string": [ - "\ue063Precipit18" - ], - "profiles": [], - "name": "\ue063Precipit18", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-30 16:13:18", - "registerOn": 1685957216.4589481, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685957216.4589486, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685957216.4589555, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685957216.4589562, - "lastIP": "azo~{a~~lfa`g", - "deviceUUID": "f934967df86e38208cb04aabce935cc3aa2348f4" - }, - "pb-IF5TUlkMVg==": { - "display_string": [ - "\ue063Unyieldi20" - ], - "profiles": [], - "name": "\ue063Unyieldi20", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-12 17:40:51", - "registerOn": 1685957774.6326525, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685957774.6326532, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1685957914.5221596, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685957774.6326604, - "lastIP": "azo~|k~~`~~lg", - "deviceUUID": "ebc5870b653cf4d77c0986cb482cc0d6bdcd6acf", - "cMsgCount": 0, - "lastMsgTime": 1685957974.602088, - "lastMsg": "&I m ur baap", - "cSameMsg": 0 - }, - "pb-IF4xVUUeFA==": { - "display_string": [ - "\ue063SHAD0WoooD" - ], - "profiles": [], - "name": "\ue063SHAD0WoooD", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-18 17:03:33", - "registerOn": 1685958633.7969675, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685958633.7969682, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685958633.7969759, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685958633.7969768, - "lastIP": "bxvc{vayvb{o", - "deviceUUID": "7052a5da1e6ade124c9cc1b03d7c04831b7f788a" - }, - "pb-IF5SUmgtCA==": { - "display_string": [ - "\ue030Android55311626" - ], - "profiles": [], - "name": "\ue030Android55311626", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-13 22:58:42", - "registerOn": 1685958828.5448375, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685958828.544838, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685958828.544845, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685959075.1555228, - "lastIP": "avm~}kdaib}vavh", - "deviceUUID": "3896cef2537a53fb2de798bd27e2d073e25adaf6", - "cMsgCount": 0, - "lastMsgTime": 1685959067.6985152, - "lastMsg": "tg", - "cSameMsg": 0 - }, - "pb-IF4cUxYIHw==": { - "display_string": [ - "\ue063AnuragRdav", - "\ue030Android60597659" - ], - "profiles": [], - "name": "\ue063AnuragRdav", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-20 16:06:53", - "registerOn": 1685958832.845075, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685958832.8450754, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686296014.200382, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686296157.690599, - "lastIP": "azo~{l~~mhaiay", - "deviceUUID": "e35939a5a05156aed985c7d695addffc44e4728d" - }, - "pb-IF5VVWlSPQ==": { - "display_string": [ - "\ue063ChiseledDw" - ], - "profiles": [], - "name": "\ue063ChiseledDw", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-14 11:49:30", - "registerOn": 1685959831.7012515, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685959831.7012527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685959831.7012603, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685959831.7012613, - "lastIP": "dvvc}vb|n~}ja", - "deviceUUID": "084e6e96e4fb40741ddb70667bf4dce9f265402c" - }, - "pb-IF4qUGkeKw==": { - "display_string": [ - "\ue063HindPiano8" - ], - "profiles": [], - "name": "\ue063HindPiano8", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 22:01:46", - "registerOn": 1685960057.175928, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685960057.1759284, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685960057.1759355, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685960057.1759365, - "lastIP": "dxvbvvaxi~}hh", - "deviceUUID": "7ae1a8d1ce69e61161a1f93f7bbe4e38ac19de80" - }, - "pb-IF4zU0xdJw==": { - "display_string": [ - "\ue063Definiti43", - "\ue030Android64641876" - ], - "profiles": [], - "name": "\ue063Definiti43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 13:50:40", - "registerOn": 1685960507.8817341, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685960507.8817348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685960507.881743, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685960507.8817441, - "lastIP": "azo~{l~~oeamf", - "deviceUUID": "8c1625d722061b5e3dbdfe0ade097aee1c1bb82b" - }, - "pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG": { - "display_string": [ - "\ue063MrSilver", - "\ue030Android6358589" - ], - "profiles": [], - "name": "\ue063MrSilver", - "isBan": false, - "isMuted": false, - "accountAge": "2016-09-03 23:57:18", - "registerOn": 1685961134.3089206, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685961134.308921, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686334406.9868016, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686334406.986803, - "lastIP": "a\u007fn~~aeaa~vk", - "deviceUUID": "822adb43af454f4ce0fdec16028787c26c151d5f", - "cMsgCount": 0, - "lastMsgTime": 1686336606.4110544, - "lastMsg": "don't waste time others want to play", - "cSameMsg": 0 - }, - "pb-IF4pUGYPVg==": { - "display_string": [ - "\ue063Abovemen85" - ], - "profiles": [], - "name": "\ue063Abovemen85", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-15 13:29:46", - "registerOn": 1685961176.4121566, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685961176.4121573, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685961176.4121642, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685961176.412165, - "lastIP": "bxveaid{vb{j", - "deviceUUID": "dc09898bcb4f8e35daf44f32470ebbcbe27a6510" - }, - "pb-IF5cUGYKMg==": { - "display_string": [ - "\ue063Profita308" - ], - "profiles": [], - "name": "\ue063Profita308", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-06 09:34:09", - "registerOn": 1685961198.4990058, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685961198.4990063, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685976680.5708175, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685976680.570819, - "lastIP": "b}k~}jgaiawva|", - "deviceUUID": "6d6871c9c40104bba207db42744660421fd89b58" - }, - "pb-IF4IUGQ_JA==": { - "display_string": [ - "\ue063Avoidab320" - ], - "profiles": [], - "name": "\ue063Avoidab320", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-06 14:15:43", - "registerOn": 1685961231.6227832, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685961231.6227837, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685961231.6227918, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685961231.6227925, - "lastIP": "azo~{n~~iiajc", - "deviceUUID": "d56cc0bde721028608f72178d3918f956ae9179f" - }, - "pb-IF4GUlEdMg==": { - "display_string": [ - "\ue063burningki2" - ], - "profiles": [], - "name": "\ue063burningki2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-20 20:41:53", - "registerOn": 1685961437.4445975, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685961437.444598, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685961437.4446049, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685961437.4446056, - "lastIP": "azo~|k~}lfaidw", - "deviceUUID": "3b5c90df8c09e4434ca522d31aba6352854b75f2" - }, - "pb-IF5SUGIgUQ==": { - "display_string": [ - "\ue063HauntedChe" - ], - "profiles": [], - "name": "\ue063HauntedChe", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-09 09:26:02", - "registerOn": 1685961496.5747607, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685961496.5747616, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685961496.5747688, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685961496.57477, - "lastIP": "dxvbvvaxh~}jf", - "deviceUUID": "f62a132b4ec6e4258ba00feb8513935a2ab7c89e" - }, - "pb-IF4DVUggMQ==": { - "display_string": [ - "\ue030Android51767699" - ], - "profiles": [], - "name": "\ue030Android51767699", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-02 22:57:17", - "registerOn": 1685961502.9235206, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685961502.9235213, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685961502.9235284, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685961502.92353, - "lastIP": "a\u007fn~}i`ajayvhz", - "deviceUUID": "43611ce2944e73347a4ac8b5e6574f2c1d32cc73" - }, - "pb-IF4BVW48MQ==": { - "display_string": [ - "\ue063NomadicBee" - ], - "profiles": [], - "name": "\ue063NomadicBee", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-17 21:14:06", - "registerOn": 1685961930.4607494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685961930.4607499, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685961930.4607568, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685961930.4607577, - "lastIP": "a\u007fn~~ahaleai`\u007f", - "deviceUUID": "cf8415f59df258e6ca497540f7ee163071f49d03" - }, - "pb-IF4nU0Y4PQ==": { - "display_string": [ - "\ue063Maligna245" - ], - "profiles": [], - "name": "\ue063Maligna245", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-07 13:48:56", - "registerOn": 1685963166.1611626, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685963166.161163, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685963166.1611707, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685963166.1611717, - "lastIP": "azo~{a~}hcaog", - "deviceUUID": "001316776f320aa89a1ba2663fad6a2f16700aa6" - }, - "pb-IF41VVUtFQ==": { - "display_string": [ - "\ue063tengentlea" - ], - "profiles": [], - "name": "\ue063tengentlea", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-04 13:43:32", - "registerOn": 1685963340.8313906, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685963340.8313916, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685963340.8313985, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685963340.8313992, - "lastIP": "dvvcxva~o~~n", - "deviceUUID": "0ca104e06e129386ee3781029af927e4798f09ef" - }, - "pb-IF4QUGcKKg==": { - "display_string": [ - "\ue063TGg27Royce" - ], - "profiles": [], - "name": "\ue063TGg27Royce", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-24 16:06:57", - "registerOn": 1685963421.2316709, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685963421.2316718, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685963421.2316794, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685963421.2316802, - "lastIP": "dvvcxvb~i~{", - "deviceUUID": "49218b0b2460f23cabb571228f64931bc99b4960" - }, - "pb-IF4gUloxKA==": { - "display_string": [ - "\ue063teamRFKOxx" - ], - "profiles": [], - "name": "\ue063teamRFKOxx", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-23 18:28:02", - "registerOn": 1685963629.0717094, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685963629.07171, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685963629.0717182, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685963629.0717194, - "lastIP": "azo~{l~~laajby", - "deviceUUID": "c07ed77b24acb9388a1c0e09f55c4e33cdf9ae75" - }, - "pb-IF4jUGo5LA==": { - "display_string": [ - "\ue063DMJatin04" - ], - "profiles": [], - "name": "\ue063DMJatin04", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-05 15:54:20", - "registerOn": 1685965407.15324, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685965407.1532407, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685965407.1534455, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685965407.1534479, - "lastIP": "dxviakfald", - "deviceUUID": "9bb8080442be75fab31748fe6040be3a195d2837" - }, - "pb-IF4DUlIREQ==": { - "display_string": [ - "\ue063Conifer620" - ], - "profiles": [], - "name": "\ue063Conifer620", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-26 11:56:38", - "registerOn": 1685965522.586901, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685965522.5869017, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685965522.5869098, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685967359.507282, - "lastIP": "a\u007fn~~afaihak", - "deviceUUID": "bbeb374668af9986c834734e64be532aa2ef1e50" - }, - "pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB": { - "display_string": [ - "\ue030Rikko", - "\ue020SatellaReinhard", - "\ue047Nyaa! :3", - "\ue030SYSTEM ALERT CODE: 871\ue030", - "\ue030\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2593\n\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2593\u2592\u2592\u2593\u2588\u2588\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2593\n\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2592\u2592\u2588\u2588\n\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2593\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\n\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2592\u2592\u2593\u2588\u2593\n\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2588\u2588\u2592\u2588\u2588\u2592\u2592\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\n\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2592\u2593\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2592\u2592\u2592\u2592\u2588\u2588\n\u2591\u2591\u2591\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2588\u2592\u2588\u2592\u2592\u2592\u2588\u2588\n\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2593\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2592\u2588\u2593\n\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2593\u2588\u2588\n\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2593\u2588\u2588\u2588\u2588\u2588\n\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2593\u2591\u2591\u2588\u2588\n\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2593\n\u2591\u2593\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\n\u2588\u2588\u2591\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\n\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2593\n\u2591\u2591\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\n\u2588\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\n\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2588\u2593\n\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2593\u2588\u2588\u2588\n\u2591\u2593\u2588\u2588\u2593\u2591\u2591\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2593\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2593\u2592\u2592\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2588\u2588\u2588\u2588\u2593\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2593\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2588\u2588\u2592\u2592\u2592\u2588\u2588\u2588\u2593\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2592\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2593\u2588\u2588\u2593\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2592\u2593\u2588\u2588\u2588\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2593\u2588\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2592\u2592\u2592\u2593\u2588\u2588\u2588\u2593\u2591\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2592\u2592\u2588\u2588\u2591\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2592\u2588\u2588\u2591\u2593\u2588\u2591\u2591\u2591\u2591\u2591\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2588\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2588\u2592\u2592\u2592\u2588\u2588\u2591\u2591\u2591\u2591\u2593\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2591\u2591\u2591\u2588\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2593\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2588\u2588\u2588\u2593\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2593\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588" - ], - "profiles": [], - "name": "\ue047Nyaa! :3", - "isBan": false, - "isMuted": false, - "accountAge": "2016-06-04 13:35:45", - "registerOn": 1685965901.0248175, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685965901.0248182, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686403093.111333, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686403093.111334, - "lastIP": "a\u007fk~{`~~h`ajb|", - "deviceUUID": "rikkolovescats :3", - "cMsgCount": 0, - "lastMsgTime": 1686332943.9245696, - "lastMsg": "mine's used up", - "cSameMsg": 0 - }, - "pb-IF43UmkDVw==": { - "display_string": [ - "\ue063MaleDock12" - ], - "profiles": [], - "name": "\ue063MaleDock12", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-30 16:17:37", - "registerOn": 1685966915.3060563, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685966915.3060567, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685966915.3060627, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685966915.3060634, - "lastIP": "avn~~kbalcaih~", - "deviceUUID": "b881b50d4786a8f9b052d240f9571704dcbe1f34" - }, - "pb-IF4vUGpYNQ==": { - "display_string": [ - "\ue063SafestTwis" - ], - "profiles": [], - "name": "\ue063SafestTwis", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-05 17:22:08", - "registerOn": 1685967068.5365872, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685967068.536588, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685967068.5365944, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685967068.5365953, - "lastIP": "dxvbvvaxk~}he", - "deviceUUID": "ff6e3978d54416ac8d87779519dd3cacb0349935" - }, - "pb-IF4OU1MtBA==": { - "display_string": [ - "\ue063FrostedBe2" - ], - "profiles": [], - "name": "\ue063FrostedBe2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-26 17:25:58", - "registerOn": 1685967309.4734542, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685967309.4734552, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685967309.473463, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685967309.473464, - "lastIP": "azo~zi~~agajav", - "deviceUUID": "49f8a435697a4d01edf3b89519a11254b0073cd5" - }, - "pb-IF43F2ku": { - "display_string": [ - "\ue063Rambunct61" - ], - "profiles": [], - "name": "\ue063Rambunct61", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-15 19:16:38", - "registerOn": 1685967325.4910963, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685967325.4910967, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685967325.4911044, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685967325.4911056, - "lastIP": "azo~zi~~agam", - "deviceUUID": "d828c483c47f877c178329ce1c4e334a80196226", - "cMsgCount": 1, - "lastMsgTime": 1685968437.0099962, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5dUGlcJA==": { - "display_string": [ - "\ue063CrinklyHou" - ], - "profiles": [], - "name": "\ue063CrinklyHou", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-22 16:46:22", - "registerOn": 1685968982.717443, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685968982.7174435, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686233151.555451, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686233271.9901683, - "lastIP": "dvvc|vb{j~~k", - "deviceUUID": "234fb9f7627555d5496bb99f3102550c9f340d50" - }, - "pb-IF4RVGQmIA==": { - "display_string": [ - "\ue063MrJimmy370" - ], - "profiles": [], - "name": "\ue063MrJimmy370", - "isBan": true, - "isMuted": false, - "accountAge": "2019-09-01 15:03:55", - "registerOn": 1685969029.8619387, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685969029.8619392, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685969029.8619463, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685969029.8619473, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF5XUkoGDw==": { - "display_string": [ - "\ue063AerialMark", - "\ue030Android54465033" - ], - "profiles": [], - "name": "\ue063AerialMark", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-12 22:40:28", - "registerOn": 1685969664.8531618, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685969664.8531623, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686229026.8528214, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686241704.05673, - "lastIP": "dxvia`iaid\u007f", - "deviceUUID": "28f13e74c66a938e7181be1e72c3c9f925f0833c" - }, - "pb-JiNJARFaXUdIVF9DEEBVV1NFEkFbRVJA": { - "display_string": [ - "\ue063NoNameB2036250" - ], - "profiles": [], - "name": "\ue063NoNameB2036250", - "isBan": false, - "isMuted": false, - "accountAge": "2016-09-16 21:53:03", - "registerOn": 1685970469.7507224, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685970469.750723, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685970469.7507293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685970469.75073, - "lastIP": "dvvc|vb{k~|m", - "deviceUUID": "a840fdfe07ea29ce95e445516bcfd59f7dc6277d" - }, - "pb-IF4QUm8kEw==": { - "display_string": [ - "\ue063CrayCrayPe" - ], - "profiles": [], - "name": "\ue063CrayCrayPe", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-27 21:18:23", - "registerOn": 1685970891.4767854, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685970891.476786, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685970891.476792, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685970891.476793, - "lastIP": "b}k~~oha`ban", - "deviceUUID": "b62f42ff36ab612bf99ec7028d9549327d68dac6", - "cMsgCount": 0, - "lastMsgTime": 1685970914.3445697, - "lastMsg": "Dr boom you are girl", - "cSameMsg": 0 - }, - "pb-IF5UU0M7Lw==": { - "display_string": [ - "\ue063Doreamon15" - ], - "profiles": [], - "name": "\ue063Doreamon15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-12 19:09:28", - "registerOn": 1685970912.748377, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685970912.7483776, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1685979581.3148272, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685979559.1529636, - "lastIP": "azo~|k~~ibaje{", - "deviceUUID": "fbd8b7f3cf73385e52f221663a97a9d327336552", - "cMsgCount": 0, - "lastMsgTime": 1685979712.3648002, - "lastMsg": "yesss bhaii", - "cSameMsg": 0 - }, - "pb-IF5XUxZYPQ==": { - "display_string": [ - "\ue030Android60313630" - ], - "profiles": [], - "name": "\ue030Android60313630", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-07 20:03:22", - "registerOn": 1685971547.9375496, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685971547.93755, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686155299.1505964, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686155299.1505973, - "lastIP": "azj~zo~}kea`h", - "deviceUUID": "106fd9bcc2e71b23abc2a7eaaff570ef2f3a8c9c" - }, - "pb-IF5dU2ZdPA==": { - "display_string": [ - "\ue063Aviral17" - ], - "profiles": [], - "name": "\ue063Aviral17", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-12 15:00:41", - "registerOn": 1685971644.524978, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685971644.5249784, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685971644.524986, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685972033.696534, - "lastIP": "dvvcyvaxva~j", - "deviceUUID": "e391a4fdf45e69e758c5202e88891fe58c558d00" - }, - "pb-IF4uUGgkDA==": { - "display_string": [ - "\ue063VKkiller12" - ], - "profiles": [], - "name": "\ue063VKkiller12", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-28 21:48:39", - "registerOn": 1685971773.023331, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685971773.0233314, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685971773.023345, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685971773.0233462, - "lastIP": "azo~{a~~ohalf", - "deviceUUID": "7cbb6eb8b2486858b0df656e0852e6ad2db7178f" - }, - "pb-IF4LUGkjCw==": { - "display_string": [ - "\ue063NoNameC3934649" - ], - "profiles": [], - "name": "\ue063NoNameC3934649", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 19:35:54", - "registerOn": 1685972034.00639, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685972034.0063906, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686028598.5003173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686028598.5003188, - "lastIP": "a~o~v`~~kgaig\u007f", - "deviceUUID": "bc46108a5ff0ba5614730dacead95713a4d2f607" - }, - "pb-IF4cU0wYCA==": { - "display_string": [ - "\ue063sinansinu1" - ], - "profiles": [], - "name": "\ue063sinansinu1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 11:40:37", - "registerOn": 1685972203.989924, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685972203.9899242, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685972203.98993, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685972203.989931, - "lastIP": "a\u007fn~}ifaicvva\u007fk", - "deviceUUID": "9bd0719f468b1052b5905674250e2d310ce84541" - }, - "pb-IF4mU24IHA==": { - "display_string": [ - "\ue063HanjalaRoc" - ], - "profiles": [], - "name": "\ue063HanjalaRoc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-21 23:10:46", - "registerOn": 1685972439.6790278, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685972439.6790285, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685972439.6790354, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685972523.6637678, - "lastIP": "a\u007fk~~kdajhajdv", - "deviceUUID": "dfd36173b41f75d5f24dd15f9424f76ecf76858d" - }, - "pb-IF4dU0UGUA==": { - "display_string": [ - "\ue063DhyeyO" - ], - "profiles": [], - "name": "\ue063DhyeyO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-07 21:23:57", - "registerOn": 1685972612.3178666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685972612.3178673, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685972612.3178735, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685972657.1402774, - "lastIP": "a\u007fk~wn~~a~~i", - "deviceUUID": "967c36e4252192ad783fa3a009098c2ade7f7538" - }, - "pb-JiNJARFdXENAVVtAE0RZUVRKFkZaQlRB": { - "display_string": [ - "\ue063SardonicMe" - ], - "profiles": [], - "name": "\ue063SardonicMe", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-06 03:52:48", - "registerOn": 1685972766.8210092, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685972766.8210094, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685972766.8210163, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685972766.8210173, - "lastIP": "d~vb|k~~a`alg", - "deviceUUID": "4a3e2ea65235069ceb455fbcf31bd869bb03dc8e" - }, - "pb-IF4uUGUhAg==": { - "display_string": [ - "\ue063SwampyWall" - ], - "profiles": [], - "name": "\ue063SwampyWall", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-11 23:23:51", - "registerOn": 1685973018.8430047, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685973018.8430052, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685973018.8430126, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685973018.8430135, - "lastIP": "a\u007fn~~afaiaakb", - "deviceUUID": "dfbeb4b8ccba9e5a5e00bd315d61e070ae830edc" - }, - "pb-IF4HUxAgVA==": { - "display_string": [ - "\ue063RJStyles78" - ], - "profiles": [], - "name": "\ue063RJStyles78", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-25 16:07:21", - "registerOn": 1685973044.9656126, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685973044.9656131, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685973044.9656186, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685973105.8575842, - "lastIP": "awk~wj~}hdaii{", - "deviceUUID": "1c2e32b63009fc9f53d2a8a4e61c80f8bf62cfae" - }, - "pb-IF4NUGcODw==": { - "display_string": [ - "\ue063Vocatio323" - ], - "profiles": [], - "name": "\ue063Vocatio323", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-27 20:59:16", - "registerOn": 1685973251.7647338, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685973251.7647343, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686143411.7416828, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686144978.8914135, - "lastIP": "a~o~va~}mbajav", - "deviceUUID": "8e222b5ae3b0de04712b410e8faf0a466938ad72" - }, - "pb-IF4nUxE4Nw==": { - "display_string": [ - "\ue030Android60071137" - ], - "profiles": [], - "name": "\ue030Android60071137", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-28 18:48:17", - "registerOn": 1685973278.8522978, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685973278.8522985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686167326.5397832, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686167326.5397844, - "lastIP": "a~h~}jfaih|vc", - "deviceUUID": "b34231d68d2acdd703b3c18d81a8ae0006f6b512" - }, - "pb-IF4JU0UyPA==": { - "display_string": [ - "\ue030Android63588030" - ], - "profiles": [], - "name": "\ue030Android63588030", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-04 23:02:28", - "registerOn": 1685973427.410749, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685973427.4107497, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685973427.410756, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685973427.410757, - "lastIP": "dvvb\u007fl~}icaad", - "deviceUUID": "681601b061cf7df031b544bc851296b41a82bb9e" - }, - "pb-IF4uVWguJw==": { - "display_string": [ - "\ue063praveenpr5", - "\ue030Android53098839" - ], - "profiles": [], - "name": "\ue063praveenpr5", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-28 21:21:44", - "registerOn": 1685973765.974381, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685973765.974382, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685973765.9743888, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685973765.97439, - "lastIP": "azo~{a~}lcaje}", - "deviceUUID": "0f8a14209c13fb2f633feff57ecfea617f762b31" - }, - "pb-IF4JVXcFVQ==": { - "display_string": [ - "\ue063AKSHATCHAW", - "\ue030Android51366599" - ], - "profiles": [], - "name": "\ue063AKSHATCHAW", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-17 23:21:31", - "registerOn": 1685973970.6744807, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685973970.6744812, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685973970.6744876, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685973970.6744888, - "lastIP": "a}j~~``aihvvazl", - "deviceUUID": "db06b38e3ab8852c52708ebd66d918875982828f" - }, - "pb-IF4hUGcPIg==": { - "display_string": [ - "\ue030Android65150871" - ], - "profiles": [], - "name": "\ue030Android65150871", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-28 18:10:28", - "registerOn": 1685974821.4036946, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685974821.4036958, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686058880.8581386, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686058880.85814, - "lastIP": "dvvb\u007fm~wj~~jb", - "deviceUUID": "c18b43fba210f6bb007166612f882c3996de8af7", - "cMsgCount": 0, - "lastMsgTime": 1685977550.2992752, - "lastMsg": "lol \ud83d\ude02", - "cSameMsg": 0 - }, - "pb-IF4iVXE5Pw==": { - "display_string": [ - "\ue063CaptainVed", - "\ue030Android45365695" - ], - "profiles": [], - "name": "\ue063CaptainVed", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-05 19:20:02", - "registerOn": 1685975122.5977833, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685975122.5977838, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685975122.59779, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685975122.5977907, - "lastIP": "b}k~}kaajcvvd\u007f", - "deviceUUID": "bc74db6c6acfaeeba21a4de1390ce93ec6c9dbd2" - }, - "pb-IF4DUGYHAA==": { - "display_string": [ - "\ue030Android65078232" - ], - "profiles": [], - "name": "\ue030Android65078232", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-17 07:41:56", - "registerOn": 1685975131.6084235, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685975131.6084244, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685975131.608432, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685975131.6084335, - "lastIP": "dvvcyvb~l~}ic", - "deviceUUID": "84e8c68a67793414f4f9ba929c4417de1a04f4b0" - }, - "pb-IF4KUGU4Ag==": { - "display_string": [ - "\ue030PC915062", - "\ue030Android64973595" - ], - "profiles": [], - "name": "\ue030PC915062", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-08 20:18:17", - "registerOn": 1685975205.977238, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685975205.977239, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685976040.1117458, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685976040.111747, - "lastIP": "axi~xn~wj~~a", - "deviceUUID": "ab062b2f56bf34617bc6536d54a99074e95c0353", - "cMsgCount": 0, - "lastMsgTime": 1685976632.5179102, - "lastMsg": "BRO LET IT", - "cSameMsg": 0 - }, - "pb-IF4PUGkJEA==": { - "display_string": [ - "\ue063YTBloodyMo" - ], - "profiles": [], - "name": "\ue063YTBloodyMo", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-03 14:53:00", - "registerOn": 1685975570.1230416, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685975570.123042, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685975570.1230495, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685975570.1230505, - "lastIP": "azo~zh~z`~}kb", - "deviceUUID": "7c86e1143d98393dcd27cab14d7ebc213eb9f450" - }, - "pb-IF4CUGdaAw==": { - "display_string": [ - "\ue030Android65090966" - ], - "profiles": [], - "name": "\ue030Android65090966", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-19 11:21:43", - "registerOn": 1685975587.2098699, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685975587.2098703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685975587.20988, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685975587.209881, - "lastIP": "a\u007fk~~adaniajaz", - "deviceUUID": "52b09993dacdd3646e05fa9c488446894f49c342" - }, - "pb-IF4jU0hTBg==": { - "display_string": [ - "\ue030Android63680318" - ], - "profiles": [], - "name": "\ue030Android63680318", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 21:42:01", - "registerOn": 1685975690.9718099, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685975690.9718103, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685975690.9718173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685975690.9718184, - "lastIP": "bxvc{vdvvb~o", - "deviceUUID": "572da91ad53e5051787810ec01cd77595d656ff1" - }, - "pb-IF4eU1gyCw==": { - "display_string": [ - "\ue063Glinting71" - ], - "profiles": [], - "name": "\ue063Glinting71", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-27 15:37:21", - "registerOn": 1685976335.6516411, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685976335.6516416, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685976335.6516721, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685976508.9400127, - "lastIP": "a~m~vn~}igaig~", - "deviceUUID": "489f0bee66d1dad5ce0c6a9be78e696fabba893d" - }, - "pb-IF4NUGcvKA==": { - "display_string": [ - "\ue063CrispyArc9" - ], - "profiles": [], - "name": "\ue063CrispyArc9", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-25 14:52:09", - "registerOn": 1685976398.8138375, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685976398.8138382, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685976398.8138447, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685976398.8138459, - "lastIP": "azo~zh~ya~}j`", - "deviceUUID": "6a8f789f1f0f92ee09df2bff239b3cd5050c73e5" - }, - "pb-IF5WUncEEw==": { - "display_string": [ - "\ue063Nighter420" - ], - "profiles": [], - "name": "\ue063Nighter420", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-25 19:39:21", - "registerOn": 1685976932.88525, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685976932.8852508, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685976932.8852577, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685976932.8852587, - "lastIP": "azj~z`~~`~}ja", - "deviceUUID": "cf5c72835b62b8f330918ca81be34d122d6dd659" - }, - "pb-IF4uV21ZEA==": { - "display_string": [ - "\ue063GrubbyDanc", - "\ue030Android29028586" - ], - "profiles": [], - "name": "\ue063GrubbyDanc", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-20 20:28:15", - "registerOn": 1685977536.3669941, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685977536.366995, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686231040.6568067, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686231040.656808, - "lastIP": "azo~zi~~vdw", - "deviceUUID": "7e3412b3e92bae57ff7007cd93dd057b6c080ca4" - }, - "pb-IF4FUBkNKA==": { - "display_string": [ - "\ue063SmilingBud" - ], - "profiles": [], - "name": "\ue063SmilingBud", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-13 02:43:19", - "registerOn": 1685977695.9848397, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685977695.9848402, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685977695.9848468, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685997697.7292037, - "lastIP": "a\u007fn~~adakba`i", - "deviceUUID": "f30012358ec0de133868baf5067fb664a4c67b54" - }, - "pb-IF48UGo6UQ==": { - "display_string": [ - "\ue063SkilledC16" - ], - "profiles": [], - "name": "\ue063SkilledC16", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-05 20:35:15", - "registerOn": 1685977744.878224, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685977744.8782246, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685977744.878231, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685977744.878232, - "lastIP": "bxvf|vavm~}hg", - "deviceUUID": "4c1a381b9a3a2a3b2737004bfe1316a1ddab8cd4" - }, - "pb-IF5XVUpZLw==": { - "display_string": [ - "\ue063sijuchetan" - ], - "profiles": [], - "name": "\ue063sijuchetan", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-29 13:29:31", - "registerOn": 1685978411.3123276, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685978411.3123288, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686065844.0490792, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686065844.0490806, - "lastIP": "azj~z`~|o~~hg", - "deviceUUID": "69b8d01e3fcd5aaeb058701366c29f1271e98638" - }, - "pb-IF4zUGY8Ig==": { - "display_string": [ - "\ue063FanaticFol" - ], - "profiles": [], - "name": "\ue063FanaticFol", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-15 22:36:32", - "registerOn": 1685979024.5936112, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685979024.593612, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685979024.5936198, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685979024.593621, - "lastIP": "a\u007fk~~nfajdzva}k", - "deviceUUID": "eb8fc0916eac71c46bf41253ebba1e20f2e490a9" - }, - "pb-IF5VV205HQ==": { - "display_string": [ - "\ue063LonesomeS2", - "\ue030Android55611124" - ], - "profiles": [], - "name": "\ue063LonesomeS2", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-08 19:42:55", - "registerOn": 1685979192.2299087, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685979192.2299094, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685979192.2299182, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685979192.2299194, - "lastIP": "b\u007fk~wi~}lbajb\u007f", - "deviceUUID": "522163288046e04a90becd388ed731ad92f2311f" - }, - "pb-IF4qUBINCQ==": { - "display_string": [ - "\ue063Imagina310" - ], - "profiles": [], - "name": "\ue063Imagina310", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-28 14:44:08", - "registerOn": 1685979274.4531727, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685979274.4531734, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685979274.45318, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685979274.453181, - "lastIP": "dvva{vayn~~mg", - "deviceUUID": "6113331a0d02023bfa234c6b3f1e860f44674701" - }, - "pb-IF4dUkspPw==": { - "display_string": [ - "\ue063Neon6657" - ], - "profiles": [], - "name": "\ue063Neon6657", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-25 16:00:18", - "registerOn": 1685979451.3290672, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685979451.329068, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685979451.3290737, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685979451.3290746, - "lastIP": "azo~{j~xve{", - "deviceUUID": "0a72a370012288e4f04d69d095ff266d3d05f78e" - }, - "pb-IF4DUGIGEw==": { - "display_string": [ - "\ue063Territo244" - ], - "profiles": [], - "name": "\ue063Territo244", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-22 15:48:04", - "registerOn": 1685979903.7427962, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685979903.7427971, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685979903.742805, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685979903.742806, - "lastIP": "azo~{n~~hdah", - "deviceUUID": "695b1e8b2e78bd42659b0e6265a8217e3091a3f3" - }, - "pb-IF4RUGhcMQ==": { - "display_string": [ - "\ue063Iconic7090" - ], - "profiles": [], - "name": "\ue063Iconic7090", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-23 22:58:27", - "registerOn": 1685980053.2992294, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685980053.2992306, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685980053.2992365, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685980053.299238, - "lastIP": "azo~zh~yl~}lc", - "deviceUUID": "a7f8fe5db7b2156d0f13ca86daad485819d1ae83" - }, - "pb-IF4PUGkSNQ==": { - "display_string": [ - "\ue063MerryRepub" - ], - "profiles": [], - "name": "\ue063MerryRepub", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-05 19:43:26", - "registerOn": 1685980470.0946712, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685980470.0946722, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685980470.09468, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685980470.0946813, - "lastIP": "azj~z`~~n~~kb", - "deviceUUID": "44d2ea2fac5848ed8d1f11b39256e85d4f2c9db1" - }, - "pb-IF5UVRUyLQ==": { - "display_string": [ - "\ue063GiftedAss2", - "\ue030Android46110889" - ], - "profiles": [], - "name": "\ue063GiftedAss2", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-24 23:32:19", - "registerOn": 1685980553.1799316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685980553.1799326, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685980553.1799405, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685980553.1799414, - "lastIP": "axi~xa~ym~~lc", - "deviceUUID": "0f81f60b82f152eb61d83e60f240953a4c1da051" - }, - "pb-IF4iUBUAKg==": { - "display_string": [ - "\ue063suuuuiiii3" - ], - "profiles": [], - "name": "\ue063suuuuiiii3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-23 11:28:53", - "registerOn": 1685981468.542778, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685981468.542779, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685981468.5427861, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685981468.542787, - "lastIP": "a\u007fn~~aham~}me", - "deviceUUID": "da176ecfda822976f7ca8c661cbedb226588cecf" - }, - "pb-IF4uUBMbMQ==": { - "display_string": [ - "\ue063IMMAGNUM97" - ], - "profiles": [], - "name": "\ue063IMMAGNUM97", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-10 21:23:13", - "registerOn": 1685981769.743353, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685981769.7433538, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685981769.7433631, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685981769.743364, - "lastIP": "a|j~~mdaliaiaw", - "deviceUUID": "95ddbc84bddc4bc10da7e1219450ada4b5d56657" - }, - "pb-IF5UVRgMKA==": { - "display_string": [ - "\ue063NoNameC3950568" - ], - "profiles": [], - "name": "\ue063NoNameC3950568", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-15 12:12:07", - "registerOn": 1685981778.756607, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685981778.7566078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685981778.7566628, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685981778.756664, - "lastIP": "azo~{a~~neale", - "deviceUUID": "137a1ce7c854376f947c691c9b5c76e40582bc1e", - "cMsgCount": 0, - "lastMsgTime": 1685983767.66283, - "lastMsg": "\ud83d\ude0f", - "cSameMsg": 0 - }, - "pb-IF4hUk0MKQ==": { - "display_string": [ - "\ue063rasmalai" - ], - "profiles": [], - "name": "\ue063rasmalai", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-08 22:54:38", - "registerOn": 1685981783.7668953, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685981783.766896, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685981783.7669048, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685981783.7669063, - "lastIP": "dxvazvbzh~xj", - "deviceUUID": "032c6b4f8a9ea00d99a9eb1f3c7e2bd8e3a223a3" - }, - "pb-IF4WUhgOXQ==": { - "display_string": [ - "\ue063Unconsci68" - ], - "profiles": [], - "name": "\ue063Unconsci68", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-11 21:49:01", - "registerOn": 1685982159.0464723, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685982159.0464728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685982159.046479, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685983845.969672, - "lastIP": "dvvcyviyvgz", - "deviceUUID": "2cb9706ec32c8e947b67b9358667892f66bb272b" - }, - "pb-IF4sUGleCA==": { - "display_string": [ - "\ue063Hospita318" - ], - "profiles": [], - "name": "\ue063Hospita318", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-05 21:50:46", - "registerOn": 1685982821.4602532, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685982821.4602542, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685982821.4602633, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685982821.4602644, - "lastIP": "b~j~vo~yvd|", - "deviceUUID": "5a39d7887eedfbd4d635b826b1b838ccea36f27f" - }, - "pb-IF40U28JPQ==": { - "display_string": [ - "\ue063SHUBHAMCH2" - ], - "profiles": [], - "name": "\ue063SHUBHAMCH2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-24 15:31:21", - "registerOn": 1685983663.8530471, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685983663.8530478, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685983663.8530757, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685983663.8530767, - "lastIP": "azj~zo~}hhaja}", - "deviceUUID": "ace972986ffc3db3084e63dcce1cdce24c7c4a84" - }, - "pb-IF4UU1QTMw==": { - "display_string": [ - "\ue063TestyParag" - ], - "profiles": [], - "name": "\ue063TestyParag", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-02 13:31:07", - "registerOn": 1685983683.2299457, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685983683.2299461, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685983683.2299535, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685983683.2299542, - "lastIP": "axi~xn~wj~}hi", - "deviceUUID": "fa0cc201fa930777fe190f6f0acb0e23184ce5c5" - }, - "pb-IF4cUxRcVA==": { - "display_string": [ - "\ue063Adnan5757" - ], - "profiles": [], - "name": "\ue063Adnan5757", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-09 23:34:53", - "registerOn": 1685983788.0480287, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685983788.0480294, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685983788.048038, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685983788.048039, - "lastIP": "b}k~}keaif\u007fva~", - "deviceUUID": "3f8643ccb6668f3c84e8b89f3eb539d5412ae021" - }, - "pb-IF5TVE9Z": { - "display_string": [ - "\ue063sairatwari", - "\ue030Android23503543" - ], - "profiles": [], - "name": "\ue063sairatwari", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-11 01:49:16", - "registerOn": 1685985119.403733, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685985119.4037337, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685985119.4037442, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685985119.4037452, - "lastIP": "azj~zo~}igaidy", - "deviceUUID": "630cb801c5b64ea7ddf356f4d4bfe998ec8f0191" - }, - "pb-IF4IVFkKNA==": { - "display_string": [ - "\ue063ATTITUDEB2" - ], - "profiles": [], - "name": "\ue063ATTITUDEB2", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-22 16:08:40", - "registerOn": 1685985932.7018163, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685985932.701817, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686379138.054471, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686379162.1420867, - "lastIP": "a\u007fn~}ifai`{vh|", - "deviceUUID": "0081f092fad223a90172369b77c1aeaadc280914" - }, - "pb-IF4QUkEAPA==": { - "display_string": [ - "\ue063FoolishBur", - "\ue030Android57452398" - ], - "profiles": [], - "name": "\ue063FoolishBur", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-20 23:46:18", - "registerOn": 1685986739.5163505, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685986739.5163512, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685986739.5163586, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685986739.5163596, - "lastIP": "awj~{`~}jaaig~", - "deviceUUID": "6c0e8aab3215dfae2d6cbf79826b04d0146dbbd9" - }, - "pb-IF4hVWExKw==": { - "display_string": [ - "\ue030Android45808383" - ], - "profiles": [], - "name": "\ue030Android45808383", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-16 11:31:48", - "registerOn": 1685986820.1230347, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685986820.123036, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685986820.123044, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685986820.1230454, - "lastIP": "cxvbzm~~mbakb", - "deviceUUID": "2e42f84f11bd8310da652ba442453576a7b277b4" - }, - "pb-IF4GUGcoEw==": { - "display_string": [ - "\ue063sedraalhas" - ], - "profiles": [], - "name": "\ue063sedraalhas", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-18 23:06:20", - "registerOn": 1685987027.6104236, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685987027.6104243, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685987027.6104317, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685987027.6104329, - "lastIP": "i}va~a~yi~|a", - "deviceUUID": "c7d1abfd8ec66759125e87f18058aab204c04144" - }, - "pb-IF5WUGc8IA==": { - "display_string": [ - "\ue063NoNameA3438343" - ], - "profiles": [], - "name": "\ue063NoNameA3438343", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-12 16:36:56", - "registerOn": 1685987111.9498107, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685987111.9498117, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685987111.9498205, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685987111.9498215, - "lastIP": "dvvczva|i~|m", - "deviceUUID": "9cc2886a7f7f0de420ad2f6a3dcd65da8a02d330" - }, - "pb-IF42UGkJUg==": { - "display_string": [ - "\ue063Puritan428" - ], - "profiles": [], - "name": "\ue063Puritan428", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 13:54:19", - "registerOn": 1685987852.3473673, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685987852.347368, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685987852.3473766, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685987852.3473773, - "lastIP": "a\u007fk~~hgaogamf", - "deviceUUID": "b78a969e6775b9a890cdd9cb40c7f0a8cb98c258" - }, - "pb-IF4nUkteVA==": { - "display_string": [ - "\ue063WirelessNe" - ], - "profiles": [], - "name": "\ue063WirelessNe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-22 16:27:51", - "registerOn": 1685988921.2326918, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685988921.2326925, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686361582.4947755, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686361582.494779, - "lastIP": "a}j~zh~}hbaia\u007f", - "deviceUUID": "9da057bbedb60ca5287580839d2b01b057184a1c", - "cMsgCount": 0, - "lastMsgTime": 1685988945.238854, - "lastMsg": "lag", - "cSameMsg": 0 - }, - "pb-IF5dUGcMFg==": { - "display_string": [ - "\ue063Xd1932" - ], - "profiles": [], - "name": "\ue063Xd1932", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-14 06:50:59", - "registerOn": 1685988984.4404519, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685988984.4404523, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1685989194.9501276, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685988984.440462, - "lastIP": "axo~}jbakfaie\u007f", - "deviceUUID": "4c32b5b46d5dd6a1e0ee2c827254a2d6477ca119", - "cMsgCount": 0, - "lastMsgTime": 1685989194.9500709, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4SUGUPFw==": { - "display_string": [ - "\ue063Unhealt327" - ], - "profiles": [], - "name": "\ue063Unhealt327", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-11 00:44:58", - "registerOn": 1685989907.07476, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685989907.074761, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685989907.07477, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685989907.074771, - "lastIP": "a~h~}jdaa`ai`x", - "deviceUUID": "9151cccdd74395be85450f07c556943b7889fd7a" - }, - "pb-IF4gUBlfPA==": { - "display_string": [ - "\ue063ROCKBABAJI" - ], - "profiles": [], - "name": "\ue063ROCKBABAJI", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-09 17:33:45", - "registerOn": 1685990164.1139371, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685990164.1139376, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685990164.1139443, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685990164.1139452, - "lastIP": "a\u007fn~}hgajdyvbzh", - "deviceUUID": "cca4a90157ce0b4713f56d5207d0706ee1f4a8c3" - }, - "pb-IF43Uxg4Kg==": { - "display_string": [ - "\ue063EternalRea" - ], - "profiles": [], - "name": "\ue063EternalRea", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-27 10:55:53", - "registerOn": 1685990649.041384, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685990649.0413847, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685990649.0413935, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685990712.9489136, - "lastIP": "azo~zi~~mbame", - "deviceUUID": "8bbf1482daef9a08c3a1d13ae19ba9f1cbac8c20" - }, - "pb-IF5WVG4yCA==": { - "display_string": [ - "\ue063Harshverma", - "\ue030Android48601931", - "\ue030Android48602193", - "\ue030Android48601951", - "\ue030Android39034906" - ], - "profiles": [], - "name": "\ue063Harshverma", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-24 20:09:26", - "registerOn": 1685993900.526751, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685993900.5267518, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685993900.526758, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685993900.526759, - "lastIP": "azo~|o~~aiaibz", - "deviceUUID": "940e6beed3dc2c8004e2fca25b1d15513e409c52" - }, - "pb-IF4yU1VSLw==": { - "display_string": [ - "\ue063pranavshis" - ], - "profiles": [], - "name": "\ue063pranavshis", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-08 00:36:24", - "registerOn": 1685997617.0202994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685997617.0203004, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685997617.020306, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685997617.0203068, - "lastIP": "a}h~~khaibzvb\u007fh", - "deviceUUID": "b5af2c1a7cc73c5f51a241184fbd2a7db24660ae" - }, - "pb-IF5XVWJSKw==": { - "display_string": [ - "\ue063HorridMaj2", - "\ue030Android44089169" - ], - "profiles": [], - "name": "\ue063HorridMaj2", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-31 01:59:12", - "registerOn": 1685997683.9826186, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685997683.982619, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686303897.8924134, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686303897.8924146, - "lastIP": "azo~zi~~h`alh", - "deviceUUID": "39c9775ac96405666e705b5b6d50d9951a91aca0" - }, - "pb-IF4AU0JTVw==": { - "display_string": [ - "\ue063Raghavvvv" - ], - "profiles": [], - "name": "\ue063Raghavvvv", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-16 03:26:21", - "registerOn": 1686005548.9824016, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686005548.9824023, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686005548.98241, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686005548.982411, - "lastIP": "dvvcyvawo~}l", - "deviceUUID": "299d8dcd30cff16378c514cf78a9f60ac2c4999a" - }, - "pb-IF4SUmwlVA==": { - "display_string": [ - "\ue063UpbeatCeme" - ], - "profiles": [], - "name": "\ue063UpbeatCeme", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-11 11:51:44", - "registerOn": 1686008897.4840853, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686008897.4840858, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686008897.4840922, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686008905.180667, - "lastIP": "dvvcyvd~vd}", - "deviceUUID": "a7bde29bcc4f211c7175919d725d3c80dd3be90f" - }, - "pb-IF4hU24YIA==": { - "display_string": [ - "\ue030Android65151404", - "\ue030Android62209170", - "\ue030Android65151527" - ], - "profiles": [], - "name": "\ue030Android62209170", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-24 14:42:26", - "registerOn": 1686021439.938611, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686021439.9386117, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686021439.9386215, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686021439.9386222, - "lastIP": "a\u007fk~wo~}m~~ah", - "deviceUUID": "e0a69ffa3db6870eea75c13a6e497da7d52abcbf" - }, - "pb-JiNJVxFfVEJIWVxFEUBXXFNLE0hXRFVD": { - "display_string": [ - "\ue063warlord160" - ], - "profiles": [], - "name": "\ue063warlord160", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-09 17:04:00", - "registerOn": 1686021835.6894221, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686021835.6894228, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686021835.6894298, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686021835.6894307, - "lastIP": "dvvb\u007fo~}lbali", - "deviceUUID": "569c6d5812b35ce92b109072e7b34df952bf7382" - }, - "pb-IF4LUxYbAA==": { - "display_string": [ - "\ue063TalhaJuba2" - ], - "profiles": [], - "name": "\ue063TalhaJuba2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-22 17:59:09", - "registerOn": 1686022053.6940234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686022053.6940238, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686022053.6940308, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686022165.6282861, - "lastIP": "a~`~~oiaih~va{m", - "deviceUUID": "5df05df7bd9535f430dc625fca5499b60eb434c3" - }, - "pb-IF4UUGFZAQ==": { - "display_string": [ - "\ue063BygoneHead" - ], - "profiles": [], - "name": "\ue063BygoneHead", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-10 14:06:56", - "registerOn": 1686026641.2367203, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686026641.236721, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686026641.236727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686026641.236728, - "lastIP": "bxvc{vf\u007fvg~", - "deviceUUID": "b6856ba63644841231e45436e15177a18d257676" - }, - "pb-IF4RUhQyJg==": { - "display_string": [ - "\ue063minalachu8" - ], - "profiles": [], - "name": "\ue063minalachu8", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-22 13:53:33", - "registerOn": 1686026710.5090232, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686026710.5090234, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686324937.8536816, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686324937.8536828, - "lastIP": "a|o~vo~vn~}jc", - "deviceUUID": "96f32a868b64ce9c633d8768ecb73991548ee8b6" - }, - "pb-IF4eU0s9Pw==": { - "display_string": [ - "\ue063FearlessC4" - ], - "profiles": [], - "name": "\ue063FearlessC4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 14:41:52", - "registerOn": 1686027385.1436195, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686027385.1436203, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686370210.7919352, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686371510.4287148, - "lastIP": "a~a~vl~xi~~na", - "deviceUUID": "79ff602d98582d9885d769eec06b4ebd8aab0aad", - "cMsgCount": 0, - "lastMsgTime": 1686204954.5212471, - "lastMsg": "ops", - "cSameMsg": 0 - }, - "pb-IF4vVVczDg==": { - "display_string": [ - "\ue063MRGAMINGTH", - "\ue030Android50060577" - ], - "profiles": [], - "name": "\ue063MRGAMINGTH", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-17 07:52:59", - "registerOn": 1686027468.5366514, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686027468.5366518, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686128479.1415572, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686128479.1415582, - "lastIP": "a~o~~acaii~va}n", - "deviceUUID": "f14885c6acd92186b8308f6b88352d1da5abcb11", - "cMsgCount": 0, - "lastMsgTime": 1686128553.8863475, - "lastMsg": "wtah", - "cSameMsg": 0 - }, - "pb-IF4oUGlSCA==": { - "display_string": [ - "\ue030Android65167927" - ], - "profiles": [], - "name": "\ue030Android65167927", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-31 17:04:32", - "registerOn": 1686028176.2137802, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686028176.2137806, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686028176.2137868, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686036368.8086965, - "lastIP": "a\u007fn~}igaahaiiv", - "deviceUUID": "4e66815b2907e8930e977faf50888774063b9bc8" - }, - "pb-IF4mUlEyBw==": { - "display_string": [ - "\ue063Confide349" - ], - "profiles": [], - "name": "\ue063Confide349", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-22 13:01:30", - "registerOn": 1686028745.4358869, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686028745.4358876, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686028745.4358947, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686028745.4358962, - "lastIP": "dxvc~vixvbzl", - "deviceUUID": "ea5bbeb29f5dfeb3ad31cb9fecb1787ec50d36af" - }, - "pb-IF5QVVAuJA==": { - "display_string": [ - "\ue063SameerInga", - "\ue030Android52331761" - ], - "profiles": [], - "name": "\ue063SameerInga", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-29 21:10:20", - "registerOn": 1686029630.7927494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686029630.79275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686059336.67874, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686059650.844318, - "lastIP": "a\u007fn~}ifajd~vaxh", - "deviceUUID": "4e34a5f6bcd8ff274cf352a98d121a0c3fcc6962", - "cMsgCount": 1, - "lastMsgTime": 1686059827.2864106, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4eUGkRAQ==": { - "display_string": [ - "\ue030Android65184868" - ], - "profiles": [], - "name": "\ue030Android65184868", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-03 13:04:50", - "registerOn": 1686029790.287235, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686029790.2872355, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686029790.2872424, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686029790.2872438, - "lastIP": "dvvcyva{l~{j", - "deviceUUID": "24710d9fd0ae610e49c3bd172dafb9b326047f48" - }, - "pb-IF48UGo9Kw==": { - "display_string": [ - "\ue063Philolo221" - ], - "profiles": [], - "name": "\ue063Philolo221", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 10:46:33", - "registerOn": 1686029848.5633483, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686029848.5633488, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686029848.5633552, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686029848.5633562, - "lastIP": "a\u007fn~}hhaigvvdy", - "deviceUUID": "4d994c192d16e133113b036d3f6bd6d986873fa2" - }, - "pb-IF4yUhgAAQ==": { - "display_string": [ - "\ue063Android54623839" - ], - "profiles": [], - "name": "\ue063Android54623839", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-12 22:27:13", - "registerOn": 1686030027.3397763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686030027.339777, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686030027.3397846, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686030027.3397858, - "lastIP": "dyva~l~~ocaicx", - "deviceUUID": "dd15705f59c34196c1f141fb5619108def92d0fb" - }, - "pb-IF4VUGkaUQ==": { - "display_string": [ - "\ue063HeartySwee" - ], - "profiles": [], - "name": "\ue063HeartySwee", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 10:46:28", - "registerOn": 1686030508.0427928, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686030508.0427933, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686030508.0428004, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686030508.0428016, - "lastIP": "azj~z`~}iea`", - "deviceUUID": "8e96cea67fa589aebff79dbd5cbc8bd8fa338de3" - }, - "pb-IF4SUGkyAg==": { - "display_string": [ - "\ue063ObviousLed" - ], - "profiles": [], - "name": "\ue063ObviousLed", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-02 21:50:36", - "registerOn": 1686030811.0603433, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686030811.060344, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686030811.0603569, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686030811.0603578, - "lastIP": "azj~zo~}a~xn", - "deviceUUID": "ae98e6cc748b55807b1fd6edde62ffc743ef78dc" - }, - "pb-LV4FXxNdVEYUWQtHFEcCVlFAFQ==": { - "display_string": [ - "\ue063ANSHU6141" - ], - "profiles": [], - "name": "\ue063ANSHU6141", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-18 23:17:18", - "registerOn": 1686031560.7737792, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686031560.7737799, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686343550.0471244, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686343550.0471256, - "lastIP": "a\u007fk~}hhaniaif~", - "deviceUUID": "443cf4760f53b4d718f8e3df20de24c5a7f19897" - }, - "pb-IF5TUGxYBA==": { - "display_string": [ - "\ue063snipersomi" - ], - "profiles": [], - "name": "\ue063snipersomi", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 10:45:46", - "registerOn": 1686031760.4697132, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686031760.4697137, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686303200.0904484, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686303472.1272533, - "lastIP": "b}k~}khaja|vf{", - "deviceUUID": "eac366e03470b9f310a5cca7d26600eaabe3080e" - }, - "pb-IF4OUGkFHA==": { - "display_string": [ - "\ue030Android65184196" - ], - "profiles": [], - "name": "\ue030Android65184196", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-03 10:23:00", - "registerOn": 1686032319.5074053, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686032319.507406, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686032319.5074155, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686032319.5074167, - "lastIP": "azj~z`~xj~|", - "deviceUUID": "a6ac980dbb84b93dc66e902664fb7b5efb8c97b3" - }, - "pb-IF4WU2ctKA==": { - "display_string": [ - "\ue063mansoorman" - ], - "profiles": [], - "name": "\ue063mansoorman", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-22 16:38:34", - "registerOn": 1686032783.2243748, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686032783.224376, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686375350.3924747, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686375350.3924763, - "lastIP": "a\u007fk~{j~~agamh", - "deviceUUID": "0ac465153dc65b0a9570e9f27bc9192c7a86d43c" - }, - "pb-IF4sUBc6Ig==": { - "display_string": [ - "\ue063MightyJoc2" - ], - "profiles": [], - "name": "\ue063MightyJoc2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-03 15:03:14", - "registerOn": 1686034928.4604168, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686034928.4604175, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686034928.460425, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686034928.4604256, - "lastIP": "b}k~}khajb|vb}`", - "deviceUUID": "fffee905e20085603f0c1c75f256c3b427f965fc" - }, - "pb-IF42U2wGFw==": { - "display_string": [ - "\ue063chugambara" - ], - "profiles": [], - "name": "\ue063chugambara", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-13 17:05:07", - "registerOn": 1686035017.822825, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686035017.8228254, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686382124.431134, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686387568.5881882, - "lastIP": "a|o~vo~~igajc{", - "deviceUUID": "99b10bfc42bcd3169a938d93dab3f5156feec7f4", - "cMsgCount": 0, - "lastMsgTime": 1686382490.8222241, - "lastMsg": "what?", - "cSameMsg": 0 - }, - "pb-IF4MUk0CEg==": { - "display_string": [ - "\ue063FoolishMar" - ], - "profiles": [], - "name": "\ue063FoolishMar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-06 20:56:05", - "registerOn": 1686037354.082924, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686037354.0829244, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686296641.4071195, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686296641.407121, - "lastIP": "b}k~}kiambaihz", - "deviceUUID": "618fd7a62afdcfd000ff037b4ad7fece3396e9ce" - }, - "pb-IF40UGQxMQ==": { - "display_string": [ - "\ue063CrystalAbu" - ], - "profiles": [], - "name": "\ue063CrystalAbu", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-06 11:12:38", - "registerOn": 1686037484.5418046, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686037484.541805, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686037484.541813, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686037484.541814, - "lastIP": "a~o~}liaif|vcv", - "deviceUUID": "225d85b1161dbc5b3f7318fccfad1a79f45e6f8c" - }, - "pb-IF4SU0QdDQ==": { - "display_string": [ - "\ue063VIJAYSTYLE" - ], - "profiles": [], - "name": "\ue063VIJAYSTYLE", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 21:21:38", - "registerOn": 1686037532.7553637, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686037532.7553647, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686037532.7553725, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686037532.7553737, - "lastIP": "a\u007fn~}j`ajdyvaxh", - "deviceUUID": "2811de9edd766cff3ad41d43c5f432ab2aed0144" - }, - "pb-IF4CUGkfUg==": { - "display_string": [ - "\ue030Android65192078" - ], - "profiles": [], - "name": "\ue030Android65192078", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 12:49:43", - "registerOn": 1686037677.239205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686037677.2392054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686037677.2392216, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686037677.2392228, - "lastIP": "a\u007fn~~afakaaiaz", - "deviceUUID": "582aa50a70ff9e08279503da80151c6fcae145ae" - }, - "pb-JiNJARBcUEZEWVZAFUJYXFxFGUFaQ1dD": { - "display_string": [ - "\ue063SHOJIB" - ], - "profiles": [], - "name": "\ue063SHOJIB", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-28 19:16:28", - "registerOn": 1686039041.564844, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686039041.5648446, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686039041.564851, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686039041.5648522, - "lastIP": "a\u007fk~}m~}m`ajbz", - "deviceUUID": "272be64bc9f6f74710d3766bdb5fe9395b857c15" - }, - "pb-IF4hU05dLg==": { - "display_string": [ - "\ue063ProudChihu" - ], - "profiles": [], - "name": "\ue063ProudChihu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 16:01:18", - "registerOn": 1686039259.5960436, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686039259.5960443, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686302525.322072, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686302625.7059846, - "lastIP": "azo~{a~~aia`i", - "deviceUUID": "66b9a539c2336161846fa0e39f961ee6a88bbc7c" - }, - "pb-IF4yUmkuLw==": { - "display_string": [ - "\ue030Android55641762" - ], - "profiles": [], - "name": "\ue030Android55641762", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-28 22:58:51", - "registerOn": 1686039419.9177544, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686039419.9177551, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686252680.9891245, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686252680.9891257, - "lastIP": "a\u007fk~vm~wi~{j", - "deviceUUID": "115323723d0de932467f154cc8c1aea75c7b3f7c" - }, - "pb-IF4FUxMtPQ==": { - "display_string": [ - "\ue063SavvyOutl2" - ], - "profiles": [], - "name": "\ue063SavvyOutl2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-07 19:51:34", - "registerOn": 1686040118.5547402, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686040118.554741, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686292055.8402894, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686292055.8402903, - "lastIP": "b}k~~`dajb{vbv", - "deviceUUID": "f71317314903841036b394e876c4df4bb46bf6ab", - "cMsgCount": 0, - "lastMsgTime": 1686040945.846741, - "lastMsg": "hacked", - "cSameMsg": 0 - }, - "pb-IF4uUBIDCg==": { - "display_string": [ - "\ue063Documen153" - ], - "profiles": [], - "name": "\ue063Documen153", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-03 19:31:20", - "registerOn": 1686040453.7112796, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686040453.7112803, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686040453.7112868, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686040453.711288, - "lastIP": "azo~|m~{j~}jb", - "deviceUUID": "4eee9fe65f4699d20ff318d5e7ebb77b0f98ecd7" - }, - "pb-IF5dVUk5MA==": { - "display_string": [ - "\ue063devilrk768" - ], - "profiles": [], - "name": "\ue063devilrk768", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-28 17:19:05", - "registerOn": 1686042014.0575573, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686042014.0575578, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686203989.7750037, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686203989.7750056, - "lastIP": "a~h~}jdaia\u007fvh{", - "deviceUUID": "e0f093fbd4b5bde1c4be1b9c87824be13350e62e", - "cMsgCount": 0, - "lastMsgTime": 1686204718.274088, - "lastMsg": "looooossseeeerrrrsss \ud83e\udd23", - "cSameMsg": 0 - }, - "pb-IF4SUBkRBw==": { - "display_string": [ - "\ue063lonelywol7" - ], - "profiles": [], - "name": "\ue063lonelywol7", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-11 20:56:14", - "registerOn": 1686042276.9701388, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686042276.9701397, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686042276.9701467, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686042276.9701476, - "lastIP": "azo~zi~~niajcw", - "deviceUUID": "34d6aa0f6b5fd50f0e9d3e33f6b598c55830c764" - }, - "pb-IF49U0QJDw==": { - "display_string": [ - "\ue063Babysimran", - "\ue063CRIMINAL", - "\ue063NOMERCY", - "\ue030PC605729" - ], - "profiles": [], - "name": "\ue030PC605729", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-29 22:04:04", - "registerOn": 1686042810.097336, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686042810.0973365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686042810.097345, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686042810.0973463, - "lastIP": "dvvcxva~o~~lh", - "deviceUUID": "52e159e6debf4b869cb6bd30a26e268c72ceab36" - }, - "pb-IF43UBlZFA==": { - "display_string": [ - "\ue063Periodi275" - ], - "profiles": [], - "name": "\ue063Periodi275", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-07 12:40:45", - "registerOn": 1686042889.4224896, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686042889.4224904, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686042889.4224973, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686042889.4224985, - "lastIP": "bxvf|vb~a~}jb", - "deviceUUID": "ced9c6cfe1299c25bdc439903e8b6abb9d17f2f7" - }, - "pb-IF4cUlM-XQ==": { - "display_string": [ - "\ue063RubyBear71" - ], - "profiles": [], - "name": "\ue063RubyBear71", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-29 13:50:49", - "registerOn": 1686043484.9525585, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686043484.9525595, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686043484.9525669, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686043484.9525678, - "lastIP": "dvvb\u007fm~}kfaiby", - "deviceUUID": "6bda5f2f2f7c57d70ffc8e7e06fd370ba3b7ebca" - }, - "pb-IF4WUGokPA==": { - "display_string": [ - "\ue063CuteCat100" - ], - "profiles": [], - "name": "\ue063CuteCat100", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 14:15:23", - "registerOn": 1686043545.368852, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686043545.3688529, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686043545.3688605, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686043545.3688614, - "lastIP": "d}va\u007f`~{vf", - "deviceUUID": "d7abd4680abee384e9802e982f671db83035ee24" - }, - "pb-IF4HVBcbUA==": { - "display_string": [ - "\ue063RifeButter", - "\ue030Android36915431" - ], - "profiles": [], - "name": "\ue063RifeButter", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-28 11:07:39", - "registerOn": 1686044481.2862053, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686044481.2862062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686044481.2862146, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686044481.286216, - "lastIP": "a~h~}jdaacaa", - "deviceUUID": "005eb91b7f9dacfae92a374ff82a1a6e2d7fe0c2" - }, - "pb-JiNJARFZVkBJXl1EFkJXXF1EFkRbRVND": { - "display_string": [ - "\ue063Excelle766", - "\ue030Android6711002" - ], - "profiles": [], - "name": "\ue063Excelle766", - "isBan": false, - "isMuted": false, - "accountAge": "2016-09-21 09:58:26", - "registerOn": 1686044585.797824, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686044585.7978246, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686044585.7978325, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686051451.804572, - "lastIP": "b\u007fj~~ocaibxvay", - "deviceUUID": "048a8e49764b1edf78f8354763753f9389177c34" - }, - "pb-IF4jVUk4UQ==": { - "display_string": [ - "\ue063Eccentri37" - ], - "profiles": [], - "name": "\ue063Eccentri37", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-08 08:26:14", - "registerOn": 1686044862.8481805, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686044862.848181, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686044862.848219, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686044862.8482199, - "lastIP": "azj~z`~}haaie~", - "deviceUUID": "bd76458a2576c7e6e7c1fafaafb4e66db4028e64" - }, - "pb-IF4gUGklVQ==": { - "display_string": [ - "\ue063AngryFire7" - ], - "profiles": [], - "name": "\ue063AngryFire7", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 10:46:28", - "registerOn": 1686045229.4199255, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686045229.419926, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686045229.4199324, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686045229.4199336, - "lastIP": "axn~za~~jcaif{", - "deviceUUID": "907cdd21f1b53706fd8125881a904f9a0143afef" - }, - "pb-IF4FVExeAA==": { - "display_string": [ - "\ue020Cancer\u3164", - "\ue030VR191377" - ], - "profiles": [], - "name": "\ue030VR191377", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-31 15:03:17", - "registerOn": 1686045472.5403783, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686045472.540379, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686045472.540388, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686045472.5403893, - "lastIP": "b}k~}kgaiivvi", - "deviceUUID": "5a5803c736716bd0473a7767a0b56d3a0cc7657f" - }, - "pb-IF4AUGpeHQ==": { - "display_string": [ - "\ue063FierceJac4" - ], - "profiles": [], - "name": "\ue063FierceJac4", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 15:23:01", - "registerOn": 1686045596.7574148, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686045596.7574158, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686045596.7574239, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686045596.757425, - "lastIP": "azo~|l~ya~wa", - "deviceUUID": "40ab7251329b480888bde71569d25c7f76d8c730" - }, - "pb-IF4mVWUaFQ==": { - "display_string": [ - "\ue063LEGENDTYub", - "\ue030Android44177011" - ], - "profiles": [], - "name": "\ue063LEGENDTYub", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-09 13:40:49", - "registerOn": 1686046097.67003, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686046097.6700308, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686046097.6700387, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686046097.67004, - "lastIP": "a~o~va~}jiaibz", - "deviceUUID": "007a78da1d7ade8b3f91dac7b25c7d6a55b7e2ec" - }, - "pb-IF4iUGkDCA==": { - "display_string": [ - "\ue063HarmfulFo2" - ], - "profiles": [], - "name": "\ue063HarmfulFo2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 14:43:13", - "registerOn": 1686046162.8878715, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686046162.887872, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686046162.8878798, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686046162.887881, - "lastIP": "azo~|j~}hdang", - "deviceUUID": "4c086ba260e6e4b55bf22bc35cac76c8be7a4c30" - }, - "pb-IF4UU2USVg==": { - "display_string": [ - "\ue063NoNameA209230" - ], - "profiles": [], - "name": "\ue063NoNameA209230", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-16 05:04:28", - "registerOn": 1686047012.373745, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686047012.3737454, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686047012.3737519, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686047012.3737528, - "lastIP": "avh~~jiaifyva}k", - "deviceUUID": "577d8e7bb9cf09496346eca962b22ec0e5f8ceb5" - }, - "pb-IF4SU0sEMQ==": { - "display_string": [ - "\ue063ErroneousO" - ], - "profiles": [], - "name": "\ue063ErroneousO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-07 20:58:10", - "registerOn": 1686047032.8588314, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686047032.858832, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686047032.8588398, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686047032.8588405, - "lastIP": "gwvazn~}keama", - "deviceUUID": "d7554607e0bc93bc89b4dbbdaffd6e335e5b9cb1" - }, - "pb-IF4tUBExKw==": { - "display_string": [ - "\ue063Gripobema" - ], - "profiles": [], - "name": "\ue063Gripobema", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-20 01:03:59", - "registerOn": 1686047047.607388, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686047047.6073885, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686047047.607397, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686047047.607398, - "lastIP": "c~vd\u007fva}`~~md", - "deviceUUID": "b607a09876538385819283e7b47e514447e8f837" - }, - "pb-IF4yU0hYEw==": { - "display_string": [ - "\ue063rajkekings" - ], - "profiles": [], - "name": "\ue063rajkekings", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 11:40:09", - "registerOn": 1686047846.6950073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686047846.6950078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686131987.566587, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686131987.566588, - "lastIP": "awj~ya~~ogao`", - "deviceUUID": "052bbfd43b91c5bc01d4ba79df1c076697418a48" - }, - "pb-IF4sU3VSMg==": { - "display_string": [ - "\ue030Android62764913" - ], - "profiles": [], - "name": "\ue030Android62764913", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-18 16:13:27", - "registerOn": 1686049478.0069194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686049478.00692, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686049478.006929, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686049486.7297146, - "lastIP": "dvvc}vawo~}i", - "deviceUUID": "cb6dd8b1d356943cea4f7e54c07fc932a91971ec" - }, - "pb-IF5TUGxZAg==": { - "display_string": [ - "\ue063EldestDoom" - ], - "profiles": [], - "name": "\ue063EldestDoom", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 07:10:35", - "registerOn": 1686049951.8139648, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686049951.8139656, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686049951.8139727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686049951.8139737, - "lastIP": "a\u007fn~}i`ajdwvazn", - "deviceUUID": "8bff4b7262f21a94f7baf0cc40116e0e43bd1a36" - }, - "pb-IF40UGMbEg==": { - "display_string": [ - "\ue063Android64980317" - ], - "profiles": [], - "name": "\ue063Android64980317", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-01 11:43:12", - "registerOn": 1686050124.073694, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686050124.0736947, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686050124.0737038, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686050124.0737047, - "lastIP": "azj~zo~}iaanf", - "deviceUUID": "10ce7f0a6626a5d23ae6ed3d6866c7df9eeb5138" - }, - "pb-IF4gUGIyAQ==": { - "display_string": [ - "\ue063NoNameD3078665" - ], - "profiles": [], - "name": "\ue063NoNameD3078665", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-24 20:31:46", - "registerOn": 1686051354.2725472, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686051354.2725477, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686051354.272557, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686051354.2725587, - "lastIP": "azl~~jaaidaii{", - "deviceUUID": "4ec7624a7916f6dd965c86600f51480556663c0d" - }, - "pb-IF5TU0oIIw==": { - "display_string": [ - "\ue063V7R9", - "\ue030Android63716406" - ], - "profiles": [], - "name": "\ue063V7R9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-22 11:16:51", - "registerOn": 1686051803.0649643, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686051803.064965, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686051803.0649726, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686051803.0649738, - "lastIP": "a\u007fn~}iaaleaib\u007f", - "deviceUUID": "7fe9139a488fa55b84125d7060d13576802ae897" - }, - "pb-IF4VUlJYFg==": { - "display_string": [ - "\ue063Concomita8" - ], - "profiles": [], - "name": "\ue063Concomita8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-24 14:12:53", - "registerOn": 1686052054.1118298, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686052054.1118305, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686294593.1639957, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686294593.1639972, - "lastIP": "dvva{va~l~x`", - "deviceUUID": "3b574b234f4984d8ab8cfbbca3a41987677635d0" - }, - "pb-IF4wVWoGMg==": { - "display_string": [ - "\ue063EasyCreato" - ], - "profiles": [], - "name": "\ue063EasyCreato", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-14 13:50:31", - "registerOn": 1686053106.9448762, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686053106.944877, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686053106.944884, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686053106.944885, - "lastIP": "a~o~}h`ajeajd~", - "deviceUUID": "48860c874bbd227f54293e5376937b42ff942cba" - }, - "pb-IF4HUmRfKw==": { - "display_string": [ - "\ue063IAMGROOTUS" - ], - "profiles": [], - "name": "\ue063IAMGROOTUS", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-03 14:36:04", - "registerOn": 1686053182.2486453, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686053182.2486463, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686053182.2486544, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686054477.5430005, - "lastIP": "b}k~~`gaia{vavh", - "deviceUUID": "e3cfb7d6bfdd21cc19ecf5cd314b23ee982fbe5d", - "cMsgCount": 0, - "lastMsgTime": 1686055057.3228865, - "lastMsg": "done", - "cSameMsg": 0 - }, - "pb-IF40UGYODw==": { - "display_string": [ - "\ue030Android65091386" - ], - "profiles": [], - "name": "\ue030Android65091386", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-19 13:09:03", - "registerOn": 1686053283.65152, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686053283.6515205, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686053283.6515305, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686053283.6515315, - "lastIP": "dvvc|vb}k~~oi", - "deviceUUID": "c43d6ef6091374d63a8d834234ecebe43939771c" - }, - "pb-IF4RU0xbFg==": { - "display_string": [ - "\ue063Reaction61" - ], - "profiles": [], - "name": "\ue063Reaction61", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 16:31:21", - "registerOn": 1686054319.3017573, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686054319.3017583, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686173229.544904, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686173245.5962617, - "lastIP": "i}va~a~yi~}o", - "deviceUUID": "91e4f82667ecf0002c18d9d2b3030abeba922abb" - }, - "pb-IF4lU2caEg==": { - "display_string": [ - "\ue063KiskiBaji" - ], - "profiles": [], - "name": "\ue063KiskiBaji", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-24 19:56:44", - "registerOn": 1686054495.961072, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686054495.9610724, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686054495.9610815, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686054495.9610827, - "lastIP": "aya~~liajbzvb", - "deviceUUID": "57fa642118004b48170038aab0ca9cdc6378d550" - }, - "pb-IF4KUkcKNg==": { - "display_string": [ - "\ue063MeatyWool3" - ], - "profiles": [], - "name": "\ue063MeatyWool3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-09 18:12:12", - "registerOn": 1686054555.455325, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686054555.4553256, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686054555.4553325, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686054555.455334, - "lastIP": "dvvc{vh|vaw", - "deviceUUID": "7dfb2afcb0e94d240206691390bf89c43f2ef821" - }, - "pb-IF4UV2giLQ==": { - "display_string": [ - "\ue063NoName2993354", - "\ue030Android28560086", - "\ue030Android51130636" - ], - "profiles": [], - "name": "\ue063NoName2993354", - "isBan": false, - "isMuted": false, - "accountAge": "2018-10-18 20:49:05", - "registerOn": 1686054897.4537525, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686054897.4537532, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686054897.45376, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686054897.4537609, - "lastIP": "azo~{j~}hfajax", - "deviceUUID": "c13e239ad5854362acf0a414ea711fc9fd102df0" - }, - "pb-IF4QUBYSMQ==": { - "display_string": [ - "\ue063LunarJoint" - ], - "profiles": [], - "name": "\ue063LunarJoint", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-29 13:09:59", - "registerOn": 1686056355.9793973, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686056355.9793978, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686056355.9794047, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686056355.9794059, - "lastIP": "azj~z`~~`~~kc", - "deviceUUID": "e67dcd2ba98c51600c6c5418317a95f145bc0530" - }, - "pb-IF4SUGkMNg==": { - "display_string": [ - "\ue063NoNameD3911062" - ], - "profiles": [], - "name": "\ue063NoNameD3911062", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-03 18:56:12", - "registerOn": 1686056716.7779093, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686056716.7779098, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686056716.7779367, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686056716.7779377, - "lastIP": "azj~z`~}h`aihv", - "deviceUUID": "74a1e4c44d6e0695c12b2c95317b748865991461" - }, - "pb-IF4zU00GCg==": { - "display_string": [ - "\ue063SilentSal3" - ], - "profiles": [], - "name": "\ue063SilentSal3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 14:08:37", - "registerOn": 1686057512.7247896, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686057512.7247903, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686057512.7247975, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686057512.7247987, - "lastIP": "azo~|k~vi~~a`", - "deviceUUID": "3237074d7292904a27c82bb9ca6298c23ad6f5f9" - }, - "pb-IF4AUGUiDg==": { - "display_string": [ - "\ue063Imminen118" - ], - "profiles": [], - "name": "\ue063Imminen118", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-09 08:45:10", - "registerOn": 1686057746.572226, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686057746.5722265, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686114201.3450425, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686114201.3450437, - "lastIP": "b}k~~`gaih{vb}m", - "deviceUUID": "462f04148f2ebb5d983d22a9b33292f343543284" - }, - "pb-IF4zUko6Jw==": { - "display_string": [ - "\ue063Favorab352" - ], - "profiles": [], - "name": "\ue063Favorab352", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-20 15:00:46", - "registerOn": 1686059873.9650183, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686059873.9650195, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686059873.965029, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686059873.9650302, - "lastIP": "a\u007fk~~lhaj`al`", - "deviceUUID": "3acd397263ec5ab66d15567cf0e98dfbbb915976" - }, - "pb-IF4iU1RbLA==": { - "display_string": [ - "\ue063littleoutb" - ], - "profiles": [], - "name": "\ue063littleoutb", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-02 20:20:31", - "registerOn": 1686060128.9316585, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686060128.931659, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686301205.2406633, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686301205.2406642, - "lastIP": "dvvcyvavk~}if", - "deviceUUID": "33e0374ff43270136cbf12d8cb479b59f912066a" - }, - "pb-IF4pU1oqVg==": { - "display_string": [ - "\ue063Rosie07" - ], - "profiles": [], - "name": "\ue063Rosie07", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-05 11:33:37", - "registerOn": 1686061774.4784093, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686061774.47841, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686334025.49592, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686334025.4959211, - "lastIP": "a|j~~mdamiaih\u007f", - "deviceUUID": "7ee71d578344c9f3f3ba95c6c87390e91fdfd2da" - }, - "pb-IF4GUnhdIg==": { - "display_string": [ - "\ue063ParanoidB9", - "\ue030Android65191533", - "\ue030Android65191423", - "\ue030Android57762585", - "\ue030Android65191507" - ], - "profiles": [], - "name": "\ue063ParanoidB9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-01 21:29:55", - "registerOn": 1686062134.8415718, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686062134.8415728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686233252.905468, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686233252.9054692, - "lastIP": "a\u007fn~}hcaiazvaz", - "deviceUUID": "dc3a4d5eedf35f283390c78ea91ad84133640102" - }, - "pb-IF5UVW4cUA==": { - "display_string": [ - "\ue063Kashilegen" - ], - "profiles": [], - "name": "\ue063Kashilegen", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-04 15:13:30", - "registerOn": 1686062421.8607736, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686062421.8607745, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686062421.8607824, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686062421.8607836, - "lastIP": "a~o~}k`aicyvav`", - "deviceUUID": "412cf565b67bed338e82c45f089c81f997092a97" - }, - "pb-IF4BVFgaHw==": { - "display_string": [ - "\ue063SureSale26", - "\ue030Android44951382" - ], - "profiles": [], - "name": "\ue063SureSale26", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-18 20:05:22", - "registerOn": 1686062982.1706784, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686062982.170679, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686062982.1706882, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686062982.1706893, - "lastIP": "dvvd}vfwva|h", - "deviceUUID": "e4e8d32a9433c264f7b6ad642467a8c7260689c2" - }, - "pb-IF5dUBkzVg==": { - "display_string": [ - "\ue063AquaticTor" - ], - "profiles": [], - "name": "\ue063AquaticTor", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-01 20:32:23", - "registerOn": 1686063051.4650204, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686063051.465021, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686063051.465028, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686063051.465029, - "lastIP": "awh~vl~|l~{", - "deviceUUID": "b31d01df6ffa08606cde7195f697baad2ae59076", - "cMsgCount": 0, - "lastMsgTime": 1686063455.776909, - "lastMsg": "veer ji da dhabbha", - "cSameMsg": 0 - }, - "pb-IF4jVWsgNw==": { - "display_string": [ - "\ue063Soloboom38" - ], - "profiles": [], - "name": "\ue063Soloboom38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-16 18:06:16", - "registerOn": 1686063337.4529994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686063337.4530003, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686397146.6340463, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686397146.6340475, - "lastIP": "a~o~}jhaoaaj`}", - "deviceUUID": "e87680f7ed1ca47a13478c5debb8dd3b814b8241" - }, - "pb-IF5dVW0YMw==": { - "display_string": [ - "\ue063LeatherSe3" - ], - "profiles": [], - "name": "\ue063LeatherSe3", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-25 20:51:35", - "registerOn": 1686063508.4926257, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686063508.4926264, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686063508.4926934, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686063508.4926946, - "lastIP": "a\u007fk~~miaie|vb~j", - "deviceUUID": "3b609b7cd1cae5ee384c8d63ab1cd98426b3c4f0" - }, - "pb-IF40VG4pMg==": { - "display_string": [ - "\ue063HurtPunch1", - "\ue030Android51624848" - ], - "profiles": [], - "name": "\ue063HurtPunch1", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-03 22:22:39", - "registerOn": 1686063761.640727, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686063761.640728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686063761.6407375, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686063761.6407385, - "lastIP": "dvvcyva|a~}o", - "deviceUUID": "157fe612350fe34266a2acab3afa7f1a14469c0e" - }, - "pb-IF5VU1QEEw==": { - "display_string": [ - "\ue063Irregula94" - ], - "profiles": [], - "name": "\ue063Irregula94", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-23 15:54:07", - "registerOn": 1686064627.9226136, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686064627.922614, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686064627.9226213, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686064627.9226222, - "lastIP": "axo~}jfajd|vb\u007fl", - "deviceUUID": "621768b5f581db64c1ed6b0a7fe124d41943bf9c" - }, - "pb-IF4PU00xDw==": { - "display_string": [ - "\ue063vishalgame" - ], - "profiles": [], - "name": "\ue063vishalgame", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 14:10:01", - "registerOn": 1686064733.2658887, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686064733.2658892, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686064733.2658954, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686064733.2658966, - "lastIP": "awj~ya~~ofaag", - "deviceUUID": "f222e070888fd74a8a8544a97b137cf4f5341fce", - "cMsgCount": 0, - "lastMsgTime": 1686065092.7954214, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4GU1AEIA==": { - "display_string": [ - "\ue063DsbParth" - ], - "profiles": [], - "name": "\ue063DsbParth", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-08 20:37:35", - "registerOn": 1686065366.8093028, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686065366.8093038, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686389133.6437857, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686389133.643787, - "lastIP": "awj~}kgaieyvdz", - "deviceUUID": "9fbe61bd0d39414b0f72fd952321a435896d6125" - }, - "pb-IF4OU3YzNQ==": { - "display_string": [ - "\ue063DemonicIte" - ], - "profiles": [], - "name": "\ue063DemonicIte", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 11:27:30", - "registerOn": 1686065516.3103688, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686065516.3103693, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686065516.3103762, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686065516.3103771, - "lastIP": "azj~z`~~`iaja~", - "deviceUUID": "28c10c186cb1d03164639531206345933936b166" - }, - "pb-IF4gU3MaCw==": { - "display_string": [ - "\ue063VoidBoi" - ], - "profiles": [], - "name": "\ue063VoidBoi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-11 11:07:07", - "registerOn": 1686066006.402245, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686066006.4022455, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686066006.4022748, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686066006.4022758, - "lastIP": "axi~xa~~m`aih~", - "deviceUUID": "65eefdac5ecdbd16eaa8755683a811f92ee7d468" - }, - "pb-IF4iVWlTBg==": { - "display_string": [ - "\ue063Thirtee255" - ], - "profiles": [], - "name": "\ue063Thirtee255", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-04 11:01:57", - "registerOn": 1686066786.8210607, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686066786.8210618, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686236338.574404, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686236338.5744052, - "lastIP": "a\u007fn~}hhaje|vfw", - "deviceUUID": "b5ebec4d6c2df1e92e13796dcc05d669553bd3b8", - "cMsgCount": 1, - "lastMsgTime": 1686067527.4436977, - "lastMsg": "bye", - "cSameMsg": 0 - }, - "pb-IF4NVVMdDQ==": { - "display_string": [ - "\ue063InmostCase" - ], - "profiles": [], - "name": "\ue063InmostCase", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-02 18:16:04", - "registerOn": 1686066885.467762, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686066885.4677627, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686066885.4677694, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686066885.4677703, - "lastIP": "a~o~v`~{j~~mf", - "deviceUUID": "280f737c9a414d8591cc2b350dbd9baa4743c1dc" - }, - "pb-IF5RVWMjMw==": { - "display_string": [ - "\ue063rahulsathe" - ], - "profiles": [], - "name": "\ue063rahulsathe", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-05 12:25:14", - "registerOn": 1686067491.0045884, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686067491.004589, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686067491.0045958, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686067491.0045965, - "lastIP": "azj~zo~~miajdw", - "deviceUUID": "71aa2e26bc7356a0bf0af6c998fd153d2d385d2a" - }, - "pb-IF4wV2paCg==": { - "display_string": [ - "\ue063saisurya00", - "\ue030Android28559972" - ], - "profiles": [], - "name": "\ue063saisurya00", - "isBan": false, - "isMuted": false, - "accountAge": "2018-10-30 19:07:23", - "registerOn": 1686067501.7199528, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686067501.7199533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686067501.7199607, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686067501.7199616, - "lastIP": "azo~{n~~hhaify", - "deviceUUID": "03240151cbebd9f66b697e56b45339b48c5610a8" - }, - "pb-IF4TUlA9HA==": { - "display_string": [ - "\ue063kaushikp00", - "\ue030Android58972291" - ], - "profiles": [], - "name": "\ue063kaushikp00", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-17 17:57:07", - "registerOn": 1686068191.4781976, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686068191.4781983, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686068191.4782069, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686068191.478208, - "lastIP": "dvvc{ve~vd|", - "deviceUUID": "dc74cdb2efcfeea120f5a98661c0a08c7026fc26" - }, - "pb-IF4OUGcnKg==": { - "display_string": [ - "\ue063CyclicCit2" - ], - "profiles": [], - "name": "\ue063CyclicCit2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-20 20:04:01", - "registerOn": 1686069107.9618266, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686069107.961827, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686069107.9618332, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686069107.9618342, - "lastIP": "azo~|l~}kfaiew", - "deviceUUID": "3431eb1717fed592e1fa2b030f318d3518be05c1" - }, - "pb-IF4WVBEFEQ==": { - "display_string": [ - "\ue063Microsco38" - ], - "profiles": [], - "name": "\ue063Microsco38", - "isBan": false, - "isMuted": false, - "accountAge": "2019-06-23 01:12:56", - "registerOn": 1686069456.1741943, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686069456.1741953, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686069456.1742027, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686069456.1742036, - "lastIP": "a\u007fn~xn~}kia``", - "deviceUUID": "067ba54451f0cab51d38ef1dbde60cab667faca1" - }, - "pb-IF42U3o8JA==": { - "display_string": [ - "\ue063prajwalSah" - ], - "profiles": [], - "name": "\ue063prajwalSah", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-09 16:28:45", - "registerOn": 1686069972.58018, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686069972.5801804, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686069972.5801883, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686069972.5801892, - "lastIP": "dvvcyvawvc{", - "deviceUUID": "26c3f1a8c51c46361efaf798633e2f44d633040a" - }, - "pb-IF4GUGZfKg==": { - "display_string": [ - "\ue030Android65046800" - ], - "profiles": [], - "name": "\ue030Android65046800", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-12 07:48:34", - "registerOn": 1686072340.0537286, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686072340.0537293, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686072340.0537355, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686072340.0537367, - "lastIP": "ayi~}j~|m~}md", - "deviceUUID": "87a8925070f2d48d2454896ffa2d31f506c6f55a" - }, - "pb-IF4GVUUOKA==": { - "display_string": [ - "\ue063DRpsycho43" - ], - "profiles": [], - "name": "\ue063DRpsycho43", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-12 11:34:03", - "registerOn": 1686072437.3646755, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686072437.364676, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686072437.364684, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686072437.364685, - "lastIP": "azo~{n~~kcak", - "deviceUUID": "5ab0961ebaba067bf185250f9dfbf073b7391244" - }, - "pb-IF40U2cGMw==": { - "display_string": [ - "\ue063BruceLee7" - ], - "profiles": [], - "name": "\ue063BruceLee7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-25 14:36:41", - "registerOn": 1686072451.445139, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686072451.4451394, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686072451.4451485, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686072451.4451494, - "lastIP": "b}k~|h~}h~}mc", - "deviceUUID": "12483f1a51af3a6e4cd68902e64400b6579804a8", - "cMsgCount": 0, - "lastMsgTime": 1686072484.3117156, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4XUBEqVA==": { - "display_string": [ - "\ue063ahmed365" - ], - "profiles": [], - "name": "\ue063ahmed365", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-16 22:14:51", - "registerOn": 1686074182.271154, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686074182.2711544, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686268530.9923966, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686268530.9923975, - "lastIP": "azl~~`baif}ve\u007f", - "deviceUUID": "17b1814c2389c27101269c6ed07a1ecc84def2d9" - }, - "pb-IF4qDVYk": { - "display_string": [ - "\ue063RundownR19" - ], - "profiles": [], - "name": "\ue063RundownR19", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-18 01:45:45", - "registerOn": 1686074193.3209348, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686074193.3209352, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686074193.3209412, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686074193.3209429, - "lastIP": "a~h~}jdaia|va}i", - "deviceUUID": "eb0e89ce95be8526b9ae0c2e558b1b271677b172" - }, - "pb-IF4VU3ISVQ==": { - "display_string": [ - "\ue063YouthoobGa" - ], - "profiles": [], - "name": "\ue063YouthoobGa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 18:45:12", - "registerOn": 1686074850.8401294, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686074850.8401299, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686074850.840138, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686074850.8401396, - "lastIP": "azo~{l~}hiajdz", - "deviceUUID": "0d57bfe00283fbf98f27f5de85eb1a4898e67a6e" - }, - "pb-IF4VVUU-Ew==": { - "display_string": [ - "\ue063AkshayOP" - ], - "profiles": [], - "name": "\ue063AkshayOP", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-17 12:00:57", - "registerOn": 1686076350.609453, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686076350.6094542, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686076350.609463, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686076350.6094642, - "lastIP": "dvvc}vaw`~|k", - "deviceUUID": "b9c64e69060334bcc93bbb4d027c6c80f9d97714" - }, - "pb-IF5dVW4SPA==": { - "display_string": [ - "\ue063NoviceChoi" - ], - "profiles": [], - "name": "\ue063NoviceChoi", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-04 16:04:46", - "registerOn": 1686077621.8728352, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686077621.8728359, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686128558.4399612, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686128558.4399624, - "lastIP": "dvvc|vb\u007fo~~ac", - "deviceUUID": "b11b52d7767f73423809e624a14aba8384b2f999", - "cMsgCount": 0, - "lastMsgTime": 1686128629.9269843, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4JUGUvEQ==": { - "display_string": [ - "\ue063Kingbrose9", - "\ue020SandyBookworm62", - "\ue020ConcernedCrown54", - "\ue020DigestiveHabit70", - "\ue020ChewyCitation41" - ], - "profiles": [], - "name": "\ue063Kingbrose9", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-10 06:39:33", - "registerOn": 1686078041.0791385, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686078041.0791395, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686153777.0757434, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686153777.0757446, - "lastIP": "avo~{k~vk~y", - "deviceUUID": "87b326222f060f4c6c19669026fa20f57d71fbbd" - }, - "pb-IF4pU04jNg==": { - "display_string": [ - "\ue030Android63907607" - ], - "profiles": [], - "name": "\ue030Android63907607", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 18:42:57", - "registerOn": 1686078551.024391, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686078551.0243917, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686078551.0244005, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686078569.7261646, - "lastIP": "ewva{m~~aaajdz", - "deviceUUID": "6d3365f7a16dcacdb546766a0eb65f2962cc5466" - }, - "pb-IF43UGpSEA==": { - "display_string": [ - "\ue063PrimaLabel" - ], - "profiles": [], - "name": "\ue063PrimaLabel", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-07 00:28:24", - "registerOn": 1686079592.1336722, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686079592.133673, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686079592.1336818, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686079592.1336827, - "lastIP": "axi~zh~~naaih", - "deviceUUID": "c94c888d76946a3b42bcef8d5a57e67854b48e1e" - }, - "pb-IF4sUGYjUw==": { - "display_string": [ - "\ue063KindestBoo" - ], - "profiles": [], - "name": "\ue063KindestBoo", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-20 23:54:51", - "registerOn": 1686079593.4096448, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686079593.4096456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686079593.4096537, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686079593.4096549, - "lastIP": "a}j~~ogamgaiax", - "deviceUUID": "43c7aa0b8e6ca0df1dee0e297599665d9dd266a0" - }, - "pb-IF4uU2U7Bg==": { - "display_string": [ - "\ue020SiMiTCiTR", - "\ue020DefiantPile38", - "\ue063WeeperBoy", - "\ue030Android60844191", - "\ue030Android60980985" - ], - "profiles": [], - "name": "\ue063WeeperBoy", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-17 13:24:35", - "registerOn": 1686079688.7583554, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686079688.7583559, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686079688.758365, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686079688.7583659, - "lastIP": "hwvbzj~\u007fvg", - "deviceUUID": "5d47336e972a284382616ff8e88f137e6c3e9673" - }, - "pb-IF5UUGhSIA==": { - "display_string": [ - "\ue063GurglingAb" - ], - "profiles": [], - "name": "\ue063GurglingAb", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-14 23:14:56", - "registerOn": 1686079894.226743, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686079894.2267435, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686125447.132678, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686125447.1326795, - "lastIP": "i{vb|j~xa~yk", - "deviceUUID": "35b9c1f3482f8d9b714c717bf462f9110fc49873" - }, - "pb-IF4oUmcI": { - "display_string": [ - "\ue063Pk4155" - ], - "profiles": [], - "name": "\ue063Pk4155", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-03 17:04:28", - "registerOn": 1686080481.6916933, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686080481.691694, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686080481.6917045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686080481.6917057, - "lastIP": "a\u007fn~}i`aie|vf~", - "deviceUUID": "3b40b4330f071074f51efc3dcb12ae8577840872" - }, - "pb-IF41UGYnFA==": { - "display_string": [ - "\ue063ItxQueen24" - ], - "profiles": [], - "name": "\ue063ItxQueen24", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-17 13:45:50", - "registerOn": 1686080799.3276494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686080799.32765, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686080799.3276565, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686080799.3276575, - "lastIP": "b}k~~jcakianf", - "deviceUUID": "9ee5833187c0780b7756ccf7f84afae4c496314e" - }, - "pb-IF4NUGgfEA==": { - "display_string": [ - "\ue063Abisuriyas" - ], - "profiles": [], - "name": "\ue063Abisuriyas", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 06:10:48", - "registerOn": 1686097249.941562, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686097249.9415624, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686097249.9415698, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686097249.941571, - "lastIP": "a\u007fn~}hfaj`wvb{n", - "deviceUUID": "2233e4a08c999495fd0a8b069c1d8e03adb36957" - }, - "pb-IF4eU1gjXQ==": { - "display_string": [ - "\ue030Android64311499" - ], - "profiles": [], - "name": "\ue030Android64311499", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-25 19:10:33", - "registerOn": 1686100769.2744958, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686100769.2744963, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686100769.2745047, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686100769.2745056, - "lastIP": "a~a~vl~yl~vo", - "deviceUUID": "46010db47c4ea1c6087270634d42e0e10e9ec3ff" - }, - "pb-IF5VU2obJg==": { - "display_string": [ - "\ue063NoNameC3888828", - "\ue030Android61531784" - ], - "profiles": [], - "name": "\ue063NoNameC3888828", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-27 16:24:53", - "registerOn": 1686105244.3683078, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686105244.3683088, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686105244.368317, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686105244.3683178, - "lastIP": "b}k~}jeaib}vaw", - "deviceUUID": "7d1dcc7c42bf5670d93e2ca12dc9d1ccb0b282da" - }, - "pb-IF4pUBUhDw==": { - "display_string": [ - "\ue063ContentSo2" - ], - "profiles": [], - "name": "\ue063ContentSo2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-15 20:40:07", - "registerOn": 1686105263.4485106, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686105263.4485111, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686105263.448518, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686105263.4485197, - "lastIP": "b}k~~`fajd\u007fva{i", - "deviceUUID": "35be39e2c350042a4762b7364f24bf3b184ed33c" - }, - "pb-IF4RUGolUA==": { - "display_string": [ - "\ue063MayankBans" - ], - "profiles": [], - "name": "\ue063MayankBans", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-05 16:54:32", - "registerOn": 1686108682.6715891, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686108682.6715899, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686108682.6715977, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686108682.671599, - "lastIP": "dvvcyvaw`~~a`", - "deviceUUID": "53df936b10755e1ec7289cec563c1e7854d9d10b" - }, - "pb-IF4cUlhdVg==": { - "display_string": [ - "\ue063HeroicCric", - "\ue030Android60793967" - ], - "profiles": [], - "name": "\ue063HeroicCric", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-14 20:47:03", - "registerOn": 1686109105.7363546, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686109105.7363553, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686109105.7363627, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686109105.7363634, - "lastIP": "a\u007fn~}jcaih|va|o", - "deviceUUID": "1da2118ab275f2d9005119016dc8bdbcb0278102", - "cMsgCount": 0, - "lastMsgTime": 1686110019.2826512, - "lastMsg": "noob", - "cSameMsg": 0 - }, - "pb-IF4vU2UDBA==": { - "display_string": [ - "\ue063lilpyro100" - ], - "profiles": [], - "name": "\ue063lilpyro100", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-16 12:30:22", - "registerOn": 1686109183.577804, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686109183.5778046, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686109183.5778127, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686109183.5778134, - "lastIP": "a\u007fn~~haaneaia}", - "deviceUUID": "26e650305fce68f4ea0a6355002ed581ceef29ad", - "cMsgCount": 0, - "lastMsgTime": 1686109454.225406, - "lastMsg": "0", - "cSameMsg": 0 - }, - "pb-IF4dVFgCLg==": { - "display_string": [ - "\ue063Attitudebo" - ], - "profiles": [], - "name": "\ue063Attitudebo", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-17 09:31:17", - "registerOn": 1686109443.503528, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686109443.5035286, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686109443.5035338, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686109443.5035348, - "lastIP": "dvvc{vh\u007fvb\u007fh", - "deviceUUID": "47ac797e330369c217bb24f59242043b21136902" - }, - "pb-IF4UVVIiLg==": { - "display_string": [ - "\ue063Adjndb1", - "\ue030Android52784757" - ], - "profiles": [], - "name": "\ue063Adjndb1", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-19 23:02:32", - "registerOn": 1686110020.7879713, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686110020.7879722, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686110020.7879794, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686110020.7879803, - "lastIP": "cxvawn~{m~z", - "deviceUUID": "cbb761d763500f5e4d62c0896f6599d58174bd2a", - "cMsgCount": 2, - "lastMsgTime": 1686110432.3690703, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4BV0odKw==": { - "display_string": [ - "\ue063TallBulldo", - "\ue030Android33161309" - ], - "profiles": [], - "name": "\ue063TallBulldo", - "isBan": false, - "isMuted": false, - "accountAge": "2019-03-17 14:21:04", - "registerOn": 1686111355.7649882, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686111355.764989, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686111355.764996, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686111355.7649968, - "lastIP": "a\u007fn~}heajb}va\u007fi", - "deviceUUID": "7d38fbf41fdfdc76b0a432d4bcd71743bfac7631" - }, - "pb-IF4qUGhSVg==": { - "display_string": [ - "\ue063Forgetf684" - ], - "profiles": [], - "name": "\ue063Forgetf684", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-25 22:17:46", - "registerOn": 1686111369.8006403, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686111369.8006413, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686111369.800669, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686111369.8006701, - "lastIP": "azo~|o~~`aajd|", - "deviceUUID": "c3bf0eb9df5e5274765f0666d6a3fbe1e7f75972" - }, - "pb-IF4qUhQpNw==": { - "display_string": [ - "\ue063Inducti306" - ], - "profiles": [], - "name": "\ue063Inducti306", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-21 14:47:58", - "registerOn": 1686111664.8709886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686111664.870989, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686111664.870995, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686111664.8709958, - "lastIP": "azo~{a~~lbai`x", - "deviceUUID": "96224c64f2c848a2833148169a6f26d160bc1aeb" - }, - "pb-IF5XU1kzXA==": { - "display_string": [ - "\ue063Cat1ock" - ], - "profiles": [], - "name": "\ue063Cat1ock", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-19 16:23:05", - "registerOn": 1686112975.7782893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686112975.7782903, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686200048.6949553, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686204957.489311, - "lastIP": "a\u007fa~~naaja{va}m", - "deviceUUID": "97cd2c58a5518cb3e4c005e75444883c021a4f5d", - "cMsgCount": 0, - "lastMsgTime": 1686203940.7545342, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4IUGkEMw==": { - "display_string": [ - "\ue030Android65209271" - ], - "profiles": [], - "name": "\ue030Android65209271", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-07 10:15:26", - "registerOn": 1686113582.3737001, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686113582.3737009, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686113582.3737078, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686113582.3737085, - "lastIP": "azo~{a~}kbaii{", - "deviceUUID": "71a373cacf609380c824af15f192e1a64171574e" - }, - "pb-IF4XUGMiVQ==": { - "display_string": [ - "\ue030Android64929969" - ], - "profiles": [], - "name": "\ue030Android64929969", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-23 18:47:16", - "registerOn": 1686114310.184493, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686114310.1844935, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686114310.1845005, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686114525.8676727, - "lastIP": "bxvevvb}i~~nb", - "deviceUUID": "72fb8ed686d6298222d54620ed0c195da2a473c3" - }, - "pb-IF4DUxcnDg==": { - "display_string": [ - "\ue063adityasin4" - ], - "profiles": [], - "name": "\ue063adityasin4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-22 13:43:07", - "registerOn": 1686115281.1064854, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686115281.106486, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686115281.1064928, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686115281.1064935, - "lastIP": "a|j~~mdameak`", - "deviceUUID": "ee095f7b8eb88ae8c8d26e73d824b8df78563d56" - }, - "pb-IF4FUGdaPw==": { - "display_string": [ - "\ue063Munky" - ], - "profiles": [], - "name": "\ue063Munky", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-22 09:30:39", - "registerOn": 1686115790.988732, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686115790.9887328, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686115790.9887402, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686115790.988741, - "lastIP": "a\u007fk~~neaoaaog", - "deviceUUID": "dc573c74329c1aeab807a04ee7f891c262e33b6b" - }, - "pb-IF4vDEcd": { - "display_string": [ - "\ue063BronzeDoc2" - ], - "profiles": [], - "name": "\ue063BronzeDoc2", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-10 20:59:05", - "registerOn": 1686116183.4817116, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686116183.4817123, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686116183.4817195, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686116183.4817207, - "lastIP": "a\u007fn~}h`aa`ajd|", - "deviceUUID": "7ef7d6ad0d7b92d067756c64b7d5508a773207c9" - }, - "pb-JiNJARFbVkBAXV5AGE5WVVxKFkBfQlBG": { - "display_string": [ - "\ue063Pappa69" - ], - "profiles": [], - "name": "\ue063Pappa69", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-22 20:28:30", - "registerOn": 1686116482.7463496, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686116482.74635, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686116482.7463567, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686116639.0536137, - "lastIP": "a}j~~ogaiizvbzh", - "deviceUUID": "4bdfb7c511e32054dffaa70bd966bdfe9fe31ab2" - }, - "pb-IF4LUGg4Fw==": { - "display_string": [ - "\ue063UnitaryImm" - ], - "profiles": [], - "name": "\ue063UnitaryImm", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-30 14:20:27", - "registerOn": 1686118443.4935057, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686118443.4935067, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686118443.4935362, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686118443.4935372, - "lastIP": "azo~{l~~ofak", - "deviceUUID": "0357912f79ceda24db5c7175e7e34208c631c9b7" - }, - "pb-IF4FUksuIA==": { - "display_string": [ - "\ue063SEYDAL1907", - "\ue030Android59029260", - "\ue030Android48827038", - "\ue030Android63032266" - ], - "profiles": [], - "name": "\ue063SEYDAL1907", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-25 20:44:26", - "registerOn": 1686118869.6476316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686118869.6476321, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686118869.6476386, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686118869.6476395, - "lastIP": "hwvb{k~~aeaig}", - "deviceUUID": "04de1c7199b0449260ff2e7aa95bf5339e9de2c3" - }, - "pb-IF4vU0gFFQ==": { - "display_string": [ - "\ue030Android63718321" - ], - "profiles": [], - "name": "\ue030Android63718321", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-22 17:02:38", - "registerOn": 1686118960.752486, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686118960.7524867, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686118960.7524931, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686118960.752494, - "lastIP": "a}j~~oeaj`xvaz", - "deviceUUID": "7e98d2ed99b41dc4aea4e9e8e5fe9adb78c840d5" - }, - "pb-IF5TUmgEFQ==": { - "display_string": [ - "\ue063MYSTERI743", - "\ue030Android55358276" - ], - "profiles": [], - "name": "\ue063MYSTERI743", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-15 23:27:42", - "registerOn": 1686119032.2025092, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686119032.2025099, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686119032.2025218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686119032.202523, - "lastIP": "dzva~`~~mgaihy", - "deviceUUID": "cd3ae901f0961843e50baf16037cbec01fc7818c" - }, - "pb-IF4IUBA4IA==": { - "display_string": [ - "\ue063ItchyDrea2" - ], - "profiles": [], - "name": "\ue063ItchyDrea2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-17 21:28:09", - "registerOn": 1686119523.8052394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686119523.8052404, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686119523.8052468, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686120124.1354713, - "lastIP": "dvvcyvixvb~m", - "deviceUUID": "78eed585c25d2fb7364ae7771b17881cef15558a" - }, - "pb-IF5WUBc-Vw==": { - "display_string": [ - "\ue063Queen555Ou" - ], - "profiles": [], - "name": "\ue063Queen555Ou", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-19 17:03:16", - "registerOn": 1686119647.629294, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686119647.6292944, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686119647.629301, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686119647.629302, - "lastIP": "azj~z`~}haaib|", - "deviceUUID": "d5a8fd0089739f9d96bd6579d5f390400c338be7" - }, - "pb-IF42VUMOFA==": { - "display_string": [ - "\ue063CorruptPl3" - ], - "profiles": [], - "name": "\ue063CorruptPl3", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-04 16:14:09", - "registerOn": 1686119822.2470036, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686119822.2470043, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686119822.2470114, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686120176.3102531, - "lastIP": "dvvcyvexva|m", - "deviceUUID": "b2b5c541b3b32f7d9f93511a7f9184f12c345f35" - }, - "pb-IF4gVGxeXQ==": { - "display_string": [ - "\ue063Enormou417" - ], - "profiles": [], - "name": "\ue063Enormou417", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-21 01:36:44", - "registerOn": 1686120078.3822584, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686120078.3822591, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686120078.3822653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686120078.3822663, - "lastIP": "a\u007fn~}ifajd\u007fva~", - "deviceUUID": "75d797f1f12a16770177cf4b1302481e4c8bba39" - }, - "pb-IF40UGIREg==": { - "display_string": [ - "\ue063NovelGrou2" - ], - "profiles": [], - "name": "\ue063NovelGrou2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-26 08:19:05", - "registerOn": 1686120228.8139875, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686120228.8139882, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686120228.8139942, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686120228.8139951, - "lastIP": "azo~zi~~heaif|", - "deviceUUID": "732c125690447c756bae22df8dff3c83581210ec" - }, - "pb-IF4jVFQ6Bw==": { - "display_string": [ - "\ue030Android44176168" - ], - "profiles": [], - "name": "\ue030Android44176168", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-16 14:45:33", - "registerOn": 1686120349.4128978, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686120349.4128983, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686120349.4129052, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686120349.412906, - "lastIP": "a\u007fk~wm~~h~~mi", - "deviceUUID": "38c9cd517f5eb0e9ab3302ac340fa38dfa41f405" - }, - "pb-IF49VVUHAw==": { - "display_string": [ - "\ue063HonkingSom", - "\ue030Android53020453" - ], - "profiles": [], - "name": "\ue063HonkingSom", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-07 07:53:44", - "registerOn": 1686121614.508999, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686121614.5089998, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686227076.3218417, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686227076.321843, - "lastIP": "a\u007fn~~afajaaof", - "deviceUUID": "296e074e69ac7f55f3c8bb433d65d281a9a76da3" - }, - "pb-IF4HU04uVA==": { - "display_string": [ - "\ue063INXANE", - "\ue063XINSANEx", - "\ue030Android63943877" - ], - "profiles": [], - "name": "\ue063INXANE", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 14:17:49", - "registerOn": 1686122232.0881274, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686122232.0881283, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686312577.9783502, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686312577.9783514, - "lastIP": "azo~{a~~kgaibx", - "deviceUUID": "4e640eec371acc5bb6ee7f6b6425e7bd747c7e97" - }, - "pb-IF5XU0g5BA==": { - "display_string": [ - "\ue063ThirstyT11" - ], - "profiles": [], - "name": "\ue063ThirstyT11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-07 20:01:50", - "registerOn": 1686123447.6891396, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686123447.6891408, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686123447.6891487, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686123447.6891496, - "lastIP": "a\u007fn~}ifajdyvg\u007f", - "deviceUUID": "f5edb285b63cf64d4191a6c1cda6405a632f669d" - }, - "pb-IF5QU1MGFw==": { - "display_string": [ - "\ue063Pitaji" - ], - "profiles": [], - "name": "\ue063Pitaji", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-13 20:25:20", - "registerOn": 1686124992.5821562, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686124992.582157, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686124992.582164, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686124992.582165, - "lastIP": "dvva{va~m~{k", - "deviceUUID": "7200c52dda860844135f5560476c8dbc3e02b401" - }, - "pb-IF4NU0cvDQ==": { - "display_string": [ - "\ue063krishnaNS7" - ], - "profiles": [], - "name": "\ue063krishnaNS7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 19:08:59", - "registerOn": 1686125015.9234176, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686125015.9234183, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686125015.9234262, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686125015.923427, - "lastIP": "azo~{n~vk~v", - "deviceUUID": "b2f9eebd3cbbea08210d4839e46c2438330a3237" - }, - "pb-IF4UUGQuFw==": { - "display_string": [ - "\ue063IdealPacka" - ], - "profiles": [], - "name": "\ue063IdealPacka", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-30 14:32:39", - "registerOn": 1686125067.7856827, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686125067.7856832, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686247294.0348067, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686247294.034808, - "lastIP": "dvvd|vb{`~}", - "deviceUUID": "e3cc2deb8693d0f122a8c730e3fbf6fbcc8df2ea" - }, - "pb-IF4CFmcg": { - "display_string": [ - "\ue063yadavmembe", - "\ue030Android24166956" - ], - "profiles": [], - "name": "\ue063yadavmembe", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-11 12:22:32", - "registerOn": 1686125453.4806855, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686125453.4806864, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686125453.4806938, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686125453.4806948, - "lastIP": "azo~|j~|vdv", - "deviceUUID": "ead3bf344fc0743b5734fe510558272c0f208c3f" - }, - "pb-IF4IVUgjBg==": { - "display_string": [ - "\ue063Implicit41" - ], - "profiles": [], - "name": "\ue063Implicit41", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-04 13:18:17", - "registerOn": 1686125621.1748955, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686125621.1748965, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686125621.1749039, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686125621.1749048, - "lastIP": "a\u007fk~~obaocajav", - "deviceUUID": "3af6c58f34cf3eda069c674ce366492955a89348" - }, - "pb-IF4AUBkgVA==": { - "display_string": [ - "\ue063NoNameC2725276" - ], - "profiles": [], - "name": "\ue063NoNameC2725276", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-08 12:44:17", - "registerOn": 1686125916.2487552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686125916.2487557, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686125916.2487724, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686125916.2487733, - "lastIP": "a~o~v`~~hfaicz", - "deviceUUID": "7ef1a222c9f4026adcf259a319cef86ba04f64e2" - }, - "pb-IF5WUGsdCA==": { - "display_string": [ - "\ue063Deliber564" - ], - "profiles": [], - "name": "\ue063Deliber564", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-07 13:49:27", - "registerOn": 1686126189.1610498, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686126189.1610503, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686126189.161057, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686126189.1610577, - "lastIP": "bxvc{vevva|h", - "deviceUUID": "8b0597ef40a990a53aa836ec6adbfdc9fc621db1" - }, - "pb-IF5dUkknAg==": { - "display_string": [ - "\ue063Perishab94" - ], - "profiles": [], - "name": "\ue063Perishab94", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-09 12:47:28", - "registerOn": 1686126414.3005111, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686126414.3005118, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686126414.300519, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686126414.3005197, - "lastIP": "a|j~~mdaihyvavo", - "deviceUUID": "64afcef6a1b950c569ae33b1052dffe142616849" - }, - "pb-IF4VVFFSDw==": { - "display_string": [ - "\ue063Aathikesav", - "\ue030Android34117286" - ], - "profiles": [], - "name": "\ue063Aathikesav", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-27 12:02:25", - "registerOn": 1686126643.1908138, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686126643.1908145, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686126643.1908214, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686126643.1908224, - "lastIP": "bxvdaje~vb|j", - "deviceUUID": "eba399d88d0147c58b7ac0f69180c54ae03a29b0" - }, - "pb-IF5XUGgTNQ==": { - "display_string": [ - "\ue063THALAPAT45" - ], - "profiles": [], - "name": "\ue063THALAPAT45", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-16 14:29:05", - "registerOn": 1686126986.0294216, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686126986.0294223, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686126986.0294619, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686126986.0294626, - "lastIP": "dvvcxvb~i~{", - "deviceUUID": "2463cac04459f0aaa37105861d5b782d20c144d8" - }, - "pb-IF42FxkT": { - "display_string": [ - "\ue063Hashwanths" - ], - "profiles": [], - "name": "\ue063Hashwanths", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-15 20:40:19", - "registerOn": 1686127253.9596303, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686127253.9596312, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686127253.9596384, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686127253.959639, - "lastIP": "dvvcxvb~o~z`", - "deviceUUID": "c3873146834aa29af7161bada072c1c630bdc389" - }, - "pb-IF4WUlBeUA==": { - "display_string": [ - "\ue063OBOMBERO", - "\ue030Android58923222" - ], - "profiles": [], - "name": "\ue063OBOMBERO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-15 10:23:24", - "registerOn": 1686127408.452893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686127408.4528937, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686127408.4529023, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686127552.7119157, - "lastIP": "a\u007fn~}h`a`iaj`|", - "deviceUUID": "b06b71ee724e687976b1499de70937cf5dab9162" - }, - "pb-IF4LUkxfKw==": { - "display_string": [ - "\ue063pyleemacha" - ], - "profiles": [], - "name": "\ue063pyleemacha", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-01 16:40:45", - "registerOn": 1686127451.891991, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686127451.8919916, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686127451.892, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686127451.8920014, - "lastIP": "b\u007fj~w`~}lhaihx", - "deviceUUID": "09c570029acb0ad39a59f852bfa59b89854e434c" - }, - "pb-IF4TUGpaAg==": { - "display_string": [ - "\ue063Notewor349" - ], - "profiles": [], - "name": "\ue063Notewor349", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 16:30:07", - "registerOn": 1686127807.9757538, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686127807.9757545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686127807.9757626, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686127807.975764, - "lastIP": "azo~{o~{va~`", - "deviceUUID": "ab1c8eb2244909ea19d8dbc89b4172be3ac63a39" - }, - "pb-IF4vVUNfEA==": { - "display_string": [ - "\ue063sagar88822" - ], - "profiles": [], - "name": "\ue063sagar88822", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-01 00:12:49", - "registerOn": 1686128101.0478487, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686128101.0478494, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686311497.3954587, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686311497.3954601, - "lastIP": "azj~z`~~o~}ic", - "deviceUUID": "01e04b1ff025ad4db302102c93a87e771dec85f4", - "cMsgCount": 0, - "lastMsgTime": 1686311805.6060827, - "lastMsg": "\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02", - "cSameMsg": 0 - }, - "pb-JiNJVxFYUUtBX1hJEUVYXVNDEUlZT1ND": { - "display_string": [ - "\ue063aaman78659", - "\ue030Android2332173" - ], - "profiles": [], - "name": "\ue063aaman78659", - "isBan": false, - "isMuted": false, - "accountAge": "2016-06-19 11:45:35", - "registerOn": 1686128473.438456, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686128473.4384565, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686128473.438464, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686128473.4384654, - "lastIP": "a~`~~oiajgaig", - "deviceUUID": "477e5cce5b5c8b6428110158065556a52e6cdad2" - }, - "pb-IF4sU04IFA==": { - "display_string": [ - "\ue063ShariaR", - "\ue030Android64307311" - ], - "profiles": [], - "name": "\ue063ShariaR", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 20:16:06", - "registerOn": 1686128587.8458135, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686128587.8458142, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686128587.845822, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686128587.8458235, - "lastIP": "a\u007fk~~aeaid~va\u007fa", - "deviceUUID": "10cfd3a7dbd594c4a4fa60e1025094937baa39fa", - "cMsgCount": 0, - "lastMsgTime": 1686128636.2271528, - "lastMsg": "kill him", - "cSameMsg": 0 - }, - "pb-IF5XVUFcJg==": { - "display_string": [ - "\ue030Android50474962" - ], - "profiles": [], - "name": "\ue030Android50474962", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-25 14:05:51", - "registerOn": 1686129416.0898795, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686129416.0898802, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686230188.4025207, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686230188.4025218, - "lastIP": "a\u007fn~~acaia\u007fva}l", - "deviceUUID": "6be33b0e9d378948507f82a1fa1ba3d32ef93bd9" - }, - "pb-IF4-U0QoKQ==": { - "display_string": [ - "\ue063BusiestSpe" - ], - "profiles": [], - "name": "\ue063BusiestSpe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-01 16:32:39", - "registerOn": 1686129441.2011635, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686129441.201164, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686129441.2011714, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686129441.2011726, - "lastIP": "a\u007fk~~ldajbxvbzk", - "deviceUUID": "351e5f950f3a1a518365bba8838c8b4f0efc0709" - }, - "pb-IF4HUkgsPQ==": { - "display_string": [ - "\ue063AnkitRawka" - ], - "profiles": [], - "name": "\ue063AnkitRawka", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-12 14:35:02", - "registerOn": 1686129851.7646244, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686129851.764625, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686129851.7646458, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686129851.7646472, - "lastIP": "b}k~~`dajbxva|n", - "deviceUUID": "8bb40149961910f1175162fb0fc9e11b14870847" - }, - "pb-IF43UGYlDQ==": { - "display_string": [ - "\ue063Rishu772" - ], - "profiles": [], - "name": "\ue063Rishu772", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-15 18:02:22", - "registerOn": 1686130103.6511464, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686130103.6511471, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686130103.6511533, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686130103.6511545, - "lastIP": "a\u007fn~}ifaiawva}j", - "deviceUUID": "e4b5b99f02c85ce6a0f4dd4916b78e776705471f" - }, - "pb-IF40UhIPNw==": { - "display_string": [ - "\ue030Android53983730" - ], - "profiles": [], - "name": "\ue030Android53983730", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-15 13:52:54", - "registerOn": 1686130820.3667674, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686130820.3667681, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686130820.3667755, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686130820.366777, - "lastIP": "a~h~}jeamhaidw", - "deviceUUID": "1c1f06197220dbc518e887d8476a47e4875a567a" - }, - "pb-IF4dUxESIQ==": { - "display_string": [ - "\ue063Sarsus718" - ], - "profiles": [], - "name": "\ue063Sarsus718", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-02 22:53:45", - "registerOn": 1686132220.8888144, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686132220.8888154, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686132220.8888357, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686132220.8888369, - "lastIP": "a{a~~l`al~zo", - "deviceUUID": "a5dfc29e325dbb458fbf215ea9386435a1ade5da" - }, - "pb-IF4-UxJSAA==": { - "display_string": [ - "\ue063ThinkSweet" - ], - "profiles": [], - "name": "\ue063ThinkSweet", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-02 22:53:33", - "registerOn": 1686132221.7812793, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686132221.78128, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686132221.7812874, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686132221.7812884, - "lastIP": "axn~}iiajc}vawm", - "deviceUUID": "7a299d74917481974a95dbaaf2ae03c9050ad038" - }, - "pb-IF4rU0pbAQ==": { - "display_string": [ - "\ue063NoName16411" - ], - "profiles": [], - "name": "\ue063NoName16411", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-28 14:18:09", - "registerOn": 1686132222.7007632, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686132222.700764, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686132222.7007723, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686132259.5136695, - "lastIP": "dyvazl~vvb|", - "deviceUUID": "4885736a7929e43b3afadaa9a8de3747ca021115" - }, - "pb-IF4rUxcfHA==": { - "display_string": [ - "\ue063WhimsicalT" - ], - "profiles": [], - "name": "\ue063WhimsicalT", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-24 12:54:51", - "registerOn": 1686132230.9707725, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686132230.970773, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686132230.9707801, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686132230.970781, - "lastIP": "axn~}iiajcyvax", - "deviceUUID": "c6c30939df08789da893ca4b5f845b5d17c43497" - }, - "pb-IF4gUBkaIA==": { - "display_string": [ - "\ue063zaferozder" - ], - "profiles": [], - "name": "\ue063zaferozder", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-14 15:12:11", - "registerOn": 1686132238.1580565, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686132238.158057, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686132238.1580653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686132238.1580663, - "lastIP": "ealgajdwva{a", - "deviceUUID": "a3f7c7ac02df82bc6f43c5831f05413715f0d264" - }, - "pb-IF4UUBMBHA==": { - "display_string": [ - "\ue063Careless42" - ], - "profiles": [], - "name": "\ue063Careless42", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-05 12:07:51", - "registerOn": 1686133202.77552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686133202.775521, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686133202.7755513, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686133310.3373268, - "lastIP": "azj~z`~|m~}lf", - "deviceUUID": "ac16a99230d2d83318f44aa07143d3901a9ced44" - }, - "pb-IF4FVFUxVw==": { - "display_string": [ - "\ue063Nubplayer" - ], - "profiles": [], - "name": "\ue063Nubplayer", - "isBan": true, - "isMuted": false, - "accountAge": "2020-05-28 10:43:04", - "registerOn": 1686133446.3136194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686133446.3136199, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686133446.3136277, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686133485.9613407, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF5SUGszEQ==": { - "display_string": [ - "\ue063Nonchal316" - ], - "profiles": [], - "name": "\ue063Nonchal316", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-03 10:21:02", - "registerOn": 1686133975.068591, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686133975.0685918, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686133975.068599, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686133975.0686004, - "lastIP": "axi~xn~wi~xm", - "deviceUUID": "404cdf485a858da118a4cc53f1e8dd89ec6dd936" - }, - "pb-IF4UUGo-Lw==": { - "display_string": [ - "\ue063TubularAlt" - ], - "profiles": [], - "name": "\ue063TubularAlt", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-07 14:33:17", - "registerOn": 1686134482.323738, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686134482.3237388, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686134482.323746, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686134482.3237476, - "lastIP": "bxvc{va|vd\u007f", - "deviceUUID": "b7e91017744ab969b1b0fa8a4553ad81c31e0ad5" - }, - "pb-IF4sUGUCIw==": { - "display_string": [ - "\ue030Android65080295" - ], - "profiles": [], - "name": "\ue030Android65080295", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-17 16:20:02", - "registerOn": 1686134854.4677067, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686134854.4677072, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686134854.4677267, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686134854.467728, - "lastIP": "azo~zi~~a`ajdx", - "deviceUUID": "d87e66da1043d4cbeeef4e21915b1c65b5d6057f" - }, - "pb-IF4UUlMoJw==": { - "display_string": [ - "\ue063DarkestIn5" - ], - "profiles": [], - "name": "\ue063DarkestIn5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-25 18:43:53", - "registerOn": 1686135044.3957784, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686135044.395779, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686135044.3957877, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686135044.395789, - "lastIP": "a}j~zh~~aeajdy", - "deviceUUID": "e51ef9284846da2c34d0d22e4908a13acbba6f35" - }, - "pb-IF4mUkwuCQ==": { - "display_string": [ - "\ue063Agentkarup" - ], - "profiles": [], - "name": "\ue063Agentkarup", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-01 13:33:43", - "registerOn": 1686136040.8494637, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686136040.8494647, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686136040.8494716, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686136040.8494725, - "lastIP": "a~m~va~vn~}he", - "deviceUUID": "a4ed288ac9e141e9f26deb05beefced02d464012" - }, - "pb-IF4UVUQGCA==": { - "display_string": [ - "\ue063IrfanSheri", - "\ue030Android43938917" - ], - "profiles": [], - "name": "\ue063IrfanSheri", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-08 22:45:56", - "registerOn": 1686137217.1223893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686137217.12239, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686137217.1223981, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686137217.1223996, - "lastIP": "bxvf}va|ve~", - "deviceUUID": "6937e67743d6454270a82d48d600aa51506c1d84" - }, - "pb-IF4jU2wfVQ==": { - "display_string": [ - "\ue063minecraf90", - "\ue030Android62407517", - "\ue030Android62407450" - ], - "profiles": [], - "name": "\ue063minecraf90", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-11 20:26:50", - "registerOn": 1686137294.5769966, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686137294.5769973, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686137294.577005, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686138729.0761101, - "lastIP": "a\u007fk~wa~}keai`y", - "deviceUUID": "b001124a818ebd76cbf039c9fd1b3acce02937cc" - }, - "pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB": { - "display_string": [ - "\ue063NoName265731", - "\ue030unknown" - ], - "profiles": [], - "name": "\ue063NoName265731", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-03 00:30:21", - "registerOn": 1686137769.680921, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686137769.6809218, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686333707.3276975, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686333707.3276985, - "lastIP": "a~h~}jgancaih|", - "deviceUUID": "e30952bda624a1707c15cfb174e914d0a114370f" - }, - "pb-IF4-VUReVg==": { - "display_string": [ - "\ue063SonuMaan10" - ], - "profiles": [], - "name": "\ue063SonuMaan10", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-06 16:14:23", - "registerOn": 1686138318.6713057, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686138318.6713061, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686138318.6713161, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686138318.6713173, - "lastIP": "a}l~}mcaidzvb\u007fk", - "deviceUUID": "233971f76459cc63a975525ed9e009bd9ebc1ba3" - }, - "pb-IF5SUGoKAA==": { - "display_string": [ - "\ue030Android65148875" - ], - "profiles": [], - "name": "\ue030Android65148875", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-28 11:57:44", - "registerOn": 1686138800.9351656, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686138800.9351668, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686138800.935173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686138800.935174, - "lastIP": "dvvcxvb}n~}ie", - "deviceUUID": "d08bf95f1c08357a8f7268631cc3bca0d3bc068a" - }, - "pb-IF4PUnYxAA==": { - "display_string": [ - "\ue063PutridDete" - ], - "profiles": [], - "name": "\ue063PutridDete", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-28 15:03:52", - "registerOn": 1686139353.985224, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686139353.9852247, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686139353.9852316, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686139353.9852328, - "lastIP": "evvhwvb}l~}ib", - "deviceUUID": "f6d54f6f086fd4160878f8d5ee59bea17b5a98ed" - }, - "pb-IF4WVFMDJg==": { - "display_string": [ - "\ue063LUC1FER005" - ], - "profiles": [], - "name": "\ue063LUC1FER005", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-18 17:48:18", - "registerOn": 1686139899.0297818, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686139899.0297823, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686139899.029788, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686139899.0297887, - "lastIP": "a\u007fn~}jaaie|vava", - "deviceUUID": "5426938e47772f3ec2111f04a4495dfe5e3ecd3b" - }, - "pb-IF5dUBYsKA==": { - "display_string": [ - "\ue063BraverVis2" - ], - "profiles": [], - "name": "\ue063BraverVis2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-13 12:31:23", - "registerOn": 1686140146.0016758, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686140146.0016768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686140146.0016844, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686140146.0016859, - "lastIP": "azj~z`~}icaj`|", - "deviceUUID": "843518523b47b4a86c47562a0706ef88457fa0f8" - }, - "pb-IF5UUGkgNQ==": { - "display_string": [ - "\ue063FiercestNo" - ], - "profiles": [], - "name": "\ue063FiercestNo", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-22 08:51:12", - "registerOn": 1686141402.7913516, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686141402.7913523, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686141402.79136, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686141462.693356, - "lastIP": "a\u007fk~~ndaiiyvdw", - "deviceUUID": "faf61e806e081dbfc50dee8962ae5843694c8ce8" - }, - "pb-IF4OUGgPUQ==": { - "display_string": [ - "\ue063Lilyy" - ], - "profiles": [], - "name": "\ue063Lilyy", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-27 14:36:25", - "registerOn": 1686141882.721728, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686141882.7217288, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686161036.115773, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686163436.1218526, - "lastIP": "a~j~~kdaida`h", - "deviceUUID": "d667718161b68488370fc681e609259b5f07aa2d" - }, - "pb-IF4PU1QCAg==": { - "display_string": [ - "\ue063BluePartic" - ], - "profiles": [], - "name": "\ue063BluePartic", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-03 11:07:14", - "registerOn": 1686141894.6835933, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686141894.6835938, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686141894.6836014, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686141894.6836023, - "lastIP": "b}k~}kcaodaj", - "deviceUUID": "5153d735950ac5ff9986497b6c8154dc566d421d" - }, - "pb-IF4mVU4qPw==": { - "display_string": [ - "\ue020GovernmentalClinic30", - "\ue063Gokulplayz" - ], - "profiles": [], - "name": "\ue063Gokulplayz", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-01 15:04:23", - "registerOn": 1686141996.0883482, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686141996.0883489, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686141996.0883577, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686141996.0883586, - "lastIP": "dvvb\u007fl~~keaiix", - "deviceUUID": "5577cdcea9600023f8728dfe9a526ad759e74c52" - }, - "pb-IF5UUGxcIg==": { - "display_string": [ - "\ue030Android65211220" - ], - "profiles": [], - "name": "\ue030Android65211220", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-07 18:13:24", - "registerOn": 1686142079.3531516, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686142079.353152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686142079.353158, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686142079.353159, - "lastIP": "b}k~}khanfaig{", - "deviceUUID": "87d56a04acad861501daec02d5a10b2db874ecb6" - }, - "pb-IF48VEtbIg==": { - "display_string": [ - "\ue063shubhamgrg" - ], - "profiles": [], - "name": "\ue063shubhamgrg", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-26 15:23:13", - "registerOn": 1686143092.904874, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686143092.9048748, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686143092.9048834, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686143092.9048848, - "lastIP": "a{vavj~|i~}je", - "deviceUUID": "cfec5c807c0f5abcee2bb9c6e1cac2ca79004e46" - }, - "pb-IF4mV2QoMA==": { - "display_string": [ - "\ue063Luice204", - "\ue030Android26605362" - ], - "profiles": [], - "name": "\ue063Luice204", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-27 21:19:57", - "registerOn": 1686144022.319912, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686144022.3199124, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686144022.319919, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686144022.3199198, - "lastIP": "a\u007fn~}iaajdzvb~h", - "deviceUUID": "2f64661272447846f33aa18ed848b8fd2d460199" - }, - "pb-IF5VUxgAXA==": { - "display_string": [ - "\ue063cuteanna90", - "\ue063DINODAROCH", - "\ue063EightySupe", - "\ue030Android60226085", - "\ue030Android60864312" - ], - "profiles": [], - "name": "\ue063cuteanna90", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-19 13:55:21", - "registerOn": 1686146819.376613, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686146819.3766136, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686146819.376622, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686146819.3766232, - "lastIP": "dvvczvavk~~me", - "deviceUUID": "fa0338bbf463e2687a1b3f0b6445a74f201fc5a3" - }, - "pb-IF4JUGkSUA==": { - "display_string": [ - "\ue063Android65205821" - ], - "profiles": [], - "name": "\ue063Android65205821", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 18:40:16", - "registerOn": 1686148618.4591422, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686148618.459143, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686148618.4591496, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686148618.4591506, - "lastIP": "bam`ajcxvb{o", - "deviceUUID": "cdf594b2215a1149d73ac0af63b5ffa8ac3040df" - }, - "pb-IF5dUBZTXQ==": { - "display_string": [ - "\ue063HAKESH1215" - ], - "profiles": [], - "name": "\ue063HAKESH1215", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-12 18:04:59", - "registerOn": 1686150221.57124, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686150221.5712407, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686150221.5712483, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686150221.5712495, - "lastIP": "azo~zi~vi~~mi", - "deviceUUID": "4f8577717b079fa82ef9ae6be1f308e19ef0e590" - }, - "pb-IF4PUGosJw==": { - "display_string": [ - "\ue030Android65211762" - ], - "profiles": [], - "name": "\ue030Android65211762", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-07 19:56:00", - "registerOn": 1686150467.6924632, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686150467.6924639, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686150467.6924694, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686150467.6924708, - "lastIP": "azo~|j~}idaiev", - "deviceUUID": "908818e88eb27ff30f673278e0650294e3770b29" - }, - "pb-IF43UGgGIQ==": { - "display_string": [ - "\ue063AAWESH8300" - ], - "profiles": [], - "name": "\ue063AAWESH8300", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-28 22:40:51", - "registerOn": 1686151404.2978716, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686151404.297872, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686151404.2978797, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686151404.297881, - "lastIP": "a\u007fn~}hgaja\u007fvcx", - "deviceUUID": "4dd0ae1707a6f6280e741731da866983989b6f0e" - }, - "pb-JiNJARFdXUtEXF1DEUVWUVRCE0VcRFJE": { - "display_string": [ - "\ue063Tenacious8" - ], - "profiles": [], - "name": "\ue063Tenacious8", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-11 09:56:08", - "registerOn": 1686151843.9684877, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686151843.968488, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686151843.9684951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686151843.968496, - "lastIP": "a\u007fk~vo~vo~~ad", - "deviceUUID": "46395f14c4815f4562d417739f212663e76c66ce" - }, - "pb-IF4LVWc9HA==": { - "display_string": [ - "\ue063Saranviswa" - ], - "profiles": [], - "name": "\ue063Saranviswa", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-22 21:41:52", - "registerOn": 1686152116.0352414, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686152116.0352423, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686152116.0352516, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686152116.035253, - "lastIP": "azo~zi~zn~~nd", - "deviceUUID": "331318dcb2ca8b3450f9cf13c3b6956dbbf4548f" - }, - "pb-IF4PUlFTKg==": { - "display_string": [ - "\ue030Android65143475", - "\ue030Android61599520" - ], - "profiles": [], - "name": "\ue030Android61599520", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-19 23:29:51", - "registerOn": 1686154058.4342692, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686154058.43427, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686154058.4342787, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686154058.4342797, - "lastIP": "i}vd\u007fvb~`~~jd", - "deviceUUID": "46433f4e3ebeab3a13b0c6db9ca4cabab67974e4" - }, - "pb-IF4sVVgTAg==": { - "display_string": [ - "\ue063WonderfulH" - ], - "profiles": [], - "name": "\ue063WonderfulH", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-25 23:56:29", - "registerOn": 1686154213.0245414, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686154213.024542, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1686154423.4922793, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686154213.0245512, - "lastIP": "a\u007fn~~aha`~~ac", - "deviceUUID": "c58f357adfb8a9dea4a87afb6a7d3b6638564f95", - "cMsgCount": 0, - "lastMsgTime": 1686154423.4923718, - "lastMsg": "chud", - "cSameMsg": 0 - }, - "pb-IF4JVXoILA==": { - "display_string": [ - "\ue063Meshram007" - ], - "profiles": [], - "name": "\ue063Meshram007", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-13 07:51:55", - "registerOn": 1686155226.2016366, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686155226.2016377, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686306737.0641036, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686306749.1084306, - "lastIP": "azj~zo~xn~~ii", - "deviceUUID": "be091b0918336c235a84f4be7bfccdbfb726a1f7" - }, - "pb-IF4xVBQAUg==": { - "display_string": [ - "\ue063YearlyBla2", - "\ue030Android36465701" - ], - "profiles": [], - "name": "\ue063YearlyBla2", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-10 00:13:23", - "registerOn": 1686155952.1015837, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686155952.1015844, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686155952.101592, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686155952.1015933, - "lastIP": "dvvc}vaxa~}li", - "deviceUUID": "f823ee40e58f9c43bb9366a8e652093ece371e45" - }, - "pb-IF4vUkRaEg==": { - "display_string": [ - "\ue063NoNameB2525719" - ], - "profiles": [], - "name": "\ue063NoNameB2525719", - "isBan": true, - "isMuted": false, - "accountAge": "2022-01-27 13:44:02", - "registerOn": 1686158857.3884342, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686158857.3884346, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686158857.3884416, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686158857.3884423, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF5SUBYBUw==": { - "display_string": [ - "\ue063prohectiou" - ], - "profiles": [], - "name": "\ue063prohectiou", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-14 22:23:05", - "registerOn": 1686159131.5225422, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686159131.522543, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686159131.5225744, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686159131.5225754, - "lastIP": "aakhajaxva\u007fo", - "deviceUUID": "66b9a1a7ee180c15d382f5f993c837250c7a782b" - }, - "pb-IF4mUGkFJA==": { - "display_string": [ - "\ue063ObscureWo3" - ], - "profiles": [], - "name": "\ue063ObscureWo3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-07 22:18:23", - "registerOn": 1686159798.704718, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686159798.704719, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686159798.7047276, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686159798.7047286, - "lastIP": "azj~z`~~lgaihy", - "deviceUUID": "149e75d62ca8747367b0d362ce69ec79100d6b49" - }, - "pb-IF4FUGkPHA==": { - "display_string": [ - "\ue063VoidSubjec" - ], - "profiles": [], - "name": "\ue063VoidSubjec", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 11:31:34", - "registerOn": 1686160326.7303808, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686160326.7303813, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686160326.7303877, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686160444.8428652, - "lastIP": "azo~|k~}jbaki", - "deviceUUID": "53f7638bd68dfe0d849d1c34f1b48c8d40fa261a" - }, - "pb-IF4yUBA6AA==": { - "display_string": [ - "\ue063Friendl229" - ], - "profiles": [], - "name": "\ue063Friendl229", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-16 22:58:45", - "registerOn": 1686162627.6458132, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686162627.645814, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686162627.6458218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686162627.6458228, - "lastIP": "azl~~`baif}ve\u007f", - "deviceUUID": "d6d4bd522f2522c08aad038e3a6e213f592f384c" - }, - "pb-IF5QVVgBIw==": { - "display_string": [ - "\ue063DurBhaggg" - ], - "profiles": [], - "name": "\ue063DurBhaggg", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-09 13:31:18", - "registerOn": 1686166549.9483633, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686166549.948364, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686166549.9483724, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686166549.9483736, - "lastIP": "azo~|`~~kdak", - "deviceUUID": "501b08392a022fa63a82865d1cea79602303a00f" - }, - "pb-JiNJVxBfXEFHVVtIEUBYUFVCFURfQ1RC": { - "display_string": [ - "\ue063Aries", - "\ue030Android9912820" - ], - "profiles": [], - "name": "\ue063Aries", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-21 00:50:12", - "registerOn": 1686174721.9608915, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686174721.9608922, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686174721.9609218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686174721.9609232, - "lastIP": "d|vb}l~~vbzk", - "deviceUUID": "83e407328bff1c6d48bff420e30f6aa8a9911b74" - }, - "pb-IF4QU3YiKQ==": { - "display_string": [ - "\ue063Immovabl38" - ], - "profiles": [], - "name": "\ue063Immovabl38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 11:14:52", - "registerOn": 1686176184.188743, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686176184.1887438, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686394358.4076867, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686394358.4076877, - "lastIP": "dzvfak`aifz", - "deviceUUID": "e9c73b267c25638dc07b30339cea6c3fb9b48788" - }, - "pb-IF4mUBI9IA==": { - "display_string": [ - "\ue063GhastlyRe6" - ], - "profiles": [], - "name": "\ue063GhastlyRe6", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-03 14:23:51", - "registerOn": 1686178227.8273923, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686178227.8273928, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686178227.8274002, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686178227.8274012, - "lastIP": "a\u007fj~~`eajdxvc", - "deviceUUID": "02fccf1bc27d0d89e2ace271b0a7b030f095efc2" - }, - "pb-IF4qUGokBg==": { - "display_string": [ - "\ue030Android65214120" - ], - "profiles": [], - "name": "\ue030Android65214120", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-08 05:43:36", - "registerOn": 1686183524.7465498, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686183524.74655, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686183524.746557, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686183524.746558, - "lastIP": "dzva~o~}lgajc~", - "deviceUUID": "68e5b2b650dc2d7134dd0a9fa8464d46b2408754" - }, - "pb-IF5dUBgfDg==": { - "display_string": [ - "\ue063Destitu221" - ], - "profiles": [], - "name": "\ue063Destitu221", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-29 14:15:17", - "registerOn": 1686193227.5039134, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686193227.5039144, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686193227.5039222, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686193227.5039234, - "lastIP": "azo~|j~}maaic\u007f", - "deviceUUID": "2256a8d3105048708ccb48d24baea3180a4753c5" - }, - "pb-IF4eUGMKJw==": { - "display_string": [ - "\ue063PreppySpe2" - ], - "profiles": [], - "name": "\ue063PreppySpe2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-26 15:29:13", - "registerOn": 1686195857.7714517, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686195857.7714524, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686195857.7714605, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686195857.7714617, - "lastIP": "azh~~jiaif{vayl", - "deviceUUID": "4ae77ee93835d8ab1abf817c98eecc799aaff8dc" - }, - "pb-IF4qU0wPPQ==": { - "display_string": [ - "\ue063AJMALDUDE7", - "\ue030Android64722001" - ], - "profiles": [], - "name": "\ue063AJMALDUDE7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 15:31:06", - "registerOn": 1686196070.807632, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686196070.8076324, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686196070.807639, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686196070.80764, - "lastIP": "a~h~}jeaie{vbzj", - "deviceUUID": "1bd13fe5a96dc516bd991d123fe5d00506fde1be", - "cMsgCount": 1, - "lastMsgTime": 1686196552.4905484, - "lastMsg": "school", - "cSameMsg": 0 - }, - "pb-IF4gU3oFBg==": { - "display_string": [ - "\ue063NappingFri" - ], - "profiles": [], - "name": "\ue063NappingFri", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-10 23:46:14", - "registerOn": 1686196289.271872, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686196289.2718725, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686395378.5997958, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686395378.5997968, - "lastIP": "azo~{a~~`fajby", - "deviceUUID": "7a968aa232771fc000e6421d19fc1e5529b188bf" - }, - "pb-IF4CUGIlKw==": { - "display_string": [ - "\ue063Ubiquit238" - ], - "profiles": [], - "name": "\ue063Ubiquit238", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-20 16:51:08", - "registerOn": 1686196558.581271, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686196558.5812716, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686196558.5812795, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686196558.5812812, - "lastIP": "azj~zo~}k`and", - "deviceUUID": "1a6ec7f2586d7d1c855ff646f3fd146823f5073b" - }, - "pb-IF4hUBIkPQ==": { - "display_string": [ - "\ue063PointyGoos" - ], - "profiles": [], - "name": "\ue063PointyGoos", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-05 18:37:54", - "registerOn": 1686196576.6882381, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686196576.6882386, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686300008.6487498, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686300008.648751, - "lastIP": "azo~{j~}vfv", - "deviceUUID": "f15763bad1c170a92aaaaef11dcac23c1e1f2dce" - }, - "pb-IF4yVVg6KQ==": { - "display_string": [ - "\ue063bhanotsahi" - ], - "profiles": [], - "name": "\ue063bhanotsahi", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-21 11:48:21", - "registerOn": 1686199589.519396, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686199589.5193965, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686199589.519404, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686199589.5194054, - "lastIP": "a|j~~mdaii~va|a", - "deviceUUID": "e0eb058b81a6378111c6602e79cb52456afe4ca3" - }, - "pb-IF4zUGYOLQ==": { - "display_string": [ - "\ue063EasternMol" - ], - "profiles": [], - "name": "\ue063EasternMol", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-16 20:01:00", - "registerOn": 1686199868.3851173, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686199868.3851182, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686199868.3851252, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686199868.3851259, - "lastIP": "a\u007fn~~aeakiaifv", - "deviceUUID": "63b81a4a72b180eec73f879780d4d10497aeabe7" - }, - "pb-IF4KU1Q9Pw==": { - "display_string": [ - "\ue063PearlVirgo" - ], - "profiles": [], - "name": "\ue063PearlVirgo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-31 20:39:23", - "registerOn": 1686200042.3983226, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686200042.3983233, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686200042.3983362, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686200042.3983374, - "lastIP": "bxveaieyva{", - "deviceUUID": "217799c313cf0a8fc57851c7c11d507bce2f3696" - }, - "pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF": { - "display_string": [ - "\ue063ashu42v" - ], - "profiles": [], - "name": "\ue063ashu42v", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-30 00:27:53", - "registerOn": 1686200645.3772812, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686200645.3772821, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686200645.3772893, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686200645.3772902, - "lastIP": "a|a~zvb{j~~la", - "deviceUUID": "0b68ee7fce5ee27e7db4f5a8b0931022b2862f46" - }, - "pb-IF4OUBExFA==": { - "display_string": [ - "\ue063Devaraj02" - ], - "profiles": [], - "name": "\ue063Devaraj02", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-21 14:44:10", - "registerOn": 1686200733.5264452, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686200733.5264456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686200733.5264754, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686200923.880023, - "lastIP": "azo~{a~ya~~ke", - "deviceUUID": "80e04de54ae983199886985edcc63ceddb5b9c93" - }, - "pb-IF4lVUIGDQ==": { - "display_string": [ - "\ue063NoNameC504779" - ], - "profiles": [], - "name": "\ue063NoNameC504779", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-28 17:23:50", - "registerOn": 1686201812.4716654, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686201812.471666, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686201812.4716744, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686201812.4716754, - "lastIP": "dvvc}vayj~~o", - "deviceUUID": "6c1c8bfac798cca2a7a806581b037977b3d9ec00" - }, - "pb-IF5UUGwvJA==": { - "display_string": [ - "\ue063vijaybarol" - ], - "profiles": [], - "name": "\ue063vijaybarol", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-08 10:44:11", - "registerOn": 1686201928.901794, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686201928.901795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686375465.8089747, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686395203.9380097, - "lastIP": "a}j~~naalia`c", - "deviceUUID": "6f3d0491d6910430abbc41303840d02f678632d3", - "cMsgCount": 1, - "lastMsgTime": 1686312058.7211592, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4JUmwqLQ==": { - "display_string": [ - "\ue030Android55928477" - ], - "profiles": [], - "name": "\ue030Android55928477", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-09 23:30:47", - "registerOn": 1686203120.0549018, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686203120.0549023, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686203120.0549126, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686214165.8366976, - "lastIP": "a}j~~naalia`c", - "deviceUUID": "6f3d0491d6910430abbc41303840d02f678632d3", - "cMsgCount": 0, - "lastMsgTime": 1686205116.50669, - "lastMsg": "hi fear", - "cSameMsg": 0 - }, - "pb-IF41U2EmKA==": { - "display_string": [ - "\ue063BogdanKim2" - ], - "profiles": [], - "name": "\ue063BogdanKim2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-03 19:33:16", - "registerOn": 1686203165.305604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686203165.3056047, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686203165.305634, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686203165.3056352, - "lastIP": "izvazk~~``ajb~", - "deviceUUID": "84f2b209c54630cd9ccb129b00fbf6a4e1044552" - }, - "pb-IF4uCG4t": { - "display_string": [ - "\ue063KingUV2536", - "\ue030Android55832815" - ], - "profiles": [], - "name": "\ue063KingUV2536", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-30 11:50:35", - "registerOn": 1686203392.0164843, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686203392.0164855, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686203392.0164936, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686203392.0164945, - "lastIP": "a\u007fk~~l`ajezvh{", - "deviceUUID": "4ec4c9ca660374efc0749021865776b64339449a" - }, - "pb-IF4TU3EfNw==": { - "display_string": [ - "\ue063LaxCurb126" - ], - "profiles": [], - "name": "\ue063LaxCurb126", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-02 17:47:59", - "registerOn": 1686203546.5579727, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686203546.5579731, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686203546.5579813, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686203546.5579827, - "lastIP": "bxvixvb}l~}li", - "deviceUUID": "3d144c6888370dbc046caee8987b8202ec87f048" - }, - "pb-IF4BUmgKHQ==": { - "display_string": [ - "\ue063Intract291" - ], - "profiles": [], - "name": "\ue063Intract291", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-26 17:15:34", - "registerOn": 1686203919.8242803, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686203919.824281, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686203919.8243127, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686203919.8243139, - "lastIP": "evvhvvb}h~}lf", - "deviceUUID": "44d298e54870f33603d6ca0f13210121d5a87920" - }, - "pb-IF4eU006CQ==": { - "display_string": [ - "\ue063Excitin189" - ], - "profiles": [], - "name": "\ue063Excitin189", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 14:38:20", - "registerOn": 1686204694.8036313, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686204694.803632, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686204694.80364, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686204694.8036408, - "lastIP": "a~o~}kgaja\u007fv`", - "deviceUUID": "c46e7b202b041947c509bd499ab5f2ac5033f355" - }, - "pb-IF4CUBgRIg==": { - "display_string": [ - "\ue063LeftPrecur" - ], - "profiles": [], - "name": "\ue063LeftPrecur", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-06 17:17:05", - "registerOn": 1686205333.1248734, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686205333.1248744, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686205333.1250184, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686205333.1250203, - "lastIP": "axi~{`~~ibaj`~", - "deviceUUID": "dc4af110d41986fba9186fb46a48e0696d048793" - }, - "pb-IF5XVUEAVQ==": { - "display_string": [ - "\ue063Devenamipa" - ], - "profiles": [], - "name": "\ue063Devenamipa", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-02 22:23:26", - "registerOn": 1686205928.3655403, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686205928.365541, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686205928.365547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686205928.3655484, - "lastIP": "a~o~va~{`~~`h", - "deviceUUID": "d3d1b132bfcb103868358698d7cbfe2e05efe691" - }, - "pb-IF4DUGUuVg==": { - "display_string": [ - "\ue063Noticea285" - ], - "profiles": [], - "name": "\ue063Noticea285", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-07 20:50:24", - "registerOn": 1686206858.9874804, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686206858.987481, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686206858.9874876, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686206858.9874885, - "lastIP": "aakhajb\u007fve~", - "deviceUUID": "12fc08d41327332f299de05336ce72c9b9747207" - }, - "pb-IF4qUGcZMQ==": { - "display_string": [ - "\ue063TwelveDisp" - ], - "profiles": [], - "name": "\ue063TwelveDisp", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-24 10:40:20", - "registerOn": 1686206897.123009, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686206897.1230102, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686206897.123018, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686206897.1230197, - "lastIP": "b\u007fj~~lhamiajb{", - "deviceUUID": "cc492480e20a4965cf463ec3a1e540fcc2e7b891" - }, - "pb-IF4oV20xKA==": { - "display_string": [ - "\ue063Alex9999" - ], - "profiles": [], - "name": "\ue063Alex9999", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-22 11:28:36", - "registerOn": 1686207427.1820264, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686207427.1820273, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686207427.1820393, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686209016.617841, - "lastIP": "a\u007fn~}ica`fajd{", - "deviceUUID": "83e88be403ee6b0bbf72ae8736eebfbad93bfe99" - }, - "pb-IF4yU2gjIw==": { - "display_string": [ - "\ue063HelpfulJo8" - ], - "profiles": [], - "name": "\ue063HelpfulJo8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-27 13:02:24", - "registerOn": 1686207711.219072, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686207711.2190726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686207711.2190795, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686207711.2190807, - "lastIP": "awh~~`hajdwva", - "deviceUUID": "4824dc17c26b9d6318ffbcb2d1add6ad6b954112" - }, - "pb-IF4iUGEPUQ==": { - "display_string": [ - "\ue063Soulles109" - ], - "profiles": [], - "name": "\ue063Soulles109", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-19 10:56:29", - "registerOn": 1686207927.0122745, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686207927.012275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686207927.0122826, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686207927.0122836, - "lastIP": "azo~|k~}khal`", - "deviceUUID": "4f75287b4250961ea9aa00efd420dbccbf60b7db" - }, - "pb-IF4wVWMEBA==": { - "display_string": [ - "\ue063Scornful87" - ], - "profiles": [], - "name": "\ue063Scornful87", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-22 19:57:38", - "registerOn": 1686208237.13519, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686208237.1351907, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686208237.1351988, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686208248.8537614, - "lastIP": "b}k~}jeaahaoi", - "deviceUUID": "607720f744178905896ed2d6e3407d910195b334" - }, - "pb-IF40UGIxDA==": { - "display_string": [ - "\ue063Blazevoid1" - ], - "profiles": [], - "name": "\ue063Blazevoid1", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-23 15:02:27", - "registerOn": 1686208245.1338255, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686208245.1338263, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686208245.1338334, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686208245.1338348, - "lastIP": "azo~|o~~mhaii{", - "deviceUUID": "49198804dd575d8dacb8ff9d398d77502a05b938" - }, - "pb-IF4MUGIKVg==": { - "display_string": [ - "\ue063TigerMast2" - ], - "profiles": [], - "name": "\ue063TigerMast2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-23 15:05:15", - "registerOn": 1686208311.7136323, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686208311.7136328, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686208311.713639, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686208311.71364, - "lastIP": "azo~|o~~mhaii{", - "deviceUUID": "3a0f8b6e4f10d410e084a9d7da9b5050b9dda406" - }, - "pb-IF4CU1IzMQ==": { - "display_string": [ - "\ue063Wazaaaaa83" - ], - "profiles": [], - "name": "\ue063Wazaaaaa83", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-21 22:37:12", - "registerOn": 1686208331.4805806, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686208331.480581, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686347775.7044358, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686347775.7044368, - "lastIP": "avi~zj~}icajby", - "deviceUUID": "fb321c7caa0284554b3fe24a7108f15fbf3a670b", - "cMsgCount": 0, - "lastMsgTime": 1686347855.3507295, - "lastMsg": "tomates :) XD", - "cSameMsg": 0 - }, - "pb-IF4tU1QRCQ==": { - "display_string": [ - "\ue030Android64180621" - ], - "profiles": [], - "name": "\ue030Android64180621", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-03 16:25:37", - "registerOn": 1686209148.3773212, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686209148.3773217, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686209148.3773282, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686209148.3773289, - "lastIP": "i{vawo~}vayh", - "deviceUUID": "5ffe23b75dcb3b7da470afb970c32c9b3ba2746b" - }, - "pb-IF4xVRI9Mg==": { - "display_string": [ - "\ue063UsefulRove", - "\ue030Android45637361" - ], - "profiles": [], - "name": "\ue063UsefulRove", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-18 15:11:41", - "registerOn": 1686209479.7167406, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686209479.7167416, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686209479.7167504, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686209479.7167513, - "lastIP": "b\u007fk~~ieanhajc~", - "deviceUUID": "9933344071b9bec1f21f55d3c1de137c8f8feed2" - }, - "pb-IF4sUhUgIQ==": { - "display_string": [ - "\ue063ChillPligh", - "\ue030Android46464907" - ], - "profiles": [], - "name": "\ue063ChillPligh", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-29 10:27:53", - "registerOn": 1686211629.3057775, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686211629.3057783, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686211629.305785, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686211629.3057864, - "lastIP": "a}j~zh~}i`aoh", - "deviceUUID": "1ba81403bfb5880fdcb1e443f7ed28beb1c82d42" - }, - "pb-IF4vVVozIg==": { - "display_string": [ - "\ue063EngorgedI7", - "\ue030Android52979412" - ], - "profiles": [], - "name": "\ue063EngorgedI7", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-31 14:34:03", - "registerOn": 1686211950.6069245, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686211950.6069252, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686211950.6069348, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686211950.6069357, - "lastIP": "b}k~}khaiiwvdv", - "deviceUUID": "c48c13abeed90a3dcfe11beb9fa04f335e0b04f2" - }, - "pb-IF4wVXAkLA==": { - "display_string": [ - "\ue063anisakthar", - "\ue030Android52602910" - ], - "profiles": [], - "name": "\ue063anisakthar", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-27 14:47:03", - "registerOn": 1686212158.3133833, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686212158.3133845, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686212158.3133926, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686212158.3133938, - "lastIP": "azo~zi~yj~~`b", - "deviceUUID": "1dfe1eed0d2ee92c7f4113258a2cff5f2e04ee0c" - }, - "pb-IF4cUBdYIQ==": { - "display_string": [ - "\ue030Android64735588" - ], - "profiles": [], - "name": "\ue030Android64735588", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-28 13:31:21", - "registerOn": 1686213351.2498684, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686213351.2498689, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686213351.249876, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686213351.2498777, - "lastIP": "a\u007fk~~oaaiavve", - "deviceUUID": "76df6d38925cf3f320e070bf17472b95a7f3111a" - }, - "pb-IF4gVFdbJA==": { - "display_string": [ - "\ue063AppallingU", - "\ue030Android39307898" - ], - "profiles": [], - "name": "\ue063AppallingU", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-05 12:49:48", - "registerOn": 1686213358.0034459, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686213358.0034468, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686213358.0034556, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686213358.003457, - "lastIP": "a\u007fk~~oaaiavvava", - "deviceUUID": "9b456de419d4ade836c6dc8bea2e6e3cb0c7494b" - }, - "pb-IF4NV3oIFA==": { - "display_string": [ - "\ue063Fazilpuria", - "\ue020SaReGaMaPaDhaNiS\u00e5", - "\ue030Android54918539", - "\ue030Android57361651" - ], - "profiles": [], - "name": "\ue063Fazilpuria", - "isBan": false, - "isMuted": false, - "accountAge": "2019-01-26 16:32:52", - "registerOn": 1686215138.909916, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686215138.9099166, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686215138.9099238, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686215138.9099252, - "lastIP": "azj~zo~~adaih~", - "deviceUUID": "fcafcc043f19b8b161a3258f2a4897cabf6aaf41" - }, - "pb-IF4yUBcZAw==": { - "display_string": [ - "\ue063Lightni635" - ], - "profiles": [], - "name": "\ue063Lightni635", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-02 21:14:35", - "registerOn": 1686217267.7634637, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686217267.7634645, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686217267.7634723, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686217267.7634737, - "lastIP": "b}k~~`daje\u007fvawj", - "deviceUUID": "2fbd22eb67a619c5bee74dfd0cbf90b54c1e00ba" - }, - "pb-IF4JU0sADA==": { - "display_string": [ - "\ue063Healthi628", - "\ue020PolishedHunting46", - "\ue030Android54393983", - "\ue030Android63765387" - ], - "profiles": [], - "name": "\ue063Healthi628", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 14:12:06", - "registerOn": 1686218096.0515468, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686218096.0515478, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686218096.0515552, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686218096.0515566, - "lastIP": "a~o~}jhaohaic~", - "deviceUUID": "203c7ff1037304b76626b231e02533f186780dc5" - }, - "pb-IF4zUk4zBw==": { - "display_string": [ - "\ue020HaughtyExplorer81", - "\ue030Android54561276" - ], - "profiles": [], - "name": "\ue030Android54561276", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-09 07:17:59", - "registerOn": 1686221846.2538202, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686221846.253821, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686221846.2538297, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686221846.2538307, - "lastIP": "a~j~~ahajc}vaxk", - "deviceUUID": "6da883d28a5c1570304cfe113c2faf098410fca6" - }, - "pb-IF4TUGkAMQ==": { - "display_string": [ - "\ue063LushMateri" - ], - "profiles": [], - "name": "\ue063LushMateri", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 19:05:30", - "registerOn": 1686222359.0207572, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686222359.0207584, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686222359.0207667, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686222548.4187908, - "lastIP": "dvvcyvb|`~va", - "deviceUUID": "5e1020ff8ab40e7bae3e787857033964aeba20e8", - "cMsgCount": 0, - "lastMsgTime": 1686222605.1254373, - "lastMsg": "you are my friend ", - "cSameMsg": 0 - }, - "pb-IF5QVRcvUw==": { - "display_string": [ - "\ue063MockingFo4" - ], - "profiles": [], - "name": "\ue063MockingFo4", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-30 22:37:39", - "registerOn": 1686223736.3843374, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686223736.3843381, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686223736.3843455, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686223736.3843465, - "lastIP": "a\u007fk~~l`ai`xvdy", - "deviceUUID": "9de07d3a4cd9147af5ee26c6395efb794eceefb6" - }, - "pb-IF4IVXZcEA==": { - "display_string": [ - "\ue063Leog" - ], - "profiles": [], - "name": "\ue063Leog", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-06 18:24:41", - "registerOn": 1686224000.3852222, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686224000.3852232, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686224000.3852293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686224599.111587, - "lastIP": "dvva{l~ym~}lf", - "deviceUUID": "535c78d745316c4610377c5ba97896e5cf2ee1ab" - }, - "pb-IF4KAlQP": { - "display_string": [ - "\ue063GoldenCor2", - "\ue030Android22468704" - ], - "profiles": [], - "name": "\ue063GoldenCor2", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-15 21:07:46", - "registerOn": 1686224183.9837358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686224183.9837365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686224183.9837441, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686224183.983745, - "lastIP": "azo~{n~}ifaig|", - "deviceUUID": "34bfa12a59c849b4b0fe2df4710379cf0549c1e5" - }, - "pb-IF5WUGcOFw==": { - "display_string": [ - "\ue063Perempt288" - ], - "profiles": [], - "name": "\ue063Perempt288", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-13 11:43:52", - "registerOn": 1686224400.6877284, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686224400.687729, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686224400.6877532, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686224400.6877542, - "lastIP": "a\u007fk~~lfai~~`e", - "deviceUUID": "f158d7880a896e1c5ff32edc341dc6789a6a7f91" - }, - "pb-JiNJARBbU0FGWVdEFkJUUFVBF0BYRFRD": { - "display_string": [ - "\ue063harshaguta", - "\ue030Android10214088" - ], - "profiles": [], - "name": "\ue063harshaguta", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-26 09:07:48", - "registerOn": 1686224595.4022894, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686224595.40229, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686224595.4022965, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686224595.4022975, - "lastIP": "a\u007fn~}j`aj`{vawm", - "deviceUUID": "8d3d94220a876544809eaa49d171ddf5b494bc8e" - }, - "pb-IF49Uk0HIw==": { - "display_string": [ - "\ue063deebuckcol", - "\ue030Android58729355" - ], - "profiles": [], - "name": "\ue063deebuckcol", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-06 15:12:21", - "registerOn": 1686224610.491811, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686224610.4918118, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686224610.491819, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686224610.4918199, - "lastIP": "a\u007fn~~ahaadajd|", - "deviceUUID": "fd7ad0a5593856a1a819060e7be578837a8adc45" - }, - "pb-IF4oUBITMA==": { - "display_string": [ - "\ue063Answera184" - ], - "profiles": [], - "name": "\ue063Answera184", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-03 12:56:39", - "registerOn": 1686224892.4906576, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686224892.4906583, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686224892.49067, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686224892.4906712, - "lastIP": "azj~z`~~niaicx", - "deviceUUID": "8c69b31df370ff5d321d63c2acf8c20b9f7d0c96" - }, - "pb-IF4KU2wtJg==": { - "display_string": [ - "\ue063ActingBoar" - ], - "profiles": [], - "name": "\ue063ActingBoar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 21:47:36", - "registerOn": 1686225157.4962702, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686225157.4962707, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686225157.4962773, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686225157.4962783, - "lastIP": "axn~yh~{n~|m", - "deviceUUID": "24a8e7fcfe294793173527a45b7c7148b3dcbb92" - }, - "pb-IF48UBAPHQ==": { - "display_string": [ - "\ue063Luciferrev" - ], - "profiles": [], - "name": "\ue063Luciferrev", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-14 12:10:52", - "registerOn": 1686225175.5831838, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686225175.5831845, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686225175.5831912, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686225865.789868, - "lastIP": "azo~|j~|o~~mf", - "deviceUUID": "c06b3731349466420721d3745df38adf87232d40" - }, - "pb-IF4uUGkPFw==": { - "display_string": [ - "\ue063Asserti364" - ], - "profiles": [], - "name": "\ue063Asserti364", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-05 17:53:58", - "registerOn": 1686225647.2093883, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686225647.2093887, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686225647.209396, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686225647.2093968, - "lastIP": "bxvf~va|vb~m", - "deviceUUID": "370024b375386bec817e581b9c1e3a9e973fd3a1" - }, - "pb-IF5UUxheIg==": { - "display_string": [ - "\ue063DOLLAR" - ], - "profiles": [], - "name": "\ue063DOLLAR", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-18 14:52:29", - "registerOn": 1686225744.7013454, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686225744.7013464, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686225744.7013524, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686225744.7013533, - "lastIP": "a|j~~mdaihxvhx", - "deviceUUID": "c6e45fd1c978810e560b5acf6165aaf8e789fb21" - }, - "pb-IF4lU00yCQ==": { - "display_string": [ - "\ue063GOJOSATUR3" - ], - "profiles": [], - "name": "\ue063GOJOSATUR3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 09:38:51", - "registerOn": 1686226061.9462252, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686226061.946226, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686226061.9462333, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686226061.9462347, - "lastIP": "a\u007fn~}heaje}vay", - "deviceUUID": "f389a5f732c3112ff5b1fc402fc99787d093483c" - }, - "pb-IF4AVRYOXA==": { - "display_string": [ - "\ue063Deliber168", - "\ue030Android55493982" - ], - "profiles": [], - "name": "\ue063Deliber168", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-01 00:50:30", - "registerOn": 1686226296.7947404, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686226296.794741, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686226296.794748, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686226296.794749, - "lastIP": "hvvf{vg}vayk", - "deviceUUID": "e2f59e939087d0bfdd933bfd85d5cb9791f1d39c" - }, - "pb-IF4sUBlfMw==": { - "display_string": [ - "\ue063Rationa180" - ], - "profiles": [], - "name": "\ue063Rationa180", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-12 09:53:07", - "registerOn": 1686226588.8204358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686226588.8204362, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686226588.8204453, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686226588.8204463, - "lastIP": "azj~z`~~`~~lf", - "deviceUUID": "d861c1aeeffbf1865ff42ea8fe23a7332c216156" - }, - "pb-IF4LVURYIA==": { - "display_string": [ - "\ue063standardM4" - ], - "profiles": [], - "name": "\ue063standardM4", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-07 16:51:13", - "registerOn": 1686227375.1683657, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686227375.1683667, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686227375.1683733, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686227375.1683743, - "lastIP": "a\u007fn~}icamfa`e", - "deviceUUID": "620421fee73e3009dafef48db53b849616675047" - }, - "pb-IF4MUkYyBg==": { - "display_string": [ - "\ue030Android58054233" - ], - "profiles": [], - "name": "\ue030Android58054233", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-06 16:14:36", - "registerOn": 1686227453.1623745, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686227453.1623755, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686227453.1623816, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686227453.1623826, - "lastIP": "a\u007fk~~mcai`{vi{", - "deviceUUID": "c18adc0e687746de7370da12d1d154caa387522c" - }, - "pb-IF4TUBIxEw==": { - "display_string": [ - "\ue063Pointle159" - ], - "profiles": [], - "name": "\ue063Pointle159", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-28 19:22:33", - "registerOn": 1686227674.0053155, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686227674.0053165, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686227674.0053244, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686244277.2202241, - "lastIP": "azo~{a~vl~xn", - "deviceUUID": "eb076fc5013fd8b4b55cd7f04b0b39dac7be954d" - }, - "pb-IF4xVUMlFQ==": { - "display_string": [ - "\ue063Monocle144" - ], - "profiles": [], - "name": "\ue063Monocle144", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-02 13:56:46", - "registerOn": 1686228072.5410547, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686228072.5410554, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686228072.5410657, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686229977.5369473, - "lastIP": "a~n~y`~wk~~o`", - "deviceUUID": "ed4a9a8875f4e87c9e5d27d4db1ae6e9877055d5" - }, - "pb-IF4yU0MhKA==": { - "display_string": [ - "\ue063SolubleHin", - "\ue030Android63469829" - ], - "profiles": [], - "name": "\ue063SolubleHin", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-22 21:33:42", - "registerOn": 1686228095.587597, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686228095.5875976, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686228095.587606, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686228095.5876071, - "lastIP": "dvvcyvawa~~ah", - "deviceUUID": "9f7cda8df266af004b010a0f81a8f0eb960af76d" - }, - "pb-IF4iUlBfKQ==": { - "display_string": [ - "\ue063AnnualCoug" - ], - "profiles": [], - "name": "\ue063AnnualCoug", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-16 14:43:11", - "registerOn": 1686229609.3250132, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686229609.3250139, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686229609.3250215, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686229609.3250225, - "lastIP": "a~o~va~zm~{`", - "deviceUUID": "338370676230e983e92f4eda816d9739f046040d" - }, - "pb-IF5RUGQCUQ==": { - "display_string": [ - "\ue063KeenestLi3" - ], - "profiles": [], - "name": "\ue063KeenestLi3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-19 08:32:19", - "registerOn": 1686229656.5088315, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686229656.5088322, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686280405.2606354, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686280405.2606363, - "lastIP": "a\u007fk~~kfai`xva|n", - "deviceUUID": "97880cb99babad4bf9f6b8e24ceaaf6c75deb94f" - }, - "pb-IF4rUGg6Mg==": { - "display_string": [ - "\ue063Monolit286" - ], - "profiles": [], - "name": "\ue063Monolit286", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-25 22:51:38", - "registerOn": 1686230767.02301, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686230767.023011, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686230767.02302, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686230767.023021, - "lastIP": "azo~|`~~adajcz", - "deviceUUID": "0d14ba30b7d146219f0844e1d9d910ca6dda45d7" - }, - "pb-IF4XVWxSFg==": { - "display_string": [ - "\ue063RenownedEm", - "\ue030Android39333231" - ], - "profiles": [], - "name": "\ue063RenownedEm", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-26 14:47:59", - "registerOn": 1686231881.0228662, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686231881.022867, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686231881.0228746, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686231881.0228753, - "lastIP": "dvvcyvb~i~~m`", - "deviceUUID": "fd3f018e83c801abff35c3f550b755f1da241fa7" - }, - "pb-IF4FUGkBUw==": { - "display_string": [ - "\ue063Ishan38" - ], - "profiles": [], - "name": "\ue063Ishan38", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-07 00:06:14", - "registerOn": 1686232411.9847145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686232411.9847152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686232411.984723, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686232411.9847245, - "lastIP": "b}k~}keajd|va|`", - "deviceUUID": "66737329e305788dba5341eed11862edb37a4318" - }, - "pb-IF4RUGMsFg==": { - "display_string": [ - "\ue063Preside173" - ], - "profiles": [], - "name": "\ue063Preside173", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-24 12:06:28", - "registerOn": 1686232609.7055805, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686232609.7055814, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686232609.7055876, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686232609.7055886, - "lastIP": "a\u007fk~~leaiiajb", - "deviceUUID": "64dbdf504cc8d361ce94b0a07b8ace1352059ead" - }, - "pb-IF5QU2gNXA==": { - "display_string": [ - "\ue063ViralGravi" - ], - "profiles": [], - "name": "\ue063ViralGravi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-18 15:43:16", - "registerOn": 1686232631.870546, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686232631.870547, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686232631.8705533, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686232631.8705542, - "lastIP": "azo~{l~~m`aidx", - "deviceUUID": "ce97551323d1a3eb8489dbd02cc5e2bde921e504" - }, - "pb-IF4mVUgDNg==": { - "display_string": [ - "\ue030Android51863989" - ], - "profiles": [], - "name": "\ue030Android51863989", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-07 15:10:08", - "registerOn": 1686232686.128727, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686232686.128728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686232686.1287358, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686232686.1287367, - "lastIP": "evvhwvb}n~~na", - "deviceUUID": "82397f046be0f778c0f59851391a672f42cb01b0" - }, - "pb-IF4dUGpbUA==": { - "display_string": [ - "\ue063TipTopSupe" - ], - "profiles": [], - "name": "\ue063TipTopSupe", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-08 19:21:30", - "registerOn": 1686232837.712392, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686232837.712393, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686232837.7124012, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686232837.7124019, - "lastIP": "dvvc{vayh~~lg", - "deviceUUID": "908818e88eb27ff30f673278e0650294e3770b29" - }, - "pb-IF4HLGgm": { - "display_string": [ - "\ue063MassSway35", - "\ue030Android19671920" - ], - "profiles": [], - "name": "\ue063MassSway35", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-15 12:18:08", - "registerOn": 1686232921.793202, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686232921.7932026, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686232921.7932103, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686232921.7932112, - "lastIP": "azo~{n~~oaani", - "deviceUUID": "256f5c533ac84c7a81aebaf8ec85ac658be4e175" - }, - "pb-IF4TU00bVw==": { - "display_string": [ - "\ue063ZigFilter1" - ], - "profiles": [], - "name": "\ue063ZigFilter1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 15:54:40", - "registerOn": 1686233264.294882, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686233264.2948828, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686233264.29489, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686233264.2948906, - "lastIP": "a~o~}j`aiiajdv", - "deviceUUID": "1ab694f949b6da1548545b8565f3acabde48abf7" - }, - "pb-IF4sUGQxNg==": { - "display_string": [ - "\ue063LucklessKi" - ], - "profiles": [], - "name": "\ue063LucklessKi", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-10 18:46:05", - "registerOn": 1686233290.4807353, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686233290.480736, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686233290.4807444, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686233290.4807456, - "lastIP": "dvvcyvb|k~}kb", - "deviceUUID": "5ab0ea345df353e6d998feedce7c4285c436e2c7" - }, - "pb-IF4OUGM7FA==": { - "display_string": [ - "\ue030Android64946881", - "\ue030Android64954710", - "\ue030Android64985966", - "\ue030Android64985944", - "\ue030Android64992481" - ], - "profiles": [], - "name": "\ue030Android64946881", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-26 14:07:19", - "registerOn": 1686235880.9993715, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686235880.9993722, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686235880.9993818, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686240370.8711143, - "lastIP": "b}k~}kaaie~vavi", - "deviceUUID": "b64ad23730bd8bcc0f481e571fe995e0194415a7" - }, - "pb-IF4gU0Y7AQ==": { - "display_string": [ - "\ue063Independ55" - ], - "profiles": [], - "name": "\ue063Independ55", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 21:50:23", - "registerOn": 1686235893.0553603, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686235893.0553613, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686333881.9762287, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686333881.9762297, - "lastIP": "azo~{m~}iaaih}", - "deviceUUID": "4d5a22b991ecbbf1566da5764d14d9957498f370", - "cMsgCount": 1, - "lastMsgTime": 1686250873.3435388, - "lastMsg": "Nytt ", - "cSameMsg": 0 - }, - "pb-IF4cU2hdAw==": { - "display_string": [ - "\ue063siddhant23", - "\ue030Android61505559" - ], - "profiles": [], - "name": "\ue063siddhant23", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-26 11:10:41", - "registerOn": 1686236004.9074442, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686236004.9074447, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686236004.9074514, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686236004.9074523, - "lastIP": "dvvczvb{`~~lc", - "deviceUUID": "03db6159fe889430541810312cad57ca90c27ae4" - }, - "pb-IF4cUGgxHw==": { - "display_string": [ - "\ue020sayandcheran", - "\ue030Android65150147", - "\ue030Android65198678", - "\ue030Android65168257", - "\ue030Android65166757" - ], - "profiles": [], - "name": "\ue030Android65166757", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-28 11:47:29", - "registerOn": 1686236600.028893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686236600.0288937, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686236600.028901, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686236600.028902, - "lastIP": "azo~{l~~ohaidv", - "deviceUUID": "b333a2c32edafc8241536eb2cd9bdee37d1a3428" - }, - "pb-IF5UVW4FUQ==": { - "display_string": [ - "\ue030Android48646626" - ], - "profiles": [], - "name": "\ue030Android48646626", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-03 11:12:08", - "registerOn": 1686237053.9274762, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686237053.927477, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686237053.927485, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686237053.9274867, - "lastIP": "a\u007fn~~aeai`|vgv", - "deviceUUID": "0cf7681ebb983be0d37077adc2704bd742b5f86c" - }, - "pb-IF5SU3EgMw==": { - "display_string": [ - "\ue063ASSASSINR4" - ], - "profiles": [], - "name": "\ue063ASSASSINR4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-23 13:38:43", - "registerOn": 1686237409.2723255, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686237409.2723265, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686237409.2723334, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686237409.272334, - "lastIP": "a}j~~ogai`|vcx", - "deviceUUID": "f1bb59886f3a43cc51006f31305ce144f31e59c7", - "cMsgCount": 0, - "lastMsgTime": 1686237817.35638, - "lastMsg": "/sm", - "cSameMsg": 0 - }, - "pb-IF4JU1EuEQ==": { - "display_string": [ - "\ue030Android64057825" - ], - "profiles": [], - "name": "\ue030Android64057825", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-16 02:43:35", - "registerOn": 1686238972.875067, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686238972.8750677, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686238972.875076, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686238972.875077, - "lastIP": "awi~~ieajd{vg\u007f", - "deviceUUID": "f19a181587cd366e575774e80684798b90ad7a7e" - }, - "pb-IF4QU2sZLg==": { - "display_string": [ - "\ue063ThermalMa4" - ], - "profiles": [], - "name": "\ue063ThermalMa4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 21:49:07", - "registerOn": 1686239753.8064604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686239753.8064609, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686239753.8064687, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686239753.8064697, - "lastIP": "d~va\u007fl~}meao", - "deviceUUID": "43ec2caee7a6b0bc60119b4bb0cc5af62a1c8309" - }, - "pb-IF4wU1EMVQ==": { - "display_string": [ - "\ue030Android64050769" - ], - "profiles": [], - "name": "\ue030Android64050769", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-14 22:51:29", - "registerOn": 1686239954.5865471, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686239954.5865479, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686239954.5865774, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686239954.5865788, - "lastIP": "cxvbzm~~mgakf", - "deviceUUID": "4e3db4bb7b21f57c87a2ea5ec4fa9670a415b60c" - }, - "pb-IF4wVRkMAQ==": { - "display_string": [ - "\ue030Android58474907" - ], - "profiles": [], - "name": "\ue030Android58474907", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-03 19:40:07", - "registerOn": 1686240212.566472, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686240212.5664728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686356757.0150702, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686356757.0150712, - "lastIP": "g|va\u007fn~~`fald", - "deviceUUID": "8550f1d0e398d1a336708c9d6f3cad0894ed14ba", - "cMsgCount": 0, - "lastMsgTime": 1686347880.4110608, - "lastMsg": "hi", - "cSameMsg": 0 - }, - "pb-IF5SU0MtBw==": { - "display_string": [ - "\ue063thegodofth" - ], - "profiles": [], - "name": "\ue063thegodofth", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-12 09:26:05", - "registerOn": 1686241026.6448746, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686241026.6448753, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686241026.644883, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686241026.6448836, - "lastIP": "a\u007fn~}ica`aaidx", - "deviceUUID": "7206d9a07cdd25fca50438ac7db4586d4ecd781a" - }, - "pb-IF4vUmMbLg==": { - "display_string": [ - "\ue063Slipper427" - ], - "profiles": [], - "name": "\ue063Slipper427", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-02 20:34:34", - "registerOn": 1686241644.5994215, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686241644.5994225, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686312648.2559426, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686312648.255944, - "lastIP": "a}j~~oba`fajf", - "deviceUUID": "49d8ce6132876b75db0c87b1ecb05d9834915af0", - "cMsgCount": 0, - "lastMsgTime": 1686242106.5349455, - "lastMsg": "its ok u win", - "cSameMsg": 0 - }, - "pb-IF4KUBYdPQ==": { - "display_string": [ - "\ue030Android64714932" - ], - "profiles": [], - "name": "\ue030Android64714932", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-25 20:15:44", - "registerOn": 1686241687.295159, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686241687.2951598, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686241687.295297, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686241687.2952983, - "lastIP": "avh~vo~~`caib", - "deviceUUID": "65ca653399802b5a56f43826b470895b17abf95b" - }, - "pb-IF5VUGQ7Uw==": { - "display_string": [ - "\ue063Nondesc194" - ], - "profiles": [], - "name": "\ue063Nondesc194", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-20 14:10:58", - "registerOn": 1686242010.5104704, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686242010.5104709, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686242010.5104775, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686242010.5104783, - "lastIP": "dvvb\u007fn~~idaof", - "deviceUUID": "fdf973f1359cd9a821fbe38c4ef3e31bf1a9dc48" - }, - "pb-IF4sU1EhUg==": { - "display_string": [ - "\ue063FainterKic" - ], - "profiles": [], - "name": "\ue063FainterKic", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-20 21:32:05", - "registerOn": 1686242236.3110235, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686242236.3110244, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686242236.3110316, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686242236.3110325, - "lastIP": "axo~zk~~meaib\u007f", - "deviceUUID": "76b60e8b11acdca5dc01d6d92e6cbc9ea0b295f5" - }, - "pb-IF4VU1ozLQ==": { - "display_string": [ - "\ue063MinusSpect" - ], - "profiles": [], - "name": "\ue063MinusSpect", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-11 13:33:00", - "registerOn": 1686242408.9326682, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686242408.932669, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686242408.932675, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686242408.9326758, - "lastIP": "a\u007fn~}h`aaeai`z", - "deviceUUID": "1af08fc3b56ae6a04f45600d572b6f23644f2e70" - }, - "pb-IF4pUlkJKw==": { - "display_string": [ - "\ue063Maisha2910" - ], - "profiles": [], - "name": "\ue063Maisha2910", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-17 12:40:40", - "registerOn": 1686242527.4124322, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686242527.412433, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686242527.4124398, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686242534.08811, - "lastIP": "a\u007fk~~jeaib}vb~j", - "deviceUUID": "581d48549a30c496a6dc1cf7430730c2c27dcd17" - }, - "pb-IF4KUGdZKA==": { - "display_string": [ - "\ue063Anasprogam" - ], - "profiles": [], - "name": "\ue063Anasprogam", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-18 18:34:55", - "registerOn": 1686242749.4967675, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686242749.4967685, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686242749.4967768, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686242749.496778, - "lastIP": "dvvd}vizvgz", - "deviceUUID": "3dc5724c10f5da2d43806cabe2d19d964a3fd2c0" - }, - "pb-IF4RUkEoCw==": { - "display_string": [ - "\ue063ongaming90", - "\ue030Android57507599" - ], - "profiles": [], - "name": "\ue063ongaming90", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-16 17:56:07", - "registerOn": 1686243085.8647318, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686243085.8647327, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686243085.8647394, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686243085.8647404, - "lastIP": "azj~z`~zl~}k", - "deviceUUID": "06cf9e250d2f93e4c2ce1aeb1222de368da5ebf2" - }, - "pb-IF4BUGYzPQ==": { - "display_string": [ - "\ue063PoorerInex" - ], - "profiles": [], - "name": "\ue063PoorerInex", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-20 17:58:27", - "registerOn": 1686244990.1969597, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686244990.1969604, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686244990.196968, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686244990.1969693, - "lastIP": "a~h~}jdai`yva|o", - "deviceUUID": "8237da6f3fa46ffc7129eb06e46cdae35b69b6b3" - }, - "pb-IF4LVWEDKQ==": { - "display_string": [ - "\ue063Selvapravi" - ], - "profiles": [], - "name": "\ue063Selvapravi", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-12 17:35:58", - "registerOn": 1686245340.5295458, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686245340.5295463, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686245340.5296788, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686245340.5296807, - "lastIP": "azo~{n~xo~}kc", - "deviceUUID": "5c96ca687fab72801befcfba1b905c3a95c0fb28" - }, - "pb-LV4FVxEOBxcUVQxERkNWUFFA": { - "display_string": [ - "\ue063rouaflala", - "\ue030Android14858832" - ], - "profiles": [], - "name": "\ue063rouaflala", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-01 13:59:58", - "registerOn": 1686245838.4953067, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686245838.4953072, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686246503.5925047, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686246244.1443493, - "lastIP": "a\u007fn~}ifai`|vaw`", - "deviceUUID": "47b8e02ead93f74965cd80f820c1e8c8bb3a59ef", - "cMsgCount": 2, - "lastMsgTime": 1686246853.692658, - "lastMsg": "ye bhadve ne bulaya sahil darling ne", - "cSameMsg": 0 - }, - "pb-IF5UU3YxEA==": { - "display_string": [ - "\ue063Miraculo17" - ], - "profiles": [], - "name": "\ue063Miraculo17", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-13 20:55:50", - "registerOn": 1686246105.2661202, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686246105.2661207, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686248940.8942726, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686251658.055518, - "lastIP": "dvvd|vb{i~~", - "deviceUUID": "983cf93eac8ac2f9ba1258a6f77298cc0b4cd77a", - "cMsgCount": 2, - "lastMsgTime": 1686250933.386422, - "lastMsg": "Good night abhi", - "cSameMsg": 0 - }, - "pb-IF42UGooDA==": { - "display_string": [ - "\ue063Karry" - ], - "profiles": [], - "name": "\ue063Karry", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-08 19:57:00", - "registerOn": 1686246216.3773348, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686246216.3773353, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686246216.3773434, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686247543.9388003, - "lastIP": "a~o~v`~}n~{`", - "deviceUUID": "05946dd1e08ad14751e6f83479f1afce3287562b" - }, - "pb-IF5UVRZfIA==": { - "display_string": [ - "\ue063SweetAnaly" - ], - "profiles": [], - "name": "\ue063SweetAnaly", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-28 16:22:17", - "registerOn": 1686246380.9580035, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686246380.9580042, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686246380.9580116, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686246380.9580126, - "lastIP": "a\u007fk~xo~~n~~k", - "deviceUUID": "80de9d031fcb3ddaf13c7a5e8987c45194fc7916" - }, - "pb-IF4dUGgOHw==": { - "display_string": [ - "\ue030Android65163483" - ], - "profiles": [], - "name": "\ue030Android65163483", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-30 21:10:35", - "registerOn": 1686246447.2165475, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686246447.2165484, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686246447.216556, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686246447.216557, - "lastIP": "dvvcyvb|m~~hb", - "deviceUUID": "33275f305cb28626497ba55f06cfb84143d64e86" - }, - "pb-IF4zU2MgJw==": { - "display_string": [ - "\ue063SharpEnemy" - ], - "profiles": [], - "name": "\ue063SharpEnemy", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-09 17:53:20", - "registerOn": 1686246698.4371364, - "canStartKickVote": true, - "spamCount": 3, - "lastSpam": 1686248589.0248814, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686335455.7231836, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686335345.070073, - "lastIP": "a}l~~meaje{vayj", - "deviceUUID": "5b13413ad2a035b34073c5918da9363afe5b8217", - "cMsgCount": 0, - "lastMsgTime": 1686335613.201461, - "lastMsg": "I have girls from bs", - "cSameMsg": 0 - }, - "pb-IF43U2QiKA==": { - "display_string": [ - "\ue063SlowerLea2", - "\ue030Android60963243" - ], - "profiles": [], - "name": "\ue063SlowerLea2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-12 15:00:30", - "registerOn": 1686246764.7125108, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686246764.7125115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686246764.7125196, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686246764.7125213, - "lastIP": "azo~|l~~n~wa", - "deviceUUID": "9d8049858515c893b222ca3a0942a877f98f07e9" - }, - "pb-IF5VUmUYVw==": { - "display_string": [ - "\ue063SternComme" - ], - "profiles": [], - "name": "\ue063SternComme", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-30 15:19:43", - "registerOn": 1686246823.5958283, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686246823.595829, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686246823.5958374, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686246823.595839, - "lastIP": "a}j~~oiajaxvayi", - "deviceUUID": "05bb8feb1a27800e060aa645be4621183bbdbfc6" - }, - "pb-IF4XU0ddEA==": { - "display_string": [ - "\ue063Tanmaysaur" - ], - "profiles": [], - "name": "\ue063Tanmaysaur", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 12:11:42", - "registerOn": 1686246962.0765805, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686246962.076581, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686246962.0765867, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686246962.0765874, - "lastIP": "awj~ya~~``amg", - "deviceUUID": "7b46a4b00db7f6fad2b9f32c6c878678662345be" - }, - "pb-IF4vVRUFVA==": { - "display_string": [ - "\ue063Ghost0001" - ], - "profiles": [], - "name": "\ue063Ghost0001", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-10 15:52:43", - "registerOn": 1686247377.6451478, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686247377.6451485, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686247377.6451557, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686249913.7701075, - "lastIP": "dxviakbaidv", - "deviceUUID": "00a2149d5e7bb409e844da5b609ae87ebaccaffc", - "cMsgCount": 0, - "lastMsgTime": 1686250096.8666844, - "lastMsg": "tu kuch kr hi to nhi rha", - "cSameMsg": 0 - }, - "pb-IF4sU00tMA==": { - "display_string": [ - "\ue063OutwardSa3" - ], - "profiles": [], - "name": "\ue063OutwardSa3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 00:50:49", - "registerOn": 1686248061.0662014, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686248061.0662024, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686248061.0662096, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686248061.066211, - "lastIP": "a\u007fn~xn~}haaiiv", - "deviceUUID": "90491cf2dcf24ce9ed9a0e5f60fe6a3de12e6db9" - }, - "pb-JiNJARFZVEJCXVtDF09RU1NBGUVYQVBG": { - "display_string": [ - "\ue063TRON" - ], - "profiles": [], - "name": "\ue063TRON", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-18 14:47:55", - "registerOn": 1686249396.0990443, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686249396.0990453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686339864.3490632, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686339864.349064, - "lastIP": "b}k~}keaif\u007fvbw", - "deviceUUID": "090638a88642d8a85c1d0a4563d0a05062ff4eed", - "cMsgCount": 0, - "lastMsgTime": 1686249767.9726768, - "lastMsg": "isha love me bby", - "cSameMsg": 0 - }, - "pb-IF4dU0wPIw==": { - "display_string": [ - "\ue063SecludedH2", - "\ue030Android64251024" - ], - "profiles": [], - "name": "\ue063SecludedH2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 23:22:06", - "registerOn": 1686249869.9287007, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686249869.9287012, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686249869.9287093, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686249869.9287102, - "lastIP": "axn~~o`aiaam", - "deviceUUID": "13b2a7bb3cd6be27f7f9d35d588a4667992a86e4" - }, - "pb-IF4KUGYGFQ==": { - "display_string": [ - "\ue030Linux54607" - ], - "profiles": [], - "name": "\ue030Linux54607", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-17 01:05:46", - "registerOn": 1686249884.2309296, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686249884.2309308, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686249884.2309372, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686249884.2309387, - "lastIP": "a\u007fk~{`~~hcaibv", - "deviceUUID": "367512ad531a03130a4d9996fb62a4873881aa77" - }, - "pb-IF4VMREI": { - "display_string": [ - "\ue063ShinyCarp8" - ], - "profiles": [], - "name": "\ue063ShinyCarp8", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-09 22:07:10", - "registerOn": 1686250105.1682231, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686250105.168224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686250105.168232, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686250105.1682332, - "lastIP": "a|o~vo~~hgaj`}", - "deviceUUID": "68bdb497cd0fde43e1cb7664c64c7e0820e69d6d" - }, - "pb-JiNJARFbXUFCWFpGF0ZTXVNHEUZaQlNB": { - "display_string": [ - "\ue063Dhruv0999" - ], - "profiles": [], - "name": "\ue063Dhruv0999", - "isBan": false, - "isMuted": false, - "accountAge": "2016-09-26 22:21:18", - "registerOn": 1686250793.3344383, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686250793.3344393, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686250793.334447, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686250793.334448, - "lastIP": "dvvcyvh|vbx", - "deviceUUID": "6fc47e9d1af365a33a111d3476cc4658b7b30153" - }, - "pb-IF4VUkYnMw==": { - "display_string": [ - "\ue030Android61285593" - ], - "profiles": [], - "name": "\ue030Android61285593", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-06 02:36:50", - "registerOn": 1686251403.501132, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686251403.5011327, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686251403.5011468, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686251403.5011482, - "lastIP": "azo~~h`amhami", - "deviceUUID": "3a0daef115d78b2c9838c76c49f327c076aeaee4" - }, - "pb-IF5RUGkPJg==": { - "display_string": [ - "\ue063NeatDonati" - ], - "profiles": [], - "name": "\ue063NeatDonati", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-20 11:19:18", - "registerOn": 1686251594.1680422, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686251594.1680434, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686251594.1680524, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686251594.1680534, - "lastIP": "azj~z`~~a~}", - "deviceUUID": "2a79fd6d89ed82e107879db10eb62582a37d793a" - }, - "pb-JiNJARBbUkZFWVZIF05UVVxHGURcTlFH": { - "display_string": [ - "\ue063TANMAYMICH", - "\ue030Android11922589" - ], - "profiles": [], - "name": "\ue063TANMAYMICH", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-23 23:41:21", - "registerOn": 1686254586.6527157, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686254586.6527166, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686394483.3749192, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686394483.3749201, - "lastIP": "awj~xh~~mbaih\u007f", - "deviceUUID": "64f484df03b124c2f4804e121a2a6f253c945d39" - }, - "pb-IF4iUGkcNw==": { - "display_string": [ - "\ue063Firestar" - ], - "profiles": [], - "name": "\ue063Firestar", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-08 04:44:54", - "registerOn": 1686260289.6656122, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686260289.6656132, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686260289.665619, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686260289.6656199, - "lastIP": "awl~zo~}jfanh", - "deviceUUID": "27d8e2c60344ddbbf062ddfd65c30600f4cf24c5" - }, - "pb-IF5dUkgMMA==": { - "display_string": [ - "\ue063NoName707355" - ], - "profiles": [], - "name": "\ue063NoName707355", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-06 19:22:52", - "registerOn": 1686267514.5318017, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686267514.5318027, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686267514.5318112, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686267514.5318124, - "lastIP": "hwvbzm~}igaic", - "deviceUUID": "fa738ac0d350678466442b11df60a9845e99ea2c" - }, - "pb-IF40UGUbAw==": { - "display_string": [ - "\ue063PortlyStil" - ], - "profiles": [], - "name": "\ue063PortlyStil", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-14 16:20:44", - "registerOn": 1686273905.5913048, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686273905.5913055, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686273905.5913117, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686273905.5913124, - "lastIP": "dzva}k~}jba`g", - "deviceUUID": "65836392301c3d76d6bb74c00a23ebc11aa0beec" - }, - "pb-IF5cVXEyAA==": { - "display_string": [ - "\ue063VISHUUU", - "\ue020ChromeExport38", - "\ue030Android51788140" - ], - "profiles": [], - "name": "\ue063VISHUUU", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-23 11:23:59", - "registerOn": 1686280983.867792, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686280983.8677926, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686280983.8678014, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686280983.8678024, - "lastIP": "azo~zi~~aaalf", - "deviceUUID": "c6d45659c3cd1c403483bb4bcbd0e35fee1488c7" - }, - "pb-IF4RVUc6EA==": { - "display_string": [ - "\ue063Krarozdjfj" - ], - "profiles": [], - "name": "\ue063Krarozdjfj", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-27 14:56:47", - "registerOn": 1686283546.4689548, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686283546.4689558, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686283546.4689627, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686283546.4689639, - "lastIP": "a~h~}jgai~vo", - "deviceUUID": "3ea110b5b0fb896d9cbb6e3bfd727c003b4cbc72" - }, - "pb-IF4rUGItDg==": { - "display_string": [ - "\ue063FixedProto" - ], - "profiles": [], - "name": "\ue063FixedProto", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-18 13:30:18", - "registerOn": 1686283789.0148017, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686283789.0148025, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686283789.0148113, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686283789.0148125, - "lastIP": "dvvc}vaxo~~la", - "deviceUUID": "efa86ff6124f3c327b77094dc67cd8f058ab0b2b" - }, - "pb-IF4oU2EbKg==": { - "display_string": [ - "\ue030Android61022597" - ], - "profiles": [], - "name": "\ue030Android61022597", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-06 12:43:05", - "registerOn": 1686286531.0692265, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686286531.0692272, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686286531.0692368, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686286531.0692382, - "lastIP": "a}i~~jcah~{j", - "deviceUUID": "964fdffbff5c11baa4b25a0b739bc03fbda9612d" - }, - "pb-IF4-U3M7Ug==": { - "display_string": [ - "\ue063John30" - ], - "profiles": [], - "name": "\ue063John30", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 20:12:13", - "registerOn": 1686286674.589028, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686286674.5890286, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686286674.5890367, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686286674.589038, - "lastIP": "b}k~}jhaibyva}o", - "deviceUUID": "aecde259d3725952f967a1db5bd2ee5baf120f8c" - }, - "pb-IF4iU0VbLw==": { - "display_string": [ - "\ue063LoudStarfi" - ], - "profiles": [], - "name": "\ue063LoudStarfi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-03 11:23:29", - "registerOn": 1686288156.3044722, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686288156.3044732, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686288156.30448, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686288156.304481, - "lastIP": "azo~{`~}j`aki", - "deviceUUID": "91f5eb8cd2566bd132115fe8c59dfabc22fd0349" - }, - "pb-IF5RUGMmNQ==": { - "display_string": [ - "\ue063AmusingTr3" - ], - "profiles": [], - "name": "\ue063AmusingTr3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-10 17:37:23", - "registerOn": 1686289020.7870092, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686289020.7870097, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686289020.7870176, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686289020.7870188, - "lastIP": "a\u007fn~}j`ajd|va}j", - "deviceUUID": "c28c95ebf6e9c8a48e097f3520c8a10f58199317" - }, - "pb-IF4nU0ciEw==": { - "display_string": [ - "\ue063Crippli172" - ], - "profiles": [], - "name": "\ue063Crippli172", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-12 12:18:33", - "registerOn": 1686291796.177494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686291796.1774952, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686291796.1775064, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686291796.1775079, - "lastIP": "a\u007fn~}hfaibyvgy", - "deviceUUID": "a6a368248946a4c2823cc8ee77f9b184017c4310" - }, - "pb-IF4gUGIMNg==": { - "display_string": [ - "\ue063SmallerPa5" - ], - "profiles": [], - "name": "\ue063SmallerPa5", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-25 17:57:22", - "registerOn": 1686291846.3567498, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686291846.3567505, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686291846.356781, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686291846.3567824, - "lastIP": "azo~|j~v`~{a", - "deviceUUID": "96c546836d288a6a490f2303847ee064dba23db4" - }, - "pb-IF4mUBUKIw==": { - "display_string": [ - "\ue063Broadest50" - ], - "profiles": [], - "name": "\ue063Broadest50", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-22 12:19:59", - "registerOn": 1686292116.6553388, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686292116.6553395, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686292116.6553464, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686292116.6553473, - "lastIP": "dvvd|vazj~|", - "deviceUUID": "a37f3ced627ec92ca41a542a094f5a28a9b0ac67" - }, - "pb-IF4FUGUANg==": { - "display_string": [ - "\ue063VishnuPri4" - ], - "profiles": [], - "name": "\ue063VishnuPri4", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-14 14:55:54", - "registerOn": 1686292641.318096, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686292641.3180964, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686292641.3181033, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686292641.3181045, - "lastIP": "b}k~~`bajavva}m", - "deviceUUID": "9e0d610a95ead740aac4ce8b193bccf0857ff0fb" - }, - "pb-IF4CVFkdKQ==": { - "display_string": [ - "\ue063EarlierAss" - ], - "profiles": [], - "name": "\ue063EarlierAss", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-25 20:37:57", - "registerOn": 1686294542.5870588, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686294542.5870593, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686294542.5870664, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686294542.5870674, - "lastIP": "a\u007fk~~`baifyvaxo", - "deviceUUID": "bfc4046a4a932fa1eb97a432020a65c6e4ba29b2" - }, - "pb-IF4NVxAZDg==": { - "display_string": [ - "\ue063TherockJK1" - ], - "profiles": [], - "name": "\ue063TherockJK1", - "isBan": false, - "isMuted": false, - "accountAge": "2018-07-11 15:52:43", - "registerOn": 1686294939.802634, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686294939.8026347, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686294939.8026433, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686301013.4471521, - "lastIP": "dvvcyva~m~{i", - "deviceUUID": "9dda09fcf9a3701e0e8edddd357f35fc1813050f", - "cMsgCount": 0, - "lastMsgTime": 1686301131.8341322, - "lastMsg": "go blue", - "cSameMsg": 0 - }, - "pb-IF4CKhYn": { - "display_string": [ - "\ue063vishiihsiv", - "\ue030PC275640" - ], - "profiles": [], - "name": "\ue063vishiihsiv", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-24 20:31:02", - "registerOn": 1686294968.8424025, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686294968.842403, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686401708.952595, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686401708.9525964, - "lastIP": "dvvcyvb~j~~aa", - "deviceUUID": "f6e85920e9356ea8e7adfb6f8b800624962b0a9d", - "cMsgCount": 0, - "lastMsgTime": 1686403542.7370622, - "lastMsg": "\ud83d\ude44", - "cSameMsg": 0 - }, - "pb-IF4PUGo9Hw==": { - "display_string": [ - "\ue030Android65221271" - ], - "profiles": [], - "name": "\ue030Android65221271", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-09 13:09:33", - "registerOn": 1686296380.8220875, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686296380.8220882, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686296380.8220935, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686296380.822095, - "lastIP": "azo~{a~~jhajf", - "deviceUUID": "2075f74ce3988b96997b4c4082726cec0bfd3b36" - }, - "pb-IF5cUkszBg==": { - "display_string": [ - "\ue063MarineVect", - "\ue030Android56299814" - ], - "profiles": [], - "name": "\ue063MarineVect", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-17 17:25:49", - "registerOn": 1686296412.1701615, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686296412.1701622, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686296412.17017, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686296412.1701715, - "lastIP": "dxviakbajez", - "deviceUUID": "8046542fcedc2898b84eb5d04336e78c73ed3716" - }, - "pb-IF4sCXI9": { - "display_string": [ - "\ue063IndigoOnio", - "\ue030Android35432456" - ], - "profiles": [], - "name": "\ue063IndigoOnio", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-06 07:53:11", - "registerOn": 1686296419.9385161, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686296419.938517, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686296419.9385235, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686300034.7451367, - "lastIP": "a~o~va~zvi\u007f", - "deviceUUID": "016005002c5e71bc4f41ba158f73d116d7bfdf63", - "cMsgCount": 1, - "lastMsgTime": 1686299815.3394766, - "lastMsg": "u both", - "cSameMsg": 0 - }, - "pb-IF4vU2EzMg==": { - "display_string": [ - "\ue063MossyArti2" - ], - "profiles": [], - "name": "\ue063MossyArti2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-03 12:30:49", - "registerOn": 1686297156.9437613, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686297156.9437618, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686297156.9437685, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686297156.9437697, - "lastIP": "a~h~}jdaifaiez", - "deviceUUID": "0ac9a3dc13e68396fa51a1c737e4f17108f285ee" - }, - "pb-IF4wUlIYCg==": { - "display_string": [ - "\ue063zM116FDdu" - ], - "profiles": [], - "name": "\ue063zM116FDdu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-25 16:12:16", - "registerOn": 1686297179.1239846, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686297179.123985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686297179.1239934, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686302394.8187518, - "lastIP": "b}k~~`faj`}vb{k", - "deviceUUID": "c6af8801fa7f6be63cc6dcac571df1e3bd6b9161", - "cMsgCount": 0, - "lastMsgTime": 1686297537.4258082, - "lastMsg": "who", - "cSameMsg": 0 - }, - "pb-IF4FUBlYUA==": { - "display_string": [ - "\ue063calmdev" - ], - "profiles": [], - "name": "\ue063calmdev", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-09 10:39:20", - "registerOn": 1686297257.9530027, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686297257.953003, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686297257.9530096, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686297274.7088282, - "lastIP": "a\u007fk~}iaaidao", - "deviceUUID": "f6a33af708d980e6fc1c7efda397d73e6734762d" - }, - "pb-IF4BUlQGCA==": { - "display_string": [ - "\ue063EasternS13", - "\ue030Android59427673" - ], - "profiles": [], - "name": "\ue063EasternS13", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-03 15:54:02", - "registerOn": 1686297346.5833104, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686297346.583311, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686297346.5833175, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686297373.0569792, - "lastIP": "a|o~vo~yo~zj", - "deviceUUID": "50178cf5fe9867437c330f0541179b4ceb72eab3" - }, - "pb-IF5QVUU-Mw==": { - "display_string": [ - "\ue063Mrprickly1", - "\ue030Android47455009" - ], - "profiles": [], - "name": "\ue063Mrprickly1", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-29 12:40:34", - "registerOn": 1686297440.5910733, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686297440.5910738, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686297440.5910802, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686297440.5910811, - "lastIP": "dvvc}va|j~~na", - "deviceUUID": "bdc6a7863bfa4cfac8ffd2581776692554cdfee4" - }, - "pb-IF40UnoJUA==": { - "display_string": [ - "\ue063ArmoredOrc" - ], - "profiles": [], - "name": "\ue063ArmoredOrc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-15 13:30:54", - "registerOn": 1686297494.800854, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686297494.8008547, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686297494.800863, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686297494.8008642, - "lastIP": "azo~{n~~jcaie}", - "deviceUUID": "d35e9173642b3b17d7aace45263adda53c89b5aa" - }, - "pb-IF5cPGsk": { - "display_string": [ - "\ue063StoneDemig" - ], - "profiles": [], - "name": "\ue063StoneDemig", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-13 08:33:22", - "registerOn": 1686299380.735707, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686299380.7357078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686299380.7357142, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686299796.9190612, - "lastIP": "dvvc}vay`~~ob", - "deviceUUID": "ff809483fcc7e7ca5a19b18d674f26840835c81d" - }, - "pb-JiNJARFcUUZCW19DGEdQV1VAEkVYRFFF": { - "display_string": [ - "\ue063skullgame4", - "\ue030Android20571362" - ], - "profiles": [], - "name": "\ue063skullgame4", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-09 06:25:26", - "registerOn": 1686299442.054943, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686299442.0549438, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686299442.054951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686300035.7494752, - "lastIP": "b}k~~`daj`wva}h", - "deviceUUID": "62797d26a16e23e5bd0348480f002238abaa774e" - }, - "pb-IF4BU1QdIw==": { - "display_string": [ - "\ue030Android64209989", - "\ue030Android64490931" - ], - "profiles": [], - "name": "\ue030Android64209989", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-08 10:53:09", - "registerOn": 1686300548.9943447, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686300548.9943457, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686300548.9943547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686300548.9943554, - "lastIP": "a~o~v`~wh~{h", - "deviceUUID": "13a08594ebf7718bc3dc0bfa0cfbcac8edb58738" - }, - "pb-IF4GUGgEUQ==": { - "display_string": [ - "\ue063Harmles193" - ], - "profiles": [], - "name": "\ue063Harmles193", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-27 17:08:00", - "registerOn": 1686300944.8445258, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686300944.8445265, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686300944.8445337, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686300944.8445349, - "lastIP": "a\u007fn~~ahaib\u007fvawj", - "deviceUUID": "25037672ec332de2c69e9765390505b95b727204" - }, - "pb-IF4UUGYtKQ==": { - "display_string": [ - "\ue030Android65055227" - ], - "profiles": [], - "name": "\ue030Android65055227", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-13 14:40:54", - "registerOn": 1686302576.820632, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686302576.8206325, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686302576.8206408, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686302576.8206418, - "lastIP": "a\u007fk~}ldakdaai", - "deviceUUID": "b9aa717a83019ff0654cd40ddf6b31b2916d9750" - }, - "pb-IF4JVEYJEA==": { - "display_string": [ - "\ue063captainjes" - ], - "profiles": [], - "name": "\ue063captainjes", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-03 00:39:10", - "registerOn": 1686303078.9459627, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686303078.9459636, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686303078.9459708, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686303078.9459722, - "lastIP": "a\u007fn~}h`anbaie}", - "deviceUUID": "745fd29d5c9d6b54c2e8218d91bd2a88a87bc76c" - }, - "pb-IF5RU3UzJA==": { - "display_string": [ - "\ue063RabidFight" - ], - "profiles": [], - "name": "\ue063RabidFight", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-06 20:34:27", - "registerOn": 1686303128.1382887, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686303128.1382895, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686303128.1382976, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686303128.1382985, - "lastIP": "a}k~~kfaj`yva{o", - "deviceUUID": "952003926226a9c0a1a22df16dd40b3bbe1d1840" - }, - "pb-IF4tV0YpCg==": { - "display_string": [ - "\ue063FuschiaCh3" - ], - "profiles": [], - "name": "\ue063FuschiaCh3", - "isBan": false, - "isMuted": false, - "accountAge": "2019-02-21 21:21:37", - "registerOn": 1686303457.4320552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686303457.432056, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686303457.4320776, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686303457.4320786, - "lastIP": "azo~zi~yh~v", - "deviceUUID": "072f90c9d46a6cedfe9af3f9937e010327cfc937" - }, - "pb-IF4yU1M-Nw==": { - "display_string": [ - "\ue063Consciou55" - ], - "profiles": [], - "name": "\ue063Consciou55", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-29 15:04:41", - "registerOn": 1686304946.5457244, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686304946.545725, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686304946.545733, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686304946.545734, - "lastIP": "a\u007fk~}iaaieam`", - "deviceUUID": "17475cf91a7679466f7eee339e22aa82ded6bf46" - }, - "pb-IF4XUGI7Aw==": { - "display_string": [ - "\ue063Existen279" - ], - "profiles": [], - "name": "\ue063Existen279", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-18 15:53:59", - "registerOn": 1686306637.267444, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686306637.2674444, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686317300.2990332, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686317300.2990344, - "lastIP": "azj~z`~}n~yn", - "deviceUUID": "4d9a5d7925a267f0f2385f70a1f714be11ffc50f" - }, - "pb-IF4zVUsmIg==": { - "display_string": [ - "\ue063Faction231", - "\ue030Android52213236" - ], - "profiles": [], - "name": "\ue063Faction231", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-17 13:47:12", - "registerOn": 1686306767.5693734, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686306767.5693743, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686306767.5693812, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686306767.5693822, - "lastIP": "b\u007fn~wl~}khai`~", - "deviceUUID": "09bd68fa0bc3f2777a0fa34829850781b8af8732" - }, - "pb-IF4pUnIoJA==": { - "display_string": [ - "\ue063Neelesh321" - ], - "profiles": [], - "name": "\ue063Neelesh321", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-06 13:04:57", - "registerOn": 1686306913.278468, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686306913.2784684, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686306913.278476, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686306913.278477, - "lastIP": "bxvf}vaya~~ji", - "deviceUUID": "7e98d2ed99b41dc4aea4e9e8e5fe9adb78c840d5" - }, - "pb-IF4cU04gMQ==": { - "display_string": [ - "\ue063AluminumR6", - "\ue030Android63619828" - ], - "profiles": [], - "name": "\ue063AluminumR6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 16:48:12", - "registerOn": 1686307092.77408, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686307092.7740808, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686307092.774089, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686307092.7740903, - "lastIP": "awk~wj~}hfajb", - "deviceUUID": "dc7e880a3dc11641aca02e2d6920948204cb3801" - }, - "pb-IF4lUkkHUA==": { - "display_string": [ - "\ue063FranticWoe", - "\ue030Android51934593" - ], - "profiles": [], - "name": "\ue063FranticWoe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-17 19:27:07", - "registerOn": 1686307183.0996165, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686307183.0996172, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686307183.0996249, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686307183.0996263, - "lastIP": "a\u007fk~~ndaiivva|a", - "deviceUUID": "5dd5b72b568ab6871b49875b0ed79ba36834c5d7" - }, - "pb-IF5XUBZSDg==": { - "display_string": [ - "\ue030Android64587740" - ], - "profiles": [], - "name": "\ue030Android64587740", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-07 16:47:14", - "registerOn": 1686308007.2893553, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686308007.289356, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686308007.2893631, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686308007.2893646, - "lastIP": "a\u007fn~}jaaifwvava", - "deviceUUID": "a6c5500f618256fc7b4f8ce5808b42f2e9a0d4af" - }, - "pb-IF5UVW4NDA==": { - "display_string": [ - "\ue063FABxRAWAN" - ], - "profiles": [], - "name": "\ue063FABxRAWAN", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-02 11:21:32", - "registerOn": 1686308174.842472, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686308174.8424728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686308174.8424795, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686308573.2210202, - "lastIP": "dvva}`~~nfaig|", - "deviceUUID": "ebde359cbb19a36b1eb4d9f212b84bee516a2a63" - }, - "pb-IF5WU1InPw==": { - "display_string": [ - "\ue063CHAMPAK99" - ], - "profiles": [], - "name": "\ue063CHAMPAK99", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-09 10:36:03", - "registerOn": 1686308174.8484445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686308174.8484447, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686308174.8484507, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686308174.8484514, - "lastIP": "azj~z`~zvix", - "deviceUUID": "864f0e3c0fa066c80c4cb2a6d4f864cf025bcf33" - }, - "pb-IF4SUxkOXQ==": { - "display_string": [ - "\ue063GamingTrea" - ], - "profiles": [], - "name": "\ue063GamingTrea", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-31 10:11:27", - "registerOn": 1686308203.9347358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686308203.9347367, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686308510.790784, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686308203.9347448, - "lastIP": "dvvcxva~o~~kd", - "deviceUUID": "eae8126f3627a9db6b30695ddfcfb7a229590c09", - "cMsgCount": 0, - "lastMsgTime": 1686308544.1932344, - "lastMsg": "srry", - "cSameMsg": 0 - }, - "pb-IF4DUGgBXA==": { - "display_string": [ - "\ue063DynamicTe3" - ], - "profiles": [], - "name": "\ue063DynamicTe3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-27 22:45:00", - "registerOn": 1686308538.7307403, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686308538.7307408, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686308538.7307472, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686308538.730748, - "lastIP": "a\u007fn~~aeamfaicv", - "deviceUUID": "73814c0789ff71ce61fd86f0cda179bf35d97e63" - }, - "pb-IF4OUGgjXQ==": { - "display_string": [ - "\ue063L33tExodu2" - ], - "profiles": [], - "name": "\ue063L33tExodu2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-25 18:40:10", - "registerOn": 1686308556.5001369, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686308556.5001376, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686308556.5001447, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686308556.500146, - "lastIP": "d~vav`~~khaib|", - "deviceUUID": "364f2e05a58c0f7bcb5c87eb64940075d560ada3" - }, - "pb-IF4UVWgEFw==": { - "display_string": [ - "\ue063InwardGosl" - ], - "profiles": [], - "name": "\ue063InwardGosl", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-29 10:33:49", - "registerOn": 1686308804.7830265, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686308804.7830272, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686308804.783034, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686308804.7830353, - "lastIP": "azj~z`~~hcajc}", - "deviceUUID": "95fce6ed4d994a0f6c04ae7730f2114fef30b882" - }, - "pb-IF4IUGQlNw==": { - "display_string": [ - "\ue063steelshotz" - ], - "profiles": [], - "name": "\ue063steelshotz", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-05 23:30:47", - "registerOn": 1686309364.2532973, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686309364.2532983, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686309364.2533066, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686309364.253308, - "lastIP": "a\u007fk~zva|j~|", - "deviceUUID": "1d6dbe5879f5fbe7eba25a1d019ebd0e6e58fd1a", - "cMsgCount": 0, - "lastMsgTime": 1686309824.9323392, - "lastMsg": "laggg", - "cSameMsg": 0 - }, - "pb-IF4VUGpcNA==": { - "display_string": [ - "\ue030Android65214968" - ], - "profiles": [], - "name": "\ue030Android65214968", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-08 11:07:29", - "registerOn": 1686309507.0976412, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686309507.0976417, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686397781.0601754, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686397781.0601766, - "lastIP": "a\u007fk~~mcaiiwva\u007fj", - "deviceUUID": "00224593e841ab03182aefdb93d16bfdaf3eb45c" - }, - "pb-IF4qUGQ7Eg==": { - "display_string": [ - "\ue030Android64992544" - ], - "profiles": [], - "name": "\ue030Android64992544", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-03 14:15:42", - "registerOn": 1686309628.70501, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686309628.7050104, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686309628.7050183, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686309628.7050195, - "lastIP": "a\u007fk~~jaaoeaoh", - "deviceUUID": "a479cf15d56489f769977be68b665897530ae129" - }, - "pb-IF4RUGocIw==": { - "display_string": [ - "\ue063Ryner" - ], - "profiles": [], - "name": "\ue063Ryner", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-09 15:38:22", - "registerOn": 1686309883.7343006, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686309883.7343013, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686309883.7343102, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686309883.7343113, - "lastIP": "aakhaagaicx", - "deviceUUID": "6f371abcce16518ba0ef3b18a95c994704a46097" - }, - "pb-IF5UVXIvNQ==": { - "display_string": [ - "\ue030Android49180490" - ], - "profiles": [], - "name": "\ue030Android49180490", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-29 05:56:50", - "registerOn": 1686310186.7230246, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686310186.7230253, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686310186.7230341, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686311163.1255636, - "lastIP": "a\u007fn~}ica`baia", - "deviceUUID": "19cab23c5e27d40b623af49d1e26a3594d5358dc" - }, - "pb-IF4yVEspVg==": { - "display_string": [ - "\ue063BROWNBEARL", - "\ue030PC912320", - "\ue030Android63678114" - ], - "profiles": [], - "name": "\ue063BROWNBEARL", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-27 08:18:33", - "registerOn": 1686310219.8562014, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686310219.856203, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686310219.8562114, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686310219.8562129, - "lastIP": "azo~|a~}m`aab", - "deviceUUID": "18804ca4703453b1b0df23973b98da9e7e589048", - "cMsgCount": 2, - "lastMsgTime": 1686310274.356344, - "lastMsg": "sad lyf", - "cSameMsg": 0 - }, - "pb-IF4QVRQBMg==": { - "display_string": [ - "\ue063herora2018" - ], - "profiles": [], - "name": "\ue063herora2018", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-03 16:43:05", - "registerOn": 1686310872.3639097, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686310872.3639104, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686310872.363929, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686310872.3639305, - "lastIP": "azo~{`~}mcaii}", - "deviceUUID": "e2c69c6655a74f942ce43101f9375ad207a4812a" - }, - "pb-IF5dVWwqKw==": { - "display_string": [ - "\ue063REPNOGAMER" - ], - "profiles": [], - "name": "\ue063REPNOGAMER", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-12 09:29:49", - "registerOn": 1686311452.8314724, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686311452.8314729, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686311452.8314798, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686311452.8314815, - "lastIP": "a~l~|i~~kfajc{", - "deviceUUID": "2b23550a5ba3eb052c36d148e588a3fb49f4422a", - "cMsgCount": 1, - "lastMsgTime": 1686311467.9586034, - "lastMsg": "yo", - "cSameMsg": 0 - }, - "pb-IF49UxAzBw==": { - "display_string": [ - "\ue063Nikhil1393" - ], - "profiles": [], - "name": "\ue063Nikhil1393", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-26 22:18:30", - "registerOn": 1686312516.0608087, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686312516.0608096, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686312516.0608175, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686312516.0608182, - "lastIP": "a}j~~nhajbwva~k", - "deviceUUID": "8b2e3e98ded7dc1ac150f289ee81413a20513d75" - }, - "pb-IF4hUk0NCA==": { - "display_string": [ - "\ue020CannyBohemian42", - "\ue020NeoChef376", - "\ue020MajesticDependence62", - "\ue063AlluringSe", - "\ue030Android61998026" - ], - "profiles": [], - "name": "\ue063AlluringSe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-08 22:05:53", - "registerOn": 1686312927.165656, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686312927.1656566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686312927.1656628, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686312927.1656637, - "lastIP": "azj~z`~}jfa``", - "deviceUUID": "955a2549e5e055c17a2c8cfaf1f1f65744786605" - }, - "pb-IF5cUGwgMw==": { - "display_string": [ - "\ue063kingdoom9i" - ], - "profiles": [], - "name": "\ue063kingdoom9i", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-09 11:00:17", - "registerOn": 1686312980.049234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686312980.0492346, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686312980.0492418, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686312980.0492432, - "lastIP": "azj~zo~}kgaihy", - "deviceUUID": "c2a7fe09fd0779a6e34d31d6e8041b775f1b8361" - }, - "pb-IF4UVRRfNw==": { - "display_string": [ - "\ue063IdealGourm", - "\ue030Android45641612" - ], - "profiles": [], - "name": "\ue063IdealGourm", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-24 21:06:40", - "registerOn": 1686313069.1947923, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686313069.194793, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686378012.844931, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686378012.8449318, - "lastIP": "b}k~~ogaocaii}", - "deviceUUID": "22338eac02bdee1ba8b06a9fc0ecf9926b2cf226", - "cMsgCount": 0, - "lastMsgTime": 1686313481.4914181, - "lastMsg": "1bs1 no bomb", - "cSameMsg": 0 - }, - "pb-JiNJARBbUkdIVVZGF0ZZUFVAF0ldRFlB": { - "display_string": [ - "\ue063Liquiddes2" - ], - "profiles": [], - "name": "\ue063Liquiddes2", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-25 17:31:23", - "registerOn": 1686313301.9978428, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686313301.9978435, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686313301.9978502, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686313301.9978511, - "lastIP": "a}k~~kfaie~vcw", - "deviceUUID": "a07bd82e842b82082022523707cfae587446b177" - }, - "pb-IF4wU2MhUg==": { - "display_string": [ - "\ue063Yaman4" - ], - "profiles": [], - "name": "\ue063Yaman4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-08 22:28:44", - "registerOn": 1686314173.9331372, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686314173.9331377, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686314173.9331453, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686314273.046842, - "lastIP": "a\u007fk~~ogaje}vb{", - "deviceUUID": "418cbea0e1158d2a200873aab37674ab735bdc97" - }, - "pb-IF4nUGkIBw==": { - "display_string": [ - "\ue063VigorousV2" - ], - "profiles": [], - "name": "\ue063VigorousV2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-01 12:32:14", - "registerOn": 1686314588.7929168, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686314588.7929175, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686314588.7929254, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686314588.7929268, - "lastIP": "a\u007fn~}idajcyvayo", - "deviceUUID": "b326abbd3e6b130e6f30516d11e22c96263dec74" - }, - "pb-IF5VUGY9KQ==": { - "display_string": [ - "\ue063Opposit104" - ], - "profiles": [], - "name": "\ue063Opposit104", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-03 08:57:00", - "registerOn": 1686315713.610431, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686315713.6104312, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686315713.610439, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686315721.3366003, - "lastIP": "dvvc{vc}vgz", - "deviceUUID": "6958712e6ca7ce2db577b76b414cc76148393e6e" - }, - "pb-IF4yUGMtFg==": { - "display_string": [ - "\ue063Volumin253" - ], - "profiles": [], - "name": "\ue063Volumin253", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-28 18:10:18", - "registerOn": 1686317006.5554092, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686317006.5554097, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686317006.5554163, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686317006.5554175, - "lastIP": "azj~zo~}hdamf", - "deviceUUID": "056119283586c103f512d650697db99f56db7c7f" - }, - "pb-IF5VVXomFA==": { - "display_string": [ - "\ue063DearerImba" - ], - "profiles": [], - "name": "\ue063DearerImba", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-17 10:47:57", - "registerOn": 1686317346.8352993, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686317346.8352995, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686317346.8353055, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686317346.8353066, - "lastIP": "azo~{n~va~~oe", - "deviceUUID": "a40938236937810d4a90b1ac03516bfb33ba6cca" - }, - "pb-IF4KUlA8Ig==": { - "display_string": [ - "\ue063Rheumat284" - ], - "profiles": [], - "name": "\ue063Rheumat284", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-17 09:23:06", - "registerOn": 1686317392.2513692, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686317392.25137, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686317392.2513776, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686317392.2513788, - "lastIP": "a\u007fk~~lhaj`aje{", - "deviceUUID": "3cb572852d3e1e3936a51d31004f1b955ac1994e" - }, - "pb-IF48UGoSFA==": { - "display_string": [ - "\ue063GallingRea" - ], - "profiles": [], - "name": "\ue063GallingRea", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-09 18:32:05", - "registerOn": 1686317658.965032, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686317658.9650333, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686317658.96504, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686317658.965041, - "lastIP": "a\u007fk~}jeajd{vbzj", - "deviceUUID": "a6393f1781c710160671baeb1653d71d8a963299" - }, - "pb-IF4cU0E7Jg==": { - "display_string": [ - "\ue030Android63275777" - ], - "profiles": [], - "name": "\ue030Android63275777", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-12 13:16:44", - "registerOn": 1686322084.9974573, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686322084.997458, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686322084.9974651, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686322084.997466, - "lastIP": "a}j~~oaaiiaia\u007f", - "deviceUUID": "85221d68a07c1e706a3ae9bedad08f0c3aa28c0a" - }, - "pb-IF4UUGQHMA==": { - "display_string": [ - "\ue030Android65007849" - ], - "profiles": [], - "name": "\ue030Android65007849", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-05 21:28:04", - "registerOn": 1686324618.9192595, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686324618.9192603, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686324618.9192667, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686324618.9192677, - "lastIP": "a\u007fn~}ifaia}va|`", - "deviceUUID": "1d1d12a44eeeb8777697de699b7a9967af1bd70e" - }, - "pb-IF4CVBUiFA==": { - "display_string": [ - "\ue063Harshhhh12" - ], - "profiles": [], - "name": "\ue063Harshhhh12", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-13 12:18:04", - "registerOn": 1686325025.5116143, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686325025.511615, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686325025.5116224, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686325025.5116234, - "lastIP": "b\u007fk~~adaahamh", - "deviceUUID": "9ed2c16af97dce872a5187ce4b96c59854f6d2b8" - }, - "pb-JiNJARBTUURJWFtAEkZSUFBCEEdWQlRB": { - "display_string": [ - "\ue063Manupereva" - ], - "profiles": [], - "name": "\ue063Manupereva", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-28 15:22:27", - "registerOn": 1686325304.574274, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686325304.574275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686325304.5742834, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686325304.574284, - "lastIP": "azj~z`~}keali", - "deviceUUID": "b537281e929a92756518313479ba28349eba6e4b" - }, - "pb-IF4mUkQaDA==": { - "display_string": [ - "\ue030Android57902869" - ], - "profiles": [], - "name": "\ue030Android57902869", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-31 09:22:28", - "registerOn": 1686326025.2622101, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686326025.2622106, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686326025.262216, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686326025.2622173, - "lastIP": "azo~|k~vn~}if", - "deviceUUID": "1d7ad4ac29a499933cbb6ec476e1911624a69aa0" - }, - "pb-IF4XU1AeIQ==": { - "display_string": [ - "\ue063IgnorantD2" - ], - "profiles": [], - "name": "\ue063IgnorantD2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-09 07:13:14", - "registerOn": 1686326619.4083967, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686326619.4083972, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686326619.4084065, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686326619.4084074, - "lastIP": "b\u007fh~wo~~mbaicx", - "deviceUUID": "b7a8c89bd1afb6b02eaad6b2058195847f9a4e48" - }, - "pb-IF4HUGgPDg==": { - "display_string": [ - "\ue030Android65143139" - ], - "profiles": [], - "name": "\ue030Android65143139", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-27 16:30:15", - "registerOn": 1686327323.3500187, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686327323.3500197, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686327323.350027, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686327323.3500283, - "lastIP": "a}j~~ncajbwvi~", - "deviceUUID": "1d8ea730210822f4733c3c9762ec4e651e253510" - }, - "pb-IF4sUxNbNA==": { - "display_string": [ - "\ue063Prateek000", - "\ue030Android62258945", - "\ue030Android62258195", - "\ue030Android62258907", - "\ue030Android62258277" - ], - "profiles": [], - "name": "\ue063Prateek000", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-08 11:32:44", - "registerOn": 1686328077.7893627, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686328077.7893631, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686328077.7893713, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686328077.789372, - "lastIP": "b}k~}jga`ga``", - "deviceUUID": "0cf7681ebb983be0d37077adc2704bd742b5f86c" - }, - "pb-IF4qUBYCLg==": { - "display_string": [ - "\ue063PopularPl3" - ], - "profiles": [], - "name": "\ue063PopularPl3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-25 15:10:33", - "registerOn": 1686329791.0610197, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686329791.0610201, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686329791.061026, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686334644.1440883, - "lastIP": "azo~|l~wk~}ig", - "deviceUUID": "9b5a9e6c39be53e7579a611f59b52aa02ed87225" - }, - "pb-IF4-UlECDQ==": { - "display_string": [ - "\ue063hitiblackp", - "\ue030Android58593405" - ], - "profiles": [], - "name": "\ue063hitiblackp", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-22 17:12:32", - "registerOn": 1686330164.5650003, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686330164.565001, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686330164.5650086, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686330164.5650098, - "lastIP": "dvvcyva|a~wn", - "deviceUUID": "f8f1eebe8923249cd8c07ea1feb32423d6632fc3" - }, - "pb-IF4DUGMfXA==": { - "display_string": [ - "\ue063MuddledFo6" - ], - "profiles": [], - "name": "\ue063MuddledFo6", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-29 13:58:47", - "registerOn": 1686331111.1060674, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686331111.106068, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686331111.106074, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686331111.1060753, - "lastIP": "dvvc|vb~l~}jd", - "deviceUUID": "cdd0d9f6418a873d24a413f5dff681297edd4c7f" - }, - "pb-IF4MU1oBFw==": { - "display_string": [ - "\ue030Android64430731" - ], - "profiles": [], - "name": "\ue030Android64430731", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-12 03:34:52", - "registerOn": 1686331408.3153148, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686331408.3153155, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686331408.3153229, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686331408.3153236, - "lastIP": "axo~yn~~neaifv", - "deviceUUID": "42c8d5c0919139ab41297f2355d19c8fb98eac96" - }, - "pb-IF4rUxU7Cg==": { - "display_string": [ - "\ue063Compone291" - ], - "profiles": [], - "name": "\ue063Compone291", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-14 19:05:48", - "registerOn": 1686331526.7234192, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686331526.7234197, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686331526.723427, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686331526.7234278, - "lastIP": "awk~wj~~ofai`{", - "deviceUUID": "8718c25d05ff0a9b6784cd4e384a2c85ce172283" - }, - "pb-IF4oUGY8Ug==": { - "display_string": [ - "\ue030Android65075234" - ], - "profiles": [], - "name": "\ue030Android65075234", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-16 19:04:17", - "registerOn": 1686332482.4519057, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686332482.4519064, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686332482.4519134, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686332482.4519145, - "lastIP": "a\u007fm~~hbao~{n", - "deviceUUID": "0cc2abbdd4f938fe7478e2827654a5321b7ffe9a" - }, - "pb-IF4iU1APUQ==": { - "display_string": [ - "\ue063BawaliGend" - ], - "profiles": [], - "name": "\ue063BawaliGend", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-13 21:36:12", - "registerOn": 1686332488.157135, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686332488.157136, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686332488.1571434, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686332488.1571443, - "lastIP": "a\u007fk~}hfaicwvb~j", - "deviceUUID": "e1b5f88bf2292c035b4933043d90e70a0157bfa3" - }, - "pb-IF4WU1I7DQ==": { - "display_string": [ - "\ue063Certifie23" - ], - "profiles": [], - "name": "\ue063Certifie23", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-21 16:19:30", - "registerOn": 1686332837.404203, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686332837.404204, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686332941.064066, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686333043.7918222, - "lastIP": "awj~ya~~ofake", - "deviceUUID": "82380130761c222d96bcc497f42ae841e3474f89", - "cMsgCount": 1, - "lastMsgTime": 1686334520.5222604, - "lastMsg": "bye", - "cSameMsg": 0 - }, - "pb-IF4IUBlSHQ==": { - "display_string": [ - "\ue063IcyWear27" - ], - "profiles": [], - "name": "\ue063IcyWear27", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-09 19:13:58", - "registerOn": 1686332840.3867774, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686332840.3867779, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686332840.3867853, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686332840.386786, - "lastIP": "b}k~}jealfajd\u007f", - "deviceUUID": "6647900d3c821f9dc2a748a872bc4ae9f48a5e72" - }, - "pb-IF4XUmwOKw==": { - "display_string": [ - "\ue030Android55956875" - ], - "profiles": [], - "name": "\ue030Android55956875", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-11 11:52:32", - "registerOn": 1686333321.169543, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686333321.1695437, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686333321.169552, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686333321.1695528, - "lastIP": "dvvcyvd~vb}n", - "deviceUUID": "2687007beb529d908494e29c723a9f22604e1005", - "cMsgCount": 0, - "lastMsgTime": 1686333582.3281302, - "lastMsg": "i banned ur mom's p. u. s. s. y", - "cSameMsg": 0 - }, - "pb-JiNJARBfUkFEXFtDGURXVF1HEUFeTlZA": { - "display_string": [ - "\ue063rao18520" - ], - "profiles": [], - "name": "\ue063rao18520", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-08 16:36:25", - "registerOn": 1686334126.4724128, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686334126.4724138, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686334126.472421, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686334126.4724216, - "lastIP": "a\u007fk~wh~~j~|j", - "deviceUUID": "6ecd51adffc85511574003b1d19840e91cd6838f" - }, - "pb-JiNJARBYXUFHWF5CEUBZV11EGUhdRFVA": { - "display_string": [ - "\ue063Boss007", - "\ue030Android15937259" - ], - "profiles": [], - "name": "\ue063Boss007", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-08 15:15:22", - "registerOn": 1686335864.6377494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686335864.6377504, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686335864.6377566, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686335864.6377575, - "lastIP": "a\u007fk~~i~~agaig}", - "deviceUUID": "c91de994b25c53e112720c14b456644b86c5602f" - }, - "pb-IF4mUGkfUw==": { - "display_string": [ - "\ue030Android65216424" - ], - "profiles": [], - "name": "\ue030Android65216424", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-08 16:48:54", - "registerOn": 1686336658.0466437, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1686337885.5385804, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686403367.0818617, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686403367.081863, - "lastIP": "a~h~}jfaih}vawk", - "deviceUUID": "9465a95dd2a9253a3cfc5a668e93629fdfa79bb6", - "cMsgCount": 0, - "lastMsgTime": 1686403397.8506088, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4eU0c6PQ==": { - "display_string": [ - "\ue063InaudibleN", - "\ue030Android63656661", - "\ue030Android63656621" - ], - "profiles": [], - "name": "\ue063InaudibleN", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-13 19:28:28", - "registerOn": 1686337004.3752322, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686337004.375233, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686337004.3752394, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686337004.37524, - "lastIP": "a\u007fk~~n`aii{vava", - "deviceUUID": "2d9ed6d1cf7037bab2bd754ff8d63edc50290b57" - }, - "pb-IF4MUGUlEQ==": { - "display_string": [ - "\ue063RealJellyf" - ], - "profiles": [], - "name": "\ue063RealJellyf", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-11 16:12:52", - "registerOn": 1686337247.3123827, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686337247.3123837, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686337247.3123906, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686337247.3123918, - "lastIP": "b\u007fj~~oiaadalb", - "deviceUUID": "ee8b2e2f100fd0b8bd4cc060bd1999f1c48ec64d" - }, - "pb-IF4DVXAkHw==": { - "display_string": [ - "\ue063mohdzaid19" - ], - "profiles": [], - "name": "\ue063mohdzaid19", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-28 12:50:42", - "registerOn": 1686342749.6687074, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686342749.6687078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686342749.6687138, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686342749.6687148, - "lastIP": "a}j~~ofaiivva~k", - "deviceUUID": "0fbf0c2c0d3ee7342eb9522fbe33c4aa5ac3bb21" - }, - "pb-IF4NUGkABg==": { - "display_string": "\ue063Fazilpuria", - "profiles": [], - "name": "\ue063Fazilpuria", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-10 00:23:12", - "registerOn": 1686347932.8392096, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686347932.8392103, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686347932.8392174, - "verified": false, - "rejoincount": 1, - "lastJoin": 1686347932.8392184, - "lastIP": "a\u007fk~}maaj`vvaw", - "deviceUUID": "fcafcc043f19b8b161a3258f2a4897cabf6aaf41" - }, - "pb-IF4mUGIxIg==": { - "display_string": [ - "\ue030Android64940184" - ], - "profiles": [], - "name": "\ue030Android64940184", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-25 08:46:24", - "registerOn": 1686357215.2868145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686357215.286815, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686357215.2868223, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686357215.2868235, - "lastIP": "axm~~laa`cajd}", - "deviceUUID": "de9393c524eb8a122664490d446bc2ae96a499cc" - }, - "pb-IF41U1oaBg==": { - "display_string": [ - "\ue030Android64439482" - ], - "profiles": [], - "name": "\ue030Android64439482", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-13 07:32:04", - "registerOn": 1686363725.4742646, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686363725.4742653, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686363725.474272, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686363725.474273, - "lastIP": "dxvazvea`i", - "deviceUUID": "a8efaa07520d92a2e4cb2c4e0b30b48a82f7641f" - }, - "pb-IF5UUGUqCQ==": { - "display_string": [ - "\ue063dhamu258" - ], - "profiles": [], - "name": "\ue063dhamu258", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-26 17:22:06", - "registerOn": 1686364568.8003843, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686364568.8003848, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686364568.8003922, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686364568.800393, - "lastIP": "azo~{n~~hcajc\u007f", - "deviceUUID": "8b02fce1d1907e68889a17157f87c32854efbda1" - }, - "pb-IF49UGQSEg==": { - "display_string": [ - "\ue063Meander592" - ], - "profiles": [], - "name": "\ue063Meander592", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-09 12:50:52", - "registerOn": 1686365124.7817843, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686365124.7817848, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686365124.7817914, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686365124.7817924, - "lastIP": "a|o~vo~vh~~le", - "deviceUUID": "ffe0509a3a5fbc74af32d2fe4cde396842b6f85a" - }, - "pb-IF5VVU4CKA==": { - "display_string": [ - "\ue063Sanjam" - ], - "profiles": [], - "name": "\ue063Sanjam", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-22 15:54:30", - "registerOn": 1686367404.094138, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686367404.0941384, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686367404.0941465, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686367404.0941477, - "lastIP": "azo~|a~ym~y", - "deviceUUID": "d8e258714e814fda309a4d9a18f16b48d4080ddf" - }, - "pb-IF4UU288Dw==": { - "display_string": [ - "\ue030Android62148660" - ], - "profiles": [], - "name": "\ue030Android62148660", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-21 23:47:56", - "registerOn": 1686372685.998888, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686372685.9988887, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686372685.9988952, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686372685.9988961, - "lastIP": "eaib~vaxl~~h`", - "deviceUUID": "db85a83f1b86cf835a7c4810849b6607f0059ee5" - }, - "pb-IF5WUGcCLw==": { - "display_string": [ - "\ue063Phlegma292" - ], - "profiles": [], - "name": "\ue063Phlegma292", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-13 18:02:05", - "registerOn": 1686374167.0807934, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686374167.0807943, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686374167.080801, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686374167.0808017, - "lastIP": "a\u007fn~~agakeaj", - "deviceUUID": "ae1982ebff52792e1381460b58cf63db5ac7e923" - }, - "pb-IF4CUBkgNw==": { - "display_string": [ - "\ue063Ezhil0332" - ], - "profiles": [], - "name": "\ue063Ezhil0332", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-08 07:31:32", - "registerOn": 1686374897.938667, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686374897.9386678, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686374897.9386759, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686374897.9386773, - "lastIP": "azo~{a~x`~xo", - "deviceUUID": "2b07b37d67c764b74375a5a4fb2c726064c263ab" - }, - "pb-IF4NUGkOFg==": { - "display_string": [ - "\ue063Iconocl208" - ], - "profiles": [], - "name": "\ue063Iconocl208", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-09 10:09:58", - "registerOn": 1686376681.0946777, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686376681.0946786, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686376681.0946872, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686376681.0946884, - "lastIP": "azo~{o~~i`ajc|", - "deviceUUID": "f169def727a1ef27d2ab4c1afbc146a884919805" - }, - "pb-IF5TVUg4Bg==": { - "display_string": [ - "\ue063Victori658" - ], - "profiles": [], - "name": "\ue063Victori658", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-20 20:45:06", - "registerOn": 1686377565.3478127, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686377565.3478131, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686377565.34782, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686377565.347821, - "lastIP": "azj~z`~}jdaoa", - "deviceUUID": "65263c669554b7e2a6307f860a765b41ceddb5f8" - }, - "pb-JiNJARBaUEtDX1xBEEdUU1JKFENbQlFC": { - "display_string": [ - "\ue020NappingDropbear47108", - "\ue030Android15654903" - ], - "profiles": [], - "name": "\ue030Android15654903", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-11 16:56:21", - "registerOn": 1686377652.705056, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686377652.7050564, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686377652.7050636, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686377652.7050648, - "lastIP": "dzva}o~{l~zo", - "deviceUUID": "ad563322a828db4bc0e8fac444caef7ed55de33f" - }, - "pb-IF43UGcqPw==": { - "display_string": [ - "\ue063Volcani179" - ], - "profiles": [], - "name": "\ue063Volcani179", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-20 16:27:21", - "registerOn": 1686378253.9680746, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686378253.9680753, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686378253.9680827, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686378253.9680836, - "lastIP": "azo~{`~}idana", - "deviceUUID": "51c36a4aa84e11036f8c150b160fe49504f7e778" - }, - "pb-IF5SVUMHDg==": { - "display_string": [ - "\ue063NoName2045698" - ], - "profiles": [], - "name": "\ue063NoName2045698", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-20 21:36:03", - "registerOn": 1686379676.6484559, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686379676.648457, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686379676.6484632, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686379676.6484644, - "lastIP": "dvvcyvawk~}k`", - "deviceUUID": "c9c188c7f3fdaf70e22e40d0105eced9700c007a" - }, - "pb-IF4BUGkvNA==": { - "display_string": [ - "\ue063Innocen193" - ], - "profiles": [], - "name": "\ue063Innocen193", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 16:48:32", - "registerOn": 1686380205.3981051, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686380205.3981059, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686380205.3981144, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686380205.3981159, - "lastIP": "aakhaia\u007fvb|`", - "deviceUUID": "d0563f60b70a8cdef715ba14c672e7b1bdb1f843" - }, - "pb-JiNJARFaV0BAWl9IEENSXFREFEVZRlFH": { - "display_string": [ - "\ue063Cosmic7" - ], - "profiles": [], - "name": "\ue063Cosmic7", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-21 18:39:03", - "registerOn": 1686383677.7947533, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686383677.7947538, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686383677.7947607, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686383677.7947617, - "lastIP": "a\u007fk~~oaaic|va~j", - "deviceUUID": "6a744dbc5c7bc9ac0e055cefa4838e6666c135d0" - }, - "pb-IF4DUGotLw==": { - "display_string": [ - "\ue063Caverno372" - ], - "profiles": [], - "name": "\ue063Caverno372", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 08:26:44", - "registerOn": 1686384285.0315773, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686384285.031578, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686384285.0315857, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686384285.031587, - "lastIP": "azo~{a~~aaa`d", - "deviceUUID": "7595524f01af4f3a097ca3eabc633509d730d1f7" - }, - "pb-IF4UUGNbHA==": { - "display_string": [ - "\ue063Obtaina234" - ], - "profiles": [], - "name": "\ue063Obtaina234", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-22 23:33:40", - "registerOn": 1686384429.6371536, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686384429.6371546, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686384429.6371617, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686384429.6371627, - "lastIP": "a\u007fk~~ofaifaac", - "deviceUUID": "026825c5672fabb1dcf892dda9e8f4df7866e60c" - }, - "pb-JiNJARBSUkNEX11DGU5RUVFFFEFbT1dF": { - "display_string": [ - "\ue063KT9880" - ], - "profiles": [], - "name": "\ue063KT9880", - "isBan": false, - "isMuted": false, - "accountAge": "2016-08-02 18:01:46", - "registerOn": 1686384685.546996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686384685.5469968, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686384685.5470247, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686384685.547026, - "lastIP": "azh~~hgaii~vawa", - "deviceUUID": "39a07841d11133b1dc369933ac278cc15349c690" - }, - "pb-IF41U1ZZNg==": { - "display_string": [ - "\ue063Inconsta73" - ], - "profiles": [], - "name": "\ue063Inconsta73", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-14 12:00:14", - "registerOn": 1686386817.8026578, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686386817.8026586, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686386817.8026648, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686386817.8026657, - "lastIP": "azj~z`~{va{", - "deviceUUID": "916402cebe52ac3a922385c0d035cdfdd3d0161a", - "cMsgCount": 2, - "lastMsgTime": 1686387409.6159096, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4GUBgYCw==": { - "display_string": [ - "\ue030Android64790580" - ], - "profiles": [], - "name": "\ue030Android64790580", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-04 12:49:03", - "registerOn": 1686387405.9886906, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686387405.988691, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686387405.9886973, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686387405.9886987, - "lastIP": "awj~ya~~`aaai", - "deviceUUID": "b15ab5b7359c5c5d74a958e740e3d2f90e9e1c33" - }, - "pb-IF4QUlQCUA==": { - "display_string": [ - "\ue063Quarrel131" - ], - "profiles": [], - "name": "\ue063Quarrel131", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-03 11:38:05", - "registerOn": 1686387418.0179474, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686387418.017948, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686387418.0179558, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686387418.017957, - "lastIP": "awj~ya~~`aaai", - "deviceUUID": "737a6221be7db386d7c6fb09d48ca8309a93886e" - }, - "pb-IF4vUkUOXA==": { - "display_string": [ - "\ue063Asrofi143", - "\ue030Android57950775" - ], - "profiles": [], - "name": "\ue063Asrofi143", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-02 11:46:41", - "registerOn": 1686387582.2774785, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686387582.277479, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686387582.2774866, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686387582.2774875, - "lastIP": "a{h~}icaidvva{l", - "deviceUUID": "c999a610d3dbd8fc789b3478053eb3e97bb375bc" - }, - "pb-IF4zU20BFA==": { - "display_string": [ - "\ue063TenableCoh" - ], - "profiles": [], - "name": "\ue063TenableCoh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-16 12:08:23", - "registerOn": 1686387587.993501, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686387587.9935017, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686387587.9935095, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686387973.3219166, - "lastIP": "azj~z`~}haali", - "deviceUUID": "97d2c294c6bdf1af10cc3379f7dee2ef2cc4d752" - }, - "pb-IF4MUlU_EQ==": { - "display_string": [ - "\ue030Android65181733", - "\ue030RockyYT", - "\ue030Android65181753", - "\ue030Android65181702" - ], - "profiles": [], - "name": "\ue030RockyYT", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-05 20:12:07", - "registerOn": 1686388259.680742, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686388259.6807427, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686388259.6807485, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686388330.6148443, - "lastIP": "a\u007fn~~adaoaaif\u007f", - "deviceUUID": "4ea95d28a20f21781e6915b8f627b8ec1df02cf7" - }, - "pb-IF4jUhlSFw==": { - "display_string": [ - "\ue020CapillaryStreet26" - ], - "profiles": [], - "name": "\ue020CapillaryStreet26", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-12 13:31:14", - "registerOn": 1686388300.1226816, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686388300.1226823, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686388300.1226897, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686388315.5478008, - "lastIP": "a\u007fk~~ogajgakb", - "deviceUUID": "dfa3fcaaa56e4735ac113b0cf8ea265e6682d45d" - }, - "pb-IF4LVUQhKg==": { - "display_string": [ - "\ue063SlowestPa2", - "\ue030Android51158672" - ], - "profiles": [], - "name": "\ue063SlowestPa2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-09 15:56:43", - "registerOn": 1686388656.2282283, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686388656.228229, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686388656.2282374, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686389076.41946, - "lastIP": "azo~|l~~jgai`v", - "deviceUUID": "e69588102d4315071f408aec798f9a1b100b6c5f" - }, - "pb-IF4XU3oRVQ==": { - "display_string": [ - "\ue063onkarbhosa" - ], - "profiles": [], - "name": "\ue063onkarbhosa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-08 17:19:46", - "registerOn": 1686389902.038461, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686389902.0384617, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686389902.0384693, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686389902.0384705, - "lastIP": "a\u007fn~}j`aaaajcz", - "deviceUUID": "abd6a42519dad4dc6fcf500b555de9f6e64bf4e4" - }, - "pb-IF5UUBksVg==": { - "display_string": [ - "\ue063REBELop" - ], - "profiles": [], - "name": "\ue063REBELop", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-29 20:08:01", - "registerOn": 1686390598.5681756, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686390598.5681763, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686390598.5681846, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686390598.5681856, - "lastIP": "awh~~`hajcxvaxi", - "deviceUUID": "5004995dc2648d68758d01ee7ac7fc075d0e0c3b" - }, - "pb-IF4SV1gpJg==": { - "display_string": [ - "\ue063badabangba" - ], - "profiles": [], - "name": "\ue063badabangba", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-27 23:27:03", - "registerOn": 1686391014.2303362, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686391014.2303371, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686391014.2303452, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686391014.2303467, - "lastIP": "a}j~~oaajaaib{", - "deviceUUID": "a759612903982d49822fff1c5f912e9cbf7c39f8" - }, - "pb-IF4dU1EBUA==": { - "display_string": [ - "\ue063Vivaciou61" - ], - "profiles": [], - "name": "\ue063Vivaciou61", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-20 13:34:33", - "registerOn": 1686391912.9623334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686391912.9623342, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686391912.9623427, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686391912.9623437, - "lastIP": "a\u007fn~}ifaje{vb|k", - "deviceUUID": "7dc10cb0f1e3c4df233aa300865a25faa99a2d42" - }, - "pb-IF4lUmsYDw==": { - "display_string": [ - "\ue063ShaggyKind" - ], - "profiles": [], - "name": "\ue063ShaggyKind", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-07 14:21:45", - "registerOn": 1686392554.3567302, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686392554.3567312, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686392554.356759, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686392554.35676, - "lastIP": "a\u007fn~}ifajdwvb}i", - "deviceUUID": "0fc17e8f0ce19323d512f83757aae9d2c92a932e" - }, - "pb-IF48UkMTNA==": { - "display_string": [ - "\ue063SudhanvaPu" - ], - "profiles": [], - "name": "\ue063SudhanvaPu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-26 19:26:28", - "registerOn": 1686394123.894866, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686394123.8948665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686394123.8948731, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686394123.8948739, - "lastIP": "a}j~~oaaigaidy", - "deviceUUID": "fd2b27fcc8a8ebde254dd78dc1c3bd67bd71d2a0" - }, - "pb-IF4vUGYGEw==": { - "display_string": [ - "\ue030Android65082260" - ], - "profiles": [], - "name": "\ue030Android65082260", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-17 21:51:54", - "registerOn": 1686394396.8477666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686394396.847767, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686394396.8477743, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686394396.847775, - "lastIP": "awk~}mcak~~kf", - "deviceUUID": "80dfba9d68e7188eea926e7288de5f279a25a65e" - }, - "pb-IF4jU1VYVg==": { - "display_string": [ - "\ue063VividSeat4" - ], - "profiles": [], - "name": "\ue063VividSeat4", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-02 12:53:52", - "registerOn": 1686394983.550502, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686394983.550503, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686394983.5505102, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686394983.5505111, - "lastIP": "bxvf|vb\u007fh~~kc", - "deviceUUID": "1e7e85a9f7fbdd14174877cd51206be49d9ce647" - }, - "pb-IF4IUGQTAg==": { - "display_string": [ - "\ue063virajpati5" - ], - "profiles": [], - "name": "\ue063virajpati5", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-09 12:08:58", - "registerOn": 1686395046.6786222, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686395046.678623, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686395046.6786308, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686395046.6786318, - "lastIP": "a\u007fn~}ifaje|va~l", - "deviceUUID": "4ab3b8ed6f2751a657609727e59da885aef372c7" - }, - "pb-IF4AVXgOUw==": { - "display_string": [ - "\ue063Professe67" - ], - "profiles": [], - "name": "\ue063Professe67", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-23 17:01:00", - "registerOn": 1686395186.191267, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686395186.1912677, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686395186.1912742, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686395186.1912754, - "lastIP": "azo~{`~~igaja", - "deviceUUID": "2f2e18f9ec7d1f1fb2a3b8548ee3ab5ce9f90be6" - }, - "pb-IF5RUGwdPQ==": { - "display_string": [ - "\ue063GraveArena" - ], - "profiles": [], - "name": "\ue063GraveArena", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-08 23:31:28", - "registerOn": 1686395306.6698904, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686395306.669891, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686395306.6698997, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686395306.6699011, - "lastIP": "a\u007fn~}igaif|vb|m", - "deviceUUID": "82e4eb59c8587c96cfec7d717abd4c36fc2f5cbc" - }, - "pb-IF4uVWI_Dg==": { - "display_string": [ - "\ue063TautFuss23", - "\ue030Android64988799" - ], - "profiles": [], - "name": "\ue063TautFuss23", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-17 12:24:18", - "registerOn": 1686395770.1625412, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686395770.1625416, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686395770.162549, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686395770.1625497, - "lastIP": "dvvcxvbzi~~ia", - "deviceUUID": "16d94f0b80a27e40c8362b1544d5468250052228" - }, - "pb-IF4nUGkzLQ==": { - "display_string": [ - "\ue063vinodsaini" - ], - "profiles": [], - "name": "\ue063vinodsaini", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-31 21:54:51", - "registerOn": 1686395791.9368606, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686395791.9368615, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686395791.936869, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686395791.9368699, - "lastIP": "a}j~~naaabajc~", - "deviceUUID": "be95b29dad75097514841385c5b35d600dede78c" - }, - "pb-IF5cU1FTBg==": { - "display_string": [ - "\ue063ClammyPrai" - ], - "profiles": [], - "name": "\ue063ClammyPrai", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 19:14:02", - "registerOn": 1686396994.3757234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686396994.375724, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686396994.3757308, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686396994.375732, - "lastIP": "a\u007fn~~aeaa~}jc", - "deviceUUID": "5f55a8326f119e5754e896b10948e097ad02780e" - }, - "pb-IF4HUGoBIw==": { - "display_string": [ - "\ue063Acciden342" - ], - "profiles": [], - "name": "\ue063Acciden342", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-09 18:04:05", - "registerOn": 1686397323.7389324, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686397323.7389336, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686397323.7389412, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686397323.7389421, - "lastIP": "azh~~jiaj`yvayk", - "deviceUUID": "ab1e4df9e4b92f53d6d500b165064dff67c66667" - }, - "pb-IF4wEBQ_": { - "display_string": [ - "\ue063puttan123p" - ], - "profiles": [], - "name": "\ue063puttan123p", - "isBan": false, - "isMuted": false, - "accountAge": "2018-06-07 05:57:27", - "registerOn": 1686398740.2448266, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686398740.244827, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686398740.2448344, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686398740.2448354, - "lastIP": "azo~{`~}haajd", - "deviceUUID": "ec6dd137603e86cd3177c1d26f921d8e7a95195e" - }, - "pb-IF4GUmwvHw==": { - "display_string": [ - "\ue063viswajames", - "\ue030Android55658375" - ], - "profiles": [], - "name": "\ue063viswajames", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-07 10:52:37", - "registerOn": 1686398778.352224, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686398778.3522246, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686398778.3522336, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686398778.3522348, - "lastIP": "a~h~}jdaadanc", - "deviceUUID": "ac704348210350ed914c84f826c06b8e8ef4963b" - }, - "pb-IF4RUGUbJw==": { - "display_string": [ - "\ue063pyschokill" - ], - "profiles": [], - "name": "\ue063pyschokill", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-10 16:11:28", - "registerOn": 1686399701.803314, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686399701.8033147, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686399701.8033218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686399701.8033226, - "lastIP": "a\u007fk~~jeaibvva\u007f`", - "deviceUUID": "d75d3336cd9ecb0cf1f870dcbbe50406edaaf5fb" - }, - "pb-IF4FVRQ_Bg==": { - "display_string": [ - "\ue063FreneticL4" - ], - "profiles": [], - "name": "\ue063FreneticL4", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-01 21:06:47", - "registerOn": 1686399859.3948076, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686399859.394808, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686399859.394814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686399899.2160156, - "lastIP": "dxvbvvay`~|n", - "deviceUUID": "54d41999092540fe49ed00894cab01fc0481d1ba" - }, - "pb-IF4dUhRfCw==": { - "display_string": [ - "\ue063SAV3NGE" - ], - "profiles": [], - "name": "\ue063SAV3NGE", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-22 13:13:17", - "registerOn": 1686400211.0447001, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686400211.0447009, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686400211.0447385, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686400211.0447397, - "lastIP": "b\u007fj~~o`aj`xva{j", - "deviceUUID": "677c0e3bc1eeba28f1e9df0a273a6fcfe47714dc" - }, - "pb-IF4QUGUvUQ==": { - "display_string": [ - "\ue063YawningCu5" - ], - "profiles": [], - "name": "\ue063YawningCu5", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-10 20:30:10", - "registerOn": 1686400633.2973893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686400633.2973897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686400633.2973957, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686400633.297397, - "lastIP": "a\u007fn~}hfaiezvaxm", - "deviceUUID": "d8a1442eee4b64cdaaa7052d0887eab541864a71" - }, - "pb-IF4mUBEFUQ==": { - "display_string": [ - "\ue063Dharmrajsi" - ], - "profiles": [], - "name": "\ue063Dharmrajsi", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-26 14:45:13", - "registerOn": 1686401159.2443922, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686401159.2443926, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686401159.2443984, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686401159.2443993, - "lastIP": "dvvc{vawj~~nh", - "deviceUUID": "54b1ce52a860e950667096487ce1692e39724b6d" - }, - "pb-IF5SV3I4Uw==": { - "display_string": [ - "\ue063Gargantua4" - ], - "profiles": [], - "name": "\ue063Gargantua4", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-03 19:44:18", - "registerOn": 1686401706.3036463, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686401706.303647, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686401706.3036542, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686401706.3036551, - "lastIP": "dxvc~vb\u007fj~~ac", - "deviceUUID": "7358fb647efe4df63d00b570aa8607e61772104e", - "cMsgCount": 0, - "lastMsgTime": 1686403377.851548, - "lastMsg": "maybe ", - "cSameMsg": 0 - }, - "pb-IF4pUmoEEQ==": { - "display_string": [ - "\ue063SHASHWATSP" - ], - "profiles": [], - "name": "\ue063SHASHWATSP", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-01 19:18:52", - "registerOn": 1686401818.6699693, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686401818.6699703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686401818.6699786, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686401818.6699796, - "lastIP": "azj~z`~yn~~lf", - "deviceUUID": "e62417b52df3aba6190757586ec98cf42104f78b", - "cMsgCount": 0, - "lastMsgTime": 1686402342.202289, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5QUG1ZKQ==": { - "display_string": [ - "\ue063Unattac361" - ], - "profiles": [], - "name": "\ue063Unattac361", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-08 16:38:58", - "registerOn": 1686402068.5708578, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686402068.5708585, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686402403.2351644, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686402068.5708675, - "lastIP": "dvvd|vb{`~~ni", - "deviceUUID": "8fbb0c2a5d9935337d7a4baca2370d59133a7e60", - "cMsgCount": 0, - "lastMsgTime": 1686402403.2353244, - "lastMsg": "fuck", - "cSameMsg": 0 - }, - "pb-IF42ImgD": { - "display_string": [ - "\ue063Vanquis165" - ], - "profiles": [], - "name": "\ue063Vanquis165", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-12 17:00:44", - "registerOn": 1686402117.8892732, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686402117.8892734, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686402117.8892808, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686402385.4150546, - "lastIP": "a}h~wa~xl~~kb", - "deviceUUID": "1f67cdb08b2e992651352822134a2a33757bac41" - }, - "pb-IF4HUlovUg==": { - "display_string": [ - "\ue063RavithaShe" - ], - "profiles": [], - "name": "\ue063RavithaShe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-21 17:15:32", - "registerOn": 1686402706.0411036, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686402706.0411043, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686402706.0411112, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686402706.041112, - "lastIP": "a~n~xj~yl~~j`", - "deviceUUID": "717c9462ae8c676f4071cca44599873457487b18" - }, - "pb-IF4UUGoNNQ==": { - "display_string": [ - "\ue030Android65217766" - ], - "profiles": [], - "name": "\ue030Android65217766", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-08 20:58:12", - "registerOn": 1686402747.184892, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686402747.1848927, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686402747.184899, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686402747.1849003, - "lastIP": "a~o~}k`aigxvb~n", - "deviceUUID": "9399ed888f2b4b5f4c944afb4740c0ea4a03a263" - }, "pb-IF4gB3Bf": { "display_string": [ "\ue063Cherish418", @@ -22969,28 +21,5 @@ "lastJoin": 1686403521.9623156, "lastIP": "dvvc{vb\u007f`~yi", "deviceUUID": "8d30ec208bb52cfe546559bf2ab9b306157302a0" - }, - "pb-IF5RU3EcAg==": { - "display_string": [ - "\ue030PC593100" - ], - "profiles": [], - "name": "\ue030PC593100", - "accountAge": "2022-07-23 01:42:52", - "registerOn": 1692041275.3951762, - "spamCount": 0, - "lastSpam": 1692041275.3951833, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1692388455.527413, - "verified": true, - "rejoincount": 1, - "lastJoin": 1692388455.5274153, - "lastIP": "axj~|h~}hhai", - "deviceUUID": "26f30cfd3921c2d15574b534cb824c952b14f189", - "cMsgCount": 1, - "lastMsgTime": 1692388464.9424736, - "lastMsg": "/ping all", - "cSameMsg": 0 } } \ No newline at end of file diff --git a/dist/ba_root/mods/playersdata/profiles.json.backup b/dist/ba_root/mods/playersdata/profiles.json.backup index 275f971..37787e2 100644 --- a/dist/ba_root/mods/playersdata/profiles.json.backup +++ b/dist/ba_root/mods/playersdata/profiles.json.backup @@ -1,22952 +1,4 @@ { - "pb-sdf": { - "spamCount": 0, - "lastSpam": 1685731277.5272515 - }, - "pb-IF41U2scIg==": { - "display_string": [ - "\ue063SHRUTIsom" - ], - "profiles": [], - "name": "\ue063SHRUTIsom", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 15:17:08", - "registerOn": 1685731349.0964909, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685731349.0964913, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686397345.3280551, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686397345.3280566, - "lastIP": "a\u007fk~}hhaoaalb", - "deviceUUID": "6169051b9ce5b5c6655bc02f404234df6a23021a", - "cMsgCount": 0, - "lastMsgTime": 1686339878.478897, - "lastMsg": "ok let's go", - "cSameMsg": 0 - }, - "pb-IF4hUBddUA==": { - "display_string": [ - "\ue063BLAZEXGAMI" - ], - "profiles": [], - "name": "\ue063BLAZEXGAMI", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-02 19:32:15", - "registerOn": 1685731499.6703212, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685731499.6703217, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685731499.6703298, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685731499.6703308, - "lastIP": "b}k~~`iajd}vb~o", - "deviceUUID": "bfd69c3b6bfa313e00ee48165f732d2d4ae5979d" - }, - "pb-IF4LU1gBKA==": { - "display_string": [ - "\ue063demoniojho" - ], - "profiles": [], - "name": "\ue063demoniojho", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-01 23:53:23", - "registerOn": 1685732245.4088056, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685732245.408806, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685732245.4088142, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685732285.2404647, - "lastIP": "a|i~\u007fvava~~nd", - "deviceUUID": "fdb55d616e3e2ee33266af3ae2e25688b3da0c88", - "cMsgCount": 0, - "lastMsgTime": 1685732686.8828566, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF40UGciNw==": { - "display_string": [ - "\ue030Mac293369", - "\ue030Android65029123", - "\ue030Android65115869" - ], - "profiles": [], - "name": "\ue030Android65115869", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-23 02:05:58", - "registerOn": 1685732460.4613266, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685732460.4613273, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686105161.0892274, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686105188.8491607, - "lastIP": "awl~zo~}jfanh", - "deviceUUID": "705a68e09584a42401a790b7da780cc38f6bff54", - "cMsgCount": 1, - "lastMsgTime": 1686105178.3818383, - "lastMsg": "Firestar349", - "cSameMsg": 0 - }, - "pb-IF4IV04ZKw==": { - "display_string": [ - "\ue063WhatsApp", - "\ue030Android26319971", - "\ue030PC355734" - ], - "profiles": [], - "name": "\ue063WhatsApp", - "isBan": true, - "isMuted": false, - "accountAge": "2019-04-06 01:19:11", - "registerOn": 1685733123.8936932, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685733123.8936937, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685733123.8937025, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685733123.8937035, - "lastIP": "azj~z`~xn~~ka", - "deviceUUID": "837792d99be742789307a4e5393657c411293d01" - }, - "pb-IF49I04z": { - "display_string": [ - "\ue063SingingTac" - ], - "profiles": [], - "name": "\ue063SingingTac", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-20 19:38:50", - "registerOn": 1685733358.4697912, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685733358.4697917, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686387076.4657092, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686387076.4657104, - "lastIP": "dvvd|vbzi~~`f", - "deviceUUID": "6c27f72b5a46b673ee416a8d677432818c95f663", - "cMsgCount": 1, - "lastMsgTime": 1686387401.8204188, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4eUBdYDQ==": { - "display_string": [ - "\ue030Android64719038" - ], - "profiles": [], - "name": "\ue030Android64719038", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-26 06:29:59", - "registerOn": 1685734395.3649848, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685734395.3649852, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685734395.364992, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685734395.3649929, - "lastIP": "awi~~ieaid|vay`", - "deviceUUID": "543a3d9d0d44390d8496fbfbb8fd54ddc55505a4" - }, - "pb-IF41U1U9BA==": { - "display_string": [ - "\ue063Classica67" - ], - "profiles": [], - "name": "\ue063Classica67", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-10 18:05:36", - "registerOn": 1685734785.480959, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685734785.4809594, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686237896.9827166, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686237896.982718, - "lastIP": "a\u007fk~~n`ajcxvb}a", - "deviceUUID": "447b2f34e6752d40d026da152470dcdab9192c75" - }, - "pb-IF4PUkYeCg==": { - "display_string": [ - "\ue063ksnsudn998", - "\ue030Android64349748", - "\ue030Android53209611" - ], - "profiles": [], - "name": "\ue030Android53209611", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-07 03:25:29", - "registerOn": 1685735019.5852716, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685735019.5852726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685735019.5852802, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685735019.5852814, - "lastIP": "a|j~}maai~~oa", - "deviceUUID": "b4cefd71f6a2c090d32e1660a673f2019ac277fb" - }, - "pb-IF4iU0QaEw==": { - "display_string": [ - "\ue063BCS" - ], - "profiles": [], - "name": "\ue063BCS", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 15:14:50", - "registerOn": 1685736259.819875, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685736259.819876, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1688134372.6383, - "verified": true, - "rejoincount": 1, - "lastJoin": 1688134372.6383042, - "lastIP": "axj~}h~{`~~", - "deviceUUID": "794cde3b6d1a862addc825b3bd75d7dcddc379e0", - "cMsgCount": 1, - "lastMsgTime": 1687090495.5832543, - "lastMsg": "kiya haal chal hai tumhare nalle ", - "cSameMsg": 0 - }, - "pb-IF4TV3RbDA==": { - "display_string": [ - "\ue063HypnoticA4" - ], - "profiles": [], - "name": "\ue063HypnoticA4", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-22 23:04:35", - "registerOn": 1685739855.4243777, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685739855.4243784, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686339315.0203977, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686339315.0203986, - "lastIP": "azo~{m~~leaihv", - "deviceUUID": "ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3", - "cMsgCount": 1, - "lastMsgTime": 1685884940.4133115, - "lastMsg": "how did I left", - "cSameMsg": 0 - }, - "pb-IF4GU1UdNQ==": { - "display_string": [ - "\ue030Android64210421" - ], - "profiles": [], - "name": "\ue030Android64210421", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-08 12:53:08", - "registerOn": 1685748838.1704845, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685748838.1704853, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686188406.973197, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686188406.9731984, - "lastIP": "a}h~}`~vi~~ic", - "deviceUUID": "59d2818bdaf074a54bfc14e041ee875b2afff306" - }, - "pb-IF49U0c-XA==": { - "display_string": [ - "\ue063Particu262" - ], - "profiles": [], - "name": "\ue063Particu262", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-17 00:17:46", - "registerOn": 1685749466.4146845, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685749466.4146852, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685749466.4146924, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685749466.4146934, - "lastIP": "dzvb|k~}icam`", - "deviceUUID": "9cc30dda6328aa103253475ad22b3fe177172285" - }, - "pb-IF4SVFkaCQ==": { - "display_string": [ - "\ue063CherryBlo2", - "\ue030Android46284403" - ], - "profiles": [], - "name": "\ue063CherryBlo2", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-23 14:44:45", - "registerOn": 1685756028.191234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685756028.1912346, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686297345.9766958, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686307018.1794052, - "lastIP": "a~l~~jbaia~vb|j", - "deviceUUID": "cc48352b9d235d86cf6193d054b7a9ab9a13059a" - }, - "pb-IF4XVUZfFA==": { - "display_string": [ - "\ue063BackwardB2" - ], - "profiles": [], - "name": "\ue063BackwardB2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-18 06:31:57", - "registerOn": 1685756083.3740258, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685756083.3740263, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685847464.5186415, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685852179.9344275, - "lastIP": "b\u007fj~zi~xn~|n", - "deviceUUID": "796c6e0013eee01a7508986e29b2cda6525e000a" - }, - "pb-IF4PUBQaPQ==": { - "display_string": [ - "\ue063EclecticK7" - ], - "profiles": [], - "name": "\ue063EclecticK7", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-14 14:29:21", - "registerOn": 1685756107.7864146, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685756107.786415, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685756107.7864208, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685756107.7864218, - "lastIP": "b}k~~`gai`zvb\u007f", - "deviceUUID": "a2a7e3069a0a7dba0e044d820dd7a54b0f66f204" - }, - "pb-IF4cUBYfCg==": { - "display_string": [ - "\ue063Hrithiksng" - ], - "profiles": [], - "name": "\ue063Hrithiksng", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-27 13:38:19", - "registerOn": 1685756157.9549563, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685756157.9549568, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686399541.9243326, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686400038.8405535, - "lastIP": "azo~zh~{m~}if", - "deviceUUID": "1c8cd1619da006e91ea3b5472fb0cdac0eea3942", - "cMsgCount": 0, - "lastMsgTime": 1686400202.2327187, - "lastMsg": "u cnt", - "cSameMsg": 0 - }, - "pb-IF41U0kfIw==": { - "display_string": [ - "\ue063Colloqui29" - ], - "profiles": [], - "name": "\ue063Colloqui29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-30 05:19:00", - "registerOn": 1685756456.2156708, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685756456.2156713, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685756456.2156785, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685756456.2156792, - "lastIP": "b{vexve\u007fvbzj", - "deviceUUID": "048c8a88c56a51b137c1fe4a49715bada7845888" - }, - "pb-IF4VUGEOPQ==": { - "display_string": [ - "\ue063Realiza260" - ], - "profiles": [], - "name": "\ue063Realiza260", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-18 05:49:52", - "registerOn": 1685756469.293031, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685756469.2930317, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685756469.2930388, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685758578.4363427, - "lastIP": "f~vb{m~~oaaib", - "deviceUUID": "1766ca73bab688b3546acebd9cbb73fb31057596", - "cMsgCount": 0, - "lastMsgTime": 1685758694.8271017, - "lastMsg": "hah", - "cSameMsg": 0 - }, - "pb-IF4PU2Y6VQ==": { - "display_string": [ - "\ue063BurlyBron2" - ], - "profiles": [], - "name": "\ue063BurlyBron2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-19 23:29:52", - "registerOn": 1685757357.1884499, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685757357.1884506, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686125735.265817, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686127495.4723828, - "lastIP": "a~h~}jfaih|vc", - "deviceUUID": "4eb8860c217488d77476288d99816fa776d12c0c", - "cMsgCount": 0, - "lastMsgTime": 1685885675.762257, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4uU28fVQ==": { - "display_string": [ - "\ue063Voraciou15" - ], - "profiles": [], - "name": "\ue063Voraciou15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-26 11:26:46", - "registerOn": 1685757410.4069986, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685757410.406999, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685986273.3197107, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685986273.319731, - "lastIP": "a\u007fk~~leaiiaid|", - "deviceUUID": "b4f2ce2e42c35bd790f4e81b2d365537d939c62a" - }, - "pb-IF5cUxIdPw==": { - "display_string": [ - "\ue063fredrickpl" - ], - "profiles": [], - "name": "\ue063fredrickpl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-28 11:01:38", - "registerOn": 1685758467.3431602, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685758467.3431606, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685758467.3431659, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685758467.3431668, - "lastIP": "dzva~o~}lgajd|", - "deviceUUID": "3fa28b37461bb3803f7d46a5870819cc40efc717" - }, - "pb-IF5XU0YhKg==": { - "display_string": [ - "\ue063bBoyy1" - ], - "profiles": [], - "name": "\ue063bBoyy1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 22:10:46", - "registerOn": 1685758783.50129, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685758783.5012908, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685758783.501298, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685769971.8702238, - "lastIP": "azo~zh~|`~}m`", - "deviceUUID": "009307dd452aa63a0473545aea930364bd26abb4" - }, - "pb-IF49UnYRLQ==": { - "display_string": [ - "\ue063Abby" - ], - "profiles": [], - "name": "\ue063Abby", - "isBan": true, - "isMuted": false, - "accountAge": "2021-12-30 19:43:31", - "registerOn": 1685761937.8591895, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685761937.8591905, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685761937.8591979, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685761937.8591988, - "lastIP": "dvvcyvb~i~~ha", - "deviceUUID": "690c3f7ca525541fd6d368f95dd77e48836a2345" - }, - "pb-IF4LV20GMw==": { - "display_string": [ - "\ue063sahniharsh" - ], - "profiles": [], - "name": "\ue063sahniharsh", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-24 21:14:08", - "registerOn": 1685762125.2217338, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685762125.2217348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686368049.8231812, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686368049.8231823, - "lastIP": "a\u007fi~\u007fve{vc", - "deviceUUID": "305f2513910ce5427877375161c5ae05dbf130aa" - }, - "pb-IF4OUBAqNQ==": { - "display_string": [ - "\ue063Intracel63" - ], - "profiles": [], - "name": "\ue063Intracel63", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-12 21:18:45", - "registerOn": 1685762247.6755157, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685762247.6755161, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686302590.5668628, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686302590.5668647, - "lastIP": "a\u007fk~{`~ya~~jb", - "deviceUUID": "d80ceba120b2edcef7c1e81823e041b3d12291af", - "cMsgCount": 0, - "lastMsgTime": 1686287223.8927777, - "lastMsg": "tum red me jao", - "cSameMsg": 0 - }, - "pb-IF4zU1EhAQ==": { - "display_string": [ - "\ue030Android64048679" - ], - "profiles": [], - "name": "\ue030Android64048679", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-14 15:38:25", - "registerOn": 1685762266.779462, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685762266.7794628, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685762266.7794712, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685762266.779472, - "lastIP": "bxvc{vayvev", - "deviceUUID": "e2a134ba4dde7046e52503e18cca074ae1bdfa49" - }, - "pb-IF4RV2pfIg==": { - "display_string": [ - "\ue063FancyPa647" - ], - "profiles": [], - "name": "\ue063FancyPa647", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-01 17:46:28", - "registerOn": 1685762295.8526645, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685762295.852665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685762295.8526719, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685762295.8526728, - "lastIP": "azj~z`~yn~~nd", - "deviceUUID": "65f6b8e451c6600b8d8f2de0fe7255792bb2336b" - }, - "pb-IF4wV24HBw==": { - "display_string": [ - "\ue063GiantRobot" - ], - "profiles": [], - "name": "\ue063GiantRobot", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-27 02:36:51", - "registerOn": 1685764529.08724, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685764529.0872407, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686381781.2034876, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686381781.2034888, - "lastIP": "a\u007fn~~acaii~vb\u007fo", - "deviceUUID": "38e44d8557238faa80f05e016a255f906ea1f512", - "cMsgCount": 0, - "lastMsgTime": 1685796463.9672859, - "lastMsg": "kya hua", - "cSameMsg": 0 - }, - "pb-IF4xUnQNVA==": { - "display_string": [ - "\ue063Chiragdhil", - "\ue030Android55309016" - ], - "profiles": [], - "name": "\ue063Chiragdhil", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-21 08:37:21", - "registerOn": 1685764578.9535306, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685764578.953531, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686247482.727529, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686247482.7275302, - "lastIP": "azo~|j~~haai`~", - "deviceUUID": "477a46d48ec2c3a3ed0c4fb1e42c2d889ad8233f" - }, - "pb-IF4uU2hTLQ==": { - "display_string": [ - "\ue063PosteriorU" - ], - "profiles": [], - "name": "\ue063PosteriorU", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-27 09:36:10", - "registerOn": 1685764991.486061, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685764991.4860618, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685764991.4860697, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685764991.4860706, - "lastIP": "azo~{a~~meajd\u007f", - "deviceUUID": "504fe72cb1576399397fe756d681d03b3a4511d1" - }, - "pb-IF4TU0o8Hw==": { - "display_string": [ - "\ue063FinalHair1" - ], - "profiles": [], - "name": "\ue063FinalHair1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 00:20:48", - "registerOn": 1685766087.7056847, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685766087.7056851, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685766087.7056916, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685766087.7056928, - "lastIP": "a\u007fk~~mfajcxva\u007fi", - "deviceUUID": "9c5ba3d0322e0a8621c0e4b2dc3d80b9520d3057" - }, - "pb-IF4gUBNSMg==": { - "display_string": [ - "\ue063Alvis017" - ], - "profiles": [], - "name": "\ue063Alvis017", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-06 13:43:16", - "registerOn": 1685766544.5190728, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685766544.5190732, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685766544.5190804, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685766544.519082, - "lastIP": "azo~{a~}ldai`y", - "deviceUUID": "f56b4563bf9bd73c48b9bf48631b994cffb4be20" - }, - "pb-IF4zUBUlNg==": { - "display_string": [ - "\ue030Android64653674" - ], - "profiles": [], - "name": "\ue030Android64653674", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-17 18:49:09", - "registerOn": 1685766881.7831008, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685766881.7831016, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686402406.4889953, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686402406.4889965, - "lastIP": "a\u007fn~}heaiiyvaym", - "deviceUUID": "859289bf71856de4196a0bbb1beaca24e35cfcb5", - "cMsgCount": 0, - "lastMsgTime": 1686403551.1138012, - "lastMsg": "\ud83d\ude11", - "cSameMsg": 0 - }, - "pb-IF4JUBEGVw==": { - "display_string": [ - "\ue063Matchle158" - ], - "profiles": [], - "name": "\ue063Matchle158", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-24 17:40:08", - "registerOn": 1685767689.0359678, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685767689.0359685, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685767689.035974, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685767689.035975, - "lastIP": "a~o~}ifangajdy", - "deviceUUID": "212d9269cda0f167ca66af20d000a518872a892e", - "cMsgCount": 0, - "lastMsgTime": 1685768880.2023003, - "lastMsg": "I'm sorry for that bombs", - "cSameMsg": 0 - }, - "pb-IF5RUBkiKA==": { - "display_string": [ - "\ue063Accredi385" - ], - "profiles": [], - "name": "\ue063Accredi385", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-25 13:48:10", - "registerOn": 1685767807.150114, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685767807.1501145, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686375297.1725993, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686387444.8214734, - "lastIP": "a\u007fn~~agajdwva\u007fi", - "deviceUUID": "877b93675e76cf2071129b0986e5bf39bbb7d2b0", - "cMsgCount": 0, - "lastMsgTime": 1686333387.4740543, - "lastMsg": "come", - "cSameMsg": 0 - }, - "pb-IF5dU3UiAw==": { - "display_string": [ - "\ue063BOMBSQUA32" - ], - "profiles": [], - "name": "\ue063BOMBSQUA32", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 21:03:46", - "registerOn": 1685768076.2118454, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685768076.2118459, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686400025.7832608, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686400025.7832623, - "lastIP": "a~o~}hdak`ana", - "deviceUUID": "2075f74ce3988b96997b4c4082726cec0bfd3b36", - "cMsgCount": 0, - "lastMsgTime": 1686400207.4892492, - "lastMsg": "ok bye ", - "cSameMsg": 0 - }, - "pb-IF4nUGgyFA==": { - "display_string": [ - "\ue063GoldDwarf7" - ], - "profiles": [], - "name": "\ue063GoldDwarf7", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-26 13:52:40", - "registerOn": 1685768134.4078405, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685768134.4078414, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685768134.4078474, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685768134.4078481, - "lastIP": "azo~|j~~ibai`\u007f", - "deviceUUID": "ee297ff43779f1cf5cba3b2b42714e181babba08" - }, - "pb-IF43UGY9Eg==": { - "display_string": [ - "\ue063RelatedCr3" - ], - "profiles": [], - "name": "\ue063RelatedCr3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-16 16:20:28", - "registerOn": 1685768212.7083004, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685768212.708301, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685768212.7083087, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685768212.7083101, - "lastIP": "a\u007fn~~agalba`i", - "deviceUUID": "01f56812426d458c1f684d751136943f07585aa4" - }, - "pb-IF4XU0gNJg==": { - "display_string": [ - "\ue063NoName14481" - ], - "profiles": [], - "name": "\ue063NoName14481", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 18:43:55", - "registerOn": 1685768338.1153538, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685768338.1153545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686201098.5208168, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686201194.8677526, - "lastIP": "a}j~~naalia`c", - "deviceUUID": "6f3d0491d6910430abbc41303840d02f678632d3", - "cMsgCount": 1, - "lastMsgTime": 1686201177.4074352, - "lastMsg": "sudrega nhi", - "cSameMsg": 0 - }, - "pb-IF4MUBVeMQ==": { - "display_string": [ - "\ue063avigupta34" - ], - "profiles": [], - "name": "\ue063avigupta34", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-17 12:39:33", - "registerOn": 1685768367.195631, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685768367.1956315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685768367.1956377, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685768431.1407201, - "lastIP": "a\u007fn~~adajdaiew", - "deviceUUID": "bd8158b473696d433dc1f27858a22b099d6cebc1" - }, - "pb-IF4MU085LA==": { - "display_string": [ - "\ue063Invisible6" - ], - "profiles": [], - "name": "\ue063Invisible6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 21:51:17", - "registerOn": 1685768430.4676096, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685768430.4676104, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685878357.6018364, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685878357.6018379, - "lastIP": "b}k~~oha`caig\u007f", - "deviceUUID": "fc09720498a246ca809ec2149e0e97ed763a2cc2" - }, - "pb-IF4AUBgdFg==": { - "display_string": [ - "\ue063ManifestPe" - ], - "profiles": [], - "name": "\ue063ManifestPe", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-06 14:42:44", - "registerOn": 1685768563.5448375, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685768563.5448377, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685768563.5448434, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685768563.5448446, - "lastIP": "a\u007fn~~adaie~vb{i", - "deviceUUID": "dfc352aa824c5b3f1bd0559831904c10ad5d1447" - }, - "pb-IF5TVEsdEA==": { - "display_string": [ - "\ue063Sistakala" - ], - "profiles": [], - "name": "\ue063Sistakala", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-21 20:37:45", - "registerOn": 1685769506.4876075, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685769506.4876084, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685769506.4876158, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685769506.4876165, - "lastIP": "b}k~}kgaofa`", - "deviceUUID": "b0f2cdf17af1b86954269f7d21f5703d931c6b81", - "cMsgCount": 0, - "lastMsgTime": 1685770300.6682649, - "lastMsg": "ok", - "cSameMsg": 0 - }, - "pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA": { - "display_string": [ - "\ue063tooworst", - "\ue030Android3334459" - ], - "profiles": [], - "name": "\ue063tooworst", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-22 17:44:50", - "registerOn": 1685769656.969174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685769656.9691746, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685967503.1601374, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685967503.1601386, - "lastIP": "a\u007fn~~afajhajc}", - "deviceUUID": "936c205c0c65262d62300105d4329a28095c9790", - "cMsgCount": 0, - "lastMsgTime": 1685968021.4073806, - "lastMsg": "sry", - "cSameMsg": 0 - }, - "pb-IF4qUGcgVA==": { - "display_string": [ - "\ue063PROGAM1NGL" - ], - "profiles": [], - "name": "\ue063PROGAM1NGL", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-21 12:03:49", - "registerOn": 1685769726.2536175, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685769726.2536182, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685769726.2536247, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685769726.2536254, - "lastIP": "dvvd}vczva\u007fh", - "deviceUUID": "8e15b72bce41376e864526b0b2219c7097510e54", - "cMsgCount": 0, - "lastMsgTime": 1685770132.5449078, - "lastMsg": "/sm", - "cSameMsg": 0 - }, - "pb-IF4lUBEuJg==": { - "display_string": [ - "\ue063JasminePro" - ], - "profiles": [], - "name": "\ue063JasminePro", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-19 20:12:20", - "registerOn": 1685769930.0098422, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685769930.0098426, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1685770012.87825, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685769930.009852, - "lastIP": "a~m~~keajhaiaz", - "deviceUUID": "620c52393bc846015da4f116ca02207c98263d1f", - "cMsgCount": 0, - "lastMsgTime": 1685770103.7087097, - "lastMsg": "hurry type 1 ij chat now", - "cSameMsg": 0 - }, - "pb-IF4HU0VcCA==": { - "display_string": [ - "\ue030PC605822" - ], - "profiles": [], - "name": "\ue030PC605822", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 18:43:13", - "registerOn": 1685770281.3011982, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685770281.301199, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686237217.2647736, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686237217.2647748, - "lastIP": "azl~}kiajavvcz", - "deviceUUID": "0048b280144da2caaeb58a3dd845b91cdf4d29b8", - "cMsgCount": 2, - "lastMsgTime": 1685770697.501155, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4HU2pTMQ==": { - "display_string": [ - "\ue063IcyCodger9" - ], - "profiles": [], - "name": "\ue063IcyCodger9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-03 10:22:58", - "registerOn": 1685770318.7225614, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685770318.7225616, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1685770691.993718, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685770318.7225683, - "lastIP": "axi~yi~{m~}id", - "deviceUUID": "868b9648585b7a3d368b58b60409f524fa43e28f", - "cMsgCount": 0, - "lastMsgTime": 1685770691.9934802, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF41U0YxAw==": { - "display_string": [ - "\ue063SkullmasTe", - "\ue030Android61073999" - ], - "profiles": [], - "name": "\ue063SkullmasTe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-11 13:14:49", - "registerOn": 1685770326.589534, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685770326.5895345, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686387358.512367, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686387358.5123682, - "lastIP": "azo~{l~~mgaob", - "deviceUUID": "77f59489dc04b88bc5a3b44acb659fb7f222308b", - "cMsgCount": 0, - "lastMsgTime": 1686042050.8400886, - "lastMsg": "tera bap", - "cSameMsg": 0 - }, - "pb-IF4IUGQRHw==": { - "display_string": [ - "\ue063Unworth119" - ], - "profiles": [], - "name": "\ue063Unworth119", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-09 18:58:35", - "registerOn": 1685770387.7944057, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685770387.7944062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686300293.8183951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686300293.8183963, - "lastIP": "azo~{n~~mcaj`y", - "deviceUUID": "75b42d0e6532c03c0a60bb7c5238043a93288156" - }, - "pb-IF4OU1IZVg==": { - "display_string": [ - "\ue063Bachi" - ], - "profiles": [], - "name": "\ue063Bachi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-24 20:02:07", - "registerOn": 1685770559.3659873, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685770559.3659878, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685971126.9978132, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685971126.997814, - "lastIP": "a|o~vo~wl~}kc", - "deviceUUID": "541973653043d7f242ff3b1078194e8678f82921" - }, - "pb-IF4VU3laVA==": { - "display_string": [ - "\ue030Android63074779" - ], - "profiles": [], - "name": "\ue030Android63074779", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-02 11:57:20", - "registerOn": 1685770595.821258, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685770595.821259, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686401436.2806838, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686401738.0722935, - "lastIP": "a\u007fk~~naaid{vb~", - "deviceUUID": "96e150468c1fe469b1343b5ac745beb26a8fdf2f", - "cMsgCount": 0, - "lastMsgTime": 1686402839.3218086, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4JUBICXA==": { - "display_string": [ - "\ue063StealthyH9" - ], - "profiles": [], - "name": "\ue063StealthyH9", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-02 11:31:40", - "registerOn": 1685770733.0147333, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685770733.014734, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685893953.8746586, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685893953.8746598, - "lastIP": "a|o~vo~wa~x", - "deviceUUID": "afbcc2be54038c709746560f3d68fccd8aca53c4" - }, - "pb-IF4AUGhaVQ==": { - "display_string": [ - "\ue030Android65128653" - ], - "profiles": [], - "name": "\ue030Android65128653", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-25 10:35:32", - "registerOn": 1685770877.8323083, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685770877.8323092, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685770877.8323169, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685770877.832318, - "lastIP": "dzva}i~vi~}j`", - "deviceUUID": "cab173d12dc4cfbd276f6a55ec4941596dce3c6f" - }, - "pb-IF4jV1U5Aw==": { - "display_string": [ - "\ue063pujan12346" - ], - "profiles": [], - "name": "\ue063pujan12346", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-11 13:31:55", - "registerOn": 1685770970.869423, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685770970.8694234, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685770970.869431, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685774393.1365538, - "lastIP": "aakhaacaihx", - "deviceUUID": "6d31f2e6c59ae1fabf27f3f452c224afed63e2b4" - }, - "pb-IF4cVXlaDQ==": { - "display_string": [ - "\ue063RiddenVill" - ], - "profiles": [], - "name": "\ue063RiddenVill", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-27 18:34:48", - "registerOn": 1685771200.6663513, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685771200.6663518, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686040752.5012906, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686040752.5012918, - "lastIP": "a\u007fk~~j`aif{vf{", - "deviceUUID": "ce5e2f736e4e516430adfe856033f9b818cd17d6" - }, - "pb-IF4JVFA6LQ==": { - "display_string": [ - "\ue063HELL502LOR" - ], - "profiles": [], - "name": "\ue063HELL502LOR", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-21 17:30:16", - "registerOn": 1685771521.8565776, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685771521.856578, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686140382.6407263, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686140628.4662557, - "lastIP": "azj~z`~~a~ym", - "deviceUUID": "f2739f56e5aff6d13c471c7e9c30137e9b789e2d" - }, - "pb-IF4-UxNTNA==": { - "display_string": [ - "\ue063BuffBeef14", - "\ue030Android55576586" - ], - "profiles": [], - "name": "\ue063BuffBeef14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-06 10:39:43", - "registerOn": 1685771523.865161, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685771523.8651614, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686216150.3757746, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686216150.375776, - "lastIP": "b\u007fk~~abajcvvew", - "deviceUUID": "43dd6ff7f240bb395ffa964f474087f11fd0115a" - }, - "pb-IF5TUlZaUw==": { - "display_string": [ - "\ue063ShakyMagic", - "\ue030Android55764376" - ], - "profiles": [], - "name": "\ue063ShakyMagic", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-30 20:45:12", - "registerOn": 1685771592.0994558, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685771592.0994563, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686381910.6788845, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686381910.6788857, - "lastIP": "azo~{o~~ihaie|", - "deviceUUID": "d637556c5e73b7945ab6162c495638d7ec9c7bf2" - }, - "pb-IF4jUlUhMQ==": { - "display_string": [ - "\ue063HornedMast" - ], - "profiles": [], - "name": "\ue063HornedMast", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-02 17:16:06", - "registerOn": 1685771656.682025, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685771656.6820257, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685771656.682033, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685771656.682034, - "lastIP": "azj~zo~}m~zn", - "deviceUUID": "bcdc88c3811bcd2453c01a373cb7cc6b8ce4a04b" - }, - "pb-IF43UkRZVQ==": { - "display_string": [ - "\ue063ProCaprico" - ], - "profiles": [], - "name": "\ue063ProCaprico", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-27 18:33:46", - "registerOn": 1685771709.8485324, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685771709.8485332, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685771709.8485386, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685773028.069132, - "lastIP": "b\u007fm~}mcakdamf", - "deviceUUID": "4d1e8a08dd1406c2a9ecbb390a6c033dc7c7bdf3", - "cMsgCount": 0, - "lastMsgTime": 1685774000.890072, - "lastMsg": "mutthal sala nalla hai kya", - "cSameMsg": 0 - }, - "pb-IF4yU0QRUg==": { - "display_string": [ - "\ue063TejasPati3", - "\ue030Android64335518" - ], - "profiles": [], - "name": "\ue063TejasPati3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 13:07:13", - "registerOn": 1685772129.2804163, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685772129.280417, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685772129.280422, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685772129.2804227, - "lastIP": "a\u007fn~}ibaieyva{j", - "deviceUUID": "d8031d480d0de8d34bda20b2b4ab8fcc5c73f592", - "cMsgCount": 0, - "lastMsgTime": 1685773207.3139207, - "lastMsg": "f", - "cSameMsg": 0 - }, - "pb-IF4JUBkxKw==": { - "display_string": [ - "\ue063SharpKnowI" - ], - "profiles": [], - "name": "\ue063SharpKnowI", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-10 21:00:44", - "registerOn": 1685772167.5780838, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685772167.5780845, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686337361.2434042, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686337361.2434049, - "lastIP": "dvvd|vb~`~}hi", - "deviceUUID": "744537108d53e730f1a041711ca9db3a11e5eb1a", - "cMsgCount": 0, - "lastMsgTime": 1686203997.889697, - "lastMsg": "yayayyaY", - "cSameMsg": 0 - }, - "pb-IF4TV2w6Bw==": { - "display_string": [ - "\ue063Balajiblaz" - ], - "profiles": [], - "name": "\ue063Balajiblaz", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-17 11:20:14", - "registerOn": 1685772257.604219, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685772257.6042192, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685862440.3889997, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685862976.282413, - "lastIP": "azo~zi~yvaxn", - "deviceUUID": "80a287f0d604941252beec3259f6ad0d60cccd4d" - }, - "pb-IF4nUGgiMg==": { - "display_string": [ - "\ue063ReddishDer" - ], - "profiles": [], - "name": "\ue063ReddishDer", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-25 06:11:09", - "registerOn": 1685773036.7590237, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685773036.7590241, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685773036.759031, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685773036.7590318, - "lastIP": "b}k~}kiai`zvf|", - "deviceUUID": "9c80fd00a0721393bbbd095368fc2ee255ac1fd0" - }, - "pb-IF5RUGYFPA==": { - "display_string": [ - "\ue063Danvendra2" - ], - "profiles": [], - "name": "\ue063Danvendra2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-02 10:11:35", - "registerOn": 1685773171.9249315, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685773171.9249318, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685890947.842924, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685890947.8429253, - "lastIP": "azo~|l~{m~vl", - "deviceUUID": "a6f8b8f546b075c2b5b996c172e832133a7e79cb", - "cMsgCount": 0, - "lastMsgTime": 1685774040.5150645, - "lastMsg": "not danvendran it's danvendra", - "cSameMsg": 0 - }, - "pb-IF4IUGVTMQ==": { - "display_string": [ - "\ue063niloferkha", - "\ue030Android48668741" - ], - "profiles": [], - "name": "\ue063niloferkha", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-10 18:25:09", - "registerOn": 1685773585.4748263, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685773585.4748268, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686333982.352782, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686333982.3527832, - "lastIP": "a\u007fn~~adaje\u007fvbw", - "deviceUUID": "c122767b74fe0c99f1c70247ae0b7d6375493e1d", - "cMsgCount": 0, - "lastMsgTime": 1686166113.5521305, - "lastMsg": "haha", - "cSameMsg": 0 - }, - "pb-IF4BUGYpXQ==": { - "display_string": [ - "\ue063Veterin296" - ], - "profiles": [], - "name": "\ue063Veterin296", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-18 12:44:45", - "registerOn": 1685773587.7920325, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685773587.7920332, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685781167.7725518, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685781167.7725527, - "lastIP": "a\u007fk~vo~vn~~ih", - "deviceUUID": "bee529e5919516d06661ac599784f60a04e85ce5" - }, - "pb-IF48UGY4Bw==": { - "display_string": [ - "\ue063ksproducti" - ], - "profiles": [], - "name": "\ue063ksproducti", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-13 23:27:31", - "registerOn": 1685773896.0777645, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685773896.0777652, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685773896.0777714, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685773896.0777726, - "lastIP": "a\u007fk~}l`ajcyva\u007fh", - "deviceUUID": "73f08758e941b7d7486a8fbda46c528543f89e36" - }, - "pb-IF4qU0cFIw==": { - "display_string": [ - "\ue063SensoryRe9" - ], - "profiles": [], - "name": "\ue063SensoryRe9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 15:35:07", - "registerOn": 1685774105.3908634, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685774105.3908641, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685774105.390872, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685774105.3908732, - "lastIP": "bxvevvb}o~~le", - "deviceUUID": "e70a49bb59c9e154a17f74bf09adcbefac59ca89" - }, - "pb-IF4QUxEhPw==": { - "display_string": [ - "\ue030Android60128258", - "\ue030Android65061767", - "\ue030Android65040981", - "\ue030Android65061826", - "\ue030Android65061792" - ], - "profiles": [], - "name": "\ue030Android60128258", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-30 22:20:31", - "registerOn": 1685774115.4329717, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685774115.4329722, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685774115.4329798, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685774115.4329808, - "lastIP": "a\u007fk~~hgaibxvfw", - "deviceUUID": "906954b16eb23117f1ad0c9aa42dfafdf50e3642" - }, - "pb-IF4PV24yPA==": { - "display_string": [ - "\ue063Agzx2244", - "\ue030Android48295628", - "\ue030Android50558008", - "\ue030PC351631", - "\ue030Android50407500" - ], - "profiles": [], - "name": "\ue063Agzx2244", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-27 10:21:40", - "registerOn": 1685774210.1137135, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685774210.113714, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686395525.0957105, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686395525.0957115, - "lastIP": "a~h~}jgameaibw", - "deviceUUID": "5bd1087e38783d3d08f01cfce5d36dfbf8440740" - }, - "pb-IF4BU0EsIg==": { - "display_string": [ - "\ue030Android63294581" - ], - "profiles": [], - "name": "\ue030Android63294581", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 16:51:32", - "registerOn": 1685774325.201672, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685774325.201673, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686324070.5445824, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686324070.5445838, - "lastIP": "azj~z`~}h`amc", - "deviceUUID": "c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc" - }, - "pb-IF4jUGk-Mg==": { - "display_string": [ - "\ue063Sporadi142" - ], - "profiles": [], - "name": "\ue063Sporadi142", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-30 11:59:39", - "registerOn": 1685774935.5784843, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685774935.5784848, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685774935.5784907, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685776405.601807, - "lastIP": "azo~|k~vk~~`b", - "deviceUUID": "0a02ab90b7ed8849a5d9749cb4c0463c406c3c70" - }, - "pb-IF4QUk1SUg==": { - "display_string": [ - "\ue063cskdhonifa", - "\ue030Android55923630" - ], - "profiles": [], - "name": "\ue063cskdhonifa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-05 13:31:18", - "registerOn": 1685775028.2633421, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685775028.2633426, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685775028.2633488, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685775028.2633498, - "lastIP": "azo~{a~}ieaod", - "deviceUUID": "75f7533c2aa50119ad2d3621695a32113ef3bd55" - }, - "pb-IF4uU3VdIg==": { - "display_string": [ - "\ue063Kaejo575" - ], - "profiles": [], - "name": "\ue063Kaejo575", - "isBan": true, - "isMuted": false, - "accountAge": "2022-08-16 16:44:29", - "registerOn": 1685775362.4217894, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685775362.4217896, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685775362.4217951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685775362.421796, - "lastIP": "", - "deviceUUID": "" - }, - "pb-JiNJARFdXUBIW1tHEEJVXFJEEUFdQlVE": { - "display_string": [ - "\ue063Akshatshah", - "\ue030Android52451220", - "\ue030Android52460434" - ], - "profiles": [], - "name": "\ue063Akshatshah", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-15 16:47:34", - "registerOn": 1685775407.2763205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685775407.276321, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685775407.2763274, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685775407.2763286, - "lastIP": "azo~|j~}hbaig|", - "deviceUUID": "f058e6eeb1a54f58ef7bfe92ded2dcb07e64ae5a" - }, - "pb-IF4hU1c7BA==": { - "display_string": [ - "\ue063Rewardi117" - ], - "profiles": [], - "name": "\ue063Rewardi117", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-28 15:32:25", - "registerOn": 1685775422.3892155, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685775422.3892162, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685817654.7798097, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685817654.7798111, - "lastIP": "a\u007fn~}ifaje}vavn", - "deviceUUID": "e63c1bcfdee1e40becd4d02f7fac17809bf5d6c1" - }, - "pb-IF4rUGcENA==": { - "display_string": [ - "\ue063rodanrjn" - ], - "profiles": [], - "name": "\ue063rodanrjn", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-22 16:22:09", - "registerOn": 1685775499.7081525, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685775499.7081532, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685775499.7081604, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685775499.7081614, - "lastIP": "a\u007fk~~h~}`~~lb", - "deviceUUID": "0bbe1d38805bcecb3eaacda7c16d63d5ac17ebe5" - }, - "pb-IF4PUxM7Mg==": { - "display_string": [ - "\ue063EastVentil" - ], - "profiles": [], - "name": "\ue063EastVentil", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-07 09:26:27", - "registerOn": 1685775598.9498293, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685775598.94983, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685775598.9498382, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685775598.949839, - "lastIP": "a|o~vo~va~yj", - "deviceUUID": "2005d3932c1dcb0f796e811b13b5e3ce8549c984" - }, - "pb-IF5dUGYuHw==": { - "display_string": [ - "\ue063itzADARSH0" - ], - "profiles": [], - "name": "\ue063itzADARSH0", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-05 07:11:47", - "registerOn": 1685775693.5483837, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685775693.5483842, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686140006.1896858, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686140006.1896868, - "lastIP": "azj~z`~~`iaid\u007f", - "deviceUUID": "874c403714e6060dbe7235bb3f44c8974130f59b" - }, - "pb-IF4DUBlZUg==": { - "display_string": [ - "\ue063HIMANSHUS9" - ], - "profiles": [], - "name": "\ue063HIMANSHUS9", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-06 17:21:42", - "registerOn": 1685775731.463903, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685775731.4639034, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686202624.9699426, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686202624.9699435, - "lastIP": "dvvc{va|`~~l", - "deviceUUID": "40ef570a51f0e5048e15170252cef791bd02461a" - }, - "pb-IF5dUGglAw==": { - "display_string": [ - "\ue063Goldest" - ], - "profiles": [], - "name": "\ue063Goldest", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-18 13:46:53", - "registerOn": 1685775846.907607, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685775846.9076078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686304069.63486, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686304069.634861, - "lastIP": "azo~|m~zvazh", - "deviceUUID": "064c60d9855d30b53be59aeb5dc7fdb93aa962b3" - }, - "pb-IF49VFdbEQ==": { - "display_string": [ - "\ue063iamtex0002", - "\ue063iamtex0001", - "\ue030Android62546100", - "\ue030Android44592291", - "\ue030Android45787994" - ], - "profiles": [], - "name": "\ue063iamtex0001", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-03 16:14:01", - "registerOn": 1685776198.1163392, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685776198.11634, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686272774.187769, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686272774.18777, - "lastIP": "b}k~}jhaje{va\u007fh", - "deviceUUID": "fd892340b3c80c5d33d18531428ab2dbcc8aa598", - "cMsgCount": 0, - "lastMsgTime": 1685973180.7282634, - "lastMsg": "bye", - "cSameMsg": 0 - }, - "pb-IF40UncaLg==": { - "display_string": [ - "\ue063TiredShift" - ], - "profiles": [], - "name": "\ue063TiredShift", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-03 12:48:25", - "registerOn": 1685777635.7373383, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685777635.7373388, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686059483.2548354, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686059483.2548373, - "lastIP": "a\u007fk~~`aaa~}`", - "deviceUUID": "0845551c633f214c29c0814079b0e6f6f04dc907", - "cMsgCount": 0, - "lastMsgTime": 1686059637.9172485, - "lastMsg": "/me", - "cSameMsg": 0 - }, - "pb-IF4XVFkNDg==": { - "display_string": [ - "\ue063SocialRanc" - ], - "profiles": [], - "name": "\ue063SocialRanc", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-20 20:44:28", - "registerOn": 1685777801.3884408, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685777801.3884413, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685777801.388447, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685777801.388448, - "lastIP": "azo~{n~~`faih{", - "deviceUUID": "c97701571b1446c415bb6ab8af4cc6d3d850cc92" - }, - "pb-IF49UxEpJg==": { - "display_string": [ - "\ue063ExcitedPar" - ], - "profiles": [], - "name": "\ue063ExcitedPar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-29 15:52:19", - "registerOn": 1685778030.266908, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685778030.2669084, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685778030.2669156, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685778030.2669168, - "lastIP": "aakhanhai`w", - "deviceUUID": "d124995d1bfbddcb75f13f5355f9a4f278c6a3eb" - }, - "pb-IF4DUGkyHA==": { - "display_string": [ - "\ue063ARYANN" - ], - "profiles": [], - "name": "\ue063ARYANN", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-01 18:34:59", - "registerOn": 1685778281.5227895, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685778281.52279, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685778281.5227957, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685778281.5227969, - "lastIP": "a~o~va~~k~ym", - "deviceUUID": "d12a34e4aca26d63be2813750ad9d81a1f804ef8" - }, - "pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL": { - "display_string": [ - "\ue063ImKala", - "\ue030Android14720987", - "\ue030Android14605457" - ], - "profiles": [], - "name": "\ue063ImKala", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-21 13:47:25", - "registerOn": 1685779066.3662853, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685779066.366286, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686236260.300471, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686243978.009308, - "lastIP": "dvvcyvh\u007fva{h", - "deviceUUID": "00620ec832d1781422f6039b958608ec3246b269" - }, - "pb-IF4DVVcZMg==": { - "display_string": [ - "\ue063Avengersg2" - ], - "profiles": [], - "name": "\ue063Avengersg2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-17 23:26:58", - "registerOn": 1685779284.206222, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685779284.206223, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685779284.2062523, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685779284.2062533, - "lastIP": "a\u007fk~~miaie|vb~j", - "deviceUUID": "6d636d44545cb617a9981c43d7d4d7e66cf0db40" - }, - "pb-IF4NUGgJMw==": { - "display_string": [ - "\ue063DarkAppren" - ], - "profiles": [], - "name": "\ue063DarkAppren", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-02 09:10:10", - "registerOn": 1685779624.710211, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685779624.7102115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685779624.7102165, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685779624.7102175, - "lastIP": "a\u007fk~~aiajbzvb~n", - "deviceUUID": "0703fad6a1d8290cdab397f3f2510f5549dd7f04" - }, - "pb-IF4OPhMg": { - "display_string": [ - "\ue063Nakumrahul" - ], - "profiles": [], - "name": "\ue063Nakumrahul", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-13 14:32:46", - "registerOn": 1685779825.426816, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685779825.4268167, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686377533.9035134, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686377533.9035144, - "lastIP": "a\u007fn~}jbaodaid}", - "deviceUUID": "1f959b8fe7791a2bac9762db2666f280a19946b6", - "cMsgCount": 0, - "lastMsgTime": 1686287253.2781687, - "lastMsg": "muje red me nai khelna aata", - "cSameMsg": 0 - }, - "pb-IF4AUxYpIw==": { - "display_string": [ - "\ue063Mirzaclegs" - ], - "profiles": [], - "name": "\ue063Mirzaclegs", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-17 14:10:40", - "registerOn": 1685780412.6345918, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685780412.6345923, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685780412.6346002, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685780412.634601, - "lastIP": "azo~{n~~heai`z", - "deviceUUID": "7ea05ccb4bce7444af2bf6f94b21f050f5d448a9" - }, - "pb-IF4RUGkZVw==": { - "display_string": [ - "\ue063Ballist375" - ], - "profiles": [], - "name": "\ue063Ballist375", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-02 15:37:05", - "registerOn": 1685780897.817382, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685780897.8173826, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685780897.8174567, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685780897.817514, - "lastIP": "bxvf\u007fvczvb~`", - "deviceUUID": "cb58bf7ebd9e054efb78580d3d13ede3f3519610" - }, - "pb-IF43U0o7Aw==": { - "display_string": [ - "\ue030Android63464104" - ], - "profiles": [], - "name": "\ue030Android63464104", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-14 23:00:13", - "registerOn": 1685781060.1428366, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685781060.142837, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685862116.0913754, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685862116.0913765, - "lastIP": "a\u007fn~}hgandaoi", - "deviceUUID": "a09d01e25240174cea2612707e52e93b11f5da7e" - }, - "pb-IF4HUGUDPw==": { - "display_string": [ - "\ue063Thirtee357" - ], - "profiles": [], - "name": "\ue063Thirtee357", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-10 19:10:02", - "registerOn": 1685782630.9658296, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685782630.96583, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685782630.9658487, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685782630.9658496, - "lastIP": "azo~zi~~aba``", - "deviceUUID": "52f722e2868a7a223fab2340f60103321ec30543" - }, - "pb-IF48Xmgz": { - "display_string": [ - "\ue063FlyingGuac", - "\ue030Android41040817" - ], - "profiles": [], - "name": "\ue063FlyingGuac", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-18 13:56:37", - "registerOn": 1685782758.2123492, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685782758.21235, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685782758.2123585, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685782758.2123594, - "lastIP": "azj~z`~|l~~nf", - "deviceUUID": "392af6ab26625d491b89764dd284820caf2b470a" - }, - "pb-IF4xVVcoUw==": { - "display_string": [ - "\ue063Persiste29", - "\ue030Android51951090" - ], - "profiles": [], - "name": "\ue063Persiste29", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-15 23:50:16", - "registerOn": 1685783026.2688599, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685783026.2688606, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685783026.2688663, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685783026.2688673, - "lastIP": "a}j~~ocaniaib\u007f", - "deviceUUID": "db2aec0e1c84a8a33de2c91978e0ecadda908b6c" - }, - "pb-IF4eU1MHNQ==": { - "display_string": [ - "\ue030Android64140305" - ], - "profiles": [], - "name": "\ue030Android64140305", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-28 16:03:19", - "registerOn": 1685783563.4036477, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685783563.4036486, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685783563.4036562, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685783570.05603, - "lastIP": "a\u007fn~}j`ajd\u007fvb}a", - "deviceUUID": "53e48929c811c3d3cf24b2d0e334806042a7ca33" - }, - "pb-IF4lU3cFFw==": { - "display_string": [ - "\ue063OFFENSIVE1" - ], - "profiles": [], - "name": "\ue063OFFENSIVE1", - "isBan": true, - "isMuted": false, - "accountAge": "2022-08-26 18:20:28", - "registerOn": 1685785164.4324253, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685785164.4324257, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685785164.4324331, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685785164.4324343, - "lastIP": "d|vb{i~~leaad", - "deviceUUID": "0235ea0c1dde4d192be104a208f316cb22bc09dc" - }, - "pb-IF4WUGQyPA==": { - "display_string": [ - "\ue063GenuineI13" - ], - "profiles": [], - "name": "\ue063GenuineI13", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-02 22:56:36", - "registerOn": 1685785484.6642225, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685785484.664223, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685870105.81901, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685870105.8190112, - "lastIP": "a\u007fk~~oeaicyva\u007fo", - "deviceUUID": "065cb87de02fe47b0ba32c0622eaefd3d8090768", - "cMsgCount": 0, - "lastMsgTime": 1685809725.9142144, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4iVUUMPQ==": { - "display_string": [ - "\ue063NoNameA3760866", - "\ue030Android65151386" - ], - "profiles": [], - "name": "\ue063NoNameA3760866", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-17 11:20:39", - "registerOn": 1685785557.2500095, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685785557.2500103, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685785557.2500181, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685785597.7538886, - "lastIP": "a\u007fn~~agaj`}vfw", - "deviceUUID": "d0b911a95620a1b04eb43f31ffa9a81bbf85a04e" - }, - "pb-IF4nVW0_LQ==": { - "display_string": [ - "\ue063THEDARKPOL" - ], - "profiles": [], - "name": "\ue063THEDARKPOL", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-06 18:34:59", - "registerOn": 1685785590.0443535, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685785590.044354, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685785590.0443614, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685785596.7497785, - "lastIP": "b}k~}kaaihyvdy", - "deviceUUID": "806b0c23668487da48d132da3807efb358a96935" - }, - "pb-IF41UBQPXA==": { - "display_string": [ - "\ue063TinyProfit" - ], - "profiles": [], - "name": "\ue063TinyProfit", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-15 09:45:30", - "registerOn": 1685785603.0704446, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685785603.070445, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686300476.4611015, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686300476.461103, - "lastIP": "a}l~~hfaid|vf", - "deviceUUID": "4053d4ecb6d73d755ad3c574aa4bd40384b30b43", - "cMsgCount": 0, - "lastMsgTime": 1686196557.864371, - "lastMsg": "go here ok see you later friend", - "cSameMsg": 0 - }, - "pb-IF4BVWIzDg==": { - "display_string": [ - "\ue063CoastalToa" - ], - "profiles": [], - "name": "\ue063CoastalToa", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-18 11:09:57", - "registerOn": 1685785704.4983792, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685785704.4983797, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685785704.4983869, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685785704.4983883, - "lastIP": "b\u007fn~wl~}kbalg", - "deviceUUID": "76ef5644c91435fc0b8aee8c33eaba88af9d6968" - }, - "pb-IF4WUGczMQ==": { - "display_string": [ - "\ue063StockyFram" - ], - "profiles": [], - "name": "\ue063StockyFram", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-21 12:19:35", - "registerOn": 1685785839.9809852, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685785839.9809859, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686025652.6898198, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686025652.6898212, - "lastIP": "a\u007fk~~aeaj`}vayl", - "deviceUUID": "220753c5a30bbc77c9dcec749d67d633217addb4", - "cMsgCount": 1, - "lastMsgTime": 1685885020.6559098, - "lastMsg": "bhakkk", - "cSameMsg": 0 - }, - "pb-IF4cUktZNg==": { - "display_string": [ - "\ue063Ainesh0001" - ], - "profiles": [], - "name": "\ue063Ainesh0001", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-24 13:00:03", - "registerOn": 1685785974.488089, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1685786930.780448, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686115443.3917696, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686115443.3917708, - "lastIP": "azj~z`~~mbaki", - "deviceUUID": "9b723cfe17a46c050affce23d9fadbc9106309da", - "cMsgCount": 0, - "lastMsgTime": 1685989191.393175, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4MUGRfDQ==": { - "display_string": [ - "\ue063FoundingTi" - ], - "profiles": [], - "name": "\ue063FoundingTi", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-02 19:03:24", - "registerOn": 1685786187.6084404, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685786187.6084409, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685971558.6649215, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685974089.9469101, - "lastIP": "azj~zo~}kbaje{", - "deviceUUID": "a154e84b754eff2dfa4f2ce30a3e74d840549d7d" - }, - "pb-IF40VXMlBA==": { - "display_string": [ - "\ue063FIGHTERMAN", - "\ue030Android62097492" - ], - "profiles": [], - "name": "\ue063FIGHTERMAN", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-18 00:09:01", - "registerOn": 1685786692.145756, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685786692.1457565, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686060258.1308355, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686060258.1308365, - "lastIP": "a\u007fn~~acaihvvazn", - "deviceUUID": "2567dc394522ed525d920d39eecafdfd32621b4d" - }, - "pb-IF4TU0UlXQ==": { - "display_string": [ - "\ue063NoNameD3604049" - ], - "profiles": [], - "name": "\ue063NoNameD3604049", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-03 11:15:31", - "registerOn": 1685787081.4904385, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685787081.490439, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685787081.4904435, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685787081.4904451, - "lastIP": "dxva~vb}o~vh", - "deviceUUID": "d0704ed196dfd0f2442b074a6b33f6d372927181" - }, - "pb-IF5XVXddBw==": { - "display_string": [ - "\ue030Android49832847" - ], - "profiles": [], - "name": "\ue030Android49832847", - "isBan": true, - "isMuted": false, - "accountAge": "2021-01-26 16:48:40", - "registerOn": 1685787546.6001277, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685787546.6001282, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685787546.6001353, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685787546.6001365, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF4qUBkYDg==": { - "display_string": [ - "\ue030Android64840495" - ], - "profiles": [], - "name": "\ue030Android64840495", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-11 10:20:06", - "registerOn": 1685787841.3934624, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685787841.3934634, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686040698.326222, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686040893.0254114, - "lastIP": "awj~xh~~ngaiiy", - "deviceUUID": "0566b8693fb2033765aa5987fdb4ddb6e70de446" - }, - "pb-IF4IU1c6Ug==": { - "display_string": [ - "\ue063Non6772u" - ], - "profiles": [], - "name": "\ue063Non6772u", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-23 21:29:14", - "registerOn": 1685788028.1026237, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685788028.1026242, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685788028.1026304, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685788028.1026316, - "lastIP": "dvvb\u007fn~|k~w", - "deviceUUID": "02d987a30ac1edb0630413af9dae845a32cbd676" - }, - "pb-IF49U0MCCA==": { - "display_string": [ - "\ue063LevelAccep" - ], - "profiles": [], - "name": "\ue063LevelAccep", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 17:54:58", - "registerOn": 1685788120.3819072, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685788120.381908, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686212468.2566385, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686214365.6253889, - "lastIP": "a\u007fk~}n~{a~~a`", - "deviceUUID": "9ea383f7480b8975143ccc19f4013e3081d1b7d7" - }, - "pb-IF49UBEhJA==": { - "display_string": [ - "\ue063PortableT8" - ], - "profiles": [], - "name": "\ue063PortableT8", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-21 21:41:30", - "registerOn": 1685788364.3285995, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685788364.3286006, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686232538.102828, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686233110.3950605, - "lastIP": "azo~|j~|m~~hd", - "deviceUUID": "a73760d72bdae57a9fa3725e8a485af6f4e5b7a4" - }, - "pb-IF42UGgDCw==": { - "display_string": [ - "\ue063Princel134" - ], - "profiles": [], - "name": "\ue063Princel134", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-29 21:16:43", - "registerOn": 1685788779.808304, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685788779.8083048, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685887477.7706087, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685887477.7706099, - "lastIP": "a\u007fk~~lgaj`vva{j", - "deviceUUID": "30120c4e06b22abd1dc138739178c3004ed4b37a" - }, - "pb-IF5SUBQcKw==": { - "display_string": [ - "\ue063xynn" - ], - "profiles": [], - "name": "\ue063xynn", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-03 19:24:45", - "registerOn": 1685789560.7849762, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685789560.784977, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685789560.784984, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685789560.7849858, - "lastIP": "dvvd}vh\u007fva|`", - "deviceUUID": "c6e9eaee8561dbd73a500a67ce2d4f21f4c1b07c" - }, - "pb-IF4jU00KPw==": { - "display_string": [ - "\ue063Explicab96", - "\ue030Android38294535" - ], - "profiles": [], - "name": "\ue063Explicab96", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 16:16:37", - "registerOn": 1685790159.0221987, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685790159.0221994, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685790159.022206, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685790159.0222068, - "lastIP": "dvvc{vbzi~{m", - "deviceUUID": "48b46017802267036e00f2a56da4a37ef4b35a19" - }, - "pb-IF4dUGU4KQ==": { - "display_string": [ - "\ue063Tattya" - ], - "profiles": [], - "name": "\ue063Tattya", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-12 21:37:33", - "registerOn": 1685790400.9516304, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685790400.951631, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685790400.9516385, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685790400.95164, - "lastIP": "azj~z`~~n~wa", - "deviceUUID": "7c09de64f0d8046fa981b15dbce724d4a41fb5d9" - }, - "pb-IF4WU0ItKg==": { - "display_string": [ - "\ue063AbundantBi" - ], - "profiles": [], - "name": "\ue063AbundantBi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-16 11:26:03", - "registerOn": 1685792365.5871093, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685792365.58711, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686202064.0303857, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686202064.0303872, - "lastIP": "b\u007fj~zi~xn~}h`", - "deviceUUID": "2eb1ab3363dce7fff90bdf144e5fe8f6906e35e1" - }, - "pb-IF4QU2ZeAw==": { - "display_string": [ - "\ue030Android61349985" - ], - "profiles": [], - "name": "\ue030Android61349985", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-19 16:15:50", - "registerOn": 1685792395.6988997, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685792395.6989002, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685792395.69891, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685792395.6989112, - "lastIP": "azo~|j~~hgaje\u007f", - "deviceUUID": "601ed813ddf54bb1f87aa8acb8bf392b406861ac" - }, - "pb-IF4rLkwp": { - "display_string": [ - "\ue063MPF", - "\ue030Android40308191", - "\ue030Android39582261", - "\ue030PC232491", - "\ue030Android38640036" - ], - "profiles": [], - "name": "\ue063MPF", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-07 02:20:26", - "registerOn": 1685792425.8388631, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685792425.838864, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686360935.3424814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686361019.6201708, - "lastIP": "a~j~~kdaj`vvawm", - "deviceUUID": "df02d23ec2516218c1d7a1fe312ef348dafd8124", - "cMsgCount": 0, - "lastMsgTime": 1685973046.0132053, - "lastMsg": "gg wp cya", - "cSameMsg": 0 - }, - "pb-IF4pU1NSUg==": { - "display_string": [ - "\ue063InsaneAgen" - ], - "profiles": [], - "name": "\ue063InsaneAgen", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-24 12:53:31", - "registerOn": 1685793088.3363104, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685793088.336311, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685793088.3363178, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685793088.3363187, - "lastIP": "azo~|`~|n~~mf", - "deviceUUID": "c62aca74740bc089144637726c69b251009a8931" - }, - "pb-IF4tNxUh": { - "display_string": [ - "\ue063prencadant", - "\ue063Gosportdel" - ], - "profiles": [], - "name": "\ue063Gosportdel", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-14 21:43:20", - "registerOn": 1685794063.1443121, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685794063.1443129, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686297408.1708965, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686297408.170898, - "lastIP": "axn~~jhaih\u007fvbv", - "deviceUUID": "60e4ad03622d0144201fd4c0feee6aa2b1f1aa6d" - }, - "pb-IF40U1dYUg==": { - "display_string": [ - "\ue063VirajBoY31" - ], - "profiles": [], - "name": "\ue063VirajBoY31", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-20 21:09:11", - "registerOn": 1685794305.0755782, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685794305.075579, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685794305.0755863, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685794305.0755875, - "lastIP": "a}h~w`~~ohajh", - "deviceUUID": "bca171beb7a1680384ccb8e99e02410f17027f01" - }, - "pb-IF5RVVMMIw==": { - "display_string": [ - "\ue030Android52676999" - ], - "profiles": [], - "name": "\ue030Android52676999", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-15 21:19:28", - "registerOn": 1685794775.780947, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685794775.7809477, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685794775.780983, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685794775.7809842, - "lastIP": "b\u007fj~~lbaia{vgx", - "deviceUUID": "2f813377170f808596cad6fba67ecc73ae310b13" - }, - "pb-IF4uUBVTEA==": { - "display_string": [ - "\ue063Irreduc159" - ], - "profiles": [], - "name": "\ue063Irreduc159", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-19 04:06:18", - "registerOn": 1685795294.9067497, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685795294.9067504, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685795294.906759, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685795294.9067602, - "lastIP": "awvayn~~kcajb~", - "deviceUUID": "effb71ee03f6808fb989135183fb6b09449c850c" - }, - "pb-IF48UGIvXQ==": { - "display_string": [ - "\ue030Android64884598" - ], - "profiles": [], - "name": "\ue030Android64884598", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-17 12:20:44", - "registerOn": 1685795359.5319571, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685795359.5319583, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685795359.531965, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685795359.5319662, - "lastIP": "azo~|j~vm~wk", - "deviceUUID": "33e4884313f4cb96b056cf1454394cacd6e367e1" - }, - "pb-IF4VVUk-CA==": { - "display_string": [ - "\ue030Android51952192" - ], - "profiles": [], - "name": "\ue030Android51952192", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-11 13:19:34", - "registerOn": 1685795679.6935115, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685795679.6935122, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685795679.6935189, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685795921.1277468, - "lastIP": "b}k~~`aajdyvaxh", - "deviceUUID": "f5ada0ef13c9058742417d2cbd7305a2a8416d28" - }, - "pb-IF5QUGtfEg==": { - "display_string": [ - "\ue063ItsDNA003" - ], - "profiles": [], - "name": "\ue063ItsDNA003", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-27 19:15:00", - "registerOn": 1685795876.2258017, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685795876.2258024, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685795876.2258103, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685795876.2258112, - "lastIP": "azo~{a~~odajby", - "deviceUUID": "d9eafa638dee4a9bb2e36b80a121a68b448a0547" - }, - "pb-JiNJARFdXUdGW1pEE0JZV1JCEUVdQVdA": { - "display_string": [ - "\ue063Thakkudus" - ], - "profiles": [], - "name": "\ue063Thakkudus", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-04 16:58:47", - "registerOn": 1685796215.7008972, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685796215.700898, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686364477.8820229, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686371309.7028344, - "lastIP": "a\u007fk~~o~~i`ao`", - "deviceUUID": "d3c1b69f4abe0a30b187a9f76dd0bf2ec4316172" - }, - "pb-IF4NUxFfEg==": { - "display_string": [ - "\ue063ClearCusto" - ], - "profiles": [], - "name": "\ue063ClearCusto", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-01 19:19:12", - "registerOn": 1685796448.6279469, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685796448.6279473, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686383128.2443612, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686383128.2443624, - "lastIP": "bxvf}vb{h~}o", - "deviceUUID": "3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a", - "cMsgCount": 0, - "lastMsgTime": 1685865547.6788206, - "lastMsg": "pata nhi", - "cSameMsg": 0 - }, - "pb-IF4KUmoYFw==": { - "display_string": [ - "\ue063deiisyyyy" - ], - "profiles": [], - "name": "\ue063deiisyyyy", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-03 19:21:03", - "registerOn": 1685796844.461005, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685796844.4610052, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685796844.461013, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685796844.461014, - "lastIP": "a{va|a~~agaii", - "deviceUUID": "79df48f5f0fc4610c51c4a1f6a000a20df395db8" - }, - "pb-IF4sAGcj": { - "display_string": [ - "\ue030Android60514277", - "\ue030PC450192", - "\ue063Warrior27" - ], - "profiles": [], - "name": "\ue063Warrior27", - "isBan": true, - "isMuted": false, - "accountAge": "2018-03-22 19:18:26", - "registerOn": 1685797471.7737083, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685797471.7737088, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685797471.773717, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685797471.7737188, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF4TUGEIDQ==": { - "display_string": [ - "\ue063fazalVenge" - ], - "profiles": [], - "name": "\ue063fazalVenge", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-16 22:01:52", - "registerOn": 1685797510.5995476, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685797510.599548, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686029056.2262022, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686029670.4848347, - "lastIP": "bxvf}vb{h~~hi", - "deviceUUID": "91e3ce447ee5451b00782def7f8823118f64bd4b", - "cMsgCount": 0, - "lastMsgTime": 1686030022.4683537, - "lastMsg": "well played ", - "cSameMsg": 0 - }, - "pb-IF5WU0gIUQ==": { - "display_string": [ - "\ue063LegendaryD", - "\ue030Android54488917" - ], - "profiles": [], - "name": "\ue063LegendaryD", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 21:20:32", - "registerOn": 1685798651.777055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685798651.7770555, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686302122.8533058, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686302347.6540897, - "lastIP": "azj~z`~}icai", - "deviceUUID": "7596ac03e3d2f58656b37560f47b1f7c5651c240", - "cMsgCount": 1, - "lastMsgTime": 1686302332.7108061, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4BVVU_BA==": { - "display_string": [ - "\ue030Android53159530" - ], - "profiles": [], - "name": "\ue030Android53159530", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-07 21:42:19", - "registerOn": 1685799583.3496504, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685799583.3496509, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686232557.1984563, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686232557.1984572, - "lastIP": "bxva{o~~n`ai`|", - "deviceUUID": "05e455762d1075e521e842a06f572d2a230ef49d" - }, - "pb-IF4tUGMBCg==": { - "display_string": [ - "\ue063Znab" - ], - "profiles": [], - "name": "\ue063Znab", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-27 11:51:44", - "registerOn": 1685799846.3812344, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685799846.3812351, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686224055.2321832, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686224076.2823741, - "lastIP": "b}k~~ohaiewvcw", - "deviceUUID": "677677fac4cdd18de9b2f61d36d5dd3491dbca39", - "cMsgCount": 0, - "lastMsgTime": 1686224275.2287712, - "lastMsg": "bye", - "cSameMsg": 0 - }, - "pb-IF41UGcPNQ==": { - "display_string": [ - "\ue063redmo79" - ], - "profiles": [], - "name": "\ue063redmo79", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-24 21:41:28", - "registerOn": 1685800194.6031623, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685800194.6031628, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686327771.343049, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686327771.3430498, - "lastIP": "i~vayh~zh~|`", - "deviceUUID": "7912aaeb116912fb8216874995084c198f22305d" - }, - "pb-IF4IU28qPA==": { - "display_string": [ - "\ue063gurunaray2" - ], - "profiles": [], - "name": "\ue063gurunaray2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-23 22:17:27", - "registerOn": 1685800210.6528242, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685800210.6528246, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686059721.075658, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686059721.0756593, - "lastIP": "azo~zi~~igajbv", - "deviceUUID": "2b676771bfc1043a69989576d24e1194aec0a626" - }, - "pb-IF4mUGEYKQ==": { - "display_string": [ - "\ue063SalientPu2" - ], - "profiles": [], - "name": "\ue063SalientPu2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-21 11:58:59", - "registerOn": 1685800873.304157, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685800873.3041577, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685800873.3041656, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685800873.3041666, - "lastIP": "a\u007fn~~agam~}if", - "deviceUUID": "1612fe560c7ad9a8bfea923cb047537d9c0dfd54" - }, - "pb-IF4jF1NY": { - "display_string": [ - "\ue063Hoemie" - ], - "profiles": [], - "name": "\ue063Hoemie", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-18 14:54:03", - "registerOn": 1685802853.7386012, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685802853.7386022, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686294512.8587997, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686303726.137223, - "lastIP": "azj~z`~{n~~`h", - "deviceUUID": "3e3f8bc694c422e5c1908bda415c823213210a3a", - "cMsgCount": 0, - "lastMsgTime": 1686300845.1901417, - "lastMsg": "bhai go in blue", - "cSameMsg": 0 - }, - "pb-IF4DU1QhBg==": { - "display_string": [ - "\ue063Digitalsar" - ], - "profiles": [], - "name": "\ue063Digitalsar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-31 19:43:18", - "registerOn": 1685805383.3237336, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685805383.3237338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685805383.3237412, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685805383.3237426, - "lastIP": "azo~|m~{m~~lg", - "deviceUUID": "650286e84f739f98c65de9127b6bc08186d34093" - }, - "pb-IF4hUGgzBw==": { - "display_string": [ - "\ue063Appropr296" - ], - "profiles": [], - "name": "\ue063Appropr296", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-03 15:49:07", - "registerOn": 1685805401.3877826, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685805401.3877835, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685805401.387791, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685805401.3877923, - "lastIP": "azo~{n~~jaaifx", - "deviceUUID": "0b0bf33e4d9cccc25167906150fcc4964b007dc9" - }, - "pb-IF5WU1QJFA==": { - "display_string": [ - "\ue063Unbreaka80" - ], - "profiles": [], - "name": "\ue063Unbreaka80", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-24 17:33:25", - "registerOn": 1685806563.3834827, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685806563.3834832, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685981067.7146885, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685981122.9444013, - "lastIP": "azo~|`~}jiaje", - "deviceUUID": "4a8a384698658621fce88e219c1c5bd3c01f6e7a" - }, - "pb-IF5RJW5d": { - "display_string": [ - "\ue063UniqueBana", - "\ue030Android29969603", - "\ue030Android29688865" - ], - "profiles": [], - "name": "\ue063UniqueBana", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-27 21:21:46", - "registerOn": 1685806862.8975136, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685806862.8975146, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685806862.8975236, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685806862.897525, - "lastIP": "bxvf|vb\u007fa~~mf", - "deviceUUID": "471ff9e4f8d3d84e1801b239887ccc95160e4ee4" - }, - "pb-IF4pU2wEDg==": { - "display_string": [ - "\ue063innocentk6", - "\ue030Android61909215" - ], - "profiles": [], - "name": "\ue063innocentk6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-11 22:24:33", - "registerOn": 1685807213.7458997, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685807213.7459004, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685807213.7459092, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685807213.745911, - "lastIP": "a\u007fk~~jaaigvva|h", - "deviceUUID": "a9c29cccf1c9b7119d85ea5fb9cbf5c314e1b9d6" - }, - "pb-IF4QUhcJVg==": { - "display_string": [ - "\ue063Fourteent7", - "\ue030Android56683623" - ], - "profiles": [], - "name": "\ue063Fourteent7", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-09 14:26:10", - "registerOn": 1685807636.4284205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685807636.428421, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685807636.4284277, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685807636.4284291, - "lastIP": "awk~wk~}khaibv", - "deviceUUID": "0de9b3a4952075cdeda1b5dd6e0d2b1769a18690" - }, - "pb-IF4UUGEkPA==": { - "display_string": [ - "\ue063HydroClose" - ], - "profiles": [], - "name": "\ue063HydroClose", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-12 22:22:31", - "registerOn": 1685807699.685343, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685807699.6853435, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686377895.4090176, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686377895.4090185, - "lastIP": "azo~|`~~kdajcy", - "deviceUUID": "3f42e534a87a7a16023bf65ab2abd1c7d5a1d0d6" - }, - "pb-IF4KUk8MAQ==": { - "display_string": [ - "\ue030Android58901320" - ], - "profiles": [], - "name": "\ue030Android58901320", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-13 18:46:39", - "registerOn": 1685807981.7091863, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685807981.7091868, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685807981.7091937, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685807981.7091947, - "lastIP": "f}va{l~}lhajcw", - "deviceUUID": "0342eb83366f258b8ff4ebea9cf190498f4f1f8d" - }, - "pb-IF4HVVMKEQ==": { - "display_string": [ - "\ue063joythegrea" - ], - "profiles": [], - "name": "\ue063joythegrea", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-27 12:37:43", - "registerOn": 1685808003.7987223, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685808003.7987227, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686314774.8531747, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686316959.1118784, - "lastIP": "a\u007fn~}icaiizvc~", - "deviceUUID": "3520ef70b75247a5bc7019d7245589c821a34168" - }, - "pb-IF4wBUUK": { - "display_string": [ - "\ue063RAEEEEEEEE", - "\ue030Android33511514" - ], - "profiles": [], - "name": "\ue063RAEEEEEEEE", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-09 23:20:43", - "registerOn": 1685808387.2523055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685808387.2523062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685808387.2523146, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685808387.2523158, - "lastIP": "azj~z`~|l~}if", - "deviceUUID": "926098526aa25628ccdb1426d99fc162ae24f8db" - }, - "pb-IF4MU08lCQ==": { - "display_string": [ - "\ue063lodhipro17" - ], - "profiles": [], - "name": "\ue063lodhipro17", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 13:04:15", - "registerOn": 1685808788.884347, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685808788.8843474, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686296782.9319918, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686296782.931993, - "lastIP": "azo~|l~~jaaj`{", - "deviceUUID": "496f898c6f42806db0970bac3faaa29f196c9610", - "cMsgCount": 0, - "lastMsgTime": 1686298160.09193, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF40PkMh": { - "display_string": [ - "\ue063dpvaghasiy" - ], - "profiles": [], - "name": "\ue063dpvaghasiy", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-15 19:47:18", - "registerOn": 1685808980.733831, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685808980.7338314, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685808980.7338402, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685808980.7338412, - "lastIP": "d}va\u007f`~~afaigv", - "deviceUUID": "a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e", - "cMsgCount": 0, - "lastMsgTime": 1685809737.1346183, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF48UmoZBg==": { - "display_string": [ - "\ue063RogueRadia" - ], - "profiles": [], - "name": "\ue063RogueRadia", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-04 11:11:42", - "registerOn": 1685809124.2146394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685809124.21464, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685809124.2146478, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685809124.2146492, - "lastIP": "a~o~}jiaif|vb~a", - "deviceUUID": "617b557d5e0b71538894fd0c90771a48d5eae264" - }, - "pb-IF4KU0YOUw==": { - "display_string": [ - "\ue063Hemdjrimix", - "\ue030Android64586252" - ], - "profiles": [], - "name": "\ue063Hemdjrimix", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 20:39:50", - "registerOn": 1685809268.8240507, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685809268.8240516, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685809268.8240595, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685809450.0794475, - "lastIP": "b\u007fj~~oiaogai`v", - "deviceUUID": "7182b3803fd8f27e19100f098dd813ebd70e2b9f", - "cMsgCount": 0, - "lastMsgTime": 1685809404.4342844, - "lastMsg": "lag", - "cSameMsg": 0 - }, - "pb-IF4qUxBfAw==": { - "display_string": [ - "\ue030Android61525964" - ], - "profiles": [], - "name": "\ue030Android61525964", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-26 18:55:13", - "registerOn": 1685809745.4703777, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685809745.4703784, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686378280.7442532, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686378280.7442544, - "lastIP": "dxviakbajc|", - "deviceUUID": "00a2149d5e7bb409e844da5b609ae87ebaccaffc", - "cMsgCount": 0, - "lastMsgTime": 1686368714.8968365, - "lastMsg": "haha", - "cSameMsg": 0 - }, - "pb-IF4wU1MPEg==": { - "display_string": [ - "\ue030Android64127677" - ], - "profiles": [], - "name": "\ue030Android64127677", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-26 18:55:50", - "registerOn": 1685810676.3353353, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685810676.3353357, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686330947.1887646, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686332290.089663, - "lastIP": "awj~ya~~ofake", - "deviceUUID": "0e4dfaee5e4dd1bc35566ef7de5193e1962ef968", - "cMsgCount": 1, - "lastMsgTime": 1686312177.5635092, - "lastMsg": "nhi to m jau", - "cSameMsg": 0 - }, - "pb-IF4HUGMOLQ==": { - "display_string": [ - "\ue063NoNameC3133807" - ], - "profiles": [], - "name": "\ue063NoNameC3133807", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-27 19:31:48", - "registerOn": 1685811705.7287908, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685811705.7287915, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685811705.728798, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685811705.7287993, - "lastIP": "awj~ya~}lcaj`y", - "deviceUUID": "a0775efa1f0e3fad84e98c543bd1e689099e5204" - }, - "pb-IF4FD1c8": { - "display_string": [ - "\ue063inom1712" - ], - "profiles": [], - "name": "\ue063inom1712", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-08 01:10:57", - "registerOn": 1685811713.7522151, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685811713.7522156, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686330430.3351283, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686330430.335129, - "lastIP": "azo~{n~~i`aif{", - "deviceUUID": "3f163443b545b5ee5c0ed1039bfb94a67b489363" - }, - "pb-IF5SUBcsFQ==": { - "display_string": [ - "\ue030Android64658055" - ], - "profiles": [], - "name": "\ue030Android64658055", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-18 09:37:54", - "registerOn": 1685812108.1830475, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685812108.1830482, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685812108.1830568, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685812289.4814076, - "lastIP": "b}k~~`iakhajc}", - "deviceUUID": "a3edf2d44c1ba4ef9262ee6d9191325fc46b4510" - }, - "pb-IF5dUGojXQ==": { - "display_string": [ - "\ue063javnov123" - ], - "profiles": [], - "name": "\ue063javnov123", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-28 12:47:37", - "registerOn": 1685812362.0730593, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685812362.0730598, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685812362.0730662, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685812744.2573683, - "lastIP": "a\u007fk~{`~ya~~jd", - "deviceUUID": "c8190be63dbdc034980d211da380877b420e652a" - }, - "pb-IF5cUkwjDA==": { - "display_string": [ - "\ue063DragonGhou" - ], - "profiles": [], - "name": "\ue063DragonGhou", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-20 11:15:03", - "registerOn": 1685812847.9331336, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685812847.933134, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685901773.8154244, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685901773.8154256, - "lastIP": "dvvcyvb~j~~ma", - "deviceUUID": "84e8c68a67793414f4f9ba929c4417de1a04f4b0", - "cMsgCount": 0, - "lastMsgTime": 1685902055.513574, - "lastMsg": "Thnks, meri samadhi todne ke liye", - "cSameMsg": 0 - }, - "pb-IF4VVG8gNQ==": { - "display_string": [ - "\ue063IAMTHEDON1" - ], - "profiles": [], - "name": "\ue063IAMTHEDON1", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-14 18:27:02", - "registerOn": 1685813851.2324355, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686382532.1761835, - "totaltimeplayer": 0, - "warnCount": 3, - "lastWarned": 1686382532.1751056, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686388020.4693785, - "lastIP": "azo~zi~~adajez", - "deviceUUID": "a5e3d553f606b7d284e04a9656b30ed571db2ee3", - "cMsgCount": 2, - "lastMsgTime": 1686382532.1754458, - "lastMsg": "fuck", - "cSameMsg": 0 - }, - "pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC": { - "display_string": [ - "\ue063Petrifie71" - ], - "profiles": [], - "name": "\ue063Petrifie71", - "isBan": false, - "isMuted": false, - "accountAge": "2016-06-08 11:59:54", - "registerOn": 1685814009.757301, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685814009.7573018, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686303698.038429, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686303698.0384302, - "lastIP": "aaihxvb~a~{m", - "deviceUUID": "9cda7087369c2e90d666dbb77d68c1d5d344ef7c" - }, - "pb-IF4vU2ISBg==": { - "display_string": [ - "\ue063Nikhil18", - "\ue063Incompe116", - "\ue030Android60304282", - "\ue030PC750627", - "\ue030PC453003" - ], - "profiles": [], - "name": "\ue063Nikhil18", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-08 11:29:20", - "registerOn": 1685814485.343263, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685814485.3432636, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685814485.3432727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685814485.3432736, - "lastIP": "a\u007fk~~mhaidyvb~m", - "deviceUUID": "cf89b6d6f66058d1895448bb09facf659e5d863d" - }, - "pb-IF4uV3omUw==": { - "display_string": [ - "\ue063SquareLor3" - ], - "profiles": [], - "name": "\ue063SquareLor3", - "isBan": false, - "isMuted": false, - "accountAge": "2019-01-24 13:39:08", - "registerOn": 1685814867.6889307, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685814867.6889315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685814867.6889398, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685814867.6889408, - "lastIP": "a\u007fk~w`~wj~}ic", - "deviceUUID": "489a8844e3d73d9056c08b79f499898354385f37" - }, - "pb-IF41VWJcLA==": { - "display_string": [ - "\ue063Harhsalgho" - ], - "profiles": [], - "name": "\ue063Harhsalgho", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-12 22:35:09", - "registerOn": 1685820219.814926, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685820219.8149264, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685820219.814934, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685820219.814935, - "lastIP": "a\u007fn~}ifajd{vf", - "deviceUUID": "622d7c2101c8beb358f52c1255e233b5b54eab40" - }, - "pb-IF4mVFMTHw==": { - "display_string": [ - "\ue063wisnufirst" - ], - "profiles": [], - "name": "\ue063wisnufirst", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-15 15:44:09", - "registerOn": 1685821115.1536496, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685821115.1536498, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685821115.153664, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685821115.153665, - "lastIP": "a~l~~lbaig\u007fvd|", - "deviceUUID": "b2163ea5de005c19f0daedee13621679b6588a4b" - }, - "pb-IF4uU1o-Pw==": { - "display_string": [ - "\ue030Android64424230" - ], - "profiles": [], - "name": "\ue030Android64424230", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-11 14:16:24", - "registerOn": 1685821466.8105226, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685821466.810523, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685821466.8105297, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685821466.8105311, - "lastIP": "cyvbzj~~o`ajb|", - "deviceUUID": "f84e373b90064e97874a3197cfbd00ba09a0966b" - }, - "pb-IF4TD1cf": { - "display_string": [ - "\ue063DevilXGhos" - ], - "profiles": [], - "name": "\ue063DevilXGhos", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-07 17:36:00", - "registerOn": 1685821509.0077775, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685821509.007778, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685821509.007786, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685821509.007787, - "lastIP": "dvvc}vb|a~~jf", - "deviceUUID": "f3af1d941719708fb2d6ed940c33f95bc772f822" - }, - "pb-IF4NVVg4Lw==": { - "display_string": [ - "\ue063ZentoSama", - "\ue063HarsherTr4" - ], - "profiles": [], - "name": "\ue063ZentoSama", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-24 21:43:39", - "registerOn": 1685821641.488523, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685821641.4885235, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685821641.4885323, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685821641.4885335, - "lastIP": "a\u007fn~}iaaaiai`v", - "deviceUUID": "e04457f8d2c649b7b3c72039d222a5214a56db9c" - }, - "pb-IF5QV00KNA==": { - "display_string": [ - "\ue063carloshrdz", - "\ue030Android55224273" - ], - "profiles": [], - "name": "\ue063carloshrdz", - "isBan": false, - "isMuted": false, - "accountAge": "2019-03-17 09:22:44", - "registerOn": 1685843900.0456982, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685843900.0456986, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685843900.0457056, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685843900.0457065, - "lastIP": "axo~}liaif~vaxj", - "deviceUUID": "b4e482faf1ee063a72af70b1cbd92e25e25eb20d" - }, - "pb-IF5UUGslNA==": { - "display_string": [ - "\ue063Spectra217" - ], - "profiles": [], - "name": "\ue063Spectra217", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-02 19:58:28", - "registerOn": 1685845130.478214, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685845130.4782152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685845130.4782226, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685845130.4782684, - "lastIP": "dxvbvvaxj~yo", - "deviceUUID": "2919f2c6cf85db0aebfa9a9860231739f9604a16" - }, - "pb-IF5SUGoTJw==": { - "display_string": [ - "\ue063thewhateth" - ], - "profiles": [], - "name": "\ue063thewhateth", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-30 13:36:54", - "registerOn": 1685847305.281732, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685847305.281733, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685847305.2817411, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685847305.281742, - "lastIP": "a{k~{l~~neaid\u007f", - "deviceUUID": "fdac4597d3684df3cff5878d29d7aaa49cc90566" - }, - "pb-IF4PXkIR": { - "display_string": [ - "\ue063AceBear802" - ], - "profiles": [], - "name": "\ue063AceBear802", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-20 10:55:54", - "registerOn": 1685847436.7438943, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685847436.7438948, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1685848933.1379611, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685848835.514361, - "lastIP": "dvvc{vhxvb{`", - "deviceUUID": "836f4656afbf757258cf8c2ba1cc4de3f434af84", - "cMsgCount": 0, - "lastMsgTime": 1685848933.1378655, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5SUGsDMQ==": { - "display_string": [ - "\ue063SurrealBur" - ], - "profiles": [], - "name": "\ue063SurrealBur", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 07:05:26", - "registerOn": 1685847537.1169739, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685847537.1169744, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685847537.1169813, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685847537.1169825, - "lastIP": "a|o~vo~wi~xn", - "deviceUUID": "7528d54f8064a899fdbbbb7f69ddcae02e8e6f10" - }, - "pb-IF4zAUcy": { - "display_string": [ - "\ue063HonkingAdv" - ], - "profiles": [], - "name": "\ue063HonkingAdv", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-27 20:23:20", - "registerOn": 1685848326.9837286, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685848326.9837294, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685848326.98376, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685848536.438777, - "lastIP": "dvvcxvavj~}la", - "deviceUUID": "6a5ed16692cd7f0d8457a7e18b16f09a5cae5df7" - }, - "pb-IF4TUGJSMg==": { - "display_string": [ - "\ue063CookieNINJ" - ], - "profiles": [], - "name": "\ue063CookieNINJ", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-20 12:27:06", - "registerOn": 1685848525.922023, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685848525.922024, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1685848602.7142148, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685849435.7105484, - "lastIP": "a}j~zh~}hhajf", - "deviceUUID": "5b6366838a6db9145967641211c974ddd2beb449", - "cMsgCount": 0, - "lastMsgTime": 1685848778.2015638, - "lastMsg": "\ud83d\ude02", - "cSameMsg": 0 - }, - "pb-IF4VU2c_Ig==": { - "display_string": [ - "\ue063Pavidude47" - ], - "profiles": [], - "name": "\ue063Pavidude47", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-24 13:54:19", - "registerOn": 1685848618.0232494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685848618.02325, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685848618.0232582, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685848618.0232592, - "lastIP": "azo~{a~}l`aiiv", - "deviceUUID": "6fd203dc40497cf889701d80700abadfdf8c1a5f" - }, - "pb-IF4IV1YBLQ==": { - "display_string": [ - "\ue063Nonsens393", - "\ue030Android35043270" - ], - "profiles": [], - "name": "\ue063Nonsens393", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-19 22:29:17", - "registerOn": 1685849931.1241055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685849931.1241062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685849931.1241164, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685849931.1241171, - "lastIP": "azo~|k~}kdajc}", - "deviceUUID": "6b19c54810e6137de9172ee699e0444d99bf2549" - }, - "pb-IF5UU1cNUA==": { - "display_string": [ - "\ue063naifrigor5" - ], - "profiles": [], - "name": "\ue063naifrigor5", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-11 05:54:28", - "registerOn": 1685849986.0741384, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685849986.0741389, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685849986.0741465, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685849986.0741477, - "lastIP": "axo~}jfaicyvb|n", - "deviceUUID": "7e3ebab3596a585cfcb585a17330226267756a0b" - }, - "pb-IF4QU1IlIA==": { - "display_string": [ - "\ue063Unforgiv64" - ], - "profiles": [], - "name": "\ue063Unforgiv64", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-24 12:07:07", - "registerOn": 1685850190.7975705, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685850190.7975714, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685850190.7975805, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685850190.7975817, - "lastIP": "b}k~}khaibyva}a", - "deviceUUID": "4af81f288a5d423ed5fec33f7c3d77de2d839040" - }, - "pb-IF4qU2JZVA==": { - "display_string": [ - "\ue063JauntyCens" - ], - "profiles": [], - "name": "\ue063JauntyCens", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-04 23:00:18", - "registerOn": 1685850562.1976528, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685850562.1976535, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686334111.8048294, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686336817.0981028, - "lastIP": "aya~~liajbxvaxn", - "deviceUUID": "3a70d7901c513e4594724ed96ee45577f43864e9", - "cMsgCount": 0, - "lastMsgTime": 1686337087.6744096, - "lastMsg": "good night to all my friends ", - "cSameMsg": 0 - }, - "pb-IF4mUGg8Hw==": { - "display_string": [ - "\ue063BoldestLak" - ], - "profiles": [], - "name": "\ue063BoldestLak", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-30 13:17:28", - "registerOn": 1685850654.6507995, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685850654.6508005, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685850654.6508088, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685850654.65081, - "lastIP": "dvvczvayl~}hb", - "deviceUUID": "50f5f95d53cb6f5ae199ee4bb76545e3440e50b2" - }, - "pb-IF4OUBJaPw==": { - "display_string": [ - "\ue063WeirdMonst" - ], - "profiles": [], - "name": "\ue063WeirdMonst", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-24 12:57:14", - "registerOn": 1685850776.304971, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685850776.3049712, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685850776.304978, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685850776.3049786, - "lastIP": "awj~ya~~ogaib|", - "deviceUUID": "1ddce71d518d7624c7be8e13de208fe8f638c7cc" - }, - "pb-IF5QU0waKw==": { - "display_string": [ - "\ue063TerseMuscl" - ], - "profiles": [], - "name": "\ue063TerseMuscl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-30 13:30:06", - "registerOn": 1685851389.2603202, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685851389.2603214, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685851389.2603283, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685851420.0737815, - "lastIP": "a|o~vo~vn~~ab", - "deviceUUID": "5ab6dd3fd4e4e704d2af65ce9aba920c3f597751" - }, - "pb-IF5SUno-Ug==": { - "display_string": [ - "\ue063ihateu234" - ], - "profiles": [], - "name": "\ue063ihateu234", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-05 12:13:24", - "registerOn": 1685851391.298782, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685851391.298783, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686401299.756512, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686401272.337739, - "lastIP": "dxvbvvaxj~~k`", - "deviceUUID": "295db2233cc8d02e28fa0f2cf29ed63651e100d5", - "cMsgCount": 2, - "lastMsgTime": 1686401550.9591944, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4-U2IPEg==": { - "display_string": [ - "\ue063Dominat145" - ], - "profiles": [], - "name": "\ue063Dominat145", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-08 09:41:18", - "registerOn": 1685851594.9813592, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685851594.98136, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685851594.9813678, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685851594.9813688, - "lastIP": "a\u007fn~}hfaj`{vb\u007fm", - "deviceUUID": "ec3ddf2b28b5fb8bf5582780dd4907c96872c568" - }, - "pb-IF4yVXVYIw==": { - "display_string": [ - "\ue063UB4LIFE" - ], - "profiles": [], - "name": "\ue063UB4LIFE", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-30 19:17:31", - "registerOn": 1685851640.6705287, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685851640.6705296, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685851640.6705346, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685851888.8396504, - "lastIP": "bxvc{ve\u007fvawl", - "deviceUUID": "6bd8a5c411a70ba6cacedae88d706bb49c7afe85", - "cMsgCount": 0, - "lastMsgTime": 1685851926.294196, - "lastMsg": "damn its lagging so much here", - "cSameMsg": 0 - }, - "pb-IF4uUBIvFA==": { - "display_string": [ - "\ue063SomberPlun" - ], - "profiles": [], - "name": "\ue063SomberPlun", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-28 14:50:47", - "registerOn": 1685851687.3704455, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685851687.370446, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685954733.8408277, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685954733.8408287, - "lastIP": "dvva{vaym~~``", - "deviceUUID": "a73b6fdd9e054dbc60c1bf0088704392b4897aaa" - }, - "pb-JiNJARFcUUZBWV9DEU5SUlxFFEZbRlNG": { - "display_string": [ - "\ue063zbAju" - ], - "profiles": [], - "name": "\ue063zbAju", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-28 20:43:31", - "registerOn": 1685851840.9999888, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685851840.9999893, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685851840.9999974, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685851840.9999986, - "lastIP": "azo~{m~vh~~ld", - "deviceUUID": "9885fd5b6bde67147b9a5bdc798058d63fa0cc83" - }, - "pb-IF4tU3olKg==": { - "display_string": [ - "\ue063BakedPerso" - ], - "profiles": [], - "name": "\ue063BakedPerso", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-06 12:19:03", - "registerOn": 1685852095.6102087, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685852095.6102095, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685852095.6102371, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685852095.6102383, - "lastIP": "axi~{`~~jeakg", - "deviceUUID": "4a8c3e1f3cc2088225e1b0bfc535ab3d9cd54ce8" - }, - "pb-IF4xUBcPAg==": { - "display_string": [ - "\ue020PulmonaryFate114", - "\ue030Android64391184" - ], - "profiles": [], - "name": "\ue030Android64391184", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-23 19:04:25", - "registerOn": 1685852112.0649712, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685852112.0649717, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685852112.06498, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685852112.064981, - "lastIP": "a~j~}h`aig{vb}k", - "deviceUUID": "13e9c32088d6d7508a973b70d9a880575bb7a1e8", - "cMsgCount": 0, - "lastMsgTime": 1685852117.3413408, - "lastMsg": "no", - "cSameMsg": 0 - }, - "pb-IF4XUGcKJA==": { - "display_string": [ - "\ue030Android65100259" - ], - "profiles": [], - "name": "\ue030Android65100259", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-20 17:19:52", - "registerOn": 1685852242.7690473, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685852242.7690477, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685852242.7690558, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685852242.7690566, - "lastIP": "a~o~}i`aigxvc|", - "deviceUUID": "5b4d4e527df9a20e65f6e91d48bb138c61374003" - }, - "pb-IF4UUxASAg==": { - "display_string": [ - "\ue063Transce200" - ], - "profiles": [], - "name": "\ue063Transce200", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-25 20:03:42", - "registerOn": 1685852473.3085506, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685852473.308551, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685852473.3085587, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685852473.3085597, - "lastIP": "aakhai`xvawj", - "deviceUUID": "15a78479cda4f12a7a0df5cabca9662117bce06c" - }, - "pb-IF4MUBMHKA==": { - "display_string": [ - "\ue063VividMysti" - ], - "profiles": [], - "name": "\ue063VividMysti", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-08 19:14:42", - "registerOn": 1685853082.7431686, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685853082.7431695, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686378355.127122, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686378355.1271229, - "lastIP": "azj~z`~~a~{i", - "deviceUUID": "4f63c21eaecd994d958646328f5b18004feeb901" - }, - "pb-IF4iUBElEA==": { - "display_string": [ - "\ue063SingingFa6" - ], - "profiles": [], - "name": "\ue063SingingFa6", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-24 10:06:23", - "registerOn": 1685853115.9777994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685853115.9778001, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686142523.9469304, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686142523.9469314, - "lastIP": "a~o~v`~~hdam`", - "deviceUUID": "e83f4298b0048cf959e8f1fe232b15af554f1270" - }, - "pb-IF5VUGsSUg==": { - "display_string": [ - "\ue063Babytani" - ], - "profiles": [], - "name": "\ue063Babytani", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 10:01:13", - "registerOn": 1685853455.8512602, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685853455.8512607, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685939535.186653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685939535.1866536, - "lastIP": "b}k~}khaiczvb~k", - "deviceUUID": "859289bf71856de4196a0bbb1beaca24e35cfcb5" - }, - "pb-IF4mUGY5Cg==": { - "display_string": [ - "\ue063ARYAN7777" - ], - "profiles": [], - "name": "\ue063ARYAN7777", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-19 13:33:24", - "registerOn": 1685853595.3807135, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685853595.3807142, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685853595.3807232, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685853595.3807242, - "lastIP": "dvvc{va|l~}lh", - "deviceUUID": "bc1249b82defec40c4920f2f126ec66b1bdc6bc7" - }, - "pb-IF4SVVEgJw==": { - "display_string": [ - "\ue063DK63963773" - ], - "profiles": [], - "name": "\ue063DK63963773", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-16 23:47:25", - "registerOn": 1685855246.6552246, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685855246.6552253, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685855246.6552327, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685855246.6552339, - "lastIP": "azo~|`~~kiaigx", - "deviceUUID": "c1b6fc6d998d060dfd11dd62a78ca6f7421d6f2d" - }, - "pb-IF43A0ZS": { - "display_string": [ - "\ue063N0Mercy4Y0", - "\ue030Android46924792", - "\ue030Android22593380", - "\ue030PC278594" - ], - "profiles": [], - "name": "\ue063N0Mercy4Y0", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-19 12:10:16", - "registerOn": 1685855765.8061996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685855765.8062, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1685892062.1406417, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685892210.4696474, - "lastIP": "dxvia`aaih{", - "deviceUUID": "d6082df172fcd00168fd24bcd92a7d488b5e02d4", - "cMsgCount": 0, - "lastMsgTime": 1685892127.8257627, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4lUxMSHw==": { - "display_string": [ - "\ue063eatEm" - ], - "profiles": [], - "name": "\ue063TopL", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-08 13:15:28", - "registerOn": 1685855821.320641, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685855821.3206418, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686381525.213978, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686389796.318727, - "lastIP": "a\u007fk~~`ca`balb", - "deviceUUID": "9697e7eb450fece0abe0f3d8adce316e47d4153b", - "cMsgCount": 0, - "lastMsgTime": 1685986225.8853414, - "lastMsg": "ill back", - "cSameMsg": 0 - }, - "pb-IF4XVHBdIQ==": { - "display_string": [ - "\ue063Pulove" - ], - "profiles": [], - "name": "\ue063Pulove", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-16 12:57:06", - "registerOn": 1685855907.277287, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685855907.2772875, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686225858.7485301, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686226195.0836396, - "lastIP": "azj~z`~}jeaie~", - "deviceUUID": "bb4a1622c7601f1a78263c6066c8e905a694ffb2" - }, - "pb-IF4FUGUcVQ==": { - "display_string": [ - "\ue063RAMYAQUEEN" - ], - "profiles": [], - "name": "\ue063RAMYAQUEEN", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-15 16:17:10", - "registerOn": 1685856628.010807, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685856628.010808, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685856628.0108147, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685856628.0108159, - "lastIP": "a\u007fn~~ahai`\u007fva|k", - "deviceUUID": "b7ca871bbc261c3008e337f215d3548e1636efcc" - }, - "pb-IF48UGcGLQ==": { - "display_string": [ - "\ue030Android65108497" - ], - "profiles": [], - "name": "\ue030Android65108497", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-21 20:32:26", - "registerOn": 1685856678.1154497, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685856678.1154501, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685856678.1154573, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685856678.1154583, - "lastIP": "a\u007fk~~oea`iaiix", - "deviceUUID": "54b1c296877827b58089ec5a4fab627556466737" - }, - "pb-IF40Um4tUw==": { - "display_string": [ - "\ue063Metabol369" - ], - "profiles": [], - "name": "\ue063Metabol369", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-20 15:00:25", - "registerOn": 1685856904.1218007, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685856904.121802, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685856904.1218114, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685856904.1218126, - "lastIP": "b\u007fj~~ocaibzvgv", - "deviceUUID": "45cac6fe6fa1ed79aeadf103e7cde2da59c902f7" - }, - "pb-IF4OU2QjMQ==": { - "display_string": [ - "\ue063Thorfinn0" - ], - "profiles": [], - "name": "\ue063Thorfinn0", - "isBan": true, - "isMuted": false, - "accountAge": "2022-06-12 18:34:35", - "registerOn": 1685857182.3704362, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685857182.3704371, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685857182.3704443, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685857182.3704455, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF4JU24bFQ==": { - "display_string": [ - "\ue063SucculentK" - ], - "profiles": [], - "name": "\ue063SucculentK", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-21 13:03:50", - "registerOn": 1685857457.0475905, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685857457.047591, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685857457.0475976, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685857457.0475986, - "lastIP": "azo~{n~wn~vk", - "deviceUUID": "a595dc8e6dbbf91400812ee3e51629ff7fa06e00" - }, - "pb-IF48UhEiEg==": { - "display_string": [ - "\ue030Android53825487" - ], - "profiles": [], - "name": "\ue030Android53825487", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-08 10:48:46", - "registerOn": 1685857603.5856926, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685857603.5856934, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686296132.5869553, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686300164.202519, - "lastIP": "a~m~v`~zn~}ic", - "deviceUUID": "33a8969f89cf728e65a2f6ff383ac3a2e126c4e2" - }, - "pb-IF4NUmY5Nw==": { - "display_string": [ - "\ue063Stochasti4", - "\ue030Android55430726" - ], - "profiles": [], - "name": "\ue063Stochasti4", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-18 20:43:37", - "registerOn": 1685857682.8400066, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685857682.840007, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685967097.3390565, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685967097.3390574, - "lastIP": "a\u007fk~~maaihvvawm", - "deviceUUID": "14f6c1a8e2da0f162e2f842c4655a9e8e8f3c3e9" - }, - "pb-IF4sUGMeVA==": { - "display_string": [ - "\ue063SSundee" - ], - "profiles": [], - "name": "\ue063SSundee", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-06 13:58:05", - "registerOn": 1685857861.4702811, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685857861.4702814, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686308825.5729797, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686308915.0309932, - "lastIP": "dvvcyvixva|`", - "deviceUUID": "ca54c08d6fc6365097bdf173ddbe14038cd3ce57", - "cMsgCount": 0, - "lastMsgTime": 1685876482.7042632, - "lastMsg": "uhh sir bcs can you join please", - "cSameMsg": 0 - }, - "pb-IF4nU3E-Jw==": { - "display_string": [ - "\ue030Android62335425" - ], - "profiles": [], - "name": "\ue030Android62335425", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-30 07:20:33", - "registerOn": 1685858309.258041, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685858309.2580419, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685858309.2580483, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685858309.2580495, - "lastIP": "awj~zl~~liaja}", - "deviceUUID": "2b92f8a7bd798cdb965e18bf87c871b47169e714", - "cMsgCount": 0, - "lastMsgTime": 1685858462.60966, - "lastMsg": "im not a good playet", - "cSameMsg": 0 - }, - "pb-IF40UBISLQ==": { - "display_string": [ - "\ue063GoodlySavi" - ], - "profiles": [], - "name": "\ue063GoodlySavi", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-04 11:19:35", - "registerOn": 1685858370.3460252, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685858370.3460257, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686395942.178356, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686395942.1783574, - "lastIP": "bxvf}vay`~~kc", - "deviceUUID": "431ed78324897abf61fdf94bab7bf96939fc1e64", - "cMsgCount": 0, - "lastMsgTime": 1685859423.2634423, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4WUBJcVQ==": { - "display_string": [ - "\ue063WHITEARMY1" - ], - "profiles": [], - "name": "\ue063WHITEARMY1", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-23 21:03:00", - "registerOn": 1685858465.7767878, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685858465.7767882, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686311556.6356304, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686314899.2901258, - "lastIP": "azh~~hgajd~vfv", - "deviceUUID": "c5359ea2230c101f3418aa0395a4ca7b53975d67", - "cMsgCount": 0, - "lastMsgTime": 1685858508.7071588, - "lastMsg": "hi bro", - "cSameMsg": 0 - }, - "pb-IF5TUxhbCg==": { - "display_string": [ - "\ue063BionicShou", - "\ue030Android62600400" - ], - "profiles": [], - "name": "\ue063BionicShou", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-17 13:40:35", - "registerOn": 1685858588.2063897, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685858588.2063906, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685858588.2063994, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685858588.2064009, - "lastIP": "azo~|k~}keai`{", - "deviceUUID": "e330619c9e5fe2cb25eaeeb935c513959ac5a05f" - }, - "pb-IF5VP0cq": { - "display_string": [ - "\ue063Piitaajii" - ], - "profiles": [], - "name": "\ue063Piitaajii", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-11 11:45:01", - "registerOn": 1685858680.9174051, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685858680.9174058, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685858680.9174132, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685858680.9174142, - "lastIP": "a\u007fn~}heajaxvb\u007fj", - "deviceUUID": "abbddc9d07574781c1bfe23fb21a46712a8d3b19" - }, - "pb-IF4oUxAGPQ==": { - "display_string": [ - "\ue063TejGamerNt" - ], - "profiles": [], - "name": "\ue063TejGamerNt", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-26 11:19:47", - "registerOn": 1685858850.1713293, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685858850.17133, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1685859332.360547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685858850.1713386, - "lastIP": "azj~zo~}jbajc\u007f", - "deviceUUID": "155d0f88da10e514ccb7a19d307599f0ca22129c", - "cMsgCount": 1, - "lastMsgTime": 1685859332.3604908, - "lastMsg": "ook", - "cSameMsg": 0 - }, - "pb-IF4hVVVeHQ==": { - "display_string": [ - "\ue063Abhisake69" - ], - "profiles": [], - "name": "\ue063Abhisake69", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-03 21:25:50", - "registerOn": 1685859086.017201, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685859086.0172017, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685943391.2088606, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685943391.2088616, - "lastIP": "a\u007fk~}ifa``aj`}", - "deviceUUID": "d48264bb111e9406c995bd034461104ca7dd849f", - "cMsgCount": 0, - "lastMsgTime": 1685943943.8391366, - "lastMsg": "me", - "cSameMsg": 0 - }, - "pb-IF4jU2gAEg==": { - "display_string": [ - "\ue063Lucklesspe" - ], - "profiles": [], - "name": "\ue063Lucklesspe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-26 13:10:22", - "registerOn": 1685859279.708426, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685859279.7084262, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686217569.6861112, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686217569.6861122, - "lastIP": "dvvb\u007fm~~hcaihw", - "deviceUUID": "83c458b93ee2737e52f3702e528207927f0fc4fc", - "cMsgCount": 1, - "lastMsgTime": 1685957996.8565269, - "lastMsg": "smash", - "cSameMsg": 0 - }, - "pb-IF5TUGgHHQ==": { - "display_string": [ - "\ue063Explain269" - ], - "profiles": [], - "name": "\ue063Explain269", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-18 15:45:39", - "registerOn": 1685859441.2697113, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685859441.2697122, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685859441.2697191, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685859441.2697198, - "lastIP": "azo~{`~~mfajb~", - "deviceUUID": "f7667f1030d818f57d281f94186675efd8237ae3" - }, - "pb-IF5RU1lfAQ==": { - "display_string": [ - "\ue063Egocent107" - ], - "profiles": [], - "name": "\ue063Egocent107", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-14 13:52:51", - "registerOn": 1685859646.1326742, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685859646.1326752, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686301386.909345, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686301386.9093463, - "lastIP": "a\u007fn~~aeaaaaia", - "deviceUUID": "a6ebbd0c7acb2aec57ffe4b7fec625847473f863" - }, - "pb-IF4hUGYACg==": { - "display_string": [ - "\ue063SweetLaugh" - ], - "profiles": [], - "name": "\ue063SweetLaugh", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-24 12:51:10", - "registerOn": 1685859970.6362486, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685859970.6362495, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685859970.6362584, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685859970.6362593, - "lastIP": "azo~zi~~hgaihz", - "deviceUUID": "42a2a988b40d4bcdda2a67a7f15352bd9fc3e2f6" - }, - "pb-IF4dVUNTFw==": { - "display_string": [ - "\ue063THEDRAGONH", - "\ue030Android50744370" - ], - "profiles": [], - "name": "\ue063THEDRAGONH", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-02 11:31:14", - "registerOn": 1685860674.9846349, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685860674.984636, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685860674.9846437, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685860884.4836116, - "lastIP": "azo~{`~}hcaka", - "deviceUUID": "454388770c402b63737cce2b3a7d99a74b923be7" - }, - "pb-IF4IUhMeFg==": { - "display_string": [ - "\ue063Chargea256", - "\ue030Android51692373" - ], - "profiles": [], - "name": "\ue063Chargea256", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-21 14:32:50", - "registerOn": 1685861070.844791, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685861070.844792, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685861070.8447998, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685861672.3497922, - "lastIP": "azo~{l~~ogaigx", - "deviceUUID": "df4c23617e32ad772632dbb878d1569e0e12d64d" - }, - "pb-IF4QU0gCJg==": { - "display_string": [ - "\ue063MeguminBak" - ], - "profiles": [], - "name": "\ue063MeguminBak", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 13:20:59", - "registerOn": 1685861390.9772966, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685861390.9772973, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685861390.9773045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685861390.977306, - "lastIP": "a\u007fn~~afaneaiez", - "deviceUUID": "aa01e05d05b5143b9de7f54167a1377cb74e48b6" - }, - "pb-IF5VUkQmXA==": { - "display_string": [ - "\ue063Karna" - ], - "profiles": [], - "name": "\ue063Karna", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-19 21:16:58", - "registerOn": 1685861542.1901503, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685861542.1901512, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685861542.1901593, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685861542.1901603, - "lastIP": "a|o~vo~~hhaic|", - "deviceUUID": "c1ee436e58deb4da5327ef2804dd7f1da072a6fe" - }, - "pb-IF4wUBMOVg==": { - "display_string": [ - "\ue063PottedSaga" - ], - "profiles": [], - "name": "\ue063PottedSaga", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-04 13:06:58", - "registerOn": 1685861555.2354019, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685861555.2354026, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685861555.2354097, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685861555.2354105, - "lastIP": "dvvc{va{n~vk", - "deviceUUID": "bad903af141f1a7190ddd2c4278c4475d4b79922" - }, - "pb-IF5WUno7PQ==": { - "display_string": [ - "\ue063Martinluth" - ], - "profiles": [], - "name": "\ue063Martinluth", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-05 11:47:06", - "registerOn": 1685861989.2113924, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685861989.2113934, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685861989.211486, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685861989.2114878, - "lastIP": "azj~zo~}kaakg", - "deviceUUID": "6164a3526ba984be44e85dfeb8283d2a6a9f3534" - }, - "pb-IF4dU1IOKQ==": { - "display_string": [ - "\ue063Hackneye37" - ], - "profiles": [], - "name": "\ue063Hackneye37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-25 18:23:17", - "registerOn": 1685862082.2359984, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685862082.2359989, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686129314.4104323, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686129314.4104335, - "lastIP": "b}k~}kaaif{va|l", - "deviceUUID": "0ea8bbe6ad0e9c005407166ad37923d1f241be41" - }, - "pb-IF4PVVI4Dg==": { - "display_string": [ - "\ue030Android52820777" - ], - "profiles": [], - "name": "\ue030Android52820777", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-22 13:42:00", - "registerOn": 1685862218.9799252, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685862218.979926, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685900335.2601097, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685900335.2601109, - "lastIP": "azo~zi~~mfaja", - "deviceUUID": "6a29727aad63a3fe69895447fa78c9d00140acab" - }, - "pb-IF4tU2wbNg==": { - "display_string": [ - "\ue063PithyAdver" - ], - "profiles": [], - "name": "\ue063PithyAdver", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-12 18:44:38", - "registerOn": 1685862254.015376, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685862254.0153768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685862254.0153854, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685862254.0153863, - "lastIP": "bxvexvb{a~xj", - "deviceUUID": "6de3fd2a1334123f5f15738b56aee50d02de8b0a" - }, - "pb-IF4qUGkgEw==": { - "display_string": [ - "\ue063DecisiveO3" - ], - "profiles": [], - "name": "\ue063DecisiveO3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-01 11:17:35", - "registerOn": 1685862454.7410166, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685862454.741017, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685862454.7410243, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685862454.7410252, - "lastIP": "a\u007fn~}hfajayvfy", - "deviceUUID": "777c893173f88050ba34d107e38902bef36d38cf" - }, - "pb-IF4JCUFS": { - "display_string": [ - "\ue063vickydivab" - ], - "profiles": [], - "name": "\ue063vickydivab", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-06 10:44:58", - "registerOn": 1685862504.2038867, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685862504.203888, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685862504.2038963, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685862504.2038972, - "lastIP": "a\u007fn~}hham`ajd~", - "deviceUUID": "62d46ccc8d7916cdccee598b2771ce8d1c66dba6" - }, - "pb-IF4PIFQ9": { - "display_string": [ - "\ue063mrpainless", - "\ue030Android29214702" - ], - "profiles": [], - "name": "\ue063mrpainless", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-26 17:52:31", - "registerOn": 1685862510.2432337, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685862510.2432346, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685862510.243242, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685862510.243243, - "lastIP": "azj~z`~}idai`{", - "deviceUUID": "593a69858f539a0b1f234b1980113bb4060a87b5" - }, - "pb-IF4IUlkMNg==": { - "display_string": [ - "\ue063Notorio207" - ], - "profiles": [], - "name": "\ue063Notorio207", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-20 14:29:37", - "registerOn": 1685862549.1087089, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685862549.1087098, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685862549.1087186, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685862549.1087196, - "lastIP": "azj~z`~|l~vj", - "deviceUUID": "81ae38faed5396bebddedae181158caecf1e4385" - }, - "pb-IF5VU1JZMw==": { - "display_string": [ - "\ue030Android63983659" - ], - "profiles": [], - "name": "\ue030Android63983659", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:37:20", - "registerOn": 1685862948.782392, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685862948.7823925, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686308752.3166165, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686309908.4561331, - "lastIP": "a\u007fn~}ica`caid~", - "deviceUUID": "fe898eb5191e4d7bc705688432e5bb261f253dad", - "cMsgCount": 1, - "lastMsgTime": 1686310511.998209, - "lastMsg": "bye", - "cSameMsg": 0 - }, - "pb-IF4oUlE_Vg==": { - "display_string": [ - "\ue063FloralPre3", - "\ue030Android55884054" - ], - "profiles": [], - "name": "\ue063FloralPre3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-20 13:01:28", - "registerOn": 1685863004.7138314, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685863004.7138321, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685863004.7138393, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685863004.7138405, - "lastIP": "a\u007fn~}ifajd~vb{", - "deviceUUID": "73923559526b6a85d9ccbd5c34e2684fead98327", - "cMsgCount": 0, - "lastMsgTime": 1685863096.6837397, - "lastMsg": "unfair", - "cSameMsg": 0 - }, - "pb-IF4SUGdYCQ==": { - "display_string": [ - "\ue063Melox" - ], - "profiles": [], - "name": "\ue063Melox", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-19 19:53:52", - "registerOn": 1685863230.6569333, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685863230.6569338, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1685863490.625785, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685863230.656943, - "lastIP": "azh~}lbaj`yvav`", - "deviceUUID": "67a5ea6ada9814508850fa2d1b1ad1b2e59289b7", - "cMsgCount": 2, - "lastMsgTime": 1685863676.1906805, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4yUGYGAw==": { - "display_string": [ - "\ue063jashangodp" - ], - "profiles": [], - "name": "\ue063jashangodp", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-20 12:51:50", - "registerOn": 1685863467.5185218, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685863467.5185223, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685863467.5185285, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685863467.51853, - "lastIP": "a\u007fn~}hfaia{vb\u007fk", - "deviceUUID": "7dc4e200f2f64ef666440b6a7a04ac9a843cd427" - }, - "pb-IF4qUBlTJg==": { - "display_string": [ - "\ue063Discred118" - ], - "profiles": [], - "name": "\ue063Discred118", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-07 16:25:34", - "registerOn": 1685863725.3780186, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685863725.3780193, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685980095.1429238, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685980384.26305, - "lastIP": "azo~|l~~m~}kd", - "deviceUUID": "df39427dfcf8c7bf8557360f56b36f938bd76932" - }, - "pb-IF5TIRVe": { - "display_string": [ - "\ue063RapidMaest" - ], - "profiles": [], - "name": "\ue063RapidMaest", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-15 12:55:29", - "registerOn": 1685864156.3045042, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685864156.3045046, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685864156.3045099, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685864156.3045108, - "lastIP": "a}j~~ndaiaxva}k", - "deviceUUID": "5aa4cd83ae8b991e10587188c6432a2e8c225c92" - }, - "pb-IF4CVWQGKQ==": { - "display_string": [ - "\ue063xTayxENo" - ], - "profiles": [], - "name": "\ue063xTayxENo", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-02 17:11:47", - "registerOn": 1685864410.9315622, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685864410.931563, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685864410.9315696, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685864410.9315705, - "lastIP": "azj~z`~~neajcy", - "deviceUUID": "a84ee0dd0a571a9e396d7504ca4e1870add3e84d" - }, - "pb-IF4gUksyMQ==": { - "display_string": [ - "\ue063subha1290" - ], - "profiles": [], - "name": "\ue063subha1290", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-26 13:23:57", - "registerOn": 1685864550.457292, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685864550.4572926, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686293500.994208, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686293525.0794363, - "lastIP": "b}k~}kialhajdx", - "deviceUUID": "b0ef821c8b60e5fcf4bad99d322e2a9451de48ac" - }, - "pb-IF5QUGsiIw==": { - "display_string": [ - "\ue063OcularFact" - ], - "profiles": [], - "name": "\ue063OcularFact", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-28 13:16:34", - "registerOn": 1685864799.3949893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685864799.3949897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685864799.3950055, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685864799.3950067, - "lastIP": "azj~z`~|l~~ma", - "deviceUUID": "7931894ff99547c74a71c0ea4e29868662b2f3a3" - }, - "pb-IF4eVFRTKQ==": { - "display_string": [ - "\ue063iINTELLIGE" - ], - "profiles": [], - "name": "\ue063iINTELLIGE", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-14 16:57:42", - "registerOn": 1685864858.6703928, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685864858.670394, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685864858.6704018, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685864858.6704028, - "lastIP": "azj~z`~wi~|j", - "deviceUUID": "246c7ce487e2aa23cce5936c46f2d67e2b4edf84" - }, - "pb-IF42VVIgHA==": { - "display_string": [ - "\ue063pubgGAMEIN" - ], - "profiles": [], - "name": "\ue063pubgGAMEIN", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-22 11:56:07", - "registerOn": 1685865113.5653756, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685865113.5653763, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685865113.5653825, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685865113.5653837, - "lastIP": "azo~zi~~idaoe", - "deviceUUID": "0b26401ddb8c65dc445059a04d3f902bddd18ff4" - }, - "pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE": { - "display_string": [ - "\ue063SmoothyBro", - "\ue043Mr.Smoothy" - ], - "profiles": [], - "name": "\ue063SmoothyBro", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-13 17:21:16", - "registerOn": 1685865183.1529565, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685865183.1529572, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686296432.6755242, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686296432.6755257, - "lastIP": "dvvd|vazm~vo", - "deviceUUID": "86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12", - "cMsgCount": 0, - "lastMsgTime": 1686297358.4257221, - "lastMsg": "kick \ue063lodhipro17", - "cSameMsg": 0 - }, - "pb-IF4DU0IEJg==": { - "display_string": [ - "\ue063CR7SIUU" - ], - "profiles": [], - "name": "\ue063CR7SIUU", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-18 08:46:35", - "registerOn": 1685865255.0575619, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685865255.0575626, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685865255.0575702, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685865255.0575714, - "lastIP": "b}k~~ohaja\u007fvew", - "deviceUUID": "7d458447bc3ba85dd196060878d8fccb56d4f62a", - "cMsgCount": 2, - "lastMsgTime": 1685865298.2300692, - "lastMsg": "back here", - "cSameMsg": 0 - }, - "pb-JiNJARBTV0JFXlxFEkRZXFRFEkVZR1RD": { - "display_string": [ - "\ue063JAMESBOND2", - "\ue030Android26482291" - ], - "profiles": [], - "name": "\ue063JAMESBOND2", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-05 19:11:10", - "registerOn": 1685865304.2939997, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685865304.2940004, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685865304.2940083, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685865304.2940094, - "lastIP": "azj~z`~}haaid|", - "deviceUUID": "5ded5c53497b9126cebd3f3e8d646051a0b157da" - }, - "pb-IF4iUGE9UA==": { - "display_string": [ - "\ue063JODLEVELGA" - ], - "profiles": [], - "name": "\ue063JODLEVELGA", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-18 10:54:58", - "registerOn": 1685866392.2554111, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685866392.2554116, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685866392.2554197, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685866392.2554207, - "lastIP": "dxvc~vb}l~~`e", - "deviceUUID": "98b04929d383ccffbcf024b21155e438536d92b4" - }, - "pb-IF4AU0IoCA==": { - "display_string": [ - "\ue063WeakerRes2", - "\ue030Android59086177" - ], - "profiles": [], - "name": "\ue063WeakerRes2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-16 12:05:03", - "registerOn": 1685866556.9061844, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685866556.9061852, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685866556.9061933, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685867229.9056242, - "lastIP": "bxvf}vb}h~xh", - "deviceUUID": "5338c9f7857c9f234f68a894e2a295023d1af3d3" - }, - "pb-IF4FU0UkVw==": { - "display_string": [ - "\ue063Inexcusa31" - ], - "profiles": [], - "name": "\ue063Inexcusa31", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-05 12:47:58", - "registerOn": 1685866752.5142982, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685866752.514299, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685866752.514306, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685869945.2794652, - "lastIP": "dvvb\u007fm~|k~yi", - "deviceUUID": "20dae1bfd78a21a744a1f1c6938db9816f145909" - }, - "pb-IF4OUBY-HA==": { - "display_string": [ - "\ue063UneasyThe2" - ], - "profiles": [], - "name": "\ue063UneasyThe2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-23 23:28:30", - "registerOn": 1685867161.958998, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685867161.9589992, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686156311.145438, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686156311.145439, - "lastIP": "a|j~~mdaa~{o", - "deviceUUID": "920b2722def0be678e51a3265ebda58396b9a250" - }, - "pb-IF4dUBkTLA==": { - "display_string": [ - "\ue063ArilenaThe" - ], - "profiles": [], - "name": "\ue063ArilenaThe", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-14 20:50:12", - "registerOn": 1685867279.5412164, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685867279.541217, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685867279.5412245, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685867279.5412254, - "lastIP": "bxvf}va|l~}`", - "deviceUUID": "32c8f4914a9c9be6a5fce997589f22d4edbfbb69" - }, - "pb-IF4GUBc7AA==": { - "display_string": [ - "\ue063Thousand53" - ], - "profiles": [], - "name": "\ue063Thousand53", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-27 15:12:41", - "registerOn": 1685867803.5394707, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685867803.5394714, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686114104.8026423, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686114104.8026438, - "lastIP": "bxvevva~k~z`", - "deviceUUID": "ef7261e7f53f2fd79626af05029ec7fbcc6a76ac" - }, - "pb-IF4RUGkREQ==": { - "display_string": [ - "\ue063messigame8" - ], - "profiles": [], - "name": "\ue063messigame8", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-03 12:07:14", - "registerOn": 1685867977.077076, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685867977.0770764, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685867977.0770833, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685867977.0770843, - "lastIP": "azo~{l~~nbaia|", - "deviceUUID": "7c783cf31b3c607efcb208032f0b76d1d4e855fd" - }, - "pb-IF4pU0syFw==": { - "display_string": [ - "\ue063THEpacemak" - ], - "profiles": [], - "name": "\ue063THEpacemak", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 20:00:02", - "registerOn": 1685868035.3061347, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685868035.3061357, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685868035.3061433, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685868035.3061442, - "lastIP": "azj~zo~~obajb~", - "deviceUUID": "f8e321c302da8b5dd8c916121ab14be736bc9c1d" - }, - "pb-IF4sU28eAg==": { - "display_string": [ - "\ue063Gamergirl" - ], - "profiles": [], - "name": "\ue063Gamergirl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-28 14:43:47", - "registerOn": 1685868216.8967333, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685868216.8967342, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685868216.896742, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685868216.8967438, - "lastIP": "azj~z`~}hcan`", - "deviceUUID": "8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f" - }, - "pb-IF43UGkpIw==": { - "display_string": [ - "\ue063Gratefu472" - ], - "profiles": [], - "name": "\ue063Gratefu472", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-31 14:18:35", - "registerOn": 1685868474.7809558, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685868474.7809567, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1685868683.1531496, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685868474.780968, - "lastIP": "dvvcxvb{vb\u007fi", - "deviceUUID": "4fe981c9877ca3a08a29156f3ba12c1950d150d7", - "cMsgCount": 0, - "lastMsgTime": 1685868683.1531694, - "lastMsg": "mc", - "cSameMsg": 0 - }, - "pb-IF4HUGkSVw==": { - "display_string": [ - "\ue063CladMarsh4" - ], - "profiles": [], - "name": "\ue063CladMarsh4", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 14:14:52", - "registerOn": 1685868601.1923196, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685868601.1923206, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685868601.192334, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685868601.192335, - "lastIP": "a\u007fk~}kbajc~vhz", - "deviceUUID": "9add7d6bbcb2cb48cb1f29ca9154025d205574e1" - }, - "pb-IF49UBEzDQ==": { - "display_string": [ - "\ue063TDMBOSS" - ], - "profiles": [], - "name": "\ue063TDMBOSS", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-23 15:34:33", - "registerOn": 1685869387.234663, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685869387.2346642, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685869387.2346704, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685869387.2346714, - "lastIP": "azo~{j~yvava", - "deviceUUID": "31e5382c3a74d39a8267c78102c75d9a4452930b" - }, - "pb-IF4CUmEDNQ==": { - "display_string": [ - "\ue063Yuthran30", - "\ue030Android54699299" - ], - "profiles": [], - "name": "\ue063Yuthran30", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-21 13:11:51", - "registerOn": 1685869395.632346, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685869395.6323464, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685869395.6323524, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685869395.6323535, - "lastIP": "dvvcxvb\u007fk~{`", - "deviceUUID": "f22b85900cab0b688490dd0f1d9ff84e06a8a908" - }, - "pb-IF4VUBkoNw==": { - "display_string": [ - "\ue063Allergic70" - ], - "profiles": [], - "name": "\ue063Allergic70", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-09 13:04:17", - "registerOn": 1685869529.8415258, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685869529.841527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685869529.8415356, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685869529.8415368, - "lastIP": "azo~{n~~heaid~", - "deviceUUID": "581bd5949cafd395bbe0f4d45ac03cfec5c18772" - }, - "pb-IF49UGI9Dg==": { - "display_string": [ - "\ue063Unselfi274" - ], - "profiles": [], - "name": "\ue063Unselfi274", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-23 15:39:52", - "registerOn": 1685869871.6367414, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685869871.6367419, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685869871.6367483, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685869871.6367495, - "lastIP": "azo~{a~vm~}l`", - "deviceUUID": "d0d1f54a3d3dfd2966c88459025ede9f1e346762" - }, - "pb-IF40UlUhJA==": { - "display_string": [ - "\ue063CaramelArc" - ], - "profiles": [], - "name": "\ue063CaramelArc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-04 20:44:14", - "registerOn": 1685870381.26236, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685870381.262361, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685898409.871753, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685901720.6209545, - "lastIP": "dxvc~vavi~zi", - "deviceUUID": "7224714a470e3a14106d7f3f1a010d4a71ee0367" - }, - "pb-IF4hVHg7CA==": { - "display_string": [ - "\ue063Saurabhtha" - ], - "profiles": [], - "name": "\ue063Saurabhtha", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-14 10:50:15", - "registerOn": 1685870461.5395174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685870461.5395184, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686218485.3205478, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686218707.0946207, - "lastIP": "a~o~}iaaibyvb{m", - "deviceUUID": "44056c893a669391687e2197c88bd5699b4c785b" - }, - "pb-IF5SU0oKLA==": { - "display_string": [ - "\ue063jishnulm10", - "\ue030Android65161537", - "\ue030Android65160188", - "\ue030Android65161568", - "\ue030Android65161493" - ], - "profiles": [], - "name": "\ue063jishnulm10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 19:59:55", - "registerOn": 1685870483.5808628, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685870483.5808635, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685870483.5808718, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685870525.4459193, - "lastIP": "a|o~vo~~idaii|", - "deviceUUID": "e5f0f502c7b9919be16ba8d8149a7dc1435c1841" - }, - "pb-IF4yVVEzDw==": { - "display_string": [ - "\ue020AfterDiscontent33", - "\ue030Android51559140" - ], - "profiles": [], - "name": "\ue030Android51559140", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-18 21:51:46", - "registerOn": 1685870536.865057, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685870536.8650577, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686400591.8287117, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686400591.8287132, - "lastIP": "azo~{n~~jga`g", - "deviceUUID": "719c2c24f5906351fa7a9e44a9b4042bd66943b2" - }, - "pb-IF4UUGdTJw==": { - "display_string": [ - "\ue063CheeryQue3" - ], - "profiles": [], - "name": "\ue063CheeryQue3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-18 19:54:20", - "registerOn": 1685870543.2078004, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685870543.207801, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685870543.2078326, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685870581.6901038, - "lastIP": "axi~xa~~lgani", - "deviceUUID": "0f28ccaf2f3a7b951c9c2665e4544595dbc61b1a" - }, - "pb-IF4IU01dMQ==": { - "display_string": [ - "\ue030Android63891667" - ], - "profiles": [], - "name": "\ue030Android63891667", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 07:53:12", - "registerOn": 1685870626.1408055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685870626.1408064, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685870626.1408143, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685870626.1408157, - "lastIP": "azo~zi~~`iaoh", - "deviceUUID": "77375cf7fda321b8a643081e69db6d763086ca3a" - }, - "pb-IF4QUGJaPQ==": { - "display_string": [ - "\ue063Embryon256" - ], - "profiles": [], - "name": "\ue063Embryon256", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-21 00:32:05", - "registerOn": 1685870951.4001172, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685870951.4001184, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685870951.4001257, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685870951.4001267, - "lastIP": "azj~z`~z`~z", - "deviceUUID": "fbe14ce7822060f969253fb4ac8a1d74ab37965f" - }, - "pb-LV4FURgIUhBIWg4VRBQDV1IRQg==": { - "display_string": [ - "\ue063AshuAmbros", - "\ue030PC538677" - ], - "profiles": [], - "name": "\ue063AshuAmbros", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-09 20:09:19", - "registerOn": 1685870970.495243, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685870970.4952438, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685870970.4952521, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685870970.4952533, - "lastIP": "a\u007fn~}hbaid}vb\u007fn", - "deviceUUID": "fe767daba4147f86a1b22cf652a44dd1e2f1da2b" - }, - "pb-IF4GUGpSVg==": { - "display_string": [ - "\ue063Untrain337" - ], - "profiles": [], - "name": "\ue063Untrain337", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 13:58:11", - "registerOn": 1685871622.938018, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685871622.938019, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685871622.9380276, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685871622.9380288, - "lastIP": "dvvcyvb~h~~ae", - "deviceUUID": "241cc0e6617e2f4bfd349c2699b8587fb5d75e5f" - }, - "pb-IF4cU20KEw==": { - "display_string": [ - "\ue063Adityashin" - ], - "profiles": [], - "name": "\ue063Adityashin", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-16 19:53:21", - "registerOn": 1685871678.1400385, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685871678.1400392, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685871678.1400476, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685872141.544818, - "lastIP": "azj~zo~|o~}jh", - "deviceUUID": "e8c3a734682b51d5302f82da0e2a4b7a65d1e22a" - }, - "pb-IF48UBgBCg==": { - "display_string": [ - "\ue063MissingPap" - ], - "profiles": [], - "name": "\ue063MissingPap", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-03 18:44:58", - "registerOn": 1685872070.5664763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685872070.5664768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685872070.5664847, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685872090.3398352, - "lastIP": "b~h~zn~vn~wk", - "deviceUUID": "f7918eddd5595888330962178c9eac4ad690149d" - }, - "pb-IF4yU28dPQ==": { - "display_string": [ - "\ue063Reasonab55" - ], - "profiles": [], - "name": "\ue063Reasonab55", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-26 13:36:21", - "registerOn": 1685872174.9813082, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685872174.9813087, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685883204.624337, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685883204.624338, - "lastIP": "azj~zo~|o~~m", - "deviceUUID": "7b69a76a036e26281208ec5c60892714eb36333f" - }, - "pb-IF4lUGUCFw==": { - "display_string": [ - "\ue030Android65049704" - ], - "profiles": [], - "name": "\ue030Android65049704", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-12 18:30:24", - "registerOn": 1685872244.5435295, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685872244.5435302, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685872244.5435383, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685872324.2364013, - "lastIP": "a\u007fk~~neaj`ajb{", - "deviceUUID": "1090f78bbce659b4b70c7d36615fa16e1034e60b" - }, - "pb-IF4-UBlTAA==": { - "display_string": [ - "\ue063Unfores238" - ], - "profiles": [], - "name": "\ue063Unfores238", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-07 21:48:14", - "registerOn": 1685872414.1195967, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685872414.1195972, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685872414.1196053, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685872414.119606, - "lastIP": "azo~zi~|h~~nh", - "deviceUUID": "90e8a917d4b7e74bf7328d07e5497902dd5da399" - }, - "pb-IF4vUGkxBw==": { - "display_string": [ - "\ue063Happyga326" - ], - "profiles": [], - "name": "\ue063Happyga326", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-02 15:02:40", - "registerOn": 1685872727.4634702, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685872727.4634712, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685872727.463477, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685872727.463478, - "lastIP": "azo~|m~}l~}k`", - "deviceUUID": "b255e7ed33d465f8232cd227e9bb1a3842819207" - }, - "pb-IF4LU20cEw==": { - "display_string": [ - "\ue030Android62093703" - ], - "profiles": [], - "name": "\ue030Android62093703", - "isBan": true, - "isMuted": false, - "accountAge": "2022-07-19 12:34:21", - "registerOn": 1685872785.375293, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685872785.3752935, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685872785.3752997, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685872785.3753006, - "lastIP": "a\u007fn~~aeaidajbw", - "deviceUUID": "4dc931cefdd3131eaa4546cd0cefbffb299ae055" - }, - "pb-IF5dMmkE": { - "display_string": [ - "\ue063HotDungeon", - "\ue030Android23456056" - ], - "profiles": [], - "name": "\ue063HotDungeon", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-19 18:30:19", - "registerOn": 1685872901.1002533, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685872901.1002543, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685872901.100263, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685872901.1002643, - "lastIP": "bxvf}vdzvi~", - "deviceUUID": "51d8e2c13b6a0c1500cd2ce6c8fb0df17198d682" - }, - "pb-IF4lUGk-Bw==": { - "display_string": [ - "\ue063Pronoun346" - ], - "profiles": [], - "name": "\ue063Pronoun346", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-02 22:11:29", - "registerOn": 1685873025.302512, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685873025.3025126, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685873025.3025208, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685873025.3025217, - "lastIP": "dvvcyvdvvc{", - "deviceUUID": "19da4c5da89c5bed054d687dc5c2ea7e2ce29891" - }, - "pb-IF4oUGVbAQ==": { - "display_string": [ - "\ue063Akkkkk99" - ], - "profiles": [], - "name": "\ue063Akkkkk99", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-07 12:47:54", - "registerOn": 1685873035.3413622, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685873035.341363, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685873035.3413708, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685873035.341372, - "lastIP": "a\u007fk~xl~~aiaib~", - "deviceUUID": "a5bc741bc3f59560f3f3b522680973c7c8ec15d9" - }, - "pb-IF4MUlYtUQ==": { - "display_string": [ - "\ue063RandomBom" - ], - "profiles": [], - "name": "\ue063RANDOMIZER", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-08 20:32:46", - "registerOn": 1685873267.2097795, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685873267.2097802, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686019145.7281835, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686019145.7281852, - "lastIP": "a|o~vo~~i`anc", - "deviceUUID": "8c66ad4b73db1af0504175c9f4d3b10298b04764", - "cMsgCount": 0, - "lastMsgTime": 1685873507.1253216, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4uUGUuCA==": { - "display_string": [ - "\ue063Untutor274" - ], - "profiles": [], - "name": "\ue063Untutor274", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-11 12:55:56", - "registerOn": 1685873309.383423, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685873309.3834238, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685873309.383432, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685873309.3834329, - "lastIP": "b\u007fj~}i~{k~~ic", - "deviceUUID": "603bb297c34675101a642d99082d64a9659eb44b" - }, - "pb-IF4vUxQhPw==": { - "display_string": [ - "\ue063DeadlyWhis" - ], - "profiles": [], - "name": "\ue063DeadlyWhis", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-11 17:04:44", - "registerOn": 1685873400.8987195, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685873400.8987203, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685873400.8987293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685873400.8987303, - "lastIP": "bxvevvb|a~wj", - "deviceUUID": "ce5cf5b66d72be41f41bb0e6ff7d240226beea49" - }, - "pb-IF4mUGIJIQ==": { - "display_string": [ - "\ue063InsideDip2" - ], - "profiles": [], - "name": "\ue063InsideDip2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-25 14:28:53", - "registerOn": 1685873554.4444842, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685873554.4444852, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685873554.4444928, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685873554.4444938, - "lastIP": "a\u007fk~~`dajcwvb~", - "deviceUUID": "8ec6e4c137476543190c028e251479a18678d655" - }, - "pb-IF40U3M9Iw==": { - "display_string": [ - "\ue063Bourne" - ], - "profiles": [], - "name": "\ue063Bourne", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-09 14:32:47", - "registerOn": 1685873641.7852547, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685873641.7852554, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685873641.7852864, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685873720.7403567, - "lastIP": "a\u007fk~~lhaj`ajb", - "deviceUUID": "3883806dd6267e8841d2eca75af93f435fb2d31f" - }, - "pb-IF48UGccBw==": { - "display_string": [ - "\ue063Unattac329" - ], - "profiles": [], - "name": "\ue063Unattac329", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-22 18:47:46", - "registerOn": 1685873664.8473144, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685873664.8473148, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685873664.8473232, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685873785.9615664, - "lastIP": "a\u007fk~~j`aacaog", - "deviceUUID": "ef298906ebef708da13843d9630f1ee42dfe96e0" - }, - "pb-JiNJARBYUUpGVV5JEEVQVlVLEkRWT1dE": { - "display_string": [ - "\ue063ZippyCrys3" - ], - "profiles": [], - "name": "\ue063ZippyCrys3", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-14 19:34:10", - "registerOn": 1685873864.5970025, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685873864.597003, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685873864.5970104, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685873864.5970116, - "lastIP": "azj~z`~zi~~oe", - "deviceUUID": "e770e93bd8dc295a9b34ad012a23e85acd3f51a2" - }, - "pb-IF4rU0kaUQ==": { - "display_string": [ - "\ue063TardyDevia" - ], - "profiles": [], - "name": "\ue063TardyDevia", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-27 22:32:09", - "registerOn": 1685873993.1237502, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685873993.1237507, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686047096.46434, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686047096.464341, - "lastIP": "a\u007fn~}ica``amd", - "deviceUUID": "9b9d41038cc9cb808d1069e7e82240bcf330aa91" - }, - "pb-IF4mUxRdLg==": { - "display_string": [ - "\ue030Android60391438" - ], - "profiles": [], - "name": "\ue030Android60391438", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-11 03:17:09", - "registerOn": 1685874099.638546, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685874099.638547, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685874099.6385539, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685874099.6385548, - "lastIP": "d~vb|o~w`~|k", - "deviceUUID": "c0ba0268d808e5d5f99e17197f3c9d220b3c650d" - }, - "pb-IF5RUGInJg==": { - "display_string": [ - "\ue063DEVBRO" - ], - "profiles": [], - "name": "\ue063DEVBRO", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-05 12:59:05", - "registerOn": 1685874154.9155753, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685874154.915576, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685878040.4679468, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685884132.9031405, - "lastIP": "ax`~}lhaia{vi", - "deviceUUID": "e6a7402ea4ee5bd392f89840e4f70824c0c64def" - }, - "pb-IF4IUBUMFg==": { - "display_string": [ - "\ue063CrushedFr5" - ], - "profiles": [], - "name": "\ue063CrushedFr5", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-22 08:56:56", - "registerOn": 1685874556.5009274, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685874556.5009284, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685874556.5009363, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685874556.5009372, - "lastIP": "b}k~}jhaihajb|", - "deviceUUID": "34259dd0f744a7ac6ba798a871bf4f69b60bd28c" - }, - "pb-IF4GU2UbPw==": { - "display_string": [ - "\ue063LimitedMis" - ], - "profiles": [], - "name": "\ue063LimitedMis", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-15 15:19:54", - "registerOn": 1685874603.78722, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685874603.7872207, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685874603.7872276, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685874603.7872286, - "lastIP": "a{vavj~}hiaic|", - "deviceUUID": "dc830001f4cba436d921eaa64491eebd924fe028" - }, - "pb-IF4tVFkiBg==": { - "display_string": [ - "\ue063saachi011" - ], - "profiles": [], - "name": "\ue063saachi011", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-20 15:05:52", - "registerOn": 1685874633.8078167, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685874633.8078172, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685874633.8078234, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685874633.8078244, - "lastIP": "a\u007fn~}i`akgaiew", - "deviceUUID": "7f9b55960f0993c7c8ebff9dda46eef574bd8fdd" - }, - "pb-IF4KUklYNg==": { - "display_string": [ - "\ue063Excelle514", - "\ue030Android41232773" - ], - "profiles": [], - "name": "\ue063Excelle514", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-15 12:47:02", - "registerOn": 1685874774.3966804, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685874774.396681, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685874774.3966892, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685874774.3966901, - "lastIP": "a}j~zh~}hfai", - "deviceUUID": "1cd64da7fc033c517b750ac999935353bad56eb8" - }, - "pb-IF4SUGgzAA==": { - "display_string": [ - "\ue063sudep" - ], - "profiles": [], - "name": "\ue063sudep", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-27 19:53:53", - "registerOn": 1685875490.0886445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685875490.0886455, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685875490.0886533, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685875490.0886543, - "lastIP": "azo~{m~~`cana", - "deviceUUID": "f28bda65c46f8fb57758477eb34737b0d1a121a7" - }, - "pb-IF4LUBUREA==": { - "display_string": [ - "\ue030Android55048734" - ], - "profiles": [], - "name": "\ue030Android55048734", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-20 23:06:05", - "registerOn": 1685875637.6392975, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685875637.639298, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685875637.6393049, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685875637.639306, - "lastIP": "i|vc{vb|o~}k", - "deviceUUID": "6149134c399efc355a2ea590d5c00edcc8821b6a" - }, - "pb-IF4zV2JYCw==": { - "display_string": [ - "\ue063Goofykhan" - ], - "profiles": [], - "name": "\ue063Goofykhan", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-12 23:54:27", - "registerOn": 1685876388.603068, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685876388.603069, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685876388.6030777, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685876388.6030784, - "lastIP": "d|vb|i~zn~}j`", - "deviceUUID": "ddd79dbe49a5528326068695913c90e0c4229cc3" - }, - "pb-IF4vM0Nd": { - "display_string": [ - "\ue063Incredi587" - ], - "profiles": [], - "name": "\ue063Incredi587", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-03 10:57:23", - "registerOn": 1685876649.655978, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685876649.6559784, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685876649.6559875, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685876649.6559885, - "lastIP": "a\u007fn~~adaocaje{", - "deviceUUID": "99e138110e043c0db3bf1e51c3506ff4213780ee" - }, - "pb-IF5RU2oJUA==": { - "display_string": [ - "\ue063quicksilv7" - ], - "profiles": [], - "name": "\ue063quicksilv7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-25 18:46:54", - "registerOn": 1685876963.7079167, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685876963.707917, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685876963.7079232, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685876963.7079241, - "lastIP": "a\u007fn~~adamcak", - "deviceUUID": "b52a0123a41243d56ed209aa5016622aec74d299" - }, - "pb-IF4VVWIbDA==": { - "display_string": [ - "\ue063ZoDxHeLL1" - ], - "profiles": [], - "name": "\ue063ZoDxHeLL1", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-20 14:56:57", - "registerOn": 1685877278.9989872, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685877278.9989877, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686140279.2574322, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686140279.2574334, - "lastIP": "bxvf|vb~`~~kc", - "deviceUUID": "cd28c01ba98a5e95ab3334337bb5e4c732e63f11" - }, - "pb-IF4jUBMiCg==": { - "display_string": [ - "\ue063GovindV755" - ], - "profiles": [], - "name": "\ue063GovindV755", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-01 11:31:53", - "registerOn": 1685877504.1119118, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685877504.1119125, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685877504.1119184, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685877504.1119194, - "lastIP": "a\u007fk~vl~~khajcx", - "deviceUUID": "c21d9f9c46d65881ac92a1086df09766b67eba14", - "cMsgCount": 0, - "lastMsgTime": 1685877572.064948, - "lastMsg": "yeeeeee", - "cSameMsg": 0 - }, - "pb-IF4sUGEMLg==": { - "display_string": [ - "\ue063smartite9" - ], - "profiles": [], - "name": "\ue063smartite9", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-22 14:47:22", - "registerOn": 1685877537.0112386, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685877537.0112395, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685877537.0112472, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685877537.011248, - "lastIP": "azj~z`~}h`aigy", - "deviceUUID": "9948ff0e2e78e1442cb895ff6f361cd0780ce939" - }, - "pb-IF4LPkVb": { - "display_string": [ - "\ue063FantaIce", - "???" - ], - "profiles": [], - "name": "\ue063FantaIce", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-16 13:07:35", - "registerOn": 1685877647.6642897, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685877647.6642907, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685877647.6642983, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685877647.6642995, - "lastIP": "izvh}viwva|m", - "deviceUUID": "61291b1e38e06b6fb1b58a82ffe643c996f9837a" - }, - "pb-IF4DUBdSAQ==": { - "display_string": [ - "\ue063LimitedJoc" - ], - "profiles": [], - "name": "\ue063LimitedJoc", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-27 11:06:20", - "registerOn": 1685877665.3930197, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685877665.3930204, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685877665.393028, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685877665.3930292, - "lastIP": "bxvf\u007fva\u007fl~~j`", - "deviceUUID": "9655938bb7b659d2e8117e60f9123d2085bbb555" - }, - "pb-IF40U08SFQ==": { - "display_string": [ - "\ue063ExultantF2" - ], - "profiles": [], - "name": "\ue063ExultantF2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-07 14:13:34", - "registerOn": 1685877700.883776, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685877700.8837764, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685877700.8837864, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685877700.8837879, - "lastIP": "dvvc}vazo~}lf", - "deviceUUID": "becba455cd7ccfbe77c9aea26b70ebfe9ff73899" - }, - "pb-IF5SU1ZaJg==": { - "display_string": [ - "\ue063Flyingmara" - ], - "profiles": [], - "name": "\ue063Flyingmara", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-31 22:49:12", - "registerOn": 1685878180.680544, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685878180.6805449, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685878180.6805518, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685878180.6805527, - "lastIP": "a\u007fk~~odaievvazi", - "deviceUUID": "fef94135fc461cd16b576363adf2192942e97b27" - }, - "pb-IF4lU0MtLQ==": { - "display_string": [ - "\ue063SHREYASHxO" - ], - "profiles": [], - "name": "\ue063SHREYASHxO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-20 14:53:22", - "registerOn": 1685878813.8520098, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685878813.85201, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685878813.8520172, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685878813.8520184, - "lastIP": "a\u007fn~}hgandaoi", - "deviceUUID": "a09d01e25240174cea2612707e52e93b11f5da7e" - }, - "pb-IF4tUGQDPQ==": { - "display_string": [ - "\ue063Seafari289" - ], - "profiles": [], - "name": "\ue063Seafari289", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-03 14:39:20", - "registerOn": 1685879534.3599854, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685879534.3599858, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685879534.3599923, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685879534.3599935, - "lastIP": "dvvcxvfyvcv", - "deviceUUID": "cafe4c97aae1ff5b9e3da6f3b8a1ce4b78552020" - }, - "pb-IF4VUlcBVQ==": { - "display_string": [ - "\ue063YashRenoun", - "\ue030Android60976993" - ], - "profiles": [], - "name": "\ue063YashRenoun", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-13 22:17:21", - "registerOn": 1685880095.555877, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685880095.5558774, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686385343.8440766, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686385343.8440778, - "lastIP": "a~o~vn~~nhaiaz", - "deviceUUID": "6016cf2b51eaa0c2b924cbe0d0872f3772657d01", - "cMsgCount": 0, - "lastMsgTime": 1686140261.106127, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4lU0EgFQ==": { - "display_string": [ - "\ue063UNIHI7890" - ], - "profiles": [], - "name": "\ue063UNIHI7890", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-11 16:03:21", - "registerOn": 1685880234.0064049, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685880234.0064056, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685880234.006412, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685880234.0064132, - "lastIP": "a|n~~`eal`aah", - "deviceUUID": "f8befc392abfd7b0614a69d229f3f6929bb6f4b8" - }, - "pb-IF4TUxEoKg==": { - "display_string": [ - "\ue063TUJABAAP00", - "\ue030Android60088344" - ], - "profiles": [], - "name": "\ue063TUJABAAP00", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-29 14:15:10", - "registerOn": 1685881320.2484128, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685881320.2484133, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686125952.0500228, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686125952.050024, - "lastIP": "azj~zo~}i`aj`{", - "deviceUUID": "e7135d56b8cdb8e4ddab0d4612deaec02a824e5d", - "cMsgCount": 0, - "lastMsgTime": 1685973581.441883, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4rV3cFEg==": { - "display_string": [ - "\ue063Cinnamon", - "\ue030Android56956336" - ], - "profiles": [], - "name": "\ue063Cinnamon", - "isBan": false, - "isMuted": false, - "accountAge": "2019-01-08 20:03:58", - "registerOn": 1685881568.92461, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685881568.9246104, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685881568.924623, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685882125.5905604, - "lastIP": "a\u007fk~~l~~jiaicz", - "deviceUUID": "8fc30db451300fc1018f625ac62e7aae76bd6f51", - "cMsgCount": 0, - "lastMsgTime": 1685882860.5312254, - "lastMsg": "so weak", - "cSameMsg": 0 - }, - "pb-IF4FU0sMKQ==": { - "display_string": [ - "\ue063MaximalDru" - ], - "profiles": [], - "name": "\ue063MaximalDru", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 18:48:41", - "registerOn": 1685881683.2318966, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685881683.231897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685881683.2319043, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685881683.2319052, - "lastIP": "azj~zo~}l`a`a", - "deviceUUID": "32430ddba4dd6ce5b3fe001cc76a30a2d0855b7c" - }, - "pb-IF4xVVpePw==": { - "display_string": [ - "\ue063Autocra162" - ], - "profiles": [], - "name": "\ue063Autocra162", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-30 01:21:57", - "registerOn": 1685881781.9143279, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685881781.9143283, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685881781.9143357, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685881781.914337, - "lastIP": "dvvcxvb\u007fk~{`", - "deviceUUID": "b64fd52156e95ad21ea2789b8f39677e724b29f9" - }, - "pb-IF4TUBFSBg==": { - "display_string": [ - "\ue020TriumphantPenguin681", - "\ue063OutwardCal", - "\ue020TalkativeLimit51", - "\ue020InfraredExcursion59", - "\ue030Android60579657" - ], - "profiles": [], - "name": "\ue063OutwardCal", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-03 18:17:10", - "registerOn": 1685881791.6375637, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685881791.6375642, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685881791.6375716, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685881791.6375728, - "lastIP": "azo~|l~~aiaj`|", - "deviceUUID": "d26458fbeef63c49fe91e5f53f0e30271a501e95" - }, - "pb-IF4AUGhcMQ==": { - "display_string": [ - "\ue063sushant99g" - ], - "profiles": [], - "name": "\ue063sushant99g", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-25 23:16:17", - "registerOn": 1685881926.498561, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685881926.4985619, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685881926.498571, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685881926.498572, - "lastIP": "azj~zo~~mgai`w", - "deviceUUID": "e383d5c257f5dd7406bc5942e93f887591fb5681", - "cMsgCount": 0, - "lastMsgTime": 1685883754.1385665, - "lastMsg": "bhaag", - "cSameMsg": 0 - }, - "pb-IF4NU1EhUw==": { - "display_string": [ - "\ue030Android64084966" - ], - "profiles": [], - "name": "\ue030Android64084966", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-20 14:58:16", - "registerOn": 1685881952.265857, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685881952.2658575, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685881952.2658648, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685881952.265866, - "lastIP": "dvvc}vazi~~mf", - "deviceUUID": "f4122b1458d906b9cb0c5820b705d7278c3f2c73" - }, - "pb-IF42UGgAFg==": { - "display_string": [ - "\ue063ruchi1522" - ], - "profiles": [], - "name": "\ue063ruchi1522", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-30 04:55:18", - "registerOn": 1685882026.4950411, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685882026.4950416, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685882026.4950473, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685882026.4950483, - "lastIP": "azo~|m~}l~~ae", - "deviceUUID": "b1c4e980c66609a65682452ea72d2a30d8e94916" - }, - "pb-IF4zUkwZBw==": { - "display_string": [ - "\ue063Muguntha14" - ], - "profiles": [], - "name": "\ue063Muguntha14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-02 16:13:06", - "registerOn": 1685882137.9194038, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685882137.9194043, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685882137.919413, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685882137.9194143, - "lastIP": "a}j~~nda``ajc|", - "deviceUUID": "bc1327009f9944b141f04912712143c738d96727" - }, - "pb-IF4gU1MdVg==": { - "display_string": [ - "\ue063Moon63" - ], - "profiles": [], - "name": "\ue063Moon63", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-01 12:25:56", - "registerOn": 1685882137.9995341, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685882137.9995346, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685882137.9995413, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685882137.9995425, - "lastIP": "dvvazvhzvcw", - "deviceUUID": "502692feea39ed0795c86272646d1f76ae23ff37" - }, - "pb-IF4OU0UyUA==": { - "display_string": [ - "\ue063PearlyColl", - "\ue030Android63609466" - ], - "profiles": [], - "name": "\ue063PearlyColl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-03 18:10:48", - "registerOn": 1685882398.8879957, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685882398.8879962, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685882398.8880057, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685883762.626881, - "lastIP": "azl~}kiaiezvb{j", - "deviceUUID": "fb3fbf605df31d20de44aacf85159ae5a128f168" - }, - "pb-IF5QV0kBCg==": { - "display_string": [ - "\ue063ForeignLea", - "\ue030Android32521852" - ], - "profiles": [], - "name": "\ue063ForeignLea", - "isBan": false, - "isMuted": false, - "accountAge": "2019-02-26 22:59:29", - "registerOn": 1685882974.066999, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685882974.0669994, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685882974.0670073, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685882974.0670085, - "lastIP": "azj~z`~|l~}o", - "deviceUUID": "4f35c9bcfbabbeda7b5642449dba881c9d5daf0a" - }, - "pb-IF4dVFo7Cw==": { - "display_string": [ - "\ue063Dragonlor2" - ], - "profiles": [], - "name": "\ue063Dragonlor2", - "isBan": true, - "isMuted": false, - "accountAge": "2020-06-28 22:54:10", - "registerOn": 1685882997.1924045, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685882997.192405, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685882997.1924126, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685882997.1924138, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF4WUkMeNQ==": { - "display_string": [ - "\ue063Tolerable6" - ], - "profiles": [], - "name": "\ue063Tolerable6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-26 22:25:20", - "registerOn": 1685883047.340292, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685883047.3402927, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685883047.340299, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685883047.3403, - "lastIP": "axi~zi~}hcaic{", - "deviceUUID": "883da177689561d174b436b1fe9f6faf0ce09696" - }, - "pb-IF4DUGRYKA==": { - "display_string": [ - "\ue063Laborio277" - ], - "profiles": [], - "name": "\ue063Laborio277", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-30 11:09:54", - "registerOn": 1685883071.4947226, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685883071.494723, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685883071.4947307, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685884508.38285, - "lastIP": "azj~z`~}k`ai`}", - "deviceUUID": "9d7b6f3a4670448fc2fe9d9c5585525df3ed9872" - }, - "pb-IF4jVFkmLw==": { - "display_string": [ - "\ue063bestgamerx" - ], - "profiles": [], - "name": "\ue063bestgamerx", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-18 22:35:52", - "registerOn": 1685883239.0820282, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685883239.0820286, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685883239.082034, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685883239.0820353, - "lastIP": "a~o~}hiaib|vgv", - "deviceUUID": "d124ef40dd4bf6da75ee46d44fd3a5419d17761c" - }, - "pb-IF5WUBEBFg==": { - "display_string": [ - "\ue063ROMANREI10" - ], - "profiles": [], - "name": "\ue063ROMANREI10", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-11 23:18:23", - "registerOn": 1685883545.1113565, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685883545.111357, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685903964.0209832, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685903964.0209844, - "lastIP": "dvvcyva}k~~`d", - "deviceUUID": "218d091b86cc9ed6276d93e8613c32207b3c6aac" - }, - "pb-IF4UU0wiKg==": { - "display_string": [ - "\ue063RegZeku77", - "\ue030Android55777421" - ], - "profiles": [], - "name": "\ue063RegZeku77", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-07 19:49:05", - "registerOn": 1685883559.233362, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685883559.2333624, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685883559.2333705, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685883559.233372, - "lastIP": "a\u007fn~}h`aofana", - "deviceUUID": "2e2381c912818f80b0ca133d124bc95e6ed78773" - }, - "pb-IF4LU0wKIw==": { - "display_string": [ - "\ue063Omiii15" - ], - "profiles": [], - "name": "\ue063Omiii15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 10:16:06", - "registerOn": 1685883624.4416122, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685883624.4416127, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685954351.3167856, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685971418.1527035, - "lastIP": "azj~zo~~aca``", - "deviceUUID": "d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff", - "cMsgCount": 0, - "lastMsgTime": 1685972714.2537072, - "lastMsg": "0", - "cSameMsg": 0 - }, - "pb-IF5QVFMCUg==": { - "display_string": [ - "\ue030Android43671493" - ], - "profiles": [], - "name": "\ue030Android43671493", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-24 14:54:08", - "registerOn": 1685883634.4719062, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685883634.471907, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686302359.6965845, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686302359.6965857, - "lastIP": "a\u007fn~}hcajgaoh", - "deviceUUID": "3b483075b2023edb95e323dc2cc0d8dc516cae08", - "cMsgCount": 0, - "lastMsgTime": 1686196757.3281875, - "lastMsg": "/ping", - "cSameMsg": 0 - }, - "pb-IF4sU1EeAA==": { - "display_string": [ - "\ue063Benefic168" - ], - "profiles": [], - "name": "\ue063Benefic168", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-24 15:02:19", - "registerOn": 1685883672.602105, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685883672.6021054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685883672.6021125, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685883672.6021135, - "lastIP": "bxvf\u007fvb~k~~`", - "deviceUUID": "a4ccc2a4110c9b63a5fd073bee5f4d32900d0444" - }, - "pb-IF4vUBY9Bw==": { - "display_string": [ - "\ue030Android64740868", - "\ue030Android64697333", - "\ue030Android64935193", - "\ue030Android64980251" - ], - "profiles": [], - "name": "\ue030Android64740868", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-23 17:08:32", - "registerOn": 1685884035.855068, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685884035.8550684, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685884035.8550754, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685884035.8550763, - "lastIP": "awl~}j~~jfaad", - "deviceUUID": "566691f7ff06845dbed95f30af4f134fd57364f8" - }, - "pb-IF4nUGQlJw==": { - "display_string": [ - "\ue030Android64980432" - ], - "profiles": [], - "name": "\ue030Android64980432", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-01 12:04:48", - "registerOn": 1685884983.6577728, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685884983.6577733, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685884983.6577845, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685884983.657786, - "lastIP": "a~h~}jfaih|vc", - "deviceUUID": "fcec08685829d53aecae461b40807006fa1f4790" - }, - "pb-IF4yVFgOVA==": { - "display_string": [ - "\ue063Xodv8" - ], - "profiles": [], - "name": "\ue063Xodv8", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-16 15:03:14", - "registerOn": 1685886633.8645785, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685886633.8645794, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686376186.4838738, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686376186.483875, - "lastIP": "a\u007fk~~`baifxvayo", - "deviceUUID": "d854623f8a8ec9715c4cf1e44f2a453d5344d791" - }, - "pb-IF4yUGRfNw==": { - "display_string": [ - "\ue030Android64993014" - ], - "profiles": [], - "name": "\ue030Android64993014", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-03 16:03:29", - "registerOn": 1685886825.537769, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685886825.53777, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685886825.5377781, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685886825.5377796, - "lastIP": "dvvcyvdwva}l", - "deviceUUID": "b7eef9cfe31a7bb2acbf0c68651a265aa9aa8ae8" - }, - "pb-IF4RUGRTMA==": { - "display_string": [ - "\ue063HipsterFl8" - ], - "profiles": [], - "name": "\ue063HipsterFl8", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-30 00:22:09", - "registerOn": 1685886868.715012, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685886868.7150128, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685886868.7150772, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685886868.715078, - "lastIP": "dvvc|vb\u007fj~}h`", - "deviceUUID": "bc63f3054aba560f83864cfd300b6b868345b1a0" - }, - "pb-IF4XUkwbKQ==": { - "display_string": [ - "\ue063GamerPB7", - "\ue030Android64844828", - "\ue030Android64787282", - "\ue030Android64828772" - ], - "profiles": [], - "name": "\ue030Android64787282", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-01 04:00:06", - "registerOn": 1685887514.535961, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685887514.5359616, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686124014.529624, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686124014.5296254, - "lastIP": "a\u007fk~~j`aje|vd|", - "deviceUUID": "56c52a22f44677a8424476af52c088d00b14a484" - }, - "pb-IF4wUGhdEg==": { - "display_string": [ - "\ue063LAKSKHYA" - ], - "profiles": [], - "name": "\ue063LAKSKHYA", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-23 16:23:06", - "registerOn": 1685889088.196647, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685889088.1966476, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685889088.1966553, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685889088.196657, - "lastIP": "dvvcyvb|o~~mc", - "deviceUUID": "b77f63a6d081b60acfeff8ed2e7f1015b30f5b2c" - }, - "pb-IF4pUGMENg==": { - "display_string": [ - "\ue063MrBakwaas" - ], - "profiles": [], - "name": "\ue063MrBakwaas", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-28 13:33:59", - "registerOn": 1685890958.2100935, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685890958.210094, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685890958.2101002, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685890958.2101014, - "lastIP": "a\u007fn~}haamaaod", - "deviceUUID": "c841656fd2611c82cda63490b2eccaefa440b442" - }, - "pb-IF4DUlcTCw==": { - "display_string": [ - "\ue063Unoppos746" - ], - "profiles": [], - "name": "\ue063Unoppos746", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-13 13:44:47", - "registerOn": 1685890969.2584598, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685890969.25846, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685890969.2584658, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685890969.2584674, - "lastIP": "a\u007fk~~`ca`baify", - "deviceUUID": "bc0cbc37f96d5c6c350c45e3ceaca2b89c239b07" - }, - "pb-IF4tU1pdJA==": { - "display_string": [ - "\ue063juleon237" - ], - "profiles": [], - "name": "\ue063juleon237", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-05 06:01:20", - "registerOn": 1685891382.6900444, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685891382.690045, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685891382.6900527, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685891382.6900542, - "lastIP": "awo~~lcajb\u007fvg{", - "deviceUUID": "b56100a6fafadc934bd64117d60a60904663e604" - }, - "pb-IF5QU3AaLg==": { - "display_string": [ - "\ue030Android62078969" - ], - "profiles": [], - "name": "\ue030Android62078969", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 19:45:30", - "registerOn": 1685891774.1623538, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685891774.1623547, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686368461.371773, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686368461.3718064, - "lastIP": "dvvc{vfzvb~h", - "deviceUUID": "67ca1700097a31623ecb8521a8c88e199829bedc" - }, - "pb-IF4BUGktJw==": { - "display_string": [ - "\ue063PolarTowe2" - ], - "profiles": [], - "name": "\ue063PolarTowe2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 20:46:34", - "registerOn": 1685891830.6480534, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685891830.6480546, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685891830.648147, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685891830.6481483, - "lastIP": "a\u007fk~~`cajc\u007fva\u007f", - "deviceUUID": "621f2189176996f7a3d703aa9fa3403b9e3f7a3d" - }, - "pb-IF4KVGsALQ==": { - "display_string": [ - "\ue063PickyNimro", - "\ue030Android52183011" - ], - "profiles": [], - "name": "\ue063PickyNimro", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-18 20:59:09", - "registerOn": 1685891934.7313607, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685891934.7313614, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685891934.7313685, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685891934.7313695, - "lastIP": "cxvayvayo~|k", - "deviceUUID": "73041cc290982a9eb346da4ae8d3f71066b556a4" - }, - "pb-IF5XVEQFFw==": { - "display_string": [ - "\ue063ImmenseExp" - ], - "profiles": [], - "name": "\ue063ImmenseExp", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-04 19:07:32", - "registerOn": 1685892067.5364625, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685892067.5364633, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686066517.6433737, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686066517.643375, - "lastIP": "azo~{n~}iaaiey", - "deviceUUID": "0e1631411da49abab97cf776e45447230798b50f", - "cMsgCount": 0, - "lastMsgTime": 1686066605.5185256, - "lastMsg": "wait", - "cSameMsg": 0 - }, - "pb-IF4CUhUlFg==": { - "display_string": [ - "\ue063BluishClas" - ], - "profiles": [], - "name": "\ue063BluishClas", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-27 12:13:35", - "registerOn": 1685892339.2736313, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685892339.2736318, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686386926.905038, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686386926.9050393, - "lastIP": "b}k~}kiangaih", - "deviceUUID": "7ff409e87c661733dd5ac8860f45e13b78990856" - }, - "pb-IF4KUGpYXQ==": { - "display_string": [ - "\ue030Android65194313" - ], - "profiles": [], - "name": "\ue030Android65194313", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 19:24:50", - "registerOn": 1685892536.844428, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685892536.8444285, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685892536.8444378, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685892536.8444393, - "lastIP": "azj~zo~xh~|", - "deviceUUID": "19c267565195bc72497b4b2ac1e849ce686c0ec8" - }, - "pb-IF4HUGkZIA==": { - "display_string": [ - "\ue030Android65188517" - ], - "profiles": [], - "name": "\ue030Android65188517", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-03 22:54:22", - "registerOn": 1685892555.0163991, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685892555.0163999, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685892555.0164082, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685892555.0164096, - "lastIP": "dzvawn~}meajb", - "deviceUUID": "2ef94565404bbfa119bff94d714c9733f66803f1" - }, - "pb-JiNJARBfUURFX1lFFkBUVFBGE0hXQllA": { - "display_string": [ - "\ue063ShubhangRa", - "\ue030Android43340139" - ], - "profiles": [], - "name": "\ue063ShubhangRa", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-14 11:21:22", - "registerOn": 1685892755.8437586, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685892755.843759, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685892755.8437848, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685892755.843786, - "lastIP": "a~o~}lhaja{va|l", - "deviceUUID": "ad21aeae4bd5451fafff843d8a32a6bb9a3bb4ec" - }, - "pb-IF4gU0wxBw==": { - "display_string": [ - "\ue063ZOYAsays" - ], - "profiles": [], - "name": "\ue063Enchantres", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 16:06:19", - "registerOn": 1685892943.5527651, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685892943.5527654, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686376142.3432322, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686389985.019828, - "lastIP": "a\u007fk~}hhaoaalb", - "deviceUUID": "e3264f0eeff4f52989ca84c4566b2adc69fb0f57" - }, - "pb-IF4oU00eUQ==": { - "display_string": [ - "\ue063SeniorSlum" - ], - "profiles": [], - "name": "\ue063SeniorSlum", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 14:09:35", - "registerOn": 1685893588.193877, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685893588.1938775, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685893588.193886, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685893588.193887, - "lastIP": "dvvcyvb}j~}ka", - "deviceUUID": "74b5de162044b737d00382159e2a42b0e62fdd5f" - }, - "pb-IF5WUGkeKA==": { - "display_string": [ - "\ue030Android65134984" - ], - "profiles": [], - "name": "\ue030Android65134984", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-26 11:00:53", - "registerOn": 1685894241.6284556, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685894241.628456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686314917.3562062, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686314917.3562074, - "lastIP": "dvvc{vd~vav", - "deviceUUID": "0ec746bbebbd7596f8c9a7887dff18de60322a94" - }, - "pb-IF4hVFQJPA==": { - "display_string": [ - "\ue063sheriff007" - ], - "profiles": [], - "name": "\ue063sheriff007", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-25 00:58:39", - "registerOn": 1685894880.0510962, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685894880.051097, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685894880.0511043, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685894880.0511053, - "lastIP": "azo~{a~y`~}hf", - "deviceUUID": "2075f74ce3988b96997b4c4082726cec0bfd3b36" - }, - "pb-IF4hVHMhXQ==": { - "display_string": [ - "\ue063Ashwin4628" - ], - "profiles": [], - "name": "\ue063Ashwin4628", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-14 16:52:24", - "registerOn": 1685895115.8337562, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685895115.833757, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685895115.8337665, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685895115.833768, - "lastIP": "azo~|`~{a~~k", - "deviceUUID": "54005b1edb806f7c3486d1a3bda28738b359935c" - }, - "pb-IF4LM2kN": { - "display_string": [ - "\ue063kushal9610" - ], - "profiles": [], - "name": "\ue063kushal9610", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-02 13:42:19", - "registerOn": 1685895299.7945018, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685895299.7945025, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685895299.7945092, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685895299.7945104, - "lastIP": "dvvb\u007fm~|l~}`", - "deviceUUID": "50f2d13d2b70e744edcedb506895702c4c4baa9d" - }, - "pb-IF4HU0U-Dw==": { - "display_string": [ - "\ue063MrGogito" - ], - "profiles": [], - "name": "\ue063MrGogito", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 16:21:01", - "registerOn": 1685895302.0364227, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685895302.0364232, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685895302.0364535, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685895302.0364547, - "lastIP": "dvvb\u007fm~|l~}`", - "deviceUUID": "cbf117a5e890ea85c889cfa01f0cffae98e229ac" - }, - "pb-IF4wVVk8Jg==": { - "display_string": [ - "\ue063Homulilly" - ], - "profiles": [], - "name": "\ue063Homulilly", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-23 22:49:07", - "registerOn": 1685895503.3662484, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685895503.3662488, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686399562.0096064, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686399597.0952578, - "lastIP": "a\u007fk~~`baifyvgz", - "deviceUUID": "62530b9e52c0b6fdb4947cced368552fe14938cf", - "cMsgCount": 0, - "lastMsgTime": 1686296892.4216235, - "lastMsg": "\ud83d\ude20", - "cSameMsg": 0 - }, - "pb-IF4UUGkHVA==": { - "display_string": [ - "\ue030Android65179175" - ], - "profiles": [], - "name": "\ue030Android65179175", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-02 15:47:33", - "registerOn": 1685895736.5101843, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685895736.5101848, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685895736.5101926, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685895736.5101936, - "lastIP": "azo~{j~~vi\u007f", - "deviceUUID": "fb82fc018f254a4c5ddbd027c764e2e378c3bde7" - }, - "pb-IF42U1MvNg==": { - "display_string": [ - "\ue063FallenLati" - ], - "profiles": [], - "name": "\ue063FallenLati", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-27 17:34:08", - "registerOn": 1685895917.9826965, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685895917.9826972, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685895917.9827087, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685896081.2474887, - "lastIP": "eaa`ai`xva}n", - "deviceUUID": "07007f2e0e6fdfb0d7925b5381e9b538574461d3" - }, - "pb-IF4zUxYJEw==": { - "display_string": [ - "\ue063FrostedLor" - ], - "profiles": [], - "name": "\ue063FrostedLor", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-19 22:59:21", - "registerOn": 1685897256.0995202, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685897256.099521, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685897256.0995271, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685897256.099528, - "lastIP": "a}l~~meaje{vaym", - "deviceUUID": "232ed654e1e17ea8b63c0e367c0c223ad5de6d8a" - }, - "pb-IF5VUGpdKg==": { - "display_string": [ - "\ue030Android65125599" - ], - "profiles": [], - "name": "\ue030Android65125599", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-24 20:35:12", - "registerOn": 1685897458.6496181, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685897458.6496186, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685897458.6496253, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685897458.6496263, - "lastIP": "dvvb\u007fm~wj~~jb", - "deviceUUID": "7edab0d9e08a1d755d06a9a7f4577e31ae39e99b" - }, - "pb-IF4vU0MENg==": { - "display_string": [ - "\ue063harshal" - ], - "profiles": [], - "name": "\ue063harshal", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-22 21:41:30", - "registerOn": 1685897483.7209902, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685897483.720991, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686216205.0434515, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686216182.4840093, - "lastIP": "a\u007fn~}icaagaidx", - "deviceUUID": "6382f3717c6ac3650740a14e9d6ab4b67728a26a", - "cMsgCount": 0, - "lastMsgTime": 1686216205.0433934, - "lastMsg": "/me", - "cSameMsg": 0 - }, - "pb-IF4HVHpcFQ==": { - "display_string": [ - "\ue063EliteSage2" - ], - "profiles": [], - "name": "\ue063EliteSage2", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-21 13:59:15", - "registerOn": 1685897809.9322286, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685897809.9322293, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686382068.2321563, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686392131.1853511, - "lastIP": "dvvcyva}h~~m", - "deviceUUID": "722099821f2d7b77a509edac87bacc7f8a830939", - "cMsgCount": 0, - "lastMsgTime": 1685898442.440952, - "lastMsg": "sry", - "cSameMsg": 0 - }, - "pb-IF4WUGcuIA==": { - "display_string": [ - "\ue063Kukdi" - ], - "profiles": [], - "name": "\ue063Kukdi", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-19 19:56:50", - "registerOn": 1685898307.7398095, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685898307.73981, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685898307.739817, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685898307.7398176, - "lastIP": "dvvczvavl~xk", - "deviceUUID": "fac9b50eb9f53d2a1eed5fc6fb283380d755dd33", - "cMsgCount": 2, - "lastMsgTime": 1685899170.1421645, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4IUGExHw==": { - "display_string": [ - "\ue063Rocksol681" - ], - "profiles": [], - "name": "\ue063Rocksol681", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-18 13:54:54", - "registerOn": 1685898744.9379048, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685898744.9379063, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686312881.4152722, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686313275.2925587, - "lastIP": "awj~ym~}lgaji", - "deviceUUID": "f7691dea6c35e9b72eb55bb69fa024eb1abf57e6", - "cMsgCount": 0, - "lastMsgTime": 1685976739.4947617, - "lastMsg": ". do it", - "cSameMsg": 0 - }, - "pb-IF5cUnQqHA==": { - "display_string": [ - "\ue063Unyieldi31" - ], - "profiles": [], - "name": "\ue063Unyieldi31", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-08 17:29:12", - "registerOn": 1685899032.5064712, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685899032.5064719, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685899032.5064793, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685899032.5064807, - "lastIP": "a\u007fk~vm~wi~{a", - "deviceUUID": "115323723d0de932467f154cc8c1aea75c7b3f7c" - }, - "pb-IF4iUGk5Aw==": { - "display_string": [ - "\ue030Android65194381" - ], - "profiles": [], - "name": "\ue030Android65194381", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 19:37:52", - "registerOn": 1685899285.6863399, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685899285.686341, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685899285.686347, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685899285.6863484, - "lastIP": "azo~|j~|n~}kd", - "deviceUUID": "37eadc37d66cb2676feb273a6b0d40fb321610a4" - }, - "pb-IF49VFQlPA==": { - "display_string": [ - "\ue063PAMU628", - "\ue063Aikuros" - ], - "profiles": [], - "name": "\ue063Aikuros", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-23 14:22:54", - "registerOn": 1685900047.5070214, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685900047.5070221, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686338265.7347305, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686338277.7734551, - "lastIP": "azo~zh~}i~~lh", - "deviceUUID": "495a6864495ade412247de1824d348dfe1ca43d4", - "cMsgCount": 1, - "lastMsgTime": 1686339872.8567216, - "lastMsg": "come rico", - "cSameMsg": 0 - }, - "pb-IF4FV0xYAg==": { - "display_string": [ - "\ue063MetalTorc3" - ], - "profiles": [], - "name": "\ue063MetalTorc3", - "isBan": false, - "isMuted": false, - "accountAge": "2019-03-23 12:28:25", - "registerOn": 1685902737.5351145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685902737.535115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685902737.535122, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685902737.5351226, - "lastIP": "dvvcxvg|vb|l", - "deviceUUID": "d0bb95b4e40a3cb3ade0c2c69294eb8ceda4f4ef" - }, - "pb-IF4AUGkaUQ==": { - "display_string": [ - "\ue063ThriftySu3" - ], - "profiles": [], - "name": "\ue063ThriftySu3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 20:56:51", - "registerOn": 1685902813.1256425, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685902813.1256433, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685902813.1256523, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685902813.1256533, - "lastIP": "azj~z`~~`~~jb", - "deviceUUID": "afebf17af2211e4f4ffd62a65558499641b0d9d8" - }, - "pb-IF4sUGQ_Vw==": { - "display_string": [ - "\ue063Handsom372" - ], - "profiles": [], - "name": "\ue063Handsom372", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-09 23:48:23", - "registerOn": 1685903233.6890898, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685903233.6890905, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685903233.6890974, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685903233.6890986, - "lastIP": "b}k~~oha``aihy", - "deviceUUID": "5ebe17b9a3997d120c7bdb4380fdf452548c4aee" - }, - "pb-IF4xUhUoLQ==": { - "display_string": [ - "\ue063Derivati12" - ], - "profiles": [], - "name": "\ue063Derivati12", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-27 20:05:29", - "registerOn": 1685903684.2908354, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685903684.2908363, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686127924.0478525, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686128261.3106613, - "lastIP": "azj~zo~~o`ajdv", - "deviceUUID": "5127f3db98893e1be9651ab9e524b1cd1074ff0c", - "cMsgCount": 0, - "lastMsgTime": 1686128226.271424, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF40UBNeFg==": { - "display_string": [ - "\ue063Materia104" - ], - "profiles": [], - "name": "\ue063Materia104", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-05 01:06:00", - "registerOn": 1685904080.0365686, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685904080.0365696, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686162133.1067188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686162133.10672, - "lastIP": "aaihxvb~l~~k", - "deviceUUID": "9cc6624173bef69fda79b5e1a6ceed20e9106d86", - "cMsgCount": 0, - "lastMsgTime": 1685904115.603105, - "lastMsg": "hello aikuros bhaiya ", - "cSameMsg": 0 - }, - "pb-IF4iVGYNEA==": { - "display_string": [ - "\ue063kharwa684" - ], - "profiles": [], - "name": "\ue063kharwa684", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-17 16:41:46", - "registerOn": 1685904557.5705938, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685904557.5705945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685904557.5706022, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685904557.570603, - "lastIP": "aakhaidzva", - "deviceUUID": "1f7ae0e2f8f1e1cbe24c00b30a7fa0c4a2e6d6fc" - }, - "pb-IF4LVW5cMQ==": { - "display_string": [ - "\ue063xblood98x", - "\ue063MrBoss398", - "\ue047Aaliyah\ue047" - ], - "profiles": [], - "name": "\ue063xblood98x", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-14 01:19:41", - "registerOn": 1685904671.97012, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1685906349.0384264, - "totaltimeplayer": 0, - "warnCount": 3, - "lastWarned": 1685906349.037539, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685906717.4091508, - "lastIP": "a\u007fl~}`~~mfai`", - "deviceUUID": "4872f6912c0df321761914266c0ff4d9df1d8e1c", - "cMsgCount": 0, - "lastMsgTime": 1685906349.0371547, - "lastMsg": "sus", - "cSameMsg": 0 - }, - "pb-IF4cVGMHLA==": { - "display_string": [ - "\ue063masoom1980" - ], - "profiles": [], - "name": "\ue063masoom1980", - "isBan": false, - "isMuted": false, - "accountAge": "2019-08-29 17:41:57", - "registerOn": 1685904926.3145494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685904926.3145506, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686333950.2276206, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686333950.2276216, - "lastIP": "a\u007fn~~adaje\u007fvbw", - "deviceUUID": "b055fe844b57210943a3bba37a3a7be5abc140d9", - "cMsgCount": 0, - "lastMsgTime": 1686166025.7060647, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4yUBElCg==": { - "display_string": [ - "\ue063ImpudentOu" - ], - "profiles": [], - "name": "\ue063ImpudentOu", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-22 19:47:58", - "registerOn": 1685906122.5539129, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685906122.5539136, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685906122.5539224, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685906122.5539234, - "lastIP": "a\u007fn~}jbamcajdv", - "deviceUUID": "08f82a2aeb797a2a2dc371d32962f9af31c491d1" - }, - "pb-IF4mUBFcUw==": { - "display_string": [ - "\ue063KARObstina" - ], - "profiles": [], - "name": "\ue063KARObstina", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-22 15:00:56", - "registerOn": 1685906209.859212, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685906209.8592129, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685985488.4799404, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685985488.4799414, - "lastIP": "a\u007fn~~acaliaiay", - "deviceUUID": "8759f152b99cfddd8c69e6a07a06adaec7e045f2" - }, - "pb-IF4gUnozMg==": { - "display_string": [ - "\ue063saaidicom" - ], - "profiles": [], - "name": "\ue063saaidicom", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-15 02:26:14", - "registerOn": 1685906723.13059, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685906723.1305904, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685906723.1305976, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685906955.2383866, - "lastIP": "ayh~~oganaaihy", - "deviceUUID": "c87f80fdbfa52859de2a813d657598b0fd6df74e" - }, - "pb-IF41UGlZIQ==": { - "display_string": [ - "\ue063KraZysoY56" - ], - "profiles": [], - "name": "\ue063KraZysoY56", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-01 13:39:06", - "registerOn": 1685907007.7179666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685907007.7179675, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685907007.7179766, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685907007.7179773, - "lastIP": "azo~{j~~vi\u007f", - "deviceUUID": "534ca8afe1a39ea924df59ae1f1c43b09bf1ac8d" - }, - "pb-IF4XDnY_": { - "display_string": [ - "\ue063jhonaskhan" - ], - "profiles": [], - "name": "\ue063jhonaskhan", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-31 16:40:56", - "registerOn": 1685911702.6142921, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685911702.6142933, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685911702.6143007, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685911702.614302, - "lastIP": "b}k~}kiakdaja\u007f", - "deviceUUID": "49e8d0580b7208b00968f7d8e5b37143681d70c3" - }, - "pb-IF4wUGkjCw==": { - "display_string": [ - "\ue063FreakySpe3" - ], - "profiles": [], - "name": "\ue063FreakySpe3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-29 13:04:41", - "registerOn": 1685912428.7677534, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685912428.7677543, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685912428.767761, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685912428.767762, - "lastIP": "a\u007fk~~aiajb{vb~a", - "deviceUUID": "5dde55d6a857a6f1dd668612ad69900383c0fec5" - }, - "pb-IF5UUGooLw==": { - "display_string": [ - "\ue030Android65138693" - ], - "profiles": [], - "name": "\ue030Android65138693", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-26 22:54:32", - "registerOn": 1685913674.4329515, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685913674.432953, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685913674.432962, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685913674.4329631, - "lastIP": "awk~~oaaib~vh\u007f", - "deviceUUID": "e90533c392f4069119f41beaf17dc6f54da5450c" - }, - "pb-IF4DUGkvMw==": { - "display_string": [ - "\ue030Android65160470" - ], - "profiles": [], - "name": "\ue030Android65160470", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-30 10:30:05", - "registerOn": 1685914622.9735868, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685914622.9735878, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685914622.9735968, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685914622.9735978, - "lastIP": "a\u007fk~}mcaleaig}", - "deviceUUID": "6eff1597565fad52642ef84e5a11bcf454860457" - }, - "pb-IF4TUmcFEQ==": { - "display_string": [ - "\ue030Android55478779" - ], - "profiles": [], - "name": "\ue030Android55478779", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-21 05:14:27", - "registerOn": 1685918000.4103146, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685918000.4103153, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685918000.410333, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685918000.4103336, - "lastIP": "axk~}ifameaihy", - "deviceUUID": "9f182025060954e36dc1f5c98753be6fb09b3311", - "cMsgCount": 0, - "lastMsgTime": 1685920055.2328463, - "lastMsg": "pm", - "cSameMsg": 0 - }, - "pb-IF4pU1U8VQ==": { - "display_string": [ - "\ue030Android64197238" - ], - "profiles": [], - "name": "\ue030Android64197238", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-06 08:03:00", - "registerOn": 1685918086.6602764, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685918086.6602774, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686001440.277382, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686001440.2773833, - "lastIP": "a~i~vj~xl~}ji", - "deviceUUID": "10c5129130345ffd919d3546c3dc1729aa6ba63f", - "cMsgCount": 0, - "lastMsgTime": 1685920128.735492, - "lastMsg": "cya", - "cSameMsg": 0 - }, - "pb-IF4PUGFaAQ==": { - "display_string": [ - "\ue063HybridPrac" - ], - "profiles": [], - "name": "\ue063HybridPrac", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-12 21:11:13", - "registerOn": 1685923022.8331542, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685923022.8331552, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685923022.8331628, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685923022.8331637, - "lastIP": "azj~zo~}iaami", - "deviceUUID": "b47755b33b19af71368a2901eece694bd27fbec6" - }, - "pb-IF5TUGo6VQ==": { - "display_string": [ - "\ue030Android65141946" - ], - "profiles": [], - "name": "\ue030Android65141946", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-27 13:15:10", - "registerOn": 1685924030.65205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685924030.6520507, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686305994.3953445, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686309269.6483343, - "lastIP": "bxvc{ve\u007fvayo", - "deviceUUID": "8d3fe4543537d59a49571b4432ccf773907d5082", - "cMsgCount": 0, - "lastMsgTime": 1686207166.0594919, - "lastMsg": "damn playing on phone is hard", - "cSameMsg": 0 - }, - "pb-IF5cVVM-": { - "display_string": [ - "\ue063NoName44141d", - "\ue030Android25982590", - "\ue030Android25872152" - ], - "profiles": [], - "name": "\ue063NoName44141d", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-16 13:19:09", - "registerOn": 1685933443.282893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685933443.282894, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685933443.2829227, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685933443.2829237, - "lastIP": "a~h~}jdaaeaj`{", - "deviceUUID": "6f571c9657a3e7ceca4d0a2ef9b68f16c33be75e" - }, - "pb-IF4UUGpcAg==": { - "display_string": [ - "\ue063Incapab358" - ], - "profiles": [], - "name": "\ue063Incapab358", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 20:48:03", - "registerOn": 1685935646.9163792, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685935646.9163797, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685935646.9163883, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685935646.9163897, - "lastIP": "azo~|`~yk~w", - "deviceUUID": "f111b097cde33f2e01db83d80c85b0cbe9370ccd" - }, - "pb-IF4nUnZfJg==": { - "display_string": [ - "\ue063Loiteri140" - ], - "profiles": [], - "name": "\ue063Loiteri140", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-25 20:40:52", - "registerOn": 1685938489.170622, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685938489.170623, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686302409.8964097, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686302409.8964112, - "lastIP": "azo~|j~}meai`v", - "deviceUUID": "4ba0df99dfeca7b3c40f7493f1c2420e1b54ed88", - "cMsgCount": 0, - "lastMsgTime": 1685944310.3927112, - "lastMsg": "game rame x", - "cSameMsg": 0 - }, - "pb-IF5UVEMIIg==": { - "display_string": [ - "\ue063OM189" - ], - "profiles": [], - "name": "\ue063OM189", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-29 08:48:11", - "registerOn": 1685939148.0819814, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685939148.0819821, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685939148.0825412, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685943309.940392, - "lastIP": "azo~|j~}liajb|", - "deviceUUID": "787c0e5b9335d70682a4629f650dd827a524180f" - }, - "pb-IF4-Uk4mEA==": { - "display_string": [ - "\ue063GroaningGl", - "\ue030Android59807208" - ], - "profiles": [], - "name": "\ue063GroaningGl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-09 11:11:12", - "registerOn": 1685942794.539002, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685942794.5390022, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686199898.1916113, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686199959.4036028, - "lastIP": "dvvcxvg{vdx", - "deviceUUID": "b1920ab07bd50671fd0897a7c4ccab774e5adc53", - "cMsgCount": 2, - "lastMsgTime": 1685984834.6377387, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4uUk4vMg==": { - "display_string": [ - "\ue063FuriousPhy" - ], - "profiles": [], - "name": "\ue063FuriousPhy", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-09 11:10:37", - "registerOn": 1685942879.6264908, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685942879.6264913, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686201500.3643978, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686199913.2375226, - "lastIP": "a~h~}jgaic~vb\u007f", - "deviceUUID": "6635c2af1bf357a9e95bbf3d6082a39d14dc3cdb", - "cMsgCount": 0, - "lastMsgTime": 1686201500.3645527, - "lastMsg": "mc", - "cSameMsg": 0 - }, - "pb-IF4CUGJeEw==": { - "display_string": [ - "\ue063theonlyjay" - ], - "profiles": [], - "name": "\ue063theonlyjay", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-18 17:33:13", - "registerOn": 1685943083.3394043, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685943083.339405, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685943083.3394158, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685943083.339417, - "lastIP": "a}j~~oba`gan", - "deviceUUID": "c9f528d7195d6911a320906a90e3bbfde07ba8a8" - }, - "pb-IF4VUGYlAg==": { - "display_string": [ - "\ue063gangster16" - ], - "profiles": [], - "name": "\ue063gangster16", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-17 11:55:33", - "registerOn": 1685943290.1644864, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685943290.1644874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685943290.1644957, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685943290.164497, - "lastIP": "a\u007fn~}icaic\u007fvaym", - "deviceUUID": "29cdc90ebdf75418117de71202892201257e64a2" - }, - "pb-IF5WUGsqEA==": { - "display_string": [ - "\ue030Android65178811", - "\ue030Android65178798", - "\ue030Android65178855", - "\ue030Android65178720", - "\ue030Android65178877" - ], - "profiles": [], - "name": "\ue030Android65178798", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-02 14:31:01", - "registerOn": 1685943633.7843394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685943633.7843401, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685943633.78435, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685943633.7843509, - "lastIP": "a\u007fn~}ieaje\u007fva", - "deviceUUID": "36fc8a1b57badfe90fd4d68322c19b78bf01d58a" - }, - "pb-IF4mU3IFMw==": { - "display_string": [ - "\ue063MeanestRe2" - ], - "profiles": [], - "name": "\ue063MeanestRe2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 22:05:54", - "registerOn": 1685943837.2628474, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685943837.2628481, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686142661.5874627, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686142661.5874636, - "lastIP": "a\u007fk~}i~~neajd}", - "deviceUUID": "317d3f94f15c9f0fcc8e560f5fa6377a7227f862", - "cMsgCount": 0, - "lastMsgTime": 1685944753.8412697, - "lastMsg": "i will kill u mf", - "cSameMsg": 0 - }, - "pb-IF4pU2ICCg==": { - "display_string": [ - "\ue063BroadestNi" - ], - "profiles": [], - "name": "\ue063BroadestNi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-06 12:54:25", - "registerOn": 1685944021.2030756, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685944021.2030766, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686245976.907569, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686245976.9075701, - "lastIP": "azo~|j~}heaib", - "deviceUUID": "8003a9b2cc7893c194deb4d708f9cde2b6e43b1e" - }, - "pb-IF4NUGgHNg==": { - "display_string": [ - "\ue030Android65184233" - ], - "profiles": [], - "name": "\ue030Android65184233", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-03 10:32:01", - "registerOn": 1685944331.3900971, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685944331.3900979, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685944331.3901045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685944331.3901052, - "lastIP": "a~o~}hea`daif|", - "deviceUUID": "330eb667ecfe97e21fc7087be2f944a07c082b3f" - }, - "pb-IF4dU2QjBA==": { - "display_string": [ - "\ue063DapperDust", - "\ue030Android44222806" - ], - "profiles": [], - "name": "\ue063DapperDust", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-13 13:46:57", - "registerOn": 1685944334.16583, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685944334.1658306, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685944334.1658368, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685944334.165838, - "lastIP": "evvhvvc\u007fvb{l", - "deviceUUID": "aca0e48b8fe3a60a49e99425b57aff3b64ef6ddd" - }, - "pb-IF4UUGZeIw==": { - "display_string": [ - "\ue030Android65048982" - ], - "profiles": [], - "name": "\ue030Android65048982", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-12 16:30:38", - "registerOn": 1685944554.0746489, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685944554.0746493, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685944554.0746562, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685944554.0746574, - "lastIP": "azj~z`~~`iai`\u007f", - "deviceUUID": "a7f0bac72e6969b0309781f12e80696d4d6d38d3" - }, - "pb-IF41UlMNFw==": { - "display_string": [ - "\ue063ArdentInit" - ], - "profiles": [], - "name": "\ue063ArdentInit", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-29 19:17:48", - "registerOn": 1685944777.941883, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685944777.9418836, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685944777.94189, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685944777.941891, - "lastIP": "azo~zi~~iiakh", - "deviceUUID": "893dee28c59b38cfaeeeac4571f46645ca7d8005" - }, - "pb-IF4mVGZaCw==": { - "display_string": [ - "\ue063iBombsquad" - ], - "profiles": [], - "name": "\ue063iBombsquad", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-11 23:42:41", - "registerOn": 1685945326.9670177, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685945326.9670186, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686115231.5654988, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686115231.5655007, - "lastIP": "dvvc}va|a~}o", - "deviceUUID": "5443e8995950585d3d18b3f58b0e281b86b8d92b", - "cMsgCount": 1, - "lastMsgTime": 1686115241.383992, - "lastMsg": " ", - "cSameMsg": 0 - }, - "pb-IF4hUmYfMA==": { - "display_string": [ - "\ue063UnheardCe3" - ], - "profiles": [], - "name": "\ue063UnheardCe3", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-20 18:59:39", - "registerOn": 1685945389.156675, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685945389.1566756, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685945389.1566825, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685945389.1566834, - "lastIP": "d|vbzh~~miaie{", - "deviceUUID": "ad7801172f7d74deb78fee7fdb9a1c34416f26a3" - }, - "pb-IF5RUGxdLA==": { - "display_string": [ - "\ue063Android65184544" - ], - "profiles": [], - "name": "\ue063Android65184544", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-03 12:00:28", - "registerOn": 1685946331.5966318, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685946331.5966334, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685946331.5966408, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685946855.6114585, - "lastIP": "a~h~}jdai`wvdz", - "deviceUUID": "c53329505d50b82632899f6e92e0f402d9550725", - "cMsgCount": 0, - "lastMsgTime": 1685946437.176685, - "lastMsg": "/em hi", - "cSameMsg": 0 - }, - "pb-IF5XUGYhDQ==": { - "display_string": [ - "\ue063AcidicBeat" - ], - "profiles": [], - "name": "\ue063AcidicBeat", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-30 06:30:39", - "registerOn": 1685946456.5047605, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685946456.504761, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686108923.178496, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686108923.1784973, - "lastIP": "azo~{n~~ibai`z", - "deviceUUID": "b1aca8f0a101de39f68a0aa1b4c592d9c46fc9b0" - }, - "pb-IF4CUGQtDA==": { - "display_string": [ - "\ue063LitDevice3" - ], - "profiles": [], - "name": "\ue063LitDevice3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-01 22:03:26", - "registerOn": 1685947436.4259882, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685947436.4259887, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685947436.4259953, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685947436.425996, - "lastIP": "awk~wj~}hdaia~", - "deviceUUID": "513c6269878ff0fc19be8f206c0d68e96b0c06c7" - }, - "pb-IF5QUGc7Ng==": { - "display_string": [ - "\ue063Effecti295" - ], - "profiles": [], - "name": "\ue063Effecti295", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-06 12:41:16", - "registerOn": 1685947499.3755748, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685947499.3755755, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685947499.3755827, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685947499.375584, - "lastIP": "a\u007fa~}mbaii~vfv", - "deviceUUID": "9e3990efa1cdddcba6f055914d8b4cd6fc1ea9f9" - }, - "pb-IF4-UGIEXQ==": { - "display_string": [ - "\ue063LocalEnume" - ], - "profiles": [], - "name": "\ue063LocalEnume", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-23 11:28:39", - "registerOn": 1685948396.8749657, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685948396.8749666, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686065461.537806, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686065759.7353733, - "lastIP": "azo~{a~~nbaiav", - "deviceUUID": "b360f68b4959d171a06bd29cb63b86a0291d844d" - }, - "pb-IF4WLEsf": { - "display_string": [ - "\ue063Thunderbir", - "\ue030Android32596318", - "\ue030Android39639104" - ], - "profiles": [], - "name": "\ue063Thunderbir", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-17 15:25:01", - "registerOn": 1685948481.193445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685948481.1934457, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685948481.193453, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685948481.193454, - "lastIP": "dvvcxvb{i~}`", - "deviceUUID": "bb005f8125b4cc2437589e64b1e0bfd55757fbf1", - "cMsgCount": 0, - "lastMsgTime": 1685948641.2403412, - "lastMsg": ". test", - "cSameMsg": 0 - }, - "pb-IF4LUGYKPw==": { - "display_string": [ - "\ue063BrinyLunat" - ], - "profiles": [], - "name": "\ue063BrinyLunat", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-20 12:48:37", - "registerOn": 1685949905.9817863, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685949905.9817874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686302772.2537396, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686302772.253741, - "lastIP": "a~n~}hfak`amf", - "deviceUUID": "6afd5a128c0a5a36176d7b5d5cb6f2d966270775", - "cMsgCount": 0, - "lastMsgTime": 1686303133.7794306, - "lastMsg": "hi guys", - "cSameMsg": 0 - }, - "pb-IF4QVXUqDg==": { - "display_string": [ - "\ue063ismartrohi" - ], - "profiles": [], - "name": "\ue063ismartrohi", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-02 16:35:13", - "registerOn": 1685950594.2325294, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685950594.2325299, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685950594.2325387, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685950594.2325397, - "lastIP": "azj~zo~wi~}ib", - "deviceUUID": "b444df0e41b7b166009a05df8e7cb4794be462e4" - }, - "pb-IF4dVVMqEA==": { - "display_string": [ - "\ue063Faction196" - ], - "profiles": [], - "name": "\ue063Faction196", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-26 20:03:03", - "registerOn": 1685950837.3734207, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685950837.373422, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685950837.373431, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685950837.3734322, - "lastIP": "a\u007fn~}iaakfaje~", - "deviceUUID": "f6c530a85834c01bb46f1bd7383c924f201b1a3e" - }, - "pb-IF4LVWEaPw==": { - "display_string": [ - "\ue063Dominat692", - "\ue030Android48339049" - ], - "profiles": [], - "name": "\ue063Dominat692", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-13 13:49:21", - "registerOn": 1685950908.6641426, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685950908.6641433, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685950908.664151, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685950908.6641524, - "lastIP": "dvvcyvb}i~~ha", - "deviceUUID": "cffd61797fd9d0f1729ffe7d0fd4f83e51898ffd" - }, - "pb-IF4GUGc_XA==": { - "display_string": [ - "\ue063GMDNB" - ], - "profiles": [], - "name": "\ue063GMDNB", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-20 14:00:03", - "registerOn": 1685951066.5271678, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685951066.5271685, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685951066.5271769, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685951066.527178, - "lastIP": "azj~z`~|o~~`d", - "deviceUUID": "1c839c5f99a02958384150fbadd025922191c34a" - }, - "pb-IF4iUms9Nw==": { - "display_string": [ - "\ue030Android55879409" - ], - "profiles": [], - "name": "\ue030Android55879409", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-07 16:11:41", - "registerOn": 1685951182.1655111, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685951182.1655118, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685951182.16552, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685951182.1655211, - "lastIP": "azi~}mdaje\u007fva}l", - "deviceUUID": "c5e62bee1e71c6647970f10472027e224f31044a" - }, - "pb-IF4JUGkiEw==": { - "display_string": [ - "\ue063RegalCroc4" - ], - "profiles": [], - "name": "\ue063RegalCroc4", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-02 13:10:04", - "registerOn": 1685951345.9847665, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685951345.9847672, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685951345.9847734, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685951345.9847744, - "lastIP": "a\u007fn~}hcaia}va|i", - "deviceUUID": "78a7e63c8b9a8c1c1e85c53b69d24874935ee75d" - }, - "pb-IF5WUmVdDQ==": { - "display_string": [ - "\ue063Electroo" - ], - "profiles": [], - "name": "\ue063Electroo", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-28 12:28:16", - "registerOn": 1685951560.458657, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685951560.4586577, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686312031.8651395, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686312031.865141, - "lastIP": "a\u007fk~~ncaii~ve}", - "deviceUUID": "6e77e4d6569489606b21c74613feb3498cce0cc9" - }, - "pb-IF49U1gjIg==": { - "display_string": [ - "\ue063Connect125" - ], - "profiles": [], - "name": "\ue063Connect125", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-28 19:18:46", - "registerOn": 1685952902.6431344, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685952902.6431358, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685952902.6431644, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685952902.6431653, - "lastIP": "azj~zo~wl~~o`", - "deviceUUID": "f82371239f6107dad9d22551ead0db03f86b552c" - }, - "pb-IF4oVUw_Uw==": { - "display_string": [ - "\ue063singhprith" - ], - "profiles": [], - "name": "\ue063singhprith", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-23 19:30:50", - "registerOn": 1685953008.0897582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685953008.0897589, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685953008.0897677, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685953008.0897686, - "lastIP": "dvvcyvbzvg|", - "deviceUUID": "d24bae5fdb4f7cc1b1ebec8f198cc82573feb044" - }, - "pb-IF4oUGYGNA==": { - "display_string": [ - "\ue063pranitsoma" - ], - "profiles": [], - "name": "\ue063pranitsoma", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-18 13:23:56", - "registerOn": 1685953145.6128955, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685953145.6128962, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685953145.6129045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685953145.6129055, - "lastIP": "a\u007fk~}leai`zva\u007f", - "deviceUUID": "5f94715e1ae59e2fa9d499799e47194888c6f7d9" - }, - "pb-IF42UGg4Vw==": { - "display_string": [ - "\ue063SHEBBYBOLT" - ], - "profiles": [], - "name": "\ue063SHEBBYBOLT", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-28 12:12:12", - "registerOn": 1685953632.4692569, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685953632.4692578, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685953632.4692657, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685953632.4692667, - "lastIP": "a\u007fk~~j`aacaog", - "deviceUUID": "e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb" - }, - "pb-IF43UBIIFQ==": { - "display_string": [ - "\ue063PrimLieute" - ], - "profiles": [], - "name": "\ue063PrimLieute", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-28 14:43:52", - "registerOn": 1685954133.8329258, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685954133.8329263, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685954133.832933, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685959570.0873728, - "lastIP": "dvvc{vaxl~~le", - "deviceUUID": "43f025b93e7eb580fdce4a93aa338f5ed5556390" - }, - "pb-IF42U2IHUA==": { - "display_string": [ - "\ue063Crystall58", - "\ue030Android63626212", - "\ue030Android63626171", - "\ue030Android63626178", - "\ue030Android63626214" - ], - "profiles": [], - "name": "\ue063Crystall58", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-08 23:39:32", - "registerOn": 1685954514.2947984, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685954514.2947989, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685954514.2948048, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685954514.2948055, - "lastIP": "a\u007fk~~mhaicvva}", - "deviceUUID": "8f9ad87f82377a16f1bb24f26c72efbe07ef4a05" - }, - "pb-IF4cUkM4KA==": { - "display_string": [ - "\ue063PANZERGMER" - ], - "profiles": [], - "name": "\ue063PANZERGMER", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-25 22:42:09", - "registerOn": 1685954696.036972, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685954696.0369725, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685954696.0369794, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685956494.5202186, - "lastIP": "a\u007fn~}idaig~vix", - "deviceUUID": "9bc7a3f5775e72da256f5f41eab0f446aaadc746" - }, - "pb-JiNJARFTUUFDX11GF0JVU1ZKGUhYQ1BK": { - "display_string": [ - "\ue063asxd", - "\ue030Android13750069" - ], - "profiles": [], - "name": "\ue063asxd", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-27 13:50:16", - "registerOn": 1685954713.1593907, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685954713.159391, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685954713.1593995, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685954713.1594007, - "lastIP": "azo~{a~~obaob", - "deviceUUID": "13fd4d208b3983f6e77c54b188c869c0b4091f3a" - }, - "pb-IF4RUxcRVw==": { - "display_string": [ - "\ue063Varshan" - ], - "profiles": [], - "name": "\ue063Varshan", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-24 19:18:47", - "registerOn": 1685954723.1018844, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685954723.1018848, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685954723.101892, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685954723.1018932, - "lastIP": "azo~{a~}kdajd}", - "deviceUUID": "76d4fe03c8f284420c1c788c4dfb75b38f4588c3" - }, - "pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB": { - "display_string": [ - "\ue063OpposingB3", - "\ue030Android18391339", - "\ue030PC201741", - "\ue030PC267200", - "\ue030Android46919247" - ], - "profiles": [], - "name": "\ue063OpposingB3", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-17 21:00:43", - "registerOn": 1685955431.9300346, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685955431.930035, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685979592.5915966, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685976403.5305557, - "lastIP": "b}k~~ohaja}vh|", - "deviceUUID": "78c06b4d948c8b6425fd95b584f9c5243e2bfa5b", - "cMsgCount": 0, - "lastMsgTime": 1685983369.10423, - "lastMsg": "hi friends", - "cSameMsg": 0 - }, - "pb-IF4zUGMGBg==": { - "display_string": [ - "\ue063NighBluepr" - ], - "profiles": [], - "name": "\ue063NighBluepr", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-29 14:29:48", - "registerOn": 1685955770.0895994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685955770.0896, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685955770.0896068, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685955770.089608, - "lastIP": "bxvf\u007fvayh~zl", - "deviceUUID": "e4c808c21493a1022f76463583bc441199cb7acc" - }, - "pb-IF5SUGs7IQ==": { - "display_string": [ - "\ue063BrassCongr" - ], - "profiles": [], - "name": "\ue063BrassCongr", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-02 13:57:15", - "registerOn": 1685956048.1445167, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685956048.1445172, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685956048.144523, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685956048.144524, - "lastIP": "aakhaih~ve|", - "deviceUUID": "9dbfce80064bf80513dc56dc995de0bf29d30153" - }, - "pb-IF5UU1UmNQ==": { - "display_string": [ - "\ue063Insisten38" - ], - "profiles": [], - "name": "\ue063Insisten38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-27 14:22:14", - "registerOn": 1685956212.724916, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685956212.7249167, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685956212.7249253, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685956212.7249262, - "lastIP": "azj~zo~|l~}hc", - "deviceUUID": "dde6b79db3ce96a18320f048758cdee0f0149fa8" - }, - "pb-IF4tVGtfDQ==": { - "display_string": [ - "\ue063Mudasser14" - ], - "profiles": [], - "name": "\ue063Mudasser14", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-14 17:08:08", - "registerOn": 1685956400.4949925, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685956400.494993, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685956400.4949994, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685956400.4950004, - "lastIP": "dvvc}va|a~~kg", - "deviceUUID": "20f7ffa7fc04ad49bcdee58ce9c8176c10a88710", - "cMsgCount": 0, - "lastMsgTime": 1685958015.6203492, - "lastMsg": "lol", - "cSameMsg": 0 - }, - "pb-IF4lUlBcCw==": { - "display_string": [ - "\ue063RainbowLo2" - ], - "profiles": [], - "name": "\ue063RainbowLo2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-14 21:11:51", - "registerOn": 1685956579.2852557, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685956579.2852561, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685956579.2852623, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685961377.839565, - "lastIP": "dvvd|vd~vaxm", - "deviceUUID": "c2eaf0fbd40a55ee44817b911bcb1124d8644b1f" - }, - "pb-IF5RUBUxAA==": { - "display_string": [ - "\ue063tenchogame" - ], - "profiles": [], - "name": "\ue063tenchogame", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-02 21:32:19", - "registerOn": 1685956811.0187001, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685956811.0187008, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685956811.0187397, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685956811.0187407, - "lastIP": "azo~|o~~lcaidw", - "deviceUUID": "86fe8f936634d05cef737a4a96ed579c3a881dfa" - }, - "pb-IF5VUkcmUA==": { - "display_string": [ - "\ue063Precipit18" - ], - "profiles": [], - "name": "\ue063Precipit18", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-30 16:13:18", - "registerOn": 1685957216.4589481, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685957216.4589486, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685957216.4589555, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685957216.4589562, - "lastIP": "azo~{a~~lfa`g", - "deviceUUID": "f934967df86e38208cb04aabce935cc3aa2348f4" - }, - "pb-IF5TUlkMVg==": { - "display_string": [ - "\ue063Unyieldi20" - ], - "profiles": [], - "name": "\ue063Unyieldi20", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-12 17:40:51", - "registerOn": 1685957774.6326525, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685957774.6326532, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1685957914.5221596, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685957774.6326604, - "lastIP": "azo~|k~~`~~lg", - "deviceUUID": "ebc5870b653cf4d77c0986cb482cc0d6bdcd6acf", - "cMsgCount": 0, - "lastMsgTime": 1685957974.602088, - "lastMsg": "&I m ur baap", - "cSameMsg": 0 - }, - "pb-IF4xVUUeFA==": { - "display_string": [ - "\ue063SHAD0WoooD" - ], - "profiles": [], - "name": "\ue063SHAD0WoooD", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-18 17:03:33", - "registerOn": 1685958633.7969675, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685958633.7969682, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685958633.7969759, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685958633.7969768, - "lastIP": "bxvc{vayvb{o", - "deviceUUID": "7052a5da1e6ade124c9cc1b03d7c04831b7f788a" - }, - "pb-IF5SUmgtCA==": { - "display_string": [ - "\ue030Android55311626" - ], - "profiles": [], - "name": "\ue030Android55311626", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-13 22:58:42", - "registerOn": 1685958828.5448375, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685958828.544838, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685958828.544845, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685959075.1555228, - "lastIP": "avm~}kdaib}vavh", - "deviceUUID": "3896cef2537a53fb2de798bd27e2d073e25adaf6", - "cMsgCount": 0, - "lastMsgTime": 1685959067.6985152, - "lastMsg": "tg", - "cSameMsg": 0 - }, - "pb-IF4cUxYIHw==": { - "display_string": [ - "\ue063AnuragRdav", - "\ue030Android60597659" - ], - "profiles": [], - "name": "\ue063AnuragRdav", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-20 16:06:53", - "registerOn": 1685958832.845075, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685958832.8450754, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686296014.200382, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686296157.690599, - "lastIP": "azo~{l~~mhaiay", - "deviceUUID": "e35939a5a05156aed985c7d695addffc44e4728d" - }, - "pb-IF5VVWlSPQ==": { - "display_string": [ - "\ue063ChiseledDw" - ], - "profiles": [], - "name": "\ue063ChiseledDw", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-14 11:49:30", - "registerOn": 1685959831.7012515, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685959831.7012527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685959831.7012603, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685959831.7012613, - "lastIP": "dvvc}vb|n~}ja", - "deviceUUID": "084e6e96e4fb40741ddb70667bf4dce9f265402c" - }, - "pb-IF4qUGkeKw==": { - "display_string": [ - "\ue063HindPiano8" - ], - "profiles": [], - "name": "\ue063HindPiano8", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 22:01:46", - "registerOn": 1685960057.175928, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685960057.1759284, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685960057.1759355, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685960057.1759365, - "lastIP": "dxvbvvaxi~}hh", - "deviceUUID": "7ae1a8d1ce69e61161a1f93f7bbe4e38ac19de80" - }, - "pb-IF4zU0xdJw==": { - "display_string": [ - "\ue063Definiti43", - "\ue030Android64641876" - ], - "profiles": [], - "name": "\ue063Definiti43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 13:50:40", - "registerOn": 1685960507.8817341, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685960507.8817348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685960507.881743, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685960507.8817441, - "lastIP": "azo~{l~~oeamf", - "deviceUUID": "8c1625d722061b5e3dbdfe0ade097aee1c1bb82b" - }, - "pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG": { - "display_string": [ - "\ue063MrSilver", - "\ue030Android6358589" - ], - "profiles": [], - "name": "\ue063MrSilver", - "isBan": false, - "isMuted": false, - "accountAge": "2016-09-03 23:57:18", - "registerOn": 1685961134.3089206, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685961134.308921, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686334406.9868016, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686334406.986803, - "lastIP": "a\u007fn~~aeaa~vk", - "deviceUUID": "822adb43af454f4ce0fdec16028787c26c151d5f", - "cMsgCount": 0, - "lastMsgTime": 1686336606.4110544, - "lastMsg": "don't waste time others want to play", - "cSameMsg": 0 - }, - "pb-IF4pUGYPVg==": { - "display_string": [ - "\ue063Abovemen85" - ], - "profiles": [], - "name": "\ue063Abovemen85", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-15 13:29:46", - "registerOn": 1685961176.4121566, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685961176.4121573, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685961176.4121642, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685961176.412165, - "lastIP": "bxveaid{vb{j", - "deviceUUID": "dc09898bcb4f8e35daf44f32470ebbcbe27a6510" - }, - "pb-IF5cUGYKMg==": { - "display_string": [ - "\ue063Profita308" - ], - "profiles": [], - "name": "\ue063Profita308", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-06 09:34:09", - "registerOn": 1685961198.4990058, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685961198.4990063, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685976680.5708175, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685976680.570819, - "lastIP": "b}k~}jgaiawva|", - "deviceUUID": "6d6871c9c40104bba207db42744660421fd89b58" - }, - "pb-IF4IUGQ_JA==": { - "display_string": [ - "\ue063Avoidab320" - ], - "profiles": [], - "name": "\ue063Avoidab320", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-06 14:15:43", - "registerOn": 1685961231.6227832, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685961231.6227837, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685961231.6227918, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685961231.6227925, - "lastIP": "azo~{n~~iiajc", - "deviceUUID": "d56cc0bde721028608f72178d3918f956ae9179f" - }, - "pb-IF4GUlEdMg==": { - "display_string": [ - "\ue063burningki2" - ], - "profiles": [], - "name": "\ue063burningki2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-20 20:41:53", - "registerOn": 1685961437.4445975, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685961437.444598, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685961437.4446049, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685961437.4446056, - "lastIP": "azo~|k~}lfaidw", - "deviceUUID": "3b5c90df8c09e4434ca522d31aba6352854b75f2" - }, - "pb-IF5SUGIgUQ==": { - "display_string": [ - "\ue063HauntedChe" - ], - "profiles": [], - "name": "\ue063HauntedChe", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-09 09:26:02", - "registerOn": 1685961496.5747607, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685961496.5747616, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685961496.5747688, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685961496.57477, - "lastIP": "dxvbvvaxh~}jf", - "deviceUUID": "f62a132b4ec6e4258ba00feb8513935a2ab7c89e" - }, - "pb-IF4DVUggMQ==": { - "display_string": [ - "\ue030Android51767699" - ], - "profiles": [], - "name": "\ue030Android51767699", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-02 22:57:17", - "registerOn": 1685961502.9235206, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685961502.9235213, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685961502.9235284, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685961502.92353, - "lastIP": "a\u007fn~}i`ajayvhz", - "deviceUUID": "43611ce2944e73347a4ac8b5e6574f2c1d32cc73" - }, - "pb-IF4BVW48MQ==": { - "display_string": [ - "\ue063NomadicBee" - ], - "profiles": [], - "name": "\ue063NomadicBee", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-17 21:14:06", - "registerOn": 1685961930.4607494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685961930.4607499, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685961930.4607568, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685961930.4607577, - "lastIP": "a\u007fn~~ahaleai`\u007f", - "deviceUUID": "cf8415f59df258e6ca497540f7ee163071f49d03" - }, - "pb-IF4nU0Y4PQ==": { - "display_string": [ - "\ue063Maligna245" - ], - "profiles": [], - "name": "\ue063Maligna245", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-07 13:48:56", - "registerOn": 1685963166.1611626, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685963166.161163, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685963166.1611707, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685963166.1611717, - "lastIP": "azo~{a~}hcaog", - "deviceUUID": "001316776f320aa89a1ba2663fad6a2f16700aa6" - }, - "pb-IF41VVUtFQ==": { - "display_string": [ - "\ue063tengentlea" - ], - "profiles": [], - "name": "\ue063tengentlea", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-04 13:43:32", - "registerOn": 1685963340.8313906, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685963340.8313916, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685963340.8313985, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685963340.8313992, - "lastIP": "dvvcxva~o~~n", - "deviceUUID": "0ca104e06e129386ee3781029af927e4798f09ef" - }, - "pb-IF4QUGcKKg==": { - "display_string": [ - "\ue063TGg27Royce" - ], - "profiles": [], - "name": "\ue063TGg27Royce", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-24 16:06:57", - "registerOn": 1685963421.2316709, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685963421.2316718, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685963421.2316794, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685963421.2316802, - "lastIP": "dvvcxvb~i~{", - "deviceUUID": "49218b0b2460f23cabb571228f64931bc99b4960" - }, - "pb-IF4gUloxKA==": { - "display_string": [ - "\ue063teamRFKOxx" - ], - "profiles": [], - "name": "\ue063teamRFKOxx", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-23 18:28:02", - "registerOn": 1685963629.0717094, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685963629.07171, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685963629.0717182, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685963629.0717194, - "lastIP": "azo~{l~~laajby", - "deviceUUID": "c07ed77b24acb9388a1c0e09f55c4e33cdf9ae75" - }, - "pb-IF4jUGo5LA==": { - "display_string": [ - "\ue063DMJatin04" - ], - "profiles": [], - "name": "\ue063DMJatin04", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-05 15:54:20", - "registerOn": 1685965407.15324, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685965407.1532407, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685965407.1534455, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685965407.1534479, - "lastIP": "dxviakfald", - "deviceUUID": "9bb8080442be75fab31748fe6040be3a195d2837" - }, - "pb-IF4DUlIREQ==": { - "display_string": [ - "\ue063Conifer620" - ], - "profiles": [], - "name": "\ue063Conifer620", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-26 11:56:38", - "registerOn": 1685965522.586901, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685965522.5869017, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685965522.5869098, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685967359.507282, - "lastIP": "a\u007fn~~afaihak", - "deviceUUID": "bbeb374668af9986c834734e64be532aa2ef1e50" - }, - "pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB": { - "display_string": [ - "\ue030Rikko", - "\ue020SatellaReinhard", - "\ue047Nyaa! :3", - "\ue030SYSTEM ALERT CODE: 871\ue030", - "\ue030\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2593\n\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2593\u2592\u2592\u2593\u2588\u2588\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2593\n\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2592\u2592\u2588\u2588\n\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2593\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\n\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2592\u2592\u2593\u2588\u2593\n\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2588\u2588\u2592\u2588\u2588\u2592\u2592\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\n\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2592\u2593\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2592\u2592\u2592\u2592\u2588\u2588\n\u2591\u2591\u2591\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2588\u2592\u2588\u2592\u2592\u2592\u2588\u2588\n\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2593\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2592\u2588\u2593\n\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2593\u2588\u2588\n\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2593\u2588\u2588\u2588\u2588\u2588\n\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2593\u2591\u2591\u2588\u2588\n\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2593\n\u2591\u2593\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\n\u2588\u2588\u2591\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\n\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2593\n\u2591\u2591\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\n\u2588\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\n\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2588\u2593\n\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2593\u2588\u2588\u2588\n\u2591\u2593\u2588\u2588\u2593\u2591\u2591\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2593\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2593\u2592\u2592\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2588\u2588\u2588\u2588\u2593\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2593\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2588\u2588\u2592\u2592\u2592\u2588\u2588\u2588\u2593\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2592\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2593\u2588\u2588\u2593\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2592\u2593\u2588\u2588\u2588\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2593\u2588\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2592\u2592\u2592\u2593\u2588\u2588\u2588\u2593\u2591\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2592\u2592\u2588\u2588\u2591\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2592\u2588\u2588\u2591\u2593\u2588\u2591\u2591\u2591\u2591\u2591\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2588\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2588\u2592\u2592\u2592\u2588\u2588\u2591\u2591\u2591\u2591\u2593\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2591\u2591\u2591\u2588\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2593\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2588\u2588\u2588\u2593\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2593\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588" - ], - "profiles": [], - "name": "\ue047Nyaa! :3", - "isBan": false, - "isMuted": false, - "accountAge": "2016-06-04 13:35:45", - "registerOn": 1685965901.0248175, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685965901.0248182, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686403093.111333, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686403093.111334, - "lastIP": "a\u007fk~{`~~h`ajb|", - "deviceUUID": "rikkolovescats :3", - "cMsgCount": 0, - "lastMsgTime": 1686332943.9245696, - "lastMsg": "mine's used up", - "cSameMsg": 0 - }, - "pb-IF43UmkDVw==": { - "display_string": [ - "\ue063MaleDock12" - ], - "profiles": [], - "name": "\ue063MaleDock12", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-30 16:17:37", - "registerOn": 1685966915.3060563, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685966915.3060567, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685966915.3060627, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685966915.3060634, - "lastIP": "avn~~kbalcaih~", - "deviceUUID": "b881b50d4786a8f9b052d240f9571704dcbe1f34" - }, - "pb-IF4vUGpYNQ==": { - "display_string": [ - "\ue063SafestTwis" - ], - "profiles": [], - "name": "\ue063SafestTwis", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-05 17:22:08", - "registerOn": 1685967068.5365872, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685967068.536588, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685967068.5365944, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685967068.5365953, - "lastIP": "dxvbvvaxk~}he", - "deviceUUID": "ff6e3978d54416ac8d87779519dd3cacb0349935" - }, - "pb-IF4OU1MtBA==": { - "display_string": [ - "\ue063FrostedBe2" - ], - "profiles": [], - "name": "\ue063FrostedBe2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-26 17:25:58", - "registerOn": 1685967309.4734542, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685967309.4734552, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685967309.473463, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685967309.473464, - "lastIP": "azo~zi~~agajav", - "deviceUUID": "49f8a435697a4d01edf3b89519a11254b0073cd5" - }, - "pb-IF43F2ku": { - "display_string": [ - "\ue063Rambunct61" - ], - "profiles": [], - "name": "\ue063Rambunct61", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-15 19:16:38", - "registerOn": 1685967325.4910963, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685967325.4910967, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685967325.4911044, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685967325.4911056, - "lastIP": "azo~zi~~agam", - "deviceUUID": "d828c483c47f877c178329ce1c4e334a80196226", - "cMsgCount": 1, - "lastMsgTime": 1685968437.0099962, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5dUGlcJA==": { - "display_string": [ - "\ue063CrinklyHou" - ], - "profiles": [], - "name": "\ue063CrinklyHou", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-22 16:46:22", - "registerOn": 1685968982.717443, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685968982.7174435, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686233151.555451, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686233271.9901683, - "lastIP": "dvvc|vb{j~~k", - "deviceUUID": "234fb9f7627555d5496bb99f3102550c9f340d50" - }, - "pb-IF4RVGQmIA==": { - "display_string": [ - "\ue063MrJimmy370" - ], - "profiles": [], - "name": "\ue063MrJimmy370", - "isBan": true, - "isMuted": false, - "accountAge": "2019-09-01 15:03:55", - "registerOn": 1685969029.8619387, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685969029.8619392, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685969029.8619463, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685969029.8619473, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF5XUkoGDw==": { - "display_string": [ - "\ue063AerialMark", - "\ue030Android54465033" - ], - "profiles": [], - "name": "\ue063AerialMark", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-12 22:40:28", - "registerOn": 1685969664.8531618, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685969664.8531623, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686229026.8528214, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686241704.05673, - "lastIP": "dxvia`iaid\u007f", - "deviceUUID": "28f13e74c66a938e7181be1e72c3c9f925f0833c" - }, - "pb-JiNJARFaXUdIVF9DEEBVV1NFEkFbRVJA": { - "display_string": [ - "\ue063NoNameB2036250" - ], - "profiles": [], - "name": "\ue063NoNameB2036250", - "isBan": false, - "isMuted": false, - "accountAge": "2016-09-16 21:53:03", - "registerOn": 1685970469.7507224, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685970469.750723, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685970469.7507293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685970469.75073, - "lastIP": "dvvc|vb{k~|m", - "deviceUUID": "a840fdfe07ea29ce95e445516bcfd59f7dc6277d" - }, - "pb-IF4QUm8kEw==": { - "display_string": [ - "\ue063CrayCrayPe" - ], - "profiles": [], - "name": "\ue063CrayCrayPe", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-27 21:18:23", - "registerOn": 1685970891.4767854, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685970891.476786, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685970891.476792, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685970891.476793, - "lastIP": "b}k~~oha`ban", - "deviceUUID": "b62f42ff36ab612bf99ec7028d9549327d68dac6", - "cMsgCount": 0, - "lastMsgTime": 1685970914.3445697, - "lastMsg": "Dr boom you are girl", - "cSameMsg": 0 - }, - "pb-IF5UU0M7Lw==": { - "display_string": [ - "\ue063Doreamon15" - ], - "profiles": [], - "name": "\ue063Doreamon15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-12 19:09:28", - "registerOn": 1685970912.748377, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685970912.7483776, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1685979581.3148272, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685979559.1529636, - "lastIP": "azo~|k~~ibaje{", - "deviceUUID": "fbd8b7f3cf73385e52f221663a97a9d327336552", - "cMsgCount": 0, - "lastMsgTime": 1685979712.3648002, - "lastMsg": "yesss bhaii", - "cSameMsg": 0 - }, - "pb-IF5XUxZYPQ==": { - "display_string": [ - "\ue030Android60313630" - ], - "profiles": [], - "name": "\ue030Android60313630", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-07 20:03:22", - "registerOn": 1685971547.9375496, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685971547.93755, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686155299.1505964, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686155299.1505973, - "lastIP": "azj~zo~}kea`h", - "deviceUUID": "106fd9bcc2e71b23abc2a7eaaff570ef2f3a8c9c" - }, - "pb-IF5dU2ZdPA==": { - "display_string": [ - "\ue063Aviral17" - ], - "profiles": [], - "name": "\ue063Aviral17", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-12 15:00:41", - "registerOn": 1685971644.524978, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685971644.5249784, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685971644.524986, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685972033.696534, - "lastIP": "dvvcyvaxva~j", - "deviceUUID": "e391a4fdf45e69e758c5202e88891fe58c558d00" - }, - "pb-IF4uUGgkDA==": { - "display_string": [ - "\ue063VKkiller12" - ], - "profiles": [], - "name": "\ue063VKkiller12", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-28 21:48:39", - "registerOn": 1685971773.023331, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685971773.0233314, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685971773.023345, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685971773.0233462, - "lastIP": "azo~{a~~ohalf", - "deviceUUID": "7cbb6eb8b2486858b0df656e0852e6ad2db7178f" - }, - "pb-IF4LUGkjCw==": { - "display_string": [ - "\ue063NoNameC3934649" - ], - "profiles": [], - "name": "\ue063NoNameC3934649", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 19:35:54", - "registerOn": 1685972034.00639, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685972034.0063906, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686028598.5003173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686028598.5003188, - "lastIP": "a~o~v`~~kgaig\u007f", - "deviceUUID": "bc46108a5ff0ba5614730dacead95713a4d2f607" - }, - "pb-IF4cU0wYCA==": { - "display_string": [ - "\ue063sinansinu1" - ], - "profiles": [], - "name": "\ue063sinansinu1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 11:40:37", - "registerOn": 1685972203.989924, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685972203.9899242, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685972203.98993, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685972203.989931, - "lastIP": "a\u007fn~}ifaicvva\u007fk", - "deviceUUID": "9bd0719f468b1052b5905674250e2d310ce84541" - }, - "pb-IF4mU24IHA==": { - "display_string": [ - "\ue063HanjalaRoc" - ], - "profiles": [], - "name": "\ue063HanjalaRoc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-21 23:10:46", - "registerOn": 1685972439.6790278, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685972439.6790285, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685972439.6790354, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685972523.6637678, - "lastIP": "a\u007fk~~kdajhajdv", - "deviceUUID": "dfd36173b41f75d5f24dd15f9424f76ecf76858d" - }, - "pb-IF4dU0UGUA==": { - "display_string": [ - "\ue063DhyeyO" - ], - "profiles": [], - "name": "\ue063DhyeyO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-07 21:23:57", - "registerOn": 1685972612.3178666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685972612.3178673, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685972612.3178735, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685972657.1402774, - "lastIP": "a\u007fk~wn~~a~~i", - "deviceUUID": "967c36e4252192ad783fa3a009098c2ade7f7538" - }, - "pb-JiNJARFdXENAVVtAE0RZUVRKFkZaQlRB": { - "display_string": [ - "\ue063SardonicMe" - ], - "profiles": [], - "name": "\ue063SardonicMe", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-06 03:52:48", - "registerOn": 1685972766.8210092, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685972766.8210094, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685972766.8210163, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685972766.8210173, - "lastIP": "d~vb|k~~a`alg", - "deviceUUID": "4a3e2ea65235069ceb455fbcf31bd869bb03dc8e" - }, - "pb-IF4uUGUhAg==": { - "display_string": [ - "\ue063SwampyWall" - ], - "profiles": [], - "name": "\ue063SwampyWall", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-11 23:23:51", - "registerOn": 1685973018.8430047, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685973018.8430052, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685973018.8430126, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685973018.8430135, - "lastIP": "a\u007fn~~afaiaakb", - "deviceUUID": "dfbeb4b8ccba9e5a5e00bd315d61e070ae830edc" - }, - "pb-IF4HUxAgVA==": { - "display_string": [ - "\ue063RJStyles78" - ], - "profiles": [], - "name": "\ue063RJStyles78", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-25 16:07:21", - "registerOn": 1685973044.9656126, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685973044.9656131, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685973044.9656186, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685973105.8575842, - "lastIP": "awk~wj~}hdaii{", - "deviceUUID": "1c2e32b63009fc9f53d2a8a4e61c80f8bf62cfae" - }, - "pb-IF4NUGcODw==": { - "display_string": [ - "\ue063Vocatio323" - ], - "profiles": [], - "name": "\ue063Vocatio323", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-27 20:59:16", - "registerOn": 1685973251.7647338, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685973251.7647343, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686143411.7416828, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686144978.8914135, - "lastIP": "a~o~va~}mbajav", - "deviceUUID": "8e222b5ae3b0de04712b410e8faf0a466938ad72" - }, - "pb-IF4nUxE4Nw==": { - "display_string": [ - "\ue030Android60071137" - ], - "profiles": [], - "name": "\ue030Android60071137", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-28 18:48:17", - "registerOn": 1685973278.8522978, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685973278.8522985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686167326.5397832, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686167326.5397844, - "lastIP": "a~h~}jfaih|vc", - "deviceUUID": "b34231d68d2acdd703b3c18d81a8ae0006f6b512" - }, - "pb-IF4JU0UyPA==": { - "display_string": [ - "\ue030Android63588030" - ], - "profiles": [], - "name": "\ue030Android63588030", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-04 23:02:28", - "registerOn": 1685973427.410749, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685973427.4107497, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685973427.410756, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685973427.410757, - "lastIP": "dvvb\u007fl~}icaad", - "deviceUUID": "681601b061cf7df031b544bc851296b41a82bb9e" - }, - "pb-IF4uVWguJw==": { - "display_string": [ - "\ue063praveenpr5", - "\ue030Android53098839" - ], - "profiles": [], - "name": "\ue063praveenpr5", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-28 21:21:44", - "registerOn": 1685973765.974381, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685973765.974382, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685973765.9743888, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685973765.97439, - "lastIP": "azo~{a~}lcaje}", - "deviceUUID": "0f8a14209c13fb2f633feff57ecfea617f762b31" - }, - "pb-IF4JVXcFVQ==": { - "display_string": [ - "\ue063AKSHATCHAW", - "\ue030Android51366599" - ], - "profiles": [], - "name": "\ue063AKSHATCHAW", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-17 23:21:31", - "registerOn": 1685973970.6744807, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685973970.6744812, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685973970.6744876, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685973970.6744888, - "lastIP": "a}j~~``aihvvazl", - "deviceUUID": "db06b38e3ab8852c52708ebd66d918875982828f" - }, - "pb-IF4hUGcPIg==": { - "display_string": [ - "\ue030Android65150871" - ], - "profiles": [], - "name": "\ue030Android65150871", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-28 18:10:28", - "registerOn": 1685974821.4036946, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685974821.4036958, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686058880.8581386, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686058880.85814, - "lastIP": "dvvb\u007fm~wj~~jb", - "deviceUUID": "c18b43fba210f6bb007166612f882c3996de8af7", - "cMsgCount": 0, - "lastMsgTime": 1685977550.2992752, - "lastMsg": "lol \ud83d\ude02", - "cSameMsg": 0 - }, - "pb-IF4iVXE5Pw==": { - "display_string": [ - "\ue063CaptainVed", - "\ue030Android45365695" - ], - "profiles": [], - "name": "\ue063CaptainVed", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-05 19:20:02", - "registerOn": 1685975122.5977833, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685975122.5977838, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685975122.59779, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685975122.5977907, - "lastIP": "b}k~}kaajcvvd\u007f", - "deviceUUID": "bc74db6c6acfaeeba21a4de1390ce93ec6c9dbd2" - }, - "pb-IF4DUGYHAA==": { - "display_string": [ - "\ue030Android65078232" - ], - "profiles": [], - "name": "\ue030Android65078232", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-17 07:41:56", - "registerOn": 1685975131.6084235, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685975131.6084244, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685975131.608432, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685975131.6084335, - "lastIP": "dvvcyvb~l~}ic", - "deviceUUID": "84e8c68a67793414f4f9ba929c4417de1a04f4b0" - }, - "pb-IF4KUGU4Ag==": { - "display_string": [ - "\ue030PC915062", - "\ue030Android64973595" - ], - "profiles": [], - "name": "\ue030PC915062", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-08 20:18:17", - "registerOn": 1685975205.977238, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685975205.977239, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685976040.1117458, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685976040.111747, - "lastIP": "axi~xn~wj~~a", - "deviceUUID": "ab062b2f56bf34617bc6536d54a99074e95c0353", - "cMsgCount": 0, - "lastMsgTime": 1685976632.5179102, - "lastMsg": "BRO LET IT", - "cSameMsg": 0 - }, - "pb-IF4PUGkJEA==": { - "display_string": [ - "\ue063YTBloodyMo" - ], - "profiles": [], - "name": "\ue063YTBloodyMo", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-03 14:53:00", - "registerOn": 1685975570.1230416, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685975570.123042, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685975570.1230495, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685975570.1230505, - "lastIP": "azo~zh~z`~}kb", - "deviceUUID": "7c86e1143d98393dcd27cab14d7ebc213eb9f450" - }, - "pb-IF4CUGdaAw==": { - "display_string": [ - "\ue030Android65090966" - ], - "profiles": [], - "name": "\ue030Android65090966", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-19 11:21:43", - "registerOn": 1685975587.2098699, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685975587.2098703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685975587.20988, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685975587.209881, - "lastIP": "a\u007fk~~adaniajaz", - "deviceUUID": "52b09993dacdd3646e05fa9c488446894f49c342" - }, - "pb-IF4jU0hTBg==": { - "display_string": [ - "\ue030Android63680318" - ], - "profiles": [], - "name": "\ue030Android63680318", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 21:42:01", - "registerOn": 1685975690.9718099, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685975690.9718103, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685975690.9718173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685975690.9718184, - "lastIP": "bxvc{vdvvb~o", - "deviceUUID": "572da91ad53e5051787810ec01cd77595d656ff1" - }, - "pb-IF4eU1gyCw==": { - "display_string": [ - "\ue063Glinting71" - ], - "profiles": [], - "name": "\ue063Glinting71", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-27 15:37:21", - "registerOn": 1685976335.6516411, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685976335.6516416, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685976335.6516721, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685976508.9400127, - "lastIP": "a~m~vn~}igaig~", - "deviceUUID": "489f0bee66d1dad5ce0c6a9be78e696fabba893d" - }, - "pb-IF4NUGcvKA==": { - "display_string": [ - "\ue063CrispyArc9" - ], - "profiles": [], - "name": "\ue063CrispyArc9", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-25 14:52:09", - "registerOn": 1685976398.8138375, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685976398.8138382, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685976398.8138447, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685976398.8138459, - "lastIP": "azo~zh~ya~}j`", - "deviceUUID": "6a8f789f1f0f92ee09df2bff239b3cd5050c73e5" - }, - "pb-IF5WUncEEw==": { - "display_string": [ - "\ue063Nighter420" - ], - "profiles": [], - "name": "\ue063Nighter420", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-25 19:39:21", - "registerOn": 1685976932.88525, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685976932.8852508, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685976932.8852577, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685976932.8852587, - "lastIP": "azj~z`~~`~}ja", - "deviceUUID": "cf5c72835b62b8f330918ca81be34d122d6dd659" - }, - "pb-IF4uV21ZEA==": { - "display_string": [ - "\ue063GrubbyDanc", - "\ue030Android29028586" - ], - "profiles": [], - "name": "\ue063GrubbyDanc", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-20 20:28:15", - "registerOn": 1685977536.3669941, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685977536.366995, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686231040.6568067, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686231040.656808, - "lastIP": "azo~zi~~vdw", - "deviceUUID": "7e3412b3e92bae57ff7007cd93dd057b6c080ca4" - }, - "pb-IF4FUBkNKA==": { - "display_string": [ - "\ue063SmilingBud" - ], - "profiles": [], - "name": "\ue063SmilingBud", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-13 02:43:19", - "registerOn": 1685977695.9848397, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685977695.9848402, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685977695.9848468, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685997697.7292037, - "lastIP": "a\u007fn~~adakba`i", - "deviceUUID": "f30012358ec0de133868baf5067fb664a4c67b54" - }, - "pb-IF48UGo6UQ==": { - "display_string": [ - "\ue063SkilledC16" - ], - "profiles": [], - "name": "\ue063SkilledC16", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-05 20:35:15", - "registerOn": 1685977744.878224, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685977744.8782246, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685977744.878231, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685977744.878232, - "lastIP": "bxvf|vavm~}hg", - "deviceUUID": "4c1a381b9a3a2a3b2737004bfe1316a1ddab8cd4" - }, - "pb-IF5XVUpZLw==": { - "display_string": [ - "\ue063sijuchetan" - ], - "profiles": [], - "name": "\ue063sijuchetan", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-29 13:29:31", - "registerOn": 1685978411.3123276, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685978411.3123288, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686065844.0490792, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686065844.0490806, - "lastIP": "azj~z`~|o~~hg", - "deviceUUID": "69b8d01e3fcd5aaeb058701366c29f1271e98638" - }, - "pb-IF4zUGY8Ig==": { - "display_string": [ - "\ue063FanaticFol" - ], - "profiles": [], - "name": "\ue063FanaticFol", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-15 22:36:32", - "registerOn": 1685979024.5936112, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685979024.593612, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685979024.5936198, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685979024.593621, - "lastIP": "a\u007fk~~nfajdzva}k", - "deviceUUID": "eb8fc0916eac71c46bf41253ebba1e20f2e490a9" - }, - "pb-IF5VV205HQ==": { - "display_string": [ - "\ue063LonesomeS2", - "\ue030Android55611124" - ], - "profiles": [], - "name": "\ue063LonesomeS2", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-08 19:42:55", - "registerOn": 1685979192.2299087, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685979192.2299094, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685979192.2299182, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685979192.2299194, - "lastIP": "b\u007fk~wi~}lbajb\u007f", - "deviceUUID": "522163288046e04a90becd388ed731ad92f2311f" - }, - "pb-IF4qUBINCQ==": { - "display_string": [ - "\ue063Imagina310" - ], - "profiles": [], - "name": "\ue063Imagina310", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-28 14:44:08", - "registerOn": 1685979274.4531727, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685979274.4531734, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685979274.45318, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685979274.453181, - "lastIP": "dvva{vayn~~mg", - "deviceUUID": "6113331a0d02023bfa234c6b3f1e860f44674701" - }, - "pb-IF4dUkspPw==": { - "display_string": [ - "\ue063Neon6657" - ], - "profiles": [], - "name": "\ue063Neon6657", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-25 16:00:18", - "registerOn": 1685979451.3290672, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685979451.329068, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685979451.3290737, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685979451.3290746, - "lastIP": "azo~{j~xve{", - "deviceUUID": "0a72a370012288e4f04d69d095ff266d3d05f78e" - }, - "pb-IF4DUGIGEw==": { - "display_string": [ - "\ue063Territo244" - ], - "profiles": [], - "name": "\ue063Territo244", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-22 15:48:04", - "registerOn": 1685979903.7427962, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685979903.7427971, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685979903.742805, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685979903.742806, - "lastIP": "azo~{n~~hdah", - "deviceUUID": "695b1e8b2e78bd42659b0e6265a8217e3091a3f3" - }, - "pb-IF4RUGhcMQ==": { - "display_string": [ - "\ue063Iconic7090" - ], - "profiles": [], - "name": "\ue063Iconic7090", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-23 22:58:27", - "registerOn": 1685980053.2992294, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685980053.2992306, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685980053.2992365, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685980053.299238, - "lastIP": "azo~zh~yl~}lc", - "deviceUUID": "a7f8fe5db7b2156d0f13ca86daad485819d1ae83" - }, - "pb-IF4PUGkSNQ==": { - "display_string": [ - "\ue063MerryRepub" - ], - "profiles": [], - "name": "\ue063MerryRepub", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-05 19:43:26", - "registerOn": 1685980470.0946712, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685980470.0946722, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685980470.09468, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685980470.0946813, - "lastIP": "azj~z`~~n~~kb", - "deviceUUID": "44d2ea2fac5848ed8d1f11b39256e85d4f2c9db1" - }, - "pb-IF5UVRUyLQ==": { - "display_string": [ - "\ue063GiftedAss2", - "\ue030Android46110889" - ], - "profiles": [], - "name": "\ue063GiftedAss2", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-24 23:32:19", - "registerOn": 1685980553.1799316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685980553.1799326, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685980553.1799405, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685980553.1799414, - "lastIP": "axi~xa~ym~~lc", - "deviceUUID": "0f81f60b82f152eb61d83e60f240953a4c1da051" - }, - "pb-IF4iUBUAKg==": { - "display_string": [ - "\ue063suuuuiiii3" - ], - "profiles": [], - "name": "\ue063suuuuiiii3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-23 11:28:53", - "registerOn": 1685981468.542778, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685981468.542779, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685981468.5427861, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685981468.542787, - "lastIP": "a\u007fn~~aham~}me", - "deviceUUID": "da176ecfda822976f7ca8c661cbedb226588cecf" - }, - "pb-IF4uUBMbMQ==": { - "display_string": [ - "\ue063IMMAGNUM97" - ], - "profiles": [], - "name": "\ue063IMMAGNUM97", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-10 21:23:13", - "registerOn": 1685981769.743353, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685981769.7433538, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685981769.7433631, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685981769.743364, - "lastIP": "a|j~~mdaliaiaw", - "deviceUUID": "95ddbc84bddc4bc10da7e1219450ada4b5d56657" - }, - "pb-IF5UVRgMKA==": { - "display_string": [ - "\ue063NoNameC3950568" - ], - "profiles": [], - "name": "\ue063NoNameC3950568", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-15 12:12:07", - "registerOn": 1685981778.756607, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685981778.7566078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685981778.7566628, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685981778.756664, - "lastIP": "azo~{a~~neale", - "deviceUUID": "137a1ce7c854376f947c691c9b5c76e40582bc1e", - "cMsgCount": 0, - "lastMsgTime": 1685983767.66283, - "lastMsg": "\ud83d\ude0f", - "cSameMsg": 0 - }, - "pb-IF4hUk0MKQ==": { - "display_string": [ - "\ue063rasmalai" - ], - "profiles": [], - "name": "\ue063rasmalai", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-08 22:54:38", - "registerOn": 1685981783.7668953, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685981783.766896, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685981783.7669048, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685981783.7669063, - "lastIP": "dxvazvbzh~xj", - "deviceUUID": "032c6b4f8a9ea00d99a9eb1f3c7e2bd8e3a223a3" - }, - "pb-IF4WUhgOXQ==": { - "display_string": [ - "\ue063Unconsci68" - ], - "profiles": [], - "name": "\ue063Unconsci68", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-11 21:49:01", - "registerOn": 1685982159.0464723, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685982159.0464728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685982159.046479, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685983845.969672, - "lastIP": "dvvcyviyvgz", - "deviceUUID": "2cb9706ec32c8e947b67b9358667892f66bb272b" - }, - "pb-IF4sUGleCA==": { - "display_string": [ - "\ue063Hospita318" - ], - "profiles": [], - "name": "\ue063Hospita318", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-05 21:50:46", - "registerOn": 1685982821.4602532, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685982821.4602542, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685982821.4602633, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685982821.4602644, - "lastIP": "b~j~vo~yvd|", - "deviceUUID": "5a39d7887eedfbd4d635b826b1b838ccea36f27f" - }, - "pb-IF40U28JPQ==": { - "display_string": [ - "\ue063SHUBHAMCH2" - ], - "profiles": [], - "name": "\ue063SHUBHAMCH2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-24 15:31:21", - "registerOn": 1685983663.8530471, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685983663.8530478, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685983663.8530757, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685983663.8530767, - "lastIP": "azj~zo~}hhaja}", - "deviceUUID": "ace972986ffc3db3084e63dcce1cdce24c7c4a84" - }, - "pb-IF4UU1QTMw==": { - "display_string": [ - "\ue063TestyParag" - ], - "profiles": [], - "name": "\ue063TestyParag", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-02 13:31:07", - "registerOn": 1685983683.2299457, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685983683.2299461, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685983683.2299535, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685983683.2299542, - "lastIP": "axi~xn~wj~}hi", - "deviceUUID": "fa0cc201fa930777fe190f6f0acb0e23184ce5c5" - }, - "pb-IF4cUxRcVA==": { - "display_string": [ - "\ue063Adnan5757" - ], - "profiles": [], - "name": "\ue063Adnan5757", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-09 23:34:53", - "registerOn": 1685983788.0480287, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685983788.0480294, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685983788.048038, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685983788.048039, - "lastIP": "b}k~}keaif\u007fva~", - "deviceUUID": "3f8643ccb6668f3c84e8b89f3eb539d5412ae021" - }, - "pb-IF5TVE9Z": { - "display_string": [ - "\ue063sairatwari", - "\ue030Android23503543" - ], - "profiles": [], - "name": "\ue063sairatwari", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-11 01:49:16", - "registerOn": 1685985119.403733, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685985119.4037337, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685985119.4037442, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685985119.4037452, - "lastIP": "azj~zo~}igaidy", - "deviceUUID": "630cb801c5b64ea7ddf356f4d4bfe998ec8f0191" - }, - "pb-IF4IVFkKNA==": { - "display_string": [ - "\ue063ATTITUDEB2" - ], - "profiles": [], - "name": "\ue063ATTITUDEB2", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-22 16:08:40", - "registerOn": 1685985932.7018163, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685985932.701817, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686379138.054471, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686379162.1420867, - "lastIP": "a\u007fn~}ifai`{vh|", - "deviceUUID": "0081f092fad223a90172369b77c1aeaadc280914" - }, - "pb-IF4QUkEAPA==": { - "display_string": [ - "\ue063FoolishBur", - "\ue030Android57452398" - ], - "profiles": [], - "name": "\ue063FoolishBur", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-20 23:46:18", - "registerOn": 1685986739.5163505, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685986739.5163512, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685986739.5163586, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685986739.5163596, - "lastIP": "awj~{`~}jaaig~", - "deviceUUID": "6c0e8aab3215dfae2d6cbf79826b04d0146dbbd9" - }, - "pb-IF4hVWExKw==": { - "display_string": [ - "\ue030Android45808383" - ], - "profiles": [], - "name": "\ue030Android45808383", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-16 11:31:48", - "registerOn": 1685986820.1230347, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685986820.123036, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685986820.123044, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685986820.1230454, - "lastIP": "cxvbzm~~mbakb", - "deviceUUID": "2e42f84f11bd8310da652ba442453576a7b277b4" - }, - "pb-IF4GUGcoEw==": { - "display_string": [ - "\ue063sedraalhas" - ], - "profiles": [], - "name": "\ue063sedraalhas", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-18 23:06:20", - "registerOn": 1685987027.6104236, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685987027.6104243, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685987027.6104317, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685987027.6104329, - "lastIP": "i}va~a~yi~|a", - "deviceUUID": "c7d1abfd8ec66759125e87f18058aab204c04144" - }, - "pb-IF5WUGc8IA==": { - "display_string": [ - "\ue063NoNameA3438343" - ], - "profiles": [], - "name": "\ue063NoNameA3438343", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-12 16:36:56", - "registerOn": 1685987111.9498107, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685987111.9498117, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685987111.9498205, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685987111.9498215, - "lastIP": "dvvczva|i~|m", - "deviceUUID": "9cc2886a7f7f0de420ad2f6a3dcd65da8a02d330" - }, - "pb-IF42UGkJUg==": { - "display_string": [ - "\ue063Puritan428" - ], - "profiles": [], - "name": "\ue063Puritan428", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 13:54:19", - "registerOn": 1685987852.3473673, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685987852.347368, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685987852.3473766, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685987852.3473773, - "lastIP": "a\u007fk~~hgaogamf", - "deviceUUID": "b78a969e6775b9a890cdd9cb40c7f0a8cb98c258" - }, - "pb-IF4nUkteVA==": { - "display_string": [ - "\ue063WirelessNe" - ], - "profiles": [], - "name": "\ue063WirelessNe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-22 16:27:51", - "registerOn": 1685988921.2326918, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685988921.2326925, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686361582.4947755, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686361582.494779, - "lastIP": "a}j~zh~}hbaia\u007f", - "deviceUUID": "9da057bbedb60ca5287580839d2b01b057184a1c", - "cMsgCount": 0, - "lastMsgTime": 1685988945.238854, - "lastMsg": "lag", - "cSameMsg": 0 - }, - "pb-IF5dUGcMFg==": { - "display_string": [ - "\ue063Xd1932" - ], - "profiles": [], - "name": "\ue063Xd1932", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-14 06:50:59", - "registerOn": 1685988984.4404519, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685988984.4404523, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1685989194.9501276, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685988984.440462, - "lastIP": "axo~}jbakfaie\u007f", - "deviceUUID": "4c32b5b46d5dd6a1e0ee2c827254a2d6477ca119", - "cMsgCount": 0, - "lastMsgTime": 1685989194.9500709, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4SUGUPFw==": { - "display_string": [ - "\ue063Unhealt327" - ], - "profiles": [], - "name": "\ue063Unhealt327", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-11 00:44:58", - "registerOn": 1685989907.07476, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685989907.074761, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685989907.07477, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685989907.074771, - "lastIP": "a~h~}jdaa`ai`x", - "deviceUUID": "9151cccdd74395be85450f07c556943b7889fd7a" - }, - "pb-IF4gUBlfPA==": { - "display_string": [ - "\ue063ROCKBABAJI" - ], - "profiles": [], - "name": "\ue063ROCKBABAJI", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-09 17:33:45", - "registerOn": 1685990164.1139371, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685990164.1139376, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685990164.1139443, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685990164.1139452, - "lastIP": "a\u007fn~}hgajdyvbzh", - "deviceUUID": "cca4a90157ce0b4713f56d5207d0706ee1f4a8c3" - }, - "pb-IF43Uxg4Kg==": { - "display_string": [ - "\ue063EternalRea" - ], - "profiles": [], - "name": "\ue063EternalRea", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-27 10:55:53", - "registerOn": 1685990649.041384, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685990649.0413847, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685990649.0413935, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685990712.9489136, - "lastIP": "azo~zi~~mbame", - "deviceUUID": "8bbf1482daef9a08c3a1d13ae19ba9f1cbac8c20" - }, - "pb-IF5WVG4yCA==": { - "display_string": [ - "\ue063Harshverma", - "\ue030Android48601931", - "\ue030Android48602193", - "\ue030Android48601951", - "\ue030Android39034906" - ], - "profiles": [], - "name": "\ue063Harshverma", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-24 20:09:26", - "registerOn": 1685993900.526751, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685993900.5267518, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685993900.526758, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685993900.526759, - "lastIP": "azo~|o~~aiaibz", - "deviceUUID": "940e6beed3dc2c8004e2fca25b1d15513e409c52" - }, - "pb-IF4yU1VSLw==": { - "display_string": [ - "\ue063pranavshis" - ], - "profiles": [], - "name": "\ue063pranavshis", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-08 00:36:24", - "registerOn": 1685997617.0202994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685997617.0203004, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1685997617.020306, - "verified": true, - "rejoincount": 1, - "lastJoin": 1685997617.0203068, - "lastIP": "a}h~~khaibzvb\u007fh", - "deviceUUID": "b5af2c1a7cc73c5f51a241184fbd2a7db24660ae" - }, - "pb-IF5XVWJSKw==": { - "display_string": [ - "\ue063HorridMaj2", - "\ue030Android44089169" - ], - "profiles": [], - "name": "\ue063HorridMaj2", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-31 01:59:12", - "registerOn": 1685997683.9826186, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1685997683.982619, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686303897.8924134, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686303897.8924146, - "lastIP": "azo~zi~~h`alh", - "deviceUUID": "39c9775ac96405666e705b5b6d50d9951a91aca0" - }, - "pb-IF4AU0JTVw==": { - "display_string": [ - "\ue063Raghavvvv" - ], - "profiles": [], - "name": "\ue063Raghavvvv", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-16 03:26:21", - "registerOn": 1686005548.9824016, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686005548.9824023, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686005548.98241, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686005548.982411, - "lastIP": "dvvcyvawo~}l", - "deviceUUID": "299d8dcd30cff16378c514cf78a9f60ac2c4999a" - }, - "pb-IF4SUmwlVA==": { - "display_string": [ - "\ue063UpbeatCeme" - ], - "profiles": [], - "name": "\ue063UpbeatCeme", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-11 11:51:44", - "registerOn": 1686008897.4840853, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686008897.4840858, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686008897.4840922, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686008905.180667, - "lastIP": "dvvcyvd~vd}", - "deviceUUID": "a7bde29bcc4f211c7175919d725d3c80dd3be90f" - }, - "pb-IF4hU24YIA==": { - "display_string": [ - "\ue030Android65151404", - "\ue030Android62209170", - "\ue030Android65151527" - ], - "profiles": [], - "name": "\ue030Android62209170", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-24 14:42:26", - "registerOn": 1686021439.938611, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686021439.9386117, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686021439.9386215, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686021439.9386222, - "lastIP": "a\u007fk~wo~}m~~ah", - "deviceUUID": "e0a69ffa3db6870eea75c13a6e497da7d52abcbf" - }, - "pb-JiNJVxFfVEJIWVxFEUBXXFNLE0hXRFVD": { - "display_string": [ - "\ue063warlord160" - ], - "profiles": [], - "name": "\ue063warlord160", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-09 17:04:00", - "registerOn": 1686021835.6894221, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686021835.6894228, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686021835.6894298, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686021835.6894307, - "lastIP": "dvvb\u007fo~}lbali", - "deviceUUID": "569c6d5812b35ce92b109072e7b34df952bf7382" - }, - "pb-IF4LUxYbAA==": { - "display_string": [ - "\ue063TalhaJuba2" - ], - "profiles": [], - "name": "\ue063TalhaJuba2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-22 17:59:09", - "registerOn": 1686022053.6940234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686022053.6940238, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686022053.6940308, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686022165.6282861, - "lastIP": "a~`~~oiaih~va{m", - "deviceUUID": "5df05df7bd9535f430dc625fca5499b60eb434c3" - }, - "pb-IF4UUGFZAQ==": { - "display_string": [ - "\ue063BygoneHead" - ], - "profiles": [], - "name": "\ue063BygoneHead", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-10 14:06:56", - "registerOn": 1686026641.2367203, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686026641.236721, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686026641.236727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686026641.236728, - "lastIP": "bxvc{vf\u007fvg~", - "deviceUUID": "b6856ba63644841231e45436e15177a18d257676" - }, - "pb-IF4RUhQyJg==": { - "display_string": [ - "\ue063minalachu8" - ], - "profiles": [], - "name": "\ue063minalachu8", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-22 13:53:33", - "registerOn": 1686026710.5090232, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686026710.5090234, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686324937.8536816, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686324937.8536828, - "lastIP": "a|o~vo~vn~}jc", - "deviceUUID": "96f32a868b64ce9c633d8768ecb73991548ee8b6" - }, - "pb-IF4eU0s9Pw==": { - "display_string": [ - "\ue063FearlessC4" - ], - "profiles": [], - "name": "\ue063FearlessC4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 14:41:52", - "registerOn": 1686027385.1436195, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686027385.1436203, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686370210.7919352, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686371510.4287148, - "lastIP": "a~a~vl~xi~~na", - "deviceUUID": "79ff602d98582d9885d769eec06b4ebd8aab0aad", - "cMsgCount": 0, - "lastMsgTime": 1686204954.5212471, - "lastMsg": "ops", - "cSameMsg": 0 - }, - "pb-IF4vVVczDg==": { - "display_string": [ - "\ue063MRGAMINGTH", - "\ue030Android50060577" - ], - "profiles": [], - "name": "\ue063MRGAMINGTH", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-17 07:52:59", - "registerOn": 1686027468.5366514, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686027468.5366518, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686128479.1415572, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686128479.1415582, - "lastIP": "a~o~~acaii~va}n", - "deviceUUID": "f14885c6acd92186b8308f6b88352d1da5abcb11", - "cMsgCount": 0, - "lastMsgTime": 1686128553.8863475, - "lastMsg": "wtah", - "cSameMsg": 0 - }, - "pb-IF4oUGlSCA==": { - "display_string": [ - "\ue030Android65167927" - ], - "profiles": [], - "name": "\ue030Android65167927", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-31 17:04:32", - "registerOn": 1686028176.2137802, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686028176.2137806, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686028176.2137868, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686036368.8086965, - "lastIP": "a\u007fn~}igaahaiiv", - "deviceUUID": "4e66815b2907e8930e977faf50888774063b9bc8" - }, - "pb-IF4mUlEyBw==": { - "display_string": [ - "\ue063Confide349" - ], - "profiles": [], - "name": "\ue063Confide349", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-22 13:01:30", - "registerOn": 1686028745.4358869, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686028745.4358876, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686028745.4358947, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686028745.4358962, - "lastIP": "dxvc~vixvbzl", - "deviceUUID": "ea5bbeb29f5dfeb3ad31cb9fecb1787ec50d36af" - }, - "pb-IF5QVVAuJA==": { - "display_string": [ - "\ue063SameerInga", - "\ue030Android52331761" - ], - "profiles": [], - "name": "\ue063SameerInga", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-29 21:10:20", - "registerOn": 1686029630.7927494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686029630.79275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686059336.67874, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686059650.844318, - "lastIP": "a\u007fn~}ifajd~vaxh", - "deviceUUID": "4e34a5f6bcd8ff274cf352a98d121a0c3fcc6962", - "cMsgCount": 1, - "lastMsgTime": 1686059827.2864106, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4eUGkRAQ==": { - "display_string": [ - "\ue030Android65184868" - ], - "profiles": [], - "name": "\ue030Android65184868", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-03 13:04:50", - "registerOn": 1686029790.287235, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686029790.2872355, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686029790.2872424, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686029790.2872438, - "lastIP": "dvvcyva{l~{j", - "deviceUUID": "24710d9fd0ae610e49c3bd172dafb9b326047f48" - }, - "pb-IF48UGo9Kw==": { - "display_string": [ - "\ue063Philolo221" - ], - "profiles": [], - "name": "\ue063Philolo221", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 10:46:33", - "registerOn": 1686029848.5633483, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686029848.5633488, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686029848.5633552, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686029848.5633562, - "lastIP": "a\u007fn~}hhaigvvdy", - "deviceUUID": "4d994c192d16e133113b036d3f6bd6d986873fa2" - }, - "pb-IF4yUhgAAQ==": { - "display_string": [ - "\ue063Android54623839" - ], - "profiles": [], - "name": "\ue063Android54623839", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-12 22:27:13", - "registerOn": 1686030027.3397763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686030027.339777, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686030027.3397846, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686030027.3397858, - "lastIP": "dyva~l~~ocaicx", - "deviceUUID": "dd15705f59c34196c1f141fb5619108def92d0fb" - }, - "pb-IF4VUGkaUQ==": { - "display_string": [ - "\ue063HeartySwee" - ], - "profiles": [], - "name": "\ue063HeartySwee", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 10:46:28", - "registerOn": 1686030508.0427928, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686030508.0427933, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686030508.0428004, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686030508.0428016, - "lastIP": "azj~z`~}iea`", - "deviceUUID": "8e96cea67fa589aebff79dbd5cbc8bd8fa338de3" - }, - "pb-IF4SUGkyAg==": { - "display_string": [ - "\ue063ObviousLed" - ], - "profiles": [], - "name": "\ue063ObviousLed", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-02 21:50:36", - "registerOn": 1686030811.0603433, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686030811.060344, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686030811.0603569, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686030811.0603578, - "lastIP": "azj~zo~}a~xn", - "deviceUUID": "ae98e6cc748b55807b1fd6edde62ffc743ef78dc" - }, - "pb-LV4FXxNdVEYUWQtHFEcCVlFAFQ==": { - "display_string": [ - "\ue063ANSHU6141" - ], - "profiles": [], - "name": "\ue063ANSHU6141", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-18 23:17:18", - "registerOn": 1686031560.7737792, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686031560.7737799, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686343550.0471244, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686343550.0471256, - "lastIP": "a\u007fk~}hhaniaif~", - "deviceUUID": "443cf4760f53b4d718f8e3df20de24c5a7f19897" - }, - "pb-IF5TUGxYBA==": { - "display_string": [ - "\ue063snipersomi" - ], - "profiles": [], - "name": "\ue063snipersomi", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 10:45:46", - "registerOn": 1686031760.4697132, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686031760.4697137, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686303200.0904484, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686303472.1272533, - "lastIP": "b}k~}khaja|vf{", - "deviceUUID": "eac366e03470b9f310a5cca7d26600eaabe3080e" - }, - "pb-IF4OUGkFHA==": { - "display_string": [ - "\ue030Android65184196" - ], - "profiles": [], - "name": "\ue030Android65184196", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-03 10:23:00", - "registerOn": 1686032319.5074053, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686032319.507406, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686032319.5074155, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686032319.5074167, - "lastIP": "azj~z`~xj~|", - "deviceUUID": "a6ac980dbb84b93dc66e902664fb7b5efb8c97b3" - }, - "pb-IF4WU2ctKA==": { - "display_string": [ - "\ue063mansoorman" - ], - "profiles": [], - "name": "\ue063mansoorman", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-22 16:38:34", - "registerOn": 1686032783.2243748, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686032783.224376, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686375350.3924747, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686375350.3924763, - "lastIP": "a\u007fk~{j~~agamh", - "deviceUUID": "0ac465153dc65b0a9570e9f27bc9192c7a86d43c" - }, - "pb-IF4sUBc6Ig==": { - "display_string": [ - "\ue063MightyJoc2" - ], - "profiles": [], - "name": "\ue063MightyJoc2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-03 15:03:14", - "registerOn": 1686034928.4604168, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686034928.4604175, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686034928.460425, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686034928.4604256, - "lastIP": "b}k~}khajb|vb}`", - "deviceUUID": "fffee905e20085603f0c1c75f256c3b427f965fc" - }, - "pb-IF42U2wGFw==": { - "display_string": [ - "\ue063chugambara" - ], - "profiles": [], - "name": "\ue063chugambara", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-13 17:05:07", - "registerOn": 1686035017.822825, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686035017.8228254, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686382124.431134, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686387568.5881882, - "lastIP": "a|o~vo~~igajc{", - "deviceUUID": "99b10bfc42bcd3169a938d93dab3f5156feec7f4", - "cMsgCount": 0, - "lastMsgTime": 1686382490.8222241, - "lastMsg": "what?", - "cSameMsg": 0 - }, - "pb-IF4MUk0CEg==": { - "display_string": [ - "\ue063FoolishMar" - ], - "profiles": [], - "name": "\ue063FoolishMar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-06 20:56:05", - "registerOn": 1686037354.082924, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686037354.0829244, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686296641.4071195, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686296641.407121, - "lastIP": "b}k~}kiambaihz", - "deviceUUID": "618fd7a62afdcfd000ff037b4ad7fece3396e9ce" - }, - "pb-IF40UGQxMQ==": { - "display_string": [ - "\ue063CrystalAbu" - ], - "profiles": [], - "name": "\ue063CrystalAbu", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-06 11:12:38", - "registerOn": 1686037484.5418046, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686037484.541805, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686037484.541813, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686037484.541814, - "lastIP": "a~o~}liaif|vcv", - "deviceUUID": "225d85b1161dbc5b3f7318fccfad1a79f45e6f8c" - }, - "pb-IF4SU0QdDQ==": { - "display_string": [ - "\ue063VIJAYSTYLE" - ], - "profiles": [], - "name": "\ue063VIJAYSTYLE", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 21:21:38", - "registerOn": 1686037532.7553637, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686037532.7553647, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686037532.7553725, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686037532.7553737, - "lastIP": "a\u007fn~}j`ajdyvaxh", - "deviceUUID": "2811de9edd766cff3ad41d43c5f432ab2aed0144" - }, - "pb-IF4CUGkfUg==": { - "display_string": [ - "\ue030Android65192078" - ], - "profiles": [], - "name": "\ue030Android65192078", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 12:49:43", - "registerOn": 1686037677.239205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686037677.2392054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686037677.2392216, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686037677.2392228, - "lastIP": "a\u007fn~~afakaaiaz", - "deviceUUID": "582aa50a70ff9e08279503da80151c6fcae145ae" - }, - "pb-JiNJARBcUEZEWVZAFUJYXFxFGUFaQ1dD": { - "display_string": [ - "\ue063SHOJIB" - ], - "profiles": [], - "name": "\ue063SHOJIB", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-28 19:16:28", - "registerOn": 1686039041.564844, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686039041.5648446, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686039041.564851, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686039041.5648522, - "lastIP": "a\u007fk~}m~}m`ajbz", - "deviceUUID": "272be64bc9f6f74710d3766bdb5fe9395b857c15" - }, - "pb-IF4hU05dLg==": { - "display_string": [ - "\ue063ProudChihu" - ], - "profiles": [], - "name": "\ue063ProudChihu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 16:01:18", - "registerOn": 1686039259.5960436, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686039259.5960443, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686302525.322072, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686302625.7059846, - "lastIP": "azo~{a~~aia`i", - "deviceUUID": "66b9a539c2336161846fa0e39f961ee6a88bbc7c" - }, - "pb-IF4yUmkuLw==": { - "display_string": [ - "\ue030Android55641762" - ], - "profiles": [], - "name": "\ue030Android55641762", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-28 22:58:51", - "registerOn": 1686039419.9177544, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686039419.9177551, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686252680.9891245, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686252680.9891257, - "lastIP": "a\u007fk~vm~wi~{j", - "deviceUUID": "115323723d0de932467f154cc8c1aea75c7b3f7c" - }, - "pb-IF4FUxMtPQ==": { - "display_string": [ - "\ue063SavvyOutl2" - ], - "profiles": [], - "name": "\ue063SavvyOutl2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-07 19:51:34", - "registerOn": 1686040118.5547402, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686040118.554741, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686292055.8402894, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686292055.8402903, - "lastIP": "b}k~~`dajb{vbv", - "deviceUUID": "f71317314903841036b394e876c4df4bb46bf6ab", - "cMsgCount": 0, - "lastMsgTime": 1686040945.846741, - "lastMsg": "hacked", - "cSameMsg": 0 - }, - "pb-IF4uUBIDCg==": { - "display_string": [ - "\ue063Documen153" - ], - "profiles": [], - "name": "\ue063Documen153", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-03 19:31:20", - "registerOn": 1686040453.7112796, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686040453.7112803, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686040453.7112868, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686040453.711288, - "lastIP": "azo~|m~{j~}jb", - "deviceUUID": "4eee9fe65f4699d20ff318d5e7ebb77b0f98ecd7" - }, - "pb-IF5dVUk5MA==": { - "display_string": [ - "\ue063devilrk768" - ], - "profiles": [], - "name": "\ue063devilrk768", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-28 17:19:05", - "registerOn": 1686042014.0575573, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686042014.0575578, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686203989.7750037, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686203989.7750056, - "lastIP": "a~h~}jdaia\u007fvh{", - "deviceUUID": "e0f093fbd4b5bde1c4be1b9c87824be13350e62e", - "cMsgCount": 0, - "lastMsgTime": 1686204718.274088, - "lastMsg": "looooossseeeerrrrsss \ud83e\udd23", - "cSameMsg": 0 - }, - "pb-IF4SUBkRBw==": { - "display_string": [ - "\ue063lonelywol7" - ], - "profiles": [], - "name": "\ue063lonelywol7", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-11 20:56:14", - "registerOn": 1686042276.9701388, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686042276.9701397, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686042276.9701467, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686042276.9701476, - "lastIP": "azo~zi~~niajcw", - "deviceUUID": "34d6aa0f6b5fd50f0e9d3e33f6b598c55830c764" - }, - "pb-IF49U0QJDw==": { - "display_string": [ - "\ue063Babysimran", - "\ue063CRIMINAL", - "\ue063NOMERCY", - "\ue030PC605729" - ], - "profiles": [], - "name": "\ue030PC605729", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-29 22:04:04", - "registerOn": 1686042810.097336, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686042810.0973365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686042810.097345, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686042810.0973463, - "lastIP": "dvvcxva~o~~lh", - "deviceUUID": "52e159e6debf4b869cb6bd30a26e268c72ceab36" - }, - "pb-IF43UBlZFA==": { - "display_string": [ - "\ue063Periodi275" - ], - "profiles": [], - "name": "\ue063Periodi275", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-07 12:40:45", - "registerOn": 1686042889.4224896, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686042889.4224904, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686042889.4224973, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686042889.4224985, - "lastIP": "bxvf|vb~a~}jb", - "deviceUUID": "ced9c6cfe1299c25bdc439903e8b6abb9d17f2f7" - }, - "pb-IF4cUlM-XQ==": { - "display_string": [ - "\ue063RubyBear71" - ], - "profiles": [], - "name": "\ue063RubyBear71", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-29 13:50:49", - "registerOn": 1686043484.9525585, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686043484.9525595, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686043484.9525669, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686043484.9525678, - "lastIP": "dvvb\u007fm~}kfaiby", - "deviceUUID": "6bda5f2f2f7c57d70ffc8e7e06fd370ba3b7ebca" - }, - "pb-IF4WUGokPA==": { - "display_string": [ - "\ue063CuteCat100" - ], - "profiles": [], - "name": "\ue063CuteCat100", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 14:15:23", - "registerOn": 1686043545.368852, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686043545.3688529, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686043545.3688605, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686043545.3688614, - "lastIP": "d}va\u007f`~{vf", - "deviceUUID": "d7abd4680abee384e9802e982f671db83035ee24" - }, - "pb-IF4HVBcbUA==": { - "display_string": [ - "\ue063RifeButter", - "\ue030Android36915431" - ], - "profiles": [], - "name": "\ue063RifeButter", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-28 11:07:39", - "registerOn": 1686044481.2862053, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686044481.2862062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686044481.2862146, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686044481.286216, - "lastIP": "a~h~}jdaacaa", - "deviceUUID": "005eb91b7f9dacfae92a374ff82a1a6e2d7fe0c2" - }, - "pb-JiNJARFZVkBJXl1EFkJXXF1EFkRbRVND": { - "display_string": [ - "\ue063Excelle766", - "\ue030Android6711002" - ], - "profiles": [], - "name": "\ue063Excelle766", - "isBan": false, - "isMuted": false, - "accountAge": "2016-09-21 09:58:26", - "registerOn": 1686044585.797824, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686044585.7978246, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686044585.7978325, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686051451.804572, - "lastIP": "b\u007fj~~ocaibxvay", - "deviceUUID": "048a8e49764b1edf78f8354763753f9389177c34" - }, - "pb-IF4jVUk4UQ==": { - "display_string": [ - "\ue063Eccentri37" - ], - "profiles": [], - "name": "\ue063Eccentri37", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-08 08:26:14", - "registerOn": 1686044862.8481805, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686044862.848181, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686044862.848219, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686044862.8482199, - "lastIP": "azj~z`~}haaie~", - "deviceUUID": "bd76458a2576c7e6e7c1fafaafb4e66db4028e64" - }, - "pb-IF4gUGklVQ==": { - "display_string": [ - "\ue063AngryFire7" - ], - "profiles": [], - "name": "\ue063AngryFire7", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 10:46:28", - "registerOn": 1686045229.4199255, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686045229.419926, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686045229.4199324, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686045229.4199336, - "lastIP": "axn~za~~jcaif{", - "deviceUUID": "907cdd21f1b53706fd8125881a904f9a0143afef" - }, - "pb-IF4FVExeAA==": { - "display_string": [ - "\ue020Cancer\u3164", - "\ue030VR191377" - ], - "profiles": [], - "name": "\ue030VR191377", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-31 15:03:17", - "registerOn": 1686045472.5403783, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686045472.540379, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686045472.540388, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686045472.5403893, - "lastIP": "b}k~}kgaiivvi", - "deviceUUID": "5a5803c736716bd0473a7767a0b56d3a0cc7657f" - }, - "pb-IF4AUGpeHQ==": { - "display_string": [ - "\ue063FierceJac4" - ], - "profiles": [], - "name": "\ue063FierceJac4", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 15:23:01", - "registerOn": 1686045596.7574148, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686045596.7574158, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686045596.7574239, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686045596.757425, - "lastIP": "azo~|l~ya~wa", - "deviceUUID": "40ab7251329b480888bde71569d25c7f76d8c730" - }, - "pb-IF4mVWUaFQ==": { - "display_string": [ - "\ue063LEGENDTYub", - "\ue030Android44177011" - ], - "profiles": [], - "name": "\ue063LEGENDTYub", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-09 13:40:49", - "registerOn": 1686046097.67003, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686046097.6700308, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686046097.6700387, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686046097.67004, - "lastIP": "a~o~va~}jiaibz", - "deviceUUID": "007a78da1d7ade8b3f91dac7b25c7d6a55b7e2ec" - }, - "pb-IF4iUGkDCA==": { - "display_string": [ - "\ue063HarmfulFo2" - ], - "profiles": [], - "name": "\ue063HarmfulFo2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 14:43:13", - "registerOn": 1686046162.8878715, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686046162.887872, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686046162.8878798, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686046162.887881, - "lastIP": "azo~|j~}hdang", - "deviceUUID": "4c086ba260e6e4b55bf22bc35cac76c8be7a4c30" - }, - "pb-IF4UU2USVg==": { - "display_string": [ - "\ue063NoNameA209230" - ], - "profiles": [], - "name": "\ue063NoNameA209230", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-16 05:04:28", - "registerOn": 1686047012.373745, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686047012.3737454, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686047012.3737519, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686047012.3737528, - "lastIP": "avh~~jiaifyva}k", - "deviceUUID": "577d8e7bb9cf09496346eca962b22ec0e5f8ceb5" - }, - "pb-IF4SU0sEMQ==": { - "display_string": [ - "\ue063ErroneousO" - ], - "profiles": [], - "name": "\ue063ErroneousO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-07 20:58:10", - "registerOn": 1686047032.8588314, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686047032.858832, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686047032.8588398, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686047032.8588405, - "lastIP": "gwvazn~}keama", - "deviceUUID": "d7554607e0bc93bc89b4dbbdaffd6e335e5b9cb1" - }, - "pb-IF4tUBExKw==": { - "display_string": [ - "\ue063Gripobema" - ], - "profiles": [], - "name": "\ue063Gripobema", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-20 01:03:59", - "registerOn": 1686047047.607388, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686047047.6073885, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686047047.607397, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686047047.607398, - "lastIP": "c~vd\u007fva}`~~md", - "deviceUUID": "b607a09876538385819283e7b47e514447e8f837" - }, - "pb-IF4yU0hYEw==": { - "display_string": [ - "\ue063rajkekings" - ], - "profiles": [], - "name": "\ue063rajkekings", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 11:40:09", - "registerOn": 1686047846.6950073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686047846.6950078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686131987.566587, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686131987.566588, - "lastIP": "awj~ya~~ogao`", - "deviceUUID": "052bbfd43b91c5bc01d4ba79df1c076697418a48" - }, - "pb-IF4sU3VSMg==": { - "display_string": [ - "\ue030Android62764913" - ], - "profiles": [], - "name": "\ue030Android62764913", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-18 16:13:27", - "registerOn": 1686049478.0069194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686049478.00692, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686049478.006929, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686049486.7297146, - "lastIP": "dvvc}vawo~}i", - "deviceUUID": "cb6dd8b1d356943cea4f7e54c07fc932a91971ec" - }, - "pb-IF5TUGxZAg==": { - "display_string": [ - "\ue063EldestDoom" - ], - "profiles": [], - "name": "\ue063EldestDoom", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 07:10:35", - "registerOn": 1686049951.8139648, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686049951.8139656, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686049951.8139727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686049951.8139737, - "lastIP": "a\u007fn~}i`ajdwvazn", - "deviceUUID": "8bff4b7262f21a94f7baf0cc40116e0e43bd1a36" - }, - "pb-IF40UGMbEg==": { - "display_string": [ - "\ue063Android64980317" - ], - "profiles": [], - "name": "\ue063Android64980317", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-01 11:43:12", - "registerOn": 1686050124.073694, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686050124.0736947, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686050124.0737038, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686050124.0737047, - "lastIP": "azj~zo~}iaanf", - "deviceUUID": "10ce7f0a6626a5d23ae6ed3d6866c7df9eeb5138" - }, - "pb-IF4gUGIyAQ==": { - "display_string": [ - "\ue063NoNameD3078665" - ], - "profiles": [], - "name": "\ue063NoNameD3078665", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-24 20:31:46", - "registerOn": 1686051354.2725472, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686051354.2725477, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686051354.272557, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686051354.2725587, - "lastIP": "azl~~jaaidaii{", - "deviceUUID": "4ec7624a7916f6dd965c86600f51480556663c0d" - }, - "pb-IF5TU0oIIw==": { - "display_string": [ - "\ue063V7R9", - "\ue030Android63716406" - ], - "profiles": [], - "name": "\ue063V7R9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-22 11:16:51", - "registerOn": 1686051803.0649643, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686051803.064965, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686051803.0649726, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686051803.0649738, - "lastIP": "a\u007fn~}iaaleaib\u007f", - "deviceUUID": "7fe9139a488fa55b84125d7060d13576802ae897" - }, - "pb-IF4VUlJYFg==": { - "display_string": [ - "\ue063Concomita8" - ], - "profiles": [], - "name": "\ue063Concomita8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-24 14:12:53", - "registerOn": 1686052054.1118298, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686052054.1118305, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686294593.1639957, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686294593.1639972, - "lastIP": "dvva{va~l~x`", - "deviceUUID": "3b574b234f4984d8ab8cfbbca3a41987677635d0" - }, - "pb-IF4wVWoGMg==": { - "display_string": [ - "\ue063EasyCreato" - ], - "profiles": [], - "name": "\ue063EasyCreato", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-14 13:50:31", - "registerOn": 1686053106.9448762, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686053106.944877, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686053106.944884, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686053106.944885, - "lastIP": "a~o~}h`ajeajd~", - "deviceUUID": "48860c874bbd227f54293e5376937b42ff942cba" - }, - "pb-IF4HUmRfKw==": { - "display_string": [ - "\ue063IAMGROOTUS" - ], - "profiles": [], - "name": "\ue063IAMGROOTUS", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-03 14:36:04", - "registerOn": 1686053182.2486453, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686053182.2486463, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686053182.2486544, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686054477.5430005, - "lastIP": "b}k~~`gaia{vavh", - "deviceUUID": "e3cfb7d6bfdd21cc19ecf5cd314b23ee982fbe5d", - "cMsgCount": 0, - "lastMsgTime": 1686055057.3228865, - "lastMsg": "done", - "cSameMsg": 0 - }, - "pb-IF40UGYODw==": { - "display_string": [ - "\ue030Android65091386" - ], - "profiles": [], - "name": "\ue030Android65091386", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-19 13:09:03", - "registerOn": 1686053283.65152, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686053283.6515205, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686053283.6515305, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686053283.6515315, - "lastIP": "dvvc|vb}k~~oi", - "deviceUUID": "c43d6ef6091374d63a8d834234ecebe43939771c" - }, - "pb-IF4RU0xbFg==": { - "display_string": [ - "\ue063Reaction61" - ], - "profiles": [], - "name": "\ue063Reaction61", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 16:31:21", - "registerOn": 1686054319.3017573, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686054319.3017583, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686173229.544904, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686173245.5962617, - "lastIP": "i}va~a~yi~}o", - "deviceUUID": "91e4f82667ecf0002c18d9d2b3030abeba922abb" - }, - "pb-IF4lU2caEg==": { - "display_string": [ - "\ue063KiskiBaji" - ], - "profiles": [], - "name": "\ue063KiskiBaji", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-24 19:56:44", - "registerOn": 1686054495.961072, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686054495.9610724, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686054495.9610815, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686054495.9610827, - "lastIP": "aya~~liajbzvb", - "deviceUUID": "57fa642118004b48170038aab0ca9cdc6378d550" - }, - "pb-IF4KUkcKNg==": { - "display_string": [ - "\ue063MeatyWool3" - ], - "profiles": [], - "name": "\ue063MeatyWool3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-09 18:12:12", - "registerOn": 1686054555.455325, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686054555.4553256, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686054555.4553325, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686054555.455334, - "lastIP": "dvvc{vh|vaw", - "deviceUUID": "7dfb2afcb0e94d240206691390bf89c43f2ef821" - }, - "pb-IF4UV2giLQ==": { - "display_string": [ - "\ue063NoName2993354", - "\ue030Android28560086", - "\ue030Android51130636" - ], - "profiles": [], - "name": "\ue063NoName2993354", - "isBan": false, - "isMuted": false, - "accountAge": "2018-10-18 20:49:05", - "registerOn": 1686054897.4537525, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686054897.4537532, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686054897.45376, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686054897.4537609, - "lastIP": "azo~{j~}hfajax", - "deviceUUID": "c13e239ad5854362acf0a414ea711fc9fd102df0" - }, - "pb-IF4QUBYSMQ==": { - "display_string": [ - "\ue063LunarJoint" - ], - "profiles": [], - "name": "\ue063LunarJoint", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-29 13:09:59", - "registerOn": 1686056355.9793973, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686056355.9793978, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686056355.9794047, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686056355.9794059, - "lastIP": "azj~z`~~`~~kc", - "deviceUUID": "e67dcd2ba98c51600c6c5418317a95f145bc0530" - }, - "pb-IF4SUGkMNg==": { - "display_string": [ - "\ue063NoNameD3911062" - ], - "profiles": [], - "name": "\ue063NoNameD3911062", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-03 18:56:12", - "registerOn": 1686056716.7779093, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686056716.7779098, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686056716.7779367, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686056716.7779377, - "lastIP": "azj~z`~}h`aihv", - "deviceUUID": "74a1e4c44d6e0695c12b2c95317b748865991461" - }, - "pb-IF4zU00GCg==": { - "display_string": [ - "\ue063SilentSal3" - ], - "profiles": [], - "name": "\ue063SilentSal3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 14:08:37", - "registerOn": 1686057512.7247896, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686057512.7247903, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686057512.7247975, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686057512.7247987, - "lastIP": "azo~|k~vi~~a`", - "deviceUUID": "3237074d7292904a27c82bb9ca6298c23ad6f5f9" - }, - "pb-IF4AUGUiDg==": { - "display_string": [ - "\ue063Imminen118" - ], - "profiles": [], - "name": "\ue063Imminen118", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-09 08:45:10", - "registerOn": 1686057746.572226, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686057746.5722265, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686114201.3450425, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686114201.3450437, - "lastIP": "b}k~~`gaih{vb}m", - "deviceUUID": "462f04148f2ebb5d983d22a9b33292f343543284" - }, - "pb-IF4zUko6Jw==": { - "display_string": [ - "\ue063Favorab352" - ], - "profiles": [], - "name": "\ue063Favorab352", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-20 15:00:46", - "registerOn": 1686059873.9650183, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686059873.9650195, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686059873.965029, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686059873.9650302, - "lastIP": "a\u007fk~~lhaj`al`", - "deviceUUID": "3acd397263ec5ab66d15567cf0e98dfbbb915976" - }, - "pb-IF4iU1RbLA==": { - "display_string": [ - "\ue063littleoutb" - ], - "profiles": [], - "name": "\ue063littleoutb", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-02 20:20:31", - "registerOn": 1686060128.9316585, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686060128.931659, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686301205.2406633, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686301205.2406642, - "lastIP": "dvvcyvavk~}if", - "deviceUUID": "33e0374ff43270136cbf12d8cb479b59f912066a" - }, - "pb-IF4pU1oqVg==": { - "display_string": [ - "\ue063Rosie07" - ], - "profiles": [], - "name": "\ue063Rosie07", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-05 11:33:37", - "registerOn": 1686061774.4784093, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686061774.47841, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686334025.49592, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686334025.4959211, - "lastIP": "a|j~~mdamiaih\u007f", - "deviceUUID": "7ee71d578344c9f3f3ba95c6c87390e91fdfd2da" - }, - "pb-IF4GUnhdIg==": { - "display_string": [ - "\ue063ParanoidB9", - "\ue030Android65191533", - "\ue030Android65191423", - "\ue030Android57762585", - "\ue030Android65191507" - ], - "profiles": [], - "name": "\ue063ParanoidB9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-01 21:29:55", - "registerOn": 1686062134.8415718, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686062134.8415728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686233252.905468, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686233252.9054692, - "lastIP": "a\u007fn~}hcaiazvaz", - "deviceUUID": "dc3a4d5eedf35f283390c78ea91ad84133640102" - }, - "pb-IF5UVW4cUA==": { - "display_string": [ - "\ue063Kashilegen" - ], - "profiles": [], - "name": "\ue063Kashilegen", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-04 15:13:30", - "registerOn": 1686062421.8607736, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686062421.8607745, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686062421.8607824, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686062421.8607836, - "lastIP": "a~o~}k`aicyvav`", - "deviceUUID": "412cf565b67bed338e82c45f089c81f997092a97" - }, - "pb-IF4BVFgaHw==": { - "display_string": [ - "\ue063SureSale26", - "\ue030Android44951382" - ], - "profiles": [], - "name": "\ue063SureSale26", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-18 20:05:22", - "registerOn": 1686062982.1706784, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686062982.170679, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686062982.1706882, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686062982.1706893, - "lastIP": "dvvd}vfwva|h", - "deviceUUID": "e4e8d32a9433c264f7b6ad642467a8c7260689c2" - }, - "pb-IF5dUBkzVg==": { - "display_string": [ - "\ue063AquaticTor" - ], - "profiles": [], - "name": "\ue063AquaticTor", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-01 20:32:23", - "registerOn": 1686063051.4650204, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686063051.465021, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686063051.465028, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686063051.465029, - "lastIP": "awh~vl~|l~{", - "deviceUUID": "b31d01df6ffa08606cde7195f697baad2ae59076", - "cMsgCount": 0, - "lastMsgTime": 1686063455.776909, - "lastMsg": "veer ji da dhabbha", - "cSameMsg": 0 - }, - "pb-IF4jVWsgNw==": { - "display_string": [ - "\ue063Soloboom38" - ], - "profiles": [], - "name": "\ue063Soloboom38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-16 18:06:16", - "registerOn": 1686063337.4529994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686063337.4530003, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686397146.6340463, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686397146.6340475, - "lastIP": "a~o~}jhaoaaj`}", - "deviceUUID": "e87680f7ed1ca47a13478c5debb8dd3b814b8241" - }, - "pb-IF5dVW0YMw==": { - "display_string": [ - "\ue063LeatherSe3" - ], - "profiles": [], - "name": "\ue063LeatherSe3", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-25 20:51:35", - "registerOn": 1686063508.4926257, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686063508.4926264, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686063508.4926934, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686063508.4926946, - "lastIP": "a\u007fk~~miaie|vb~j", - "deviceUUID": "3b609b7cd1cae5ee384c8d63ab1cd98426b3c4f0" - }, - "pb-IF40VG4pMg==": { - "display_string": [ - "\ue063HurtPunch1", - "\ue030Android51624848" - ], - "profiles": [], - "name": "\ue063HurtPunch1", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-03 22:22:39", - "registerOn": 1686063761.640727, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686063761.640728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686063761.6407375, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686063761.6407385, - "lastIP": "dvvcyva|a~}o", - "deviceUUID": "157fe612350fe34266a2acab3afa7f1a14469c0e" - }, - "pb-IF5VU1QEEw==": { - "display_string": [ - "\ue063Irregula94" - ], - "profiles": [], - "name": "\ue063Irregula94", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-23 15:54:07", - "registerOn": 1686064627.9226136, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686064627.922614, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686064627.9226213, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686064627.9226222, - "lastIP": "axo~}jfajd|vb\u007fl", - "deviceUUID": "621768b5f581db64c1ed6b0a7fe124d41943bf9c" - }, - "pb-IF4PU00xDw==": { - "display_string": [ - "\ue063vishalgame" - ], - "profiles": [], - "name": "\ue063vishalgame", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 14:10:01", - "registerOn": 1686064733.2658887, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686064733.2658892, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686064733.2658954, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686064733.2658966, - "lastIP": "awj~ya~~ofaag", - "deviceUUID": "f222e070888fd74a8a8544a97b137cf4f5341fce", - "cMsgCount": 0, - "lastMsgTime": 1686065092.7954214, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4GU1AEIA==": { - "display_string": [ - "\ue063DsbParth" - ], - "profiles": [], - "name": "\ue063DsbParth", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-08 20:37:35", - "registerOn": 1686065366.8093028, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686065366.8093038, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686389133.6437857, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686389133.643787, - "lastIP": "awj~}kgaieyvdz", - "deviceUUID": "9fbe61bd0d39414b0f72fd952321a435896d6125" - }, - "pb-IF4OU3YzNQ==": { - "display_string": [ - "\ue063DemonicIte" - ], - "profiles": [], - "name": "\ue063DemonicIte", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 11:27:30", - "registerOn": 1686065516.3103688, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686065516.3103693, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686065516.3103762, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686065516.3103771, - "lastIP": "azj~z`~~`iaja~", - "deviceUUID": "28c10c186cb1d03164639531206345933936b166" - }, - "pb-IF4gU3MaCw==": { - "display_string": [ - "\ue063VoidBoi" - ], - "profiles": [], - "name": "\ue063VoidBoi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-11 11:07:07", - "registerOn": 1686066006.402245, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686066006.4022455, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686066006.4022748, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686066006.4022758, - "lastIP": "axi~xa~~m`aih~", - "deviceUUID": "65eefdac5ecdbd16eaa8755683a811f92ee7d468" - }, - "pb-IF4iVWlTBg==": { - "display_string": [ - "\ue063Thirtee255" - ], - "profiles": [], - "name": "\ue063Thirtee255", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-04 11:01:57", - "registerOn": 1686066786.8210607, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686066786.8210618, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686236338.574404, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686236338.5744052, - "lastIP": "a\u007fn~}hhaje|vfw", - "deviceUUID": "b5ebec4d6c2df1e92e13796dcc05d669553bd3b8", - "cMsgCount": 1, - "lastMsgTime": 1686067527.4436977, - "lastMsg": "bye", - "cSameMsg": 0 - }, - "pb-IF4NVVMdDQ==": { - "display_string": [ - "\ue063InmostCase" - ], - "profiles": [], - "name": "\ue063InmostCase", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-02 18:16:04", - "registerOn": 1686066885.467762, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686066885.4677627, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686066885.4677694, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686066885.4677703, - "lastIP": "a~o~v`~{j~~mf", - "deviceUUID": "280f737c9a414d8591cc2b350dbd9baa4743c1dc" - }, - "pb-IF5RVWMjMw==": { - "display_string": [ - "\ue063rahulsathe" - ], - "profiles": [], - "name": "\ue063rahulsathe", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-05 12:25:14", - "registerOn": 1686067491.0045884, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686067491.004589, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686067491.0045958, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686067491.0045965, - "lastIP": "azj~zo~~miajdw", - "deviceUUID": "71aa2e26bc7356a0bf0af6c998fd153d2d385d2a" - }, - "pb-IF4wV2paCg==": { - "display_string": [ - "\ue063saisurya00", - "\ue030Android28559972" - ], - "profiles": [], - "name": "\ue063saisurya00", - "isBan": false, - "isMuted": false, - "accountAge": "2018-10-30 19:07:23", - "registerOn": 1686067501.7199528, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686067501.7199533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686067501.7199607, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686067501.7199616, - "lastIP": "azo~{n~~hhaify", - "deviceUUID": "03240151cbebd9f66b697e56b45339b48c5610a8" - }, - "pb-IF4TUlA9HA==": { - "display_string": [ - "\ue063kaushikp00", - "\ue030Android58972291" - ], - "profiles": [], - "name": "\ue063kaushikp00", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-17 17:57:07", - "registerOn": 1686068191.4781976, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686068191.4781983, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686068191.4782069, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686068191.478208, - "lastIP": "dvvc{ve~vd|", - "deviceUUID": "dc74cdb2efcfeea120f5a98661c0a08c7026fc26" - }, - "pb-IF4OUGcnKg==": { - "display_string": [ - "\ue063CyclicCit2" - ], - "profiles": [], - "name": "\ue063CyclicCit2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-20 20:04:01", - "registerOn": 1686069107.9618266, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686069107.961827, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686069107.9618332, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686069107.9618342, - "lastIP": "azo~|l~}kfaiew", - "deviceUUID": "3431eb1717fed592e1fa2b030f318d3518be05c1" - }, - "pb-IF4WVBEFEQ==": { - "display_string": [ - "\ue063Microsco38" - ], - "profiles": [], - "name": "\ue063Microsco38", - "isBan": false, - "isMuted": false, - "accountAge": "2019-06-23 01:12:56", - "registerOn": 1686069456.1741943, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686069456.1741953, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686069456.1742027, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686069456.1742036, - "lastIP": "a\u007fn~xn~}kia``", - "deviceUUID": "067ba54451f0cab51d38ef1dbde60cab667faca1" - }, - "pb-IF42U3o8JA==": { - "display_string": [ - "\ue063prajwalSah" - ], - "profiles": [], - "name": "\ue063prajwalSah", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-09 16:28:45", - "registerOn": 1686069972.58018, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686069972.5801804, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686069972.5801883, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686069972.5801892, - "lastIP": "dvvcyvawvc{", - "deviceUUID": "26c3f1a8c51c46361efaf798633e2f44d633040a" - }, - "pb-IF4GUGZfKg==": { - "display_string": [ - "\ue030Android65046800" - ], - "profiles": [], - "name": "\ue030Android65046800", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-12 07:48:34", - "registerOn": 1686072340.0537286, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686072340.0537293, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686072340.0537355, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686072340.0537367, - "lastIP": "ayi~}j~|m~}md", - "deviceUUID": "87a8925070f2d48d2454896ffa2d31f506c6f55a" - }, - "pb-IF4GVUUOKA==": { - "display_string": [ - "\ue063DRpsycho43" - ], - "profiles": [], - "name": "\ue063DRpsycho43", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-12 11:34:03", - "registerOn": 1686072437.3646755, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686072437.364676, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686072437.364684, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686072437.364685, - "lastIP": "azo~{n~~kcak", - "deviceUUID": "5ab0961ebaba067bf185250f9dfbf073b7391244" - }, - "pb-IF40U2cGMw==": { - "display_string": [ - "\ue063BruceLee7" - ], - "profiles": [], - "name": "\ue063BruceLee7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-25 14:36:41", - "registerOn": 1686072451.445139, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686072451.4451394, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686072451.4451485, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686072451.4451494, - "lastIP": "b}k~|h~}h~}mc", - "deviceUUID": "12483f1a51af3a6e4cd68902e64400b6579804a8", - "cMsgCount": 0, - "lastMsgTime": 1686072484.3117156, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4XUBEqVA==": { - "display_string": [ - "\ue063ahmed365" - ], - "profiles": [], - "name": "\ue063ahmed365", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-16 22:14:51", - "registerOn": 1686074182.271154, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686074182.2711544, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686268530.9923966, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686268530.9923975, - "lastIP": "azl~~`baif}ve\u007f", - "deviceUUID": "17b1814c2389c27101269c6ed07a1ecc84def2d9" - }, - "pb-IF4qDVYk": { - "display_string": [ - "\ue063RundownR19" - ], - "profiles": [], - "name": "\ue063RundownR19", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-18 01:45:45", - "registerOn": 1686074193.3209348, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686074193.3209352, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686074193.3209412, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686074193.3209429, - "lastIP": "a~h~}jdaia|va}i", - "deviceUUID": "eb0e89ce95be8526b9ae0c2e558b1b271677b172" - }, - "pb-IF4VU3ISVQ==": { - "display_string": [ - "\ue063YouthoobGa" - ], - "profiles": [], - "name": "\ue063YouthoobGa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 18:45:12", - "registerOn": 1686074850.8401294, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686074850.8401299, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686074850.840138, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686074850.8401396, - "lastIP": "azo~{l~}hiajdz", - "deviceUUID": "0d57bfe00283fbf98f27f5de85eb1a4898e67a6e" - }, - "pb-IF4VVUU-Ew==": { - "display_string": [ - "\ue063AkshayOP" - ], - "profiles": [], - "name": "\ue063AkshayOP", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-17 12:00:57", - "registerOn": 1686076350.609453, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686076350.6094542, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686076350.609463, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686076350.6094642, - "lastIP": "dvvc}vaw`~|k", - "deviceUUID": "b9c64e69060334bcc93bbb4d027c6c80f9d97714" - }, - "pb-IF5dVW4SPA==": { - "display_string": [ - "\ue063NoviceChoi" - ], - "profiles": [], - "name": "\ue063NoviceChoi", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-04 16:04:46", - "registerOn": 1686077621.8728352, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686077621.8728359, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686128558.4399612, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686128558.4399624, - "lastIP": "dvvc|vb\u007fo~~ac", - "deviceUUID": "b11b52d7767f73423809e624a14aba8384b2f999", - "cMsgCount": 0, - "lastMsgTime": 1686128629.9269843, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4JUGUvEQ==": { - "display_string": [ - "\ue063Kingbrose9", - "\ue020SandyBookworm62", - "\ue020ConcernedCrown54", - "\ue020DigestiveHabit70", - "\ue020ChewyCitation41" - ], - "profiles": [], - "name": "\ue063Kingbrose9", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-10 06:39:33", - "registerOn": 1686078041.0791385, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686078041.0791395, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686153777.0757434, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686153777.0757446, - "lastIP": "avo~{k~vk~y", - "deviceUUID": "87b326222f060f4c6c19669026fa20f57d71fbbd" - }, - "pb-IF4pU04jNg==": { - "display_string": [ - "\ue030Android63907607" - ], - "profiles": [], - "name": "\ue030Android63907607", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 18:42:57", - "registerOn": 1686078551.024391, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686078551.0243917, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686078551.0244005, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686078569.7261646, - "lastIP": "ewva{m~~aaajdz", - "deviceUUID": "6d3365f7a16dcacdb546766a0eb65f2962cc5466" - }, - "pb-IF43UGpSEA==": { - "display_string": [ - "\ue063PrimaLabel" - ], - "profiles": [], - "name": "\ue063PrimaLabel", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-07 00:28:24", - "registerOn": 1686079592.1336722, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686079592.133673, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686079592.1336818, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686079592.1336827, - "lastIP": "axi~zh~~naaih", - "deviceUUID": "c94c888d76946a3b42bcef8d5a57e67854b48e1e" - }, - "pb-IF4sUGYjUw==": { - "display_string": [ - "\ue063KindestBoo" - ], - "profiles": [], - "name": "\ue063KindestBoo", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-20 23:54:51", - "registerOn": 1686079593.4096448, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686079593.4096456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686079593.4096537, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686079593.4096549, - "lastIP": "a}j~~ogamgaiax", - "deviceUUID": "43c7aa0b8e6ca0df1dee0e297599665d9dd266a0" - }, - "pb-IF4uU2U7Bg==": { - "display_string": [ - "\ue020SiMiTCiTR", - "\ue020DefiantPile38", - "\ue063WeeperBoy", - "\ue030Android60844191", - "\ue030Android60980985" - ], - "profiles": [], - "name": "\ue063WeeperBoy", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-17 13:24:35", - "registerOn": 1686079688.7583554, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686079688.7583559, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686079688.758365, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686079688.7583659, - "lastIP": "hwvbzj~\u007fvg", - "deviceUUID": "5d47336e972a284382616ff8e88f137e6c3e9673" - }, - "pb-IF5UUGhSIA==": { - "display_string": [ - "\ue063GurglingAb" - ], - "profiles": [], - "name": "\ue063GurglingAb", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-14 23:14:56", - "registerOn": 1686079894.226743, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686079894.2267435, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686125447.132678, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686125447.1326795, - "lastIP": "i{vb|j~xa~yk", - "deviceUUID": "35b9c1f3482f8d9b714c717bf462f9110fc49873" - }, - "pb-IF4oUmcI": { - "display_string": [ - "\ue063Pk4155" - ], - "profiles": [], - "name": "\ue063Pk4155", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-03 17:04:28", - "registerOn": 1686080481.6916933, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686080481.691694, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686080481.6917045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686080481.6917057, - "lastIP": "a\u007fn~}i`aie|vf~", - "deviceUUID": "3b40b4330f071074f51efc3dcb12ae8577840872" - }, - "pb-IF41UGYnFA==": { - "display_string": [ - "\ue063ItxQueen24" - ], - "profiles": [], - "name": "\ue063ItxQueen24", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-17 13:45:50", - "registerOn": 1686080799.3276494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686080799.32765, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686080799.3276565, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686080799.3276575, - "lastIP": "b}k~~jcakianf", - "deviceUUID": "9ee5833187c0780b7756ccf7f84afae4c496314e" - }, - "pb-IF4NUGgfEA==": { - "display_string": [ - "\ue063Abisuriyas" - ], - "profiles": [], - "name": "\ue063Abisuriyas", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 06:10:48", - "registerOn": 1686097249.941562, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686097249.9415624, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686097249.9415698, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686097249.941571, - "lastIP": "a\u007fn~}hfaj`wvb{n", - "deviceUUID": "2233e4a08c999495fd0a8b069c1d8e03adb36957" - }, - "pb-IF4eU1gjXQ==": { - "display_string": [ - "\ue030Android64311499" - ], - "profiles": [], - "name": "\ue030Android64311499", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-25 19:10:33", - "registerOn": 1686100769.2744958, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686100769.2744963, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686100769.2745047, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686100769.2745056, - "lastIP": "a~a~vl~yl~vo", - "deviceUUID": "46010db47c4ea1c6087270634d42e0e10e9ec3ff" - }, - "pb-IF5VU2obJg==": { - "display_string": [ - "\ue063NoNameC3888828", - "\ue030Android61531784" - ], - "profiles": [], - "name": "\ue063NoNameC3888828", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-27 16:24:53", - "registerOn": 1686105244.3683078, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686105244.3683088, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686105244.368317, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686105244.3683178, - "lastIP": "b}k~}jeaib}vaw", - "deviceUUID": "7d1dcc7c42bf5670d93e2ca12dc9d1ccb0b282da" - }, - "pb-IF4pUBUhDw==": { - "display_string": [ - "\ue063ContentSo2" - ], - "profiles": [], - "name": "\ue063ContentSo2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-15 20:40:07", - "registerOn": 1686105263.4485106, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686105263.4485111, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686105263.448518, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686105263.4485197, - "lastIP": "b}k~~`fajd\u007fva{i", - "deviceUUID": "35be39e2c350042a4762b7364f24bf3b184ed33c" - }, - "pb-IF4RUGolUA==": { - "display_string": [ - "\ue063MayankBans" - ], - "profiles": [], - "name": "\ue063MayankBans", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-05 16:54:32", - "registerOn": 1686108682.6715891, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686108682.6715899, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686108682.6715977, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686108682.671599, - "lastIP": "dvvcyvaw`~~a`", - "deviceUUID": "53df936b10755e1ec7289cec563c1e7854d9d10b" - }, - "pb-IF4cUlhdVg==": { - "display_string": [ - "\ue063HeroicCric", - "\ue030Android60793967" - ], - "profiles": [], - "name": "\ue063HeroicCric", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-14 20:47:03", - "registerOn": 1686109105.7363546, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686109105.7363553, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686109105.7363627, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686109105.7363634, - "lastIP": "a\u007fn~}jcaih|va|o", - "deviceUUID": "1da2118ab275f2d9005119016dc8bdbcb0278102", - "cMsgCount": 0, - "lastMsgTime": 1686110019.2826512, - "lastMsg": "noob", - "cSameMsg": 0 - }, - "pb-IF4vU2UDBA==": { - "display_string": [ - "\ue063lilpyro100" - ], - "profiles": [], - "name": "\ue063lilpyro100", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-16 12:30:22", - "registerOn": 1686109183.577804, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686109183.5778046, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686109183.5778127, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686109183.5778134, - "lastIP": "a\u007fn~~haaneaia}", - "deviceUUID": "26e650305fce68f4ea0a6355002ed581ceef29ad", - "cMsgCount": 0, - "lastMsgTime": 1686109454.225406, - "lastMsg": "0", - "cSameMsg": 0 - }, - "pb-IF4dVFgCLg==": { - "display_string": [ - "\ue063Attitudebo" - ], - "profiles": [], - "name": "\ue063Attitudebo", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-17 09:31:17", - "registerOn": 1686109443.503528, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686109443.5035286, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686109443.5035338, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686109443.5035348, - "lastIP": "dvvc{vh\u007fvb\u007fh", - "deviceUUID": "47ac797e330369c217bb24f59242043b21136902" - }, - "pb-IF4UVVIiLg==": { - "display_string": [ - "\ue063Adjndb1", - "\ue030Android52784757" - ], - "profiles": [], - "name": "\ue063Adjndb1", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-19 23:02:32", - "registerOn": 1686110020.7879713, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686110020.7879722, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686110020.7879794, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686110020.7879803, - "lastIP": "cxvawn~{m~z", - "deviceUUID": "cbb761d763500f5e4d62c0896f6599d58174bd2a", - "cMsgCount": 2, - "lastMsgTime": 1686110432.3690703, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4BV0odKw==": { - "display_string": [ - "\ue063TallBulldo", - "\ue030Android33161309" - ], - "profiles": [], - "name": "\ue063TallBulldo", - "isBan": false, - "isMuted": false, - "accountAge": "2019-03-17 14:21:04", - "registerOn": 1686111355.7649882, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686111355.764989, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686111355.764996, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686111355.7649968, - "lastIP": "a\u007fn~}heajb}va\u007fi", - "deviceUUID": "7d38fbf41fdfdc76b0a432d4bcd71743bfac7631" - }, - "pb-IF4qUGhSVg==": { - "display_string": [ - "\ue063Forgetf684" - ], - "profiles": [], - "name": "\ue063Forgetf684", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-25 22:17:46", - "registerOn": 1686111369.8006403, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686111369.8006413, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686111369.800669, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686111369.8006701, - "lastIP": "azo~|o~~`aajd|", - "deviceUUID": "c3bf0eb9df5e5274765f0666d6a3fbe1e7f75972" - }, - "pb-IF4qUhQpNw==": { - "display_string": [ - "\ue063Inducti306" - ], - "profiles": [], - "name": "\ue063Inducti306", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-21 14:47:58", - "registerOn": 1686111664.8709886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686111664.870989, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686111664.870995, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686111664.8709958, - "lastIP": "azo~{a~~lbai`x", - "deviceUUID": "96224c64f2c848a2833148169a6f26d160bc1aeb" - }, - "pb-IF5XU1kzXA==": { - "display_string": [ - "\ue063Cat1ock" - ], - "profiles": [], - "name": "\ue063Cat1ock", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-19 16:23:05", - "registerOn": 1686112975.7782893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686112975.7782903, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686200048.6949553, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686204957.489311, - "lastIP": "a\u007fa~~naaja{va}m", - "deviceUUID": "97cd2c58a5518cb3e4c005e75444883c021a4f5d", - "cMsgCount": 0, - "lastMsgTime": 1686203940.7545342, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4IUGkEMw==": { - "display_string": [ - "\ue030Android65209271" - ], - "profiles": [], - "name": "\ue030Android65209271", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-07 10:15:26", - "registerOn": 1686113582.3737001, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686113582.3737009, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686113582.3737078, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686113582.3737085, - "lastIP": "azo~{a~}kbaii{", - "deviceUUID": "71a373cacf609380c824af15f192e1a64171574e" - }, - "pb-IF4XUGMiVQ==": { - "display_string": [ - "\ue030Android64929969" - ], - "profiles": [], - "name": "\ue030Android64929969", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-23 18:47:16", - "registerOn": 1686114310.184493, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686114310.1844935, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686114310.1845005, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686114525.8676727, - "lastIP": "bxvevvb}i~~nb", - "deviceUUID": "72fb8ed686d6298222d54620ed0c195da2a473c3" - }, - "pb-IF4DUxcnDg==": { - "display_string": [ - "\ue063adityasin4" - ], - "profiles": [], - "name": "\ue063adityasin4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-22 13:43:07", - "registerOn": 1686115281.1064854, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686115281.106486, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686115281.1064928, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686115281.1064935, - "lastIP": "a|j~~mdameak`", - "deviceUUID": "ee095f7b8eb88ae8c8d26e73d824b8df78563d56" - }, - "pb-IF4FUGdaPw==": { - "display_string": [ - "\ue063Munky" - ], - "profiles": [], - "name": "\ue063Munky", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-22 09:30:39", - "registerOn": 1686115790.988732, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686115790.9887328, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686115790.9887402, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686115790.988741, - "lastIP": "a\u007fk~~neaoaaog", - "deviceUUID": "dc573c74329c1aeab807a04ee7f891c262e33b6b" - }, - "pb-IF4vDEcd": { - "display_string": [ - "\ue063BronzeDoc2" - ], - "profiles": [], - "name": "\ue063BronzeDoc2", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-10 20:59:05", - "registerOn": 1686116183.4817116, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686116183.4817123, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686116183.4817195, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686116183.4817207, - "lastIP": "a\u007fn~}h`aa`ajd|", - "deviceUUID": "7ef7d6ad0d7b92d067756c64b7d5508a773207c9" - }, - "pb-JiNJARFbVkBAXV5AGE5WVVxKFkBfQlBG": { - "display_string": [ - "\ue063Pappa69" - ], - "profiles": [], - "name": "\ue063Pappa69", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-22 20:28:30", - "registerOn": 1686116482.7463496, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686116482.74635, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686116482.7463567, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686116639.0536137, - "lastIP": "a}j~~ogaiizvbzh", - "deviceUUID": "4bdfb7c511e32054dffaa70bd966bdfe9fe31ab2" - }, - "pb-IF4LUGg4Fw==": { - "display_string": [ - "\ue063UnitaryImm" - ], - "profiles": [], - "name": "\ue063UnitaryImm", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-30 14:20:27", - "registerOn": 1686118443.4935057, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686118443.4935067, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686118443.4935362, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686118443.4935372, - "lastIP": "azo~{l~~ofak", - "deviceUUID": "0357912f79ceda24db5c7175e7e34208c631c9b7" - }, - "pb-IF4FUksuIA==": { - "display_string": [ - "\ue063SEYDAL1907", - "\ue030Android59029260", - "\ue030Android48827038", - "\ue030Android63032266" - ], - "profiles": [], - "name": "\ue063SEYDAL1907", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-25 20:44:26", - "registerOn": 1686118869.6476316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686118869.6476321, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686118869.6476386, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686118869.6476395, - "lastIP": "hwvb{k~~aeaig}", - "deviceUUID": "04de1c7199b0449260ff2e7aa95bf5339e9de2c3" - }, - "pb-IF4vU0gFFQ==": { - "display_string": [ - "\ue030Android63718321" - ], - "profiles": [], - "name": "\ue030Android63718321", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-22 17:02:38", - "registerOn": 1686118960.752486, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686118960.7524867, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686118960.7524931, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686118960.752494, - "lastIP": "a}j~~oeaj`xvaz", - "deviceUUID": "7e98d2ed99b41dc4aea4e9e8e5fe9adb78c840d5" - }, - "pb-IF5TUmgEFQ==": { - "display_string": [ - "\ue063MYSTERI743", - "\ue030Android55358276" - ], - "profiles": [], - "name": "\ue063MYSTERI743", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-15 23:27:42", - "registerOn": 1686119032.2025092, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686119032.2025099, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686119032.2025218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686119032.202523, - "lastIP": "dzva~`~~mgaihy", - "deviceUUID": "cd3ae901f0961843e50baf16037cbec01fc7818c" - }, - "pb-IF4IUBA4IA==": { - "display_string": [ - "\ue063ItchyDrea2" - ], - "profiles": [], - "name": "\ue063ItchyDrea2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-17 21:28:09", - "registerOn": 1686119523.8052394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686119523.8052404, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686119523.8052468, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686120124.1354713, - "lastIP": "dvvcyvixvb~m", - "deviceUUID": "78eed585c25d2fb7364ae7771b17881cef15558a" - }, - "pb-IF5WUBc-Vw==": { - "display_string": [ - "\ue063Queen555Ou" - ], - "profiles": [], - "name": "\ue063Queen555Ou", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-19 17:03:16", - "registerOn": 1686119647.629294, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686119647.6292944, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686119647.629301, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686119647.629302, - "lastIP": "azj~z`~}haaib|", - "deviceUUID": "d5a8fd0089739f9d96bd6579d5f390400c338be7" - }, - "pb-IF42VUMOFA==": { - "display_string": [ - "\ue063CorruptPl3" - ], - "profiles": [], - "name": "\ue063CorruptPl3", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-04 16:14:09", - "registerOn": 1686119822.2470036, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686119822.2470043, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686119822.2470114, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686120176.3102531, - "lastIP": "dvvcyvexva|m", - "deviceUUID": "b2b5c541b3b32f7d9f93511a7f9184f12c345f35" - }, - "pb-IF4gVGxeXQ==": { - "display_string": [ - "\ue063Enormou417" - ], - "profiles": [], - "name": "\ue063Enormou417", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-21 01:36:44", - "registerOn": 1686120078.3822584, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686120078.3822591, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686120078.3822653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686120078.3822663, - "lastIP": "a\u007fn~}ifajd\u007fva~", - "deviceUUID": "75d797f1f12a16770177cf4b1302481e4c8bba39" - }, - "pb-IF40UGIREg==": { - "display_string": [ - "\ue063NovelGrou2" - ], - "profiles": [], - "name": "\ue063NovelGrou2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-26 08:19:05", - "registerOn": 1686120228.8139875, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686120228.8139882, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686120228.8139942, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686120228.8139951, - "lastIP": "azo~zi~~heaif|", - "deviceUUID": "732c125690447c756bae22df8dff3c83581210ec" - }, - "pb-IF4jVFQ6Bw==": { - "display_string": [ - "\ue030Android44176168" - ], - "profiles": [], - "name": "\ue030Android44176168", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-16 14:45:33", - "registerOn": 1686120349.4128978, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686120349.4128983, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686120349.4129052, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686120349.412906, - "lastIP": "a\u007fk~wm~~h~~mi", - "deviceUUID": "38c9cd517f5eb0e9ab3302ac340fa38dfa41f405" - }, - "pb-IF49VVUHAw==": { - "display_string": [ - "\ue063HonkingSom", - "\ue030Android53020453" - ], - "profiles": [], - "name": "\ue063HonkingSom", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-07 07:53:44", - "registerOn": 1686121614.508999, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686121614.5089998, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686227076.3218417, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686227076.321843, - "lastIP": "a\u007fn~~afajaaof", - "deviceUUID": "296e074e69ac7f55f3c8bb433d65d281a9a76da3" - }, - "pb-IF4HU04uVA==": { - "display_string": [ - "\ue063INXANE", - "\ue063XINSANEx", - "\ue030Android63943877" - ], - "profiles": [], - "name": "\ue063INXANE", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 14:17:49", - "registerOn": 1686122232.0881274, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686122232.0881283, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686312577.9783502, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686312577.9783514, - "lastIP": "azo~{a~~kgaibx", - "deviceUUID": "4e640eec371acc5bb6ee7f6b6425e7bd747c7e97" - }, - "pb-IF5XU0g5BA==": { - "display_string": [ - "\ue063ThirstyT11" - ], - "profiles": [], - "name": "\ue063ThirstyT11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-07 20:01:50", - "registerOn": 1686123447.6891396, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686123447.6891408, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686123447.6891487, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686123447.6891496, - "lastIP": "a\u007fn~}ifajdyvg\u007f", - "deviceUUID": "f5edb285b63cf64d4191a6c1cda6405a632f669d" - }, - "pb-IF5QU1MGFw==": { - "display_string": [ - "\ue063Pitaji" - ], - "profiles": [], - "name": "\ue063Pitaji", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-13 20:25:20", - "registerOn": 1686124992.5821562, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686124992.582157, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686124992.582164, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686124992.582165, - "lastIP": "dvva{va~m~{k", - "deviceUUID": "7200c52dda860844135f5560476c8dbc3e02b401" - }, - "pb-IF4NU0cvDQ==": { - "display_string": [ - "\ue063krishnaNS7" - ], - "profiles": [], - "name": "\ue063krishnaNS7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 19:08:59", - "registerOn": 1686125015.9234176, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686125015.9234183, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686125015.9234262, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686125015.923427, - "lastIP": "azo~{n~vk~v", - "deviceUUID": "b2f9eebd3cbbea08210d4839e46c2438330a3237" - }, - "pb-IF4UUGQuFw==": { - "display_string": [ - "\ue063IdealPacka" - ], - "profiles": [], - "name": "\ue063IdealPacka", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-30 14:32:39", - "registerOn": 1686125067.7856827, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686125067.7856832, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686247294.0348067, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686247294.034808, - "lastIP": "dvvd|vb{`~}", - "deviceUUID": "e3cc2deb8693d0f122a8c730e3fbf6fbcc8df2ea" - }, - "pb-IF4CFmcg": { - "display_string": [ - "\ue063yadavmembe", - "\ue030Android24166956" - ], - "profiles": [], - "name": "\ue063yadavmembe", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-11 12:22:32", - "registerOn": 1686125453.4806855, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686125453.4806864, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686125453.4806938, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686125453.4806948, - "lastIP": "azo~|j~|vdv", - "deviceUUID": "ead3bf344fc0743b5734fe510558272c0f208c3f" - }, - "pb-IF4IVUgjBg==": { - "display_string": [ - "\ue063Implicit41" - ], - "profiles": [], - "name": "\ue063Implicit41", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-04 13:18:17", - "registerOn": 1686125621.1748955, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686125621.1748965, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686125621.1749039, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686125621.1749048, - "lastIP": "a\u007fk~~obaocajav", - "deviceUUID": "3af6c58f34cf3eda069c674ce366492955a89348" - }, - "pb-IF4AUBkgVA==": { - "display_string": [ - "\ue063NoNameC2725276" - ], - "profiles": [], - "name": "\ue063NoNameC2725276", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-08 12:44:17", - "registerOn": 1686125916.2487552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686125916.2487557, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686125916.2487724, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686125916.2487733, - "lastIP": "a~o~v`~~hfaicz", - "deviceUUID": "7ef1a222c9f4026adcf259a319cef86ba04f64e2" - }, - "pb-IF5WUGsdCA==": { - "display_string": [ - "\ue063Deliber564" - ], - "profiles": [], - "name": "\ue063Deliber564", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-07 13:49:27", - "registerOn": 1686126189.1610498, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686126189.1610503, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686126189.161057, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686126189.1610577, - "lastIP": "bxvc{vevva|h", - "deviceUUID": "8b0597ef40a990a53aa836ec6adbfdc9fc621db1" - }, - "pb-IF5dUkknAg==": { - "display_string": [ - "\ue063Perishab94" - ], - "profiles": [], - "name": "\ue063Perishab94", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-09 12:47:28", - "registerOn": 1686126414.3005111, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686126414.3005118, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686126414.300519, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686126414.3005197, - "lastIP": "a|j~~mdaihyvavo", - "deviceUUID": "64afcef6a1b950c569ae33b1052dffe142616849" - }, - "pb-IF4VVFFSDw==": { - "display_string": [ - "\ue063Aathikesav", - "\ue030Android34117286" - ], - "profiles": [], - "name": "\ue063Aathikesav", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-27 12:02:25", - "registerOn": 1686126643.1908138, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686126643.1908145, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686126643.1908214, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686126643.1908224, - "lastIP": "bxvdaje~vb|j", - "deviceUUID": "eba399d88d0147c58b7ac0f69180c54ae03a29b0" - }, - "pb-IF5XUGgTNQ==": { - "display_string": [ - "\ue063THALAPAT45" - ], - "profiles": [], - "name": "\ue063THALAPAT45", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-16 14:29:05", - "registerOn": 1686126986.0294216, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686126986.0294223, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686126986.0294619, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686126986.0294626, - "lastIP": "dvvcxvb~i~{", - "deviceUUID": "2463cac04459f0aaa37105861d5b782d20c144d8" - }, - "pb-IF42FxkT": { - "display_string": [ - "\ue063Hashwanths" - ], - "profiles": [], - "name": "\ue063Hashwanths", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-15 20:40:19", - "registerOn": 1686127253.9596303, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686127253.9596312, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686127253.9596384, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686127253.959639, - "lastIP": "dvvcxvb~o~z`", - "deviceUUID": "c3873146834aa29af7161bada072c1c630bdc389" - }, - "pb-IF4WUlBeUA==": { - "display_string": [ - "\ue063OBOMBERO", - "\ue030Android58923222" - ], - "profiles": [], - "name": "\ue063OBOMBERO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-15 10:23:24", - "registerOn": 1686127408.452893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686127408.4528937, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686127408.4529023, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686127552.7119157, - "lastIP": "a\u007fn~}h`a`iaj`|", - "deviceUUID": "b06b71ee724e687976b1499de70937cf5dab9162" - }, - "pb-IF4LUkxfKw==": { - "display_string": [ - "\ue063pyleemacha" - ], - "profiles": [], - "name": "\ue063pyleemacha", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-01 16:40:45", - "registerOn": 1686127451.891991, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686127451.8919916, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686127451.892, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686127451.8920014, - "lastIP": "b\u007fj~w`~}lhaihx", - "deviceUUID": "09c570029acb0ad39a59f852bfa59b89854e434c" - }, - "pb-IF4TUGpaAg==": { - "display_string": [ - "\ue063Notewor349" - ], - "profiles": [], - "name": "\ue063Notewor349", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 16:30:07", - "registerOn": 1686127807.9757538, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686127807.9757545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686127807.9757626, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686127807.975764, - "lastIP": "azo~{o~{va~`", - "deviceUUID": "ab1c8eb2244909ea19d8dbc89b4172be3ac63a39" - }, - "pb-IF4vVUNfEA==": { - "display_string": [ - "\ue063sagar88822" - ], - "profiles": [], - "name": "\ue063sagar88822", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-01 00:12:49", - "registerOn": 1686128101.0478487, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686128101.0478494, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686311497.3954587, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686311497.3954601, - "lastIP": "azj~z`~~o~}ic", - "deviceUUID": "01e04b1ff025ad4db302102c93a87e771dec85f4", - "cMsgCount": 0, - "lastMsgTime": 1686311805.6060827, - "lastMsg": "\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02", - "cSameMsg": 0 - }, - "pb-JiNJVxFYUUtBX1hJEUVYXVNDEUlZT1ND": { - "display_string": [ - "\ue063aaman78659", - "\ue030Android2332173" - ], - "profiles": [], - "name": "\ue063aaman78659", - "isBan": false, - "isMuted": false, - "accountAge": "2016-06-19 11:45:35", - "registerOn": 1686128473.438456, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686128473.4384565, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686128473.438464, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686128473.4384654, - "lastIP": "a~`~~oiajgaig", - "deviceUUID": "477e5cce5b5c8b6428110158065556a52e6cdad2" - }, - "pb-IF4sU04IFA==": { - "display_string": [ - "\ue063ShariaR", - "\ue030Android64307311" - ], - "profiles": [], - "name": "\ue063ShariaR", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 20:16:06", - "registerOn": 1686128587.8458135, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686128587.8458142, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686128587.845822, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686128587.8458235, - "lastIP": "a\u007fk~~aeaid~va\u007fa", - "deviceUUID": "10cfd3a7dbd594c4a4fa60e1025094937baa39fa", - "cMsgCount": 0, - "lastMsgTime": 1686128636.2271528, - "lastMsg": "kill him", - "cSameMsg": 0 - }, - "pb-IF5XVUFcJg==": { - "display_string": [ - "\ue030Android50474962" - ], - "profiles": [], - "name": "\ue030Android50474962", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-25 14:05:51", - "registerOn": 1686129416.0898795, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686129416.0898802, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686230188.4025207, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686230188.4025218, - "lastIP": "a\u007fn~~acaia\u007fva}l", - "deviceUUID": "6be33b0e9d378948507f82a1fa1ba3d32ef93bd9" - }, - "pb-IF4-U0QoKQ==": { - "display_string": [ - "\ue063BusiestSpe" - ], - "profiles": [], - "name": "\ue063BusiestSpe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-01 16:32:39", - "registerOn": 1686129441.2011635, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686129441.201164, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686129441.2011714, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686129441.2011726, - "lastIP": "a\u007fk~~ldajbxvbzk", - "deviceUUID": "351e5f950f3a1a518365bba8838c8b4f0efc0709" - }, - "pb-IF4HUkgsPQ==": { - "display_string": [ - "\ue063AnkitRawka" - ], - "profiles": [], - "name": "\ue063AnkitRawka", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-12 14:35:02", - "registerOn": 1686129851.7646244, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686129851.764625, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686129851.7646458, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686129851.7646472, - "lastIP": "b}k~~`dajbxva|n", - "deviceUUID": "8bb40149961910f1175162fb0fc9e11b14870847" - }, - "pb-IF43UGYlDQ==": { - "display_string": [ - "\ue063Rishu772" - ], - "profiles": [], - "name": "\ue063Rishu772", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-15 18:02:22", - "registerOn": 1686130103.6511464, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686130103.6511471, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686130103.6511533, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686130103.6511545, - "lastIP": "a\u007fn~}ifaiawva}j", - "deviceUUID": "e4b5b99f02c85ce6a0f4dd4916b78e776705471f" - }, - "pb-IF40UhIPNw==": { - "display_string": [ - "\ue030Android53983730" - ], - "profiles": [], - "name": "\ue030Android53983730", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-15 13:52:54", - "registerOn": 1686130820.3667674, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686130820.3667681, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686130820.3667755, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686130820.366777, - "lastIP": "a~h~}jeamhaidw", - "deviceUUID": "1c1f06197220dbc518e887d8476a47e4875a567a" - }, - "pb-IF4dUxESIQ==": { - "display_string": [ - "\ue063Sarsus718" - ], - "profiles": [], - "name": "\ue063Sarsus718", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-02 22:53:45", - "registerOn": 1686132220.8888144, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686132220.8888154, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686132220.8888357, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686132220.8888369, - "lastIP": "a{a~~l`al~zo", - "deviceUUID": "a5dfc29e325dbb458fbf215ea9386435a1ade5da" - }, - "pb-IF4-UxJSAA==": { - "display_string": [ - "\ue063ThinkSweet" - ], - "profiles": [], - "name": "\ue063ThinkSweet", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-02 22:53:33", - "registerOn": 1686132221.7812793, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686132221.78128, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686132221.7812874, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686132221.7812884, - "lastIP": "axn~}iiajc}vawm", - "deviceUUID": "7a299d74917481974a95dbaaf2ae03c9050ad038" - }, - "pb-IF4rU0pbAQ==": { - "display_string": [ - "\ue063NoName16411" - ], - "profiles": [], - "name": "\ue063NoName16411", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-28 14:18:09", - "registerOn": 1686132222.7007632, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686132222.700764, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686132222.7007723, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686132259.5136695, - "lastIP": "dyvazl~vvb|", - "deviceUUID": "4885736a7929e43b3afadaa9a8de3747ca021115" - }, - "pb-IF4rUxcfHA==": { - "display_string": [ - "\ue063WhimsicalT" - ], - "profiles": [], - "name": "\ue063WhimsicalT", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-24 12:54:51", - "registerOn": 1686132230.9707725, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686132230.970773, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686132230.9707801, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686132230.970781, - "lastIP": "axn~}iiajcyvax", - "deviceUUID": "c6c30939df08789da893ca4b5f845b5d17c43497" - }, - "pb-IF4gUBkaIA==": { - "display_string": [ - "\ue063zaferozder" - ], - "profiles": [], - "name": "\ue063zaferozder", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-14 15:12:11", - "registerOn": 1686132238.1580565, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686132238.158057, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686132238.1580653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686132238.1580663, - "lastIP": "ealgajdwva{a", - "deviceUUID": "a3f7c7ac02df82bc6f43c5831f05413715f0d264" - }, - "pb-IF4UUBMBHA==": { - "display_string": [ - "\ue063Careless42" - ], - "profiles": [], - "name": "\ue063Careless42", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-05 12:07:51", - "registerOn": 1686133202.77552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686133202.775521, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686133202.7755513, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686133310.3373268, - "lastIP": "azj~z`~|m~}lf", - "deviceUUID": "ac16a99230d2d83318f44aa07143d3901a9ced44" - }, - "pb-IF4FVFUxVw==": { - "display_string": [ - "\ue063Nubplayer" - ], - "profiles": [], - "name": "\ue063Nubplayer", - "isBan": true, - "isMuted": false, - "accountAge": "2020-05-28 10:43:04", - "registerOn": 1686133446.3136194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686133446.3136199, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686133446.3136277, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686133485.9613407, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF5SUGszEQ==": { - "display_string": [ - "\ue063Nonchal316" - ], - "profiles": [], - "name": "\ue063Nonchal316", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-03 10:21:02", - "registerOn": 1686133975.068591, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686133975.0685918, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686133975.068599, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686133975.0686004, - "lastIP": "axi~xn~wi~xm", - "deviceUUID": "404cdf485a858da118a4cc53f1e8dd89ec6dd936" - }, - "pb-IF4UUGo-Lw==": { - "display_string": [ - "\ue063TubularAlt" - ], - "profiles": [], - "name": "\ue063TubularAlt", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-07 14:33:17", - "registerOn": 1686134482.323738, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686134482.3237388, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686134482.323746, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686134482.3237476, - "lastIP": "bxvc{va|vd\u007f", - "deviceUUID": "b7e91017744ab969b1b0fa8a4553ad81c31e0ad5" - }, - "pb-IF4sUGUCIw==": { - "display_string": [ - "\ue030Android65080295" - ], - "profiles": [], - "name": "\ue030Android65080295", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-17 16:20:02", - "registerOn": 1686134854.4677067, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686134854.4677072, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686134854.4677267, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686134854.467728, - "lastIP": "azo~zi~~a`ajdx", - "deviceUUID": "d87e66da1043d4cbeeef4e21915b1c65b5d6057f" - }, - "pb-IF4UUlMoJw==": { - "display_string": [ - "\ue063DarkestIn5" - ], - "profiles": [], - "name": "\ue063DarkestIn5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-25 18:43:53", - "registerOn": 1686135044.3957784, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686135044.395779, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686135044.3957877, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686135044.395789, - "lastIP": "a}j~zh~~aeajdy", - "deviceUUID": "e51ef9284846da2c34d0d22e4908a13acbba6f35" - }, - "pb-IF4mUkwuCQ==": { - "display_string": [ - "\ue063Agentkarup" - ], - "profiles": [], - "name": "\ue063Agentkarup", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-01 13:33:43", - "registerOn": 1686136040.8494637, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686136040.8494647, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686136040.8494716, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686136040.8494725, - "lastIP": "a~m~va~vn~}he", - "deviceUUID": "a4ed288ac9e141e9f26deb05beefced02d464012" - }, - "pb-IF4UVUQGCA==": { - "display_string": [ - "\ue063IrfanSheri", - "\ue030Android43938917" - ], - "profiles": [], - "name": "\ue063IrfanSheri", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-08 22:45:56", - "registerOn": 1686137217.1223893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686137217.12239, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686137217.1223981, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686137217.1223996, - "lastIP": "bxvf}va|ve~", - "deviceUUID": "6937e67743d6454270a82d48d600aa51506c1d84" - }, - "pb-IF4jU2wfVQ==": { - "display_string": [ - "\ue063minecraf90", - "\ue030Android62407517", - "\ue030Android62407450" - ], - "profiles": [], - "name": "\ue063minecraf90", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-11 20:26:50", - "registerOn": 1686137294.5769966, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686137294.5769973, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686137294.577005, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686138729.0761101, - "lastIP": "a\u007fk~wa~}keai`y", - "deviceUUID": "b001124a818ebd76cbf039c9fd1b3acce02937cc" - }, - "pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB": { - "display_string": [ - "\ue063NoName265731", - "\ue030unknown" - ], - "profiles": [], - "name": "\ue063NoName265731", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-03 00:30:21", - "registerOn": 1686137769.680921, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686137769.6809218, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686333707.3276975, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686333707.3276985, - "lastIP": "a~h~}jgancaih|", - "deviceUUID": "e30952bda624a1707c15cfb174e914d0a114370f" - }, - "pb-IF4-VUReVg==": { - "display_string": [ - "\ue063SonuMaan10" - ], - "profiles": [], - "name": "\ue063SonuMaan10", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-06 16:14:23", - "registerOn": 1686138318.6713057, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686138318.6713061, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686138318.6713161, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686138318.6713173, - "lastIP": "a}l~}mcaidzvb\u007fk", - "deviceUUID": "233971f76459cc63a975525ed9e009bd9ebc1ba3" - }, - "pb-IF5SUGoKAA==": { - "display_string": [ - "\ue030Android65148875" - ], - "profiles": [], - "name": "\ue030Android65148875", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-28 11:57:44", - "registerOn": 1686138800.9351656, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686138800.9351668, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686138800.935173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686138800.935174, - "lastIP": "dvvcxvb}n~}ie", - "deviceUUID": "d08bf95f1c08357a8f7268631cc3bca0d3bc068a" - }, - "pb-IF4PUnYxAA==": { - "display_string": [ - "\ue063PutridDete" - ], - "profiles": [], - "name": "\ue063PutridDete", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-28 15:03:52", - "registerOn": 1686139353.985224, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686139353.9852247, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686139353.9852316, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686139353.9852328, - "lastIP": "evvhwvb}l~}ib", - "deviceUUID": "f6d54f6f086fd4160878f8d5ee59bea17b5a98ed" - }, - "pb-IF4WVFMDJg==": { - "display_string": [ - "\ue063LUC1FER005" - ], - "profiles": [], - "name": "\ue063LUC1FER005", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-18 17:48:18", - "registerOn": 1686139899.0297818, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686139899.0297823, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686139899.029788, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686139899.0297887, - "lastIP": "a\u007fn~}jaaie|vava", - "deviceUUID": "5426938e47772f3ec2111f04a4495dfe5e3ecd3b" - }, - "pb-IF5dUBYsKA==": { - "display_string": [ - "\ue063BraverVis2" - ], - "profiles": [], - "name": "\ue063BraverVis2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-13 12:31:23", - "registerOn": 1686140146.0016758, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686140146.0016768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686140146.0016844, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686140146.0016859, - "lastIP": "azj~z`~}icaj`|", - "deviceUUID": "843518523b47b4a86c47562a0706ef88457fa0f8" - }, - "pb-IF5UUGkgNQ==": { - "display_string": [ - "\ue063FiercestNo" - ], - "profiles": [], - "name": "\ue063FiercestNo", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-22 08:51:12", - "registerOn": 1686141402.7913516, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686141402.7913523, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686141402.79136, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686141462.693356, - "lastIP": "a\u007fk~~ndaiiyvdw", - "deviceUUID": "faf61e806e081dbfc50dee8962ae5843694c8ce8" - }, - "pb-IF4OUGgPUQ==": { - "display_string": [ - "\ue063Lilyy" - ], - "profiles": [], - "name": "\ue063Lilyy", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-27 14:36:25", - "registerOn": 1686141882.721728, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686141882.7217288, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686161036.115773, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686163436.1218526, - "lastIP": "a~j~~kdaida`h", - "deviceUUID": "d667718161b68488370fc681e609259b5f07aa2d" - }, - "pb-IF4PU1QCAg==": { - "display_string": [ - "\ue063BluePartic" - ], - "profiles": [], - "name": "\ue063BluePartic", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-03 11:07:14", - "registerOn": 1686141894.6835933, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686141894.6835938, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686141894.6836014, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686141894.6836023, - "lastIP": "b}k~}kcaodaj", - "deviceUUID": "5153d735950ac5ff9986497b6c8154dc566d421d" - }, - "pb-IF4mVU4qPw==": { - "display_string": [ - "\ue020GovernmentalClinic30", - "\ue063Gokulplayz" - ], - "profiles": [], - "name": "\ue063Gokulplayz", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-01 15:04:23", - "registerOn": 1686141996.0883482, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686141996.0883489, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686141996.0883577, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686141996.0883586, - "lastIP": "dvvb\u007fl~~keaiix", - "deviceUUID": "5577cdcea9600023f8728dfe9a526ad759e74c52" - }, - "pb-IF5UUGxcIg==": { - "display_string": [ - "\ue030Android65211220" - ], - "profiles": [], - "name": "\ue030Android65211220", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-07 18:13:24", - "registerOn": 1686142079.3531516, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686142079.353152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686142079.353158, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686142079.353159, - "lastIP": "b}k~}khanfaig{", - "deviceUUID": "87d56a04acad861501daec02d5a10b2db874ecb6" - }, - "pb-IF48VEtbIg==": { - "display_string": [ - "\ue063shubhamgrg" - ], - "profiles": [], - "name": "\ue063shubhamgrg", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-26 15:23:13", - "registerOn": 1686143092.904874, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686143092.9048748, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686143092.9048834, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686143092.9048848, - "lastIP": "a{vavj~|i~}je", - "deviceUUID": "cfec5c807c0f5abcee2bb9c6e1cac2ca79004e46" - }, - "pb-IF4mV2QoMA==": { - "display_string": [ - "\ue063Luice204", - "\ue030Android26605362" - ], - "profiles": [], - "name": "\ue063Luice204", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-27 21:19:57", - "registerOn": 1686144022.319912, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686144022.3199124, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686144022.319919, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686144022.3199198, - "lastIP": "a\u007fn~}iaajdzvb~h", - "deviceUUID": "2f64661272447846f33aa18ed848b8fd2d460199" - }, - "pb-IF5VUxgAXA==": { - "display_string": [ - "\ue063cuteanna90", - "\ue063DINODAROCH", - "\ue063EightySupe", - "\ue030Android60226085", - "\ue030Android60864312" - ], - "profiles": [], - "name": "\ue063cuteanna90", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-19 13:55:21", - "registerOn": 1686146819.376613, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686146819.3766136, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686146819.376622, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686146819.3766232, - "lastIP": "dvvczvavk~~me", - "deviceUUID": "fa0338bbf463e2687a1b3f0b6445a74f201fc5a3" - }, - "pb-IF4JUGkSUA==": { - "display_string": [ - "\ue063Android65205821" - ], - "profiles": [], - "name": "\ue063Android65205821", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 18:40:16", - "registerOn": 1686148618.4591422, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686148618.459143, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686148618.4591496, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686148618.4591506, - "lastIP": "bam`ajcxvb{o", - "deviceUUID": "cdf594b2215a1149d73ac0af63b5ffa8ac3040df" - }, - "pb-IF5dUBZTXQ==": { - "display_string": [ - "\ue063HAKESH1215" - ], - "profiles": [], - "name": "\ue063HAKESH1215", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-12 18:04:59", - "registerOn": 1686150221.57124, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686150221.5712407, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686150221.5712483, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686150221.5712495, - "lastIP": "azo~zi~vi~~mi", - "deviceUUID": "4f8577717b079fa82ef9ae6be1f308e19ef0e590" - }, - "pb-IF4PUGosJw==": { - "display_string": [ - "\ue030Android65211762" - ], - "profiles": [], - "name": "\ue030Android65211762", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-07 19:56:00", - "registerOn": 1686150467.6924632, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686150467.6924639, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686150467.6924694, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686150467.6924708, - "lastIP": "azo~|j~}idaiev", - "deviceUUID": "908818e88eb27ff30f673278e0650294e3770b29" - }, - "pb-IF43UGgGIQ==": { - "display_string": [ - "\ue063AAWESH8300" - ], - "profiles": [], - "name": "\ue063AAWESH8300", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-28 22:40:51", - "registerOn": 1686151404.2978716, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686151404.297872, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686151404.2978797, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686151404.297881, - "lastIP": "a\u007fn~}hgaja\u007fvcx", - "deviceUUID": "4dd0ae1707a6f6280e741731da866983989b6f0e" - }, - "pb-JiNJARFdXUtEXF1DEUVWUVRCE0VcRFJE": { - "display_string": [ - "\ue063Tenacious8" - ], - "profiles": [], - "name": "\ue063Tenacious8", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-11 09:56:08", - "registerOn": 1686151843.9684877, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686151843.968488, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686151843.9684951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686151843.968496, - "lastIP": "a\u007fk~vo~vo~~ad", - "deviceUUID": "46395f14c4815f4562d417739f212663e76c66ce" - }, - "pb-IF4LVWc9HA==": { - "display_string": [ - "\ue063Saranviswa" - ], - "profiles": [], - "name": "\ue063Saranviswa", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-22 21:41:52", - "registerOn": 1686152116.0352414, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686152116.0352423, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686152116.0352516, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686152116.035253, - "lastIP": "azo~zi~zn~~nd", - "deviceUUID": "331318dcb2ca8b3450f9cf13c3b6956dbbf4548f" - }, - "pb-IF4PUlFTKg==": { - "display_string": [ - "\ue030Android65143475", - "\ue030Android61599520" - ], - "profiles": [], - "name": "\ue030Android61599520", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-19 23:29:51", - "registerOn": 1686154058.4342692, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686154058.43427, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686154058.4342787, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686154058.4342797, - "lastIP": "i}vd\u007fvb~`~~jd", - "deviceUUID": "46433f4e3ebeab3a13b0c6db9ca4cabab67974e4" - }, - "pb-IF4sVVgTAg==": { - "display_string": [ - "\ue063WonderfulH" - ], - "profiles": [], - "name": "\ue063WonderfulH", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-25 23:56:29", - "registerOn": 1686154213.0245414, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686154213.024542, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1686154423.4922793, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686154213.0245512, - "lastIP": "a\u007fn~~aha`~~ac", - "deviceUUID": "c58f357adfb8a9dea4a87afb6a7d3b6638564f95", - "cMsgCount": 0, - "lastMsgTime": 1686154423.4923718, - "lastMsg": "chud", - "cSameMsg": 0 - }, - "pb-IF4JVXoILA==": { - "display_string": [ - "\ue063Meshram007" - ], - "profiles": [], - "name": "\ue063Meshram007", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-13 07:51:55", - "registerOn": 1686155226.2016366, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686155226.2016377, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686306737.0641036, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686306749.1084306, - "lastIP": "azj~zo~xn~~ii", - "deviceUUID": "be091b0918336c235a84f4be7bfccdbfb726a1f7" - }, - "pb-IF4xVBQAUg==": { - "display_string": [ - "\ue063YearlyBla2", - "\ue030Android36465701" - ], - "profiles": [], - "name": "\ue063YearlyBla2", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-10 00:13:23", - "registerOn": 1686155952.1015837, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686155952.1015844, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686155952.101592, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686155952.1015933, - "lastIP": "dvvc}vaxa~}li", - "deviceUUID": "f823ee40e58f9c43bb9366a8e652093ece371e45" - }, - "pb-IF4vUkRaEg==": { - "display_string": [ - "\ue063NoNameB2525719" - ], - "profiles": [], - "name": "\ue063NoNameB2525719", - "isBan": true, - "isMuted": false, - "accountAge": "2022-01-27 13:44:02", - "registerOn": 1686158857.3884342, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686158857.3884346, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686158857.3884416, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686158857.3884423, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF5SUBYBUw==": { - "display_string": [ - "\ue063prohectiou" - ], - "profiles": [], - "name": "\ue063prohectiou", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-14 22:23:05", - "registerOn": 1686159131.5225422, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686159131.522543, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686159131.5225744, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686159131.5225754, - "lastIP": "aakhajaxva\u007fo", - "deviceUUID": "66b9a1a7ee180c15d382f5f993c837250c7a782b" - }, - "pb-IF4mUGkFJA==": { - "display_string": [ - "\ue063ObscureWo3" - ], - "profiles": [], - "name": "\ue063ObscureWo3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-07 22:18:23", - "registerOn": 1686159798.704718, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686159798.704719, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686159798.7047276, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686159798.7047286, - "lastIP": "azj~z`~~lgaihy", - "deviceUUID": "149e75d62ca8747367b0d362ce69ec79100d6b49" - }, - "pb-IF4FUGkPHA==": { - "display_string": [ - "\ue063VoidSubjec" - ], - "profiles": [], - "name": "\ue063VoidSubjec", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 11:31:34", - "registerOn": 1686160326.7303808, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686160326.7303813, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686160326.7303877, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686160444.8428652, - "lastIP": "azo~|k~}jbaki", - "deviceUUID": "53f7638bd68dfe0d849d1c34f1b48c8d40fa261a" - }, - "pb-IF4yUBA6AA==": { - "display_string": [ - "\ue063Friendl229" - ], - "profiles": [], - "name": "\ue063Friendl229", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-16 22:58:45", - "registerOn": 1686162627.6458132, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686162627.645814, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686162627.6458218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686162627.6458228, - "lastIP": "azl~~`baif}ve\u007f", - "deviceUUID": "d6d4bd522f2522c08aad038e3a6e213f592f384c" - }, - "pb-IF5QVVgBIw==": { - "display_string": [ - "\ue063DurBhaggg" - ], - "profiles": [], - "name": "\ue063DurBhaggg", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-09 13:31:18", - "registerOn": 1686166549.9483633, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686166549.948364, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686166549.9483724, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686166549.9483736, - "lastIP": "azo~|`~~kdak", - "deviceUUID": "501b08392a022fa63a82865d1cea79602303a00f" - }, - "pb-JiNJVxBfXEFHVVtIEUBYUFVCFURfQ1RC": { - "display_string": [ - "\ue063Aries", - "\ue030Android9912820" - ], - "profiles": [], - "name": "\ue063Aries", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-21 00:50:12", - "registerOn": 1686174721.9608915, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686174721.9608922, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686174721.9609218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686174721.9609232, - "lastIP": "d|vb}l~~vbzk", - "deviceUUID": "83e407328bff1c6d48bff420e30f6aa8a9911b74" - }, - "pb-IF4QU3YiKQ==": { - "display_string": [ - "\ue063Immovabl38" - ], - "profiles": [], - "name": "\ue063Immovabl38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 11:14:52", - "registerOn": 1686176184.188743, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686176184.1887438, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686394358.4076867, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686394358.4076877, - "lastIP": "dzvfak`aifz", - "deviceUUID": "e9c73b267c25638dc07b30339cea6c3fb9b48788" - }, - "pb-IF4mUBI9IA==": { - "display_string": [ - "\ue063GhastlyRe6" - ], - "profiles": [], - "name": "\ue063GhastlyRe6", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-03 14:23:51", - "registerOn": 1686178227.8273923, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686178227.8273928, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686178227.8274002, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686178227.8274012, - "lastIP": "a\u007fj~~`eajdxvc", - "deviceUUID": "02fccf1bc27d0d89e2ace271b0a7b030f095efc2" - }, - "pb-IF4qUGokBg==": { - "display_string": [ - "\ue030Android65214120" - ], - "profiles": [], - "name": "\ue030Android65214120", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-08 05:43:36", - "registerOn": 1686183524.7465498, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686183524.74655, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686183524.746557, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686183524.746558, - "lastIP": "dzva~o~}lgajc~", - "deviceUUID": "68e5b2b650dc2d7134dd0a9fa8464d46b2408754" - }, - "pb-IF5dUBgfDg==": { - "display_string": [ - "\ue063Destitu221" - ], - "profiles": [], - "name": "\ue063Destitu221", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-29 14:15:17", - "registerOn": 1686193227.5039134, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686193227.5039144, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686193227.5039222, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686193227.5039234, - "lastIP": "azo~|j~}maaic\u007f", - "deviceUUID": "2256a8d3105048708ccb48d24baea3180a4753c5" - }, - "pb-IF4eUGMKJw==": { - "display_string": [ - "\ue063PreppySpe2" - ], - "profiles": [], - "name": "\ue063PreppySpe2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-26 15:29:13", - "registerOn": 1686195857.7714517, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686195857.7714524, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686195857.7714605, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686195857.7714617, - "lastIP": "azh~~jiaif{vayl", - "deviceUUID": "4ae77ee93835d8ab1abf817c98eecc799aaff8dc" - }, - "pb-IF4qU0wPPQ==": { - "display_string": [ - "\ue063AJMALDUDE7", - "\ue030Android64722001" - ], - "profiles": [], - "name": "\ue063AJMALDUDE7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 15:31:06", - "registerOn": 1686196070.807632, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686196070.8076324, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686196070.807639, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686196070.80764, - "lastIP": "a~h~}jeaie{vbzj", - "deviceUUID": "1bd13fe5a96dc516bd991d123fe5d00506fde1be", - "cMsgCount": 1, - "lastMsgTime": 1686196552.4905484, - "lastMsg": "school", - "cSameMsg": 0 - }, - "pb-IF4gU3oFBg==": { - "display_string": [ - "\ue063NappingFri" - ], - "profiles": [], - "name": "\ue063NappingFri", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-10 23:46:14", - "registerOn": 1686196289.271872, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686196289.2718725, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686395378.5997958, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686395378.5997968, - "lastIP": "azo~{a~~`fajby", - "deviceUUID": "7a968aa232771fc000e6421d19fc1e5529b188bf" - }, - "pb-IF4CUGIlKw==": { - "display_string": [ - "\ue063Ubiquit238" - ], - "profiles": [], - "name": "\ue063Ubiquit238", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-20 16:51:08", - "registerOn": 1686196558.581271, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686196558.5812716, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686196558.5812795, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686196558.5812812, - "lastIP": "azj~zo~}k`and", - "deviceUUID": "1a6ec7f2586d7d1c855ff646f3fd146823f5073b" - }, - "pb-IF4hUBIkPQ==": { - "display_string": [ - "\ue063PointyGoos" - ], - "profiles": [], - "name": "\ue063PointyGoos", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-05 18:37:54", - "registerOn": 1686196576.6882381, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686196576.6882386, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686300008.6487498, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686300008.648751, - "lastIP": "azo~{j~}vfv", - "deviceUUID": "f15763bad1c170a92aaaaef11dcac23c1e1f2dce" - }, - "pb-IF4yVVg6KQ==": { - "display_string": [ - "\ue063bhanotsahi" - ], - "profiles": [], - "name": "\ue063bhanotsahi", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-21 11:48:21", - "registerOn": 1686199589.519396, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686199589.5193965, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686199589.519404, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686199589.5194054, - "lastIP": "a|j~~mdaii~va|a", - "deviceUUID": "e0eb058b81a6378111c6602e79cb52456afe4ca3" - }, - "pb-IF4zUGYOLQ==": { - "display_string": [ - "\ue063EasternMol" - ], - "profiles": [], - "name": "\ue063EasternMol", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-16 20:01:00", - "registerOn": 1686199868.3851173, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686199868.3851182, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686199868.3851252, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686199868.3851259, - "lastIP": "a\u007fn~~aeakiaifv", - "deviceUUID": "63b81a4a72b180eec73f879780d4d10497aeabe7" - }, - "pb-IF4KU1Q9Pw==": { - "display_string": [ - "\ue063PearlVirgo" - ], - "profiles": [], - "name": "\ue063PearlVirgo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-31 20:39:23", - "registerOn": 1686200042.3983226, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686200042.3983233, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686200042.3983362, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686200042.3983374, - "lastIP": "bxveaieyva{", - "deviceUUID": "217799c313cf0a8fc57851c7c11d507bce2f3696" - }, - "pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF": { - "display_string": [ - "\ue063ashu42v" - ], - "profiles": [], - "name": "\ue063ashu42v", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-30 00:27:53", - "registerOn": 1686200645.3772812, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686200645.3772821, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686200645.3772893, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686200645.3772902, - "lastIP": "a|a~zvb{j~~la", - "deviceUUID": "0b68ee7fce5ee27e7db4f5a8b0931022b2862f46" - }, - "pb-IF4OUBExFA==": { - "display_string": [ - "\ue063Devaraj02" - ], - "profiles": [], - "name": "\ue063Devaraj02", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-21 14:44:10", - "registerOn": 1686200733.5264452, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686200733.5264456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686200733.5264754, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686200923.880023, - "lastIP": "azo~{a~ya~~ke", - "deviceUUID": "80e04de54ae983199886985edcc63ceddb5b9c93" - }, - "pb-IF4lVUIGDQ==": { - "display_string": [ - "\ue063NoNameC504779" - ], - "profiles": [], - "name": "\ue063NoNameC504779", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-28 17:23:50", - "registerOn": 1686201812.4716654, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686201812.471666, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686201812.4716744, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686201812.4716754, - "lastIP": "dvvc}vayj~~o", - "deviceUUID": "6c1c8bfac798cca2a7a806581b037977b3d9ec00" - }, - "pb-IF5UUGwvJA==": { - "display_string": [ - "\ue063vijaybarol" - ], - "profiles": [], - "name": "\ue063vijaybarol", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-08 10:44:11", - "registerOn": 1686201928.901794, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686201928.901795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686375465.8089747, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686395203.9380097, - "lastIP": "a}j~~naalia`c", - "deviceUUID": "6f3d0491d6910430abbc41303840d02f678632d3", - "cMsgCount": 1, - "lastMsgTime": 1686312058.7211592, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4JUmwqLQ==": { - "display_string": [ - "\ue030Android55928477" - ], - "profiles": [], - "name": "\ue030Android55928477", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-09 23:30:47", - "registerOn": 1686203120.0549018, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686203120.0549023, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686203120.0549126, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686214165.8366976, - "lastIP": "a}j~~naalia`c", - "deviceUUID": "6f3d0491d6910430abbc41303840d02f678632d3", - "cMsgCount": 0, - "lastMsgTime": 1686205116.50669, - "lastMsg": "hi fear", - "cSameMsg": 0 - }, - "pb-IF41U2EmKA==": { - "display_string": [ - "\ue063BogdanKim2" - ], - "profiles": [], - "name": "\ue063BogdanKim2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-03 19:33:16", - "registerOn": 1686203165.305604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686203165.3056047, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686203165.305634, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686203165.3056352, - "lastIP": "izvazk~~``ajb~", - "deviceUUID": "84f2b209c54630cd9ccb129b00fbf6a4e1044552" - }, - "pb-IF4uCG4t": { - "display_string": [ - "\ue063KingUV2536", - "\ue030Android55832815" - ], - "profiles": [], - "name": "\ue063KingUV2536", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-30 11:50:35", - "registerOn": 1686203392.0164843, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686203392.0164855, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686203392.0164936, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686203392.0164945, - "lastIP": "a\u007fk~~l`ajezvh{", - "deviceUUID": "4ec4c9ca660374efc0749021865776b64339449a" - }, - "pb-IF4TU3EfNw==": { - "display_string": [ - "\ue063LaxCurb126" - ], - "profiles": [], - "name": "\ue063LaxCurb126", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-02 17:47:59", - "registerOn": 1686203546.5579727, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686203546.5579731, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686203546.5579813, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686203546.5579827, - "lastIP": "bxvixvb}l~}li", - "deviceUUID": "3d144c6888370dbc046caee8987b8202ec87f048" - }, - "pb-IF4BUmgKHQ==": { - "display_string": [ - "\ue063Intract291" - ], - "profiles": [], - "name": "\ue063Intract291", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-26 17:15:34", - "registerOn": 1686203919.8242803, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686203919.824281, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686203919.8243127, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686203919.8243139, - "lastIP": "evvhvvb}h~}lf", - "deviceUUID": "44d298e54870f33603d6ca0f13210121d5a87920" - }, - "pb-IF4eU006CQ==": { - "display_string": [ - "\ue063Excitin189" - ], - "profiles": [], - "name": "\ue063Excitin189", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 14:38:20", - "registerOn": 1686204694.8036313, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686204694.803632, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686204694.80364, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686204694.8036408, - "lastIP": "a~o~}kgaja\u007fv`", - "deviceUUID": "c46e7b202b041947c509bd499ab5f2ac5033f355" - }, - "pb-IF4CUBgRIg==": { - "display_string": [ - "\ue063LeftPrecur" - ], - "profiles": [], - "name": "\ue063LeftPrecur", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-06 17:17:05", - "registerOn": 1686205333.1248734, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686205333.1248744, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686205333.1250184, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686205333.1250203, - "lastIP": "axi~{`~~ibaj`~", - "deviceUUID": "dc4af110d41986fba9186fb46a48e0696d048793" - }, - "pb-IF5XVUEAVQ==": { - "display_string": [ - "\ue063Devenamipa" - ], - "profiles": [], - "name": "\ue063Devenamipa", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-02 22:23:26", - "registerOn": 1686205928.3655403, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686205928.365541, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686205928.365547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686205928.3655484, - "lastIP": "a~o~va~{`~~`h", - "deviceUUID": "d3d1b132bfcb103868358698d7cbfe2e05efe691" - }, - "pb-IF4DUGUuVg==": { - "display_string": [ - "\ue063Noticea285" - ], - "profiles": [], - "name": "\ue063Noticea285", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-07 20:50:24", - "registerOn": 1686206858.9874804, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686206858.987481, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686206858.9874876, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686206858.9874885, - "lastIP": "aakhajb\u007fve~", - "deviceUUID": "12fc08d41327332f299de05336ce72c9b9747207" - }, - "pb-IF4qUGcZMQ==": { - "display_string": [ - "\ue063TwelveDisp" - ], - "profiles": [], - "name": "\ue063TwelveDisp", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-24 10:40:20", - "registerOn": 1686206897.123009, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686206897.1230102, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686206897.123018, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686206897.1230197, - "lastIP": "b\u007fj~~lhamiajb{", - "deviceUUID": "cc492480e20a4965cf463ec3a1e540fcc2e7b891" - }, - "pb-IF4oV20xKA==": { - "display_string": [ - "\ue063Alex9999" - ], - "profiles": [], - "name": "\ue063Alex9999", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-22 11:28:36", - "registerOn": 1686207427.1820264, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686207427.1820273, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686207427.1820393, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686209016.617841, - "lastIP": "a\u007fn~}ica`fajd{", - "deviceUUID": "83e88be403ee6b0bbf72ae8736eebfbad93bfe99" - }, - "pb-IF4yU2gjIw==": { - "display_string": [ - "\ue063HelpfulJo8" - ], - "profiles": [], - "name": "\ue063HelpfulJo8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-27 13:02:24", - "registerOn": 1686207711.219072, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686207711.2190726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686207711.2190795, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686207711.2190807, - "lastIP": "awh~~`hajdwva", - "deviceUUID": "4824dc17c26b9d6318ffbcb2d1add6ad6b954112" - }, - "pb-IF4iUGEPUQ==": { - "display_string": [ - "\ue063Soulles109" - ], - "profiles": [], - "name": "\ue063Soulles109", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-19 10:56:29", - "registerOn": 1686207927.0122745, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686207927.012275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686207927.0122826, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686207927.0122836, - "lastIP": "azo~|k~}khal`", - "deviceUUID": "4f75287b4250961ea9aa00efd420dbccbf60b7db" - }, - "pb-IF4wVWMEBA==": { - "display_string": [ - "\ue063Scornful87" - ], - "profiles": [], - "name": "\ue063Scornful87", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-22 19:57:38", - "registerOn": 1686208237.13519, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686208237.1351907, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686208237.1351988, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686208248.8537614, - "lastIP": "b}k~}jeaahaoi", - "deviceUUID": "607720f744178905896ed2d6e3407d910195b334" - }, - "pb-IF40UGIxDA==": { - "display_string": [ - "\ue063Blazevoid1" - ], - "profiles": [], - "name": "\ue063Blazevoid1", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-23 15:02:27", - "registerOn": 1686208245.1338255, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686208245.1338263, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686208245.1338334, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686208245.1338348, - "lastIP": "azo~|o~~mhaii{", - "deviceUUID": "49198804dd575d8dacb8ff9d398d77502a05b938" - }, - "pb-IF4MUGIKVg==": { - "display_string": [ - "\ue063TigerMast2" - ], - "profiles": [], - "name": "\ue063TigerMast2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-23 15:05:15", - "registerOn": 1686208311.7136323, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686208311.7136328, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686208311.713639, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686208311.71364, - "lastIP": "azo~|o~~mhaii{", - "deviceUUID": "3a0f8b6e4f10d410e084a9d7da9b5050b9dda406" - }, - "pb-IF4CU1IzMQ==": { - "display_string": [ - "\ue063Wazaaaaa83" - ], - "profiles": [], - "name": "\ue063Wazaaaaa83", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-21 22:37:12", - "registerOn": 1686208331.4805806, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686208331.480581, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686347775.7044358, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686347775.7044368, - "lastIP": "avi~zj~}icajby", - "deviceUUID": "fb321c7caa0284554b3fe24a7108f15fbf3a670b", - "cMsgCount": 0, - "lastMsgTime": 1686347855.3507295, - "lastMsg": "tomates :) XD", - "cSameMsg": 0 - }, - "pb-IF4tU1QRCQ==": { - "display_string": [ - "\ue030Android64180621" - ], - "profiles": [], - "name": "\ue030Android64180621", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-03 16:25:37", - "registerOn": 1686209148.3773212, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686209148.3773217, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686209148.3773282, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686209148.3773289, - "lastIP": "i{vawo~}vayh", - "deviceUUID": "5ffe23b75dcb3b7da470afb970c32c9b3ba2746b" - }, - "pb-IF4xVRI9Mg==": { - "display_string": [ - "\ue063UsefulRove", - "\ue030Android45637361" - ], - "profiles": [], - "name": "\ue063UsefulRove", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-18 15:11:41", - "registerOn": 1686209479.7167406, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686209479.7167416, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686209479.7167504, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686209479.7167513, - "lastIP": "b\u007fk~~ieanhajc~", - "deviceUUID": "9933344071b9bec1f21f55d3c1de137c8f8feed2" - }, - "pb-IF4sUhUgIQ==": { - "display_string": [ - "\ue063ChillPligh", - "\ue030Android46464907" - ], - "profiles": [], - "name": "\ue063ChillPligh", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-29 10:27:53", - "registerOn": 1686211629.3057775, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686211629.3057783, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686211629.305785, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686211629.3057864, - "lastIP": "a}j~zh~}i`aoh", - "deviceUUID": "1ba81403bfb5880fdcb1e443f7ed28beb1c82d42" - }, - "pb-IF4vVVozIg==": { - "display_string": [ - "\ue063EngorgedI7", - "\ue030Android52979412" - ], - "profiles": [], - "name": "\ue063EngorgedI7", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-31 14:34:03", - "registerOn": 1686211950.6069245, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686211950.6069252, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686211950.6069348, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686211950.6069357, - "lastIP": "b}k~}khaiiwvdv", - "deviceUUID": "c48c13abeed90a3dcfe11beb9fa04f335e0b04f2" - }, - "pb-IF4wVXAkLA==": { - "display_string": [ - "\ue063anisakthar", - "\ue030Android52602910" - ], - "profiles": [], - "name": "\ue063anisakthar", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-27 14:47:03", - "registerOn": 1686212158.3133833, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686212158.3133845, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686212158.3133926, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686212158.3133938, - "lastIP": "azo~zi~yj~~`b", - "deviceUUID": "1dfe1eed0d2ee92c7f4113258a2cff5f2e04ee0c" - }, - "pb-IF4cUBdYIQ==": { - "display_string": [ - "\ue030Android64735588" - ], - "profiles": [], - "name": "\ue030Android64735588", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-28 13:31:21", - "registerOn": 1686213351.2498684, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686213351.2498689, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686213351.249876, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686213351.2498777, - "lastIP": "a\u007fk~~oaaiavve", - "deviceUUID": "76df6d38925cf3f320e070bf17472b95a7f3111a" - }, - "pb-IF4gVFdbJA==": { - "display_string": [ - "\ue063AppallingU", - "\ue030Android39307898" - ], - "profiles": [], - "name": "\ue063AppallingU", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-05 12:49:48", - "registerOn": 1686213358.0034459, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686213358.0034468, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686213358.0034556, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686213358.003457, - "lastIP": "a\u007fk~~oaaiavvava", - "deviceUUID": "9b456de419d4ade836c6dc8bea2e6e3cb0c7494b" - }, - "pb-IF4NV3oIFA==": { - "display_string": [ - "\ue063Fazilpuria", - "\ue020SaReGaMaPaDhaNiS\u00e5", - "\ue030Android54918539", - "\ue030Android57361651" - ], - "profiles": [], - "name": "\ue063Fazilpuria", - "isBan": false, - "isMuted": false, - "accountAge": "2019-01-26 16:32:52", - "registerOn": 1686215138.909916, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686215138.9099166, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686215138.9099238, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686215138.9099252, - "lastIP": "azj~zo~~adaih~", - "deviceUUID": "fcafcc043f19b8b161a3258f2a4897cabf6aaf41" - }, - "pb-IF4yUBcZAw==": { - "display_string": [ - "\ue063Lightni635" - ], - "profiles": [], - "name": "\ue063Lightni635", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-02 21:14:35", - "registerOn": 1686217267.7634637, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686217267.7634645, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686217267.7634723, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686217267.7634737, - "lastIP": "b}k~~`daje\u007fvawj", - "deviceUUID": "2fbd22eb67a619c5bee74dfd0cbf90b54c1e00ba" - }, - "pb-IF4JU0sADA==": { - "display_string": [ - "\ue063Healthi628", - "\ue020PolishedHunting46", - "\ue030Android54393983", - "\ue030Android63765387" - ], - "profiles": [], - "name": "\ue063Healthi628", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 14:12:06", - "registerOn": 1686218096.0515468, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686218096.0515478, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686218096.0515552, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686218096.0515566, - "lastIP": "a~o~}jhaohaic~", - "deviceUUID": "203c7ff1037304b76626b231e02533f186780dc5" - }, - "pb-IF4zUk4zBw==": { - "display_string": [ - "\ue020HaughtyExplorer81", - "\ue030Android54561276" - ], - "profiles": [], - "name": "\ue030Android54561276", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-09 07:17:59", - "registerOn": 1686221846.2538202, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686221846.253821, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686221846.2538297, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686221846.2538307, - "lastIP": "a~j~~ahajc}vaxk", - "deviceUUID": "6da883d28a5c1570304cfe113c2faf098410fca6" - }, - "pb-IF4TUGkAMQ==": { - "display_string": [ - "\ue063LushMateri" - ], - "profiles": [], - "name": "\ue063LushMateri", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 19:05:30", - "registerOn": 1686222359.0207572, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686222359.0207584, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686222359.0207667, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686222548.4187908, - "lastIP": "dvvcyvb|`~va", - "deviceUUID": "5e1020ff8ab40e7bae3e787857033964aeba20e8", - "cMsgCount": 0, - "lastMsgTime": 1686222605.1254373, - "lastMsg": "you are my friend ", - "cSameMsg": 0 - }, - "pb-IF5QVRcvUw==": { - "display_string": [ - "\ue063MockingFo4" - ], - "profiles": [], - "name": "\ue063MockingFo4", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-30 22:37:39", - "registerOn": 1686223736.3843374, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686223736.3843381, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686223736.3843455, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686223736.3843465, - "lastIP": "a\u007fk~~l`ai`xvdy", - "deviceUUID": "9de07d3a4cd9147af5ee26c6395efb794eceefb6" - }, - "pb-IF4IVXZcEA==": { - "display_string": [ - "\ue063Leog" - ], - "profiles": [], - "name": "\ue063Leog", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-06 18:24:41", - "registerOn": 1686224000.3852222, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686224000.3852232, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686224000.3852293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686224599.111587, - "lastIP": "dvva{l~ym~}lf", - "deviceUUID": "535c78d745316c4610377c5ba97896e5cf2ee1ab" - }, - "pb-IF4KAlQP": { - "display_string": [ - "\ue063GoldenCor2", - "\ue030Android22468704" - ], - "profiles": [], - "name": "\ue063GoldenCor2", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-15 21:07:46", - "registerOn": 1686224183.9837358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686224183.9837365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686224183.9837441, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686224183.983745, - "lastIP": "azo~{n~}ifaig|", - "deviceUUID": "34bfa12a59c849b4b0fe2df4710379cf0549c1e5" - }, - "pb-IF5WUGcOFw==": { - "display_string": [ - "\ue063Perempt288" - ], - "profiles": [], - "name": "\ue063Perempt288", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-13 11:43:52", - "registerOn": 1686224400.6877284, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686224400.687729, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686224400.6877532, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686224400.6877542, - "lastIP": "a\u007fk~~lfai~~`e", - "deviceUUID": "f158d7880a896e1c5ff32edc341dc6789a6a7f91" - }, - "pb-JiNJARBbU0FGWVdEFkJUUFVBF0BYRFRD": { - "display_string": [ - "\ue063harshaguta", - "\ue030Android10214088" - ], - "profiles": [], - "name": "\ue063harshaguta", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-26 09:07:48", - "registerOn": 1686224595.4022894, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686224595.40229, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686224595.4022965, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686224595.4022975, - "lastIP": "a\u007fn~}j`aj`{vawm", - "deviceUUID": "8d3d94220a876544809eaa49d171ddf5b494bc8e" - }, - "pb-IF49Uk0HIw==": { - "display_string": [ - "\ue063deebuckcol", - "\ue030Android58729355" - ], - "profiles": [], - "name": "\ue063deebuckcol", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-06 15:12:21", - "registerOn": 1686224610.491811, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686224610.4918118, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686224610.491819, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686224610.4918199, - "lastIP": "a\u007fn~~ahaadajd|", - "deviceUUID": "fd7ad0a5593856a1a819060e7be578837a8adc45" - }, - "pb-IF4oUBITMA==": { - "display_string": [ - "\ue063Answera184" - ], - "profiles": [], - "name": "\ue063Answera184", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-03 12:56:39", - "registerOn": 1686224892.4906576, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686224892.4906583, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686224892.49067, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686224892.4906712, - "lastIP": "azj~z`~~niaicx", - "deviceUUID": "8c69b31df370ff5d321d63c2acf8c20b9f7d0c96" - }, - "pb-IF4KU2wtJg==": { - "display_string": [ - "\ue063ActingBoar" - ], - "profiles": [], - "name": "\ue063ActingBoar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 21:47:36", - "registerOn": 1686225157.4962702, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686225157.4962707, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686225157.4962773, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686225157.4962783, - "lastIP": "axn~yh~{n~|m", - "deviceUUID": "24a8e7fcfe294793173527a45b7c7148b3dcbb92" - }, - "pb-IF48UBAPHQ==": { - "display_string": [ - "\ue063Luciferrev" - ], - "profiles": [], - "name": "\ue063Luciferrev", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-14 12:10:52", - "registerOn": 1686225175.5831838, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686225175.5831845, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686225175.5831912, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686225865.789868, - "lastIP": "azo~|j~|o~~mf", - "deviceUUID": "c06b3731349466420721d3745df38adf87232d40" - }, - "pb-IF4uUGkPFw==": { - "display_string": [ - "\ue063Asserti364" - ], - "profiles": [], - "name": "\ue063Asserti364", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-05 17:53:58", - "registerOn": 1686225647.2093883, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686225647.2093887, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686225647.209396, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686225647.2093968, - "lastIP": "bxvf~va|vb~m", - "deviceUUID": "370024b375386bec817e581b9c1e3a9e973fd3a1" - }, - "pb-IF5UUxheIg==": { - "display_string": [ - "\ue063DOLLAR" - ], - "profiles": [], - "name": "\ue063DOLLAR", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-18 14:52:29", - "registerOn": 1686225744.7013454, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686225744.7013464, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686225744.7013524, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686225744.7013533, - "lastIP": "a|j~~mdaihxvhx", - "deviceUUID": "c6e45fd1c978810e560b5acf6165aaf8e789fb21" - }, - "pb-IF4lU00yCQ==": { - "display_string": [ - "\ue063GOJOSATUR3" - ], - "profiles": [], - "name": "\ue063GOJOSATUR3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 09:38:51", - "registerOn": 1686226061.9462252, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686226061.946226, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686226061.9462333, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686226061.9462347, - "lastIP": "a\u007fn~}heaje}vay", - "deviceUUID": "f389a5f732c3112ff5b1fc402fc99787d093483c" - }, - "pb-IF4AVRYOXA==": { - "display_string": [ - "\ue063Deliber168", - "\ue030Android55493982" - ], - "profiles": [], - "name": "\ue063Deliber168", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-01 00:50:30", - "registerOn": 1686226296.7947404, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686226296.794741, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686226296.794748, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686226296.794749, - "lastIP": "hvvf{vg}vayk", - "deviceUUID": "e2f59e939087d0bfdd933bfd85d5cb9791f1d39c" - }, - "pb-IF4sUBlfMw==": { - "display_string": [ - "\ue063Rationa180" - ], - "profiles": [], - "name": "\ue063Rationa180", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-12 09:53:07", - "registerOn": 1686226588.8204358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686226588.8204362, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686226588.8204453, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686226588.8204463, - "lastIP": "azj~z`~~`~~lf", - "deviceUUID": "d861c1aeeffbf1865ff42ea8fe23a7332c216156" - }, - "pb-IF4LVURYIA==": { - "display_string": [ - "\ue063standardM4" - ], - "profiles": [], - "name": "\ue063standardM4", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-07 16:51:13", - "registerOn": 1686227375.1683657, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686227375.1683667, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686227375.1683733, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686227375.1683743, - "lastIP": "a\u007fn~}icamfa`e", - "deviceUUID": "620421fee73e3009dafef48db53b849616675047" - }, - "pb-IF4MUkYyBg==": { - "display_string": [ - "\ue030Android58054233" - ], - "profiles": [], - "name": "\ue030Android58054233", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-06 16:14:36", - "registerOn": 1686227453.1623745, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686227453.1623755, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686227453.1623816, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686227453.1623826, - "lastIP": "a\u007fk~~mcai`{vi{", - "deviceUUID": "c18adc0e687746de7370da12d1d154caa387522c" - }, - "pb-IF4TUBIxEw==": { - "display_string": [ - "\ue063Pointle159" - ], - "profiles": [], - "name": "\ue063Pointle159", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-28 19:22:33", - "registerOn": 1686227674.0053155, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686227674.0053165, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686227674.0053244, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686244277.2202241, - "lastIP": "azo~{a~vl~xn", - "deviceUUID": "eb076fc5013fd8b4b55cd7f04b0b39dac7be954d" - }, - "pb-IF4xVUMlFQ==": { - "display_string": [ - "\ue063Monocle144" - ], - "profiles": [], - "name": "\ue063Monocle144", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-02 13:56:46", - "registerOn": 1686228072.5410547, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686228072.5410554, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686228072.5410657, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686229977.5369473, - "lastIP": "a~n~y`~wk~~o`", - "deviceUUID": "ed4a9a8875f4e87c9e5d27d4db1ae6e9877055d5" - }, - "pb-IF4yU0MhKA==": { - "display_string": [ - "\ue063SolubleHin", - "\ue030Android63469829" - ], - "profiles": [], - "name": "\ue063SolubleHin", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-22 21:33:42", - "registerOn": 1686228095.587597, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686228095.5875976, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686228095.587606, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686228095.5876071, - "lastIP": "dvvcyvawa~~ah", - "deviceUUID": "9f7cda8df266af004b010a0f81a8f0eb960af76d" - }, - "pb-IF4iUlBfKQ==": { - "display_string": [ - "\ue063AnnualCoug" - ], - "profiles": [], - "name": "\ue063AnnualCoug", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-16 14:43:11", - "registerOn": 1686229609.3250132, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686229609.3250139, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686229609.3250215, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686229609.3250225, - "lastIP": "a~o~va~zm~{`", - "deviceUUID": "338370676230e983e92f4eda816d9739f046040d" - }, - "pb-IF5RUGQCUQ==": { - "display_string": [ - "\ue063KeenestLi3" - ], - "profiles": [], - "name": "\ue063KeenestLi3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-19 08:32:19", - "registerOn": 1686229656.5088315, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686229656.5088322, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686280405.2606354, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686280405.2606363, - "lastIP": "a\u007fk~~kfai`xva|n", - "deviceUUID": "97880cb99babad4bf9f6b8e24ceaaf6c75deb94f" - }, - "pb-IF4rUGg6Mg==": { - "display_string": [ - "\ue063Monolit286" - ], - "profiles": [], - "name": "\ue063Monolit286", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-25 22:51:38", - "registerOn": 1686230767.02301, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686230767.023011, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686230767.02302, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686230767.023021, - "lastIP": "azo~|`~~adajcz", - "deviceUUID": "0d14ba30b7d146219f0844e1d9d910ca6dda45d7" - }, - "pb-IF4XVWxSFg==": { - "display_string": [ - "\ue063RenownedEm", - "\ue030Android39333231" - ], - "profiles": [], - "name": "\ue063RenownedEm", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-26 14:47:59", - "registerOn": 1686231881.0228662, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686231881.022867, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686231881.0228746, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686231881.0228753, - "lastIP": "dvvcyvb~i~~m`", - "deviceUUID": "fd3f018e83c801abff35c3f550b755f1da241fa7" - }, - "pb-IF4FUGkBUw==": { - "display_string": [ - "\ue063Ishan38" - ], - "profiles": [], - "name": "\ue063Ishan38", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-07 00:06:14", - "registerOn": 1686232411.9847145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686232411.9847152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686232411.984723, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686232411.9847245, - "lastIP": "b}k~}keajd|va|`", - "deviceUUID": "66737329e305788dba5341eed11862edb37a4318" - }, - "pb-IF4RUGMsFg==": { - "display_string": [ - "\ue063Preside173" - ], - "profiles": [], - "name": "\ue063Preside173", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-24 12:06:28", - "registerOn": 1686232609.7055805, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686232609.7055814, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686232609.7055876, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686232609.7055886, - "lastIP": "a\u007fk~~leaiiajb", - "deviceUUID": "64dbdf504cc8d361ce94b0a07b8ace1352059ead" - }, - "pb-IF5QU2gNXA==": { - "display_string": [ - "\ue063ViralGravi" - ], - "profiles": [], - "name": "\ue063ViralGravi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-18 15:43:16", - "registerOn": 1686232631.870546, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686232631.870547, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686232631.8705533, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686232631.8705542, - "lastIP": "azo~{l~~m`aidx", - "deviceUUID": "ce97551323d1a3eb8489dbd02cc5e2bde921e504" - }, - "pb-IF4mVUgDNg==": { - "display_string": [ - "\ue030Android51863989" - ], - "profiles": [], - "name": "\ue030Android51863989", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-07 15:10:08", - "registerOn": 1686232686.128727, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686232686.128728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686232686.1287358, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686232686.1287367, - "lastIP": "evvhwvb}n~~na", - "deviceUUID": "82397f046be0f778c0f59851391a672f42cb01b0" - }, - "pb-IF4dUGpbUA==": { - "display_string": [ - "\ue063TipTopSupe" - ], - "profiles": [], - "name": "\ue063TipTopSupe", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-08 19:21:30", - "registerOn": 1686232837.712392, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686232837.712393, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686232837.7124012, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686232837.7124019, - "lastIP": "dvvc{vayh~~lg", - "deviceUUID": "908818e88eb27ff30f673278e0650294e3770b29" - }, - "pb-IF4HLGgm": { - "display_string": [ - "\ue063MassSway35", - "\ue030Android19671920" - ], - "profiles": [], - "name": "\ue063MassSway35", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-15 12:18:08", - "registerOn": 1686232921.793202, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686232921.7932026, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686232921.7932103, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686232921.7932112, - "lastIP": "azo~{n~~oaani", - "deviceUUID": "256f5c533ac84c7a81aebaf8ec85ac658be4e175" - }, - "pb-IF4TU00bVw==": { - "display_string": [ - "\ue063ZigFilter1" - ], - "profiles": [], - "name": "\ue063ZigFilter1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 15:54:40", - "registerOn": 1686233264.294882, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686233264.2948828, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686233264.29489, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686233264.2948906, - "lastIP": "a~o~}j`aiiajdv", - "deviceUUID": "1ab694f949b6da1548545b8565f3acabde48abf7" - }, - "pb-IF4sUGQxNg==": { - "display_string": [ - "\ue063LucklessKi" - ], - "profiles": [], - "name": "\ue063LucklessKi", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-10 18:46:05", - "registerOn": 1686233290.4807353, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686233290.480736, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686233290.4807444, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686233290.4807456, - "lastIP": "dvvcyvb|k~}kb", - "deviceUUID": "5ab0ea345df353e6d998feedce7c4285c436e2c7" - }, - "pb-IF4OUGM7FA==": { - "display_string": [ - "\ue030Android64946881", - "\ue030Android64954710", - "\ue030Android64985966", - "\ue030Android64985944", - "\ue030Android64992481" - ], - "profiles": [], - "name": "\ue030Android64946881", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-26 14:07:19", - "registerOn": 1686235880.9993715, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686235880.9993722, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686235880.9993818, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686240370.8711143, - "lastIP": "b}k~}kaaie~vavi", - "deviceUUID": "b64ad23730bd8bcc0f481e571fe995e0194415a7" - }, - "pb-IF4gU0Y7AQ==": { - "display_string": [ - "\ue063Independ55" - ], - "profiles": [], - "name": "\ue063Independ55", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 21:50:23", - "registerOn": 1686235893.0553603, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686235893.0553613, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686333881.9762287, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686333881.9762297, - "lastIP": "azo~{m~}iaaih}", - "deviceUUID": "4d5a22b991ecbbf1566da5764d14d9957498f370", - "cMsgCount": 1, - "lastMsgTime": 1686250873.3435388, - "lastMsg": "Nytt ", - "cSameMsg": 0 - }, - "pb-IF4cU2hdAw==": { - "display_string": [ - "\ue063siddhant23", - "\ue030Android61505559" - ], - "profiles": [], - "name": "\ue063siddhant23", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-26 11:10:41", - "registerOn": 1686236004.9074442, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686236004.9074447, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686236004.9074514, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686236004.9074523, - "lastIP": "dvvczvb{`~~lc", - "deviceUUID": "03db6159fe889430541810312cad57ca90c27ae4" - }, - "pb-IF4cUGgxHw==": { - "display_string": [ - "\ue020sayandcheran", - "\ue030Android65150147", - "\ue030Android65198678", - "\ue030Android65168257", - "\ue030Android65166757" - ], - "profiles": [], - "name": "\ue030Android65166757", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-28 11:47:29", - "registerOn": 1686236600.028893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686236600.0288937, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686236600.028901, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686236600.028902, - "lastIP": "azo~{l~~ohaidv", - "deviceUUID": "b333a2c32edafc8241536eb2cd9bdee37d1a3428" - }, - "pb-IF5UVW4FUQ==": { - "display_string": [ - "\ue030Android48646626" - ], - "profiles": [], - "name": "\ue030Android48646626", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-03 11:12:08", - "registerOn": 1686237053.9274762, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686237053.927477, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686237053.927485, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686237053.9274867, - "lastIP": "a\u007fn~~aeai`|vgv", - "deviceUUID": "0cf7681ebb983be0d37077adc2704bd742b5f86c" - }, - "pb-IF5SU3EgMw==": { - "display_string": [ - "\ue063ASSASSINR4" - ], - "profiles": [], - "name": "\ue063ASSASSINR4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-23 13:38:43", - "registerOn": 1686237409.2723255, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686237409.2723265, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686237409.2723334, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686237409.272334, - "lastIP": "a}j~~ogai`|vcx", - "deviceUUID": "f1bb59886f3a43cc51006f31305ce144f31e59c7", - "cMsgCount": 0, - "lastMsgTime": 1686237817.35638, - "lastMsg": "/sm", - "cSameMsg": 0 - }, - "pb-IF4JU1EuEQ==": { - "display_string": [ - "\ue030Android64057825" - ], - "profiles": [], - "name": "\ue030Android64057825", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-16 02:43:35", - "registerOn": 1686238972.875067, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686238972.8750677, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686238972.875076, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686238972.875077, - "lastIP": "awi~~ieajd{vg\u007f", - "deviceUUID": "f19a181587cd366e575774e80684798b90ad7a7e" - }, - "pb-IF4QU2sZLg==": { - "display_string": [ - "\ue063ThermalMa4" - ], - "profiles": [], - "name": "\ue063ThermalMa4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 21:49:07", - "registerOn": 1686239753.8064604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686239753.8064609, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686239753.8064687, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686239753.8064697, - "lastIP": "d~va\u007fl~}meao", - "deviceUUID": "43ec2caee7a6b0bc60119b4bb0cc5af62a1c8309" - }, - "pb-IF4wU1EMVQ==": { - "display_string": [ - "\ue030Android64050769" - ], - "profiles": [], - "name": "\ue030Android64050769", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-14 22:51:29", - "registerOn": 1686239954.5865471, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686239954.5865479, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686239954.5865774, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686239954.5865788, - "lastIP": "cxvbzm~~mgakf", - "deviceUUID": "4e3db4bb7b21f57c87a2ea5ec4fa9670a415b60c" - }, - "pb-IF4wVRkMAQ==": { - "display_string": [ - "\ue030Android58474907" - ], - "profiles": [], - "name": "\ue030Android58474907", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-03 19:40:07", - "registerOn": 1686240212.566472, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686240212.5664728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686356757.0150702, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686356757.0150712, - "lastIP": "g|va\u007fn~~`fald", - "deviceUUID": "8550f1d0e398d1a336708c9d6f3cad0894ed14ba", - "cMsgCount": 0, - "lastMsgTime": 1686347880.4110608, - "lastMsg": "hi", - "cSameMsg": 0 - }, - "pb-IF5SU0MtBw==": { - "display_string": [ - "\ue063thegodofth" - ], - "profiles": [], - "name": "\ue063thegodofth", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-12 09:26:05", - "registerOn": 1686241026.6448746, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686241026.6448753, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686241026.644883, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686241026.6448836, - "lastIP": "a\u007fn~}ica`aaidx", - "deviceUUID": "7206d9a07cdd25fca50438ac7db4586d4ecd781a" - }, - "pb-IF4vUmMbLg==": { - "display_string": [ - "\ue063Slipper427" - ], - "profiles": [], - "name": "\ue063Slipper427", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-02 20:34:34", - "registerOn": 1686241644.5994215, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686241644.5994225, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686312648.2559426, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686312648.255944, - "lastIP": "a}j~~oba`fajf", - "deviceUUID": "49d8ce6132876b75db0c87b1ecb05d9834915af0", - "cMsgCount": 0, - "lastMsgTime": 1686242106.5349455, - "lastMsg": "its ok u win", - "cSameMsg": 0 - }, - "pb-IF4KUBYdPQ==": { - "display_string": [ - "\ue030Android64714932" - ], - "profiles": [], - "name": "\ue030Android64714932", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-25 20:15:44", - "registerOn": 1686241687.295159, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686241687.2951598, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686241687.295297, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686241687.2952983, - "lastIP": "avh~vo~~`caib", - "deviceUUID": "65ca653399802b5a56f43826b470895b17abf95b" - }, - "pb-IF5VUGQ7Uw==": { - "display_string": [ - "\ue063Nondesc194" - ], - "profiles": [], - "name": "\ue063Nondesc194", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-20 14:10:58", - "registerOn": 1686242010.5104704, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686242010.5104709, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686242010.5104775, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686242010.5104783, - "lastIP": "dvvb\u007fn~~idaof", - "deviceUUID": "fdf973f1359cd9a821fbe38c4ef3e31bf1a9dc48" - }, - "pb-IF4sU1EhUg==": { - "display_string": [ - "\ue063FainterKic" - ], - "profiles": [], - "name": "\ue063FainterKic", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-20 21:32:05", - "registerOn": 1686242236.3110235, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686242236.3110244, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686242236.3110316, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686242236.3110325, - "lastIP": "axo~zk~~meaib\u007f", - "deviceUUID": "76b60e8b11acdca5dc01d6d92e6cbc9ea0b295f5" - }, - "pb-IF4VU1ozLQ==": { - "display_string": [ - "\ue063MinusSpect" - ], - "profiles": [], - "name": "\ue063MinusSpect", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-11 13:33:00", - "registerOn": 1686242408.9326682, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686242408.932669, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686242408.932675, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686242408.9326758, - "lastIP": "a\u007fn~}h`aaeai`z", - "deviceUUID": "1af08fc3b56ae6a04f45600d572b6f23644f2e70" - }, - "pb-IF4pUlkJKw==": { - "display_string": [ - "\ue063Maisha2910" - ], - "profiles": [], - "name": "\ue063Maisha2910", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-17 12:40:40", - "registerOn": 1686242527.4124322, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686242527.412433, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686242527.4124398, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686242534.08811, - "lastIP": "a\u007fk~~jeaib}vb~j", - "deviceUUID": "581d48549a30c496a6dc1cf7430730c2c27dcd17" - }, - "pb-IF4KUGdZKA==": { - "display_string": [ - "\ue063Anasprogam" - ], - "profiles": [], - "name": "\ue063Anasprogam", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-18 18:34:55", - "registerOn": 1686242749.4967675, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686242749.4967685, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686242749.4967768, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686242749.496778, - "lastIP": "dvvd}vizvgz", - "deviceUUID": "3dc5724c10f5da2d43806cabe2d19d964a3fd2c0" - }, - "pb-IF4RUkEoCw==": { - "display_string": [ - "\ue063ongaming90", - "\ue030Android57507599" - ], - "profiles": [], - "name": "\ue063ongaming90", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-16 17:56:07", - "registerOn": 1686243085.8647318, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686243085.8647327, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686243085.8647394, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686243085.8647404, - "lastIP": "azj~z`~zl~}k", - "deviceUUID": "06cf9e250d2f93e4c2ce1aeb1222de368da5ebf2" - }, - "pb-IF4BUGYzPQ==": { - "display_string": [ - "\ue063PoorerInex" - ], - "profiles": [], - "name": "\ue063PoorerInex", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-20 17:58:27", - "registerOn": 1686244990.1969597, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686244990.1969604, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686244990.196968, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686244990.1969693, - "lastIP": "a~h~}jdai`yva|o", - "deviceUUID": "8237da6f3fa46ffc7129eb06e46cdae35b69b6b3" - }, - "pb-IF4LVWEDKQ==": { - "display_string": [ - "\ue063Selvapravi" - ], - "profiles": [], - "name": "\ue063Selvapravi", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-12 17:35:58", - "registerOn": 1686245340.5295458, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686245340.5295463, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686245340.5296788, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686245340.5296807, - "lastIP": "azo~{n~xo~}kc", - "deviceUUID": "5c96ca687fab72801befcfba1b905c3a95c0fb28" - }, - "pb-LV4FVxEOBxcUVQxERkNWUFFA": { - "display_string": [ - "\ue063rouaflala", - "\ue030Android14858832" - ], - "profiles": [], - "name": "\ue063rouaflala", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-01 13:59:58", - "registerOn": 1686245838.4953067, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686245838.4953072, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686246503.5925047, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686246244.1443493, - "lastIP": "a\u007fn~}ifai`|vaw`", - "deviceUUID": "47b8e02ead93f74965cd80f820c1e8c8bb3a59ef", - "cMsgCount": 2, - "lastMsgTime": 1686246853.692658, - "lastMsg": "ye bhadve ne bulaya sahil darling ne", - "cSameMsg": 0 - }, - "pb-IF5UU3YxEA==": { - "display_string": [ - "\ue063Miraculo17" - ], - "profiles": [], - "name": "\ue063Miraculo17", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-13 20:55:50", - "registerOn": 1686246105.2661202, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686246105.2661207, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686248940.8942726, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686251658.055518, - "lastIP": "dvvd|vb{i~~", - "deviceUUID": "983cf93eac8ac2f9ba1258a6f77298cc0b4cd77a", - "cMsgCount": 2, - "lastMsgTime": 1686250933.386422, - "lastMsg": "Good night abhi", - "cSameMsg": 0 - }, - "pb-IF42UGooDA==": { - "display_string": [ - "\ue063Karry" - ], - "profiles": [], - "name": "\ue063Karry", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-08 19:57:00", - "registerOn": 1686246216.3773348, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686246216.3773353, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686246216.3773434, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686247543.9388003, - "lastIP": "a~o~v`~}n~{`", - "deviceUUID": "05946dd1e08ad14751e6f83479f1afce3287562b" - }, - "pb-IF5UVRZfIA==": { - "display_string": [ - "\ue063SweetAnaly" - ], - "profiles": [], - "name": "\ue063SweetAnaly", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-28 16:22:17", - "registerOn": 1686246380.9580035, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686246380.9580042, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686246380.9580116, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686246380.9580126, - "lastIP": "a\u007fk~xo~~n~~k", - "deviceUUID": "80de9d031fcb3ddaf13c7a5e8987c45194fc7916" - }, - "pb-IF4dUGgOHw==": { - "display_string": [ - "\ue030Android65163483" - ], - "profiles": [], - "name": "\ue030Android65163483", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-30 21:10:35", - "registerOn": 1686246447.2165475, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686246447.2165484, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686246447.216556, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686246447.216557, - "lastIP": "dvvcyvb|m~~hb", - "deviceUUID": "33275f305cb28626497ba55f06cfb84143d64e86" - }, - "pb-IF4zU2MgJw==": { - "display_string": [ - "\ue063SharpEnemy" - ], - "profiles": [], - "name": "\ue063SharpEnemy", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-09 17:53:20", - "registerOn": 1686246698.4371364, - "canStartKickVote": true, - "spamCount": 3, - "lastSpam": 1686248589.0248814, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686335455.7231836, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686335345.070073, - "lastIP": "a}l~~meaje{vayj", - "deviceUUID": "5b13413ad2a035b34073c5918da9363afe5b8217", - "cMsgCount": 0, - "lastMsgTime": 1686335613.201461, - "lastMsg": "I have girls from bs", - "cSameMsg": 0 - }, - "pb-IF43U2QiKA==": { - "display_string": [ - "\ue063SlowerLea2", - "\ue030Android60963243" - ], - "profiles": [], - "name": "\ue063SlowerLea2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-12 15:00:30", - "registerOn": 1686246764.7125108, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686246764.7125115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686246764.7125196, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686246764.7125213, - "lastIP": "azo~|l~~n~wa", - "deviceUUID": "9d8049858515c893b222ca3a0942a877f98f07e9" - }, - "pb-IF5VUmUYVw==": { - "display_string": [ - "\ue063SternComme" - ], - "profiles": [], - "name": "\ue063SternComme", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-30 15:19:43", - "registerOn": 1686246823.5958283, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686246823.595829, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686246823.5958374, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686246823.595839, - "lastIP": "a}j~~oiajaxvayi", - "deviceUUID": "05bb8feb1a27800e060aa645be4621183bbdbfc6" - }, - "pb-IF4XU0ddEA==": { - "display_string": [ - "\ue063Tanmaysaur" - ], - "profiles": [], - "name": "\ue063Tanmaysaur", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 12:11:42", - "registerOn": 1686246962.0765805, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686246962.076581, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686246962.0765867, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686246962.0765874, - "lastIP": "awj~ya~~``amg", - "deviceUUID": "7b46a4b00db7f6fad2b9f32c6c878678662345be" - }, - "pb-IF4vVRUFVA==": { - "display_string": [ - "\ue063Ghost0001" - ], - "profiles": [], - "name": "\ue063Ghost0001", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-10 15:52:43", - "registerOn": 1686247377.6451478, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686247377.6451485, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686247377.6451557, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686249913.7701075, - "lastIP": "dxviakbaidv", - "deviceUUID": "00a2149d5e7bb409e844da5b609ae87ebaccaffc", - "cMsgCount": 0, - "lastMsgTime": 1686250096.8666844, - "lastMsg": "tu kuch kr hi to nhi rha", - "cSameMsg": 0 - }, - "pb-IF4sU00tMA==": { - "display_string": [ - "\ue063OutwardSa3" - ], - "profiles": [], - "name": "\ue063OutwardSa3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 00:50:49", - "registerOn": 1686248061.0662014, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686248061.0662024, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686248061.0662096, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686248061.066211, - "lastIP": "a\u007fn~xn~}haaiiv", - "deviceUUID": "90491cf2dcf24ce9ed9a0e5f60fe6a3de12e6db9" - }, - "pb-JiNJARFZVEJCXVtDF09RU1NBGUVYQVBG": { - "display_string": [ - "\ue063TRON" - ], - "profiles": [], - "name": "\ue063TRON", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-18 14:47:55", - "registerOn": 1686249396.0990443, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686249396.0990453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686339864.3490632, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686339864.349064, - "lastIP": "b}k~}keaif\u007fvbw", - "deviceUUID": "090638a88642d8a85c1d0a4563d0a05062ff4eed", - "cMsgCount": 0, - "lastMsgTime": 1686249767.9726768, - "lastMsg": "isha love me bby", - "cSameMsg": 0 - }, - "pb-IF4dU0wPIw==": { - "display_string": [ - "\ue063SecludedH2", - "\ue030Android64251024" - ], - "profiles": [], - "name": "\ue063SecludedH2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 23:22:06", - "registerOn": 1686249869.9287007, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686249869.9287012, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686249869.9287093, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686249869.9287102, - "lastIP": "axn~~o`aiaam", - "deviceUUID": "13b2a7bb3cd6be27f7f9d35d588a4667992a86e4" - }, - "pb-IF4KUGYGFQ==": { - "display_string": [ - "\ue030Linux54607" - ], - "profiles": [], - "name": "\ue030Linux54607", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-17 01:05:46", - "registerOn": 1686249884.2309296, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686249884.2309308, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686249884.2309372, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686249884.2309387, - "lastIP": "a\u007fk~{`~~hcaibv", - "deviceUUID": "367512ad531a03130a4d9996fb62a4873881aa77" - }, - "pb-IF4VMREI": { - "display_string": [ - "\ue063ShinyCarp8" - ], - "profiles": [], - "name": "\ue063ShinyCarp8", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-09 22:07:10", - "registerOn": 1686250105.1682231, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686250105.168224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686250105.168232, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686250105.1682332, - "lastIP": "a|o~vo~~hgaj`}", - "deviceUUID": "68bdb497cd0fde43e1cb7664c64c7e0820e69d6d" - }, - "pb-JiNJARFbXUFCWFpGF0ZTXVNHEUZaQlNB": { - "display_string": [ - "\ue063Dhruv0999" - ], - "profiles": [], - "name": "\ue063Dhruv0999", - "isBan": false, - "isMuted": false, - "accountAge": "2016-09-26 22:21:18", - "registerOn": 1686250793.3344383, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686250793.3344393, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686250793.334447, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686250793.334448, - "lastIP": "dvvcyvh|vbx", - "deviceUUID": "6fc47e9d1af365a33a111d3476cc4658b7b30153" - }, - "pb-IF4VUkYnMw==": { - "display_string": [ - "\ue030Android61285593" - ], - "profiles": [], - "name": "\ue030Android61285593", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-06 02:36:50", - "registerOn": 1686251403.501132, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686251403.5011327, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686251403.5011468, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686251403.5011482, - "lastIP": "azo~~h`amhami", - "deviceUUID": "3a0daef115d78b2c9838c76c49f327c076aeaee4" - }, - "pb-IF5RUGkPJg==": { - "display_string": [ - "\ue063NeatDonati" - ], - "profiles": [], - "name": "\ue063NeatDonati", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-20 11:19:18", - "registerOn": 1686251594.1680422, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686251594.1680434, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686251594.1680524, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686251594.1680534, - "lastIP": "azj~z`~~a~}", - "deviceUUID": "2a79fd6d89ed82e107879db10eb62582a37d793a" - }, - "pb-JiNJARBbUkZFWVZIF05UVVxHGURcTlFH": { - "display_string": [ - "\ue063TANMAYMICH", - "\ue030Android11922589" - ], - "profiles": [], - "name": "\ue063TANMAYMICH", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-23 23:41:21", - "registerOn": 1686254586.6527157, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686254586.6527166, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686394483.3749192, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686394483.3749201, - "lastIP": "awj~xh~~mbaih\u007f", - "deviceUUID": "64f484df03b124c2f4804e121a2a6f253c945d39" - }, - "pb-IF4iUGkcNw==": { - "display_string": [ - "\ue063Firestar" - ], - "profiles": [], - "name": "\ue063Firestar", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-08 04:44:54", - "registerOn": 1686260289.6656122, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686260289.6656132, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686260289.665619, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686260289.6656199, - "lastIP": "awl~zo~}jfanh", - "deviceUUID": "27d8e2c60344ddbbf062ddfd65c30600f4cf24c5" - }, - "pb-IF5dUkgMMA==": { - "display_string": [ - "\ue063NoName707355" - ], - "profiles": [], - "name": "\ue063NoName707355", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-06 19:22:52", - "registerOn": 1686267514.5318017, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686267514.5318027, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686267514.5318112, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686267514.5318124, - "lastIP": "hwvbzm~}igaic", - "deviceUUID": "fa738ac0d350678466442b11df60a9845e99ea2c" - }, - "pb-IF40UGUbAw==": { - "display_string": [ - "\ue063PortlyStil" - ], - "profiles": [], - "name": "\ue063PortlyStil", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-14 16:20:44", - "registerOn": 1686273905.5913048, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686273905.5913055, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686273905.5913117, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686273905.5913124, - "lastIP": "dzva}k~}jba`g", - "deviceUUID": "65836392301c3d76d6bb74c00a23ebc11aa0beec" - }, - "pb-IF5cVXEyAA==": { - "display_string": [ - "\ue063VISHUUU", - "\ue020ChromeExport38", - "\ue030Android51788140" - ], - "profiles": [], - "name": "\ue063VISHUUU", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-23 11:23:59", - "registerOn": 1686280983.867792, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686280983.8677926, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686280983.8678014, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686280983.8678024, - "lastIP": "azo~zi~~aaalf", - "deviceUUID": "c6d45659c3cd1c403483bb4bcbd0e35fee1488c7" - }, - "pb-IF4RVUc6EA==": { - "display_string": [ - "\ue063Krarozdjfj" - ], - "profiles": [], - "name": "\ue063Krarozdjfj", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-27 14:56:47", - "registerOn": 1686283546.4689548, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686283546.4689558, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686283546.4689627, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686283546.4689639, - "lastIP": "a~h~}jgai~vo", - "deviceUUID": "3ea110b5b0fb896d9cbb6e3bfd727c003b4cbc72" - }, - "pb-IF4rUGItDg==": { - "display_string": [ - "\ue063FixedProto" - ], - "profiles": [], - "name": "\ue063FixedProto", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-18 13:30:18", - "registerOn": 1686283789.0148017, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686283789.0148025, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686283789.0148113, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686283789.0148125, - "lastIP": "dvvc}vaxo~~la", - "deviceUUID": "efa86ff6124f3c327b77094dc67cd8f058ab0b2b" - }, - "pb-IF4oU2EbKg==": { - "display_string": [ - "\ue030Android61022597" - ], - "profiles": [], - "name": "\ue030Android61022597", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-06 12:43:05", - "registerOn": 1686286531.0692265, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686286531.0692272, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686286531.0692368, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686286531.0692382, - "lastIP": "a}i~~jcah~{j", - "deviceUUID": "964fdffbff5c11baa4b25a0b739bc03fbda9612d" - }, - "pb-IF4-U3M7Ug==": { - "display_string": [ - "\ue063John30" - ], - "profiles": [], - "name": "\ue063John30", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 20:12:13", - "registerOn": 1686286674.589028, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686286674.5890286, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686286674.5890367, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686286674.589038, - "lastIP": "b}k~}jhaibyva}o", - "deviceUUID": "aecde259d3725952f967a1db5bd2ee5baf120f8c" - }, - "pb-IF4iU0VbLw==": { - "display_string": [ - "\ue063LoudStarfi" - ], - "profiles": [], - "name": "\ue063LoudStarfi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-03 11:23:29", - "registerOn": 1686288156.3044722, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686288156.3044732, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686288156.30448, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686288156.304481, - "lastIP": "azo~{`~}j`aki", - "deviceUUID": "91f5eb8cd2566bd132115fe8c59dfabc22fd0349" - }, - "pb-IF5RUGMmNQ==": { - "display_string": [ - "\ue063AmusingTr3" - ], - "profiles": [], - "name": "\ue063AmusingTr3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-10 17:37:23", - "registerOn": 1686289020.7870092, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686289020.7870097, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686289020.7870176, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686289020.7870188, - "lastIP": "a\u007fn~}j`ajd|va}j", - "deviceUUID": "c28c95ebf6e9c8a48e097f3520c8a10f58199317" - }, - "pb-IF4nU0ciEw==": { - "display_string": [ - "\ue063Crippli172" - ], - "profiles": [], - "name": "\ue063Crippli172", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-12 12:18:33", - "registerOn": 1686291796.177494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686291796.1774952, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686291796.1775064, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686291796.1775079, - "lastIP": "a\u007fn~}hfaibyvgy", - "deviceUUID": "a6a368248946a4c2823cc8ee77f9b184017c4310" - }, - "pb-IF4gUGIMNg==": { - "display_string": [ - "\ue063SmallerPa5" - ], - "profiles": [], - "name": "\ue063SmallerPa5", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-25 17:57:22", - "registerOn": 1686291846.3567498, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686291846.3567505, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686291846.356781, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686291846.3567824, - "lastIP": "azo~|j~v`~{a", - "deviceUUID": "96c546836d288a6a490f2303847ee064dba23db4" - }, - "pb-IF4mUBUKIw==": { - "display_string": [ - "\ue063Broadest50" - ], - "profiles": [], - "name": "\ue063Broadest50", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-22 12:19:59", - "registerOn": 1686292116.6553388, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686292116.6553395, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686292116.6553464, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686292116.6553473, - "lastIP": "dvvd|vazj~|", - "deviceUUID": "a37f3ced627ec92ca41a542a094f5a28a9b0ac67" - }, - "pb-IF4FUGUANg==": { - "display_string": [ - "\ue063VishnuPri4" - ], - "profiles": [], - "name": "\ue063VishnuPri4", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-14 14:55:54", - "registerOn": 1686292641.318096, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686292641.3180964, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686292641.3181033, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686292641.3181045, - "lastIP": "b}k~~`bajavva}m", - "deviceUUID": "9e0d610a95ead740aac4ce8b193bccf0857ff0fb" - }, - "pb-IF4CVFkdKQ==": { - "display_string": [ - "\ue063EarlierAss" - ], - "profiles": [], - "name": "\ue063EarlierAss", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-25 20:37:57", - "registerOn": 1686294542.5870588, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686294542.5870593, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686294542.5870664, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686294542.5870674, - "lastIP": "a\u007fk~~`baifyvaxo", - "deviceUUID": "bfc4046a4a932fa1eb97a432020a65c6e4ba29b2" - }, - "pb-IF4NVxAZDg==": { - "display_string": [ - "\ue063TherockJK1" - ], - "profiles": [], - "name": "\ue063TherockJK1", - "isBan": false, - "isMuted": false, - "accountAge": "2018-07-11 15:52:43", - "registerOn": 1686294939.802634, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686294939.8026347, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686294939.8026433, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686301013.4471521, - "lastIP": "dvvcyva~m~{i", - "deviceUUID": "9dda09fcf9a3701e0e8edddd357f35fc1813050f", - "cMsgCount": 0, - "lastMsgTime": 1686301131.8341322, - "lastMsg": "go blue", - "cSameMsg": 0 - }, - "pb-IF4CKhYn": { - "display_string": [ - "\ue063vishiihsiv", - "\ue030PC275640" - ], - "profiles": [], - "name": "\ue063vishiihsiv", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-24 20:31:02", - "registerOn": 1686294968.8424025, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686294968.842403, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686401708.952595, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686401708.9525964, - "lastIP": "dvvcyvb~j~~aa", - "deviceUUID": "f6e85920e9356ea8e7adfb6f8b800624962b0a9d", - "cMsgCount": 0, - "lastMsgTime": 1686403542.7370622, - "lastMsg": "\ud83d\ude44", - "cSameMsg": 0 - }, - "pb-IF4PUGo9Hw==": { - "display_string": [ - "\ue030Android65221271" - ], - "profiles": [], - "name": "\ue030Android65221271", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-09 13:09:33", - "registerOn": 1686296380.8220875, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686296380.8220882, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686296380.8220935, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686296380.822095, - "lastIP": "azo~{a~~jhajf", - "deviceUUID": "2075f74ce3988b96997b4c4082726cec0bfd3b36" - }, - "pb-IF5cUkszBg==": { - "display_string": [ - "\ue063MarineVect", - "\ue030Android56299814" - ], - "profiles": [], - "name": "\ue063MarineVect", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-17 17:25:49", - "registerOn": 1686296412.1701615, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686296412.1701622, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686296412.17017, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686296412.1701715, - "lastIP": "dxviakbajez", - "deviceUUID": "8046542fcedc2898b84eb5d04336e78c73ed3716" - }, - "pb-IF4sCXI9": { - "display_string": [ - "\ue063IndigoOnio", - "\ue030Android35432456" - ], - "profiles": [], - "name": "\ue063IndigoOnio", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-06 07:53:11", - "registerOn": 1686296419.9385161, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686296419.938517, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686296419.9385235, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686300034.7451367, - "lastIP": "a~o~va~zvi\u007f", - "deviceUUID": "016005002c5e71bc4f41ba158f73d116d7bfdf63", - "cMsgCount": 1, - "lastMsgTime": 1686299815.3394766, - "lastMsg": "u both", - "cSameMsg": 0 - }, - "pb-IF4vU2EzMg==": { - "display_string": [ - "\ue063MossyArti2" - ], - "profiles": [], - "name": "\ue063MossyArti2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-03 12:30:49", - "registerOn": 1686297156.9437613, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686297156.9437618, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686297156.9437685, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686297156.9437697, - "lastIP": "a~h~}jdaifaiez", - "deviceUUID": "0ac9a3dc13e68396fa51a1c737e4f17108f285ee" - }, - "pb-IF4wUlIYCg==": { - "display_string": [ - "\ue063zM116FDdu" - ], - "profiles": [], - "name": "\ue063zM116FDdu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-25 16:12:16", - "registerOn": 1686297179.1239846, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686297179.123985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686297179.1239934, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686302394.8187518, - "lastIP": "b}k~~`faj`}vb{k", - "deviceUUID": "c6af8801fa7f6be63cc6dcac571df1e3bd6b9161", - "cMsgCount": 0, - "lastMsgTime": 1686297537.4258082, - "lastMsg": "who", - "cSameMsg": 0 - }, - "pb-IF4FUBlYUA==": { - "display_string": [ - "\ue063calmdev" - ], - "profiles": [], - "name": "\ue063calmdev", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-09 10:39:20", - "registerOn": 1686297257.9530027, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686297257.953003, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686297257.9530096, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686297274.7088282, - "lastIP": "a\u007fk~}iaaidao", - "deviceUUID": "f6a33af708d980e6fc1c7efda397d73e6734762d" - }, - "pb-IF4BUlQGCA==": { - "display_string": [ - "\ue063EasternS13", - "\ue030Android59427673" - ], - "profiles": [], - "name": "\ue063EasternS13", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-03 15:54:02", - "registerOn": 1686297346.5833104, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686297346.583311, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686297346.5833175, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686297373.0569792, - "lastIP": "a|o~vo~yo~zj", - "deviceUUID": "50178cf5fe9867437c330f0541179b4ceb72eab3" - }, - "pb-IF5QVUU-Mw==": { - "display_string": [ - "\ue063Mrprickly1", - "\ue030Android47455009" - ], - "profiles": [], - "name": "\ue063Mrprickly1", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-29 12:40:34", - "registerOn": 1686297440.5910733, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686297440.5910738, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686297440.5910802, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686297440.5910811, - "lastIP": "dvvc}va|j~~na", - "deviceUUID": "bdc6a7863bfa4cfac8ffd2581776692554cdfee4" - }, - "pb-IF40UnoJUA==": { - "display_string": [ - "\ue063ArmoredOrc" - ], - "profiles": [], - "name": "\ue063ArmoredOrc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-15 13:30:54", - "registerOn": 1686297494.800854, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686297494.8008547, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686297494.800863, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686297494.8008642, - "lastIP": "azo~{n~~jcaie}", - "deviceUUID": "d35e9173642b3b17d7aace45263adda53c89b5aa" - }, - "pb-IF5cPGsk": { - "display_string": [ - "\ue063StoneDemig" - ], - "profiles": [], - "name": "\ue063StoneDemig", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-13 08:33:22", - "registerOn": 1686299380.735707, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686299380.7357078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686299380.7357142, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686299796.9190612, - "lastIP": "dvvc}vay`~~ob", - "deviceUUID": "ff809483fcc7e7ca5a19b18d674f26840835c81d" - }, - "pb-JiNJARFcUUZCW19DGEdQV1VAEkVYRFFF": { - "display_string": [ - "\ue063skullgame4", - "\ue030Android20571362" - ], - "profiles": [], - "name": "\ue063skullgame4", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-09 06:25:26", - "registerOn": 1686299442.054943, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686299442.0549438, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686299442.054951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686300035.7494752, - "lastIP": "b}k~~`daj`wva}h", - "deviceUUID": "62797d26a16e23e5bd0348480f002238abaa774e" - }, - "pb-IF4BU1QdIw==": { - "display_string": [ - "\ue030Android64209989", - "\ue030Android64490931" - ], - "profiles": [], - "name": "\ue030Android64209989", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-08 10:53:09", - "registerOn": 1686300548.9943447, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686300548.9943457, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686300548.9943547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686300548.9943554, - "lastIP": "a~o~v`~wh~{h", - "deviceUUID": "13a08594ebf7718bc3dc0bfa0cfbcac8edb58738" - }, - "pb-IF4GUGgEUQ==": { - "display_string": [ - "\ue063Harmles193" - ], - "profiles": [], - "name": "\ue063Harmles193", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-27 17:08:00", - "registerOn": 1686300944.8445258, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686300944.8445265, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686300944.8445337, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686300944.8445349, - "lastIP": "a\u007fn~~ahaib\u007fvawj", - "deviceUUID": "25037672ec332de2c69e9765390505b95b727204" - }, - "pb-IF4UUGYtKQ==": { - "display_string": [ - "\ue030Android65055227" - ], - "profiles": [], - "name": "\ue030Android65055227", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-13 14:40:54", - "registerOn": 1686302576.820632, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686302576.8206325, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686302576.8206408, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686302576.8206418, - "lastIP": "a\u007fk~}ldakdaai", - "deviceUUID": "b9aa717a83019ff0654cd40ddf6b31b2916d9750" - }, - "pb-IF4JVEYJEA==": { - "display_string": [ - "\ue063captainjes" - ], - "profiles": [], - "name": "\ue063captainjes", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-03 00:39:10", - "registerOn": 1686303078.9459627, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686303078.9459636, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686303078.9459708, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686303078.9459722, - "lastIP": "a\u007fn~}h`anbaie}", - "deviceUUID": "745fd29d5c9d6b54c2e8218d91bd2a88a87bc76c" - }, - "pb-IF5RU3UzJA==": { - "display_string": [ - "\ue063RabidFight" - ], - "profiles": [], - "name": "\ue063RabidFight", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-06 20:34:27", - "registerOn": 1686303128.1382887, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686303128.1382895, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686303128.1382976, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686303128.1382985, - "lastIP": "a}k~~kfaj`yva{o", - "deviceUUID": "952003926226a9c0a1a22df16dd40b3bbe1d1840" - }, - "pb-IF4tV0YpCg==": { - "display_string": [ - "\ue063FuschiaCh3" - ], - "profiles": [], - "name": "\ue063FuschiaCh3", - "isBan": false, - "isMuted": false, - "accountAge": "2019-02-21 21:21:37", - "registerOn": 1686303457.4320552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686303457.432056, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686303457.4320776, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686303457.4320786, - "lastIP": "azo~zi~yh~v", - "deviceUUID": "072f90c9d46a6cedfe9af3f9937e010327cfc937" - }, - "pb-IF4yU1M-Nw==": { - "display_string": [ - "\ue063Consciou55" - ], - "profiles": [], - "name": "\ue063Consciou55", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-29 15:04:41", - "registerOn": 1686304946.5457244, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686304946.545725, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686304946.545733, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686304946.545734, - "lastIP": "a\u007fk~}iaaieam`", - "deviceUUID": "17475cf91a7679466f7eee339e22aa82ded6bf46" - }, - "pb-IF4XUGI7Aw==": { - "display_string": [ - "\ue063Existen279" - ], - "profiles": [], - "name": "\ue063Existen279", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-18 15:53:59", - "registerOn": 1686306637.267444, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686306637.2674444, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686317300.2990332, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686317300.2990344, - "lastIP": "azj~z`~}n~yn", - "deviceUUID": "4d9a5d7925a267f0f2385f70a1f714be11ffc50f" - }, - "pb-IF4zVUsmIg==": { - "display_string": [ - "\ue063Faction231", - "\ue030Android52213236" - ], - "profiles": [], - "name": "\ue063Faction231", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-17 13:47:12", - "registerOn": 1686306767.5693734, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686306767.5693743, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686306767.5693812, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686306767.5693822, - "lastIP": "b\u007fn~wl~}khai`~", - "deviceUUID": "09bd68fa0bc3f2777a0fa34829850781b8af8732" - }, - "pb-IF4pUnIoJA==": { - "display_string": [ - "\ue063Neelesh321" - ], - "profiles": [], - "name": "\ue063Neelesh321", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-06 13:04:57", - "registerOn": 1686306913.278468, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686306913.2784684, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686306913.278476, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686306913.278477, - "lastIP": "bxvf}vaya~~ji", - "deviceUUID": "7e98d2ed99b41dc4aea4e9e8e5fe9adb78c840d5" - }, - "pb-IF4cU04gMQ==": { - "display_string": [ - "\ue063AluminumR6", - "\ue030Android63619828" - ], - "profiles": [], - "name": "\ue063AluminumR6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 16:48:12", - "registerOn": 1686307092.77408, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686307092.7740808, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686307092.774089, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686307092.7740903, - "lastIP": "awk~wj~}hfajb", - "deviceUUID": "dc7e880a3dc11641aca02e2d6920948204cb3801" - }, - "pb-IF4lUkkHUA==": { - "display_string": [ - "\ue063FranticWoe", - "\ue030Android51934593" - ], - "profiles": [], - "name": "\ue063FranticWoe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-17 19:27:07", - "registerOn": 1686307183.0996165, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686307183.0996172, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686307183.0996249, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686307183.0996263, - "lastIP": "a\u007fk~~ndaiivva|a", - "deviceUUID": "5dd5b72b568ab6871b49875b0ed79ba36834c5d7" - }, - "pb-IF5XUBZSDg==": { - "display_string": [ - "\ue030Android64587740" - ], - "profiles": [], - "name": "\ue030Android64587740", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-07 16:47:14", - "registerOn": 1686308007.2893553, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686308007.289356, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686308007.2893631, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686308007.2893646, - "lastIP": "a\u007fn~}jaaifwvava", - "deviceUUID": "a6c5500f618256fc7b4f8ce5808b42f2e9a0d4af" - }, - "pb-IF5UVW4NDA==": { - "display_string": [ - "\ue063FABxRAWAN" - ], - "profiles": [], - "name": "\ue063FABxRAWAN", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-02 11:21:32", - "registerOn": 1686308174.842472, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686308174.8424728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686308174.8424795, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686308573.2210202, - "lastIP": "dvva}`~~nfaig|", - "deviceUUID": "ebde359cbb19a36b1eb4d9f212b84bee516a2a63" - }, - "pb-IF5WU1InPw==": { - "display_string": [ - "\ue063CHAMPAK99" - ], - "profiles": [], - "name": "\ue063CHAMPAK99", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-09 10:36:03", - "registerOn": 1686308174.8484445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686308174.8484447, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686308174.8484507, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686308174.8484514, - "lastIP": "azj~z`~zvix", - "deviceUUID": "864f0e3c0fa066c80c4cb2a6d4f864cf025bcf33" - }, - "pb-IF4SUxkOXQ==": { - "display_string": [ - "\ue063GamingTrea" - ], - "profiles": [], - "name": "\ue063GamingTrea", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-31 10:11:27", - "registerOn": 1686308203.9347358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686308203.9347367, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686308510.790784, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686308203.9347448, - "lastIP": "dvvcxva~o~~kd", - "deviceUUID": "eae8126f3627a9db6b30695ddfcfb7a229590c09", - "cMsgCount": 0, - "lastMsgTime": 1686308544.1932344, - "lastMsg": "srry", - "cSameMsg": 0 - }, - "pb-IF4DUGgBXA==": { - "display_string": [ - "\ue063DynamicTe3" - ], - "profiles": [], - "name": "\ue063DynamicTe3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-27 22:45:00", - "registerOn": 1686308538.7307403, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686308538.7307408, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686308538.7307472, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686308538.730748, - "lastIP": "a\u007fn~~aeamfaicv", - "deviceUUID": "73814c0789ff71ce61fd86f0cda179bf35d97e63" - }, - "pb-IF4OUGgjXQ==": { - "display_string": [ - "\ue063L33tExodu2" - ], - "profiles": [], - "name": "\ue063L33tExodu2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-25 18:40:10", - "registerOn": 1686308556.5001369, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686308556.5001376, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686308556.5001447, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686308556.500146, - "lastIP": "d~vav`~~khaib|", - "deviceUUID": "364f2e05a58c0f7bcb5c87eb64940075d560ada3" - }, - "pb-IF4UVWgEFw==": { - "display_string": [ - "\ue063InwardGosl" - ], - "profiles": [], - "name": "\ue063InwardGosl", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-29 10:33:49", - "registerOn": 1686308804.7830265, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686308804.7830272, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686308804.783034, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686308804.7830353, - "lastIP": "azj~z`~~hcajc}", - "deviceUUID": "95fce6ed4d994a0f6c04ae7730f2114fef30b882" - }, - "pb-IF4IUGQlNw==": { - "display_string": [ - "\ue063steelshotz" - ], - "profiles": [], - "name": "\ue063steelshotz", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-05 23:30:47", - "registerOn": 1686309364.2532973, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686309364.2532983, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686309364.2533066, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686309364.253308, - "lastIP": "a\u007fk~zva|j~|", - "deviceUUID": "1d6dbe5879f5fbe7eba25a1d019ebd0e6e58fd1a", - "cMsgCount": 0, - "lastMsgTime": 1686309824.9323392, - "lastMsg": "laggg", - "cSameMsg": 0 - }, - "pb-IF4VUGpcNA==": { - "display_string": [ - "\ue030Android65214968" - ], - "profiles": [], - "name": "\ue030Android65214968", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-08 11:07:29", - "registerOn": 1686309507.0976412, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686309507.0976417, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686397781.0601754, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686397781.0601766, - "lastIP": "a\u007fk~~mcaiiwva\u007fj", - "deviceUUID": "00224593e841ab03182aefdb93d16bfdaf3eb45c" - }, - "pb-IF4qUGQ7Eg==": { - "display_string": [ - "\ue030Android64992544" - ], - "profiles": [], - "name": "\ue030Android64992544", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-03 14:15:42", - "registerOn": 1686309628.70501, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686309628.7050104, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686309628.7050183, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686309628.7050195, - "lastIP": "a\u007fk~~jaaoeaoh", - "deviceUUID": "a479cf15d56489f769977be68b665897530ae129" - }, - "pb-IF4RUGocIw==": { - "display_string": [ - "\ue063Ryner" - ], - "profiles": [], - "name": "\ue063Ryner", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-09 15:38:22", - "registerOn": 1686309883.7343006, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686309883.7343013, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686309883.7343102, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686309883.7343113, - "lastIP": "aakhaagaicx", - "deviceUUID": "6f371abcce16518ba0ef3b18a95c994704a46097" - }, - "pb-IF5UVXIvNQ==": { - "display_string": [ - "\ue030Android49180490" - ], - "profiles": [], - "name": "\ue030Android49180490", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-29 05:56:50", - "registerOn": 1686310186.7230246, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686310186.7230253, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686310186.7230341, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686311163.1255636, - "lastIP": "a\u007fn~}ica`baia", - "deviceUUID": "19cab23c5e27d40b623af49d1e26a3594d5358dc" - }, - "pb-IF4yVEspVg==": { - "display_string": [ - "\ue063BROWNBEARL", - "\ue030PC912320", - "\ue030Android63678114" - ], - "profiles": [], - "name": "\ue063BROWNBEARL", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-27 08:18:33", - "registerOn": 1686310219.8562014, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686310219.856203, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686310219.8562114, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686310219.8562129, - "lastIP": "azo~|a~}m`aab", - "deviceUUID": "18804ca4703453b1b0df23973b98da9e7e589048", - "cMsgCount": 2, - "lastMsgTime": 1686310274.356344, - "lastMsg": "sad lyf", - "cSameMsg": 0 - }, - "pb-IF4QVRQBMg==": { - "display_string": [ - "\ue063herora2018" - ], - "profiles": [], - "name": "\ue063herora2018", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-03 16:43:05", - "registerOn": 1686310872.3639097, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686310872.3639104, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686310872.363929, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686310872.3639305, - "lastIP": "azo~{`~}mcaii}", - "deviceUUID": "e2c69c6655a74f942ce43101f9375ad207a4812a" - }, - "pb-IF5dVWwqKw==": { - "display_string": [ - "\ue063REPNOGAMER" - ], - "profiles": [], - "name": "\ue063REPNOGAMER", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-12 09:29:49", - "registerOn": 1686311452.8314724, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686311452.8314729, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686311452.8314798, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686311452.8314815, - "lastIP": "a~l~|i~~kfajc{", - "deviceUUID": "2b23550a5ba3eb052c36d148e588a3fb49f4422a", - "cMsgCount": 1, - "lastMsgTime": 1686311467.9586034, - "lastMsg": "yo", - "cSameMsg": 0 - }, - "pb-IF49UxAzBw==": { - "display_string": [ - "\ue063Nikhil1393" - ], - "profiles": [], - "name": "\ue063Nikhil1393", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-26 22:18:30", - "registerOn": 1686312516.0608087, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686312516.0608096, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686312516.0608175, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686312516.0608182, - "lastIP": "a}j~~nhajbwva~k", - "deviceUUID": "8b2e3e98ded7dc1ac150f289ee81413a20513d75" - }, - "pb-IF4hUk0NCA==": { - "display_string": [ - "\ue020CannyBohemian42", - "\ue020NeoChef376", - "\ue020MajesticDependence62", - "\ue063AlluringSe", - "\ue030Android61998026" - ], - "profiles": [], - "name": "\ue063AlluringSe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-08 22:05:53", - "registerOn": 1686312927.165656, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686312927.1656566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686312927.1656628, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686312927.1656637, - "lastIP": "azj~z`~}jfa``", - "deviceUUID": "955a2549e5e055c17a2c8cfaf1f1f65744786605" - }, - "pb-IF5cUGwgMw==": { - "display_string": [ - "\ue063kingdoom9i" - ], - "profiles": [], - "name": "\ue063kingdoom9i", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-09 11:00:17", - "registerOn": 1686312980.049234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686312980.0492346, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686312980.0492418, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686312980.0492432, - "lastIP": "azj~zo~}kgaihy", - "deviceUUID": "c2a7fe09fd0779a6e34d31d6e8041b775f1b8361" - }, - "pb-IF4UVRRfNw==": { - "display_string": [ - "\ue063IdealGourm", - "\ue030Android45641612" - ], - "profiles": [], - "name": "\ue063IdealGourm", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-24 21:06:40", - "registerOn": 1686313069.1947923, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686313069.194793, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686378012.844931, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686378012.8449318, - "lastIP": "b}k~~ogaocaii}", - "deviceUUID": "22338eac02bdee1ba8b06a9fc0ecf9926b2cf226", - "cMsgCount": 0, - "lastMsgTime": 1686313481.4914181, - "lastMsg": "1bs1 no bomb", - "cSameMsg": 0 - }, - "pb-JiNJARBbUkdIVVZGF0ZZUFVAF0ldRFlB": { - "display_string": [ - "\ue063Liquiddes2" - ], - "profiles": [], - "name": "\ue063Liquiddes2", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-25 17:31:23", - "registerOn": 1686313301.9978428, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686313301.9978435, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686313301.9978502, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686313301.9978511, - "lastIP": "a}k~~kfaie~vcw", - "deviceUUID": "a07bd82e842b82082022523707cfae587446b177" - }, - "pb-IF4wU2MhUg==": { - "display_string": [ - "\ue063Yaman4" - ], - "profiles": [], - "name": "\ue063Yaman4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-08 22:28:44", - "registerOn": 1686314173.9331372, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686314173.9331377, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686314173.9331453, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686314273.046842, - "lastIP": "a\u007fk~~ogaje}vb{", - "deviceUUID": "418cbea0e1158d2a200873aab37674ab735bdc97" - }, - "pb-IF4nUGkIBw==": { - "display_string": [ - "\ue063VigorousV2" - ], - "profiles": [], - "name": "\ue063VigorousV2", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-01 12:32:14", - "registerOn": 1686314588.7929168, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686314588.7929175, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686314588.7929254, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686314588.7929268, - "lastIP": "a\u007fn~}idajcyvayo", - "deviceUUID": "b326abbd3e6b130e6f30516d11e22c96263dec74" - }, - "pb-IF5VUGY9KQ==": { - "display_string": [ - "\ue063Opposit104" - ], - "profiles": [], - "name": "\ue063Opposit104", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-03 08:57:00", - "registerOn": 1686315713.610431, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686315713.6104312, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686315713.610439, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686315721.3366003, - "lastIP": "dvvc{vc}vgz", - "deviceUUID": "6958712e6ca7ce2db577b76b414cc76148393e6e" - }, - "pb-IF4yUGMtFg==": { - "display_string": [ - "\ue063Volumin253" - ], - "profiles": [], - "name": "\ue063Volumin253", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-28 18:10:18", - "registerOn": 1686317006.5554092, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686317006.5554097, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686317006.5554163, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686317006.5554175, - "lastIP": "azj~zo~}hdamf", - "deviceUUID": "056119283586c103f512d650697db99f56db7c7f" - }, - "pb-IF5VVXomFA==": { - "display_string": [ - "\ue063DearerImba" - ], - "profiles": [], - "name": "\ue063DearerImba", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-17 10:47:57", - "registerOn": 1686317346.8352993, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686317346.8352995, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686317346.8353055, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686317346.8353066, - "lastIP": "azo~{n~va~~oe", - "deviceUUID": "a40938236937810d4a90b1ac03516bfb33ba6cca" - }, - "pb-IF4KUlA8Ig==": { - "display_string": [ - "\ue063Rheumat284" - ], - "profiles": [], - "name": "\ue063Rheumat284", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-17 09:23:06", - "registerOn": 1686317392.2513692, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686317392.25137, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686317392.2513776, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686317392.2513788, - "lastIP": "a\u007fk~~lhaj`aje{", - "deviceUUID": "3cb572852d3e1e3936a51d31004f1b955ac1994e" - }, - "pb-IF48UGoSFA==": { - "display_string": [ - "\ue063GallingRea" - ], - "profiles": [], - "name": "\ue063GallingRea", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-09 18:32:05", - "registerOn": 1686317658.965032, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686317658.9650333, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686317658.96504, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686317658.965041, - "lastIP": "a\u007fk~}jeajd{vbzj", - "deviceUUID": "a6393f1781c710160671baeb1653d71d8a963299" - }, - "pb-IF4cU0E7Jg==": { - "display_string": [ - "\ue030Android63275777" - ], - "profiles": [], - "name": "\ue030Android63275777", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-12 13:16:44", - "registerOn": 1686322084.9974573, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686322084.997458, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686322084.9974651, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686322084.997466, - "lastIP": "a}j~~oaaiiaia\u007f", - "deviceUUID": "85221d68a07c1e706a3ae9bedad08f0c3aa28c0a" - }, - "pb-IF4UUGQHMA==": { - "display_string": [ - "\ue030Android65007849" - ], - "profiles": [], - "name": "\ue030Android65007849", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-05 21:28:04", - "registerOn": 1686324618.9192595, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686324618.9192603, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686324618.9192667, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686324618.9192677, - "lastIP": "a\u007fn~}ifaia}va|`", - "deviceUUID": "1d1d12a44eeeb8777697de699b7a9967af1bd70e" - }, - "pb-IF4CVBUiFA==": { - "display_string": [ - "\ue063Harshhhh12" - ], - "profiles": [], - "name": "\ue063Harshhhh12", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-13 12:18:04", - "registerOn": 1686325025.5116143, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686325025.511615, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686325025.5116224, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686325025.5116234, - "lastIP": "b\u007fk~~adaahamh", - "deviceUUID": "9ed2c16af97dce872a5187ce4b96c59854f6d2b8" - }, - "pb-JiNJARBTUURJWFtAEkZSUFBCEEdWQlRB": { - "display_string": [ - "\ue063Manupereva" - ], - "profiles": [], - "name": "\ue063Manupereva", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-28 15:22:27", - "registerOn": 1686325304.574274, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686325304.574275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686325304.5742834, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686325304.574284, - "lastIP": "azj~z`~}keali", - "deviceUUID": "b537281e929a92756518313479ba28349eba6e4b" - }, - "pb-IF4mUkQaDA==": { - "display_string": [ - "\ue030Android57902869" - ], - "profiles": [], - "name": "\ue030Android57902869", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-31 09:22:28", - "registerOn": 1686326025.2622101, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686326025.2622106, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686326025.262216, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686326025.2622173, - "lastIP": "azo~|k~vn~}if", - "deviceUUID": "1d7ad4ac29a499933cbb6ec476e1911624a69aa0" - }, - "pb-IF4XU1AeIQ==": { - "display_string": [ - "\ue063IgnorantD2" - ], - "profiles": [], - "name": "\ue063IgnorantD2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-09 07:13:14", - "registerOn": 1686326619.4083967, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686326619.4083972, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686326619.4084065, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686326619.4084074, - "lastIP": "b\u007fh~wo~~mbaicx", - "deviceUUID": "b7a8c89bd1afb6b02eaad6b2058195847f9a4e48" - }, - "pb-IF4HUGgPDg==": { - "display_string": [ - "\ue030Android65143139" - ], - "profiles": [], - "name": "\ue030Android65143139", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-27 16:30:15", - "registerOn": 1686327323.3500187, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686327323.3500197, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686327323.350027, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686327323.3500283, - "lastIP": "a}j~~ncajbwvi~", - "deviceUUID": "1d8ea730210822f4733c3c9762ec4e651e253510" - }, - "pb-IF4sUxNbNA==": { - "display_string": [ - "\ue063Prateek000", - "\ue030Android62258945", - "\ue030Android62258195", - "\ue030Android62258907", - "\ue030Android62258277" - ], - "profiles": [], - "name": "\ue063Prateek000", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-08 11:32:44", - "registerOn": 1686328077.7893627, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686328077.7893631, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686328077.7893713, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686328077.789372, - "lastIP": "b}k~}jga`ga``", - "deviceUUID": "0cf7681ebb983be0d37077adc2704bd742b5f86c" - }, - "pb-IF4qUBYCLg==": { - "display_string": [ - "\ue063PopularPl3" - ], - "profiles": [], - "name": "\ue063PopularPl3", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-25 15:10:33", - "registerOn": 1686329791.0610197, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686329791.0610201, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686329791.061026, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686334644.1440883, - "lastIP": "azo~|l~wk~}ig", - "deviceUUID": "9b5a9e6c39be53e7579a611f59b52aa02ed87225" - }, - "pb-IF4-UlECDQ==": { - "display_string": [ - "\ue063hitiblackp", - "\ue030Android58593405" - ], - "profiles": [], - "name": "\ue063hitiblackp", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-22 17:12:32", - "registerOn": 1686330164.5650003, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686330164.565001, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686330164.5650086, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686330164.5650098, - "lastIP": "dvvcyva|a~wn", - "deviceUUID": "f8f1eebe8923249cd8c07ea1feb32423d6632fc3" - }, - "pb-IF4DUGMfXA==": { - "display_string": [ - "\ue063MuddledFo6" - ], - "profiles": [], - "name": "\ue063MuddledFo6", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-29 13:58:47", - "registerOn": 1686331111.1060674, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686331111.106068, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686331111.106074, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686331111.1060753, - "lastIP": "dvvc|vb~l~}jd", - "deviceUUID": "cdd0d9f6418a873d24a413f5dff681297edd4c7f" - }, - "pb-IF4MU1oBFw==": { - "display_string": [ - "\ue030Android64430731" - ], - "profiles": [], - "name": "\ue030Android64430731", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-12 03:34:52", - "registerOn": 1686331408.3153148, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686331408.3153155, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686331408.3153229, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686331408.3153236, - "lastIP": "axo~yn~~neaifv", - "deviceUUID": "42c8d5c0919139ab41297f2355d19c8fb98eac96" - }, - "pb-IF4rUxU7Cg==": { - "display_string": [ - "\ue063Compone291" - ], - "profiles": [], - "name": "\ue063Compone291", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-14 19:05:48", - "registerOn": 1686331526.7234192, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686331526.7234197, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686331526.723427, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686331526.7234278, - "lastIP": "awk~wj~~ofai`{", - "deviceUUID": "8718c25d05ff0a9b6784cd4e384a2c85ce172283" - }, - "pb-IF4oUGY8Ug==": { - "display_string": [ - "\ue030Android65075234" - ], - "profiles": [], - "name": "\ue030Android65075234", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-16 19:04:17", - "registerOn": 1686332482.4519057, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686332482.4519064, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686332482.4519134, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686332482.4519145, - "lastIP": "a\u007fm~~hbao~{n", - "deviceUUID": "0cc2abbdd4f938fe7478e2827654a5321b7ffe9a" - }, - "pb-IF4iU1APUQ==": { - "display_string": [ - "\ue063BawaliGend" - ], - "profiles": [], - "name": "\ue063BawaliGend", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-13 21:36:12", - "registerOn": 1686332488.157135, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686332488.157136, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686332488.1571434, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686332488.1571443, - "lastIP": "a\u007fk~}hfaicwvb~j", - "deviceUUID": "e1b5f88bf2292c035b4933043d90e70a0157bfa3" - }, - "pb-IF4WU1I7DQ==": { - "display_string": [ - "\ue063Certifie23" - ], - "profiles": [], - "name": "\ue063Certifie23", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-21 16:19:30", - "registerOn": 1686332837.404203, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686332837.404204, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686332941.064066, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686333043.7918222, - "lastIP": "awj~ya~~ofake", - "deviceUUID": "82380130761c222d96bcc497f42ae841e3474f89", - "cMsgCount": 1, - "lastMsgTime": 1686334520.5222604, - "lastMsg": "bye", - "cSameMsg": 0 - }, - "pb-IF4IUBlSHQ==": { - "display_string": [ - "\ue063IcyWear27" - ], - "profiles": [], - "name": "\ue063IcyWear27", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-09 19:13:58", - "registerOn": 1686332840.3867774, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686332840.3867779, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686332840.3867853, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686332840.386786, - "lastIP": "b}k~}jealfajd\u007f", - "deviceUUID": "6647900d3c821f9dc2a748a872bc4ae9f48a5e72" - }, - "pb-IF4XUmwOKw==": { - "display_string": [ - "\ue030Android55956875" - ], - "profiles": [], - "name": "\ue030Android55956875", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-11 11:52:32", - "registerOn": 1686333321.169543, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686333321.1695437, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686333321.169552, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686333321.1695528, - "lastIP": "dvvcyvd~vb}n", - "deviceUUID": "2687007beb529d908494e29c723a9f22604e1005", - "cMsgCount": 0, - "lastMsgTime": 1686333582.3281302, - "lastMsg": "i banned ur mom's p. u. s. s. y", - "cSameMsg": 0 - }, - "pb-JiNJARBfUkFEXFtDGURXVF1HEUFeTlZA": { - "display_string": [ - "\ue063rao18520" - ], - "profiles": [], - "name": "\ue063rao18520", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-08 16:36:25", - "registerOn": 1686334126.4724128, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686334126.4724138, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686334126.472421, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686334126.4724216, - "lastIP": "a\u007fk~wh~~j~|j", - "deviceUUID": "6ecd51adffc85511574003b1d19840e91cd6838f" - }, - "pb-JiNJARBYXUFHWF5CEUBZV11EGUhdRFVA": { - "display_string": [ - "\ue063Boss007", - "\ue030Android15937259" - ], - "profiles": [], - "name": "\ue063Boss007", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-08 15:15:22", - "registerOn": 1686335864.6377494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686335864.6377504, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686335864.6377566, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686335864.6377575, - "lastIP": "a\u007fk~~i~~agaig}", - "deviceUUID": "c91de994b25c53e112720c14b456644b86c5602f" - }, - "pb-IF4mUGkfUw==": { - "display_string": [ - "\ue030Android65216424" - ], - "profiles": [], - "name": "\ue030Android65216424", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-08 16:48:54", - "registerOn": 1686336658.0466437, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1686337885.5385804, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686403367.0818617, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686403367.081863, - "lastIP": "a~h~}jfaih}vawk", - "deviceUUID": "9465a95dd2a9253a3cfc5a668e93629fdfa79bb6", - "cMsgCount": 0, - "lastMsgTime": 1686403397.8506088, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4eU0c6PQ==": { - "display_string": [ - "\ue063InaudibleN", - "\ue030Android63656661", - "\ue030Android63656621" - ], - "profiles": [], - "name": "\ue063InaudibleN", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-13 19:28:28", - "registerOn": 1686337004.3752322, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686337004.375233, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686337004.3752394, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686337004.37524, - "lastIP": "a\u007fk~~n`aii{vava", - "deviceUUID": "2d9ed6d1cf7037bab2bd754ff8d63edc50290b57" - }, - "pb-IF4MUGUlEQ==": { - "display_string": [ - "\ue063RealJellyf" - ], - "profiles": [], - "name": "\ue063RealJellyf", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-11 16:12:52", - "registerOn": 1686337247.3123827, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686337247.3123837, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686337247.3123906, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686337247.3123918, - "lastIP": "b\u007fj~~oiaadalb", - "deviceUUID": "ee8b2e2f100fd0b8bd4cc060bd1999f1c48ec64d" - }, - "pb-IF4DVXAkHw==": { - "display_string": [ - "\ue063mohdzaid19" - ], - "profiles": [], - "name": "\ue063mohdzaid19", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-28 12:50:42", - "registerOn": 1686342749.6687074, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686342749.6687078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686342749.6687138, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686342749.6687148, - "lastIP": "a}j~~ofaiivva~k", - "deviceUUID": "0fbf0c2c0d3ee7342eb9522fbe33c4aa5ac3bb21" - }, - "pb-IF4NUGkABg==": { - "display_string": "\ue063Fazilpuria", - "profiles": [], - "name": "\ue063Fazilpuria", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-10 00:23:12", - "registerOn": 1686347932.8392096, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686347932.8392103, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686347932.8392174, - "verified": false, - "rejoincount": 1, - "lastJoin": 1686347932.8392184, - "lastIP": "a\u007fk~}maaj`vvaw", - "deviceUUID": "fcafcc043f19b8b161a3258f2a4897cabf6aaf41" - }, - "pb-IF4mUGIxIg==": { - "display_string": [ - "\ue030Android64940184" - ], - "profiles": [], - "name": "\ue030Android64940184", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-25 08:46:24", - "registerOn": 1686357215.2868145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686357215.286815, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686357215.2868223, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686357215.2868235, - "lastIP": "axm~~laa`cajd}", - "deviceUUID": "de9393c524eb8a122664490d446bc2ae96a499cc" - }, - "pb-IF41U1oaBg==": { - "display_string": [ - "\ue030Android64439482" - ], - "profiles": [], - "name": "\ue030Android64439482", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-13 07:32:04", - "registerOn": 1686363725.4742646, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686363725.4742653, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686363725.474272, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686363725.474273, - "lastIP": "dxvazvea`i", - "deviceUUID": "a8efaa07520d92a2e4cb2c4e0b30b48a82f7641f" - }, - "pb-IF5UUGUqCQ==": { - "display_string": [ - "\ue063dhamu258" - ], - "profiles": [], - "name": "\ue063dhamu258", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-26 17:22:06", - "registerOn": 1686364568.8003843, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686364568.8003848, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686364568.8003922, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686364568.800393, - "lastIP": "azo~{n~~hcajc\u007f", - "deviceUUID": "8b02fce1d1907e68889a17157f87c32854efbda1" - }, - "pb-IF49UGQSEg==": { - "display_string": [ - "\ue063Meander592" - ], - "profiles": [], - "name": "\ue063Meander592", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-09 12:50:52", - "registerOn": 1686365124.7817843, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686365124.7817848, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686365124.7817914, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686365124.7817924, - "lastIP": "a|o~vo~vh~~le", - "deviceUUID": "ffe0509a3a5fbc74af32d2fe4cde396842b6f85a" - }, - "pb-IF5VVU4CKA==": { - "display_string": [ - "\ue063Sanjam" - ], - "profiles": [], - "name": "\ue063Sanjam", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-22 15:54:30", - "registerOn": 1686367404.094138, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686367404.0941384, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686367404.0941465, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686367404.0941477, - "lastIP": "azo~|a~ym~y", - "deviceUUID": "d8e258714e814fda309a4d9a18f16b48d4080ddf" - }, - "pb-IF4UU288Dw==": { - "display_string": [ - "\ue030Android62148660" - ], - "profiles": [], - "name": "\ue030Android62148660", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-21 23:47:56", - "registerOn": 1686372685.998888, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686372685.9988887, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686372685.9988952, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686372685.9988961, - "lastIP": "eaib~vaxl~~h`", - "deviceUUID": "db85a83f1b86cf835a7c4810849b6607f0059ee5" - }, - "pb-IF5WUGcCLw==": { - "display_string": [ - "\ue063Phlegma292" - ], - "profiles": [], - "name": "\ue063Phlegma292", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-13 18:02:05", - "registerOn": 1686374167.0807934, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686374167.0807943, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686374167.080801, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686374167.0808017, - "lastIP": "a\u007fn~~agakeaj", - "deviceUUID": "ae1982ebff52792e1381460b58cf63db5ac7e923" - }, - "pb-IF4CUBkgNw==": { - "display_string": [ - "\ue063Ezhil0332" - ], - "profiles": [], - "name": "\ue063Ezhil0332", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-08 07:31:32", - "registerOn": 1686374897.938667, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686374897.9386678, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686374897.9386759, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686374897.9386773, - "lastIP": "azo~{a~x`~xo", - "deviceUUID": "2b07b37d67c764b74375a5a4fb2c726064c263ab" - }, - "pb-IF4NUGkOFg==": { - "display_string": [ - "\ue063Iconocl208" - ], - "profiles": [], - "name": "\ue063Iconocl208", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-09 10:09:58", - "registerOn": 1686376681.0946777, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686376681.0946786, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686376681.0946872, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686376681.0946884, - "lastIP": "azo~{o~~i`ajc|", - "deviceUUID": "f169def727a1ef27d2ab4c1afbc146a884919805" - }, - "pb-IF5TVUg4Bg==": { - "display_string": [ - "\ue063Victori658" - ], - "profiles": [], - "name": "\ue063Victori658", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-20 20:45:06", - "registerOn": 1686377565.3478127, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686377565.3478131, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686377565.34782, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686377565.347821, - "lastIP": "azj~z`~}jdaoa", - "deviceUUID": "65263c669554b7e2a6307f860a765b41ceddb5f8" - }, - "pb-JiNJARBaUEtDX1xBEEdUU1JKFENbQlFC": { - "display_string": [ - "\ue020NappingDropbear47108", - "\ue030Android15654903" - ], - "profiles": [], - "name": "\ue030Android15654903", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-11 16:56:21", - "registerOn": 1686377652.705056, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686377652.7050564, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686377652.7050636, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686377652.7050648, - "lastIP": "dzva}o~{l~zo", - "deviceUUID": "ad563322a828db4bc0e8fac444caef7ed55de33f" - }, - "pb-IF43UGcqPw==": { - "display_string": [ - "\ue063Volcani179" - ], - "profiles": [], - "name": "\ue063Volcani179", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-20 16:27:21", - "registerOn": 1686378253.9680746, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686378253.9680753, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686378253.9680827, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686378253.9680836, - "lastIP": "azo~{`~}idana", - "deviceUUID": "51c36a4aa84e11036f8c150b160fe49504f7e778" - }, - "pb-IF5SVUMHDg==": { - "display_string": [ - "\ue063NoName2045698" - ], - "profiles": [], - "name": "\ue063NoName2045698", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-20 21:36:03", - "registerOn": 1686379676.6484559, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686379676.648457, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686379676.6484632, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686379676.6484644, - "lastIP": "dvvcyvawk~}k`", - "deviceUUID": "c9c188c7f3fdaf70e22e40d0105eced9700c007a" - }, - "pb-IF4BUGkvNA==": { - "display_string": [ - "\ue063Innocen193" - ], - "profiles": [], - "name": "\ue063Innocen193", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-04 16:48:32", - "registerOn": 1686380205.3981051, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686380205.3981059, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686380205.3981144, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686380205.3981159, - "lastIP": "aakhaia\u007fvb|`", - "deviceUUID": "d0563f60b70a8cdef715ba14c672e7b1bdb1f843" - }, - "pb-JiNJARFaV0BAWl9IEENSXFREFEVZRlFH": { - "display_string": [ - "\ue063Cosmic7" - ], - "profiles": [], - "name": "\ue063Cosmic7", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-21 18:39:03", - "registerOn": 1686383677.7947533, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686383677.7947538, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686383677.7947607, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686383677.7947617, - "lastIP": "a\u007fk~~oaaic|va~j", - "deviceUUID": "6a744dbc5c7bc9ac0e055cefa4838e6666c135d0" - }, - "pb-IF4DUGotLw==": { - "display_string": [ - "\ue063Caverno372" - ], - "profiles": [], - "name": "\ue063Caverno372", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-06 08:26:44", - "registerOn": 1686384285.0315773, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686384285.031578, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686384285.0315857, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686384285.031587, - "lastIP": "azo~{a~~aaa`d", - "deviceUUID": "7595524f01af4f3a097ca3eabc633509d730d1f7" - }, - "pb-IF4UUGNbHA==": { - "display_string": [ - "\ue063Obtaina234" - ], - "profiles": [], - "name": "\ue063Obtaina234", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-22 23:33:40", - "registerOn": 1686384429.6371536, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686384429.6371546, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686384429.6371617, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686384429.6371627, - "lastIP": "a\u007fk~~ofaifaac", - "deviceUUID": "026825c5672fabb1dcf892dda9e8f4df7866e60c" - }, - "pb-JiNJARBSUkNEX11DGU5RUVFFFEFbT1dF": { - "display_string": [ - "\ue063KT9880" - ], - "profiles": [], - "name": "\ue063KT9880", - "isBan": false, - "isMuted": false, - "accountAge": "2016-08-02 18:01:46", - "registerOn": 1686384685.546996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686384685.5469968, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686384685.5470247, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686384685.547026, - "lastIP": "azh~~hgaii~vawa", - "deviceUUID": "39a07841d11133b1dc369933ac278cc15349c690" - }, - "pb-IF41U1ZZNg==": { - "display_string": [ - "\ue063Inconsta73" - ], - "profiles": [], - "name": "\ue063Inconsta73", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-14 12:00:14", - "registerOn": 1686386817.8026578, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686386817.8026586, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686386817.8026648, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686386817.8026657, - "lastIP": "azj~z`~{va{", - "deviceUUID": "916402cebe52ac3a922385c0d035cdfdd3d0161a", - "cMsgCount": 2, - "lastMsgTime": 1686387409.6159096, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4GUBgYCw==": { - "display_string": [ - "\ue030Android64790580" - ], - "profiles": [], - "name": "\ue030Android64790580", - "isBan": false, - "isMuted": false, - "accountAge": "2023-04-04 12:49:03", - "registerOn": 1686387405.9886906, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686387405.988691, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686387405.9886973, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686387405.9886987, - "lastIP": "awj~ya~~`aaai", - "deviceUUID": "b15ab5b7359c5c5d74a958e740e3d2f90e9e1c33" - }, - "pb-IF4QUlQCUA==": { - "display_string": [ - "\ue063Quarrel131" - ], - "profiles": [], - "name": "\ue063Quarrel131", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-03 11:38:05", - "registerOn": 1686387418.0179474, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686387418.017948, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686387418.0179558, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686387418.017957, - "lastIP": "awj~ya~~`aaai", - "deviceUUID": "737a6221be7db386d7c6fb09d48ca8309a93886e" - }, - "pb-IF4vUkUOXA==": { - "display_string": [ - "\ue063Asrofi143", - "\ue030Android57950775" - ], - "profiles": [], - "name": "\ue063Asrofi143", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-02 11:46:41", - "registerOn": 1686387582.2774785, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686387582.277479, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686387582.2774866, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686387582.2774875, - "lastIP": "a{h~}icaidvva{l", - "deviceUUID": "c999a610d3dbd8fc789b3478053eb3e97bb375bc" - }, - "pb-IF4zU20BFA==": { - "display_string": [ - "\ue063TenableCoh" - ], - "profiles": [], - "name": "\ue063TenableCoh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-16 12:08:23", - "registerOn": 1686387587.993501, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686387587.9935017, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686387587.9935095, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686387973.3219166, - "lastIP": "azj~z`~}haali", - "deviceUUID": "97d2c294c6bdf1af10cc3379f7dee2ef2cc4d752" - }, - "pb-IF4MUlU_EQ==": { - "display_string": [ - "\ue030Android65181733", - "\ue030RockyYT", - "\ue030Android65181753", - "\ue030Android65181702" - ], - "profiles": [], - "name": "\ue030RockyYT", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-05 20:12:07", - "registerOn": 1686388259.680742, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686388259.6807427, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686388259.6807485, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686388330.6148443, - "lastIP": "a\u007fn~~adaoaaif\u007f", - "deviceUUID": "4ea95d28a20f21781e6915b8f627b8ec1df02cf7" - }, - "pb-IF4jUhlSFw==": { - "display_string": [ - "\ue020CapillaryStreet26" - ], - "profiles": [], - "name": "\ue020CapillaryStreet26", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-12 13:31:14", - "registerOn": 1686388300.1226816, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686388300.1226823, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686388300.1226897, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686388315.5478008, - "lastIP": "a\u007fk~~ogajgakb", - "deviceUUID": "dfa3fcaaa56e4735ac113b0cf8ea265e6682d45d" - }, - "pb-IF4LVUQhKg==": { - "display_string": [ - "\ue063SlowestPa2", - "\ue030Android51158672" - ], - "profiles": [], - "name": "\ue063SlowestPa2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-09 15:56:43", - "registerOn": 1686388656.2282283, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686388656.228229, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686388656.2282374, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686389076.41946, - "lastIP": "azo~|l~~jgai`v", - "deviceUUID": "e69588102d4315071f408aec798f9a1b100b6c5f" - }, - "pb-IF4XU3oRVQ==": { - "display_string": [ - "\ue063onkarbhosa" - ], - "profiles": [], - "name": "\ue063onkarbhosa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-08 17:19:46", - "registerOn": 1686389902.038461, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686389902.0384617, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686389902.0384693, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686389902.0384705, - "lastIP": "a\u007fn~}j`aaaajcz", - "deviceUUID": "abd6a42519dad4dc6fcf500b555de9f6e64bf4e4" - }, - "pb-IF5UUBksVg==": { - "display_string": [ - "\ue063REBELop" - ], - "profiles": [], - "name": "\ue063REBELop", - "isBan": false, - "isMuted": false, - "accountAge": "2023-03-29 20:08:01", - "registerOn": 1686390598.5681756, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686390598.5681763, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686390598.5681846, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686390598.5681856, - "lastIP": "awh~~`hajcxvaxi", - "deviceUUID": "5004995dc2648d68758d01ee7ac7fc075d0e0c3b" - }, - "pb-IF4SV1gpJg==": { - "display_string": [ - "\ue063badabangba" - ], - "profiles": [], - "name": "\ue063badabangba", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-27 23:27:03", - "registerOn": 1686391014.2303362, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686391014.2303371, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686391014.2303452, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686391014.2303467, - "lastIP": "a}j~~oaajaaib{", - "deviceUUID": "a759612903982d49822fff1c5f912e9cbf7c39f8" - }, - "pb-IF4dU1EBUA==": { - "display_string": [ - "\ue063Vivaciou61" - ], - "profiles": [], - "name": "\ue063Vivaciou61", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-20 13:34:33", - "registerOn": 1686391912.9623334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686391912.9623342, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686391912.9623427, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686391912.9623437, - "lastIP": "a\u007fn~}ifaje{vb|k", - "deviceUUID": "7dc10cb0f1e3c4df233aa300865a25faa99a2d42" - }, - "pb-IF4lUmsYDw==": { - "display_string": [ - "\ue063ShaggyKind" - ], - "profiles": [], - "name": "\ue063ShaggyKind", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-07 14:21:45", - "registerOn": 1686392554.3567302, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686392554.3567312, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686392554.356759, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686392554.35676, - "lastIP": "a\u007fn~}ifajdwvb}i", - "deviceUUID": "0fc17e8f0ce19323d512f83757aae9d2c92a932e" - }, - "pb-IF48UkMTNA==": { - "display_string": [ - "\ue063SudhanvaPu" - ], - "profiles": [], - "name": "\ue063SudhanvaPu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-26 19:26:28", - "registerOn": 1686394123.894866, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686394123.8948665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686394123.8948731, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686394123.8948739, - "lastIP": "a}j~~oaaigaidy", - "deviceUUID": "fd2b27fcc8a8ebde254dd78dc1c3bd67bd71d2a0" - }, - "pb-IF4vUGYGEw==": { - "display_string": [ - "\ue030Android65082260" - ], - "profiles": [], - "name": "\ue030Android65082260", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-17 21:51:54", - "registerOn": 1686394396.8477666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686394396.847767, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686394396.8477743, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686394396.847775, - "lastIP": "awk~}mcak~~kf", - "deviceUUID": "80dfba9d68e7188eea926e7288de5f279a25a65e" - }, - "pb-IF4jU1VYVg==": { - "display_string": [ - "\ue063VividSeat4" - ], - "profiles": [], - "name": "\ue063VividSeat4", - "isBan": false, - "isMuted": false, - "accountAge": "2023-01-02 12:53:52", - "registerOn": 1686394983.550502, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686394983.550503, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686394983.5505102, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686394983.5505111, - "lastIP": "bxvf|vb\u007fh~~kc", - "deviceUUID": "1e7e85a9f7fbdd14174877cd51206be49d9ce647" - }, - "pb-IF4IUGQTAg==": { - "display_string": [ - "\ue063virajpati5" - ], - "profiles": [], - "name": "\ue063virajpati5", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-09 12:08:58", - "registerOn": 1686395046.6786222, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686395046.678623, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686395046.6786308, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686395046.6786318, - "lastIP": "a\u007fn~}ifaje|va~l", - "deviceUUID": "4ab3b8ed6f2751a657609727e59da885aef372c7" - }, - "pb-IF4AVXgOUw==": { - "display_string": [ - "\ue063Professe67" - ], - "profiles": [], - "name": "\ue063Professe67", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-23 17:01:00", - "registerOn": 1686395186.191267, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686395186.1912677, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686395186.1912742, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686395186.1912754, - "lastIP": "azo~{`~~igaja", - "deviceUUID": "2f2e18f9ec7d1f1fb2a3b8548ee3ab5ce9f90be6" - }, - "pb-IF5RUGwdPQ==": { - "display_string": [ - "\ue063GraveArena" - ], - "profiles": [], - "name": "\ue063GraveArena", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-08 23:31:28", - "registerOn": 1686395306.6698904, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686395306.669891, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686395306.6698997, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686395306.6699011, - "lastIP": "a\u007fn~}igaif|vb|m", - "deviceUUID": "82e4eb59c8587c96cfec7d717abd4c36fc2f5cbc" - }, - "pb-IF4uVWI_Dg==": { - "display_string": [ - "\ue063TautFuss23", - "\ue030Android64988799" - ], - "profiles": [], - "name": "\ue063TautFuss23", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-17 12:24:18", - "registerOn": 1686395770.1625412, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686395770.1625416, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686395770.162549, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686395770.1625497, - "lastIP": "dvvcxvbzi~~ia", - "deviceUUID": "16d94f0b80a27e40c8362b1544d5468250052228" - }, - "pb-IF4nUGkzLQ==": { - "display_string": [ - "\ue063vinodsaini" - ], - "profiles": [], - "name": "\ue063vinodsaini", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-31 21:54:51", - "registerOn": 1686395791.9368606, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686395791.9368615, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686395791.936869, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686395791.9368699, - "lastIP": "a}j~~naaabajc~", - "deviceUUID": "be95b29dad75097514841385c5b35d600dede78c" - }, - "pb-IF5cU1FTBg==": { - "display_string": [ - "\ue063ClammyPrai" - ], - "profiles": [], - "name": "\ue063ClammyPrai", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 19:14:02", - "registerOn": 1686396994.3757234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686396994.375724, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686396994.3757308, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686396994.375732, - "lastIP": "a\u007fn~~aeaa~}jc", - "deviceUUID": "5f55a8326f119e5754e896b10948e097ad02780e" - }, - "pb-IF4HUGoBIw==": { - "display_string": [ - "\ue063Acciden342" - ], - "profiles": [], - "name": "\ue063Acciden342", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-09 18:04:05", - "registerOn": 1686397323.7389324, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686397323.7389336, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686397323.7389412, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686397323.7389421, - "lastIP": "azh~~jiaj`yvayk", - "deviceUUID": "ab1e4df9e4b92f53d6d500b165064dff67c66667" - }, - "pb-IF4wEBQ_": { - "display_string": [ - "\ue063puttan123p" - ], - "profiles": [], - "name": "\ue063puttan123p", - "isBan": false, - "isMuted": false, - "accountAge": "2018-06-07 05:57:27", - "registerOn": 1686398740.2448266, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686398740.244827, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686398740.2448344, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686398740.2448354, - "lastIP": "azo~{`~}haajd", - "deviceUUID": "ec6dd137603e86cd3177c1d26f921d8e7a95195e" - }, - "pb-IF4GUmwvHw==": { - "display_string": [ - "\ue063viswajames", - "\ue030Android55658375" - ], - "profiles": [], - "name": "\ue063viswajames", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-07 10:52:37", - "registerOn": 1686398778.352224, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686398778.3522246, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686398778.3522336, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686398778.3522348, - "lastIP": "a~h~}jdaadanc", - "deviceUUID": "ac704348210350ed914c84f826c06b8e8ef4963b" - }, - "pb-IF4RUGUbJw==": { - "display_string": [ - "\ue063pyschokill" - ], - "profiles": [], - "name": "\ue063pyschokill", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-10 16:11:28", - "registerOn": 1686399701.803314, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686399701.8033147, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686399701.8033218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686399701.8033226, - "lastIP": "a\u007fk~~jeaibvva\u007f`", - "deviceUUID": "d75d3336cd9ecb0cf1f870dcbbe50406edaaf5fb" - }, - "pb-IF4FVRQ_Bg==": { - "display_string": [ - "\ue063FreneticL4" - ], - "profiles": [], - "name": "\ue063FreneticL4", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-01 21:06:47", - "registerOn": 1686399859.3948076, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686399859.394808, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686399859.394814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686399899.2160156, - "lastIP": "dxvbvvay`~|n", - "deviceUUID": "54d41999092540fe49ed00894cab01fc0481d1ba" - }, - "pb-IF4dUhRfCw==": { - "display_string": [ - "\ue063SAV3NGE" - ], - "profiles": [], - "name": "\ue063SAV3NGE", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-22 13:13:17", - "registerOn": 1686400211.0447001, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686400211.0447009, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686400211.0447385, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686400211.0447397, - "lastIP": "b\u007fj~~o`aj`xva{j", - "deviceUUID": "677c0e3bc1eeba28f1e9df0a273a6fcfe47714dc" - }, - "pb-IF4QUGUvUQ==": { - "display_string": [ - "\ue063YawningCu5" - ], - "profiles": [], - "name": "\ue063YawningCu5", - "isBan": false, - "isMuted": false, - "accountAge": "2023-05-10 20:30:10", - "registerOn": 1686400633.2973893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686400633.2973897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686400633.2973957, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686400633.297397, - "lastIP": "a\u007fn~}hfaiezvaxm", - "deviceUUID": "d8a1442eee4b64cdaaa7052d0887eab541864a71" - }, - "pb-IF4mUBEFUQ==": { - "display_string": [ - "\ue063Dharmrajsi" - ], - "profiles": [], - "name": "\ue063Dharmrajsi", - "isBan": false, - "isMuted": false, - "accountAge": "2023-02-26 14:45:13", - "registerOn": 1686401159.2443922, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686401159.2443926, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686401159.2443984, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686401159.2443993, - "lastIP": "dvvc{vawj~~nh", - "deviceUUID": "54b1ce52a860e950667096487ce1692e39724b6d" - }, - "pb-IF5SV3I4Uw==": { - "display_string": [ - "\ue063Gargantua4" - ], - "profiles": [], - "name": "\ue063Gargantua4", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-03 19:44:18", - "registerOn": 1686401706.3036463, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686401706.303647, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686401706.3036542, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686401706.3036551, - "lastIP": "dxvc~vb\u007fj~~ac", - "deviceUUID": "7358fb647efe4df63d00b570aa8607e61772104e", - "cMsgCount": 0, - "lastMsgTime": 1686403377.851548, - "lastMsg": "maybe ", - "cSameMsg": 0 - }, - "pb-IF4pUmoEEQ==": { - "display_string": [ - "\ue063SHASHWATSP" - ], - "profiles": [], - "name": "\ue063SHASHWATSP", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-01 19:18:52", - "registerOn": 1686401818.6699693, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686401818.6699703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686401818.6699786, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686401818.6699796, - "lastIP": "azj~z`~yn~~lf", - "deviceUUID": "e62417b52df3aba6190757586ec98cf42104f78b", - "cMsgCount": 0, - "lastMsgTime": 1686402342.202289, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5QUG1ZKQ==": { - "display_string": [ - "\ue063Unattac361" - ], - "profiles": [], - "name": "\ue063Unattac361", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-08 16:38:58", - "registerOn": 1686402068.5708578, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686402068.5708585, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1686402403.2351644, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686402068.5708675, - "lastIP": "dvvd|vb{`~~ni", - "deviceUUID": "8fbb0c2a5d9935337d7a4baca2370d59133a7e60", - "cMsgCount": 0, - "lastMsgTime": 1686402403.2353244, - "lastMsg": "fuck", - "cSameMsg": 0 - }, - "pb-IF42ImgD": { - "display_string": [ - "\ue063Vanquis165" - ], - "profiles": [], - "name": "\ue063Vanquis165", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-12 17:00:44", - "registerOn": 1686402117.8892732, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686402117.8892734, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686402117.8892808, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686402385.4150546, - "lastIP": "a}h~wa~xl~~kb", - "deviceUUID": "1f67cdb08b2e992651352822134a2a33757bac41" - }, - "pb-IF4HUlovUg==": { - "display_string": [ - "\ue063RavithaShe" - ], - "profiles": [], - "name": "\ue063RavithaShe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-21 17:15:32", - "registerOn": 1686402706.0411036, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686402706.0411043, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686402706.0411112, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686402706.041112, - "lastIP": "a~n~xj~yl~~j`", - "deviceUUID": "717c9462ae8c676f4071cca44599873457487b18" - }, - "pb-IF4UUGoNNQ==": { - "display_string": [ - "\ue030Android65217766" - ], - "profiles": [], - "name": "\ue030Android65217766", - "isBan": false, - "isMuted": false, - "accountAge": "2023-06-08 20:58:12", - "registerOn": 1686402747.184892, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1686402747.1848927, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1686402747.184899, - "verified": true, - "rejoincount": 1, - "lastJoin": 1686402747.1849003, - "lastIP": "a~o~}k`aigxvb~n", - "deviceUUID": "9399ed888f2b4b5f4c944afb4740c0ea4a03a263" - }, "pb-IF4gB3Bf": { "display_string": [ "\ue063Cherish418", @@ -22969,28 +21,5 @@ "lastJoin": 1686403521.9623156, "lastIP": "dvvc{vb\u007f`~yi", "deviceUUID": "8d30ec208bb52cfe546559bf2ab9b306157302a0" - }, - "pb-IF5RU3EcAg==": { - "display_string": [ - "\ue030PC593100" - ], - "profiles": [], - "name": "\ue030PC593100", - "accountAge": "2022-07-23 01:42:52", - "registerOn": 1692041275.3951762, - "spamCount": 0, - "lastSpam": 1692041275.3951833, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1692388352.1588542, - "verified": true, - "rejoincount": 1, - "lastJoin": 1692388352.1588569, - "lastIP": "axj~|h~}hhai", - "deviceUUID": "26f30cfd3921c2d15574b534cb824c952b14f189", - "cMsgCount": 0, - "lastMsgTime": 1692092832.8181152, - "lastMsg": "/ping all", - "cSameMsg": 0 } } \ No newline at end of file diff --git a/dist/ba_root/mods/playersdata/profiles.json2022-12-06 08%3A23%3A09.458547 b/dist/ba_root/mods/playersdata/profiles.json2022-12-06 08%3A23%3A09.458547 deleted file mode 100644 index 6bbdf32..0000000 --- a/dist/ba_root/mods/playersdata/profiles.json2022-12-06 08%3A23%3A09.458547 +++ /dev/null @@ -1,28928 +0,0 @@ -{ - "pb-IF4TVWwZUQ=9=": { - "display_string": "\ue030PC295588", - "profiles": [], - "name": "\ue030PC295588", - "isBan": false, - "isMuted": false, - "totaltimeplayer": 0, - "lastseen": 0, - "spamCount": 0, - "lastSpam": 1637911682.2054627 - }, - "pb-IF5XUm9eAg==": { - "display_string": [ - "\ue030PC402015" - ], - "profiles": [], - "name": "\ue030PC402015", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-12 20:30:30", - "registerOn": 1636801177.809589, - "canStartKickVote": true, - "totaltimeplayer": 0, - "lastseen": 0, - "spamCount": 4, - "lastSpam": 1637912278.8745685 - }, - "pb-IF4eUxk5KA==": { - "display_string": [ - "\ue063HeySmoothy" - ], - "profiles": [], - "name": "\ue063HeySmoothy", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-29 21:53:44", - "registerOn": 1655022106.4740922, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1655022106.4740927, - "totaltimeplayer": 0, - "lastseen": 0, - "warnCount": 0, - "lastWarned": 1655552812.9632144, - "verified": true, - "rejoincount": 1, - "lastJoin": 1655552812.963215, - "cMsgCount": 0, - "lastMsgTime": 1655406931.728448, - "lastMsg": "ok", - "cSameMsg": 0, - "lastIP": "axj~}j~~n`ai", - "deviceUUID": "eedccec9b0c17d3716b936981bb753c3872d905c" - }, - "pb-IF4RU2ECAg==": { - "display_string": [ - "\ue030PC452402" - ], - "profiles": [], - "name": "\ue030PC452402", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-04 01:42:22", - "registerOn": 1655407521.4853234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1655407521.4853249, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1658055515.14302, - "verified": true, - "rejoincount": 1, - "lastJoin": 1658055515.143022, - "lastIP": "axj~|h~|j~~", - "deviceUUID": "c49fafb7d66d14198924c1b9dcc59e23fb838042" - }, - "pb-IF43U2cIVw==": { - "display_string": "\ue063Smoothy", - "profiles": [], - "name": "\ue063Smoothy", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-23 22:27:13", - "registerOn": 1656442709.8344862, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1656442709.8344867, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1656527532.2340264, - "verified": true, - "rejoincount": 0, - "lastJoin": 1656527777.355527, - "lastIP": "axj~}m~}jdai", - "deviceUUID": "c49fafb7d66d14198924c1b9dcc59e23fb838042", - "cMsgCount": 0, - "lastMsgTime": 1656525491.3282282, - "lastMsg": "/end", - "cSameMsg": 0 - }, - "pb-IF41U2scIg==": { - "display_string": [ - "\ue063SHRUTIsom" - ], - "profiles": [], - "name": "\ue063SHRUTIsom", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 15:17:08", - "registerOn": 1670146929.9853938, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670146929.9853942, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248641.7245553, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670266316.7257073, - "lastIP": "a\u007fk~}hhaniaig|", - "deviceUUID": "290ab9ffedc77b8768c4881945b02eca86c32ae8", - "cMsgCount": 0, - "lastMsgTime": 1670236956.9503775, - "lastMsg": "/kick 178", - "cSameMsg": 0 - }, - "pb-IF4uU3gNKQ==": { - "display_string": [ - "\ue020CKD360" - ], - "profiles": [], - "name": "\ue020CKD360", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-01 07:24:59", - "registerOn": 1670146934.3897243, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670146934.389725, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670308231.036137, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670306797.76003, - "lastIP": "azo~{i~}mcaic~", - "deviceUUID": "548cce6a079bbda740d03793a1d78e999a4c1fd4", - "cMsgCount": 0, - "lastMsgTime": 1670310172.6175158, - "lastMsg": "ye khel leta hun", - "cSameMsg": 0 - }, - "pb-IF4nUxE4Nw==": { - "display_string": [ - "\ue030Android60071137" - ], - "profiles": [], - "name": "\ue030Android60071137", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-28 18:48:17", - "registerOn": 1670146945.498685, - "canStartKickVote": true, - "spamCount": 2, - "lastSpam": 1670163269.13775, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310336.9972446, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670310336.997246, - "lastIP": "a~h~}jfaih}va~a", - "deviceUUID": "9e21e953c214814994e344fb30238c23fc8af5ea", - "cMsgCount": 0, - "lastMsgTime": 1670311014.529359, - "lastMsg": "thanks pati", - "cSameMsg": 0 - }, - "pb-IF5RU2wCXQ==": { - "display_string": [ - "\ue020IrremediableWraith22" - ], - "profiles": [], - "name": "\ue020IrremediableWraith22", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-03 15:18:15", - "registerOn": 1670146957.4824429, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670146957.4824433, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313534.0401506, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313534.040152, - "lastIP": "bxvf~vb{n~|i", - "deviceUUID": "\u0015\u0007^RY\u0010R\\\u0002WAW_\u0003Q\u0010\u0004\\YRMT^RYFV" - }, - "pb-IF5UUxgjIA==": { - "display_string": [ - "\ue020sagarrathore481", - "\ue030Android63531396", - "\ue030Android63531328", - "\ue030Android60355853" - ], - "profiles": [], - "name": "\ue020sagarrathore481", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-19 12:04:39", - "registerOn": 1670146986.8760846, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670146986.8760853, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314057.9999938, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314057.9999952, - "lastIP": "a~o~}j`aaham", - "deviceUUID": "5f7b062f4010c15627bebd1b749bdc57ef5bfb63", - "cMsgCount": 0, - "lastMsgTime": 1670314407.0980544, - "lastMsg": "it sok", - "cSameMsg": 0 - }, - "pb-IF49Umo-Fg==": { - "display_string": [ - "\ue020PATLU517" - ], - "profiles": [], - "name": "\ue020PATLU517", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-02 09:31:34", - "registerOn": 1670147005.6629934, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670301661.6737187, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301639.6076431, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670307830.092055, - "lastIP": "dvvd|va\u007fi~~nc", - "deviceUUID": "0ca89312b6820cc0711ece739ffed8a26cd3b72f", - "cMsgCount": 0, - "lastMsgTime": 1670245563.457161, - "lastMsg": "hacker", - "cSameMsg": 0 - }, - "pb-IF4xU00iHA==": { - "display_string": [ - "\ue020BleakForce44" - ], - "profiles": [], - "name": "\ue020BleakForce44", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 14:14:35", - "registerOn": 1670147022.9785194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147022.9785202, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670167091.5974138, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670167271.4085112, - "lastIP": "a|o~vo~wn~{i", - "deviceUUID": "a7497087df3804fee91357f3206f01f8f0dcd416", - "cMsgCount": 0, - "lastMsgTime": 1670167234.93747, - "lastMsg": "sry", - "cSameMsg": 0 - }, - "pb-IF4uU0kNUw==": { - "display_string": [ - "\ue020OriginalBlaster49" - ], - "profiles": [], - "name": "\ue020OriginalBlaster49", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 17:27:30", - "registerOn": 1670147065.7853847, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147065.7853854, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147065.7853942, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670147065.7853947, - "lastIP": "a|j~~mdambamc", - "deviceUUID": "3c93e0300d6f81abbd178196785c7ed80558ad4b" - }, - "pb-IF4BV2gDEA==": { - "display_string": [ - "\ue063TrippyJest" - ], - "profiles": [], - "name": "\ue063TrippyJest", - "isBan": false, - "isMuted": false, - "accountAge": "2018-10-23 15:02:35", - "registerOn": 1670147135.0654218, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147135.0654223, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310533.9907193, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670312485.2163844, - "lastIP": "azo~{a~~`dalf", - "deviceUUID": "be2fec1595bed04e080bf569f820fc78cbcf0576", - "cMsgCount": 2, - "lastMsgTime": 1670313907.7547574, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4mVU0oUw==": { - "display_string": [ - "\ue020tanishdoshi765" - ], - "profiles": [], - "name": "\ue020tanishdoshi765", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-27 23:16:54", - "registerOn": 1670147286.6486409, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147286.6486413, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147286.648649, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670147286.64865, - "lastIP": "dvvc}va{l~}m", - "deviceUUID": "30bac5ce5457fe04a69b0a9260350070e6facf74", - "cMsgCount": 0, - "lastMsgTime": 1670148549.3140652, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4dUkxeLQ==": { - "display_string": [ - "\ue063Sumit11727" - ], - "profiles": [], - "name": "\ue063Sumit11727", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-28 22:53:04", - "registerOn": 1670147319.6989822, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670148374.6405299, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248494.183191, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670260979.7385921, - "lastIP": "azo~|k~~igaiex", - "deviceUUID": "5fd3fdecff6f62f3befdb45fec945ebf7d33acb3", - "cMsgCount": 0, - "lastMsgTime": 1670261223.00056, - "lastMsg": "0", - "cSameMsg": 0 - }, - "pb-IF4-VBcnLw==": { - "display_string": [ - "\ue020Vaisakhaacharya" - ], - "profiles": [], - "name": "\ue020Vaisakhaacharya", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-26 12:50:03", - "registerOn": 1670147322.7029283, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147322.7029288, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147322.7029355, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670147322.7029364, - "lastIP": "a|o~vo~~i`aob", - "deviceUUID": "b575a88e8922f784b688b961dba39e60cf130dfa", - "cMsgCount": 0, - "lastMsgTime": 1670148236.5960152, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4hUlYfXQ==": { - "display_string": [ - "\ue063iloa12", - "\ue030Android59663117" - ], - "profiles": [], - "name": "\ue030Android59663117", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-12 22:16:09", - "registerOn": 1670147338.8019137, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147338.8019145, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147338.801951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670147338.8019516, - "lastIP": "i~vaxl~}mcaidw", - "deviceUUID": "7d444423b8f861f75adb7e354e0bfed0062867b5", - "cMsgCount": 0, - "lastMsgTime": 1670147403.7644346, - "lastMsg": "gg", - "cSameMsg": 0 - }, - "pb-IF4sU0xbKQ==": { - "display_string": [ - "\ue020RentalIndependence57" - ], - "profiles": [], - "name": "\ue020RentalIndependence57", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 13:48:07", - "registerOn": 1670147352.80363, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147352.8036306, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147352.8036387, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670147444.8446765, - "lastIP": "bxvf|vavo~}if", - "deviceUUID": "\u0015YUVVEY^\u0005YA", - "cMsgCount": 0, - "lastMsgTime": 1670148236.6669962, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFaV0RJWF1JGEBWU11CFEFXRFhG": { - "display_string": [ - "\ue020KABALIZ010" - ], - "profiles": [], - "name": "\ue020KABALIZ010", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-30 23:54:04", - "registerOn": 1670147367.1874788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147367.1874793, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147367.1874878, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670148188.4354708, - "lastIP": "b}k~}jgaiayvb~a", - "deviceUUID": "e4a77f2424701c228bc7d0cb44180365e04a27de" - }, - "pb-IF4RU3M-Jw==": { - "display_string": [ - "\ue020ComplementaryTry54", - "\ue030Android48646510" - ], - "profiles": [], - "name": "\ue020ComplementaryTry54", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 15:52:38", - "registerOn": 1670147376.9784825, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147376.978483, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147376.9784906, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670148234.6153128, - "lastIP": "a|o~vo~~jdaiay", - "deviceUUID": "025dff09d53d32f6b1682636695d3f54fd1ed2c5" - }, - "pb-IF4cUktZNg==": { - "display_string": [ - "\ue020Ainesh0001" - ], - "profiles": [], - "name": "\ue020Ainesh0001", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-24 13:00:03", - "registerOn": 1670147443.1639163, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147443.1639168, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260444.0754964, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670266953.327813, - "lastIP": "a~h~}keajcwvb\u007fj", - "deviceUUID": "37e673cf4af01f06366303a4c8144454569c460b", - "cMsgCount": 1, - "lastMsgTime": 1670267294.1532257, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4AVUgDDA==": { - "display_string": [ - "\ue020ProdigalAcid30" - ], - "profiles": [], - "name": "\ue020ProdigalAcid30", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-04 19:17:45", - "registerOn": 1670147447.5272655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147447.5272665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257960.9984937, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257960.9984949, - "lastIP": "a\u007fk~}hdaiczvb\u007fj", - "deviceUUID": "233b00d0bea13fe4df0dde4311979f5bdbb80374" - }, - "pb-IF4jUWY5": { - "display_string": [ - "\ue020PickyOnion8951" - ], - "profiles": [], - "name": "\ue020PickyOnion8951", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-13 20:20:54", - "registerOn": 1670147682.475688, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147682.4756885, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224370.5725636, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224370.5725653, - "lastIP": "dvvcyvh~vay", - "deviceUUID": "\u0015\u0005\fVU@\u0002\\SSLW\t\u0005\u0003B", - "cMsgCount": 0, - "lastMsgTime": 1670148251.610843, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF49UnYRLQ==": { - "display_string": [ - "\ue063ChargingBe" - ], - "profiles": [], - "name": "\ue020ChargingBear93648", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-30 19:43:31", - "registerOn": 1670147876.958139, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147876.9581401, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263083.0539935, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670263083.0539944, - "lastIP": "dvvcyvb~i~ya", - "deviceUUID": "b9b711ab2a81c4ee2c8d2708018f9e859fb9e9d3", - "cMsgCount": 0, - "lastMsgTime": 1670152771.1508338, - "lastMsg": "abe laude thuje bacha rha tha ", - "cSameMsg": 0 - }, - "pb-IF4BUmpYNg==": { - "display_string": [ - "\ue063sfretgfdgf", - "\ue020SeismicPetroleum33", - "\ue020PharmacologicalFox59", - "\ue030Android47917927", - "\ue030Android63590584" - ], - "profiles": [], - "name": "\ue063sfretgfdgf", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-01 20:41:16", - "registerOn": 1670148030.5194852, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148030.5194857, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148030.5194933, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148030.5194938, - "lastIP": "bxvc{vevvf", - "deviceUUID": "d9be0da019a814b92513cb144b31aa65f6fbcffb" - }, - "pb-IF4UU1AvNw==": { - "display_string": [ - "\ue030Android63982105" - ], - "profiles": [], - "name": "\ue030Android63982105", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 09:18:35", - "registerOn": 1670148053.2875204, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148053.2875214, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148053.2875721, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148053.287573, - "lastIP": "a|o~vo~~h`ajd{", - "deviceUUID": "cc06900df11e9ee062d26dd18534f95c3462c812" - }, - "pb-IF4CVW07PA==": { - "display_string": [ - "\ue063GoodlyTran" - ], - "profiles": [], - "name": "\ue020GoodlyTrance19", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-08 18:00:46", - "registerOn": 1670148081.7151084, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148081.7151089, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314531.8836813, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314531.8836825, - "lastIP": "dzvbzh~}liaig{", - "deviceUUID": "3e7b2c55f77d3aeec51b72a25eafc1ac73e0f353" - }, - "pb-IF4vU2lbDw==": { - "display_string": [ - "\ue020StoicTurbulence18" - ], - "profiles": [], - "name": "\ue020StoicTurbulence18", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-28 14:21:36", - "registerOn": 1670148197.870161, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148197.870162, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670185187.3254387, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670186029.2780771, - "lastIP": "a|o~vo~~i`aj`{", - "deviceUUID": "8c979450e27fa3d166bd41f5c75837c5c5e624ba", - "cMsgCount": 0, - "lastMsgTime": 1670186537.6192417, - "lastMsg": "hacker hey kya", - "cSameMsg": 0 - }, - "pb-IF5QU1ImIA==": { - "display_string": [ - "\ue063anaunzia" - ], - "profiles": [], - "name": "\ue063anaunzia", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 11:35:12", - "registerOn": 1670148261.506911, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148261.5069115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148261.5069187, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148261.5069194, - "lastIP": "a~l~xa~zi~~kf", - "deviceUUID": "3a52fdedebfa3feae73f47ccf73d5c7fdb56909e" - }, - "pb-IF43U0otUA==": { - "display_string": [ - "\ue020IronLeopard87891" - ], - "profiles": [], - "name": "\ue020IronLeopard87891", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-30 14:39:35", - "registerOn": 1670148427.628323, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148427.6283238, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240065.5562072, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670240065.5562086, - "lastIP": "azo~{n~}iaaicy", - "deviceUUID": "ee51530467ad4b8ae2b2f4eba2d6dd7f33665728" - }, - "pb-IF5dUxEdMw==": { - "display_string": [ - "\ue030Android59978094" - ], - "profiles": [], - "name": "\ue030Android59978094", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-24 14:00:33", - "registerOn": 1670148440.9455113, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148440.9455123, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148440.9455218, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670148698.2545264, - "lastIP": "a\u007fk~~obaobaicw", - "deviceUUID": "6cbe886230f5dc1432bfb49a4fee805b19d04638", - "cMsgCount": 0, - "lastMsgTime": 1670148611.921159, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4LU04tIw==": { - "display_string": [ - "\ue020VenousJackal46" - ], - "profiles": [], - "name": "\ue020VenousJackal46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 13:19:05", - "registerOn": 1670148443.7016256, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148443.7016263, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670180492.4315927, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670181244.1466367, - "lastIP": "awj~{`~~ahaj`", - "deviceUUID": "c01496ae001e803d2f2519c4286b2d2a4e2f119c" - }, - "pb-IF4LU04NXQ==": { - "display_string": [ - "\ue063TayzaAmazi", - "\ue030Android61518159" - ], - "profiles": [], - "name": "\ue063TayzaAmazi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 11:12:34", - "registerOn": 1670148444.676839, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148444.6768396, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148444.676848, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148444.6768484, - "lastIP": "cxva~i~zi~wn", - "deviceUUID": "f1e99c6cf2b2596414e4c5d6b4bfbb6978afbfa1" - }, - "pb-IF4IV04ZKw==": { - "display_string": [ - "\ue020paratr\u00f2\u00f3per", - "\ue030Android26319971", - "\ue030PC355734" - ], - "profiles": [], - "name": "\ue020paratr\u00f2\u00f3per", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-06 01:19:11", - "registerOn": 1670148455.7358403, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148455.7358408, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670274461.1677194, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670273833.6099362, - "lastIP": "b}k~~ohaja}vb|n", - "deviceUUID": "c6852ce1ce7c933f50abd6465ca3fcd0c0154825", - "cMsgCount": 1, - "lastMsgTime": 1670274557.3861141, - "lastMsg": "bye", - "cSameMsg": 0 - }, - "pb-IF4BU0EiEw==": { - "display_string": [ - "\ue020blacksopugaming" - ], - "profiles": [], - "name": "\ue020blacksopugaming", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 21:50:49", - "registerOn": 1670148468.822553, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148468.8225534, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148468.8225608, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148468.8225615, - "lastIP": "azj~zo~}lcaih\u007f", - "deviceUUID": "f990e4c7f7f5f95ad8212bff2d45e38da77cb574" - }, - "pb-IF4BU0cDNg==": { - "display_string": [ - "\ue063hacker1199" - ], - "profiles": [], - "name": "\ue063hacker1199", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 21:26:49", - "registerOn": 1670148469.8444016, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148469.844402, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235249.348355, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670235249.348357, - "lastIP": "a\u007fk~}jfaihwvdv", - "deviceUUID": "14b513d2239371f2b9dc72950ed1ca9b0fa8ba68" - }, - "pb-IF5VU1JZMw==": { - "display_string": [ - "\ue030Android63983659" - ], - "profiles": [], - "name": "\ue030Android63983659", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:37:20", - "registerOn": 1670148470.7953641, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148470.7953646, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148470.7953715, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148470.7953722, - "lastIP": "a\u007fn~}icaa`aihz", - "deviceUUID": "5fd3fdecff6f62f3befdb45fec945ebf7d33acb3" - }, - "pb-IF41U0ElPA==": { - "display_string": [ - "\ue030Android63288902" - ], - "profiles": [], - "name": "\ue030Android63288902", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 07:06:34", - "registerOn": 1670148504.8981645, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148504.8981652, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148504.8981729, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670148553.746867, - "lastIP": "dzva~a~}`~~ae", - "deviceUUID": "e6b8fc0713b82719263cf29f162a2ee85873591e", - "cMsgCount": 0, - "lastMsgTime": 1670148536.32531, - "lastMsg": "/end", - "cSameMsg": 0 - }, - "pb-IF5UVVE8UA==": { - "display_string": [ - "\ue020DentalDiary21", - "\ue030Android52427071" - ], - "profiles": [], - "name": "\ue030Android52427071", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-08 18:45:34", - "registerOn": 1670148558.054654, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148558.0546548, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148558.0546634, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148558.0546641, - "lastIP": "azo~{a~vm~~mh", - "deviceUUID": "bc9e21a4a6df6e6c22cdbff0f96fc525fc36e65b" - }, - "pb-IF4-U0ZcNA==": { - "display_string": [ - "\ue020GrandYogi69354", - "\ue020BiologicalPotion26" - ], - "profiles": [], - "name": "\ue020BiologicalPotion26", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 08:34:54", - "registerOn": 1670148564.0848756, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148564.084876, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148564.0848832, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148564.0848837, - "lastIP": "a\u007fn~}hiajc|vaxk", - "deviceUUID": "f4f953d038ec20f7ad8b5b0fe35d407604c20e5f" - }, - "pb-IF4eU004Ew==": { - "display_string": [ - "\ue020HonorableEttin404" - ], - "profiles": [], - "name": "\ue020HonorableEttin404", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 20:31:56", - "registerOn": 1670148624.308261, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148624.3082619, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241809.5550835, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241809.5550847, - "lastIP": "azo~zi~~mbaiaz", - "deviceUUID": "f926e6f96104161695572452dd7814d84bdd0d3c" - }, - "pb-IF4gUmMPXQ==": { - "display_string": [ - "\ue020NitricBet41" - ], - "profiles": [], - "name": "\ue020NitricBet41", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-01 16:25:42", - "registerOn": 1670148642.3436615, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148642.343662, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312844.4358394, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670314869.02051, - "lastIP": "azj~zo~}khaiez", - "deviceUUID": "\u0015\u0005^RY\u0011\u0004Z\u0002X\u0017U]YX\u0010V\\QXDT^UVDQ" - }, - "pb-IF4-VWEAUA==": { - "display_string": [ - "\ue020ForensicLaboratory19", - "\ue030Android46624746" - ], - "profiles": [], - "name": "\ue020ForensicLaboratory19", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-11 22:55:03", - "registerOn": 1670148658.7032065, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148658.7032073, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148658.7032154, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148658.703216, - "lastIP": "a\u007fn~}icaigvva~n", - "deviceUUID": "87b2e37a6910d5080cfc548246ee8dccdd0021c5", - "cMsgCount": 0, - "lastMsgTime": 1670148676.7350876, - "lastMsg": "ok", - "cSameMsg": 0 - }, - "pb-IF4sU04eMg==": { - "display_string": [ - "\ue063FloweryGar" - ], - "profiles": [], - "name": "\ue063FloweryGar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:11:36", - "registerOn": 1670148671.4688425, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148671.468843, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148671.4688516, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148671.4688525, - "lastIP": "awk~~oaajgaoe", - "deviceUUID": "ba432372bc5c5ce74c39860a860aba76d73a848c" - }, - "pb-IF4lVUwSFg==": { - "display_string": [ - "\ue020Harsaa007", - "\ue030PC446887", - "\ue030PC437584" - ], - "profiles": [], - "name": "\ue020Harsaa007", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-26 11:09:02", - "registerOn": 1670148687.6756177, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148687.6756184, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148687.6756272, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148687.675628, - "lastIP": "dvvb\u007fm~wk~zm", - "deviceUUID": "f5e8820a894fe21ff6b047fed74a17222c96c314" - }, - "pb-IF4RU0gPVg==": { - "display_string": [ - "\ue030Android63705110" - ], - "profiles": [], - "name": "\ue030Android63705110", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 21:18:58", - "registerOn": 1670148712.589369, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148712.5893698, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148712.5893786, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148712.5893793, - "lastIP": "a~o~vo~}hdai`x", - "deviceUUID": "83a016bb06f025b816c34907b8565f35f587972f" - }, - "pb-IF4RU3QoXQ==": { - "display_string": [ - "\ue030Android62576681" - ], - "profiles": [], - "name": "\ue030Android62576681", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-10 10:46:06", - "registerOn": 1670148719.7224848, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670160294.946838, - "totaltimeplayer": 0, - "warnCount": 4, - "lastWarned": 1670160294.945102, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670160147.8344915, - "lastIP": "azj~zo~}l`aja|", - "deviceUUID": "5623f95824834bcf61f4157163554dcd97a9b429", - "cMsgCount": 0, - "lastMsgTime": 1670160294.9454622, - "lastMsg": "bhen ke lavde", - "cSameMsg": 0 - }, - "pb-IF4OU2UCBA==": { - "display_string": [ - "\ue020HARSHITPATLEnilkanth" - ], - "profiles": [], - "name": "\ue020HARSHITPATLEnilkanth", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-17 12:27:56", - "registerOn": 1670148750.7460818, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148750.7460823, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148750.7460885, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148750.7460892, - "lastIP": "azj~zo~~ihaiav", - "deviceUUID": "\u0015W\fQ\u0004EX\b" - }, - "pb-IF5RUmMsFg==": { - "display_string": [ - "\ue020karanshetty6" - ], - "profiles": [], - "name": "\ue020karanshetty6", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-17 10:18:51", - "registerOn": 1670148764.8105505, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148764.810551, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257208.2308288, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257208.2308302, - "lastIP": "azo~zh~yn~vn", - "deviceUUID": "c2a3f27acb52e3ec49f84af6f52e2f5df6caea6b", - "cMsgCount": 0, - "lastMsgTime": 1670239954.9101062, - "lastMsg": "nibbi", - "cSameMsg": 0 - }, - "pb-IF4uUxZYAQ==": { - "display_string": [ - "\ue020CompliantDelight40" - ], - "profiles": [], - "name": "\ue020CompliantDelight40", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-19 14:18:08", - "registerOn": 1670148773.8892055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148773.8892062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148773.8892148, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148773.8892155, - "lastIP": "bxvf|vb}i~~`c", - "deviceUUID": "\u0015\u0004\\\u0005\u0003MQ\u000fYXC\u0002\u000b\u0003QBX\\SX@RUUXBW" - }, - "pb-IF4xV2oPHA==": { - "display_string": [ - "\ue063JealousCry" - ], - "profiles": [], - "name": "\ue063JealousCry", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-06 06:29:28", - "registerOn": 1670148803.9486802, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148803.9486806, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306636.1708944, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670307802.86521, - "lastIP": "a\u007fn~~adajawvi~", - "deviceUUID": "eb18d12c0553a71771f6334f9660dddbe1cbadfe", - "cMsgCount": 0, - "lastMsgTime": 1670167960.761208, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4MU047BA==": { - "display_string": [ - "\ue030Android63936722" - ], - "profiles": [], - "name": "\ue030Android63936722", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 21:58:59", - "registerOn": 1670148838.3438334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148838.3438342, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148838.3439744, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670149097.643073, - "lastIP": "a\u007fn~}heajc~vb\u007fa", - "deviceUUID": "c25048a96f4b7282632fdb499249b86ae2d5f216" - }, - "pb-IF4UU0YsDQ==": { - "display_string": [ - "\ue020C\u1d00\u029f\u029fM\u1d07Y\u1d0fM\u1d00\u0274" - ], - "profiles": [], - "name": "\ue020C\u1d00\u029f\u029fM\u1d07Y\u1d0fM\u1d00\u0274", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-05 13:35:37", - "registerOn": 1670148849.3898847, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148849.3898857, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149757.3735774, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670150044.3655012, - "lastIP": "a\u007fk~~`ca`banc", - "deviceUUID": "859cb4a8f69dc428193a001988bee80274f99083" - }, - "pb-IF4nA28F": { - "display_string": [ - "\ue063pilot12856" - ], - "profiles": [], - "name": "\ue063pilot12856", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-17 15:18:58", - "registerOn": 1670148857.465405, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148857.4654057, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298557.544443, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670312813.3485746, - "lastIP": "b}k~}kfajd{va\u007fo", - "deviceUUID": "2352589e937f9e709ea90b2f15835b7de437977b", - "cMsgCount": 0, - "lastMsgTime": 1670253544.2137978, - "lastMsg": "0", - "cSameMsg": 0 - }, - "pb-IF4hU3APAw==": { - "display_string": [ - "\ue063Sanjayduff", - "\ue030Android59973915" - ], - "profiles": [], - "name": "\ue063Sanjayduff", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 18:53:27", - "registerOn": 1670148926.3606832, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148926.3606834, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261470.6136928, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261470.613694, - "lastIP": "awk~wo~~liaj`|", - "deviceUUID": "0ce64daefb611efe9aa2d3bebdb9cb31adafd817" - }, - "pb-IF4yVVA8Bg==": { - "display_string": [ - "\ue063BABURAOAPT" - ], - "profiles": [], - "name": "\ue020BABURAOAPTE54", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-13 20:09:06", - "registerOn": 1670148927.3255122, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148927.325513, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261719.5663834, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261719.5663843, - "lastIP": "a\u007fk~wi~vk~}md", - "deviceUUID": "0df8d6d52f5c1ed85192c8a86fcce9d300b0c49f", - "cMsgCount": 0, - "lastMsgTime": 1670148975.0088964, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4JU084LA==": { - "display_string": [ - "\ue020CubicResurgence66" - ], - "profiles": [], - "name": "\ue020CubicResurgence66", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 22:30:15", - "registerOn": 1670149010.6385727, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149010.6385736, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149010.638581, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149010.6385818, - "lastIP": "azo~{n~~ifaka", - "deviceUUID": "32551006c0eb9d9254fe85e21bef89735c6e5f82" - }, - "pb-IF4VVFoYCA==": { - "display_string": [ - "\ue020bunnyASSAULTmodo", - "\ue063Irreveren3", - "\ue030Android57905756" - ], - "profiles": [], - "name": "\ue063Irreveren3", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-02 21:42:27", - "registerOn": 1670149025.711014, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149025.7110152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161870.98381, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161870.9838111, - "lastIP": "a}j~~ocak`aje}", - "deviceUUID": "fd2b4ff4b3b6523447bc028baa3af1514643d995" - }, - "pb-IF4VU0IZCg==": { - "display_string": [ - "\ue030Android63426698" - ], - "profiles": [], - "name": "\ue030Android63426698", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-20 11:21:28", - "registerOn": 1670149028.7052379, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149028.7052383, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670303405.1487284, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670303651.1265604, - "lastIP": "axi~{`~wk~}hd", - "deviceUUID": "a8dee104bc98d4e5da127fba7b0b28718d63c79b" - }, - "pb-IF48VWESLA==": { - "display_string": [ - "\ue020GraveHour26" - ], - "profiles": [], - "name": "\ue020GraveHour26", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-13 16:01:33", - "registerOn": 1670149100.9892652, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149100.9892657, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253192.706807, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253296.053303, - "lastIP": "dvvd}vh~vava", - "deviceUUID": "f64794a1c3f9c219e8611115ebf51bdb86f9b4e5" - }, - "pb-IF4hVUccIQ==": { - "display_string": [ - "\ue020UnmarkedVeracity57", - "\ue020HealthfulLodgings47", - "\ue020BroaderReceptacle56", - "\ue020SpringExactness45", - "\ue020BOSSGAMINGAssumpti26" - ], - "profiles": [], - "name": "\ue020BOSSGAMINGAssumpti26", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-05 19:06:21", - "registerOn": 1670149114.496494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149114.4964945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149114.4965034, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149114.496504, - "lastIP": "azo~|l~}k`ai`w", - "deviceUUID": "2944ef2190a1ac2e30b1cf57a75ae581e082409c" - }, - "pb-IF4SUmwlVA==": { - "display_string": [ - "\ue063UpbeatCeme" - ], - "profiles": [], - "name": "\ue063UpbeatCeme", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-11 11:51:44", - "registerOn": 1670149152.177973, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149152.1779735, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259418.8330328, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259418.833034, - "lastIP": "dvvcyvd|vb|", - "deviceUUID": "660f1416ca6dd82572f08dade91ab42336b4b36d" - }, - "pb-IF4qU3pTMg==": { - "display_string": [ - "\ue063TokenMagic" - ], - "profiles": [], - "name": "\ue063TokenMagic", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-05 15:14:18", - "registerOn": 1670149208.4023619, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149208.4023623, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670303554.6179752, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670301340.5354831, - "lastIP": "dvvcxvdyvbzm", - "deviceUUID": "15d3f2ff88cfbf69112768f8133e83dc3d01eea4", - "cMsgCount": 1, - "lastMsgTime": 1670304145.3769336, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5RU3UzJA==": { - "display_string": [ - "\ue063RabidFight" - ], - "profiles": [], - "name": "\ue063RabidFight", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-06 20:34:27", - "registerOn": 1670149285.657756, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149285.6577566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292261.5575802, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292261.557582, - "lastIP": "a~k~~acaohaid{", - "deviceUUID": "c71ca0513260d96b6a7b4cd571d6cbab3d9e7223" - }, - "pb-IF5VU044KA==": { - "display_string": [ - "\ue020Rajuphirherapheri" - ], - "profiles": [], - "name": "\ue020Rajuphirherapheri", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-10 13:46:51", - "registerOn": 1670149344.1516058, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149344.1516068, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149677.0737646, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670153776.199077, - "lastIP": "azj~zo~{a~~hc", - "deviceUUID": "508ba80ac90e87c4783035d8bb719a34c48cb02f" - }, - "pb-IF40U04tFw==": { - "display_string": [ - "\ue020NovelTrousers35", - "\ue030Android52256550" - ], - "profiles": [], - "name": "\ue020NovelTrousers35", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 21:10:12", - "registerOn": 1670149382.1885855, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149382.1885862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254903.0579827, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254903.057984, - "lastIP": "a\u007fn~}iaajbvve}", - "deviceUUID": "71147c7cf7223cf56690d8b3d18f3b979fe7a6b3" - }, - "pb-IF4pV3McIg==": { - "display_string": [ - "\ue063patelbhai7", - "\ue030Android29345487" - ], - "profiles": [], - "name": "\ue063patelbhai7", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-22 14:00:21", - "registerOn": 1670149453.6816685, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149453.6816692, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149453.6816785, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149453.68168, - "lastIP": "azj~zo~}haaj", - "deviceUUID": "961f3ff9d0df102310423e005e65a85421d4b148" - }, - "pb-IF4RVRk7EQ==": { - "display_string": [ - "\ue063El", - "\ue063OO" - ], - "profiles": [], - "name": "\ue063OO", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-04 09:18:56", - "registerOn": 1670149481.7085655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149481.708566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269318.2580304, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670271779.8814206, - "lastIP": "dxvazvc}va{o", - "deviceUUID": "4d62a7d22142ab20057d1256906d24f12956c7e8" - }, - "pb-IF5SVBJTIQ==": { - "display_string": [ - "\ue020vj1481", - "\ue030Android58229085" - ], - "profiles": [], - "name": "\ue020vj1481", - "isBan": false, - "isMuted": false, - "accountAge": "2019-06-10 15:34:10", - "registerOn": 1670149491.7178295, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149491.71783, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149491.7178385, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670161519.781035, - "lastIP": "a\u007fk~vj~{k~}ji", - "deviceUUID": "8c9c14ecbc3845c440fd41f6c3ca7e8f7ead92d1", - "cMsgCount": 0, - "lastMsgTime": 1670158007.9228492, - "lastMsg": "jab tu bcs fun ke baare mein soch rha tha", - "cSameMsg": 0 - }, - "pb-IF4lU20cEw==": { - "display_string": [ - "\ue020mariyafelix3126" - ], - "profiles": [], - "name": "\ue020mariyafelix3126", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-17 02:06:35", - "registerOn": 1670149493.72497, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149493.7249706, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244849.4973934, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670245023.1082377, - "lastIP": "azo~zi~~ahanh", - "deviceUUID": "051471302564de0ea391b0b0461b11977b4b994d" - }, - "pb-JiNJARBbVUVBXVlAEUVQUVdLGUBWQVdK": { - "display_string": [ - "\ue063NoName47962f" - ], - "profiles": [], - "name": "\ue063NoName47962f", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-01 13:35:17", - "registerOn": 1670149518.8348966, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149518.834897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312394.9204397, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670313178.309953, - "lastIP": "a\u007fk~~n`ajc|vaz", - "deviceUUID": "b70356fabf38aa4d32dd038f7595916c2d858448" - }, - "pb-IF4nUnhYBw==": { - "display_string": [ - "\ue063BarbarianC" - ], - "profiles": [], - "name": "\ue063BarbarianC", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-02 19:05:21", - "registerOn": 1670149536.866891, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149536.8668916, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149536.8669004, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670149583.7270267, - "lastIP": "a\u007fj~~aaaiezvb\u007fn", - "deviceUUID": "237cc9cae7ae6ff540e88866779eb699b17c3eb0" - }, - "pb-IF5UU3VTAQ==": { - "display_string": [ - "\ue020CunningMix12" - ], - "profiles": [], - "name": "\ue020CunningMix12", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 22:00:52", - "registerOn": 1670149549.0570552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149549.0570557, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149549.0570633, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149549.0570643, - "lastIP": "a~j~~kdaigzvaxa", - "deviceUUID": "e216ccc20240957b64433dac970672348eadca0f" - }, - "pb-IF5WU04nBg==": { - "display_string": [ - "\ue020NeedyMaple33" - ], - "profiles": [], - "name": "\ue020NeedyMaple33", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 19:51:02", - "registerOn": 1670149549.8872194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149549.88722, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149549.8872266, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149549.8872273, - "lastIP": "azo~|j~~iaaii|", - "deviceUUID": "bd92657fcd0edb8a9e29e5d09f1204352e43b818" - }, - "pb-IF4vU2sIMg==": { - "display_string": [ - "\ue063atharv1326" - ], - "profiles": [], - "name": "\ue063atharv1326", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-08 13:13:29", - "registerOn": 1670149600.1114752, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149600.1114757, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169352.5728133, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169352.572815, - "lastIP": "awj~y`~~ndaia{", - "deviceUUID": "95196a7eca0603a063174f07a4b149edd34057d0" - }, - "pb-IF4vVUNfEA==": { - "display_string": [ - "\ue020sagar88822" - ], - "profiles": [], - "name": "\ue020sagar88822", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-01 00:12:49", - "registerOn": 1670149616.1428947, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149616.1428955, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225500.8171113, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225500.8171127, - "lastIP": "azj~zo~}ibaiav", - "deviceUUID": "07139568af72471f8aaccca0ed1fd85207f28fa7", - "cMsgCount": 1, - "lastMsgTime": 1670227249.4758058, - "lastMsg": "\u0938\u093e\u0917\u0930\u092d\u093e\u090a \u0938\u092c\u0915\u0940 \u092c\u091c\u093e\u092f\u0947\u0902\u0917\u093e\ud83e\ude94\u2694\ufe0f\u2694\ufe0f", - "cSameMsg": 0 - }, - "pb-IF5dU05SIQ==": { - "display_string": [ - "\ue020Thambi765" - ], - "profiles": [], - "name": "\ue020Thambi765", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 11:45:30", - "registerOn": 1670149673.4017322, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149673.4017327, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149673.4017403, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149673.4017413, - "lastIP": "a~h~}jdaacali", - "deviceUUID": "f205459665b218056a8340aed8d49fc6cfb79493" - }, - "pb-IF4rUmcIUg==": { - "display_string": [ - "\ue030Android55446423" - ], - "profiles": [], - "name": "\ue030Android55446423", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-19 15:46:39", - "registerOn": 1670149729.5518153, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149729.551816, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311129.2258925, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670310280.7818167, - "lastIP": "axi~zi~}haaiex", - "deviceUUID": "02caf3fe329a1ffa3212e2576f20b2367e04e119", - "cMsgCount": 1, - "lastMsgTime": 1670311440.37072, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4DVVQMVQ==": { - "display_string": [ - "\ue020OssifiedLegitimacy9", - "\ue030Android63815640", - "\ue030Android63837483" - ], - "profiles": [], - "name": "\ue020OssifiedLegitimacy9", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-02 08:18:06", - "registerOn": 1670149769.750018, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149769.7500184, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149769.7500255, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149769.7500265, - "lastIP": "bxveyvh\u007fvawm", - "deviceUUID": "59650fa38e210c7263839a518c6eb4e31f258f29" - }, - "pb-IF4wU0soJg==": { - "display_string": [ - "\ue030Android63786120" - ], - "profiles": [], - "name": "\ue030Android63786120", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 23:13:08", - "registerOn": 1670149771.7401085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149771.740109, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149771.7401178, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149771.7401187, - "lastIP": "axi~zi~~l`aiay", - "deviceUUID": "ff36c74dab8b1e62907104c8c6194251e6c349c7" - }, - "pb-IF5SU1E6Jg==": { - "display_string": [ - "\ue063DeceitfulL" - ], - "profiles": [], - "name": "\ue063Pankiii25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 16:16:40", - "registerOn": 1670149883.106087, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149883.1060874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149883.1060953, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670149883.1060963, - "lastIP": "b}k~~`faiivvd~", - "deviceUUID": "06a7356ea9a6ae1411430b7031fa5f3cd5ccb112" - }, - "pb-IF4rU04xBA==": { - "display_string": [ - "\ue020ExceptionalPrince25" - ], - "profiles": [], - "name": "\ue020ExceptionalPrince25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 13:55:34", - "registerOn": 1670149894.114902, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149894.1149023, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149894.1149125, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149894.1149135, - "lastIP": "axm~~ofaaeajd", - "deviceUUID": "a2159e0a545bcdb646bf96c3e1391d3053d30405" - }, - "pb-IF4AVUZaAg==": { - "display_string": [ - "\ue020OutSwarm27" - ], - "profiles": [], - "name": "\ue020OutSwarm27", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-17 21:59:19", - "registerOn": 1670149910.3621597, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149910.3621602, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149910.362359, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149910.36236, - "lastIP": "azo~|o~}jbaib}", - "deviceUUID": "\u0015T\u000b\u0002QGU[\u0007P\u0015P\\XS\u0011T\\TWDSUSUA", - "cMsgCount": 0, - "lastMsgTime": 1670150014.144953, - "lastMsg": "/codes", - "cSameMsg": 0 - }, - "pb-IF5dV3FfCw==": { - "display_string": [ - "\ue020ProsaicLunatic1799" - ], - "profiles": [], - "name": "\ue020ProsaicLunatic1799", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-29 11:41:55", - "registerOn": 1670149925.2293956, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149925.229396, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149925.2294042, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149925.229405, - "lastIP": "a~o~vo~~aeaja}", - "deviceUUID": "128fbe725a758d43f0fd20edba43c5f0dbbb4b46" - }, - "pb-IF4XU1BaKQ==": { - "display_string": [ - "\ue063ronxbone" - ], - "profiles": [], - "name": "\ue063ronxbone", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 10:34:24", - "registerOn": 1670149989.4804418, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149989.480442, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149989.4805558, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149989.480557, - "lastIP": "a\u007fk~~liakgaib}", - "deviceUUID": "13fdf09986dc706cf2965004465a6aa644b00943" - }, - "pb-IF43VXkyKg==": { - "display_string": [ - "\ue020RagingGem36106" - ], - "profiles": [], - "name": "\ue020RagingGem36106", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-04 21:14:39", - "registerOn": 1670150016.914027, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150016.9140275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150016.9140346, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150016.9140356, - "lastIP": "d~vb~n~}hbaib", - "deviceUUID": "1395a98c9376933c9e419225719d506ce619c62a" - }, - "pb-IF4pU0sRFw==": { - "display_string": [ - "\ue063AiranChanc", - "\ue030Android45464897" - ], - "profiles": [], - "name": "\ue063AiranChanc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 11:48:02", - "registerOn": 1670150045.6772332, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150045.677234, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150045.677242, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670151230.457125, - "lastIP": "axi~xn~~hda`a", - "deviceUUID": "d0840a2da17b6bca167082ced78a6b0bb8506b3e" - }, - "pb-IF4BU0wpDw==": { - "display_string": [ - "\ue020harshadkarale007", - "\ue020SulkyPlant124", - "\ue020harshad69", - "\ue030Android63857889" - ], - "profiles": [], - "name": "\ue020harshadkarale007", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-13 11:41:54", - "registerOn": 1670150077.8061469, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150077.8061473, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310948.8792286, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670310948.8792303, - "lastIP": "azo~|k~}lha`", - "deviceUUID": "0cb6464fa2cf2cab848120323a95572fbaa12010", - "cMsgCount": 0, - "lastMsgTime": 1670167989.3255508, - "lastMsg": "\ud83e\udd23", - "cSameMsg": 0 - }, - "pb-IF4oVHAYLA==": { - "display_string": [ - "\ue020rolanjr231", - "\ue063norland231", - "\ue063WaxyFlag34", - "\ue030Android63838425" - ], - "profiles": [], - "name": "\ue063norland231", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-23 07:10:02", - "registerOn": 1670150114.9199865, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150114.919987, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150114.9199955, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150114.9199965, - "lastIP": "a|h~~heaic{vev", - "deviceUUID": "f2dead3c4aacdb7c931927e64a9c37aa34022ce2" - }, - "pb-IF4vU0skLw==": { - "display_string": [ - "\ue020MainstreamContrast42" - ], - "profiles": [], - "name": "\ue020MainstreamContrast42", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 11:29:11", - "registerOn": 1670150132.0845466, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150132.084547, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150132.084554, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150132.0845547, - "lastIP": "azo~{a~~``ala", - "deviceUUID": "c9df545bca4a73a96629ad06fbdfa381808ec014" - }, - "pb-IF4LVVQfBA==": { - "display_string": [ - "\ue030Android53090241" - ], - "profiles": [], - "name": "\ue030Android53090241", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-04 15:05:04", - "registerOn": 1670150149.3393252, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150149.3393257, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150149.3393326, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150149.3393335, - "lastIP": "a~l~}mdaa~~m`", - "deviceUUID": "\u0015WX" - }, - "pb-IF49U0MCCA==": { - "display_string": [ - "\ue063LevelAccep" - ], - "profiles": [], - "name": "\ue063LevelAccep", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 17:54:58", - "registerOn": 1670150282.596354, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150282.5963545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226683.1363559, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670232908.5839376, - "lastIP": "a\u007fk~xo~~jgaicv", - "deviceUUID": "dce6773e0df5274089fc68289e928e5eb28a6464", - "cMsgCount": 0, - "lastMsgTime": 1670233380.1376028, - "lastMsg": "too much sound", - "cSameMsg": 0 - }, - "pb-IF5dU0YxNA==": { - "display_string": [ - "\ue020FurryArchon2625" - ], - "profiles": [], - "name": "\ue020FurryArchon2625", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 13:45:52", - "registerOn": 1670150292.5157666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150292.515767, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150292.5157752, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150292.5157762, - "lastIP": "b}k~~`ea`eang", - "deviceUUID": "763900e1025b41e755202eff96a775dd0f4939fe" - }, - "pb-IF4GUkYzDA==": { - "display_string": [ - "\ue020TypicalColonel69394" - ], - "profiles": [], - "name": "\ue020TypicalColonel69394", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-03 21:01:08", - "registerOn": 1670150432.0940392, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150432.09404, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244489.2740214, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244489.2740228, - "lastIP": "azo~|l~}igami", - "deviceUUID": "f889cf812fc55730491765df446815e2f1e28dc0" - }, - "pb-IF4QU0gCJg==": { - "display_string": [ - "\ue020MegumiBakuretsu10" - ], - "profiles": [], - "name": "\ue020MegumiBakuretsu10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 13:20:59", - "registerOn": 1670150487.3369517, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150487.3369527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150487.3369608, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150487.3369617, - "lastIP": "b}k~~`hajezvhv", - "deviceUUID": "\u0015\u0007[UQ\u0010\u0002XPR\u0015TY" - }, - "pb-JiNJARFdXUtEXF1DEUVWUVRCE0VcRFJE": { - "display_string": [ - "\ue063Tenacious8" - ], - "profiles": [], - "name": "\ue063Tenacious8", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-11 09:56:08", - "registerOn": 1670150492.2616467, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150492.2616475, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150492.2616563, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150492.261657, - "lastIP": "dvvc}vavk~}hh", - "deviceUUID": "4d8a76b9fdf07e8b1fd462ea87bb130dc3be8cd5" - }, - "pb-IF4dU04ODg==": { - "display_string": [ - "\ue063WishfulHil" - ], - "profiles": [], - "name": "\ue063WishfulHil", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 10:55:17", - "registerOn": 1670150522.681502, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150522.681503, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216454.3141272, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670216454.3141284, - "lastIP": "azo~{i~~ogai`z", - "deviceUUID": "fb1c0f5578e1c51b6bb515cad6ad7dba76f630ff" - }, - "pb-IF5WU0RTLA==": { - "display_string": [ - "\ue030Android63351569" - ], - "profiles": [], - "name": "\ue030Android63351569", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-16 20:41:57", - "registerOn": 1670150533.4063275, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150533.4063282, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225160.57092, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225160.570921, - "lastIP": "azo~|j~|i~wj", - "deviceUUID": "\u0015XUW\u0002GRU\u0005W@VTW\u0004\u0015V\\SWLUYRWB" - }, - "pb-IF4RU049PA==": { - "display_string": [ - "\ue020MoonlitLink53" - ], - "profiles": [], - "name": "\ue020MoonlitLink53", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 13:25:04", - "registerOn": 1670150575.5474854, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150575.547486, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150575.5474932, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150575.547494, - "lastIP": "a\u007fn~~aeai`aib}", - "deviceUUID": "5a286eed79868133ec6e1dabae9c94bfc3b8d00f" - }, - "pb-IF5SVFdSFQ==": { - "display_string": [ - "\ue020GAMER123ABHAY", - "\ue030Android62205508", - "\ue030PC346437" - ], - "profiles": [], - "name": "\ue030PC346437", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-22 07:37:31", - "registerOn": 1670150597.617316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150597.6173167, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246216.2664175, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246216.2664187, - "lastIP": "a\u007fk~vl~~kiajb", - "deviceUUID": "47cddabeef7d4c1880fb0eb137dadca8aaf7f8f5" - }, - "pb-IF4vUxkKDg==": { - "display_string": [ - "\ue020TremendousCreek8" - ], - "profiles": [], - "name": "\ue020TremendousCreek8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-30 19:03:34", - "registerOn": 1670150727.111291, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150727.1112914, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236811.1628416, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670237333.0836732, - "lastIP": "b}k~}khaja}vb{", - "deviceUUID": "93959a9d304362003c85e791a6956c14d16159fe", - "cMsgCount": 0, - "lastMsgTime": 1670238087.3349645, - "lastMsg": "didu play", - "cSameMsg": 0 - }, - "pb-IF4wUlIYCg==": { - "display_string": [ - "\ue063NearCandy4" - ], - "profiles": [], - "name": "\ue063NearCandy4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-25 16:12:16", - "registerOn": 1670150917.6800628, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150917.6800632, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306076.036785, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670313939.6130772, - "lastIP": "a}j~~oaaifaac", - "deviceUUID": "29664371fa48e8ec4a19a736ba9c37fb3d9ce10c", - "cMsgCount": 0, - "lastMsgTime": 1670314199.0714824, - "lastMsg": "avi noobde\ud83d\ude21", - "cSameMsg": 0 - }, - "pb-IF5VU0cyFg==": { - "display_string": [ - "\ue020sOFF1C1AL", - "\ue030Android63570559", - "\ue030Android63570736", - "\ue030Android63570544", - "\ue030Android63570719" - ], - "profiles": [], - "name": "\ue020sOFF1C1AL", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 15:43:32", - "registerOn": 1670151270.9283757, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151270.9283764, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670151270.9283845, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152274.057065, - "lastIP": "a\u007fn~}iaajc{vb\u007f`", - "deviceUUID": "c19fef9185c32abd8163880d476ab851bc8f9ff5", - "cMsgCount": 1, - "lastMsgTime": 1670151294.296285, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5RUkgTPw==": { - "display_string": [ - "\ue063BeamingLem" - ], - "profiles": [], - "name": "\ue063BeamingLem", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-05 18:43:08", - "registerOn": 1670151279.9852002, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151279.9852006, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670151279.985209, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670151279.98521, - "lastIP": "a~h~~khajbaib\u007f", - "deviceUUID": "8ebf6da6b2bc9c6234d4df41befcd6e560e5f5a1" - }, - "pb-IF4SU04JNg==": { - "display_string": [ - "\ue020BRITTODON03" - ], - "profiles": [], - "name": "\ue020BRITTODON03", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 13:56:41", - "registerOn": 1670151317.1930032, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151317.193004, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670151317.1930118, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670153033.64259, - "lastIP": "azo~zi~~hhaid\u007f", - "deviceUUID": "2804acc9c35941b7e55e2fd4c6ac2a0d9532853d" - }, - "pb-IF4yU05aKg==": { - "display_string": [ - "\ue020PRASADGOLE007" - ], - "profiles": [], - "name": "\ue020PRASADGOLE007", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 10:01:41", - "registerOn": 1670151344.1539695, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151344.1539702, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313343.8954515, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313343.8954527, - "lastIP": "a\u007fn~~aea`~w`", - "deviceUUID": "13c6f9c19f7e080eef7c76a3b615b11707f8a2fa" - }, - "pb-IF4AU2czAQ==": { - "display_string": [ - "\ue020FamedHair40" - ], - "profiles": [], - "name": "\ue020FamedHair40", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-23 12:09:17", - "registerOn": 1670151374.293031, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151374.2930315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670151374.2930408, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670151374.2930415, - "lastIP": "azo~{h~~liaibx", - "deviceUUID": "f75c1af88dac0c6daef9c9204c6ed802be3b11e5" - }, - "pb-IF4PU0YSXA==": { - "display_string": [ - "\ue020CreepySamurai688" - ], - "profiles": [], - "name": "\ue020CreepySamurai688", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-12 12:31:11", - "registerOn": 1670151393.3493638, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151393.3493645, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242535.6785038, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242535.6785052, - "lastIP": "aakhaid\u007fvb~n", - "deviceUUID": "3c906c1a32f9ef10ec34f3359781d92fcd64921b" - }, - "pb-JiNJARFZUEFBXlpFGERQUFdDFkNXRFFF": { - "display_string": [ - "\ue063Godfther1" - ], - "profiles": [], - "name": "\ue063Godfther1", - "isBan": false, - "isMuted": false, - "accountAge": "2017-02-14 19:12:04", - "registerOn": 1670151482.708698, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151482.7086985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670151482.708706, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670152004.118567, - "lastIP": "a|j~~mdaig}vdy", - "deviceUUID": "6be40e4eb88a19753228a979515384ba39b3ce12" - }, - "pb-IF49VFQlPA==": { - "display_string": [ - "\ue020PAMU628", - "\ue030PC607749", - "\ue030PC608632", - "\ue030PC688281", - "\ue030PC306656" - ], - "profiles": [], - "name": "\ue030PC688281", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-23 14:22:54", - "registerOn": 1670151522.747347, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151522.7473476, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313495.6099503, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670314117.2022471, - "lastIP": "azo~zh~vvavo", - "deviceUUID": "b36eb11407361b24713fcb7a28a43226365651b8", - "cMsgCount": 0, - "lastMsgTime": 1670314427.6023934, - "lastMsg": "hi anurag ", - "cSameMsg": 0 - }, - "pb-IF4OU0wZAg==": { - "display_string": [ - "\ue063Technospar" - ], - "profiles": [], - "name": "\ue063Technospar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 17:00:04", - "registerOn": 1670151635.1701655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151635.170166, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250143.176181, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250143.1761823, - "lastIP": "a\u007fk~~oiaiixva{o", - "deviceUUID": "fbc216773e63575c0d243392a7b1dfc4b07824c7" - }, - "pb-IF4sU0s_XQ==": { - "display_string": [ - "\ue020InsincereCase61" - ], - "profiles": [], - "name": "\ue020InsincereCase61", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 09:22:39", - "registerOn": 1670151776.62861, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151776.6286104, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670289904.6605852, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670290556.8770628, - "lastIP": "a~l~~h~{vd{", - "deviceUUID": "4b8e3697575ef3648363d6d73d9c02a81ab64084" - }, - "pb-IF4tU08YEA==": { - "display_string": [ - "\ue063Worthwhil4" - ], - "profiles": [], - "name": "\ue063Worthwhil4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 22:52:36", - "registerOn": 1670151848.1438696, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151848.14387, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670151848.1438785, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670151848.143892, - "lastIP": "a\u007fk~~oaaj`\u007fvaxo", - "deviceUUID": "a97bcffecd47672c4fd7a05130c19be7d2729277" - }, - "pb-IF4RUlAMNg==": { - "display_string": [ - "\ue020GnarlyJackalope56572" - ], - "profiles": [], - "name": "\ue020GnarlyJackalope56572", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-17 12:23:58", - "registerOn": 1670151949.246008, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151949.2460084, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670151949.2460163, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670151949.2460172, - "lastIP": "azo~{a~}jeaid\u007f", - "deviceUUID": "\u0015Y\u000e\u0005\u0005A\u0004ZQ\u0005\u0015Y\u000eTVBU\\SSFYUSVGS" - }, - "pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE": { - "display_string": [ - "\ue063HeySmooth2", - "\ue043Mr.Smoothy" - ], - "profiles": [], - "name": "\ue063HeySmooth2", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-13 17:21:16", - "registerOn": 1670151983.5855172, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151983.5855176, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314892.0988464, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314892.0988472, - "lastIP": "dvvd|vazm~~hf", - "deviceUUID": "014b00976f2c8cd83b1cb0f107296632148161af", - "cMsgCount": 1, - "lastMsgTime": 1670273511.6650937, - "lastMsg": "/kick 171", - "cSameMsg": 0 - }, - "pb-IF4VU3QkFQ==": { - "display_string": [ - "\ue063Downstrea3" - ], - "profiles": [], - "name": "\ue063Downstrea3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-13 16:08:57", - "registerOn": 1670152024.6097336, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152024.6097343, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152024.6097438, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152024.6097448, - "lastIP": "a~i~vj~~igaih|", - "deviceUUID": "8271060b4901c2c62f21de6e548f6b5e273e1d48" - }, - "pb-IF4HU00OIA==": { - "display_string": [ - "\ue063Ayushayy" - ], - "profiles": [], - "name": "\ue063Ayushayy", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 22:35:36", - "registerOn": 1670152203.0654047, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152203.0654051, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253458.732168, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253458.7321694, - "lastIP": "a\u007fn~}i`ajczvb~`", - "deviceUUID": "e7207cfc292c54d4dd6faa3fc42df0882dc792c3" - }, - "pb-IF4qUkQ9CA==": { - "display_string": [ - "\ue020LORDHanzoStar" - ], - "profiles": [], - "name": "\ue020LORDHanzoStar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-28 15:20:31", - "registerOn": 1670152229.5075467, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152229.5075471, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253406.4740539, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253406.474055, - "lastIP": "a\u007fn~~aeakgaiby", - "deviceUUID": "919cfd9dfd64b8ad2ccaeaaeeb246f9cd24ffa72" - }, - "pb-IF4GD2Yd": { - "display_string": [ - "\ue063POWERXDHRU", - "\ue030Android49476815" - ], - "profiles": [], - "name": "\ue020POWERXDHRUV", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-02 22:20:11", - "registerOn": 1670152285.4197857, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152285.4197862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253631.4319293, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670262912.3258195, - "lastIP": "a\u007fn~}ifaje~vawi", - "deviceUUID": "c0577fd30ed3cc51f1328a71bfaeea73e44a7be8" - }, - "pb-IF4SU00JHw==": { - "display_string": [ - "\ue020Jayrajsinh1202" - ], - "profiles": [], - "name": "\ue020Jayrajsinh1202", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 22:56:58", - "registerOn": 1670152473.0684376, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152473.0684378, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307799.847084, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670308989.672402, - "lastIP": "azo~|j~}laaof", - "deviceUUID": "d2f24056af44a204e555084164760cbd757f8be1", - "cMsgCount": 0, - "lastMsgTime": 1670308000.4286244, - "lastMsg": "l", - "cSameMsg": 0 - }, - "pb-LV4FBEEKV0ZAVVwVGBVTBlxBFQ==": { - "display_string": [ - "\ue063LyingSword", - "\ue030Android12884065", - "\ue030PC103199", - "\ue030Android9847306", - "\ue030Android11501267" - ], - "profiles": [], - "name": "\ue063LyingSword", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-25 20:00:46", - "registerOn": 1670152520.1950645, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152520.195065, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216924.9135578, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670218300.3936977, - "lastIP": "a~o~vo~}hcami", - "deviceUUID": "07b8eee8772d5635ae26f7e42f3cb9ca44e051c8" - }, - "pb-JiNJARBfUUZBXlZFFUBYXVZBGEJYQ1BK": { - "display_string": [ - "\ue063mohitdevna", - "\ue030Android9502778" - ], - "profiles": [], - "name": "\ue063mohitdevna", - "isBan": false, - "isMuted": false, - "accountAge": "2016-09-25 21:04:40", - "registerOn": 1670152604.4520462, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152604.4520466, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152604.4520538, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152604.4520547, - "lastIP": "dvvcyvb|l~}ja", - "deviceUUID": "969bf094ecb454e163bec89a58426fd42821d07c" - }, - "pb-IF4CDlAZ": { - "display_string": [ - "\ue020bhattiarman786", - "\ue030Android20001553" - ], - "profiles": [], - "name": "\ue020bhattiarman786", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-02 18:27:07", - "registerOn": 1670152618.5758681, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152618.5758686, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152618.575878, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152618.575908, - "lastIP": "azo~|j~~o~z`", - "deviceUUID": "d8201ea90a1be9ff084631f3cfca964012a2b11b" - }, - "pb-JiNJARFTVEVHXFZFE09ZVFNGE0ZXRlRA": { - "display_string": [ - "\ue020CherryBruiser84898" - ], - "profiles": [], - "name": "\ue020CherryBruiser84898", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-30 12:37:08", - "registerOn": 1670152738.9171174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152738.9171178, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152738.9171264, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152738.9171274, - "lastIP": "a\u007fn~}i`aii|vazk", - "deviceUUID": "4a5672c499e5721358502cb69068eeb5aeb3823e", - "cMsgCount": 0, - "lastMsgTime": 1670154085.4756415, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4rVxMNCg==": { - "display_string": [ - "\ue020kvgahlaut2002" - ], - "profiles": [], - "name": "\ue020kvgahlaut2002", - "isBan": false, - "isMuted": false, - "accountAge": "2018-07-29 23:19:31", - "registerOn": 1670152859.3323731, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152859.3323739, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152859.3323812, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152859.332382, - "lastIP": "a}j~~naambakg", - "deviceUUID": "7e1bfc59a3c1ed6c5bd141cfa2174e6bda7116d4" - }, - "pb-IF4dU3ISFw==": { - "display_string": [ - "\ue030Android62533927" - ], - "profiles": [], - "name": "\ue030Android62533927", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 10:49:18", - "registerOn": 1670152895.4631698, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152895.4631703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152895.4631784, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152895.4631796, - "lastIP": "azo~zi~~nbaog", - "deviceUUID": "b05d9a02d64b7187b45d92f469e0dac940bcb8ea" - }, - "pb-JiNJVxFfUktFXltAEU5UUVVLGERXRVJG": { - "display_string": [ - "\ue020balamurugan1232" - ], - "profiles": [], - "name": "\ue020balamurugan1232", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-10 22:19:31", - "registerOn": 1670152908.5611398, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152908.5611403, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152908.5611484, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152908.5611494, - "lastIP": "azo~zi~~`eaid~", - "deviceUUID": "813cabe59525ededf26ab1d2c95abcc6ca788fe1" - }, - "pb-IF4PU0lcNA==": { - "display_string": [ - "\ue063ameno" - ], - "profiles": [], - "name": "\ue063ameno", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-26 01:58:01", - "registerOn": 1670152926.5370183, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152926.5370193, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152926.5370252, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152926.5370264, - "lastIP": "dvvcyvawk~~jh", - "deviceUUID": "e1e1598f3d07c22e54ab8b8261f5040dd0fa1a64" - }, - "pb-IF4PU08bDw==": { - "display_string": [ - "\ue063Existenti7" - ], - "profiles": [], - "name": "\ue063Existenti7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 16:51:05", - "registerOn": 1670152992.8104439, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152992.810444, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152992.810451, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152992.8104522, - "lastIP": "a~i~vj~}h~~o`", - "deviceUUID": "587e98f49720679f18aa9e0c6871f1926e775d57" - }, - "pb-IF4PU0laCQ==": { - "display_string": [ - "\ue063LegEndGoga" - ], - "profiles": [], - "name": "\ue020LegEndGogari", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 14:07:52", - "registerOn": 1670153010.835215, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153010.8352156, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260203.0652401, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670260212.1126184, - "lastIP": "a\u007fk~}jfaj`yvb~k", - "deviceUUID": "fec2ed56121c18274df688b838280fade9c0064c" - }, - "pb-IF4vUnhcMw==": { - "display_string": [ - "\ue030Android57199331" - ], - "profiles": [], - "name": "\ue030Android57199331", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-04 07:38:41", - "registerOn": 1670153037.0050778, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153037.0050783, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153037.0050874, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153037.0050883, - "lastIP": "azo~zi~~oiaje\u007f", - "deviceUUID": "b80c9d6be21d819a15adf66cdd703c0d08cc5be3" - }, - "pb-IF4TV3RbDA==": { - "display_string": [ - "\ue020HypnoticAttacker6749" - ], - "profiles": [], - "name": "\ue020HypnoticAttacker6749", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-22 23:04:35", - "registerOn": 1670153152.4128566, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153152.4128573, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670304045.6702542, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670309892.068792, - "lastIP": "a\u007fn~zi~}l`aoc", - "deviceUUID": "d9016bdfc3800e1b8fc043ebc0fc3a0d8f2b2ca2", - "cMsgCount": 0, - "lastMsgTime": 1670309674.9007397, - "lastMsg": "lol", - "cSameMsg": 0 - }, - "pb-IF4iUnQqHw==": { - "display_string": [ - "\ue063InbornSimp" - ], - "profiles": [], - "name": "\ue063InbornSimp", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-18 17:42:42", - "registerOn": 1670153169.4134543, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153169.4134548, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296292.3500986, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296292.3501, - "lastIP": "bxvc{va\u007fl~vi", - "deviceUUID": "6dbcc65f4bb4908ead86702a590c04d4b316248b" - }, - "pb-IF41VEMGKw==": { - "display_string": [ - "\ue020BakedCritter200" - ], - "profiles": [], - "name": "\ue020BakedCritter200", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-12 11:10:01", - "registerOn": 1670153338.006263, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153338.0062635, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215382.2109458, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215382.2109473, - "lastIP": "dvvcxvb~h~~ji", - "deviceUUID": "096e4bb2158b9909563621da2084c74f1ea05785" - }, - "pb-IF5XU1JSMA==": { - "display_string": [ - "\ue030Android63984084" - ], - "profiles": [], - "name": "\ue030Android63984084", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 16:59:13", - "registerOn": 1670153431.3419092, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153431.3419096, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153431.341918, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153431.341919, - "lastIP": "awm~{i~}hfaic~", - "deviceUUID": "8a1a293ebe34143c7402d3d3fa761c2c786cf05a" - }, - "pb-IF4pU0lYLg==": { - "display_string": [ - "\ue020MetalReporter57" - ], - "profiles": [], - "name": "\ue020MetalReporter57", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 14:49:22", - "registerOn": 1670153479.5258107, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153479.525811, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313455.472797, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313455.472798, - "lastIP": "dvvc{vb}a~~`d", - "deviceUUID": "c8da4033b497273eda820de725e077cd0286b29c" - }, - "pb-IF5cVBgkUw==": { - "display_string": [ - "\ue030Android36662481" - ], - "profiles": [], - "name": "\ue030Android36662481", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-17 17:17:28", - "registerOn": 1670153524.684184, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153524.6841846, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153524.6841922, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153524.6841931, - "lastIP": "dvva{`~}leaihv", - "deviceUUID": "f3e4d1c5524ffe09768f539800272965c26a84cf" - }, - "pb-IF4cU08zNg==": { - "display_string": [ - "\ue063hackkkkk13" - ], - "profiles": [], - "name": "\ue063hackkkkk13", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 17:19:07", - "registerOn": 1670153554.8892639, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153554.8892643, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153554.8892713, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153554.889272, - "lastIP": "a~k~~neaodaidy", - "deviceUUID": "7114c9505a120a1442526f84004de88ad869c65d" - }, - "pb-IF4NU0cpFw==": { - "display_string": [ - "\ue020ModalHandle23" - ], - "profiles": [], - "name": "\ue020ModalHandle23", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 13:00:02", - "registerOn": 1670153566.9289293, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153566.9289298, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670250937.2662785, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670250585.8197703, - "lastIP": "a\u007fk~xh~~lean", - "deviceUUID": "d3718c41e51cc0a68dc85d68ffc3c3a54d66550a", - "cMsgCount": 0, - "lastMsgTime": 1670252738.493353, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4TU0cRXQ==": { - "display_string": [ - "\ue020DauntingBasement23" - ], - "profiles": [], - "name": "\ue020DauntingBasement23", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 18:28:44", - "registerOn": 1670153583.8242934, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153583.824294, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153583.8243008, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153583.8243022, - "lastIP": "a\u007fn~~acajeaj`y", - "deviceUUID": "c498431cdbb8e6d74d447eba20bb191131e9f2a4" - }, - "pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF": { - "display_string": [ - "\ue020PoeticFire35261", - "\ue030Android10760074" - ], - "profiles": [], - "name": "\ue020PoeticFire35261", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-05 16:34:48", - "registerOn": 1670153597.8871176, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153597.8871183, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298646.853027, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670311624.1527908, - "lastIP": "azo~{o~v`~~kb", - "deviceUUID": "fe0632180c6fdf0358ef662793570362f1792ca2", - "cMsgCount": 0, - "lastMsgTime": 1670254337.7456703, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH": { - "display_string": [ - "\ue063UKnowMeAJ", - "\ue030Android6156965", - "\ue030Android8450884", - "\ue030PC124724", - "\ue030Android16945336" - ], - "profiles": [], - "name": "\ue063UKnowMeAJ", - "isBan": false, - "isMuted": false, - "accountAge": "2016-08-23 22:53:02", - "registerOn": 1670153607.9341831, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153607.9341836, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153607.9341931, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153607.9341943, - "lastIP": "awj~{`~}kaaib~", - "deviceUUID": "0dabcb7a1112dfe28d7c91c8ba6834dcd0a32ff1", - "cMsgCount": 0, - "lastMsgTime": 1670155302.665023, - "lastMsg": "finally met someone i know glad for that", - "cSameMsg": 0 - }, - "pb-IF4UU2IIFg==": { - "display_string": [ - "\ue020ArunTamizha" - ], - "profiles": [], - "name": "\ue020ArunTamizha", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-05 21:09:13", - "registerOn": 1670153617.0610843, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153617.0610847, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153617.0610936, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153617.0610943, - "lastIP": "azo~{a~}kgaic\u007f", - "deviceUUID": "c8c93e9246ede294de40a489382f9caff152bcca" - }, - "pb-IF4NU0ogMQ==": { - "display_string": [ - "\ue030Android63798929" - ], - "profiles": [], - "name": "\ue030Android63798929", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 00:06:46", - "registerOn": 1670153625.037714, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153625.0377147, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153625.0377228, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153625.037724, - "lastIP": "a\u007fn~~aeah~}lh", - "deviceUUID": "\u0015" - }, - "pb-IF4mU04zPA==": { - "display_string": [ - "\ue020Aryansingh7380" - ], - "profiles": [], - "name": "\ue020Aryansingh7380", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 15:36:00", - "registerOn": 1670153703.224928, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153703.2249286, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153703.2249346, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153703.2249358, - "lastIP": "bxvgakhald", - "deviceUUID": "1bcb6d4f5e67c688504e2ed69b13a6fedefb0b5c" - }, - "pb-IF4HU0sYJg==": { - "display_string": [ - "\ue020NerdyIntoxication61" - ], - "profiles": [], - "name": "\ue020NerdyIntoxication61", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 21:12:15", - "registerOn": 1670153751.4580996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153751.4581, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153751.4581082, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153751.4581094, - "lastIP": "d|vbzi~}jcaj`y", - "deviceUUID": "d41e1b56bbddcdb0889e605e38131b1e3136c616" - }, - "pb-IF41UlUmIw==": { - "display_string": [ - "\ue063Screechi15" - ], - "profiles": [], - "name": "\ue063Screechi15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-04 10:32:44", - "registerOn": 1670153940.0520194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153940.05202, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153940.0520291, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153940.0520303, - "lastIP": "a\u007fk~~iaaabajcz", - "deviceUUID": "4e3edf5ba1db2396c457d9a9e5fbfd6164cdcab0" - }, - "pb-IF5TVUJcLA==": { - "display_string": [ - "\ue020lazygamerwhatsoever" - ], - "profiles": [], - "name": "\ue020lazygamerwhatsoever", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-08 06:27:07", - "registerOn": 1670154007.2923071, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154007.2923076, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154007.2923143, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154007.2923155, - "lastIP": "b\u007fj~~o`aj`xvazi", - "deviceUUID": "19d50cda16f967f422a6754824923d499c3b92f9" - }, - "pb-IF4SU08FBw==": { - "display_string": [ - "\ue063FULLGAMING" - ], - "profiles": [], - "name": "\ue063FULLGAMING", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:18:06", - "registerOn": 1670154020.3763273, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154020.3763275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154020.3763359, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670154950.374515, - "lastIP": "azo~{l~~mbaoc", - "deviceUUID": "7d7048bd82d0b66c3650d55dacb0d18a7ac2e368" - }, - "pb-IF4OVGhcIw==": { - "display_string": [ - "\ue020NeedlessMonkey47856" - ], - "profiles": [], - "name": "\ue020NeedlessMonkey47856", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-23 13:52:24", - "registerOn": 1670154041.5401742, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154041.540175, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164925.222557, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164925.2225587, - "lastIP": "azo~zi~~ieajb}", - "deviceUUID": "a38d062dd017df250a5be569c32001f95e70f7eb" - }, - "pb-IF4lU2caEg==": { - "display_string": [ - "\ue063KiskiBaji" - ], - "profiles": [], - "name": "\ue063KiskiBaji", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-24 19:56:44", - "registerOn": 1670154092.6420085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154092.642009, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154092.6420195, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154092.6420205, - "lastIP": "axi~{`~vh~}kh", - "deviceUUID": "606f44af70f4bf1cabb722fc7d783d8f3a810887" - }, - "pb-IF4nUm84Kg==": { - "display_string": [ - "\ue030PC359091", - "\ue030Android48388543", - "\ue030Linux47759" - ], - "profiles": [], - "name": "\ue030Android48388543", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-24 17:46:42", - "registerOn": 1670154121.7974608, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154121.7974615, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154121.797471, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154121.7974722, - "lastIP": "dvvc{va|a~}ke", - "deviceUUID": "\u0015" - }, - "pb-IF4cV3AGLQ==": { - "display_string": [ - "\ue020PlasticWillOWisp7884", - "\ue030Android29929213" - ], - "profiles": [], - "name": "\ue020PlasticWillOWisp7884", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-07 16:48:17", - "registerOn": 1670154154.8782644, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154154.878265, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154154.8782737, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154154.878275, - "lastIP": "a\u007fn~~afai`ajc~", - "deviceUUID": "4d4035f1abf08f28bfba4a1424365e80892cc400" - }, - "pb-IF5dVWgRBg==": { - "display_string": [ - "\ue030Android47745010" - ], - "profiles": [], - "name": "\ue030Android47745010", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-17 15:16:22", - "registerOn": 1670154159.865419, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154159.8654191, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226291.5876706, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670240712.201623, - "lastIP": "dvvc}vaxi~~`b", - "deviceUUID": "0d43b8953ca13eaf5199996cd75eecab4a33f535", - "cMsgCount": 0, - "lastMsgTime": 1670240542.6593437, - "lastMsg": "ok", - "cSameMsg": 0 - }, - "pb-IF5RU3AjNA==": { - "display_string": [ - "\ue020FranticFever44" - ], - "profiles": [], - "name": "\ue020FranticFever44", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-16 11:24:36", - "registerOn": 1670154190.9684489, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154190.9684496, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250715.2657275, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670250922.9935684, - "lastIP": "azo~{n~~haaaa", - "deviceUUID": "1a9c004b4686e7ad14e6a3ca809ec5ffb520c744" - }, - "pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL": { - "display_string": [ - "\ue020sahilkhatri343593", - "\ue030Android15977310" - ], - "profiles": [], - "name": "\ue020sahilkhatri343593", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-09 23:24:32", - "registerOn": 1670154268.5327513, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670156616.624894, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261589.1025465, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261589.1025476, - "lastIP": "azo~{m~}meaig{", - "deviceUUID": "f03172fe2a449fcc17773aad18f0af7cfff7aeb8", - "cMsgCount": 1, - "lastMsgTime": 1670262400.7399585, - "lastMsg": "nat maan \ud83d\udc80 ", - "cSameMsg": 0 - }, - "pb-IF4UU00MKQ==": { - "display_string": [ - "\ue063Underwate6" - ], - "profiles": [], - "name": "\ue063Underwate6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 06:34:24", - "registerOn": 1670154385.9283226, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154385.928323, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154385.9283323, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670154431.4844832, - "lastIP": "a~j~}hgai`{vb~", - "deviceUUID": "11d202b7087bc5e0f1b0fd3251f45f2a6087639a", - "cMsgCount": 0, - "lastMsgTime": 1670154817.8543675, - "lastMsg": "hahaha died cxd", - "cSameMsg": 0 - }, - "pb-IF4iU0kkFw==": { - "display_string": [ - "\ue030Android63759055" - ], - "profiles": [], - "name": "\ue030Android63759055", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-28 21:20:32", - "registerOn": 1670154458.8962836, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154458.896284, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154458.8962908, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154458.8962917, - "lastIP": "a\u007fn~}hhaievvb\u007fh", - "deviceUUID": "aa9df018acc2720dbbab3e71f4308cc3e749460b" - }, - "pb-IF4XUk87Lg==": { - "display_string": [ - "\ue063zakitcgame" - ], - "profiles": [], - "name": "\ue063zakitcgame", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-11 17:18:40", - "registerOn": 1670154476.9446325, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154476.9446332, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154476.9446418, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154476.944643, - "lastIP": "dvvcxvayi~}li", - "deviceUUID": "f60e1a759feaade6d32a3bd98c15ba1540c1443f" - }, - "pb-IF4FU3ApCw==": { - "display_string": [ - "\ue020Dharun1403" - ], - "profiles": [], - "name": "\ue020Dharun1403", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-27 18:30:58", - "registerOn": 1670154560.3510652, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154560.3510659, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154560.3510735, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154560.3510742, - "lastIP": "azo~zi~~hcaigz", - "deviceUUID": "fd5729efd2498f63fb5e6d81129a429389e021bf" - }, - "pb-IF4VVWsGIA==": { - "display_string": [ - "\ue020PseudoAttendance18" - ], - "profiles": [], - "name": "\ue020PseudoAttendance18", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-27 10:46:09", - "registerOn": 1670154570.3457055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154570.345706, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240526.53197, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670240941.1211886, - "lastIP": "azo~zi~~kcajdv", - "deviceUUID": "bf98ea45cae48baaed18a03b5d3996ee1c8b0f92", - "cMsgCount": 2, - "lastMsgTime": 1670156543.2084796, - "lastMsg": "/fm", - "cSameMsg": 0 - }, - "pb-JiNJARFcV0RFWV1AF0VRVVxKFURWQFBD": { - "display_string": [ - "\ue063InfiniteVa" - ], - "profiles": [], - "name": "\ue063InfiniteVa", - "isBan": false, - "isMuted": false, - "accountAge": "2016-07-08 20:31:35", - "registerOn": 1670154667.6615448, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154667.6615453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230012.2025716, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670230024.2440221, - "lastIP": "dvvcxvb\u007fj~~mb", - "deviceUUID": "7e9cfb1ec189b9af073018c0e121a54c93b4d84a", - "cMsgCount": 0, - "lastMsgTime": 1670154803.948753, - "lastMsg": "too much crowded ", - "cSameMsg": 0 - }, - "pb-IF4NU0sbEA==": { - "display_string": [ - "\ue020LordTamboKing" - ], - "profiles": [], - "name": "\ue020LordTamboKing", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-13 18:56:12", - "registerOn": 1670154746.9129632, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154746.9129634, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301739.9053996, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670301921.5981803, - "lastIP": "azo~|l~~lfaie", - "deviceUUID": "ee45cecc4347962ab5eecb73f55adf8f735fa801" - }, - "pb-IF5XVEUZDQ==": { - "display_string": [ - "\ue063ConfusedJa", - "\ue030Android56475190" - ], - "profiles": [], - "name": "\ue063ConfusedJa", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-11 11:55:01", - "registerOn": 1670154786.0738292, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154786.07383, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154786.073839, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154786.0738397, - "lastIP": "a\u007fk~~idakiaii", - "deviceUUID": "cf0a45a18717647d9d1bb5d4bc2f40f5c632ee8a" - }, - "pb-IF4gU00eLQ==": { - "display_string": [ - "\ue030Android63922654" - ], - "profiles": [], - "name": "\ue030Android63922654", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 19:00:42", - "registerOn": 1670154810.1850333, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154810.1850338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154810.1850398, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154810.1850407, - "lastIP": "a\u007fk~~j`aj`\u007fvc}", - "deviceUUID": "2ca3765be0c668ce4b5ae1536349729c4a009d28" - }, - "pb-IF4lU0c9Hw==": { - "display_string": [ - "\ue030Android63669053" - ], - "profiles": [], - "name": "\ue030Android63669053", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 10:59:37", - "registerOn": 1670154903.5047412, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154903.5047417, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670227080.729302, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670234926.1903026, - "lastIP": "a\u007fn~}iaakeaifw", - "deviceUUID": "30e91cbd42dabf2a3be836ca08a1d6341db5b10d", - "cMsgCount": 1, - "lastMsgTime": 1670230076.260157, - "lastMsg": "ok", - "cSameMsg": 0 - }, - "pb-IF4zUkM_MQ==": { - "display_string": [ - "\ue030Android63984108" - ], - "profiles": [], - "name": "\ue030Android63984108", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 17:03:02", - "registerOn": 1670154917.8602087, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154917.8602092, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154917.8602173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154917.8602183, - "lastIP": "fyvawi~~`aaih{", - "deviceUUID": "fb4cbf3ed54bcb03b1a8a4dc97b8c8b07f81bb17" - }, - "pb-IF4AU0slNQ==": { - "display_string": [ - "\ue020ExposedEditorial36" - ], - "profiles": [], - "name": "\ue020ExposedEditorial36", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 23:05:52", - "registerOn": 1670155006.9034653, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155006.9034655, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670233998.4267328, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670233998.4267337, - "lastIP": "b\u007fj~wn~}jaaad", - "deviceUUID": "3a858043f93d2d3d346070f046d32ae8f09f83dc" - }, - "pb-IF4sVFkqEw==": { - "display_string": [ - "\ue020THANATOS6660" - ], - "profiles": [], - "name": "\ue020THANATOS6660", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-23 20:31:48", - "registerOn": 1670155043.0317564, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155043.0317566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155043.0317628, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155043.031764, - "lastIP": "azo~{n~~`daid\u007f", - "deviceUUID": "81e6bd1280798e984d4653bf596424fbd89f18ba" - }, - "pb-IF4AV3RfLA==": { - "display_string": [ - "\ue020Rahul1000010206", - "\ue030Android30382608" - ], - "profiles": [], - "name": "\ue020Rahul1000010206", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-22 19:00:56", - "registerOn": 1670155086.163616, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155086.1636162, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220102.4517877, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220102.4517894, - "lastIP": "d}va\u007fn~vvg|", - "deviceUUID": "a3dd0677c34dccab00e64b217b08593bd7741092" - }, - "pb-IF4rU08GJw==": { - "display_string": [ - "\ue063LunarJogge" - ], - "profiles": [], - "name": "\ue063LunarJogge", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 16:14:10", - "registerOn": 1670155098.2845676, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155098.284568, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155098.2845762, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155098.2845771, - "lastIP": "azo~{l~~nbajd|", - "deviceUUID": "c7bc39d68e87db8e08579e63abd483695894e87d" - }, - "pb-IF49VW0hJA==": { - "display_string": [ - "\ue030Android48713858" - ], - "profiles": [], - "name": "\ue030Android48713858", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-06 15:20:40", - "registerOn": 1670155217.664931, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155217.6649315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169988.9518273, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169988.9518285, - "lastIP": "a\u007fn~}iaajdwvdw", - "deviceUUID": "057c3747d18371a72042fae071c8ac22f2d7ec77" - }, - "pb-IF4pU2sgJw==": { - "display_string": [ - "\ue020superchan92413", - "\ue030Android61664971" - ], - "profiles": [], - "name": "\ue020superchan92413", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-06 16:58:42", - "registerOn": 1670155380.337275, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155380.337276, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155380.3372843, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155380.3372853, - "lastIP": "a~j~~kdaj`\u007fvb{l", - "deviceUUID": "a9bc1b36fdfe2fda971bbe51a3383a7518ee4581" - }, - "pb-IF4oU3USLw==": { - "display_string": [ - "\ue020abiee1704" - ], - "profiles": [], - "name": "\ue020abiee1704", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-18 13:03:48", - "registerOn": 1670155424.4973814, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155424.497382, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155424.49739, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155424.497391, - "lastIP": "b~h~~vivva~`", - "deviceUUID": "4852a0329a65195d8ed91b6c0276c14c1cab92c9" - }, - "pb-IF4oU3oJEQ==": { - "display_string": [ - "\ue030Android63193363" - ], - "profiles": [], - "name": "\ue030Android63193363", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-08 12:35:31", - "registerOn": 1670155431.456398, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155431.4563985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155431.456405, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155431.456406, - "lastIP": "a}j~~nda`ea`", - "deviceUUID": "52e883ca4163bd784c466d1d8e309d3bc0f4ff1a" - }, - "pb-IF4nVUwZKg==": { - "display_string": [ - "\ue063SHDW1357" - ], - "profiles": [], - "name": "\ue063SHDW1357", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-24 18:12:02", - "registerOn": 1670155590.025852, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155590.0258524, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155590.0258603, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155590.025861, - "lastIP": "a~o~}hiajcxva\u007fn", - "deviceUUID": "5f7707ac18cc6bf90a4f74f0c186607e0a5c1a8f" - }, - "pb-IF4BU00xJA==": { - "display_string": [ - "\ue020SkinnyPencil69437" - ], - "profiles": [], - "name": "\ue020SkinnyPencil69437", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 21:34:06", - "registerOn": 1670155599.0226436, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155599.022644, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155599.0226533, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670155688.0137756, - "lastIP": "d}va~i~~hcaih", - "deviceUUID": "421ad51755dbf596a5afed7d8271998b7e65dc7a" - }, - "pb-IF4dU0kPLQ==": { - "display_string": [ - "\ue030Android63764097" - ], - "profiles": [], - "name": "\ue030Android63764097", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 15:28:23", - "registerOn": 1670155633.1936507, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155633.1936512, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232692.8373356, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232692.8373373, - "lastIP": "a\u007fk~}`~~icaj", - "deviceUUID": "097d38a155cd36f9651bef96204f08390ebe615a" - }, - "pb-IF41U08_Ug==": { - "display_string": [ - "\ue063gandfaad14" - ], - "profiles": [], - "name": "\ue063gandfaad14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 16:09:18", - "registerOn": 1670155714.55478, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155714.5547805, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155714.5547888, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155714.5547898, - "lastIP": "a\u007fn~}i`aifvvd\u007f", - "deviceUUID": "708461b0dbfa7a287e55479b218190516c61359e" - }, - "pb-IF48U3MGAw==": { - "display_string": [ - "\ue030Android62546435" - ], - "profiles": [], - "name": "\ue030Android62546435", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 23:05:49", - "registerOn": 1670155745.5220652, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155745.5220656, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155745.5220733, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155745.5220742, - "lastIP": "axm~~kiaj`xvawm", - "deviceUUID": "df3b7c478bdbc8a9e06c0f726d62ac4b3a1d6459", - "cMsgCount": 0, - "lastMsgTime": 1670155763.171182, - "lastMsg": "/end", - "cSameMsg": 0 - }, - "pb-IF4lU2kSJw==": { - "display_string": [ - "\ue020RareChimera45170", - "\ue030Android61670136" - ], - "profiles": [], - "name": "\ue030Android61670136", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-02 19:27:15", - "registerOn": 1670155805.7864053, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155805.7864058, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155805.786414, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155805.7864149, - "lastIP": "dvvc}vayn~wi", - "deviceUUID": "836c6c4670c3449e59c41970e1897b5d4d40b101" - }, - "pb-IF4qU25ZNQ==": { - "display_string": [ - "\ue030Android62042729" - ], - "profiles": [], - "name": "\ue030Android62042729", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-17 06:19:41", - "registerOn": 1670155836.8855462, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155836.8855467, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155836.8855538, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155836.8855548, - "lastIP": "awj~}kbai`xvb{o", - "deviceUUID": "\u0015S^" - }, - "pb-IF4UU1AuUQ==": { - "display_string": [ - "\ue063GrubbyMani" - ], - "profiles": [], - "name": "\ue063GrubbyMani", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 11:00:59", - "registerOn": 1670155944.6819415, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155944.681942, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155944.6819518, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155944.6819527, - "lastIP": "axm~~khaniaif~", - "deviceUUID": "4f706677eeb6d18054f0de0864218a90f385f5c7" - }, - "pb-IF4TU0o6Aw==": { - "display_string": [ - "\ue063unstoppabl", - "\ue030Android63873290" - ], - "profiles": [], - "name": "\ue063unstoppabl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-31 14:48:23", - "registerOn": 1670155975.315315, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155975.3153155, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242818.7594988, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242818.7595, - "lastIP": "awh~~aaaja{va}a", - "deviceUUID": "94a0f1a9968bf1136accab2c4ea3872f82b608a7" - }, - "pb-IF40UncaLg==": { - "display_string": [ - "\ue063TiredShift" - ], - "profiles": [], - "name": "\ue063TiredShift", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-03 12:48:25", - "registerOn": 1670156023.854145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156023.8541455, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222448.129962, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670222458.156818, - "lastIP": "dvvc}vbzi~zh", - "deviceUUID": "1bebabd26f546f797cb44971532451f5181a64a4", - "cMsgCount": 0, - "lastMsgTime": 1670170109.5159588, - "lastMsg": "gg", - "cSameMsg": 0 - }, - "pb-IF4SEHAl": { - "display_string": [ - "\ue020bisht4189", - "\ue030PC322127", - "\ue030Android45764862" - ], - "profiles": [], - "name": "\ue020bisht4189", - "isBan": false, - "isMuted": false, - "accountAge": "2018-06-09 21:21:57", - "registerOn": 1670156033.5834677, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156033.5834682, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260731.9478443, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260731.9478457, - "lastIP": "a\u007fk~{`~~aiajc}", - "deviceUUID": "8ece070744c3e4e7b9b808ab81b0ffecf18693ab", - "cMsgCount": 0, - "lastMsgTime": 1670262045.8254428, - "lastMsg": "lag", - "cSameMsg": 0 - }, - "pb-IF4iVFBbDA==": { - "display_string": [ - "\ue063djankit857" - ], - "profiles": [], - "name": "\ue063djankit857", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-19 08:40:00", - "registerOn": 1670156095.9860313, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156095.9860315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246089.8326223, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670257756.243413, - "lastIP": "a\u007fn~}ifaia}vavo", - "deviceUUID": "9ae5fe15fbead527883571aba5ca3f1e5ca6177c", - "cMsgCount": 0, - "lastMsgTime": 1670258431.1791816, - "lastMsg": "ahh", - "cSameMsg": 0 - }, - "pb-IF4tU00oEA==": { - "display_string": [ - "\ue063Unparalle3" - ], - "profiles": [], - "name": "\ue063Unparalle3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 16:10:55", - "registerOn": 1670156138.9764473, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156138.9764478, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156138.9764707, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670156260.0455256, - "lastIP": "b}k~}jeaig~vd}", - "deviceUUID": "5c2c20c749cd54939711e428c481d15e73acc9ee" - }, - "pb-IF4UU1BeVg==": { - "display_string": [ - "\ue030Android63976531" - ], - "profiles": [], - "name": "\ue030Android63976531", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 15:30:34", - "registerOn": 1670156150.9990356, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156150.999036, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156150.9990444, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156150.9990454, - "lastIP": "azo~{a~~lbaia\u007f", - "deviceUUID": "\u0015P\bXS\u0011" - }, - "pb-IF4rU1BdLw==": { - "display_string": [ - "\ue063SheikRieng" - ], - "profiles": [], - "name": "\ue063SheikRieng", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:24:11", - "registerOn": 1670156267.369528, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156267.3695285, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314836.9273021, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314836.927303, - "lastIP": "azo~zi~~acaib~", - "deviceUUID": "9619ea22745015da3103b77820c9c0bdef6a70f0" - }, - "pb-IF4sU0tbUA==": { - "display_string": [ - "\ue030Android63824610" - ], - "profiles": [], - "name": "\ue030Android63824610", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-07 20:34:15", - "registerOn": 1670156348.6588078, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156348.6588082, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156348.658817, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156348.658818, - "lastIP": "a{h~}icalaaii|", - "deviceUUID": "a5dab92b35a1f6ce73b27982249c0e95eab50cbd" - }, - "pb-IF4IU08oXA==": { - "display_string": [ - "\ue030Android63976379" - ], - "profiles": [], - "name": "\ue030Android63976379", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 15:04:06", - "registerOn": 1670156411.8843334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156411.8843338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156411.8843422, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156411.8843434, - "lastIP": "a\u007fk~}hcaiczva{o", - "deviceUUID": "4903d084baf9abddc56cfe3c137c5e5f4cab07a3" - }, - "pb-IF4rUkFSLw==": { - "display_string": [ - "\ue020ConformableLink14", - "\ue030Android57282101" - ], - "profiles": [], - "name": "\ue020ConformableLink14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-16 16:52:54", - "registerOn": 1670156441.9974556, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156441.997456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156441.9974651, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670156484.8371696, - "lastIP": "azo~|j~~l~~ac", - "deviceUUID": "afea3e271da2990e2794d9384c1d71202ddcd75b" - }, - "pb-IF5QU3gCEQ==": { - "display_string": [ - "\ue063Arcanegame" - ], - "profiles": [], - "name": "\ue020lightingstormer", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-19 18:17:04", - "registerOn": 1670156507.2636464, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156507.263647, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169174.925367, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169174.9253683, - "lastIP": "azo~zi~~k~wh", - "deviceUUID": "9c9ca455a82357d94ff9b041816837d19fe98a92" - }, - "pb-IF4rU0o9KQ==": { - "display_string": [ - "\ue030Android63770342" - ], - "profiles": [], - "name": "\ue030Android63770342", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-30 10:28:52", - "registerOn": 1670156544.3403409, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156544.3403413, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235028.5527158, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670235028.552717, - "lastIP": "a~j~}h`aifyva\u007fa", - "deviceUUID": "264499e93a0572229a207bf3cf326bdce60fe69f" - }, - "pb-IF4TUlZZIg==": { - "display_string": [ - "\ue030Android59520942" - ], - "profiles": [], - "name": "\ue030Android59520942", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-07 08:34:13", - "registerOn": 1670156560.410046, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156560.4100468, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156560.410055, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156560.4100559, - "lastIP": "a~j~~ahajc}vhz", - "deviceUUID": "\u0015Y\u000bSUDY\fXP\u0017Y\bYTB\u0005XPXAV_SUA" - }, - "pb-IF41U2cJEA==": { - "display_string": [ - "\ue063Vanquishi8" - ], - "profiles": [], - "name": "\ue063Vanquishi8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-24 17:06:27", - "registerOn": 1670156608.679988, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156608.6799881, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156608.6799943, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156608.679995, - "lastIP": "a\u007fn~}hcaidyva|l", - "deviceUUID": "f25878bcd4d5d0c8431d14cf300314495ccb4189" - }, - "pb-IF5dVERdFA==": { - "display_string": [ - "\ue030Android41433412" - ], - "profiles": [], - "name": "\ue030Android41433412", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-02 18:48:19", - "registerOn": 1670156614.946084, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156614.9460843, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168570.8582368, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168570.8582382, - "lastIP": "dvvc{vaz`~~hh", - "deviceUUID": "fe2e14c89841f3d3cdfaa7bfd694859405277ca5" - }, - "pb-IF4XU0whCw==": { - "display_string": [ - "\ue030Android63825840" - ], - "profiles": [], - "name": "\ue030Android63825840", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 00:45:28", - "registerOn": 1670156627.7043135, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156627.704314, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156627.7043226, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156627.7043235, - "lastIP": "dxvc~va{m~}jg", - "deviceUUID": "997c03dbb6f929175bfc8cdff8b3950e693b29ef" - }, - "pb-IF4jU04xLQ==": { - "display_string": [ - "\ue020SahilRisingStar0920" - ], - "profiles": [], - "name": "\ue020SahilRisingStar0920", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 01:09:21", - "registerOn": 1670156658.9991548, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156658.9991553, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670156871.692482, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156658.9991639, - "lastIP": "azo~zh~}h~~nd", - "deviceUUID": "f03172fe2a449fcc17773aad18f0af7cfff7aeb8", - "cMsgCount": 0, - "lastMsgTime": 1670157368.0871663, - "lastMsg": " ", - "cSameMsg": 0 - }, - "pb-IF4UUmZcEA==": { - "display_string": [ - "\ue020Dharsanaswin" - ], - "profiles": [], - "name": "\ue020Dharsanaswin", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-11 08:35:28", - "registerOn": 1670156685.8769872, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156685.8769877, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156685.8769958, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670160735.99393, - "lastIP": "azo~{a~~ngaaa", - "deviceUUID": "e88c7c1725a44ce7206089fd2a45d4aecb29c3de" - }, - "pb-IF5WV00NMQ==": { - "display_string": [ - "\ue020itsakasrija" - ], - "profiles": [], - "name": "\ue020itsakasrija", - "isBan": false, - "isMuted": false, - "accountAge": "2019-03-19 19:02:53", - "registerOn": 1670156818.322882, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156818.3228827, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156818.3228912, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156818.3228924, - "lastIP": "azo~|a~}n~~mc", - "deviceUUID": "e63c1a29bbc41767e40f45748864e5d421783ac7" - }, - "pb-IF5SU00_Ag==": { - "display_string": [ - "\ue020AmazingTriangle14295" - ], - "profiles": [], - "name": "\ue020AmazingTriangle14295", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 22:10:57", - "registerOn": 1670156821.4004574, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156821.400458, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156821.4004662, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670159147.2531607, - "lastIP": "azo~|j~}jdamc", - "deviceUUID": "a92e2cebf013aa06240ed50b96989dbd3044ff3e" - }, - "pb-IF4GU0gbVQ==": { - "display_string": [ - "\ue020DependableChip25" - ], - "profiles": [], - "name": "\ue020DependableChip25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 12:19:05", - "registerOn": 1670156908.6517982, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156908.6517987, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156908.6518068, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156908.6518075, - "lastIP": "a\u007fk~~mfaja|va|m", - "deviceUUID": "c912da30b9db33fb38a678ee31d79e93cc9ef4bf" - }, - "pb-IF4RU2g-VQ==": { - "display_string": [ - "\ue063ErsatzGuac" - ], - "profiles": [], - "name": "\ue063ErsatzGuac", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-26 18:38:58", - "registerOn": 1670157133.8047647, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157133.804765, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670157133.8047726, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670157133.8047733, - "lastIP": "dvvcxvb|j~w`", - "deviceUUID": "c6ccbf20c748886d43c1a77720dfce3e297ff27f" - }, - "pb-IF4KV04FIg==": { - "display_string": [ - "\ue063ItzMeRoman" - ], - "profiles": [], - "name": "\ue063ItzMeRoman", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-04 19:04:04", - "registerOn": 1670157219.8004673, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670161001.1861608, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308869.005384, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308869.0053854, - "lastIP": "dvvcxvfyvez", - "deviceUUID": "c9f79337d0693a50e81662cee5c8b8f1dcf508be", - "cMsgCount": 1, - "lastMsgTime": 1670309545.4028306, - "lastMsg": "tata everyone ", - "cSameMsg": 0 - }, - "pb-IF4OU0MpNA==": { - "display_string": [ - "\ue063Nostalgic4" - ], - "profiles": [], - "name": "\ue063Nostalgic4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-20 16:48:26", - "registerOn": 1670157412.4206848, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157412.4206853, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670157412.420694, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670157412.420695, - "lastIP": "aw`~~jiaie~vgz", - "deviceUUID": "e2c5ef269ad01779706103d044c7585ffb000ba7" - }, - "pb-IF5WU1EqAw==": { - "display_string": [ - "\ue030Android63963639" - ], - "profiles": [], - "name": "\ue030Android63963639", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 17:29:52", - "registerOn": 1670157483.7763898, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157483.7763903, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210333.055326, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210333.0553274, - "lastIP": "dvva{l~}jhajc}", - "deviceUUID": "ee687ca5612b9f5463a9df13607420d98eddb3de" - }, - "pb-IF4qKFAu": { - "display_string": [ - "\ue063GreenKiwi4" - ], - "profiles": [], - "name": "\ue063GreenKiwi4", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-05 10:39:28", - "registerOn": 1670157486.7374034, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157486.7374036, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670304412.0338194, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670304412.0338206, - "lastIP": "azo~|j~|h~wh", - "deviceUUID": "95694b7b91756bdcb228a522ae7c0e7b57d1f025" - }, - "pb-IF4UUlQyEA==": { - "display_string": [ - "\ue063EpicQuail4", - "\ue030Android58443597" - ], - "profiles": [], - "name": "\ue063EpicQuail4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-30 22:35:41", - "registerOn": 1670157640.2495594, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157640.2495599, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254058.9861078, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254058.9861093, - "lastIP": "azo~|o~~khaoi", - "deviceUUID": "8708d0911fb55b2401c512826006a1dd0646ce00" - }, - "pb-IF4MU2sFJA==": { - "display_string": [ - "\ue020MDHAMDAN99" - ], - "profiles": [], - "name": "\ue020MDHAMDAN99", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 06:07:38", - "registerOn": 1670157676.450389, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157676.4503894, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169450.9087777, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670173940.2467167, - "lastIP": "azo~{n~w`~~ld", - "deviceUUID": "d472f8b4092afab5cc1bd4d51eecb6e2febe3e75" - }, - "pb-IF4dU04OPA==": { - "display_string": [ - "\ue063ISHANTH05" - ], - "profiles": [], - "name": "\ue063ISHANTH05", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 10:08:54", - "registerOn": 1670157876.1229389, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157876.122939, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670157876.1229472, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670157876.1229486, - "lastIP": "azo~{m~}meaicx", - "deviceUUID": "3b313c2552efa95697f7c00278ba9bb150841a5f" - }, - "pb-IF4eU0kxCg==": { - "display_string": [ - "\ue020masterkiller12398745" - ], - "profiles": [], - "name": "\ue020masterkiller12398745", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-26 22:23:38", - "registerOn": 1670157906.1819763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157906.1819768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670157906.1819868, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670157906.1819878, - "lastIP": "a|o~vo~vn~|k", - "deviceUUID": "6d0ed873d109ff0f040122376bf075a4e2f48eb6" - }, - "pb-IF4SUnMKEw==": { - "display_string": [ - "\ue063Mukund094" - ], - "profiles": [], - "name": "\ue063Mukund094", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-15 19:01:52", - "registerOn": 1670157917.202916, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157917.2029164, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168887.971206, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670169157.8623798, - "lastIP": "aakhaifxvb}a", - "deviceUUID": "81ca5c0f7a3bcd42bc49e9507bce630a6d73eca0" - }, - "pb-IF5dU1FZDA==": { - "display_string": [ - "\ue063NewestBlue", - "\ue030Android52862393" - ], - "profiles": [], - "name": "\ue063NewestBlue", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 19:16:18", - "registerOn": 1670157920.253806, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157920.2538066, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670157920.2538145, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670157920.2538157, - "lastIP": "a\u007fn~~abakfaig{", - "deviceUUID": "0a674aa22c9f045cae63f4bcdc0252fb2449c177" - }, - "pb-IF4CU2oaKw==": { - "display_string": [ - "\ue063Edwinss321" - ], - "profiles": [], - "name": "\ue063Edwinss321", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-05 21:30:27", - "registerOn": 1670158148.072629, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158148.0726295, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158148.0726385, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158148.0726395, - "lastIP": "a\u007fn~}ica`ham", - "deviceUUID": "0a91a672cfaf036c22db725f3a3e8e59035f010e" - }, - "pb-IF4DVW4HFA==": { - "display_string": [ - "\ue030Android48907943" - ], - "profiles": [], - "name": "\ue030Android48907943", - "isBan": true, - "isMuted": false, - "accountAge": "2020-12-15 22:45:08", - "registerOn": 1670158229.2643647, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158229.264365, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670158454.317948, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158229.264374, - "lastIP": "b}k~}khaid|vbx", - "deviceUUID": "\u0015YUYY\u0010", - "cMsgCount": 0, - "lastMsgTime": 1670158454.3179662, - "lastMsg": "maderchud kick to formalities h smjha \ud83e\udd72", - "cSameMsg": 0 - }, - "pb-IF4QU04nPA==": { - "display_string": [ - "\ue020DoggedAptitude38", - "\ue030Android58612835" - ], - "profiles": [], - "name": "\ue020DoggedAptitude38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 12:58:36", - "registerOn": 1670158238.2970982, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158238.2970986, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158238.2971108, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158238.2971117, - "lastIP": "azo~{n~}i`aihz", - "deviceUUID": "4eabdeb28894cf088b5d8ef27f447ab3ba2c061c" - }, - "pb-IF4VU3laVA==": { - "display_string": [ - "\ue030Android63074779" - ], - "profiles": [], - "name": "\ue030Android63074779", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-02 11:57:20", - "registerOn": 1670158299.61513, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158299.6151304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300622.9347055, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670306460.4901671, - "lastIP": "a\u007fk~~n`ajc|vb|m", - "deviceUUID": "2393a78d5604af32281b51a76fe4cbd2171ba7e6", - "cMsgCount": 0, - "lastMsgTime": 1670306015.0720294, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF41V0UyDg==": { - "display_string": [ - "\ue020Wikirex2001" - ], - "profiles": [], - "name": "\ue020Wikirex2001", - "isBan": false, - "isMuted": false, - "accountAge": "2019-02-17 15:45:44", - "registerOn": 1670158332.7237494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158332.7237499, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268256.5097663, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670268563.5691285, - "lastIP": "a|a~~ngajbxvawl", - "deviceUUID": "05026a979dca7e3cd404eee012a2336e923ed14b", - "cMsgCount": 0, - "lastMsgTime": 1670268369.1130173, - "lastMsg": "gn babe", - "cSameMsg": 0 - }, - "pb-IF4mVGEjJA==": { - "display_string": [ - "\ue020MIKEJV007" - ], - "profiles": [], - "name": "\ue020MIKEJV007", - "isBan": false, - "isMuted": false, - "accountAge": "2019-08-13 08:40:49", - "registerOn": 1670158350.750915, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158350.7509153, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158350.7509232, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158350.7509243, - "lastIP": "azo~zi~~n`aiay", - "deviceUUID": "16de327515364db52a432d36d289431e6f8825ee" - }, - "pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB": { - "display_string": [ - "\ue0209584555539", - "\ue030unknown" - ], - "profiles": [], - "name": "\ue0209584555539", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-03 00:30:21", - "registerOn": 1670158399.918968, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158399.9189684, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251746.847438, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251746.847439, - "lastIP": "azo~|l~~lfaih", - "deviceUUID": "8c2fb0b9d047637ef53cd32ad494cc354031f559" - }, - "pb-IF4BUnovCQ==": { - "display_string": [ - "\ue020Twistedvine0127", - "\ue030Android57444788", - "\ue030Android57444801" - ], - "profiles": [], - "name": "\ue020Twistedvine0127", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-14 14:15:06", - "registerOn": 1670158458.1324604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158458.1324608, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158458.1324685, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158458.1324692, - "lastIP": "azo~{n~~ifaiew", - "deviceUUID": "3c7d1051e17ce71e475d658180d5dd502f0ace09" - }, - "pb-IF43VEQYAw==": { - "display_string": [ - "\ue020DeadlyFly63846" - ], - "profiles": [], - "name": "\ue020DeadlyFly63846", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-20 20:37:22", - "registerOn": 1670158467.190878, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158467.1908784, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670159756.8879652, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158467.1908875, - "lastIP": "azo~{o~xj~~n", - "deviceUUID": "31eedb523daf27dc1178ac369b99349530fede79", - "cMsgCount": 2, - "lastMsgTime": 1670160918.1159883, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4HU0gSFw==": { - "display_string": [ - "\ue030Android63728390" - ], - "profiles": [], - "name": "\ue030Android63728390", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 23:04:02", - "registerOn": 1670158531.4043813, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158531.4043818, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241465.3174703, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241465.3174713, - "lastIP": "a~n~y`~va~z", - "deviceUUID": "4d328e9283e76ab72597cc75a5a4b72b313ec890" - }, - "pb-IF4TVUcGKQ==": { - "display_string": [ - "\ue020king1of1brave1gaming", - "\ue020HeartfeltChamber20" - ], - "profiles": [], - "name": "\ue020king1of1brave1gaming", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-30 11:02:51", - "registerOn": 1670158552.4431162, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158552.4431164, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158552.4431245, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158552.4431252, - "lastIP": "azo~{a~~n`ajh", - "deviceUUID": "83b496c81451591736504d9fd003651f3c431d66" - }, - "pb-IF4TU0oFAQ==": { - "display_string": [ - "\ue063FamousImpr" - ], - "profiles": [], - "name": "\ue020FamousImprovement43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 10:03:43", - "registerOn": 1670158617.7722538, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670217289.488894, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670254340.5818748, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670254043.928259, - "lastIP": "a|j~~mdamiaja|", - "deviceUUID": "ead26944d87701aa9f2b628098721da6d772321a", - "cMsgCount": 0, - "lastMsgTime": 1670254340.5818193, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4MVU4vLw==": { - "display_string": [ - "\ue020QuixoticEmpire16345" - ], - "profiles": [], - "name": "\ue020QuixoticEmpire16345", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-01 20:27:25", - "registerOn": 1670158646.8107684, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158646.8107688, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670159303.960782, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158646.8107784, - "lastIP": "dvvb\u007fo~zk~~li", - "deviceUUID": "b4160a8bd8994f6d125003003a21d86754474196", - "cMsgCount": 0, - "lastMsgTime": 1670159303.9608011, - "lastMsg": "asshole", - "cSameMsg": 0 - }, - "pb-IF4xU04PPw==": { - "display_string": [ - "\ue020TyrannicalSalmon36" - ], - "profiles": [], - "name": "\ue020TyrannicalSalmon36", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 16:49:49", - "registerOn": 1670158740.1758955, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158740.1758957, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158740.175904, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158740.175905, - "lastIP": "bxvf~vaw`~~na", - "deviceUUID": "b1856dffd0e4d0fe5e5128698c2ac16c0ef55de8" - }, - "pb-IF5QKnNb": { - "display_string": [ - "\ue063LoadedMart", - "\ue030Android39558415" - ], - "profiles": [], - "name": "\ue063LoadedMart", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-14 13:53:20", - "registerOn": 1670158762.2134898, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158762.2134902, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298992.088895, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298992.088896, - "lastIP": "a\u007fn~}icanfaic}", - "deviceUUID": "77eb0682ef0f6f2efb1c8c938c4593b7dac290cb", - "cMsgCount": 0, - "lastMsgTime": 1670159268.7488112, - "lastMsg": "/ping", - "cSameMsg": 0 - }, - "pb-IF4CU0pTCQ==": { - "display_string": [ - "\ue020vibhinnoflock" - ], - "profiles": [], - "name": "\ue020vibhinnoflock", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 13:55:12", - "registerOn": 1670158785.3006601, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158785.3006604, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158785.300669, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158785.30067, - "lastIP": "a~h~}jfaigyvb}h", - "deviceUUID": "5980ea0b22beeb8bde0de9c0c6beb4f6339aae8a" - }, - "pb-IF4DUnYIFw==": { - "display_string": [ - "\ue020DoubtfulCell25" - ], - "profiles": [], - "name": "\ue020DoubtfulCell25", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-28 09:03:28", - "registerOn": 1670158892.6819825, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158892.681983, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158892.6819916, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158892.6819928, - "lastIP": "a\u007fk~~mdakga`d", - "deviceUUID": "7413752b697042aadf43cd4fb65b6bd5a0139d35" - }, - "pb-IF4zU3gzBA==": { - "display_string": [ - "\ue020thunderstorms3054" - ], - "profiles": [], - "name": "\ue020thunderstorms3054", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-29 18:20:12", - "registerOn": 1670158901.7056797, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158901.7056801, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226806.6086006, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670242912.1311004, - "lastIP": "a~l~|i~~n`ama", - "deviceUUID": "b8aeb308a5987f2f3bf7a57960d670cda96888cb" - }, - "pb-ND0oS0YPXURAD1hFDU9SVFdfEUEKQExLAQVGRgAUEVldSRYUWFdWRg==": { - "display_string": [ - "\ue020SedAkkalaMwonu" - ], - "profiles": [], - "name": "\ue020SedAkkalaMwonu", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-04 19:17:16", - "registerOn": 1670158904.7604926, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158904.760493, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158904.7605016, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158904.7605028, - "lastIP": "dvvcxvb}l~~`a", - "deviceUUID": "\u0015PTVR\u0010\u0003UR\u0007\u0010Q\bTRFU\\SPCV]TPBT" - }, - "pb-IF4BVUw-Dg==": { - "display_string": [ - "\ue020ashikroyal" - ], - "profiles": [], - "name": "\ue020ashikroyal", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-25 17:09:30", - "registerOn": 1670159001.1008008, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159001.1008012, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310387.1653728, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670310387.165374, - "lastIP": "azo~{m~}laalc", - "deviceUUID": "11a4030b2ff5e4f07a770cd13814d9a14f8be9f0", - "cMsgCount": 0, - "lastMsgTime": 1670159585.5415635, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4eU0sbNA==": { - "display_string": [ - "\ue063Darkestkni", - "\ue030Android63863811", - "\ue030Android63863805", - "\ue030Android63863822", - "\ue030Android63863790" - ], - "profiles": [], - "name": "\ue063Darkestkni", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 10:53:00", - "registerOn": 1670159142.5520449, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159142.5520453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159142.552053, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159142.552054, - "lastIP": "awj~ya~}lbajc|", - "deviceUUID": "3a8765c73d98cba05c51b0774af94ab7cf8c0e98" - }, - "pb-IF5SU0kIPw==": { - "display_string": [ - "\ue020ShortsightedRepeat40" - ], - "profiles": [], - "name": "\ue020ShortsightedRepeat40", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-17 15:15:08", - "registerOn": 1670159218.8720262, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159218.8720267, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159218.8720348, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159218.8720357, - "lastIP": "a~o~vo~}l`aia\u007f", - "deviceUUID": "474356bd7aaed62192f0a2e276bfe4d78689c88b" - }, - "pb-IF4pVHAlKw==": { - "display_string": [ - "\ue063GoDFather6" - ], - "profiles": [], - "name": "\ue063UndtedSirw", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-18 13:41:07", - "registerOn": 1670159312.5738392, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159312.5738397, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252130.1316547, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670252654.8962054, - "lastIP": "a~o~}jaaibzva{j", - "deviceUUID": "809fa945109cc1506c101ff3c9fe3e126509515b", - "cMsgCount": 0, - "lastMsgTime": 1670165771.6086404, - "lastMsg": "papa ko sry bolo", - "cSameMsg": 0 - }, - "pb-IF43U08GJA==": { - "display_string": [ - "\ue063Inexorabl6" - ], - "profiles": [], - "name": "\ue063Inexorabl6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 18:37:06", - "registerOn": 1670159391.5937479, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159391.5937486, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159391.5937567, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159391.5937579, - "lastIP": "a~j~}haaihxvb{l", - "deviceUUID": "8150454cfadaf921ed0ad2d8fe8e206358028170" - }, - "pb-IF4mUhY5Bw==": { - "display_string": [ - "\ue020mooday800" - ], - "profiles": [], - "name": "\ue020mooday800", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-02 01:54:09", - "registerOn": 1670159673.475905, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159673.4759054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159673.4759133, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159673.4759147, - "lastIP": "cxveyva{vb\u007fm", - "deviceUUID": "90cf3cb3c344ffe2f2627dc707005f92ffb3a012" - }, - "pb-IF5XVHgmAg==": { - "display_string": [ - "\ue020Mraloneguy", - "\ue030Android58661312" - ], - "profiles": [], - "name": "\ue020Mraloneguy", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-27 18:38:56", - "registerOn": 1670159789.8858535, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159789.885854, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159789.8858626, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159789.8858638, - "lastIP": "a\u007fk~~liamiaig\u007f", - "deviceUUID": "d4bb84af38ac8c1002ca1bb1ea44190a19b03bd8" - }, - "pb-IF4OU2QjMQ==": { - "display_string": [ - "\ue063DEVTA9" - ], - "profiles": [], - "name": "\ue063DEVTA9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-12 18:34:35", - "registerOn": 1670159921.37427, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159921.3742704, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252087.99373, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670255812.7129335, - "lastIP": "a\u007fk~}hhaniaig|", - "deviceUUID": "0844c250555b3f23df4f4072f22489bcd86cf716", - "cMsgCount": 0, - "lastMsgTime": 1670161871.39972, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4TU0UaFg==": { - "display_string": [ - "\ue020CongestedPackaging20" - ], - "profiles": [], - "name": "\ue020CongestedPackaging20", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-06 12:53:48", - "registerOn": 1670159928.4023156, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159928.402316, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159928.4023263, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159928.402327, - "lastIP": "azo~{o~xm~~la", - "deviceUUID": "df88d8baf95edb9e33e1fb4feade66217f12c292" - }, - "pb-IF5SU0seMQ==": { - "display_string": [ - "\ue030Android63767506" - ], - "profiles": [], - "name": "\ue030Android63767506", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 23:07:34", - "registerOn": 1670159950.487569, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159950.4875693, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159950.4875777, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159950.4875786, - "lastIP": "a~h~}keajcwve}", - "deviceUUID": "efd4062b4fddd369664dab070a44997389b05bc8" - }, - "pb-IF40VG4yUA==": { - "display_string": [ - "\ue063sonugavale", - "\ue030Android34896235" - ], - "profiles": [], - "name": "\ue063sonugavale", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-06 19:59:52", - "registerOn": 1670160006.7266586, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160006.7266588, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670256927.2564778, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670257621.749437, - "lastIP": "a\u007fn~~aeaida`h", - "deviceUUID": "817d31d50be40ed23fce4bdaae445e8b4242543b", - "cMsgCount": 0, - "lastMsgTime": 1670257780.8468068, - "lastMsg": "Hhahaha", - "cSameMsg": 0 - }, - "pb-IF4NU0ojAA==": { - "display_string": [ - "\ue030Android63796554" - ], - "profiles": [], - "name": "\ue030Android63796554", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 18:07:17", - "registerOn": 1670160009.711596, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160009.7115965, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301680.7355592, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670308671.037487, - "lastIP": "azo~|k~|`~wh", - "deviceUUID": "3d647e7dac07fd7bb037d38317d7799c7a6d9b64" - }, - "pb-IF4cU0oEDg==": { - "display_string": [ - "\ue063lkiheasnal" - ], - "profiles": [], - "name": "\ue063lkiheasnal", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 20:36:31", - "registerOn": 1670160075.1954076, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160075.195408, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670160075.1954153, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670160075.1954162, - "lastIP": "b}k~~ohalfajc{", - "deviceUUID": "e4f6b81c290b68df0f93493153114d38c1303d6d" - }, - "pb-IF4eU2VTAg==": { - "display_string": [ - "\ue063GinormousD" - ], - "profiles": [], - "name": "\ue063GinormousD", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-14 09:32:14", - "registerOn": 1670160370.9674878, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160370.9674888, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670160370.9674969, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670160554.3395264, - "lastIP": "a}j~~nbaja{vbx", - "deviceUUID": "ca8d6637bba6507af992af44ca6ead60e54b475f" - }, - "pb-IF4jUxQxCQ==": { - "display_string": [ - "\ue063NavigableN" - ], - "profiles": [], - "name": "\ue063NavigableN", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-09 05:48:11", - "registerOn": 1670160658.1004236, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160658.100424, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670160658.100432, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670160983.8861802, - "lastIP": "axh~wj~zk~~lb", - "deviceUUID": "770e397383eb2bc7a5752d1a9fdf6d41415343a0" - }, - "pb-IF41U08kKQ==": { - "display_string": [ - "\ue030Android63981158" - ], - "profiles": [], - "name": "\ue030Android63981158", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 05:17:45", - "registerOn": 1670160675.099334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160675.0993345, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670160675.0993423, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670160675.099343, - "lastIP": "gyviwvb\u007fo~~oc", - "deviceUUID": "76bfa85e0fb27f0158a8e14566f6a35cc84b96b7" - }, - "pb-IF5XU0ZbBA==": { - "display_string": [ - "\ue063Following3" - ], - "profiles": [], - "name": "\ue063Following3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-23 12:03:38", - "registerOn": 1670160688.2706091, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160688.2706096, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246875.5107074, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246875.5107088, - "lastIP": "azo~|j~|k~~ke", - "deviceUUID": "05dc3e79b3ecfead7ef4ca371c1cc5e5b8741d13" - }, - "pb-IF4SF0Em": { - "display_string": [ - "\ue063MuddyJoker", - "\ue020EventualFlame29", - "\ue030Android54117335", - "\ue030Android57127938" - ], - "profiles": [], - "name": "\ue020MuddyJoker56571", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-17 12:09:49", - "registerOn": 1670160953.0983143, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670235183.440341, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670256314.915192, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670261128.1827197, - "lastIP": "d|vb}a~w`~~if", - "deviceUUID": "085c017f4b707662a2740e75d38d437eee8c2877", - "cMsgCount": 0, - "lastMsgTime": 1670262216.7338455, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4HU0QPAw==": { - "display_string": [ - "\ue063VauntedPlu" - ], - "profiles": [], - "name": "\ue063VauntedPlu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-27 09:06:08", - "registerOn": 1670160979.4752326, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160979.475233, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670160979.4752417, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670160979.4752426, - "lastIP": "b\u007fj~w`~}hhajav", - "deviceUUID": "279b3059b77b33de45467d66b1a7186a01f7c062" - }, - "pb-IF4mVRgFBw==": { - "display_string": [ - "\ue063SpunkyEmbl" - ], - "profiles": [], - "name": "\ue063SpunkyEmbl", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-31 16:00:19", - "registerOn": 1670161009.387051, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161009.3870513, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161009.38706, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161009.3870606, - "lastIP": "dvvcyvd|vb}o", - "deviceUUID": "aa07fb78482a1ddec5a019836a870f8ec65cff41" - }, - "pb-IF41VXk5PQ==": { - "display_string": [ - "\ue063AgentShubh" - ], - "profiles": [], - "name": "\ue063AgentShubh", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-02 12:19:15", - "registerOn": 1670161017.3185666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161017.3185675, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161017.3185754, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161017.3185763, - "lastIP": "a\u007fn~}hfaic~vb{i", - "deviceUUID": "85200a9c9534941367c0ce3d2265fca68ccc5648", - "cMsgCount": 0, - "lastMsgTime": 1670161224.5551558, - "lastMsg": "sry", - "cSameMsg": 0 - }, - "pb-IF4KVUMsBg==": { - "display_string": [ - "\ue020LearnedLabyrinth7741" - ], - "profiles": [], - "name": "\ue020LearnedLabyrinth7741", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-31 15:24:44", - "registerOn": 1670161058.4950535, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161058.495054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161058.495063, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670161391.3134813, - "lastIP": "bxvf|vb~a~}hi", - "deviceUUID": "eab2b0aa1b34fa3d33048acfcffeec93e19974b6" - }, - "pb-IF5TAHQO": { - "display_string": [ - "\ue063HootingDra", - "\ue030Android53223253" - ], - "profiles": [], - "name": "\ue063HootingDra", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-12 20:20:44", - "registerOn": 1670161104.6649241, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161104.6649246, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670162389.8091376, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161104.6649332, - "lastIP": "dvvcxvfzvh|", - "deviceUUID": "8a0301ea62429d602083265ba821a81e998faa99", - "cMsgCount": 0, - "lastMsgTime": 1670163033.5394967, - "lastMsg": "see ya", - "cSameMsg": 0 - }, - "pb-IF4KU0gxMg==": { - "display_string": [ - "\ue020TGPALYWGSUDGSJSHSJSS" - ], - "profiles": [], - "name": "\ue020TGPALYWGSUDGSJSHSJSS", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 18:42:05", - "registerOn": 1670161220.065693, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161220.0656934, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161220.0657003, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161220.0657015, - "lastIP": "dvva{va|l~~m`", - "deviceUUID": "cd4528587c165931a5c036016f2575ebf19683a4" - }, - "pb-IF48UxIMIA==": { - "display_string": [ - "\ue020UltravioletAnswer35" - ], - "profiles": [], - "name": "\ue020UltravioletAnswer35", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-03 14:28:12", - "registerOn": 1670161368.698151, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161368.6981516, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161368.6981606, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161368.6981614, - "lastIP": "azo~|l~}o~}`", - "deviceUUID": "5631851b9d3c44571f5e648c9ed48a8eac7b10d3" - }, - "pb-IF5VV29eLA==": { - "display_string": [ - "\ue063RaSurKh" - ], - "profiles": [], - "name": "\ue063RaSurKh", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-17 21:47:55", - "registerOn": 1670161399.6712382, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161399.6712387, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246588.5751715, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246588.575173, - "lastIP": "dvvcyvb{vazm", - "deviceUUID": "50c9ee145c124c575b0d6881e82b15e9ac1d9482" - }, - "pb-IF4LU20cEw==": { - "display_string": [ - "\ue030Android62093703" - ], - "profiles": [], - "name": "\ue030Android62093703", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-19 12:34:21", - "registerOn": 1670161466.9012787, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670161492.6805577, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670246213.034349, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245942.3065374, - "lastIP": "a~o~va~}liake", - "deviceUUID": "beafa74a9034955afeecc388dca93ebbadb504f5", - "cMsgCount": 1, - "lastMsgTime": 1670247936.1142607, - "lastMsg": "op. game play", - "cSameMsg": 0 - }, - "pb-IF4WUk9cJw==": { - "display_string": [ - "\ue020redpalyer1" - ], - "profiles": [], - "name": "\ue020redpalyer1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-11 20:58:03", - "registerOn": 1670161496.0013673, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161496.0013678, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161496.0013752, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161496.0013769, - "lastIP": "azj~zo~~mcamf", - "deviceUUID": "\u0015V\b\u0004XA\u0005^U\u0003BVZ" - }, - "pb-IF4eU0QdUQ==": { - "display_string": [ - "\ue020CivilianProject35" - ], - "profiles": [], - "name": "\ue020CivilianProject35", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-28 11:57:27", - "registerOn": 1670161514.1843376, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161514.184338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161514.1843452, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161514.1843464, - "lastIP": "azo~zi~zl~~mc", - "deviceUUID": "2ed4716ae5a94686f1f65bb959d69d31a67eacae" - }, - "pb-IF5UU1EHFA==": { - "display_string": [ - "\ue030PC773577" - ], - "profiles": [], - "name": "\ue030PC773577", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 19:04:43", - "registerOn": 1670161534.1129794, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161534.11298, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161534.1130328, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161534.1130335, - "lastIP": "awj~|vcxvf\u007f", - "deviceUUID": "10e12c9eebaeb3f1dc2bde1c768317b170009b51" - }, - "pb-IF4JU3MxCQ==": { - "display_string": [ - "\ue020AdvancedExpomnent45m" - ], - "profiles": [], - "name": "\ue020AdvancedExpomnent45m", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-09 17:49:57", - "registerOn": 1670161564.2208176, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161564.2208183, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258743.2264552, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670260781.112777, - "lastIP": "a~l~|i~~`iajg", - "deviceUUID": "568191a189627834d190dc2e887ec7a832cc6819", - "cMsgCount": 0, - "lastMsgTime": 1670260806.5083842, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4jVHIEHQ==": { - "display_string": [ - "\ue030Android39959906" - ], - "profiles": [], - "name": "\ue030Android39959906", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-05 15:05:41", - "registerOn": 1670161600.6883516, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161600.6883523, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161600.688361, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161600.688362, - "lastIP": "a\u007fn~}jbameajby", - "deviceUUID": "63041c5597f4831f70e774d344ec2d0f94b906f5" - }, - "pb-IF5RU0pSBg==": { - "display_string": [ - "\ue020SuggestiveGarage45" - ], - "profiles": [], - "name": "\ue020SuggestiveGarage45", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 12:19:23", - "registerOn": 1670161659.599708, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161659.599709, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222393.9349406, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670222393.934942, - "lastIP": "a{h~}icaicwvb~i", - "deviceUUID": "b99eac5262f4ba805ea9b082acd67a5fc75d6d3f" - }, - "pb-IF5WUxQlEw==": { - "display_string": [ - "\ue030Linux52467" - ], - "profiles": [], - "name": "\ue030Linux52467", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-03 19:31:23", - "registerOn": 1670161687.6822398, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670162557.3463728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670297483.760641, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670305992.7149978, - "lastIP": "a\u007fk~~meaja\u007fvb{l", - "deviceUUID": "\u0018\u0003T\u0007PMTX\u0003LD", - "cMsgCount": 0, - "lastMsgTime": 1670306651.4260283, - "lastMsg": "toh sunao", - "cSameMsg": 0 - }, - "pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL": { - "display_string": [ - "\ue020YeWest2024" - ], - "profiles": [], - "name": "\ue020YeWest2024", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-05 13:28:05", - "registerOn": 1670161742.4800205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161742.4800208, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670270819.4707227, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670270819.470724, - "lastIP": "dvvcyva\u007fm~}k`", - "deviceUUID": "df33f5dee622a540618464296901184a5ed62c0a", - "cMsgCount": 0, - "lastMsgTime": 1670249342.099807, - "lastMsg": "wtf", - "cSameMsg": 0 - }, - "pb-IF4oU3hbEQ==": { - "display_string": [ - "\ue020\u0d15\u0d4d\u0d2f\u0d3e\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d7b22" - ], - "profiles": [], - "name": "\ue020\u0d15\u0d4d\u0d2f\u0d3e\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d7b22", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 12:37:58", - "registerOn": 1670162010.2120798, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162010.2120805, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162010.212089, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162010.21209, - "lastIP": "a\u007fn~~adalgaiev", - "deviceUUID": "d58f3a82e9f7bbde506330fc3a294c634bdf6e10" - }, - "pb-IF4CUhM5AQ==": { - "display_string": [ - "\ue020MilesAboveYou" - ], - "profiles": [], - "name": "\ue020MilesAboveYou", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-18 12:37:42", - "registerOn": 1670162031.9690244, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162031.9690247, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670186492.8797495, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670186492.8797512, - "lastIP": "a~n~y`~~iaaidv", - "deviceUUID": "00002973d162e002d40584d7ca11f4f5601862f8" - }, - "pb-IF4OU049CA==": { - "display_string": [ - "\ue063EntireBegg" - ], - "profiles": [], - "name": "\ue063EntireBegg", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 00:25:44", - "registerOn": 1670162234.6436152, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162234.643616, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162234.643642, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162234.643643, - "lastIP": "b\u007fi~}ihaicxvb\u007f", - "deviceUUID": "d3d40f6ae0e48683f83e68cd52a5f04656b31522" - }, - "pb-IF4KU0UqLA==": { - "display_string": [ - "\ue020DarkLordAscended" - ], - "profiles": [], - "name": "\ue020DarkLordAscended", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 11:10:47", - "registerOn": 1670162272.8136446, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162272.8136451, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261564.902416, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261564.9024172, - "lastIP": "azo~{a~}igaii\u007f", - "deviceUUID": "5eb883c11c38f3e3dd0831e40170faba53b1da83" - }, - "pb-IF4oUnVaNg==": { - "display_string": [ - "\ue063LustrousC3", - "\ue030Android56854542" - ], - "profiles": [], - "name": "\ue020LustrousConjurer7", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-21 12:53:25", - "registerOn": 1670162276.8084059, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162276.808406, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232703.866147, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670234034.5546644, - "lastIP": "dvvcxvb}k~yl", - "deviceUUID": "39fce6b71f8d12b7107c4e4ecdabe83b0ed46270" - }, - "pb-IF5QU0MaXA==": { - "display_string": [ - "\ue020kukkututtu002" - ], - "profiles": [], - "name": "\ue020kukkututtu002", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-11 18:58:24", - "registerOn": 1670162323.9822552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162323.9822557, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162323.9822626, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162323.9822638, - "lastIP": "a~o~}i`aii~vb|n", - "deviceUUID": "10aa992e3b27eb596abaf4c53e0f887330ccfa4a" - }, - "pb-IF4dU08oXQ==": { - "display_string": [ - "\ue063MindfulAir", - "\ue030Android58076920" - ], - "profiles": [], - "name": "\ue063MindfulAir", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 07:20:51", - "registerOn": 1670162435.386602, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162435.3866024, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162435.3866107, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162435.3866117, - "lastIP": "d}va\u007fn~~a~vo", - "deviceUUID": "57fe53dc7cbe2dac162f3eabe21a37668a67eda2" - }, - "pb-JiNJVxBcUURIXVZJFkFZVFdGFEBeR1dF": { - "display_string": [ - "\ue020aniket2604" - ], - "profiles": [], - "name": "\ue020aniket2604", - "isBan": false, - "isMuted": false, - "accountAge": "2016-10-09 00:13:44", - "registerOn": 1670162495.5849707, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162495.5849712, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162495.5849807, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162495.584982, - "lastIP": "a\u007fn~}i`aja~vb~j", - "deviceUUID": "a7e8e53ca84f27fba191560a42a675878dd06f77" - }, - "pb-IF4FVUkZMw==": { - "display_string": [ - "\ue030Android52000342" - ], - "profiles": [], - "name": "\ue030Android52000342", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-13 20:09:59", - "registerOn": 1670162498.6064668, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162498.606467, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162498.6064773, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162498.6064787, - "lastIP": "azo~{n~xl~}la", - "deviceUUID": "\u0015\u0003\b\u0003W\u0010\u0003YP\u0003EV\\VSLS[UYDVYYW@" - }, - "pb-IF4DU0YhVw==": { - "display_string": [ - "\ue020ItsEpicShlok", - "\ue030Android63971632", - "\ue030Android63965243", - "\ue030Android63965319", - "\ue030Android63971463" - ], - "profiles": [], - "name": "\ue020ItsEpicShlok", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-07 17:43:52", - "registerOn": 1670162513.680428, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162513.6804285, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162513.680438, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162513.6804392, - "lastIP": "a\u007fk~}l`aj`vvd{", - "deviceUUID": "3c1788c217db926c45886bc3e7da9c1d43ca2665" - }, - "pb-JiNJARBcVEdFWlxCEE9TVl1GFUVXTlRH": { - "display_string": [ - "\ue063SilentBraw", - "\ue030Android10381153" - ], - "profiles": [], - "name": "\ue063SilentBraw", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-31 17:31:10", - "registerOn": 1670162516.5999362, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162516.5999367, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162516.5999434, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162516.5999444, - "lastIP": "a~o~}lhaihaj`y", - "deviceUUID": "c5f2f26760989728bb42544168fcb20fd91220a3" - }, - "pb-IF4QVGYjDg==": { - "display_string": [ - "\ue030Android42891191" - ], - "profiles": [], - "name": "\ue030Android42891191", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-29 09:35:48", - "registerOn": 1670162522.7241318, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162522.7241323, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230413.7166016, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670231650.0815198, - "lastIP": "dvvc{vf}vaz`", - "deviceUUID": "50971078b23d76157ae5c5c460a761d3e8389d84" - }, - "pb-IF4DUlMIDg==": { - "display_string": [ - "\ue020BellicosePatriot28" - ], - "profiles": [], - "name": "\ue020BellicosePatriot28", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-28 15:48:33", - "registerOn": 1670162611.9257605, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162611.925761, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162611.9257689, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162611.92577, - "lastIP": "azj~zo~}jianf", - "deviceUUID": "b98a1f98358f91e6d342a49c79a17760c36e8e45" - }, - "pb-IF5TVxg_HQ==": { - "display_string": [ - "\ue020CombativeGemini56036" - ], - "profiles": [], - "name": "\ue020CombativeGemini56036", - "isBan": false, - "isMuted": false, - "accountAge": "2018-08-15 19:24:47", - "registerOn": 1670162659.407589, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162659.4075894, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162659.4075997, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162659.4076004, - "lastIP": "azo~{h~}jaa`d", - "deviceUUID": "cdeaa7ab4f04a8232969b6a5bce3ed897366ff7c" - }, - "pb-IF4XU0EfDw==": { - "display_string": [ - "\ue063StealthyAn" - ], - "profiles": [], - "name": "\ue063StealthyAn", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-12 17:24:20", - "registerOn": 1670162759.4246562, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162759.4246566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162759.424665, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162759.4246662, - "lastIP": "hvvazk~~oban", - "deviceUUID": "1ff84f30182f86b4b2dded5db09d2d1a291d333d" - }, - "pb-IF4-U0kNVQ==": { - "display_string": [ - "\ue020jonathansanthosh" - ], - "profiles": [], - "name": "\ue020jonathansanthosh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-28 16:09:35", - "registerOn": 1670162760.4333851, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162760.4333854, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311195.7903526, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311195.790354, - "lastIP": "a~o~}iaalaajd\u007f", - "deviceUUID": "d330a623a6cde2e6c2b9727640139e0bb4c17a01" - }, - "pb-IF4sU3A7KA==": { - "display_string": [ - "\ue030Android62339210" - ], - "profiles": [], - "name": "\ue030Android62339210", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-30 11:54:16", - "registerOn": 1670162826.8334103, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162826.8334107, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162826.8334188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162826.8334198, - "lastIP": "a}j~~naa`faie", - "deviceUUID": "faf986632b7fba345df51d66b9e74b3a9293d0a3" - }, - "pb-IF4TV2w6Bw==": { - "display_string": [ - "\ue020Balajiblaze123" - ], - "profiles": [], - "name": "\ue020Balajiblaze123", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-17 11:20:14", - "registerOn": 1670162917.199675, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162917.1996756, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163493.1986566, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670163788.2039633, - "lastIP": "azo~zi~zm~vk", - "deviceUUID": "39fab6ef9f13cec5afeb264fba1c606a5cba46b2", - "cMsgCount": 0, - "lastMsgTime": 1670163778.2536945, - "lastMsg": "tk to thi", - "cSameMsg": 0 - }, - "pb-IF4eU0wpKg==": { - "display_string": [ - "\ue063Unrelenti4" - ], - "profiles": [], - "name": "\ue063Unrelenti4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 19:46:50", - "registerOn": 1670162918.076996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162918.0769968, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259020.3829253, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259020.3829267, - "lastIP": "a\u007fk~~hfaicvvb\u007fk", - "deviceUUID": "f2601f07a78a004295486a62cf02a27b636d3a2d", - "cMsgCount": 0, - "lastMsgTime": 1670163409.8678143, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4BUxIzJg==": { - "display_string": [ - "\ue063TERRIFIER4" - ], - "profiles": [], - "name": "\ue063TERRIFIER4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-04 13:49:55", - "registerOn": 1670162948.13413, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162948.1341305, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251269.1393015, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251269.1393032, - "lastIP": "azj~z`~}kbaiix", - "deviceUUID": "f77c2e00c17b4c8dfaf8cf8dbb4b20b345855208" - }, - "pb-IF4xU3k6KA==": { - "display_string": [ - "\ue030Android63130011" - ], - "profiles": [], - "name": "\ue030Android63130011", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-04 21:57:18", - "registerOn": 1670162978.2862043, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162978.2862048, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162978.2862139, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162978.2862148, - "lastIP": "azo~{o~vm~~kd", - "deviceUUID": "671967ce943e46a829445a2691ed2228b5105c6f" - }, - "pb-IF5VU007Ng==": { - "display_string": [ - "\ue063DeviousEli", - "\ue030Android63827572" - ], - "profiles": [], - "name": "\ue063DeviousEli", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 13:47:07", - "registerOn": 1670163012.3621736, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163012.362174, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229838.5574918, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229838.557493, - "lastIP": "dvvcyva\u007f`~}kf", - "deviceUUID": "38c01a50379f84b46b232bdb4c38f8fa90b56ba8" - }, - "pb-IF4PIFQ9": { - "display_string": [ - "\ue063mrpainless", - "\ue030Android29214702" - ], - "profiles": [], - "name": "\ue063mrpainless", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-26 17:52:31", - "registerOn": 1670163079.6879, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163079.6879008, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163499.2280543, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670163499.2280557, - "lastIP": "azo~zi~~ohaja{", - "deviceUUID": "3fd5af7540d3def8bb525f9c868c41841d7845a9" - }, - "pb-IF4DVVgZJA==": { - "display_string": [ - "\ue02025mjadhav", - "\ue030Android52470937" - ], - "profiles": [], - "name": "\ue030Android52470937", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-22 20:12:08", - "registerOn": 1670163114.8267362, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163114.826737, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224189.9747622, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670225081.2698405, - "lastIP": "a\u007fk~~mgaibvvb~j", - "deviceUUID": "bb1b909b8d84a1225aba192d08f329d35dd4f9b2", - "cMsgCount": 0, - "lastMsgTime": 1670225143.8147142, - "lastMsg": "Smooth let's go in Fun Games ", - "cSameMsg": 0 - }, - "pb-IF4rU2EZEw==": { - "display_string": [ - "\ue030Android60974634" - ], - "profiles": [], - "name": "\ue030Android60974634", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-04 19:46:02", - "registerOn": 1670163175.9817445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163175.981745, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163175.981751, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670163175.9817526, - "lastIP": "a\u007fn~xo~~laajh", - "deviceUUID": "\u0015U\u000e" - }, - "pb-IF4mU0wODA==": { - "display_string": [ - "\ue020MagnificentBull96303" - ], - "profiles": [], - "name": "\ue020MagnificentBull96303", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 21:47:48", - "registerOn": 1670163204.1104448, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163204.1104453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300176.310488, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300176.3104894, - "lastIP": "a{vivva\u007fn~yn", - "deviceUUID": "4eb576fb20bc80f5fc11807746539bbd3fa079b5" - }, - "pb-IF5XUmsEVg==": { - "display_string": [ - "\ue020SickeningManeuver24" - ], - "profiles": [], - "name": "\ue020SickeningManeuver24", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-29 10:17:37", - "registerOn": 1670163256.475719, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163256.4757192, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163256.4757283, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670163256.4757295, - "lastIP": "a\u007fi~}vavi~~ag", - "deviceUUID": "\u0015S\u000e" - }, - "pb-IF4BPFRY": { - "display_string": [ - "\ue063TezrecT", - "\ue063Mizuhara", - "\ue020dhairyabhavya", - "\ue030Android47882430" - ], - "profiles": [], - "name": "\ue020dhairyabhavya", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-25 12:47:11", - "registerOn": 1670163277.3764045, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163277.3764052, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670249755.8521361, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249755.8521378, - "lastIP": "dvva{vayo~}m", - "deviceUUID": "34c398d35b9440b192223be7d56df29a68af1dec", - "cMsgCount": 0, - "lastMsgTime": 1670185717.2906294, - "lastMsg": "yeah", - "cSameMsg": 0 - }, - "pb-IF5QU04ZJw==": { - "display_string": [ - "\ue063MetabolicA" - ], - "profiles": [], - "name": "\ue063MetabolicA", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 08:53:16", - "registerOn": 1670163326.5330584, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163326.533059, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247277.899138, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670256233.3271964, - "lastIP": "f\u007fvb{k~~h`ai`", - "deviceUUID": "402ba25fdb762b57bd8bea7d14fb5d71d9b94cb7" - }, - "pb-IF4UU0YbEQ==": { - "display_string": [ - "\ue063Moldyblade" - ], - "profiles": [], - "name": "\ue063Moldyblade", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 20:35:48", - "registerOn": 1670163410.8761308, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163410.876131, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227547.3232424, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670227650.706902, - "lastIP": "d|vbzh~~mhaj`|", - "deviceUUID": "7828ff056706ac82d3e1c3afa8fc109ea8b98603" - }, - "pb-IF5WU0gBHQ==": { - "display_string": [ - "\ue030Android63642729" - ], - "profiles": [], - "name": "\ue030Android63642729", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-11 18:52:12", - "registerOn": 1670163505.905853, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163505.9058537, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163505.905864, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670163505.9058652, - "lastIP": "i~vfyva|i~wk", - "deviceUUID": "2f46534a2028b8d719e515b8cedd475ebdd13b76" - }, - "pb-IF4dUmU5Fg==": { - "display_string": [ - "\ue063S2sharpsho" - ], - "profiles": [], - "name": "\ue063S2sharpsho", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-11 20:50:41", - "registerOn": 1670163538.6420956, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163538.642096, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163538.6421034, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670163658.7567844, - "lastIP": "dxvc~vaym~zk", - "deviceUUID": "73c3137f6f6b4410022e228730d5eeb1bddf954a", - "cMsgCount": 0, - "lastMsgTime": 1670163800.350488, - "lastMsg": "madar choot parton", - "cSameMsg": 0 - }, - "pb-IF4sU0sDDw==": { - "display_string": [ - "\ue063ThunderBlu" - ], - "profiles": [], - "name": "\ue063ThunderBlu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 20:06:37", - "registerOn": 1670163676.1078162, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163676.107817, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223998.2389348, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223998.2389364, - "lastIP": "a~j~}hfajd}vgv", - "deviceUUID": "10480e31fe8d4cbdc455787ea61ef8eb7d51a07c", - "cMsgCount": 0, - "lastMsgTime": 1670225178.1323888, - "lastMsg": "Vivek is strong ", - "cSameMsg": 0 - }, - "pb-IF4eU1BbMw==": { - "display_string": [ - "\ue063DiamondSqu" - ], - "profiles": [], - "name": "\ue063DiamondSqu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 19:07:32", - "registerOn": 1670163746.3978229, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163746.3978236, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163746.3978307, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670163746.3978314, - "lastIP": "a~o~}hiaic{vgv", - "deviceUUID": "be7b9e39530bfffb6c977ec00a50b69572a12043" - }, - "pb-LV4FVxEOBxcUVQxERkNWUFFA": { - "display_string": [ - "\ue020parthk1265", - "\ue030Android14858832" - ], - "profiles": [], - "name": "\ue020rajmewada12", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-01 13:59:58", - "registerOn": 1670163846.7407637, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163846.7407644, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306815.82807, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670309466.3077257, - "lastIP": "a\u007fn~}heajdxvawk", - "deviceUUID": "364ea53ec91919aba274c9f665704d58ebd0fd1b", - "cMsgCount": 0, - "lastMsgTime": 1670310252.5633104, - "lastMsg": "mar gayaa chadar mod", - "cSameMsg": 0 - }, - "pb-IF4-U3gdFw==": { - "display_string": [ - "\ue030Android63053623" - ], - "profiles": [], - "name": "\ue030Android63053623", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-01 07:24:54", - "registerOn": 1670163922.0687854, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163922.068786, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252209.4027324, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670267706.396747, - "lastIP": "azo~{i~}mdaig~", - "deviceUUID": "548cce6a079bbda740d03793a1d78e999a4c1fd4", - "cMsgCount": 0, - "lastMsgTime": 1670263481.4848268, - "lastMsg": " ", - "cSameMsg": 0 - }, - "pb-IF4tCRgv": { - "display_string": [ - "\ue063captshivi" - ], - "profiles": [], - "name": "\ue063captshivi", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-03 13:34:45", - "registerOn": 1670164025.4923496, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164025.49235, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670307619.9506342, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670307205.344128, - "lastIP": "a}j~~naaneaii}", - "deviceUUID": "c6932cc7de7b26f76a235772122d14803af4df04", - "cMsgCount": 0, - "lastMsgTime": 1670307619.9506536, - "lastMsg": "chutiya red team", - "cSameMsg": 0 - }, - "pb-IF5XVVACLA==": { - "display_string": [ - "\ue020blackury2003" - ], - "profiles": [], - "name": "\ue020blackury2003", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-02 15:20:15", - "registerOn": 1670164049.4426455, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164049.442646, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164049.442653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164049.4426541, - "lastIP": "dvvcxvb~m~}md", - "deviceUUID": "4675022b8c874c961302222469bb0f662d3d85e7" - }, - "pb-IF4RU0ksMQ==": { - "display_string": [ - "\ue020TorrentialEase43" - ], - "profiles": [], - "name": "\ue020TorrentialEase43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 16:52:16", - "registerOn": 1670164102.6703491, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164102.6703496, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164102.6703582, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164102.6703591, - "lastIP": "azo~{a~~``a`i", - "deviceUUID": "0fa470a438334471e61c657cd253c17a09542d24" - }, - "pb-IF4LU28SJA==": { - "display_string": [ - "\ue020vinothmptc" - ], - "profiles": [], - "name": "\ue020vinothmptc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-27 09:18:54", - "registerOn": 1670164143.1279385, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164143.127939, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234789.677719, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670236341.1902742, - "lastIP": "azo~zi~~`fa`", - "deviceUUID": "1f4da9f99faef8dbf64b27b1dbcc7e6172f83ea3" - }, - "pb-IF4WU0QRIA==": { - "display_string": [ - "\ue020BushyInstructor7" - ], - "profiles": [], - "name": "\ue020BushyInstructor7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 15:18:50", - "registerOn": 1670164149.8465316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164149.846532, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670208417.3129725, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670208417.3129735, - "lastIP": "azj~z`~|m~}hb", - "deviceUUID": "ea49598f4f26d828d5ff8b877ab21da1431cc1ba" - }, - "pb-JiNJARBdVEFAXl5GGEZZVFZCGUhXRFBC": { - "display_string": [ - "\ue063Sayan8274" - ], - "profiles": [], - "name": "\ue063Sayan8274", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-24 10:33:35", - "registerOn": 1670164201.407305, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164201.4073057, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164201.407316, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164201.4073167, - "lastIP": "azo~{h~~odaicz", - "deviceUUID": "0c88faba9ad4713a2bef5d5632f64df42945ba10" - }, - "pb-IF4BVVVYCA==": { - "display_string": [ - "\ue063LocalTruce" - ], - "profiles": [], - "name": "\ue063LocalTruce", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-05 19:09:08", - "registerOn": 1670164252.2043846, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164252.2043853, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252167.2436306, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252167.243632, - "lastIP": "dvvcyvfzvayh", - "deviceUUID": "2f035865d2bc9f545fd7215ec120feb18e12059a" - }, - "pb-IF4QU048Nw==": { - "display_string": [ - "\ue020NauseousJudge10" - ], - "profiles": [], - "name": "\ue020NauseousJudge10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 15:33:10", - "registerOn": 1670164257.225283, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164257.2252831, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164257.2252913, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164257.225292, - "lastIP": "a\u007fk~}hga`~wa", - "deviceUUID": "db15d2b826ed6a1b01a15850026d14b24b7325fe" - }, - "pb-IF5UU05aHQ==": { - "display_string": [ - "\ue020VoidPort2" - ], - "profiles": [], - "name": "\ue020VoidPort2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 20:44:30", - "registerOn": 1670164281.285934, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164281.285935, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295186.2921693, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670295417.1154861, - "lastIP": "bxvf}ve~va{l", - "deviceUUID": "caf2d45fa5cd9bb25979b3fe1f5882117e05180a", - "cMsgCount": 0, - "lastMsgTime": 1670251751.2658143, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4wV24HBw==": { - "display_string": [ - "\ue063GiantRobot" - ], - "profiles": [], - "name": "\ue063GiantRobot", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-27 02:36:51", - "registerOn": 1670164282.278136, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164282.2781367, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254017.8086116, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254017.8086128, - "lastIP": "axm~~haaiaaoe", - "deviceUUID": "cf5348ed3c9d0bc1baaf7a1c8a75e78e76e90b53", - "cMsgCount": 0, - "lastMsgTime": 1670254405.40395, - "lastMsg": "yaa gotta", - "cSameMsg": 0 - }, - "pb-IF5TEHhY": { - "display_string": [ - "\ue063rvrvrvrvrv", - "\ue030Android24764519" - ], - "profiles": [], - "name": "\ue063rvrvrvrvrv", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-30 19:18:24", - "registerOn": 1670164347.5251415, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164347.525142, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164347.5251486, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164347.5251496, - "lastIP": "a\u007fk~}maaiiaiby", - "deviceUUID": "204621b919fc39e665181c2f15b7a496aaec9a81", - "cMsgCount": 0, - "lastMsgTime": 1670164626.8507328, - "lastMsg": "tu ne to liy mer", - "cSameMsg": 0 - }, - "pb-IF4qU0sOKw==": { - "display_string": [ - "\ue020MetallicPainting21" - ], - "profiles": [], - "name": "\ue020MetallicPainting21", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-05 20:06:51", - "registerOn": 1670164491.0075312, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164491.0075314, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164491.0075378, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164491.0075388, - "lastIP": "a\u007fn~}i`aihyva~i", - "deviceUUID": "bad7b7a03410739470d0e5d8bd092dec11391419" - }, - "pb-IF49U0QJDw==": { - "display_string": [ - "\ue063CRIMINAL", - "\ue063NOMERCY", - "\ue063Babysimran", - "\ue030PC605729", - "\ue030Android63861037" - ], - "profiles": [], - "name": "\ue030PC605729", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-29 22:04:04", - "registerOn": 1670164546.191456, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164546.1914566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296805.272457, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670296840.4206002, - "lastIP": "dvvcxvdxva{k", - "deviceUUID": "52e159e6debf4b869cb6bd30a26e268c72ceab36", - "cMsgCount": 0, - "lastMsgTime": 1670227558.649517, - "lastMsg": "bc", - "cSameMsg": 0 - }, - "pb-IF4gU0wxBw==": { - "display_string": [ - "\ue063VOIDG0D" - ], - "profiles": [], - "name": "\ue063VOIDG0D", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 16:06:19", - "registerOn": 1670164581.3468778, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164581.3468783, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310627.343783, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670312825.3886898, - "lastIP": "a\u007fk~}hhaniaig|", - "deviceUUID": "53e096add4bc0eb2d359d20b0860961ff68cf255", - "cMsgCount": 0, - "lastMsgTime": 1670312845.7994747, - "lastMsg": "Reported ", - "cSameMsg": 0 - }, - "pb-IF4sJEMH": { - "display_string": [ - "\ue063KingZaki96" - ], - "profiles": [], - "name": "\ue063KingZaki96", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-04 16:47:02", - "registerOn": 1670164654.5549097, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164654.5549104, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164654.554918, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164654.554919, - "lastIP": "azo~{m~}hcaii}", - "deviceUUID": "12d88ff9cac799b62853cb2cc4745424db9a6892" - }, - "pb-IF4CMWc7": { - "display_string": [ - "\ue063Kisimo1994", - "\ue030Android21430556" - ], - "profiles": [], - "name": "\ue063Kisimo1994", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-10 23:12:25", - "registerOn": 1670164688.7271757, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164688.7271764, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164688.7271838, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164688.7271845, - "lastIP": "a\u007fn~}haai`{vbzh", - "deviceUUID": "baadf7630c1076763ba20d3c1290f44922c08fe2" - }, - "pb-IF5RUlkoHQ==": { - "display_string": [ - "\ue063serialhunt" - ], - "profiles": [], - "name": "\ue063serialhunt", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-09 19:50:31", - "registerOn": 1670164765.273882, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164765.2738826, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236590.2390156, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236590.2390168, - "lastIP": "dvvd|vixvavi", - "deviceUUID": "465f5538f809e3599131d3056a80342cb72670da" - }, - "pb-IF4CU0QpCA==": { - "display_string": [ - "\ue020MADDY1321" - ], - "profiles": [], - "name": "\ue020MADDY1321", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 23:47:39", - "registerOn": 1670164826.1793785, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164826.1793792, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164826.1793885, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670165667.7923439, - "lastIP": "azj~zo~}hfan`", - "deviceUUID": "375e940bc136e68d34cc7bee3b953fabea37ef0f" - }, - "pb-IF4dVFgCLg==": { - "display_string": [ - "\ue020Attitudeboy997" - ], - "profiles": [], - "name": "\ue020Attitudeboy997", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-17 09:31:17", - "registerOn": 1670164987.7380915, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164987.738092, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164987.738101, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670165061.6842158, - "lastIP": "dvvc{vaxj~~lf", - "deviceUUID": "9fc8f0b8cdb4ba85753351b714f6ac2055c00337" - }, - "pb-IF4eU0ggAw==": { - "display_string": [ - "\ue063BooI1219" - ], - "profiles": [], - "name": "\ue063BooI1219", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 13:48:49", - "registerOn": 1670165033.8957849, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165033.8957858, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165033.895794, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165033.8957946, - "lastIP": "azo~{a~}kbaia}", - "deviceUUID": "cd46691149db0b8e910ee622d3573aba199c0745" - }, - "pb-IF4AU04IHQ==": { - "display_string": [ - "\ue020SillyMembrane32" - ], - "profiles": [], - "name": "\ue020SillyMembrane32", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 20:19:32", - "registerOn": 1670165143.316132, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165143.3161325, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165143.3161385, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165143.3161392, - "lastIP": "a~h~}jfajd}vdv", - "deviceUUID": "dcb83bdb40ec19416943298f2f7f1ab92b4523f8" - }, - "pb-IF40VEEMVA==": { - "display_string": [ - "\ue020AloofSoldier58271" - ], - "profiles": [], - "name": "\ue020AloofSoldier58271", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-30 18:21:06", - "registerOn": 1670165273.7302299, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165273.7302303, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242894.0537724, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242894.0537736, - "lastIP": "a\u007fn~~acaibwvb|a", - "deviceUUID": "77b69cdd0dc41f6e9d050e1ca7fd8e3398cfd907" - }, - "pb-JiNJARFdVUJBW1tAGUVUVV1HFkBeQ1BG": { - "display_string": [ - "\ue020HacktasticBeetle2600" - ], - "profiles": [], - "name": "\ue020HacktasticBeetle2600", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-15 15:10:21", - "registerOn": 1670165319.911316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165319.911317, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165319.9113255, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165319.9113266, - "lastIP": "a|j~~mdakeajd~", - "deviceUUID": "cd4d8f165ce494bff4ef4844e780a57d8a4e1c55" - }, - "pb-IF4CNEE7": { - "display_string": [ - "\ue020arsh2468" - ], - "profiles": [], - "name": "\ue020arsh2468", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-21 16:27:30", - "registerOn": 1670165350.0381484, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165350.0381489, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165350.038158, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670168944.1455185, - "lastIP": "evvhvvg~vb{l", - "deviceUUID": "25afc280c6a0ad7777fb2f6f2813d595f5c15365" - }, - "pb-IF4sU04cFQ==": { - "display_string": [ - "\ue063Alpha910" - ], - "profiles": [], - "name": "\ue063Alpha910", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 20:07:44", - "registerOn": 1670165431.2945395, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165431.2945404, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165431.294547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165431.294548, - "lastIP": "a\u007fn~}i`ajc{va~l", - "deviceUUID": "8b22bf20be9c77044dd4f640a5c8a3446d61660d" - }, - "pb-IF4eU08jEA==": { - "display_string": [ - "\ue020UnconvincingMaxim19" - ], - "profiles": [], - "name": "\ue020UnconvincingMaxim19", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 23:04:35", - "registerOn": 1670165442.3797126, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165442.3797133, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165442.3797226, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165442.3797233, - "lastIP": "a|o~vo~~hbaihx", - "deviceUUID": "c18fd0569eb1d8c3872661f7dab7368185ba25c9" - }, - "pb-IF49U2wiLA==": { - "display_string": [ - "\ue020Thanu41" - ], - "profiles": [], - "name": "\ue020Thanu41", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-11 16:32:02", - "registerOn": 1670165516.6016057, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165516.6016061, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165516.6016152, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670165663.786642, - "lastIP": "azo~{m~wa~}kd", - "deviceUUID": "1da86ac95b2dc46ed8d9b263a684c35764ae6d1a" - }, - "pb-IF4dKBYM": { - "display_string": [ - "\ue020Naimin95" - ], - "profiles": [], - "name": "\ue020Naimin95", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-02 11:15:18", - "registerOn": 1670165626.98999, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165626.9899907, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165626.989999, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165626.99, - "lastIP": "dvvcyva}k~}k`", - "deviceUUID": "06ca51e8f74c641f508c4df9dca664758d392b9e" - }, - "pb-IF4uUxMpLQ==": { - "display_string": [ - "\ue030Android60309780" - ], - "profiles": [], - "name": "\ue030Android60309780", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-07 17:03:23", - "registerOn": 1670165636.11352, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165636.1135206, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165636.1135285, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165636.1135297, - "lastIP": "awk~wk~}idaki", - "deviceUUID": "\u0015V_QY\u0016X\tVQCW\u000bSXB\u0004XYXMYXYUD" - }, - "pb-IF4iAGsC": { - "display_string": [ - "\ue020SleekPossum9447", - "\ue030Android38758359" - ], - "profiles": [], - "name": "\ue020SleekPossum9447", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-22 14:58:26", - "registerOn": 1670165700.3785243, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165700.378525, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165700.3785322, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165700.378533, - "lastIP": "a}j~~naaohaag", - "deviceUUID": "c8d611bc46ce05c172ed28e3d588b52e03be103d" - }, - "pb-IF4rUxdeUg==": { - "display_string": [ - "\ue020RootinTootinOoze9610" - ], - "profiles": [], - "name": "\ue020RootinTootinOoze9610", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-21 11:09:05", - "registerOn": 1670165761.4635248, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165761.4635255, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165761.4635344, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165761.463535, - "lastIP": "a\u007fn~~aealaaae", - "deviceUUID": "97e8d9436d1c81297ff0a1830fcde1d80a582805" - }, - "pb-IF4-UxI7Mg==": { - "display_string": [ - "\ue020FervidPlurality13" - ], - "profiles": [], - "name": "\ue020FervidPlurality13", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-03 20:18:08", - "registerOn": 1670165795.557572, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165795.5575724, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670249851.1546144, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670260110.6474333, - "lastIP": "d|vbzh~~neaja\u007f", - "deviceUUID": "5f31cc0c220a612a265d961c7655f5a50e7541c9" - }, - "pb-IF5XVWcCJA==": { - "display_string": [ - "\ue063PaanApitit", - "\ue030Android47505090" - ], - "profiles": [], - "name": "\ue063PaanApitit", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-05 14:02:52", - "registerOn": 1670165815.624136, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165815.6241364, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165815.6241448, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165815.6241457, - "lastIP": "dvvb\u007fm~|j~~je", - "deviceUUID": "f8035cae6006897ad6311205d7996bd2ad5ba7f8", - "cMsgCount": 0, - "lastMsgTime": 1670165895.5566382, - "lastMsg": "noooowaeee", - "cSameMsg": 0 - }, - "pb-IF4LUhcoBA==": { - "display_string": [ - "\ue030Android54473871" - ], - "profiles": [], - "name": "\ue030Android54473871", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-05 22:03:55", - "registerOn": 1670165861.8738713, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165861.873872, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165861.8738816, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165861.8738825, - "lastIP": "b}k~~`iamfaiav", - "deviceUUID": "d6ff54649e1a747e0ee737524871c74a0afb3590" - }, - "pb-IF4PVUwcFw==": { - "display_string": [ - "\ue020weirdassalien27" - ], - "profiles": [], - "name": "\ue020weirdassalien27", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-26 14:02:43", - "registerOn": 1670165877.8656523, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165877.8656533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252418.1333983, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670253578.2585526, - "lastIP": "azo~{i~~`dang", - "deviceUUID": "401586b3ba51558fcd7b099b93715c7b010b6e12" - }, - "pb-IF4eU0snCA==": { - "display_string": [ - "\ue020Gowthamsword" - ], - "profiles": [], - "name": "\ue020Gowthamsword", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 11:27:22", - "registerOn": 1670165885.841125, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165885.8411257, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165885.8411455, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165885.8411467, - "lastIP": "b}k~}jhaiezvhw", - "deviceUUID": "abeac0c14009304c2520bfa38520dc095c3c8c95" - }, - "pb-IF4nU2ssKg==": { - "display_string": [ - "\ue020PaternalisticEmu11", - "\ue030Android60829722" - ], - "profiles": [], - "name": "\ue020PaternalisticEmu11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-06 14:54:31", - "registerOn": 1670165899.9166162, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165899.916617, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670269221.0665312, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268211.3509424, - "lastIP": "a\u007fn~}iealhalh", - "deviceUUID": "2f091a8679215a74c459c99f08fca9a0e8d88944", - "cMsgCount": 0, - "lastMsgTime": 1670269247.1670132, - "lastMsg": "cat", - "cSameMsg": 0 - }, - "pb-IF5dV21TEA==": { - "display_string": [ - "\ue063ShaikhFaha" - ], - "profiles": [], - "name": "\ue063ShaikhFaha", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-08 18:18:14", - "registerOn": 1670165910.9758298, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165910.9758303, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670262908.314055, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670262908.314056, - "lastIP": "dvvc{vb{a~y`", - "deviceUUID": "b05632b1fb80c0652753b333b6527f0774019c10" - }, - "pb-IF4pU1ApEg==": { - "display_string": [ - "\ue063D4kgaming", - "\ue030Android63984902" - ], - "profiles": [], - "name": "\ue063D4kgaming", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 19:41:56", - "registerOn": 1670166034.826491, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166034.8264918, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166034.8265004, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166034.8265011, - "lastIP": "i|vazo~~ofaid}", - "deviceUUID": "27fc08532b5ed8e160644b0e3b951c7af7b1a6eb" - }, - "pb-IF4cUnc6DQ==": { - "display_string": [ - "\ue020Wakandansoldier" - ], - "profiles": [], - "name": "\ue020Wakandansoldier", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-01 19:14:35", - "registerOn": 1670166061.5229938, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166061.5229945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166061.5230021, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166061.523003, - "lastIP": "bxvf\u007fvaxn~~ac", - "deviceUUID": "0664431d96d1a4ca038792481c8158fdc64a3087" - }, - "pb-IF4sU0gNFg==": { - "display_string": [ - "\ue020bhumit21" - ], - "profiles": [], - "name": "\ue020bhumit21", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-27 14:25:15", - "registerOn": 1670166148.771087, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166148.7710874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223750.3416817, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223750.3416831, - "lastIP": "dvvc{vb}n~~ah", - "deviceUUID": "3cefea855bf56c2cbcff1cb9778307a78aad5276" - }, - "pb-IF4JU08KCg==": { - "display_string": [ - "\ue063PenitentDi" - ], - "profiles": [], - "name": "\ue063PenitentDi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 19:01:50", - "registerOn": 1670166218.00192, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166218.0019205, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166218.0019293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166218.0019302, - "lastIP": "dvvc}vb\u007fj~~ai", - "deviceUUID": "ec0325ae89346ec4a94ec12bb4a64fb75aaf8900" - }, - "pb-IF4sVXA_AA==": { - "display_string": [ - "\ue020ASSASINSURYA" - ], - "profiles": [], - "name": "\ue020ASSASINSURYA", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-02 16:19:07", - "registerOn": 1670166222.0407639, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166222.0407643, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166222.0407724, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166222.0407732, - "lastIP": "azo~{n~~kfaibw", - "deviceUUID": "74d1cb77ef378265911b3c56cb4911bfce20ee05" - }, - "pb-IF4RU1BTFA==": { - "display_string": [ - "\ue063planrearer" - ], - "profiles": [], - "name": "\ue063planrearer", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 12:17:51", - "registerOn": 1670166287.2511134, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166287.2511141, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166287.251122, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166287.2511227, - "lastIP": "a~i~vj~}`~~li", - "deviceUUID": "ce38ef6f088efc7268bce35fe6caa559bb69f1d6" - }, - "pb-IF4xU087Lw==": { - "display_string": [ - "\ue030Android63984885" - ], - "profiles": [], - "name": "\ue030Android63984885", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 19:38:08", - "registerOn": 1670166313.3401363, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166313.340137, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166313.3401449, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166313.3401458, - "lastIP": "avl~~m~}ifai`~", - "deviceUUID": "f08347ee837b54365c1bbea4f2907dc9c0839a3a" - }, - "pb-IF40U3MyVQ==": { - "display_string": [ - "\ue063CautiousPr" - ], - "profiles": [], - "name": "\ue063CautiousPr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-09 19:08:52", - "registerOn": 1670166369.590827, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166369.590828, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670294962.5891352, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670296369.6714978, - "lastIP": "b}k~}kcaniaifx", - "deviceUUID": "39246c8659ea3044a5bead7eacfb2a4a1a738619", - "cMsgCount": 0, - "lastMsgTime": 1670171554.6665184, - "lastMsg": "\ud83d\udca6\ud83d\udca6", - "cSameMsg": 0 - }, - "pb-IF4TU00FLg==": { - "display_string": [ - "\ue020meetraul" - ], - "profiles": [], - "name": "\ue020meetraul", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 10:44:31", - "registerOn": 1670166457.8404708, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166457.8404713, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166457.8404794, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166457.8404803, - "lastIP": "dvvc}vb{m~}me", - "deviceUUID": "a4546cc05c213bc94377ea74589e6e5e93a15011" - }, - "pb-IF4hVREELg==": { - "display_string": [ - "\ue063EternalChi", - "\ue030Android45695456" - ], - "profiles": [], - "name": "\ue063EternalChi", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-19 00:30:31", - "registerOn": 1670166759.9992406, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166759.999241, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166759.9992487, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670166815.828955, - "lastIP": "b}k~~ohaj`vvb\u007fo", - "deviceUUID": "5d1fd35ad6de7cf6224250984ceb1a699f372096", - "cMsgCount": 0, - "lastMsgTime": 1670169766.5801232, - "lastMsg": "I am worst player too ", - "cSameMsg": 0 - }, - "pb-IF4tUnUeDA==": { - "display_string": [ - "\ue063SVSavla" - ], - "profiles": [], - "name": "\ue063SVSavla", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-25 00:37:29", - "registerOn": 1670166760.9934235, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166760.993424, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166760.9934316, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166760.993432, - "lastIP": "a\u007fk~~lbaiaajdy", - "deviceUUID": "8bbbd6f9befc6b28f29b4a23552779248ff80649" - }, - "pb-IF4UUmQbLg==": { - "display_string": [ - "\ue020GrotesqueBargain17" - ], - "profiles": [], - "name": "\ue020GrotesqueBargain17", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-05 10:12:59", - "registerOn": 1670166827.198648, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166827.1986487, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166827.1986573, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166827.1986582, - "lastIP": "bxvf}vbwvhw", - "deviceUUID": "4c621f0b2d6559f1a1a462a50de2d6c0d3ba5564" - }, - "pb-IF4MU0UlCg==": { - "display_string": [ - "\ue020WatDocument29" - ], - "profiles": [], - "name": "\ue020WatDocument29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-04 13:11:30", - "registerOn": 1670166918.549536, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166918.549537, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166918.5495458, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166918.5495462, - "lastIP": "a\u007fn~~acaig{vayj", - "deviceUUID": "39b2745838b0d9993ed845c6bf1700aaced267e9", - "cMsgCount": 0, - "lastMsgTime": 1670167240.3673563, - "lastMsg": "nice \ud83d\udc4d\ud83d\ude42", - "cSameMsg": 0 - }, - "pb-IF4HU3YGEQ==": { - "display_string": [ - "\ue063raiyyan095" - ], - "profiles": [], - "name": "\ue063raiyyan095", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 14:32:50", - "registerOn": 1670167401.2902663, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167401.2902672, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167401.2902741, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670171495.473114, - "lastIP": "a~o~v`~~n~~oe", - "deviceUUID": "bf6c56f6373e0204da59d88191bb526bfa5cd484", - "cMsgCount": 0, - "lastMsgTime": 1670167582.42784, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4tUkQaCg==": { - "display_string": [ - "\ue063itsmohit24" - ], - "profiles": [], - "name": "\ue063itsmohit24", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-29 09:03:46", - "registerOn": 1670167410.1924782, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167410.1924787, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167410.1924858, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167410.192487, - "lastIP": "a~o~va~~naajb}", - "deviceUUID": "6575026d70ced12f5e8ce050da2c39162874affd" - }, - "pb-IF4SUxMmKA==": { - "display_string": [ - "\ue063GiltJustif", - "\ue030Android60259654" - ], - "profiles": [], - "name": "\ue063GiltJustif", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-06 21:34:55", - "registerOn": 1670167432.2450662, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167432.2450671, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167432.2450767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167432.2450776, - "lastIP": "ax`~xj~xi~~ma", - "deviceUUID": "38f9f4d8bbe68c3e6a91965157f9dbd6eacf755e" - }, - "pb-IF4PUnM-Lw==": { - "display_string": [ - "\ue030Android56697829" - ], - "profiles": [], - "name": "\ue030Android56697829", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-14 10:37:22", - "registerOn": 1670167460.3940463, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167460.394047, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167460.3940547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167460.3940556, - "lastIP": "azo~|j~zvb\u007fh", - "deviceUUID": "7cf859ef637f5dac81e22503d1db62cd00146ece" - }, - "pb-IF40UkQYJg==": { - "display_string": [ - "\ue063Navestien6" - ], - "profiles": [], - "name": "\ue020Navestien666", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-30 22:26:21", - "registerOn": 1670167462.3991795, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167462.39918, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310473.4729302, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670312074.5186253, - "lastIP": "b\u007fm~}mcaib\u007fva|`", - "deviceUUID": "6e46be3c367cd489a94f4ed2ab1ecd1102ff068d", - "cMsgCount": 0, - "lastMsgTime": 1670311630.196257, - "lastMsg": "teamwork", - "cSameMsg": 0 - }, - "pb-IF4DU3AABw==": { - "display_string": [ - "\ue020YogeYogesh14", - "\ue030Android63935609", - "\ue030Android63935650", - "\ue030Android63935668", - "\ue030Android63935638" - ], - "profiles": [], - "name": "\ue020YogeYogesh14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-28 01:29:12", - "registerOn": 1670167474.517545, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167474.5175455, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670303696.2627728, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670303696.2627742, - "lastIP": "azo~{a~~ndajcv", - "deviceUUID": "f213df33642e4ebc54b521e0d617c0a8ed131fb5", - "cMsgCount": 0, - "lastMsgTime": 1670304477.640112, - "lastMsg": "go", - "cSameMsg": 0 - }, - "pb-IF4IU0waNQ==": { - "display_string": [ - "\ue063kartikm52" - ], - "profiles": [], - "name": "\ue063kartikm52", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 16:21:29", - "registerOn": 1670167486.5033967, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167486.5033977, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167486.5034065, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167486.5034077, - "lastIP": "a\u007fk~~n~~j~xa", - "deviceUUID": "483b4781309f463e2802d07dea36b718954078e8", - "cMsgCount": 0, - "lastMsgTime": 1670168415.0340774, - "lastMsg": "super", - "cSameMsg": 0 - }, - "pb-IF4eV0oMLw==": { - "display_string": [ - "\ue020TroublesomeAvail4" - ], - "profiles": [], - "name": "\ue020TroublesomeAvail4", - "isBan": false, - "isMuted": false, - "accountAge": "2019-03-15 16:16:24", - "registerOn": 1670167634.9539022, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167634.9539032, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167634.9539106, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167634.9539115, - "lastIP": "dvvcyvb~k~~k", - "deviceUUID": "1f209ff708b6750a46b9bef94d187fbfd57de283" - }, - "pb-IF4gU3cIPQ==": { - "display_string": [ - "\ue020Nirucraze" - ], - "profiles": [], - "name": "\ue020Nirucraze", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 09:15:05", - "registerOn": 1670167676.0900483, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167676.0900488, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167676.0900562, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167676.090057, - "lastIP": "a}j~~oba`cajby", - "deviceUUID": "7de066ef5e229c0c9dc2f14c52854c5aacdb17f1" - }, - "pb-IF5cU00kKg==": { - "display_string": [ - "\ue063Headhunter", - "\ue030Android61110362" - ], - "profiles": [], - "name": "\ue063Headhunter", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 12:37:00", - "registerOn": 1670167684.3128276, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167684.312828, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167684.312836, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167684.312837, - "lastIP": "a\u007fk~vm~wi~~md", - "deviceUUID": "9512b2cf2c5d0983d4845e3c85ca5840b37965d4" - }, - "pb-IF4XU0w8Ug==": { - "display_string": [ - "\ue030Android63833158" - ], - "profiles": [], - "name": "\ue030Android63833158", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 13:15:38", - "registerOn": 1670167702.4814215, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167702.4814224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167702.4814298, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670174741.238331, - "lastIP": "azo~{n~~jfai`w", - "deviceUUID": "\u0015QU\u0004QBP^QQ\u0011V\\\u0002X\u0011WZRQARZXPL" - }, - "pb-IF4iVXQnKw==": { - "display_string": [ - "\ue02046DEVILBoy" - ], - "profiles": [], - "name": "\ue02046DEVILBoy", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-25 22:21:46", - "registerOn": 1670167927.9781718, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167927.9781728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167927.9781814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167927.9781823, - "lastIP": "azo~{n~}ieaja{", - "deviceUUID": "e629df65a638bf4b934b80d4854b7e4ccbea2d51" - }, - "pb-IF4yUmsiXQ==": { - "display_string": [ - "\ue030Android55846320" - ], - "profiles": [], - "name": "\ue030Android55846320", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-06 09:37:07", - "registerOn": 1670167942.072769, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167942.0727696, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167942.0727766, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167942.072777, - "lastIP": "a~n~~l~~maa`h", - "deviceUUID": "a5b2bb3e214b2b0f29330b1f6c3a59af7504a787" - }, - "pb-IF4OU0cMLw==": { - "display_string": [ - "\ue020prashantrajputreaba", - "\ue030Android63743210" - ], - "profiles": [], - "name": "\ue020prashantrajputreaba", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 12:46:38", - "registerOn": 1670168090.6077995, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168090.6078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256989.3859186, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256989.38592, - "lastIP": "azo~|k~|l~~nb", - "deviceUUID": "85dacad1b2327afd1235f5ac9d9f2f5d720cad47" - }, - "pb-IF4IU04pBA==": { - "display_string": [ - "\ue020InnateSinner19", - "\ue030Android63932733" - ], - "profiles": [], - "name": "\ue020InnateSinner19", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 18:22:07", - "registerOn": 1670168115.6994216, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168115.6994221, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300721.2593122, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300721.2593453, - "lastIP": "a\u007fk~}i~~neaod", - "deviceUUID": "a0dbf538cbca995179cc926b8597a2599c6d01c7", - "cMsgCount": 0, - "lastMsgTime": 1670301010.8260713, - "lastMsg": "sucide squad ", - "cSameMsg": 0 - }, - "pb-IF4oU3oZNg==": { - "display_string": [ - "\ue030Android63217110" - ], - "profiles": [], - "name": "\ue030Android63217110", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-09 18:17:36", - "registerOn": 1670168159.9885747, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168159.9885752, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168159.9885824, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168159.9885828, - "lastIP": "azo~zi~~n`ani", - "deviceUUID": "26670b93a1f1f19f329cbb6fd2ec42ff8a03be17" - }, - "pb-IF5dU084Pw==": { - "display_string": [ - "\ue030Android63903756" - ], - "profiles": [], - "name": "\ue030Android63903756", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 23:21:24", - "registerOn": 1670168260.1819232, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168260.1819236, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168260.1819322, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670168462.549141, - "lastIP": "azo~{a~ym~yk", - "deviceUUID": "d342a67421820e4a47715becb38185e609b3963a" - }, - "pb-IF4LU0sFBA==": { - "display_string": [ - "\ue063AwesomeUni" - ], - "profiles": [], - "name": "\ue063AwesomeUni", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 09:14:30", - "registerOn": 1670168441.779381, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168441.7793818, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212071.9255252, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212071.9255266, - "lastIP": "dvvcyvbzvayi", - "deviceUUID": "333c7b471173a561f43cb4f0d1d0ce56331bfd2f" - }, - "pb-IF4-U0gPUw==": { - "display_string": [ - "\ue020sahiljaiswal124" - ], - "profiles": [], - "name": "\ue020sahiljaiswal124", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 19:12:40", - "registerOn": 1670168577.2081323, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168577.208133, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168577.2081406, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168577.2081413, - "lastIP": "dxvbvvayi~~n`", - "deviceUUID": "181b9dfe147573c0d55a5aeef8a5c86d5b6e7681" - }, - "pb-IF4XV1k7Hw==": { - "display_string": [ - "\ue020louis12king018806660" - ], - "profiles": [], - "name": "\ue020louis12king018806660", - "isBan": false, - "isMuted": false, - "accountAge": "2019-06-02 02:28:59", - "registerOn": 1670168642.4050496, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168642.4050503, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168642.405059, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168642.40506, - "lastIP": "a\u007fn~~ahajdaog", - "deviceUUID": "fb5c7aee9d5a3d954ac47c2d264e36061d4bd094" - }, - "pb-IF4DU00TEw==": { - "display_string": [ - "\ue020ImpregnableInsanity1", - "\ue030Android63902876", - "\ue030Android63906184" - ], - "profiles": [], - "name": "\ue030Android63902876", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 20:44:22", - "registerOn": 1670168714.7566276, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168714.7566283, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311203.8048036, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670312314.6313064, - "lastIP": "a\u007fn~~ahah~~``", - "deviceUUID": "a4f8f9370a0add1d52605546a45bf61524401bde", - "cMsgCount": 0, - "lastMsgTime": 1670235724.3246107, - "lastMsg": "hi", - "cSameMsg": 0 - }, - "pb-IF4QVXUqDg==": { - "display_string": [ - "\ue020ismartrohit" - ], - "profiles": [], - "name": "\ue020ismartrohit", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-02 16:35:13", - "registerOn": 1670168771.8602855, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168771.860286, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256717.3799422, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256717.3799434, - "lastIP": "azo~|k~}jiaia}", - "deviceUUID": "b367cb7d689d685aa944611ee2fa21b9e92231ee" - }, - "pb-IF4uU0kIFw==": { - "display_string": [ - "\ue030Android63763752" - ], - "profiles": [], - "name": "\ue030Android63763752", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 14:36:02", - "registerOn": 1670168774.8737438, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168774.8737447, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168774.873753, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168774.873754, - "lastIP": "hvva~k~~kiaih|", - "deviceUUID": "8a7b1ea9eeb5c78cb2c8d1d8e88340af06c02d08" - }, - "pb-IF4CU0MzBg==": { - "display_string": [ - "\ue020HIREN1AHIR" - ], - "profiles": [], - "name": "\ue020HIREN1AHIR", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-21 21:18:26", - "registerOn": 1670168800.9490013, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168800.9490016, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168800.9490104, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168800.9490118, - "lastIP": "aakha`aaih}", - "deviceUUID": "915750760f0ba873f2067db7b204681364660315" - }, - "pb-IF4uU09TCg==": { - "display_string": [ - "\ue030Android63969202" - ], - "profiles": [], - "name": "\ue030Android63969202", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 14:39:41", - "registerOn": 1670168863.1806862, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168863.180687, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168863.1806962, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168863.1806974, - "lastIP": "a{va\u007fj~}j~}lh", - "deviceUUID": "0685c07aedee36e7db7cf12405539e758008389b" - }, - "pb-IF4rUnYPNQ==": { - "display_string": [ - "\ue063SPERMAN" - ], - "profiles": [], - "name": "\ue063SPERMAN", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-28 20:57:12", - "registerOn": 1670169053.8202708, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169053.8202717, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169053.8202791, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169053.8202798, - "lastIP": "hwvb|m~}hdaib{", - "deviceUUID": "9772759615c3ba04fddda721b4126eb7775f3c6d" - }, - "pb-JiNJARBSXURGW1tAEERXU1RHFkBXRlNF": { - "display_string": [ - "\ue020YawningGhost61878", - "\ue063SaltyBoss5" - ], - "profiles": [], - "name": "\ue063SaltyBoss5", - "isBan": false, - "isMuted": false, - "accountAge": "2017-02-09 20:57:13", - "registerOn": 1670169067.8394074, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169067.839408, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169067.8394153, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169067.839416, - "lastIP": "dzvb{`~}vc~", - "deviceUUID": "fda17aff9614132cd899a1a73eef4e3595908baf" - }, - "pb-IF4UUxYyXA==": { - "display_string": [ - "\ue020jagu22wan" - ], - "profiles": [], - "name": "\ue020jagu22wan", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-17 13:52:10", - "registerOn": 1670169191.3203194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169191.32032, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169191.3203282, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169191.3203292, - "lastIP": "dvvcxvavm~z`", - "deviceUUID": "0f36afef7639de12c3030df7c1891bf9138b69d2" - }, - "pb-JiNJVxFfXUpEW1xCEEZSUlBGEUNaR1BE": { - "display_string": [ - "\ue063vishnu234" - ], - "profiles": [], - "name": "\ue063vishnu234", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-14 12:42:49", - "registerOn": 1670169219.4019961, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169219.4019969, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169219.4020064, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169219.402007, - "lastIP": "a\u007fk~~naameaiay", - "deviceUUID": "5438d0b4f124c84c5188a948296609fd92dfa8c0", - "cMsgCount": 0, - "lastMsgTime": 1670169554.6156301, - "lastMsg": "how he got another life", - "cSameMsg": 0 - }, - "pb-IF4MVUQjLw==": { - "display_string": [ - "\ue063PlumpEnt18" - ], - "profiles": [], - "name": "\ue063PlumpEnt18", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-07 19:10:59", - "registerOn": 1670169242.5653312, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169242.565332, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169242.5653405, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169242.5653415, - "lastIP": "azo~zi~xi~{k", - "deviceUUID": "1706b5e06255cac541531121a1ed1def01ddeb56" - }, - "pb-IF5TU0kDFw==": { - "display_string": [ - "\ue020UnmeasuredStreet50" - ], - "profiles": [], - "name": "\ue020UnmeasuredStreet50", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 12:24:25", - "registerOn": 1670169259.8273587, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169259.8273594, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169259.8273673, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169259.8273683, - "lastIP": "b~j~~hdajcyva{l", - "deviceUUID": "82233e2ef1935c012ffaae7566ebab739a1414e6" - }, - "pb-IF4sUhAyKw==": { - "display_string": [ - "\ue020SaturatedOffice44", - "\ue030Android56293089" - ], - "profiles": [], - "name": "\ue030Android56293089", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-07 13:25:58", - "registerOn": 1670169267.5681043, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169267.5681047, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169267.5681126, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169267.5681136, - "lastIP": "azo~{n~vn~}jc", - "deviceUUID": "\u0015U\f\u0002\u0005FR\f" - }, - "pb-IF4-VEsEJA==": { - "display_string": [ - "\ue020BouncyTrucker29384", - "\ue020RegretfulCrow2978" - ], - "profiles": [], - "name": "\ue020BouncyTrucker29384", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-28 19:39:00", - "registerOn": 1670169359.8949296, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169359.8949301, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169359.8949382, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169359.8949392, - "lastIP": "azo~zi~{m~~ai", - "deviceUUID": "9dd12f154ede68dcf02b90d7ff46fb75405efc8a" - }, - "pb-IF4rUmovMg==": { - "display_string": [ - "\ue063ImproperGl" - ], - "profiles": [], - "name": "\ue063ImproperGl", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-31 18:44:19", - "registerOn": 1670169389.031273, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169389.0312734, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169389.0312827, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169389.0312834, - "lastIP": "azo~|`~~ifaje", - "deviceUUID": "93f45368ee483da5feb85bf1d20f18dace721176" - }, - "pb-IF4sU2sqHQ==": { - "display_string": [ - "\ue030Android63976161", - "\ue030Android63976116", - "\ue030Android63976199", - "\ue030Android63976244", - "\ue030Android61865080" - ], - "profiles": [], - "name": "\ue030Android61865080", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 11:54:48", - "registerOn": 1670169465.2797682, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169465.2797692, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247646.2383335, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247646.2383344, - "lastIP": "dvvc{vgyvawl", - "deviceUUID": "f8ef55196d5ba4ca7a6b255fe35954bb1a416b0b" - }, - "pb-IF4mUxkJPw==": { - "display_string": [ - "\ue030Android60903665" - ], - "profiles": [], - "name": "\ue030Android60903665", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-01 21:35:25", - "registerOn": 1670169494.541764, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169494.5417645, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169494.5417728, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169494.5417738, - "lastIP": "dvvc{va{o~~`d", - "deviceUUID": "\u0015Q_R\u0004\u0016\u0007T\u0003T\u0017\u0007USXBWXVXBU\\UXE" - }, - "pb-IF4MU085LA==": { - "display_string": [ - "\ue063Invisible6" - ], - "profiles": [], - "name": "\ue063Invisible6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 21:51:17", - "registerOn": 1670169570.629754, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169570.6297545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254945.1974485, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254945.1974494, - "lastIP": "b}k~~oha`gaie{", - "deviceUUID": "7ed64c541b72b7aae895a65f3315961974cb3516" - }, - "pb-IF4KUk0MJg==": { - "display_string": [ - "\ue020PreschoolViability39", - "\ue030Android50875641" - ], - "profiles": [], - "name": "\ue020PreschoolViability39", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-05 21:59:39", - "registerOn": 1670169644.9582026, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169644.9582033, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169644.9582124, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169644.9582133, - "lastIP": "a|i~\u007fvav`~}hb", - "deviceUUID": "420ed96bbfac6067d4c9ddabc36246e40328d8db" - }, - "pb-IF5VVVEADg==": { - "display_string": [ - "\ue063PlainerEnc" - ], - "profiles": [], - "name": "\ue063PlainerEnc", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-06 19:05:44", - "registerOn": 1670169659.0285316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169659.0285325, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255147.1997166, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255147.199718, - "lastIP": "a~h~}keajaxva}i", - "deviceUUID": "fe827b9c97230932d109fce9cb6b8de617b3efe9" - }, - "pb-IF4LUlQ7Ng==": { - "display_string": [ - "\ue020AbhiiiOP1" - ], - "profiles": [], - "name": "\ue020AbhiiiOP1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-02 21:55:26", - "registerOn": 1670169710.198339, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169710.19834, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169710.1983473, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169710.1983483, - "lastIP": "d|vb{a~}jiah", - "deviceUUID": "bf36db18130e678294cd8c52318c1b8ea59ee170" - }, - "pb-IF4vU0MENg==": { - "display_string": [ - "\ue063harshal" - ], - "profiles": [], - "name": "\ue063harshal", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-22 21:41:30", - "registerOn": 1670169845.7034647, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169845.7034655, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245931.7578266, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670256632.1066642, - "lastIP": "azj~zo~zh~}l`", - "deviceUUID": "b144a5b6f1f89c128168881dd87511cc79229145" - }, - "pb-IF4lU086KQ==": { - "display_string": [ - "\ue063TSMentVans" - ], - "profiles": [], - "name": "\ue020TSMentVansh1234", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 02:10:21", - "registerOn": 1670169913.9522357, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169913.9522362, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254235.6481817, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254235.6481829, - "lastIP": "a\u007fn~}iealhalh", - "deviceUUID": "2186b07345b0e0b65f93bb8e1e3112cfa32dc866" - }, - "pb-IF4OF2EA": { - "display_string": [ - "\ue020SaltyClown69079" - ], - "profiles": [], - "name": "\ue020SaltyClown69079", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-14 19:39:47", - "registerOn": 1670169968.222988, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169968.2229884, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169968.2229965, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169968.2229972, - "lastIP": "dxviakbald", - "deviceUUID": "44e12025763b483f92ea475ce91cef5100d11fa2" - }, - "pb-IF4-UnVTXQ==": { - "display_string": [ - "\ue020LethargicHotshot9113" - ], - "profiles": [], - "name": "\ue020LethargicHotshot9113", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-23 11:37:44", - "registerOn": 1670170019.463155, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170019.4631557, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170019.463164, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670173277.8204453, - "lastIP": "a\u007fn~}iaajd\u007fvayk", - "deviceUUID": "bde529963f7916a55c191b2b2d6f7a5668a3d48e" - }, - "pb-IF4XVVEuAA==": { - "display_string": [ - "\ue030Android53762436", - "\ue030Android52674661", - "\ue030Android54203722", - "\ue030Android52545518", - "\ue030Android11764371" - ], - "profiles": [], - "name": "\ue030Android54203722", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-15 19:07:44", - "registerOn": 1670170064.5872755, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170064.587276, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670170452.618447, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170064.5872853, - "lastIP": "dvvazva|`~~hh", - "deviceUUID": "262b9e77aad6f334e2f64553c52b722c84047721", - "cMsgCount": 2, - "lastMsgTime": 1670170452.7592585, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4xU04OMg==": { - "display_string": [ - "\ue030PC772976" - ], - "profiles": [], - "name": "\ue030PC772976", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 19:03:47", - "registerOn": 1670170160.974992, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170160.974993, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230473.2969735, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670226306.6421301, - "lastIP": "b}k~~ohaj`vvb\u007fo", - "deviceUUID": "418fa6a05841c1b0df790370a713ffe4c9949408", - "cMsgCount": 0, - "lastMsgTime": 1670234731.0001793, - "lastMsg": "why do people watch p0rn?", - "cSameMsg": 0 - }, - "pb-IF5UU01eKw==": { - "display_string": [ - "\ue030Android63796197" - ], - "profiles": [], - "name": "\ue030Android63796197", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 17:05:46", - "registerOn": 1670170259.3832543, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170259.3832548, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170259.3832653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170259.383266, - "lastIP": "a\u007fm~~hfaibvvex", - "deviceUUID": "c068e20e378d907eb9a759dab9c489702828bfdd" - }, - "pb-IF4sU0wcBA==": { - "display_string": [ - "\ue020DiffidentHoplite31" - ], - "profiles": [], - "name": "\ue020DiffidentHoplite31", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 20:53:51", - "registerOn": 1670170364.7377033, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170364.7377043, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246941.7505336, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246941.750535, - "lastIP": "a~o~}jhaif|vb{i", - "deviceUUID": "8c631f53682fe91a3f459834ed1f0286daf6db6a" - }, - "pb-IF5QU3AaLg==": { - "display_string": [ - "\ue030Android62078969" - ], - "profiles": [], - "name": "\ue030Android62078969", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 19:45:30", - "registerOn": 1670170420.9802501, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170420.9802506, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670294773.963418, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670299830.112139, - "lastIP": "dvvc{vawl~~ka", - "deviceUUID": "f1c77e950f17e38d444f78241eb97f92085a69d3" - }, - "pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB": { - "display_string": [ - "\ue063aslammalik", - "\ue030Android13724059" - ], - "profiles": [], - "name": "\ue063aslammalik", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-23 13:26:56", - "registerOn": 1670170435.292834, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170435.2928345, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670252608.1721869, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251115.6189094, - "lastIP": "b}k~~`hajd\u007fva\u007f", - "deviceUUID": "92596357655490b82490f34ee0162e866d767923", - "cMsgCount": 0, - "lastMsgTime": 1670252707.1185305, - "lastMsg": "lol", - "cSameMsg": 0 - }, - "pb-IF4jU0MoPA==": { - "display_string": [ - "\ue030Android63397175" - ], - "profiles": [], - "name": "\ue030Android63397175", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-18 18:45:28", - "registerOn": 1670170478.2920778, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170478.2920783, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260521.2271128, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670265671.5777292, - "lastIP": "azo~{a~~lhaj`|", - "deviceUUID": "e502f5721c6c771c13afba773ea7a8a4f577991a", - "cMsgCount": 0, - "lastMsgTime": 1670265773.1683445, - "lastMsg": "drop your IGs I'll follow", - "cSameMsg": 0 - }, - "pb-IF4DUlQYEw==": { - "display_string": [ - "\ue020UnpopularHunter14650", - "\ue030Android59369529" - ], - "profiles": [], - "name": "\ue020UnpopularHunter14650", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-02 12:49:40", - "registerOn": 1670170522.2965899, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170522.2965903, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170522.2965984, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170522.2965994, - "lastIP": "a\u007fk~}maamia`i", - "deviceUUID": "492bc021ca1fa4954f0f9ed9177b64c346aa6945" - }, - "pb-IF4PU046AA==": { - "display_string": [ - "\ue063JRGunner10" - ], - "profiles": [], - "name": "\ue063JRGunner10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 13:29:33", - "registerOn": 1670170530.343196, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170530.3431964, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170530.3432045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170530.3432055, - "lastIP": "f~vaaib|va|i", - "deviceUUID": "21d9a7317fda7d34d19cb6c069632e520e550247" - }, - "pb-IF4pU0gcDQ==": { - "display_string": [ - "\ue063OriginalTe" - ], - "profiles": [], - "name": "\ue063OriginalTe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-22 23:48:00", - "registerOn": 1670170588.589707, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170588.5897076, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170588.5897152, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170588.589716, - "lastIP": "dzvaxa~wn~~if", - "deviceUUID": "25c2075454a5c1fe8be0101dcf18b1fb5e8c08ad" - }, - "pb-IF4NUm4IFA==": { - "display_string": [ - "\ue063noselessmo" - ], - "profiles": [], - "name": "\ue063noselessmo", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-26 09:24:40", - "registerOn": 1670170888.8810575, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170888.881058, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258029.2687323, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258029.2687335, - "lastIP": "a\u007fn~}j`aie}vaza", - "deviceUUID": "afe8504287910093f009e3fb9298e339ac016e72", - "cMsgCount": 0, - "lastMsgTime": 1670258127.7363563, - "lastMsg": "sry", - "cSameMsg": 0 - }, - "pb-LV4FBUYOVRRBCl4UEkVRB1EWGA==": { - "display_string": [ - "\ue021Phalgun~", - "\ue020Phalsgun", - "\ue030PC241395", - "\ue030Android8403398", - "\ue030PC403142" - ], - "profiles": [], - "name": "\ue021Phalgun~", - "isBan": false, - "isMuted": false, - "accountAge": "2016-11-20 11:42:50", - "registerOn": 1670170943.1882389, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170943.1882393, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306799.7697453, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306799.7697468, - "lastIP": "dvvb\u007fm~~hgaibz", - "deviceUUID": "\u0019 .%V2#U\"LG#)VLAQX%LLVYXL1S(%VFQ/Y EYTUQDQ_VTG", - "cMsgCount": 0, - "lastMsgTime": 1670314416.7995129, - "lastMsg": "g", - "cSameMsg": 0 - }, - "pb-IF5SUlkpPQ==": { - "display_string": [ - "\ue030Android59632041" - ], - "profiles": [], - "name": "\ue030Android59632041", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-11 11:33:51", - "registerOn": 1670170955.8542447, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170955.854245, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170955.8542526, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170955.8542533, - "lastIP": "a\u007fk~xa~}mea`", - "deviceUUID": "\u0015U\u000bW\u0005\u0016YZTSB\u0003[\u0003SFY\\PXLR\\PYBT" - }, - "pb-IF49VWglHA==": { - "display_string": [ - "\ue063FormerInno", - "\ue030Android46954321" - ], - "profiles": [], - "name": "\ue063FormerInno", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-27 21:16:31", - "registerOn": 1670171282.0857804, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670171282.085781, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670171282.0857897, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670171282.0857906, - "lastIP": "dxviaibvva~j", - "deviceUUID": "2df76a1bed2e77629bc5ec2a80ad87eb9f804fd1" - }, - "pb-IF4wU00EFA==": { - "display_string": [ - "\ue020BodaciousHipster7051" - ], - "profiles": [], - "name": "\ue020BodaciousHipster7051", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 14:01:54", - "registerOn": 1670171292.368926, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670171292.3689263, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219834.2400062, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219834.2400074, - "lastIP": "a}k~}kaaibzvb}", - "deviceUUID": "8a1bd0181802c25e85b4c22ec22fb7657e699e7e" - }, - "pb-IF4mU3kDIg==": { - "display_string": [ - "\ue063ProbablePl" - ], - "profiles": [], - "name": "\ue063ProbablePl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-06 15:24:27", - "registerOn": 1670171337.263092, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670171337.2630925, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670171337.263101, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670172120.6382544, - "lastIP": "a\u007fk~~agajb{vb\u007fl", - "deviceUUID": "666cfd5e4f6f2be2ceb7998e0a7defd54d85ad08" - }, - "pb-IF5QUncABw==": { - "display_string": [ - "\ue020SpontaneousTexture21" - ], - "profiles": [], - "name": "\ue020SpontaneousTexture21", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-22 17:01:09", - "registerOn": 1670171369.360172, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670171369.360173, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257417.9911218, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670258492.3258805, - "lastIP": "azo~|k~}ifaoi", - "deviceUUID": "\u0015Y_VS\u0012P\u000eY\u0007\u0015P]\u0003P\u0016U\\UUDU_VTGV", - "cMsgCount": 1, - "lastMsgTime": 1670172278.892956, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4cVEsJAg==": { - "display_string": [ - "\ue020OutmodedMystery3", - "\ue020smartysurendhar", - "\ue020NOORULAMEENAK57THALA", - "\ue020SubtlerPrelude12", - "\ue030Android24527683" - ], - "profiles": [], - "name": "\ue020NOORULAMEENAK57THALA", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-28 19:29:44", - "registerOn": 1670171705.5125847, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670171705.5125856, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268280.586248, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670268690.044276, - "lastIP": "azo~{a~~a`aoe", - "deviceUUID": "4f95e577a50d5f70018f099e72b520364683903b" - }, - "pb-IF4pVVQBEA==": { - "display_string": [ - "\ue020\u1d35\u1d2c\u1d39\u30baRaoJi" - ], - "profiles": [], - "name": "\ue020\u1d35\u1d2c\u1d39\u30baRaoJi", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-01 17:58:38", - "registerOn": 1670172105.9046304, - "canStartKickVote": true, - "spamCount": 2, - "lastSpam": 1670216868.3627353, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670246867.0605102, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246575.5256505, - "lastIP": "a\u007fn~~aeaicaidy", - "deviceUUID": "5fe0619e43e78d3eb296f26e44b46fe30b6d98f1", - "cMsgCount": 0, - "lastMsgTime": 1670246867.0604496, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFeUkZGXVhBEUdSU1RGEkJXTlRH": { - "display_string": [ - "\ue020Sagaramin12345", - "\ue030Android9634823" - ], - "profiles": [], - "name": "\ue020Sagaramin12345", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-06 17:52:32", - "registerOn": 1670172231.363033, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172231.3630338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172231.363042, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172231.363043, - "lastIP": "azo~{m~~ldaicz", - "deviceUUID": "cdd64c05bf3f291f40e0aecd4923efeb120a9465" - }, - "pb-IF4KVRMyUw==": { - "display_string": [ - "\ue020UnnumberedRobbery17", - "\ue030Android45832072" - ], - "profiles": [], - "name": "\ue020UnnumberedRobbery17", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-24 21:50:54", - "registerOn": 1670172302.779433, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172302.7794335, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246145.013323, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246145.013324, - "lastIP": "aakhaif}vev", - "deviceUUID": "ce399e8462aa7587b43b0a15826f2e1d007fa2af" - }, - "pb-IF4-U2pcKA==": { - "display_string": [ - "\ue030Android61702035" - ], - "profiles": [], - "name": "\ue030Android61702035", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-03 23:14:58", - "registerOn": 1670172351.7900114, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172351.7900121, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172351.790019, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172351.7900198, - "lastIP": "hxvavn~wi~~mf", - "deviceUUID": "645d592ec70b838dc5115801e998c148efe1bb6f" - }, - "pb-IF49U0JZFw==": { - "display_string": [ - "\ue030Android63349899" - ], - "profiles": [], - "name": "\ue030Android63349899", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-16 19:16:34", - "registerOn": 1670172400.3639817, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172400.3639824, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172400.363991, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172400.363992, - "lastIP": "dzva~m~vi~~md", - "deviceUUID": "b9a8c922680362e8105243c616c9089ae90ed8c1" - }, - "pb-IF48VWIPPw==": { - "display_string": [ - "\ue020QuerulousBrick19" - ], - "profiles": [], - "name": "\ue020QuerulousBrick19", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-17 17:03:47", - "registerOn": 1670172556.5734344, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172556.5734348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172556.5734437, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172556.5734446, - "lastIP": "dvvcxvb{k~~ah", - "deviceUUID": "7bed0a23c4157affd91bd27ca455553c455f7028" - }, - "pb-IF4oVEwvLA==": { - "display_string": [ - "\ue063DAXDESAI" - ], - "profiles": [], - "name": "\ue063DAXDESAI", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-30 20:43:12", - "registerOn": 1670172569.584806, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172569.5848067, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172569.584815, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172569.584816, - "lastIP": "d}va\u007fn~}i~~he", - "deviceUUID": "b423c8c8f8cda2231efaf5538ddec32bd6c4cc58" - }, - "pb-IF4yUng_XA==": { - "display_string": [ - "\ue063CosmicOutl", - "\ue030Android63886432", - "\ue030Android63885993" - ], - "profiles": [], - "name": "\ue063CosmicOutl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-05 21:40:38", - "registerOn": 1670172749.221171, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172749.2211723, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172749.2211812, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670172965.7047884, - "lastIP": "azo~{m~~odaihy", - "deviceUUID": "c4c8e19e44efd3082fbdc264c20023dc909737ad" - }, - "pb-JiNJARBcUEpCW15BEUNSXVVAGUFeQVJC": { - "display_string": [ - "\ue063LoverboyRo", - "\ue030Android14612394" - ], - "profiles": [], - "name": "\ue063LoverboyRo", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-22 23:25:54", - "registerOn": 1670172815.4980688, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172815.4980693, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172815.4980776, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172815.4980788, - "lastIP": "b~a~vi~}j`aaa", - "deviceUUID": "d787184373a57c90653527370baf50bdcee7a7ac" - }, - "pb-IF4sU0ETNA==": { - "display_string": [ - "\ue020yuriiiiiiiiii116" - ], - "profiles": [], - "name": "\ue020yuriiiiiiiiii116", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-18 15:33:09", - "registerOn": 1670172859.681317, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172859.6813176, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172859.681328, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172859.6813293, - "lastIP": "a\u007fk~~nhajdwvavi", - "deviceUUID": "82c285a23195908c30ce61d37eda08b085d8f15c" - }, - "pb-JiNJARFYXEtAWVlAFERRXFRFF0VfQVND": { - "display_string": [ - "\ue020royiam", - "\ue030Android53267307", - "\ue030Android52047741" - ], - "profiles": [], - "name": "\ue020royiam", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-17 12:29:24", - "registerOn": 1670172867.7084131, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172867.7084136, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172867.7084224, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670173129.2934122, - "lastIP": "b}k~}jeamhajb~", - "deviceUUID": "23b0a4db661c47deb0c5e6a91814e083e2413305", - "cMsgCount": 0, - "lastMsgTime": 1670172899.263744, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4vU04bIw==": { - "display_string": [ - "\ue030Android63934668" - ], - "profiles": [], - "name": "\ue030Android63934668", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 16:53:45", - "registerOn": 1670172889.7440207, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172889.7440212, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172889.7441478, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172889.7441485, - "lastIP": "a\u007fn~}hhaigyvazk", - "deviceUUID": "ce1645af5c72e9508bb1ab2a7940a3b0931ae900" - }, - "pb-IF5WVXkpVQ==": { - "display_string": [ - "\ue030Android50225790" - ], - "profiles": [], - "name": "\ue030Android50225790", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-13 02:08:43", - "registerOn": 1670173039.3773623, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173039.3773627, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173039.377371, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173039.3773723, - "lastIP": "avh~}ihajaxve", - "deviceUUID": "641973b162542d8dd1a370b5566a01614dd3c1c9", - "cMsgCount": 0, - "lastMsgTime": 1670173094.5510375, - "lastMsg": "run run run", - "cSameMsg": 0 - }, - "pb-IF4BU0s8BA==": { - "display_string": [ - "\ue030Android63830734" - ], - "profiles": [], - "name": "\ue030Android63830734", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 23:03:34", - "registerOn": 1670173119.5594878, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173119.5594885, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254949.2179668, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254949.2179682, - "lastIP": "azj~zo~}idakd", - "deviceUUID": "ca7f2b95038dc2799782a23213c8fd8518c135b9", - "cMsgCount": 0, - "lastMsgTime": 1670173318.6612692, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFeUkdDX1tHEkVTVlFDFUlXRllG": { - "display_string": [ - "\ue020ScreechingOoze8069", - "\ue030Android6469030" - ], - "profiles": [], - "name": "\ue020ScreechingOoze8069", - "isBan": false, - "isMuted": false, - "accountAge": "2016-09-10 12:28:52", - "registerOn": 1670173147.8888347, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173147.8888354, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306583.9628334, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306583.9628448, - "lastIP": "dvvcyva}i~|j", - "deviceUUID": "56d8b3078b48fa76c4d1d4471edcf8f7003cdf36" - }, - "pb-IF4lU2wxKA==": { - "display_string": [ - "\ue020AyushW1060" - ], - "profiles": [], - "name": "\ue020AyushW1060", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-11 23:33:43", - "registerOn": 1670173154.7079437, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173154.7079442, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173154.7079527, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173154.7079535, - "lastIP": "azj~zo~~`caa`", - "deviceUUID": "3b4cc9e515c3adf94f47e483f4a71bd08d12dc58" - }, - "pb-IF4lVVQoFg==": { - "display_string": [ - "\ue063CaffeineAs" - ], - "profiles": [], - "name": "\ue063CaffeineAs", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-30 01:03:01", - "registerOn": 1670173333.3859758, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173333.3859766, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173333.3859844, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173333.3859854, - "lastIP": "a~h~}jfaigwva\u007fm", - "deviceUUID": "783e4b6c2fc381c92432b022ef9970cda427a469", - "cMsgCount": 0, - "lastMsgTime": 1670174142.3896983, - "lastMsg": "yea ", - "cSameMsg": 0 - }, - "pb-IF4PVFRZMA==": { - "display_string": [ - "\ue063delrowe012" - ], - "profiles": [], - "name": "\ue063delrowe012", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-14 18:27:37", - "registerOn": 1670173377.5020025, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173377.5020032, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243132.0861826, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670243937.3374379, - "lastIP": "dvvcyvczvayj", - "deviceUUID": "8c88a64fe0c7bcee47322e9209aee1327afe7ded", - "cMsgCount": 2, - "lastMsgTime": 1670243837.0458896, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4cU3oSUw==": { - "display_string": [ - "\ue020Martinphilipjacob132" - ], - "profiles": [], - "name": "\ue020Martinphilipjacob132", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-10 19:13:38", - "registerOn": 1670173562.17576, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173562.175761, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173562.1757693, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173562.1757703, - "lastIP": "a\u007fk~~nbaj`xva{j", - "deviceUUID": "a93c9603821d197116eb990257e09657fba09fb4" - }, - "pb-IF4NUhUaHw==": { - "display_string": [ - "\ue030Android63783914" - ], - "profiles": [], - "name": "\ue030Android63783914", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 16:14:23", - "registerOn": 1670173716.6809845, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173716.680985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263640.3606524, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670263715.958391, - "lastIP": "awj~{`~~aiaibw", - "deviceUUID": "8ec3176a8d9a90e7694cc8aa41ae6a8727c73ae6" - }, - "pb-IF5QVFRdIQ==": { - "display_string": [ - "\ue020UnrecordedTense20", - "\ue020ResoluteMainland12", - "\ue020shazan99502", - "\ue020tyagInvolvedOfficial", - "\ue030Android63785493" - ], - "profiles": [], - "name": "\ue020shazan99502", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-26 21:45:08", - "registerOn": 1670173723.7922611, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173723.7922616, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263658.4137301, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670263730.0153766, - "lastIP": "awj~{`~~aiaibw", - "deviceUUID": "26b41e6328ae665eec92fa309cafe0ed814c2493" - }, - "pb-IF4qUkw9Pw==": { - "display_string": [ - "\ue020TelegraphicTree29" - ], - "profiles": [], - "name": "\ue020TelegraphicTree29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-28 16:03:20", - "registerOn": 1670173868.2830174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173868.2830179, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173868.2830281, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173868.2830293, - "lastIP": "dxvazvay`~~mg", - "deviceUUID": "3b30ff5c934dc2e484e090a738b9d0ea5ecb0f76" - }, - "pb-IF4KU0waFA==": { - "display_string": [ - "\ue030Android63853549" - ], - "profiles": [], - "name": "\ue030Android63853549", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 20:21:14", - "registerOn": 1670173880.312833, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173880.3128338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173880.3128426, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173880.3128436, - "lastIP": "awa~~acaidvvi{", - "deviceUUID": "40ba4e759cdef11460bb98d4fbfbefcfb084cfac" - }, - "pb-IF4JUmdaIg==": { - "display_string": [ - "\ue020MemerBadshah", - "\ue030Android54946326" - ], - "profiles": [], - "name": "\ue020MemerBadshah", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-17 13:09:03", - "registerOn": 1670173904.42992, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173904.4299207, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173904.4299293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173904.4299302, - "lastIP": "a~h~}keajcwve}", - "deviceUUID": "ce6feadb6452fe5fb99586cc0606eceda723613f" - }, - "pb-IF43U0sjUQ==": { - "display_string": [ - "\ue063ReliableDi" - ], - "profiles": [], - "name": "\ue063ReliableDi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 17:49:55", - "registerOn": 1670173929.5760052, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173929.5760057, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670174381.9340796, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670173998.4651046, - "lastIP": "a~h~}jfaigxvaxl", - "deviceUUID": "383976cf79c64e9a4ffd6417ae09615008a853c2", - "cMsgCount": 0, - "lastMsgTime": 1670174405.9152126, - "lastMsg": "sry. ", - "cSameMsg": 0 - }, - "pb-IF4yU0QOIw==": { - "display_string": [ - "\ue063Understoo2" - ], - "profiles": [], - "name": "\ue063Understoo2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 19:22:14", - "registerOn": 1670174013.8634691, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174013.8634696, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174013.86348, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174013.8634808, - "lastIP": "azo~{h~~k`aicw", - "deviceUUID": "019498090669705f2a306af7ef940362fb125ca4" - }, - "pb-IF4cU08AHA==": { - "display_string": [ - "\ue063SketchyPar" - ], - "profiles": [], - "name": "\ue063SketchyPar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 21:45:47", - "registerOn": 1670174020.8854249, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174020.885425, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174020.8854332, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174020.885434, - "lastIP": "dxvbvvbaidz", - "deviceUUID": "12f2849bcf4b27502d2cc1c3bc38171cb68d332a" - }, - "pb-IF4AVVAIUg==": { - "display_string": [ - "\ue020VerdantCircus9", - "\ue030Android57598974" - ], - "profiles": [], - "name": "\ue020VerdantCircus9", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-12 17:00:29", - "registerOn": 1670174260.2066307, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174260.2066312, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174260.206639, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174260.2066402, - "lastIP": "a\u007fk~}keah~zj", - "deviceUUID": "67250fd1e36d69cdb84203ec101203d1ca247a0d" - }, - "pb-IF4wU0EzEA==": { - "display_string": [ - "\ue020FranticAlliance82034" - ], - "profiles": [], - "name": "\ue020FranticAlliance82034", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-11 13:05:00", - "registerOn": 1670174438.5126605, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174438.512661, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259249.1921232, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259249.1921244, - "lastIP": "cxva~i~}lbaae", - "deviceUUID": "825a6d3c484f6f2475af76974c37f77bb40f0b2d" - }, - "pb-IF41U00aAg==": { - "display_string": [ - "\ue030Android63916646" - ], - "profiles": [], - "name": "\ue030Android63916646", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 15:58:52", - "registerOn": 1670174475.6080759, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174475.6080763, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174475.6080832, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174475.6080842, - "lastIP": "azo~|k~va~~`", - "deviceUUID": "3c9ee2ef878d6c4a4483094b15c6785c16473e0a" - }, - "pb-IF4rU3oHCw==": { - "display_string": [ - "\ue030Android63195782" - ], - "profiles": [], - "name": "\ue030Android63195782", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-08 15:26:50", - "registerOn": 1670174606.0686145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174606.0686152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174606.068624, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174606.068625, - "lastIP": "b}k~}jganaaj`y", - "deviceUUID": "\u0015TZW\u0003EW]R\u0007G\u0007\fYYB\u0003_PRLW^UU@X" - }, - "pb-IF4eUhIxBg==": { - "display_string": [ - "\ue063catbros7", - "\ue020GrandestShepherd22" - ], - "profiles": [], - "name": "\ue063catbros7", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-13 19:21:59", - "registerOn": 1670174776.7160783, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174776.716079, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174776.7160878, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174776.7160885, - "lastIP": "a\u007fm~~n`amhaif\u007f", - "deviceUUID": "4b5d6bbe94d109672dda984f017585fce563e0a1" - }, - "pb-IF4hVFQJPA==": { - "display_string": [ - "\ue020sheriff007gamer" - ], - "profiles": [], - "name": "\ue020sheriff007gamer", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-25 00:58:39", - "registerOn": 1670174884.0662334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174884.0662339, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174884.066243, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174884.0662436, - "lastIP": "azo~zi~~aiajcv", - "deviceUUID": "5a88a38de9f59d848fa0aa2329888d522d5687d8", - "cMsgCount": 1, - "lastMsgTime": 1670174949.5129015, - "lastMsg": "what i did", - "cSameMsg": 0 - }, - "pb-IF5VU3lYDA==": { - "display_string": [ - "\ue020AlienPersonnel44", - "\ue030Android61272703" - ], - "profiles": [], - "name": "\ue020AlienPersonnel44", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-22 11:33:30", - "registerOn": 1670174946.398253, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174946.3982537, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670262896.261297, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670262896.2612984, - "lastIP": "azj~z`~~ofa`d", - "deviceUUID": "b12054ad1919551ca42bc4d11a0d1402a4e7bd92", - "cMsgCount": 0, - "lastMsgTime": 1670265540.0622814, - "lastMsg": "ja coding kr", - "cSameMsg": 0 - }, - "pb-JiNJARBTVkdCW1ZIEkRVVlVGGUFcRVRG": { - "display_string": [ - "\ue063rajanr1234", - "\ue030Android12526088" - ], - "profiles": [], - "name": "\ue063rajanr1234", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-13 11:49:54", - "registerOn": 1670174970.4428892, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174970.4428897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174970.4428973, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174970.4428983, - "lastIP": "a~o~vo~}hdaoh", - "deviceUUID": "d5930fe991df73b13e0fc02e5936504e86d430ea" - }, - "pb-IF4PU04gEw==": { - "display_string": [ - "\ue030Android63923008" - ], - "profiles": [], - "name": "\ue030Android63923008", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 20:15:00", - "registerOn": 1670175001.8491335, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175001.849134, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175001.8491435, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175001.8491442, - "lastIP": "a~h~}jgai`aib}", - "deviceUUID": "e50bfb4269794bb57884fcf368e26086400f4d17" - }, - "pb-IF5dU3UiAw==": { - "display_string": [ - "\ue020sheriffgamer007" - ], - "profiles": [], - "name": "\ue020sheriffgamer007", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 21:03:46", - "registerOn": 1670175030.9890144, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175030.989015, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175030.9890254, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175030.989026, - "lastIP": "azo~zi~~aiajcv", - "deviceUUID": "5a88a38de9f59d848fa0aa2329888d522d5687d8" - }, - "pb-IF4QU0s_Eg==": { - "display_string": [ - "\ue020RedeemingTariff52" - ], - "profiles": [], - "name": "\ue020RedeemingTariff52", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 00:17:56", - "registerOn": 1670175131.962698, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175131.9626985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259755.0931153, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670261553.8651638, - "lastIP": "a}j~~naaohalg", - "deviceUUID": "ae526a45e4f0f4ba896730cc4b000af030e55e6a", - "cMsgCount": 0, - "lastMsgTime": 1670260216.7919657, - "lastMsg": "am i the only one who's lagging ", - "cSameMsg": 0 - }, - "pb-IF4IU3kKKA==": { - "display_string": [ - "\ue063KRISHTHEGA" - ], - "profiles": [], - "name": "\ue063VolcanoOP", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-05 15:15:17", - "registerOn": 1670175137.277485, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175137.2774854, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175137.2774942, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670175137.2774951, - "lastIP": "azo~{h~~ngala", - "deviceUUID": "bb49be183b5f2261cc6063737e9e7fe8a04ec999" - }, - "pb-IF4GVRNYVw==": { - "display_string": [ - "\ue030Android45693231" - ], - "profiles": [], - "name": "\ue030Android45693231", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-18 22:31:20", - "registerOn": 1670175158.3808932, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175158.3808937, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175158.3809023, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175158.3809032, - "lastIP": "a~m~v`~}kbajd\u007f", - "deviceUUID": "cd7fdf71362654f075816ef0d9e4c42de8019d6f" - }, - "pb-IF43VUwpNw==": { - "display_string": [ - "\ue020RedDreameater55290", - "\ue030Android52236929" - ], - "profiles": [], - "name": "\ue020RedDreameater55290", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-22 14:27:47", - "registerOn": 1670175170.194614, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175170.1946144, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175170.1946218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175170.1946225, - "lastIP": "a|o~vo~~hgajg", - "deviceUUID": "3866e016313a8964b64fdbf94302a07ba493bf62" - }, - "pb-IF4wU0gdPA==": { - "display_string": [ - "\ue020TranslucentSpeed26" - ], - "profiles": [], - "name": "\ue020TranslucentSpeed26", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-22 18:48:50", - "registerOn": 1670175210.2339947, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175210.2339954, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292675.0276132, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292675.0276148, - "lastIP": "d}va\u007fm~~ndaia|", - "deviceUUID": "18cc50fe25438fb91a54bff3ebc1f19d09d55a67" - }, - "pb-IF4gU2wxIg==": { - "display_string": [ - "\ue020\ud83c\udd76\ud835\udd86m\ud835\udd8a\u211dZ\u1b44", - "\ue030Android48199653" - ], - "profiles": [], - "name": "\ue030Android48199653", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-13 12:05:37", - "registerOn": 1670175374.7926185, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175374.7926192, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175374.792629, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175374.79263, - "lastIP": "azj~zo~za~~hf", - "deviceUUID": "d5fcef28207c5a26ea8a9a0000ab24651e20aa81" - }, - "pb-IF4hU0YdDg==": { - "display_string": [ - "\ue063NarrowHips" - ], - "profiles": [], - "name": "\ue063NarrowHips", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-18 23:04:26", - "registerOn": 1670175379.8240604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175379.824061, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307209.3611066, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307209.361108, - "lastIP": "dvvc}va{k~|h", - "deviceUUID": "af27fe203ccae0ab8aa185932b2df897859f41f1" - }, - "pb-IF4UU1AtCw==": { - "display_string": [ - "\ue030Android63983709" - ], - "profiles": [], - "name": "\ue030Android63983709", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:47:57", - "registerOn": 1670175383.8847692, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175383.8847702, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175383.8847783, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175383.8847792, - "lastIP": "a\u007fn~}hdaleaih}", - "deviceUUID": "b85aa7474eeddc07891aa5a83d9de87caac1f787" - }, - "pb-IF4dVVk5Nw==": { - "display_string": [ - "\ue030VR252448" - ], - "profiles": [], - "name": "\ue030VR252448", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-27 04:38:10", - "registerOn": 1670175514.2591097, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175514.2591102, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175514.2591188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175514.25912, - "lastIP": "dzvayl~~j~}ii", - "deviceUUID": "a047e6a2baaf04a56a637c005d502afa2028d5b3" - }, - "pb-IF5XVGQoFA==": { - "display_string": [ - "\ue063albyresto7", - "\ue030Android61395727" - ], - "profiles": [], - "name": "\ue020albyresto77", - "isBan": false, - "isMuted": false, - "accountAge": "2019-08-16 12:44:40", - "registerOn": 1670179934.9552991, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670179934.9552999, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313526.0086076, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313526.008609, - "lastIP": "a\u007fk~~nfajdzva\u007fi", - "deviceUUID": "9b3e4a82045ee85f97eb0369fc37a0899a3b60b8", - "cMsgCount": 2, - "lastMsgTime": 1670252060.2254236, - "lastMsg": "white\ud83d\ude0d", - "cSameMsg": 0 - }, - "pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK": { - "display_string": [ - "\ue020IdenticalShock57" - ], - "profiles": [], - "name": "\ue020IdenticalShock57", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-24 16:00:32", - "registerOn": 1670180083.561179, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180083.5611794, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268203.3170462, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268203.3170478, - "lastIP": "a}j~~naaohalg", - "deviceUUID": "ae526a45e4f0f4ba896730cc4b000af030e55e6a", - "cMsgCount": 1, - "lastMsgTime": 1670268356.57775, - "lastMsg": "vansh ", - "cSameMsg": 0 - }, - "pb-IF4rLkwp": { - "display_string": [ - "\ue063MPF", - "\ue030Android40308191", - "\ue030Android39582261", - "\ue030PC232491", - "\ue030Android38640036" - ], - "profiles": [], - "name": "\ue063MPF", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-07 02:20:26", - "registerOn": 1670180128.7830744, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180128.7830749, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670180128.7830825, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670184609.291339, - "lastIP": "a~j~~kdajazvi\u007f", - "deviceUUID": "f75978959e7e19ea371a4c3f6a7d753f5f0c395d", - "cMsgCount": 0, - "lastMsgTime": 1670187562.043262, - "lastMsg": "wtt it says 0%", - "cSameMsg": 0 - }, - "pb-IF4pUmQcPA==": { - "display_string": [ - "\ue030PC363206" - ], - "profiles": [], - "name": "\ue030PC363206", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-05 16:56:08", - "registerOn": 1670180268.9322007, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180268.9322014, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670201825.751476, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670204577.3999367, - "lastIP": "dvvb\u007fl~~j`alc", - "deviceUUID": "\u0003X]", - "cMsgCount": 0, - "lastMsgTime": 1670203832.4087112, - "lastMsg": "now-a-days, marvel sucks", - "cSameMsg": 0 - }, - "pb-IF4iVxJYAA==": { - "display_string": [ - "\ue063BeamingMos" - ], - "profiles": [], - "name": "\ue063BeamingMos", - "isBan": false, - "isMuted": false, - "accountAge": "2018-07-19 14:24:07", - "registerOn": 1670180317.4847248, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180317.4847255, - "totaltimeplayer": 0, - "warnCount": 3, - "lastWarned": 1670180772.7773814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670180317.484736, - "lastIP": "a\u007fk~{a~}lbajc~", - "deviceUUID": "9637ab5346733ccc64193a8c1aa3ffb417a5c4ea", - "cMsgCount": 0, - "lastMsgTime": 1670180772.7774034, - "lastMsg": "chutya", - "cSameMsg": 0 - }, - "pb-IF4RU086HQ==": { - "display_string": [ - "\ue030Android63952571" - ], - "profiles": [], - "name": "\ue030Android63952571", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 19:00:44", - "registerOn": 1670180319.1790404, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180319.179041, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670180319.1790483, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670180319.179049, - "lastIP": "azn~~`daii}vaxm", - "deviceUUID": "720f329bb6e3c83cbc216b9060ad3053549598c0" - }, - "pb-IF4HU3hTEA==": { - "display_string": [ - "\ue020LunaticTactician7288" - ], - "profiles": [], - "name": "\ue020LunaticTactician7288", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 15:23:48", - "registerOn": 1670180438.5559657, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180438.5559664, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670180438.5559757, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670180438.5559769, - "lastIP": "d|vbzj~}lhai`w", - "deviceUUID": "720d78a5e12a5820b99277503405d1044718b185", - "cMsgCount": 0, - "lastMsgTime": 1670180473.529602, - "lastMsg": "/kick 233", - "cSameMsg": 0 - }, - "pb-IF4vVRUFVA==": { - "display_string": [ - "\ue063BoomBaam11" - ], - "profiles": [], - "name": "\ue063BoomBaam11", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-10 15:52:43", - "registerOn": 1670180534.8579652, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180534.8579657, - "totaltimeplayer": 0, - "warnCount": 3, - "lastWarned": 1670263672.9166775, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670265713.707429, - "lastIP": "awj~yl~vi~~he", - "deviceUUID": "350a91139e7f1c8188c9cec1b5a153c37f5f8ebd", - "cMsgCount": 0, - "lastMsgTime": 1670265522.929009, - "lastMsg": "akash", - "cSameMsg": 0 - }, - "pb-IF4gUlAgLw==": { - "display_string": [ - "\ue063GodplayerO", - "\ue030Android56987886" - ], - "profiles": [], - "name": "\ue063GodplayerO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-17 15:31:52", - "registerOn": 1670180593.472905, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180593.4729054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670180593.472914, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670180593.4729147, - "lastIP": "a\u007fk~~mfajcxvavi", - "deviceUUID": "45ef30024b982ad672c5aa5c35f3598e068f61d5" - }, - "pb-IF4yV2ERXQ==": { - "display_string": [ - "\ue063matinnosra", - "\ue030Android27574057", - "\ue030Android54041956", - "\ue030Android56258742" - ], - "profiles": [], - "name": "\ue063matinnosra", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-13 19:12:12", - "registerOn": 1670180904.4921591, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670181017.6537411, - "totaltimeplayer": 0, - "warnCount": 4, - "lastWarned": 1670181017.6522706, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670180904.4921694, - "lastIP": "hyvexvaanb", - "deviceUUID": "cef621b0277dc5523a8bc5f70f9a3286ecd9cae9", - "cMsgCount": 0, - "lastMsgTime": 1670181017.6515322, - "lastMsg": "/timer t=0.01 rise 141 repeat", - "cSameMsg": 0 - }, - "pb-IF4-U0wpMQ==": { - "display_string": [ - "\ue063UbeTaTtA69" - ], - "profiles": [], - "name": "\ue063UbeTaTtA69", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 14:01:05", - "registerOn": 1670180930.2976832, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180930.297684, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670181840.361041, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670182261.8190577, - "lastIP": "a~j~~kdaleajdx", - "deviceUUID": "77602c07f9db8960e506de5d3b475d90aeb6b4f2", - "cMsgCount": 0, - "lastMsgTime": 1670181911.7992318, - "lastMsg": "bos", - "cSameMsg": 0 - }, - "pb-IF4sVVM5Mg==": { - "display_string": [ - "\ue020PlaneProcession32" - ], - "profiles": [], - "name": "\ue020PlaneProcession32", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-29 18:34:53", - "registerOn": 1670181029.707517, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181029.7075174, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181029.7075264, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181029.7075274, - "lastIP": "eajawvbzvbx", - "deviceUUID": "\u0015" - }, - "pb-IF4wUkwlJg==": { - "display_string": [ - "\ue030Android58555746" - ], - "profiles": [], - "name": "\ue030Android58555746", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-27 12:53:26", - "registerOn": 1670181432.258699, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181432.2586994, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181432.2587972, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181432.2587984, - "lastIP": "cxva~i~~meajdy", - "deviceUUID": "\u0015S\u000fYWE\u0002XP" - }, - "pb-IF4PU08bLA==": { - "display_string": [ - "\ue063ArylAwesom" - ], - "profiles": [], - "name": "\ue063ArylAwesom", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:47:54", - "registerOn": 1670181470.3667445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181470.3667448, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181470.3667536, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181470.3667543, - "lastIP": "a\u007fk~yvazi~~lh", - "deviceUUID": "e15131b31c70cca389487091b2e691fb0d831695" - }, - "pb-IF4CVBYJCA==": { - "display_string": [ - "\ue020\u0e21\u0e34\u0e01\u0e0b\u0e4c3707" - ], - "profiles": [], - "name": "\ue020\u0e21\u0e34\u0e01\u0e0b\u0e4c3707", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-21 13:06:28", - "registerOn": 1670181481.5857174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181481.585718, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181481.5857265, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181481.5857275, - "lastIP": "bxva{m~~m`aif~", - "deviceUUID": "2b0fa052d8521e1c98973c76a9fb169fa0f92030" - }, - "pb-IF4XUxYINw==": { - "display_string": [ - "\ue063EpidemicDi" - ], - "profiles": [], - "name": "\ue063EpidemicDi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-18 11:38:13", - "registerOn": 1670181656.3552763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181656.3552768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181656.355285, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181656.3552861, - "lastIP": "a}j~~oba`faiey", - "deviceUUID": "6f6deb21127b9d0da2611a917a1b0fc53f369303" - }, - "pb-IF42U04kLg==": { - "display_string": [ - "\ue020Suryakd04" - ], - "profiles": [], - "name": "\ue020Suryakd04", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 20:46:28", - "registerOn": 1670181846.622074, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181846.6220746, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181846.6220837, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670184617.3156433, - "lastIP": "a}j~~ohaadaka", - "deviceUUID": "e0d7bb0df9e322216bfa620f8c6f28626b9bfc09" - }, - "pb-IF4hU0sNIQ==": { - "display_string": [ - "\ue030Android63860546" - ], - "profiles": [], - "name": "\ue030Android63860546", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-13 20:50:03", - "registerOn": 1670181849.7272325, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181849.7272332, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181849.7272422, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181849.7272434, - "lastIP": "b\u007fi~~miaja|vg}", - "deviceUUID": "dc92e885e04e12ec73b5e4b45dbd14a42a3b3c1d" - }, - "pb-IF4XU0gNJg==": { - "display_string": [ - "\ue063NoName14481" - ], - "profiles": [], - "name": "\ue063NoName14481", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 18:43:55", - "registerOn": 1670182030.6101754, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182030.6101763, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670301237.209307, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670302940.4103942, - "lastIP": "a}j~~naambaii", - "deviceUUID": "cd8311900ff88886ba021feae3e7228a1d72d0ce", - "cMsgCount": 0, - "lastMsgTime": 1670303785.5462933, - "lastMsg": "jaan\ud83d\ude01", - "cSameMsg": 0 - }, - "pb-IF43U3opMw==": { - "display_string": [ - "\ue020ChintuKarthik1123" - ], - "profiles": [], - "name": "\ue020ChintuKarthik1123", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-06 15:45:10", - "registerOn": 1670182094.5465784, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182094.546579, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314911.1550634, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314911.1550643, - "lastIP": "b}k~~`faiean`", - "deviceUUID": "a621451965b8d02c893d6750a7a5467812aa9c46" - }, - "pb-IF4tVUQjFA==": { - "display_string": [ - "\ue063TopicalFur" - ], - "profiles": [], - "name": "\ue063TopicalFur", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-07 15:29:51", - "registerOn": 1670182322.3295085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182322.329509, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670182322.3295176, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670182322.3295186, - "lastIP": "awh~~adaigajg", - "deviceUUID": "a445e50b1797a0020a3edac6a51b6c99704477d3" - }, - "pb-IF4-U08hVg==": { - "display_string": [ - "\ue020CompatibleUsage45" - ], - "profiles": [], - "name": "\ue020CompatibleUsage45", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 07:31:08", - "registerOn": 1670182467.805151, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182467.8051517, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670182467.8051605, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670182467.8051612, - "lastIP": "axo~}jbanaaia\u007f", - "deviceUUID": "\u0015" - }, - "pb-IF4uU0sRXA==": { - "display_string": [ - "\ue020MilderUprising53" - ], - "profiles": [], - "name": "\ue020MilderUprising53", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 11:54:26", - "registerOn": 1670182513.9974043, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182513.9974053, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670182513.9974136, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670183546.3181136, - "lastIP": "azo~|l~x`~~ia", - "deviceUUID": "59bce742c0a1fa913915aaff7a6064746cc1cd1a" - }, - "pb-IF5RU2IPJg==": { - "display_string": [ - "\ue063harishsola" - ], - "profiles": [], - "name": "\ue063harishsola", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-29 17:47:58", - "registerOn": 1670182764.0775707, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182764.0775712, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230959.783054, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670232238.1917896, - "lastIP": "azo~|`~}h`aiaz", - "deviceUUID": "7d56650f437299a6bd8960e064ea3d457eda038e", - "cMsgCount": 0, - "lastMsgTime": 1670185453.0047183, - "lastMsg": "i have 1000 mother box", - "cSameMsg": 0 - }, - "pb-IF4wU0EoDA==": { - "display_string": [ - "\ue030Android63224716" - ], - "profiles": [], - "name": "\ue030Android63224716", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-10 01:45:35", - "registerOn": 1670182879.3172565, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182879.3172572, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670182879.3172646, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670189686.4128318, - "lastIP": "axo~}l`amdami", - "deviceUUID": "6b36bdd08c7147b461afdc0e93f296ce71035e1d" - }, - "pb-IF4jU0EgDQ==": { - "display_string": [ - "\ue020ClearerArmy31", - "\ue030Android63230750" - ], - "profiles": [], - "name": "\ue020ClearerArmy31", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-10 10:51:46", - "registerOn": 1670183060.987385, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670183060.9873855, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670183060.9873936, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670184099.3532708, - "lastIP": "dvvc{va|i~}jg", - "deviceUUID": "c488f4c3e758a5bcd6b558cabf8d82d8d19f29df" - }, - "pb-IF4DV2ItCQ==": { - "display_string": [ - "\ue020CrushedWolf82537", - "\ue030Android38093614" - ], - "profiles": [], - "name": "\ue020CrushedWolf82537", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-14 22:32:59", - "registerOn": 1670183077.0730386, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670183077.0730393, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253271.9784403, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253271.9784415, - "lastIP": "a\u007fk~~`baifyvf~", - "deviceUUID": "9d4840f4952018dea68626b815f7f861b7219341", - "cMsgCount": 1, - "lastMsgTime": 1670184179.93401, - "lastMsg": "mass", - "cSameMsg": 0 - }, - "pb-IF4rVUcbVQ==": { - "display_string": [ - "\ue063Fancydinne" - ], - "profiles": [], - "name": "\ue063Fancydinne", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-28 21:37:03", - "registerOn": 1670183407.1803548, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670183407.1803555, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670183407.1803656, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670183407.180367, - "lastIP": "a{n~~afaldalh", - "deviceUUID": "09b4f28c01b8e01233298b6f49c580db0b60dc09", - "cMsgCount": 0, - "lastMsgTime": 1670184234.3789642, - "lastMsg": "shtt bro", - "cSameMsg": 0 - }, - "pb-IF40U0ZaPw==": { - "display_string": [ - "\ue030Android63614116" - ], - "profiles": [], - "name": "\ue030Android63614116", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 00:22:26", - "registerOn": 1670183825.6317015, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670183825.6317022, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670183852.6655056, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670183825.6317124, - "lastIP": "a\u007fj~~`iaj~z", - "deviceUUID": "a459d791f361a90efde64fd117e0ed79eb7002d5", - "cMsgCount": 0, - "lastMsgTime": 1670183852.6654449, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4DU0g6EQ==": { - "display_string": [ - "\ue020GreenishHoplite57" - ], - "profiles": [], - "name": "\ue020GreenishHoplite57", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 00:41:02", - "registerOn": 1670183931.2869294, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670183931.28693, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215810.964327, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215810.9643285, - "lastIP": "aw`~~kcakaaah", - "deviceUUID": "\u0015R[P\u0007D\u0002UX\u0002BS\u000eWY\u0015\u0005\\YXCY^VULW", - "cMsgCount": 1, - "lastMsgTime": 1670215931.9689183, - "lastMsg": "kick this betrayer ", - "cSameMsg": 0 - }, - "pb-JiNJARBSXEJGWVhIGEJQVFJDGUVXRllL": { - "display_string": [ - "\ue063NoName49837", - "\ue030Android53527602" - ], - "profiles": [], - "name": "\ue063NoName49837", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-01 18:22:17", - "registerOn": 1670184626.6953363, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670184626.695337, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670184626.6953464, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670184626.6953475, - "lastIP": "dvva{va|k~~lc", - "deviceUUID": "90eff49e1851306e47d52c94e244089837e81963" - }, - "pb-IF49VFcGNw==": { - "display_string": [ - "\ue030Android62958044" - ], - "profiles": [], - "name": "\ue030Android62958044", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 16:24:08", - "registerOn": 1670184672.81187, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670184672.811871, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670184672.811898, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670184672.8118994, - "lastIP": "h|vb}i~yn~}hb", - "deviceUUID": "185782ffcdef05a28bf4977f55b7fe3102383293" - }, - "pb-IF5dU20MFg==": { - "display_string": [ - "\ue020redrubydiamond94", - "\ue030Android62423539", - "\ue030Android62423712" - ], - "profiles": [], - "name": "\ue020redrubydiamond94", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-09 21:22:56", - "registerOn": 1670185009.0298007, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670185009.0298014, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670185009.0298119, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670185498.361606, - "lastIP": "b}k~~`gaib~vb|n", - "deviceUUID": "bcd9ad437e7af846befaebafc83e3be6274a96a3" - }, - "pb-IF4IIUU6": { - "display_string": [ - "\ue020davidson6466", - "\ue030Android19307812" - ], - "profiles": [], - "name": "\ue020davidson6466", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-01 20:11:42", - "registerOn": 1670185229.7549117, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670185229.7549121, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670185824.7601225, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670185544.5390012, - "lastIP": "azo~|`~}viw", - "deviceUUID": "270ea10f9661b5a8496af158ae2bed43c2864133", - "cMsgCount": 0, - "lastMsgTime": 1670185824.759949, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4jVVgTXA==": { - "display_string": [ - "\ue063KingsKing2" - ], - "profiles": [], - "name": "\ue063KingsKing2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-21 22:43:03", - "registerOn": 1670185492.9849513, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670185492.9849517, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670185492.9849613, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670185492.9849622, - "lastIP": "a\u007fn~~acakganf", - "deviceUUID": "8e0ce439269486aeb728ec14658e563d3137e54a" - }, - "pb-IF4RU08gKg==": { - "display_string": [ - "\ue030Android63948779" - ], - "profiles": [], - "name": "\ue030Android63948779", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 23:20:58", - "registerOn": 1670185521.0481658, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670185521.048167, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670265164.6069834, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670265164.6069844, - "lastIP": "b\u007fh~~heaja}vaza", - "deviceUUID": "fe26c3ca1dc688adcbb6ed6ab2f9afbe73ad3e3a" - }, - "pb-IF42U05cDw==": { - "display_string": [ - "\ue063Measurabl7" - ], - "profiles": [], - "name": "\ue063Measurabl7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 02:49:26", - "registerOn": 1670185543.1754837, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670185543.1754842, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670185543.1754913, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670185543.175492, - "lastIP": "awo~~`iaig}vaxj", - "deviceUUID": "9bb765c21af3cb1d28fc4ff77961800866aa4e45" - }, - "pb-IF4TUxEoKg==": { - "display_string": [ - "\ue020TUJABAAP005", - "\ue030Android60088344" - ], - "profiles": [], - "name": "\ue020TUJABAAP005", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-29 14:15:10", - "registerOn": 1670186322.760002, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670186322.7600024, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670217665.9859152, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670217665.9859161, - "lastIP": "a\u007fn~~aeaibaifx", - "deviceUUID": "532d59db41fbfa8e777af032be92c3ee9c99fa55", - "cMsgCount": 0, - "lastMsgTime": 1670218286.3535814, - "lastMsg": "devil lavdya ", - "cSameMsg": 0 - }, - "pb-IF4FUksNDg==": { - "display_string": [ - "\ue020capnStranger" - ], - "profiles": [], - "name": "\ue020capnStranger", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-27 09:11:22", - "registerOn": 1670186510.547155, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670186510.5471554, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670186510.5471644, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670186510.5471652, - "lastIP": "a~o~}igaii|vcv", - "deviceUUID": "c8cf8234e381979f72d54a80b25a3d5ecf02a877", - "cMsgCount": 0, - "lastMsgTime": 1670188635.8347824, - "lastMsg": "sure", - "cSameMsg": 0 - }, - "pb-IF4JU3IpKw==": { - "display_string": [ - "\ue030Android62438169" - ], - "profiles": [], - "name": "\ue030Android62438169", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-04 02:54:02", - "registerOn": 1670187022.1597023, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187022.159703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187022.1597118, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187022.1597128, - "lastIP": "eaieyvhvva{l", - "deviceUUID": "afb7f8b98d738c2e87a10cd2146d56e17f0427e6" - }, - "pb-JiNJVxFcUUVJW15EGE9XVldGF0ZdTlNF": { - "display_string": [ - "\ue063swaprocks4", - "\ue030Android750766" - ], - "profiles": [], - "name": "\ue063swaprocks4", - "isBan": false, - "isMuted": false, - "accountAge": "2016-07-24 04:00:48", - "registerOn": 1670187024.0225737, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187024.0225747, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187024.0225837, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187024.022585, - "lastIP": "ayh~}khaoiaj`}", - "deviceUUID": "2ebc6a23fa9ba1ddf1d4b9257c4ee5c211e75d06" - }, - "pb-IF4PU0s9PQ==": { - "display_string": [ - "\ue030Android63813378" - ], - "profiles": [], - "name": "\ue030Android63813378", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 00:22:01", - "registerOn": 1670187157.5254676, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187157.525468, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187157.5254757, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187157.525477, - "lastIP": "a\u007fn~}hfajavva\u007fj", - "deviceUUID": "46e0bda220b4c7dd11de21758e31db178124eecb" - }, - "pb-IF4UUkJZKw==": { - "display_string": [ - "\ue020LoudArithmetic11" - ], - "profiles": [], - "name": "\ue020LoudArithmetic11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-18 19:35:49", - "registerOn": 1670187378.6117237, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187378.6117244, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187378.6117315, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187378.6117322, - "lastIP": "b\u007fi~}hiaif~vev", - "deviceUUID": "\u0015WZ\u0003WD\u0004\u000eUU@QUQWGSZQSLS\\USF" - }, - "pb-IF4sVVgTAg==": { - "display_string": [ - "\ue063WonderfulH" - ], - "profiles": [], - "name": "\ue063WonderfulH", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-25 23:56:29", - "registerOn": 1670187407.5496073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187407.5496085, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670267843.8769627, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670267843.8769636, - "lastIP": "b}k~}jhaidwvb}`", - "deviceUUID": "4c83d3e6437e3ea3f5ef3e3a0de6daa489b1c5f2" - }, - "pb-IF5TV1o8XQ==": { - "display_string": [ - "\ue063MadBanjoPl" - ], - "profiles": [], - "name": "\ue063MadBanjoPl", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-28 16:25:52", - "registerOn": 1670187548.9578001, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187548.9578009, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187548.95781, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187548.9578109, - "lastIP": "azo~{m~|n~\u007f", - "deviceUUID": "24461bfe2e9da2133d8266bb0f06e278e9cb1c50" - }, - "pb-IF4CVUkKKg==": { - "display_string": [ - "\ue020pulkitfirani" - ], - "profiles": [], - "name": "\ue020pulkitfirani", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-10 17:29:59", - "registerOn": 1670187747.6106598, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187747.6106603, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187747.6106682, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187747.6106694, - "lastIP": "dvvazn~w`~~ne", - "deviceUUID": "ed63ea232d99af1e6bb2e6c7752087abf325cc5a" - }, - "pb-JiNJARBfVUtBVFhCEERZUlNEGUBbRFRF": { - "display_string": [ - "\ue063Nihilisti2", - "\ue030Android16830059" - ], - "profiles": [], - "name": "\ue063Nihilisti2", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-10 23:27:14", - "registerOn": 1670188006.897376, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188006.8973763, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188006.8973858, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670188006.8973868, - "lastIP": "b\u007fk~xn~~`haihx", - "deviceUUID": "89c2fe944188ae51988f48d4dd37038c0eba0be0" - }, - "pb-IF49Ploi": { - "display_string": [ - "\ue020SniperRookie8431" - ], - "profiles": [], - "name": "\ue020SniperRookie8431", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-17 16:04:45", - "registerOn": 1670188137.0221465, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188137.0221477, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235657.839489, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670235657.8394904, - "lastIP": "azo~|l~y`~za", - "deviceUUID": "985b17a4976c8db1c0182b3638b370cb18d37405" - }, - "pb-IF4gHGlS": { - "display_string": [ - "\ue063Matt0so" - ], - "profiles": [], - "name": "\ue063Matt0so", - "isBan": false, - "isMuted": false, - "accountAge": "2018-06-29 05:11:26", - "registerOn": 1670188184.4751937, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188184.4751945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188184.4752045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670188184.4752054, - "lastIP": "a|i~\u007fvavo~|", - "deviceUUID": "d36bc3d0d68062a0d66062c6eb29ef1affbf1bf3" - }, - "pb-IF4GU1AiDw==": { - "display_string": [ - "\ue063SoochowDri" - ], - "profiles": [], - "name": "\ue063SoochowDri", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 02:34:12", - "registerOn": 1670188249.3898501, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188249.3898506, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188249.3898587, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670188249.38986, - "lastIP": "a\u007fk~}h`aia}ve\u007f", - "deviceUUID": "b20d21827258dab80a8e1a44d527a558290b5809" - }, - "pb-IF4HU3YGBw==": { - "display_string": [ - "\ue020CompanionableRag46" - ], - "profiles": [], - "name": "\ue020CompanionableRag46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 13:54:32", - "registerOn": 1670188271.7963076, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188271.796308, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188271.7963173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670188271.7963185, - "lastIP": "b~j~~hdajbzvava", - "deviceUUID": "cfa218afabdea403196b42b1b90b2fba65d1e7bd", - "cMsgCount": 0, - "lastMsgTime": 1670188708.742672, - "lastMsg": "wth", - "cSameMsg": 0 - }, - "pb-IF4TU0I4Ew==": { - "display_string": [ - "\ue063FastestThi" - ], - "profiles": [], - "name": "\ue063FastestThi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-17 23:08:49", - "registerOn": 1670188289.5418484, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188289.5418491, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188289.5418575, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670189018.0435832, - "lastIP": "d~vb|a~}iiaia~", - "deviceUUID": "a68bae10c5c6d289187d26259bca9143dd1be04d" - }, - "pb-IF4-UEgO": { - "display_string": [ - "\ue063kishordevl" - ], - "profiles": [], - "name": "\ue063kishordevl", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-11 00:17:43", - "registerOn": 1670188595.035446, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188595.0354466, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188595.0354564, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670189452.6745129, - "lastIP": "b\u007fj~~oiaaeaii", - "deviceUUID": "2ab154d67bbfe10e29b08d9de1c503929ff8f042", - "cMsgCount": 0, - "lastMsgTime": 1670189428.5453143, - "lastMsg": "\ud83d\ude0e", - "cSameMsg": 0 - }, - "pb-IF4VUhMcPw==": { - "display_string": [ - "\ue020PickyStatement25", - "\ue030Android50630763" - ], - "profiles": [], - "name": "\ue020PickyStatement25", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-21 17:31:34", - "registerOn": 1670188638.933082, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188638.9330826, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188638.9330914, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670188638.933092, - "lastIP": "dvvcyvb|j~~ja", - "deviceUUID": "4806913813935e604d81ab3b7db5830b0be20868" - }, - "pb-IF4qU0gfFA==": { - "display_string": [ - "\ue030Android63726577" - ], - "profiles": [], - "name": "\ue030Android63726577", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 18:23:36", - "registerOn": 1670189036.7102885, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670189036.7102892, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670189036.7102988, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670192009.690021, - "lastIP": "i|va~`~~oca`f", - "deviceUUID": "\u0015T_SQBWZT" - }, - "pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF": { - "display_string": [ - "\ue063iTzAnuragP" - ], - "profiles": [], - "name": "\ue020iTzAnuragP", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-26 12:06:14", - "registerOn": 1670189967.7119339, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670189967.7119348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308518.4550416, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670314375.292437, - "lastIP": "b}k~}kean`aic|", - "deviceUUID": "6b4184293fa6e868fb9f4ae11285c7ae8d24e639", - "cMsgCount": 0, - "lastMsgTime": 1670314824.3837664, - "lastMsg": "oops", - "cSameMsg": 0 - }, - "pb-IF4wU0UjMg==": { - "display_string": [ - "\ue020\uc5b8\uc9c11984" - ], - "profiles": [], - "name": "\ue020\uc5b8\uc9c11984", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 11:46:52", - "registerOn": 1670189980.7305636, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670189980.7305644, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670189980.7306015, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670189980.7306027, - "lastIP": "axi~vo~~l`alf", - "deviceUUID": "3b9c946fcd7254c80cf75186a43b03d09ba552b0" - }, - "pb-IF4tU00IIg==": { - "display_string": [ - "\ue030Android63886122" - ], - "profiles": [], - "name": "\ue030Android63886122", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 12:26:47", - "registerOn": 1670190340.3067062, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670190340.3067071, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670190340.3067188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670190340.30672, - "lastIP": "a\u007fk~{l~{a~}ld", - "deviceUUID": "e1aa54c5a06e1d9472a223b7955a72abcb2d613b" - }, - "pb-IF4oUmspEQ==": { - "display_string": [ - "\ue063PILEQUIFBI", - "\ue030Android55814559" - ], - "profiles": [], - "name": "\ue063PILEQUIFBI", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-05 00:04:03", - "registerOn": 1670190409.5864458, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670190409.5864463, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670190409.5864553, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670190409.586456, - "lastIP": "a|m~~jeajc}va}h", - "deviceUUID": "d19931a554146e77a343fa11baae89566d8fd14c" - }, - "pb-IF4PU0UlAw==": { - "display_string": [ - "\ue063MunicipalJ" - ], - "profiles": [], - "name": "\ue063MunicipalJ", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-03 00:12:52", - "registerOn": 1670190830.7465851, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670190830.7465858, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670265234.8456948, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670265234.8456957, - "lastIP": "a\u007fn~~aeak~xo", - "deviceUUID": "86da5fd261f3e1090a9f1ab41ca24b9e21ad6dae", - "cMsgCount": 0, - "lastMsgTime": 1670266449.2778215, - "lastMsg": "good", - "cSameMsg": 0 - }, - "pb-IF4mU0cfXA==": { - "display_string": [ - "\ue020StingyOccurrence56" - ], - "profiles": [], - "name": "\ue020StingyOccurrence56", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 13:06:23", - "registerOn": 1670191106.0276513, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191106.0276518, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670191106.0276601, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670191106.027661, - "lastIP": "a\u007fk~}hcaje{vbv", - "deviceUUID": "cdab009cd97031e609408b16b5b61921dc4a97c6" - }, - "pb-IF4rUk0bPQ==": { - "display_string": [ - "\ue020VascularDeficiency37" - ], - "profiles": [], - "name": "\ue020VascularDeficiency37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-06 07:24:25", - "registerOn": 1670191208.4187162, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191208.418717, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243381.0072422, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670235758.1975207, - "lastIP": "a}j~zj~yj~~kd", - "deviceUUID": "\u0015WTY\u0003M\u0002ZV\u0005A\u0002YW\u0004\u0015\u0003\\YTLS\\VVLR", - "cMsgCount": 0, - "lastMsgTime": 1670244315.9737945, - "lastMsg": "mid-oriya", - "cSameMsg": 0 - }, - "pb-IF4mVxRZXA==": { - "display_string": [ - "\ue020PSSG24" - ], - "profiles": [], - "name": "\ue020PSSG24", - "isBan": false, - "isMuted": false, - "accountAge": "2018-08-01 14:15:49", - "registerOn": 1670191223.4327536, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191223.4327545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670191223.4327629, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670191223.4327638, - "lastIP": "a}j~~nhajc{vayj", - "deviceUUID": "a11cd4ddee9b4178f3885f3f7f410158a6f72b52" - }, - "pb-IF5SVxkfLw==": { - "display_string": [ - "\ue063SapphireM2" - ], - "profiles": [], - "name": "\ue063SapphireM2", - "isBan": false, - "isMuted": false, - "accountAge": "2018-08-22 15:56:29", - "registerOn": 1670191296.8638763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191296.8638768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670191296.8639014, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670191296.8639026, - "lastIP": "a\u007fk~~kaaa`alb", - "deviceUUID": "b846fa346be995cf50d27bc05f5b7b645b6c5784", - "cMsgCount": 0, - "lastMsgTime": 1670191770.4773633, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4iVEo4Lg==": { - "display_string": [ - "\ue063OddFeeling", - "\ue030Android38370482" - ], - "profiles": [], - "name": "\ue063OddFeeling", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-24 13:52:31", - "registerOn": 1670191480.0653112, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191480.065312, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670293432.526496, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670298940.909374, - "lastIP": "d|vbzj~|k~}jg", - "deviceUUID": "23f6bd6f26786ccd5239bf1651dbbd30b242098e" - }, - "pb-IF49VW5cKQ==": { - "display_string": [ - "\ue020UnusualJavelina35259" - ], - "profiles": [], - "name": "\ue020UnusualJavelina35259", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-12 16:00:22", - "registerOn": 1670191817.5878084, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191817.5878088, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670191817.5878155, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670191817.5878162, - "lastIP": "b}k~~oha`can", - "deviceUUID": "a8a19876857411672d8b030000bad9abd34adf90" - }, - "pb-IF4nVXktLw==": { - "display_string": [ - "\ue020LocomotiveVigilance7", - "\ue030Android63599101", - "\ue030Android40913582" - ], - "profiles": [], - "name": "\ue020LocomotiveVigilance7", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-28 12:02:54", - "registerOn": 1670191857.4362824, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191857.4362829, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670191857.4362922, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670191857.436293, - "lastIP": "awi~yo~~hdang", - "deviceUUID": "01194af824c318483a48d56b0381697283f66770" - }, - "pb-IF48U0gcBw==": { - "display_string": [ - "\ue063WeakerDist" - ], - "profiles": [], - "name": "\ue063WeakerDist", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 01:39:20", - "registerOn": 1670191940.7448688, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191940.7448695, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670272668.177606, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670272668.177608, - "lastIP": "eai`}v`aja|", - "deviceUUID": "18e7fcefd9f285966c5fee0bdd3213eb833abac2" - }, - "pb-IF48U00qNA==": { - "display_string": [ - "\ue063OverallCon", - "\ue030Android63944420" - ], - "profiles": [], - "name": "\ue063OverallCon", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 13:09:12", - "registerOn": 1670192134.568987, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670192134.5689874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670192134.5689964, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670192134.5689971, - "lastIP": "b\u007fo~~mdajd|vbw", - "deviceUUID": "81911cd56a54fa89f1d87ef93d27ca05db1535ae" - }, - "pb-IF4rU3omIw==": { - "display_string": [ - "\ue020JKS4302" - ], - "profiles": [], - "name": "\ue020JKS4302", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-06 10:23:53", - "registerOn": 1670192243.1353755, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670192243.1353765, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670192243.1353834, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670192243.1353846, - "lastIP": "azo~{l~~ogaje|", - "deviceUUID": "68b3aa1273cdd46e83ddbe562fe1db2ed3f25ced" - }, - "pb-IF4nUmsiNg==": { - "display_string": [ - "\ue020PurposefulOffence22", - "\ue030Android55843945" - ], - "profiles": [], - "name": "\ue020PurposefulOffence22", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-05 08:10:09", - "registerOn": 1670192677.3555582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670192677.3555586, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670192677.3555667, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670192677.3555677, - "lastIP": "cwvd|va|h~~ob", - "deviceUUID": "d0e052b32c49fd99e15d7ce93c0370e65b612111" - }, - "pb-IF4jU08dIQ==": { - "display_string": [ - "\ue063Roofy156" - ], - "profiles": [], - "name": "\ue063Roofy156", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 09:17:25", - "registerOn": 1670192911.5168316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670192911.5168324, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670192911.5168402, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670194337.2890995, - "lastIP": "b\u007fk~~ogai`|vbzl", - "deviceUUID": "50a9b4fbd1bb8edec3d786b099c08c2f7cca5feb" - }, - "pb-IF4sUhAOXA==": { - "display_string": [ - "\ue063NiuNiu0808" - ], - "profiles": [], - "name": "\ue063NiuNiu0808", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-07 22:52:08", - "registerOn": 1670193548.959455, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670193548.9594555, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670193548.959463, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670193548.9594636, - "lastIP": "ewvawj~y`~za", - "deviceUUID": "42c2f80d156691fcb95ba5ce24d4397b341de0cf", - "cMsgCount": 1, - "lastMsgTime": 1670194264.464536, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4yVGIYPQ==": { - "display_string": [ - "\ue063CozyProkil" - ], - "profiles": [], - "name": "\ue063CozyProkil", - "isBan": false, - "isMuted": false, - "accountAge": "2019-08-23 15:28:56", - "registerOn": 1670193813.8826878, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670193813.8826885, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670193813.8826978, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670193813.8826985, - "lastIP": "axm~~ofajiaia~", - "deviceUUID": "bd7d1e9a75fa95bd84cf4d37d5418398072e34db", - "cMsgCount": 0, - "lastMsgTime": 1670193859.1313167, - "lastMsg": "wow", - "cSameMsg": 0 - }, - "pb-LV4FURgIUhBIWg4VRBQDV1IRQg==": { - "display_string": [ - "\ue063AshuAmbros", - "\ue030PC538677" - ], - "profiles": [], - "name": "\ue063AshuAmbros", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-09 20:09:19", - "registerOn": 1670194485.1817415, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670194485.1817424, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670194485.1817498, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670194485.1817508, - "lastIP": "a\u007fn~}hcajbzvgw", - "deviceUUID": "d6a5794887314f25a6e325b77be3bc716659fa79" - }, - "pb-IF4BU04oMw==": { - "display_string": [ - "\ue020gaviota36497love" - ], - "profiles": [], - "name": "\ue020gaviota36497love", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 04:55:18", - "registerOn": 1670194644.0175629, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670194644.0175636, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670194644.0175722, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670194644.017573, - "lastIP": "awa~}ifaih\u007fvb}m", - "deviceUUID": "e941c8c60608c1773e4f2949f495b0e086a0da25" - }, - "pb-IF4LUk4-DA==": { - "display_string": [ - "\ue063Blueeesky3" - ], - "profiles": [], - "name": "\ue063Blueeesky3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-11 11:49:23", - "registerOn": 1670197135.9496934, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670197135.9496942, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670197135.9497228, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670197135.9497242, - "lastIP": "a{h~}icaifxva|k", - "deviceUUID": "8230321007aeb9286841900725f3574349e432dc" - }, - "pb-IF4XUhElCA==": { - "display_string": [ - "\ue063josesoulkn", - "\ue030Android50645693" - ], - "profiles": [], - "name": "\ue063josesoulkn", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-07 21:17:09", - "registerOn": 1670197534.3173604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670197534.3173609, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670197534.3173683, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670197534.317369, - "lastIP": "b\u007fh~|o~~heaidv", - "deviceUUID": "0b9fad259d07074debe8009e1a333d651362cb7f" - }, - "pb-IF49VUIhKA==": { - "display_string": [ - "\ue063FellowStro" - ], - "profiles": [], - "name": "\ue063FellowStro", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-24 05:29:38", - "registerOn": 1670197961.5889416, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670197961.588942, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670198429.6769404, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670197961.5889525, - "lastIP": "a~a~vl~~h~}md", - "deviceUUID": "c0b46edabde9560c21d934548cffcf66f938f546", - "cMsgCount": 0, - "lastMsgTime": 1670198429.676879, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4HVHJaLw==": { - "display_string": [ - "\ue020PeekingNomad673", - "\ue030Android43830732" - ], - "profiles": [], - "name": "\ue020PeekingNomad673", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-01 10:20:13", - "registerOn": 1670198370.0109055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670198370.0109062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670198370.0109131, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670198370.010914, - "lastIP": "axo~}jbancajax", - "deviceUUID": "ac338d85b02270561a64b425c6cb943fe20f9624" - }, - "pb-IF4-U3M7Ug==": { - "display_string": [ - "\ue020RighteousRein29" - ], - "profiles": [], - "name": "\ue020RighteousRein29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 20:12:13", - "registerOn": 1670198399.1632311, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670198399.163232, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670198399.163242, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670198399.163243, - "lastIP": "b}k~~`gaia{vawn", - "deviceUUID": "a2c13dfea614e1ab18268dd38d5382f618de4fba" - }, - "pb-IF5RU00kKw==": { - "display_string": [ - "\ue020\u1d04\u029c\u1d1c\u1d1b\u1d1b\u1d00" - ], - "profiles": [], - "name": "\ue020\u1d04\u029c\u1d1c\u1d1b\u1d1b\u1d00", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 11:31:02", - "registerOn": 1670198477.4666266, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670198477.4666271, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298562.5574703, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670309952.300242, - "lastIP": "dzva}i~w`~}ie", - "deviceUUID": "57e1fdd987c0bb93c8334c7c873614967a59b6d1" - }, - "pb-IF5RU1AaLw==": { - "display_string": [ - "\ue063RainyParce" - ], - "profiles": [], - "name": "\ue063RainyParce", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 19:23:33", - "registerOn": 1670198520.9151702, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670198520.9151711, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300366.0294173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300366.0294185, - "lastIP": "a~j~~kdakhaje|", - "deviceUUID": "02896c13454838be0c0432b4bfe4053bce969627" - }, - "pb-IF5RU21cVw==": { - "display_string": [ - "\ue020TriplePie57" - ], - "profiles": [], - "name": "\ue020TriplePie57", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-05 01:51:33", - "registerOn": 1670200161.1822622, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200161.1822634, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201621.1683373, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670202019.6188917, - "lastIP": "avm~~a~~jeaia}", - "deviceUUID": "cf32114447c2adb49f53898adb78f6300cf6fc86" - }, - "pb-IF4DUhMJFg==": { - "display_string": [ - "\ue0200deathriot0", - "\ue030Android54074532" - ], - "profiles": [], - "name": "\ue0200deathriot0", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-19 08:19:03", - "registerOn": 1670200200.9522152, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200200.9522161, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670200200.9522262, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670200200.952227, - "lastIP": "a\u007fk~yj~~mcai`v", - "deviceUUID": "5735b6409a66c90ff90bfb6ef59d98c4e758f3ca" - }, - "pb-IF5WDVcI": { - "display_string": [ - "\ue020K\u00c5RT\u00d5S", - "\ue030Android18315499" - ], - "profiles": [], - "name": "\ue020K\u00c5RT\u00d5S", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-06 19:33:55", - "registerOn": 1670200306.7026906, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200306.7026913, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670200306.7027001, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670200306.702701, - "lastIP": "b}k~}jhaigwva\u007f`", - "deviceUUID": "72fc56ace4706edb441eaad293e2a88baa0022a4" - }, - "pb-IF4uU2ImAg==": { - "display_string": [ - "\ue030Android61067824" - ], - "profiles": [], - "name": "\ue030Android61067824", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-08 06:54:05", - "registerOn": 1670200367.757479, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200367.7574797, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670200367.75749, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670200367.7574909, - "lastIP": "azo~|j~~hbaih~", - "deviceUUID": "ccc8ae6a59665a05014b9d56352fb2dc2557cf42" - }, - "pb-IF48VFIlDQ==": { - "display_string": [ - "\ue020HotPinkBuccaneer9071" - ], - "profiles": [], - "name": "\ue020HotPinkBuccaneer9071", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-03 16:47:08", - "registerOn": 1670200519.9847865, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200519.984787, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670200519.984796, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670200519.9847972, - "lastIP": "azo~|`~}iga`f", - "deviceUUID": "d9933385fd007adf9daf61e8a6a76089c99ad8ca" - }, - "pb-IF4uU0MJMA==": { - "display_string": [ - "\ue030VR329281" - ], - "profiles": [], - "name": "\ue030VR329281", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 18:55:43", - "registerOn": 1670200602.427418, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200602.427419, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670200602.4274273, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670201257.5039372, - "lastIP": "f{va~a~}l~~kc", - "deviceUUID": "a456af23317cf7fc25c1dc65f0b352fdb2882409" - }, - "pb-IF4sU20DHw==": { - "display_string": [ - "\ue063IdioticPyr" - ], - "profiles": [], - "name": "\ue063IdioticPyr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-19 20:34:25", - "registerOn": 1670201094.221963, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201094.221964, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201094.2219732, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670201094.2219744, - "lastIP": "awi~~`haigyvaxk", - "deviceUUID": "44578695ed09980f1d5f43478cb40acdbfabbf32" - }, - "pb-IF5QU3ISKA==": { - "display_string": [ - "\ue020NewGamer456ProGamer", - "\ue030Android62039138" - ], - "profiles": [], - "name": "\ue020NewGamer456ProGamer", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-27 04:14:12", - "registerOn": 1670201194.6394901, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201194.6394908, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201625.1812983, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670202964.9359689, - "lastIP": "axo~}k`aih|vi", - "deviceUUID": "658c484bad61cc95241a1430db50761e6efce3fa", - "cMsgCount": 0, - "lastMsgTime": 1670201246.4659836, - "lastMsg": "xd", - "cSameMsg": 0 - }, - "pb-IF5cU1E5Mw==": { - "display_string": [ - "\ue063Moonanez" - ], - "profiles": [], - "name": "\ue063Moonanez", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 19:24:46", - "registerOn": 1670201337.3716342, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201337.3716352, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201337.3716452, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670201337.3716462, - "lastIP": "b\u007fj~~n`akfai`y", - "deviceUUID": "189d5063dde6aa25392acf1b37fea939217c905f" - }, - "pb-IF4LMxRa": { - "display_string": [ - "\ue020Dineshkd624" - ], - "profiles": [], - "name": "\ue020Dineshkd624", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-01 13:18:27", - "registerOn": 1670201523.8008842, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201523.8008847, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670202051.7249374, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670204064.6482582, - "lastIP": "a\u007fn~}iaajavvi}", - "deviceUUID": "aac0266b2225b4473b76c7a202f2e8b5c35cdc29" - }, - "pb-IF4WVHIiAQ==": { - "display_string": [ - "\ue063MVPMaGnuMG", - "\ue030Android30517211" - ], - "profiles": [], - "name": "\ue063MVPMaGnuMG", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-03 13:49:52", - "registerOn": 1670201525.8096514, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201525.8096519, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201525.8096592, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670201525.80966, - "lastIP": "dvvcxvayh~wa", - "deviceUUID": "d98ffb60cc150587b3b9474a18efad9599cbd607" - }, - "pb-IF4iU08nNw==": { - "display_string": [ - "\ue030Android63987828" - ], - "profiles": [], - "name": "\ue030Android63987828", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 06:24:09", - "registerOn": 1670201663.631497, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201663.6314976, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201663.6315067, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670201663.6315079, - "lastIP": "axm~~ofaabaig~", - "deviceUUID": "0603d61c95312f75f10be673f4cc1b3d2c2fdae0" - }, - "pb-IF4SU3kCMQ==": { - "display_string": [ - "\ue063SanguinePa" - ], - "profiles": [], - "name": "\ue063SanguinePa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-04 18:02:52", - "registerOn": 1670202122.27969, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670202122.2796907, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670202122.2796996, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670202122.2797005, - "lastIP": "a\u007fk~v`~~k`aid~", - "deviceUUID": "855df29fb09aa4b7b74af033e5868119c649844e" - }, - "pb-IF4oU04eNg==": { - "display_string": [ - "\ue063LethargicM" - ], - "profiles": [], - "name": "\ue063LethargicM", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 11:26:10", - "registerOn": 1670202164.5037704, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670202164.503771, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670202164.50378, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670202164.5037806, - "lastIP": "dvva}n~zo~}ke", - "deviceUUID": "0cbfe82996e3120c6cb59e62c8d9303d077d4e74" - }, - "pb-IF4gUk8RCw==": { - "display_string": [ - "\ue020IGNOBLETRASLATION65" - ], - "profiles": [], - "name": "\ue020IGNOBLETRASLATION65", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-16 01:45:38", - "registerOn": 1670202435.379121, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670202435.3791218, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670202435.3791292, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670202435.37913, - "lastIP": "awa~}iiaoeajc~", - "deviceUUID": "c34924d2ea94c46bad1ad5ae64ab0b7b7b3ab0c9", - "cMsgCount": 1, - "lastMsgTime": 1670202898.073434, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5SUlA8Lw==": { - "display_string": [ - "\ue020pausaltkrym" - ], - "profiles": [], - "name": "\ue020pausaltkrym", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-10 03:55:51", - "registerOn": 1670202497.6851404, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670202497.685141, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670202497.685149, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670202497.68515, - "lastIP": "a|j~~mdao~~od", - "deviceUUID": "71198d60f0a8b21db8eb6ce36cca8ee4553018a1" - }, - "pb-IF4CVWFaUw==": { - "display_string": [ - "\ue020SATHISHmax1206" - ], - "profiles": [], - "name": "\ue020SATHISHmax1206", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-08 13:48:19", - "registerOn": 1670203021.4523964, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203021.452397, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670203021.4524057, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670203021.4524074, - "lastIP": "dvvb\u007fn~~igaje~", - "deviceUUID": "763443dfb1db3637f87a372db533bacf0efd791e" - }, - "pb-IF4BV1U9LA==": { - "display_string": [ - "\ue020praneshbhat14051998" - ], - "profiles": [], - "name": "\ue020praneshbhat14051998", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-13 16:28:02", - "registerOn": 1670203708.8609905, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203708.8609912, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670203708.8610024, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670203708.8610039, - "lastIP": "azo~{m~}m~~jg", - "deviceUUID": "d1c42c757a26b1250c14b6c6de3318bb6da18f52" - }, - "pb-IF4tVVIDCw==": { - "display_string": [ - "\ue063anshudec14" - ], - "profiles": [], - "name": "\ue063anshudec14", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-22 22:57:52", - "registerOn": 1670203795.9650452, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203795.9650457, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670203795.9650557, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670203795.9650564, - "lastIP": "a}m~~n~~iaaj", - "deviceUUID": "91c7dbd6bca3d7280efec88e4154d83b80c67f97" - }, - "pb-IF5SVxkkLQ==": { - "display_string": [ - "\ue020gokulse7en" - ], - "profiles": [], - "name": "\ue020gokulse7en", - "isBan": false, - "isMuted": false, - "accountAge": "2018-08-19 18:00:10", - "registerOn": 1670203919.4198425, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203919.4198434, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670203919.4198532, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670203919.4198542, - "lastIP": "dvvcxvb}i~~he", - "deviceUUID": "2e6457a7d513f195ac4e456baf9c74d33b4b5dc8" - }, - "pb-IF40U0oYBg==": { - "display_string": [ - "\ue063Socrates43" - ], - "profiles": [], - "name": "\ue063Socrates43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 04:59:09", - "registerOn": 1670203946.553916, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203946.5539167, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269389.5119388, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670269389.5119402, - "lastIP": "b\u007fh~wo~}iaajaz", - "deviceUUID": "888ef94e3fc5880d0f37456c7b4527075b0cd968" - }, - "pb-IF4HU0wiCQ==": { - "display_string": [ - "\ue020AgreeableSemblance50" - ], - "profiles": [], - "name": "\ue020AgreeableSemblance50", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 19:45:08", - "registerOn": 1670203971.5977027, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203971.5977032, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670203971.5977118, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670203971.597713, - "lastIP": "a~o~va~}hiaiiy", - "deviceUUID": "9f4c54ebaabf82a040ecea4e086c012ca9e28586" - }, - "pb-IF4RU0EbUA==": { - "display_string": [ - "\ue030Android63276533" - ], - "profiles": [], - "name": "\ue030Android63276533", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-12 14:20:13", - "registerOn": 1670204401.1261804, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670204401.126181, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670204401.1261885, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670217872.7436073, - "lastIP": "b}k~}m~yk~~lf", - "deviceUUID": "ffdac6082f24e8138cda55d2b295e502c27b0d49", - "cMsgCount": 0, - "lastMsgTime": 1670219146.0837212, - "lastMsg": "whats with people hatin using bombs the games called bombsquad", - "cSameMsg": 0 - }, - "pb-IF4SU09eKw==": { - "display_string": [ - "\ue020SharpIcthyosaur49205" - ], - "profiles": [], - "name": "\ue020SharpIcthyosaur49205", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 18:51:12", - "registerOn": 1670205340.167161, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670205340.167162, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670205340.1671715, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670205340.1671727, - "lastIP": "a~h~zl~~mdaaa", - "deviceUUID": "0832031cc31659343ba666382c167f3884424438" - }, - "pb-IF4MU0wxNQ==": { - "display_string": [ - "\ue063GrandComma" - ], - "profiles": [], - "name": "\ue063GrandComma", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 06:24:05", - "registerOn": 1670205779.5616522, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670205779.561653, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670205779.561664, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670205779.5616653, - "lastIP": "awa~}hcaje}vb|i", - "deviceUUID": "46475493b2c3d49b5d960779a137c614e8287176" - }, - "pb-IF4dU2YgFg==": { - "display_string": [ - "\ue020RancidSpecialty27", - "\ue030Android63823303", - "\ue030Android63823291", - "\ue030Android63823319", - "\ue030Android63823332" - ], - "profiles": [], - "name": "\ue020RancidSpecialty27", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-20 12:53:24", - "registerOn": 1670205825.7090957, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670205825.7090964, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670205825.7091148, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670205825.709116, - "lastIP": "a~m~~ndaja~vb{n", - "deviceUUID": "92d9296de90f9cd3d0798e0a658bdd0a390b0e6b" - }, - "pb-IF49U3YpAA==": { - "display_string": [ - "\ue020HArSH463" - ], - "profiles": [], - "name": "\ue020HArSH463", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-20 18:05:15", - "registerOn": 1670206063.5226865, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206063.522687, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307408.2160504, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307408.2160518, - "lastIP": "azo~|j~~hiaigy", - "deviceUUID": "2d9f05b0d6be639d0bccbafb8b00e9b785662e57" - }, - "pb-IF5XU1EvNw==": { - "display_string": [ - "\ue020LegibleAgility44" - ], - "profiles": [], - "name": "\ue020LegibleAgility44", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 09:35:55", - "registerOn": 1670206081.6254022, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206081.6254027, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206081.6254113, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670206081.625412, - "lastIP": "d}va~i~~k~~oc", - "deviceUUID": "4ef843047449a9812ef4d3bacb281781e12598c5" - }, - "pb-IF4jVUctHQ==": { - "display_string": [ - "\ue020vimal2680" - ], - "profiles": [], - "name": "\ue020vimal2680", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-24 20:58:44", - "registerOn": 1670206311.4067304, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206311.4067314, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254143.3070805, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670266224.386989, - "lastIP": "dvvc}va{m~}mc", - "deviceUUID": "19affb5b0fde1722f6f593df0cf6aca45d2f3e8a", - "cMsgCount": 0, - "lastMsgTime": 1670266903.656488, - "lastMsg": "ckd pk aaya", - "cSameMsg": 0 - }, - "pb-IF4eU0s9Pw==": { - "display_string": [ - "\ue020FearlessCamel86718" - ], - "profiles": [], - "name": "\ue020FearlessCamel86718", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 14:41:52", - "registerOn": 1670206342.5204551, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206342.5204556, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206342.5204635, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670222658.961414, - "lastIP": "a~a~vl~yo~vo", - "deviceUUID": "3fdc73fe2725eb7b0ecaa7730889ee7add9991c8" - }, - "pb-IF48U0wiKw==": { - "display_string": [ - "\ue020FortuitousManeuver41" - ], - "profiles": [], - "name": "\ue020FortuitousManeuver41", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 21:21:36", - "registerOn": 1670206364.604718, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206364.604719, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206364.6047294, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670206364.6047304, - "lastIP": "a\u007fk~~oiaiiyva\u007fn", - "deviceUUID": "d2d3f81fb2fa06a55fd6e6dff01e8e67fc6f5ff3" - }, - "pb-IF4VVBYtVg==": { - "display_string": [ - "\ue063Unshakabl4", - "\ue030Android33358855" - ], - "profiles": [], - "name": "\ue063Unshakabl4", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-20 14:51:37", - "registerOn": 1670206405.7893627, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206405.7893631, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206405.7893734, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670206405.789374, - "lastIP": "a~j~}ieaneajb", - "deviceUUID": "ba9cecee08162a19cb532ce724f4d8f4750cf3a5" - }, - "pb-IF5VUhQYUw==": { - "display_string": [ - "\ue063henricoBS" - ], - "profiles": [], - "name": "\ue063henricoBS", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-13 18:39:38", - "registerOn": 1670206506.4081454, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206506.408146, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206506.4081552, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670206506.4081564, - "lastIP": "axh~}leaacaif}", - "deviceUUID": "ab2871ebbb6443e8b25f4ecbabce9eca2393d228" - }, - "pb-IF4AU2kSAQ==": { - "display_string": [ - "\ue063ColderInfl", - "\ue030Android61620310" - ], - "profiles": [], - "name": "\ue063ColderInfl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-02 18:29:03", - "registerOn": 1670206523.1916451, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206523.1916456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206523.1916537, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670206523.1916544, - "lastIP": "d}va\u007fn~~ohanh", - "deviceUUID": "d1bb93dbe4507729d5833e2618873b0addd14084" - }, - "pb-IF4SU3U-Lw==": { - "display_string": [ - "\ue063PsychicalA" - ], - "profiles": [], - "name": "\ue063PsychicalA", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-16 23:43:31", - "registerOn": 1670207098.1655893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670207098.1655898, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254161.3763914, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254161.3763926, - "lastIP": "azj~zo~}keajb\u007f", - "deviceUUID": "cfc1c4b12129b1a294e58e21cc5a154ab5259ca7" - }, - "pb-IF4tUkIlKg==": { - "display_string": [ - "\ue030Android57611965" - ], - "profiles": [], - "name": "\ue030Android57611965", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-20 09:47:30", - "registerOn": 1670207446.2561529, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670207446.2561533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241881.916218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241881.9162195, - "lastIP": "a~o~}ieaj`yva{a", - "deviceUUID": "6c47affd2dca119a304abe6763f029a8b0cc79f0" - }, - "pb-IF4LU0ZTBw==": { - "display_string": [ - "\ue063NoName11978" - ], - "profiles": [], - "name": "\ue063NoName11978", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 11:06:37", - "registerOn": 1670208211.9260342, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208211.9260347, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670208211.9260426, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670208211.9260435, - "lastIP": "a\u007fn~}ifajdzvaxi", - "deviceUUID": "d68c17ce96e18e9b564af6e66534cd0ea39d9622" - }, - "pb-IF4gV1gCMQ==": { - "display_string": [ - "\ue020EliteWallaby35692" - ], - "profiles": [], - "name": "\ue020EliteWallaby35692", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-30 18:38:49", - "registerOn": 1670208744.8268719, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208744.8268726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306335.0330098, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306335.0330107, - "lastIP": "dvvc}vaza~~oa", - "deviceUUID": "99be2477367eb7f79e4d5b7bce090b3a5917a0d4", - "cMsgCount": 0, - "lastMsgTime": 1670307879.9956932, - "lastMsg": "insta I'd :atharvapawaskar_000", - "cSameMsg": 0 - }, - "pb-IF4TV3c_UQ==": { - "display_string": [ - "\ue063Brownmunde" - ], - "profiles": [], - "name": "\ue063Brownmunde", - "isBan": false, - "isMuted": false, - "accountAge": "2019-01-07 18:16:40", - "registerOn": 1670208761.8902287, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208761.8902292, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670208761.8902378, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670208761.8902385, - "lastIP": "dvvcyvawm~~je", - "deviceUUID": "0a9c5a8347e1de2df3534e40839cf22de21d93aa" - }, - "pb-IF5cU1E7Ig==": { - "display_string": [ - "\ue030Android63976036" - ], - "profiles": [], - "name": "\ue030Android63976036", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 13:51:27", - "registerOn": 1670208793.0052679, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208793.0052686, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670208793.0052762, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670209816.3350446, - "lastIP": "a~h~}jgajcaje~", - "deviceUUID": "88a490162e758d98ebe4b4921f4103f13d9791bc" - }, - "pb-LV4FAxcNBxBGXVtIQhAEUlxKGA==": { - "display_string": [ - "\ue020DroopyGriffin227", - "\ue030Android13950847", - "\ue030Android52421760" - ], - "profiles": [], - "name": "\ue063DroopyGrif", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-30 21:34:00", - "registerOn": 1670208826.414777, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208826.4147778, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250751.3987823, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670250751.3987832, - "lastIP": "azo~|l~~jbalh", - "deviceUUID": "342b57be5f15a4ad0025572d776cace9b5d0a71c" - }, - "pb-IF4pUxUDDQ==": { - "display_string": [ - "\ue063CulturalJa" - ], - "profiles": [], - "name": "\ue063CulturalJa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-14 19:12:56", - "registerOn": 1670208882.3057125, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208882.3057132, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670252049.167031, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670259246.182633, - "lastIP": "a\u007fk~~`dajcvva}k", - "deviceUUID": "cc3a9c5f6e27469425aac02a469f1370e9945e3d", - "cMsgCount": 0, - "lastMsgTime": 1670252049.1669688, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4JU0gtLA==": { - "display_string": [ - "\ue063TiredBrai2", - "\ue030Android53619054" - ], - "profiles": [], - "name": "\ue063TiredBrai2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 23:19:18", - "registerOn": 1670208999.7007556, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208999.7007565, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670208999.7007663, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670208999.7007675, - "lastIP": "d}va~i~}haakf", - "deviceUUID": "758100926e8aebd9f50ce724f5fe7d40114f3fc0", - "cMsgCount": 2, - "lastMsgTime": 1670209635.9368687, - "lastMsg": "see", - "cSameMsg": 0 - }, - "pb-IF40VREoKw==": { - "display_string": [ - "\ue030Android45452286" - ], - "profiles": [], - "name": "\ue030Android45452286", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-09 08:48:01", - "registerOn": 1670209175.3151407, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209175.3151412, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670302751.697148, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670302751.6971495, - "lastIP": "awk~~oaajgaih", - "deviceUUID": "\u0015R\b\u0007UMWX\u0004S\u0017VZYP\u0011XTQWLRXWQ" - }, - "pb-IF4tU24-Kw==": { - "display_string": [ - "\ue030Android62079867" - ], - "profiles": [], - "name": "\ue030Android62079867", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 20:27:57", - "registerOn": 1670209198.4533582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209198.4533587, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209198.4533684, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209198.4533691, - "lastIP": "b}k~~`gaibzvb|l", - "deviceUUID": "fd963c6c84761c0d1d23d10116681cb3ed5d180f" - }, - "pb-IF4VVFIREg==": { - "display_string": [ - "\ue063Antibioti8" - ], - "profiles": [], - "name": "\ue063Antibioti8", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-10 01:53:51", - "registerOn": 1670209261.7040546, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209261.7040553, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209261.7040648, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209261.704066, - "lastIP": "azh~~hgaj`{vax`", - "deviceUUID": "8bfab885957a8123fdc4ed54914d9ef4001bec05" - }, - "pb-IF4zU3chAg==": { - "display_string": [ - "\ue020DaringQuotation17" - ], - "profiles": [], - "name": "\ue020DaringQuotation17", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-24 12:22:19", - "registerOn": 1670209277.7931867, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209277.7931871, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209277.7931972, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209277.793198, - "lastIP": "a\u007fn~}iaajbzvbz", - "deviceUUID": "85d3cccbf8da2726ede469442f687183befb110d", - "cMsgCount": 0, - "lastMsgTime": 1670209499.5314763, - "lastMsg": "the vidiya payalae", - "cSameMsg": 0 - }, - "pb-IF5XU00EDA==": { - "display_string": [ - "\ue063ElectiveEa" - ], - "profiles": [], - "name": "\ue063ElectiveEa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-05 18:56:05", - "registerOn": 1670209428.535042, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209428.5350425, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295738.2726767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295738.272678, - "lastIP": "hzva{h~}vb", - "deviceUUID": "85ff9eab1e4c24ed89a8146ad4664bb092a95fe2" - }, - "pb-IF42U047LA==": { - "display_string": [ - "\ue063InvidiousP" - ], - "profiles": [], - "name": "\ue063InvidiousP", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 22:23:44", - "registerOn": 1670209439.3423843, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209439.3423848, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209439.342394, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209439.3423955, - "lastIP": "awa~~nbaieaic", - "deviceUUID": "a35d228e9e1cbd9b6bb906ba9e8adef6e15e716c" - }, - "pb-IF5QU1I4Pw==": { - "display_string": [ - "\ue063Relentles6" - ], - "profiles": [], - "name": "\ue063Relentles6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 02:30:24", - "registerOn": 1670209635.0177755, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209635.0177765, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209635.0177858, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209635.017787, - "lastIP": "axm~~ofaogaie|", - "deviceUUID": "59600ef6e10c6e500e00bccd6be2b693ee25096d" - }, - "pb-IF4HU3pSKA==": { - "display_string": [ - "\ue020SonorousManager14542" - ], - "profiles": [], - "name": "\ue020SonorousManager14542", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-05 13:00:51", - "registerOn": 1670209675.1301246, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209675.1301248, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209675.1301343, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209859.479255, - "lastIP": "a\u007fn~}ifajd\u007fva\u007fm", - "deviceUUID": "3e77c84887ea919f37f4da1b812cc33eb1598270" - }, - "pb-IF48U0kZJg==": { - "display_string": [ - "\ue020UnplannedReward53" - ], - "profiles": [], - "name": "\ue020UnplannedReward53", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-27 17:07:04", - "registerOn": 1670209869.871095, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209869.8710957, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209869.8711042, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670209879.5369675, - "lastIP": "bxvf|vb|m~}h", - "deviceUUID": "8ea84b9f7c3bac7bd72e6d4dff8110e2c9c70d7d" - }, - "pb-IF4BU09dUg==": { - "display_string": [ - "\ue030Android63974931" - ], - "profiles": [], - "name": "\ue030Android63974931", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 09:05:12", - "registerOn": 1670209949.081315, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209949.0813155, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209949.0814724, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209949.0814734, - "lastIP": "cyvhzva\u007fo~}id", - "deviceUUID": "c16440ed3e1bd5de591ef9063024c8e6049fea0f" - }, - "pb-IF4NVWMEXA==": { - "display_string": [ - "\ue020mrdhruv09" - ], - "profiles": [], - "name": "\ue020mrdhruv09", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-28 08:56:22", - "registerOn": 1670209959.1384113, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209959.1384118, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209959.13842, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209959.1384213, - "lastIP": "azo~|j~|m~}ma", - "deviceUUID": "42cd7aa48cb95368a6cc4d70be6dbe105b9462dc" - }, - "pb-IF49U2otCQ==": { - "display_string": [ - "\ue020DastardlyVortex59872" - ], - "profiles": [], - "name": "\ue020DastardlyVortex59872", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-04 08:42:51", - "registerOn": 1670210009.6987329, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210009.6987336, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210009.6987443, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210009.6987453, - "lastIP": "a\u007fk~~kcaib\u007fva{n", - "deviceUUID": "1c31ff1fbb254027f022a5cedf67cd212f44782a" - }, - "pb-IF4GU08eVA==": { - "display_string": [ - "\ue030Android63984495" - ], - "profiles": [], - "name": "\ue030Android63984495", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 18:19:56", - "registerOn": 1670210054.763385, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210054.7633858, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210054.7633955, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210054.763397, - "lastIP": "fvvayh~|i~z", - "deviceUUID": "e2951b29503caa89f889aab4cd8cd3cf5bdfafce" - }, - "pb-IF4zVUQEUw==": { - "display_string": [ - "\ue030Android51304540" - ], - "profiles": [], - "name": "\ue030Android51304540", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-09 13:25:38", - "registerOn": 1670210396.5905266, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210396.590527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210396.5905366, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210396.5905378, - "lastIP": "dvva{l~}khak`", - "deviceUUID": "27af06f53aea7a7691254ece64d101e75f7cc146" - }, - "pb-IF5TVU5aMA==": { - "display_string": [ - "\ue020Divaagarhockeyplayer" - ], - "profiles": [], - "name": "\ue020Divaagarhockeyplayer", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-21 13:02:43", - "registerOn": 1670210583.331977, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210583.3319774, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210583.3319852, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670210727.5645547, - "lastIP": "azo~zi~~abaia{", - "deviceUUID": "bdef5a480ebaeb581acbb098bd4b4ab8603abbd2" - }, - "pb-IF4xU0cAHA==": { - "display_string": [ - "\ue020InSaneHarsh1726", - "\ue020Harshkhabde140", - "\ue030Android63927875" - ], - "profiles": [], - "name": "\ue020InSaneHarsh1726", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 13:18:49", - "registerOn": 1670210600.384467, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210600.3844674, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210600.3844767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210600.3844774, - "lastIP": "azj~zo~}`~~jb", - "deviceUUID": "bd4d5ec98ceeed344e312952bd66b119fa7d5efc" - }, - "pb-IF4oUxYTCw==": { - "display_string": [ - "\ue020ShockPark152" - ], - "profiles": [], - "name": "\ue020ShockPark152", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-20 21:06:43", - "registerOn": 1670210682.677213, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210682.6772134, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210682.677223, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210682.6772237, - "lastIP": "azj~zo~}jcaihz", - "deviceUUID": "4fdbc382da114d69e7e8114f5d510222a03ab96f" - }, - "pb-IF5UUnUpMw==": { - "display_string": [ - "\ue020CoincidentalBelt39" - ], - "profiles": [], - "name": "\ue020CoincidentalBelt39", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-13 15:04:52", - "registerOn": 1670210684.6924808, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210684.6924813, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210684.6924896, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210684.6924906, - "lastIP": "axm~~ofamfamd", - "deviceUUID": "af70a108de6bcbc6dc4ed6e4e78aefe6d9494044" - }, - "pb-IF4QU3kvLg==": { - "display_string": [ - "\ue030Android63096875" - ], - "profiles": [], - "name": "\ue030Android63096875", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-03 12:59:24", - "registerOn": 1670212075.5992491, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212075.5992496, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252924.8042846, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252924.8042865, - "lastIP": "a\u007fn~}j`ai`wvb~n", - "deviceUUID": "a8948e96c7c1ef8dc62074cce06b621a85b5841a" - }, - "pb-IF4oU0khUg==": { - "display_string": [ - "\ue063shrirangam" - ], - "profiles": [], - "name": "\ue063shrirangam", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-26 18:11:33", - "registerOn": 1670212331.2883577, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212331.2883582, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296552.381981, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296552.3819823, - "lastIP": "azo~|l~~h~wo", - "deviceUUID": "c39d2e6cdfa3a78969b5d63978521d254a86ad69" - }, - "pb-IF4NU0s9Ig==": { - "display_string": [ - "\ue020MenialValidation36", - "\ue030Android56307058" - ], - "profiles": [], - "name": "\ue020MenialValidation36", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 20:50:34", - "registerOn": 1670212397.6337645, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212397.6337657, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212397.6337748, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670219613.4783697, - "lastIP": "azo~zi~~h`aka", - "deviceUUID": "0cb9213a4caa572207426ecaa0e643b027987e0a" - }, - "pb-IF4oU004KQ==": { - "display_string": [ - "\ue030Android63888799" - ], - "profiles": [], - "name": "\ue030Android63888799", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 20:54:09", - "registerOn": 1670212418.6012237, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212418.6012247, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300958.0624254, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670300986.1543152, - "lastIP": "a\u007fn~~aea`~}ha", - "deviceUUID": "e6195de22eab0e6d41c74d545e28ed2a1fd6b819" - }, - "pb-IF42U08mNA==": { - "display_string": [ - "\ue063ClimaticFi" - ], - "profiles": [], - "name": "\ue063ClimaticFi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 11:40:15", - "registerOn": 1670212455.7493985, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212455.749399, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212455.7494092, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212455.7494104, - "lastIP": "bxvexvawj~za", - "deviceUUID": "44bc6a51eb3ff62e845e0ec6a47c3a4cf3e1b895" - }, - "pb-IF4pU08BVA==": { - "display_string": [ - "\ue030Android63970828" - ], - "profiles": [], - "name": "\ue030Android63970828", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 19:18:21", - "registerOn": 1670212458.8738706, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212458.873871, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212458.8738801, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212458.873881, - "lastIP": "a\u007fn~}h`aogalb", - "deviceUUID": "c535d3beaedf37efae00768e70bede898a9efdcf" - }, - "pb-IF4-U0Y9KQ==": { - "display_string": [ - "\ue020GracefulFoliage30" - ], - "profiles": [], - "name": "\ue020GracefulFoliage30", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 09:06:27", - "registerOn": 1670212757.2102232, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212757.210224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212757.2102337, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212757.210235, - "lastIP": "dvvazvb{j~~ah", - "deviceUUID": "6fc20ac21f4840ce14b86fc0d5c93e6aa13a3bf7" - }, - "pb-IF4oUxAGPQ==": { - "display_string": [ - "\ue020TejGamerNt" - ], - "profiles": [], - "name": "\ue020TejGamerNt", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-26 11:19:47", - "registerOn": 1670212816.1726687, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212816.1726694, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306678.3188643, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306678.3188658, - "lastIP": "azj~zo~}ieaj`\u007f", - "deviceUUID": "f57f66f318b3e63fa8b311219b51ba198dcaedf7" - }, - "pb-JiNJARFdVEVHXVdHGUJYXVRHFkNWQ1dH": { - "display_string": [ - "\ue063JollyRange", - "\ue030Android8684941" - ], - "profiles": [], - "name": "\ue063Pillain", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-02 11:09:52", - "registerOn": 1670212825.1813996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212825.1814003, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212825.1814084, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670212825.1814094, - "lastIP": "awj~}vg|vawn", - "deviceUUID": "a96d13777134b726d457f814510cf3a29b9b3bb7" - }, - "pb-IF5SU0kcBg==": { - "display_string": [ - "\ue063Monopolis2" - ], - "profiles": [], - "name": "\ue063Monopolis2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 21:46:37", - "registerOn": 1670212907.4636776, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212907.4636781, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212907.463688, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212907.4636889, - "lastIP": "azo~{a~~ldand", - "deviceUUID": "ff1aa486377a8b2b3e643385151468a4e9acb4df" - }, - "pb-IF4KV2lYIw==": { - "display_string": [ - "\ue020Jalindarabhang", - "\ue030Android28829019" - ], - "profiles": [], - "name": "\ue020Jalindarabhang", - "isBan": false, - "isMuted": false, - "accountAge": "2018-10-24 23:02:53", - "registerOn": 1670212908.8116398, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212908.8116403, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212908.8116498, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212908.8116505, - "lastIP": "azj~zo~}hhaicw", - "deviceUUID": "eae05177f2f3a0f0b7004842f87902145a2a6eda" - }, - "pb-IF5UVWk7Aw==": { - "display_string": [ - "\ue063ShamInform" - ], - "profiles": [], - "name": "\ue020ShamInformation21", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-20 20:00:48", - "registerOn": 1670213033.9959471, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213033.9959476, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269868.257833, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670269868.2578342, - "lastIP": "gwvayk~~hiajay", - "deviceUUID": "4ae957168db3fd706d8cedea18be84309f56b2dd", - "cMsgCount": 1, - "lastMsgTime": 1670214256.5457413, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4XU1AvJA==": { - "display_string": [ - "\ue030Android63983529" - ], - "profiles": [], - "name": "\ue030Android63983529", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:07:00", - "registerOn": 1670213157.8638418, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213157.8638425, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670213157.8638513, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670213157.8638523, - "lastIP": "a}i~}a~xo~y`", - "deviceUUID": "abe87a8d2e2ce073d86f1d05bfbf5a91d2a1a6de" - }, - "pb-IF41VRATBA==": { - "display_string": [ - "\ue020GraniteInventor13" - ], - "profiles": [], - "name": "\ue020GraniteInventor13", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-06 13:30:38", - "registerOn": 1670213204.797234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213204.7972348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670213204.7972426, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670213204.7972436, - "lastIP": "a\u007fn~~adaii}vb{h", - "deviceUUID": "eb6add6187cebf529b6a08cf31630925b56adde6" - }, - "pb-JiNJARBbU0dAW1hIEk9YXFFDEkZWQVRC": { - "display_string": [ - "\ue020PureGuacamole85", - "\ue063Dragonking", - "\ue030Android14459814", - "\ue030Android63983713", - "\ue030Android63984396" - ], - "profiles": [], - "name": "\ue020Dragonking464fire", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-22 07:27:03", - "registerOn": 1670213473.6183503, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213473.6183507, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246257.4182472, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246257.4182484, - "lastIP": "a}l~}mcam~~li", - "deviceUUID": "45455da6db46db27b366a60a0efde760801c521d" - }, - "pb-IF4CKEcn": { - "display_string": [ - "\ue063Adversar12" - ], - "profiles": [], - "name": "\ue063Adversar12", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-04 22:36:49", - "registerOn": 1670213689.4067252, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213689.406726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670213689.4067347, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670213689.4067357, - "lastIP": "azj~zo~~afalh", - "deviceUUID": "b67c81cf69d4724ef9ed83c70a3f8a8f7a528f9f" - }, - "pb-IF4CU0oeIA==": { - "display_string": [ - "\ue020SpuriousPresidency5" - ], - "profiles": [], - "name": "\ue020SpuriousPresidency5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 14:09:00", - "registerOn": 1670213870.051851, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213870.0518517, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670213870.051861, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670213870.051862, - "lastIP": "azo~|j~vvaz`", - "deviceUUID": "6d5680756cd98dddb2540ec78c67b44e83ecb45e" - }, - "pb-JiNJARFeXUZAVFlEEkVXUlNDGURXT1hH": { - "display_string": [ - "\ue063Amos101010", - "\ue030Android8834561" - ], - "profiles": [], - "name": "\ue063Amos101010", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-02 12:50:54", - "registerOn": 1670214032.6249008, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214032.6249013, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214032.6249106, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670215080.0938957, - "lastIP": "azo~zi~~haaab", - "deviceUUID": "4061b8980c89cf70109a60ed0ea04d2cf74b9c7c" - }, - "pb-IF5RJ2sR": { - "display_string": [ - "\ue063ShootingBu" - ], - "profiles": [], - "name": "\ue063ShootingBu", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-17 18:06:10", - "registerOn": 1670214040.6884418, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214040.6884427, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214040.6884515, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670214040.6884527, - "lastIP": "dxva~vav`~~na", - "deviceUUID": "822b790677641f085f68026303906669de3780ba" - }, - "pb-IF4vVXQFAw==": { - "display_string": [ - "\ue020ProdigalClassroom31", - "\ue020yash560", - "\ue020UnexplainedFinish14", - "\ue020TitanicArray29", - "\ue030Android50472681" - ], - "profiles": [], - "name": "\ue020UnexplainedFinish14", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-28 14:20:20", - "registerOn": 1670214190.134805, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214190.1348054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214190.1348152, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670214190.134816, - "lastIP": "a\u007fk~}maajbyva{", - "deviceUUID": "ecf85c47eb151b42cf4d43b18df88187914d5f7a" - }, - "pb-IF4SV08HKw==": { - "display_string": [ - "\ue063BadTermina", - "\ue030Android63925894" - ], - "profiles": [], - "name": "\ue020BadTerminator999", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-10 11:12:54", - "registerOn": 1670214199.2782712, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214199.2782717, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242806.7165518, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242806.716553, - "lastIP": "a\u007fk~~`aajbxvb}h", - "deviceUUID": "b79d6a98d56f028d4b5bdefd09447af7f2097344" - }, - "pb-IF4lUhECIQ==": { - "display_string": [ - "\ue063InteriorDu" - ], - "profiles": [], - "name": "\ue063InteriorDu", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-09 15:43:30", - "registerOn": 1670214453.1470776, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214453.147078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214453.1470883, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670214453.1470895, - "lastIP": "dvvc{va~a~wn", - "deviceUUID": "f17b6f3add372ab64cb4e1f0b699e71689fd88c2" - }, - "pb-IF4zU0saEg==": { - "display_string": [ - "\ue030Android63824203" - ], - "profiles": [], - "name": "\ue030Android63824203", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-07 19:17:00", - "registerOn": 1670214522.4060535, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214522.4060545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214522.406063, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670214522.4060638, - "lastIP": "a~h~{l~~jgaiix", - "deviceUUID": "\u0015\u0007\u000fX\u0007CSZT\u0004\u0012\u0003\f\u0003WMR\\QPAYUWPMX" - }, - "pb-IF40UhdaNA==": { - "display_string": [ - "\ue020H\u00caR\u00c7\u00daL\u00c9S", - "\ue030Android54448605" - ], - "profiles": [], - "name": "\ue020H\u00caR\u00c7\u00daL\u00c9S", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-04 22:51:41", - "registerOn": 1670214527.3454735, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214527.3454742, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214527.3454835, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670214527.3454845, - "lastIP": "bxvf|vbzl~w`", - "deviceUUID": "8c9f6d3347b1971938fd8e43d6ff9d9baed039f7", - "cMsgCount": 0, - "lastMsgTime": 1670216663.2467372, - "lastMsg": "\ud83d\udc4b ", - "cSameMsg": 0 - }, - "pb-IF4wU3YdCw==": { - "display_string": [ - "\ue020Ambadykannan7878" - ], - "profiles": [], - "name": "\ue020Ambadykannan7878", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 09:21:47", - "registerOn": 1670214886.7187655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214886.718766, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214886.7187748, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670214886.7187757, - "lastIP": "a\u007fn~}h`aoeame", - "deviceUUID": "e35d28f9b8d15f4791b876309dcdd5319fa91fa2" - }, - "pb-IF48U3FaNQ==": { - "display_string": [ - "\ue063DilatoryHo" - ], - "profiles": [], - "name": "\ue063DilatoryHo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-28 22:13:45", - "registerOn": 1670215071.41463, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215071.4146307, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251509.981233, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251509.9812346, - "lastIP": "a\u007fk~~kiajb\u007fvavk", - "deviceUUID": "1260d346be9016a385ed734f949f474094c2e832", - "cMsgCount": 1, - "lastMsgTime": 1670253317.8400893, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF42U3JfFw==": { - "display_string": [ - "\ue030Android62429587" - ], - "profiles": [], - "name": "\ue030Android62429587", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-03 18:15:02", - "registerOn": 1670215135.7055113, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215135.7055128, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670303409.1750185, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670303873.018432, - "lastIP": "bxvf|ve{vawm", - "deviceUUID": "3627ce60ee96824682854c250b3492005a28966f" - }, - "pb-IF40U0sKFA==": { - "display_string": [ - "\ue020farhathu123" - ], - "profiles": [], - "name": "\ue020farhathu123", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-07 13:27:30", - "registerOn": 1670215140.701797, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215140.7017977, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215140.7018065, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670215152.3837502, - "lastIP": "azo~zi~~mhajcv", - "deviceUUID": "0f64cfc599af73a5113c3d044593c9da1d6b2e86" - }, - "pb-IF4jU00eMA==": { - "display_string": [ - "\ue020BanefulConstancy1924" - ], - "profiles": [], - "name": "\ue020BanefulConstancy1924", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 20:52:47", - "registerOn": 1670215294.28334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215294.2833405, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215294.2833488, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215294.2833498, - "lastIP": "azo~|j~|j~zn", - "deviceUUID": "aebcf939dec62cf28d6b26dd1a9f02f62e58a024" - }, - "pb-IF4TU3MKBA==": { - "display_string": [ - "\ue020HangryRanger89899" - ], - "profiles": [], - "name": "\ue020HangryRanger89899", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-09 12:55:25", - "registerOn": 1670215488.236909, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215488.2369094, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215488.2369177, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215488.2369187, - "lastIP": "a\u007fn~}hfajeald", - "deviceUUID": "2f5052e91046c15abf6a40c7d3b2c814136921e2" - }, - "pb-IF4wU04bAQ==": { - "display_string": [ - "\ue030Android63927749" - ], - "profiles": [], - "name": "\ue030Android63927749", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 16:47:23", - "registerOn": 1670215548.1855423, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215548.185543, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215548.1855533, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670215576.921767, - "lastIP": "azo~|j~}k~~ab", - "deviceUUID": "c2cdd0947b4c3571b2a973d2f360a874d0eca8c1" - }, - "pb-IF4zU04-EQ==": { - "display_string": [ - "\ue030Android63928196" - ], - "profiles": [], - "name": "\ue030Android63928196", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 18:18:44", - "registerOn": 1670215727.869937, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215727.8699374, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215727.8699455, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670216552.6286526, - "lastIP": "azo~|`~~jiamb", - "deviceUUID": "669d431df432690b31940b6f54377ac8aeb6c7c3" - }, - "pb-IF4gU3gnUQ==": { - "display_string": [ - "\ue030Android63017111" - ], - "profiles": [], - "name": "\ue030Android63017111", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-30 10:49:17", - "registerOn": 1670215771.1212344, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215771.121235, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670289069.9263475, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670292344.8639429, - "lastIP": "a|n~~mhai`}vava", - "deviceUUID": "6da86c46af8fa0351a1725d905c795608a624764" - }, - "pb-IF40U0UcFQ==": { - "display_string": [ - "\ue063TricksterH" - ], - "profiles": [], - "name": "\ue063TricksterH", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-07 15:22:38", - "registerOn": 1670215781.1936417, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215781.1936424, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215781.1936517, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215781.1936526, - "lastIP": "bxvc{vbxvazj", - "deviceUUID": "4a0acfbe3d6b0250bed99de0cca9bf8dc9e6bc37" - }, - "pb-IF5cV1YHLg==": { - "display_string": [ - "\ue020RagingAttacker80435" - ], - "profiles": [], - "name": "\ue020RagingAttacker80435", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-06 19:12:39", - "registerOn": 1670215793.4892743, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215793.489275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215793.4892848, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215793.489286, - "lastIP": "a\u007fn~}iaaje|vcz", - "deviceUUID": "77c94c385bdad2a0654295dfc2c226a6089a40a8" - }, - "pb-IF4jIEEY": { - "display_string": [ - "\ue063DarthKille" - ], - "profiles": [], - "name": "\ue063DarthKille", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-25 09:27:28", - "registerOn": 1670216046.2984664, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216046.2984672, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670311273.0922098, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309705.1727512, - "lastIP": "a\u007fn~}ibaia|va~k", - "deviceUUID": "2e3c86c3670eada80ef74c6bc6ec67f37aaec7ec", - "cMsgCount": 0, - "lastMsgTime": 1670313480.1544757, - "lastMsg": "1", - "cSameMsg": 0 - }, - "pb-IF5RUkRcXA==": { - "display_string": [ - "\ue020WalkingBarbarism33" - ], - "profiles": [], - "name": "\ue020WalkingBarbarism33", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-18 19:14:26", - "registerOn": 1670216200.806518, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216200.8065186, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216200.8065283, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670217113.5501418, - "lastIP": "azo~|k~~vawm", - "deviceUUID": "683caee4a4034a0bbfe8ccde3843a53d0d77af1e" - }, - "pb-IF4PU0cTLg==": { - "display_string": [ - "\ue030PC608120" - ], - "profiles": [], - "name": "\ue030PC608120", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-18 16:26:32", - "registerOn": 1670216206.7327578, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216206.7327583, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216206.732768, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670216206.7327688, - "lastIP": "awj~{`~xi~~ah", - "deviceUUID": "ebbb99d6f2c353d4c941e73bcd0ee562759a88e4" - }, - "pb-IF4SU3o5UQ==": { - "display_string": [ - "\ue063WARRIR" - ], - "profiles": [], - "name": "\ue063WARRIR", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-08 08:40:52", - "registerOn": 1670216518.2418184, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216518.2418191, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216518.2418287, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670222844.7630777, - "lastIP": "b}k~}jiaiiyva~l", - "deviceUUID": "07760583a6c6cb479e4b59c394c47128cb5b601f" - }, - "pb-IF4hV1ZTFA==": { - "display_string": [ - "\ue063Pratheeswa" - ], - "profiles": [], - "name": "\ue063Pratheeswa", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-18 13:18:20", - "registerOn": 1670216574.0087125, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216574.008713, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216574.0087218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670216574.0087233, - "lastIP": "d}va\u007fl~~jiaicz", - "deviceUUID": "6ba3d2e7c426bfa1ee0772280b87679d0c99e92c" - }, - "pb-IF4hBFgH": { - "display_string": [ - "\ue063MrDevil", - "\ue020\u14f0\u15e9\u163b\u1572\u163f\u143a\u14f0\u14aa", - "\ue030Android39851562" - ], - "profiles": [], - "name": "\ue063MrDevil", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-07 14:37:30", - "registerOn": 1670216718.509512, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216718.5095127, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306362.1188188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306362.1188202, - "lastIP": "a\u007fk~}m~~niaihy", - "deviceUUID": "c220dfadf48fdacac465ff3a89116f178e3db908", - "cMsgCount": 2, - "lastMsgTime": 1670310472.2932436, - "lastMsg": "chalo bye guys", - "cSameMsg": 0 - }, - "pb-IF4cU04mPw==": { - "display_string": [ - "\ue020EmbryonicHarmony14" - ], - "profiles": [], - "name": "\ue020EmbryonicHarmony14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 21:17:48", - "registerOn": 1670216869.3935142, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216869.393515, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216869.393525, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670216869.3935258, - "lastIP": "awj~ya~~ohaih}", - "deviceUUID": "2ddf7c418977dab3f7df609dc52e014136bfec2a" - }, - "pb-IF4GU0UGCA==": { - "display_string": [ - "\ue063Siddharaj1" - ], - "profiles": [], - "name": "\ue063Siddharaj1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 17:02:41", - "registerOn": 1670217017.7999706, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670217017.7999713, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227724.9944215, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670227724.9944232, - "lastIP": "azo~|j~xk~}lh", - "deviceUUID": "99173424adfabc9d37a511c4d81759f7f1deee57" - }, - "pb-IF5SUxMGAg==": { - "display_string": [ - "\ue063PointyLeo1" - ], - "profiles": [], - "name": "\ue063PointyLeo1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-01 15:10:51", - "registerOn": 1670217318.5163224, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670217318.516323, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670217318.5163324, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670217318.5163333, - "lastIP": "c~vb\u007fh~}khaad", - "deviceUUID": "8c8741c02f1a375d4b3741c978dfd25c4c5a8ae4" - }, - "pb-IF5SUxQJJw==": { - "display_string": [ - "\ue020BruceBat1997" - ], - "profiles": [], - "name": "\ue020BruceBat1997", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-04 07:48:46", - "registerOn": 1670217410.0380058, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670217410.038006, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670217410.0380168, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670217410.0380177, - "lastIP": "azo~zi~~odane", - "deviceUUID": "8bbd910cb7e0e8b48c9c3e608f521484f77c36bb" - }, - "pb-IF4FU0ohEw==": { - "display_string": [ - "\ue020kshitijGaming15" - ], - "profiles": [], - "name": "\ue020kshitijGaming15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 09:20:26", - "registerOn": 1670217457.352635, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670217457.3526354, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308872.016039, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308872.0160398, - "lastIP": "azj~zo~vl~wh", - "deviceUUID": "4dcb4a106b5964b90383ef90986a2214213b306d" - }, - "pb-IF4AV1QqEQ==": { - "display_string": [ - "\ue063CHICKENBOO", - "\ue030Android62068479" - ], - "profiles": [], - "name": "\ue063CHICKENBOO", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-04 15:27:25", - "registerOn": 1670217816.8909585, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670217816.890959, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670303473.4296722, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670303473.4296737, - "lastIP": "awj~ya~}iaajdz", - "deviceUUID": "e2055bf4e71e30e44db214ed6daf8c4d2807cd96", - "cMsgCount": 0, - "lastMsgTime": 1670304655.573821, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4nU3IxEw==": { - "display_string": [ - "\ue063divs2104" - ], - "profiles": [], - "name": "\ue063divs2104", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-03 22:26:54", - "registerOn": 1670218053.7210672, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670218053.7210677, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300796.4922054, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670303657.142302, - "lastIP": "azo~{`~~mfajc", - "deviceUUID": "d770acc77b95b99e6006255842b0c32fee2201de", - "cMsgCount": 0, - "lastMsgTime": 1670303762.57401, - "lastMsg": "tu jaan h ki jaan ki dushman ", - "cSameMsg": 0 - }, - "pb-IF4WU04ENQ==": { - "display_string": [ - "\ue020HourlyTreaty30", - "\ue030Android63939544" - ], - "profiles": [], - "name": "\ue020HourlyTreaty30", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 09:15:33", - "registerOn": 1670218264.6036, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670218264.603601, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670218264.6036093, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670218264.6036103, - "lastIP": "a\u007fn~~abajbxvax`", - "deviceUUID": "040f573333f13075c1d29a5aa45404a9a094c01c", - "cMsgCount": 0, - "lastMsgTime": 1670218486.4890654, - "lastMsg": "op", - "cSameMsg": 0 - }, - "pb-IF4PUkdbFw==": { - "display_string": [ - "\ue020ResourcefulBear38", - "\ue030Android57711511" - ], - "profiles": [], - "name": "\ue020ResourcefulBear38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-07 12:08:28", - "registerOn": 1670218740.830592, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670218740.8305924, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670218740.8306022, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670218740.8306034, - "lastIP": "dxviam~~ka", - "deviceUUID": "1a9f5aa517ea1bb68deb2d8cf1058f22308d0688" - }, - "pb-IF4CU04ePQ==": { - "display_string": [ - "\ue063AsteroidBo" - ], - "profiles": [], - "name": "\ue063AsteroidBo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 09:27:40", - "registerOn": 1670219087.6891391, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219087.68914, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242647.1257184, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242647.1257198, - "lastIP": "a~o~~afaid{vbzk", - "deviceUUID": "64e9e223bb60cf6adff3cf10896b12efd187832f" - }, - "pb-IF4dVU4xVg==": { - "display_string": [ - "\ue020Thephenomenal9903" - ], - "profiles": [], - "name": "\ue020Thephenomenal9903", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-04 20:07:36", - "registerOn": 1670219160.0008068, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219160.0008075, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219160.000814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219160.000815, - "lastIP": "azo~|l~~miaiby", - "deviceUUID": "d35f408ae362cc6161d69785c5d3ea1701e43fe5" - }, - "pb-IF4LUk0FCQ==": { - "display_string": [ - "\ue063VidhyanFal" - ], - "profiles": [], - "name": "\ue063VidhyanFal", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-08 09:56:37", - "registerOn": 1670219267.3571446, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219267.3571453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670294668.5613804, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670303838.8790617, - "lastIP": "azj~zo~}kcajbv", - "deviceUUID": "c7281055c5d01de57fe0f5a250bd68f28ec93c55", - "cMsgCount": 0, - "lastMsgTime": 1670295233.9148583, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF48VBcFEw==": { - "display_string": [ - "\ue063kutty1012" - ], - "profiles": [], - "name": "\ue063kutty1012", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-28 21:53:20", - "registerOn": 1670219348.6881964, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219348.688197, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219348.6882071, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219348.6882079, - "lastIP": "dvvb\u007fl~~ihaiaz", - "deviceUUID": "7e5ea53ca2d28ec7361f139ed1f1d435f394a29a" - }, - "pb-IF4vU08YEA==": { - "display_string": [ - "\ue063BiornIrons" - ], - "profiles": [], - "name": "\ue063BiornIrons", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 15:02:13", - "registerOn": 1670219366.0444133, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219366.0444143, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219366.0444236, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219366.0444248, - "lastIP": "dvvc{vf|vaym", - "deviceUUID": "a8076219bde97d1f917ca59808cbc058cc13fd25" - }, - "pb-IF4FU3UmHw==": { - "display_string": [ - "\ue020\u1d3f\u02e2\u13f4\u13a1\u13aa\u019d\u13a0" - ], - "profiles": [], - "name": "\ue020\u1d3f\u02e2\u13f4\u13a1\u13aa\u019d\u13a0", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-17 18:47:52", - "registerOn": 1670219412.987712, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219412.9877126, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219412.987722, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219412.987723, - "lastIP": "d}va\u007f`~~afaibz", - "deviceUUID": "f4f5a63f76c0fce5e665d0097338afb8e21aaca9" - }, - "pb-IF4yU0omIg==": { - "display_string": [ - "\ue063RollingVor" - ], - "profiles": [], - "name": "\ue063RollingVor", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-31 21:17:10", - "registerOn": 1670219652.9270635, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219652.9270647, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219652.9270737, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219652.927075, - "lastIP": "azo~{`~~kaajd|", - "deviceUUID": "7325f59153e0d2ca260538cdbde7c94dbf996ad3" - }, - "pb-IF4nUnEHVg==": { - "display_string": [ - "\ue020HacktasticCadet89388" - ], - "profiles": [], - "name": "\ue020HacktasticCadet89388", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-05 13:41:01", - "registerOn": 1670219774.3369155, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219774.3369162, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219774.336924, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670220186.840861, - "lastIP": "dvvcyvb~h~~ma", - "deviceUUID": "de5347398ff949bf2b9e20d90830dae251c23b2b", - "cMsgCount": 1, - "lastMsgTime": 1670220357.990431, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4lU08FJA==": { - "display_string": [ - "\ue030Android63983164" - ], - "profiles": [], - "name": "\ue030Android63983164", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 13:46:14", - "registerOn": 1670219776.3333168, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219776.3333173, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219776.333327, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219776.3333282, - "lastIP": "a\u007fn~~aeaia|va\u007fa", - "deviceUUID": "dcf18d29ab4c36279d335b7f4030233bad15316c" - }, - "pb-IF4gU048KQ==": { - "display_string": [ - "\ue020lolisoh640", - "\ue030Android63953042" - ], - "profiles": [], - "name": "\ue020lolisoh640", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 16:02:13", - "registerOn": 1670220081.6985872, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220081.6985874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670303214.4503963, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670303214.4503977, - "lastIP": "dvvcyvb~k~~k", - "deviceUUID": "b30b1cde3d6ee7ec7e736cf2d40b37a39fbb1ae2", - "cMsgCount": 0, - "lastMsgTime": 1670235183.292864, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4pU0gvEQ==": { - "display_string": [ - "\ue020AudaciousCombat79594" - ], - "profiles": [], - "name": "\ue020AudaciousCombat79594", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-17 23:03:42", - "registerOn": 1670220092.024401, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220092.0244014, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220092.0244107, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220092.0244117, - "lastIP": "a\u007fn~}jbaoaaja}", - "deviceUUID": "fa5441c126ca56a31774e7ba5626c788979abdc3" - }, - "pb-IF5VUlYjNw==": { - "display_string": [ - "\ue063Immeasura8" - ], - "profiles": [], - "name": "\ue063Immeasura8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-30 10:12:42", - "registerOn": 1670220141.9891405, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220141.989141, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229460.2209723, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229460.2209735, - "lastIP": "dvvcyvb~a~}hf", - "deviceUUID": "e79e19a1d5c68612efe471fa7d64f51ee682ba58", - "cMsgCount": 1, - "lastMsgTime": 1670220234.9745123, - "lastMsg": "booster lgwalo sb", - "cSameMsg": 0 - }, - "pb-IF4lU045AQ==": { - "display_string": [ - "\ue063MetalEel46" - ], - "profiles": [], - "name": "\ue063MetalEel46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 15:30:20", - "registerOn": 1670220259.464167, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220259.4641678, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220259.464178, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220259.4641793, - "lastIP": "eaif\u007fvd~vb~n", - "deviceUUID": "16569a3fba3fd0df8b7d56d8c929148dd36c753d" - }, - "pb-IF4PV24yPA==": { - "display_string": [ - "\ue063Agzx2244", - "\ue030Android48295628", - "\ue030Android50558008", - "\ue030PC351631", - "\ue030Android50407500" - ], - "profiles": [], - "name": "\ue063Agzx2244", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-27 10:21:40", - "registerOn": 1670220371.0777698, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220371.0777702, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220371.077779, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220371.0777798, - "lastIP": "a\u007fn~}hgajazvbzm", - "deviceUUID": "e14daa83663610399fd51ea00d341640044f94f0", - "cMsgCount": 0, - "lastMsgTime": 1670221292.9061713, - "lastMsg": "kro 1 sab", - "cSameMsg": 0 - }, - "pb-IF4cU08HKg==": { - "display_string": [ - "\ue063NativeEmpi" - ], - "profiles": [], - "name": "\ue063NativeEmpi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 22:38:41", - "registerOn": 1670220387.9813507, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220387.9813511, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220387.9813645, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220387.9813652, - "lastIP": "a\u007fj~}liam~|n", - "deviceUUID": "6f68f43e342dc9302f971a369736634f05c1c0bd" - }, - "pb-IF5WUxQgVw==": { - "display_string": [ - "\ue020MonocledRemainder37" - ], - "profiles": [], - "name": "\ue020MonocledRemainder37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-03 14:46:49", - "registerOn": 1670220558.6580849, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220558.6580856, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220558.6580951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220558.6580963, - "lastIP": "azo~{l~~keaif{", - "deviceUUID": "ed45cbd10c17e8d36b274d0820f8b35e9977b560" - }, - "pb-IF4PU08cFA==": { - "display_string": [ - "\ue063hddibduxj2" - ], - "profiles": [], - "name": "\ue063hddibduxj2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 10:54:00", - "registerOn": 1670220669.0910227, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220669.0910237, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220669.0910335, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670221009.3778722, - "lastIP": "dvvb|o~~j~z`", - "deviceUUID": "ddbf33686fa8a5089f7cd88b6ff00ecb8c601591" - }, - "pb-IF4MU08zBg==": { - "display_string": [ - "\ue063PersonalAc" - ], - "profiles": [], - "name": "\ue063PersonalAc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 12:36:48", - "registerOn": 1670220698.6773582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220698.6773589, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220698.6773682, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220698.677369, - "lastIP": "a~i~~jeaj`vvb\u007fo", - "deviceUUID": "5a888bbd968ee5a07e5893491abfc11f0fe4a176" - }, - "pb-IF4UVGg8KQ==": { - "display_string": [ - "\ue063LionAlpha7" - ], - "profiles": [], - "name": "\ue020LionAlpha7998", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-25 12:34:17", - "registerOn": 1670220944.3041394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220944.3041396, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309125.967552, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670305974.6479957, - "lastIP": "azo~zh~\u007fva}n", - "deviceUUID": "8368e55397365fe31285451f09f669007e570a51", - "cMsgCount": 0, - "lastMsgTime": 1670309148.2173471, - "lastMsg": "1", - "cSameMsg": 0 - }, - "pb-IF4PU0hcUg==": { - "display_string": [ - "\ue020ExpensiveSampling66" - ], - "profiles": [], - "name": "\ue020ExpensiveSampling66", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 20:15:12", - "registerOn": 1670221150.3721857, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221150.3721862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670221150.3721948, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670221150.3721964, - "lastIP": "azo~{n~~h`aibv", - "deviceUUID": "23fde69afa91374a867fba140f0a2d26162721ab" - }, - "pb-IF4WUhk7LA==": { - "display_string": [ - "\ue020Bryanfurythemaster" - ], - "profiles": [], - "name": "\ue020Bryanfurythemaster", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-15 09:27:07", - "registerOn": 1670221152.20959, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221152.2095907, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226250.4327168, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670226275.5273476, - "lastIP": "a\u007fk~~i`aj`ale", - "deviceUUID": "f635a06a0d6da016b4c98adf268cde1304f60e8a" - }, - "pb-IF4QVGYMKg==": { - "display_string": [ - "\ue020shrey19654" - ], - "profiles": [], - "name": "\ue020shrey19654", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-17 23:36:03", - "registerOn": 1670221189.3377929, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221189.3377934, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306015.81715, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306015.8171515, - "lastIP": "axi~xn~wi~~jf", - "deviceUUID": "b0c6921dbf3a4dd86b20da6cbae55ac353cb7b0d", - "cMsgCount": 0, - "lastMsgTime": 1670239836.4692621, - "lastMsg": "op", - "cSameMsg": 0 - }, - "pb-IF4eVGc7Cw==": { - "display_string": [ - "\ue063LIONHUNTER" - ], - "profiles": [], - "name": "\ue063LIONHUNTER", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-19 13:49:23", - "registerOn": 1670221201.400529, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221201.4005296, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670264202.184763, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670264202.1847644, - "lastIP": "axi~xn~wi~~jf", - "deviceUUID": "7e2925fb16ec0423a42113da27b7c67e2c529058", - "cMsgCount": 0, - "lastMsgTime": 1670268080.038518, - "lastMsg": "marka hota tho kb ka mar deta", - "cSameMsg": 0 - }, - "pb-IF4MU08lCQ==": { - "display_string": [ - "\ue063lodhipro17" - ], - "profiles": [], - "name": "\ue063lodhipro17", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 13:04:15", - "registerOn": 1670221377.0058658, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221377.0058665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670221377.005912, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670221377.005913, - "lastIP": "dxvb{o~}ifakd", - "deviceUUID": "4fd2c79d2783c7590e50a85b2de79a04e46f61d6" - }, - "pb-IF4FVVIBHQ==": { - "display_string": [ - "\ue030Android52891885" - ], - "profiles": [], - "name": "\ue030Android52891885", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-25 20:06:30", - "registerOn": 1670221863.5160656, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221863.5160663, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670221863.516075, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670221863.5160758, - "lastIP": "a\u007fk~~j`aj`wvfv", - "deviceUUID": "\u0015T\tQ\u0002LT\f\u0005\u0007\u0017V\u000bPRC\u0004ZTULUYWTB" - }, - "pb-IF5TU09ZCQ==": { - "display_string": [ - "\ue030Android63868938" - ], - "profiles": [], - "name": "\ue030Android63868938", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 10:42:58", - "registerOn": 1670222018.742249, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222018.7422495, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222018.7422566, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670222018.7422578, - "lastIP": "f~vbaiexvcz", - "deviceUUID": "\u0015" - }, - "pb-IF40VUE9Kw==": { - "display_string": [ - "\ue063RedheadedV" - ], - "profiles": [], - "name": "\ue063RedheadedV", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-19 11:05:56", - "registerOn": 1670222082.0227785, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222082.0227795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222082.0227883, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670222909.0106921, - "lastIP": "awo~~`iajdwva~m", - "deviceUUID": "e789a1f4751dd6c53375cd93969fc024b831a160" - }, - "pb-IF49UxYgIA==": { - "display_string": [ - "\ue020TruthfulSustenance18" - ], - "profiles": [], - "name": "\ue020TruthfulSustenance18", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-19 10:41:58", - "registerOn": 1670222185.8033085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222185.803309, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301800.1507528, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301800.150754, - "lastIP": "bxvf}va\u007fva\u007fo", - "deviceUUID": "a80b0ea0c733f2966759c243d6855824e5116b80" - }, - "pb-IF5WVRUJUQ==": { - "display_string": [ - "\ue020FragrantRookie95898", - "\ue030Android42535153" - ], - "profiles": [], - "name": "\ue020FragrantRookie95898", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-24 19:01:16", - "registerOn": 1670222408.4347453, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222408.434746, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222408.4347553, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670222457.1537192, - "lastIP": "dvva{vayo~~hf", - "deviceUUID": "0a77ea88569f9db376684fed0cd5b19239faeb4f" - }, - "pb-IF4MU0ReEA==": { - "display_string": [ - "\ue063RoyalOwl79", - "\ue030Android63988366" - ], - "profiles": [], - "name": "\ue063RoyalOwl79", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-26 13:29:02", - "registerOn": 1670222628.1899621, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222628.1899629, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299113.489025, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299113.489026, - "lastIP": "azo~{n~~oaajby", - "deviceUUID": "6a895c7e6b6e7eeaed67ef25decfaaae72bb4845" - }, - "pb-IF4WU05cNA==": { - "display_string": [ - "\ue020mrsaifuuuu" - ], - "profiles": [], - "name": "\ue020mrsaifuuuu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 11:56:53", - "registerOn": 1670222651.2537246, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222651.253726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222651.2537346, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670222651.2537358, - "lastIP": "azo~{m~~ieaj`w", - "deviceUUID": "7e0251a647f979bfe438b46bf3cd79eb0deda0ff" - }, - "pb-IF43UxUHMw==": { - "display_string": [ - "\ue030Android60516479" - ], - "profiles": [], - "name": "\ue030Android60516479", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-16 15:43:18", - "registerOn": 1670222714.5488358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222714.5488365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232448.8958306, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232448.895832, - "lastIP": "b}k~~`eaib\u007fvb}j", - "deviceUUID": "\u0015\u0004\u000fURMU[\u0002\u0007F\u0007\u000fP\u0002@" - }, - "pb-IF4nU08oIA==": { - "display_string": [ - "\ue063LightDestr" - ], - "profiles": [], - "name": "\ue063LightDestr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 17:41:56", - "registerOn": 1670222824.1744423, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222824.1744428, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222824.17445, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670222974.2591498, - "lastIP": "b}k~~oha`faid{", - "deviceUUID": "90e550de55f4472e78ab42ba521d8b4451a0c330" - }, - "pb-IF4xUmISVw==": { - "display_string": [ - "\ue063BoldestClo" - ], - "profiles": [], - "name": "\ue063BoldestClo", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-29 01:26:21", - "registerOn": 1670222830.0305262, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222830.0305266, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222830.0305347, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670222830.0305357, - "lastIP": "axo~}jham`aif}", - "deviceUUID": "3e3acd87d2262c3cd3298b13546fddd8c63183dc" - }, - "pb-IF4pU0QzBg==": { - "display_string": [ - "\ue030Android63511670" - ], - "profiles": [], - "name": "\ue030Android63511670", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-25 16:33:39", - "registerOn": 1670222948.4747255, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222948.4747262, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222948.4747365, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670222948.4747372, - "lastIP": "dvvc{vcyvb{", - "deviceUUID": "a4a3e6530f2a3e449a55f08fbbc7b49a1e4e04fd" - }, - "pb-IF4TVWguVA==": { - "display_string": [ - "\ue020RoyalRead11", - "\ue030Android63893836", - "\ue030Android63893825", - "\ue030Android63893729", - "\ue030Android63893802" - ], - "profiles": [], - "name": "\ue020RoyalRead11", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-28 14:18:36", - "registerOn": 1670222957.5876591, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222957.5876598, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222957.5876687, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670222957.5876698, - "lastIP": "b}k~}kiakiaig\u007f", - "deviceUUID": "a0fe15893d25cbbae7b9242e10b763914eac197a", - "cMsgCount": 0, - "lastMsgTime": 1670223243.7804573, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5WVG4yCA==": { - "display_string": [ - "\ue020\ud835\ude77\ud835\ude70\u2c64\ud835\ude82\ud835\ude77v\u0360\ud835\ude74\u2c64\ud835\ude7c\ud835\ude70", - "\ue030Android48601951", - "\ue030Android48602193", - "\ue030Android48601931", - "\ue030Android39034906" - ], - "profiles": [], - "name": "\ue020\ud835\ude77\ud835\ude70\u2c64\ud835\ude82\ud835\ude77v\u0360\ud835\ude74\u2c64\ud835\ude7c\ud835\ude70", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-24 20:09:26", - "registerOn": 1670223005.7061543, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223005.7061548, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246634.7169774, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246634.716978, - "lastIP": "azo~|o~~liaif}", - "deviceUUID": "72d1deb3e319e18a9aafaae6c95c07faaf98c813", - "cMsgCount": 0, - "lastMsgTime": 1670229660.1377325, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4RU1BbCQ==": { - "display_string": [ - "\ue030Android63297715", - "\ue030Android63978021" - ], - "profiles": [], - "name": "\ue030Android63297715", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 19:46:54", - "registerOn": 1670223013.750009, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223013.7500095, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223013.7500196, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223013.7500205, - "lastIP": "a\u007fk~~mfaj`yva\u007fh", - "deviceUUID": "17bd1527b38c2879e409fd15ec222b7edf87d067" - }, - "pb-IF4-U0gfIg==": { - "display_string": [ - "\ue020PlusCradle26", - "\ue030Android63906776", - "\ue030Android63917073", - "\ue030Android48414766", - "\ue030Android63906781" - ], - "profiles": [], - "name": "\ue020PlusCradle26", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 09:23:18", - "registerOn": 1670223126.1487603, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223126.148761, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310632.36223, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670310632.3622313, - "lastIP": "azo~{n~v`~}h`", - "deviceUUID": "35ef1421547313dda03ae22eb01e4e1f0259f55f" - }, - "pb-JiNJARFZV0BBVV5AGUNRUVZGFkJXRlJL": { - "display_string": [ - "\ue020jcar914", - "\ue030Android47332199" - ], - "profiles": [], - "name": "\ue020jcar914", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-26 17:42:21", - "registerOn": 1670223191.286122, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223191.2861228, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224446.9002898, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224446.900292, - "lastIP": "a}j~zh~}ifaiax", - "deviceUUID": "213acdad9f716bdc06894815f2c0bc4f516c7ebd" - }, - "pb-IF4XNk8E": { - "display_string": [ - "\ue020Mynameismr007", - "\ue030Android47352286" - ], - "profiles": [], - "name": "\ue020Mynameismr007", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-13 23:16:54", - "registerOn": 1670223306.9310734, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223306.9310741, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223306.9310822, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223306.931083, - "lastIP": "a~n~xl~}khaj`|", - "deviceUUID": "cfbdc716256dd5be19d86bd852f9657282004776" - }, - "pb-IF48U1BeVA==": { - "display_string": [ - "\ue063RetiringTh" - ], - "profiles": [], - "name": "\ue063RetiringTh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 11:26:17", - "registerOn": 1670223342.0682235, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223342.068224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223342.0682306, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223342.0682313, - "lastIP": "a|n~~mhai~xl", - "deviceUUID": "47fde9d16fc278059e28ba08a5c5923befabf415" - }, - "pb-IF5dU0haPA==": { - "display_string": [ - "\ue030Android63621219" - ], - "profiles": [], - "name": "\ue030Android63621219", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 21:22:24", - "registerOn": 1670223414.3308358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223414.3308365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223414.3308449, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223414.3308458, - "lastIP": "azo~|`~~jiaig}", - "deviceUUID": "8b23d0ed10e731852f3616071db53180f5a7639e" - }, - "pb-IF49VBQ4KQ==": { - "display_string": [ - "\ue020VariedCreator11" - ], - "profiles": [], - "name": "\ue020VariedCreator11", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-07 08:47:08", - "registerOn": 1670223647.4419773, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223647.4419777, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223647.4419851, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223647.4419858, - "lastIP": "dvvcxvaza~~ob", - "deviceUUID": "0de2c35c754bba5c6e317dc4e2356a77eaa0f6f5" - }, - "pb-JiNJARBYVUNCXl9HEk5YVVVCGUFaT1VB": { - "display_string": [ - "\ue063Alexander6" - ], - "profiles": [], - "name": "\ue063Alexander6", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-31 22:07:51", - "registerOn": 1670223994.6633196, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223994.66332, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223994.6633277, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223994.6633284, - "lastIP": "a\u007fk~}laaldaj`\u007f", - "deviceUUID": "b136cb2b325744116e4458ba7b6e14cdef93caae" - }, - "pb-IF4tU0szDw==": { - "display_string": [ - "\ue020AristocraticPossum54" - ], - "profiles": [], - "name": "\ue020AristocraticPossum54", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 17:22:58", - "registerOn": 1670224082.983369, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224082.9833698, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246038.646844, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246038.646845, - "lastIP": "aakhaa`aifz", - "deviceUUID": "3bb77423b818d2d17e9a5c2d472f7ff66b12ce67" - }, - "pb-IF4cVFEENw==": { - "display_string": [ - "\ue020TroublingSeer45843" - ], - "profiles": [], - "name": "\ue020TroublingSeer45843", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-30 17:17:37", - "registerOn": 1670224221.7086017, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224221.7086027, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224221.7086105, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224221.7086112, - "lastIP": "azo~zi~vn~vn", - "deviceUUID": "bc587bc343435acaeeb16a6168e1eeadae575953" - }, - "pb-IF42UhVfFQ==": { - "display_string": [ - "\ue063MeatyHallw" - ], - "profiles": [], - "name": "\ue063MeatyHallw", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-26 21:07:54", - "registerOn": 1670224304.6928282, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224304.6928287, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224304.692835, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224304.6928358, - "lastIP": "a\u007fk~~ohaaeamg", - "deviceUUID": "6d7ce7268bc301b3530a19e3100c26e940c64638" - }, - "pb-IF4vUhc8NA==": { - "display_string": [ - "\ue020king12of34world" - ], - "profiles": [], - "name": "\ue063king12of34", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-06 19:14:02", - "registerOn": 1670224390.9638715, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224390.963872, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224390.9638948, - "verified": false, - "rejoincount": 0, - "lastJoin": 1670224702.8370771, - "lastIP": "a\u007fn~~afai`wvazh", - "deviceUUID": "e724ac296ff3aaa7b58fb4beeb5a6bd55d243a15" - }, - "pb-IF4-U0wmFA==": { - "display_string": [ - "\ue020BroadestStress64" - ], - "profiles": [], - "name": "\ue020BroadestStress64", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 16:31:50", - "registerOn": 1670224419.1593127, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224419.1593134, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224419.1593218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224419.1593227, - "lastIP": "a\u007fk~~`gaahaih{", - "deviceUUID": "f7ec1dea556e337a4f288c1a8e992be20c6cf516" - }, - "pb-IF4NU04dKQ==": { - "display_string": [ - "\ue030Android63983749" - ], - "profiles": [], - "name": "\ue030Android63983749", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:56:21", - "registerOn": 1670224433.1994147, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224433.1994152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311471.5926657, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311471.5926664, - "lastIP": "a|h~~heaniaia|", - "deviceUUID": "8ad9c12623e62e5d87337454ec3d0d16ed4509f4", - "cMsgCount": 0, - "lastMsgTime": 1670311994.587358, - "lastMsg": "i hate shine she punch me and im her team", - "cSameMsg": 0 - }, - "pb-IF5XUxQNKg==": { - "display_string": [ - "\ue030Android60176502" - ], - "profiles": [], - "name": "\ue030Android60176502", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-02 13:36:23", - "registerOn": 1670224594.7961566, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224594.7961574, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224594.7961674, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224594.7961679, - "lastIP": "b\u007fn~wk~~ibakh", - "deviceUUID": "b628827af1660e8d1a369c7bb005ddd321826a1a" - }, - "pb-IF4LU3IhCg==": { - "display_string": [ - "\ue063UnbornObse" - ], - "profiles": [], - "name": "\ue063UnbornObse", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-06 06:24:33", - "registerOn": 1670224621.8851442, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224621.8851452, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224621.8851535, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224621.8851545, - "lastIP": "az`~yj~wvgz", - "deviceUUID": "6675d401a681f09bf2fc9118fdfec5ce5f05fb4e" - }, - "pb-IF4nVUddEA==": { - "display_string": [ - "\ue020UnrecordedContrast21", - "\ue030Android51604904" - ], - "profiles": [], - "name": "\ue020UnrecordedContrast21", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-24 19:24:09", - "registerOn": 1670224695.1638308, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224695.163831, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224695.1638393, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224695.1638403, - "lastIP": "azj~z`~}`~}ih", - "deviceUUID": "94dbacce83b90b4cfffc1bec22faf9d1acdc7db5" - }, - "pb-IF4HU00iMA==": { - "display_string": [ - "\ue020AcuteSodium40" - ], - "profiles": [], - "name": "\ue020AcuteSodium40", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 12:39:12", - "registerOn": 1670224875.8248928, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224875.8248932, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224875.8249018, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224875.8249028, - "lastIP": "a\u007fn~~aeakgaii", - "deviceUUID": "c720584a91b3cbe6db86ad747fa20b79ebd57367" - }, - "pb-IF4tURMJ": { - "display_string": [ - "\ue020RagingOrangutan79611", - "\ue030Android36362458" - ], - "profiles": [], - "name": "\ue020RagingOrangutan79611", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-12 18:45:41", - "registerOn": 1670224930.0256732, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224930.0256736, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224930.0256803, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224930.0256815, - "lastIP": "a\u007fn~~adakiaif{", - "deviceUUID": "00205d6e727c4c8655e1d50949de75de43d9f425" - }, - "pb-IF4VVGQqIA==": { - "display_string": [ - "\ue063Abwini9" - ], - "profiles": [], - "name": "\ue063Abwini9", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-01 21:38:23", - "registerOn": 1670225142.8319447, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225142.8319454, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225142.8319547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225142.8319557, - "lastIP": "ax`~xo~~meanc", - "deviceUUID": "971b74965958e51e59e30e484186b7389cc56f1a" - }, - "pb-IF4BU3YiBw==": { - "display_string": [ - "\ue020raj140608" - ], - "profiles": [], - "name": "\ue020raj140608", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 16:49:48", - "registerOn": 1670225313.742744, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225313.7427452, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225313.742753, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225313.7427537, - "lastIP": "a}k~}haaj~~`b", - "deviceUUID": "d4f4de333d3ac253c6682a64d10146afdc3bed93" - }, - "pb-IF40U08DIg==": { - "display_string": [ - "\ue063PitilessDi" - ], - "profiles": [], - "name": "\ue063PitilessDi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 09:57:03", - "registerOn": 1670225366.6395636, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225366.639564, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225366.6395714, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225366.6395721, - "lastIP": "b\u007fj~yo~|a~~h", - "deviceUUID": "cba75cd69c2cba64503daeae42befdd269060920" - }, - "pb-IF4pUxccDQ==": { - "display_string": [ - "\ue020MRSMoOtHy9098", - "\ue030Android60542989" - ], - "profiles": [], - "name": "\ue020MRSMoOtHy9098", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-23 14:20:28", - "registerOn": 1670225421.9733288, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225421.9733298, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225421.9733438, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225421.9733446, - "lastIP": "azo~{m~~oiajd|", - "deviceUUID": "017b66c9bf884f6f82343cc45aa1fc8db1d1ecf4" - }, - "pb-IF5WU3YtDg==": { - "display_string": [ - "\ue020kingofdragonwar10" - ], - "profiles": [], - "name": "\ue020kingofdragonwar10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-12 11:15:55", - "registerOn": 1670225497.0738711, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225497.0738714, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225497.0738788, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670232604.5462713, - "lastIP": "a\u007fn~~agai`\u007fvf}", - "deviceUUID": "458f059dc7613379d0f64b393d516bfe4ce94349" - }, - "pb-IF4NUxcqNA==": { - "display_string": [ - "\ue063TurboFamil" - ], - "profiles": [], - "name": "\ue063TurboFamil", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-25 17:39:11", - "registerOn": 1670225548.248582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225548.2485824, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229538.8195338, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670229091.8494523, - "lastIP": "a\u007fk~zo~wm~}jc", - "deviceUUID": "761e2f8a9baa8a93f1ca262cd255c7269e8b4c96", - "cMsgCount": 0, - "lastMsgTime": 1670229538.8194907, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4tBWhf": { - "display_string": [ - "\ue063TiredShiel" - ], - "profiles": [], - "name": "\ue063TiredShiel", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-08 11:07:39", - "registerOn": 1670225703.2770789, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225703.2770793, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225703.2770863, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670225708.5493443, - "lastIP": "a\u007fn~}hfajaaic|", - "deviceUUID": "50aec541ac095332e4e7d310526059b4d87e2701" - }, - "pb-IF4OU0MmCw==": { - "display_string": [ - "\ue020PaltryLuxury43" - ], - "profiles": [], - "name": "\ue020PaltryLuxury43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-21 14:47:25", - "registerOn": 1670225752.03882, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225752.0388205, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225752.0388293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225752.03883, - "lastIP": "a\u007fn~}jba`faigx", - "deviceUUID": "fac6ef408444c29869070071a76e6de49b381bdd" - }, - "pb-IF4TU0MJAQ==": { - "display_string": [ - "\ue020SovereignSplendor53", - "\ue063UnvaryingT", - "\ue020ElectricalTilt52", - "\ue020LittleJourney40429" - ], - "profiles": [], - "name": "\ue063UnvaryingT", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-23 09:41:04", - "registerOn": 1670225869.4587672, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225869.4587677, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225869.4587755, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225869.4587762, - "lastIP": "dvvcxvb~k~~mf", - "deviceUUID": "6f0b3cbe2a98d10a5ba1b40d8c12cc695a4fcd11" - }, - "pb-IF4iVRIvFA==": { - "display_string": [ - "\ue063supersmash", - "\ue030Android45064400" - ], - "profiles": [], - "name": "\ue063supersmash", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-16 13:10:01", - "registerOn": 1670225915.6225243, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225915.6225247, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225915.6225307, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225915.6225317, - "lastIP": "dvvcxvd~vavn", - "deviceUUID": "996d37e51f3c1c08aaa7659db77b08d88da28fc6" - }, - "pb-IF4tVXIbMQ==": { - "display_string": [ - "\ue020Aryannnnn\u30c5", - "\ue030Android51658791" - ], - "profiles": [], - "name": "\ue020Aryannnnn\u30c5", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-14 19:50:14", - "registerOn": 1670226061.2386627, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226061.2386632, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250337.9491396, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250337.949141, - "lastIP": "a\u007fn~}icajdwvaw`", - "deviceUUID": "7c87fdd2c2959085eb949e641404ba48594d4b86", - "cMsgCount": 0, - "lastMsgTime": 1670243033.484086, - "lastMsg": "\u2728M\u028f \u1d0f\u1d18 \u1d18\u026a\u0274\u0262 \u026as... = 0\u1d0ds !", - "cSameMsg": 0 - }, - "pb-IF5SU00BVQ==": { - "display_string": [ - "\ue063NimblePass" - ], - "profiles": [], - "name": "\ue063NimblePass", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 14:22:59", - "registerOn": 1670226110.279205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226110.2792058, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226110.2792144, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226110.2792153, - "lastIP": "dxvazvawvf\u007f", - "deviceUUID": "8b95267b1e3d9e2d481577825ab6d4466e7cd053" - }, - "pb-IF4NUmovVg==": { - "display_string": [ - "\ue063ShailiPate" - ], - "profiles": [], - "name": "\ue063ShailiPate", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-05 13:12:44", - "registerOn": 1670226195.6351314, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226195.6351318, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256263.4197533, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256263.4197547, - "lastIP": "dvvcyvf{vf\u007f", - "deviceUUID": "f197b811af71876fc2976f89c919eaadd4f25bfa" - }, - "pb-IF4VU3ENAA==": { - "display_string": [ - "\ue030Android62403774" - ], - "profiles": [], - "name": "\ue030Android62403774", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-02 12:18:25", - "registerOn": 1670226282.8838375, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226282.8838382, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226282.883846, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226282.883847, - "lastIP": "awk~~oaaibxvav", - "deviceUUID": "\u0015\u0004\\P" - }, - "pb-IF4FU085EQ==": { - "display_string": [ - "\ue063BrackishCh" - ], - "profiles": [], - "name": "\ue063BrackishCh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 13:10:05", - "registerOn": 1670226374.3766797, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226374.3766801, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226374.3766882, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226374.376689, - "lastIP": "azo~{n~~ocaiiz", - "deviceUUID": "91a83f9a494e45ab8450580dc802615e8120cee5" - }, - "pb-IF5TU1EzAg==": { - "display_string": [ - "\ue063FollowingH" - ], - "profiles": [], - "name": "\ue063FollowingH", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 20:48:30", - "registerOn": 1670226380.258697, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226380.258698, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226380.2587054, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226380.2587063, - "lastIP": "azo~|a~}o~~og", - "deviceUUID": "99c9e6867cc9f32ea0f9f88fc3c3fec0fa0433c5" - }, - "pb-IF4mVW4KCg==": { - "display_string": [ - "\ue030PC297792" - ], - "profiles": [], - "name": "\ue030PC297792", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-16 22:09:12", - "registerOn": 1670226457.582149, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226457.5821497, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226457.5821557, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226457.5821567, - "lastIP": "a~o~}igaii\u007fvavi", - "deviceUUID": "3b7f3440897b3d0e42c85de043bbf8c6d1cbe8ec" - }, - "pb-IF4PU20MUQ==": { - "display_string": [ - "\ue030Android62028677" - ], - "profiles": [], - "name": "\ue030Android62028677", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-16 17:57:58", - "registerOn": 1670226522.783715, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226522.7837155, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226522.7837224, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226522.7837234, - "lastIP": "a~l~|i~~`haab", - "deviceUUID": "\u0015V^\u0004\u0003M\u0007YURAQU\u0005\u0005\u0016Q\\RUAYZWVGX" - }, - "pb-IF5TV2MzCA==": { - "display_string": [ - "\ue063RoyalProph", - "\ue030Android27475121" - ], - "profiles": [], - "name": "\ue063RoyalProph", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-09 15:25:46", - "registerOn": 1670226649.6207516, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226649.620752, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300672.096717, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670300732.285673, - "lastIP": "azo~|l~~maaja", - "deviceUUID": "e8cf97805255e86aec70c8706d6b9e5f3ca97b30", - "cMsgCount": 0, - "lastMsgTime": 1670227063.3796155, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF40U00CCg==": { - "display_string": [ - "\ue063VagueInfus" - ], - "profiles": [], - "name": "\ue063VagueInfus", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 17:20:26", - "registerOn": 1670226659.3487902, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226659.3487906, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226659.3487985, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226659.3487995, - "lastIP": "az`~yj~\u007fvawl", - "deviceUUID": "253c7d0e64a83179258252f4559bc72f8679e046" - }, - "pb-IF40UnkJDw==": { - "display_string": [ - "\ue063yellipai" - ], - "profiles": [], - "name": "\ue063yellipai", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-11 08:38:11", - "registerOn": 1670226866.2665646, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226866.266565, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226866.266573, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226866.266574, - "lastIP": "evvi|vb|l~~ad", - "deviceUUID": "ce58c2e31fb0efd21874c1e470474a18e21def92" - }, - "pb-IF4jU2g9Ew==": { - "display_string": [ - "\ue020UnpaidExercise38" - ], - "profiles": [], - "name": "\ue020UnpaidExercise38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-25 19:42:30", - "registerOn": 1670226869.5052457, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226869.5052464, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226869.5052528, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226869.5052536, - "lastIP": "azo~{a~~liaify", - "deviceUUID": "9b824e81fbd60169f30045059ecb9762f6b411d3" - }, - "pb-IF5WU0peVQ==": { - "display_string": [ - "\ue020KeptVacation37" - ], - "profiles": [], - "name": "\ue020KeptVacation37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 14:21:17", - "registerOn": 1670226903.3899212, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226903.3899224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226903.3899307, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226903.3899314, - "lastIP": "azo~{n~~jiaka", - "deviceUUID": "f643b228b67be1df4548532e6d11d7b24674d26f" - }, - "pb-IF4KU3AnHQ==": { - "display_string": [ - "\ue030Android62253416" - ], - "profiles": [], - "name": "\ue030Android62253416", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-26 14:30:47", - "registerOn": 1670226963.5896826, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226963.5896833, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226963.5896919, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670228788.722594, - "lastIP": "dvvc}vayn~|l", - "deviceUUID": "2620c5f80b8a2b954f6fcc27da29c5908d2f87c6", - "cMsgCount": 2, - "lastMsgTime": 1670229653.0490026, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5XUkoGDw==": { - "display_string": [ - "\ue063AerialMark", - "\ue030Android54465033" - ], - "profiles": [], - "name": "\ue063AerialMark", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-12 22:40:28", - "registerOn": 1670227022.7963612, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670227022.796362, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227022.7963703, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670227022.796371, - "lastIP": "a\u007fk~~jcaiexvgz", - "deviceUUID": "39e13719e2009e69674426018146ced270d091cc" - }, - "pb-IF4PVU49EQ==": { - "display_string": [ - "\ue020SashaGoPewpew" - ], - "profiles": [], - "name": "\ue020SashaGoPewpew", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-03 09:30:08", - "registerOn": 1670227054.923248, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670227054.923249, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227054.9232554, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670227054.923276, - "lastIP": "b\u007fk~~`iaiayva\u007fo", - "deviceUUID": "\u0015\u0004U\u0003W\u0010V_VY\u0017T\b\u0005R\u0015\u0003\\PVBT\\VXAT", - "cMsgCount": 0, - "lastMsgTime": 1670227845.6772037, - "lastMsg": "it's all good ig", - "cSameMsg": 0 - }, - "pb-IF4GUxYsDQ==": { - "display_string": [ - "\ue020ConclusiveBottle39" - ], - "profiles": [], - "name": "\ue020ConclusiveBottle39", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-16 14:12:38", - "registerOn": 1670227319.7724183, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670227319.7724187, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227319.7724278, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670227319.7724285, - "lastIP": "azo~{n~~jaaifv", - "deviceUUID": "8ead49b7ddabc9a22af41957df33d402effd5a2e" - }, - "pb-IF4KU1AsNQ==": { - "display_string": [ - "\ue063Custumtom" - ], - "profiles": [], - "name": "\ue063Custumtom", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 13:28:37", - "registerOn": 1670227461.4978473, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670227461.497848, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227461.4978573, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670227461.4978583, - "lastIP": "a}j~zh~~aeaigx", - "deviceUUID": "ff3dde8336f0ed67a71208df988d06298d531b5e" - }, - "pb-IF4LVXpYNg==": { - "display_string": [ - "\ue020UnimpededHorseback4" - ], - "profiles": [], - "name": "\ue020UnimpededHorseback4", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-10 09:53:20", - "registerOn": 1670227744.6954534, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670227744.6954541, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251381.517309, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670251437.6888216, - "lastIP": "a\u007fk~v`~|`~v", - "deviceUUID": "2227a173a4be186298989f5e5c0a0fef7e57815e", - "cMsgCount": 0, - "lastMsgTime": 1670228101.109848, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4lVUo7Eg==": { - "display_string": [ - "\ue020sobikd" - ], - "profiles": [], - "name": "\ue020sobikd", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-14 12:58:46", - "registerOn": 1670228197.982771, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228197.9827716, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228197.9827867, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670228197.9827876, - "lastIP": "a\u007fn~~aga`iajc|", - "deviceUUID": "6298115190da1bfb5df2d882f75738ee6f00d083" - }, - "pb-IF4hVFkHKg==": { - "display_string": [ - "\ue063RhythmicCr", - "\ue030Android39653045" - ], - "profiles": [], - "name": "\ue020RhythmicCrown18", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-28 18:46:27", - "registerOn": 1670228209.0389888, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228209.0389895, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670312326.774477, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670314130.2407699, - "lastIP": "dvvcxvg{va{o", - "deviceUUID": "62e44e3760cd9c6c82cf681707d065b69027b7e1", - "cMsgCount": 0, - "lastMsgTime": 1670314284.91646, - "lastMsg": "haha", - "cSameMsg": 0 - }, - "pb-IF4pU1BTHA==": { - "display_string": [ - "\ue063Antiquate7" - ], - "profiles": [], - "name": "\ue063Antiquate7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 12:03:47", - "registerOn": 1670228297.4124837, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228297.4124844, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228297.4124925, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670228297.4124932, - "lastIP": "azo~zi~|k~wi", - "deviceUUID": "76429b13abd2692cbf282bb1b503265d3de59f86" - }, - "pb-IF4WVUsFNw==": { - "display_string": [ - "\ue063Preferent5" - ], - "profiles": [], - "name": "\ue063Preferent5", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-20 22:01:33", - "registerOn": 1670228411.789545, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228411.7895458, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296044.435284, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296044.435285, - "lastIP": "dvvc{viyva|k", - "deviceUUID": "22932973725a6b2764c9aaaa0054bf0ac3663c09" - }, - "pb-IF5RVG8EUw==": { - "display_string": [ - "\ue020HumdrumFrame7" - ], - "profiles": [], - "name": "\ue020HumdrumFrame7", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-29 19:16:30", - "registerOn": 1670228446.579187, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228446.5791874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228446.5791957, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670228446.5791965, - "lastIP": "dvvc{va|h~~j", - "deviceUUID": "d44ffd437086b4f53c81dcffeacef2ef90654ec5" - }, - "pb-IF5UU0EtKw==": { - "display_string": [ - "\ue030Android63417416" - ], - "profiles": [], - "name": "\ue030Android63417416", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-19 20:32:50", - "registerOn": 1670228484.0479453, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228484.0479462, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228484.047954, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670228484.0479553, - "lastIP": "a\u007fn~~acaj`yvd}", - "deviceUUID": "dc9a27e890eca123a1f9ce4d05a2f66cd6d02f7c" - }, - "pb-IF4lU0cxXQ==": { - "display_string": [ - "\ue063larsyuan65" - ], - "profiles": [], - "name": "\ue063larsyuan65", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 19:12:42", - "registerOn": 1670228741.8731394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228741.8731403, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228741.8731513, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670228840.917879, - "lastIP": "a|n~~mhajhala", - "deviceUUID": "2e318aa8ec18e6c872f8539535ec1e883cc781b3" - }, - "pb-IF4HU00hJw==": { - "display_string": [ - "\ue063Recipient3" - ], - "profiles": [], - "name": "\ue063Recipient3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 14:29:02", - "registerOn": 1670228784.0108788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228784.0108795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670289503.2912016, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670289515.328063, - "lastIP": "a\u007fk~y`~}j~yh", - "deviceUUID": "4575321855c254908c77eefcb28cd9ff7599f77f" - }, - "pb-IF4zU00GCg==": { - "display_string": [ - "\ue020SilentSalt1900" - ], - "profiles": [], - "name": "\ue020SilentSalt1900", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 14:08:37", - "registerOn": 1670228921.5335805, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228921.533581, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228921.5335886, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670229254.4435499, - "lastIP": "azj~zo~}l~zn", - "deviceUUID": "f4a122773f682de8dc15bd34a49bd18621e2ac1e" - }, - "pb-IF42U08yFw==": { - "display_string": [ - "\ue030Android63983683" - ], - "profiles": [], - "name": "\ue030Android63983683", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:42:38", - "registerOn": 1670228933.8215332, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228933.8215337, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296269.2771714, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296269.2771726, - "lastIP": "a|o~vo~x`~~o`", - "deviceUUID": "7ed4cb26643deafc53d59f450dfda5d60fe5270f" - }, - "pb-IF4UUmQDJw==": { - "display_string": [ - "\ue020JauntyCoin52791", - "\ue030Android52824015" - ], - "profiles": [], - "name": "\ue020JauntyCoin52791", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-04 18:30:08", - "registerOn": 1670228976.775681, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228976.7756817, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228976.7756903, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670228976.775691, - "lastIP": "a\u007fn~}heajbaic~", - "deviceUUID": "71419b847c4b6137f6d3246d7890d14e677339c3" - }, - "pb-IF4yD3Qc": { - "display_string": [ - "\ue063SpaceShutt", - "\ue030Android46872814" - ], - "profiles": [], - "name": "\ue063SpaceShutt", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-05 10:42:33", - "registerOn": 1670228987.758543, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228987.7585437, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247587.031569, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247587.0315704, - "lastIP": "dvvcyvh|vbzi", - "deviceUUID": "ca8f32981f1fe7f2136876c26921f7859a9f3f96" - }, - "pb-IF4PUkkqMA==": { - "display_string": [ - "\ue063BrutalSici" - ], - "profiles": [], - "name": "\ue063BrutalSici", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-16 10:02:41", - "registerOn": 1670229356.5626655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229356.562666, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670304255.4286206, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670309110.1471188, - "lastIP": "a\u007fn~xo~zk~{`", - "deviceUUID": "dcc5c7508559ffa5b58c9495fea6671707be3cc8" - }, - "pb-IF5dU08nEw==": { - "display_string": [ - "\ue020ElegantCavalier77306" - ], - "profiles": [], - "name": "\ue020ElegantCavalier77306", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 09:03:26", - "registerOn": 1670229402.3325691, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229402.3325698, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229402.3325784, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229402.3325794, - "lastIP": "b}k~~`gaib~vazo", - "deviceUUID": "eb82fd15cf5cc77c3ff31d26a9f7f0c821748d3e" - }, - "pb-IF4WU2ooNg==": { - "display_string": [ - "\ue063Customary7" - ], - "profiles": [], - "name": "\ue063Customary7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-03 17:39:17", - "registerOn": 1670229408.377324, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229408.3773248, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229408.3773336, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229408.3773348, - "lastIP": "azj~z`~|l~~md", - "deviceUUID": "4368e63f833e87303119297e60c52375cc211ec2" - }, - "pb-IF4KU1AsAQ==": { - "display_string": [ - "\ue063NOTJOSHLEO" - ], - "profiles": [], - "name": "\ue063NOTJOSHLEO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 14:09:38", - "registerOn": 1670229593.009421, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229593.0094216, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229593.00943, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229593.0094311, - "lastIP": "a{h~}icaiixvfx", - "deviceUUID": "99b1bcc147f758903ee66d180a59c5ffa6f77f14" - }, - "pb-IF5UUks5DQ==": { - "display_string": [ - "\ue063WinterProf" - ], - "profiles": [], - "name": "\ue063WinterProf", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-17 22:28:17", - "registerOn": 1670229595.9927943, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229595.992795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229595.9928029, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229595.9928036, - "lastIP": "azo~{a~~jiajbv", - "deviceUUID": "a94b206be518cd1883431b924685eff2e39af3dd" - }, - "pb-IF4sVW8hUA==": { - "display_string": [ - "\ue020\ud835\udd8e\ud835\udd86\ud835\udd93\ud835\udd89\ud835\udd8e\ud835\udd94\ud835\udd97" - ], - "profiles": [], - "name": "\ue020\ud835\udd8e\ud835\udd86\ud835\udd93\ud835\udd89\ud835\udd8e\ud835\udd94\ud835\udd97", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-26 11:45:30", - "registerOn": 1670229602.0637639, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229602.0637648, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229602.0637722, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229602.063773, - "lastIP": "dvvb|o~~k~v`", - "deviceUUID": "382568c64573fdea10beb998e6a68ad17b62e7f2" - }, - "pb-IF4rU3NTEA==": { - "display_string": [ - "\ue030Android62498959" - ], - "profiles": [], - "name": "\ue030Android62498959", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-06 22:59:09", - "registerOn": 1670229629.1306546, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229629.1306553, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229629.1306636, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670229701.0906115, - "lastIP": "azj~zo~~hiamb", - "deviceUUID": "\u0015QZVRG\u0002\bYWFY^PTFS\\SU@Q\\PWA" - }, - "pb-IF4MU087Dw==": { - "display_string": [ - "\ue063UnsoundApp" - ], - "profiles": [], - "name": "\ue063UnsoundApp", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 19:08:41", - "registerOn": 1670229696.38345, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229696.3834505, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229696.3834593, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229696.38346, - "lastIP": "dvva{l~~hfaicx", - "deviceUUID": "4825d16b394479d5f7c7351f6bf0ecbff01099ca" - }, - "pb-IF4UVxEtHA==": { - "display_string": [ - "\ue063SarayutVic" - ], - "profiles": [], - "name": "\ue063SarayutVic", - "isBan": false, - "isMuted": false, - "accountAge": "2018-07-11 17:55:35", - "registerOn": 1670229715.7352576, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229715.7352583, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229715.7352688, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229715.7352698, - "lastIP": "b}k~}hfajb\u007fva\u007fh", - "deviceUUID": "360dc7b30d80b599690c65212359015f751eb0af" - }, - "pb-IF4LVGQoMg==": { - "display_string": [ - "\ue020NarrativePulp7" - ], - "profiles": [], - "name": "\ue020NarrativePulp7", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-01 07:35:36", - "registerOn": 1670229799.8144748, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229799.8144753, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229799.8144834, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229799.8144846, - "lastIP": "dvvc{vi}vi{", - "deviceUUID": "5005c19e252c77de222a0b3aa38fbfada738a319" - }, - "pb-IF4QU3IfHw==": { - "display_string": [ - "\ue020ChestnutMisery45" - ], - "profiles": [], - "name": "\ue020ChestnutMisery45", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 16:52:45", - "registerOn": 1670229852.9366603, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229852.9366608, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229852.9366696, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229852.9366708, - "lastIP": "b}k~}jeajdyvhx", - "deviceUUID": "5ce3d6b9ee7d400300e2c33d083822274ab3a590" - }, - "pb-IF4BVGUmHw==": { - "display_string": [ - "\ue020nedstark5000" - ], - "profiles": [], - "name": "\ue020nedstark5000", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-10 10:31:18", - "registerOn": 1670229924.216744, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229924.2167447, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229924.2167525, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229924.2167535, - "lastIP": "a\u007fn~x`~~n`a`i", - "deviceUUID": "cb18af39dd9676be6089958288eea3ef546e0f39" - }, - "pb-IF4yU0oAUQ==": { - "display_string": [ - "\ue030Android63790532" - ], - "profiles": [], - "name": "\ue030Android63790532", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 19:16:01", - "registerOn": 1670230033.6235216, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230033.6235223, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230033.6235301, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670230033.6235313, - "lastIP": "azo~{a~}ifaii", - "deviceUUID": "edbf8f1218752fca82fdadf2d70f3a2bee7e837b" - }, - "pb-IF4SVU4FJw==": { - "display_string": [ - "\ue030Android52507762" - ], - "profiles": [], - "name": "\ue030Android52507762", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-07 17:10:11", - "registerOn": 1670230208.5107021, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230208.510703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230208.5107107, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670230208.510712, - "lastIP": "b}k~~`gaiaxvaxl", - "deviceUUID": "\u0015T\\T\u0004EQ_VVL\u0005\u000f\u0002\u0002\u0011STYSAQZPP@" - }, - "pb-JiNJVxFeVkNJXVtJGEBRUFJEEUFaQ1dA": { - "display_string": [ - "\ue020vijaysurya1805" - ], - "profiles": [], - "name": "\ue020vijaysurya1805", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-03 23:49:28", - "registerOn": 1670230309.6902184, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230309.6902192, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230309.6902275, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670230309.6902285, - "lastIP": "azo~zi~~hcaoe", - "deviceUUID": "66f35a045854f652d537fd4f22ffa69d0e3f71d7" - }, - "pb-IF4QU0cGKQ==": { - "display_string": [ - "\ue063Fluoresc10" - ], - "profiles": [], - "name": "\ue063Fluoresc10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 17:10:15", - "registerOn": 1670230501.3428638, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230501.342864, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230501.3428726, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670230501.3428736, - "lastIP": "a~o~}igaogaja{", - "deviceUUID": "52d426451801122f6a327e29b37553d47e1b7fd5" - }, - "pb-IF4RU0kkPA==": { - "display_string": [ - "\ue030Android63737185" - ], - "profiles": [], - "name": "\ue030Android63737185", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 12:41:43", - "registerOn": 1670230749.4979107, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230749.4979115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230749.4979217, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670232725.9282494, - "lastIP": "azo~{`~~lhaigw", - "deviceUUID": "c0d55be043457f66c1af41eb1fa91b227bf5f05b" - }, - "pb-IF4IUxUpCA==": { - "display_string": [ - "\ue020UnmarkedCommodore37" - ], - "profiles": [], - "name": "\ue020UnmarkedCommodore37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-15 13:26:32", - "registerOn": 1670230837.6404083, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230837.640409, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230837.6404185, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670230837.6404195, - "lastIP": "azo~|k~~abaibw", - "deviceUUID": "0388fd7e2f803334381174ca2a8585c9527da27a" - }, - "pb-IF5UUkMlDA==": { - "display_string": [ - "\ue063FancyPan23" - ], - "profiles": [], - "name": "\ue020FancyPantsLevel5048", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-18 10:53:25", - "registerOn": 1670230855.7314546, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230855.7314556, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308273.3458445, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308273.3458457, - "lastIP": "awj~xl~~agam`", - "deviceUUID": "5893c67d28623308e85d53e01f81d372327531dd" - }, - "pb-IF49U21YDQ==": { - "display_string": [ - "\ue020FreelanceProblem24", - "\ue030Android59843406" - ], - "profiles": [], - "name": "\ue030Android59843406", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-14 11:04:49", - "registerOn": 1670230943.0635073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230943.0635078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670284871.0185845, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670284871.0185862, - "lastIP": "a|n~~mhai`}vava", - "deviceUUID": "1b541227be57713283d65bfeaf44e43b051ee400", - "cMsgCount": 0, - "lastMsgTime": 1670240890.5801091, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4dU3FeVg==": { - "display_string": [ - "\ue030Android62362778", - "\ue030Android63946527", - "\ue030Android63791115" - ], - "profiles": [], - "name": "\ue030Android63946527", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 12:13:43", - "registerOn": 1670231050.7772844, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231050.7772846, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292905.8784635, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292905.8784652, - "lastIP": "dxvc~vb}o~wk", - "deviceUUID": "f0c5cbbe23c69b55ddd7f83779d8518657f89696" - }, - "pb-IF4DV24sDQ==": { - "display_string": [ - "\ue063DarkKnigh3", - "\ue030PC773596" - ], - "profiles": [], - "name": "\ue063DarkKnigh3", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-25 13:33:03", - "registerOn": 1670231104.689741, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231104.6897416, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231104.6897497, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231104.6897502, - "lastIP": "azo~{n~}hhaje|", - "deviceUUID": "58bb36a03707ec42ee131f438adc07f4c6e590cf", - "cMsgCount": 0, - "lastMsgTime": 1670231360.083685, - "lastMsg": "sure", - "cSameMsg": 0 - }, - "pb-LV4FXhAOU0pGXF9AFhNQUVJDEA==": { - "display_string": [ - "\ue030Android12758543" - ], - "profiles": [], - "name": "\ue030Android12758543", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-21 13:28:30", - "registerOn": 1670231619.3314147, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231619.3314154, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231619.3314242, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231619.331425, - "lastIP": "a\u007fk~~oiaia~va{m", - "deviceUUID": "50510f8eec27484cb21a7b263a17d112b8fee4b4" - }, - "pb-IF5VU0kBBA==": { - "display_string": [ - "\ue020VOILENTFIGHTER12", - "\ue030Android63671399" - ], - "profiles": [], - "name": "\ue020VOILENTFIGHTER12", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 16:52:45", - "registerOn": 1670231635.3568554, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231635.3568559, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670231789.973674, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231635.3568647, - "lastIP": "b}k~~`haje}vazm", - "deviceUUID": "02203c8528f66eed06dc45380a5eb55df893b6c3", - "cMsgCount": 0, - "lastMsgTime": 1670231828.4432135, - "lastMsg": "he would wipe himslf only", - "cSameMsg": 0 - }, - "pb-IF5RU0cNFA==": { - "display_string": [ - "\ue063Unsuitabl4" - ], - "profiles": [], - "name": "\ue063Unsuitabl4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 20:37:24", - "registerOn": 1670231774.9812443, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231774.981245, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231774.981254, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231774.981255, - "lastIP": "dvvd|viwvaxn", - "deviceUUID": "935c01f6439a763b266019148f02842f480c36c0" - }, - "pb-IF4QV0s7Fw==": { - "display_string": [ - "\ue020VISHAL6364S17" - ], - "profiles": [], - "name": "\ue020VISHAL6364S17", - "isBan": false, - "isMuted": false, - "accountAge": "2019-03-19 23:03:21", - "registerOn": 1670231824.3624701, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231824.3624709, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231824.3624814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231824.3624825, - "lastIP": "a\u007fk~}h`ai`yvg|", - "deviceUUID": "13e0c4be85e8a71aa81fbd51163ef27710fb4957" - }, - "pb-IF4AN2w6": { - "display_string": [ - "\ue020L\u00f8neW\u00f8lf\u00e6" - ], - "profiles": [], - "name": "\ue020L\u00f8neW\u00f8lf\u00e6", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-15 22:29:31", - "registerOn": 1670231855.141531, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231855.1415315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231855.1415393, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231855.14154, - "lastIP": "azo~zi~z`~}kd", - "deviceUUID": "64e2eeb8ff7d20fecb2b38975848aba0f3a56f13" - }, - "pb-IF4rU24hJA==": { - "display_string": [ - "\ue063StableCohe" - ], - "profiles": [], - "name": "\ue063StableCohe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 11:30:21", - "registerOn": 1670231861.1913927, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231861.1913934, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670304340.820544, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670304340.8205454, - "lastIP": "azo~{`~}jeai`z", - "deviceUUID": "7852b404f352d59f1c837ce5b6bd876df1357f13" - }, - "pb-IF4RVUIJLw==": { - "display_string": [ - "\ue020DamchAlandamcha" - ], - "profiles": [], - "name": "\ue020DamchAlandamcha", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-27 18:44:08", - "registerOn": 1670231909.292282, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231909.2922828, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231909.292292, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231909.292293, - "lastIP": "dxvbvva\u007fh~}mb", - "deviceUUID": "546dd15cb7113bf424892acf7e24c1e92ef356e9" - }, - "pb-IF4AU2MlLQ==": { - "display_string": [ - "\ue030Android61099795" - ], - "profiles": [], - "name": "\ue030Android61099795", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-09 15:41:05", - "registerOn": 1670231947.4806788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231947.4806793, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231947.4806871, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231947.4806879, - "lastIP": "azo~{n~va~yk", - "deviceUUID": "3323e73f0e4215e8ba276cbb5329a84fd3c0fbab" - }, - "pb-IF4qVEsdVQ==": { - "display_string": [ - "\ue063FreakyArac" - ], - "profiles": [], - "name": "\ue063FreakyArac", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-30 10:46:12", - "registerOn": 1670231956.4936595, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231956.49366, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231956.4936674, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231956.493668, - "lastIP": "awj~}kba`~~kg", - "deviceUUID": "9fe67bb9f218160ed3e553457297526bfcec6a21" - }, - "pb-IF4xU2I9AQ==": { - "display_string": [ - "\ue020Jafarsadiqu369", - "\ue030Android48424246" - ], - "profiles": [], - "name": "\ue020Jafarsadiqu369", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-08 14:09:07", - "registerOn": 1670231962.4716892, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231962.47169, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231962.4716992, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231962.4717002, - "lastIP": "azo~{n~~hgaja~", - "deviceUUID": "888501e43582b23844ca42842630113f077a4836" - }, - "pb-IF40UhVdVA==": { - "display_string": [ - "\ue063Deepak11De", - "\ue030Android47282468" - ], - "profiles": [], - "name": "\ue063Deepak11De", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-26 18:43:42", - "registerOn": 1670232172.3092148, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232172.3092153, - "totaltimeplayer": 0, - "warnCount": 3, - "lastWarned": 1670235178.602318, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232172.3092244, - "lastIP": "azo~{a~~aaaig~", - "deviceUUID": "2d110f888b9c6f25e7c6c6a8749fadb88ab0fc02", - "cMsgCount": 0, - "lastMsgTime": 1670236182.7793713, - "lastMsg": "ko bye guys ", - "cSameMsg": 0 - }, - "pb-IF5QU04IXA==": { - "display_string": [ - "\ue030Android63833589" - ], - "profiles": [], - "name": "\ue030Android63833589", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 15:40:22", - "registerOn": 1670232299.9887512, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232299.988752, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232299.9887598, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232299.988761, - "lastIP": "b\u007fk~~adaafaie}", - "deviceUUID": "cc6729cd48dbaa8518fdbe9773b1da1b5db10d8e" - }, - "pb-JiNJARFdU0tCWFtDGEFVUVZLFUFbQlBH": { - "display_string": [ - "\ue020kannadapora" - ], - "profiles": [], - "name": "\ue020kannadapora", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-17 12:14:52", - "registerOn": 1670232351.0239007, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232351.0239012, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232351.0239096, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232351.0239108, - "lastIP": "azo~zh~yn~yk", - "deviceUUID": "120cdf633025fb510cdbec94ad24ac7ae954f149" - }, - "pb-IF4WVWgAEQ==": { - "display_string": [ - "\ue030Android47133090", - "\ue030Android48008737" - ], - "profiles": [], - "name": "\ue030Android47133090", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-31 16:35:33", - "registerOn": 1670232532.4790263, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232532.479027, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232532.479035, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232532.4790359, - "lastIP": "d}va\u007fm~~o`ao", - "deviceUUID": "50c60444043f819ee0cebbe1b760f052952a7c09" - }, - "pb-IF5SUkwMAg==": { - "display_string": [ - "\ue063RAGExLUINO", - "\ue030Android32286970" - ], - "profiles": [], - "name": "\ue063RAGExLUINO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-22 11:19:14", - "registerOn": 1670232565.737403, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232565.7374034, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232565.7374115, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232565.7374125, - "lastIP": "dvvcyva\u007fo~~og", - "deviceUUID": "540b5d7a29b251a9b29ecf49aacbf1ecafaaf618" - }, - "pb-IF4dU0xeEg==": { - "display_string": [ - "\ue063GreasyTrad" - ], - "profiles": [], - "name": "\ue020GreasyTrader56", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 13:26:32", - "registerOn": 1670232575.7362576, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232575.736258, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295991.2133746, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670299774.856268, - "lastIP": "awl~}j~y`~{k", - "deviceUUID": "316fd49e31dcf8ae2c73c39196bb81f875b8af94" - }, - "pb-IF4CVEMENw==": { - "display_string": [ - "\ue063MMHQ17" - ], - "profiles": [], - "name": "\ue063MMHQ17", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-14 12:53:46", - "registerOn": 1670232614.8934724, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232614.893473, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232614.8934844, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232614.8934853, - "lastIP": "awk~~oaaiaxva|", - "deviceUUID": "0161212ee288be8904751fe45194dafae3e91e8f" - }, - "pb-IF4BVWISAA==": { - "display_string": [ - "\ue020CapitalisticHeaven18" - ], - "profiles": [], - "name": "\ue020CapitalisticHeaven18", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-20 19:45:21", - "registerOn": 1670232730.2588408, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232730.2588413, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232730.2588499, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232730.2588506, - "lastIP": "aakhaih}va}m", - "deviceUUID": "36de0ba4f3fa18a835069f50f13f280e513e7527" - }, - "pb-IF4dVGU7Cw==": { - "display_string": [ - "\ue063marimol870", - "\ue030Android37966151" - ], - "profiles": [], - "name": "\ue063marimol870", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-08 19:37:42", - "registerOn": 1670232787.491768, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232787.4917684, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232787.4917767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232787.491778, - "lastIP": "dvva{`~~miaihx", - "deviceUUID": "1d45639efd616bced809e0a5f732f0a64885a9f5" - }, - "pb-JiNJARBZXENAX1tGFE5TUVNBEkFZRVJH": { - "display_string": [ - "\ue063Hackermemy", - "\ue030Android7331632" - ], - "profiles": [], - "name": "\ue063Hackermemy", - "isBan": false, - "isMuted": false, - "accountAge": "2016-10-17 17:53:02", - "registerOn": 1670232811.8246622, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232811.824663, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232811.824671, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232811.8246717, - "lastIP": "azo~{l~~oeajc\u007f", - "deviceUUID": "4a8e0db520f8c4343259a372627aedb7643f4240" - }, - "pb-IF4lVxkZUQ==": { - "display_string": [ - "\ue063hothareesh", - "\ue030Android27426054" - ], - "profiles": [], - "name": "\ue020hothareesh100", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-06 19:29:13", - "registerOn": 1670232814.937801, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232814.9378011, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670304332.1959348, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670304522.4524214, - "lastIP": "a\u007fn~}heaiawvaw`", - "deviceUUID": "21070610f22597cd241179ec831a3f4f6f2174f2", - "cMsgCount": 0, - "lastMsgTime": 1670304332.1958427, - "lastMsg": "Riya noobdaaa", - "cSameMsg": 0 - }, - "pb-IF4DU3MnLg==": { - "display_string": [ - "\ue020nonstopunstoble" - ], - "profiles": [], - "name": "\ue020nonstopunstoble", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 16:44:46", - "registerOn": 1670232842.6894054, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232842.689406, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232842.6894143, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232842.689415, - "lastIP": "a\u007fk~}hdaiavvi|", - "deviceUUID": "584fbb1fa82c6aea3da298684c427bdc72168d30" - }, - "pb-IF5dU2IpIg==": { - "display_string": [ - "\ue030Android60843943" - ], - "profiles": [], - "name": "\ue030Android60843943", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-30 10:51:00", - "registerOn": 1670232924.9661102, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232924.966111, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232924.9661202, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670232974.8136418, - "lastIP": "a}j~zl~}haaah", - "deviceUUID": "19a1fd621f0b2bf3b67425b434571cfc2db9e785" - }, - "pb-IF4vUkUOXA==": { - "display_string": [ - "\ue020Asrofi143", - "\ue030Android57950775" - ], - "profiles": [], - "name": "\ue020Asrofi143", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-02 11:46:41", - "registerOn": 1670233027.4030156, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670233027.403016, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670233027.4030247, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670233027.4030254, - "lastIP": "b\u007fk~x`~~iiaic\u007f", - "deviceUUID": "474213b702bf837418cbf7faba5bc678fa2a6bb2" - }, - "pb-JiNJARBeXEtHWlZEFkBXXVJAF0JZQ1hG": { - "display_string": [ - "\ue063BalajiStar", - "\ue030Android6370317" - ], - "profiles": [], - "name": "\ue063BalajiStar", - "isBan": false, - "isMuted": false, - "accountAge": "2016-09-04 12:33:39", - "registerOn": 1670233336.4193757, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670233336.4193764, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670233336.4193847, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670233336.419386, - "lastIP": "a~h~}jdaaeaje", - "deviceUUID": "6cf109de66417ef6bf59abd01631a26488416538" - }, - "pb-IF5TU1EZJg==": { - "display_string": [ - "\ue063SneakyCyli" - ], - "profiles": [], - "name": "\ue063SneakyCyli", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 18:28:40", - "registerOn": 1670233692.9072526, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670233692.9072533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670233692.9072618, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670233692.907263, - "lastIP": "a|a~~keajd~vb{", - "deviceUUID": "76c972299e3339d7acc74cbe0de21bc585d46b03" - }, - "pb-IF5XVEI_Kg==": { - "display_string": [ - "\ue063Genos909" - ], - "profiles": [], - "name": "\ue063Genos909", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-21 15:32:41", - "registerOn": 1670233766.9479449, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670233766.947945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670233766.9479523, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670233766.9479535, - "lastIP": "a\u007fn~~abakfajaw", - "deviceUUID": "9becef1c66dc1d720ac5e717c4dfc2a8fa59640b", - "cMsgCount": 0, - "lastMsgTime": 1670234566.625439, - "lastMsg": "bye", - "cSameMsg": 0 - }, - "pb-IF4sUhk4JA==": { - "display_string": [ - "\ue020MistakenNinja57588", - "\ue063UselessGuy", - "\ue030Android47506985", - "\ue030Android54715214" - ], - "profiles": [], - "name": "\ue063UselessGuy", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-18 13:29:29", - "registerOn": 1670233970.7107036, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670233970.7107043, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670234365.4431689, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670234216.3521519, - "lastIP": "a\u007fk~~`aajbyva|h", - "deviceUUID": "8a637db1124ccf92bee0f3345f362f060d71afc5", - "cMsgCount": 0, - "lastMsgTime": 1670234365.443103, - "lastMsg": ".", - "cSameMsg": 0 - }, - "pb-IF4sU2kaLg==": { - "display_string": [ - "\ue063JauntyJour" - ], - "profiles": [], - "name": "\ue063JauntyJour", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-05 18:18:45", - "registerOn": 1670234074.3004742, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234074.3004751, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234074.3004847, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234074.3004854, - "lastIP": "awj~ya~~jfaic", - "deviceUUID": "e75309a808347eeaefab4a2c953f36377ac2c203" - }, - "pb-IF4qUhZcEA==": { - "display_string": [ - "\ue063AssortedSy" - ], - "profiles": [], - "name": "\ue063AssortedSy", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-30 08:41:53", - "registerOn": 1670234192.612451, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234192.6124518, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234192.6124678, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670243669.3451233, - "lastIP": "a|n~~mhai~|m", - "deviceUUID": "304e094248ca9109b8068e62ade737cbcaa43b98", - "cMsgCount": 0, - "lastMsgTime": 1670244145.8924348, - "lastMsg": "lick my balls", - "cSameMsg": 0 - }, - "pb-IF4GU1AiNw==": { - "display_string": [ - "\ue063ArableRail" - ], - "profiles": [], - "name": "\ue063ArableRail", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 02:08:07", - "registerOn": 1670234202.9001796, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234202.9001803, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234202.9001892, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234202.90019, - "lastIP": "azo~|m~{k~wk", - "deviceUUID": "b0a02c1298b195db2882e779f825fbc15b2c3387" - }, - "pb-IF4nUhQNAw==": { - "display_string": [ - "\ue020Dragonkozhi", - "\ue030Android46699176" - ], - "profiles": [], - "name": "\ue020Dragonkozhi", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-22 22:04:25", - "registerOn": 1670234242.7888577, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234242.7888587, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234242.7888684, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234242.7888694, - "lastIP": "a\u007fn~}hfaja{vawm", - "deviceUUID": "ae868456774656cf785b5122781b014518715be9" - }, - "pb-IF5dU00RPw==": { - "display_string": [ - "\ue020SympatheticPromise22" - ], - "profiles": [], - "name": "\ue020SympatheticPromise22", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 11:09:45", - "registerOn": 1670234258.8802338, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234258.8802342, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234258.8802423, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234258.8802433, - "lastIP": "bxvf~va{va}m", - "deviceUUID": "7a01d8b3a3c2e937a1941673055fd9b6e3961ba0" - }, - "pb-IF5TU1EnLg==": { - "display_string": [ - "\ue063OvertSubje" - ], - "profiles": [], - "name": "\ue063OvertSubje", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 13:41:34", - "registerOn": 1670234341.1950166, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234341.195017, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234341.1950245, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234341.1950252, - "lastIP": "azo~{a~}lcajaz", - "deviceUUID": "c04fd3b3117015d5805929f760c462aa173b4aa6" - }, - "pb-IF4xU04eUw==": { - "display_string": [ - "\ue063UncheckedF", - "\ue030Android63163881" - ], - "profiles": [], - "name": "\ue063UncheckedF", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 14:02:18", - "registerOn": 1670234357.1799545, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234357.179955, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261586.0848308, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261586.0848317, - "lastIP": "azo~|j~~afajcv", - "deviceUUID": "fe67a3e8127ff9b9110a971159e051d17f7329dc" - }, - "pb-IF4uVU4PKQ==": { - "display_string": [ - "\ue020AWMkingVB" - ], - "profiles": [], - "name": "\ue020AWMkingVB", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-04 08:49:29", - "registerOn": 1670234361.2587607, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234361.2587612, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234361.2587686, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234361.2587695, - "lastIP": "a\u007fn~}j`aidzvb\u007fm", - "deviceUUID": "\u0015\u0003\u000bQX\u0015V\u000fT\u0002\u0015\u0007Y\u0003WLW\\PRGPTWTLY" - }, - "pb-IF4cU00cCQ==": { - "display_string": [ - "\ue063EasyComple" - ], - "profiles": [], - "name": "\ue063EasyComple", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 16:48:04", - "registerOn": 1670234690.8938744, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234690.8938746, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670249905.3387618, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249905.3387632, - "lastIP": "a\u007fk~wm~vvb\u007fj", - "deviceUUID": "c6935ed0cba45b40db30a2ef1324397ce33e9626", - "cMsgCount": 0, - "lastMsgTime": 1670251087.8524928, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5UVXUlKQ==": { - "display_string": [ - "\ue063Prevalent6", - "\ue030Android63959074", - "\ue030Android63959349", - "\ue030Android63958717", - "\ue030Android63958731" - ], - "profiles": [], - "name": "\ue063Prevalent6", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-18 15:22:50", - "registerOn": 1670234774.9324722, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234774.9324732, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234774.9324815, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234774.9324827, - "lastIP": "a\u007fn~~agaiayvayi", - "deviceUUID": "da48e42a2ed2caa30161500ba2c122298cc59e97" - }, - "pb-IF4iVWQ_Bg==": { - "display_string": [ - "\ue020IpnRagul752" - ], - "profiles": [], - "name": "\ue020IpnRagul752", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-29 21:52:02", - "registerOn": 1670235012.8449953, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235012.8449957, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311333.7349617, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311333.7349632, - "lastIP": "azo~{a~~kcaiby", - "deviceUUID": "4db0b57b5ad7b1b05bd1794f41ff7dc92e916793" - }, - "pb-IF4hDRld": { - "display_string": [ - "\ue020SubmissiveRunner2674", - "\ue030Android22951133" - ], - "profiles": [], - "name": "\ue020SubmissiveRunner2674", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-14 12:15:57", - "registerOn": 1670235155.3033073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235155.303308, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235155.3033173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670235155.3033183, - "lastIP": "bxvf|vezvcv", - "deviceUUID": "3bf5795d4a2165a83642645c5b64290930730723" - }, - "pb-IF4HU0cMAw==": { - "display_string": [ - "\ue020iQninjakilaryashyash" - ], - "profiles": [], - "name": "\ue020iQninjakilaryashyash", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-17 20:46:25", - "registerOn": 1670235212.5736802, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235212.5736809, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235212.5736895, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670235212.5736902, - "lastIP": "azo~|`~}kham`", - "deviceUUID": "bd0054a8422231478b2af7cb5c6b5475cfd91d37" - }, - "pb-IF4hU0oSFw==": { - "display_string": [ - "\ue063Preventab2" - ], - "profiles": [], - "name": "\ue063Preventab2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 09:52:34", - "registerOn": 1670235231.6770694, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235231.67707, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298642.8494024, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298642.8494036, - "lastIP": "a\u007fn~~acaihxvcv", - "deviceUUID": "94ca35ce05e84c3d65e04a6d37510b561ca78e00" - }, - "pb-IF5SU1EHPw==": { - "display_string": [ - "\ue030Android63989539" - ], - "profiles": [], - "name": "\ue030Android63989539", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 15:48:42", - "registerOn": 1670235559.9395788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235559.9395795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235559.9395883, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670236656.5211272, - "lastIP": "b}k~~ohaj`vvb\u007fo", - "deviceUUID": "ad542397f4b0d89c6fb7139d139e36ccd1777333" - }, - "pb-IF4UU0hfDQ==": { - "display_string": [ - "\ue020MonoCaprice47" - ], - "profiles": [], - "name": "\ue020MonoCaprice47", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 12:16:56", - "registerOn": 1670235815.705764, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235815.7057648, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235815.7057729, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670235815.7057736, - "lastIP": "azj~zo~~agaja~", - "deviceUUID": "a234e83fc5f176fbc15b92464be2bc69d223c62a" - }, - "pb-IF4qU00cHA==": { - "display_string": [ - "\ue030Android63904390" - ], - "profiles": [], - "name": "\ue030Android63904390", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 01:19:17", - "registerOn": 1670236202.318054, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236202.3180544, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236202.318063, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670238455.452045, - "lastIP": "dvvcyvb|k~}lb", - "deviceUUID": "c171afd26514f79cf389a37613dc2ad1d6f7a295" - }, - "pb-IF4NVWQzBg==": { - "display_string": [ - "\ue063Imaginabl8", - "\ue030Android47364094" - ], - "profiles": [], - "name": "\ue063Imaginabl8", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-03 19:39:08", - "registerOn": 1670236240.1274066, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236240.1274073, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236240.1274161, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236240.127417, - "lastIP": "b\u007fn~wl~}k`ai`\u007f", - "deviceUUID": "97937c4dbf0ff0f0d4572a3ad7086f746366ca83" - }, - "pb-IF4PI1Q7": { - "display_string": [ - "\ue020GeekyAardvark72483", - "\ue030Android41686991" - ], - "profiles": [], - "name": "\ue020GeekyAardvark72483", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-21 10:27:58", - "registerOn": 1670236318.4871345, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236318.487135, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236318.4871445, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236318.4871454, - "lastIP": "dvvc{vb~o~~`g", - "deviceUUID": "d3b799a9a81da4a861b3fe166ad469acc72c089b" - }, - "pb-IF4tU04mMg==": { - "display_string": [ - "\ue020NonOp43" - ], - "profiles": [], - "name": "\ue020NonOp43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 11:37:50", - "registerOn": 1670236339.502523, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236339.5025232, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236339.5025332, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236339.502534, - "lastIP": "f~vi\u007fvc}vb~o", - "deviceUUID": "cf0c8f5339e85f589f66274676c45eaafc5a451e" - }, - "pb-IF4-U04OIw==": { - "display_string": [ - "\ue020KimchiWawa2769" - ], - "profiles": [], - "name": "\ue020KimchiWawa2769", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 17:32:47", - "registerOn": 1670236464.1042817, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236464.1042821, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236464.1042907, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236464.104292, - "lastIP": "f~vfajczva{m", - "deviceUUID": "38672c47764a1a4c30fd1659d37dee5911977ea8", - "cMsgCount": 0, - "lastMsgTime": 1670236611.6556265, - "lastMsg": "Im lagg", - "cSameMsg": 0 - }, - "pb-IF42VW5aNA==": { - "display_string": [ - "\ue020AbjectLimb21", - "\ue030Android47379546" - ], - "profiles": [], - "name": "\ue030Android47379546", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-13 12:07:08", - "registerOn": 1670236486.1613517, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236486.1613522, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236486.16136, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670244839.462826, - "lastIP": "dvvc{vb{j~}li", - "deviceUUID": "49554461391413791e81a2011f0e0a23232a4925", - "cMsgCount": 0, - "lastMsgTime": 1670237148.3267462, - "lastMsg": "no", - "cSameMsg": 0 - }, - "pb-IF5WU20CLA==": { - "display_string": [ - "\ue063IdyllicTri" - ], - "profiles": [], - "name": "\ue063IdyllicTri", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 01:33:05", - "registerOn": 1670236617.6280942, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236617.628095, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236617.6281025, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236617.6281037, - "lastIP": "a\u007fj~ym~{vax`", - "deviceUUID": "f658f95a80e699ee6fa7352ff02ded6caa4a82b2" - }, - "pb-IF4tU0cOBg==": { - "display_string": [ - "\ue020sunil678p" - ], - "profiles": [], - "name": "\ue020sunil678p", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 12:19:42", - "registerOn": 1670236686.0805795, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236686.08058, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236686.0805883, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236686.0805893, - "lastIP": "azj~z`~|m~~jb", - "deviceUUID": "268b5102ca182ff4a956fc9ec1b961a66bb7f612" - }, - "pb-IF4KUnEmVg==": { - "display_string": [ - "\ue020DowncastCruise28" - ], - "profiles": [], - "name": "\ue020DowncastCruise28", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-04 09:57:41", - "registerOn": 1670236767.6040006, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236767.604001, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670254334.6349177, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670255998.405253, - "lastIP": "azo~{i~}leajd", - "deviceUUID": "\u0015Y\u000bY\u0003\u0016\u0007^U\u0005FVYS\u0005\u0016\u0007\\RPBVUUW", - "cMsgCount": 0, - "lastMsgTime": 1670254355.4051914, - "lastMsg": "fight", - "cSameMsg": 0 - }, - "pb-IF4xU0o7Ug==": { - "display_string": [ - "\ue020VvFightVv", - "\ue020SecondarySuspense43" - ], - "profiles": [], - "name": "\ue020VvFightVv", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 22:50:19", - "registerOn": 1670236826.8973343, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236826.8973348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670294905.4032302, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670295854.6780355, - "lastIP": "hzva{h~xva\u007f`", - "deviceUUID": "\u0015UXRWL\u0007\\YS\u0011Y\u000ePX\u0016\u0007\\YWDV]PUAY" - }, - "pb-IF4FU2wEUQ==": { - "display_string": [ - "\ue020GrossestHothead39", - "\ue030Android60313961" - ], - "profiles": [], - "name": "\ue020GrossestHothead39", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-14 10:47:36", - "registerOn": 1670236938.9873567, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236938.9873571, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236938.987366, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236938.987367, - "lastIP": "azo~zi~~aeaiax", - "deviceUUID": "\u0015YXW\u0004C\u0002]\u0003X\u0011Q\u000f\u0005X\u0015\u0003\\VXFP]VVES" - }, - "pb-IF4QU0ofBg==": { - "display_string": [ - "\ue030Android63800944" - ], - "profiles": [], - "name": "\ue030Android63800944", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 10:26:44", - "registerOn": 1670237026.2896433, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670237026.289644, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670237026.2896533, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670237026.2896543, - "lastIP": "a\u007fk~|`~}heaicz", - "deviceUUID": "b8c55e7b68fa4c196f17b0076e4fc9c1e716b4aa" - }, - "pb-IF4MU04zVw==": { - "display_string": [ - "\ue020noobC\u00f9i", - "\ue020BaBByDoGG", - "\ue063BoilingLam", - "\ue030Android60239451" - ], - "profiles": [], - "name": "\ue030Android60239451", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 13:26:46", - "registerOn": 1670237044.3041856, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670237044.304186, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670237044.304193, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670237044.3041937, - "lastIP": "a{vavi~}khai`", - "deviceUUID": "878198ed9e6a85430533cca240979720ea6c44de" - }, - "pb-IF4mU0MaMw==": { - "display_string": [ - "\ue020GildedCarp34577" - ], - "profiles": [], - "name": "\ue020GildedCarp34577", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-26 14:54:58", - "registerOn": 1670237124.9778595, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670237124.9778602, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670237124.9778686, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670237124.9778695, - "lastIP": "d}va\u007f`~~afa`c", - "deviceUUID": "04307182310890696a96730e12972d1abc5e9f24" - }, - "pb-IF4rU1AuNQ==": { - "display_string": [ - "\ue030Android63988326" - ], - "profiles": [], - "name": "\ue030Android63988326", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 09:29:46", - "registerOn": 1670237178.8360128, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670237178.8360133, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670237178.8360214, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670242887.0365496, - "lastIP": "b}k~~`fajb}vb}l", - "deviceUUID": "2cdfeb1dcc28a1c5fd51ac3fa2701cebc83a4036" - }, - "pb-IF4SUhJZPw==": { - "display_string": [ - "\ue020UtilitarianDose42", - "\ue063UndamagedM", - "\ue020ConfusedExcitement48", - "\ue030Android55601587", - "\ue030Android53857852" - ], - "profiles": [], - "name": "\ue030Android55601587", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-12 00:18:34", - "registerOn": 1670238541.2583952, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670238541.2583957, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670238541.258404, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670238541.2584054, - "lastIP": "az`~yj~}m~~n`", - "deviceUUID": "\u0015\u0002_\u0005\u0004G\u0005YU" - }, - "pb-IF5XU1IiAw==": { - "display_string": [ - "\ue020wardrago666" - ], - "profiles": [], - "name": "\ue020wardrago666", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 16:40:29", - "registerOn": 1670238700.8088279, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670238700.8088286, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670238700.8088367, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670238700.8088377, - "lastIP": "b}k~}jhajb{vg~", - "deviceUUID": "065b8e8159b9b343a9ced6977900de8a0ba3e4df" - }, - "pb-IF4RU1AhUg==": { - "display_string": [ - "\ue063OutrightRo" - ], - "profiles": [], - "name": "\ue063OutrightRo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 11:06:41", - "registerOn": 1670238708.887067, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670238708.8870676, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670238708.8870754, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670238708.8870761, - "lastIP": "azo~zi~za~yh", - "deviceUUID": "e9fe44f966e904574f6c6f75d2fa08f3efce1826" - }, - "pb-IF5cVEMTVA==": { - "display_string": [ - "\ue063kartikisco", - "\ue030Android46496233" - ], - "profiles": [], - "name": "\ue063kartikisco", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-29 21:18:29", - "registerOn": 1670238809.474966, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670238809.4749665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670238809.4749749, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670238809.4749758, - "lastIP": "a\u007fk~~kgaadaid|", - "deviceUUID": "23b185f338c8173bee0b6d453d7fd3c8aa19fd3a" - }, - "pb-IF4xVEJcUA==": { - "display_string": [ - "\ue020Darshan152005" - ], - "profiles": [], - "name": "\ue020Darshan152005", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-02 17:45:46", - "registerOn": 1670238860.6113675, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670238860.611368, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670238860.6113772, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670238860.611378, - "lastIP": "a}j~~oaajbajby", - "deviceUUID": "aa0126a57a3bcfdd5052880f735645c0a377d161" - }, - "pb-IF4nU089Jw==": { - "display_string": [ - "\ue020AntisocialDisorder02" - ], - "profiles": [], - "name": "\ue020AntisocialDisorder02", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 22:06:52", - "registerOn": 1670239048.0979817, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239048.0979822, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670239048.0979898, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670241264.5604365, - "lastIP": "a~h~}jgajhalb", - "deviceUUID": "455abeadb330fc3ecd37b35bd714d48484b0e25e" - }, - "pb-IF4SVUYgUg==": { - "display_string": [ - "\ue063ProperExti" - ], - "profiles": [], - "name": "\ue063ProperExti", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-20 17:03:18", - "registerOn": 1670239258.0657077, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239258.0657086, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670239258.065717, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670239258.0657177, - "lastIP": "azo~{`~xj~~ig", - "deviceUUID": "55652ffbfd31065e34c06710016dfdd45fc0816b" - }, - "pb-IF48UlAAFA==": { - "display_string": [ - "\ue020JocularVigor9" - ], - "profiles": [], - "name": "\ue020JocularVigor9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-17 19:38:55", - "registerOn": 1670239343.3047156, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239343.304716, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670240326.5726473, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670239583.7933888, - "lastIP": "azj~zo~}ihak", - "deviceUUID": "605d81fa49723b7ff58b516f1ba6d2d5a70adec3", - "cMsgCount": 0, - "lastMsgTime": 1670240326.5723119, - "lastMsg": "Jay Shree Ram", - "cSameMsg": 0 - }, - "pb-IF4xU08zFQ==": { - "display_string": [ - "\ue063BelovedEmi" - ], - "profiles": [], - "name": "\ue063BelovedEmi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 16:39:02", - "registerOn": 1670239872.1218042, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239872.121805, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670239872.121814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670239872.121815, - "lastIP": "dvva{l~~hcaig~", - "deviceUUID": "2d9f4505d9d092cc0f40a4753e6466845b633f1d" - }, - "pb-IF4TU08kKQ==": { - "display_string": [ - "\ue020PYGREED" - ], - "profiles": [], - "name": "\ue020PYGREED", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 16:25:27", - "registerOn": 1670239874.1421275, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239874.1421282, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670239874.1421373, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670240398.0949693, - "lastIP": "dvva{l~|vaxj", - "deviceUUID": "685d8ece50d10d268cd56fae0fa929d35d4d6c5b" - }, - "pb-IF4OVU4aUw==": { - "display_string": [ - "\ue020TheoreticPit28", - "\ue030Android63496708" - ], - "profiles": [], - "name": "\ue020TheoreticPit28", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-04 12:48:28", - "registerOn": 1670239912.2592387, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239912.2592392, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254120.21547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254120.2154713, - "lastIP": "dxva~vb{a~za", - "deviceUUID": "449105d0d850748e54202bfc5b7057e1cdb0a7b6" - }, - "pb-IF4FU0cKFQ==": { - "display_string": [ - "\ue063Chitranshp" - ], - "profiles": [], - "name": "\ue063Chitranshp", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-18 20:50:32", - "registerOn": 1670239964.4407094, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239964.4407098, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670239964.4407184, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670239964.4407194, - "lastIP": "dxvazva|va{m", - "deviceUUID": "83def38f86f641bcea9a98c2c9986127cdd6dc48" - }, - "pb-IF5UU09YMg==": { - "display_string": [ - "\ue063Niral" - ], - "profiles": [], - "name": "\ue063Niral", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 14:53:11", - "registerOn": 1670240221.7544208, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240221.7544212, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240221.7544305, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670245547.2308533, - "lastIP": "a\u007fn~~acajdyvavo", - "deviceUUID": "c0894bd95c1edfe41435513d90aa86c885bd7a02" - }, - "pb-IF4xU3EoKg==": { - "display_string": [ - "\ue063ImplicitWa" - ], - "profiles": [], - "name": "\ue063ImplicitWa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 20:00:47", - "registerOn": 1670240330.189063, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240330.189064, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240330.189072, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670240330.1890726, - "lastIP": "bxvgzvb\u007fn~}i", - "deviceUUID": "622abc22427515681d4999f4a989d660bdf66b7d" - }, - "pb-IF4sU09fVw==": { - "display_string": [ - "\ue063RyoutaMina" - ], - "profiles": [], - "name": "\ue063RyoutaMina", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 15:49:42", - "registerOn": 1670240340.2109647, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240340.210965, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240340.2109756, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670240340.2109766, - "lastIP": "dvva{m~}kcai", - "deviceUUID": "e4b693ca509bd08d996e5e234401270a71c2b08d" - }, - "pb-IF5QU0cfHA==": { - "display_string": [ - "\ue020R\u016a\u016aA\u016a\u016aJ" - ], - "profiles": [], - "name": "\ue020R\u016a\u016aA\u016a\u016aJ", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 17:18:06", - "registerOn": 1670240536.169932, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240536.1699324, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240536.1699417, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670240536.1699426, - "lastIP": "a}j~~naaihxve\u007f", - "deviceUUID": "14324d541ad2d13ddf0a2a6efcea81c863ce78a8" - }, - "pb-IF4cU0haIw==": { - "display_string": [ - "\ue030Android63695613" - ], - "profiles": [], - "name": "\ue030Android63695613", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 10:23:09", - "registerOn": 1670240553.2885947, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240553.2885952, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240553.2886045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670240553.2886055, - "lastIP": "a\u007fn~}i`aig\u007fvcw", - "deviceUUID": "d38e1d689029b575879cb17917ea9000d7eff65f" - }, - "pb-IF4-U004UQ==": { - "display_string": [ - "\ue020MaleYard54" - ], - "profiles": [], - "name": "\ue020MaleYard54", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 18:45:59", - "registerOn": 1670240584.080288, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240584.080289, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240584.0802975, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670240639.9311352, - "lastIP": "a~m~~ndaacaihw", - "deviceUUID": "29a206a58e0985133fbd54730eea0b5f07add29b" - }, - "pb-IF4HU00IVQ==": { - "display_string": [ - "\ue020DescriptiveBind19" - ], - "profiles": [], - "name": "\ue020DescriptiveBind19", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 18:10:42", - "registerOn": 1670240709.5818062, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240709.581807, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240709.5818148, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670240709.581816, - "lastIP": "azo~|a~{h~}hf", - "deviceUUID": "d669d18ccd3aa066d714b5f57b79945a7c11ded1" - }, - "pb-IF4nUmhfKA==": { - "display_string": [ - "\ue020SystemicAlbum16" - ], - "profiles": [], - "name": "\ue020SystemicAlbum16", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-21 23:06:22", - "registerOn": 1670241042.9810777, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241042.9810784, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241042.981088, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241042.981089, - "lastIP": "dzvbzi~~m~~j", - "deviceUUID": "214e63d0ab077bfb487eceda24bfa801afe228e5" - }, - "pb-IF4DU01YIA==": { - "display_string": [ - "\ue030PC607883" - ], - "profiles": [], - "name": "\ue030PC607883", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 16:27:37", - "registerOn": 1670241094.1723506, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241094.172351, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259019.3771942, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670259778.1752436, - "lastIP": "azo~zi~|vaxl", - "deviceUUID": "54b376588aefe7fc40893eeb6f9c39d5fb227bee" - }, - "pb-IF4jU0ckCg==": { - "display_string": [ - "\ue030Android63647111" - ], - "profiles": [], - "name": "\ue030Android63647111", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-12 11:37:36", - "registerOn": 1670241097.1638308, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241097.1638312, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241097.163841, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241097.163842, - "lastIP": "azo~|j~}liaii~", - "deviceUUID": "\u0015W\tY\u0007@\u0005XX" - }, - "pb-IF4rUkMeIg==": { - "display_string": [ - "\ue063NotableDi2" - ], - "profiles": [], - "name": "\ue063NotableDi2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-26 20:42:07", - "registerOn": 1670241326.166427, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241326.1664274, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241326.1664352, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241326.1664362, - "lastIP": "azo~{l~~adaic\u007f", - "deviceUUID": "578b9d58773f4004e74777a5cc5d9fcf415360be" - }, - "pb-IF5SNE4G": { - "display_string": [ - "\ue020KAIPULLA1111", - "\ue030Android20527637" - ], - "profiles": [], - "name": "\ue020KAIPULLA1111", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-12 19:23:48", - "registerOn": 1670241378.3315203, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241378.3315208, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241378.3315287, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241378.33153, - "lastIP": "azo~zi~~aiaicx", - "deviceUUID": "0d794e215c54de11b6d82aad5e657587ea066e96" - }, - "pb-IF4NU0YjJw==": { - "display_string": [ - "\ue030Android63657181" - ], - "profiles": [], - "name": "\ue030Android63657181", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-13 20:44:53", - "registerOn": 1670241414.5708404, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241414.5708408, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241414.570848, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241414.570849, - "lastIP": "a\u007fk~~haaia~vcx", - "deviceUUID": "3d18ff4455f1702ae1231b673cd82d72ce3b11aa" - }, - "pb-IF4dCnou": { - "display_string": [ - "\ue063RohanK" - ], - "profiles": [], - "name": "\ue063RohanK", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-21 16:57:49", - "registerOn": 1670241484.7061267, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241484.7061272, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241484.7064698, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241484.7064707, - "lastIP": "dvvcxvazl~}l`", - "deviceUUID": "1f02f65342285a5bef6c7f453fa6010cdfc56c6b", - "cMsgCount": 0, - "lastMsgTime": 1670241695.8636322, - "lastMsg": "What the hell?", - "cSameMsg": 0 - }, - "pb-IF4VU0taAA==": { - "display_string": [ - "\ue063FalseConte", - "\ue030Android63802649", - "\ue030Android63802632", - "\ue030Android38178062", - "\ue030Android63802519" - ], - "profiles": [], - "name": "\ue063FalseConte", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 10:15:00", - "registerOn": 1670241572.0944972, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241572.0944974, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241572.0945053, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241572.094506, - "lastIP": "azo~{l~~laaji", - "deviceUUID": "77c046a2d83abc276494b603097307327e1d3527" - }, - "pb-IF4VUhAKEg==": { - "display_string": [ - "\ue020FinestCurtain41", - "\ue063Avishek", - "\ue063InhumaneDa", - "\ue030Android63827191", - "\ue030Android63827276" - ], - "profiles": [], - "name": "\ue063InhumaneDa", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-06 11:44:58", - "registerOn": 1670241577.0625904, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241577.0625913, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259295.3298404, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670259309.3773513, - "lastIP": "dvvcxve|v`", - "deviceUUID": "e9323971ad756911ef0672ac975aa27d9938e255" - }, - "pb-IF5XU08jLA==": { - "display_string": [ - "\ue020itsjustine15" - ], - "profiles": [], - "name": "\ue020itsjustine15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 06:27:28", - "registerOn": 1670241740.605581, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241740.6055815, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670283323.8963654, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670283323.896367, - "lastIP": "aakga`haod", - "deviceUUID": "1dcaa19eab7a2e169cdd1ca1817839106d7f312c" - }, - "pb-IF5RU1EtMg==": { - "display_string": [ - "\ue063nikitamale" - ], - "profiles": [], - "name": "\ue063nikitamale", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 15:07:52", - "registerOn": 1670241780.8229892, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241780.8229902, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241780.822998, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670241821.689485, - "lastIP": "b}k~}keaie~vb}i", - "deviceUUID": "8cb9c1c51ed2bda50ed0ce9c9ace1f1e01dd2210" - }, - "pb-IF49U08JVw==": { - "display_string": [ - "\ue030Android63983125" - ], - "profiles": [], - "name": "\ue030Android63983125", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 13:37:47", - "registerOn": 1670241858.120165, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241858.1201656, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241858.1201727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241858.1201742, - "lastIP": "b}j~~jgai`\u007fvb\u007fj", - "deviceUUID": "e9a4e3b60ca7693c34713f33ff3c76d2cc42b7bf" - }, - "pb-IF41VUYgLw==": { - "display_string": [ - "\ue020OptimusPrime1517", - "\ue030Android55005911", - "\ue030VR228966" - ], - "profiles": [], - "name": "\ue020OptimusPrime1517", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-19 14:46:44", - "registerOn": 1670241883.2824998, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670244608.374289, - "totaltimeplayer": 0, - "warnCount": 4, - "lastWarned": 1670244608.37278, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241883.2825096, - "lastIP": "a\u007fn~~aeao~~nf", - "deviceUUID": "e119a4b70be6af0d77b49b7a55af08596176ab2b", - "cMsgCount": 0, - "lastMsgTime": 1670244608.372964, - "lastMsg": "Lavdi sai marnar majhyakadun", - "cSameMsg": 0 - }, - "pb-IF4TVWEnIg==": { - "display_string": [ - "\ue063bijodicarp" - ], - "profiles": [], - "name": "\ue063bijodicarp", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-10 10:34:04", - "registerOn": 1670241951.4551165, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241951.455117, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308579.690884, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308579.6908853, - "lastIP": "evvi}vd~vi~", - "deviceUUID": "248ee8d171acc33d75759da6db55fddeb165ce0d" - }, - "pb-IF4HU0IIEQ==": { - "display_string": [ - "\ue020BabyboyBro" - ], - "profiles": [], - "name": "\ue020BabyboyBro", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-17 11:49:12", - "registerOn": 1670242198.595753, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242198.5957534, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242198.595761, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242198.5957623, - "lastIP": "d|vb}l~{k~zj", - "deviceUUID": "5476cece606b2ac33114ea8efaf2f665d2edd824", - "cMsgCount": 0, - "lastMsgTime": 1670242343.3485272, - "lastMsg": "why", - "cSameMsg": 0 - }, - "pb-IF41UxkjMg==": { - "display_string": [ - "\ue030Android60845640" - ], - "profiles": [], - "name": "\ue030Android60845640", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-30 12:43:50", - "registerOn": 1670242447.848656, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670244658.064445, - "totaltimeplayer": 0, - "warnCount": 4, - "lastWarned": 1670244658.0627449, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670244150.0724747, - "lastIP": "a\u007fn~}iaai`|vb\u007fj", - "deviceUUID": "\u0015W\tVVMQ\u000bX\u0004\u0015XTYW\u0011R\\YWBRYXXMT", - "cMsgCount": 0, - "lastMsgTime": 1670244658.0626528, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5VU0UzJg==": { - "display_string": [ - "\ue063dhanushmes" - ], - "profiles": [], - "name": "\ue063dhanushmes", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-21 10:51:52", - "registerOn": 1670242494.84773, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242494.8477304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261786.7980652, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261786.7980664, - "lastIP": "dzva~m~vi~}ib", - "deviceUUID": "8231e183c8813509c0395d1a542c43e471798af9" - }, - "pb-IF40U08BJg==": { - "display_string": [ - "\ue063gianplayz0" - ], - "profiles": [], - "name": "\ue063gianplayz0", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 17:32:56", - "registerOn": 1670242548.031583, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242548.0315838, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242548.0315921, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242548.0315933, - "lastIP": "a\u007fk~~mea`haie\u007f", - "deviceUUID": "f6c59ed500881a17bc2fb4ebc52a34451bd8420c" - }, - "pb-IF41U00RFA==": { - "display_string": [ - "\ue030Android63922851" - ], - "profiles": [], - "name": "\ue030Android63922851", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 19:43:14", - "registerOn": 1670242562.8125694, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242562.8125703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242562.81258, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242562.8125808, - "lastIP": "azo~{a~}hbaifv", - "deviceUUID": "756045cb98c989aa61ac5e1a1260f07b7e56d119" - }, - "pb-IF4jVGoTCg==": { - "display_string": [ - "\ue063NarutoUsum", - "\ue030Android25643383" - ], - "profiles": [], - "name": "\ue063NarutoUsum", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-12 13:53:20", - "registerOn": 1670242568.1757827, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242568.1757834, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670302104.3211315, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670302104.321133, - "lastIP": "a\u007fk~}ibaidyvcy", - "deviceUUID": "ae34473eb16306b256ce80675c45dfe85340d89d" - }, - "pb-IF4pVVEOCA==": { - "display_string": [ - "\ue020\u1d9c\u1d3f\u1d2c\u1dbb\u1d5e\ud835\udd3b\ud835\udd63\ud835\udd52\ud835\udd5c\ud835\udd56\ud835\udd5f" - ], - "profiles": [], - "name": "\ue020\u1d9c\u1d3f\u1d2c\u1dbb\u1d5e\ud835\udd3b\ud835\udd63\ud835\udd52\ud835\udd5c\ud835\udd56\ud835\udd5f", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-17 09:19:31", - "registerOn": 1670242710.7156901, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242710.715691, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242710.7157013, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242710.7157025, - "lastIP": "azo~|m~y`~~jf", - "deviceUUID": "80767a74592447fa70b68a8b2e0ad164a147ce0d" - }, - "pb-IF43VFENFg==": { - "display_string": [ - "\ue020WishyWashyTinge10" - ], - "profiles": [], - "name": "\ue020WishyWashyTinge10", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-28 12:59:53", - "registerOn": 1670242837.191372, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242837.1913726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242837.1913803, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242837.191381, - "lastIP": "a\u007fk~}hfaic{vax`", - "deviceUUID": "7ad2a7ffb4cfbcfd57b9d138a7ccc77daa5141c4" - }, - "pb-IF4UU1AkAw==": { - "display_string": [ - "\ue063ExpensiveM" - ], - "profiles": [], - "name": "\ue063ExpensiveM", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 14:25:42", - "registerOn": 1670243048.9499106, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243048.9499109, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243048.9499197, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243048.9499204, - "lastIP": "a}j~~o`an`aie|", - "deviceUUID": "446c02955fe83399c305241c9ce56e3d1564ae71" - }, - "pb-IF5SUno-Ug==": { - "display_string": [ - "\ue063ihateu234" - ], - "profiles": [], - "name": "\ue063ihateu234", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-05 12:13:24", - "registerOn": 1670243178.5593963, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670244339.7711086, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255579.6526613, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670255196.3638668, - "lastIP": "dxvbvvayl~|l", - "deviceUUID": "8cdff6729d518be49ee0573acb0cb19b6c5a4aef", - "cMsgCount": 1, - "lastMsgTime": 1670255961.7325957, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4KVVUnJw==": { - "display_string": [ - "\ue020UncouthScenery25" - ], - "profiles": [], - "name": "\ue020UncouthScenery25", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-04 12:14:20", - "registerOn": 1670243187.609319, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243187.6093197, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243187.6093278, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243187.609329, - "lastIP": "a\u007fn~}i`ajbxva{h", - "deviceUUID": "39f230f5709313bac5034e4bc5c429ce8e44fb3c" - }, - "pb-IF4KU09dJg==": { - "display_string": [ - "\ue020FreezingTriangle142" - ], - "profiles": [], - "name": "\ue020FreezingTriangle142", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 21:05:03", - "registerOn": 1670243290.1733103, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243290.173311, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243290.1733193, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243290.1733205, - "lastIP": "a\u007fn~~aeakbala", - "deviceUUID": "d9b12a8cd1d61082c3006a955160103c6b22b562" - }, - "pb-IF4lVWYjIw==": { - "display_string": [ - "\ue020TBHFEVER" - ], - "profiles": [], - "name": "\ue020TBHFEVER", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-12 19:30:30", - "registerOn": 1670243421.817047, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243421.8170474, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243421.817056, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243421.8170571, - "lastIP": "dvvc}vb}n~~ig", - "deviceUUID": "853e561e5b8a8b675609755f1e05b53084f5adb6" - }, - "pb-JiNJARBdXUtFVFxIGUJQVVREFklXRVZH": { - "display_string": [ - "\ue020BasuMachakanura" - ], - "profiles": [], - "name": "\ue020BasuMachakanura", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-04 19:32:10", - "registerOn": 1670243477.0364935, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243477.036494, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255372.063081, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255372.0630825, - "lastIP": "azo~zh~{vav`", - "deviceUUID": "f4743181413fd87e59ecc7338eefd567593df5a0" - }, - "pb-IF4KVWgcBw==": { - "display_string": [ - "\ue020mohammedsafeek2" - ], - "profiles": [], - "name": "\ue020mohammedsafeek2", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-02 11:25:15", - "registerOn": 1670243500.277261, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243500.2772615, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243500.2772706, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243500.2772713, - "lastIP": "a\u007fn~~agaafaiez", - "deviceUUID": "5ee7822213487b483b9966ba9d29c68ec2bd7904" - }, - "pb-IF4CUxVaAw==": { - "display_string": [ - "\ue030Android60437730" - ], - "profiles": [], - "name": "\ue030Android60437730", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-13 11:20:27", - "registerOn": 1670243658.975171, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243658.9751716, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243658.9751792, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243658.9751804, - "lastIP": "a\u007fk~~meambaihy", - "deviceUUID": "362dc9544fc53a57def6aca4a9d3ca680f388ad2" - }, - "pb-IF4JVU8HUA==": { - "display_string": [ - "\ue020CHIP2739" - ], - "profiles": [], - "name": "\ue020CHIP2739", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-09 07:21:13", - "registerOn": 1670243680.7115374, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243680.711538, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243680.7115462, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243680.711547, - "lastIP": "a|i~}jfa`dah", - "deviceUUID": "3bb03eebaca837f771d19d10fb9e72d77737cab0" - }, - "pb-IF4cUlIHFQ==": { - "display_string": [ - "\ue063TusharRawa" - ], - "profiles": [], - "name": "\ue063TusharRawa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-26 20:49:37", - "registerOn": 1670243773.0846174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243773.0846183, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248915.7520661, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248915.7520673, - "lastIP": "dvvcyvaxo~y`", - "deviceUUID": "ef8a71e162c6bb5d73805a164e7dec56eed109bd", - "cMsgCount": 0, - "lastMsgTime": 1670243863.2455108, - "lastMsg": "1", - "cSameMsg": 0 - }, - "pb-IF43U00MHA==": { - "display_string": [ - "\ue063Nayanshiga" - ], - "profiles": [], - "name": "\ue063Nayanshiga", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 13:49:15", - "registerOn": 1670243816.267502, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243816.2675025, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256292.5326142, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256292.5326154, - "lastIP": "a\u007fn~~aeal~~ld", - "deviceUUID": "f06c4c4ff535f09426e084624a458360f8b3b427" - }, - "pb-IF4rVUkdFA==": { - "display_string": [ - "\ue020Giteshpro" - ], - "profiles": [], - "name": "\ue020Giteshpro", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-11 06:45:14", - "registerOn": 1670243839.3325484, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243839.332549, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243839.332558, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243839.3325586, - "lastIP": "azo~|k~}hhaii\u007f", - "deviceUUID": "ddb68cf272e094198e1f30411e5c0ee10b17131a", - "cMsgCount": 0, - "lastMsgTime": 1670243894.6550832, - "lastMsg": "phat sa head", - "cSameMsg": 0 - }, - "pb-IF4oU0YABg==": { - "display_string": [ - "\ue020vps32i" - ], - "profiles": [], - "name": "\ue020vps32i", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 16:16:50", - "registerOn": 1670243923.6127431, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243923.6127436, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243923.612751, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243923.6127522, - "lastIP": "azo~|k~{n~}le", - "deviceUUID": "7a54c5b9901eb59d33300ddf62863df158517520" - }, - "pb-IF4iU04PKA==": { - "display_string": [ - "\ue030Android63956151" - ], - "profiles": [], - "name": "\ue030Android63956151", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 11:33:59", - "registerOn": 1670243959.3693604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243959.369361, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670294420.6970441, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670294420.6970456, - "lastIP": "azj~zo~~adaia~", - "deviceUUID": "e9c88ccb816fc29e8e2062d29ee38cf69a3a81ba", - "cMsgCount": 0, - "lastMsgTime": 1670244090.429839, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFYV0dBVF5JEUFSU1BAGEZZT1lA": { - "display_string": [ - "\ue063mippypoop1" - ], - "profiles": [], - "name": "\ue063mippypoop1", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-16 15:00:48", - "registerOn": 1670244040.9770725, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244040.977073, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244040.9770815, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244040.9770827, - "lastIP": "axm~~ofajfai`", - "deviceUUID": "20872e0801eef620a5bb0c32a2e99ecea7052a2d" - }, - "pb-IF4vU0lTUw==": { - "display_string": [ - "\ue020go444vykh" - ], - "profiles": [], - "name": "\ue020go444vykh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 09:09:17", - "registerOn": 1670244146.3773913, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244146.3773918, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247631.180304, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247631.1803052, - "lastIP": "azj~zo~~k`aigw", - "deviceUUID": "099a2b8ebdd1be885607f1e97fdc6e787397267e" - }, - "pb-IF4MVXQdNw==": { - "display_string": [ - "\ue020HipRooster87595", - "\ue030Android53483198" - ], - "profiles": [], - "name": "\ue020HipRooster87595", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-08 19:34:34", - "registerOn": 1670244171.5894706, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244171.5894709, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244171.5894914, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670245033.307903, - "lastIP": "azo~|`~~o~~ii", - "deviceUUID": "\u0015Q\b\u0005X\u0012P\\", - "cMsgCount": 0, - "lastMsgTime": 1670245645.0497267, - "lastMsg": "jaldi karo", - "cSameMsg": 0 - }, - "pb-IF4mVW48Ew==": { - "display_string": [ - "\ue030PC297681" - ], - "profiles": [], - "name": "\ue030PC297681", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-16 10:17:12", - "registerOn": 1670244282.8380945, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244282.8380952, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244282.8381028, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244282.8381038, - "lastIP": "bxvixva{k~~hc", - "deviceUUID": "\u0003UYU\u0005MRZ\u0004L\u0012X]TL@U[RL\u0016\u0003\\QLBU\u000bRS@" - }, - "pb-IF5dU1EpMg==": { - "display_string": [ - "\ue020DiagnosticToad55", - "\ue030Android63941047" - ], - "profiles": [], - "name": "\ue020DiagnosticToad55", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 19:35:54", - "registerOn": 1670244492.6692612, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244492.669262, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244492.6692705, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244492.6692712, - "lastIP": "azo~{a~~`caie|", - "deviceUUID": "\u0015\u0005\bST\u0010\u0005^S\u0002@SZY\u0004\u0012Y[YP@X[TS" - }, - "pb-IF4BVEc9Hw==": { - "display_string": [ - "\ue063championof" - ], - "profiles": [], - "name": "\ue063championof", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-10 14:17:58", - "registerOn": 1670244496.6179376, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244496.6179383, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244496.6179485, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670244499.3042765, - "lastIP": "a~l~~kdajeaiix", - "deviceUUID": "e16f3ddd2272d10f1cb1e6a5f702c2d2122ee02e" - }, - "pb-IF43U00nFw==": { - "display_string": [ - "\ue020virubhai2004", - "\ue030Android61899985" - ], - "profiles": [], - "name": "\ue020virubhai2004", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 10:41:21", - "registerOn": 1670244547.7882876, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244547.7882884, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244547.7882965, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244547.7882974, - "lastIP": "a\u007fk~~mgaibvvb|h", - "deviceUUID": "dd5f225c8b6a7fb8d3e574dab97657c17d4abfff" - }, - "pb-IF4zUmFdCQ==": { - "display_string": [ - "\ue030Android54726114" - ], - "profiles": [], - "name": "\ue030Android54726114", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-17 22:18:54", - "registerOn": 1670244582.910993, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244582.9109936, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244582.9110038, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244582.911005, - "lastIP": "dvvcxvb}l~}ld", - "deviceUUID": "233d77242ee2e121329a33c05281408b169a0bc9" - }, - "pb-IF4eUnYfDQ==": { - "display_string": [ - "\ue063DarknexxoY" - ], - "profiles": [], - "name": "\ue063DarknexxoY", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-29 14:50:56", - "registerOn": 1670244684.2722738, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244684.2722743, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244684.2722826, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244684.2722836, - "lastIP": "aakiaoha``", - "deviceUUID": "18e88cd338cd9bbc01a914308c28fe53dfb0643a" - }, - "pb-IF4jU2YsNw==": { - "display_string": [ - "\ue063RemissCon2" - ], - "profiles": [], - "name": "\ue063RemissCon2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-17 08:04:05", - "registerOn": 1670244791.781524, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244791.7815247, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244791.7815332, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244791.7815342, - "lastIP": "axi~}mcaid}vg}", - "deviceUUID": "38f82533292e1b2d5e98e9d0fc9bc017d6e5ab04" - }, - "pb-IF4SU3gHFg==": { - "display_string": [ - "\ue063KookyVeloc" - ], - "profiles": [], - "name": "\ue063KookyVeloc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-31 13:01:04", - "registerOn": 1670244810.6883445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244810.6883454, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307527.693986, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307527.6939874, - "lastIP": "b}k~~`gaiavvavi", - "deviceUUID": "0850315ce740515901beae4901295115cbf8cbde" - }, - "pb-IF4xU2EbKg==": { - "display_string": [ - "\ue020AbhishekAjay744", - "\ue030Android58819906" - ], - "profiles": [], - "name": "\ue020AbhishekAjay744", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-05 23:04:11", - "registerOn": 1670244834.7953062, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244834.795307, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245931.7579398, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670251839.1547794, - "lastIP": "azo~{n~~laaigv", - "deviceUUID": "0b54dae3ad809cd77d26bd78a37b19fbf2cf9c34", - "cMsgCount": 0, - "lastMsgTime": 1670245716.467134, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4qU006Nw==": { - "display_string": [ - "\ue020LyricalWill16" - ], - "profiles": [], - "name": "\ue020LyricalWill16", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 19:59:32", - "registerOn": 1670245036.7073662, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245036.7073667, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245036.7073753, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245036.7073762, - "lastIP": "a\u007fn~}jcaia}vb{`", - "deviceUUID": "6a1194454571f41ac5e1649195f6f66374af9f9a" - }, - "pb-IF4DU0IEJg==": { - "display_string": [ - "\ue063CHAINSAW" - ], - "profiles": [], - "name": "\ue063CHAINSAW", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-18 08:46:35", - "registerOn": 1670245237.3236887, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245237.3236895, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670311566.6034017, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670314855.9892335, - "lastIP": "b}k~~ohaj`wvbx", - "deviceUUID": "fa894de18350c769ac7184f54ebec6a2c12ce104", - "cMsgCount": 0, - "lastMsgTime": 1670314973.4557827, - "lastMsg": "Dani i luv \ud83d\udc9e u", - "cSameMsg": 0 - }, - "pb-IF4XU0gINA==": { - "display_string": [ - "\ue063NeuroticFe" - ], - "profiles": [], - "name": "\ue063NeuroticFe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 12:08:36", - "registerOn": 1670245251.4067552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245251.406756, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245251.4067645, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245251.406765, - "lastIP": "axi~xn~}hha`", - "deviceUUID": "5ba8f30c4a81779a2f3c28cc77a01f624490e3e3" - }, - "pb-IF4pUkYMCg==": { - "display_string": [ - "\ue020matin\u0645\u062a\u06cc\u0646\u06f1\u06f1\u06f1" - ], - "profiles": [], - "name": "\ue020matin\u0645\u062a\u06cc\u0646\u06f1\u06f1\u06f1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-04 22:38:07", - "registerOn": 1670245438.228861, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245438.228862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245438.22887, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245438.228871, - "lastIP": "baii\u007fveaoa", - "deviceUUID": "ef3bbfad57cf3b54c1568c14d2c5235eea035a6b" - }, - "pb-IF4sU01YMA==": { - "display_string": [ - "\ue063gInhospita" - ], - "profiles": [], - "name": "\ue063gInhospita", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 12:54:48", - "registerOn": 1670245461.2827165, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245461.2827168, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254383.2225502, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254383.2225513, - "lastIP": "azo~zi~xh~~kg", - "deviceUUID": "7646206bd39ce45504e685befe47159df1f8d399" - }, - "pb-IF4yU2gBDg==": { - "display_string": [ - "\ue030Android61588905" - ], - "profiles": [], - "name": "\ue030Android61588905", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-29 10:01:24", - "registerOn": 1670245480.3847618, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245480.3847623, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245480.3847704, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245480.3847713, - "lastIP": "b}k~}m~yj~~og", - "deviceUUID": "38419a888f73eb5491299e40b26c0c21c52e170a" - }, - "pb-IF4oU0wgKQ==": { - "display_string": [ - "\ue020PathologicalPeak28" - ], - "profiles": [], - "name": "\ue020PathologicalPeak28", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 08:47:48", - "registerOn": 1670245576.6693642, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245576.669365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245576.6693738, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245576.669375, - "lastIP": "a\u007fn~}igaifvva}i", - "deviceUUID": "8b634a71cafac1741c794dffbd4a89325098fb0c" - }, - "pb-IF4MU0w6Cw==": { - "display_string": [ - "\ue020UnopenedCamera42" - ], - "profiles": [], - "name": "\ue020UnopenedCamera42", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-13 11:54:25", - "registerOn": 1670245634.9927588, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245634.9927592, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245634.9927666, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245634.9927678, - "lastIP": "b}k~}jgaagaj", - "deviceUUID": "2a3d70b74dbf6d3b507c9aef723fac9c37647e9a" - }, - "pb-IF5QU0YlIw==": { - "display_string": [ - "\ue030Android63489834" - ], - "profiles": [], - "name": "\ue030Android63489834", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-23 21:42:33", - "registerOn": 1670245821.6299453, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245821.6299458, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245948.333389, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245948.33339, - "lastIP": "a\u007fn~~aeah~~ki", - "deviceUUID": "53c6cfb41ceba0fd96b7d9666541484ffde7ad43" - }, - "pb-IF4GUxUZKg==": { - "display_string": [ - "\ue020DexTerOuSVikAriA" - ], - "profiles": [], - "name": "\ue020DexTerOuSVikAriA", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-15 02:06:37", - "registerOn": 1670245968.7682805, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245968.7682815, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245968.76829, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245968.7682912, - "lastIP": "aya~~liajbxvb\u007fk", - "deviceUUID": "1a3a9cc2874e1a5fe2acec16a7f5014b469618c1" - }, - "pb-IF4WUVY=": { - "display_string": [ - "\ue063SReeJU7", - "\ue030Android63511561" - ], - "profiles": [], - "name": "\ue063SReeJU7", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-09 12:54:40", - "registerOn": 1670246071.2071426, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246071.2071433, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246071.207155, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246071.2071562, - "lastIP": "a\u007fk~xh~~aiajby", - "deviceUUID": "9726ecd2c4229a1706a2a286646058bb1491f133" - }, - "pb-IF4AU00sEw==": { - "display_string": [ - "\ue020FavoriteEscort39", - "\ue030Android63976746", - "\ue030Android63976765" - ], - "profiles": [], - "name": "\ue020FavoriteEscort39", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 18:38:08", - "registerOn": 1670246142.336575, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246142.3365757, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246142.336584, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246142.3365855, - "lastIP": "a\u007fk~}haaib{vaxm", - "deviceUUID": "a536a13b40c12d954647e47754580d8c2cd9ffbf" - }, - "pb-LV4FUkUPAxNEVV8RRk5WBVVEEA==": { - "display_string": [ - "\ue063MadBOY5523" - ], - "profiles": [], - "name": "\ue063MadBOY5523", - "isBan": false, - "isMuted": false, - "accountAge": "2016-08-29 17:40:03", - "registerOn": 1670246174.4305658, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246174.4305663, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670269243.8990993, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268209.343711, - "lastIP": "dvvc}vaxo~z`", - "deviceUUID": "bc217ff73d9ff9f3921131f99b27d93e57d8f5dc", - "cMsgCount": 1, - "lastMsgTime": 1670269547.1789117, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4-VVkxPw==": { - "display_string": [ - "\ue063UpbeatTrad" - ], - "profiles": [], - "name": "\ue063UpbeatTrad", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-27 09:12:01", - "registerOn": 1670246401.2753522, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246401.2753527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246401.2753594, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246401.2753603, - "lastIP": "a~j~}h`aj`xvb~", - "deviceUUID": "5df9a08a22756fac630a940bad70701464060c21" - }, - "pb-IF4lUxYq": { - "display_string": [ - "\ue063DemonChrom" - ], - "profiles": [], - "name": "\ue063DemonChrom", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-19 13:07:34", - "registerOn": 1670246550.481666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246550.4816666, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246550.481681, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670248151.9811552, - "lastIP": "dvvcyvexva|j", - "deviceUUID": "e5cb0a49d7852ffbd9d6fb0d5a3ff064b96ed0f4" - }, - "pb-IF41U3EmJg==": { - "display_string": [ - "\ue020RKGAMING475" - ], - "profiles": [], - "name": "\ue020RKGAMING475", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 20:23:24", - "registerOn": 1670246556.8013268, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246556.8013277, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246556.8013363, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246556.801338, - "lastIP": "azo~{a~wo~wa", - "deviceUUID": "13ce51d9d52a69e2c5b90d0cee75b842d1e48ff4" - }, - "pb-IF4PU08INw==": { - "display_string": [ - "\ue030Android63975172" - ], - "profiles": [], - "name": "\ue030Android63975172", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 10:14:09", - "registerOn": 1670246582.9174058, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246582.9174066, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246582.917415, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246582.9174159, - "lastIP": "a|n~~mhai`}vdz", - "deviceUUID": "f7f4bcb699c85a3e6b639df36b7a72b8fc389fa4" - }, - "pb-IF4uVUYtUA==": { - "display_string": [ - "\ue020\u00c7r\u00e3syS\u016b\u00df\u00e2sH" - ], - "profiles": [], - "name": "\ue020\u00c7r\u00e3syS\u016b\u00df\u00e2sH", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-20 18:43:08", - "registerOn": 1670247000.2656703, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247000.2656715, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247000.2656803, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247000.2656815, - "lastIP": "bxvf}va{k~~mc", - "deviceUUID": "ec526b5ed10e634ec4153dd5cff44b62cb6adaad" - }, - "pb-IF4-UxUcVA==": { - "display_string": [ - "\ue020WobblyOffender29", - "\ue030Android60540547" - ], - "profiles": [], - "name": "\ue020WobblyOffender29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-17 19:48:44", - "registerOn": 1670247189.9195635, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247189.9195642, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247189.9195719, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247189.9195733, - "lastIP": "dvvc{vg}vhy", - "deviceUUID": "\u0015V\u000eR\u0003\u0010\u0003[\u0002SBUYTXG" - }, - "pb-IF42UnUjVw==": { - "display_string": [ - "\ue020IneligibleLeague40" - ], - "profiles": [], - "name": "\ue020IneligibleLeague40", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-24 09:18:32", - "registerOn": 1670247193.955294, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247193.9552946, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247193.9553025, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247193.9553034, - "lastIP": "azo~zi~~ngaj`v", - "deviceUUID": "36e3d3e9c6a659e3880dcfe9d2f67be1f082a91a" - }, - "pb-IF5WUlhaPA==": { - "display_string": [ - "\ue030Android59530809" - ], - "profiles": [], - "name": "\ue030Android59530809", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-07 19:28:40", - "registerOn": 1670247209.9995768, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247209.9995773, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247209.9995859, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247209.9995873, - "lastIP": "evvizvbzj~~je", - "deviceUUID": "eefc6cc1babacff36bb757b998aa7612049997f1" - }, - "pb-IF4JUlYDVA==": { - "display_string": [ - "\ue020FoolhardyGorilla5970", - "\ue030Android60315518" - ], - "profiles": [], - "name": "\ue020FoolhardyGorilla5970", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-09 20:52:34", - "registerOn": 1670247289.2347045, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247289.234705, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247289.234714, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247289.2347152, - "lastIP": "azo~{a~}mbajd|", - "deviceUUID": "81ba11dea4484e124c748caf1f8c934b02c6c4bf" - }, - "pb-IF4zU08lLA==": { - "display_string": [ - "\ue063Trushank" - ], - "profiles": [], - "name": "\ue063Trushank", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 16:04:33", - "registerOn": 1670247350.8036637, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247350.8036642, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247350.8036718, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670248791.2815745, - "lastIP": "azj~zo~~o`ajc\u007f", - "deviceUUID": "37f641d10b06f13f5f060f73b659c3a28be656d2" - }, - "pb-IF5QU2hSFw==": { - "display_string": [ - "\ue063AffectiveH" - ], - "profiles": [], - "name": "\ue063AffectiveH", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-16 17:12:18", - "registerOn": 1670247370.5213387, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247370.5213394, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247370.521346, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670250289.7863464, - "lastIP": "a\u007fn~~aealcaibv", - "deviceUUID": "35d73de1e2b619caae503f246447716726482aa5" - }, - "pb-IF5QV1EqEg==": { - "display_string": [ - "\ue063Harshini12" - ], - "profiles": [], - "name": "\ue063Harshini12", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-04 15:20:08", - "registerOn": 1670247379.5591614, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247379.5591621, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247379.5591695, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247379.5591702, - "lastIP": "azo~zh~~n~}mb", - "deviceUUID": "6ca8762f538f51c995290038bd88a67012d79d59" - }, - "pb-IF4qU3BcNw==": { - "display_string": [ - "\ue020PrimitiveCoercion25" - ], - "profiles": [], - "name": "\ue020PrimitiveCoercion25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-25 14:20:42", - "registerOn": 1670247466.2097733, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247466.209774, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247466.2097843, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247466.209785, - "lastIP": "azo~{n~wh~}ji", - "deviceUUID": "3c7fff1e73e618150ff953c14e19a044f37769f3" - }, - "pb-IF40U0EFPQ==": { - "display_string": [ - "\ue020UniqueScandal132", - "\ue030Android63100788" - ], - "profiles": [], - "name": "\ue020UniqueScandal132", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-15 17:29:52", - "registerOn": 1670247485.992155, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247485.9921556, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247485.9921625, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247485.9921637, - "lastIP": "aya~~liajc\u007fvhx", - "deviceUUID": "fee953544ab6d633c2bf346f44fe26c298379aa6" - }, - "pb-IF4uU3YEVA==": { - "display_string": [ - "\ue020TipTopCommander1918" - ], - "profiles": [], - "name": "\ue020TipTopCommander1918", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-23 23:20:49", - "registerOn": 1670247553.2624562, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247553.2624567, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247553.262465, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247553.2624657, - "lastIP": "azo~|`~~ldaig\u007f", - "deviceUUID": "ae7559bed7f2f113a7ec9669a8bca03161057a17" - }, - "pb-JiNJARFYU0pGXVdCFU9TVVZEFkFaRFlL": { - "display_string": [ - "\ue020mooninvaders24", - "\ue030Android20461819" - ], - "profiles": [], - "name": "\ue020mooninvaders24", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-24 16:56:27", - "registerOn": 1670247591.3978565, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247591.397857, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247591.3978643, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247591.3978658, - "lastIP": "b}k~~oha`faifz", - "deviceUUID": "\u0015\u0002[VW\u0017T\u000eWSB\u0005ZP\u0004D" - }, - "pb-IF4UU05eLw==": { - "display_string": [ - "\ue063NoName48451a" - ], - "profiles": [], - "name": "\ue063NoName48451a", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 21:21:34", - "registerOn": 1670247641.508387, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247641.5083878, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247641.5083945, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247641.5083954, - "lastIP": "axi~}m`aifzvb~l", - "deviceUUID": "48aa973988bc0e1e653dd8afffdbaeed0377cae5", - "cMsgCount": 0, - "lastMsgTime": 1670248313.8054845, - "lastMsg": "gawngbang haha", - "cSameMsg": 0 - }, - "pb-IF4yVFgOVA==": { - "display_string": [ - "\ue020Xodv8" - ], - "profiles": [], - "name": "\ue020Xodv8", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-16 15:03:14", - "registerOn": 1670247642.5841355, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247642.584136, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314048.98138, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314048.9813817, - "lastIP": "azo~{n~~kbaki", - "deviceUUID": "b404fc754d95d57a6e7a54c80351a23c4bf2f6bc" - }, - "pb-IF4yU2QiCQ==": { - "display_string": [ - "\ue020InitialFool50", - "\ue030Android60382840" - ], - "profiles": [], - "name": "\ue020InitialFool50", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-13 15:45:46", - "registerOn": 1670247846.293781, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247846.2937818, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247846.2937908, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247846.2937915, - "lastIP": "azj~zo~wj~~ah", - "deviceUUID": "5c95b5d12b13fbf4fab5a3b6f1cc7254c3966cf2" - }, - "pb-IF4SUng4Vw==": { - "display_string": [ - "\ue030Android57231442" - ], - "profiles": [], - "name": "\ue030Android57231442", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-05 18:15:53", - "registerOn": 1670247875.3993134, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247875.3993142, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247875.3993235, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670248659.7735941, - "lastIP": "azj~zo~~kdajb|", - "deviceUUID": "7e6ecd69fad99e1e7907fc561f46fe8648da42a0", - "cMsgCount": 0, - "lastMsgTime": 1670248014.0863714, - "lastMsg": "sorry", - "cSameMsg": 0 - }, - "pb-IF4jU288Jg==": { - "display_string": [ - "\ue063PentFitnes" - ], - "profiles": [], - "name": "\ue063PentFitnes", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-22 12:18:54", - "registerOn": 1670247997.8078763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247997.807877, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247997.8079166, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247997.8079176, - "lastIP": "aw`~\u007fva{l~zh", - "deviceUUID": "b7ae1252e2b5fa5e54febc349df8eef6dcedd654" - }, - "pb-IF4tUmYMXA==": { - "display_string": [ - "\ue063InvasiveS2" - ], - "profiles": [], - "name": "\ue063InvasiveS2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-14 21:55:15", - "registerOn": 1670248007.8311138, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248007.8311145, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248007.8311238, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248007.8311248, - "lastIP": "azo~{i~}liaidw", - "deviceUUID": "f92a0e56fa90e44abc0c3ae47afef4cc76f85d54" - }, - "pb-IF4oU08MDg==": { - "display_string": [ - "\ue063kishujain5" - ], - "profiles": [], - "name": "\ue063kishujain5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 22:06:06", - "registerOn": 1670248040.9213223, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248040.921323, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248040.9213312, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248040.9213328, - "lastIP": "azo~|`~~k`al", - "deviceUUID": "53da70035fa49159ecadabfeff9aca2a0b93b917" - }, - "pb-IF5cU0oCCg==": { - "display_string": [ - "\ue020Rahulnirania03" - ], - "profiles": [], - "name": "\ue020Rahulnirania03", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 21:48:41", - "registerOn": 1670248107.194649, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248107.1946497, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248107.1946566, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248107.1946573, - "lastIP": "d}va\u007fo~}jdaj`x", - "deviceUUID": "76d5be041291d8560127682c0ceec6cd0eb876b3" - }, - "pb-IF4zU2MgJw==": { - "display_string": [ - "\ue020SharpEnemy92311" - ], - "profiles": [], - "name": "\ue020SharpEnemy92311", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-09 17:53:20", - "registerOn": 1670248148.3000412, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248148.300042, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248148.3000498, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248148.300051, - "lastIP": "a}l~~meaje~vb{o", - "deviceUUID": "bc4a6eebc93dd7e4038333c4d5f45f8752c87a83", - "cMsgCount": 0, - "lastMsgTime": 1670248594.0354967, - "lastMsg": "but I don't know Japanese ", - "cSameMsg": 0 - }, - "pb-IF5SV2VbAQ==": { - "display_string": [ - "\ue020PerfidiousStress40" - ], - "profiles": [], - "name": "\ue020PerfidiousStress40", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-16 14:04:25", - "registerOn": 1670248218.5660353, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248218.5660357, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670249317.694444, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670249161.7200937, - "lastIP": "a~o~va~}liai`x", - "deviceUUID": "2caee23c5f2ab271561abad7432231aa1f6eaa52", - "cMsgCount": 0, - "lastMsgTime": 1670250279.6040926, - "lastMsg": "ok", - "cSameMsg": 0 - }, - "pb-IF4-U08uHQ==": { - "display_string": [ - "\ue063Ug509" - ], - "profiles": [], - "name": "\ue063Ug509", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 21:31:48", - "registerOn": 1670248282.0917091, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248282.0917094, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248282.0917168, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248282.0917177, - "lastIP": "b}j~~ndaievvcz", - "deviceUUID": "ab8bac21d26e7a29912816ff756448ef70962a87" - }, - "pb-JiNJARFcXEpDWlpAGUJVU1dBGUVfR1ZC": { - "display_string": [ - "\ue020PokeyHammer5496", - "\ue030Android4999646" - ], - "profiles": [], - "name": "\ue020PokeyHammer5496", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-07 20:24:30", - "registerOn": 1670248414.2451305, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248414.245131, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248414.2451403, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670248610.574863, - "lastIP": "azo~{a~x`~yk", - "deviceUUID": "78a6047d38f5917cfaa19831802db117a412877e" - }, - "pb-JiNJVxFTV0JDVV9BGE5YV11DFEleR1hA": { - "display_string": [ - "\ue063ThirstyNin", - "\ue020ThirstyNinja13866", - "\ue030Android24392040" - ], - "profiles": [], - "name": "\ue063ThirstyNin", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-30 15:41:41", - "registerOn": 1670248698.2888656, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248698.288866, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248698.2888749, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670252335.8334715, - "lastIP": "dvvb~o~~ieam`", - "deviceUUID": "f61386a46fdef46ef497e53cf1ebc414270113c0", - "cMsgCount": 0, - "lastMsgTime": 1670249456.4015536, - "lastMsg": "?", - "cSameMsg": 0 - }, - "pb-IF4jU046Fg==": { - "display_string": [ - "\ue020peskiller11" - ], - "profiles": [], - "name": "\ue020peskiller11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 00:16:42", - "registerOn": 1670248841.8225067, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248841.8225074, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248841.8225157, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248841.8225167, - "lastIP": "azo~{n~~miajdw", - "deviceUUID": "fce7833798549d9cd95c7d32bd0aa32e60ab12ff", - "cMsgCount": 0, - "lastMsgTime": 1670249823.114636, - "lastMsg": "babe don't kill me", - "cSameMsg": 0 - }, - "pb-IF4FU0wNJA==": { - "display_string": [ - "\ue030Android63873735" - ], - "profiles": [], - "name": "\ue030Android63873735", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 10:07:39", - "registerOn": 1670248911.0291958, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248911.0291963, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248911.029205, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670249025.218512, - "lastIP": "azo~zi~~ibaoa", - "deviceUUID": "d377327b5051b8609970eea94af694f8a8fc7e7f" - }, - "pb-IF4pU00vIA==": { - "display_string": [ - "\ue020Sanjay2522" - ], - "profiles": [], - "name": "\ue020Sanjay2522", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 13:59:20", - "registerOn": 1670249211.2428658, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249211.2428665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670249211.2428744, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249211.242875, - "lastIP": "azo~zi~~`gaigw", - "deviceUUID": "47242b1966a1fdc7f191705b819cbfc0bf3c73c1" - }, - "pb-IF4vU08nVg==": { - "display_string": [ - "\ue020Saraj123l" - ], - "profiles": [], - "name": "\ue020Saraj123l", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 20:59:14", - "registerOn": 1670249266.4511678, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249266.4511688, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670249266.451178, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249266.4511793, - "lastIP": "azo~{i~}jgaib}", - "deviceUUID": "c79f250eccbdc9292cc25bd5467800dca7dd92c6" - }, - "pb-IF4jUlRTHw==": { - "display_string": [ - "\ue063thalekalle" - ], - "profiles": [], - "name": "\ue063thalekalle", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-29 13:03:25", - "registerOn": 1670249349.700927, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249349.7009273, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670249483.5507846, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249349.7009356, - "lastIP": "a\u007fk~~mgaifyvb~o", - "deviceUUID": "b36ab79fdec5db990e50b5f0e647c7c34f287ad0", - "cMsgCount": 0, - "lastMsgTime": 1670249691.590385, - "lastMsg": "how big is your titis", - "cSameMsg": 0 - }, - "pb-IF49U04vXA==": { - "display_string": [ - "\ue020LoathsomeReaction46" - ], - "profiles": [], - "name": "\ue020LoathsomeReaction46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 13:58:29", - "registerOn": 1670249450.0387409, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249450.0387418, - "totaltimeplayer": 0, - "warnCount": 3, - "lastWarned": 1670249655.6163998, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249450.0387526, - "lastIP": "d|vbzh~~mfaai", - "deviceUUID": "f8cbfc59d93e526ed3aa7fa1ed51486351576c0d", - "cMsgCount": 0, - "lastMsgTime": 1670249655.6163387, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4wVFcZPw==": { - "display_string": [ - "\ue063CivilizedT" - ], - "profiles": [], - "name": "\ue063CivilizedT", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-08 13:54:25", - "registerOn": 1670249678.8690112, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249678.8690119, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670249678.8690212, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670264684.8742297, - "lastIP": "a\u007fk~~oaaj`\u007fvf|", - "deviceUUID": "44e3910a7e2c0d1388c508e23395a197d9699044", - "cMsgCount": 0, - "lastMsgTime": 1670266062.1509123, - "lastMsg": "wtf", - "cSameMsg": 0 - }, - "pb-IF4dUm4qLQ==": { - "display_string": [ - "\ue063ashknight4", - "\ue030Android56184369" - ], - "profiles": [], - "name": "\ue063ashknight4", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-21 01:36:02", - "registerOn": 1670249762.308179, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249762.3081794, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670249762.3081875, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249762.3081884, - "lastIP": "a}h~~liakgaj`~", - "deviceUUID": "774550730ff3fc25eb88f0355d4a195037d77028" - }, - "pb-IF4gUlkcDA==": { - "display_string": [ - "\ue030Android59895610" - ], - "profiles": [], - "name": "\ue030Android59895610", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-21 11:44:16", - "registerOn": 1670249849.4518666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249849.451867, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670249884.5996675, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249849.4518764, - "lastIP": "dvva{`~~idaje{", - "deviceUUID": "919131afccd37b147af5f963a5193b6317ca3ed3", - "cMsgCount": 0, - "lastMsgTime": 1670249884.5995364, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-LV4FB0JTA0VAWFYUEUdXBlNDFg==": { - "display_string": [ - "\ue063HEROgamer", - "\ue030Android24143429", - "\ue030Android15189438", - "\ue030Android16124077" - ], - "profiles": [], - "name": "\ue063HEROgamer", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-12 22:39:09", - "registerOn": 1670250120.0074592, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250120.0074596, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250120.0074673, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670267428.3911939, - "lastIP": "dvvd|vd}va}`", - "deviceUUID": "3097c53d0c0a6126c54f877065f6addaa1684210" - }, - "pb-IF4cU0xZMw==": { - "display_string": [ - "\ue063phiNix", - "\ue020TanishkFRANK", - "\ue020YawningCandle50", - "\ue020ClutchingSolo69", - "\ue030Android63908271" - ], - "profiles": [], - "name": "\ue063phiNix", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 20:15:27", - "registerOn": 1670250133.4527495, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250133.45275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250133.452759, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250133.45276, - "lastIP": "dvvd}vfvvb~l", - "deviceUUID": "7d19f22e9444d68ed2d5da1dd20d0511447410ce" - }, - "pb-IF4TABUN": { - "display_string": [ - "\ue063SRD1111997", - "\ue030Android22651353" - ], - "profiles": [], - "name": "\ue063SRD1111997", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-21 16:41:56", - "registerOn": 1670250268.0836828, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250268.0836837, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250268.0836926, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250268.0836935, - "lastIP": "a\u007fk~~n`ajc|va{i", - "deviceUUID": "85eca4976bc87b8b8109d1f417513119a8a32899" - }, - "pb-IF5QU1EMXA==": { - "display_string": [ - "\ue02011MAXTON11" - ], - "profiles": [], - "name": "\ue02011MAXTON11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 20:04:28", - "registerOn": 1670250295.143146, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250295.1431468, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312749.1196575, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312749.1196587, - "lastIP": "axi~zi~~m`aih}", - "deviceUUID": "5030e89d0d9c2de986e244acf9e88ad4503934cd" - }, - "pb-IF4MU2ozNA==": { - "display_string": [ - "\ue030Android61746695" - ], - "profiles": [], - "name": "\ue030Android61746695", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-05 20:41:06", - "registerOn": 1670250332.259322, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250332.2593224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250332.2593436, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250332.2593443, - "lastIP": "dvvcyvewvaxa", - "deviceUUID": "7c64a4ae863115bd7704c6825796c1decc327e51" - }, - "pb-IF4xU04eMw==": { - "display_string": [ - "\ue063rudrakshsh" - ], - "profiles": [], - "name": "\ue063rudrakshsh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 15:23:07", - "registerOn": 1670250383.4424148, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250383.4424157, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250383.442425, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250383.4424262, - "lastIP": "azj~z`~{m~~nb", - "deviceUUID": "d130a8d00098ff798281658f5155cd73bcc5b3c1" - }, - "pb-IF4mUkwhAA==": { - "display_string": [ - "\ue020WinningJogger46419" - ], - "profiles": [], - "name": "\ue020WinningJogger46419", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-01 21:28:10", - "registerOn": 1670250488.7782063, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250488.778207, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254357.983664, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670253386.3972933, - "lastIP": "azo~{l~~ndaigy", - "deviceUUID": "2c2779637d66affab87d4694ba875b4dc06558f6", - "cMsgCount": 0, - "lastMsgTime": 1670254650.8939326, - "lastMsg": "hu hu huuuuuuuu", - "cSameMsg": 0 - }, - "pb-IF5cU1AlNQ==": { - "display_string": [ - "\ue063ReticentPr" - ], - "profiles": [], - "name": "\ue063ReticentPr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 16:44:28", - "registerOn": 1670250659.4981358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250659.4981365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250659.4981453, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250659.4981463, - "lastIP": "a~k~~ndan~}m`", - "deviceUUID": "616bf13ce6524e0c95ff3b7024bcb317a305ba7f" - }, - "pb-IF4oU0s9PQ==": { - "display_string": [ - "\ue030Android63809675" - ], - "profiles": [], - "name": "\ue030Android63809675", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-05 15:28:37", - "registerOn": 1670250666.417381, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250666.417382, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250666.4173903, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250666.4173918, - "lastIP": "a~i~~iiaii|vgz", - "deviceUUID": "\u0015VXYQBU\u000bY\u0004\u0011XT\u0003" - }, - "pb-IF5SUlE-KQ==": { - "display_string": [ - "\ue030Android58903800" - ], - "profiles": [], - "name": "\ue030Android58903800", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-13 20:36:23", - "registerOn": 1670250707.6840343, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250707.6840348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250707.684044, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250707.684045, - "lastIP": "dvvc}vaxl~~`c", - "deviceUUID": "e8a2da1bdc74e640f94c66aea691763073d2df29" - }, - "pb-IF4GUmszHA==": { - "display_string": [ - "\ue020suryarocker1999" - ], - "profiles": [], - "name": "\ue020suryarocker1999", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-04 20:32:35", - "registerOn": 1670250719.6712677, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250719.6712685, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250719.6712766, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250719.6712773, - "lastIP": "a\u007fn~~ahaa~}ii", - "deviceUUID": "\u0015\u0003\\WXL" - }, - "pb-IF4WU2VaXQ==": { - "display_string": [ - "\ue063Interesti7", - "\ue030Android61201689" - ], - "profiles": [], - "name": "\ue063Interesti7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-14 13:31:29", - "registerOn": 1670250920.3041723, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250920.3041728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250920.3041825, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250920.3041835, - "lastIP": "azj~zo~~lgai`\u007f", - "deviceUUID": "d6815a2cb1771730f88ada9d4173d80c2b4e90af" - }, - "pb-IF4rU0U8Eg==": { - "display_string": [ - "\ue020VocationalScrutiny21", - "\ue030Android50978082" - ], - "profiles": [], - "name": "\ue020VocationalScrutiny21", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 12:45:33", - "registerOn": 1670251027.71761, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670251027.7176106, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251027.7176192, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251027.7176204, - "lastIP": "dxvbvve}va|j", - "deviceUUID": "77dea83bafe18e363ae49809edd8687ed2d5cfda" - }, - "pb-IF4zUxYJEw==": { - "display_string": [ - "\ue063FrostedLor" - ], - "profiles": [], - "name": "\ue063FrostedLor", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-19 22:59:21", - "registerOn": 1670251058.8195562, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670251058.819557, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670251158.2238212, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251058.8195662, - "lastIP": "a}l~~meaje~vb{o", - "deviceUUID": "6c31f2cd8004bc88fec33cd12dcf4451a54b98ed", - "cMsgCount": 1, - "lastMsgTime": 1670251165.5072389, - "lastMsg": "bska", - "cSameMsg": 0 - }, - "pb-IF4DUk5TUg==": { - "display_string": [ - "\ue020OceanicCaptivity19" - ], - "profiles": [], - "name": "\ue020OceanicCaptivity19", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-07 01:49:24", - "registerOn": 1670251261.472954, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670251261.4729545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251261.4729621, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251261.472963, - "lastIP": "b\u007fi~~`~~ohale", - "deviceUUID": "80a731f93a43685f2fbc45b28f339808f8a9d5ab" - }, - "pb-IF4zU1BaEg==": { - "display_string": [ - "\ue063FreezingFl" - ], - "profiles": [], - "name": "\ue063FreezingFl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 20:15:42", - "registerOn": 1670251764.2393317, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670251764.2393327, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251764.2393408, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251764.2393415, - "lastIP": "a~h~zl~~mbaigx", - "deviceUUID": "c6eee5b8e498eeeb452c5e3d90b3e3075c962753" - }, - "pb-IF5TU3AmUQ==": { - "display_string": [ - "\ue030Android62080452" - ], - "profiles": [], - "name": "\ue030Android62080452", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 20:59:36", - "registerOn": 1670251929.830174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670251929.830175, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299688.556131, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299688.556132, - "lastIP": "azo~|j~~afaic~", - "deviceUUID": "fdbc58d0451aee66658ca47acaa38fcafe3cc83e" - }, - "pb-IF4wV3cJLw==": { - "display_string": [ - "\ue020gokulcmkl" - ], - "profiles": [], - "name": "\ue020gokulcmkl", - "isBan": false, - "isMuted": false, - "accountAge": "2019-01-06 17:13:28", - "registerOn": 1670252119.4277601, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252119.4277606, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252119.4277675, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252119.4277682, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF4TU08iDQ==": { - "display_string": [ - "\ue063DecodeGame" - ], - "profiles": [], - "name": "\ue063DecodeGame", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 23:48:49", - "registerOn": 1670252138.4784591, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252138.4784598, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252138.4784687, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252138.4784696, - "lastIP": "azo~|k~}iaajdv", - "deviceUUID": "5c72854fb38549f2159c7bb467ca960acf92a3ed" - }, - "pb-IF4QU04vLQ==": { - "display_string": [ - "\ue020DesirousAutonomy49" - ], - "profiles": [], - "name": "\ue020DesirousAutonomy49", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 20:15:58", - "registerOn": 1670252416.490065, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252416.4900656, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252416.4900723, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252416.4900734, - "lastIP": "a\u007fn~~aeal`ajdw", - "deviceUUID": "ee801aee1dc3812a8c5b5b8e61a9211912bdedd5" - }, - "pb-IF4DVEpfCA==": { - "display_string": [ - "\ue063dynamic271", - "\ue030Android41785159" - ], - "profiles": [], - "name": "\ue063dynamic271", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-22 03:33:27", - "registerOn": 1670252423.468689, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252423.4686897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252423.468697, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670261454.5566123, - "lastIP": "a\u007fk~~`faihajd|", - "deviceUUID": "180be3d7bbef58dbf5c518f31b09ec00fffeaf68" - }, - "pb-IF4rU0UcFw==": { - "display_string": [ - "\ue020Sanath2512" - ], - "profiles": [], - "name": "\ue020Sanath2512", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-04 23:21:03", - "registerOn": 1670252569.9620147, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252569.9620152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252569.9620223, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252569.9620235, - "lastIP": "a\u007fk~~`baibaid", - "deviceUUID": "fc7516305c400090c2197ce1bd6eb95982a5359e" - }, - "pb-IF4JVVMgDA==": { - "display_string": [ - "\ue020FutileBeef19" - ], - "profiles": [], - "name": "\ue020FutileBeef19", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-26 17:42:51", - "registerOn": 1670252578.065086, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252578.0650864, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252578.0650954, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670252682.9967282, - "lastIP": "dvvcxva}a~}jh", - "deviceUUID": "ba6691ca1d69bc886641d414188b625508bc12b0" - }, - "pb-IF4AU2QnDg==": { - "display_string": [ - "\ue030Android61174087" - ], - "profiles": [], - "name": "\ue030Android61174087", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-12 10:48:37", - "registerOn": 1670252628.7949886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252628.7949893, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252628.794997, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252628.7949986, - "lastIP": "a~o~}lhalfaifx", - "deviceUUID": "a57d53721cf79ae8f3f622ff251eae9dc9d487b3" - }, - "pb-LV4FBBRcUBESWV4RFBVUV1NBRA==": { - "display_string": [ - "\ue020mBAROT" - ], - "profiles": [], - "name": "\ue020mBAROT", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-05 14:49:29", - "registerOn": 1670252668.5095925, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252668.5095932, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670309153.0495365, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309084.0367115, - "lastIP": "azo~|j~}kiaje{", - "deviceUUID": "7bfa41b057c23c13310fd135826868e7437985d1", - "cMsgCount": 0, - "lastMsgTime": 1670310067.6689224, - "lastMsg": "oka byee", - "cSameMsg": 0 - }, - "pb-IF42V2MNDA==": { - "display_string": [ - "\ue020BeamingCornball58058" - ], - "profiles": [], - "name": "\ue020BeamingCornball58058", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-25 13:47:40", - "registerOn": 1670252719.4028423, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252719.4028435, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252719.402854, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252719.4028552, - "lastIP": "a~m~va~zk~~kb", - "deviceUUID": "406b1efe0a882743f7cc93f49688159f6d818e94" - }, - "pb-IF4UU2kpNw==": { - "display_string": [ - "\ue063EliteChime" - ], - "profiles": [], - "name": "\ue063EliteChime", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-27 23:51:26", - "registerOn": 1670252794.6688824, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252794.668883, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252794.6688926, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252794.6688933, - "lastIP": "a\u007fk~~mgaie\u007fva|j", - "deviceUUID": "d3e1bcb17b77ebd8fe8bcebcaaa38fa7bad5d9d3" - }, - "pb-IF42VEcmMg==": { - "display_string": [ - "\ue020AssuredStagnation16", - "\ue030Android42284044" - ], - "profiles": [], - "name": "\ue020AssuredStagnation16", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-09 20:05:06", - "registerOn": 1670252857.919152, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252857.9191527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252857.9191623, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252857.9191637, - "lastIP": "d}va\u007f`~yo~~n", - "deviceUUID": "332a46b82a6e08bbb1deb961addf8bdd99ba2b10" - }, - "pb-IF4nU3ZaUg==": { - "display_string": [ - "\ue020FrumptiousQuagga8864" - ], - "profiles": [], - "name": "\ue020FrumptiousQuagga8864", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-17 17:53:38", - "registerOn": 1670252952.226182, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252952.2261825, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252952.226189, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252952.2261899, - "lastIP": "a\u007fn~}hcai`xvaxo", - "deviceUUID": "8600fa9f3e667fd22ee502fe7f117a3cf2a8edba" - }, - "pb-IF4rU0lcKw==": { - "display_string": [ - "\ue020PetrifiedErrand43" - ], - "profiles": [], - "name": "\ue020PetrifiedErrand43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 09:50:16", - "registerOn": 1670252979.329765, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252979.3297658, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252979.3297727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252979.329774, - "lastIP": "azj~z`~|l~~hf", - "deviceUUID": "562c4d5d81234c294d52da4e065a7ffd07927804" - }, - "pb-IF5RU3EIEA==": { - "display_string": [ - "\ue020MeanderingArchon437" - ], - "profiles": [], - "name": "\ue020MeanderingArchon437", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-21 18:55:17", - "registerOn": 1670252993.3708808, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252993.3708813, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252993.3708901, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252993.3708913, - "lastIP": "dvvcxvavk~}jh", - "deviceUUID": "7f92c216275cdca15efa603875e38f0af5c33831" - }, - "pb-IF4cU0cKJA==": { - "display_string": [ - "\ue030Android63676730" - ], - "profiles": [], - "name": "\ue030Android63676730", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 11:00:12", - "registerOn": 1670253081.681861, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253081.6818616, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253081.6818697, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670254297.8800952, - "lastIP": "a\u007fk~xo~~jgala", - "deviceUUID": "bb673b54de9b442b208eb89eed832c2e3dc79536" - }, - "pb-IF4tU04GEw==": { - "display_string": [ - "\ue020ruklawde" - ], - "profiles": [], - "name": "\ue020ruklawde", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 13:35:05", - "registerOn": 1670253363.8080444, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253363.8080451, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253363.808054, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253363.8080547, - "lastIP": "a~o~}jhai`~vcw", - "deviceUUID": "a3d491b75cc0edaaadd932bf025ff0c7018df2a7" - }, - "pb-IF4mU0kaEA==": { - "display_string": [ - "\ue020HonorableGrunt6306" - ], - "profiles": [], - "name": "\ue020HonorableGrunt6306", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-30 19:35:55", - "registerOn": 1670253718.0740502, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253718.0740511, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253718.0740592, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253718.0740604, - "lastIP": "dvvcyvh}vaz`", - "deviceUUID": "8182916895157817de037308848699e720b92950" - }, - "pb-IF4QU0heJg==": { - "display_string": [ - "\ue030Android63711714" - ], - "profiles": [], - "name": "\ue030Android63711714", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 19:20:23", - "registerOn": 1670253805.5955071, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253805.5955074, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253805.5955155, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670253823.1389985, - "lastIP": "azo~{l~~`bajdv", - "deviceUUID": "08297aa99953ac2f3605b7cfa51893bb453e6170" - }, - "pb-IF4PUm4DHA==": { - "display_string": [ - "\ue020AJROCKlegend", - "\ue030Android62073746", - "\ue030Android62760756" - ], - "profiles": [], - "name": "\ue020AJROCKlegend", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-21 11:55:21", - "registerOn": 1670253859.572911, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253859.5729115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670293698.4350636, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670293698.435065, - "lastIP": "a~o~va~|h~~h`", - "deviceUUID": "\u0015\u0002^PRG\u0003\\T\u0007@" - }, - "pb-IF4HU28eKA==": { - "display_string": [ - "\ue030Android62211118" - ], - "profiles": [], - "name": "\ue030Android62211118", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-24 16:28:26", - "registerOn": 1670253923.7958786, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253923.7959, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253923.7959094, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253923.7959101, - "lastIP": "b}k~~`gai`yvh", - "deviceUUID": "acecef9732440497a8e9ca4bc20858a24f086f9d" - }, - "pb-IF5XUlUKKw==": { - "display_string": [ - "\ue020BevinTheBoss" - ], - "profiles": [], - "name": "\ue020BevinTheBoss", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-27 10:44:29", - "registerOn": 1670253938.8944445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253938.894445, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253938.8944535, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253938.8944542, - "lastIP": "dvvc}vaza~~kd", - "deviceUUID": "9807e63e640c1efe5e51981f029a13c5af01b4cc" - }, - "pb-IF5XU0kHNQ==": { - "display_string": [ - "\ue020Maj5677" - ], - "profiles": [], - "name": "\ue020Maj5677", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 13:26:46", - "registerOn": 1670254010.164867, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254010.1648676, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254010.1648767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254010.1648781, - "lastIP": "i{vb{`~~`daic", - "deviceUUID": "66e851e9bac06f20f0195a1d377bca96170cdb1a" - }, - "pb-IF4lVW4jEg==": { - "display_string": [ - "\ue063Samselvin1" - ], - "profiles": [], - "name": "\ue063Samselvin1", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-14 19:43:04", - "registerOn": 1670254079.3648503, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254079.3648508, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254079.3648584, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254079.3648593, - "lastIP": "a~h~}jdaib}vf", - "deviceUUID": "29a32b3adb4f82b1e058c8a7cdcc667e2599c27a" - }, - "pb-IF4-UlICNQ==": { - "display_string": [ - "\ue063Deathless2" - ], - "profiles": [], - "name": "\ue063Deathless2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-26 17:18:21", - "registerOn": 1670254092.4870377, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254092.4870381, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254092.487047, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254092.4870477, - "lastIP": "azo~|`~yo~~`b", - "deviceUUID": "365f1795853aecbfe3386c59d40033d70ea72366" - }, - "pb-IF4BU01cVQ==": { - "display_string": [ - "\ue063ChocolateT" - ], - "profiles": [], - "name": "\ue063ChocolateT", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 20:54:50", - "registerOn": 1670254150.9815195, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254150.9815202, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254150.9815302, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254150.9815311, - "lastIP": "azo~{a~}lcaif{", - "deviceUUID": "a76126d32dd8738d27d85d5b2d95b7168f16fea7" - }, - "pb-IF42U0kbEg==": { - "display_string": [ - "\ue020RustyUnicorn27009" - ], - "profiles": [], - "name": "\ue020RustyUnicorn27009", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 22:42:37", - "registerOn": 1670254220.9986901, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254220.9986908, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254220.9986994, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254220.9987006, - "lastIP": "dvvc{va~k~~af", - "deviceUUID": "f890499c54c2ed30614bb91563b994c0ac17a8b1" - }, - "pb-IF4pU3c_Fg==": { - "display_string": [ - "\ue030Android62872959" - ], - "profiles": [], - "name": "\ue030Android62872959", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-23 12:47:07", - "registerOn": 1670254315.858815, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254315.8588154, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254315.8588223, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254315.858823, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF4nU0shXQ==": { - "display_string": [ - "\ue020NehalSule01" - ], - "profiles": [], - "name": "\ue020NehalSule01", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 18:18:43", - "registerOn": 1670254440.0974624, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254440.0974631, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254440.0974724, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254440.0974734, - "lastIP": "azo~|k~}k~~jh", - "deviceUUID": "e0b58fa1a9353d747d2c86283e7d443cc5e21a0a" - }, - "pb-IF4sU2I5JA==": { - "display_string": [ - "\ue020ImportantYeoman99681" - ], - "profiles": [], - "name": "\ue020ImportantYeoman99681", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-09 18:59:02", - "registerOn": 1670254543.1246269, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254543.1246278, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292846.654432, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292846.6544337, - "lastIP": "azj~z`~|a~vl", - "deviceUUID": "4f70739e851f001a6546754c5de2d4346c829195" - }, - "pb-IF5RU1I4Vw==": { - "display_string": [ - "\ue063Dethracer7" - ], - "profiles": [], - "name": "\ue063Dethracer7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 14:36:44", - "registerOn": 1670254550.1401196, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254550.14012, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254550.1401277, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254550.1401289, - "lastIP": "a\u007fk~za~xm~{a", - "deviceUUID": "5a9cb591ad9851f5a6963552224686de1cb0fffa" - }, - "pb-IF4AU0s_Lg==": { - "display_string": [ - "\ue063Dangerou18" - ], - "profiles": [], - "name": "\ue063Dangerou18", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-05 14:24:27", - "registerOn": 1670254849.679219, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254849.6792197, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254849.679228, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254849.679229, - "lastIP": "dvvcyva\u007fj~~ji", - "deviceUUID": "57fc4e0ed7ea08e967c03cbdaa306eef2cf172c1" - }, - "pb-IF4dV0deMw==": { - "display_string": [ - "\ue020EngrossingFarmer8411" - ], - "profiles": [], - "name": "\ue020EngrossingFarmer8411", - "isBan": false, - "isMuted": false, - "accountAge": "2019-02-27 00:36:07", - "registerOn": 1670255001.736391, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255001.736392, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313768.957601, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313768.9576027, - "lastIP": "a\u007fk~}laajbyva\u007fn", - "deviceUUID": "a0334c888a84b2407e2a4ab6c236518fe8c31d40" - }, - "pb-IF41U08-KA==": { - "display_string": [ - "\ue063Excessive5" - ], - "profiles": [], - "name": "\ue063Excessive5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 18:59:49", - "registerOn": 1670255113.3803844, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255113.380385, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255113.3803947, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255113.3803964, - "lastIP": "azo~{h~~jfajb", - "deviceUUID": "c2c212ff923c6217a21d785856238366adb097a2" - }, - "pb-IF4xU08sHQ==": { - "display_string": [ - "\ue020SmartSid12345", - "\ue030Android63979752", - "\ue030Android42905975" - ], - "profiles": [], - "name": "\ue030Android63979752", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 23:46:13", - "registerOn": 1670255144.4869297, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255144.4869304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255144.4869394, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255144.4869404, - "lastIP": "a}h~~khaia{viw", - "deviceUUID": "d5a8202ad4f3a064230e4c3a06eabcb6f715f2c2" - }, - "pb-IF4jVEwxDw==": { - "display_string": [ - "\ue020surajnikam266", - "\ue030Android61689027" - ], - "profiles": [], - "name": "\ue020surajnikam266", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-31 12:49:06", - "registerOn": 1670255391.4203773, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255391.420378, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255391.4203866, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255391.4203875, - "lastIP": "dvvcyva}h~~nd", - "deviceUUID": "70cff96ba8ba4f084c3253d67efc7841386bd18d", - "cMsgCount": 0, - "lastMsgTime": 1670255587.440066, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF40VEwfPQ==": { - "display_string": [ - "\ue020AJAYJOSHI904" - ], - "profiles": [], - "name": "\ue020AJAYJOSHI904", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-02 17:58:50", - "registerOn": 1670255434.5880437, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255434.5880444, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255434.5880518, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255434.5880527, - "lastIP": "a|a~~ngajbyvg\u007f", - "deviceUUID": "0ee6b6eecf6f52f2bb376cbcb31feee46cb123ec" - }, - "pb-IF4zU20BFA==": { - "display_string": [ - "\ue020TenableCoherence51" - ], - "profiles": [], - "name": "\ue020TenableCoherence51", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-16 12:08:23", - "registerOn": 1670255484.7145073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255484.714508, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255484.7145162, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255484.7145174, - "lastIP": "azo~{l~~nhaihy", - "deviceUUID": "705c9617b9e47d8c50f605c506cf54ea6a67cc58" - }, - "pb-IF4VUnQ-Cg==": { - "display_string": [ - "\ue020aashiq8126" - ], - "profiles": [], - "name": "\ue020aashiq8126", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-20 11:04:40", - "registerOn": 1670255567.027972, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255567.027973, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255567.02798, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255567.0279808, - "lastIP": "azo~{n~yo~}jf", - "deviceUUID": "65e39e7eb61d5effa47ed6c17016cd8ef39929a3" - }, - "pb-IF40U2UfUQ==": { - "display_string": [ - "\ue063ChromeGua3" - ], - "profiles": [], - "name": "\ue063ChromeGua3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-18 16:10:24", - "registerOn": 1670255977.6800907, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255977.6800911, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255977.6800992, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255977.6801002, - "lastIP": "azo~{a~~`caii\u007f", - "deviceUUID": "e10fe74d8f3b704ccbc129a33799524df9d6e93b" - }, - "pb-IF4qU1BYEA==": { - "display_string": [ - "\ue063RubberMast" - ], - "profiles": [], - "name": "\ue063RubberMast", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 16:10:43", - "registerOn": 1670256011.93738, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256011.9373806, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256011.937388, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256011.9373891, - "lastIP": "dvvc}va{o~~kh", - "deviceUUID": "63e47d624472109b043874aa16140f91c34fb3ed" - }, - "pb-IF49U0gMLg==": { - "display_string": [ - "\ue020FocalJunction38" - ], - "profiles": [], - "name": "\ue020FocalJunction38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 12:53:22", - "registerOn": 1670256012.1049006, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256012.1049013, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256012.104909, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256012.1049101, - "lastIP": "azo~{a~}kfaoi", - "deviceUUID": "1a178a99f5a7d57629687eabf1df69d7bbdfa623" - }, - "pb-IF4lB0sz": { - "display_string": [ - "\ue063BrownCreat" - ], - "profiles": [], - "name": "\ue063BrownCreat", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-01 13:39:18", - "registerOn": 1670256028.8637788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256028.863779, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256028.863786, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256028.8637867, - "lastIP": "b}k~~oha`eaj`\u007f", - "deviceUUID": "b0220229f2ebad7ac29d3379a9de68e4e0c9e1ce" - }, - "pb-IF4AUhIyJA==": { - "display_string": [ - "\ue063LongerImag" - ], - "profiles": [], - "name": "\ue063LongerImag", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-13 12:41:16", - "registerOn": 1670256070.954883, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256070.9548838, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256070.954892, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256070.954893, - "lastIP": "dvvc}vazn~z", - "deviceUUID": "230ae545d6366c2d0debb0c4a8803619de13478f" - }, - "pb-IF4RUnY9IQ==": { - "display_string": [ - "\ue030Android57008711" - ], - "profiles": [], - "name": "\ue030Android57008711", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-27 20:35:39", - "registerOn": 1670256129.2770996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256129.2771003, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314133.2505996, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314133.250601, - "lastIP": "azo~|`~~kiaa", - "deviceUUID": "\u0015S\u000ePSA\u0005\\\u0005U\u0017" - }, - "pb-IF40U2k8Ig==": { - "display_string": [ - "\ue030Android61657358" - ], - "profiles": [], - "name": "\ue030Android61657358", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-02 07:48:54", - "registerOn": 1670256381.4128532, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256381.4128542, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256381.4128635, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256381.4128644, - "lastIP": "azo~{n~}jaaif{", - "deviceUUID": "\u0015\u0002U" - }, - "pb-JiNJARFaUEBFW1xEGURTVFxFFkJZQ1BL": { - "display_string": [ - "\ue063Conqueror2", - "\ue030Android6251393" - ], - "profiles": [], - "name": "\ue063Conqueror2", - "isBan": false, - "isMuted": false, - "accountAge": "2016-08-28 23:08:40", - "registerOn": 1670256437.6212132, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256437.6212142, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256437.6212237, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256437.6212244, - "lastIP": "a\u007fk~~`cajbvvayl", - "deviceUUID": "83adaa972d7102283297eee361226c7407497ff5" - }, - "pb-IF4QV1kdNw==": { - "display_string": [ - "\ue063SICKBOY234" - ], - "profiles": [], - "name": "\ue063SICKBOY234", - "isBan": false, - "isMuted": false, - "accountAge": "2019-06-07 18:57:50", - "registerOn": 1670256520.9515796, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256520.95158, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256520.9515882, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256520.951589, - "lastIP": "azo~{n~~naaje\u007f", - "deviceUUID": "72c11652acdcd43b7aedc769abbe37c3982b9523" - }, - "pb-JiNJARFZUUpJX1tGE0dWVlJEE0NdQFhB": { - "display_string": [ - "\ue063bhaumikrat", - "\ue030Android12040933" - ], - "profiles": [], - "name": "\ue020bhaumikrathod1234", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-27 14:51:19", - "registerOn": 1670256565.1365228, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256565.1365232, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312560.4791799, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312560.479181, - "lastIP": "azj~z`~|n~~hb", - "deviceUUID": "24051ec9abcd42747643aa2415870c8cd47b1c39" - }, - "pb-IF4lUhAuDA==": { - "display_string": [ - "\ue063Bodacious8" - ], - "profiles": [], - "name": "\ue063Bodacious8", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-02 18:23:15", - "registerOn": 1670256648.5232904, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256648.523291, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256648.5233006, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256648.5233018, - "lastIP": "a~o~}jhaif}va\u007fj", - "deviceUUID": "2b3d06d2e74e7f36a98e8e8a6851ccb5a52b543d" - }, - "pb-IF4cVGsqNA==": { - "display_string": [ - "\ue020369joker963" - ], - "profiles": [], - "name": "\ue020369joker963", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-15 20:57:36", - "registerOn": 1670256768.0631816, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256768.0631824, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256768.063189, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256768.06319, - "lastIP": "a\u007fn~~adalaaje", - "deviceUUID": "bdca4575f5eeafa7f2539cc58e3df27ed061ba5e" - }, - "pb-IF4XU0E5AQ==": { - "display_string": [ - "\ue020UngainlyAluminum35", - "\ue030Android63419605", - "\ue030Android63419543" - ], - "profiles": [], - "name": "\ue020UngainlyAluminum35", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-10 19:08:41", - "registerOn": 1670256850.1497886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256850.1497893, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670301915.2810547, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670303450.3310106, - "lastIP": "a|o~vo~wk~~oh", - "deviceUUID": "4d9c2aba151eac517fd2829146e384861e29f9ff", - "cMsgCount": 0, - "lastMsgTime": 1670303306.985972, - "lastMsg": "sry vivek", - "cSameMsg": 0 - }, - "pb-IF4wU09SJA==": { - "display_string": [ - "\ue030Android63940563" - ], - "profiles": [], - "name": "\ue030Android63940563", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 13:43:25", - "registerOn": 1670256879.2725005, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256879.272501, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256879.272509, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256879.27251, - "lastIP": "a\u007fn~}iaaleaid\u007f", - "deviceUUID": "f5d1b5720c5e611804c462836db425c51cce3620" - }, - "pb-IF4GUhU4AA==": { - "display_string": [ - "\ue030Android54215093" - ], - "profiles": [], - "name": "\ue030Android54215093", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-25 02:34:17", - "registerOn": 1670257031.9821866, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257031.982187, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257031.9821963, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257031.982197, - "lastIP": "awi~~odaodaj`~", - "deviceUUID": "d6488396d3fc78711d5cf48ef28ed344208b6c5c" - }, - "pb-IF4XUlQNLw==": { - "display_string": [ - "\ue030Android59340397" - ], - "profiles": [], - "name": "\ue030Android59340397", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-31 20:20:09", - "registerOn": 1670257069.9438384, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257069.9438388, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257069.943847, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670257254.3727899, - "lastIP": "a}j~~mbamdakc", - "deviceUUID": "\u0015RZPTAU^\u0004WL\u0005\tVQBWZTPLT^RY" - }, - "pb-IF4-VFMbAg==": { - "display_string": [ - "\ue063ElegantLun" - ], - "profiles": [], - "name": "\ue063ElegantLun", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-13 06:00:26", - "registerOn": 1670257121.1981733, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257121.198174, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257121.1981828, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257121.198184, - "lastIP": "dvvdvvb{k~{m", - "deviceUUID": "c5b4b03a7c3bb039e656794cfc61c49a225d18a7" - }, - "pb-IF4wBUUK": { - "display_string": [ - "\ue020RAEEEEEEEEEEEEEEEEES", - "\ue030Android33511514" - ], - "profiles": [], - "name": "\ue020RAEEEEEEEEEEEEEEEEES", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-09 23:20:43", - "registerOn": 1670257170.4323204, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257170.4323208, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257170.4323282, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670259965.0882533, - "lastIP": "dvvcyvi\u007fvfy", - "deviceUUID": "585dce69a029fb4d29648fd828dc36df5939d7aa" - }, - "pb-IF4AU085Cw==": { - "display_string": [ - "\ue030Android63969121" - ], - "profiles": [], - "name": "\ue030Android63969121", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 14:22:20", - "registerOn": 1670257188.4926977, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257188.4926984, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257188.4927082, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257188.4927092, - "lastIP": "a\u007fj~ym~xh~}m", - "deviceUUID": "\u0015\u0002\b\u0005V\u0016PY\u0003V@TZUY\u0011\u0004YTSDSZQYB" - }, - "pb-IF4OU0JcNw==": { - "display_string": [ - "\ue030Android63334530" - ], - "profiles": [], - "name": "\ue030Android63334530", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-15 22:53:08", - "registerOn": 1670257195.456958, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257195.4569585, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257195.4569666, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257195.4569676, - "lastIP": "a\u007fn~}haakdamh", - "deviceUUID": "d95a49067e47c54d6cf04fb08334208c020b6829" - }, - "pb-IF5QVWsoFw==": { - "display_string": [ - "\ue063Surajkhot0" - ], - "profiles": [], - "name": "\ue063Surajkhot0", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-29 19:11:10", - "registerOn": 1670257216.5894768, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257216.5894775, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257216.589486, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257216.5894868, - "lastIP": "a}j~~ngajezvavi", - "deviceUUID": "95ec89199587112fa5b89ec03f8d6ea5b274851a" - }, - "pb-IF4vU2ISBg==": { - "display_string": [ - "\ue063Nikhil18", - "\ue020IncompetentGhost28", - "\ue030Android60304282", - "\ue030PC750627", - "\ue030PC453003" - ], - "profiles": [], - "name": "\ue030PC750627", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-08 11:29:20", - "registerOn": 1670257267.8095806, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257267.809581, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257267.8095903, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670257608.7073476, - "lastIP": "a\u007fn~}i`aid}vb~m", - "deviceUUID": "82edc8862635598bd73138232e611b9569e9638e" - }, - "pb-IF4AU3ZcAw==": { - "display_string": [ - "\ue063Intolera18" - ], - "profiles": [], - "name": "\ue063Intolera18", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-19 10:14:51", - "registerOn": 1670257442.6885707, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257442.6885712, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257442.6885812, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257442.6885822, - "lastIP": "a\u007fk~~kganga`c", - "deviceUUID": "2b2a5028de891149889a4a2eb39786fad1a95ed5" - }, - "pb-IF4mUnE_Lg==": { - "display_string": [ - "\ue063rohithsai0" - ], - "profiles": [], - "name": "\ue063rohithsai0", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-06 18:59:43", - "registerOn": 1670257451.4285731, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257451.4285738, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257451.4285817, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257451.4285824, - "lastIP": "bxvgaif~vbzl", - "deviceUUID": "e3074849d0eee0df511f6b5881e05ffe938c5b3b" - }, - "pb-IF4HU3UIXA==": { - "display_string": [ - "\ue063danchoak47" - ], - "profiles": [], - "name": "\ue063danchoak47", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-16 17:06:36", - "registerOn": 1670257571.8968, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257571.8968008, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257571.8968105, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257571.8968115, - "lastIP": "baic{vf{vayj", - "deviceUUID": "37fda0db7af73b8e05d9db7f472122163e86fd59" - }, - "pb-IF5TUm4DNg==": { - "display_string": [ - "\ue063Sumanth386" - ], - "profiles": [], - "name": "\ue063Sumanth386", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-11 22:48:19", - "registerOn": 1670257598.010625, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257598.0106256, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257598.0106332, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257598.010634, - "lastIP": "azo~{m~}mdaihz", - "deviceUUID": "d56fd1b3882e3d7b300af8a33463737cd66516c5" - }, - "pb-IF41VEEdVA==": { - "display_string": [ - "\ue063MuscularPl" - ], - "profiles": [], - "name": "\ue063MuscularPl", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-31 20:11:02", - "registerOn": 1670257724.4213145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257724.421315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257724.4213226, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257724.4213235, - "lastIP": "dvvcxvb|l~~hf", - "deviceUUID": "52d137eaf00eb67a82a7f367b5d0a222793760dd" - }, - "pb-IF4-U0w7DQ==": { - "display_string": [ - "\ue020YOSHITHALAKMAL45", - "\ue030Android63751944" - ], - "profiles": [], - "name": "\ue020YOSHITHALAKMAL45", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 21:37:53", - "registerOn": 1670257826.8966699, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257826.8966706, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257826.8966787, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257826.8966799, - "lastIP": "b~j~~hdajbzvb{j", - "deviceUUID": "625be643e68bf9a72627ecb1c203974b21e5daae" - }, - "pb-IF4oBEwf": { - "display_string": [ - "\ue063NoName52901c", - "\ue030Android22180102" - ], - "profiles": [], - "name": "\ue063NoName52901c", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-05 21:27:42", - "registerOn": 1670257898.0722663, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257898.072267, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257898.0722752, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257898.072276, - "lastIP": "a~o~}hhajgaicz", - "deviceUUID": "fbb6a93a18228ba8573fa94f744464ace5a11058" - }, - "pb-IF4iVRRaDQ==": { - "display_string": [ - "\ue063optimusmeg" - ], - "profiles": [], - "name": "\ue063optimusmeg", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-28 19:37:49", - "registerOn": 1670257933.27594, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257933.2759407, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257933.2759502, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257933.2759511, - "lastIP": "azo~~iiajcyva{i", - "deviceUUID": "1d9711343cacf46a5e97d174be2eb96f4bb2bc20" - }, - "pb-IF5UU3YxEA==": { - "display_string": [ - "\ue020MiraculousContrary29" - ], - "profiles": [], - "name": "\ue020MiraculousContrary29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-13 20:55:50", - "registerOn": 1670257969.341402, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257969.3414025, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257969.3414106, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257969.3414116, - "lastIP": "dvvcyvd|vd{", - "deviceUUID": "b72b68b2b301a8c12b2f6e3840192b2eea474da5" - }, - "pb-IF4eU08zVQ==": { - "display_string": [ - "\ue020BouncySnake77868" - ], - "profiles": [], - "name": "\ue020BouncySnake77868", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 18:16:48", - "registerOn": 1670258009.676994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258009.6769946, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258009.6770022, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258009.677003, - "lastIP": "azo~|k~}i`a`", - "deviceUUID": "307ac933e9919132e77bb2da8f82e827ddd5196e" - }, - "pb-IF5VVBI-UQ==": { - "display_string": [ - "\ue063DryPreside", - "\ue030Android35720524" - ], - "profiles": [], - "name": "\ue063DryPreside", - "isBan": false, - "isMuted": false, - "accountAge": "2019-06-12 17:45:06", - "registerOn": 1670258027.5899825, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258027.5899832, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258027.5899925, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258027.5899932, - "lastIP": "bxvc{vb\u007fva}h", - "deviceUUID": "9c05542b0d92d6e3cdaef3d161323aef6f22fe14" - }, - "pb-IF5XU0YhFg==": { - "display_string": [ - "\ue063DiligentSt" - ], - "profiles": [], - "name": "\ue063DiligentSt", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 22:45:27", - "registerOn": 1670258043.6863267, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258043.6863275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258043.6863375, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258043.686339, - "lastIP": "bxvexvizva~a", - "deviceUUID": "c6359922302e30ae253b4c7d7a434e753afd3b5c" - }, - "pb-IF4CVUcaAg==": { - "display_string": [ - "\ue030Android51729718" - ], - "profiles": [], - "name": "\ue030Android51729718", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-01 11:15:45", - "registerOn": 1670258400.3804352, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258400.380436, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258400.3804445, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670262188.268341, - "lastIP": "a~o~}laaib\u007fvav", - "deviceUUID": "d06246790daa5a946dd0053412654233fbdbd195" - }, - "pb-IF5VUlYDHQ==": { - "display_string": [ - "\ue030Android59349492" - ], - "profiles": [], - "name": "\ue030Android59349492", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-01 02:22:07", - "registerOn": 1670258509.7183855, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258509.7183862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258509.7183943, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258509.718396, - "lastIP": "dxvazvaa`", - "deviceUUID": "9bd95b592b7a4c23361b903e2242375724a3bc06" - }, - "pb-IF4OU2oKJw==": { - "display_string": [ - "\ue020CaptainBlackbeard11" - ], - "profiles": [], - "name": "\ue020CaptainBlackbeard11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-05 11:58:33", - "registerOn": 1670258656.2382498, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258656.2382505, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258656.2382581, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258656.2382588, - "lastIP": "b~j~~hdajb{vavj", - "deviceUUID": "0c3eb8ca5ce0429e4b0545f62c20f5f844f5dc97" - }, - "pb-IF4WU0s_VA==": { - "display_string": [ - "\ue020FrostyCourt15" - ], - "profiles": [], - "name": "\ue020FrostyCourt15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 22:44:53", - "registerOn": 1670258709.4077702, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258709.4077706, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258709.4077792, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258709.4077804, - "lastIP": "azo~|`~~liaify", - "deviceUUID": "a9f51694aa2d331a4a30e971af714612fd526077" - }, - "pb-JiNJARFZXUFBX11BGEVXU1RCGERXQ1BF": { - "display_string": [ - "\ue063TaRkHaN221", - "\ue030Android11064809" - ], - "profiles": [], - "name": "\ue063TaRkHaN221", - "isBan": false, - "isMuted": false, - "accountAge": "2017-02-23 19:56:03", - "registerOn": 1670258719.434443, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258719.4344437, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258719.434454, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258719.4344547, - "lastIP": "azo~|`~~kfak", - "deviceUUID": "df2dcc995bb14f4880ff8a8743049ed69645d7b5" - }, - "pb-IF4iNRI7": { - "display_string": [ - "\ue020vikramvicky9917", - "\ue030Android16943081" - ], - "profiles": [], - "name": "\ue020vikramvicky9917", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-23 11:13:31", - "registerOn": 1670258862.0087178, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258862.0087185, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258862.008727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258862.008728, - "lastIP": "azo~{a~~ogaie}", - "deviceUUID": "eb46d3e52be084680ebfe2286c0b3834094347b6" - }, - "pb-IF4nU00CDw==": { - "display_string": [ - "\ue020IndigoProfessor29406" - ], - "profiles": [], - "name": "\ue020IndigoProfessor29406", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 21:37:52", - "registerOn": 1670258952.6872625, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258952.6872628, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258952.6872702, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258952.6872709, - "lastIP": "aya~~liajbyvavh", - "deviceUUID": "cec28973acf105e77c22762e056d2dcad53f79a6" - }, - "pb-IF4nVUkkJg==": { - "display_string": [ - "\ue063Undercove7" - ], - "profiles": [], - "name": "\ue063Undercove7", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-08 18:03:05", - "registerOn": 1670259117.053902, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670259117.0539024, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259117.0539112, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259117.0539124, - "lastIP": "b}k~}jhajdzvdv", - "deviceUUID": "eed06cfd1de9dfbee6fa36ec96d04f3c1a5bfc9a" - }, - "pb-IF4PU0UJFw==": { - "display_string": [ - "\ue020SkeletalMention95" - ], - "profiles": [], - "name": "\ue020SkeletalMention95", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-04 14:07:25", - "registerOn": 1670259225.4756715, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670259225.4756722, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259225.4756813, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259225.4756823, - "lastIP": "a~o~}mcaaiai`}", - "deviceUUID": "ccdaf8b03237a74be04a5b92442eeba20b2444ec" - }, - "pb-IF4VU3EjBg==": { - "display_string": [ - "\ue020viru199554" - ], - "profiles": [], - "name": "\ue020viru199554", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 18:48:33", - "registerOn": 1670259259.5296886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670259259.5296893, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259259.529698, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259259.5296986, - "lastIP": "dvvcyvi\u007fvfy", - "deviceUUID": "56d1170868f04f143c806ef6135b41ea8065127f" - }, - "pb-JiNJARFdVERDXllFGUdVV1VFFkBdRFdC": { - "display_string": [ - "\ue020ismailrifai", - "\ue030Android4344519" - ], - "profiles": [], - "name": "\ue020ismailrifai", - "isBan": false, - "isMuted": false, - "accountAge": "2016-07-04 17:50:10", - "registerOn": 1670259266.6807163, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670259266.680717, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670305906.3024166, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670305906.3024182, - "lastIP": "azo~zi~~h`aig~", - "deviceUUID": "7b315c816cd636483f229a8d98d34bacb99e71c2" - }, - "pb-IF4NVVkCHA==": { - "display_string": [ - "\ue063NoName46139e" - ], - "profiles": [], - "name": "\ue063NoName46139e", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-31 02:48:44", - "registerOn": 1670259528.5617445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670259528.5617456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259528.5617547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259528.5617557, - "lastIP": "cxvb\u007fh~}lgaod", - "deviceUUID": "703a56441b0d763173ea55c61f6a39c66e44f559" - }, - "pb-IF4uVG0fIQ==": { - "display_string": [ - "\ue020SleepyPhantasm49204", - "\ue030Android39278299" - ], - "profiles": [], - "name": "\ue020SleepyPhantasm49204", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-03 17:29:36", - "registerOn": 1670260019.5806453, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260019.580646, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260019.5806546, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260019.5806556, - "lastIP": "azj~z`~|l~~hf", - "deviceUUID": "548d34f6ebd9f112a259b1c8cc304d83b3538a8d" - }, - "pb-IF4eU0UiNw==": { - "display_string": [ - "\ue020DearestSovereignty39", - "\ue030VR291971" - ], - "profiles": [], - "name": "\ue030VR291971", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 23:04:12", - "registerOn": 1670260076.8670533, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260076.867054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260076.8670633, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260076.8670645, - "lastIP": "a~i~~iiaja~vaxa", - "deviceUUID": "4f64d1521a4b6da3ae8223915a4a150f32554469" - }, - "pb-JiNJVxFTUUJJXFlGFUdUUlFGF0NYT1dE": { - "display_string": [ - "\ue063PsychKille", - "\ue030Android2209099" - ], - "profiles": [], - "name": "\ue063PsychKille", - "isBan": false, - "isMuted": false, - "accountAge": "2016-06-09 01:44:47", - "registerOn": 1670260102.0836394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260102.0836399, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260102.0836606, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670260143.8437214, - "lastIP": "awk~wj~}kcaid", - "deviceUUID": "4b8dfc65e95cdda13d37214230680c24ef6a52c4" - }, - "pb-IF5WU1E8DQ==": { - "display_string": [ - "\ue020BraveDeal60" - ], - "profiles": [], - "name": "\ue020BraveDeal60", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 22:45:33", - "registerOn": 1670260137.8995283, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260137.899529, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260137.8995373, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260137.899539, - "lastIP": "dvvcxvg}vb~j", - "deviceUUID": "6d9ffb3e457c116fd09a7056da1ad2eaf6c2268a" - }, - "pb-JiNJARFeUEBHXVhGEkFQVFVFGUJdRFNH": { - "display_string": [ - "\ue063Luminesce8", - "\ue030PC101334" - ], - "profiles": [], - "name": "\ue063Luminesce8", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-26 01:36:26", - "registerOn": 1670260200.3914208, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260200.3914216, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260200.3914292, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260200.3914301, - "lastIP": "a\u007fn~}ieaj`\u007fvawl", - "deviceUUID": "dda89a37d7ce8cdd248de398b1e61a6310268083" - }, - "pb-IF4PU3cHKQ==": { - "display_string": [ - "\ue030Android62944812" - ], - "profiles": [], - "name": "\ue030Android62944812", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 00:32:39", - "registerOn": 1670260355.937781, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260355.9377816, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260355.9377887, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260355.9377894, - "lastIP": "a\u007fk~~kdaiexvey", - "deviceUUID": "\u0015P\\\u0004SC\u0004Z\u0002\u0004\u0011P]Q" - }, - "pb-JiNJARFfXEpBWlpGEUdRVlJCEklXQ1NH": { - "display_string": [ - "\ue020yravishankar15", - "\ue030Android4946615" - ], - "profiles": [], - "name": "\ue063yravishank", - "isBan": false, - "isMuted": false, - "accountAge": "2016-06-14 20:44:13", - "registerOn": 1670260599.100515, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260599.1005156, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260599.1005244, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670260599.1005256, - "lastIP": "dvvc}vb}o~\u007f", - "deviceUUID": "9fcf81ca2127044a13059c7fff597709e8aef9c9" - }, - "pb-IF4QUlgKAA==": { - "display_string": [ - "\ue063Whimsical8" - ], - "profiles": [], - "name": "\ue063Whimsical8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-16 21:25:00", - "registerOn": 1670260736.2662442, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260736.2662444, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260736.266252, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260736.2662528, - "lastIP": "d~vi\u007fvaxo~}md", - "deviceUUID": "d073747787e1fd85a68d6897bed86b72901a4f41" - }, - "pb-IF4cU0EaCQ==": { - "display_string": [ - "\ue063RagingVirg" - ], - "profiles": [], - "name": "\ue063RagingVirg", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-14 22:15:39", - "registerOn": 1670260825.575996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260825.5759964, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260825.5760062, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260825.5760071, - "lastIP": "awk~wk~~lcaif\u007f", - "deviceUUID": "8f92ccdc91c0306504a0a5e8f734ef1cc45e55f1" - }, - "pb-IF4hVEwoJA==": { - "display_string": [ - "\ue020sury2803" - ], - "profiles": [], - "name": "\ue020sury2803", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-03 04:53:30", - "registerOn": 1670260853.6077015, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260853.6077023, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260853.6078458, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260853.6078475, - "lastIP": "awn~~meaje\u007fva|h", - "deviceUUID": "f2c164ad794d898b17253914d4a6c23110a99218" - }, - "pb-JiNJARFfXEZAW1dDGUBQU11GE0FXQFZC": { - "display_string": [ - "\ue020ElectricYodeler26380", - "\ue030Android12313251" - ], - "profiles": [], - "name": "\ue020ElectricYodeler26380", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-05 20:44:22", - "registerOn": 1670260877.9083874, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260877.9083881, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260877.9083965, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260877.9083977, - "lastIP": "a\u007fk~~ofaiaaie~", - "deviceUUID": "567964f0d775d689b7fd35dfbf1e9d25123b5d79", - "cMsgCount": 0, - "lastMsgTime": 1670261659.5812995, - "lastMsg": "lul", - "cSameMsg": 0 - }, - "pb-IF4jU0JaNg==": { - "display_string": [ - "\ue020SeverestApparel30", - "\ue030Android63952940", - "\ue030Android63953044" - ], - "profiles": [], - "name": "\ue020SeverestApparel30", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 12:49:09", - "registerOn": 1670261087.3662689, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261087.3662696, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301081.518586, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301081.5185874, - "lastIP": "cwvd~vh{vez", - "deviceUUID": "c78a794d04aa626c37c56cf9a2e887505993abf9" - }, - "pb-IF4XU3gkNw==": { - "display_string": [ - "\ue020HoneyProgression37" - ], - "profiles": [], - "name": "\ue020HoneyProgression37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 19:58:05", - "registerOn": 1670261114.4563544, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261114.4563549, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261114.4563637, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670261735.6184196, - "lastIP": "azo~zi~~j`a`i", - "deviceUUID": "d6b5c8dc110f804fecb54ed1d5906d8c224a9bbf" - }, - "pb-IF5WVUcOFA==": { - "display_string": [ - "\ue020Angeliccutiee43", - "\ue030Android48977675", - "\ue030Android48990758" - ], - "profiles": [], - "name": "\ue020Angeliccutiee43", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-16 11:20:01", - "registerOn": 1670261205.910979, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261205.9109795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261205.9109886, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261205.9109895, - "lastIP": "dvvd|vb\u007fk~~ii", - "deviceUUID": "\u0015\u0005X\u0004" - }, - "pb-IF5TVVIaLA==": { - "display_string": [ - "\ue020PeakAlarm3243" - ], - "profiles": [], - "name": "\ue020PeakAlarm3243", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-13 22:20:13", - "registerOn": 1670261230.0989811, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261230.0989819, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261230.09899, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670261577.0474558, - "lastIP": "azo~{i~}meaihz", - "deviceUUID": "e332b31902594f55dd2f88cd6c06709f66e9d4f4" - }, - "pb-IF4gNFci": { - "display_string": [ - "\ue020Anirudhalwaysrockzzz" - ], - "profiles": [], - "name": "\ue020Anirudhalwaysrockzzz", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-22 21:06:18", - "registerOn": 1670261708.8552713, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261708.8552723, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261708.8552802, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261708.855281, - "lastIP": "dvvcxva|i~~m", - "deviceUUID": "efab72a946f3bfb5c01a857ae08330f90e063102" - }, - "pb-IF4mVEoyVQ==": { - "display_string": [ - "\ue030Android42718925" - ], - "profiles": [], - "name": "\ue030Android42718925", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-24 16:41:32", - "registerOn": 1670261948.7153764, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261948.715377, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670263209.608887, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261948.715387, - "lastIP": "a\u007fk~~ofaiaaie~", - "deviceUUID": "567964f0d775d689b7fd35dfbf1e9d25123b5d79", - "cMsgCount": 0, - "lastMsgTime": 1670263397.8287296, - "lastMsg": "\ud83d\udca9 ", - "cSameMsg": 0 - }, - "pb-IF4UU08TBA==": { - "display_string": [ - "\ue063Commendabl" - ], - "profiles": [], - "name": "\ue063Commendabl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 19:08:05", - "registerOn": 1670262577.1673675, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262577.167368, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670262577.1673772, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670262577.167378, - "lastIP": "a\u007fn~}igai`~vb~l", - "deviceUUID": "f0ce89638c7caec94595aa7ba691f8135c83d10f" - }, - "pb-IF5UU1EaJA==": { - "display_string": [ - "\ue030Android63987522" - ], - "profiles": [], - "name": "\ue030Android63987522", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 04:42:20", - "registerOn": 1670262591.2810163, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262591.2810168, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670262591.2810266, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670262591.2810276, - "lastIP": "f\u007fva\u007fvazh~{", - "deviceUUID": "4f2fea5353fe40b3d3f50086085d9a00b728bd75" - }, - "pb-IF4-VxM9VQ==": { - "display_string": [ - "\ue020TiredApparition30242" - ], - "profiles": [], - "name": "\ue020TiredApparition30242", - "isBan": false, - "isMuted": false, - "accountAge": "2018-07-28 16:32:06", - "registerOn": 1670262616.424632, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262616.4246325, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670262616.4246418, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670262818.9765315, - "lastIP": "i~vavk~~oiaog", - "deviceUUID": "b97c657beb043a11df17c16d5009f6e088d0f497" - }, - "pb-IF5UUxheIg==": { - "display_string": [ - "\ue020DollarHere69" - ], - "profiles": [], - "name": "\ue020DollarHere69", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-18 14:52:29", - "registerOn": 1670262711.9545352, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262711.9545357, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670263206.0221574, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670263894.805953, - "lastIP": "azo~|a~~m~~m`", - "deviceUUID": "44bf293dd1fd065c2a133e8ec510cda328d941df", - "cMsgCount": 0, - "lastMsgTime": 1670264069.7619326, - "lastMsg": "BHEN KE LAND ", - "cSameMsg": 0 - }, - "pb-IF4vUkRaEg==": { - "display_string": [ - "\ue020\u0110\u00c3\u0158\u0136x\u0160\u00ce\u011eM\u0100" - ], - "profiles": [], - "name": "\ue020\u0110\u00c3\u0158\u0136x\u0160\u00ce\u011eM\u0100", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-27 13:44:02", - "registerOn": 1670262752.0439079, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262752.0439084, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295533.540767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295533.540768, - "lastIP": "azo~{i~}mdajg", - "deviceUUID": "\u0015Q_\u0005Q\u0012\u0004\u000fVQ\u0011", - "cMsgCount": 0, - "lastMsgTime": 1670262769.590432, - "lastMsg": "anyone come to bcs epic smash?", - "cSameMsg": 0 - }, - "pb-IF4WUxcgNw==": { - "display_string": [ - "\ue063HipCompany" - ], - "profiles": [], - "name": "\ue063HipCompany", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-22 19:35:53", - "registerOn": 1670262914.968435, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262914.9684355, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314604.1281486, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314604.12815, - "lastIP": "b}k~}kcaoaaifx", - "deviceUUID": "2484cb8eb0af1bb40680e4565238f860274e03a0" - }, - "pb-IF4NU0IzCA==": { - "display_string": [ - "\ue020Naveenkrish010", - "\ue020BurnedGoose4973" - ], - "profiles": [], - "name": "\ue020Naveenkrish010", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-21 22:53:28", - "registerOn": 1670263043.3790493, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263043.3790498, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263043.3790588, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670263043.37906, - "lastIP": "azo~{a~}hfaigy", - "deviceUUID": "8cbf8dc931ac911ca6c7675b57c36fdb08698d8d" - }, - "pb-IF4HUlcgUQ==": { - "display_string": [ - "\ue063AdrenalCha" - ], - "profiles": [], - "name": "\ue063AdrenalCha", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-11 17:32:58", - "registerOn": 1670263148.671265, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263148.6712656, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670272413.2502463, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670273035.4105117, - "lastIP": "d~va\u007fk~|l~{o", - "deviceUUID": "2f88c71ae171757e42db79bd6806e724a6e90204", - "cMsgCount": 0, - "lastMsgTime": 1670263199.353203, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5UU0EkDg==": { - "display_string": [ - "\ue063PainlessVe" - ], - "profiles": [], - "name": "\ue063PainlessVe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-03 12:52:39", - "registerOn": 1670263274.3376331, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263274.3376338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263274.3376408, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670263274.337642, - "lastIP": "azj~z`~~ogaiez", - "deviceUUID": "641a2f073b1e85a22e7456f463b890e78f4be8a7" - }, - "pb-IF4dUxRaIw==": { - "display_string": [ - "\ue063Aaryan9957" - ], - "profiles": [], - "name": "\ue063Aaryan9957", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-10 19:30:59", - "registerOn": 1670263303.484445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263303.484446, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263303.4844553, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670263980.0883124, - "lastIP": "a\u007fk~~`aaa~{`", - "deviceUUID": "d538bbbf3455de4ca22b99f63aa7f00071fa8af6", - "cMsgCount": 0, - "lastMsgTime": 1670264525.1719406, - "lastMsg": "f", - "cSameMsg": 0 - }, - "pb-IF4vU00bAA==": { - "display_string": [ - "\ue020Joydeep98773" - ], - "profiles": [], - "name": "\ue020Joydeep98773", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 19:00:06", - "registerOn": 1670263447.944205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263447.9442055, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263447.944215, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670263447.944216, - "lastIP": "a\u007fn~}hcaid\u007fvb\u007fm", - "deviceUUID": "541cbf0896129baedcdf457c87c03c5d21bd7706" - }, - "pb-IF5TU24NKA==": { - "display_string": [ - "\ue063RichLegacy", - "\ue063ProGamer", - "\ue030PC591402" - ], - "profiles": [], - "name": "\ue063ProGamer", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-12 13:52:43", - "registerOn": 1670263647.0112047, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263647.0112054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263647.0112138, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670263647.0112147, - "lastIP": "dvvcyvaxn~~i`", - "deviceUUID": "e73484d686fbff810dc6a5cf8c7e6cc49ef56b74", - "cMsgCount": 0, - "lastMsgTime": 1670266091.0085788, - "lastMsg": "bhencho mai nhi khelra bye guys enjoy", - "cSameMsg": 0 - }, - "pb-IF4WUhkcNA==": { - "display_string": [ - "\ue020TorpidSoda28" - ], - "profiles": [], - "name": "\ue020TorpidSoda28", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-18 00:43:48", - "registerOn": 1670263664.0475185, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263664.0475194, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263664.047527, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670267352.9067807, - "lastIP": "a\u007fn~~aealfajb}", - "deviceUUID": "\u0015RTSPLX\u000eQS@V\fRP\u0010\u0003\\PYFWYPYDW" - }, - "pb-IF4OU2xZMQ==": { - "display_string": [ - "\ue030Android61875750" - ], - "profiles": [], - "name": "\ue030Android61875750", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 19:26:31", - "registerOn": 1670264228.566189, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670264228.5661895, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670264228.5661979, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670264228.5661986, - "lastIP": "a\u007fk~}kcaada`h", - "deviceUUID": "\u0015U\t" - }, - "pb-IF4gU0wEDw==": { - "display_string": [ - "\ue020FlyingBrainiac12578" - ], - "profiles": [], - "name": "\ue020FlyingBrainiac12578", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 10:05:37", - "registerOn": 1670264955.4655886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670264955.465589, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670264955.465598, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670264955.4655995, - "lastIP": "dvvcxvb}n~v", - "deviceUUID": "d2efd8aacde477a9262f678f5433c27437ffc6bb" - }, - "pb-IF5QU1JaDQ==": { - "display_string": [ - "\ue063Principlej" - ], - "profiles": [], - "name": "\ue063Principlej", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 09:37:42", - "registerOn": 1670265430.1539268, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670265430.1539273, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670265430.1539366, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670265430.1539378, - "lastIP": "azo~{`~~adajbx", - "deviceUUID": "47fb79173121537a33fbe47ef8ad293c0ad3c1b5" - }, - "pb-IF4SUxIFMA==": { - "display_string": [ - "\ue030Android60235119" - ], - "profiles": [], - "name": "\ue030Android60235119", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-04 15:08:40", - "registerOn": 1670266023.2819886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670266023.281989, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670266023.2819977, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670266023.2819986, - "lastIP": "b\u007fk~~adaafaie}", - "deviceUUID": "406df2ab74f0ff998dcabeaba63bf128d7ccef5d" - }, - "pb-IF4AU00uAg==": { - "display_string": [ - "\ue063Jeffin" - ], - "profiles": [], - "name": "\ue063Jeffin", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 11:08:58", - "registerOn": 1670266229.7237597, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670266229.7237601, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670266229.7237673, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670266229.723768, - "lastIP": "bxvf~vcvva{", - "deviceUUID": "0150328aec7a69913cfe30dac447e803a9800838" - }, - "pb-IF4AU2s9Uw==": { - "display_string": [ - "\ue063Pretentio2" - ], - "profiles": [], - "name": "\ue063Pretentio2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-08 12:19:59", - "registerOn": 1670266540.9127097, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670266540.9127102, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670266540.9127188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670266540.91272, - "lastIP": "dvvcxvb|j~}ie", - "deviceUUID": "d475ea93c04557889768bc057af5319dc6bca105", - "cMsgCount": 0, - "lastMsgTime": 1670266929.3332627, - "lastMsg": "sorry ", - "cSameMsg": 0 - }, - "pb-IF5VUhQgPA==": { - "display_string": [ - "\ue020Nithya1357" - ], - "profiles": [], - "name": "\ue020Nithya1357", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-10 22:18:45", - "registerOn": 1670266809.5008829, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670266809.5008838, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268891.7333245, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670271598.2442653, - "lastIP": "dvvb\u007fn~~kdaiby", - "deviceUUID": "0f2c20877efc3588b07f2388906a504a20a4f7d0" - }, - "pb-IF4-V3IdPA==": { - "display_string": [ - "\ue020CharredFlyer12772" - ], - "profiles": [], - "name": "\ue020CharredFlyer12772", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-17 15:53:11", - "registerOn": 1670267294.4895544, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670267294.489555, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670267294.489564, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670267298.693045, - "lastIP": "dvvc|vb|o~{l", - "deviceUUID": "fb8f448e5f6c9142170c0434c30e9d02d2ea4a57" - }, - "pb-IF42U0VSCA==": { - "display_string": [ - "\ue020Bulletproofdon" - ], - "profiles": [], - "name": "\ue020Bulletproofdon", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 22:05:23", - "registerOn": 1670267698.672845, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670267698.6728451, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268220.3769019, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268220.3769035, - "lastIP": "azo~|k~w`~{j", - "deviceUUID": "d5067234b5565092274a259048f39297ac485197", - "cMsgCount": 1, - "lastMsgTime": 1670268749.7117054, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4TUkkYBw==": { - "display_string": [ - "\ue063Mushroom" - ], - "profiles": [], - "name": "\ue063Mushroom", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-18 23:21:10", - "registerOn": 1670267741.857844, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670267741.8578448, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268210.3498394, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268210.3498406, - "lastIP": "eakhajc~va~i", - "deviceUUID": "394fac9d5122b649ccdb9ba4d6c864f03088854c", - "cMsgCount": 1, - "lastMsgTime": 1670267901.2283986, - "lastMsg": "mate", - "cSameMsg": 0 - }, - "pb-IF4sU00vAg==": { - "display_string": [ - "\ue063NasalDiplo", - "\ue030Android53077044" - ], - "profiles": [], - "name": "\ue063NasalDiplo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 19:56:58", - "registerOn": 1670267982.6740432, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670267982.6740434, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670267982.6740515, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670267982.6740527, - "lastIP": "a\u007fn~~aeai~ya", - "deviceUUID": "0064e951148266470c1c3002ace73185d77510f8" - }, - "pb-IF42U3YILQ==": { - "display_string": [ - "\ue063ColderFore" - ], - "profiles": [], - "name": "\ue063ColderFore", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-22 08:38:00", - "registerOn": 1670268235.7617621, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670268235.7617626, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268235.7617717, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268235.7617729, - "lastIP": "avh~~`gaoeakc", - "deviceUUID": "6aa1346e481304a4d7fba94c90f53e1e93b22d2e", - "cMsgCount": 0, - "lastMsgTime": 1670268244.2990446, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4IUmhYLw==": { - "display_string": [ - "\ue030Android55528459" - ], - "profiles": [], - "name": "\ue030Android55528459", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-23 15:19:38", - "registerOn": 1670268669.2764938, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670268669.2764945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268669.2765048, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268669.276506, - "lastIP": "a\u007fn~}iaaiazva\u007f", - "deviceUUID": "\u0015QXYSE\u0003_W\u0004\u0012\u0002\fUW\u0016V\\UPEX\\YYLX", - "cMsgCount": 0, - "lastMsgTime": 1670268673.6153338, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4jU08vMQ==": { - "display_string": [ - "\ue063Serverr936" - ], - "profiles": [], - "name": "\ue063Serverr936", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 10:12:08", - "registerOn": 1670268813.0861893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670268813.0861897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268813.0861993, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268813.0862, - "lastIP": "azo~{i~}mdaah", - "deviceUUID": "548cce6a079bbda740d03793a1d78e999a4c1fd4" - }, - "pb-IF5VU1ItNg==": { - "display_string": [ - "\ue063SaddestAcr" - ], - "profiles": [], - "name": "\ue063SaddestAcr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 01:03:33", - "registerOn": 1670268824.8145304, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670268824.814531, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268824.8145406, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268824.8145416, - "lastIP": "a\u007fk~~leajbwva~h", - "deviceUUID": "80a5927b6c74f9a1f7c8cd16199e41ed94628989" - }, - "pb-IF4HU1AoFw==": { - "display_string": [ - "\ue030Android63992316" - ], - "profiles": [], - "name": "\ue030Android63992316", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 00:14:48", - "registerOn": 1670268999.7515473, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670268999.7515478, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268999.751557, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268999.7515578, - "lastIP": "a}j~~naanfaia{", - "deviceUUID": "5a3b221e698df0e50686cf61a4fd6c361517dd6c" - }, - "pb-IF4iVHRaXA==": { - "display_string": [ - "\ue020CapDevesh" - ], - "profiles": [], - "name": "\ue020CapDevesh", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-16 18:13:04", - "registerOn": 1670269000.4936824, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670269000.4936829, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269000.493692, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670272184.3953347, - "lastIP": "b}k~~`gaafaie~", - "deviceUUID": "70569d57efce9750d7464728562325edcf1203c6" - }, - "pb-IF4yVWpeMg==": { - "display_string": [ - "\ue020Meharsh1306", - "\ue030Android61717776" - ], - "profiles": [], - "name": "\ue030Android61717776", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-12 19:36:27", - "registerOn": 1670269060.6663125, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670269060.666313, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269060.6663203, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670269060.666321, - "lastIP": "b}k~~`iaidakg", - "deviceUUID": "9fcea12656a90d1fa47701bd113e3f0df1e4bb1e" - }, - "pb-IF4uMkky": { - "display_string": [ - "\ue020\ud808\udc31\uaab3C\u0574\u027e\u0282\u04bd\u056a\ud808\udc31\uaab3", - "\ue020OldenClub66", - "\ue063cursed", - "\ue030Android44803558" - ], - "profiles": [], - "name": "\ue063cursed", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-30 19:35:29", - "registerOn": 1670269534.705363, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670269534.7053635, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269534.7053723, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670269534.7053735, - "lastIP": "avk~}kbakfajdy", - "deviceUUID": "0ad1d379f9a2f3005f16445ceeb35bd587fe3f75" - }, - "pb-IF4-U0c8LA==": { - "display_string": [ - "\ue063ProsaicCre" - ], - "profiles": [], - "name": "\ue063ProsaicCre", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 18:51:38", - "registerOn": 1670269585.6780055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670269585.678006, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269585.678013, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670269607.3032615, - "lastIP": "dvvcyvb}j~}h`", - "deviceUUID": "e97b3a5e7828bf75796dc4f8a4b323e5c5645e62" - }, - "pb-IF4BV1ZfCQ==": { - "display_string": [ - "\ue020\uff22\uff21\uff39\uff2d\uff21\uff38", - "\ue030Android42815279" - ], - "profiles": [], - "name": "\ue020\uff22\uff21\uff39\uff2d\uff21\uff38", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-17 05:09:59", - "registerOn": 1670270264.9288244, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270264.928825, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670270264.9288337, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670270264.9288347, - "lastIP": "a\u007fn~~adakiajaw", - "deviceUUID": "757a2ad0f26b271051938389433213762d24ed76", - "cMsgCount": 0, - "lastMsgTime": 1670270277.9486527, - "lastMsg": "/punch me", - "cSameMsg": 0 - }, - "pb-IF4xU0paHA==": { - "display_string": [ - "\ue020ExpedientApproach60" - ], - "profiles": [], - "name": "\ue063Expedient5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-31 07:19:50", - "registerOn": 1670270532.2592604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270532.259261, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670270532.2592697, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670270532.2592707, - "lastIP": "dzvb}n~|m~~ic", - "deviceUUID": "473879360e0d6d066f88b91464cda01f6c376535" - }, - "pb-IF4DUmYmFg==": { - "display_string": [ - "\ue063Spaz1", - "\ue063TheSpaz", - "\ue030Android55930680", - "\ue030Android62890286", - "\ue030Android63917572" - ], - "profiles": [], - "name": "\ue063Spaz1", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-14 06:23:56", - "registerOn": 1670270557.18025, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270557.1802506, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670270557.1802583, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670270557.180259, - "lastIP": "i~vb{j~~`hanb", - "deviceUUID": "6510374edf57e52981ce2be266308e2c1e6b6d82" - }, - "pb-IF5SVXIHMA==": { - "display_string": [ - "\ue063Arnob007" - ], - "profiles": [], - "name": "\ue063Arnob007", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-31 21:17:47", - "registerOn": 1670270808.0273073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270808.0273082, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670270808.0273182, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670283168.3481822, - "lastIP": "a\u007fk~~maai`{vaxh", - "deviceUUID": "535baeb71cc6acb0e70eb4c2d6ffd356729b1c6e", - "cMsgCount": 0, - "lastMsgTime": 1670283270.5919573, - "lastMsg": "play on blue", - "cSameMsg": 0 - }, - "pb-IF4iU0lSFQ==": { - "display_string": [ - "\ue063Enigmatic7" - ], - "profiles": [], - "name": "\ue063Enigmatic7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-28 00:09:51", - "registerOn": 1670270832.1114368, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270832.1114376, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670270832.1114454, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670272142.2479439, - "lastIP": "dvvb\u007fn~yh~}jh", - "deviceUUID": "cd3fb6202f2623d5fecbad02b7d5df2dac3f51e5" - }, - "pb-IF4-B20v": { - "display_string": [ - "\ue063sena3456" - ], - "profiles": [], - "name": "\ue063sena3456", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-27 11:13:53", - "registerOn": 1670270966.3389475, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270966.3389482, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300631.9559453, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300631.9559467, - "lastIP": "b}k~~`gaia|vav`", - "deviceUUID": "2d44fc4828e6e7583a9f71bebedad64c3bd489b1" - }, - "pb-JiNJARFeXEVGX1hEFE5XXFFDE0lZT1VD": { - "display_string": [ - "\ue020pikachu07001", - "\ue063HageMaaroo", - "\ue030Android15271882" - ], - "profiles": [], - "name": "\ue063HageMaaroo", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-13 11:15:37", - "registerOn": 1670271177.389131, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670271177.3891318, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271177.3891408, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670271177.3891416, - "lastIP": "dvvcxvavm~~i", - "deviceUUID": "32b5fd2662105ff9268651e6ca9f557e0d9803a0", - "cMsgCount": 0, - "lastMsgTime": 1670274175.4552028, - "lastMsg": "yeaaahhh", - "cSameMsg": 0 - }, - "pb-IF4AU2ETLQ==": { - "display_string": [ - "\ue020CongenialLife49", - "\ue030Android61199991" - ], - "profiles": [], - "name": "\ue020CongenialLife49", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-04 21:57:50", - "registerOn": 1670271397.1699944, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670271413.5615344, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271397.1700022, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670271405.517372, - "lastIP": "a\u007fn~~adaii}va\u007fh", - "deviceUUID": "f8c58a3902ed3e2e22976546fea746e4e5fd22cd" - }, - "pb-IF4qU0ocPQ==": { - "display_string": [ - "\ue020SalutaryEnthusiasm23" - ], - "profiles": [], - "name": "\ue020SalutaryEnthusiasm23", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 17:38:04", - "registerOn": 1670271734.3235207, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670271734.3235214, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271734.32353, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670271734.3235307, - "lastIP": "azo~|j~|n~~j", - "deviceUUID": "361e6edad194d9dcd5e70f8b83ad30b89a366b20" - }, - "pb-IF4cVW5cXA==": { - "display_string": [ - "\ue063Heisenber3" - ], - "profiles": [], - "name": "\ue063Heisenber3", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-12 19:01:24", - "registerOn": 1670271861.5134966, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670271861.513497, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271861.5135052, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670271861.513506, - "lastIP": "azo~|l~va~~kg", - "deviceUUID": "c6fd0a31b3e3ca258cb8d6cacdbaba417c57a045" - }, - "pb-IF5WU3oCNg==": { - "display_string": [ - "\ue063InorganicB", - "\ue030Android63010048" - ], - "profiles": [], - "name": "\ue063InorganicB", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-31 12:20:56", - "registerOn": 1670271863.5425, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670271863.5425003, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271863.542507, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670271863.542508, - "lastIP": "dxvbvvayn~~ja", - "deviceUUID": "e0f00d931615664971144af43f9ea26cd3ad9f8f" - }, - "pb-IF4eU1BfJA==": { - "display_string": [ - "\ue063HypnoticTo" - ], - "profiles": [], - "name": "\ue063HypnoticTo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 02:50:14", - "registerOn": 1670271880.6262717, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670271880.6262722, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271880.6262815, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670271880.6262822, - "lastIP": "azj~zo~~lhajcx", - "deviceUUID": "fca8f09b2298675317559d875b05d2d87bcd1f2f" - }, - "pb-IF43U3YTJw==": { - "display_string": [ - "\ue020DisreputableExport28" - ], - "profiles": [], - "name": "\ue020DisreputableExport28", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-22 23:00:10", - "registerOn": 1670272340.3162413, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670272340.3162415, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670272340.3162508, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670272340.316252, - "lastIP": "azo~{a~~jhalf", - "deviceUUID": "a620556129944df7009078d636b07f9c0eda6ec0" - }, - "pb-IF5QU1I8Fw==": { - "display_string": [ - "\ue063zashikibut" - ], - "profiles": [], - "name": "\ue063zashikibut", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 17:22:05", - "registerOn": 1670273234.816197, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670273234.8161976, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670273234.8162081, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670273234.816209, - "lastIP": "awh~~aaajdvva|n", - "deviceUUID": "9ec0513e2640ea8cff6553fac2ab5f94d261ef08" - }, - "pb-IF4yVWg9Jw==": { - "display_string": [ - "\ue063ReptilianL" - ], - "profiles": [], - "name": "\ue063ReptilianL", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-30 21:03:11", - "registerOn": 1670273293.094381, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670273293.0943816, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670273293.0943906, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670273293.0943913, - "lastIP": "dvvcyvc|vb|m", - "deviceUUID": "44cfbd6d791bb8654a172eab47bc640623b2938a" - }, - "pb-IF4DJRkM": { - "display_string": [ - "\ue020VoraciousBoss5149" - ], - "profiles": [], - "name": "\ue020VoraciousBoss5149", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-06 13:39:45", - "registerOn": 1670273453.4133403, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670273453.4133413, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670273453.4133496, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670273453.4133506, - "lastIP": "aakiaoeane", - "deviceUUID": "6c6e76892584138cd876c2a61feea1366dd717e8" - }, - "pb-IF4NV3oIFA==": { - "display_string": [ - "\ue063NaNaJi", - "\ue030Android57361651", - "\ue030Android59829395", - "\ue030Android47779769" - ], - "profiles": [], - "name": "\ue030Android57361651", - "isBan": false, - "isMuted": false, - "accountAge": "2019-01-26 16:32:52", - "registerOn": 1670274069.0163372, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670274069.0163374, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670274069.016347, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670275399.8444836, - "lastIP": "aakhaadaoc", - "deviceUUID": "b402e94a63cebef2cfa290e8f76c5db9d1c96d2c" - }, - "pb-IF4nUkUzNw==": { - "display_string": [ - "\ue030Android57918367" - ], - "profiles": [], - "name": "\ue030Android57918367", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-01 00:57:54", - "registerOn": 1670280021.9998217, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670280021.9998221, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670280021.9998474, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670282338.2371898, - "lastIP": "fvvavl~~i`aof", - "deviceUUID": "\u0015\u0007^P\u0005M\u0007\f" - }, - "pb-IF4JUlUTBg==": { - "display_string": [ - "\ue063PlacidVern", - "\ue030Android58791013" - ], - "profiles": [], - "name": "\ue030Android58791013", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-07 03:59:42", - "registerOn": 1670282129.8213804, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670282129.8213809, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670283282.4488156, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670282129.8213902, - "lastIP": "ay`~}jgaahaib\u007f", - "deviceUUID": "2a28a2b283612858a27b2e3d3ffc69e227689b54", - "cMsgCount": 0, - "lastMsgTime": 1670283282.4487562, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4nUklcBA==": { - "display_string": [ - "\ue030iiRcade3504" - ], - "profiles": [], - "name": "\ue030iiRcade3504", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-15 00:10:18", - "registerOn": 1670282695.2957687, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670282695.29577, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670282695.2957776, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670282695.2957783, - "lastIP": "fyvbzvb{i~}je", - "deviceUUID": "\u0015\u0004ZRQE\u0005]Y\u0007G\u0003\u000e\u0004XB\u0005_SXFPYWYL" - }, - "pb-IF4jU0gA": { - "display_string": [ - "\ue063killlergam", - "\ue030Android63743342" - ], - "profiles": [], - "name": "\ue063killlergam", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-06 11:22:14", - "registerOn": 1670283366.7695243, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670283366.7695248, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670283366.7695327, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670283366.7695334, - "lastIP": "azo~|k~~n~}hc", - "deviceUUID": "76676109d7e03a3c37c8a1409a3f6943262cb530" - }, - "pb-IF4nU1AiKA==": { - "display_string": [ - "\ue063UpstreamLo" - ], - "profiles": [], - "name": "\ue063UpstreamLo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 04:54:31", - "registerOn": 1670284384.132504, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670284384.1325045, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670284384.132514, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670284384.1325154, - "lastIP": "awo~~`daifyva|h", - "deviceUUID": "c13b37c647b994e72617502237f07398fb4f63f3" - }, - "pb-IF4oUksoHw==": { - "display_string": [ - "\ue063RYK999" - ], - "profiles": [], - "name": "\ue063RYK999", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-23 21:16:22", - "registerOn": 1670284599.4241025, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670284599.4241035, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670284599.4241123, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670284599.4241135, - "lastIP": "azo~zh~~k~~ki", - "deviceUUID": "be944e5eb5541db1aedddc3550d0732e5e80c4e5" - }, - "pb-IF4LU2sEPw==": { - "display_string": [ - "\ue063Daksh045", - "\ue030Android59836410" - ], - "profiles": [], - "name": "\ue063Daksh045", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-11 11:44:33", - "registerOn": 1670284804.664925, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670284804.6649258, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670284804.6649346, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670284804.6649356, - "lastIP": "dvvcyvaxvaz", - "deviceUUID": "5cdbe6407936362a2c718e103f0eb1edfeb0b017" - }, - "pb-IF4zUkQkXA==": { - "display_string": [ - "\ue063WarmerTin4", - "\ue030Android57711842" - ], - "profiles": [], - "name": "\ue063WarmerTin4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-28 06:08:01", - "registerOn": 1670286203.8002791, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670286203.8002799, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670286203.800289, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670286203.80029, - "lastIP": "a|`~|n~{n~|h", - "deviceUUID": "8c2685e46eea942a823602a6a362ca78b20f0115" - }, - "pb-IF4WUlMqNw==": { - "display_string": [ - "\ue020kolayali1979" - ], - "profiles": [], - "name": "\ue020kolayali1979", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-27 12:43:05", - "registerOn": 1670286269.0515594, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670286269.0515602, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670286269.051571, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670286269.0515716, - "lastIP": "bxvf~va|va\u007fl", - "deviceUUID": "f8bd824b9b49b7597083a9319c0f99a7de07ae8a" - }, - "pb-IF4UU00fNg==": { - "display_string": [ - "\ue020FormerExodus41" - ], - "profiles": [], - "name": "\ue020FormerExodus41", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 18:53:17", - "registerOn": 1670289308.018164, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670289308.0181649, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670289308.0181746, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670289308.0181763, - "lastIP": "azo~{n~~niamd", - "deviceUUID": "daa56210cabf9e5c167b5779935cee0495760a0f" - }, - "pb-IF5XVBUCFA==": { - "display_string": [ - "\ue020TriesomeComplacency" - ], - "profiles": [], - "name": "\ue020TriesomeComplacency", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-01 20:21:26", - "registerOn": 1670291352.5831916, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670291352.583192, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670291352.5832012, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670291352.5832021, - "lastIP": "a\u007fn~~agaiavvb~j", - "deviceUUID": "474d8d6b2ca1f0ce01b00b7e7129fc6bbb749c2c" - }, - "pb-IF4sVGohKw==": { - "display_string": [ - "\ue020RelativeCompass6" - ], - "profiles": [], - "name": "\ue020RelativeCompass6", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-12 21:06:32", - "registerOn": 1670292145.3115203, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670292145.3115208, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292145.3115304, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292145.3115313, - "lastIP": "a\u007fk~~h~}jeaie\u007f", - "deviceUUID": "0ee7a8711bab10bd6adc0d46aa008c621ba84083" - }, - "pb-IF4TAXlc": { - "display_string": [ - "\ue063Savage2098" - ], - "profiles": [], - "name": "\ue063Savage2098", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-27 21:09:25", - "registerOn": 1670292356.2725449, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670292356.2725453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292356.2725542, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292356.2725554, - "lastIP": "bxvf|vb}m~~me", - "deviceUUID": "35e37beb741abe75c098c0b67ab3ae85434adf7e" - }, - "pb-IF41U04SEA==": { - "display_string": [ - "\ue020UndisguisedManiac20" - ], - "profiles": [], - "name": "\ue020UndisguisedManiac20", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 15:56:33", - "registerOn": 1670292408.4293582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670292408.4293592, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292408.4293668, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292408.4293678, - "lastIP": "azo~{l~~abaicy", - "deviceUUID": "8f62a52e479d9eb1e6031223eaf4df2235316f2e" - }, - "pb-IF5QUhgZ": { - "display_string": [ - "\ue063MOSSIMOCIR", - "\ue030Android16808764" - ], - "profiles": [], - "name": "\ue063MOSSIMOCIR", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-17 16:29:24", - "registerOn": 1670294858.633466, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670294858.6334667, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670294858.6334772, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670294858.6334777, - "lastIP": "a~i~vj~xm~\u007f", - "deviceUUID": "d56940cab4aefde1afb2d8c25463f0965696e246" - }, - "pb-IF4WVUZfPA==": { - "display_string": [ - "\ue030Android51495626" - ], - "profiles": [], - "name": "\ue030Android51495626", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-18 20:29:17", - "registerOn": 1670295209.747189, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295209.7471898, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295209.7471986, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295209.7471995, - "lastIP": "azo~{j~}hhajcx", - "deviceUUID": "882b5976b4330cf9b82b621eb4c2a20f66484cfb" - }, - "pb-IF4RU2U6Cg==": { - "display_string": [ - "\ue063WesternSpo", - "\ue030Android63855477" - ], - "profiles": [], - "name": "\ue063WesternSpo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-15 10:56:30", - "registerOn": 1670295258.8824947, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295258.8824954, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295258.8825057, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295258.8825066, - "lastIP": "dvvc}vb|i~|l", - "deviceUUID": "36669770d666ce59b6e92f0ded9d50a63ab9c95f" - }, - "pb-IF40U0oIEw==": { - "display_string": [ - "\ue020UnmodifiedApplause51" - ], - "profiles": [], - "name": "\ue020UnmodifiedApplause51", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 00:34:32", - "registerOn": 1670295468.693306, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295468.6933062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295468.6933136, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295468.6933143, - "lastIP": "b\u007fh~~iiaig{vfx", - "deviceUUID": "634fa20f29aff47c3c475802d032ae5127db56a1" - }, - "pb-IF4dU0QGEw==": { - "display_string": [ - "\ue030Linux53436" - ], - "profiles": [], - "name": "\ue030Linux53436", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-01 23:48:01", - "registerOn": 1670295625.204024, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295625.2040246, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295625.2040324, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670299178.7410796, - "lastIP": "b\u007fj~zh~zj~~md", - "deviceUUID": "\u0018X\u000bT\u0003ET\u000eYLE\u0004XXL@YU" - }, - "pb-IF4oUkQSLg==": { - "display_string": [ - "\ue063HouseholdW" - ], - "profiles": [], - "name": "\ue063HouseholdW", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-30 13:58:07", - "registerOn": 1670295718.525807, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295718.5258074, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295718.5258148, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295718.5258155, - "lastIP": "azo~{n~y`~~ad", - "deviceUUID": "c51646305eabfb6264c880de4fffdea10e84b772" - }, - "pb-IF5XLHle": { - "display_string": [ - "\ue063LightJabbe" - ], - "profiles": [], - "name": "\ue063LightJabbe", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-04 11:37:59", - "registerOn": 1670295766.6989522, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295766.6989527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295766.6989617, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295766.6989625, - "lastIP": "dvvc{vaz`~~ib", - "deviceUUID": "e90db5e0bc1a1503eda6a9b84c3a9cc67f8a4475" - }, - "pb-IF4-U08PBw==": { - "display_string": [ - "\ue063Freshwate9" - ], - "profiles": [], - "name": "\ue063Freshwate9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 11:08:53", - "registerOn": 1670295999.8783853, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295999.8783863, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295999.8783958, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295999.8783972, - "lastIP": "a~n~y`~~i`aia", - "deviceUUID": "09cc94f10ef01fd14d8a30a4677f99725e1380b6" - }, - "pb-IF5TU1A9Pw==": { - "display_string": [ - "\ue020jonhjonh55ph" - ], - "profiles": [], - "name": "\ue020jonhjonh55ph", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 17:51:50", - "registerOn": 1670296004.565949, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670296004.5659494, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296004.5659583, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296004.5659592, - "lastIP": "b\u007fa~|m~~ngaie~", - "deviceUUID": "b8137cd2b5757b683a3dcbfbbb603f2416e3be55" - }, - "pb-IF4CU0Y5Ew==": { - "display_string": [ - "\ue063RetailMidn" - ], - "profiles": [], - "name": "\ue063RetailMidn", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 12:51:18", - "registerOn": 1670296306.7613952, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670296306.7613957, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296306.761405, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296306.761406, - "lastIP": "a~h~}jgai~z`", - "deviceUUID": "b9504aedda301439ceb7a6112a00648fc7da6bf3" - }, - "pb-IF4eU3gDFw==": { - "display_string": [ - "\ue063Courageou5" - ], - "profiles": [], - "name": "\ue063Courageou5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-29 19:37:24", - "registerOn": 1670296746.3660696, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670296746.3660698, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296746.3660772, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296746.3660781, - "lastIP": "azo~{a~~lcaie", - "deviceUUID": "7d09e0d3a4d367c9ed7375eaf3f096342f007c4d" - }, - "pb-IF4FU01cHw==": { - "display_string": [ - "\ue020\u1d00\u1d0d\u1d00\u02747", - "\ue030Android63880249", - "\ue030Android63880268", - "\ue030Android63894496", - "\ue030Android63880281" - ], - "profiles": [], - "name": "\ue020\u1d00\u1d0d\u1d00\u02747", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 17:46:51", - "registerOn": 1670296803.6004646, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670296803.600465, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296803.600474, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670297006.0368886, - "lastIP": "a|o~vo~~jbai`x", - "deviceUUID": "3a4f95ad4ef041aeb018074e8dd270ef2e74a3d5", - "cMsgCount": 1, - "lastMsgTime": 1670296877.657231, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4-VE0nPA==": { - "display_string": [ - "\ue063HEAVENRIDE" - ], - "profiles": [], - "name": "\ue063HEAVENRIDE", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-04 11:44:51", - "registerOn": 1670297022.3904085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670297022.3904092, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670297022.3904185, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670297040.1599576, - "lastIP": "b\u007fj~~o`aj`xva~i", - "deviceUUID": "146ce445a35400edacd772cc56e8cd9b438ab742" - }, - "pb-IF49U08ZDw==": { - "display_string": [ - "\ue063nrzimaffh" - ], - "profiles": [], - "name": "\ue063nrzimaffh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 08:41:58", - "registerOn": 1670297659.692009, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670297659.6920092, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670297659.6920168, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670297659.6920183, - "lastIP": "awk~~oaaibzvazn", - "deviceUUID": "841b8ca8606b1d8e38a5c4eea6c76033e375e414" - }, - "pb-IF4HUlMxVw==": { - "display_string": [ - "\ue030Android59278796" - ], - "profiles": [], - "name": "\ue030Android59278796", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-29 06:20:38", - "registerOn": 1670297915.598618, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670297915.5986185, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670297915.5986273, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670297915.5986283, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF5UU1EBLw==": { - "display_string": [ - "\ue063VelvetyOff", - "\ue030Android59165348" - ], - "profiles": [], - "name": "\ue063VelvetyOff", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 12:31:22", - "registerOn": 1670298211.9893699, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298211.9893703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298211.9893782, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298211.9893794, - "lastIP": "a~n~}hfak`alc", - "deviceUUID": "6a9d400a49e9d8a6d1ce55b158d778b6f372480d" - }, - "pb-IF5RU1ESNQ==": { - "display_string": [ - "\ue063ThankfulRh" - ], - "profiles": [], - "name": "\ue063ThankfulRh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 14:05:27", - "registerOn": 1670298335.113274, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298335.1132746, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298335.1132834, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298335.1132843, - "lastIP": "hxvb{k~zj~~lh", - "deviceUUID": "85a4fd0dfc0aea505819231cb74a3c574a1e5164" - }, - "pb-IF4HU04CUA==": { - "display_string": [ - "\ue030Android63930725" - ], - "profiles": [], - "name": "\ue030Android63930725", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 00:28:46", - "registerOn": 1670298396.289418, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298396.2894185, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298396.2894263, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298396.2894275, - "lastIP": "a\u007fn~}hfaifwvavl", - "deviceUUID": "511232bb8342effbc2ae4ee2b06d7650ca16e1f3" - }, - "pb-IF4BU0EsIg==": { - "display_string": [ - "\ue030Android63294581" - ], - "profiles": [], - "name": "\ue030Android63294581", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 16:51:32", - "registerOn": 1670298412.3413033, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298412.3413038, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298412.3413136, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298412.3413146, - "lastIP": "a|o~vo~y`~~kb", - "deviceUUID": "804cfefd19245f772b73fe8d48fc0bd9df48fbb7" - }, - "pb-IF4xU0QYPw==": { - "display_string": [ - "\ue063VelourLigh" - ], - "profiles": [], - "name": "\ue063VelourLigh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 18:46:32", - "registerOn": 1670298477.0726714, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298477.072672, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298477.0726805, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298477.0726814, - "lastIP": "a\u007fn~}hcaibwvb\u007fn", - "deviceUUID": "250c2c30fb4d97233507f7f6862bc2212f8307f4" - }, - "pb-IF4cU0NdDw==": { - "display_string": [ - "\ue063ALAMINMIZI" - ], - "profiles": [], - "name": "\ue063ALAMINMIZI", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-20 16:51:03", - "registerOn": 1670298915.1077976, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298915.107798, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298915.107805, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298915.1078055, - "lastIP": "a\u007fk~~khajda`f", - "deviceUUID": "87df283df9a52ee9e0667773c8ef609765b8afd2" - }, - "pb-IF4pU0c-NQ==": { - "display_string": [ - "\ue020TraditionalNarrator9" - ], - "profiles": [], - "name": "\ue020TraditionalNarrator9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-13 13:45:24", - "registerOn": 1670299032.5436296, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299032.5436304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299032.5436392, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299032.5436404, - "lastIP": "azo~{i~}mdajc~", - "deviceUUID": "11b10d0cb8bd1f703dc24638b8c51bccee3ba51c" - }, - "pb-IF5UU0dfBw==": { - "display_string": [ - "\ue030Android63564565" - ], - "profiles": [], - "name": "\ue030Android63564565", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-01 21:36:31", - "registerOn": 1670299313.514224, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299313.5142243, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299313.5142324, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670299464.7577686, - "lastIP": "azo~{m~~naajcz", - "deviceUUID": "ad02e5da16c68b233d860e1c351e370be5a2170f" - }, - "pb-IF4WUxAIEg==": { - "display_string": [ - "\ue020IrreverentLand33", - "\ue030Android60020707" - ], - "profiles": [], - "name": "\ue020IrreverentLand33", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-26 09:34:08", - "registerOn": 1670299388.7772841, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299388.7772846, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299388.7772946, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299388.7772956, - "lastIP": "a\u007fk~~kdajbyvb|a", - "deviceUUID": "601b5c8fb825c5f8aea8196e5deb6995f43b858b" - }, - "pb-IF4wUxkNHA==": { - "display_string": [ - "\ue063DeviantSum" - ], - "profiles": [], - "name": "\ue063DeviantSum", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-30 12:13:49", - "registerOn": 1670299395.8202848, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299395.8202856, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299395.820293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299395.820294, - "lastIP": "bxveaid~vazm", - "deviceUUID": "378189d9a60c020fffc9aad3a42061517bc533a1" - }, - "pb-IF4tUmo9VQ==": { - "display_string": [ - "\ue020sunilu338" - ], - "profiles": [], - "name": "\ue020sunilu338", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-01 12:18:31", - "registerOn": 1670299431.9521782, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299431.9521792, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299431.952188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299431.952189, - "lastIP": "azo~zi~~laaj", - "deviceUUID": "72005d1e007852357191b033dae4b9aca087c883" - }, - "pb-IF5dVUQGIQ==": { - "display_string": [ - "\ue020racetracker7738" - ], - "profiles": [], - "name": "\ue020racetracker7738", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-29 13:47:34", - "registerOn": 1670299747.05083, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299747.0508301, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299747.0508385, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299747.0508392, - "lastIP": "b}k~~`daif\u007fva~`", - "deviceUUID": "e4636f0bc1a6fb8ca30c01a65dc307c0aa037eb9" - }, - "pb-IF4lU0xTVQ==": { - "display_string": [ - "\ue020RattlingKestrel49176" - ], - "profiles": [], - "name": "\ue020RattlingKestrel49176", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 15:31:59", - "registerOn": 1670299926.7603722, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299926.7603729, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299926.7603843, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299926.7603853, - "lastIP": "b}k~~`baii|va", - "deviceUUID": "df51fc71cdb276b9393a916700bd291474f87fc4", - "cMsgCount": 0, - "lastMsgTime": 1670304459.0297408, - "lastMsg": "noops", - "cSameMsg": 0 - }, - "pb-IF4QUmRTFQ==": { - "display_string": [ - "\ue020KINGTN50" - ], - "profiles": [], - "name": "\ue020KINGTN50", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-06 09:22:01", - "registerOn": 1670300081.3034122, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300081.3034127, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300081.303422, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670308964.571488, - "lastIP": "b}k~~`gaiazvb|i", - "deviceUUID": "5e5762908041164c3a97ea8f408c36ed7b6869a5", - "cMsgCount": 0, - "lastMsgTime": 1670309951.0305045, - "lastMsg": "gg", - "cSameMsg": 0 - }, - "pb-IF4qVWIpPw==": { - "display_string": [ - "\ue020WanShell8996", - "\ue030Android58269418" - ], - "profiles": [], - "name": "\ue020WanShell8996", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-14 19:38:33", - "registerOn": 1670300135.52084, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300135.5208404, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300135.5208497, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300135.5208504, - "lastIP": "azo~zi~xh~}ib", - "deviceUUID": "08dad59ccd24a1eb0e65582d5ff666ef33972cc3" - }, - "pb-IF4AVWkcHQ==": { - "display_string": [ - "\ue021Maneesh_Royal", - "\ue030Mac212342" - ], - "profiles": [], - "name": "\ue021Maneesh_Royal", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-09 09:06:26", - "registerOn": 1670300385.4284744, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300385.4284754, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300385.4284832, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300385.4284842, - "lastIP": "awj~xi~~nbaig\u007f", - "deviceUUID": "\u0019V(WW1X]YLCW+QLA%+ULLXTUL6Y+UQ@TX%UBWURSGQ^UXC" - }, - "pb-IF4NUmY5Nw==": { - "display_string": [ - "\ue063Stochasti4", - "\ue030Android55430726" - ], - "profiles": [], - "name": "\ue063Stochasti4", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-18 20:43:37", - "registerOn": 1670300454.0055792, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300454.00558, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300454.0055907, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670306037.8867946, - "lastIP": "a\u007fk~~maaihwvb|j", - "deviceUUID": "a9026bd8027c24ea79e799177c4cf6c391b7d50d", - "cMsgCount": 0, - "lastMsgTime": 1670303992.8433242, - "lastMsg": "uff nooboli", - "cSameMsg": 0 - }, - "pb-IF4LVWEDKQ==": { - "display_string": [ - "\ue020Selvapravin6667" - ], - "profiles": [], - "name": "\ue020Selvapravin6667", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-12 17:35:58", - "registerOn": 1670300843.003842, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300843.0038428, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300843.0038502, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300843.0038512, - "lastIP": "azo~{n~~h`aid}", - "deviceUUID": "\u0015\u0002[XP\u0012UZ\u0005\u0005D\u0004TP\u0002BW[TYCS\\WRB" - }, - "pb-IF4dU3gqNQ==": { - "display_string": [ - "\ue030Android62237299", - "\ue030Android63018018", - "\ue030Android63018191" - ], - "profiles": [], - "name": "\ue030Android62237299", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-30 12:29:32", - "registerOn": 1670300890.3823156, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300890.382316, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300890.3823235, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300890.3823245, - "lastIP": "a|o~vo~xa~~`c", - "deviceUUID": "24945428d4f1357961543a88a592fe91ca9fb7cf" - }, - "pb-IF4tVW0OVw==": { - "display_string": [ - "\ue063soulwalker" - ], - "profiles": [], - "name": "\ue063soulwalker", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-09 17:09:14", - "registerOn": 1670300904.1844368, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300904.1844373, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300904.184445, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670305054.317749, - "lastIP": "a\u007fn~}hfajazve|", - "deviceUUID": "ef2ed0c2718eca5308ec64835c7535ad3a982a9d" - }, - "pb-IF4gV24qCQ==": { - "display_string": [ - "\ue063ScarredLab", - "\ue030Android29025944" - ], - "profiles": [], - "name": "\ue063ScarredLab", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-24 21:36:13", - "registerOn": 1670301128.2271342, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301128.2271347, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301128.227143, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301128.2271442, - "lastIP": "azo~{o~zi~~lc", - "deviceUUID": "c7f3ebf8f9182f6ad95f1725f8341f1570999c4a" - }, - "pb-IF4eUk0vIA==": { - "display_string": [ - "\ue063DEVILLEAGE" - ], - "profiles": [], - "name": "\ue063DEVILLEAGE", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-03 13:50:10", - "registerOn": 1670301163.2939541, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301163.2939546, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301163.2939625, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301163.2939634, - "lastIP": "azj~zo~~afame", - "deviceUUID": "dac515cb6a206784eb54887549785d5a1a66d5c4" - }, - "pb-IF4cU20TMw==": { - "display_string": [ - "\ue020RamblingLemon85370" - ], - "profiles": [], - "name": "\ue020RamblingLemon85370", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 00:38:49", - "registerOn": 1670301200.2688026, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301200.2688031, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301200.2688131, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301200.268814, - "lastIP": "cxva~i~}jbaiay", - "deviceUUID": "97218163a0346a3648c5fe92383582185b7fffca" - }, - "pb-IF4oVEYEDg==": { - "display_string": [ - "\ue030Android42142043" - ], - "profiles": [], - "name": "\ue030Android42142043", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-03 20:38:48", - "registerOn": 1670301278.6123943, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301278.6123948, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301278.6124105, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301278.6124117, - "lastIP": "dvvc|vb~o~}ld", - "deviceUUID": "74948e86820d57ae17645f4d8df8ef11bd2d6cbf" - }, - "pb-IF4QUxM-Bg==": { - "display_string": [ - "\ue020DrearyPromotion20", - "\ue030Android63600088" - ], - "profiles": [], - "name": "\ue020DrearyPromotion20", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-08 17:28:43", - "registerOn": 1670301735.20969, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301735.2096906, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301735.2096994, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301735.2097003, - "lastIP": "azo~{o~}va{`", - "deviceUUID": "d253caf7ca78ab7fa2f2b3e848739a64b02d5447" - }, - "pb-JiNJARBYUkpJWFhFEEFRVlFAGUJWTlhG": { - "display_string": [ - "\ue020sumonthedon", - "\ue030Android14301911" - ], - "profiles": [], - "name": "\ue020sumonthedon", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-11 11:57:52", - "registerOn": 1670301743.2972598, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301743.2972603, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301743.2972686, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301743.2972696, - "lastIP": "dxvbvvaym~~nd", - "deviceUUID": "aef9ee976dd9b52c5a5203d09b6a42bc2b60ced7" - }, - "pb-IF4xU3YvAw==": { - "display_string": [ - "\ue063BYMRSTRIPE" - ], - "profiles": [], - "name": "\ue063BYMRSTRIPE", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 16:08:03", - "registerOn": 1670301778.694383, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301778.6943836, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301778.6943939, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301778.6943946, - "lastIP": "a|n~~mhamaaicx", - "deviceUUID": "58ce08b6bd6b07afdfee4cfeaca29b21d6773984" - }, - "pb-IF40U09YVQ==": { - "display_string": [ - "\ue063genesisarb" - ], - "profiles": [], - "name": "\ue063genesisarb", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 04:15:05", - "registerOn": 1670301892.8078194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301892.8078198, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301892.8078275, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301892.8078284, - "lastIP": "b}k~}m~yj~~h", - "deviceUUID": "588938d990d7f3f93b8dbd0293b080b791778d58" - }, - "pb-IF5TU20EMg==": { - "display_string": [ - "\ue063Symmetric9" - ], - "profiles": [], - "name": "\ue063Symmetric9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-09 18:14:52", - "registerOn": 1670301904.3045359, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301904.3045363, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301904.304547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301904.3045483, - "lastIP": "a\u007fi~x`~~hgana", - "deviceUUID": "832a236ae9245681fbacf9ac34bfee140e821682", - "cMsgCount": 0, - "lastMsgTime": 1670302422.1730607, - "lastMsg": "stfu", - "cSameMsg": 0 - }, - "pb-IF4cU0EGCQ==": { - "display_string": [ - "\ue030Android63310192" - ], - "profiles": [], - "name": "\ue030Android63310192", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-14 16:03:15", - "registerOn": 1670301987.1924949, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301987.1924953, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301987.1925037, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301987.1925046, - "lastIP": "azj~zo~}heajd\u007f", - "deviceUUID": "c3e8e82827eff72f8c4eaf6d00fa7c9cec083779" - }, - "pb-IF4QU0spDA==": { - "display_string": [ - "\ue030Android63814438" - ], - "profiles": [], - "name": "\ue030Android63814438", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 04:23:36", - "registerOn": 1670302293.6715863, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670302293.6715868, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670302293.6715944, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670302293.671595, - "lastIP": "a~k~}iaaicyvgz", - "deviceUUID": "\u0015U\u000b" - }, - "pb-IF5cUlYRVg==": { - "display_string": [ - "\ue030PC437906" - ], - "profiles": [], - "name": "\ue030PC437906", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-03 12:56:57", - "registerOn": 1670303444.7722914, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670303444.7722921, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670303444.7723005, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670303444.7723017, - "lastIP": "axm~~haai`zva|o", - "deviceUUID": "4499a7bc6c46503367b6b970ea2fd32929853488" - }, - "pb-IF4IVU9bLA==": { - "display_string": [ - "\ue063QuackingC2" - ], - "profiles": [], - "name": "\ue063QuackingC2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-06 20:56:51", - "registerOn": 1670304194.5509522, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670304194.5509527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670304194.5509615, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670304194.5509622, - "lastIP": "a\u007fn~~acajdvvb~a", - "deviceUUID": "42235a42b0eb397344bff7f04fc2193c69823b01" - }, - "pb-IF4RUmEvJw==": { - "display_string": [ - "\ue020GreedyMorale41" - ], - "profiles": [], - "name": "\ue020GreedyMorale41", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-18 20:11:24", - "registerOn": 1670304387.5745735, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670304387.5745742, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670304387.5745826, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670304387.5745835, - "lastIP": "azo~zi~~i`aifz", - "deviceUUID": "079a5d17869e30a5bf6185ad645bda2f3dc923b2" - }, - "pb-IF4hU2oFDg==": { - "display_string": [ - "\ue063Sabarishku", - "\ue030Android61660888" - ], - "profiles": [], - "name": "\ue063Sabarishku", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-09 12:35:31", - "registerOn": 1670304394.6752644, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670304394.6752646, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670304394.6752737, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670304394.6752746, - "lastIP": "azo~{a~~ohaiax", - "deviceUUID": "48f8b234e08b43924ffabea6710a141c1641c637" - }, - "pb-IF4hVWspFw==": { - "display_string": [ - "\ue063VIPINmMAIP", - "\ue030Android48516695" - ], - "profiles": [], - "name": "\ue063VIPINmMAIP", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-26 19:37:07", - "registerOn": 1670304415.697727, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670304415.6977274, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670304547.9136066, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670304415.6977358, - "lastIP": "azo~{l~~odaie~", - "deviceUUID": "c85f53e285fe87baaf6e34227889fb2b323ec403", - "cMsgCount": 0, - "lastMsgTime": 1670304547.913538, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4nU3EhMg==": { - "display_string": [ - "\ue020NiNJAMAN1267" - ], - "profiles": [], - "name": "\ue020NiNJAMAN1267", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-29 16:50:38", - "registerOn": 1670304794.0863807, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670304794.0863812, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670304794.0863922, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670304804.490444, - "lastIP": "azo~{m~~hiaiav", - "deviceUUID": "1e3d9b390331b60998ad74b3275964096476c013" - }, - "pb-IF4cU0c5Fw==": { - "display_string": [ - "\ue020EnviousIngredient43" - ], - "profiles": [], - "name": "\ue020EnviousIngredient43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 18:41:53", - "registerOn": 1670306092.398657, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670306092.3986576, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306092.398666, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670310244.6684575, - "lastIP": "dvvc{vg\u007fvazl", - "deviceUUID": "9bc22fb3a206de3d5844fd8f1b9cf611dbd448f2" - }, - "pb-IF4gMxke": { - "display_string": [ - "\ue020NaughtyFly91019", - "\ue030Android18304089" - ], - "profiles": [], - "name": "\ue020NaughtyFly91019", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-01 14:42:05", - "registerOn": 1670306300.3355408, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670306300.3355412, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306300.3355827, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306300.3355834, - "lastIP": "a|o~vo~~hbao`", - "deviceUUID": "45e0fab38307da53d605f05aef07811e5d4d5d07" - }, - "pb-IF4TU3k5Pw==": { - "display_string": [ - "\ue020RegularCensus17" - ], - "profiles": [], - "name": "\ue020RegularCensus17", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-03 20:13:26", - "registerOn": 1670306400.6369991, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670306400.6369998, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306400.63701, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306400.6370113, - "lastIP": "a}h~~`ha`fajb", - "deviceUUID": "049e993a660c8c3e1d99c717d13dbff4bd4769b0" - }, - "pb-IF4WVU9TLg==": { - "display_string": [ - "\ue020FrontPlane24", - "\ue030Android52482648" - ], - "profiles": [], - "name": "\ue020FrontPlane24", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-06 12:23:37", - "registerOn": 1670306906.515705, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670306906.5157056, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306906.5157146, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306906.5157154, - "lastIP": "a\u007fn~}heaje{vaxl", - "deviceUUID": "e76b1195c1d624aa8f49cc55ea5390708af245a0" - }, - "pb-IF4RU1ApMQ==": { - "display_string": [ - "\ue063Inconside6" - ], - "profiles": [], - "name": "\ue063Inconside6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 18:35:07", - "registerOn": 1670306948.8011086, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670306948.801109, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306948.8012843, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306948.8012853, - "lastIP": "a\u007fn~}hdaif\u007fvb}i", - "deviceUUID": "958b5b8100344c06130f157ad2b8f896b74f62f8" - }, - "pb-IF4lU00yCQ==": { - "display_string": [ - "\ue020GOJOSATURO77" - ], - "profiles": [], - "name": "\ue020GOJOSATURO77", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 09:38:51", - "registerOn": 1670307164.4858367, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307164.4858372, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307164.4858444, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307164.4858456, - "lastIP": "a\u007fn~}jba`hamf", - "deviceUUID": "fe658e85791386351b5ac17a5bc6f0e9c0c517b3" - }, - "pb-IF4oU1BZHQ==": { - "display_string": [ - "\ue030Android63993813" - ], - "profiles": [], - "name": "\ue030Android63993813", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 05:57:43", - "registerOn": 1670307406.5391788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307406.5391793, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307406.5391867, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307406.5391874, - "lastIP": "a}m~{j~~ndaaf", - "deviceUUID": "860a2dd0bf7bd0715c4f5d35daf6bfd65aa97ca9" - }, - "pb-IF4PU08NCg==": { - "display_string": [ - "\ue063BelatedDir" - ], - "profiles": [], - "name": "\ue063BelatedDir", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 19:08:59", - "registerOn": 1670307411.5568461, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307411.5568464, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307411.5568545, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670309359.9600542, - "lastIP": "dxvbvvaya~}hb", - "deviceUUID": "6602daa1802bbdbaa88c5e46ae1dab6999aacb1a" - }, - "pb-IF4cUxYIHw==": { - "display_string": [ - "\ue063AnuragRdav", - "\ue030Android60597659" - ], - "profiles": [], - "name": "\ue063AnuragRdav", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-20 16:06:53", - "registerOn": 1670307455.0994327, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307455.0994334, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307455.0994432, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307455.0994442, - "lastIP": "azo~{n~~leaif~", - "deviceUUID": "ceb430a12b5577f83ca5d1a3a8c2e6e35270db62" - }, - "pb-IF4IUhMeFg==": { - "display_string": [ - "\ue020ChargeableEmployer42", - "\ue030Android51692373" - ], - "profiles": [], - "name": "\ue020ChargeableEmployer42", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-21 14:32:50", - "registerOn": 1670307609.3040333, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307609.3040338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307609.304043, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307609.3040442, - "lastIP": "a|o~vo~vn~~oe", - "deviceUUID": "9233ca52ce0ea7918aedde69f81a50ab9d9dd4b5" - }, - "pb-IF5cU00uPA==": { - "display_string": [ - "\ue020kabilandonnn" - ], - "profiles": [], - "name": "\ue020kabilandonnn", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-05 16:19:47", - "registerOn": 1670307632.3806927, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307632.3806932, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307632.3807015, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307632.3807025, - "lastIP": "a~k~|h~~ogan", - "deviceUUID": "b4c6eb62d30bc46e039b2d74007b83598778d7ed" - }, - "pb-IF4OU08bPw==": { - "display_string": [ - "\ue063soapeater2" - ], - "profiles": [], - "name": "\ue063soapeater2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 21:47:36", - "registerOn": 1670307967.1292272, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307967.1292276, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307967.1292343, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307967.1292355, - "lastIP": "a|n~~mhakeamd", - "deviceUUID": "3261484452d68b6f502eb030867a35afddfd7bb0" - }, - "pb-IF5TUkoOHw==": { - "display_string": [ - "\ue020SriramHULK786" - ], - "profiles": [], - "name": "\ue020SriramHULK786", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-08 15:13:25", - "registerOn": 1670308377.184237, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670308377.1842375, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308377.1842446, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308377.1842456, - "lastIP": "azo~{o~~jeajc|", - "deviceUUID": "f1d8342558a186863b1b466265d7c3cf97723505" - }, - "pb-IF4oU0suEQ==": { - "display_string": [ - "\ue063UnsoldHen2" - ], - "profiles": [], - "name": "\ue063UnsoldHen2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 21:01:43", - "registerOn": 1670308443.3720107, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670308443.3720114, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308443.3720212, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308443.372022, - "lastIP": "azo~{j~}k`aje{", - "deviceUUID": "4758e969059949030ce1067862e8ffa4b064aabd" - }, - "pb-IF5TU1EaVQ==": { - "display_string": [ - "\ue063OpulentPre" - ], - "profiles": [], - "name": "\ue063OpulentPre", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:06:11", - "registerOn": 1670308695.506506, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670308695.5065064, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308695.5065153, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308695.5065162, - "lastIP": "azo~{m~~lcajbv", - "deviceUUID": "5512e4b36f90b95a9e50a0c3315343c8f4b6e066" - }, - "pb-IF4sUm0zIg==": { - "display_string": [ - "\ue020TOMCYTHAMPY" - ], - "profiles": [], - "name": "\ue020TOMCYTHAMPY", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-19 12:56:28", - "registerOn": 1670308703.735085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670308703.7350855, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308703.735095, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308703.7350957, - "lastIP": "bxvf}va\u007fh~xa", - "deviceUUID": "a5eabea99d7140a84b7ad962e4fb41e6b9710b3a" - }, - "pb-IF4nVRURUw==": { - "display_string": [ - "\ue063RanDD9322" - ], - "profiles": [], - "name": "\ue063RanDD9322", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-09 08:38:24", - "registerOn": 1670309027.1568592, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309027.1568596, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309027.1568677, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309027.1568687, - "lastIP": "cyvhzvc{vb\u007fh", - "deviceUUID": "65eeef62d88d84538f3c92c503d9328bcc24a548" - }, - "pb-IF4-U08NVQ==": { - "display_string": [ - "\ue063HolyCowMan", - "\ue030Android50424197" - ], - "profiles": [], - "name": "\ue063HolyCowMan", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 14:52:40", - "registerOn": 1670309099.4052029, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309099.4052038, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309099.4052138, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309099.4052148, - "lastIP": "awh~~aaakfaiix", - "deviceUUID": "7d1f9a6a91894be0696437fbcc1922d535d9da69" - }, - "pb-IF5VU1E5Kg==": { - "display_string": [ - "\ue030Android63956969" - ], - "profiles": [], - "name": "\ue030Android63956969", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 15:50:59", - "registerOn": 1670309217.1351027, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309217.1351035, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309217.1351132, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309217.1351142, - "lastIP": "aakhajayva\u007fo", - "deviceUUID": "63463169da33dd578888c06001bd90a71bedd337" - }, - "pb-JiNJARBdUUpEXV1AFkRVUVZHGUJdQ1NC": { - "display_string": [ - "\ue063pankajveru" - ], - "profiles": [], - "name": "\ue063pankajveru", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-24 15:07:42", - "registerOn": 1670309316.1460047, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309316.1460052, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309316.1460147, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309316.1460156, - "lastIP": "a\u007fn~}icanfaic}", - "deviceUUID": "0fa9c891a84990b8d022ff4e7315d6955e5c18e0" - }, - "pb-IF41Unk7Dw==": { - "display_string": [ - "\ue063Milenuyir", - "\ue030Android56348867" - ], - "profiles": [], - "name": "\ue063Milenuyir", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-09 11:43:13", - "registerOn": 1670309613.421994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309613.4219947, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309613.4220037, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309613.4220047, - "lastIP": "azo~{l~~adaj`|", - "deviceUUID": "14101bbfd378b392654113c405f5abe3403c1962" - }, - "pb-IF4MU09fKA==": { - "display_string": [ - "\ue063manuellaut", - "\ue030Android63961567", - "\ue030Android63444865" - ], - "profiles": [], - "name": "\ue063manuellaut", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 10:03:48", - "registerOn": 1670309639.2229416, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309639.222942, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309639.222951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309639.2229517, - "lastIP": "eaaaakiaiez", - "deviceUUID": "c91b9ef2adb7b8378fbf14200c8e8f289d222f25" - }, - "pb-IF40UmcHJw==": { - "display_string": [ - "\ue020minnie5116" - ], - "profiles": [], - "name": "\ue020minnie5116", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-21 22:08:30", - "registerOn": 1670309746.6581407, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309746.6581411, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309746.6581504, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309746.6581514, - "lastIP": "dvvcyvb~n~~ah", - "deviceUUID": "f60a287142cc9c7edd9d4678dc69d39a39c06ba0" - }, - "pb-IF4CU0MiVA==": { - "display_string": [ - "\ue030Android63428296" - ], - "profiles": [], - "name": "\ue030Android63428296", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-20 14:07:06", - "registerOn": 1670309822.1634555, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309822.1634562, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309822.1634653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309822.1634662, - "lastIP": "azo~{n~~h`a`", - "deviceUUID": "5ae788976af97e550fb2b9beaee18886efe90c1a" - }, - "pb-IF4CVUMpLQ==": { - "display_string": [ - "\ue063SymbolicLe" - ], - "profiles": [], - "name": "\ue063SymbolicLe", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-01 11:40:35", - "registerOn": 1670310039.9411213, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670310039.9411216, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310039.9411302, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670310039.9411314, - "lastIP": "a\u007fn~}hcaa`aah", - "deviceUUID": "2bbddffbe2022a2d7a39d952d5420c934d3a7d5a" - }, - "pb-IF41VRcsBw==": { - "display_string": [ - "\ue063Nikimalhan" - ], - "profiles": [], - "name": "\ue063Nikimalhan", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-17 18:08:55", - "registerOn": 1670310610.578937, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670310610.5789378, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310610.5789497, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670310610.5789506, - "lastIP": "a\u007fk~xa~~nhakh", - "deviceUUID": "3eaedb8ce47a3f6cff6eeff2ce58f105e6eb8d9d" - }, - "pb-IF4lN2QS": { - "display_string": [ - "\ue063Rocksoli17" - ], - "profiles": [], - "name": "\ue063Rocksoli17", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-15 12:13:30", - "registerOn": 1670310883.9865491, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670310883.9865499, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310883.9865596, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670310925.772695, - "lastIP": "bxvc{vaxvb|h", - "deviceUUID": "3a4a9aa017e42af1b58b717ddcf9aebbc3190c60" - }, - "pb-IF5UUlM8Fw==": { - "display_string": [ - "\ue020\u5f61CARNAGE\u5f61TANISHQ", - "\ue030Android59086853" - ], - "profiles": [], - "name": "\ue030Android59086853", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-21 13:17:07", - "registerOn": 1670311026.4798732, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311026.4798741, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311026.4799204, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311026.479921, - "lastIP": "a\u007fn~}ieam~~mg", - "deviceUUID": "\u0015YUY\u0007E\u0007]" - }, - "pb-IF4lVEscUg==": { - "display_string": [ - "\ue063Sufipnf23" - ], - "profiles": [], - "name": "\ue063Sufipnf23", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-29 22:41:13", - "registerOn": 1670311047.5644026, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311047.5644033, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311047.564412, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670311209.8321745, - "lastIP": "a~l~xa~~l`a`b", - "deviceUUID": "0d94d5d74eaee649f43a55f425a511c5e40ad2f8" - }, - "pb-IF4RA2I6": { - "display_string": [ - "\ue020Shlash7561", - "\ue030Android22000837" - ], - "profiles": [], - "name": "\ue020Shlash7561", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-17 14:43:04", - "registerOn": 1670311104.8685694, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311104.86857, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311104.868579, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311104.8685796, - "lastIP": "azo~|`~~keala", - "deviceUUID": "3e74ebb3547223c8984475cea4d10c2cacbb4ad7" - }, - "pb-IF4iU0w4KQ==": { - "display_string": [ - "\ue020HecticOnset37" - ], - "profiles": [], - "name": "\ue020HecticOnset37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 11:02:22", - "registerOn": 1670311258.5179946, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311258.5179954, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311258.518002, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311258.5180027, - "lastIP": "bxvf|vavn~~k`", - "deviceUUID": "9e2c0d9943108b3f4201a47631d8d0ea3f5f0d57" - }, - "pb-IF4NU0wOXQ==": { - "display_string": [ - "\ue020ColonialGrammar61" - ], - "profiles": [], - "name": "\ue020ColonialGrammar61", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 09:17:31", - "registerOn": 1670311259.5718555, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311259.571856, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311259.5718703, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311259.5718713, - "lastIP": "azo~{n~}hiaib{", - "deviceUUID": "9427e3955630b5f233848073ab87e24369ca8d1b" - }, - "pb-IF4lU00bPQ==": { - "display_string": [ - "\ue063Correctiv8" - ], - "profiles": [], - "name": "\ue063Correctiv8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 22:49:37", - "registerOn": 1670311350.0987442, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311350.0987444, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311350.098753, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311350.098754, - "lastIP": "a\u007fn~~aeal~~jg", - "deviceUUID": "9f38ec8222b2e0f055319e0a2609b61f85d1e021" - }, - "pb-IF4BU3QhUQ==": { - "display_string": [ - "\ue063happygame2" - ], - "profiles": [], - "name": "\ue063happygame2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-13 12:33:07", - "registerOn": 1670311423.7830024, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311423.7830029, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311423.7830105, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311423.7830114, - "lastIP": "awj~ya~~ogai`", - "deviceUUID": "671a82ea06eddfc13761a895f95f2c68dfc7939f" - }, - "pb-IF41U0cRLw==": { - "display_string": [ - "\ue063brucewayn" - ], - "profiles": [], - "name": "\ue063brucewayn", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 20:15:27", - "registerOn": 1670311578.5884929, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311578.5884933, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311578.588504, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311578.5885048, - "lastIP": "azj~zo~~hgajf", - "deviceUUID": "d74f221261f73be70e6a03a2ff660bcf5b9c0d5f" - }, - "pb-IF4dVEcfIA==": { - "display_string": [ - "\ue063gatchipatr" - ], - "profiles": [], - "name": "\ue063gatchipatr", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-12 21:55:22", - "registerOn": 1670311599.461019, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311599.4610193, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311599.4610276, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670314344.1780927, - "lastIP": "a\u007fn~~afaahaicz", - "deviceUUID": "3785e8f3d30f48f0dede133ab6215bd4ca7031b5" - }, - "pb-IF4vVFEZBg==": { - "display_string": [ - "\ue063AkshayParg" - ], - "profiles": [], - "name": "\ue063AkshayParg", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-30 18:00:25", - "registerOn": 1670311626.4767659, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311626.4767663, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311626.476776, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670312114.6517053, - "lastIP": "a\u007fk~~`cajbwvg~", - "deviceUUID": "1f6f6aebf5accbeed4defc9c91dbf223d4e927af" - }, - "pb-IF4rU0kGEA==": { - "display_string": [ - "\ue020SpectacularShield731" - ], - "profiles": [], - "name": "\ue020SpectacularShield731", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-27 17:42:37", - "registerOn": 1670311955.0098388, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311955.0098395, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311955.0098464, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311955.0098476, - "lastIP": "awj~{`~}jcaif", - "deviceUUID": "3b2ecb70df160b3bc925563348e9f55d2bf4fd79" - }, - "pb-IF5TU0tcUw==": { - "display_string": [ - "\ue020muthuMJ", - "\ue030Android51992363" - ], - "profiles": [], - "name": "\ue020muthuMJ", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 11:18:56", - "registerOn": 1670312168.1355772, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312168.1355777, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312168.1355863, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312168.135587, - "lastIP": "azo~{m~vl~}l`", - "deviceUUID": "11c4435140c3fa18d7951dac1720e2cc865b8c2c" - }, - "pb-IF4nU0scDQ==": { - "display_string": [ - "\ue063FictionalH" - ], - "profiles": [], - "name": "\ue063FictionalH", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 14:16:08", - "registerOn": 1670312190.2316623, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312190.2316625, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312190.231671, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312190.231672, - "lastIP": "a\u007fn~~acaaiajc|", - "deviceUUID": "5a55a76eb9e5c5b946793750d52e2b66ddff73ff" - }, - "pb-IF4jU1AyPA==": { - "display_string": [ - "\ue030Android63995855" - ], - "profiles": [], - "name": "\ue030Android63995855", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 11:48:00", - "registerOn": 1670312327.0104196, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312327.0104203, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312327.01043, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312327.010431, - "lastIP": "a\u007fi~|h~vvaym", - "deviceUUID": "10ca381ceaa576d47524ced69fb70bb5af5f48a9" - }, - "pb-IF5UU3kINA==": { - "display_string": [ - "\ue030Android62934068" - ], - "profiles": [], - "name": "\ue030Android62934068", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-26 14:58:23", - "registerOn": 1670312583.8976188, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312583.897619, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312583.8976293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312583.8976305, - "lastIP": "a\u007fi~|h~{i~~ih", - "deviceUUID": "fbe7fb9df64bb88df41863860739579e82b7f543" - }, - "pb-IF4vU00eAA==": { - "display_string": [ - "\ue030Android63898377" - ], - "profiles": [], - "name": "\ue030Android63898377", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 04:15:41", - "registerOn": 1670312659.183585, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312659.1835856, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312659.1835966, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670313521.9851687, - "lastIP": "d}va~i~~iaaag", - "deviceUUID": "\u0015" - }, - "pb-IF42U2wGFw==": { - "display_string": [ - "\ue020chugambaran", - "\ue030Android63640741" - ], - "profiles": [], - "name": "\ue020chugambaran", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-13 17:05:07", - "registerOn": 1670312704.2908556, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312704.2908561, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312704.290864, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312704.2908647, - "lastIP": "azo~{l~~ohaie~", - "deviceUUID": "32b3d31bc0385331d4fc82098d4a0a5988f3baba", - "cMsgCount": 0, - "lastMsgTime": 1670314195.7867928, - "lastMsg": "gg avi", - "cSameMsg": 0 - }, - "pb-JiNJVxBSVEFCX1lGE0JWVVBHF0deRFJG": { - "display_string": [ - "\ue020Hezardoz" - ], - "profiles": [], - "name": "\ue020Hezardoz", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-26 19:43:17", - "registerOn": 1670312747.536739, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312747.5367396, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312747.536748, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312747.5367491, - "lastIP": "d|vb{i~~lfaj`{", - "deviceUUID": "de39f038b05d92313cc3a2105de0f6a69ed380be" - }, - "pb-IF4nU3hdFw==": { - "display_string": [ - "\ue063Insatiabl3", - "\ue030Android63865931" - ], - "profiles": [], - "name": "\ue063Insatiabl3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-26 21:31:36", - "registerOn": 1670312883.8861904, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312883.886191, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312883.886201, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312883.8862016, - "lastIP": "azo~{m~~i`aiav", - "deviceUUID": "ccbb4fb58c5e22118fa6720a9915ce840207f4fd" - }, - "pb-IF5VU0dfJg==": { - "display_string": [ - "\ue020HumblerMare46" - ], - "profiles": [], - "name": "\ue020HumblerMare46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-29 20:51:22", - "registerOn": 1670312945.089181, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312945.0891812, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312945.089191, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312945.089192, - "lastIP": "a\u007fn~}heaje|vcw", - "deviceUUID": "0c729e271c617dd813d21455250b554fa9e94944" - }, - "pb-IF4dVEUgVg==": { - "display_string": [ - "\ue063EclecticC3" - ], - "profiles": [], - "name": "\ue063EclecticC3", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-24 13:30:09", - "registerOn": 1670313070.2871656, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670313070.287166, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313070.2871757, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313070.2871766, - "lastIP": "dxvc~vavh~~ac", - "deviceUUID": "59430fabade39ff3b28818536a627a1df1dba457" - }, - "pb-IF5dU0JePQ==": { - "display_string": [ - "\ue020HopelessActor28" - ], - "profiles": [], - "name": "\ue020HopelessActor28", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-07 18:33:43", - "registerOn": 1670313381.5132644, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670313381.513265, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313381.513272, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313381.513273, - "lastIP": "a|o~vo~~ieaia~", - "deviceUUID": "038a652f18e77eaf416637f399212677de63cce6", - "cMsgCount": 0, - "lastMsgTime": 1670313474.162137, - "lastMsg": "1", - "cSameMsg": 0 - }, - "pb-JiNJARFcV0VGXF1AE09QVVdCEkRcRlVL": { - "display_string": [ - "\ue020TheIndianGamerDX" - ], - "profiles": [], - "name": "\ue020TheIndianGamerDX", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-29 16:12:51", - "registerOn": 1670313468.4106395, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670313468.4106402, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313468.410649, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313468.4106498, - "lastIP": "dvvcyvb|k~~`d", - "deviceUUID": "f9445b523df9ae355c5887b8f6710335e172d4fb" - }, - "pb-IF5UU1JaMA==": { - "display_string": [ - "\ue063MattedElix" - ], - "profiles": [], - "name": "\ue063MattedElix", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 10:49:50", - "registerOn": 1670313646.7932086, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670313646.793209, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313646.7932172, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313646.7932181, - "lastIP": "axi~zvb{m~}ld", - "deviceUUID": "e44e96c8776ff5e5a6a33fd4074642d6ebcbaaa8" - }, - "pb-IF4lU1BdIw==": { - "display_string": [ - "\ue063LiteralFlu" - ], - "profiles": [], - "name": "\ue063LiteralFlu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 13:30:05", - "registerOn": 1670313796.3415685, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670313796.341569, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313796.341578, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313796.341579, - "lastIP": "a\u007fk~yo~~mgaab", - "deviceUUID": "53d682b443cb16bd38b3b8054bc833efceda9008" - }, - "pb-IF4JU08bHA==": { - "display_string": [ - "\ue030Android63995876" - ], - "profiles": [], - "name": "\ue030Android63995876", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 11:53:14", - "registerOn": 1670314037.24787, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314037.2478704, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314037.2478976, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314037.2478983, - "lastIP": "a~o~~h~~mhaj", - "deviceUUID": "\u0015V\\XX\u0015\u0002]" - }, - "pb-IF4cVE4MDQ==": { - "display_string": [ - "\ue020Ansilchikuu" - ], - "profiles": [], - "name": "\ue020Ansilchikuu", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-11 20:58:00", - "registerOn": 1670314062.3466134, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314062.3466141, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314062.3466227, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314062.3466237, - "lastIP": "azo~{a~~ldaj`{", - "deviceUUID": "b9ebe325b3e08ecb3696c2cfd5892efc7ce14e66" - }, - "pb-IF4lVWwsEw==": { - "display_string": [ - "\ue020SANKETBANSODE007" - ], - "profiles": [], - "name": "\ue020SANKETBANSODE007", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-29 11:54:16", - "registerOn": 1670314284.0633721, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314284.0633726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314284.063382, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314284.063383, - "lastIP": "azo~|k~{vb}a", - "deviceUUID": "d3753d30921e7fe8e98d705e3244326b2ec6bce3" - }, - "pb-IF4cU3NcKQ==": { - "display_string": [ - "\ue063YoungerCol" - ], - "profiles": [], - "name": "\ue063YoungerCol", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 19:22:09", - "registerOn": 1670314305.376949, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314305.3769493, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314305.376958, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314305.3769593, - "lastIP": "azh~}lbaiixvbx", - "deviceUUID": "8ff0e92d1c877d59bcd86fc9b154c3873b3163da" - }, - "pb-IF4gU0U4UA==": { - "display_string": [ - "\ue020ROHIT7100000" - ], - "profiles": [], - "name": "\ue020ROHIT7100000", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-05 09:01:56", - "registerOn": 1670314530.190387, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314530.1903875, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314530.1903956, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314530.1903963, - "lastIP": "a\u007fn~xo~~nbajcx", - "deviceUUID": "e52b11e4b73d4f64c5c8de57608a7d77236a75f1" - }, - "pb-IF5QU0s6XQ==": { - "display_string": [ - "\ue063CleanerRes" - ], - "profiles": [], - "name": "\ue063CleanerRes", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 09:00:51", - "registerOn": 1670314598.6798697, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314598.6798701, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314598.6798773, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314598.6798782, - "lastIP": "a|j~~mdalhaof", - "deviceUUID": "53ad53dc7a76c4bb4f3515d1dd74b2e52cf21264" - }, - "pb-IF4yVG8uXQ==": { - "display_string": [ - "\ue020PitifulPick9", - "\ue030Android33279498" - ], - "profiles": [], - "name": "\ue020PitifulPick9", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-12 17:48:07", - "registerOn": 1670314600.422643, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314600.4226437, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314600.4226525, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314600.4226532, - "lastIP": "a~o~}jhaaiamd", - "deviceUUID": "ba006d0a7cfbddde49ec8fbfba8edc13e1268e63" - }, - "pb-IF4iVU4qDA==": { - "display_string": [ - "\ue020aswinsanthosh47249" - ], - "profiles": [], - "name": "\ue020aswinsanthosh47249", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-01 22:19:07", - "registerOn": 1670314639.8906856, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314639.890686, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314639.8906932, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314639.890694, - "lastIP": "azo~{n~~lea``", - "deviceUUID": "4b04db1094e7773fd901d6590103afadbe70e3b9" - }, - "pb-IF4FU085Ng==": { - "display_string": [ - "\ue063MootEmbrac" - ], - "profiles": [], - "name": "\ue063MootEmbrac", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 11:36:52", - "registerOn": 1670314687.8052628, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314687.8052635, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314687.805272, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314687.805273, - "lastIP": "dzva}k~}jcaje\u007f", - "deviceUUID": "2f7a26a6c3b213153f12a1c5e79e9351bc99da51" - }, - "pb-IF4xU08NPA==": { - "display_string": [ - "\ue030Android63996535" - ], - "profiles": [], - "name": "\ue030Android63996535", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 13:50:02", - "registerOn": 1670314822.1885004, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314822.1885006, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314822.1885104, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314822.1885118, - "lastIP": "b}j~~lbaiiwva}h", - "deviceUUID": "1e68d1a8d1a3942a98801321538dfd0b3a054703" - }, - "pb-IF4JU08AEw==": { - "display_string": [ - "\ue063AudaciousM" - ], - "profiles": [], - "name": "\ue063AudaciousM", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 21:40:53", - "registerOn": 1670314928.5924013, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314928.5924015, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314928.59241, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314928.5924113, - "lastIP": "a\u007fn~}iaajaxvaxk", - "deviceUUID": "89212b29e45227381462f0946d8224e1c3e969c7" - } -} \ No newline at end of file diff --git a/dist/ba_root/mods/playersdata/profiles.json2022-12-06 14%3A32%3A45.695478 b/dist/ba_root/mods/playersdata/profiles.json2022-12-06 14%3A32%3A45.695478 deleted file mode 100644 index 887c907..0000000 --- a/dist/ba_root/mods/playersdata/profiles.json2022-12-06 14%3A32%3A45.695478 +++ /dev/null @@ -1,33262 +0,0 @@ -{ - "pb-IF4TVWwZUQ=9=": { - "display_string": "\ue030PC295588", - "profiles": [], - "name": "\ue030PC295588", - "isBan": false, - "isMuted": false, - "totaltimeplayer": 0, - "lastseen": 0, - "spamCount": 0, - "lastSpam": 1637911682.2054627 - }, - "pb-IF5XUm9eAg==": { - "display_string": [ - "\ue030PC402015" - ], - "profiles": [], - "name": "\ue030PC402015", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-12 20:30:30", - "registerOn": 1636801177.809589, - "canStartKickVote": true, - "totaltimeplayer": 0, - "lastseen": 0, - "spamCount": 4, - "lastSpam": 1637912278.8745685 - }, - "pb-IF4eUxk5KA==": { - "display_string": [ - "\ue063HeySmoothy" - ], - "profiles": [], - "name": "\ue063HeySmoothy", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-29 21:53:44", - "registerOn": 1655022106.4740922, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1655022106.4740927, - "totaltimeplayer": 0, - "lastseen": 0, - "warnCount": 0, - "lastWarned": 1655552812.9632144, - "verified": true, - "rejoincount": 1, - "lastJoin": 1655552812.963215, - "cMsgCount": 0, - "lastMsgTime": 1655406931.728448, - "lastMsg": "ok", - "cSameMsg": 0, - "lastIP": "axj~}j~~n`ai", - "deviceUUID": "eedccec9b0c17d3716b936981bb753c3872d905c" - }, - "pb-IF4RU2ECAg==": { - "display_string": [ - "\ue030PC452402" - ], - "profiles": [], - "name": "\ue030PC452402", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-04 01:42:22", - "registerOn": 1655407521.4853234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1655407521.4853249, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1658055515.14302, - "verified": true, - "rejoincount": 1, - "lastJoin": 1658055515.143022, - "lastIP": "axj~|h~|j~~", - "deviceUUID": "c49fafb7d66d14198924c1b9dcc59e23fb838042" - }, - "pb-IF43U2cIVw==": { - "display_string": "\ue063Smoothy", - "profiles": [], - "name": "\ue063Smoothy", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-23 22:27:13", - "registerOn": 1656442709.8344862, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1656442709.8344867, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1656527532.2340264, - "verified": true, - "rejoincount": 0, - "lastJoin": 1656527777.355527, - "lastIP": "axj~}m~}jdai", - "deviceUUID": "c49fafb7d66d14198924c1b9dcc59e23fb838042", - "cMsgCount": 0, - "lastMsgTime": 1656525491.3282282, - "lastMsg": "/end", - "cSameMsg": 0 - }, - "pb-IF41U2scIg==": { - "display_string": [ - "\ue063SHRUTIsom" - ], - "profiles": [], - "name": "\ue063SHRUTIsom", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 15:17:08", - "registerOn": 1670146929.9853938, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670146929.9853942, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670326928.2783911, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670326928.2783923, - "lastIP": "a\u007fk~}hhaniaig|", - "deviceUUID": "290ab9ffedc77b8768c4881945b02eca86c32ae8", - "cMsgCount": 0, - "lastMsgTime": 1670329025.9740148, - "lastMsg": "end ", - "cSameMsg": 0 - }, - "pb-IF4uU3gNKQ==": { - "display_string": [ - "\ue020CKD360" - ], - "profiles": [], - "name": "\ue020CKD360", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-01 07:24:59", - "registerOn": 1670146934.3897243, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670146934.389725, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670317832.1611946, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670332334.1768847, - "lastIP": "azo~{i~}mcaii{", - "deviceUUID": "548cce6a079bbda740d03793a1d78e999a4c1fd4", - "cMsgCount": 0, - "lastMsgTime": 1670332424.2218833, - "lastMsg": "very depressing ", - "cSameMsg": 0 - }, - "pb-IF4nUxE4Nw==": { - "display_string": [ - "\ue030Android60071137" - ], - "profiles": [], - "name": "\ue030Android60071137", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-28 18:48:17", - "registerOn": 1670146945.498685, - "canStartKickVote": true, - "spamCount": 2, - "lastSpam": 1670163269.13775, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327687.1891513, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670332352.225606, - "lastIP": "a~h~}jfaih}va~a", - "deviceUUID": "9e21e953c214814994e344fb30238c23fc8af5ea", - "cMsgCount": 0, - "lastMsgTime": 1670334444.6394622, - "lastMsg": "are sry", - "cSameMsg": 0 - }, - "pb-IF5RU2wCXQ==": { - "display_string": [ - "\ue020IrremediableWraith22" - ], - "profiles": [], - "name": "\ue020IrremediableWraith22", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-03 15:18:15", - "registerOn": 1670146957.4824429, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670146957.4824433, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320027.4961064, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320027.4961085, - "lastIP": "bxvf~vb{n~|i", - "deviceUUID": "\u0015\u0007^RY\u0010R\\\u0002WAW_\u0003Q\u0010\u0004_YW@XTWQ", - "cMsgCount": 0, - "lastMsgTime": 1670320207.2617147, - "lastMsg": "bavasir kya kar raha hai", - "cSameMsg": 0 - }, - "pb-IF5UUxgjIA==": { - "display_string": [ - "\ue020sagarrathore481", - "\ue030Android63531396", - "\ue030Android63531328", - "\ue030Android60355853" - ], - "profiles": [], - "name": "\ue020sagarrathore481", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-19 12:04:39", - "registerOn": 1670146986.8760846, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670146986.8760853, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331349.7670653, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670330747.1735826, - "lastIP": "a~o~}j`aia~va|n", - "deviceUUID": "5f7b062f4010c15627bebd1b749bdc57ef5bfb63", - "cMsgCount": 0, - "lastMsgTime": 1670332393.8098233, - "lastMsg": "ckd konsi team", - "cSameMsg": 0 - }, - "pb-IF49Umo-Fg==": { - "display_string": [ - "\ue020PATLU517" - ], - "profiles": [], - "name": "\ue020PATLU517", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-02 09:31:34", - "registerOn": 1670147005.6629934, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670301661.6737187, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301639.6076431, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670307830.092055, - "lastIP": "dvvd|va\u007fi~~nc", - "deviceUUID": "0ca89312b6820cc0711ece739ffed8a26cd3b72f", - "cMsgCount": 0, - "lastMsgTime": 1670245563.457161, - "lastMsg": "hacker", - "cSameMsg": 0 - }, - "pb-IF4xU00iHA==": { - "display_string": [ - "\ue020BleakForce44" - ], - "profiles": [], - "name": "\ue020BleakForce44", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 14:14:35", - "registerOn": 1670147022.9785194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147022.9785202, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670167091.5974138, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670167271.4085112, - "lastIP": "a|o~vo~wn~{i", - "deviceUUID": "a7497087df3804fee91357f3206f01f8f0dcd416", - "cMsgCount": 0, - "lastMsgTime": 1670167234.93747, - "lastMsg": "sry", - "cSameMsg": 0 - }, - "pb-IF4uU0kNUw==": { - "display_string": [ - "\ue020OriginalBlaster49" - ], - "profiles": [], - "name": "\ue020OriginalBlaster49", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 17:27:30", - "registerOn": 1670147065.7853847, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147065.7853854, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147065.7853942, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670147065.7853947, - "lastIP": "a|j~~mdambamc", - "deviceUUID": "3c93e0300d6f81abbd178196785c7ed80558ad4b" - }, - "pb-IF4BV2gDEA==": { - "display_string": [ - "\ue063TrippyJest" - ], - "profiles": [], - "name": "\ue063TrippyJest", - "isBan": false, - "isMuted": false, - "accountAge": "2018-10-23 15:02:35", - "registerOn": 1670147135.0654218, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147135.0654223, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310533.9907193, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670312485.2163844, - "lastIP": "azo~{a~~`dalf", - "deviceUUID": "be2fec1595bed04e080bf569f820fc78cbcf0576", - "cMsgCount": 2, - "lastMsgTime": 1670313907.7547574, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4mVU0oUw==": { - "display_string": [ - "\ue020tanishdoshi765" - ], - "profiles": [], - "name": "\ue020tanishdoshi765", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-27 23:16:54", - "registerOn": 1670147286.6486409, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147286.6486413, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147286.648649, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670147286.64865, - "lastIP": "dvvc}va{l~}m", - "deviceUUID": "30bac5ce5457fe04a69b0a9260350070e6facf74", - "cMsgCount": 0, - "lastMsgTime": 1670148549.3140652, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4dUkxeLQ==": { - "display_string": [ - "\ue063Sumit11727" - ], - "profiles": [], - "name": "\ue063Sumit11727", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-28 22:53:04", - "registerOn": 1670147319.6989822, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670148374.6405299, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248494.183191, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670260979.7385921, - "lastIP": "azo~|k~~igaiex", - "deviceUUID": "5fd3fdecff6f62f3befdb45fec945ebf7d33acb3", - "cMsgCount": 0, - "lastMsgTime": 1670261223.00056, - "lastMsg": "0", - "cSameMsg": 0 - }, - "pb-IF4-VBcnLw==": { - "display_string": [ - "\ue020Vaisakhaacharya" - ], - "profiles": [], - "name": "\ue020Vaisakhaacharya", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-26 12:50:03", - "registerOn": 1670147322.7029283, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147322.7029288, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147322.7029355, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670147322.7029364, - "lastIP": "a|o~vo~~i`aob", - "deviceUUID": "b575a88e8922f784b688b961dba39e60cf130dfa", - "cMsgCount": 0, - "lastMsgTime": 1670148236.5960152, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4hUlYfXQ==": { - "display_string": [ - "\ue063iloa12", - "\ue030Android59663117" - ], - "profiles": [], - "name": "\ue030Android59663117", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-12 22:16:09", - "registerOn": 1670147338.8019137, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147338.8019145, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147338.801951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670147338.8019516, - "lastIP": "i~vaxl~}mcaidw", - "deviceUUID": "7d444423b8f861f75adb7e354e0bfed0062867b5", - "cMsgCount": 0, - "lastMsgTime": 1670147403.7644346, - "lastMsg": "gg", - "cSameMsg": 0 - }, - "pb-IF4sU0xbKQ==": { - "display_string": [ - "\ue020RentalIndependence57" - ], - "profiles": [], - "name": "\ue020RentalIndependence57", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 13:48:07", - "registerOn": 1670147352.80363, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147352.8036306, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147352.8036387, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670147444.8446765, - "lastIP": "bxvf|vavo~}if", - "deviceUUID": "\u0015YUVVEY^\u0005YA", - "cMsgCount": 0, - "lastMsgTime": 1670148236.6669962, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFaV0RJWF1JGEBWU11CFEFXRFhG": { - "display_string": [ - "\ue020KABALIZ010" - ], - "profiles": [], - "name": "\ue020KABALIZ010", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-30 23:54:04", - "registerOn": 1670147367.1874788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147367.1874793, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147367.1874878, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670148188.4354708, - "lastIP": "b}k~}jgaiayvb~a", - "deviceUUID": "e4a77f2424701c228bc7d0cb44180365e04a27de" - }, - "pb-IF4RU3M-Jw==": { - "display_string": [ - "\ue020ComplementaryTry54", - "\ue030Android48646510" - ], - "profiles": [], - "name": "\ue020ComplementaryTry54", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 15:52:38", - "registerOn": 1670147376.9784825, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147376.978483, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147376.9784906, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670148234.6153128, - "lastIP": "a|o~vo~~jdaiay", - "deviceUUID": "025dff09d53d32f6b1682636695d3f54fd1ed2c5" - }, - "pb-IF4cUktZNg==": { - "display_string": [ - "\ue020Ainesh0001" - ], - "profiles": [], - "name": "\ue020Ainesh0001", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-24 13:00:03", - "registerOn": 1670147443.1639163, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147443.1639168, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670335959.1163256, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670335064.5591037, - "lastIP": "a~h~}keajcwvb\u007fj", - "deviceUUID": "37e673cf4af01f06366303a4c8144454569c460b", - "cMsgCount": 0, - "lastMsgTime": 1670335959.1163464, - "lastMsg": "why the fuck I grabbed that ", - "cSameMsg": 0 - }, - "pb-IF4AVUgDDA==": { - "display_string": [ - "\ue020ProdigalAcid30" - ], - "profiles": [], - "name": "\ue020ProdigalAcid30", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-04 19:17:45", - "registerOn": 1670147447.5272655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147447.5272665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257960.9984937, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257960.9984949, - "lastIP": "a\u007fk~}hdaiczvb\u007fj", - "deviceUUID": "233b00d0bea13fe4df0dde4311979f5bdbb80374" - }, - "pb-IF4jUWY5": { - "display_string": [ - "\ue020PickyOnion8951" - ], - "profiles": [], - "name": "\ue020PickyOnion8951", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-13 20:20:54", - "registerOn": 1670147682.475688, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147682.4756885, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224370.5725636, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224370.5725653, - "lastIP": "dvvcyvh~vay", - "deviceUUID": "\u0015\u0005\fVU@\u0002\\SSLW\t\u0005\u0003B", - "cMsgCount": 0, - "lastMsgTime": 1670148251.610843, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF49UnYRLQ==": { - "display_string": [ - "\ue063ChargingBe" - ], - "profiles": [], - "name": "\ue020ChargingBear93648", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-30 19:43:31", - "registerOn": 1670147876.958139, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147876.9581401, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329563.699519, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670335813.9531093, - "lastIP": "dvvcyvb~i~~li", - "deviceUUID": "b9b711ab2a81c4ee2c8d2708018f9e859fb9e9d3", - "cMsgCount": 0, - "lastMsgTime": 1670152771.1508338, - "lastMsg": "abe laude thuje bacha rha tha ", - "cSameMsg": 0 - }, - "pb-IF4BUmpYNg==": { - "display_string": [ - "\ue063sfretgfdgf", - "\ue020SeismicPetroleum33", - "\ue020PharmacologicalFox59", - "\ue030Android47917927", - "\ue030Android63590584" - ], - "profiles": [], - "name": "\ue063sfretgfdgf", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-01 20:41:16", - "registerOn": 1670148030.5194852, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148030.5194857, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148030.5194933, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148030.5194938, - "lastIP": "bxvc{vevvf", - "deviceUUID": "d9be0da019a814b92513cb144b31aa65f6fbcffb" - }, - "pb-IF4UU1AvNw==": { - "display_string": [ - "\ue030Android63982105" - ], - "profiles": [], - "name": "\ue030Android63982105", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 09:18:35", - "registerOn": 1670148053.2875204, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148053.2875214, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148053.2875721, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148053.287573, - "lastIP": "a|o~vo~~h`ajd{", - "deviceUUID": "cc06900df11e9ee062d26dd18534f95c3462c812" - }, - "pb-IF4CVW07PA==": { - "display_string": [ - "\ue063GoodlyTran" - ], - "profiles": [], - "name": "\ue020GoodlyTrance19", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-08 18:00:46", - "registerOn": 1670148081.7151084, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148081.7151089, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331602.726747, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670335928.329148, - "lastIP": "a\u007fk~}hfaih\u007fvb~m", - "deviceUUID": "3e7b2c55f77d3aeec51b72a25eafc1ac73e0f353" - }, - "pb-IF4vU2lbDw==": { - "display_string": [ - "\ue020StoicTurbulence18" - ], - "profiles": [], - "name": "\ue020StoicTurbulence18", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-28 14:21:36", - "registerOn": 1670148197.870161, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148197.870162, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670185187.3254387, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670186029.2780771, - "lastIP": "a|o~vo~~i`aj`{", - "deviceUUID": "8c979450e27fa3d166bd41f5c75837c5c5e624ba", - "cMsgCount": 0, - "lastMsgTime": 1670186537.6192417, - "lastMsg": "hacker hey kya", - "cSameMsg": 0 - }, - "pb-IF5QU1ImIA==": { - "display_string": [ - "\ue063anaunzia" - ], - "profiles": [], - "name": "\ue063anaunzia", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 11:35:12", - "registerOn": 1670148261.506911, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148261.5069115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148261.5069187, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148261.5069194, - "lastIP": "a~l~xa~zi~~kf", - "deviceUUID": "3a52fdedebfa3feae73f47ccf73d5c7fdb56909e" - }, - "pb-IF43U0otUA==": { - "display_string": [ - "\ue020IronLeopard87891" - ], - "profiles": [], - "name": "\ue020IronLeopard87891", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-30 14:39:35", - "registerOn": 1670148427.628323, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148427.6283238, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240065.5562072, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670240065.5562086, - "lastIP": "azo~{n~}iaaicy", - "deviceUUID": "ee51530467ad4b8ae2b2f4eba2d6dd7f33665728" - }, - "pb-IF5dUxEdMw==": { - "display_string": [ - "\ue030Android59978094" - ], - "profiles": [], - "name": "\ue030Android59978094", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-24 14:00:33", - "registerOn": 1670148440.9455113, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148440.9455123, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148440.9455218, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670148698.2545264, - "lastIP": "a\u007fk~~obaobaicw", - "deviceUUID": "6cbe886230f5dc1432bfb49a4fee805b19d04638", - "cMsgCount": 0, - "lastMsgTime": 1670148611.921159, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4LU04tIw==": { - "display_string": [ - "\ue020VenousJackal46" - ], - "profiles": [], - "name": "\ue020VenousJackal46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 13:19:05", - "registerOn": 1670148443.7016256, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148443.7016263, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670180492.4315927, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670181244.1466367, - "lastIP": "awj~{`~~ahaj`", - "deviceUUID": "c01496ae001e803d2f2519c4286b2d2a4e2f119c" - }, - "pb-IF4LU04NXQ==": { - "display_string": [ - "\ue063TayzaAmazi", - "\ue030Android61518159" - ], - "profiles": [], - "name": "\ue063TayzaAmazi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 11:12:34", - "registerOn": 1670148444.676839, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148444.6768396, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148444.676848, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148444.6768484, - "lastIP": "cxva~i~zi~wn", - "deviceUUID": "f1e99c6cf2b2596414e4c5d6b4bfbb6978afbfa1" - }, - "pb-IF4IV04ZKw==": { - "display_string": [ - "\ue020paratr\u00f2\u00f3per", - "\ue030Android26319971", - "\ue030PC355734" - ], - "profiles": [], - "name": "\ue020paratr\u00f2\u00f3per", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-06 01:19:11", - "registerOn": 1670148455.7358403, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148455.7358408, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670274461.1677194, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670273833.6099362, - "lastIP": "b}k~~ohaja}vb|n", - "deviceUUID": "c6852ce1ce7c933f50abd6465ca3fcd0c0154825", - "cMsgCount": 1, - "lastMsgTime": 1670274557.3861141, - "lastMsg": "bye", - "cSameMsg": 0 - }, - "pb-IF4BU0EiEw==": { - "display_string": [ - "\ue020blacksopugaming" - ], - "profiles": [], - "name": "\ue020blacksopugaming", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 21:50:49", - "registerOn": 1670148468.822553, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148468.8225534, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148468.8225608, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148468.8225615, - "lastIP": "azj~zo~}lcaih\u007f", - "deviceUUID": "f990e4c7f7f5f95ad8212bff2d45e38da77cb574" - }, - "pb-IF4BU0cDNg==": { - "display_string": [ - "\ue063hacker1199" - ], - "profiles": [], - "name": "\ue063hacker1199", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 21:26:49", - "registerOn": 1670148469.8444016, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148469.844402, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235249.348355, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670235249.348357, - "lastIP": "a\u007fk~}jfaihwvdv", - "deviceUUID": "14b513d2239371f2b9dc72950ed1ca9b0fa8ba68" - }, - "pb-IF5VU1JZMw==": { - "display_string": [ - "\ue030Android63983659" - ], - "profiles": [], - "name": "\ue030Android63983659", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:37:20", - "registerOn": 1670148470.7953641, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148470.7953646, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148470.7953715, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148470.7953722, - "lastIP": "a\u007fn~}icaa`aihz", - "deviceUUID": "5fd3fdecff6f62f3befdb45fec945ebf7d33acb3" - }, - "pb-IF41U0ElPA==": { - "display_string": [ - "\ue030Android63288902" - ], - "profiles": [], - "name": "\ue030Android63288902", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 07:06:34", - "registerOn": 1670148504.8981645, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148504.8981652, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148504.8981729, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670148553.746867, - "lastIP": "dzva~a~}`~~ae", - "deviceUUID": "e6b8fc0713b82719263cf29f162a2ee85873591e", - "cMsgCount": 0, - "lastMsgTime": 1670148536.32531, - "lastMsg": "/end", - "cSameMsg": 0 - }, - "pb-IF5UVVE8UA==": { - "display_string": [ - "\ue020DentalDiary21", - "\ue030Android52427071" - ], - "profiles": [], - "name": "\ue030Android52427071", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-08 18:45:34", - "registerOn": 1670148558.054654, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148558.0546548, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148558.0546634, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148558.0546641, - "lastIP": "azo~{a~vm~~mh", - "deviceUUID": "bc9e21a4a6df6e6c22cdbff0f96fc525fc36e65b" - }, - "pb-IF4-U0ZcNA==": { - "display_string": [ - "\ue020GrandYogi69354", - "\ue020BiologicalPotion26" - ], - "profiles": [], - "name": "\ue020BiologicalPotion26", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 08:34:54", - "registerOn": 1670148564.0848756, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148564.084876, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148564.0848832, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148564.0848837, - "lastIP": "a\u007fn~}hiajc|vaxk", - "deviceUUID": "f4f953d038ec20f7ad8b5b0fe35d407604c20e5f" - }, - "pb-IF4eU004Ew==": { - "display_string": [ - "\ue020HonorableEttin404" - ], - "profiles": [], - "name": "\ue020HonorableEttin404", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 20:31:56", - "registerOn": 1670148624.308261, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148624.3082619, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324124.6485064, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670337030.5787466, - "lastIP": "azo~zi~~m`aid~", - "deviceUUID": "f926e6f96104161695572452dd7814d84bdd0d3c" - }, - "pb-IF4gUmMPXQ==": { - "display_string": [ - "\ue020NitricBet41" - ], - "profiles": [], - "name": "\ue020NitricBet41", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-01 16:25:42", - "registerOn": 1670148642.3436615, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148642.343662, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315267.8634155, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319691.0598974, - "lastIP": "azj~zo~}khaiez", - "deviceUUID": "\u0015\u0005^RY\u0011\u0004Z\u0002X\u0017U]YX\u0010V\\QXDT^UVDQ" - }, - "pb-IF4-VWEAUA==": { - "display_string": [ - "\ue020ForensicLaboratory19", - "\ue030Android46624746" - ], - "profiles": [], - "name": "\ue020ForensicLaboratory19", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-11 22:55:03", - "registerOn": 1670148658.7032065, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148658.7032073, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148658.7032154, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148658.703216, - "lastIP": "a\u007fn~}icaigvva~n", - "deviceUUID": "87b2e37a6910d5080cfc548246ee8dccdd0021c5", - "cMsgCount": 0, - "lastMsgTime": 1670148676.7350876, - "lastMsg": "ok", - "cSameMsg": 0 - }, - "pb-IF4sU04eMg==": { - "display_string": [ - "\ue063FloweryGar" - ], - "profiles": [], - "name": "\ue063FloweryGar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:11:36", - "registerOn": 1670148671.4688425, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148671.468843, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148671.4688516, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148671.4688525, - "lastIP": "awk~~oaajgaoe", - "deviceUUID": "ba432372bc5c5ce74c39860a860aba76d73a848c" - }, - "pb-IF4lVUwSFg==": { - "display_string": [ - "\ue020Harsaa007", - "\ue030PC446887", - "\ue030PC437584" - ], - "profiles": [], - "name": "\ue020Harsaa007", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-26 11:09:02", - "registerOn": 1670148687.6756177, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148687.6756184, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148687.6756272, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148687.675628, - "lastIP": "dvvb\u007fm~wk~zm", - "deviceUUID": "f5e8820a894fe21ff6b047fed74a17222c96c314" - }, - "pb-IF4RU0gPVg==": { - "display_string": [ - "\ue030Android63705110" - ], - "profiles": [], - "name": "\ue030Android63705110", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 21:18:58", - "registerOn": 1670148712.589369, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148712.5893698, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148712.5893786, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148712.5893793, - "lastIP": "a~o~vo~}hdai`x", - "deviceUUID": "83a016bb06f025b816c34907b8565f35f587972f" - }, - "pb-IF4RU3QoXQ==": { - "display_string": [ - "\ue030Android62576681" - ], - "profiles": [], - "name": "\ue030Android62576681", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-10 10:46:06", - "registerOn": 1670148719.7224848, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670160294.946838, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670330008.8698049, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329896.8848736, - "lastIP": "azj~zo~}keaic~", - "deviceUUID": "77223848ed08d8d5579bfe2bfeb95f9af81d2b97", - "cMsgCount": 0, - "lastMsgTime": 1670330211.9300404, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4OU2UCBA==": { - "display_string": [ - "\ue020HARSHITPATLEnilkanth" - ], - "profiles": [], - "name": "\ue020HARSHITPATLEnilkanth", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-17 12:27:56", - "registerOn": 1670148750.7460818, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148750.7460823, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148750.7460885, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148750.7460892, - "lastIP": "azj~zo~~ihaiav", - "deviceUUID": "\u0015W\fQ\u0004EX\b" - }, - "pb-IF5RUmMsFg==": { - "display_string": [ - "\ue020karanshetty6" - ], - "profiles": [], - "name": "\ue020karanshetty6", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-17 10:18:51", - "registerOn": 1670148764.8105505, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148764.810551, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328349.4780455, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328349.4780467, - "lastIP": "azo~zh~yn~~jh", - "deviceUUID": "c2a3f27acb52e3ec49f84af6f52e2f5df6caea6b", - "cMsgCount": 0, - "lastMsgTime": 1670239954.9101062, - "lastMsg": "nibbi", - "cSameMsg": 0 - }, - "pb-IF4uUxZYAQ==": { - "display_string": [ - "\ue020CompliantDelight40" - ], - "profiles": [], - "name": "\ue020CompliantDelight40", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-19 14:18:08", - "registerOn": 1670148773.8892055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148773.8892062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148773.8892148, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148773.8892155, - "lastIP": "bxvf|vb}i~~`c", - "deviceUUID": "\u0015\u0004\\\u0005\u0003MQ\u000fYXC\u0002\u000b\u0003QBX\\SX@RUUXBW" - }, - "pb-IF4xV2oPHA==": { - "display_string": [ - "\ue063JealousCry" - ], - "profiles": [], - "name": "\ue063JealousCry", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-06 06:29:28", - "registerOn": 1670148803.9486802, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148803.9486806, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306636.1708944, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670307802.86521, - "lastIP": "a\u007fn~~adajawvi~", - "deviceUUID": "eb18d12c0553a71771f6334f9660dddbe1cbadfe", - "cMsgCount": 0, - "lastMsgTime": 1670167960.761208, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4MU047BA==": { - "display_string": [ - "\ue030Android63936722" - ], - "profiles": [], - "name": "\ue030Android63936722", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 21:58:59", - "registerOn": 1670148838.3438334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148838.3438342, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148838.3439744, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670149097.643073, - "lastIP": "a\u007fn~}heajc~vb\u007fa", - "deviceUUID": "c25048a96f4b7282632fdb499249b86ae2d5f216" - }, - "pb-IF4UU0YsDQ==": { - "display_string": [ - "\ue020C\u1d00\u029f\u029fM\u1d07Y\u1d0fM\u1d00\u0274" - ], - "profiles": [], - "name": "\ue020C\u1d00\u029f\u029fM\u1d07Y\u1d0fM\u1d00\u0274", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-05 13:35:37", - "registerOn": 1670148849.3898847, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148849.3898857, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149757.3735774, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670150044.3655012, - "lastIP": "a\u007fk~~`ca`banc", - "deviceUUID": "859cb4a8f69dc428193a001988bee80274f99083" - }, - "pb-IF4nA28F": { - "display_string": [ - "\ue063pilot12856" - ], - "profiles": [], - "name": "\ue063pilot12856", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-17 15:18:58", - "registerOn": 1670148857.465405, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148857.4654057, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321820.2065475, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670330630.6377957, - "lastIP": "b}k~}kfajd{va\u007fo", - "deviceUUID": "2352589e937f9e709ea90b2f15835b7de437977b", - "cMsgCount": 0, - "lastMsgTime": 1670327392.9711547, - "lastMsg": "guts..? ", - "cSameMsg": 0 - }, - "pb-IF4hU3APAw==": { - "display_string": [ - "\ue063Sanjayduff", - "\ue030Android59973915" - ], - "profiles": [], - "name": "\ue063Sanjayduff", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 18:53:27", - "registerOn": 1670148926.3606832, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148926.3606834, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261470.6136928, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261470.613694, - "lastIP": "awk~wo~~liaj`|", - "deviceUUID": "0ce64daefb611efe9aa2d3bebdb9cb31adafd817" - }, - "pb-IF4yVVA8Bg==": { - "display_string": [ - "\ue063BABURAOAPT" - ], - "profiles": [], - "name": "\ue020BABURAOAPTE54", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-13 20:09:06", - "registerOn": 1670148927.3255122, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148927.325513, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261719.5663834, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261719.5663843, - "lastIP": "a\u007fk~wi~vk~}md", - "deviceUUID": "0df8d6d52f5c1ed85192c8a86fcce9d300b0c49f", - "cMsgCount": 0, - "lastMsgTime": 1670148975.0088964, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4JU084LA==": { - "display_string": [ - "\ue020CubicResurgence66" - ], - "profiles": [], - "name": "\ue020CubicResurgence66", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 22:30:15", - "registerOn": 1670149010.6385727, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149010.6385736, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149010.638581, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149010.6385818, - "lastIP": "azo~{n~~ifaka", - "deviceUUID": "32551006c0eb9d9254fe85e21bef89735c6e5f82" - }, - "pb-IF4VVFoYCA==": { - "display_string": [ - "\ue020bunnyASSAULTmodo", - "\ue063Irreveren3", - "\ue030Android57905756" - ], - "profiles": [], - "name": "\ue063Irreveren3", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-02 21:42:27", - "registerOn": 1670149025.711014, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149025.7110152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161870.98381, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161870.9838111, - "lastIP": "a}j~~ocak`aje}", - "deviceUUID": "fd2b4ff4b3b6523447bc028baa3af1514643d995" - }, - "pb-IF4VU0IZCg==": { - "display_string": [ - "\ue030Android63426698" - ], - "profiles": [], - "name": "\ue030Android63426698", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-20 11:21:28", - "registerOn": 1670149028.7052379, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149028.7052383, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670303405.1487284, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670303651.1265604, - "lastIP": "axi~{`~wk~}hd", - "deviceUUID": "a8dee104bc98d4e5da127fba7b0b28718d63c79b" - }, - "pb-IF48VWESLA==": { - "display_string": [ - "\ue020GraveHour26" - ], - "profiles": [], - "name": "\ue020GraveHour26", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-13 16:01:33", - "registerOn": 1670149100.9892652, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149100.9892657, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332266.9236147, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670337078.0970056, - "lastIP": "azo~|n~}meane", - "deviceUUID": "f64794a1c3f9c219e8611115ebf51bdb86f9b4e5" - }, - "pb-IF4hVUccIQ==": { - "display_string": [ - "\ue020UnmarkedVeracity57", - "\ue020HealthfulLodgings47", - "\ue020BroaderReceptacle56", - "\ue020SpringExactness45", - "\ue020BOSSGAMINGAssumpti26" - ], - "profiles": [], - "name": "\ue020BOSSGAMINGAssumpti26", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-05 19:06:21", - "registerOn": 1670149114.496494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149114.4964945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149114.4965034, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149114.496504, - "lastIP": "azo~|l~}k`ai`w", - "deviceUUID": "2944ef2190a1ac2e30b1cf57a75ae581e082409c" - }, - "pb-IF4SUmwlVA==": { - "display_string": [ - "\ue063UpbeatCeme" - ], - "profiles": [], - "name": "\ue063UpbeatCeme", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-11 11:51:44", - "registerOn": 1670149152.177973, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149152.1779735, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259418.8330328, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259418.833034, - "lastIP": "dvvcyvd|vb|", - "deviceUUID": "660f1416ca6dd82572f08dade91ab42336b4b36d" - }, - "pb-IF4qU3pTMg==": { - "display_string": [ - "\ue063TokenMagic" - ], - "profiles": [], - "name": "\ue063TokenMagic", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-05 15:14:18", - "registerOn": 1670149208.4023619, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149208.4023623, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317788.1099644, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670320351.6857853, - "lastIP": "dvvcxvdyvbzm", - "deviceUUID": "15d3f2ff88cfbf69112768f8133e83dc3d01eea4", - "cMsgCount": 2, - "lastMsgTime": 1670317964.504581, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5RU3UzJA==": { - "display_string": [ - "\ue063RabidFight" - ], - "profiles": [], - "name": "\ue063RabidFight", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-06 20:34:27", - "registerOn": 1670149285.657756, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149285.6577566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319665.9753315, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670336252.578059, - "lastIP": "a~k~~acaohaid{", - "deviceUUID": "c71ca0513260d96b6a7b4cd571d6cbab3d9e7223", - "cMsgCount": 0, - "lastMsgTime": 1670319708.8266387, - "lastMsg": "popat come in bcs epic", - "cSameMsg": 0 - }, - "pb-IF5VU044KA==": { - "display_string": [ - "\ue020Rajuphirherapheri" - ], - "profiles": [], - "name": "\ue020Rajuphirherapheri", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-10 13:46:51", - "registerOn": 1670149344.1516058, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149344.1516068, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149677.0737646, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670153776.199077, - "lastIP": "azj~zo~{a~~hc", - "deviceUUID": "508ba80ac90e87c4783035d8bb719a34c48cb02f" - }, - "pb-IF40U04tFw==": { - "display_string": [ - "\ue020NovelTrousers35", - "\ue030Android52256550" - ], - "profiles": [], - "name": "\ue020NovelTrousers35", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 21:10:12", - "registerOn": 1670149382.1885855, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149382.1885862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331701.3129885, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670331701.3129897, - "lastIP": "a\u007fn~}iaaiixve", - "deviceUUID": "71147c7cf7223cf56690d8b3d18f3b979fe7a6b3" - }, - "pb-IF4pV3McIg==": { - "display_string": [ - "\ue063patelbhai7", - "\ue030Android29345487" - ], - "profiles": [], - "name": "\ue063patelbhai7", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-22 14:00:21", - "registerOn": 1670149453.6816685, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149453.6816692, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149453.6816785, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149453.68168, - "lastIP": "azj~zo~}haaj", - "deviceUUID": "961f3ff9d0df102310423e005e65a85421d4b148" - }, - "pb-IF4RVRk7EQ==": { - "display_string": [ - "\ue063El", - "\ue063OO" - ], - "profiles": [], - "name": "\ue063OO", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-04 09:18:56", - "registerOn": 1670149481.7085655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149481.708566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269318.2580304, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670271779.8814206, - "lastIP": "dxvazvc}va{o", - "deviceUUID": "4d62a7d22142ab20057d1256906d24f12956c7e8" - }, - "pb-IF5SVBJTIQ==": { - "display_string": [ - "\ue020vj1481", - "\ue030Android58229085" - ], - "profiles": [], - "name": "\ue020vj1481", - "isBan": false, - "isMuted": false, - "accountAge": "2019-06-10 15:34:10", - "registerOn": 1670149491.7178295, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149491.71783, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149491.7178385, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670161519.781035, - "lastIP": "a\u007fk~vj~{k~}ji", - "deviceUUID": "8c9c14ecbc3845c440fd41f6c3ca7e8f7ead92d1", - "cMsgCount": 0, - "lastMsgTime": 1670158007.9228492, - "lastMsg": "jab tu bcs fun ke baare mein soch rha tha", - "cSameMsg": 0 - }, - "pb-IF4lU20cEw==": { - "display_string": [ - "\ue020mariyafelix3126" - ], - "profiles": [], - "name": "\ue020mariyafelix3126", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-17 02:06:35", - "registerOn": 1670149493.72497, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149493.7249706, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244849.4973934, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670245023.1082377, - "lastIP": "azo~zi~~ahanh", - "deviceUUID": "051471302564de0ea391b0b0461b11977b4b994d" - }, - "pb-JiNJARBbVUVBXVlAEUVQUVdLGUBWQVdK": { - "display_string": [ - "\ue063NoName47962f" - ], - "profiles": [], - "name": "\ue063NoName47962f", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-01 13:35:17", - "registerOn": 1670149518.8348966, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149518.834897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312394.9204397, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670313178.309953, - "lastIP": "a\u007fk~~n`ajc|vaz", - "deviceUUID": "b70356fabf38aa4d32dd038f7595916c2d858448" - }, - "pb-IF4nUnhYBw==": { - "display_string": [ - "\ue063BarbarianC" - ], - "profiles": [], - "name": "\ue063BarbarianC", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-02 19:05:21", - "registerOn": 1670149536.866891, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149536.8668916, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149536.8669004, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670149583.7270267, - "lastIP": "a\u007fj~~aaaiezvb\u007fn", - "deviceUUID": "237cc9cae7ae6ff540e88866779eb699b17c3eb0" - }, - "pb-IF5UU3VTAQ==": { - "display_string": [ - "\ue020CunningMix12" - ], - "profiles": [], - "name": "\ue020CunningMix12", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 22:00:52", - "registerOn": 1670149549.0570552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149549.0570557, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149549.0570633, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149549.0570643, - "lastIP": "a~j~~kdaigzvaxa", - "deviceUUID": "e216ccc20240957b64433dac970672348eadca0f" - }, - "pb-IF5WU04nBg==": { - "display_string": [ - "\ue020NeedyMaple33" - ], - "profiles": [], - "name": "\ue020NeedyMaple33", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 19:51:02", - "registerOn": 1670149549.8872194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149549.88722, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149549.8872266, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149549.8872273, - "lastIP": "azo~|j~~iaaii|", - "deviceUUID": "bd92657fcd0edb8a9e29e5d09f1204352e43b818" - }, - "pb-IF4vU2sIMg==": { - "display_string": [ - "\ue063atharv1326" - ], - "profiles": [], - "name": "\ue063atharv1326", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-08 13:13:29", - "registerOn": 1670149600.1114752, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149600.1114757, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169352.5728133, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169352.572815, - "lastIP": "awj~y`~~ndaia{", - "deviceUUID": "95196a7eca0603a063174f07a4b149edd34057d0" - }, - "pb-IF4vVUNfEA==": { - "display_string": [ - "\ue020sagar88822" - ], - "profiles": [], - "name": "\ue020sagar88822", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-01 00:12:49", - "registerOn": 1670149616.1428947, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149616.1428955, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225500.8171113, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225500.8171127, - "lastIP": "azj~zo~}ibaiav", - "deviceUUID": "07139568af72471f8aaccca0ed1fd85207f28fa7", - "cMsgCount": 1, - "lastMsgTime": 1670227249.4758058, - "lastMsg": "\u0938\u093e\u0917\u0930\u092d\u093e\u090a \u0938\u092c\u0915\u0940 \u092c\u091c\u093e\u092f\u0947\u0902\u0917\u093e\ud83e\ude94\u2694\ufe0f\u2694\ufe0f", - "cSameMsg": 0 - }, - "pb-IF5dU05SIQ==": { - "display_string": [ - "\ue020Thambi765" - ], - "profiles": [], - "name": "\ue020Thambi765", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 11:45:30", - "registerOn": 1670149673.4017322, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149673.4017327, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149673.4017403, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149673.4017413, - "lastIP": "a~h~}jdaacali", - "deviceUUID": "f205459665b218056a8340aed8d49fc6cfb79493" - }, - "pb-IF4rUmcIUg==": { - "display_string": [ - "\ue030Android55446423" - ], - "profiles": [], - "name": "\ue030Android55446423", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-19 15:46:39", - "registerOn": 1670149729.5518153, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149729.551816, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670320521.510467, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670321881.4258666, - "lastIP": "axi~zi~}haaiex", - "deviceUUID": "02caf3fe329a1ffa3212e2576f20b2367e04e119", - "cMsgCount": 0, - "lastMsgTime": 1670321833.0257177, - "lastMsg": "darkness bena lu*** ka", - "cSameMsg": 0 - }, - "pb-IF4DVVQMVQ==": { - "display_string": [ - "\ue020OssifiedLegitimacy9", - "\ue030Android63815640", - "\ue030Android63837483" - ], - "profiles": [], - "name": "\ue020OssifiedLegitimacy9", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-02 08:18:06", - "registerOn": 1670149769.750018, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149769.7500184, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149769.7500255, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149769.7500265, - "lastIP": "bxveyvh\u007fvawm", - "deviceUUID": "59650fa38e210c7263839a518c6eb4e31f258f29" - }, - "pb-IF4wU0soJg==": { - "display_string": [ - "\ue030Android63786120" - ], - "profiles": [], - "name": "\ue030Android63786120", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 23:13:08", - "registerOn": 1670149771.7401085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149771.740109, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149771.7401178, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149771.7401187, - "lastIP": "axi~zi~~l`aiay", - "deviceUUID": "ff36c74dab8b1e62907104c8c6194251e6c349c7" - }, - "pb-IF5SU1E6Jg==": { - "display_string": [ - "\ue063DeceitfulL" - ], - "profiles": [], - "name": "\ue063Pankiii25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 16:16:40", - "registerOn": 1670149883.106087, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149883.1060874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149883.1060953, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670149883.1060963, - "lastIP": "b}k~~`faiivvd~", - "deviceUUID": "06a7356ea9a6ae1411430b7031fa5f3cd5ccb112" - }, - "pb-IF4rU04xBA==": { - "display_string": [ - "\ue020ExceptionalPrince25" - ], - "profiles": [], - "name": "\ue020ExceptionalPrince25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 13:55:34", - "registerOn": 1670149894.114902, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149894.1149023, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149894.1149125, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149894.1149135, - "lastIP": "axm~~ofaaeajd", - "deviceUUID": "a2159e0a545bcdb646bf96c3e1391d3053d30405" - }, - "pb-IF4AVUZaAg==": { - "display_string": [ - "\ue020OutSwarm27" - ], - "profiles": [], - "name": "\ue020OutSwarm27", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-17 21:59:19", - "registerOn": 1670149910.3621597, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149910.3621602, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149910.362359, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149910.36236, - "lastIP": "azo~|o~}jbaib}", - "deviceUUID": "\u0015T\u000b\u0002QGU[\u0007P\u0015P\\XS\u0011T\\TWDSUSUA", - "cMsgCount": 0, - "lastMsgTime": 1670150014.144953, - "lastMsg": "/codes", - "cSameMsg": 0 - }, - "pb-IF5dV3FfCw==": { - "display_string": [ - "\ue020ProsaicLunatic1799" - ], - "profiles": [], - "name": "\ue020ProsaicLunatic1799", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-29 11:41:55", - "registerOn": 1670149925.2293956, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149925.229396, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149925.2294042, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149925.229405, - "lastIP": "a~o~vo~~aeaja}", - "deviceUUID": "128fbe725a758d43f0fd20edba43c5f0dbbb4b46" - }, - "pb-IF4XU1BaKQ==": { - "display_string": [ - "\ue063ronxbone" - ], - "profiles": [], - "name": "\ue063ronxbone", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 10:34:24", - "registerOn": 1670149989.4804418, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149989.480442, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322379.211579, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670322409.3282912, - "lastIP": "a\u007fk~~liakgaib}", - "deviceUUID": "13fdf09986dc706cf2965004465a6aa644b00943" - }, - "pb-IF43VXkyKg==": { - "display_string": [ - "\ue020RagingGem36106" - ], - "profiles": [], - "name": "\ue020RagingGem36106", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-04 21:14:39", - "registerOn": 1670150016.914027, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150016.9140275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150016.9140346, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150016.9140356, - "lastIP": "d~vb~n~}hbaib", - "deviceUUID": "1395a98c9376933c9e419225719d506ce619c62a" - }, - "pb-IF4pU0sRFw==": { - "display_string": [ - "\ue063AiranChanc", - "\ue030Android45464897" - ], - "profiles": [], - "name": "\ue063AiranChanc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 11:48:02", - "registerOn": 1670150045.6772332, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150045.677234, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150045.677242, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670151230.457125, - "lastIP": "axi~xn~~hda`a", - "deviceUUID": "d0840a2da17b6bca167082ced78a6b0bb8506b3e" - }, - "pb-IF4BU0wpDw==": { - "display_string": [ - "\ue020harshadkarale007", - "\ue020SulkyPlant124", - "\ue020harshad69", - "\ue030Android63857889" - ], - "profiles": [], - "name": "\ue020harshadkarale007", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-13 11:41:54", - "registerOn": 1670150077.8061469, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150077.8061473, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329658.021688, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329658.0216897, - "lastIP": "azo~|k~}mcaia~", - "deviceUUID": "0cb6464fa2cf2cab848120323a95572fbaa12010", - "cMsgCount": 0, - "lastMsgTime": 1670167989.3255508, - "lastMsg": "\ud83e\udd23", - "cSameMsg": 0 - }, - "pb-IF4oVHAYLA==": { - "display_string": [ - "\ue020rolanjr231", - "\ue063norland231", - "\ue063WaxyFlag34", - "\ue030Android63838425" - ], - "profiles": [], - "name": "\ue063norland231", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-23 07:10:02", - "registerOn": 1670150114.9199865, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150114.919987, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150114.9199955, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150114.9199965, - "lastIP": "a|h~~heaic{vev", - "deviceUUID": "f2dead3c4aacdb7c931927e64a9c37aa34022ce2" - }, - "pb-IF4vU0skLw==": { - "display_string": [ - "\ue020MainstreamContrast42" - ], - "profiles": [], - "name": "\ue020MainstreamContrast42", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 11:29:11", - "registerOn": 1670150132.0845466, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150132.084547, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150132.084554, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150132.0845547, - "lastIP": "azo~{a~~``ala", - "deviceUUID": "c9df545bca4a73a96629ad06fbdfa381808ec014" - }, - "pb-IF4LVVQfBA==": { - "display_string": [ - "\ue030Android53090241" - ], - "profiles": [], - "name": "\ue030Android53090241", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-04 15:05:04", - "registerOn": 1670150149.3393252, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150149.3393257, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150149.3393326, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150149.3393335, - "lastIP": "a~l~}mdaa~~m`", - "deviceUUID": "\u0015WX" - }, - "pb-IF49U0MCCA==": { - "display_string": [ - "\ue063LevelAccep" - ], - "profiles": [], - "name": "\ue063LevelAccep", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 17:54:58", - "registerOn": 1670150282.596354, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150282.5963545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332206.6791966, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332206.6791983, - "lastIP": "a\u007fk~}n~{a~|h", - "deviceUUID": "dce6773e0df5274089fc68289e928e5eb28a6464", - "cMsgCount": 0, - "lastMsgTime": 1670332428.5313196, - "lastMsg": "come in soon", - "cSameMsg": 0 - }, - "pb-IF5dU0YxNA==": { - "display_string": [ - "\ue020FurryArchon2625" - ], - "profiles": [], - "name": "\ue020FurryArchon2625", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 13:45:52", - "registerOn": 1670150292.5157666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150292.515767, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150292.5157752, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150292.5157762, - "lastIP": "b}k~~`ea`eang", - "deviceUUID": "763900e1025b41e755202eff96a775dd0f4939fe" - }, - "pb-IF4GUkYzDA==": { - "display_string": [ - "\ue020TypicalColonel69394" - ], - "profiles": [], - "name": "\ue020TypicalColonel69394", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-03 21:01:08", - "registerOn": 1670150432.0940392, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150432.09404, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317694.7742174, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670317774.05167, - "lastIP": "dvvczvavj~x`", - "deviceUUID": "f889cf812fc55730491765df446815e2f1e28dc0" - }, - "pb-IF4QU0gCJg==": { - "display_string": [ - "\ue020MegumiBakuretsu10" - ], - "profiles": [], - "name": "\ue020MegumiBakuretsu10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 13:20:59", - "registerOn": 1670150487.3369517, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150487.3369527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150487.3369608, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150487.3369617, - "lastIP": "b}k~~`hajezvhv", - "deviceUUID": "\u0015\u0007[UQ\u0010\u0002XPR\u0015TY" - }, - "pb-JiNJARFdXUtEXF1DEUVWUVRCE0VcRFJE": { - "display_string": [ - "\ue063Tenacious8" - ], - "profiles": [], - "name": "\ue063Tenacious8", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-11 09:56:08", - "registerOn": 1670150492.2616467, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150492.2616475, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150492.2616563, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150492.261657, - "lastIP": "dvvc}vavk~}hh", - "deviceUUID": "4d8a76b9fdf07e8b1fd462ea87bb130dc3be8cd5" - }, - "pb-IF4dU04ODg==": { - "display_string": [ - "\ue063WishfulHil" - ], - "profiles": [], - "name": "\ue063WishfulHil", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 10:55:17", - "registerOn": 1670150522.681502, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150522.681503, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216454.3141272, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670216454.3141284, - "lastIP": "azo~{i~~ogai`z", - "deviceUUID": "fb1c0f5578e1c51b6bb515cad6ad7dba76f630ff" - }, - "pb-IF5WU0RTLA==": { - "display_string": [ - "\ue030Android63351569" - ], - "profiles": [], - "name": "\ue030Android63351569", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-16 20:41:57", - "registerOn": 1670150533.4063275, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150533.4063282, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320506.1861095, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320506.186111, - "lastIP": "dvvc{va}j~|i", - "deviceUUID": "\u0015XUW\u0002GRU\u0005W@VTW\u0004\u0015V\\YXMX_WWBT" - }, - "pb-IF4RU049PA==": { - "display_string": [ - "\ue020MoonlitLink53" - ], - "profiles": [], - "name": "\ue020MoonlitLink53", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 13:25:04", - "registerOn": 1670150575.5474854, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150575.547486, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150575.5474932, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150575.547494, - "lastIP": "a\u007fn~~aeai`aib}", - "deviceUUID": "5a286eed79868133ec6e1dabae9c94bfc3b8d00f" - }, - "pb-IF5SVFdSFQ==": { - "display_string": [ - "\ue020GAMER123ABHAY", - "\ue030Android62205508", - "\ue030PC346437" - ], - "profiles": [], - "name": "\ue030PC346437", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-22 07:37:31", - "registerOn": 1670150597.617316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150597.6173167, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246216.2664175, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246216.2664187, - "lastIP": "a\u007fk~vl~~kiajb", - "deviceUUID": "47cddabeef7d4c1880fb0eb137dadca8aaf7f8f5" - }, - "pb-IF4vUxkKDg==": { - "display_string": [ - "\ue020TremendousCreek8" - ], - "profiles": [], - "name": "\ue020TremendousCreek8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-30 19:03:34", - "registerOn": 1670150727.111291, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150727.1112914, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670327073.3553312, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670327226.4994414, - "lastIP": "b}k~}khaj`zvavn", - "deviceUUID": "93959a9d304362003c85e791a6956c14d16159fe", - "cMsgCount": 0, - "lastMsgTime": 1670327427.4103475, - "lastMsg": "blue m aja mafia", - "cSameMsg": 0 - }, - "pb-IF4wUlIYCg==": { - "display_string": [ - "\ue063NearCandy4" - ], - "profiles": [], - "name": "\ue063NearCandy4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-25 16:12:16", - "registerOn": 1670150917.6800628, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150917.6800632, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670321608.1076005, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670333438.04012, - "lastIP": "a}j~~oaaihaj`z", - "deviceUUID": "ee2f0cdc1dd05777262b0fe90bb2e4b661f79512", - "cMsgCount": 0, - "lastMsgTime": 1670334958.3771904, - "lastMsg": "sorry Beowulf miss hogaya", - "cSameMsg": 0 - }, - "pb-IF5VU0cyFg==": { - "display_string": [ - "\ue020sOFF1C1AL", - "\ue030Android63570559", - "\ue030Android63570736", - "\ue030Android63570544", - "\ue030Android63570719" - ], - "profiles": [], - "name": "\ue020sOFF1C1AL", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 15:43:32", - "registerOn": 1670151270.9283757, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151270.9283764, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670151270.9283845, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152274.057065, - "lastIP": "a\u007fn~}iaajc{vb\u007f`", - "deviceUUID": "c19fef9185c32abd8163880d476ab851bc8f9ff5", - "cMsgCount": 1, - "lastMsgTime": 1670151294.296285, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5RUkgTPw==": { - "display_string": [ - "\ue063BeamingLem" - ], - "profiles": [], - "name": "\ue063BeamingLem", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-05 18:43:08", - "registerOn": 1670151279.9852002, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151279.9852006, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670151279.985209, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670151279.98521, - "lastIP": "a~h~~khajbaib\u007f", - "deviceUUID": "8ebf6da6b2bc9c6234d4df41befcd6e560e5f5a1" - }, - "pb-IF4SU04JNg==": { - "display_string": [ - "\ue020BRITTODON03" - ], - "profiles": [], - "name": "\ue020BRITTODON03", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 13:56:41", - "registerOn": 1670151317.1930032, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151317.193004, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670151317.1930118, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670153033.64259, - "lastIP": "azo~zi~~hhaid\u007f", - "deviceUUID": "2804acc9c35941b7e55e2fd4c6ac2a0d9532853d" - }, - "pb-IF4yU05aKg==": { - "display_string": [ - "\ue020PRASADGOLE007" - ], - "profiles": [], - "name": "\ue020PRASADGOLE007", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 10:01:41", - "registerOn": 1670151344.1539695, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151344.1539702, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313343.8954515, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313343.8954527, - "lastIP": "a\u007fn~~aea`~w`", - "deviceUUID": "13c6f9c19f7e080eef7c76a3b615b11707f8a2fa" - }, - "pb-IF4AU2czAQ==": { - "display_string": [ - "\ue020FamedHair40" - ], - "profiles": [], - "name": "\ue020FamedHair40", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-23 12:09:17", - "registerOn": 1670151374.293031, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151374.2930315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332350.2196267, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332350.219628, - "lastIP": "dxva~vb\u007f`~zo", - "deviceUUID": "f75c1af88dac0c6daef9c9204c6ed802be3b11e5" - }, - "pb-IF4PU0YSXA==": { - "display_string": [ - "\ue020CreepySamurai688" - ], - "profiles": [], - "name": "\ue020CreepySamurai688", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-12 12:31:11", - "registerOn": 1670151393.3493638, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151393.3493645, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242535.6785038, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242535.6785052, - "lastIP": "aakhaid\u007fvb~n", - "deviceUUID": "3c906c1a32f9ef10ec34f3359781d92fcd64921b" - }, - "pb-JiNJARFZUEFBXlpFGERQUFdDFkNXRFFF": { - "display_string": [ - "\ue063Godfther1" - ], - "profiles": [], - "name": "\ue063Godfther1", - "isBan": false, - "isMuted": false, - "accountAge": "2017-02-14 19:12:04", - "registerOn": 1670151482.708698, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151482.7086985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670151482.708706, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670152004.118567, - "lastIP": "a|j~~mdaig}vdy", - "deviceUUID": "6be40e4eb88a19753228a979515384ba39b3ce12" - }, - "pb-IF49VFQlPA==": { - "display_string": [ - "\ue020PAMU628", - "\ue030PC607749", - "\ue030PC608632", - "\ue030PC688281", - "\ue030PC306656" - ], - "profiles": [], - "name": "\ue030PC688281", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-23 14:22:54", - "registerOn": 1670151522.747347, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151522.7473476, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315495.7146943, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670331534.4832606, - "lastIP": "azo~zh~vvavo", - "deviceUUID": "b36eb11407361b24713fcb7a28a43226365651b8", - "cMsgCount": 1, - "lastMsgTime": 1670329014.4802153, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4OU0wZAg==": { - "display_string": [ - "\ue063Technospar" - ], - "profiles": [], - "name": "\ue063Technospar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 17:00:04", - "registerOn": 1670151635.1701655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151635.170166, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250143.176181, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250143.1761823, - "lastIP": "a\u007fk~~oiaiixva{o", - "deviceUUID": "fbc216773e63575c0d243392a7b1dfc4b07824c7" - }, - "pb-IF4sU0s_XQ==": { - "display_string": [ - "\ue020InsincereCase61" - ], - "profiles": [], - "name": "\ue020InsincereCase61", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 09:22:39", - "registerOn": 1670151776.62861, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151776.6286104, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670289904.6605852, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670290556.8770628, - "lastIP": "a~l~~h~{vd{", - "deviceUUID": "4b8e3697575ef3648363d6d73d9c02a81ab64084" - }, - "pb-IF4tU08YEA==": { - "display_string": [ - "\ue063Worthwhil4" - ], - "profiles": [], - "name": "\ue063Worthwhil4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 22:52:36", - "registerOn": 1670151848.1438696, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151848.14387, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670151848.1438785, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670151848.143892, - "lastIP": "a\u007fk~~oaaj`\u007fvaxo", - "deviceUUID": "a97bcffecd47672c4fd7a05130c19be7d2729277" - }, - "pb-IF4RUlAMNg==": { - "display_string": [ - "\ue020GnarlyJackalope56572" - ], - "profiles": [], - "name": "\ue020GnarlyJackalope56572", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-17 12:23:58", - "registerOn": 1670151949.246008, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151949.2460084, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670151949.2460163, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670151949.2460172, - "lastIP": "azo~{a~}jeaid\u007f", - "deviceUUID": "\u0015Y\u000e\u0005\u0005A\u0004ZQ\u0005\u0015Y\u000eTVBU\\SSFYUSVGS" - }, - "pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE": { - "display_string": [ - "\ue063HeySmooth2", - "\ue043Mr.Smoothy" - ], - "profiles": [], - "name": "\ue063HeySmooth2", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-13 17:21:16", - "registerOn": 1670151983.5855172, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151983.5855176, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315410.38007, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670328989.9339614, - "lastIP": "dvvd|vazm~~hf", - "deviceUUID": "014b00976f2c8cd83b1cb0f107296632148161af", - "cMsgCount": 0, - "lastMsgTime": 1670329742.7207956, - "lastMsg": "/kick 212", - "cSameMsg": 0 - }, - "pb-IF4VU3QkFQ==": { - "display_string": [ - "\ue063Downstrea3" - ], - "profiles": [], - "name": "\ue063Downstrea3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-13 16:08:57", - "registerOn": 1670152024.6097336, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152024.6097343, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152024.6097438, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152024.6097448, - "lastIP": "a~i~vj~~igaih|", - "deviceUUID": "8271060b4901c2c62f21de6e548f6b5e273e1d48" - }, - "pb-IF4HU00OIA==": { - "display_string": [ - "\ue063Ayushayy" - ], - "profiles": [], - "name": "\ue063Ayushayy", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 22:35:36", - "registerOn": 1670152203.0654047, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152203.0654051, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253458.732168, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253458.7321694, - "lastIP": "a\u007fn~}i`ajczvb~`", - "deviceUUID": "e7207cfc292c54d4dd6faa3fc42df0882dc792c3" - }, - "pb-IF4qUkQ9CA==": { - "display_string": [ - "\ue020LORDHanzoStar" - ], - "profiles": [], - "name": "\ue020LORDHanzoStar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-28 15:20:31", - "registerOn": 1670152229.5075467, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152229.5075471, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325172.6858616, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325172.685863, - "lastIP": "a\u007fn~~aeakgan", - "deviceUUID": "919cfd9dfd64b8ad2ccaeaaeeb246f9cd24ffa72" - }, - "pb-IF4GD2Yd": { - "display_string": [ - "\ue063POWERXDHRU", - "\ue030Android49476815" - ], - "profiles": [], - "name": "\ue020POWERXDHRUV", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-02 22:20:11", - "registerOn": 1670152285.4197857, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152285.4197862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253631.4319293, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670262912.3258195, - "lastIP": "a\u007fn~}ifaje~vawi", - "deviceUUID": "c0577fd30ed3cc51f1328a71bfaeea73e44a7be8" - }, - "pb-IF4SU00JHw==": { - "display_string": [ - "\ue020Jayrajsinh1202" - ], - "profiles": [], - "name": "\ue020Jayrajsinh1202", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 22:56:58", - "registerOn": 1670152473.0684376, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152473.0684378, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307799.847084, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670308989.672402, - "lastIP": "azo~|j~}laaof", - "deviceUUID": "d2f24056af44a204e555084164760cbd757f8be1", - "cMsgCount": 0, - "lastMsgTime": 1670308000.4286244, - "lastMsg": "l", - "cSameMsg": 0 - }, - "pb-LV4FBEEKV0ZAVVwVGBVTBlxBFQ==": { - "display_string": [ - "\ue063LyingSword", - "\ue030Android12884065", - "\ue030PC103199", - "\ue030Android9847306", - "\ue030Android11501267" - ], - "profiles": [], - "name": "\ue063LyingSword", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-25 20:00:46", - "registerOn": 1670152520.1950645, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152520.195065, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216924.9135578, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670218300.3936977, - "lastIP": "a~o~vo~}hcami", - "deviceUUID": "07b8eee8772d5635ae26f7e42f3cb9ca44e051c8" - }, - "pb-JiNJARBfUUZBXlZFFUBYXVZBGEJYQ1BK": { - "display_string": [ - "\ue063mohitdevna", - "\ue030Android9502778" - ], - "profiles": [], - "name": "\ue063mohitdevna", - "isBan": false, - "isMuted": false, - "accountAge": "2016-09-25 21:04:40", - "registerOn": 1670152604.4520462, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152604.4520466, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152604.4520538, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152604.4520547, - "lastIP": "dvvcyvb|l~}ja", - "deviceUUID": "969bf094ecb454e163bec89a58426fd42821d07c" - }, - "pb-IF4CDlAZ": { - "display_string": [ - "\ue020bhattiarman786", - "\ue030Android20001553" - ], - "profiles": [], - "name": "\ue020bhattiarman786", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-02 18:27:07", - "registerOn": 1670152618.5758681, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152618.5758686, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152618.575878, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152618.575908, - "lastIP": "azo~|j~~o~z`", - "deviceUUID": "d8201ea90a1be9ff084631f3cfca964012a2b11b" - }, - "pb-JiNJARFTVEVHXFZFE09ZVFNGE0ZXRlRA": { - "display_string": [ - "\ue020CherryBruiser84898" - ], - "profiles": [], - "name": "\ue020CherryBruiser84898", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-30 12:37:08", - "registerOn": 1670152738.9171174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152738.9171178, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152738.9171264, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152738.9171274, - "lastIP": "a\u007fn~}i`aii|vazk", - "deviceUUID": "4a5672c499e5721358502cb69068eeb5aeb3823e", - "cMsgCount": 0, - "lastMsgTime": 1670154085.4756415, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4rVxMNCg==": { - "display_string": [ - "\ue020kvgahlaut2002" - ], - "profiles": [], - "name": "\ue020kvgahlaut2002", - "isBan": false, - "isMuted": false, - "accountAge": "2018-07-29 23:19:31", - "registerOn": 1670152859.3323731, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152859.3323739, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152859.3323812, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152859.332382, - "lastIP": "a}j~~naambakg", - "deviceUUID": "7e1bfc59a3c1ed6c5bd141cfa2174e6bda7116d4" - }, - "pb-IF4dU3ISFw==": { - "display_string": [ - "\ue030Android62533927" - ], - "profiles": [], - "name": "\ue030Android62533927", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 10:49:18", - "registerOn": 1670152895.4631698, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152895.4631703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152895.4631784, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152895.4631796, - "lastIP": "azo~zi~~nbaog", - "deviceUUID": "b05d9a02d64b7187b45d92f469e0dac940bcb8ea" - }, - "pb-JiNJVxFfUktFXltAEU5UUVVLGERXRVJG": { - "display_string": [ - "\ue020balamurugan1232" - ], - "profiles": [], - "name": "\ue020balamurugan1232", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-10 22:19:31", - "registerOn": 1670152908.5611398, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152908.5611403, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152908.5611484, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152908.5611494, - "lastIP": "azo~zi~~`eaid~", - "deviceUUID": "813cabe59525ededf26ab1d2c95abcc6ca788fe1" - }, - "pb-IF4PU0lcNA==": { - "display_string": [ - "\ue063ameno" - ], - "profiles": [], - "name": "\ue063ameno", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-26 01:58:01", - "registerOn": 1670152926.5370183, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152926.5370193, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152926.5370252, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152926.5370264, - "lastIP": "dvvcyvawk~~jh", - "deviceUUID": "e1e1598f3d07c22e54ab8b8261f5040dd0fa1a64" - }, - "pb-IF4PU08bDw==": { - "display_string": [ - "\ue063Existenti7" - ], - "profiles": [], - "name": "\ue063Existenti7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 16:51:05", - "registerOn": 1670152992.8104439, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152992.810444, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152992.810451, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152992.8104522, - "lastIP": "a~i~vj~}h~~o`", - "deviceUUID": "587e98f49720679f18aa9e0c6871f1926e775d57" - }, - "pb-IF4PU0laCQ==": { - "display_string": [ - "\ue063LegEndGoga" - ], - "profiles": [], - "name": "\ue020LegEndGogari", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 14:07:52", - "registerOn": 1670153010.835215, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153010.8352156, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260203.0652401, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670260212.1126184, - "lastIP": "a\u007fk~}jfaj`yvb~k", - "deviceUUID": "fec2ed56121c18274df688b838280fade9c0064c" - }, - "pb-IF4vUnhcMw==": { - "display_string": [ - "\ue030Android57199331" - ], - "profiles": [], - "name": "\ue030Android57199331", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-04 07:38:41", - "registerOn": 1670153037.0050778, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153037.0050783, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153037.0050874, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153037.0050883, - "lastIP": "azo~zi~~oiaje\u007f", - "deviceUUID": "b80c9d6be21d819a15adf66cdd703c0d08cc5be3" - }, - "pb-IF4TV3RbDA==": { - "display_string": [ - "\ue020HypnoticAttacker6749" - ], - "profiles": [], - "name": "\ue020HypnoticAttacker6749", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-22 23:04:35", - "registerOn": 1670153152.4128566, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153152.4128573, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318661.3171663, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670323871.580403, - "lastIP": "azo~{m~~k`alf", - "deviceUUID": "d9016bdfc3800e1b8fc043ebc0fc3a0d8f2b2ca2", - "cMsgCount": 0, - "lastMsgTime": 1670309674.9007397, - "lastMsg": "lol", - "cSameMsg": 0 - }, - "pb-IF4iUnQqHw==": { - "display_string": [ - "\ue063InbornSimp" - ], - "profiles": [], - "name": "\ue063InbornSimp", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-18 17:42:42", - "registerOn": 1670153169.4134543, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153169.4134548, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296292.3500986, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296292.3501, - "lastIP": "bxvc{va\u007fl~vi", - "deviceUUID": "6dbcc65f4bb4908ead86702a590c04d4b316248b" - }, - "pb-IF41VEMGKw==": { - "display_string": [ - "\ue020BakedCritter200" - ], - "profiles": [], - "name": "\ue020BakedCritter200", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-12 11:10:01", - "registerOn": 1670153338.006263, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153338.0062635, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215382.2109458, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215382.2109473, - "lastIP": "dvvcxvb~h~~ji", - "deviceUUID": "096e4bb2158b9909563621da2084c74f1ea05785" - }, - "pb-IF5XU1JSMA==": { - "display_string": [ - "\ue030Android63984084" - ], - "profiles": [], - "name": "\ue030Android63984084", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 16:59:13", - "registerOn": 1670153431.3419092, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153431.3419096, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153431.341918, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153431.341919, - "lastIP": "awm~{i~}hfaic~", - "deviceUUID": "8a1a293ebe34143c7402d3d3fa761c2c786cf05a" - }, - "pb-IF4pU0lYLg==": { - "display_string": [ - "\ue020MetalReporter57" - ], - "profiles": [], - "name": "\ue020MetalReporter57", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 14:49:22", - "registerOn": 1670153479.5258107, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153479.525811, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313455.472797, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313455.472798, - "lastIP": "dvvc{vb}a~~`d", - "deviceUUID": "c8da4033b497273eda820de725e077cd0286b29c" - }, - "pb-IF5cVBgkUw==": { - "display_string": [ - "\ue030Android36662481" - ], - "profiles": [], - "name": "\ue030Android36662481", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-17 17:17:28", - "registerOn": 1670153524.684184, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153524.6841846, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153524.6841922, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153524.6841931, - "lastIP": "dvva{`~}leaihv", - "deviceUUID": "f3e4d1c5524ffe09768f539800272965c26a84cf" - }, - "pb-IF4cU08zNg==": { - "display_string": [ - "\ue063hackkkkk13" - ], - "profiles": [], - "name": "\ue063hackkkkk13", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 17:19:07", - "registerOn": 1670153554.8892639, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153554.8892643, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153554.8892713, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153554.889272, - "lastIP": "a~k~~neaodaidy", - "deviceUUID": "7114c9505a120a1442526f84004de88ad869c65d" - }, - "pb-IF4NU0cpFw==": { - "display_string": [ - "\ue020ModalHandle23" - ], - "profiles": [], - "name": "\ue020ModalHandle23", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 13:00:02", - "registerOn": 1670153566.9289293, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153566.9289298, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670250937.2662785, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670250585.8197703, - "lastIP": "a\u007fk~xh~~lean", - "deviceUUID": "d3718c41e51cc0a68dc85d68ffc3c3a54d66550a", - "cMsgCount": 0, - "lastMsgTime": 1670252738.493353, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4TU0cRXQ==": { - "display_string": [ - "\ue020DauntingBasement23" - ], - "profiles": [], - "name": "\ue020DauntingBasement23", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 18:28:44", - "registerOn": 1670153583.8242934, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153583.824294, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153583.8243008, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153583.8243022, - "lastIP": "a\u007fn~~acajeaj`y", - "deviceUUID": "c498431cdbb8e6d74d447eba20bb191131e9f2a4" - }, - "pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF": { - "display_string": [ - "\ue020PoeticFire35261", - "\ue030Android10760074" - ], - "profiles": [], - "name": "\ue020PoeticFire35261", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-05 16:34:48", - "registerOn": 1670153597.8871176, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153597.8871183, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323384.8137136, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670329873.8173552, - "lastIP": "azo~{o~~jgaje}", - "deviceUUID": "fe0632180c6fdf0358ef662793570362f1792ca2", - "cMsgCount": 0, - "lastMsgTime": 1670254337.7456703, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH": { - "display_string": [ - "\ue063UKnowMeAJ", - "\ue030Android6156965", - "\ue030Android8450884", - "\ue030PC124724", - "\ue030Android16945336" - ], - "profiles": [], - "name": "\ue063UKnowMeAJ", - "isBan": false, - "isMuted": false, - "accountAge": "2016-08-23 22:53:02", - "registerOn": 1670153607.9341831, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153607.9341836, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153607.9341931, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153607.9341943, - "lastIP": "awj~{`~}kaaib~", - "deviceUUID": "0dabcb7a1112dfe28d7c91c8ba6834dcd0a32ff1", - "cMsgCount": 0, - "lastMsgTime": 1670155302.665023, - "lastMsg": "finally met someone i know glad for that", - "cSameMsg": 0 - }, - "pb-IF4UU2IIFg==": { - "display_string": [ - "\ue020ArunTamizha" - ], - "profiles": [], - "name": "\ue020ArunTamizha", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-05 21:09:13", - "registerOn": 1670153617.0610843, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153617.0610847, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321650.54618, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321650.5461817, - "lastIP": "azo~{a~}kbaie\u007f", - "deviceUUID": "c8c93e9246ede294de40a489382f9caff152bcca" - }, - "pb-IF4NU0ogMQ==": { - "display_string": [ - "\ue030Android63798929" - ], - "profiles": [], - "name": "\ue030Android63798929", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 00:06:46", - "registerOn": 1670153625.037714, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153625.0377147, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153625.0377228, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153625.037724, - "lastIP": "a\u007fn~~aeah~}lh", - "deviceUUID": "\u0015" - }, - "pb-IF4mU04zPA==": { - "display_string": [ - "\ue020Aryansingh7380" - ], - "profiles": [], - "name": "\ue020Aryansingh7380", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 15:36:00", - "registerOn": 1670153703.224928, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153703.2249286, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153703.2249346, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153703.2249358, - "lastIP": "bxvgakhald", - "deviceUUID": "1bcb6d4f5e67c688504e2ed69b13a6fedefb0b5c" - }, - "pb-IF4HU0sYJg==": { - "display_string": [ - "\ue020NerdyIntoxication61" - ], - "profiles": [], - "name": "\ue020NerdyIntoxication61", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 21:12:15", - "registerOn": 1670153751.4580996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153751.4581, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153751.4581082, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153751.4581094, - "lastIP": "d|vbzi~}jcaj`y", - "deviceUUID": "d41e1b56bbddcdb0889e605e38131b1e3136c616" - }, - "pb-IF41UlUmIw==": { - "display_string": [ - "\ue063Screechi15" - ], - "profiles": [], - "name": "\ue063Screechi15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-04 10:32:44", - "registerOn": 1670153940.0520194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153940.05202, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153940.0520291, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153940.0520303, - "lastIP": "a\u007fk~~iaaabajcz", - "deviceUUID": "4e3edf5ba1db2396c457d9a9e5fbfd6164cdcab0" - }, - "pb-IF5TVUJcLA==": { - "display_string": [ - "\ue020lazygamerwhatsoever" - ], - "profiles": [], - "name": "\ue020lazygamerwhatsoever", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-08 06:27:07", - "registerOn": 1670154007.2923071, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154007.2923076, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154007.2923143, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154007.2923155, - "lastIP": "b\u007fj~~o`aj`xvazi", - "deviceUUID": "19d50cda16f967f422a6754824923d499c3b92f9" - }, - "pb-IF4SU08FBw==": { - "display_string": [ - "\ue063FULLGAMING" - ], - "profiles": [], - "name": "\ue063FULLGAMING", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:18:06", - "registerOn": 1670154020.3763273, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154020.3763275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154020.3763359, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670154950.374515, - "lastIP": "azo~{l~~mbaoc", - "deviceUUID": "7d7048bd82d0b66c3650d55dacb0d18a7ac2e368" - }, - "pb-IF4OVGhcIw==": { - "display_string": [ - "\ue020NeedlessMonkey47856" - ], - "profiles": [], - "name": "\ue020NeedlessMonkey47856", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-23 13:52:24", - "registerOn": 1670154041.5401742, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154041.540175, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327813.64667, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327813.6466715, - "lastIP": "azo~zi~y`~~ob", - "deviceUUID": "a38d062dd017df250a5be569c32001f95e70f7eb" - }, - "pb-IF4lU2caEg==": { - "display_string": [ - "\ue063KiskiBaji" - ], - "profiles": [], - "name": "\ue063KiskiBaji", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-24 19:56:44", - "registerOn": 1670154092.6420085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154092.642009, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154092.6420195, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154092.6420205, - "lastIP": "axi~{`~vh~}kh", - "deviceUUID": "606f44af70f4bf1cabb722fc7d783d8f3a810887" - }, - "pb-IF4nUm84Kg==": { - "display_string": [ - "\ue030PC359091", - "\ue030Android48388543", - "\ue030Linux47759" - ], - "profiles": [], - "name": "\ue030Android48388543", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-24 17:46:42", - "registerOn": 1670154121.7974608, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154121.7974615, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154121.797471, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154121.7974722, - "lastIP": "dvvc{va|a~}ke", - "deviceUUID": "\u0015" - }, - "pb-IF4cV3AGLQ==": { - "display_string": [ - "\ue020PlasticWillOWisp7884", - "\ue030Android29929213" - ], - "profiles": [], - "name": "\ue020PlasticWillOWisp7884", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-07 16:48:17", - "registerOn": 1670154154.8782644, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154154.878265, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154154.8782737, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154154.878275, - "lastIP": "a\u007fn~~afai`ajc~", - "deviceUUID": "4d4035f1abf08f28bfba4a1424365e80892cc400" - }, - "pb-IF5dVWgRBg==": { - "display_string": [ - "\ue030Android47745010" - ], - "profiles": [], - "name": "\ue030Android47745010", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-17 15:16:22", - "registerOn": 1670154159.865419, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154159.8654191, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226291.5876706, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670240712.201623, - "lastIP": "dvvc}vaxi~~`b", - "deviceUUID": "0d43b8953ca13eaf5199996cd75eecab4a33f535", - "cMsgCount": 0, - "lastMsgTime": 1670240542.6593437, - "lastMsg": "ok", - "cSameMsg": 0 - }, - "pb-IF5RU3AjNA==": { - "display_string": [ - "\ue020FranticFever44" - ], - "profiles": [], - "name": "\ue020FranticFever44", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-16 11:24:36", - "registerOn": 1670154190.9684489, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154190.9684496, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250715.2657275, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670250922.9935684, - "lastIP": "azo~{n~~haaaa", - "deviceUUID": "1a9c004b4686e7ad14e6a3ca809ec5ffb520c744" - }, - "pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL": { - "display_string": [ - "\ue020sahilkhatri343593", - "\ue030Android15977310" - ], - "profiles": [], - "name": "\ue020sahilkhatri343593", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-09 23:24:32", - "registerOn": 1670154268.5327513, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670156616.624894, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261589.1025465, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261589.1025476, - "lastIP": "azo~{m~}meaig{", - "deviceUUID": "f03172fe2a449fcc17773aad18f0af7cfff7aeb8", - "cMsgCount": 1, - "lastMsgTime": 1670262400.7399585, - "lastMsg": "nat maan \ud83d\udc80 ", - "cSameMsg": 0 - }, - "pb-IF4UU00MKQ==": { - "display_string": [ - "\ue063Underwate6" - ], - "profiles": [], - "name": "\ue063Underwate6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 06:34:24", - "registerOn": 1670154385.9283226, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154385.928323, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154385.9283323, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670154431.4844832, - "lastIP": "a~j~}hgai`{vb~", - "deviceUUID": "11d202b7087bc5e0f1b0fd3251f45f2a6087639a", - "cMsgCount": 0, - "lastMsgTime": 1670154817.8543675, - "lastMsg": "hahaha died cxd", - "cSameMsg": 0 - }, - "pb-IF4iU0kkFw==": { - "display_string": [ - "\ue030Android63759055" - ], - "profiles": [], - "name": "\ue030Android63759055", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-28 21:20:32", - "registerOn": 1670154458.8962836, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154458.896284, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154458.8962908, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154458.8962917, - "lastIP": "a\u007fn~}hhaievvb\u007fh", - "deviceUUID": "aa9df018acc2720dbbab3e71f4308cc3e749460b" - }, - "pb-IF4XUk87Lg==": { - "display_string": [ - "\ue063zakitcgame" - ], - "profiles": [], - "name": "\ue063zakitcgame", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-11 17:18:40", - "registerOn": 1670154476.9446325, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154476.9446332, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154476.9446418, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154476.944643, - "lastIP": "dvvcxvayi~}li", - "deviceUUID": "f60e1a759feaade6d32a3bd98c15ba1540c1443f" - }, - "pb-IF4FU3ApCw==": { - "display_string": [ - "\ue020Dharun1403" - ], - "profiles": [], - "name": "\ue020Dharun1403", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-27 18:30:58", - "registerOn": 1670154560.3510652, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154560.3510659, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154560.3510735, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154560.3510742, - "lastIP": "azo~zi~~hcaigz", - "deviceUUID": "fd5729efd2498f63fb5e6d81129a429389e021bf" - }, - "pb-IF4VVWsGIA==": { - "display_string": [ - "\ue020PseudoAttendance18" - ], - "profiles": [], - "name": "\ue020PseudoAttendance18", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-27 10:46:09", - "registerOn": 1670154570.3457055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154570.345706, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325450.6205482, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670329217.1041179, - "lastIP": "azo~zi~~m`ajdx", - "deviceUUID": "bf98ea45cae48baaed18a03b5d3996ee1c8b0f92", - "cMsgCount": 2, - "lastMsgTime": 1670330386.6632745, - "lastMsg": "/fly ", - "cSameMsg": 0 - }, - "pb-JiNJARFcV0RFWV1AF0VRVVxKFURWQFBD": { - "display_string": [ - "\ue063InfiniteVa" - ], - "profiles": [], - "name": "\ue063InfiniteVa", - "isBan": false, - "isMuted": false, - "accountAge": "2016-07-08 20:31:35", - "registerOn": 1670154667.6615448, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154667.6615453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230012.2025716, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670230024.2440221, - "lastIP": "dvvcxvb\u007fj~~mb", - "deviceUUID": "7e9cfb1ec189b9af073018c0e121a54c93b4d84a", - "cMsgCount": 0, - "lastMsgTime": 1670154803.948753, - "lastMsg": "too much crowded ", - "cSameMsg": 0 - }, - "pb-IF4NU0sbEA==": { - "display_string": [ - "\ue020LordTamboKing" - ], - "profiles": [], - "name": "\ue020LordTamboKing", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-13 18:56:12", - "registerOn": 1670154746.9129632, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154746.9129634, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301739.9053996, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670301921.5981803, - "lastIP": "azo~|l~~lfaie", - "deviceUUID": "ee45cecc4347962ab5eecb73f55adf8f735fa801" - }, - "pb-IF5XVEUZDQ==": { - "display_string": [ - "\ue063ConfusedJa", - "\ue030Android56475190" - ], - "profiles": [], - "name": "\ue063ConfusedJa", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-11 11:55:01", - "registerOn": 1670154786.0738292, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154786.07383, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154786.073839, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154786.0738397, - "lastIP": "a\u007fk~~idakiaii", - "deviceUUID": "cf0a45a18717647d9d1bb5d4bc2f40f5c632ee8a" - }, - "pb-IF4gU00eLQ==": { - "display_string": [ - "\ue030Android63922654" - ], - "profiles": [], - "name": "\ue030Android63922654", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 19:00:42", - "registerOn": 1670154810.1850333, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154810.1850338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154810.1850398, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154810.1850407, - "lastIP": "a\u007fk~~j`aj`\u007fvc}", - "deviceUUID": "2ca3765be0c668ce4b5ae1536349729c4a009d28" - }, - "pb-IF4lU0c9Hw==": { - "display_string": [ - "\ue030Android63669053" - ], - "profiles": [], - "name": "\ue030Android63669053", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 10:59:37", - "registerOn": 1670154903.5047412, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154903.5047417, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335633.919163, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335633.9191644, - "lastIP": "b}k~}jga`caigw", - "deviceUUID": "30e91cbd42dabf2a3be836ca08a1d6341db5b10d", - "cMsgCount": 1, - "lastMsgTime": 1670337045.1403408, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4zUkM_MQ==": { - "display_string": [ - "\ue030Android63984108" - ], - "profiles": [], - "name": "\ue030Android63984108", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 17:03:02", - "registerOn": 1670154917.8602087, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154917.8602092, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154917.8602173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154917.8602183, - "lastIP": "fyvawi~~`aaih{", - "deviceUUID": "fb4cbf3ed54bcb03b1a8a4dc97b8c8b07f81bb17" - }, - "pb-IF4AU0slNQ==": { - "display_string": [ - "\ue020ExposedEditorial36" - ], - "profiles": [], - "name": "\ue020ExposedEditorial36", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 23:05:52", - "registerOn": 1670155006.9034653, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155006.9034655, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670233998.4267328, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670233998.4267337, - "lastIP": "b\u007fj~wn~}jaaad", - "deviceUUID": "3a858043f93d2d3d346070f046d32ae8f09f83dc" - }, - "pb-IF4sVFkqEw==": { - "display_string": [ - "\ue020THANATOS6660" - ], - "profiles": [], - "name": "\ue020THANATOS6660", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-23 20:31:48", - "registerOn": 1670155043.0317564, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155043.0317566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155043.0317628, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155043.031764, - "lastIP": "azo~{n~~`daid\u007f", - "deviceUUID": "81e6bd1280798e984d4653bf596424fbd89f18ba" - }, - "pb-IF4AV3RfLA==": { - "display_string": [ - "\ue020Rahul1000010206", - "\ue030Android30382608" - ], - "profiles": [], - "name": "\ue020Rahul1000010206", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-22 19:00:56", - "registerOn": 1670155086.163616, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155086.1636162, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220102.4517877, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220102.4517894, - "lastIP": "d}va\u007fn~vvg|", - "deviceUUID": "a3dd0677c34dccab00e64b217b08593bd7741092" - }, - "pb-IF4rU08GJw==": { - "display_string": [ - "\ue063LunarJogge" - ], - "profiles": [], - "name": "\ue063LunarJogge", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 16:14:10", - "registerOn": 1670155098.2845676, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155098.284568, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155098.2845762, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155098.2845771, - "lastIP": "azo~{l~~nbajd|", - "deviceUUID": "c7bc39d68e87db8e08579e63abd483695894e87d" - }, - "pb-IF49VW0hJA==": { - "display_string": [ - "\ue030Android48713858" - ], - "profiles": [], - "name": "\ue030Android48713858", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-06 15:20:40", - "registerOn": 1670155217.664931, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155217.6649315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169988.9518273, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169988.9518285, - "lastIP": "a\u007fn~}iaajdwvdw", - "deviceUUID": "057c3747d18371a72042fae071c8ac22f2d7ec77" - }, - "pb-IF4pU2sgJw==": { - "display_string": [ - "\ue020superchan92413", - "\ue030Android61664971" - ], - "profiles": [], - "name": "\ue020superchan92413", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-06 16:58:42", - "registerOn": 1670155380.337275, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155380.337276, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155380.3372843, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155380.3372853, - "lastIP": "a~j~~kdaj`\u007fvb{l", - "deviceUUID": "a9bc1b36fdfe2fda971bbe51a3383a7518ee4581" - }, - "pb-IF4oU3USLw==": { - "display_string": [ - "\ue020abiee1704" - ], - "profiles": [], - "name": "\ue020abiee1704", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-18 13:03:48", - "registerOn": 1670155424.4973814, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155424.497382, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155424.49739, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155424.497391, - "lastIP": "b~h~~vivva~`", - "deviceUUID": "4852a0329a65195d8ed91b6c0276c14c1cab92c9" - }, - "pb-IF4oU3oJEQ==": { - "display_string": [ - "\ue030Android63193363" - ], - "profiles": [], - "name": "\ue030Android63193363", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-08 12:35:31", - "registerOn": 1670155431.456398, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155431.4563985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155431.456405, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155431.456406, - "lastIP": "a}j~~nda`ea`", - "deviceUUID": "52e883ca4163bd784c466d1d8e309d3bc0f4ff1a" - }, - "pb-IF4nVUwZKg==": { - "display_string": [ - "\ue063SHDW1357" - ], - "profiles": [], - "name": "\ue063SHDW1357", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-24 18:12:02", - "registerOn": 1670155590.025852, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155590.0258524, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155590.0258603, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155590.025861, - "lastIP": "a~o~}hiajcxva\u007fn", - "deviceUUID": "5f7707ac18cc6bf90a4f74f0c186607e0a5c1a8f" - }, - "pb-IF4BU00xJA==": { - "display_string": [ - "\ue020SkinnyPencil69437" - ], - "profiles": [], - "name": "\ue020SkinnyPencil69437", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 21:34:06", - "registerOn": 1670155599.0226436, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155599.022644, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155599.0226533, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670155688.0137756, - "lastIP": "d}va~i~~hcaih", - "deviceUUID": "421ad51755dbf596a5afed7d8271998b7e65dc7a" - }, - "pb-IF4dU0kPLQ==": { - "display_string": [ - "\ue030Android63764097" - ], - "profiles": [], - "name": "\ue030Android63764097", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 15:28:23", - "registerOn": 1670155633.1936507, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155633.1936512, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232692.8373356, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232692.8373373, - "lastIP": "a\u007fk~}`~~icaj", - "deviceUUID": "097d38a155cd36f9651bef96204f08390ebe615a" - }, - "pb-IF41U08_Ug==": { - "display_string": [ - "\ue063gandfaad14" - ], - "profiles": [], - "name": "\ue063gandfaad14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 16:09:18", - "registerOn": 1670155714.55478, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155714.5547805, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155714.5547888, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155714.5547898, - "lastIP": "a\u007fn~}i`aifvvd\u007f", - "deviceUUID": "708461b0dbfa7a287e55479b218190516c61359e" - }, - "pb-IF48U3MGAw==": { - "display_string": [ - "\ue030Android62546435" - ], - "profiles": [], - "name": "\ue030Android62546435", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 23:05:49", - "registerOn": 1670155745.5220652, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155745.5220656, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155745.5220733, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155745.5220742, - "lastIP": "axm~~kiaj`xvawm", - "deviceUUID": "df3b7c478bdbc8a9e06c0f726d62ac4b3a1d6459", - "cMsgCount": 0, - "lastMsgTime": 1670155763.171182, - "lastMsg": "/end", - "cSameMsg": 0 - }, - "pb-IF4lU2kSJw==": { - "display_string": [ - "\ue020RareChimera45170", - "\ue030Android61670136" - ], - "profiles": [], - "name": "\ue030Android61670136", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-02 19:27:15", - "registerOn": 1670155805.7864053, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155805.7864058, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155805.786414, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155805.7864149, - "lastIP": "dvvc}vayn~wi", - "deviceUUID": "836c6c4670c3449e59c41970e1897b5d4d40b101" - }, - "pb-IF4qU25ZNQ==": { - "display_string": [ - "\ue030Android62042729" - ], - "profiles": [], - "name": "\ue030Android62042729", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-17 06:19:41", - "registerOn": 1670155836.8855462, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155836.8855467, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155836.8855538, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155836.8855548, - "lastIP": "awj~}kbai`xvb{o", - "deviceUUID": "\u0015S^" - }, - "pb-IF4UU1AuUQ==": { - "display_string": [ - "\ue063GrubbyMani" - ], - "profiles": [], - "name": "\ue063GrubbyMani", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 11:00:59", - "registerOn": 1670155944.6819415, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155944.681942, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155944.6819518, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155944.6819527, - "lastIP": "axm~~khaniaif~", - "deviceUUID": "4f706677eeb6d18054f0de0864218a90f385f5c7" - }, - "pb-IF4TU0o6Aw==": { - "display_string": [ - "\ue063unstoppabl", - "\ue030Android63873290" - ], - "profiles": [], - "name": "\ue063unstoppabl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-31 14:48:23", - "registerOn": 1670155975.315315, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155975.3153155, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320412.9129193, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320412.9129212, - "lastIP": "awh~~aaajayva|i", - "deviceUUID": "3fc28f4ee74b8d9f421e8a6e9e11b8ebc43f1e31" - }, - "pb-IF40UncaLg==": { - "display_string": [ - "\ue063TiredShift" - ], - "profiles": [], - "name": "\ue063TiredShift", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-03 12:48:25", - "registerOn": 1670156023.854145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156023.8541455, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222448.129962, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670222458.156818, - "lastIP": "dvvc}vbzi~zh", - "deviceUUID": "1bebabd26f546f797cb44971532451f5181a64a4", - "cMsgCount": 0, - "lastMsgTime": 1670170109.5159588, - "lastMsg": "gg", - "cSameMsg": 0 - }, - "pb-IF4SEHAl": { - "display_string": [ - "\ue020bisht4189", - "\ue030PC322127", - "\ue030Android45764862" - ], - "profiles": [], - "name": "\ue020bisht4189", - "isBan": false, - "isMuted": false, - "accountAge": "2018-06-09 21:21:57", - "registerOn": 1670156033.5834677, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156033.5834682, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320379.790348, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320379.7903495, - "lastIP": "a\u007fk~{`~~aiaify", - "deviceUUID": "8ece070744c3e4e7b9b808ab81b0ffecf18693ab", - "cMsgCount": 0, - "lastMsgTime": 1670320528.8349676, - "lastMsg": "yes", - "cSameMsg": 0 - }, - "pb-IF4iVFBbDA==": { - "display_string": [ - "\ue063djankit857" - ], - "profiles": [], - "name": "\ue063djankit857", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-19 08:40:00", - "registerOn": 1670156095.9860313, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156095.9860315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246089.8326223, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670257756.243413, - "lastIP": "a\u007fn~}ifaia}vavo", - "deviceUUID": "9ae5fe15fbead527883571aba5ca3f1e5ca6177c", - "cMsgCount": 0, - "lastMsgTime": 1670258431.1791816, - "lastMsg": "ahh", - "cSameMsg": 0 - }, - "pb-IF4tU00oEA==": { - "display_string": [ - "\ue063Unparalle3" - ], - "profiles": [], - "name": "\ue063Unparalle3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 16:10:55", - "registerOn": 1670156138.9764473, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156138.9764478, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156138.9764707, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670156260.0455256, - "lastIP": "b}k~}jeaig~vd}", - "deviceUUID": "5c2c20c749cd54939711e428c481d15e73acc9ee" - }, - "pb-IF4UU1BeVg==": { - "display_string": [ - "\ue030Android63976531" - ], - "profiles": [], - "name": "\ue030Android63976531", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 15:30:34", - "registerOn": 1670156150.9990356, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156150.999036, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156150.9990444, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156150.9990454, - "lastIP": "azo~{a~~lbaia\u007f", - "deviceUUID": "\u0015P\bXS\u0011" - }, - "pb-IF4rU1BdLw==": { - "display_string": [ - "\ue063SheikRieng" - ], - "profiles": [], - "name": "\ue063SheikRieng", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:24:11", - "registerOn": 1670156267.369528, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156267.3695285, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331982.556344, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670331982.5563457, - "lastIP": "azo~zi~~acajc{", - "deviceUUID": "9619ea22745015da3103b77820c9c0bdef6a70f0", - "cMsgCount": 0, - "lastMsgTime": 1670332882.8532884, - "lastMsg": "suiiiii", - "cSameMsg": 0 - }, - "pb-IF4sU0tbUA==": { - "display_string": [ - "\ue030Android63824610" - ], - "profiles": [], - "name": "\ue030Android63824610", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-07 20:34:15", - "registerOn": 1670156348.6588078, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156348.6588082, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156348.658817, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156348.658818, - "lastIP": "a{h~}icalaaii|", - "deviceUUID": "a5dab92b35a1f6ce73b27982249c0e95eab50cbd" - }, - "pb-IF4IU08oXA==": { - "display_string": [ - "\ue030Android63976379" - ], - "profiles": [], - "name": "\ue030Android63976379", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 15:04:06", - "registerOn": 1670156411.8843334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156411.8843338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156411.8843422, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156411.8843434, - "lastIP": "a\u007fk~}hcaiczva{o", - "deviceUUID": "4903d084baf9abddc56cfe3c137c5e5f4cab07a3" - }, - "pb-IF4rUkFSLw==": { - "display_string": [ - "\ue063Conformab8", - "\ue030Android57282101" - ], - "profiles": [], - "name": "\ue020ConformableLink14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-16 16:52:54", - "registerOn": 1670156441.9974556, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156441.997456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333411.9336102, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333411.9336119, - "lastIP": "azo~|j~~i~~lg", - "deviceUUID": "5d57b00b4e1daba91ce4fbc1d6a47384ffcec743" - }, - "pb-IF5QU3gCEQ==": { - "display_string": [ - "\ue063Arcanegame" - ], - "profiles": [], - "name": "\ue020lightingstormer", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-19 18:17:04", - "registerOn": 1670156507.2636464, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156507.263647, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169174.925367, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169174.9253683, - "lastIP": "azo~zi~~k~wh", - "deviceUUID": "9c9ca455a82357d94ff9b041816837d19fe98a92" - }, - "pb-IF4rU0o9KQ==": { - "display_string": [ - "\ue030Android63770342" - ], - "profiles": [], - "name": "\ue030Android63770342", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-30 10:28:52", - "registerOn": 1670156544.3403409, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156544.3403413, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670325605.1216817, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670331001.1045427, - "lastIP": "a~j~}h`aifyva\u007fa", - "deviceUUID": "264499e93a0572229a207bf3cf326bdce60fe69f", - "cMsgCount": 1, - "lastMsgTime": 1670330734.89296, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4TUlZZIg==": { - "display_string": [ - "\ue030Android59520942" - ], - "profiles": [], - "name": "\ue030Android59520942", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-07 08:34:13", - "registerOn": 1670156560.410046, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156560.4100468, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156560.410055, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156560.4100559, - "lastIP": "a~j~~ahajc}vhz", - "deviceUUID": "\u0015Y\u000bSUDY\fXP\u0017Y\bYTB\u0005XPXAV_SUA" - }, - "pb-IF41U2cJEA==": { - "display_string": [ - "\ue063Vanquishi8" - ], - "profiles": [], - "name": "\ue063Vanquishi8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-24 17:06:27", - "registerOn": 1670156608.679988, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156608.6799881, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156608.6799943, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156608.679995, - "lastIP": "a\u007fn~}hcaidyva|l", - "deviceUUID": "f25878bcd4d5d0c8431d14cf300314495ccb4189" - }, - "pb-IF5dVERdFA==": { - "display_string": [ - "\ue030Android41433412" - ], - "profiles": [], - "name": "\ue030Android41433412", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-02 18:48:19", - "registerOn": 1670156614.946084, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156614.9460843, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168570.8582368, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168570.8582382, - "lastIP": "dvvc{vaz`~~hh", - "deviceUUID": "fe2e14c89841f3d3cdfaa7bfd694859405277ca5" - }, - "pb-IF4XU0whCw==": { - "display_string": [ - "\ue030Android63825840" - ], - "profiles": [], - "name": "\ue030Android63825840", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 00:45:28", - "registerOn": 1670156627.7043135, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156627.704314, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156627.7043226, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156627.7043235, - "lastIP": "dxvc~va{m~}jg", - "deviceUUID": "997c03dbb6f929175bfc8cdff8b3950e693b29ef" - }, - "pb-IF4jU04xLQ==": { - "display_string": [ - "\ue020SahilRisingStar0920" - ], - "profiles": [], - "name": "\ue020SahilRisingStar0920", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 01:09:21", - "registerOn": 1670156658.9991548, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156658.9991553, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670156871.692482, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156658.9991639, - "lastIP": "azo~zh~}h~~nd", - "deviceUUID": "f03172fe2a449fcc17773aad18f0af7cfff7aeb8", - "cMsgCount": 0, - "lastMsgTime": 1670157368.0871663, - "lastMsg": " ", - "cSameMsg": 0 - }, - "pb-IF4UUmZcEA==": { - "display_string": [ - "\ue020Dharsanaswin" - ], - "profiles": [], - "name": "\ue020Dharsanaswin", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-11 08:35:28", - "registerOn": 1670156685.8769872, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156685.8769877, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156685.8769958, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670160735.99393, - "lastIP": "azo~{a~~ngaaa", - "deviceUUID": "e88c7c1725a44ce7206089fd2a45d4aecb29c3de" - }, - "pb-IF5WV00NMQ==": { - "display_string": [ - "\ue020itsakasrija" - ], - "profiles": [], - "name": "\ue020itsakasrija", - "isBan": false, - "isMuted": false, - "accountAge": "2019-03-19 19:02:53", - "registerOn": 1670156818.322882, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156818.3228827, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156818.3228912, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156818.3228924, - "lastIP": "azo~|a~}n~~mc", - "deviceUUID": "e63c1a29bbc41767e40f45748864e5d421783ac7" - }, - "pb-IF5SU00_Ag==": { - "display_string": [ - "\ue020AmazingTriangle14295" - ], - "profiles": [], - "name": "\ue020AmazingTriangle14295", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 22:10:57", - "registerOn": 1670156821.4004574, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156821.400458, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156821.4004662, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670159147.2531607, - "lastIP": "azo~|j~}jdamc", - "deviceUUID": "a92e2cebf013aa06240ed50b96989dbd3044ff3e" - }, - "pb-IF4GU0gbVQ==": { - "display_string": [ - "\ue020DependableChip25" - ], - "profiles": [], - "name": "\ue020DependableChip25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 12:19:05", - "registerOn": 1670156908.6517982, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156908.6517987, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318214.6463692, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318214.646371, - "lastIP": "a\u007fk~~mfaja|va|m", - "deviceUUID": "c912da30b9db33fb38a678ee31d79e93cc9ef4bf", - "cMsgCount": 0, - "lastMsgTime": 1670318853.8974233, - "lastMsg": "lord", - "cSameMsg": 0 - }, - "pb-IF4RU2g-VQ==": { - "display_string": [ - "\ue063ErsatzGuac" - ], - "profiles": [], - "name": "\ue063ErsatzGuac", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-26 18:38:58", - "registerOn": 1670157133.8047647, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157133.804765, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670157133.8047726, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670157133.8047733, - "lastIP": "dvvcxvb|j~w`", - "deviceUUID": "c6ccbf20c748886d43c1a77720dfce3e297ff27f" - }, - "pb-IF4KV04FIg==": { - "display_string": [ - "\ue063ItzMeRoman" - ], - "profiles": [], - "name": "\ue063ItzMeRoman", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-04 19:04:04", - "registerOn": 1670157219.8004673, - "canStartKickVote": true, - "spamCount": 2, - "lastSpam": 1670317030.170266, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334538.3151338, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670336226.4628954, - "lastIP": "dvvcxvfyvez", - "deviceUUID": "c9f79337d0693a50e81662cee5c8b8f1dcf508be", - "cMsgCount": 0, - "lastMsgTime": 1670336717.9617782, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4OU0MpNA==": { - "display_string": [ - "\ue063Nostalgic4" - ], - "profiles": [], - "name": "\ue063Nostalgic4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-20 16:48:26", - "registerOn": 1670157412.4206848, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157412.4206853, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670157412.420694, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670157412.420695, - "lastIP": "aw`~~jiaie~vgz", - "deviceUUID": "e2c5ef269ad01779706103d044c7585ffb000ba7" - }, - "pb-IF5WU1EqAw==": { - "display_string": [ - "\ue030Android63963639" - ], - "profiles": [], - "name": "\ue030Android63963639", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 17:29:52", - "registerOn": 1670157483.7763898, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157483.7763903, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210333.055326, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210333.0553274, - "lastIP": "dvva{l~}jhajc}", - "deviceUUID": "ee687ca5612b9f5463a9df13607420d98eddb3de" - }, - "pb-IF4qKFAu": { - "display_string": [ - "\ue063GreenKiwi4" - ], - "profiles": [], - "name": "\ue063GreenKiwi4", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-05 10:39:28", - "registerOn": 1670157486.7374034, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157486.7374036, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670304412.0338194, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670304412.0338206, - "lastIP": "azo~|j~|h~wh", - "deviceUUID": "95694b7b91756bdcb228a522ae7c0e7b57d1f025" - }, - "pb-IF4UUlQyEA==": { - "display_string": [ - "\ue063EpicQuail4", - "\ue030Android58443597" - ], - "profiles": [], - "name": "\ue063EpicQuail4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-30 22:35:41", - "registerOn": 1670157640.2495594, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157640.2495599, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254058.9861078, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254058.9861093, - "lastIP": "azo~|o~~khaoi", - "deviceUUID": "8708d0911fb55b2401c512826006a1dd0646ce00" - }, - "pb-IF4MU2sFJA==": { - "display_string": [ - "\ue020MDHAMDAN99" - ], - "profiles": [], - "name": "\ue020MDHAMDAN99", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 06:07:38", - "registerOn": 1670157676.450389, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157676.4503894, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169450.9087777, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670173940.2467167, - "lastIP": "azo~{n~w`~~ld", - "deviceUUID": "d472f8b4092afab5cc1bd4d51eecb6e2febe3e75" - }, - "pb-IF4dU04OPA==": { - "display_string": [ - "\ue063ISHANTH05" - ], - "profiles": [], - "name": "\ue063ISHANTH05", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 10:08:54", - "registerOn": 1670157876.1229389, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157876.122939, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670157876.1229472, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670157876.1229486, - "lastIP": "azo~{m~}meaicx", - "deviceUUID": "3b313c2552efa95697f7c00278ba9bb150841a5f" - }, - "pb-IF4eU0kxCg==": { - "display_string": [ - "\ue020masterkiller12398745" - ], - "profiles": [], - "name": "\ue020masterkiller12398745", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-26 22:23:38", - "registerOn": 1670157906.1819763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157906.1819768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670157906.1819868, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670157906.1819878, - "lastIP": "a|o~vo~vn~|k", - "deviceUUID": "6d0ed873d109ff0f040122376bf075a4e2f48eb6" - }, - "pb-IF4SUnMKEw==": { - "display_string": [ - "\ue063Mukund094" - ], - "profiles": [], - "name": "\ue063Mukund094", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-15 19:01:52", - "registerOn": 1670157917.202916, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157917.2029164, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168887.971206, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670169157.8623798, - "lastIP": "aakhaifxvb}a", - "deviceUUID": "81ca5c0f7a3bcd42bc49e9507bce630a6d73eca0" - }, - "pb-IF5dU1FZDA==": { - "display_string": [ - "\ue063NewestBlue", - "\ue030Android52862393" - ], - "profiles": [], - "name": "\ue063NewestBlue", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 19:16:18", - "registerOn": 1670157920.253806, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157920.2538066, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670157920.2538145, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670157920.2538157, - "lastIP": "a\u007fn~~abakfaig{", - "deviceUUID": "0a674aa22c9f045cae63f4bcdc0252fb2449c177" - }, - "pb-IF4CU2oaKw==": { - "display_string": [ - "\ue063Edwinss321" - ], - "profiles": [], - "name": "\ue063Edwinss321", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-05 21:30:27", - "registerOn": 1670158148.072629, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158148.0726295, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158148.0726385, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158148.0726395, - "lastIP": "a\u007fn~}ica`ham", - "deviceUUID": "0a91a672cfaf036c22db725f3a3e8e59035f010e" - }, - "pb-IF4DVW4HFA==": { - "display_string": [ - "\ue030Android48907943" - ], - "profiles": [], - "name": "\ue030Android48907943", - "isBan": true, - "isMuted": false, - "accountAge": "2020-12-15 22:45:08", - "registerOn": 1670158229.2643647, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158229.264365, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670158454.317948, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158229.264374, - "lastIP": "b}k~}khaid|vbx", - "deviceUUID": "\u0015YUYY\u0010", - "cMsgCount": 0, - "lastMsgTime": 1670158454.3179662, - "lastMsg": "maderchud kick to formalities h smjha \ud83e\udd72", - "cSameMsg": 0 - }, - "pb-IF4QU04nPA==": { - "display_string": [ - "\ue020DoggedAptitude38", - "\ue030Android58612835" - ], - "profiles": [], - "name": "\ue020DoggedAptitude38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 12:58:36", - "registerOn": 1670158238.2970982, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158238.2970986, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158238.2971108, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158238.2971117, - "lastIP": "azo~{n~}i`aihz", - "deviceUUID": "4eabdeb28894cf088b5d8ef27f447ab3ba2c061c" - }, - "pb-IF4VU3laVA==": { - "display_string": [ - "\ue030Android63074779" - ], - "profiles": [], - "name": "\ue030Android63074779", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-02 11:57:20", - "registerOn": 1670158299.61513, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158299.6151304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333431.8338737, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670332956.313355, - "lastIP": "a\u007fk~~n`ajc|va~n", - "deviceUUID": "2393a78d5604af32281b51a76fe4cbd2171ba7e6", - "cMsgCount": 2, - "lastMsgTime": 1670333619.4676514, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF41V0UyDg==": { - "display_string": [ - "\ue020Wikirex2001" - ], - "profiles": [], - "name": "\ue020Wikirex2001", - "isBan": false, - "isMuted": false, - "accountAge": "2019-02-17 15:45:44", - "registerOn": 1670158332.7237494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158332.7237499, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325490.7797647, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325490.7797663, - "lastIP": "a|a~~ngajcyve\u007f", - "deviceUUID": "05026a979dca7e3cd404eee012a2336e923ed14b", - "cMsgCount": 0, - "lastMsgTime": 1670326174.3910544, - "lastMsg": "\ud83d\ude02\ud83d\ude02\ud83d\ude02", - "cSameMsg": 0 - }, - "pb-IF4mVGEjJA==": { - "display_string": [ - "\ue020MIKEJV007" - ], - "profiles": [], - "name": "\ue020MIKEJV007", - "isBan": false, - "isMuted": false, - "accountAge": "2019-08-13 08:40:49", - "registerOn": 1670158350.750915, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158350.7509153, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158350.7509232, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158350.7509243, - "lastIP": "azo~zi~~n`aiay", - "deviceUUID": "16de327515364db52a432d36d289431e6f8825ee" - }, - "pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB": { - "display_string": [ - "\ue0209584555539", - "\ue030unknown" - ], - "profiles": [], - "name": "\ue0209584555539", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-03 00:30:21", - "registerOn": 1670158399.918968, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158399.9189684, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335265.6084077, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670335595.780019, - "lastIP": "azo~|l~zi~|j", - "deviceUUID": "8c2fb0b9d047637ef53cd32ad494cc354031f559" - }, - "pb-IF4BUnovCQ==": { - "display_string": [ - "\ue020Twistedvine0127", - "\ue030Android57444788", - "\ue030Android57444801" - ], - "profiles": [], - "name": "\ue020Twistedvine0127", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-14 14:15:06", - "registerOn": 1670158458.1324604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158458.1324608, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158458.1324685, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158458.1324692, - "lastIP": "azo~{n~~ifaiew", - "deviceUUID": "3c7d1051e17ce71e475d658180d5dd502f0ace09" - }, - "pb-IF43VEQYAw==": { - "display_string": [ - "\ue020DeadlyFly63846" - ], - "profiles": [], - "name": "\ue020DeadlyFly63846", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-20 20:37:22", - "registerOn": 1670158467.190878, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158467.1908784, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670159756.8879652, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158467.1908875, - "lastIP": "azo~{o~xj~~n", - "deviceUUID": "31eedb523daf27dc1178ac369b99349530fede79", - "cMsgCount": 2, - "lastMsgTime": 1670160918.1159883, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4HU0gSFw==": { - "display_string": [ - "\ue030Android63728390" - ], - "profiles": [], - "name": "\ue030Android63728390", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 23:04:02", - "registerOn": 1670158531.4043813, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158531.4043818, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327967.219527, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670328683.6199138, - "lastIP": "a~n~y`~va~z", - "deviceUUID": "4d328e9283e76ab72597cc75a5a4b72b313ec890" - }, - "pb-IF4TVUcGKQ==": { - "display_string": [ - "\ue020king1of1brave1gaming", - "\ue020HeartfeltChamber20" - ], - "profiles": [], - "name": "\ue020king1of1brave1gaming", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-30 11:02:51", - "registerOn": 1670158552.4431162, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158552.4431164, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158552.4431245, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158552.4431252, - "lastIP": "azo~{a~~n`ajh", - "deviceUUID": "83b496c81451591736504d9fd003651f3c431d66" - }, - "pb-IF4TU0oFAQ==": { - "display_string": [ - "\ue063FamousImpr" - ], - "profiles": [], - "name": "\ue020FamousImprovement43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 10:03:43", - "registerOn": 1670158617.7722538, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670217289.488894, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318064.1492138, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670323423.935414, - "lastIP": "a|j~~mdamgajg", - "deviceUUID": "ead26944d87701aa9f2b628098721da6d772321a", - "cMsgCount": 0, - "lastMsgTime": 1670254340.5818193, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4MVU4vLw==": { - "display_string": [ - "\ue020QuixoticEmpire16345" - ], - "profiles": [], - "name": "\ue020QuixoticEmpire16345", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-01 20:27:25", - "registerOn": 1670158646.8107684, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158646.8107688, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670159303.960782, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158646.8107784, - "lastIP": "dvvb\u007fo~zk~~li", - "deviceUUID": "b4160a8bd8994f6d125003003a21d86754474196", - "cMsgCount": 0, - "lastMsgTime": 1670159303.9608011, - "lastMsg": "asshole", - "cSameMsg": 0 - }, - "pb-IF4xU04PPw==": { - "display_string": [ - "\ue020TyrannicalSalmon36" - ], - "profiles": [], - "name": "\ue020TyrannicalSalmon36", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 16:49:49", - "registerOn": 1670158740.1758955, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158740.1758957, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158740.175904, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158740.175905, - "lastIP": "bxvf~vaw`~~na", - "deviceUUID": "b1856dffd0e4d0fe5e5128698c2ac16c0ef55de8" - }, - "pb-IF5QKnNb": { - "display_string": [ - "\ue063LoadedMart", - "\ue030Android39558415" - ], - "profiles": [], - "name": "\ue063LoadedMart", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-14 13:53:20", - "registerOn": 1670158762.2134898, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158762.2134902, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325712.5764754, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325712.5764775, - "lastIP": "a\u007fn~}icanfaic}", - "deviceUUID": "77eb0682ef0f6f2efb1c8c938c4593b7dac290cb", - "cMsgCount": 0, - "lastMsgTime": 1670159268.7488112, - "lastMsg": "/ping", - "cSameMsg": 0 - }, - "pb-IF4CU0pTCQ==": { - "display_string": [ - "\ue020vibhinnoflock" - ], - "profiles": [], - "name": "\ue020vibhinnoflock", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 13:55:12", - "registerOn": 1670158785.3006601, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158785.3006604, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158785.300669, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158785.30067, - "lastIP": "a~h~}jfaigyvb}h", - "deviceUUID": "5980ea0b22beeb8bde0de9c0c6beb4f6339aae8a" - }, - "pb-IF4DUnYIFw==": { - "display_string": [ - "\ue020DoubtfulCell25" - ], - "profiles": [], - "name": "\ue020DoubtfulCell25", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-28 09:03:28", - "registerOn": 1670158892.6819825, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158892.681983, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158892.6819916, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158892.6819928, - "lastIP": "a\u007fk~~mdakga`d", - "deviceUUID": "7413752b697042aadf43cd4fb65b6bd5a0139d35" - }, - "pb-IF4zU3gzBA==": { - "display_string": [ - "\ue020thunderstorms3054" - ], - "profiles": [], - "name": "\ue020thunderstorms3054", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-29 18:20:12", - "registerOn": 1670158901.7056797, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158901.7056801, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226806.6086006, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670242912.1311004, - "lastIP": "a~l~|i~~n`ama", - "deviceUUID": "b8aeb308a5987f2f3bf7a57960d670cda96888cb" - }, - "pb-ND0oS0YPXURAD1hFDU9SVFdfEUEKQExLAQVGRgAUEVldSRYUWFdWRg==": { - "display_string": [ - "\ue020SedAkkalaMwonu" - ], - "profiles": [], - "name": "\ue020SedAkkalaMwonu", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-04 19:17:16", - "registerOn": 1670158904.7604926, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158904.760493, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158904.7605016, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158904.7605028, - "lastIP": "dvvcxvb}l~~`a", - "deviceUUID": "\u0015PTVR\u0010\u0003UR\u0007\u0010Q\bTRFU\\SPCV]TPBT" - }, - "pb-IF4BVUw-Dg==": { - "display_string": [ - "\ue020ashikroyal" - ], - "profiles": [], - "name": "\ue020ashikroyal", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-25 17:09:30", - "registerOn": 1670159001.1008008, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159001.1008012, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310387.1653728, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670310387.165374, - "lastIP": "azo~{m~}laalc", - "deviceUUID": "11a4030b2ff5e4f07a770cd13814d9a14f8be9f0", - "cMsgCount": 0, - "lastMsgTime": 1670159585.5415635, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4eU0sbNA==": { - "display_string": [ - "\ue063Darkestkni", - "\ue030Android63863811", - "\ue030Android63863805", - "\ue030Android63863822", - "\ue030Android63863790" - ], - "profiles": [], - "name": "\ue063Darkestkni", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 10:53:00", - "registerOn": 1670159142.5520449, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159142.5520453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159142.552053, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159142.552054, - "lastIP": "awj~ya~}lbajc|", - "deviceUUID": "3a8765c73d98cba05c51b0774af94ab7cf8c0e98" - }, - "pb-IF5SU0kIPw==": { - "display_string": [ - "\ue020ShortsightedRepeat40" - ], - "profiles": [], - "name": "\ue020ShortsightedRepeat40", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-17 15:15:08", - "registerOn": 1670159218.8720262, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159218.8720267, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159218.8720348, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159218.8720357, - "lastIP": "a~o~vo~}l`aia\u007f", - "deviceUUID": "474356bd7aaed62192f0a2e276bfe4d78689c88b" - }, - "pb-IF4pVHAlKw==": { - "display_string": [ - "\ue063GoDFather6" - ], - "profiles": [], - "name": "\ue063UndtedSirw", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-18 13:41:07", - "registerOn": 1670159312.5738392, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159312.5738397, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252130.1316547, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670252654.8962054, - "lastIP": "a~o~}jaaibzva{j", - "deviceUUID": "809fa945109cc1506c101ff3c9fe3e126509515b", - "cMsgCount": 0, - "lastMsgTime": 1670165771.6086404, - "lastMsg": "papa ko sry bolo", - "cSameMsg": 0 - }, - "pb-IF43U08GJA==": { - "display_string": [ - "\ue063Inexorabl6" - ], - "profiles": [], - "name": "\ue063Inexorabl6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 18:37:06", - "registerOn": 1670159391.5937479, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159391.5937486, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159391.5937567, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159391.5937579, - "lastIP": "a~j~}haaihxvb{l", - "deviceUUID": "8150454cfadaf921ed0ad2d8fe8e206358028170" - }, - "pb-IF4mUhY5Bw==": { - "display_string": [ - "\ue020mooday800" - ], - "profiles": [], - "name": "\ue020mooday800", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-02 01:54:09", - "registerOn": 1670159673.475905, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159673.4759054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159673.4759133, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159673.4759147, - "lastIP": "cxveyva{vb\u007fm", - "deviceUUID": "90cf3cb3c344ffe2f2627dc707005f92ffb3a012" - }, - "pb-IF5XVHgmAg==": { - "display_string": [ - "\ue020Mraloneguy", - "\ue030Android58661312" - ], - "profiles": [], - "name": "\ue020Mraloneguy", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-27 18:38:56", - "registerOn": 1670159789.8858535, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159789.885854, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159789.8858626, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159789.8858638, - "lastIP": "a\u007fk~~liamiaig\u007f", - "deviceUUID": "d4bb84af38ac8c1002ca1bb1ea44190a19b03bd8" - }, - "pb-IF4OU2QjMQ==": { - "display_string": [ - "\ue063DEVTA9" - ], - "profiles": [], - "name": "\ue063DEVTA9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-12 18:34:35", - "registerOn": 1670159921.37427, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159921.3742704, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252087.99373, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670255812.7129335, - "lastIP": "a\u007fk~}hhaniaig|", - "deviceUUID": "0844c250555b3f23df4f4072f22489bcd86cf716", - "cMsgCount": 0, - "lastMsgTime": 1670161871.39972, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4TU0UaFg==": { - "display_string": [ - "\ue020CongestedPackaging20" - ], - "profiles": [], - "name": "\ue020CongestedPackaging20", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-06 12:53:48", - "registerOn": 1670159928.4023156, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159928.402316, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159928.4023263, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159928.402327, - "lastIP": "azo~{o~xm~~la", - "deviceUUID": "df88d8baf95edb9e33e1fb4feade66217f12c292" - }, - "pb-IF5SU0seMQ==": { - "display_string": [ - "\ue030Android63767506" - ], - "profiles": [], - "name": "\ue030Android63767506", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 23:07:34", - "registerOn": 1670159950.487569, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159950.4875693, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159950.4875777, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159950.4875786, - "lastIP": "a~h~}keajcwve}", - "deviceUUID": "efd4062b4fddd369664dab070a44997389b05bc8" - }, - "pb-IF40VG4yUA==": { - "display_string": [ - "\ue063sonugavale", - "\ue030Android34896235" - ], - "profiles": [], - "name": "\ue063sonugavale", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-06 19:59:52", - "registerOn": 1670160006.7266586, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160006.7266588, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328874.4872885, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670329079.2338326, - "lastIP": "a\u007fn~}j`aidwvb\u007f", - "deviceUUID": "817d31d50be40ed23fce4bdaae445e8b4242543b", - "cMsgCount": 0, - "lastMsgTime": 1670329095.9007862, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4NU0ojAA==": { - "display_string": [ - "\ue030Android63796554" - ], - "profiles": [], - "name": "\ue030Android63796554", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 18:07:17", - "registerOn": 1670160009.711596, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160009.7115965, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325313.1572607, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325313.157262, - "lastIP": "azo~|k~zj~~kd", - "deviceUUID": "3d647e7dac07fd7bb037d38317d7799c7a6d9b64" - }, - "pb-IF4cU0oEDg==": { - "display_string": [ - "\ue063lkiheasnal" - ], - "profiles": [], - "name": "\ue063lkiheasnal", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 20:36:31", - "registerOn": 1670160075.1954076, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160075.195408, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328026.4458141, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670332561.9834569, - "lastIP": "b}k~~ohalfajc{", - "deviceUUID": "e4f6b81c290b68df0f93493153114d38c1303d6d" - }, - "pb-IF4eU2VTAg==": { - "display_string": [ - "\ue063GinormousD" - ], - "profiles": [], - "name": "\ue063GinormousD", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-14 09:32:14", - "registerOn": 1670160370.9674878, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160370.9674888, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334960.2731783, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670334978.3177114, - "lastIP": "a}j~~nbaja{vbx", - "deviceUUID": "ca8d6637bba6507af992af44ca6ead60e54b475f" - }, - "pb-IF4jUxQxCQ==": { - "display_string": [ - "\ue063NavigableN" - ], - "profiles": [], - "name": "\ue063NavigableN", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-09 05:48:11", - "registerOn": 1670160658.1004236, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160658.100424, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670160658.100432, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670160983.8861802, - "lastIP": "axh~wj~zk~~lb", - "deviceUUID": "770e397383eb2bc7a5752d1a9fdf6d41415343a0" - }, - "pb-IF41U08kKQ==": { - "display_string": [ - "\ue030Android63981158" - ], - "profiles": [], - "name": "\ue030Android63981158", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 05:17:45", - "registerOn": 1670160675.099334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160675.0993345, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670160675.0993423, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670160675.099343, - "lastIP": "gyviwvb\u007fo~~oc", - "deviceUUID": "76bfa85e0fb27f0158a8e14566f6a35cc84b96b7" - }, - "pb-IF5XU0ZbBA==": { - "display_string": [ - "\ue063Following3" - ], - "profiles": [], - "name": "\ue063Following3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-23 12:03:38", - "registerOn": 1670160688.2706091, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160688.2706096, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246875.5107074, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246875.5107088, - "lastIP": "azo~|j~|k~~ke", - "deviceUUID": "05dc3e79b3ecfead7ef4ca371c1cc5e5b8741d13" - }, - "pb-IF4SF0Em": { - "display_string": [ - "\ue063MuddyJoker", - "\ue020EventualFlame29", - "\ue030Android54117335", - "\ue030Android57127938" - ], - "profiles": [], - "name": "\ue020MuddyJoker56571", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-17 12:09:49", - "registerOn": 1670160953.0983143, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670235183.440341, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329196.016531, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670332044.752487, - "lastIP": "bxvevvb|a~~ib", - "deviceUUID": "085c017f4b707662a2740e75d38d437eee8c2877", - "cMsgCount": 0, - "lastMsgTime": 1670262216.7338455, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4HU0QPAw==": { - "display_string": [ - "\ue063VauntedPlu" - ], - "profiles": [], - "name": "\ue063VauntedPlu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-27 09:06:08", - "registerOn": 1670160979.4752326, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160979.475233, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670160979.4752417, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670160979.4752426, - "lastIP": "b\u007fj~w`~}hhajav", - "deviceUUID": "279b3059b77b33de45467d66b1a7186a01f7c062" - }, - "pb-IF4mVRgFBw==": { - "display_string": [ - "\ue063SpunkyEmbl" - ], - "profiles": [], - "name": "\ue063SpunkyEmbl", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-31 16:00:19", - "registerOn": 1670161009.387051, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161009.3870513, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161009.38706, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161009.3870606, - "lastIP": "dvvcyvd|vb}o", - "deviceUUID": "aa07fb78482a1ddec5a019836a870f8ec65cff41" - }, - "pb-IF41VXk5PQ==": { - "display_string": [ - "\ue063AgentShubh" - ], - "profiles": [], - "name": "\ue063AgentShubh", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-02 12:19:15", - "registerOn": 1670161017.3185666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161017.3185675, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161017.3185754, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161017.3185763, - "lastIP": "a\u007fn~}hfaic~vb{i", - "deviceUUID": "85200a9c9534941367c0ce3d2265fca68ccc5648", - "cMsgCount": 0, - "lastMsgTime": 1670161224.5551558, - "lastMsg": "sry", - "cSameMsg": 0 - }, - "pb-IF4KVUMsBg==": { - "display_string": [ - "\ue020LearnedLabyrinth7741" - ], - "profiles": [], - "name": "\ue020LearnedLabyrinth7741", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-31 15:24:44", - "registerOn": 1670161058.4950535, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161058.495054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161058.495063, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670161391.3134813, - "lastIP": "bxvf|vb~a~}hi", - "deviceUUID": "eab2b0aa1b34fa3d33048acfcffeec93e19974b6" - }, - "pb-IF5TAHQO": { - "display_string": [ - "\ue063HootingDra", - "\ue030Android53223253" - ], - "profiles": [], - "name": "\ue063HootingDra", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-12 20:20:44", - "registerOn": 1670161104.6649241, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161104.6649246, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670162389.8091376, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161104.6649332, - "lastIP": "dvvcxvfzvh|", - "deviceUUID": "8a0301ea62429d602083265ba821a81e998faa99", - "cMsgCount": 0, - "lastMsgTime": 1670163033.5394967, - "lastMsg": "see ya", - "cSameMsg": 0 - }, - "pb-IF4KU0gxMg==": { - "display_string": [ - "\ue020TGPALYWGSUDGSJSHSJSS" - ], - "profiles": [], - "name": "\ue020TGPALYWGSUDGSJSHSJSS", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 18:42:05", - "registerOn": 1670161220.065693, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161220.0656934, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161220.0657003, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161220.0657015, - "lastIP": "dvva{va|l~~m`", - "deviceUUID": "cd4528587c165931a5c036016f2575ebf19683a4" - }, - "pb-IF48UxIMIA==": { - "display_string": [ - "\ue020UltravioletAnswer35" - ], - "profiles": [], - "name": "\ue020UltravioletAnswer35", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-03 14:28:12", - "registerOn": 1670161368.698151, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161368.6981516, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161368.6981606, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161368.6981614, - "lastIP": "azo~|l~}o~}`", - "deviceUUID": "5631851b9d3c44571f5e648c9ed48a8eac7b10d3" - }, - "pb-IF5VV29eLA==": { - "display_string": [ - "\ue063RaSurKh" - ], - "profiles": [], - "name": "\ue063RaSurKh", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-17 21:47:55", - "registerOn": 1670161399.6712382, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161399.6712387, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246588.5751715, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246588.575173, - "lastIP": "dvvcyvb{vazm", - "deviceUUID": "50c9ee145c124c575b0d6881e82b15e9ac1d9482" - }, - "pb-IF4LU20cEw==": { - "display_string": [ - "\ue030Android62093703" - ], - "profiles": [], - "name": "\ue030Android62093703", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-19 12:34:21", - "registerOn": 1670161466.9012787, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670161492.6805577, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670246213.034349, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245942.3065374, - "lastIP": "a~o~va~}liake", - "deviceUUID": "beafa74a9034955afeecc388dca93ebbadb504f5", - "cMsgCount": 1, - "lastMsgTime": 1670247936.1142607, - "lastMsg": "op. game play", - "cSameMsg": 0 - }, - "pb-IF4WUk9cJw==": { - "display_string": [ - "\ue020redpalyer1" - ], - "profiles": [], - "name": "\ue020redpalyer1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-11 20:58:03", - "registerOn": 1670161496.0013673, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161496.0013678, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161496.0013752, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161496.0013769, - "lastIP": "azj~zo~~mcamf", - "deviceUUID": "\u0015V\b\u0004XA\u0005^U\u0003BVZ" - }, - "pb-IF4eU0QdUQ==": { - "display_string": [ - "\ue020CivilianProject35" - ], - "profiles": [], - "name": "\ue020CivilianProject35", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-28 11:57:27", - "registerOn": 1670161514.1843376, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161514.184338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161514.1843452, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161514.1843464, - "lastIP": "azo~zi~zl~~mc", - "deviceUUID": "2ed4716ae5a94686f1f65bb959d69d31a67eacae" - }, - "pb-IF5UU1EHFA==": { - "display_string": [ - "\ue030PC773577" - ], - "profiles": [], - "name": "\ue030PC773577", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 19:04:43", - "registerOn": 1670161534.1129794, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161534.11298, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161534.1130328, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161534.1130335, - "lastIP": "awj~|vcxvf\u007f", - "deviceUUID": "10e12c9eebaeb3f1dc2bde1c768317b170009b51" - }, - "pb-IF4JU3MxCQ==": { - "display_string": [ - "\ue020AdvancedExpomnent45m" - ], - "profiles": [], - "name": "\ue020AdvancedExpomnent45m", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-09 17:49:57", - "registerOn": 1670161564.2208176, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161564.2208183, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258743.2264552, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670260781.112777, - "lastIP": "a~l~|i~~`iajg", - "deviceUUID": "568191a189627834d190dc2e887ec7a832cc6819", - "cMsgCount": 0, - "lastMsgTime": 1670260806.5083842, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4jVHIEHQ==": { - "display_string": [ - "\ue030Android39959906" - ], - "profiles": [], - "name": "\ue030Android39959906", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-05 15:05:41", - "registerOn": 1670161600.6883516, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161600.6883523, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161600.688361, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161600.688362, - "lastIP": "a\u007fn~}jbameajby", - "deviceUUID": "63041c5597f4831f70e774d344ec2d0f94b906f5" - }, - "pb-IF5RU0pSBg==": { - "display_string": [ - "\ue020SuggestiveGarage45" - ], - "profiles": [], - "name": "\ue020SuggestiveGarage45", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 12:19:23", - "registerOn": 1670161659.599708, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161659.599709, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222393.9349406, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670222393.934942, - "lastIP": "a{h~}icaicwvb~i", - "deviceUUID": "b99eac5262f4ba805ea9b082acd67a5fc75d6d3f" - }, - "pb-IF5WUxQlEw==": { - "display_string": [ - "\ue030Linux52467" - ], - "profiles": [], - "name": "\ue030Linux52467", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-03 19:31:23", - "registerOn": 1670161687.6822398, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670162557.3463728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670297483.760641, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670305992.7149978, - "lastIP": "a\u007fk~~meaja\u007fvb{l", - "deviceUUID": "\u0018\u0003T\u0007PMTX\u0003LD", - "cMsgCount": 0, - "lastMsgTime": 1670306651.4260283, - "lastMsg": "toh sunao", - "cSameMsg": 0 - }, - "pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL": { - "display_string": [ - "\ue020YeWest2024" - ], - "profiles": [], - "name": "\ue020YeWest2024", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-05 13:28:05", - "registerOn": 1670161742.4800205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161742.4800208, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333447.0755627, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333447.0755644, - "lastIP": "dvvcyva\u007fm~}k`", - "deviceUUID": "df33f5dee622a540618464296901184a5ed62c0a", - "cMsgCount": 0, - "lastMsgTime": 1670334412.3950067, - "lastMsg": "sorry mistake", - "cSameMsg": 0 - }, - "pb-IF4oU3hbEQ==": { - "display_string": [ - "\ue020\u0d15\u0d4d\u0d2f\u0d3e\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d7b22" - ], - "profiles": [], - "name": "\ue020\u0d15\u0d4d\u0d2f\u0d3e\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d7b22", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 12:37:58", - "registerOn": 1670162010.2120798, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162010.2120805, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162010.212089, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162010.21209, - "lastIP": "a\u007fn~~adalgaiev", - "deviceUUID": "d58f3a82e9f7bbde506330fc3a294c634bdf6e10" - }, - "pb-IF4CUhM5AQ==": { - "display_string": [ - "\ue020MilesAboveYou" - ], - "profiles": [], - "name": "\ue020MilesAboveYou", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-18 12:37:42", - "registerOn": 1670162031.9690244, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162031.9690247, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670186492.8797495, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670186492.8797512, - "lastIP": "a~n~y`~~iaaidv", - "deviceUUID": "00002973d162e002d40584d7ca11f4f5601862f8" - }, - "pb-IF4OU049CA==": { - "display_string": [ - "\ue063EntireBegg" - ], - "profiles": [], - "name": "\ue063EntireBegg", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 00:25:44", - "registerOn": 1670162234.6436152, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162234.643616, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162234.643642, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162234.643643, - "lastIP": "b\u007fi~}ihaicxvb\u007f", - "deviceUUID": "d3d40f6ae0e48683f83e68cd52a5f04656b31522" - }, - "pb-IF4KU0UqLA==": { - "display_string": [ - "\ue020DarkLordAscended" - ], - "profiles": [], - "name": "\ue020DarkLordAscended", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 11:10:47", - "registerOn": 1670162272.8136446, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162272.8136451, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315405.351848, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315405.3518496, - "lastIP": "azo~{a~}jaaifw", - "deviceUUID": "5eb883c11c38f3e3dd0831e40170faba53b1da83" - }, - "pb-IF4oUnVaNg==": { - "display_string": [ - "\ue063LustrousC3", - "\ue030Android56854542" - ], - "profiles": [], - "name": "\ue020LustrousConjurer7", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-21 12:53:25", - "registerOn": 1670162276.8084059, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162276.808406, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319785.486115, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319785.4861166, - "lastIP": "dvvcxvb~a~{`", - "deviceUUID": "39fce6b71f8d12b7107c4e4ecdabe83b0ed46270" - }, - "pb-IF5QU0MaXA==": { - "display_string": [ - "\ue020kukkututtu002" - ], - "profiles": [], - "name": "\ue020kukkututtu002", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-11 18:58:24", - "registerOn": 1670162323.9822552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162323.9822557, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162323.9822626, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162323.9822638, - "lastIP": "a~o~}i`aii~vb|n", - "deviceUUID": "10aa992e3b27eb596abaf4c53e0f887330ccfa4a" - }, - "pb-IF4dU08oXQ==": { - "display_string": [ - "\ue063MindfulAir", - "\ue030Android58076920" - ], - "profiles": [], - "name": "\ue063MindfulAir", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 07:20:51", - "registerOn": 1670162435.386602, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162435.3866024, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162435.3866107, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162435.3866117, - "lastIP": "d}va\u007fn~~a~vo", - "deviceUUID": "57fe53dc7cbe2dac162f3eabe21a37668a67eda2" - }, - "pb-JiNJVxBcUURIXVZJFkFZVFdGFEBeR1dF": { - "display_string": [ - "\ue020aniket2604" - ], - "profiles": [], - "name": "\ue020aniket2604", - "isBan": false, - "isMuted": false, - "accountAge": "2016-10-09 00:13:44", - "registerOn": 1670162495.5849707, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162495.5849712, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162495.5849807, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162495.584982, - "lastIP": "a\u007fn~}i`aja~vb~j", - "deviceUUID": "a7e8e53ca84f27fba191560a42a675878dd06f77" - }, - "pb-IF4FVUkZMw==": { - "display_string": [ - "\ue030Android52000342" - ], - "profiles": [], - "name": "\ue030Android52000342", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-13 20:09:59", - "registerOn": 1670162498.6064668, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162498.606467, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162498.6064773, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162498.6064787, - "lastIP": "azo~{n~xl~}la", - "deviceUUID": "\u0015\u0003\b\u0003W\u0010\u0003YP\u0003EV\\VSLS[UYDVYYW@" - }, - "pb-IF4DU0YhVw==": { - "display_string": [ - "\ue020ItsEpicShlok", - "\ue030Android63971632", - "\ue030Android63965243", - "\ue030Android63965319", - "\ue030Android63971463" - ], - "profiles": [], - "name": "\ue020ItsEpicShlok", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-07 17:43:52", - "registerOn": 1670162513.680428, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162513.6804285, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162513.680438, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162513.6804392, - "lastIP": "a\u007fk~}l`aj`vvd{", - "deviceUUID": "3c1788c217db926c45886bc3e7da9c1d43ca2665" - }, - "pb-JiNJARBcVEdFWlxCEE9TVl1GFUVXTlRH": { - "display_string": [ - "\ue063SilentBraw", - "\ue030Android10381153" - ], - "profiles": [], - "name": "\ue063SilentBraw", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-31 17:31:10", - "registerOn": 1670162516.5999362, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162516.5999367, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162516.5999434, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162516.5999444, - "lastIP": "a~o~}lhaihaj`y", - "deviceUUID": "c5f2f26760989728bb42544168fcb20fd91220a3" - }, - "pb-IF4QVGYjDg==": { - "display_string": [ - "\ue030Android42891191" - ], - "profiles": [], - "name": "\ue030Android42891191", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-29 09:35:48", - "registerOn": 1670162522.7241318, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162522.7241323, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230413.7166016, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670231650.0815198, - "lastIP": "dvvc{vf}vaz`", - "deviceUUID": "50971078b23d76157ae5c5c460a761d3e8389d84" - }, - "pb-IF4DUlMIDg==": { - "display_string": [ - "\ue020BellicosePatriot28" - ], - "profiles": [], - "name": "\ue020BellicosePatriot28", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-28 15:48:33", - "registerOn": 1670162611.9257605, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162611.925761, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162611.9257689, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162611.92577, - "lastIP": "azj~zo~}jianf", - "deviceUUID": "b98a1f98358f91e6d342a49c79a17760c36e8e45" - }, - "pb-IF5TVxg_HQ==": { - "display_string": [ - "\ue020CombativeGemini56036" - ], - "profiles": [], - "name": "\ue020CombativeGemini56036", - "isBan": false, - "isMuted": false, - "accountAge": "2018-08-15 19:24:47", - "registerOn": 1670162659.407589, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162659.4075894, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162659.4075997, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162659.4076004, - "lastIP": "azo~{h~}jaa`d", - "deviceUUID": "cdeaa7ab4f04a8232969b6a5bce3ed897366ff7c" - }, - "pb-IF4XU0EfDw==": { - "display_string": [ - "\ue063StealthyAn" - ], - "profiles": [], - "name": "\ue063StealthyAn", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-12 17:24:20", - "registerOn": 1670162759.4246562, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162759.4246566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162759.424665, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162759.4246662, - "lastIP": "hvvazk~~oban", - "deviceUUID": "1ff84f30182f86b4b2dded5db09d2d1a291d333d" - }, - "pb-IF4-U0kNVQ==": { - "display_string": [ - "\ue020jonathansanthosh" - ], - "profiles": [], - "name": "\ue020jonathansanthosh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-28 16:09:35", - "registerOn": 1670162760.4333851, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162760.4333854, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311195.7903526, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311195.790354, - "lastIP": "a~o~}iaalaajd\u007f", - "deviceUUID": "d330a623a6cde2e6c2b9727640139e0bb4c17a01" - }, - "pb-IF4sU3A7KA==": { - "display_string": [ - "\ue030Android62339210" - ], - "profiles": [], - "name": "\ue030Android62339210", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-30 11:54:16", - "registerOn": 1670162826.8334103, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162826.8334107, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162826.8334188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162826.8334198, - "lastIP": "a}j~~naa`faie", - "deviceUUID": "faf986632b7fba345df51d66b9e74b3a9293d0a3" - }, - "pb-IF4TV2w6Bw==": { - "display_string": [ - "\ue020Balajiblaze123" - ], - "profiles": [], - "name": "\ue020Balajiblaze123", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-17 11:20:14", - "registerOn": 1670162917.199675, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162917.1996756, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163493.1986566, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670163788.2039633, - "lastIP": "azo~zi~zm~vk", - "deviceUUID": "39fab6ef9f13cec5afeb264fba1c606a5cba46b2", - "cMsgCount": 0, - "lastMsgTime": 1670163778.2536945, - "lastMsg": "tk to thi", - "cSameMsg": 0 - }, - "pb-IF4eU0wpKg==": { - "display_string": [ - "\ue063Unrelenti4" - ], - "profiles": [], - "name": "\ue063Unrelenti4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 19:46:50", - "registerOn": 1670162918.076996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162918.0769968, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259020.3829253, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259020.3829267, - "lastIP": "a\u007fk~~hfaicvvb\u007fk", - "deviceUUID": "f2601f07a78a004295486a62cf02a27b636d3a2d", - "cMsgCount": 0, - "lastMsgTime": 1670163409.8678143, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4BUxIzJg==": { - "display_string": [ - "\ue063TERRIFIER4" - ], - "profiles": [], - "name": "\ue063TERRIFIER4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-04 13:49:55", - "registerOn": 1670162948.13413, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162948.1341305, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251269.1393015, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251269.1393032, - "lastIP": "azj~z`~}kbaiix", - "deviceUUID": "f77c2e00c17b4c8dfaf8cf8dbb4b20b345855208" - }, - "pb-IF4xU3k6KA==": { - "display_string": [ - "\ue030Android63130011" - ], - "profiles": [], - "name": "\ue030Android63130011", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-04 21:57:18", - "registerOn": 1670162978.2862043, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162978.2862048, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162978.2862139, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162978.2862148, - "lastIP": "azo~{o~vm~~kd", - "deviceUUID": "671967ce943e46a829445a2691ed2228b5105c6f" - }, - "pb-IF5VU007Ng==": { - "display_string": [ - "\ue063DeviousEli", - "\ue030Android63827572" - ], - "profiles": [], - "name": "\ue063DeviousEli", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 13:47:07", - "registerOn": 1670163012.3621736, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163012.362174, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229838.5574918, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229838.557493, - "lastIP": "dvvcyva\u007f`~}kf", - "deviceUUID": "38c01a50379f84b46b232bdb4c38f8fa90b56ba8" - }, - "pb-IF4PIFQ9": { - "display_string": [ - "\ue063mrpainless", - "\ue030Android29214702" - ], - "profiles": [], - "name": "\ue063mrpainless", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-26 17:52:31", - "registerOn": 1670163079.6879, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163079.6879008, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163499.2280543, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670163499.2280557, - "lastIP": "azo~zi~~ohaja{", - "deviceUUID": "3fd5af7540d3def8bb525f9c868c41841d7845a9" - }, - "pb-IF4DVVgZJA==": { - "display_string": [ - "\ue02025mjadhav", - "\ue030Android52470937" - ], - "profiles": [], - "name": "\ue030Android52470937", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-22 20:12:08", - "registerOn": 1670163114.8267362, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163114.826737, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317314.352192, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317314.3521934, - "lastIP": "a\u007fk~~mgaibvvb~j", - "deviceUUID": "f459eddbc463b2e1c81bf49abb5c993b3ec70a62", - "cMsgCount": 0, - "lastMsgTime": 1670225143.8147142, - "lastMsg": "Smooth let's go in Fun Games ", - "cSameMsg": 0 - }, - "pb-IF4rU2EZEw==": { - "display_string": [ - "\ue030Android60974634" - ], - "profiles": [], - "name": "\ue030Android60974634", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-04 19:46:02", - "registerOn": 1670163175.9817445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163175.981745, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163175.981751, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670163175.9817526, - "lastIP": "a\u007fn~xo~~laajh", - "deviceUUID": "\u0015U\u000e" - }, - "pb-IF4mU0wODA==": { - "display_string": [ - "\ue020MagnificentBull96303" - ], - "profiles": [], - "name": "\ue020MagnificentBull96303", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 21:47:48", - "registerOn": 1670163204.1104448, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163204.1104453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300176.310488, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300176.3104894, - "lastIP": "a{vivva\u007fn~yn", - "deviceUUID": "4eb576fb20bc80f5fc11807746539bbd3fa079b5" - }, - "pb-IF5XUmsEVg==": { - "display_string": [ - "\ue020SickeningManeuver24" - ], - "profiles": [], - "name": "\ue020SickeningManeuver24", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-29 10:17:37", - "registerOn": 1670163256.475719, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163256.4757192, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163256.4757283, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670163256.4757295, - "lastIP": "a\u007fi~}vavi~~ag", - "deviceUUID": "\u0015S\u000e" - }, - "pb-IF4BPFRY": { - "display_string": [ - "\ue063TezrecT", - "\ue063Mizuhara", - "\ue020dhairyabhavya", - "\ue030Android47882430" - ], - "profiles": [], - "name": "\ue020dhairyabhavya", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-25 12:47:11", - "registerOn": 1670163277.3764045, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163277.3764052, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670249755.8521361, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249755.8521378, - "lastIP": "dvva{vayo~}m", - "deviceUUID": "34c398d35b9440b192223be7d56df29a68af1dec", - "cMsgCount": 0, - "lastMsgTime": 1670185717.2906294, - "lastMsg": "yeah", - "cSameMsg": 0 - }, - "pb-IF5QU04ZJw==": { - "display_string": [ - "\ue063MetabolicA" - ], - "profiles": [], - "name": "\ue063MetabolicA", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 08:53:16", - "registerOn": 1670163326.5330584, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163326.533059, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328981.901684, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328981.9016852, - "lastIP": "azo~zi~|vb{", - "deviceUUID": "402ba25fdb762b57bd8bea7d14fb5d71d9b94cb7" - }, - "pb-IF4UU0YbEQ==": { - "display_string": [ - "\ue063Moldyblade" - ], - "profiles": [], - "name": "\ue063Moldyblade", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 20:35:48", - "registerOn": 1670163410.8761308, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163410.876131, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227547.3232424, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670227650.706902, - "lastIP": "d|vbzh~~mhaj`|", - "deviceUUID": "7828ff056706ac82d3e1c3afa8fc109ea8b98603" - }, - "pb-IF5WU0gBHQ==": { - "display_string": [ - "\ue030Android63642729" - ], - "profiles": [], - "name": "\ue030Android63642729", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-11 18:52:12", - "registerOn": 1670163505.905853, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163505.9058537, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163505.905864, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670163505.9058652, - "lastIP": "i~vfyva|i~wk", - "deviceUUID": "2f46534a2028b8d719e515b8cedd475ebdd13b76" - }, - "pb-IF4dUmU5Fg==": { - "display_string": [ - "\ue063S2sharpsho" - ], - "profiles": [], - "name": "\ue063S2sharpsho", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-11 20:50:41", - "registerOn": 1670163538.6420956, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163538.642096, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163538.6421034, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670163658.7567844, - "lastIP": "dxvc~vaym~zk", - "deviceUUID": "73c3137f6f6b4410022e228730d5eeb1bddf954a", - "cMsgCount": 0, - "lastMsgTime": 1670163800.350488, - "lastMsg": "madar choot parton", - "cSameMsg": 0 - }, - "pb-IF4sU0sDDw==": { - "display_string": [ - "\ue063ThunderBlu" - ], - "profiles": [], - "name": "\ue063ThunderBlu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 20:06:37", - "registerOn": 1670163676.1078162, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163676.107817, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223998.2389348, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223998.2389364, - "lastIP": "a~j~}hfajd}vgv", - "deviceUUID": "10480e31fe8d4cbdc455787ea61ef8eb7d51a07c", - "cMsgCount": 0, - "lastMsgTime": 1670225178.1323888, - "lastMsg": "Vivek is strong ", - "cSameMsg": 0 - }, - "pb-IF4eU1BbMw==": { - "display_string": [ - "\ue063DiamondSqu" - ], - "profiles": [], - "name": "\ue063DiamondSqu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 19:07:32", - "registerOn": 1670163746.3978229, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163746.3978236, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163746.3978307, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670163746.3978314, - "lastIP": "a~o~}hiaic{vgv", - "deviceUUID": "be7b9e39530bfffb6c977ec00a50b69572a12043" - }, - "pb-LV4FVxEOBxcUVQxERkNWUFFA": { - "display_string": [ - "\ue020parthk1265", - "\ue030Android14858832" - ], - "profiles": [], - "name": "\ue020rajmewada12", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-01 13:59:58", - "registerOn": 1670163846.7407637, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163846.7407644, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327213.4659066, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327213.4659083, - "lastIP": "a\u007fn~}heajdxvawk", - "deviceUUID": "364ea53ec91919aba274c9f665704d58ebd0fd1b", - "cMsgCount": 0, - "lastMsgTime": 1670327282.4366877, - "lastMsg": "wait me aaya blue me", - "cSameMsg": 0 - }, - "pb-IF4-U3gdFw==": { - "display_string": [ - "\ue030Android63053623" - ], - "profiles": [], - "name": "\ue030Android63053623", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-01 07:24:54", - "registerOn": 1670163922.0687854, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163922.068786, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252209.4027324, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670267706.396747, - "lastIP": "azo~{i~}mdaig~", - "deviceUUID": "548cce6a079bbda740d03793a1d78e999a4c1fd4", - "cMsgCount": 0, - "lastMsgTime": 1670263481.4848268, - "lastMsg": " ", - "cSameMsg": 0 - }, - "pb-IF4tCRgv": { - "display_string": [ - "\ue063captshivi" - ], - "profiles": [], - "name": "\ue063captshivi", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-03 13:34:45", - "registerOn": 1670164025.4923496, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164025.49235, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334934.2020981, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334934.2020998, - "lastIP": "a\u007fk~}iaaieaidx", - "deviceUUID": "74c0175ba798dc3c92fc6bc7f4d0b6e590842648", - "cMsgCount": 0, - "lastMsgTime": 1670307619.9506536, - "lastMsg": "chutiya red team", - "cSameMsg": 0 - }, - "pb-IF5XVVACLA==": { - "display_string": [ - "\ue020blackury2003" - ], - "profiles": [], - "name": "\ue020blackury2003", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-02 15:20:15", - "registerOn": 1670164049.4426455, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164049.442646, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164049.442653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164049.4426541, - "lastIP": "dvvcxvb~m~}md", - "deviceUUID": "4675022b8c874c961302222469bb0f662d3d85e7" - }, - "pb-IF4RU0ksMQ==": { - "display_string": [ - "\ue020TorrentialEase43" - ], - "profiles": [], - "name": "\ue020TorrentialEase43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 16:52:16", - "registerOn": 1670164102.6703491, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164102.6703496, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164102.6703582, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164102.6703591, - "lastIP": "azo~{a~~``a`i", - "deviceUUID": "0fa470a438334471e61c657cd253c17a09542d24" - }, - "pb-IF4LU28SJA==": { - "display_string": [ - "\ue020vinothmptc" - ], - "profiles": [], - "name": "\ue020vinothmptc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-27 09:18:54", - "registerOn": 1670164143.1279385, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164143.127939, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234789.677719, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670236341.1902742, - "lastIP": "azo~zi~~`fa`", - "deviceUUID": "1f4da9f99faef8dbf64b27b1dbcc7e6172f83ea3" - }, - "pb-IF4WU0QRIA==": { - "display_string": [ - "\ue063BushyInstr" - ], - "profiles": [], - "name": "\ue020BushyInstructor7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 15:18:50", - "registerOn": 1670164149.8465316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164149.846532, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316097.8380039, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670333604.599542, - "lastIP": "azj~z`~|m~}id", - "deviceUUID": "d2ecfc08815837a8fc4a77652e70731988e1e3a1" - }, - "pb-JiNJARBdVEFAXl5GGEZZVFZCGUhXRFBC": { - "display_string": [ - "\ue063Sayan8274" - ], - "profiles": [], - "name": "\ue063Sayan8274", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-24 10:33:35", - "registerOn": 1670164201.407305, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164201.4073057, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164201.407316, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164201.4073167, - "lastIP": "azo~{h~~odaicz", - "deviceUUID": "0c88faba9ad4713a2bef5d5632f64df42945ba10" - }, - "pb-IF4BVVVYCA==": { - "display_string": [ - "\ue063LocalTruce" - ], - "profiles": [], - "name": "\ue063LocalTruce", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-05 19:09:08", - "registerOn": 1670164252.2043846, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164252.2043853, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252167.2436306, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252167.243632, - "lastIP": "dvvcyvfzvayh", - "deviceUUID": "2f035865d2bc9f545fd7215ec120feb18e12059a" - }, - "pb-IF4QU048Nw==": { - "display_string": [ - "\ue020NauseousJudge10" - ], - "profiles": [], - "name": "\ue020NauseousJudge10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 15:33:10", - "registerOn": 1670164257.225283, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164257.2252831, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164257.2252913, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164257.225292, - "lastIP": "a\u007fk~}hga`~wa", - "deviceUUID": "db15d2b826ed6a1b01a15850026d14b24b7325fe" - }, - "pb-IF5UU05aHQ==": { - "display_string": [ - "\ue020VoidPort2" - ], - "profiles": [], - "name": "\ue020VoidPort2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 20:44:30", - "registerOn": 1670164281.285934, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164281.285935, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332643.266141, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670335579.7199364, - "lastIP": "a~n~xk~~ngaihx", - "deviceUUID": "caf2d45fa5cd9bb25979b3fe1f5882117e05180a", - "cMsgCount": 0, - "lastMsgTime": 1670335553.6695516, - "lastMsg": "why", - "cSameMsg": 0 - }, - "pb-IF4wV24HBw==": { - "display_string": [ - "\ue063GiantRobot" - ], - "profiles": [], - "name": "\ue063GiantRobot", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-27 02:36:51", - "registerOn": 1670164282.278136, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164282.2781367, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315871.08607, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315871.0860713, - "lastIP": "a~o~va~~ahaiex", - "deviceUUID": "cf5348ed3c9d0bc1baaf7a1c8a75e78e76e90b53", - "cMsgCount": 0, - "lastMsgTime": 1670316690.215262, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5TEHhY": { - "display_string": [ - "\ue063rvrvrvrvrv", - "\ue030Android24764519" - ], - "profiles": [], - "name": "\ue063rvrvrvrvrv", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-30 19:18:24", - "registerOn": 1670164347.5251415, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164347.525142, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164347.5251486, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164347.5251496, - "lastIP": "a\u007fk~}maaiiaiby", - "deviceUUID": "204621b919fc39e665181c2f15b7a496aaec9a81", - "cMsgCount": 0, - "lastMsgTime": 1670164626.8507328, - "lastMsg": "tu ne to liy mer", - "cSameMsg": 0 - }, - "pb-IF4qU0sOKw==": { - "display_string": [ - "\ue020MetallicPainting21" - ], - "profiles": [], - "name": "\ue020MetallicPainting21", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-05 20:06:51", - "registerOn": 1670164491.0075312, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164491.0075314, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164491.0075378, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164491.0075388, - "lastIP": "a\u007fn~}i`aihyva~i", - "deviceUUID": "bad7b7a03410739470d0e5d8bd092dec11391419" - }, - "pb-IF49U0QJDw==": { - "display_string": [ - "\ue063CRIMINAL", - "\ue063NOMERCY", - "\ue063Babysimran", - "\ue030PC605729", - "\ue030Android63861037" - ], - "profiles": [], - "name": "\ue030PC605729", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-29 22:04:04", - "registerOn": 1670164546.191456, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164546.1914566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320992.0349038, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320992.0349052, - "lastIP": "azo~{i~}mbakg", - "deviceUUID": "548cce6a079bbda740d03793a1d78e999a4c1fd4", - "cMsgCount": 0, - "lastMsgTime": 1670227558.649517, - "lastMsg": "bc", - "cSameMsg": 0 - }, - "pb-IF4gU0wxBw==": { - "display_string": [ - "\ue063VOIDG0D" - ], - "profiles": [], - "name": "\ue063VOIDG0D", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 16:06:19", - "registerOn": 1670164581.3468778, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164581.3468783, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315275.887635, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670335371.0051117, - "lastIP": "a\u007fk~}hhaniaig|", - "deviceUUID": "53e096add4bc0eb2d359d20b0860961ff68cf255", - "cMsgCount": 0, - "lastMsgTime": 1670336266.6289096, - "lastMsg": "ok ", - "cSameMsg": 0 - }, - "pb-IF4sJEMH": { - "display_string": [ - "\ue063KingZaki96" - ], - "profiles": [], - "name": "\ue063KingZaki96", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-04 16:47:02", - "registerOn": 1670164654.5549097, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164654.5549104, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164654.554918, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164654.554919, - "lastIP": "azo~{m~}hcaii}", - "deviceUUID": "12d88ff9cac799b62853cb2cc4745424db9a6892" - }, - "pb-IF4CMWc7": { - "display_string": [ - "\ue063Kisimo1994", - "\ue030Android21430556" - ], - "profiles": [], - "name": "\ue063Kisimo1994", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-10 23:12:25", - "registerOn": 1670164688.7271757, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164688.7271764, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164688.7271838, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164688.7271845, - "lastIP": "a\u007fn~}haai`{vbzh", - "deviceUUID": "baadf7630c1076763ba20d3c1290f44922c08fe2" - }, - "pb-IF5RUlkoHQ==": { - "display_string": [ - "\ue063serialhunt" - ], - "profiles": [], - "name": "\ue063serialhunt", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-09 19:50:31", - "registerOn": 1670164765.273882, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164765.2738826, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236590.2390156, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236590.2390168, - "lastIP": "dvvd|vixvavi", - "deviceUUID": "465f5538f809e3599131d3056a80342cb72670da" - }, - "pb-IF4CU0QpCA==": { - "display_string": [ - "\ue020MADDY1321" - ], - "profiles": [], - "name": "\ue020MADDY1321", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 23:47:39", - "registerOn": 1670164826.1793785, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164826.1793792, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164826.1793885, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670165667.7923439, - "lastIP": "azj~zo~}hfan`", - "deviceUUID": "375e940bc136e68d34cc7bee3b953fabea37ef0f" - }, - "pb-IF4dVFgCLg==": { - "display_string": [ - "\ue020Attitudeboy997" - ], - "profiles": [], - "name": "\ue020Attitudeboy997", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-17 09:31:17", - "registerOn": 1670164987.7380915, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164987.738092, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164987.738101, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670165061.6842158, - "lastIP": "dvvc{vaxj~~lf", - "deviceUUID": "9fc8f0b8cdb4ba85753351b714f6ac2055c00337" - }, - "pb-IF4eU0ggAw==": { - "display_string": [ - "\ue063BooI1219" - ], - "profiles": [], - "name": "\ue063BooI1219", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 13:48:49", - "registerOn": 1670165033.8957849, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165033.8957858, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165033.895794, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165033.8957946, - "lastIP": "azo~{a~}kbaia}", - "deviceUUID": "cd46691149db0b8e910ee622d3573aba199c0745" - }, - "pb-IF4AU04IHQ==": { - "display_string": [ - "\ue020SillyMembrane32" - ], - "profiles": [], - "name": "\ue020SillyMembrane32", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 20:19:32", - "registerOn": 1670165143.316132, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165143.3161325, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330471.1023283, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670331130.8405757, - "lastIP": "a}j~~nbaiiwvb}n", - "deviceUUID": "dcb83bdb40ec19416943298f2f7f1ab92b4523f8" - }, - "pb-IF40VEEMVA==": { - "display_string": [ - "\ue020AloofSoldier58271" - ], - "profiles": [], - "name": "\ue020AloofSoldier58271", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-30 18:21:06", - "registerOn": 1670165273.7302299, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165273.7302303, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242894.0537724, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242894.0537736, - "lastIP": "a\u007fn~~acaibwvb|a", - "deviceUUID": "77b69cdd0dc41f6e9d050e1ca7fd8e3398cfd907" - }, - "pb-JiNJARFdVUJBW1tAGUVUVV1HFkBeQ1BG": { - "display_string": [ - "\ue020HacktasticBeetle2600" - ], - "profiles": [], - "name": "\ue020HacktasticBeetle2600", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-15 15:10:21", - "registerOn": 1670165319.911316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165319.911317, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165319.9113255, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165319.9113266, - "lastIP": "a|j~~mdakeajd~", - "deviceUUID": "cd4d8f165ce494bff4ef4844e780a57d8a4e1c55" - }, - "pb-IF4CNEE7": { - "display_string": [ - "\ue020arsh2468" - ], - "profiles": [], - "name": "\ue020arsh2468", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-21 16:27:30", - "registerOn": 1670165350.0381484, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165350.0381489, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165350.038158, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670168944.1455185, - "lastIP": "evvhvvg~vb{l", - "deviceUUID": "25afc280c6a0ad7777fb2f6f2813d595f5c15365" - }, - "pb-IF4sU04cFQ==": { - "display_string": [ - "\ue063Alpha910" - ], - "profiles": [], - "name": "\ue063Alpha910", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 20:07:44", - "registerOn": 1670165431.2945395, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165431.2945404, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165431.294547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165431.294548, - "lastIP": "a\u007fn~}i`ajc{va~l", - "deviceUUID": "8b22bf20be9c77044dd4f640a5c8a3446d61660d" - }, - "pb-IF4eU08jEA==": { - "display_string": [ - "\ue020UnconvincingMaxim19" - ], - "profiles": [], - "name": "\ue020UnconvincingMaxim19", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 23:04:35", - "registerOn": 1670165442.3797126, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165442.3797133, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165442.3797226, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165442.3797233, - "lastIP": "a|o~vo~~hbaihx", - "deviceUUID": "c18fd0569eb1d8c3872661f7dab7368185ba25c9" - }, - "pb-IF49U2wiLA==": { - "display_string": [ - "\ue020Thanu41" - ], - "profiles": [], - "name": "\ue020Thanu41", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-11 16:32:02", - "registerOn": 1670165516.6016057, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165516.6016061, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165516.6016152, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670165663.786642, - "lastIP": "azo~{m~wa~}kd", - "deviceUUID": "1da86ac95b2dc46ed8d9b263a684c35764ae6d1a" - }, - "pb-IF4dKBYM": { - "display_string": [ - "\ue020Naimin95" - ], - "profiles": [], - "name": "\ue020Naimin95", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-02 11:15:18", - "registerOn": 1670165626.98999, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165626.9899907, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165626.989999, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165626.99, - "lastIP": "dvvcyva}k~}k`", - "deviceUUID": "06ca51e8f74c641f508c4df9dca664758d392b9e" - }, - "pb-IF4uUxMpLQ==": { - "display_string": [ - "\ue030Android60309780" - ], - "profiles": [], - "name": "\ue030Android60309780", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-07 17:03:23", - "registerOn": 1670165636.11352, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165636.1135206, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165636.1135285, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165636.1135297, - "lastIP": "awk~wk~}idaki", - "deviceUUID": "\u0015V_QY\u0016X\tVQCW\u000bSXB\u0004XYXMYXYUD" - }, - "pb-IF4iAGsC": { - "display_string": [ - "\ue020SleekPossum9447", - "\ue030Android38758359" - ], - "profiles": [], - "name": "\ue020SleekPossum9447", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-22 14:58:26", - "registerOn": 1670165700.3785243, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165700.378525, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165700.3785322, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165700.378533, - "lastIP": "a}j~~naaohaag", - "deviceUUID": "c8d611bc46ce05c172ed28e3d588b52e03be103d" - }, - "pb-IF4rUxdeUg==": { - "display_string": [ - "\ue020RootinTootinOoze9610" - ], - "profiles": [], - "name": "\ue020RootinTootinOoze9610", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-21 11:09:05", - "registerOn": 1670165761.4635248, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165761.4635255, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165761.4635344, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165761.463535, - "lastIP": "a\u007fn~~aealaaae", - "deviceUUID": "97e8d9436d1c81297ff0a1830fcde1d80a582805" - }, - "pb-IF4-UxI7Mg==": { - "display_string": [ - "\ue063FervidPlur" - ], - "profiles": [], - "name": "\ue020FervidPlurality13", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-03 20:18:08", - "registerOn": 1670165795.557572, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165795.5575724, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332288.0018997, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332288.0019014, - "lastIP": "d|vbzh~~neaja\u007f", - "deviceUUID": "958364163981ea4653f377dc0e7f54814a049382" - }, - "pb-IF5XVWcCJA==": { - "display_string": [ - "\ue063PaanApitit", - "\ue030Android47505090" - ], - "profiles": [], - "name": "\ue063PaanApitit", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-05 14:02:52", - "registerOn": 1670165815.624136, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165815.6241364, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165815.6241448, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165815.6241457, - "lastIP": "dvvb\u007fm~|j~~je", - "deviceUUID": "f8035cae6006897ad6311205d7996bd2ad5ba7f8", - "cMsgCount": 0, - "lastMsgTime": 1670165895.5566382, - "lastMsg": "noooowaeee", - "cSameMsg": 0 - }, - "pb-IF4LUhcoBA==": { - "display_string": [ - "\ue030Android54473871" - ], - "profiles": [], - "name": "\ue030Android54473871", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-05 22:03:55", - "registerOn": 1670165861.8738713, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165861.873872, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165861.8738816, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165861.8738825, - "lastIP": "b}k~~`iamfaiav", - "deviceUUID": "d6ff54649e1a747e0ee737524871c74a0afb3590" - }, - "pb-IF4PVUwcFw==": { - "display_string": [ - "\ue020weirdassalien27" - ], - "profiles": [], - "name": "\ue020weirdassalien27", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-26 14:02:43", - "registerOn": 1670165877.8656523, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165877.8656533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252418.1333983, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670253578.2585526, - "lastIP": "azo~{i~~`dang", - "deviceUUID": "401586b3ba51558fcd7b099b93715c7b010b6e12" - }, - "pb-IF4eU0snCA==": { - "display_string": [ - "\ue020Gowthamsword" - ], - "profiles": [], - "name": "\ue020Gowthamsword", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 11:27:22", - "registerOn": 1670165885.841125, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165885.8411257, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165885.8411455, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165885.8411467, - "lastIP": "b}k~}jhaiezvhw", - "deviceUUID": "abeac0c14009304c2520bfa38520dc095c3c8c95" - }, - "pb-IF4nU2ssKg==": { - "display_string": [ - "\ue020PaternalisticEmu11", - "\ue030Android60829722" - ], - "profiles": [], - "name": "\ue020PaternalisticEmu11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-06 14:54:31", - "registerOn": 1670165899.9166162, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165899.916617, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670269221.0665312, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268211.3509424, - "lastIP": "a\u007fn~}iealhalh", - "deviceUUID": "2f091a8679215a74c459c99f08fca9a0e8d88944", - "cMsgCount": 0, - "lastMsgTime": 1670269247.1670132, - "lastMsg": "cat", - "cSameMsg": 0 - }, - "pb-IF5dV21TEA==": { - "display_string": [ - "\ue063ShaikhFaha" - ], - "profiles": [], - "name": "\ue063ShaikhFaha", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-08 18:18:14", - "registerOn": 1670165910.9758298, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165910.9758303, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670262908.314055, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670262908.314056, - "lastIP": "dvvc{vb{a~y`", - "deviceUUID": "b05632b1fb80c0652753b333b6527f0774019c10" - }, - "pb-IF4pU1ApEg==": { - "display_string": [ - "\ue063D4kgaming", - "\ue030Android63984902" - ], - "profiles": [], - "name": "\ue063D4kgaming", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 19:41:56", - "registerOn": 1670166034.826491, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166034.8264918, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166034.8265004, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166034.8265011, - "lastIP": "i|vazo~~ofaid}", - "deviceUUID": "27fc08532b5ed8e160644b0e3b951c7af7b1a6eb" - }, - "pb-IF4cUnc6DQ==": { - "display_string": [ - "\ue020Wakandansoldier" - ], - "profiles": [], - "name": "\ue020Wakandansoldier", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-01 19:14:35", - "registerOn": 1670166061.5229938, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166061.5229945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166061.5230021, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166061.523003, - "lastIP": "bxvf\u007fvaxn~~ac", - "deviceUUID": "0664431d96d1a4ca038792481c8158fdc64a3087" - }, - "pb-IF4sU0gNFg==": { - "display_string": [ - "\ue020bhumit21" - ], - "profiles": [], - "name": "\ue020bhumit21", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-27 14:25:15", - "registerOn": 1670166148.771087, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166148.7710874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223750.3416817, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223750.3416831, - "lastIP": "dvvc{vb}n~~ah", - "deviceUUID": "3cefea855bf56c2cbcff1cb9778307a78aad5276" - }, - "pb-IF4JU08KCg==": { - "display_string": [ - "\ue063PenitentDi" - ], - "profiles": [], - "name": "\ue063PenitentDi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 19:01:50", - "registerOn": 1670166218.00192, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166218.0019205, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166218.0019293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166218.0019302, - "lastIP": "dvvc}vb\u007fj~~ai", - "deviceUUID": "ec0325ae89346ec4a94ec12bb4a64fb75aaf8900" - }, - "pb-IF4sVXA_AA==": { - "display_string": [ - "\ue020ASSASINSURYA" - ], - "profiles": [], - "name": "\ue020ASSASINSURYA", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-02 16:19:07", - "registerOn": 1670166222.0407639, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166222.0407643, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166222.0407724, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166222.0407732, - "lastIP": "azo~{n~~kfaibw", - "deviceUUID": "74d1cb77ef378265911b3c56cb4911bfce20ee05" - }, - "pb-IF4RU1BTFA==": { - "display_string": [ - "\ue063planrearer" - ], - "profiles": [], - "name": "\ue063planrearer", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 12:17:51", - "registerOn": 1670166287.2511134, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166287.2511141, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166287.251122, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166287.2511227, - "lastIP": "a~i~vj~}`~~li", - "deviceUUID": "ce38ef6f088efc7268bce35fe6caa559bb69f1d6" - }, - "pb-IF4xU087Lw==": { - "display_string": [ - "\ue030Android63984885" - ], - "profiles": [], - "name": "\ue030Android63984885", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 19:38:08", - "registerOn": 1670166313.3401363, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166313.340137, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166313.3401449, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166313.3401458, - "lastIP": "avl~~m~}ifai`~", - "deviceUUID": "f08347ee837b54365c1bbea4f2907dc9c0839a3a" - }, - "pb-IF40U3MyVQ==": { - "display_string": [ - "\ue063CautiousPr" - ], - "profiles": [], - "name": "\ue063CautiousPr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-09 19:08:52", - "registerOn": 1670166369.590827, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166369.590828, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670294962.5891352, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670296369.6714978, - "lastIP": "b}k~}kcaniaifx", - "deviceUUID": "39246c8659ea3044a5bead7eacfb2a4a1a738619", - "cMsgCount": 0, - "lastMsgTime": 1670171554.6665184, - "lastMsg": "\ud83d\udca6\ud83d\udca6", - "cSameMsg": 0 - }, - "pb-IF4TU00FLg==": { - "display_string": [ - "\ue020meetraul" - ], - "profiles": [], - "name": "\ue020meetraul", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 10:44:31", - "registerOn": 1670166457.8404708, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166457.8404713, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166457.8404794, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166457.8404803, - "lastIP": "dvvc}vb{m~}me", - "deviceUUID": "a4546cc05c213bc94377ea74589e6e5e93a15011" - }, - "pb-IF4hVREELg==": { - "display_string": [ - "\ue063EternalChi", - "\ue030Android45695456" - ], - "profiles": [], - "name": "\ue063EternalChi", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-19 00:30:31", - "registerOn": 1670166759.9992406, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166759.999241, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166759.9992487, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670166815.828955, - "lastIP": "b}k~~ohaj`vvb\u007fo", - "deviceUUID": "5d1fd35ad6de7cf6224250984ceb1a699f372096", - "cMsgCount": 0, - "lastMsgTime": 1670169766.5801232, - "lastMsg": "I am worst player too ", - "cSameMsg": 0 - }, - "pb-IF4tUnUeDA==": { - "display_string": [ - "\ue063SVSavla" - ], - "profiles": [], - "name": "\ue063SVSavla", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-25 00:37:29", - "registerOn": 1670166760.9934235, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166760.993424, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166760.9934316, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166760.993432, - "lastIP": "a\u007fk~~lbaiaajdy", - "deviceUUID": "8bbbd6f9befc6b28f29b4a23552779248ff80649" - }, - "pb-IF4UUmQbLg==": { - "display_string": [ - "\ue020GrotesqueBargain17" - ], - "profiles": [], - "name": "\ue020GrotesqueBargain17", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-05 10:12:59", - "registerOn": 1670166827.198648, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166827.1986487, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166827.1986573, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166827.1986582, - "lastIP": "bxvf}vbwvhw", - "deviceUUID": "4c621f0b2d6559f1a1a462a50de2d6c0d3ba5564" - }, - "pb-IF4MU0UlCg==": { - "display_string": [ - "\ue020WatDocument29" - ], - "profiles": [], - "name": "\ue020WatDocument29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-04 13:11:30", - "registerOn": 1670166918.549536, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166918.549537, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166918.5495458, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166918.5495462, - "lastIP": "a\u007fn~~acaig{vayj", - "deviceUUID": "39b2745838b0d9993ed845c6bf1700aaced267e9", - "cMsgCount": 0, - "lastMsgTime": 1670167240.3673563, - "lastMsg": "nice \ud83d\udc4d\ud83d\ude42", - "cSameMsg": 0 - }, - "pb-IF4HU3YGEQ==": { - "display_string": [ - "\ue063raiyyan095" - ], - "profiles": [], - "name": "\ue063raiyyan095", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 14:32:50", - "registerOn": 1670167401.2902663, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167401.2902672, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167401.2902741, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670171495.473114, - "lastIP": "a~o~v`~~n~~oe", - "deviceUUID": "bf6c56f6373e0204da59d88191bb526bfa5cd484", - "cMsgCount": 0, - "lastMsgTime": 1670167582.42784, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4tUkQaCg==": { - "display_string": [ - "\ue063itsmohit24" - ], - "profiles": [], - "name": "\ue063itsmohit24", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-29 09:03:46", - "registerOn": 1670167410.1924782, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167410.1924787, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167410.1924858, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167410.192487, - "lastIP": "a~o~va~~naajb}", - "deviceUUID": "6575026d70ced12f5e8ce050da2c39162874affd" - }, - "pb-IF4SUxMmKA==": { - "display_string": [ - "\ue063GiltJustif", - "\ue030Android60259654" - ], - "profiles": [], - "name": "\ue063GiltJustif", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-06 21:34:55", - "registerOn": 1670167432.2450662, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167432.2450671, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167432.2450767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167432.2450776, - "lastIP": "ax`~xj~xi~~ma", - "deviceUUID": "38f9f4d8bbe68c3e6a91965157f9dbd6eacf755e" - }, - "pb-IF4PUnM-Lw==": { - "display_string": [ - "\ue030Android56697829" - ], - "profiles": [], - "name": "\ue030Android56697829", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-14 10:37:22", - "registerOn": 1670167460.3940463, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167460.394047, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167460.3940547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167460.3940556, - "lastIP": "azo~|j~zvb\u007fh", - "deviceUUID": "7cf859ef637f5dac81e22503d1db62cd00146ece" - }, - "pb-IF40UkQYJg==": { - "display_string": [ - "\ue063Navestien6" - ], - "profiles": [], - "name": "\ue020Navestien666", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-30 22:26:21", - "registerOn": 1670167462.3991795, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167462.39918, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329314.4762757, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329314.4762769, - "lastIP": "b\u007fm~}mcaib\u007fvh}", - "deviceUUID": "6e46be3c367cd489a94f4ed2ab1ecd1102ff068d", - "cMsgCount": 0, - "lastMsgTime": 1670329576.4746506, - "lastMsg": "ye kaise aya", - "cSameMsg": 0 - }, - "pb-IF4DU3AABw==": { - "display_string": [ - "\ue020YogeYogesh14", - "\ue030Android63935609", - "\ue030Android63935650", - "\ue030Android63935668", - "\ue030Android63935638" - ], - "profiles": [], - "name": "\ue020YogeYogesh14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-28 01:29:12", - "registerOn": 1670167474.517545, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167474.5175455, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670303696.2627728, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670303696.2627742, - "lastIP": "azo~{a~~ndajcv", - "deviceUUID": "f213df33642e4ebc54b521e0d617c0a8ed131fb5", - "cMsgCount": 0, - "lastMsgTime": 1670304477.640112, - "lastMsg": "go", - "cSameMsg": 0 - }, - "pb-IF4IU0waNQ==": { - "display_string": [ - "\ue063kartikm52" - ], - "profiles": [], - "name": "\ue063kartikm52", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 16:21:29", - "registerOn": 1670167486.5033967, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167486.5033977, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167486.5034065, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167486.5034077, - "lastIP": "a\u007fk~~n~~j~xa", - "deviceUUID": "483b4781309f463e2802d07dea36b718954078e8", - "cMsgCount": 0, - "lastMsgTime": 1670168415.0340774, - "lastMsg": "super", - "cSameMsg": 0 - }, - "pb-IF4eV0oMLw==": { - "display_string": [ - "\ue020TroublesomeAvail4" - ], - "profiles": [], - "name": "\ue020TroublesomeAvail4", - "isBan": false, - "isMuted": false, - "accountAge": "2019-03-15 16:16:24", - "registerOn": 1670167634.9539022, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167634.9539032, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167634.9539106, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167634.9539115, - "lastIP": "dvvcyvb~k~~k", - "deviceUUID": "1f209ff708b6750a46b9bef94d187fbfd57de283" - }, - "pb-IF4gU3cIPQ==": { - "display_string": [ - "\ue020Nirucraze" - ], - "profiles": [], - "name": "\ue020Nirucraze", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 09:15:05", - "registerOn": 1670167676.0900483, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167676.0900488, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167676.0900562, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167676.090057, - "lastIP": "a}j~~oba`cajby", - "deviceUUID": "7de066ef5e229c0c9dc2f14c52854c5aacdb17f1" - }, - "pb-IF5cU00kKg==": { - "display_string": [ - "\ue063Headhunter", - "\ue030Android61110362" - ], - "profiles": [], - "name": "\ue063Headhunter", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 12:37:00", - "registerOn": 1670167684.3128276, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167684.312828, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167684.312836, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167684.312837, - "lastIP": "a\u007fk~vm~wi~~md", - "deviceUUID": "9512b2cf2c5d0983d4845e3c85ca5840b37965d4" - }, - "pb-IF4XU0w8Ug==": { - "display_string": [ - "\ue030Android63833158" - ], - "profiles": [], - "name": "\ue030Android63833158", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 13:15:38", - "registerOn": 1670167702.4814215, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167702.4814224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167702.4814298, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670174741.238331, - "lastIP": "azo~{n~~jfai`w", - "deviceUUID": "\u0015QU\u0004QBP^QQ\u0011V\\\u0002X\u0011WZRQARZXPL" - }, - "pb-IF4iVXQnKw==": { - "display_string": [ - "\ue02046DEVILBoy" - ], - "profiles": [], - "name": "\ue02046DEVILBoy", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-25 22:21:46", - "registerOn": 1670167927.9781718, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167927.9781728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167927.9781814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167927.9781823, - "lastIP": "azo~{n~}ieaja{", - "deviceUUID": "e629df65a638bf4b934b80d4854b7e4ccbea2d51" - }, - "pb-IF4yUmsiXQ==": { - "display_string": [ - "\ue030Android55846320" - ], - "profiles": [], - "name": "\ue030Android55846320", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-06 09:37:07", - "registerOn": 1670167942.072769, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167942.0727696, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167942.0727766, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167942.072777, - "lastIP": "a~n~~l~~maa`h", - "deviceUUID": "a5b2bb3e214b2b0f29330b1f6c3a59af7504a787" - }, - "pb-IF4OU0cMLw==": { - "display_string": [ - "\ue020prashantrajputreaba", - "\ue030Android63743210" - ], - "profiles": [], - "name": "\ue020prashantrajputreaba", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 12:46:38", - "registerOn": 1670168090.6077995, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168090.6078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256989.3859186, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256989.38592, - "lastIP": "azo~|k~|l~~nb", - "deviceUUID": "85dacad1b2327afd1235f5ac9d9f2f5d720cad47" - }, - "pb-IF4IU04pBA==": { - "display_string": [ - "\ue020InnateSinner19", - "\ue030Android63932733" - ], - "profiles": [], - "name": "\ue020InnateSinner19", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 18:22:07", - "registerOn": 1670168115.6994216, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168115.6994221, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300721.2593122, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300721.2593453, - "lastIP": "a\u007fk~}i~~neaod", - "deviceUUID": "a0dbf538cbca995179cc926b8597a2599c6d01c7", - "cMsgCount": 0, - "lastMsgTime": 1670301010.8260713, - "lastMsg": "sucide squad ", - "cSameMsg": 0 - }, - "pb-IF4oU3oZNg==": { - "display_string": [ - "\ue030Android63217110" - ], - "profiles": [], - "name": "\ue030Android63217110", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-09 18:17:36", - "registerOn": 1670168159.9885747, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168159.9885752, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317229.0546596, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317229.054661, - "lastIP": "azo~zi~~`haiez", - "deviceUUID": "26670b93a1f1f19f329cbb6fd2ec42ff8a03be17" - }, - "pb-IF5dU084Pw==": { - "display_string": [ - "\ue030Android63903756" - ], - "profiles": [], - "name": "\ue030Android63903756", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 23:21:24", - "registerOn": 1670168260.1819232, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168260.1819236, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168260.1819322, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670168462.549141, - "lastIP": "azo~{a~ym~yk", - "deviceUUID": "d342a67421820e4a47715becb38185e609b3963a" - }, - "pb-IF4LU0sFBA==": { - "display_string": [ - "\ue063AwesomeUni" - ], - "profiles": [], - "name": "\ue063AwesomeUni", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 09:14:30", - "registerOn": 1670168441.779381, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168441.7793818, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212071.9255252, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212071.9255266, - "lastIP": "dvvcyvbzvayi", - "deviceUUID": "333c7b471173a561f43cb4f0d1d0ce56331bfd2f" - }, - "pb-IF4-U0gPUw==": { - "display_string": [ - "\ue020sahiljaiswal124" - ], - "profiles": [], - "name": "\ue020sahiljaiswal124", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 19:12:40", - "registerOn": 1670168577.2081323, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168577.208133, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168577.2081406, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168577.2081413, - "lastIP": "dxvbvvayi~~n`", - "deviceUUID": "181b9dfe147573c0d55a5aeef8a5c86d5b6e7681" - }, - "pb-IF4XV1k7Hw==": { - "display_string": [ - "\ue020louis12king018806660" - ], - "profiles": [], - "name": "\ue020louis12king018806660", - "isBan": false, - "isMuted": false, - "accountAge": "2019-06-02 02:28:59", - "registerOn": 1670168642.4050496, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168642.4050503, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168642.405059, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168642.40506, - "lastIP": "a\u007fn~~ahajdaog", - "deviceUUID": "fb5c7aee9d5a3d954ac47c2d264e36061d4bd094" - }, - "pb-IF4DU00TEw==": { - "display_string": [ - "\ue020ImpregnableInsanity1", - "\ue030Android63902876", - "\ue030Android63906184" - ], - "profiles": [], - "name": "\ue030Android63902876", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 20:44:22", - "registerOn": 1670168714.7566276, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168714.7566283, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328694.657741, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328694.6577425, - "lastIP": "a\u007fn~}hcakiaidv", - "deviceUUID": "a4f8f9370a0add1d52605546a45bf61524401bde", - "cMsgCount": 0, - "lastMsgTime": 1670235724.3246107, - "lastMsg": "hi", - "cSameMsg": 0 - }, - "pb-IF4QVXUqDg==": { - "display_string": [ - "\ue020ismartrohit" - ], - "profiles": [], - "name": "\ue020ismartrohit", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-02 16:35:13", - "registerOn": 1670168771.8602855, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168771.860286, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256717.3799422, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256717.3799434, - "lastIP": "azo~|k~}jiaia}", - "deviceUUID": "b367cb7d689d685aa944611ee2fa21b9e92231ee" - }, - "pb-IF4uU0kIFw==": { - "display_string": [ - "\ue030Android63763752" - ], - "profiles": [], - "name": "\ue030Android63763752", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 14:36:02", - "registerOn": 1670168774.8737438, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168774.8737447, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168774.873753, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168774.873754, - "lastIP": "hvva~k~~kiaih|", - "deviceUUID": "8a7b1ea9eeb5c78cb2c8d1d8e88340af06c02d08" - }, - "pb-IF4CU0MzBg==": { - "display_string": [ - "\ue020HIREN1AHIR" - ], - "profiles": [], - "name": "\ue020HIREN1AHIR", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-21 21:18:26", - "registerOn": 1670168800.9490013, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168800.9490016, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168800.9490104, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168800.9490118, - "lastIP": "aakha`aaih}", - "deviceUUID": "915750760f0ba873f2067db7b204681364660315" - }, - "pb-IF4uU09TCg==": { - "display_string": [ - "\ue030Android63969202" - ], - "profiles": [], - "name": "\ue030Android63969202", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 14:39:41", - "registerOn": 1670168863.1806862, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168863.180687, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168863.1806962, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168863.1806974, - "lastIP": "a{va\u007fj~}j~}lh", - "deviceUUID": "0685c07aedee36e7db7cf12405539e758008389b" - }, - "pb-IF4rUnYPNQ==": { - "display_string": [ - "\ue063SPERMAN" - ], - "profiles": [], - "name": "\ue063SPERMAN", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-28 20:57:12", - "registerOn": 1670169053.8202708, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169053.8202717, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169053.8202791, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169053.8202798, - "lastIP": "hwvb|m~}hdaib{", - "deviceUUID": "9772759615c3ba04fddda721b4126eb7775f3c6d" - }, - "pb-JiNJARBSXURGW1tAEERXU1RHFkBXRlNF": { - "display_string": [ - "\ue020YawningGhost61878", - "\ue063SaltyBoss5" - ], - "profiles": [], - "name": "\ue063SaltyBoss5", - "isBan": false, - "isMuted": false, - "accountAge": "2017-02-09 20:57:13", - "registerOn": 1670169067.8394074, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169067.839408, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169067.8394153, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169067.839416, - "lastIP": "dzvb{`~}vc~", - "deviceUUID": "fda17aff9614132cd899a1a73eef4e3595908baf" - }, - "pb-IF4UUxYyXA==": { - "display_string": [ - "\ue020jagu22wan" - ], - "profiles": [], - "name": "\ue020jagu22wan", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-17 13:52:10", - "registerOn": 1670169191.3203194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169191.32032, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169191.3203282, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169191.3203292, - "lastIP": "dvvcxvavm~z`", - "deviceUUID": "0f36afef7639de12c3030df7c1891bf9138b69d2" - }, - "pb-JiNJVxFfXUpEW1xCEEZSUlBGEUNaR1BE": { - "display_string": [ - "\ue063vishnu234" - ], - "profiles": [], - "name": "\ue063vishnu234", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-14 12:42:49", - "registerOn": 1670169219.4019961, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169219.4019969, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169219.4020064, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169219.402007, - "lastIP": "a\u007fk~~naameaiay", - "deviceUUID": "5438d0b4f124c84c5188a948296609fd92dfa8c0", - "cMsgCount": 0, - "lastMsgTime": 1670169554.6156301, - "lastMsg": "how he got another life", - "cSameMsg": 0 - }, - "pb-IF4MVUQjLw==": { - "display_string": [ - "\ue063PlumpEnt18" - ], - "profiles": [], - "name": "\ue063PlumpEnt18", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-07 19:10:59", - "registerOn": 1670169242.5653312, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169242.565332, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169242.5653405, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169242.5653415, - "lastIP": "azo~zi~xi~{k", - "deviceUUID": "1706b5e06255cac541531121a1ed1def01ddeb56" - }, - "pb-IF5TU0kDFw==": { - "display_string": [ - "\ue020UnmeasuredStreet50" - ], - "profiles": [], - "name": "\ue020UnmeasuredStreet50", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 12:24:25", - "registerOn": 1670169259.8273587, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169259.8273594, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169259.8273673, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169259.8273683, - "lastIP": "b~j~~hdajcyva{l", - "deviceUUID": "82233e2ef1935c012ffaae7566ebab739a1414e6" - }, - "pb-IF4sUhAyKw==": { - "display_string": [ - "\ue020SaturatedOffice44", - "\ue030Android56293089" - ], - "profiles": [], - "name": "\ue030Android56293089", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-07 13:25:58", - "registerOn": 1670169267.5681043, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169267.5681047, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169267.5681126, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169267.5681136, - "lastIP": "azo~{n~vn~}jc", - "deviceUUID": "\u0015U\f\u0002\u0005FR\f" - }, - "pb-IF4-VEsEJA==": { - "display_string": [ - "\ue020BouncyTrucker29384", - "\ue020RegretfulCrow2978" - ], - "profiles": [], - "name": "\ue020BouncyTrucker29384", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-28 19:39:00", - "registerOn": 1670169359.8949296, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169359.8949301, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169359.8949382, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169359.8949392, - "lastIP": "azo~zi~{m~~ai", - "deviceUUID": "9dd12f154ede68dcf02b90d7ff46fb75405efc8a" - }, - "pb-IF4rUmovMg==": { - "display_string": [ - "\ue063ImproperGl" - ], - "profiles": [], - "name": "\ue063ImproperGl", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-31 18:44:19", - "registerOn": 1670169389.031273, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169389.0312734, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169389.0312827, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169389.0312834, - "lastIP": "azo~|`~~ifaje", - "deviceUUID": "93f45368ee483da5feb85bf1d20f18dace721176" - }, - "pb-IF4sU2sqHQ==": { - "display_string": [ - "\ue030Android63976161", - "\ue030Android63976116", - "\ue030Android63976199", - "\ue030Android63976244", - "\ue030Android61865080" - ], - "profiles": [], - "name": "\ue030Android61865080", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 11:54:48", - "registerOn": 1670169465.2797682, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169465.2797692, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247646.2383335, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247646.2383344, - "lastIP": "dvvc{vgyvawl", - "deviceUUID": "f8ef55196d5ba4ca7a6b255fe35954bb1a416b0b" - }, - "pb-IF4mUxkJPw==": { - "display_string": [ - "\ue030Android60903665" - ], - "profiles": [], - "name": "\ue030Android60903665", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-01 21:35:25", - "registerOn": 1670169494.541764, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169494.5417645, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169494.5417728, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169494.5417738, - "lastIP": "dvvc{va{o~~`d", - "deviceUUID": "\u0015Q_R\u0004\u0016\u0007T\u0003T\u0017\u0007USXBWXVXBU\\UXE" - }, - "pb-IF4MU085LA==": { - "display_string": [ - "\ue063Invisible6" - ], - "profiles": [], - "name": "\ue063Invisible6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 21:51:17", - "registerOn": 1670169570.629754, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169570.6297545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254945.1974485, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254945.1974494, - "lastIP": "b}k~~oha`gaie{", - "deviceUUID": "7ed64c541b72b7aae895a65f3315961974cb3516" - }, - "pb-IF4KUk0MJg==": { - "display_string": [ - "\ue020PreschoolViability39", - "\ue030Android50875641" - ], - "profiles": [], - "name": "\ue020PreschoolViability39", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-05 21:59:39", - "registerOn": 1670169644.9582026, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169644.9582033, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169644.9582124, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169644.9582133, - "lastIP": "a|i~\u007fvav`~}hb", - "deviceUUID": "420ed96bbfac6067d4c9ddabc36246e40328d8db" - }, - "pb-IF5VVVEADg==": { - "display_string": [ - "\ue063PlainerEnc" - ], - "profiles": [], - "name": "\ue063PlainerEnc", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-06 19:05:44", - "registerOn": 1670169659.0285316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169659.0285325, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255147.1997166, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255147.199718, - "lastIP": "a~h~}keajaxva}i", - "deviceUUID": "fe827b9c97230932d109fce9cb6b8de617b3efe9" - }, - "pb-IF4LUlQ7Ng==": { - "display_string": [ - "\ue020AbhiiiOP1" - ], - "profiles": [], - "name": "\ue020AbhiiiOP1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-02 21:55:26", - "registerOn": 1670169710.198339, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169710.19834, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169710.1983473, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169710.1983483, - "lastIP": "d|vb{a~}jiah", - "deviceUUID": "bf36db18130e678294cd8c52318c1b8ea59ee170" - }, - "pb-IF4vU0MENg==": { - "display_string": [ - "\ue063harshal" - ], - "profiles": [], - "name": "\ue063harshal", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-22 21:41:30", - "registerOn": 1670169845.7034647, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169845.7034655, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334340.0213785, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334340.0213807, - "lastIP": "azj~zo~~jaaie{", - "deviceUUID": "b144a5b6f1f89c128168881dd87511cc79229145" - }, - "pb-IF4lU086KQ==": { - "display_string": [ - "\ue063TSMentVans" - ], - "profiles": [], - "name": "\ue020TSMentVansh1234", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 02:10:21", - "registerOn": 1670169913.9522357, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169913.9522362, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254235.6481817, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254235.6481829, - "lastIP": "a\u007fn~}iealhalh", - "deviceUUID": "2186b07345b0e0b65f93bb8e1e3112cfa32dc866" - }, - "pb-IF4OF2EA": { - "display_string": [ - "\ue020SaltyClown69079" - ], - "profiles": [], - "name": "\ue020SaltyClown69079", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-14 19:39:47", - "registerOn": 1670169968.222988, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169968.2229884, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169968.2229965, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169968.2229972, - "lastIP": "dxviakbald", - "deviceUUID": "44e12025763b483f92ea475ce91cef5100d11fa2" - }, - "pb-IF4-UnVTXQ==": { - "display_string": [ - "\ue020LethargicHotshot9113" - ], - "profiles": [], - "name": "\ue020LethargicHotshot9113", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-23 11:37:44", - "registerOn": 1670170019.463155, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170019.4631557, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170019.463164, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670173277.8204453, - "lastIP": "a\u007fn~}iaajd\u007fvayk", - "deviceUUID": "bde529963f7916a55c191b2b2d6f7a5668a3d48e" - }, - "pb-IF4XVVEuAA==": { - "display_string": [ - "\ue030Android53762436", - "\ue030Android52674661", - "\ue030Android54203722", - "\ue030Android52545518", - "\ue030Android11764371" - ], - "profiles": [], - "name": "\ue030Android54203722", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-15 19:07:44", - "registerOn": 1670170064.5872755, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170064.587276, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670170452.618447, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170064.5872853, - "lastIP": "dvvazva|`~~hh", - "deviceUUID": "262b9e77aad6f334e2f64553c52b722c84047721", - "cMsgCount": 2, - "lastMsgTime": 1670170452.7592585, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4xU04OMg==": { - "display_string": [ - "\ue030PC772976" - ], - "profiles": [], - "name": "\ue030PC772976", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 19:03:47", - "registerOn": 1670170160.974992, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170160.974993, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670335355.8298144, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670333566.4834013, - "lastIP": "b}k~~ohaj`vvb\u007fo", - "deviceUUID": "418fa6a05841c1b0df790370a713ffe4c9949408", - "cMsgCount": 1, - "lastMsgTime": 1670335466.5007281, - "lastMsg": "study karta hu challange accepted bye bro", - "cSameMsg": 0 - }, - "pb-IF5UU01eKw==": { - "display_string": [ - "\ue030Android63796197" - ], - "profiles": [], - "name": "\ue030Android63796197", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 17:05:46", - "registerOn": 1670170259.3832543, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170259.3832548, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170259.3832653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170259.383266, - "lastIP": "a\u007fm~~hfaibvvex", - "deviceUUID": "c068e20e378d907eb9a759dab9c489702828bfdd" - }, - "pb-IF4sU0wcBA==": { - "display_string": [ - "\ue020DiffidentHoplite31" - ], - "profiles": [], - "name": "\ue020DiffidentHoplite31", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 20:53:51", - "registerOn": 1670170364.7377033, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170364.7377043, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334244.6891963, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670334477.5101962, - "lastIP": "a~o~}jhaig{vbzl", - "deviceUUID": "8c631f53682fe91a3f459834ed1f0286daf6db6a" - }, - "pb-IF5QU3AaLg==": { - "display_string": [ - "\ue030Android62078969" - ], - "profiles": [], - "name": "\ue030Android62078969", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 19:45:30", - "registerOn": 1670170420.9802501, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170420.9802506, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670294773.963418, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670299830.112139, - "lastIP": "dvvc{vawl~~ka", - "deviceUUID": "f1c77e950f17e38d444f78241eb97f92085a69d3" - }, - "pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB": { - "display_string": [ - "\ue063aslammalik", - "\ue030Android13724059" - ], - "profiles": [], - "name": "\ue063aslammalik", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-23 13:26:56", - "registerOn": 1670170435.292834, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170435.2928345, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670252608.1721869, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251115.6189094, - "lastIP": "b}k~~`hajd\u007fva\u007f", - "deviceUUID": "92596357655490b82490f34ee0162e866d767923", - "cMsgCount": 0, - "lastMsgTime": 1670252707.1185305, - "lastMsg": "lol", - "cSameMsg": 0 - }, - "pb-IF4jU0MoPA==": { - "display_string": [ - "\ue030Android63397175" - ], - "profiles": [], - "name": "\ue030Android63397175", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-18 18:45:28", - "registerOn": 1670170478.2920778, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170478.2920783, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322153.3924096, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670329988.2219281, - "lastIP": "azo~{a~~naaihv", - "deviceUUID": "e502f5721c6c771c13afba773ea7a8a4f577991a", - "cMsgCount": 0, - "lastMsgTime": 1670329074.6039155, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4DUlQYEw==": { - "display_string": [ - "\ue020UnpopularHunter14650", - "\ue030Android59369529" - ], - "profiles": [], - "name": "\ue020UnpopularHunter14650", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-02 12:49:40", - "registerOn": 1670170522.2965899, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170522.2965903, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170522.2965984, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170522.2965994, - "lastIP": "a\u007fk~}maamia`i", - "deviceUUID": "492bc021ca1fa4954f0f9ed9177b64c346aa6945" - }, - "pb-IF4PU046AA==": { - "display_string": [ - "\ue063JRGunner10" - ], - "profiles": [], - "name": "\ue063JRGunner10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 13:29:33", - "registerOn": 1670170530.343196, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170530.3431964, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170530.3432045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170530.3432055, - "lastIP": "f~vaaib|va|i", - "deviceUUID": "21d9a7317fda7d34d19cb6c069632e520e550247" - }, - "pb-IF4pU0gcDQ==": { - "display_string": [ - "\ue063OriginalTe" - ], - "profiles": [], - "name": "\ue063OriginalTe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-22 23:48:00", - "registerOn": 1670170588.589707, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170588.5897076, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170588.5897152, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170588.589716, - "lastIP": "dzvaxa~wn~~if", - "deviceUUID": "25c2075454a5c1fe8be0101dcf18b1fb5e8c08ad" - }, - "pb-IF4NUm4IFA==": { - "display_string": [ - "\ue063noselessmo" - ], - "profiles": [], - "name": "\ue063noselessmo", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-26 09:24:40", - "registerOn": 1670170888.8810575, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170888.881058, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258029.2687323, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258029.2687335, - "lastIP": "a\u007fn~}j`aie}vaza", - "deviceUUID": "afe8504287910093f009e3fb9298e339ac016e72", - "cMsgCount": 0, - "lastMsgTime": 1670258127.7363563, - "lastMsg": "sry", - "cSameMsg": 0 - }, - "pb-LV4FBUYOVRRBCl4UEkVRB1EWGA==": { - "display_string": [ - "\ue021Phalgun~", - "\ue020Phalsgun", - "\ue030PC241395", - "\ue030Android8403398", - "\ue030PC403142" - ], - "profiles": [], - "name": "\ue021Phalgun~", - "isBan": false, - "isMuted": false, - "accountAge": "2016-11-20 11:42:50", - "registerOn": 1670170943.1882389, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170943.1882393, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334450.406337, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334450.4063385, - "lastIP": "dvvb\u007fm~~hgajf", - "deviceUUID": "\u0019 .%V2#U\"LG#)VLAQX%LLVYXL1S(%VFQ/Y EY\\UQ@Y^RXAS", - "cMsgCount": 0, - "lastMsgTime": 1670337093.7104647, - "lastMsg": "duck?", - "cSameMsg": 0 - }, - "pb-IF5SUlkpPQ==": { - "display_string": [ - "\ue030Android59632041" - ], - "profiles": [], - "name": "\ue030Android59632041", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-11 11:33:51", - "registerOn": 1670170955.8542447, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170955.854245, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170955.8542526, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170955.8542533, - "lastIP": "a\u007fk~xa~}mea`", - "deviceUUID": "\u0015U\u000bW\u0005\u0016YZTSB\u0003[\u0003SFY\\PXLR\\PYBT" - }, - "pb-IF49VWglHA==": { - "display_string": [ - "\ue063FormerInno", - "\ue030Android46954321" - ], - "profiles": [], - "name": "\ue063FormerInno", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-27 21:16:31", - "registerOn": 1670171282.0857804, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670171282.085781, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670171282.0857897, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670171282.0857906, - "lastIP": "dxviaibvva~j", - "deviceUUID": "2df76a1bed2e77629bc5ec2a80ad87eb9f804fd1" - }, - "pb-IF4wU00EFA==": { - "display_string": [ - "\ue020BodaciousHipster7051" - ], - "profiles": [], - "name": "\ue020BodaciousHipster7051", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 14:01:54", - "registerOn": 1670171292.368926, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670171292.3689263, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219834.2400062, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219834.2400074, - "lastIP": "a}k~}kaaibzvb}", - "deviceUUID": "8a1bd0181802c25e85b4c22ec22fb7657e699e7e" - }, - "pb-IF4mU3kDIg==": { - "display_string": [ - "\ue063ProbablePl" - ], - "profiles": [], - "name": "\ue063ProbablePl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-06 15:24:27", - "registerOn": 1670171337.263092, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670171337.2630925, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670171337.263101, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670172120.6382544, - "lastIP": "a\u007fk~~agajb{vb\u007fl", - "deviceUUID": "666cfd5e4f6f2be2ceb7998e0a7defd54d85ad08" - }, - "pb-IF5QUncABw==": { - "display_string": [ - "\ue020SpontaneousTexture21" - ], - "profiles": [], - "name": "\ue020SpontaneousTexture21", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-22 17:01:09", - "registerOn": 1670171369.360172, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670171369.360173, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257417.9911218, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670258492.3258805, - "lastIP": "azo~|k~}ifaoi", - "deviceUUID": "\u0015Y_VS\u0012P\u000eY\u0007\u0015P]\u0003P\u0016U\\UUDU_VTGV", - "cMsgCount": 1, - "lastMsgTime": 1670172278.892956, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4cVEsJAg==": { - "display_string": [ - "\ue020OutmodedMystery3", - "\ue020smartysurendhar", - "\ue020NOORULAMEENAK57THALA", - "\ue020SubtlerPrelude12", - "\ue030Android24527683" - ], - "profiles": [], - "name": "\ue020NOORULAMEENAK57THALA", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-28 19:29:44", - "registerOn": 1670171705.5125847, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670171705.5125856, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268280.586248, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670268690.044276, - "lastIP": "azo~{a~~a`aoe", - "deviceUUID": "4f95e577a50d5f70018f099e72b520364683903b" - }, - "pb-IF4pVVQBEA==": { - "display_string": [ - "\ue020\u1d35\u1d2c\u1d39\u30baRaoJi" - ], - "profiles": [], - "name": "\ue020\u1d35\u1d2c\u1d39\u30baRaoJi", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-01 17:58:38", - "registerOn": 1670172105.9046304, - "canStartKickVote": true, - "spamCount": 2, - "lastSpam": 1670216868.3627353, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670246867.0605102, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246575.5256505, - "lastIP": "a\u007fn~~aeaicaidy", - "deviceUUID": "5fe0619e43e78d3eb296f26e44b46fe30b6d98f1", - "cMsgCount": 0, - "lastMsgTime": 1670246867.0604496, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFeUkZGXVhBEUdSU1RGEkJXTlRH": { - "display_string": [ - "\ue020Sagaramin12345", - "\ue030Android9634823" - ], - "profiles": [], - "name": "\ue020Sagaramin12345", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-06 17:52:32", - "registerOn": 1670172231.363033, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172231.3630338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172231.363042, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172231.363043, - "lastIP": "azo~{m~~ldaicz", - "deviceUUID": "cdd64c05bf3f291f40e0aecd4923efeb120a9465" - }, - "pb-IF4KVRMyUw==": { - "display_string": [ - "\ue020UnnumberedRobbery17", - "\ue030Android45832072" - ], - "profiles": [], - "name": "\ue020UnnumberedRobbery17", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-24 21:50:54", - "registerOn": 1670172302.779433, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172302.7794335, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246145.013323, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246145.013324, - "lastIP": "aakhaif}vev", - "deviceUUID": "ce399e8462aa7587b43b0a15826f2e1d007fa2af" - }, - "pb-IF4-U2pcKA==": { - "display_string": [ - "\ue030Android61702035" - ], - "profiles": [], - "name": "\ue030Android61702035", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-03 23:14:58", - "registerOn": 1670172351.7900114, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172351.7900121, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172351.790019, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172351.7900198, - "lastIP": "hxvavn~wi~~mf", - "deviceUUID": "645d592ec70b838dc5115801e998c148efe1bb6f" - }, - "pb-IF49U0JZFw==": { - "display_string": [ - "\ue030Android63349899" - ], - "profiles": [], - "name": "\ue030Android63349899", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-16 19:16:34", - "registerOn": 1670172400.3639817, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172400.3639824, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172400.363991, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172400.363992, - "lastIP": "dzva~m~vi~~md", - "deviceUUID": "b9a8c922680362e8105243c616c9089ae90ed8c1" - }, - "pb-IF48VWIPPw==": { - "display_string": [ - "\ue020QuerulousBrick19" - ], - "profiles": [], - "name": "\ue020QuerulousBrick19", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-17 17:03:47", - "registerOn": 1670172556.5734344, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172556.5734348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172556.5734437, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172556.5734446, - "lastIP": "dvvcxvb{k~~ah", - "deviceUUID": "7bed0a23c4157affd91bd27ca455553c455f7028" - }, - "pb-IF4oVEwvLA==": { - "display_string": [ - "\ue063DAXDESAI" - ], - "profiles": [], - "name": "\ue063DAXDESAI", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-30 20:43:12", - "registerOn": 1670172569.584806, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172569.5848067, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172569.584815, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172569.584816, - "lastIP": "d}va\u007fn~}i~~he", - "deviceUUID": "b423c8c8f8cda2231efaf5538ddec32bd6c4cc58" - }, - "pb-IF4yUng_XA==": { - "display_string": [ - "\ue063CosmicOutl", - "\ue030Android63886432", - "\ue030Android63885993" - ], - "profiles": [], - "name": "\ue063CosmicOutl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-05 21:40:38", - "registerOn": 1670172749.221171, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172749.2211723, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172749.2211812, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670172965.7047884, - "lastIP": "azo~{m~~odaihy", - "deviceUUID": "c4c8e19e44efd3082fbdc264c20023dc909737ad" - }, - "pb-JiNJARBcUEpCW15BEUNSXVVAGUFeQVJC": { - "display_string": [ - "\ue063LoverboyRo", - "\ue030Android14612394" - ], - "profiles": [], - "name": "\ue063LoverboyRo", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-22 23:25:54", - "registerOn": 1670172815.4980688, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172815.4980693, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172815.4980776, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172815.4980788, - "lastIP": "b~a~vi~}j`aaa", - "deviceUUID": "d787184373a57c90653527370baf50bdcee7a7ac" - }, - "pb-IF4sU0ETNA==": { - "display_string": [ - "\ue020yuriiiiiiiiii116" - ], - "profiles": [], - "name": "\ue020yuriiiiiiiiii116", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-18 15:33:09", - "registerOn": 1670172859.681317, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172859.6813176, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172859.681328, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172859.6813293, - "lastIP": "a\u007fk~~nhajdwvavi", - "deviceUUID": "82c285a23195908c30ce61d37eda08b085d8f15c" - }, - "pb-JiNJARFYXEtAWVlAFERRXFRFF0VfQVND": { - "display_string": [ - "\ue020royiam", - "\ue030Android53267307", - "\ue030Android52047741" - ], - "profiles": [], - "name": "\ue020royiam", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-17 12:29:24", - "registerOn": 1670172867.7084131, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172867.7084136, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172867.7084224, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670173129.2934122, - "lastIP": "b}k~}jeamhajb~", - "deviceUUID": "23b0a4db661c47deb0c5e6a91814e083e2413305", - "cMsgCount": 0, - "lastMsgTime": 1670172899.263744, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4vU04bIw==": { - "display_string": [ - "\ue030Android63934668" - ], - "profiles": [], - "name": "\ue030Android63934668", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 16:53:45", - "registerOn": 1670172889.7440207, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172889.7440212, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172889.7441478, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172889.7441485, - "lastIP": "a\u007fn~}hhaigyvazk", - "deviceUUID": "ce1645af5c72e9508bb1ab2a7940a3b0931ae900" - }, - "pb-IF5WVXkpVQ==": { - "display_string": [ - "\ue030Android50225790" - ], - "profiles": [], - "name": "\ue030Android50225790", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-13 02:08:43", - "registerOn": 1670173039.3773623, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173039.3773627, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173039.377371, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173039.3773723, - "lastIP": "avh~}ihajaxve", - "deviceUUID": "641973b162542d8dd1a370b5566a01614dd3c1c9", - "cMsgCount": 0, - "lastMsgTime": 1670173094.5510375, - "lastMsg": "run run run", - "cSameMsg": 0 - }, - "pb-IF4BU0s8BA==": { - "display_string": [ - "\ue030Android63830734" - ], - "profiles": [], - "name": "\ue030Android63830734", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 23:03:34", - "registerOn": 1670173119.5594878, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173119.5594885, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319410.982448, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319410.9824493, - "lastIP": "azj~zo~}igaic{", - "deviceUUID": "ca7f2b95038dc2799782a23213c8fd8518c135b9", - "cMsgCount": 0, - "lastMsgTime": 1670173318.6612692, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFeUkdDX1tHEkVTVlFDFUlXRllG": { - "display_string": [ - "\ue020ScreechingOoze8069", - "\ue030Android6469030" - ], - "profiles": [], - "name": "\ue020ScreechingOoze8069", - "isBan": false, - "isMuted": false, - "accountAge": "2016-09-10 12:28:52", - "registerOn": 1670173147.8888347, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173147.8888354, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334768.9593174, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334768.959319, - "lastIP": "dvvcyva}i~|j", - "deviceUUID": "56d8b3078b48fa76c4d1d4471edcf8f7003cdf36" - }, - "pb-IF4lU2wxKA==": { - "display_string": [ - "\ue020AyushW1060" - ], - "profiles": [], - "name": "\ue020AyushW1060", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-11 23:33:43", - "registerOn": 1670173154.7079437, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173154.7079442, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173154.7079527, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173154.7079535, - "lastIP": "azj~zo~~`caa`", - "deviceUUID": "3b4cc9e515c3adf94f47e483f4a71bd08d12dc58" - }, - "pb-IF4lVVQoFg==": { - "display_string": [ - "\ue063CaffeineAs" - ], - "profiles": [], - "name": "\ue063CaffeineAs", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-30 01:03:01", - "registerOn": 1670173333.3859758, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173333.3859766, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173333.3859844, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173333.3859854, - "lastIP": "a~h~}jfaigwva\u007fm", - "deviceUUID": "783e4b6c2fc381c92432b022ef9970cda427a469", - "cMsgCount": 0, - "lastMsgTime": 1670174142.3896983, - "lastMsg": "yea ", - "cSameMsg": 0 - }, - "pb-IF4PVFRZMA==": { - "display_string": [ - "\ue063delrowe012" - ], - "profiles": [], - "name": "\ue063delrowe012", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-14 18:27:37", - "registerOn": 1670173377.5020025, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173377.5020032, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243132.0861826, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670243937.3374379, - "lastIP": "dvvcyvczvayj", - "deviceUUID": "8c88a64fe0c7bcee47322e9209aee1327afe7ded", - "cMsgCount": 2, - "lastMsgTime": 1670243837.0458896, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4cU3oSUw==": { - "display_string": [ - "\ue063Martinphil" - ], - "profiles": [], - "name": "\ue020Martinphilipjacob132", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-10 19:13:38", - "registerOn": 1670173562.17576, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173562.175761, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324949.9201195, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670324949.9201212, - "lastIP": "a\u007fk~~nbaj`xva{j", - "deviceUUID": "42f36eaed98a11f72393c6cf098534c33aa87122" - }, - "pb-IF4NUhUaHw==": { - "display_string": [ - "\ue030Android63783914" - ], - "profiles": [], - "name": "\ue030Android63783914", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 16:14:23", - "registerOn": 1670173716.6809845, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173716.680985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263640.3606524, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670263715.958391, - "lastIP": "awj~{`~~aiaibw", - "deviceUUID": "8ec3176a8d9a90e7694cc8aa41ae6a8727c73ae6" - }, - "pb-IF5QVFRdIQ==": { - "display_string": [ - "\ue020UnrecordedTense20", - "\ue020ResoluteMainland12", - "\ue020shazan99502", - "\ue020tyagInvolvedOfficial", - "\ue030Android63785493" - ], - "profiles": [], - "name": "\ue020shazan99502", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-26 21:45:08", - "registerOn": 1670173723.7922611, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173723.7922616, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263658.4137301, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670263730.0153766, - "lastIP": "awj~{`~~aiaibw", - "deviceUUID": "26b41e6328ae665eec92fa309cafe0ed814c2493" - }, - "pb-IF4qUkw9Pw==": { - "display_string": [ - "\ue020TelegraphicTree29" - ], - "profiles": [], - "name": "\ue020TelegraphicTree29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-28 16:03:20", - "registerOn": 1670173868.2830174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173868.2830179, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323106.8142667, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323106.814268, - "lastIP": "dxvazvax`~}ma", - "deviceUUID": "3b30ff5c934dc2e484e090a738b9d0ea5ecb0f76" - }, - "pb-IF4KU0waFA==": { - "display_string": [ - "\ue030Android63853549" - ], - "profiles": [], - "name": "\ue030Android63853549", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 20:21:14", - "registerOn": 1670173880.312833, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173880.3128338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173880.3128426, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173880.3128436, - "lastIP": "awa~~acaidvvi{", - "deviceUUID": "40ba4e759cdef11460bb98d4fbfbefcfb084cfac" - }, - "pb-IF4JUmdaIg==": { - "display_string": [ - "\ue020MemerBadshah", - "\ue030Android54946326" - ], - "profiles": [], - "name": "\ue020MemerBadshah", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-17 13:09:03", - "registerOn": 1670173904.42992, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173904.4299207, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173904.4299293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173904.4299302, - "lastIP": "a~h~}keajcwve}", - "deviceUUID": "ce6feadb6452fe5fb99586cc0606eceda723613f" - }, - "pb-IF43U0sjUQ==": { - "display_string": [ - "\ue063ReliableDi" - ], - "profiles": [], - "name": "\ue063ReliableDi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 17:49:55", - "registerOn": 1670173929.5760052, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173929.5760057, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670174381.9340796, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670173998.4651046, - "lastIP": "a~h~}jfaigxvaxl", - "deviceUUID": "383976cf79c64e9a4ffd6417ae09615008a853c2", - "cMsgCount": 0, - "lastMsgTime": 1670174405.9152126, - "lastMsg": "sry. ", - "cSameMsg": 0 - }, - "pb-IF4yU0QOIw==": { - "display_string": [ - "\ue063Understoo2" - ], - "profiles": [], - "name": "\ue063Understoo2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 19:22:14", - "registerOn": 1670174013.8634691, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174013.8634696, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174013.86348, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174013.8634808, - "lastIP": "azo~{h~~k`aicw", - "deviceUUID": "019498090669705f2a306af7ef940362fb125ca4" - }, - "pb-IF4cU08AHA==": { - "display_string": [ - "\ue063SketchyPar" - ], - "profiles": [], - "name": "\ue063SketchyPar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 21:45:47", - "registerOn": 1670174020.8854249, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174020.885425, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174020.8854332, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174020.885434, - "lastIP": "dxvbvvbaidz", - "deviceUUID": "12f2849bcf4b27502d2cc1c3bc38171cb68d332a" - }, - "pb-IF4AVVAIUg==": { - "display_string": [ - "\ue020VerdantCircus9", - "\ue030Android57598974" - ], - "profiles": [], - "name": "\ue020VerdantCircus9", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-12 17:00:29", - "registerOn": 1670174260.2066307, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174260.2066312, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174260.206639, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174260.2066402, - "lastIP": "a\u007fk~}keah~zj", - "deviceUUID": "67250fd1e36d69cdb84203ec101203d1ca247a0d" - }, - "pb-IF4wU0EzEA==": { - "display_string": [ - "\ue020FranticAlliance82034" - ], - "profiles": [], - "name": "\ue020FranticAlliance82034", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-11 13:05:00", - "registerOn": 1670174438.5126605, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174438.512661, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259249.1921232, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259249.1921244, - "lastIP": "cxva~i~}lbaae", - "deviceUUID": "825a6d3c484f6f2475af76974c37f77bb40f0b2d" - }, - "pb-IF41U00aAg==": { - "display_string": [ - "\ue030Android63916646" - ], - "profiles": [], - "name": "\ue030Android63916646", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 15:58:52", - "registerOn": 1670174475.6080759, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174475.6080763, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174475.6080832, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174475.6080842, - "lastIP": "azo~|k~va~~`", - "deviceUUID": "3c9ee2ef878d6c4a4483094b15c6785c16473e0a" - }, - "pb-IF4rU3oHCw==": { - "display_string": [ - "\ue030Android63195782" - ], - "profiles": [], - "name": "\ue030Android63195782", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-08 15:26:50", - "registerOn": 1670174606.0686145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174606.0686152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174606.068624, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174606.068625, - "lastIP": "b}k~}jganaaj`y", - "deviceUUID": "\u0015TZW\u0003EW]R\u0007G\u0007\fYYB\u0003_PRLW^UU@X" - }, - "pb-IF4eUhIxBg==": { - "display_string": [ - "\ue063catbros7", - "\ue020GrandestShepherd22" - ], - "profiles": [], - "name": "\ue063catbros7", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-13 19:21:59", - "registerOn": 1670174776.7160783, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174776.716079, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174776.7160878, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174776.7160885, - "lastIP": "a\u007fm~~n`amhaif\u007f", - "deviceUUID": "4b5d6bbe94d109672dda984f017585fce563e0a1" - }, - "pb-IF4hVFQJPA==": { - "display_string": [ - "\ue020sheriff007gamer" - ], - "profiles": [], - "name": "\ue020sheriff007gamer", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-25 00:58:39", - "registerOn": 1670174884.0662334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174884.0662339, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670327878.9655817, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670327467.3993437, - "lastIP": "a~o~~aeaibzvb}a", - "deviceUUID": "5a88a38de9f59d848fa0aa2329888d522d5687d8", - "cMsgCount": 0, - "lastMsgTime": 1670328347.4019775, - "lastMsg": "wow draken", - "cSameMsg": 0 - }, - "pb-IF5VU3lYDA==": { - "display_string": [ - "\ue020AlienPersonnel44", - "\ue030Android61272703" - ], - "profiles": [], - "name": "\ue020AlienPersonnel44", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-22 11:33:30", - "registerOn": 1670174946.398253, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174946.3982537, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318579.0189648, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670320018.460158, - "lastIP": "azj~z`~~``aidv", - "deviceUUID": "b12054ad1919551ca42bc4d11a0d1402a4e7bd92", - "cMsgCount": 0, - "lastMsgTime": 1670265540.0622814, - "lastMsg": "ja coding kr", - "cSameMsg": 0 - }, - "pb-JiNJARBTVkdCW1ZIEkRVVlVGGUFcRVRG": { - "display_string": [ - "\ue063rajanr1234", - "\ue030Android12526088" - ], - "profiles": [], - "name": "\ue063rajanr1234", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-13 11:49:54", - "registerOn": 1670174970.4428892, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174970.4428897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174970.4428973, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174970.4428983, - "lastIP": "a~o~vo~}hdaoh", - "deviceUUID": "d5930fe991df73b13e0fc02e5936504e86d430ea" - }, - "pb-IF4PU04gEw==": { - "display_string": [ - "\ue030Android63923008" - ], - "profiles": [], - "name": "\ue030Android63923008", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 20:15:00", - "registerOn": 1670175001.8491335, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175001.849134, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175001.8491435, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175001.8491442, - "lastIP": "a~h~}jgai`aib}", - "deviceUUID": "e50bfb4269794bb57884fcf368e26086400f4d17" - }, - "pb-IF5dU3UiAw==": { - "display_string": [ - "\ue020sheriffgamer007" - ], - "profiles": [], - "name": "\ue020sheriffgamer007", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 21:03:46", - "registerOn": 1670175030.9890144, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175030.989015, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175030.9890254, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175030.989026, - "lastIP": "azo~zi~~aiajcv", - "deviceUUID": "5a88a38de9f59d848fa0aa2329888d522d5687d8" - }, - "pb-IF4QU0s_Eg==": { - "display_string": [ - "\ue020RedeemingTariff52" - ], - "profiles": [], - "name": "\ue020RedeemingTariff52", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 00:17:56", - "registerOn": 1670175131.962698, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175131.9626985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318394.3460476, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670319464.202854, - "lastIP": "a}j~~naaohalg", - "deviceUUID": "ae526a45e4f0f4ba896730cc4b000af030e55e6a", - "cMsgCount": 0, - "lastMsgTime": 1670260216.7919657, - "lastMsg": "am i the only one who's lagging ", - "cSameMsg": 0 - }, - "pb-IF4IU3kKKA==": { - "display_string": [ - "\ue063KRISHTHEGA" - ], - "profiles": [], - "name": "\ue063VolcanoOP", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-05 15:15:17", - "registerOn": 1670175137.277485, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175137.2774854, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175137.2774942, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670175137.2774951, - "lastIP": "azo~{h~~ngala", - "deviceUUID": "bb49be183b5f2261cc6063737e9e7fe8a04ec999" - }, - "pb-IF4GVRNYVw==": { - "display_string": [ - "\ue030Android45693231" - ], - "profiles": [], - "name": "\ue030Android45693231", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-18 22:31:20", - "registerOn": 1670175158.3808932, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175158.3808937, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175158.3809023, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175158.3809032, - "lastIP": "a~m~v`~}kbajd\u007f", - "deviceUUID": "cd7fdf71362654f075816ef0d9e4c42de8019d6f" - }, - "pb-IF43VUwpNw==": { - "display_string": [ - "\ue020RedDreameater55290", - "\ue030Android52236929" - ], - "profiles": [], - "name": "\ue020RedDreameater55290", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-22 14:27:47", - "registerOn": 1670175170.194614, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175170.1946144, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175170.1946218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175170.1946225, - "lastIP": "a|o~vo~~hgajg", - "deviceUUID": "3866e016313a8964b64fdbf94302a07ba493bf62" - }, - "pb-IF4wU0gdPA==": { - "display_string": [ - "\ue020TranslucentSpeed26" - ], - "profiles": [], - "name": "\ue020TranslucentSpeed26", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-22 18:48:50", - "registerOn": 1670175210.2339947, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175210.2339954, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292675.0276132, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292675.0276148, - "lastIP": "d}va\u007fm~~ndaia|", - "deviceUUID": "18cc50fe25438fb91a54bff3ebc1f19d09d55a67" - }, - "pb-IF4gU2wxIg==": { - "display_string": [ - "\ue020\ud83c\udd76\ud835\udd86m\ud835\udd8a\u211dZ\u1b44", - "\ue030Android48199653" - ], - "profiles": [], - "name": "\ue030Android48199653", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-13 12:05:37", - "registerOn": 1670175374.7926185, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175374.7926192, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175374.792629, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175374.79263, - "lastIP": "azj~zo~za~~hf", - "deviceUUID": "d5fcef28207c5a26ea8a9a0000ab24651e20aa81" - }, - "pb-IF4hU0YdDg==": { - "display_string": [ - "\ue063NarrowHips" - ], - "profiles": [], - "name": "\ue063NarrowHips", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-18 23:04:26", - "registerOn": 1670175379.8240604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175379.824061, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307209.3611066, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307209.361108, - "lastIP": "dvvc}va{k~|h", - "deviceUUID": "af27fe203ccae0ab8aa185932b2df897859f41f1" - }, - "pb-IF4UU1AtCw==": { - "display_string": [ - "\ue030Android63983709" - ], - "profiles": [], - "name": "\ue030Android63983709", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:47:57", - "registerOn": 1670175383.8847692, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175383.8847702, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175383.8847783, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175383.8847792, - "lastIP": "a\u007fn~}hdaleaih}", - "deviceUUID": "b85aa7474eeddc07891aa5a83d9de87caac1f787" - }, - "pb-IF4dVVk5Nw==": { - "display_string": [ - "\ue030VR252448" - ], - "profiles": [], - "name": "\ue030VR252448", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-27 04:38:10", - "registerOn": 1670175514.2591097, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175514.2591102, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175514.2591188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175514.25912, - "lastIP": "dzvayl~~j~}ii", - "deviceUUID": "a047e6a2baaf04a56a637c005d502afa2028d5b3" - }, - "pb-IF5XVGQoFA==": { - "display_string": [ - "\ue063albyresto7", - "\ue030Android61395727" - ], - "profiles": [], - "name": "\ue020albyresto77", - "isBan": false, - "isMuted": false, - "accountAge": "2019-08-16 12:44:40", - "registerOn": 1670179934.9552991, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670179934.9552999, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324056.4408567, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670331841.8452365, - "lastIP": "bxvf}vbwvbzl", - "deviceUUID": "cd4ad2abbf4423c6666fe271a1402981e635f147", - "cMsgCount": 0, - "lastMsgTime": 1670332975.2811127, - "lastMsg": "\ud83d\ude02", - "cSameMsg": 0 - }, - "pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK": { - "display_string": [ - "\ue020IdenticalShock57" - ], - "profiles": [], - "name": "\ue020IdenticalShock57", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-24 16:00:32", - "registerOn": 1670180083.561179, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180083.5611794, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317406.7182522, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317406.7182539, - "lastIP": "a}j~~naaohalg", - "deviceUUID": "ae526a45e4f0f4ba896730cc4b000af030e55e6a", - "cMsgCount": 0, - "lastMsgTime": 1670317958.0272179, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4rLkwp": { - "display_string": [ - "\ue063MPF", - "\ue030Android40308191", - "\ue030Android39582261", - "\ue030PC232491", - "\ue030Android38640036" - ], - "profiles": [], - "name": "\ue063MPF", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-07 02:20:26", - "registerOn": 1670180128.7830744, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180128.7830749, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670180128.7830825, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670184609.291339, - "lastIP": "a~j~~kdajazvi\u007f", - "deviceUUID": "f75978959e7e19ea371a4c3f6a7d753f5f0c395d", - "cMsgCount": 0, - "lastMsgTime": 1670187562.043262, - "lastMsg": "wtt it says 0%", - "cSameMsg": 0 - }, - "pb-IF4pUmQcPA==": { - "display_string": [ - "\ue030PC363206" - ], - "profiles": [], - "name": "\ue030PC363206", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-05 16:56:08", - "registerOn": 1670180268.9322007, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180268.9322014, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315792.8151095, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315792.8151107, - "lastIP": "dvvb\u007fl~~idak`", - "deviceUUID": "\u0003X]", - "cMsgCount": 1, - "lastMsgTime": 1670315951.3718553, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4iVxJYAA==": { - "display_string": [ - "\ue063BeamingMos" - ], - "profiles": [], - "name": "\ue063BeamingMos", - "isBan": false, - "isMuted": false, - "accountAge": "2018-07-19 14:24:07", - "registerOn": 1670180317.4847248, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180317.4847255, - "totaltimeplayer": 0, - "warnCount": 3, - "lastWarned": 1670180772.7773814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670180317.484736, - "lastIP": "a\u007fk~{a~}lbajc~", - "deviceUUID": "9637ab5346733ccc64193a8c1aa3ffb417a5c4ea", - "cMsgCount": 0, - "lastMsgTime": 1670180772.7774034, - "lastMsg": "chutya", - "cSameMsg": 0 - }, - "pb-IF4RU086HQ==": { - "display_string": [ - "\ue030Android63952571" - ], - "profiles": [], - "name": "\ue030Android63952571", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 19:00:44", - "registerOn": 1670180319.1790404, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180319.179041, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670180319.1790483, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670180319.179049, - "lastIP": "azn~~`daii}vaxm", - "deviceUUID": "720f329bb6e3c83cbc216b9060ad3053549598c0" - }, - "pb-IF4HU3hTEA==": { - "display_string": [ - "\ue020LunaticTactician7288" - ], - "profiles": [], - "name": "\ue020LunaticTactician7288", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 15:23:48", - "registerOn": 1670180438.5559657, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180438.5559664, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670180438.5559757, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670180438.5559769, - "lastIP": "d|vbzj~}lhai`w", - "deviceUUID": "720d78a5e12a5820b99277503405d1044718b185", - "cMsgCount": 0, - "lastMsgTime": 1670180473.529602, - "lastMsg": "/kick 233", - "cSameMsg": 0 - }, - "pb-IF4vVRUFVA==": { - "display_string": [ - "\ue063BoomBaam11" - ], - "profiles": [], - "name": "\ue063BoomBaam11", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-10 15:52:43", - "registerOn": 1670180534.8579652, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180534.8579657, - "totaltimeplayer": 0, - "warnCount": 3, - "lastWarned": 1670263672.9166775, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670265713.707429, - "lastIP": "awj~yl~vi~~he", - "deviceUUID": "350a91139e7f1c8188c9cec1b5a153c37f5f8ebd", - "cMsgCount": 0, - "lastMsgTime": 1670265522.929009, - "lastMsg": "akash", - "cSameMsg": 0 - }, - "pb-IF4gUlAgLw==": { - "display_string": [ - "\ue063GodplayerO", - "\ue030Android56987886" - ], - "profiles": [], - "name": "\ue063GodplayerO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-17 15:31:52", - "registerOn": 1670180593.472905, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180593.4729054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670180593.472914, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670180593.4729147, - "lastIP": "a\u007fk~~mfajcxvavi", - "deviceUUID": "45ef30024b982ad672c5aa5c35f3598e068f61d5" - }, - "pb-IF4yV2ERXQ==": { - "display_string": [ - "\ue063matinnosra", - "\ue030Android27574057", - "\ue030Android54041956", - "\ue030Android56258742" - ], - "profiles": [], - "name": "\ue063matinnosra", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-13 19:12:12", - "registerOn": 1670180904.4921591, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670181017.6537411, - "totaltimeplayer": 0, - "warnCount": 4, - "lastWarned": 1670181017.6522706, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670180904.4921694, - "lastIP": "hyvexvaanb", - "deviceUUID": "cef621b0277dc5523a8bc5f70f9a3286ecd9cae9", - "cMsgCount": 0, - "lastMsgTime": 1670181017.6515322, - "lastMsg": "/timer t=0.01 rise 141 repeat", - "cSameMsg": 0 - }, - "pb-IF4-U0wpMQ==": { - "display_string": [ - "\ue063UbeTaTtA69" - ], - "profiles": [], - "name": "\ue063UbeTaTtA69", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 14:01:05", - "registerOn": 1670180930.2976832, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180930.297684, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670181840.361041, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670182261.8190577, - "lastIP": "a~j~~kdaleajdx", - "deviceUUID": "77602c07f9db8960e506de5d3b475d90aeb6b4f2", - "cMsgCount": 0, - "lastMsgTime": 1670181911.7992318, - "lastMsg": "bos", - "cSameMsg": 0 - }, - "pb-IF4sVVM5Mg==": { - "display_string": [ - "\ue020PlaneProcession32" - ], - "profiles": [], - "name": "\ue020PlaneProcession32", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-29 18:34:53", - "registerOn": 1670181029.707517, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181029.7075174, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181029.7075264, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181029.7075274, - "lastIP": "eajawvbzvbx", - "deviceUUID": "\u0015" - }, - "pb-IF4wUkwlJg==": { - "display_string": [ - "\ue030Android58555746" - ], - "profiles": [], - "name": "\ue030Android58555746", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-27 12:53:26", - "registerOn": 1670181432.258699, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181432.2586994, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181432.2587972, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181432.2587984, - "lastIP": "cxva~i~~meajdy", - "deviceUUID": "\u0015S\u000fYWE\u0002XP" - }, - "pb-IF4PU08bLA==": { - "display_string": [ - "\ue063ArylAwesom" - ], - "profiles": [], - "name": "\ue063ArylAwesom", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:47:54", - "registerOn": 1670181470.3667445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181470.3667448, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181470.3667536, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181470.3667543, - "lastIP": "a\u007fk~yvazi~~lh", - "deviceUUID": "e15131b31c70cca389487091b2e691fb0d831695" - }, - "pb-IF4CVBYJCA==": { - "display_string": [ - "\ue020\u0e21\u0e34\u0e01\u0e0b\u0e4c3707" - ], - "profiles": [], - "name": "\ue020\u0e21\u0e34\u0e01\u0e0b\u0e4c3707", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-21 13:06:28", - "registerOn": 1670181481.5857174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181481.585718, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181481.5857265, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181481.5857275, - "lastIP": "bxva{m~~m`aif~", - "deviceUUID": "2b0fa052d8521e1c98973c76a9fb169fa0f92030" - }, - "pb-IF4XUxYINw==": { - "display_string": [ - "\ue063EpidemicDi" - ], - "profiles": [], - "name": "\ue063EpidemicDi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-18 11:38:13", - "registerOn": 1670181656.3552763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181656.3552768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181656.355285, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181656.3552861, - "lastIP": "a}j~~oba`faiey", - "deviceUUID": "6f6deb21127b9d0da2611a917a1b0fc53f369303" - }, - "pb-IF42U04kLg==": { - "display_string": [ - "\ue020Suryakd04" - ], - "profiles": [], - "name": "\ue020Suryakd04", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 20:46:28", - "registerOn": 1670181846.622074, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181846.6220746, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181846.6220837, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670184617.3156433, - "lastIP": "a}j~~ohaadaka", - "deviceUUID": "e0d7bb0df9e322216bfa620f8c6f28626b9bfc09" - }, - "pb-IF4hU0sNIQ==": { - "display_string": [ - "\ue030Android63860546" - ], - "profiles": [], - "name": "\ue030Android63860546", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-13 20:50:03", - "registerOn": 1670181849.7272325, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181849.7272332, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181849.7272422, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181849.7272434, - "lastIP": "b\u007fi~~miaja|vg}", - "deviceUUID": "dc92e885e04e12ec73b5e4b45dbd14a42a3b3c1d" - }, - "pb-IF4XU0gNJg==": { - "display_string": [ - "\ue063NoName14481" - ], - "profiles": [], - "name": "\ue063NoName14481", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 18:43:55", - "registerOn": 1670182030.6101754, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182030.6101763, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331216.3470125, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670330946.9153974, - "lastIP": "a}j~~naambaii", - "deviceUUID": "cd8311900ff88886ba021feae3e7228a1d72d0ce", - "cMsgCount": 0, - "lastMsgTime": 1670331681.9099255, - "lastMsg": "bs.dk", - "cSameMsg": 0 - }, - "pb-IF43U3opMw==": { - "display_string": [ - "\ue020ChintuKarthik1123" - ], - "profiles": [], - "name": "\ue020ChintuKarthik1123", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-06 15:45:10", - "registerOn": 1670182094.5465784, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182094.546579, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319408.97783, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319408.9778316, - "lastIP": "b}k~~`faiean`", - "deviceUUID": "a621451965b8d02c893d6750a7a5467812aa9c46" - }, - "pb-IF4tVUQjFA==": { - "display_string": [ - "\ue063TopicalFur" - ], - "profiles": [], - "name": "\ue063TopicalFur", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-07 15:29:51", - "registerOn": 1670182322.3295085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182322.329509, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670182322.3295176, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670182322.3295186, - "lastIP": "awh~~adaigajg", - "deviceUUID": "a445e50b1797a0020a3edac6a51b6c99704477d3" - }, - "pb-IF4-U08hVg==": { - "display_string": [ - "\ue020CompatibleUsage45" - ], - "profiles": [], - "name": "\ue020CompatibleUsage45", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 07:31:08", - "registerOn": 1670182467.805151, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182467.8051517, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670182467.8051605, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670182467.8051612, - "lastIP": "axo~}jbanaaia\u007f", - "deviceUUID": "\u0015" - }, - "pb-IF4uU0sRXA==": { - "display_string": [ - "\ue020MilderUprising53" - ], - "profiles": [], - "name": "\ue020MilderUprising53", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 11:54:26", - "registerOn": 1670182513.9974043, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182513.9974053, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670182513.9974136, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670183546.3181136, - "lastIP": "azo~|l~x`~~ia", - "deviceUUID": "59bce742c0a1fa913915aaff7a6064746cc1cd1a" - }, - "pb-IF5RU2IPJg==": { - "display_string": [ - "\ue063harishsola" - ], - "profiles": [], - "name": "\ue063harishsola", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-29 17:47:58", - "registerOn": 1670182764.0775707, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182764.0775712, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230959.783054, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670232238.1917896, - "lastIP": "azo~|`~}h`aiaz", - "deviceUUID": "7d56650f437299a6bd8960e064ea3d457eda038e", - "cMsgCount": 0, - "lastMsgTime": 1670185453.0047183, - "lastMsg": "i have 1000 mother box", - "cSameMsg": 0 - }, - "pb-IF4wU0EoDA==": { - "display_string": [ - "\ue030Android63224716" - ], - "profiles": [], - "name": "\ue030Android63224716", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-10 01:45:35", - "registerOn": 1670182879.3172565, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182879.3172572, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670182879.3172646, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670189686.4128318, - "lastIP": "axo~}l`amdami", - "deviceUUID": "6b36bdd08c7147b461afdc0e93f296ce71035e1d" - }, - "pb-IF4jU0EgDQ==": { - "display_string": [ - "\ue020ClearerArmy31", - "\ue030Android63230750" - ], - "profiles": [], - "name": "\ue020ClearerArmy31", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-10 10:51:46", - "registerOn": 1670183060.987385, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670183060.9873855, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670183060.9873936, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670184099.3532708, - "lastIP": "dvvc{va|i~}jg", - "deviceUUID": "c488f4c3e758a5bcd6b558cabf8d82d8d19f29df" - }, - "pb-IF4DV2ItCQ==": { - "display_string": [ - "\ue020CrushedWolf82537", - "\ue030Android38093614" - ], - "profiles": [], - "name": "\ue020CrushedWolf82537", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-14 22:32:59", - "registerOn": 1670183077.0730386, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670183077.0730393, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253271.9784403, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253271.9784415, - "lastIP": "a\u007fk~~`baifyvf~", - "deviceUUID": "9d4840f4952018dea68626b815f7f861b7219341", - "cMsgCount": 1, - "lastMsgTime": 1670184179.93401, - "lastMsg": "mass", - "cSameMsg": 0 - }, - "pb-IF4rVUcbVQ==": { - "display_string": [ - "\ue063Fancydinne" - ], - "profiles": [], - "name": "\ue063Fancydinne", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-28 21:37:03", - "registerOn": 1670183407.1803548, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670183407.1803555, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670183407.1803656, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670183407.180367, - "lastIP": "a{n~~afaldalh", - "deviceUUID": "09b4f28c01b8e01233298b6f49c580db0b60dc09", - "cMsgCount": 0, - "lastMsgTime": 1670184234.3789642, - "lastMsg": "shtt bro", - "cSameMsg": 0 - }, - "pb-IF40U0ZaPw==": { - "display_string": [ - "\ue030Android63614116" - ], - "profiles": [], - "name": "\ue030Android63614116", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 00:22:26", - "registerOn": 1670183825.6317015, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670183825.6317022, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670183852.6655056, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670183825.6317124, - "lastIP": "a\u007fj~~`iaj~z", - "deviceUUID": "a459d791f361a90efde64fd117e0ed79eb7002d5", - "cMsgCount": 0, - "lastMsgTime": 1670183852.6654449, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4DU0g6EQ==": { - "display_string": [ - "\ue020GreenishHoplite57" - ], - "profiles": [], - "name": "\ue020GreenishHoplite57", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 00:41:02", - "registerOn": 1670183931.2869294, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670183931.28693, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215810.964327, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215810.9643285, - "lastIP": "aw`~~kcakaaah", - "deviceUUID": "\u0015R[P\u0007D\u0002UX\u0002BS\u000eWY\u0015\u0005\\YXCY^VULW", - "cMsgCount": 1, - "lastMsgTime": 1670215931.9689183, - "lastMsg": "kick this betrayer ", - "cSameMsg": 0 - }, - "pb-JiNJARBSXEJGWVhIGEJQVFJDGUVXRllL": { - "display_string": [ - "\ue063NoName49837", - "\ue030Android53527602" - ], - "profiles": [], - "name": "\ue063NoName49837", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-01 18:22:17", - "registerOn": 1670184626.6953363, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670184626.695337, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670184626.6953464, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670184626.6953475, - "lastIP": "dvva{va|k~~lc", - "deviceUUID": "90eff49e1851306e47d52c94e244089837e81963" - }, - "pb-IF49VFcGNw==": { - "display_string": [ - "\ue030Android62958044" - ], - "profiles": [], - "name": "\ue030Android62958044", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 16:24:08", - "registerOn": 1670184672.81187, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670184672.811871, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670184672.811898, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670184672.8118994, - "lastIP": "h|vb}i~yn~}hb", - "deviceUUID": "185782ffcdef05a28bf4977f55b7fe3102383293" - }, - "pb-IF5dU20MFg==": { - "display_string": [ - "\ue020redrubydiamond94", - "\ue030Android62423539", - "\ue030Android62423712" - ], - "profiles": [], - "name": "\ue020redrubydiamond94", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-09 21:22:56", - "registerOn": 1670185009.0298007, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670185009.0298014, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670185009.0298119, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670185498.361606, - "lastIP": "b}k~~`gaib~vb|n", - "deviceUUID": "bcd9ad437e7af846befaebafc83e3be6274a96a3" - }, - "pb-IF4IIUU6": { - "display_string": [ - "\ue020davidson6466", - "\ue030Android19307812" - ], - "profiles": [], - "name": "\ue020davidson6466", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-01 20:11:42", - "registerOn": 1670185229.7549117, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670185229.7549121, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670185824.7601225, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670185544.5390012, - "lastIP": "azo~|`~}viw", - "deviceUUID": "270ea10f9661b5a8496af158ae2bed43c2864133", - "cMsgCount": 0, - "lastMsgTime": 1670185824.759949, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4jVVgTXA==": { - "display_string": [ - "\ue063KingsKing2" - ], - "profiles": [], - "name": "\ue063KingsKing2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-21 22:43:03", - "registerOn": 1670185492.9849513, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670185492.9849517, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670185492.9849613, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670185492.9849622, - "lastIP": "a\u007fn~~acakganf", - "deviceUUID": "8e0ce439269486aeb728ec14658e563d3137e54a" - }, - "pb-IF4RU08gKg==": { - "display_string": [ - "\ue030Android63948779" - ], - "profiles": [], - "name": "\ue030Android63948779", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 23:20:58", - "registerOn": 1670185521.0481658, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670185521.048167, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670265164.6069834, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670265164.6069844, - "lastIP": "b\u007fh~~heaja}vaza", - "deviceUUID": "fe26c3ca1dc688adcbb6ed6ab2f9afbe73ad3e3a" - }, - "pb-IF42U05cDw==": { - "display_string": [ - "\ue063Measurabl7" - ], - "profiles": [], - "name": "\ue063Measurabl7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 02:49:26", - "registerOn": 1670185543.1754837, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670185543.1754842, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670185543.1754913, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670185543.175492, - "lastIP": "awo~~`iaig}vaxj", - "deviceUUID": "9bb765c21af3cb1d28fc4ff77961800866aa4e45" - }, - "pb-IF4TUxEoKg==": { - "display_string": [ - "\ue020TUJABAAP005", - "\ue030Android60088344" - ], - "profiles": [], - "name": "\ue020TUJABAAP005", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-29 14:15:10", - "registerOn": 1670186322.760002, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670186322.7600024, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670217665.9859152, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670217665.9859161, - "lastIP": "a\u007fn~~aeaibaifx", - "deviceUUID": "532d59db41fbfa8e777af032be92c3ee9c99fa55", - "cMsgCount": 0, - "lastMsgTime": 1670218286.3535814, - "lastMsg": "devil lavdya ", - "cSameMsg": 0 - }, - "pb-IF4FUksNDg==": { - "display_string": [ - "\ue020capnStranger" - ], - "profiles": [], - "name": "\ue020capnStranger", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-27 09:11:22", - "registerOn": 1670186510.547155, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670186510.5471554, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670186510.5471644, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670186510.5471652, - "lastIP": "a~o~}igaii|vcv", - "deviceUUID": "c8cf8234e381979f72d54a80b25a3d5ecf02a877", - "cMsgCount": 0, - "lastMsgTime": 1670188635.8347824, - "lastMsg": "sure", - "cSameMsg": 0 - }, - "pb-IF4JU3IpKw==": { - "display_string": [ - "\ue030Android62438169" - ], - "profiles": [], - "name": "\ue030Android62438169", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-04 02:54:02", - "registerOn": 1670187022.1597023, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187022.159703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187022.1597118, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187022.1597128, - "lastIP": "eaieyvhvva{l", - "deviceUUID": "afb7f8b98d738c2e87a10cd2146d56e17f0427e6" - }, - "pb-JiNJVxFcUUVJW15EGE9XVldGF0ZdTlNF": { - "display_string": [ - "\ue063swaprocks4", - "\ue030Android750766" - ], - "profiles": [], - "name": "\ue063swaprocks4", - "isBan": false, - "isMuted": false, - "accountAge": "2016-07-24 04:00:48", - "registerOn": 1670187024.0225737, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187024.0225747, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187024.0225837, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187024.022585, - "lastIP": "ayh~}khaoiaj`}", - "deviceUUID": "2ebc6a23fa9ba1ddf1d4b9257c4ee5c211e75d06" - }, - "pb-IF4PU0s9PQ==": { - "display_string": [ - "\ue030Android63813378" - ], - "profiles": [], - "name": "\ue030Android63813378", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 00:22:01", - "registerOn": 1670187157.5254676, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187157.525468, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187157.5254757, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187157.525477, - "lastIP": "a\u007fn~}hfajavva\u007fj", - "deviceUUID": "46e0bda220b4c7dd11de21758e31db178124eecb" - }, - "pb-IF4UUkJZKw==": { - "display_string": [ - "\ue020LoudArithmetic11" - ], - "profiles": [], - "name": "\ue020LoudArithmetic11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-18 19:35:49", - "registerOn": 1670187378.6117237, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187378.6117244, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187378.6117315, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187378.6117322, - "lastIP": "b\u007fi~}hiaif~vev", - "deviceUUID": "\u0015WZ\u0003WD\u0004\u000eUU@QUQWGSZQSLS\\USF" - }, - "pb-IF4sVVgTAg==": { - "display_string": [ - "\ue063WonderfulH" - ], - "profiles": [], - "name": "\ue063WonderfulH", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-25 23:56:29", - "registerOn": 1670187407.5496073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187407.5496085, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324839.5278049, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670324839.5278063, - "lastIP": "a\u007fn~}hcaib}vew", - "deviceUUID": "4c83d3e6437e3ea3f5ef3e3a0de6daa489b1c5f2" - }, - "pb-IF5TV1o8XQ==": { - "display_string": [ - "\ue063MadBanjoPl" - ], - "profiles": [], - "name": "\ue063MadBanjoPl", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-28 16:25:52", - "registerOn": 1670187548.9578001, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187548.9578009, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187548.95781, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187548.9578109, - "lastIP": "azo~{m~|n~\u007f", - "deviceUUID": "24461bfe2e9da2133d8266bb0f06e278e9cb1c50" - }, - "pb-IF4CVUkKKg==": { - "display_string": [ - "\ue020pulkitfirani" - ], - "profiles": [], - "name": "\ue020pulkitfirani", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-10 17:29:59", - "registerOn": 1670187747.6106598, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187747.6106603, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187747.6106682, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187747.6106694, - "lastIP": "dvvazn~w`~~ne", - "deviceUUID": "ed63ea232d99af1e6bb2e6c7752087abf325cc5a" - }, - "pb-JiNJARBfVUtBVFhCEERZUlNEGUBbRFRF": { - "display_string": [ - "\ue063Nihilisti2", - "\ue030Android16830059" - ], - "profiles": [], - "name": "\ue063Nihilisti2", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-10 23:27:14", - "registerOn": 1670188006.897376, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188006.8973763, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188006.8973858, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670188006.8973868, - "lastIP": "b\u007fk~xn~~`haihx", - "deviceUUID": "89c2fe944188ae51988f48d4dd37038c0eba0be0" - }, - "pb-IF49Ploi": { - "display_string": [ - "\ue020SniperRookie8431" - ], - "profiles": [], - "name": "\ue020SniperRookie8431", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-17 16:04:45", - "registerOn": 1670188137.0221465, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188137.0221477, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235657.839489, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670235657.8394904, - "lastIP": "azo~|l~y`~za", - "deviceUUID": "985b17a4976c8db1c0182b3638b370cb18d37405" - }, - "pb-IF4gHGlS": { - "display_string": [ - "\ue063Matt0so" - ], - "profiles": [], - "name": "\ue063Matt0so", - "isBan": false, - "isMuted": false, - "accountAge": "2018-06-29 05:11:26", - "registerOn": 1670188184.4751937, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188184.4751945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188184.4752045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670188184.4752054, - "lastIP": "a|i~\u007fvavo~|", - "deviceUUID": "d36bc3d0d68062a0d66062c6eb29ef1affbf1bf3" - }, - "pb-IF4GU1AiDw==": { - "display_string": [ - "\ue063SoochowDri" - ], - "profiles": [], - "name": "\ue063SoochowDri", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 02:34:12", - "registerOn": 1670188249.3898501, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188249.3898506, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188249.3898587, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670188249.38986, - "lastIP": "a\u007fk~}h`aia}ve\u007f", - "deviceUUID": "b20d21827258dab80a8e1a44d527a558290b5809" - }, - "pb-IF4HU3YGBw==": { - "display_string": [ - "\ue020CompanionableRag46" - ], - "profiles": [], - "name": "\ue020CompanionableRag46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 13:54:32", - "registerOn": 1670188271.7963076, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188271.796308, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188271.7963173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670188271.7963185, - "lastIP": "b~j~~hdajbzvava", - "deviceUUID": "cfa218afabdea403196b42b1b90b2fba65d1e7bd", - "cMsgCount": 0, - "lastMsgTime": 1670188708.742672, - "lastMsg": "wth", - "cSameMsg": 0 - }, - "pb-IF4TU0I4Ew==": { - "display_string": [ - "\ue063FastestThi" - ], - "profiles": [], - "name": "\ue063FastestThi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-17 23:08:49", - "registerOn": 1670188289.5418484, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188289.5418491, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188289.5418575, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670189018.0435832, - "lastIP": "d~vb|a~}iiaia~", - "deviceUUID": "a68bae10c5c6d289187d26259bca9143dd1be04d" - }, - "pb-IF4-UEgO": { - "display_string": [ - "\ue063kishordevl" - ], - "profiles": [], - "name": "\ue063kishordevl", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-11 00:17:43", - "registerOn": 1670188595.035446, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188595.0354466, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188595.0354564, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670189452.6745129, - "lastIP": "b\u007fj~~oiaaeaii", - "deviceUUID": "2ab154d67bbfe10e29b08d9de1c503929ff8f042", - "cMsgCount": 0, - "lastMsgTime": 1670189428.5453143, - "lastMsg": "\ud83d\ude0e", - "cSameMsg": 0 - }, - "pb-IF4VUhMcPw==": { - "display_string": [ - "\ue020PickyStatement25", - "\ue030Android50630763" - ], - "profiles": [], - "name": "\ue020PickyStatement25", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-21 17:31:34", - "registerOn": 1670188638.933082, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188638.9330826, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188638.9330914, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670188638.933092, - "lastIP": "dvvcyvb|j~~ja", - "deviceUUID": "4806913813935e604d81ab3b7db5830b0be20868" - }, - "pb-IF4qU0gfFA==": { - "display_string": [ - "\ue030Android63726577" - ], - "profiles": [], - "name": "\ue030Android63726577", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 18:23:36", - "registerOn": 1670189036.7102885, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670189036.7102892, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670189036.7102988, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670192009.690021, - "lastIP": "i|va~`~~oca`f", - "deviceUUID": "\u0015T_SQBWZT" - }, - "pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF": { - "display_string": [ - "\ue063iTzAnuragP" - ], - "profiles": [], - "name": "\ue020iTzAnuragP", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-26 12:06:14", - "registerOn": 1670189967.7119339, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670189967.7119348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332707.6870334, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670335360.9675193, - "lastIP": "b}k~}kean`aic|", - "deviceUUID": "6b4184293fa6e868fb9f4ae11285c7ae8d24e639", - "cMsgCount": 0, - "lastMsgTime": 1670335928.7077563, - "lastMsg": "pain \ud83d\ude39", - "cSameMsg": 0 - }, - "pb-IF4wU0UjMg==": { - "display_string": [ - "\ue020\uc5b8\uc9c11984" - ], - "profiles": [], - "name": "\ue020\uc5b8\uc9c11984", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 11:46:52", - "registerOn": 1670189980.7305636, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670189980.7305644, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670189980.7306015, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670189980.7306027, - "lastIP": "axi~vo~~l`alf", - "deviceUUID": "3b9c946fcd7254c80cf75186a43b03d09ba552b0" - }, - "pb-IF4tU00IIg==": { - "display_string": [ - "\ue030Android63886122" - ], - "profiles": [], - "name": "\ue030Android63886122", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 12:26:47", - "registerOn": 1670190340.3067062, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670190340.3067071, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670190340.3067188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670190340.30672, - "lastIP": "a\u007fk~{l~{a~}ld", - "deviceUUID": "e1aa54c5a06e1d9472a223b7955a72abcb2d613b" - }, - "pb-IF4oUmspEQ==": { - "display_string": [ - "\ue063PILEQUIFBI", - "\ue030Android55814559" - ], - "profiles": [], - "name": "\ue063PILEQUIFBI", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-05 00:04:03", - "registerOn": 1670190409.5864458, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670190409.5864463, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670190409.5864553, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670190409.586456, - "lastIP": "a|m~~jeajc}va}h", - "deviceUUID": "d19931a554146e77a343fa11baae89566d8fd14c" - }, - "pb-IF4PU0UlAw==": { - "display_string": [ - "\ue063MunicipalJ" - ], - "profiles": [], - "name": "\ue063MunicipalJ", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-03 00:12:52", - "registerOn": 1670190830.7465851, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670190830.7465858, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320267.35186, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320267.3518615, - "lastIP": "a\u007fn~~aeai`alc", - "deviceUUID": "86da5fd261f3e1090a9f1ab41ca24b9e21ad6dae", - "cMsgCount": 0, - "lastMsgTime": 1670320893.7747145, - "lastMsg": "what happened popat", - "cSameMsg": 0 - }, - "pb-IF4mU0cfXA==": { - "display_string": [ - "\ue020StingyOccurrence56" - ], - "profiles": [], - "name": "\ue020StingyOccurrence56", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 13:06:23", - "registerOn": 1670191106.0276513, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191106.0276518, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670191106.0276601, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670191106.027661, - "lastIP": "a\u007fk~}hcaje{vbv", - "deviceUUID": "cdab009cd97031e609408b16b5b61921dc4a97c6" - }, - "pb-IF4rUk0bPQ==": { - "display_string": [ - "\ue020VascularDeficiency37" - ], - "profiles": [], - "name": "\ue020VascularDeficiency37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-06 07:24:25", - "registerOn": 1670191208.4187162, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191208.418717, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319169.1032193, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670327716.2861583, - "lastIP": "a}j~zj~yj~~kd", - "deviceUUID": "\u0015WTY\u0003M\u0002ZV\u0005A\u0002YW\u0004\u0015\u0003ZXTES[SSL", - "cMsgCount": 0, - "lastMsgTime": 1670327815.455282, - "lastMsg": "ice ballson", - "cSameMsg": 0 - }, - "pb-IF4mVxRZXA==": { - "display_string": [ - "\ue020PSSG24" - ], - "profiles": [], - "name": "\ue020PSSG24", - "isBan": false, - "isMuted": false, - "accountAge": "2018-08-01 14:15:49", - "registerOn": 1670191223.4327536, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191223.4327545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670191223.4327629, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670191223.4327638, - "lastIP": "a}j~~nhajc{vayj", - "deviceUUID": "a11cd4ddee9b4178f3885f3f7f410158a6f72b52" - }, - "pb-IF5SVxkfLw==": { - "display_string": [ - "\ue063SapphireM2" - ], - "profiles": [], - "name": "\ue063SapphireM2", - "isBan": false, - "isMuted": false, - "accountAge": "2018-08-22 15:56:29", - "registerOn": 1670191296.8638763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191296.8638768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670191296.8639014, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670191296.8639026, - "lastIP": "a\u007fk~~kaaa`alb", - "deviceUUID": "b846fa346be995cf50d27bc05f5b7b645b6c5784", - "cMsgCount": 0, - "lastMsgTime": 1670191770.4773633, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4iVEo4Lg==": { - "display_string": [ - "\ue063OddFeeling", - "\ue030Android38370482" - ], - "profiles": [], - "name": "\ue063OddFeeling", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-24 13:52:31", - "registerOn": 1670191480.0653112, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191480.065312, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670293432.526496, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670298940.909374, - "lastIP": "d|vbzj~|k~}jg", - "deviceUUID": "23f6bd6f26786ccd5239bf1651dbbd30b242098e" - }, - "pb-IF49VW5cKQ==": { - "display_string": [ - "\ue020UnusualJavelina35259" - ], - "profiles": [], - "name": "\ue020UnusualJavelina35259", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-12 16:00:22", - "registerOn": 1670191817.5878084, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191817.5878088, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670191817.5878155, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670191817.5878162, - "lastIP": "b}k~~oha`can", - "deviceUUID": "a8a19876857411672d8b030000bad9abd34adf90" - }, - "pb-IF4nVXktLw==": { - "display_string": [ - "\ue020LocomotiveVigilance7", - "\ue030Android63599101", - "\ue030Android40913582" - ], - "profiles": [], - "name": "\ue020LocomotiveVigilance7", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-28 12:02:54", - "registerOn": 1670191857.4362824, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191857.4362829, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670191857.4362922, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670191857.436293, - "lastIP": "awi~yo~~hdang", - "deviceUUID": "01194af824c318483a48d56b0381697283f66770" - }, - "pb-IF48U0gcBw==": { - "display_string": [ - "\ue063WeakerDist" - ], - "profiles": [], - "name": "\ue063WeakerDist", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 01:39:20", - "registerOn": 1670191940.7448688, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191940.7448695, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670272668.177606, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670272668.177608, - "lastIP": "eai`}v`aja|", - "deviceUUID": "18e7fcefd9f285966c5fee0bdd3213eb833abac2" - }, - "pb-IF48U00qNA==": { - "display_string": [ - "\ue063OverallCon", - "\ue030Android63944420" - ], - "profiles": [], - "name": "\ue063OverallCon", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 13:09:12", - "registerOn": 1670192134.568987, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670192134.5689874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670192134.5689964, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670192134.5689971, - "lastIP": "b\u007fo~~mdajd|vbw", - "deviceUUID": "81911cd56a54fa89f1d87ef93d27ca05db1535ae" - }, - "pb-IF4rU3omIw==": { - "display_string": [ - "\ue020JKS4302" - ], - "profiles": [], - "name": "\ue020JKS4302", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-06 10:23:53", - "registerOn": 1670192243.1353755, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670192243.1353765, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670192243.1353834, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670192243.1353846, - "lastIP": "azo~{l~~ogaje|", - "deviceUUID": "68b3aa1273cdd46e83ddbe562fe1db2ed3f25ced" - }, - "pb-IF4nUmsiNg==": { - "display_string": [ - "\ue020PurposefulOffence22", - "\ue030Android55843945" - ], - "profiles": [], - "name": "\ue020PurposefulOffence22", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-05 08:10:09", - "registerOn": 1670192677.3555582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670192677.3555586, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670192677.3555667, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670192677.3555677, - "lastIP": "cwvd|va|h~~ob", - "deviceUUID": "d0e052b32c49fd99e15d7ce93c0370e65b612111" - }, - "pb-IF4jU08dIQ==": { - "display_string": [ - "\ue063Roofy156" - ], - "profiles": [], - "name": "\ue063Roofy156", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 09:17:25", - "registerOn": 1670192911.5168316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670192911.5168324, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670192911.5168402, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670194337.2890995, - "lastIP": "b\u007fk~~ogai`|vbzl", - "deviceUUID": "50a9b4fbd1bb8edec3d786b099c08c2f7cca5feb" - }, - "pb-IF4sUhAOXA==": { - "display_string": [ - "\ue063NiuNiu0808" - ], - "profiles": [], - "name": "\ue063NiuNiu0808", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-07 22:52:08", - "registerOn": 1670193548.959455, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670193548.9594555, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670193548.959463, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670193548.9594636, - "lastIP": "ewvawj~y`~za", - "deviceUUID": "42c2f80d156691fcb95ba5ce24d4397b341de0cf", - "cMsgCount": 1, - "lastMsgTime": 1670194264.464536, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4yVGIYPQ==": { - "display_string": [ - "\ue063CozyProkil" - ], - "profiles": [], - "name": "\ue063CozyProkil", - "isBan": false, - "isMuted": false, - "accountAge": "2019-08-23 15:28:56", - "registerOn": 1670193813.8826878, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670193813.8826885, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670193813.8826978, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670193813.8826985, - "lastIP": "axm~~ofajiaia~", - "deviceUUID": "bd7d1e9a75fa95bd84cf4d37d5418398072e34db", - "cMsgCount": 0, - "lastMsgTime": 1670193859.1313167, - "lastMsg": "wow", - "cSameMsg": 0 - }, - "pb-LV4FURgIUhBIWg4VRBQDV1IRQg==": { - "display_string": [ - "\ue063AshuAmbros", - "\ue030PC538677" - ], - "profiles": [], - "name": "\ue063AshuAmbros", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-09 20:09:19", - "registerOn": 1670194485.1817415, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670194485.1817424, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670194485.1817498, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670194485.1817508, - "lastIP": "a\u007fn~}hcajbzvgw", - "deviceUUID": "d6a5794887314f25a6e325b77be3bc716659fa79" - }, - "pb-IF4BU04oMw==": { - "display_string": [ - "\ue020gaviota36497love" - ], - "profiles": [], - "name": "\ue020gaviota36497love", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 04:55:18", - "registerOn": 1670194644.0175629, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670194644.0175636, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670194644.0175722, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670194644.017573, - "lastIP": "awa~}ifaih\u007fvb}m", - "deviceUUID": "e941c8c60608c1773e4f2949f495b0e086a0da25" - }, - "pb-IF4LUk4-DA==": { - "display_string": [ - "\ue063Blueeesky3" - ], - "profiles": [], - "name": "\ue063Blueeesky3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-11 11:49:23", - "registerOn": 1670197135.9496934, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670197135.9496942, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670197135.9497228, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670197135.9497242, - "lastIP": "a{h~}icaifxva|k", - "deviceUUID": "8230321007aeb9286841900725f3574349e432dc" - }, - "pb-IF4XUhElCA==": { - "display_string": [ - "\ue063josesoulkn", - "\ue030Android50645693" - ], - "profiles": [], - "name": "\ue063josesoulkn", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-07 21:17:09", - "registerOn": 1670197534.3173604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670197534.3173609, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670197534.3173683, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670197534.317369, - "lastIP": "b\u007fh~|o~~heaidv", - "deviceUUID": "0b9fad259d07074debe8009e1a333d651362cb7f" - }, - "pb-IF49VUIhKA==": { - "display_string": [ - "\ue063FellowStro" - ], - "profiles": [], - "name": "\ue063FellowStro", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-24 05:29:38", - "registerOn": 1670197961.5889416, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670197961.588942, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670198429.6769404, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670197961.5889525, - "lastIP": "a~a~vl~~h~}md", - "deviceUUID": "c0b46edabde9560c21d934548cffcf66f938f546", - "cMsgCount": 0, - "lastMsgTime": 1670198429.676879, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4HVHJaLw==": { - "display_string": [ - "\ue020PeekingNomad673", - "\ue030Android43830732" - ], - "profiles": [], - "name": "\ue020PeekingNomad673", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-01 10:20:13", - "registerOn": 1670198370.0109055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670198370.0109062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670198370.0109131, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670198370.010914, - "lastIP": "axo~}jbancajax", - "deviceUUID": "ac338d85b02270561a64b425c6cb943fe20f9624" - }, - "pb-IF4-U3M7Ug==": { - "display_string": [ - "\ue020RighteousRein29" - ], - "profiles": [], - "name": "\ue020RighteousRein29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 20:12:13", - "registerOn": 1670198399.1632311, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670198399.163232, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670198399.163242, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670198399.163243, - "lastIP": "b}k~~`gaia{vawn", - "deviceUUID": "a2c13dfea614e1ab18268dd38d5382f618de4fba" - }, - "pb-IF5RU00kKw==": { - "display_string": [ - "\ue020\u1d04\u029c\u1d1c\u1d1b\u1d1b\u1d00" - ], - "profiles": [], - "name": "\ue020\u1d04\u029c\u1d1c\u1d1b\u1d1b\u1d00", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 11:31:02", - "registerOn": 1670198477.4666266, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670198477.4666271, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298562.5574703, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670309952.300242, - "lastIP": "dzva}i~w`~}ie", - "deviceUUID": "57e1fdd987c0bb93c8334c7c873614967a59b6d1" - }, - "pb-IF5RU1AaLw==": { - "display_string": [ - "\ue063RainyParce" - ], - "profiles": [], - "name": "\ue063RainyParce", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 19:23:33", - "registerOn": 1670198520.9151702, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670198520.9151711, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320123.8296862, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320123.829688, - "lastIP": "a~j~~kdakhaje|", - "deviceUUID": "02896c13454838be0c0432b4bfe4053bce969627" - }, - "pb-IF5RU21cVw==": { - "display_string": [ - "\ue020TriplePie57" - ], - "profiles": [], - "name": "\ue020TriplePie57", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-05 01:51:33", - "registerOn": 1670200161.1822622, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200161.1822634, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201621.1683373, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670202019.6188917, - "lastIP": "avm~~a~~jeaia}", - "deviceUUID": "cf32114447c2adb49f53898adb78f6300cf6fc86" - }, - "pb-IF4DUhMJFg==": { - "display_string": [ - "\ue0200deathriot0", - "\ue030Android54074532" - ], - "profiles": [], - "name": "\ue0200deathriot0", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-19 08:19:03", - "registerOn": 1670200200.9522152, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200200.9522161, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670200200.9522262, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670200200.952227, - "lastIP": "a\u007fk~yj~~mcai`v", - "deviceUUID": "5735b6409a66c90ff90bfb6ef59d98c4e758f3ca" - }, - "pb-IF5WDVcI": { - "display_string": [ - "\ue020K\u00c5RT\u00d5S", - "\ue030Android18315499" - ], - "profiles": [], - "name": "\ue020K\u00c5RT\u00d5S", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-06 19:33:55", - "registerOn": 1670200306.7026906, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200306.7026913, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670200306.7027001, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670200306.702701, - "lastIP": "b}k~}jhaigwva\u007f`", - "deviceUUID": "72fc56ace4706edb441eaad293e2a88baa0022a4" - }, - "pb-IF4uU2ImAg==": { - "display_string": [ - "\ue030Android61067824" - ], - "profiles": [], - "name": "\ue030Android61067824", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-08 06:54:05", - "registerOn": 1670200367.757479, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200367.7574797, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670200367.75749, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670200367.7574909, - "lastIP": "azo~|j~~hbaih~", - "deviceUUID": "ccc8ae6a59665a05014b9d56352fb2dc2557cf42" - }, - "pb-IF48VFIlDQ==": { - "display_string": [ - "\ue020HotPinkBuccaneer9071" - ], - "profiles": [], - "name": "\ue020HotPinkBuccaneer9071", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-03 16:47:08", - "registerOn": 1670200519.9847865, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200519.984787, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670200519.984796, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670200519.9847972, - "lastIP": "azo~|`~}iga`f", - "deviceUUID": "d9933385fd007adf9daf61e8a6a76089c99ad8ca" - }, - "pb-IF4uU0MJMA==": { - "display_string": [ - "\ue030VR329281" - ], - "profiles": [], - "name": "\ue030VR329281", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 18:55:43", - "registerOn": 1670200602.427418, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200602.427419, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670200602.4274273, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670201257.5039372, - "lastIP": "f{va~a~}l~~kc", - "deviceUUID": "a456af23317cf7fc25c1dc65f0b352fdb2882409" - }, - "pb-IF4sU20DHw==": { - "display_string": [ - "\ue063IdioticPyr" - ], - "profiles": [], - "name": "\ue063IdioticPyr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-19 20:34:25", - "registerOn": 1670201094.221963, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201094.221964, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201094.2219732, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670201094.2219744, - "lastIP": "awi~~`haigyvaxk", - "deviceUUID": "44578695ed09980f1d5f43478cb40acdbfabbf32" - }, - "pb-IF5QU3ISKA==": { - "display_string": [ - "\ue020NewGamer456ProGamer", - "\ue030Android62039138" - ], - "profiles": [], - "name": "\ue020NewGamer456ProGamer", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-27 04:14:12", - "registerOn": 1670201194.6394901, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201194.6394908, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201625.1812983, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670202964.9359689, - "lastIP": "axo~}k`aih|vi", - "deviceUUID": "658c484bad61cc95241a1430db50761e6efce3fa", - "cMsgCount": 0, - "lastMsgTime": 1670201246.4659836, - "lastMsg": "xd", - "cSameMsg": 0 - }, - "pb-IF5cU1E5Mw==": { - "display_string": [ - "\ue063Moonanez" - ], - "profiles": [], - "name": "\ue063Moonanez", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 19:24:46", - "registerOn": 1670201337.3716342, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201337.3716352, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201337.3716452, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670201337.3716462, - "lastIP": "b\u007fj~~n`akfai`y", - "deviceUUID": "189d5063dde6aa25392acf1b37fea939217c905f" - }, - "pb-IF4LMxRa": { - "display_string": [ - "\ue020Dineshkd624" - ], - "profiles": [], - "name": "\ue020Dineshkd624", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-01 13:18:27", - "registerOn": 1670201523.8008842, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201523.8008847, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670202051.7249374, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670204064.6482582, - "lastIP": "a\u007fn~}iaajavvi}", - "deviceUUID": "aac0266b2225b4473b76c7a202f2e8b5c35cdc29" - }, - "pb-IF4WVHIiAQ==": { - "display_string": [ - "\ue063MVPMaGnuMG", - "\ue030Android30517211" - ], - "profiles": [], - "name": "\ue063MVPMaGnuMG", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-03 13:49:52", - "registerOn": 1670201525.8096514, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201525.8096519, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201525.8096592, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670201525.80966, - "lastIP": "dvvcxvayh~wa", - "deviceUUID": "d98ffb60cc150587b3b9474a18efad9599cbd607" - }, - "pb-IF4iU08nNw==": { - "display_string": [ - "\ue030Android63987828" - ], - "profiles": [], - "name": "\ue030Android63987828", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 06:24:09", - "registerOn": 1670201663.631497, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201663.6314976, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201663.6315067, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670201663.6315079, - "lastIP": "axm~~ofaabaig~", - "deviceUUID": "0603d61c95312f75f10be673f4cc1b3d2c2fdae0" - }, - "pb-IF4SU3kCMQ==": { - "display_string": [ - "\ue063SanguinePa" - ], - "profiles": [], - "name": "\ue063SanguinePa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-04 18:02:52", - "registerOn": 1670202122.27969, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670202122.2796907, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670202122.2796996, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670202122.2797005, - "lastIP": "a\u007fk~v`~~k`aid~", - "deviceUUID": "855df29fb09aa4b7b74af033e5868119c649844e" - }, - "pb-IF4oU04eNg==": { - "display_string": [ - "\ue063LethargicM" - ], - "profiles": [], - "name": "\ue063LethargicM", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 11:26:10", - "registerOn": 1670202164.5037704, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670202164.503771, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670202164.50378, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670202164.5037806, - "lastIP": "dvva}n~zo~}ke", - "deviceUUID": "0cbfe82996e3120c6cb59e62c8d9303d077d4e74" - }, - "pb-IF4gUk8RCw==": { - "display_string": [ - "\ue020IGNOBLETRASLATION65" - ], - "profiles": [], - "name": "\ue020IGNOBLETRASLATION65", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-16 01:45:38", - "registerOn": 1670202435.379121, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670202435.3791218, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670202435.3791292, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670202435.37913, - "lastIP": "awa~}iiaoeajc~", - "deviceUUID": "c34924d2ea94c46bad1ad5ae64ab0b7b7b3ab0c9", - "cMsgCount": 1, - "lastMsgTime": 1670202898.073434, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5SUlA8Lw==": { - "display_string": [ - "\ue020pausaltkrym" - ], - "profiles": [], - "name": "\ue020pausaltkrym", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-10 03:55:51", - "registerOn": 1670202497.6851404, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670202497.685141, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670202497.685149, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670202497.68515, - "lastIP": "a|j~~mdao~~od", - "deviceUUID": "71198d60f0a8b21db8eb6ce36cca8ee4553018a1" - }, - "pb-IF4CVWFaUw==": { - "display_string": [ - "\ue020SATHISHmax1206" - ], - "profiles": [], - "name": "\ue020SATHISHmax1206", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-08 13:48:19", - "registerOn": 1670203021.4523964, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203021.452397, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670203021.4524057, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670203021.4524074, - "lastIP": "dvvb\u007fn~~igaje~", - "deviceUUID": "763443dfb1db3637f87a372db533bacf0efd791e" - }, - "pb-IF4BV1U9LA==": { - "display_string": [ - "\ue020praneshbhat14051998" - ], - "profiles": [], - "name": "\ue020praneshbhat14051998", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-13 16:28:02", - "registerOn": 1670203708.8609905, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203708.8609912, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670203708.8610024, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670203708.8610039, - "lastIP": "azo~{m~}m~~jg", - "deviceUUID": "d1c42c757a26b1250c14b6c6de3318bb6da18f52" - }, - "pb-IF4tVVIDCw==": { - "display_string": [ - "\ue063anshudec14" - ], - "profiles": [], - "name": "\ue063anshudec14", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-22 22:57:52", - "registerOn": 1670203795.9650452, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203795.9650457, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670203795.9650557, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670203795.9650564, - "lastIP": "a}m~~n~~iaaj", - "deviceUUID": "91c7dbd6bca3d7280efec88e4154d83b80c67f97" - }, - "pb-IF5SVxkkLQ==": { - "display_string": [ - "\ue020gokulse7en" - ], - "profiles": [], - "name": "\ue020gokulse7en", - "isBan": false, - "isMuted": false, - "accountAge": "2018-08-19 18:00:10", - "registerOn": 1670203919.4198425, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203919.4198434, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670203919.4198532, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670203919.4198542, - "lastIP": "dvvcxvb}i~~he", - "deviceUUID": "2e6457a7d513f195ac4e456baf9c74d33b4b5dc8" - }, - "pb-IF40U0oYBg==": { - "display_string": [ - "\ue063Socrates43" - ], - "profiles": [], - "name": "\ue063Socrates43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 04:59:09", - "registerOn": 1670203946.553916, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203946.5539167, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269389.5119388, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670269389.5119402, - "lastIP": "b\u007fh~wo~}iaajaz", - "deviceUUID": "888ef94e3fc5880d0f37456c7b4527075b0cd968" - }, - "pb-IF4HU0wiCQ==": { - "display_string": [ - "\ue020AgreeableSemblance50" - ], - "profiles": [], - "name": "\ue020AgreeableSemblance50", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 19:45:08", - "registerOn": 1670203971.5977027, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203971.5977032, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670203971.5977118, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670203971.597713, - "lastIP": "a~o~va~}hiaiiy", - "deviceUUID": "9f4c54ebaabf82a040ecea4e086c012ca9e28586" - }, - "pb-IF4RU0EbUA==": { - "display_string": [ - "\ue030Android63276533" - ], - "profiles": [], - "name": "\ue030Android63276533", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-12 14:20:13", - "registerOn": 1670204401.1261804, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670204401.126181, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670204401.1261885, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670217872.7436073, - "lastIP": "b}k~}m~yk~~lf", - "deviceUUID": "ffdac6082f24e8138cda55d2b295e502c27b0d49", - "cMsgCount": 0, - "lastMsgTime": 1670219146.0837212, - "lastMsg": "whats with people hatin using bombs the games called bombsquad", - "cSameMsg": 0 - }, - "pb-IF4SU09eKw==": { - "display_string": [ - "\ue020SharpIcthyosaur49205" - ], - "profiles": [], - "name": "\ue020SharpIcthyosaur49205", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 18:51:12", - "registerOn": 1670205340.167161, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670205340.167162, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670205340.1671715, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670205340.1671727, - "lastIP": "a~h~zl~~mdaaa", - "deviceUUID": "0832031cc31659343ba666382c167f3884424438" - }, - "pb-IF4MU0wxNQ==": { - "display_string": [ - "\ue063GrandComma" - ], - "profiles": [], - "name": "\ue063GrandComma", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 06:24:05", - "registerOn": 1670205779.5616522, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670205779.561653, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670205779.561664, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670205779.5616653, - "lastIP": "awa~}hcaje}vb|i", - "deviceUUID": "46475493b2c3d49b5d960779a137c614e8287176" - }, - "pb-IF4dU2YgFg==": { - "display_string": [ - "\ue020RancidSpecialty27", - "\ue030Android63823303", - "\ue030Android63823291", - "\ue030Android63823319", - "\ue030Android63823332" - ], - "profiles": [], - "name": "\ue020RancidSpecialty27", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-20 12:53:24", - "registerOn": 1670205825.7090957, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670205825.7090964, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670205825.7091148, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670205825.709116, - "lastIP": "a~m~~ndaja~vb{n", - "deviceUUID": "92d9296de90f9cd3d0798e0a658bdd0a390b0e6b" - }, - "pb-IF49U3YpAA==": { - "display_string": [ - "\ue020HArSH463" - ], - "profiles": [], - "name": "\ue020HArSH463", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-20 18:05:15", - "registerOn": 1670206063.5226865, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206063.522687, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307408.2160504, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307408.2160518, - "lastIP": "azo~|j~~hiaigy", - "deviceUUID": "2d9f05b0d6be639d0bccbafb8b00e9b785662e57" - }, - "pb-IF5XU1EvNw==": { - "display_string": [ - "\ue020LegibleAgility44" - ], - "profiles": [], - "name": "\ue020LegibleAgility44", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 09:35:55", - "registerOn": 1670206081.6254022, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206081.6254027, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206081.6254113, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670206081.625412, - "lastIP": "d}va~i~~k~~oc", - "deviceUUID": "4ef843047449a9812ef4d3bacb281781e12598c5" - }, - "pb-IF4jVUctHQ==": { - "display_string": [ - "\ue020vimal2680" - ], - "profiles": [], - "name": "\ue020vimal2680", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-24 20:58:44", - "registerOn": 1670206311.4067304, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206311.4067314, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254143.3070805, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670266224.386989, - "lastIP": "dvvc}va{m~}mc", - "deviceUUID": "19affb5b0fde1722f6f593df0cf6aca45d2f3e8a", - "cMsgCount": 0, - "lastMsgTime": 1670266903.656488, - "lastMsg": "ckd pk aaya", - "cSameMsg": 0 - }, - "pb-IF4eU0s9Pw==": { - "display_string": [ - "\ue020FearlessCamel86718" - ], - "profiles": [], - "name": "\ue020FearlessCamel86718", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 14:41:52", - "registerOn": 1670206342.5204551, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206342.5204556, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206342.5204635, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670222658.961414, - "lastIP": "a~a~vl~yo~vo", - "deviceUUID": "3fdc73fe2725eb7b0ecaa7730889ee7add9991c8" - }, - "pb-IF48U0wiKw==": { - "display_string": [ - "\ue020FortuitousManeuver41" - ], - "profiles": [], - "name": "\ue020FortuitousManeuver41", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 21:21:36", - "registerOn": 1670206364.604718, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206364.604719, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206364.6047294, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670206364.6047304, - "lastIP": "a\u007fk~~oiaiiyva\u007fn", - "deviceUUID": "d2d3f81fb2fa06a55fd6e6dff01e8e67fc6f5ff3" - }, - "pb-IF4VVBYtVg==": { - "display_string": [ - "\ue063Unshakabl4", - "\ue030Android33358855" - ], - "profiles": [], - "name": "\ue063Unshakabl4", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-20 14:51:37", - "registerOn": 1670206405.7893627, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206405.7893631, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206405.7893734, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670206405.789374, - "lastIP": "a~j~}ieaneajb", - "deviceUUID": "ba9cecee08162a19cb532ce724f4d8f4750cf3a5" - }, - "pb-IF5VUhQYUw==": { - "display_string": [ - "\ue063henricoBS" - ], - "profiles": [], - "name": "\ue063henricoBS", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-13 18:39:38", - "registerOn": 1670206506.4081454, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206506.408146, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206506.4081552, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670206506.4081564, - "lastIP": "axh~}leaacaif}", - "deviceUUID": "ab2871ebbb6443e8b25f4ecbabce9eca2393d228" - }, - "pb-IF4AU2kSAQ==": { - "display_string": [ - "\ue063ColderInfl", - "\ue030Android61620310" - ], - "profiles": [], - "name": "\ue063ColderInfl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-02 18:29:03", - "registerOn": 1670206523.1916451, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206523.1916456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206523.1916537, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670206523.1916544, - "lastIP": "d}va\u007fn~~ohanh", - "deviceUUID": "d1bb93dbe4507729d5833e2618873b0addd14084" - }, - "pb-IF4SU3U-Lw==": { - "display_string": [ - "\ue063PsychicalA" - ], - "profiles": [], - "name": "\ue063PsychicalA", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-16 23:43:31", - "registerOn": 1670207098.1655893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670207098.1655898, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254161.3763914, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254161.3763926, - "lastIP": "azj~zo~}keajb\u007f", - "deviceUUID": "cfc1c4b12129b1a294e58e21cc5a154ab5259ca7" - }, - "pb-IF4tUkIlKg==": { - "display_string": [ - "\ue030Android57611965" - ], - "profiles": [], - "name": "\ue030Android57611965", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-20 09:47:30", - "registerOn": 1670207446.2561529, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670207446.2561533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241881.916218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241881.9162195, - "lastIP": "a~o~}ieaj`yva{a", - "deviceUUID": "6c47affd2dca119a304abe6763f029a8b0cc79f0" - }, - "pb-IF4LU0ZTBw==": { - "display_string": [ - "\ue063NoName11978" - ], - "profiles": [], - "name": "\ue063NoName11978", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 11:06:37", - "registerOn": 1670208211.9260342, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208211.9260347, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670208211.9260426, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670208211.9260435, - "lastIP": "a\u007fn~}ifajdzvaxi", - "deviceUUID": "d68c17ce96e18e9b564af6e66534cd0ea39d9622" - }, - "pb-IF4gV1gCMQ==": { - "display_string": [ - "\ue020EliteWallaby35692" - ], - "profiles": [], - "name": "\ue020EliteWallaby35692", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-30 18:38:49", - "registerOn": 1670208744.8268719, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208744.8268726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336250.569319, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336250.5693204, - "lastIP": "dvvc}vawi~~la", - "deviceUUID": "99be2477367eb7f79e4d5b7bce090b3a5917a0d4", - "cMsgCount": 0, - "lastMsgTime": 1670307879.9956932, - "lastMsg": "insta I'd :atharvapawaskar_000", - "cSameMsg": 0 - }, - "pb-IF4TV3c_UQ==": { - "display_string": [ - "\ue063Brownmunde" - ], - "profiles": [], - "name": "\ue063Brownmunde", - "isBan": false, - "isMuted": false, - "accountAge": "2019-01-07 18:16:40", - "registerOn": 1670208761.8902287, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208761.8902292, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670208761.8902378, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670208761.8902385, - "lastIP": "dvvcyvawm~~je", - "deviceUUID": "0a9c5a8347e1de2df3534e40839cf22de21d93aa" - }, - "pb-IF5cU1E7Ig==": { - "display_string": [ - "\ue030Android63976036" - ], - "profiles": [], - "name": "\ue030Android63976036", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 13:51:27", - "registerOn": 1670208793.0052679, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208793.0052686, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670208793.0052762, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670209816.3350446, - "lastIP": "a~h~}jgajcaje~", - "deviceUUID": "88a490162e758d98ebe4b4921f4103f13d9791bc" - }, - "pb-LV4FAxcNBxBGXVtIQhAEUlxKGA==": { - "display_string": [ - "\ue020DroopyGriffin227", - "\ue030Android13950847", - "\ue030Android52421760" - ], - "profiles": [], - "name": "\ue063DroopyGrif", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-30 21:34:00", - "registerOn": 1670208826.414777, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208826.4147778, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250751.3987823, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670250751.3987832, - "lastIP": "azo~|l~~jbalh", - "deviceUUID": "342b57be5f15a4ad0025572d776cace9b5d0a71c" - }, - "pb-IF4pUxUDDQ==": { - "display_string": [ - "\ue063CulturalJa" - ], - "profiles": [], - "name": "\ue063CulturalJa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-14 19:12:56", - "registerOn": 1670208882.3057125, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208882.3057132, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336961.3543587, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336961.3543603, - "lastIP": "a|o~vo~vl~~id", - "deviceUUID": "da57110c5f4973bb04c80667c2462b4f0cf77e0b", - "cMsgCount": 0, - "lastMsgTime": 1670252049.1669688, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4JU0gtLA==": { - "display_string": [ - "\ue063TiredBrai2", - "\ue030Android53619054" - ], - "profiles": [], - "name": "\ue063TiredBrai2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 23:19:18", - "registerOn": 1670208999.7007556, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208999.7007565, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670208999.7007663, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670208999.7007675, - "lastIP": "d}va~i~}haakf", - "deviceUUID": "758100926e8aebd9f50ce724f5fe7d40114f3fc0", - "cMsgCount": 2, - "lastMsgTime": 1670209635.9368687, - "lastMsg": "see", - "cSameMsg": 0 - }, - "pb-IF40VREoKw==": { - "display_string": [ - "\ue030Android45452286" - ], - "profiles": [], - "name": "\ue030Android45452286", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-09 08:48:01", - "registerOn": 1670209175.3151407, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209175.3151412, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670302751.697148, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670302751.6971495, - "lastIP": "awk~~oaajgaih", - "deviceUUID": "\u0015R\b\u0007UMWX\u0004S\u0017VZYP\u0011XTQWLRXWQ" - }, - "pb-IF4tU24-Kw==": { - "display_string": [ - "\ue030Android62079867" - ], - "profiles": [], - "name": "\ue030Android62079867", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 20:27:57", - "registerOn": 1670209198.4533582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209198.4533587, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209198.4533684, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209198.4533691, - "lastIP": "b}k~~`gaibzvb|l", - "deviceUUID": "fd963c6c84761c0d1d23d10116681cb3ed5d180f" - }, - "pb-IF4VVFIREg==": { - "display_string": [ - "\ue063Antibioti8" - ], - "profiles": [], - "name": "\ue063Antibioti8", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-10 01:53:51", - "registerOn": 1670209261.7040546, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209261.7040553, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209261.7040648, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209261.704066, - "lastIP": "azh~~hgaj`{vax`", - "deviceUUID": "8bfab885957a8123fdc4ed54914d9ef4001bec05" - }, - "pb-IF4zU3chAg==": { - "display_string": [ - "\ue020DaringQuotation17" - ], - "profiles": [], - "name": "\ue020DaringQuotation17", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-24 12:22:19", - "registerOn": 1670209277.7931867, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209277.7931871, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209277.7931972, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209277.793198, - "lastIP": "a\u007fn~}iaajbzvbz", - "deviceUUID": "85d3cccbf8da2726ede469442f687183befb110d", - "cMsgCount": 0, - "lastMsgTime": 1670209499.5314763, - "lastMsg": "the vidiya payalae", - "cSameMsg": 0 - }, - "pb-IF5XU00EDA==": { - "display_string": [ - "\ue063ElectiveEa" - ], - "profiles": [], - "name": "\ue063ElectiveEa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-05 18:56:05", - "registerOn": 1670209428.535042, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209428.5350425, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295738.2726767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295738.272678, - "lastIP": "hzva{h~}vb", - "deviceUUID": "85ff9eab1e4c24ed89a8146ad4664bb092a95fe2" - }, - "pb-IF42U047LA==": { - "display_string": [ - "\ue063InvidiousP" - ], - "profiles": [], - "name": "\ue063InvidiousP", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 22:23:44", - "registerOn": 1670209439.3423843, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209439.3423848, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209439.342394, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209439.3423955, - "lastIP": "awa~~nbaieaic", - "deviceUUID": "a35d228e9e1cbd9b6bb906ba9e8adef6e15e716c" - }, - "pb-IF5QU1I4Pw==": { - "display_string": [ - "\ue063Relentles6" - ], - "profiles": [], - "name": "\ue063Relentles6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 02:30:24", - "registerOn": 1670209635.0177755, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209635.0177765, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209635.0177858, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209635.017787, - "lastIP": "axm~~ofaogaie|", - "deviceUUID": "59600ef6e10c6e500e00bccd6be2b693ee25096d" - }, - "pb-IF4HU3pSKA==": { - "display_string": [ - "\ue020SonorousManager14542" - ], - "profiles": [], - "name": "\ue020SonorousManager14542", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-05 13:00:51", - "registerOn": 1670209675.1301246, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209675.1301248, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209675.1301343, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209859.479255, - "lastIP": "a\u007fn~}ifajd\u007fva\u007fm", - "deviceUUID": "3e77c84887ea919f37f4da1b812cc33eb1598270" - }, - "pb-IF48U0kZJg==": { - "display_string": [ - "\ue020UnplannedReward53" - ], - "profiles": [], - "name": "\ue020UnplannedReward53", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-27 17:07:04", - "registerOn": 1670209869.871095, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209869.8710957, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209869.8711042, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670209879.5369675, - "lastIP": "bxvf|vb|m~}h", - "deviceUUID": "8ea84b9f7c3bac7bd72e6d4dff8110e2c9c70d7d" - }, - "pb-IF4BU09dUg==": { - "display_string": [ - "\ue030Android63974931" - ], - "profiles": [], - "name": "\ue030Android63974931", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 09:05:12", - "registerOn": 1670209949.081315, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209949.0813155, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209949.0814724, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209949.0814734, - "lastIP": "cyvhzva\u007fo~}id", - "deviceUUID": "c16440ed3e1bd5de591ef9063024c8e6049fea0f" - }, - "pb-IF4NVWMEXA==": { - "display_string": [ - "\ue020mrdhruv09" - ], - "profiles": [], - "name": "\ue020mrdhruv09", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-28 08:56:22", - "registerOn": 1670209959.1384113, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209959.1384118, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209959.13842, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209959.1384213, - "lastIP": "azo~|j~|m~}ma", - "deviceUUID": "42cd7aa48cb95368a6cc4d70be6dbe105b9462dc" - }, - "pb-IF49U2otCQ==": { - "display_string": [ - "\ue020DastardlyVortex59872" - ], - "profiles": [], - "name": "\ue020DastardlyVortex59872", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-04 08:42:51", - "registerOn": 1670210009.6987329, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210009.6987336, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210009.6987443, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210009.6987453, - "lastIP": "a\u007fk~~kcaib\u007fva{n", - "deviceUUID": "1c31ff1fbb254027f022a5cedf67cd212f44782a" - }, - "pb-IF4GU08eVA==": { - "display_string": [ - "\ue030Android63984495" - ], - "profiles": [], - "name": "\ue030Android63984495", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 18:19:56", - "registerOn": 1670210054.763385, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210054.7633858, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210054.7633955, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210054.763397, - "lastIP": "fvvayh~|i~z", - "deviceUUID": "e2951b29503caa89f889aab4cd8cd3cf5bdfafce" - }, - "pb-IF4zVUQEUw==": { - "display_string": [ - "\ue030Android51304540" - ], - "profiles": [], - "name": "\ue030Android51304540", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-09 13:25:38", - "registerOn": 1670210396.5905266, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210396.590527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210396.5905366, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210396.5905378, - "lastIP": "dvva{l~}khak`", - "deviceUUID": "27af06f53aea7a7691254ece64d101e75f7cc146" - }, - "pb-IF5TVU5aMA==": { - "display_string": [ - "\ue020Divaagarhockeyplayer" - ], - "profiles": [], - "name": "\ue020Divaagarhockeyplayer", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-21 13:02:43", - "registerOn": 1670210583.331977, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210583.3319774, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321415.6460853, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670322636.1200976, - "lastIP": "azo~zi~~abaih|", - "deviceUUID": "bdef5a480ebaeb581acbb098bd4b4ab8603abbd2" - }, - "pb-IF4xU0cAHA==": { - "display_string": [ - "\ue020InSaneHarsh1726", - "\ue020Harshkhabde140", - "\ue030Android63927875" - ], - "profiles": [], - "name": "\ue020InSaneHarsh1726", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 13:18:49", - "registerOn": 1670210600.384467, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210600.3844674, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210600.3844767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210600.3844774, - "lastIP": "azj~zo~}`~~jb", - "deviceUUID": "bd4d5ec98ceeed344e312952bd66b119fa7d5efc" - }, - "pb-IF4oUxYTCw==": { - "display_string": [ - "\ue020ShockPark152" - ], - "profiles": [], - "name": "\ue020ShockPark152", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-20 21:06:43", - "registerOn": 1670210682.677213, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210682.6772134, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210682.677223, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210682.6772237, - "lastIP": "azj~zo~}jcaihz", - "deviceUUID": "4fdbc382da114d69e7e8114f5d510222a03ab96f" - }, - "pb-IF5UUnUpMw==": { - "display_string": [ - "\ue020CoincidentalBelt39" - ], - "profiles": [], - "name": "\ue020CoincidentalBelt39", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-13 15:04:52", - "registerOn": 1670210684.6924808, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210684.6924813, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210684.6924896, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210684.6924906, - "lastIP": "axm~~ofamfamd", - "deviceUUID": "af70a108de6bcbc6dc4ed6e4e78aefe6d9494044" - }, - "pb-IF4QU3kvLg==": { - "display_string": [ - "\ue030Android63096875" - ], - "profiles": [], - "name": "\ue030Android63096875", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-03 12:59:24", - "registerOn": 1670212075.5992491, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212075.5992496, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252924.8042846, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252924.8042865, - "lastIP": "a\u007fn~}j`ai`wvb~n", - "deviceUUID": "a8948e96c7c1ef8dc62074cce06b621a85b5841a" - }, - "pb-IF4oU0khUg==": { - "display_string": [ - "\ue063shrirangam" - ], - "profiles": [], - "name": "\ue063shrirangam", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-26 18:11:33", - "registerOn": 1670212331.2883577, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212331.2883582, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296552.381981, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296552.3819823, - "lastIP": "azo~|l~~h~wo", - "deviceUUID": "c39d2e6cdfa3a78969b5d63978521d254a86ad69" - }, - "pb-IF4NU0s9Ig==": { - "display_string": [ - "\ue020MenialValidation36", - "\ue030Android56307058" - ], - "profiles": [], - "name": "\ue020MenialValidation36", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 20:50:34", - "registerOn": 1670212397.6337645, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212397.6337657, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334229.6408854, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334229.6408873, - "lastIP": "azo~zi~~mia`f", - "deviceUUID": "0cb9213a4caa572207426ecaa0e643b027987e0a" - }, - "pb-IF4oU004KQ==": { - "display_string": [ - "\ue030Android63888799" - ], - "profiles": [], - "name": "\ue030Android63888799", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 20:54:09", - "registerOn": 1670212418.6012237, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212418.6012247, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332997.4524152, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332997.4524167, - "lastIP": "a\u007fn~~aeaieajf", - "deviceUUID": "e6195de22eab0e6d41c74d545e28ed2a1fd6b819" - }, - "pb-IF42U08mNA==": { - "display_string": [ - "\ue063ClimaticFi" - ], - "profiles": [], - "name": "\ue063ClimaticFi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 11:40:15", - "registerOn": 1670212455.7493985, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212455.749399, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212455.7494092, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212455.7494104, - "lastIP": "bxvexvawj~za", - "deviceUUID": "44bc6a51eb3ff62e845e0ec6a47c3a4cf3e1b895" - }, - "pb-IF4pU08BVA==": { - "display_string": [ - "\ue030Android63970828" - ], - "profiles": [], - "name": "\ue030Android63970828", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 19:18:21", - "registerOn": 1670212458.8738706, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212458.873871, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212458.8738801, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212458.873881, - "lastIP": "a\u007fn~}h`aogalb", - "deviceUUID": "c535d3beaedf37efae00768e70bede898a9efdcf" - }, - "pb-IF4-U0Y9KQ==": { - "display_string": [ - "\ue020GracefulFoliage30" - ], - "profiles": [], - "name": "\ue020GracefulFoliage30", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 09:06:27", - "registerOn": 1670212757.2102232, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212757.210224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212757.2102337, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212757.210235, - "lastIP": "dvvazvb{j~~ah", - "deviceUUID": "6fc20ac21f4840ce14b86fc0d5c93e6aa13a3bf7" - }, - "pb-IF4oUxAGPQ==": { - "display_string": [ - "\ue020TejGamerNt" - ], - "profiles": [], - "name": "\ue020TejGamerNt", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-26 11:19:47", - "registerOn": 1670212816.1726687, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212816.1726694, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315629.1673656, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670315777.7692966, - "lastIP": "azj~zo~}ihajbx", - "deviceUUID": "f57f66f318b3e63fa8b311219b51ba198dcaedf7", - "cMsgCount": 0, - "lastMsgTime": 1670316448.5613427, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFdVEVHXVdHGUJYXVRHFkNWQ1dH": { - "display_string": [ - "\ue063JollyRange", - "\ue030Android8684941" - ], - "profiles": [], - "name": "\ue063Pillain", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-02 11:09:52", - "registerOn": 1670212825.1813996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212825.1814003, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212825.1814084, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670212825.1814094, - "lastIP": "awj~}vg|vawn", - "deviceUUID": "a96d13777134b726d457f814510cf3a29b9b3bb7" - }, - "pb-IF5SU0kcBg==": { - "display_string": [ - "\ue063Monopolis2" - ], - "profiles": [], - "name": "\ue063Monopolis2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 21:46:37", - "registerOn": 1670212907.4636776, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212907.4636781, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212907.463688, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212907.4636889, - "lastIP": "azo~{a~~ldand", - "deviceUUID": "ff1aa486377a8b2b3e643385151468a4e9acb4df" - }, - "pb-IF4KV2lYIw==": { - "display_string": [ - "\ue020Jalindarabhang", - "\ue030Android28829019" - ], - "profiles": [], - "name": "\ue020Jalindarabhang", - "isBan": false, - "isMuted": false, - "accountAge": "2018-10-24 23:02:53", - "registerOn": 1670212908.8116398, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212908.8116403, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212908.8116498, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212908.8116505, - "lastIP": "azj~zo~}hhaicw", - "deviceUUID": "eae05177f2f3a0f0b7004842f87902145a2a6eda" - }, - "pb-IF5UVWk7Aw==": { - "display_string": [ - "\ue063ShamInform" - ], - "profiles": [], - "name": "\ue020ShamInformation21", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-20 20:00:48", - "registerOn": 1670213033.9959471, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213033.9959476, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269868.257833, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670269868.2578342, - "lastIP": "gwvayk~~hiajay", - "deviceUUID": "4ae957168db3fd706d8cedea18be84309f56b2dd", - "cMsgCount": 1, - "lastMsgTime": 1670214256.5457413, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4XU1AvJA==": { - "display_string": [ - "\ue030Android63983529" - ], - "profiles": [], - "name": "\ue030Android63983529", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:07:00", - "registerOn": 1670213157.8638418, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213157.8638425, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670213157.8638513, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670213157.8638523, - "lastIP": "a}i~}a~xo~y`", - "deviceUUID": "abe87a8d2e2ce073d86f1d05bfbf5a91d2a1a6de" - }, - "pb-IF41VRATBA==": { - "display_string": [ - "\ue020GraniteInventor13" - ], - "profiles": [], - "name": "\ue020GraniteInventor13", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-06 13:30:38", - "registerOn": 1670213204.797234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213204.7972348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670213204.7972426, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670213204.7972436, - "lastIP": "a\u007fn~~adaii}vb{h", - "deviceUUID": "eb6add6187cebf529b6a08cf31630925b56adde6" - }, - "pb-JiNJARBbU0dAW1hIEk9YXFFDEkZWQVRC": { - "display_string": [ - "\ue020PureGuacamole85", - "\ue063Dragonking", - "\ue030Android14459814", - "\ue030Android63983713", - "\ue030Android63984396" - ], - "profiles": [], - "name": "\ue020Dragonking464fire", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-22 07:27:03", - "registerOn": 1670213473.6183503, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213473.6183507, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316033.6248162, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316033.6248176, - "lastIP": "a\u007fk~{h~~aiai`|", - "deviceUUID": "45455da6db46db27b366a60a0efde760801c521d" - }, - "pb-IF4CKEcn": { - "display_string": [ - "\ue063Adversar12" - ], - "profiles": [], - "name": "\ue063Adversar12", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-04 22:36:49", - "registerOn": 1670213689.4067252, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213689.406726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670213689.4067347, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670213689.4067357, - "lastIP": "azj~zo~~afalh", - "deviceUUID": "b67c81cf69d4724ef9ed83c70a3f8a8f7a528f9f" - }, - "pb-IF4CU0oeIA==": { - "display_string": [ - "\ue020SpuriousPresidency5" - ], - "profiles": [], - "name": "\ue020SpuriousPresidency5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 14:09:00", - "registerOn": 1670213870.051851, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213870.0518517, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670213870.051861, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670213870.051862, - "lastIP": "azo~|j~vvaz`", - "deviceUUID": "6d5680756cd98dddb2540ec78c67b44e83ecb45e" - }, - "pb-JiNJARFeXUZAVFlEEkVXUlNDGURXT1hH": { - "display_string": [ - "\ue063Amos101010", - "\ue030Android8834561" - ], - "profiles": [], - "name": "\ue063Amos101010", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-02 12:50:54", - "registerOn": 1670214032.6249008, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214032.6249013, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214032.6249106, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670215080.0938957, - "lastIP": "azo~zi~~haaab", - "deviceUUID": "4061b8980c89cf70109a60ed0ea04d2cf74b9c7c" - }, - "pb-IF5RJ2sR": { - "display_string": [ - "\ue063ShootingBu" - ], - "profiles": [], - "name": "\ue063ShootingBu", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-17 18:06:10", - "registerOn": 1670214040.6884418, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214040.6884427, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214040.6884515, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670214040.6884527, - "lastIP": "dxva~vav`~~na", - "deviceUUID": "822b790677641f085f68026303906669de3780ba" - }, - "pb-IF4vVXQFAw==": { - "display_string": [ - "\ue020ProdigalClassroom31", - "\ue020yash560", - "\ue020UnexplainedFinish14", - "\ue020TitanicArray29", - "\ue030Android50472681" - ], - "profiles": [], - "name": "\ue020UnexplainedFinish14", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-28 14:20:20", - "registerOn": 1670214190.134805, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214190.1348054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214190.1348152, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670214190.134816, - "lastIP": "a\u007fk~}maajbyva{", - "deviceUUID": "ecf85c47eb151b42cf4d43b18df88187914d5f7a" - }, - "pb-IF4SV08HKw==": { - "display_string": [ - "\ue063BadTermina", - "\ue030Android63925894" - ], - "profiles": [], - "name": "\ue020BadTerminator999", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-10 11:12:54", - "registerOn": 1670214199.2782712, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214199.2782717, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242806.7165518, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242806.716553, - "lastIP": "a\u007fk~~`aajbxvb}h", - "deviceUUID": "b79d6a98d56f028d4b5bdefd09447af7f2097344" - }, - "pb-IF4lUhECIQ==": { - "display_string": [ - "\ue063InteriorDu" - ], - "profiles": [], - "name": "\ue063InteriorDu", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-09 15:43:30", - "registerOn": 1670214453.1470776, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214453.147078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336926.2345066, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336926.2345078, - "lastIP": "azo~|j~w`~wn", - "deviceUUID": "f17b6f3add372ab64cb4e1f0b699e71689fd88c2" - }, - "pb-IF4zU0saEg==": { - "display_string": [ - "\ue030Android63824203" - ], - "profiles": [], - "name": "\ue030Android63824203", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-07 19:17:00", - "registerOn": 1670214522.4060535, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214522.4060545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214522.406063, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670214522.4060638, - "lastIP": "a~h~{l~~jgaiix", - "deviceUUID": "\u0015\u0007\u000fX\u0007CSZT\u0004\u0012\u0003\f\u0003WMR\\QPAYUWPMX" - }, - "pb-IF40UhdaNA==": { - "display_string": [ - "\ue020H\u00caR\u00c7\u00daL\u00c9S", - "\ue030Android54448605" - ], - "profiles": [], - "name": "\ue020H\u00caR\u00c7\u00daL\u00c9S", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-04 22:51:41", - "registerOn": 1670214527.3454735, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214527.3454742, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214527.3454835, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670214527.3454845, - "lastIP": "bxvf|vbzl~w`", - "deviceUUID": "8c9f6d3347b1971938fd8e43d6ff9d9baed039f7", - "cMsgCount": 0, - "lastMsgTime": 1670216663.2467372, - "lastMsg": "\ud83d\udc4b ", - "cSameMsg": 0 - }, - "pb-IF4wU3YdCw==": { - "display_string": [ - "\ue020Ambadykannan7878" - ], - "profiles": [], - "name": "\ue020Ambadykannan7878", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 09:21:47", - "registerOn": 1670214886.7187655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214886.718766, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214886.7187748, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670214886.7187757, - "lastIP": "a\u007fn~}h`aoeame", - "deviceUUID": "e35d28f9b8d15f4791b876309dcdd5319fa91fa2" - }, - "pb-IF48U3FaNQ==": { - "display_string": [ - "\ue063DilatoryHo" - ], - "profiles": [], - "name": "\ue063DilatoryHo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-28 22:13:45", - "registerOn": 1670215071.41463, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215071.4146307, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251509.981233, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251509.9812346, - "lastIP": "a\u007fk~~kiajb\u007fvavk", - "deviceUUID": "1260d346be9016a385ed734f949f474094c2e832", - "cMsgCount": 1, - "lastMsgTime": 1670253317.8400893, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF42U3JfFw==": { - "display_string": [ - "\ue030Android62429587" - ], - "profiles": [], - "name": "\ue030Android62429587", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-03 18:15:02", - "registerOn": 1670215135.7055113, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215135.7055128, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670303409.1750185, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670303873.018432, - "lastIP": "bxvf|ve{vawm", - "deviceUUID": "3627ce60ee96824682854c250b3492005a28966f" - }, - "pb-IF40U0sKFA==": { - "display_string": [ - "\ue020farhathu123" - ], - "profiles": [], - "name": "\ue020farhathu123", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-07 13:27:30", - "registerOn": 1670215140.701797, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215140.7017977, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215140.7018065, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670215152.3837502, - "lastIP": "azo~zi~~mhajcv", - "deviceUUID": "0f64cfc599af73a5113c3d044593c9da1d6b2e86" - }, - "pb-IF4jU00eMA==": { - "display_string": [ - "\ue020BanefulConstancy1924" - ], - "profiles": [], - "name": "\ue020BanefulConstancy1924", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 20:52:47", - "registerOn": 1670215294.28334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215294.2833405, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215294.2833488, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215294.2833498, - "lastIP": "azo~|j~|j~zn", - "deviceUUID": "aebcf939dec62cf28d6b26dd1a9f02f62e58a024" - }, - "pb-IF4TU3MKBA==": { - "display_string": [ - "\ue020HangryRanger89899" - ], - "profiles": [], - "name": "\ue020HangryRanger89899", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-09 12:55:25", - "registerOn": 1670215488.236909, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215488.2369094, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215488.2369177, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215488.2369187, - "lastIP": "a\u007fn~}hfajeald", - "deviceUUID": "2f5052e91046c15abf6a40c7d3b2c814136921e2" - }, - "pb-IF4wU04bAQ==": { - "display_string": [ - "\ue030Android63927749" - ], - "profiles": [], - "name": "\ue030Android63927749", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 16:47:23", - "registerOn": 1670215548.1855423, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215548.185543, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215548.1855533, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670215576.921767, - "lastIP": "azo~|j~}k~~ab", - "deviceUUID": "c2cdd0947b4c3571b2a973d2f360a874d0eca8c1" - }, - "pb-IF4zU04-EQ==": { - "display_string": [ - "\ue030Android63928196" - ], - "profiles": [], - "name": "\ue030Android63928196", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 18:18:44", - "registerOn": 1670215727.869937, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215727.8699374, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215727.8699455, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670216552.6286526, - "lastIP": "azo~|`~~jiamb", - "deviceUUID": "669d431df432690b31940b6f54377ac8aeb6c7c3" - }, - "pb-IF4gU3gnUQ==": { - "display_string": [ - "\ue030Android63017111" - ], - "profiles": [], - "name": "\ue030Android63017111", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-30 10:49:17", - "registerOn": 1670215771.1212344, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215771.121235, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670289069.9263475, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670292344.8639429, - "lastIP": "a|n~~mhai`}vava", - "deviceUUID": "6da86c46af8fa0351a1725d905c795608a624764" - }, - "pb-IF40U0UcFQ==": { - "display_string": [ - "\ue063TricksterH" - ], - "profiles": [], - "name": "\ue063TricksterH", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-07 15:22:38", - "registerOn": 1670215781.1936417, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215781.1936424, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215781.1936517, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215781.1936526, - "lastIP": "bxvc{vbxvazj", - "deviceUUID": "4a0acfbe3d6b0250bed99de0cca9bf8dc9e6bc37" - }, - "pb-IF5cV1YHLg==": { - "display_string": [ - "\ue020RagingAttacker80435" - ], - "profiles": [], - "name": "\ue020RagingAttacker80435", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-06 19:12:39", - "registerOn": 1670215793.4892743, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215793.489275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215793.4892848, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215793.489286, - "lastIP": "a\u007fn~}iaaje|vcz", - "deviceUUID": "77c94c385bdad2a0654295dfc2c226a6089a40a8" - }, - "pb-IF4jIEEY": { - "display_string": [ - "\ue063DarthKille" - ], - "profiles": [], - "name": "\ue063DarthKille", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-25 09:27:28", - "registerOn": 1670216046.2984664, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216046.2984672, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670321826.6401675, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670321555.1883652, - "lastIP": "a\u007fn~}ibaia|va~k", - "deviceUUID": "2e3c86c3670eada80ef74c6bc6ec67f37aaec7ec", - "cMsgCount": 2, - "lastMsgTime": 1670321826.6401875, - "lastMsg": "skippy imposter biosdiK", - "cSameMsg": 0 - }, - "pb-IF5RUkRcXA==": { - "display_string": [ - "\ue020WalkingBarbarism33" - ], - "profiles": [], - "name": "\ue020WalkingBarbarism33", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-18 19:14:26", - "registerOn": 1670216200.806518, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216200.8065186, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216200.8065283, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670217113.5501418, - "lastIP": "azo~|k~~vawm", - "deviceUUID": "683caee4a4034a0bbfe8ccde3843a53d0d77af1e" - }, - "pb-IF4PU0cTLg==": { - "display_string": [ - "\ue030PC608120" - ], - "profiles": [], - "name": "\ue030PC608120", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-18 16:26:32", - "registerOn": 1670216206.7327578, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216206.7327583, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216206.732768, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670216206.7327688, - "lastIP": "awj~{`~xi~~ah", - "deviceUUID": "ebbb99d6f2c353d4c941e73bcd0ee562759a88e4" - }, - "pb-IF4SU3o5UQ==": { - "display_string": [ - "\ue063WARRIR" - ], - "profiles": [], - "name": "\ue063WARRIR", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-08 08:40:52", - "registerOn": 1670216518.2418184, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216518.2418191, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216518.2418287, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670222844.7630777, - "lastIP": "b}k~}jiaiiyva~l", - "deviceUUID": "07760583a6c6cb479e4b59c394c47128cb5b601f" - }, - "pb-IF4hV1ZTFA==": { - "display_string": [ - "\ue063Pratheeswa" - ], - "profiles": [], - "name": "\ue063Pratheeswa", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-18 13:18:20", - "registerOn": 1670216574.0087125, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216574.008713, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216574.0087218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670216574.0087233, - "lastIP": "d}va\u007fl~~jiaicz", - "deviceUUID": "6ba3d2e7c426bfa1ee0772280b87679d0c99e92c" - }, - "pb-IF4hBFgH": { - "display_string": [ - "\ue063MrDevil", - "\ue020\u14f0\u15e9\u163b\u1572\u163f\u143a\u14f0\u14aa", - "\ue030Android39851562" - ], - "profiles": [], - "name": "\ue063MrDevil", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-07 14:37:30", - "registerOn": 1670216718.509512, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216718.5095127, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328240.1389492, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670329741.3370593, - "lastIP": "a\u007fk~}m~~niaihy", - "deviceUUID": "c220dfadf48fdacac465ff3a89116f178e3db908", - "cMsgCount": 0, - "lastMsgTime": 1670329917.074225, - "lastMsg": "tum kya mast kaam karte ho maksud bhai ", - "cSameMsg": 0 - }, - "pb-IF4cU04mPw==": { - "display_string": [ - "\ue020EmbryonicHarmony14" - ], - "profiles": [], - "name": "\ue020EmbryonicHarmony14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 21:17:48", - "registerOn": 1670216869.3935142, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216869.393515, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216869.393525, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670216869.3935258, - "lastIP": "awj~ya~~ohaih}", - "deviceUUID": "2ddf7c418977dab3f7df609dc52e014136bfec2a" - }, - "pb-IF4GU0UGCA==": { - "display_string": [ - "\ue063Siddharaj1" - ], - "profiles": [], - "name": "\ue063Siddharaj1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 17:02:41", - "registerOn": 1670217017.7999706, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670217017.7999713, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227724.9944215, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670227724.9944232, - "lastIP": "azo~|j~xk~}lh", - "deviceUUID": "99173424adfabc9d37a511c4d81759f7f1deee57" - }, - "pb-IF5SUxMGAg==": { - "display_string": [ - "\ue063PointyLeo1" - ], - "profiles": [], - "name": "\ue063PointyLeo1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-01 15:10:51", - "registerOn": 1670217318.5163224, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670217318.516323, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670217318.5163324, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670217318.5163333, - "lastIP": "c~vb\u007fh~}khaad", - "deviceUUID": "8c8741c02f1a375d4b3741c978dfd25c4c5a8ae4" - }, - "pb-IF5SUxQJJw==": { - "display_string": [ - "\ue020BruceBat1997" - ], - "profiles": [], - "name": "\ue020BruceBat1997", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-04 07:48:46", - "registerOn": 1670217410.0380058, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670217410.038006, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670217410.0380168, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670217410.0380177, - "lastIP": "azo~zi~~odane", - "deviceUUID": "8bbd910cb7e0e8b48c9c3e608f521484f77c36bb" - }, - "pb-IF4FU0ohEw==": { - "display_string": [ - "\ue020kshitijGaming15" - ], - "profiles": [], - "name": "\ue020kshitijGaming15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 09:20:26", - "registerOn": 1670217457.352635, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670217457.3526354, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308872.016039, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308872.0160398, - "lastIP": "azj~zo~vl~wh", - "deviceUUID": "4dcb4a106b5964b90383ef90986a2214213b306d" - }, - "pb-IF4AV1QqEQ==": { - "display_string": [ - "\ue063CHICKENBOO", - "\ue030Android62068479" - ], - "profiles": [], - "name": "\ue063CHICKENBOO", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-04 15:27:25", - "registerOn": 1670217816.8909585, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670217816.890959, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670320868.4336603, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670319780.4661233, - "lastIP": "awj~ya~}iaajdz", - "deviceUUID": "e2055bf4e71e30e44db214ed6daf8c4d2807cd96", - "cMsgCount": 0, - "lastMsgTime": 1670321923.6015935, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4nU3IxEw==": { - "display_string": [ - "\ue063divs2104" - ], - "profiles": [], - "name": "\ue063divs2104", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-03 22:26:54", - "registerOn": 1670218053.7210672, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670218053.7210677, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316363.8413355, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670318728.533653, - "lastIP": "azo~{`~~meaja{", - "deviceUUID": "d770acc77b95b99e6006255842b0c32fee2201de", - "cMsgCount": 0, - "lastMsgTime": 1670316449.0100148, - "lastMsg": "nhi abhi", - "cSameMsg": 0 - }, - "pb-IF4WU04ENQ==": { - "display_string": [ - "\ue020HourlyTreaty30", - "\ue030Android63939544" - ], - "profiles": [], - "name": "\ue020HourlyTreaty30", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 09:15:33", - "registerOn": 1670218264.6036, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670218264.603601, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670218264.6036093, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670218264.6036103, - "lastIP": "a\u007fn~~abajbxvax`", - "deviceUUID": "040f573333f13075c1d29a5aa45404a9a094c01c", - "cMsgCount": 0, - "lastMsgTime": 1670218486.4890654, - "lastMsg": "op", - "cSameMsg": 0 - }, - "pb-IF4PUkdbFw==": { - "display_string": [ - "\ue020ResourcefulBear38", - "\ue030Android57711511" - ], - "profiles": [], - "name": "\ue020ResourcefulBear38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-07 12:08:28", - "registerOn": 1670218740.830592, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670218740.8305924, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670218740.8306022, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670218740.8306034, - "lastIP": "dxviam~~ka", - "deviceUUID": "1a9f5aa517ea1bb68deb2d8cf1058f22308d0688" - }, - "pb-IF4CU04ePQ==": { - "display_string": [ - "\ue063AsteroidBo" - ], - "profiles": [], - "name": "\ue063AsteroidBo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 09:27:40", - "registerOn": 1670219087.6891391, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219087.68914, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242647.1257184, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242647.1257198, - "lastIP": "a~o~~afaid{vbzk", - "deviceUUID": "64e9e223bb60cf6adff3cf10896b12efd187832f" - }, - "pb-IF4dVU4xVg==": { - "display_string": [ - "\ue020Thephenomenal9903" - ], - "profiles": [], - "name": "\ue020Thephenomenal9903", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-04 20:07:36", - "registerOn": 1670219160.0008068, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219160.0008075, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219160.000814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219160.000815, - "lastIP": "azo~|l~~miaiby", - "deviceUUID": "d35f408ae362cc6161d69785c5d3ea1701e43fe5" - }, - "pb-IF4LUk0FCQ==": { - "display_string": [ - "\ue063VidhyanFal" - ], - "profiles": [], - "name": "\ue063VidhyanFal", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-08 09:56:37", - "registerOn": 1670219267.3571446, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219267.3571453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670294668.5613804, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670303838.8790617, - "lastIP": "azj~zo~}kcajbv", - "deviceUUID": "c7281055c5d01de57fe0f5a250bd68f28ec93c55", - "cMsgCount": 0, - "lastMsgTime": 1670295233.9148583, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF48VBcFEw==": { - "display_string": [ - "\ue063kutty1012" - ], - "profiles": [], - "name": "\ue063kutty1012", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-28 21:53:20", - "registerOn": 1670219348.6881964, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219348.688197, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219348.6882071, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219348.6882079, - "lastIP": "dvvb\u007fl~~ihaiaz", - "deviceUUID": "7e5ea53ca2d28ec7361f139ed1f1d435f394a29a" - }, - "pb-IF4vU08YEA==": { - "display_string": [ - "\ue063BiornIrons" - ], - "profiles": [], - "name": "\ue063BiornIrons", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 15:02:13", - "registerOn": 1670219366.0444133, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219366.0444143, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219366.0444236, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219366.0444248, - "lastIP": "dvvc{vf|vaym", - "deviceUUID": "a8076219bde97d1f917ca59808cbc058cc13fd25" - }, - "pb-IF4FU3UmHw==": { - "display_string": [ - "\ue020\u1d3f\u02e2\u13f4\u13a1\u13aa\u019d\u13a0" - ], - "profiles": [], - "name": "\ue020\u1d3f\u02e2\u13f4\u13a1\u13aa\u019d\u13a0", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-17 18:47:52", - "registerOn": 1670219412.987712, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219412.9877126, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219412.987722, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219412.987723, - "lastIP": "d}va\u007f`~~afaibz", - "deviceUUID": "f4f5a63f76c0fce5e665d0097338afb8e21aaca9" - }, - "pb-IF4yU0omIg==": { - "display_string": [ - "\ue063RollingVor" - ], - "profiles": [], - "name": "\ue063RollingVor", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-31 21:17:10", - "registerOn": 1670219652.9270635, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219652.9270647, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219652.9270737, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219652.927075, - "lastIP": "azo~{`~~kaajd|", - "deviceUUID": "7325f59153e0d2ca260538cdbde7c94dbf996ad3" - }, - "pb-IF4nUnEHVg==": { - "display_string": [ - "\ue020HacktasticCadet89388" - ], - "profiles": [], - "name": "\ue020HacktasticCadet89388", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-05 13:41:01", - "registerOn": 1670219774.3369155, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219774.3369162, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219774.336924, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670220186.840861, - "lastIP": "dvvcyvb~h~~ma", - "deviceUUID": "de5347398ff949bf2b9e20d90830dae251c23b2b", - "cMsgCount": 1, - "lastMsgTime": 1670220357.990431, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4lU08FJA==": { - "display_string": [ - "\ue030Android63983164" - ], - "profiles": [], - "name": "\ue030Android63983164", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 13:46:14", - "registerOn": 1670219776.3333168, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219776.3333173, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219776.333327, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219776.3333282, - "lastIP": "a\u007fn~~aeaia|va\u007fa", - "deviceUUID": "dcf18d29ab4c36279d335b7f4030233bad15316c" - }, - "pb-IF4gU048KQ==": { - "display_string": [ - "\ue020lolisoh640", - "\ue030Android63953042" - ], - "profiles": [], - "name": "\ue020lolisoh640", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 16:02:13", - "registerOn": 1670220081.6985872, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220081.6985874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670303214.4503963, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670303214.4503977, - "lastIP": "dvvcyvb~k~~k", - "deviceUUID": "b30b1cde3d6ee7ec7e736cf2d40b37a39fbb1ae2", - "cMsgCount": 0, - "lastMsgTime": 1670235183.292864, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4pU0gvEQ==": { - "display_string": [ - "\ue020AudaciousCombat79594" - ], - "profiles": [], - "name": "\ue020AudaciousCombat79594", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-17 23:03:42", - "registerOn": 1670220092.024401, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220092.0244014, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220092.0244107, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220092.0244117, - "lastIP": "a\u007fn~}jbaoaaja}", - "deviceUUID": "fa5441c126ca56a31774e7ba5626c788979abdc3" - }, - "pb-IF5VUlYjNw==": { - "display_string": [ - "\ue063Immeasura8" - ], - "profiles": [], - "name": "\ue063Immeasura8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-30 10:12:42", - "registerOn": 1670220141.9891405, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220141.989141, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229460.2209723, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229460.2209735, - "lastIP": "dvvcyvb~a~}hf", - "deviceUUID": "e79e19a1d5c68612efe471fa7d64f51ee682ba58", - "cMsgCount": 1, - "lastMsgTime": 1670220234.9745123, - "lastMsg": "booster lgwalo sb", - "cSameMsg": 0 - }, - "pb-IF4lU045AQ==": { - "display_string": [ - "\ue063MetalEel46" - ], - "profiles": [], - "name": "\ue063MetalEel46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 15:30:20", - "registerOn": 1670220259.464167, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220259.4641678, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220259.464178, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220259.4641793, - "lastIP": "eaif\u007fvd~vb~n", - "deviceUUID": "16569a3fba3fd0df8b7d56d8c929148dd36c753d" - }, - "pb-IF4PV24yPA==": { - "display_string": [ - "\ue063Agzx2244", - "\ue030Android48295628", - "\ue030Android50558008", - "\ue030PC351631", - "\ue030Android50407500" - ], - "profiles": [], - "name": "\ue063Agzx2244", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-27 10:21:40", - "registerOn": 1670220371.0777698, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220371.0777702, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220371.077779, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220371.0777798, - "lastIP": "a\u007fn~}hgajazvbzm", - "deviceUUID": "e14daa83663610399fd51ea00d341640044f94f0", - "cMsgCount": 0, - "lastMsgTime": 1670221292.9061713, - "lastMsg": "kro 1 sab", - "cSameMsg": 0 - }, - "pb-IF4cU08HKg==": { - "display_string": [ - "\ue063NativeEmpi" - ], - "profiles": [], - "name": "\ue063NativeEmpi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 22:38:41", - "registerOn": 1670220387.9813507, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220387.9813511, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220387.9813645, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220387.9813652, - "lastIP": "a\u007fj~}liam~|n", - "deviceUUID": "6f68f43e342dc9302f971a369736634f05c1c0bd" - }, - "pb-IF5WUxQgVw==": { - "display_string": [ - "\ue020MonocledRemainder37" - ], - "profiles": [], - "name": "\ue020MonocledRemainder37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-03 14:46:49", - "registerOn": 1670220558.6580849, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220558.6580856, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220558.6580951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220558.6580963, - "lastIP": "azo~{l~~keaif{", - "deviceUUID": "ed45cbd10c17e8d36b274d0820f8b35e9977b560" - }, - "pb-IF4PU08cFA==": { - "display_string": [ - "\ue063hddibduxj2" - ], - "profiles": [], - "name": "\ue063hddibduxj2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 10:54:00", - "registerOn": 1670220669.0910227, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220669.0910237, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220669.0910335, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670221009.3778722, - "lastIP": "dvvb|o~~j~z`", - "deviceUUID": "ddbf33686fa8a5089f7cd88b6ff00ecb8c601591" - }, - "pb-IF4MU08zBg==": { - "display_string": [ - "\ue063PersonalAc" - ], - "profiles": [], - "name": "\ue063PersonalAc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 12:36:48", - "registerOn": 1670220698.6773582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220698.6773589, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220698.6773682, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220698.677369, - "lastIP": "a~i~~jeaj`vvb\u007fo", - "deviceUUID": "5a888bbd968ee5a07e5893491abfc11f0fe4a176" - }, - "pb-IF4UVGg8KQ==": { - "display_string": [ - "\ue063LionAlpha7" - ], - "profiles": [], - "name": "\ue020LionAlpha7998", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-25 12:34:17", - "registerOn": 1670220944.3041394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220944.3041396, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309125.967552, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670305974.6479957, - "lastIP": "azo~zh~\u007fva}n", - "deviceUUID": "8368e55397365fe31285451f09f669007e570a51", - "cMsgCount": 0, - "lastMsgTime": 1670309148.2173471, - "lastMsg": "1", - "cSameMsg": 0 - }, - "pb-IF4PU0hcUg==": { - "display_string": [ - "\ue020ExpensiveSampling66" - ], - "profiles": [], - "name": "\ue020ExpensiveSampling66", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 20:15:12", - "registerOn": 1670221150.3721857, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221150.3721862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670221150.3721948, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670221150.3721964, - "lastIP": "azo~{n~~h`aibv", - "deviceUUID": "23fde69afa91374a867fba140f0a2d26162721ab" - }, - "pb-IF4WUhk7LA==": { - "display_string": [ - "\ue020Bryanfurythemaster" - ], - "profiles": [], - "name": "\ue020Bryanfurythemaster", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-15 09:27:07", - "registerOn": 1670221152.20959, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221152.2095907, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226250.4327168, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670226275.5273476, - "lastIP": "a\u007fk~~i`aj`ale", - "deviceUUID": "f635a06a0d6da016b4c98adf268cde1304f60e8a" - }, - "pb-IF4QVGYMKg==": { - "display_string": [ - "\ue020shrey19654" - ], - "profiles": [], - "name": "\ue020shrey19654", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-17 23:36:03", - "registerOn": 1670221189.3377929, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221189.3377934, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306015.81715, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306015.8171515, - "lastIP": "axi~xn~wi~~jf", - "deviceUUID": "b0c6921dbf3a4dd86b20da6cbae55ac353cb7b0d", - "cMsgCount": 0, - "lastMsgTime": 1670239836.4692621, - "lastMsg": "op", - "cSameMsg": 0 - }, - "pb-IF4eVGc7Cw==": { - "display_string": [ - "\ue063LIONHUNTER" - ], - "profiles": [], - "name": "\ue063LIONHUNTER", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-19 13:49:23", - "registerOn": 1670221201.400529, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221201.4005296, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670264202.184763, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670264202.1847644, - "lastIP": "axi~xn~wi~~jf", - "deviceUUID": "7e2925fb16ec0423a42113da27b7c67e2c529058", - "cMsgCount": 0, - "lastMsgTime": 1670268080.038518, - "lastMsg": "marka hota tho kb ka mar deta", - "cSameMsg": 0 - }, - "pb-IF4MU08lCQ==": { - "display_string": [ - "\ue063lodhipro17" - ], - "profiles": [], - "name": "\ue063lodhipro17", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 13:04:15", - "registerOn": 1670221377.0058658, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221377.0058665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670221377.005912, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670221377.005913, - "lastIP": "dxvb{o~}ifakd", - "deviceUUID": "4fd2c79d2783c7590e50a85b2de79a04e46f61d6" - }, - "pb-IF4FVVIBHQ==": { - "display_string": [ - "\ue030Android52891885" - ], - "profiles": [], - "name": "\ue030Android52891885", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-25 20:06:30", - "registerOn": 1670221863.5160656, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221863.5160663, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670221863.516075, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670221863.5160758, - "lastIP": "a\u007fk~~j`aj`wvfv", - "deviceUUID": "\u0015T\tQ\u0002LT\f\u0005\u0007\u0017V\u000bPRC\u0004ZTULUYWTB" - }, - "pb-IF5TU09ZCQ==": { - "display_string": [ - "\ue030Android63868938" - ], - "profiles": [], - "name": "\ue030Android63868938", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 10:42:58", - "registerOn": 1670222018.742249, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222018.7422495, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222018.7422566, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670222018.7422578, - "lastIP": "f~vbaiexvcz", - "deviceUUID": "\u0015" - }, - "pb-IF40VUE9Kw==": { - "display_string": [ - "\ue063RedheadedV" - ], - "profiles": [], - "name": "\ue063RedheadedV", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-19 11:05:56", - "registerOn": 1670222082.0227785, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222082.0227795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222082.0227883, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670222909.0106921, - "lastIP": "awo~~`iajdwva~m", - "deviceUUID": "e789a1f4751dd6c53375cd93969fc024b831a160" - }, - "pb-IF49UxYgIA==": { - "display_string": [ - "\ue020TruthfulSustenance18" - ], - "profiles": [], - "name": "\ue020TruthfulSustenance18", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-19 10:41:58", - "registerOn": 1670222185.8033085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222185.803309, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301800.1507528, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301800.150754, - "lastIP": "bxvf}va\u007fva\u007fo", - "deviceUUID": "a80b0ea0c733f2966759c243d6855824e5116b80" - }, - "pb-IF5WVRUJUQ==": { - "display_string": [ - "\ue020FragrantRookie95898", - "\ue030Android42535153" - ], - "profiles": [], - "name": "\ue020FragrantRookie95898", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-24 19:01:16", - "registerOn": 1670222408.4347453, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222408.434746, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222408.4347553, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670222457.1537192, - "lastIP": "dvva{vayo~~hf", - "deviceUUID": "0a77ea88569f9db376684fed0cd5b19239faeb4f" - }, - "pb-IF4MU0ReEA==": { - "display_string": [ - "\ue063RoyalOwl79", - "\ue030Android63988366" - ], - "profiles": [], - "name": "\ue063RoyalOwl79", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-26 13:29:02", - "registerOn": 1670222628.1899621, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222628.1899629, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299113.489025, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299113.489026, - "lastIP": "azo~{n~~oaajby", - "deviceUUID": "6a895c7e6b6e7eeaed67ef25decfaaae72bb4845" - }, - "pb-IF4WU05cNA==": { - "display_string": [ - "\ue020mrsaifuuuu" - ], - "profiles": [], - "name": "\ue020mrsaifuuuu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 11:56:53", - "registerOn": 1670222651.2537246, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222651.253726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222651.2537346, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670222651.2537358, - "lastIP": "azo~{m~~ieaj`w", - "deviceUUID": "7e0251a647f979bfe438b46bf3cd79eb0deda0ff" - }, - "pb-IF43UxUHMw==": { - "display_string": [ - "\ue030Android60516479" - ], - "profiles": [], - "name": "\ue030Android60516479", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-16 15:43:18", - "registerOn": 1670222714.5488358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222714.5488365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232448.8958306, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232448.895832, - "lastIP": "b}k~~`eaib\u007fvb}j", - "deviceUUID": "\u0015\u0004\u000fURMU[\u0002\u0007F\u0007\u000fP\u0002@" - }, - "pb-IF4nU08oIA==": { - "display_string": [ - "\ue063LightDestr" - ], - "profiles": [], - "name": "\ue063LightDestr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 17:41:56", - "registerOn": 1670222824.1744423, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222824.1744428, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222824.17445, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670222974.2591498, - "lastIP": "b}k~~oha`faid{", - "deviceUUID": "90e550de55f4472e78ab42ba521d8b4451a0c330" - }, - "pb-IF4xUmISVw==": { - "display_string": [ - "\ue063BoldestClo" - ], - "profiles": [], - "name": "\ue063BoldestClo", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-29 01:26:21", - "registerOn": 1670222830.0305262, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222830.0305266, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222830.0305347, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670222830.0305357, - "lastIP": "axo~}jham`aif}", - "deviceUUID": "3e3acd87d2262c3cd3298b13546fddd8c63183dc" - }, - "pb-IF4pU0QzBg==": { - "display_string": [ - "\ue030Android63511670" - ], - "profiles": [], - "name": "\ue030Android63511670", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-25 16:33:39", - "registerOn": 1670222948.4747255, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222948.4747262, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318062.139202, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670332952.2966008, - "lastIP": "dvvc{vcxvb|o", - "deviceUUID": "a4a3e6530f2a3e449a55f08fbbc7b49a1e4e04fd" - }, - "pb-IF4TVWguVA==": { - "display_string": [ - "\ue020RoyalRead11", - "\ue030Android63893836", - "\ue030Android63893825", - "\ue030Android63893729", - "\ue030Android63893802" - ], - "profiles": [], - "name": "\ue020RoyalRead11", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-28 14:18:36", - "registerOn": 1670222957.5876591, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222957.5876598, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222957.5876687, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670222957.5876698, - "lastIP": "b}k~}kiakiaig\u007f", - "deviceUUID": "a0fe15893d25cbbae7b9242e10b763914eac197a", - "cMsgCount": 0, - "lastMsgTime": 1670223243.7804573, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5WVG4yCA==": { - "display_string": [ - "\ue020\ud835\ude77\ud835\ude70\u2c64\ud835\ude82\ud835\ude77v\u0360\ud835\ude74\u2c64\ud835\ude7c\ud835\ude70", - "\ue030Android48601951", - "\ue030Android48602193", - "\ue030Android48601931", - "\ue030Android39034906" - ], - "profiles": [], - "name": "\ue020\ud835\ude77\ud835\ude70\u2c64\ud835\ude82\ud835\ude77v\u0360\ud835\ude74\u2c64\ud835\ude7c\ud835\ude70", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-24 20:09:26", - "registerOn": 1670223005.7061543, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223005.7061548, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336461.3518753, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336461.3518765, - "lastIP": "azo~|o~~lgaid|", - "deviceUUID": "72d1deb3e319e18a9aafaae6c95c07faaf98c813", - "cMsgCount": 0, - "lastMsgTime": 1670337103.9184818, - "lastMsg": "no yrr he is pro", - "cSameMsg": 0 - }, - "pb-IF4RU1BbCQ==": { - "display_string": [ - "\ue030Android63297715", - "\ue030Android63978021" - ], - "profiles": [], - "name": "\ue030Android63297715", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 19:46:54", - "registerOn": 1670223013.750009, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223013.7500095, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223013.7500196, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223013.7500205, - "lastIP": "a\u007fk~~mfaj`yva\u007fh", - "deviceUUID": "17bd1527b38c2879e409fd15ec222b7edf87d067" - }, - "pb-IF4-U0gfIg==": { - "display_string": [ - "\ue020PlusCradle26", - "\ue030Android63906776", - "\ue030Android63917073", - "\ue030Android48414766", - "\ue030Android63906781" - ], - "profiles": [], - "name": "\ue020PlusCradle26", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 09:23:18", - "registerOn": 1670223126.1487603, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223126.148761, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310632.36223, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670310632.3622313, - "lastIP": "azo~{n~v`~}h`", - "deviceUUID": "35ef1421547313dda03ae22eb01e4e1f0259f55f" - }, - "pb-JiNJARFZV0BBVV5AGUNRUVZGFkJXRlJL": { - "display_string": [ - "\ue020jcar914", - "\ue030Android47332199" - ], - "profiles": [], - "name": "\ue020jcar914", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-26 17:42:21", - "registerOn": 1670223191.286122, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223191.2861228, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224446.9002898, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224446.900292, - "lastIP": "a}j~zh~}ifaiax", - "deviceUUID": "213acdad9f716bdc06894815f2c0bc4f516c7ebd" - }, - "pb-IF4XNk8E": { - "display_string": [ - "\ue020Mynameismr007", - "\ue030Android47352286" - ], - "profiles": [], - "name": "\ue020Mynameismr007", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-13 23:16:54", - "registerOn": 1670223306.9310734, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223306.9310741, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223306.9310822, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223306.931083, - "lastIP": "a~n~xl~}khaj`|", - "deviceUUID": "cfbdc716256dd5be19d86bd852f9657282004776" - }, - "pb-IF48U1BeVA==": { - "display_string": [ - "\ue063RetiringTh" - ], - "profiles": [], - "name": "\ue063RetiringTh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 11:26:17", - "registerOn": 1670223342.0682235, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223342.068224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223342.0682306, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223342.0682313, - "lastIP": "a|n~~mhai~xl", - "deviceUUID": "47fde9d16fc278059e28ba08a5c5923befabf415" - }, - "pb-IF5dU0haPA==": { - "display_string": [ - "\ue030Android63621219" - ], - "profiles": [], - "name": "\ue030Android63621219", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 21:22:24", - "registerOn": 1670223414.3308358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223414.3308365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223414.3308449, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223414.3308458, - "lastIP": "azo~|`~~jiaig}", - "deviceUUID": "8b23d0ed10e731852f3616071db53180f5a7639e" - }, - "pb-IF49VBQ4KQ==": { - "display_string": [ - "\ue020VariedCreator11" - ], - "profiles": [], - "name": "\ue020VariedCreator11", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-07 08:47:08", - "registerOn": 1670223647.4419773, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223647.4419777, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223647.4419851, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223647.4419858, - "lastIP": "dvvcxvaza~~ob", - "deviceUUID": "0de2c35c754bba5c6e317dc4e2356a77eaa0f6f5" - }, - "pb-JiNJARBYVUNCXl9HEk5YVVVCGUFaT1VB": { - "display_string": [ - "\ue063Alexander6" - ], - "profiles": [], - "name": "\ue063Alexander6", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-31 22:07:51", - "registerOn": 1670223994.6633196, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223994.66332, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223994.6633277, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223994.6633284, - "lastIP": "a\u007fk~}laaldaj`\u007f", - "deviceUUID": "b136cb2b325744116e4458ba7b6e14cdef93caae" - }, - "pb-IF4tU0szDw==": { - "display_string": [ - "\ue020AristocraticPossum54" - ], - "profiles": [], - "name": "\ue020AristocraticPossum54", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 17:22:58", - "registerOn": 1670224082.983369, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224082.9833698, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246038.646844, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246038.646845, - "lastIP": "aakhaa`aifz", - "deviceUUID": "3bb77423b818d2d17e9a5c2d472f7ff66b12ce67" - }, - "pb-IF4cVFEENw==": { - "display_string": [ - "\ue020TroublingSeer45843" - ], - "profiles": [], - "name": "\ue020TroublingSeer45843", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-30 17:17:37", - "registerOn": 1670224221.7086017, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224221.7086027, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224221.7086105, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224221.7086112, - "lastIP": "azo~zi~vn~vn", - "deviceUUID": "bc587bc343435acaeeb16a6168e1eeadae575953" - }, - "pb-IF42UhVfFQ==": { - "display_string": [ - "\ue063MeatyHallw" - ], - "profiles": [], - "name": "\ue063MeatyHallw", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-26 21:07:54", - "registerOn": 1670224304.6928282, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224304.6928287, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224304.692835, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224304.6928358, - "lastIP": "a\u007fk~~ohaaeamg", - "deviceUUID": "6d7ce7268bc301b3530a19e3100c26e940c64638" - }, - "pb-IF4vUhc8NA==": { - "display_string": [ - "\ue020king12of34world" - ], - "profiles": [], - "name": "\ue063king12of34", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-06 19:14:02", - "registerOn": 1670224390.9638715, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224390.963872, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224390.9638948, - "verified": false, - "rejoincount": 0, - "lastJoin": 1670224702.8370771, - "lastIP": "a\u007fn~~afai`wvazh", - "deviceUUID": "e724ac296ff3aaa7b58fb4beeb5a6bd55d243a15" - }, - "pb-IF4-U0wmFA==": { - "display_string": [ - "\ue020BroadestStress64" - ], - "profiles": [], - "name": "\ue020BroadestStress64", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 16:31:50", - "registerOn": 1670224419.1593127, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224419.1593134, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224419.1593218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224419.1593227, - "lastIP": "a\u007fk~~`gaahaih{", - "deviceUUID": "f7ec1dea556e337a4f288c1a8e992be20c6cf516" - }, - "pb-IF4NU04dKQ==": { - "display_string": [ - "\ue030Android63983749" - ], - "profiles": [], - "name": "\ue030Android63983749", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:56:21", - "registerOn": 1670224433.1994147, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224433.1994152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311471.5926657, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311471.5926664, - "lastIP": "a|h~~heaniaia|", - "deviceUUID": "8ad9c12623e62e5d87337454ec3d0d16ed4509f4", - "cMsgCount": 0, - "lastMsgTime": 1670311994.587358, - "lastMsg": "i hate shine she punch me and im her team", - "cSameMsg": 0 - }, - "pb-IF5XUxQNKg==": { - "display_string": [ - "\ue030Android60176502" - ], - "profiles": [], - "name": "\ue030Android60176502", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-02 13:36:23", - "registerOn": 1670224594.7961566, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224594.7961574, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224594.7961674, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224594.7961679, - "lastIP": "b\u007fn~wk~~ibakh", - "deviceUUID": "b628827af1660e8d1a369c7bb005ddd321826a1a" - }, - "pb-IF4LU3IhCg==": { - "display_string": [ - "\ue063UnbornObse" - ], - "profiles": [], - "name": "\ue063UnbornObse", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-06 06:24:33", - "registerOn": 1670224621.8851442, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224621.8851452, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331607.7546296, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670331607.7546308, - "lastIP": "az`~yj~wvgz", - "deviceUUID": "2d5f8908bc02bb7dc9e26846d26e9167e29f1109" - }, - "pb-IF4nVUddEA==": { - "display_string": [ - "\ue020UnrecordedContrast21", - "\ue030Android51604904" - ], - "profiles": [], - "name": "\ue020UnrecordedContrast21", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-24 19:24:09", - "registerOn": 1670224695.1638308, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224695.163831, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224695.1638393, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224695.1638403, - "lastIP": "azj~z`~}`~}ih", - "deviceUUID": "94dbacce83b90b4cfffc1bec22faf9d1acdc7db5" - }, - "pb-IF4HU00iMA==": { - "display_string": [ - "\ue020AcuteSodium40" - ], - "profiles": [], - "name": "\ue020AcuteSodium40", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 12:39:12", - "registerOn": 1670224875.8248928, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224875.8248932, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224875.8249018, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224875.8249028, - "lastIP": "a\u007fn~~aeakgaii", - "deviceUUID": "c720584a91b3cbe6db86ad747fa20b79ebd57367" - }, - "pb-IF4tURMJ": { - "display_string": [ - "\ue020RagingOrangutan79611", - "\ue030Android36362458" - ], - "profiles": [], - "name": "\ue020RagingOrangutan79611", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-12 18:45:41", - "registerOn": 1670224930.0256732, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224930.0256736, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224930.0256803, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224930.0256815, - "lastIP": "a\u007fn~~adakiaif{", - "deviceUUID": "00205d6e727c4c8655e1d50949de75de43d9f425" - }, - "pb-IF4VVGQqIA==": { - "display_string": [ - "\ue063Abwini9" - ], - "profiles": [], - "name": "\ue063Abwini9", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-01 21:38:23", - "registerOn": 1670225142.8319447, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225142.8319454, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225142.8319547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225142.8319557, - "lastIP": "ax`~xo~~meanc", - "deviceUUID": "971b74965958e51e59e30e484186b7389cc56f1a" - }, - "pb-IF4BU3YiBw==": { - "display_string": [ - "\ue020raj140608" - ], - "profiles": [], - "name": "\ue020raj140608", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 16:49:48", - "registerOn": 1670225313.742744, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225313.7427452, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225313.742753, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225313.7427537, - "lastIP": "a}k~}haaj~~`b", - "deviceUUID": "d4f4de333d3ac253c6682a64d10146afdc3bed93" - }, - "pb-IF40U08DIg==": { - "display_string": [ - "\ue063PitilessDi" - ], - "profiles": [], - "name": "\ue063PitilessDi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 09:57:03", - "registerOn": 1670225366.6395636, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225366.639564, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225366.6395714, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225366.6395721, - "lastIP": "b\u007fj~yo~|a~~h", - "deviceUUID": "cba75cd69c2cba64503daeae42befdd269060920" - }, - "pb-IF4pUxccDQ==": { - "display_string": [ - "\ue020MRSMoOtHy9098", - "\ue030Android60542989" - ], - "profiles": [], - "name": "\ue020MRSMoOtHy9098", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-23 14:20:28", - "registerOn": 1670225421.9733288, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225421.9733298, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225421.9733438, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225421.9733446, - "lastIP": "azo~{m~~oiajd|", - "deviceUUID": "017b66c9bf884f6f82343cc45aa1fc8db1d1ecf4" - }, - "pb-IF5WU3YtDg==": { - "display_string": [ - "\ue020kingofdragonwar10" - ], - "profiles": [], - "name": "\ue020kingofdragonwar10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-12 11:15:55", - "registerOn": 1670225497.0738711, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225497.0738714, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670334903.754289, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334866.5616307, - "lastIP": "a\u007fn~}j`ajd{vd\u007f", - "deviceUUID": "458f059dc7613379d0f64b393d516bfe4ce94349", - "cMsgCount": 0, - "lastMsgTime": 1670334903.754227, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4NUxcqNA==": { - "display_string": [ - "\ue063TurboFamil" - ], - "profiles": [], - "name": "\ue063TurboFamil", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-25 17:39:11", - "registerOn": 1670225548.248582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225548.2485824, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229538.8195338, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670229091.8494523, - "lastIP": "a\u007fk~zo~wm~}jc", - "deviceUUID": "761e2f8a9baa8a93f1ca262cd255c7269e8b4c96", - "cMsgCount": 0, - "lastMsgTime": 1670229538.8194907, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4tBWhf": { - "display_string": [ - "\ue063TiredShiel" - ], - "profiles": [], - "name": "\ue063TiredShiel", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-08 11:07:39", - "registerOn": 1670225703.2770789, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225703.2770793, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225703.2770863, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670225708.5493443, - "lastIP": "a\u007fn~}hfajaaic|", - "deviceUUID": "50aec541ac095332e4e7d310526059b4d87e2701" - }, - "pb-IF4OU0MmCw==": { - "display_string": [ - "\ue020PaltryLuxury43" - ], - "profiles": [], - "name": "\ue020PaltryLuxury43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-21 14:47:25", - "registerOn": 1670225752.03882, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225752.0388205, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225752.0388293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225752.03883, - "lastIP": "a\u007fn~}jba`faigx", - "deviceUUID": "fac6ef408444c29869070071a76e6de49b381bdd" - }, - "pb-IF4TU0MJAQ==": { - "display_string": [ - "\ue020SovereignSplendor53", - "\ue063UnvaryingT", - "\ue020ElectricalTilt52", - "\ue020LittleJourney40429" - ], - "profiles": [], - "name": "\ue063UnvaryingT", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-23 09:41:04", - "registerOn": 1670225869.4587672, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225869.4587677, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225869.4587755, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225869.4587762, - "lastIP": "dvvcxvb~k~~mf", - "deviceUUID": "6f0b3cbe2a98d10a5ba1b40d8c12cc695a4fcd11" - }, - "pb-IF4iVRIvFA==": { - "display_string": [ - "\ue063supersmash", - "\ue030Android45064400" - ], - "profiles": [], - "name": "\ue063supersmash", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-16 13:10:01", - "registerOn": 1670225915.6225243, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225915.6225247, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225915.6225307, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225915.6225317, - "lastIP": "dvvcxvd~vavn", - "deviceUUID": "996d37e51f3c1c08aaa7659db77b08d88da28fc6" - }, - "pb-IF4tVXIbMQ==": { - "display_string": [ - "\ue020Aryannnnn\u30c5", - "\ue030Android51658791" - ], - "profiles": [], - "name": "\ue020Aryannnnn\u30c5", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-14 19:50:14", - "registerOn": 1670226061.2386627, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226061.2386632, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317537.1754663, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317537.1754677, - "lastIP": "a\u007fn~}ifa`haihy", - "deviceUUID": "7c87fdd2c2959085eb949e641404ba48594d4b86", - "cMsgCount": 1, - "lastMsgTime": 1670317570.0272377, - "lastMsg": "uncas y u angry at me", - "cSameMsg": 0 - }, - "pb-IF5SU00BVQ==": { - "display_string": [ - "\ue063NimblePass" - ], - "profiles": [], - "name": "\ue063NimblePass", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 14:22:59", - "registerOn": 1670226110.279205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226110.2792058, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226110.2792144, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226110.2792153, - "lastIP": "dxvazvawvf\u007f", - "deviceUUID": "8b95267b1e3d9e2d481577825ab6d4466e7cd053" - }, - "pb-IF4NUmovVg==": { - "display_string": [ - "\ue063ShailiPate" - ], - "profiles": [], - "name": "\ue063ShailiPate", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-05 13:12:44", - "registerOn": 1670226195.6351314, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226195.6351318, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323853.512387, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323853.5123887, - "lastIP": "d}va\u007fn~~a~yj", - "deviceUUID": "f197b811af71876fc2976f89c919eaadd4f25bfa" - }, - "pb-IF4VU3ENAA==": { - "display_string": [ - "\ue030Android62403774" - ], - "profiles": [], - "name": "\ue030Android62403774", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-02 12:18:25", - "registerOn": 1670226282.8838375, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226282.8838382, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226282.883846, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226282.883847, - "lastIP": "awk~~oaaibxvav", - "deviceUUID": "\u0015\u0004\\P" - }, - "pb-IF4FU085EQ==": { - "display_string": [ - "\ue063BrackishCh" - ], - "profiles": [], - "name": "\ue063BrackishCh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 13:10:05", - "registerOn": 1670226374.3766797, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226374.3766801, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226374.3766882, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226374.376689, - "lastIP": "azo~{n~~ocaiiz", - "deviceUUID": "91a83f9a494e45ab8450580dc802615e8120cee5" - }, - "pb-IF5TU1EzAg==": { - "display_string": [ - "\ue063FollowingH" - ], - "profiles": [], - "name": "\ue063FollowingH", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 20:48:30", - "registerOn": 1670226380.258697, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226380.258698, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226380.2587054, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226380.2587063, - "lastIP": "azo~|a~}o~~og", - "deviceUUID": "99c9e6867cc9f32ea0f9f88fc3c3fec0fa0433c5" - }, - "pb-IF4mVW4KCg==": { - "display_string": [ - "\ue030PC297792" - ], - "profiles": [], - "name": "\ue030PC297792", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-16 22:09:12", - "registerOn": 1670226457.582149, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226457.5821497, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226457.5821557, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226457.5821567, - "lastIP": "a~o~}igaii\u007fvavi", - "deviceUUID": "3b7f3440897b3d0e42c85de043bbf8c6d1cbe8ec" - }, - "pb-IF4PU20MUQ==": { - "display_string": [ - "\ue030Android62028677" - ], - "profiles": [], - "name": "\ue030Android62028677", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-16 17:57:58", - "registerOn": 1670226522.783715, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226522.7837155, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226522.7837224, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226522.7837234, - "lastIP": "a~l~|i~~`haab", - "deviceUUID": "\u0015V^\u0004\u0003M\u0007YURAQU\u0005\u0005\u0016Q\\RUAYZWVGX" - }, - "pb-IF5TV2MzCA==": { - "display_string": [ - "\ue063RoyalProph", - "\ue030Android27475121" - ], - "profiles": [], - "name": "\ue063RoyalProph", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-09 15:25:46", - "registerOn": 1670226649.6207516, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226649.620752, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300672.096717, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670300732.285673, - "lastIP": "azo~|l~~maaja", - "deviceUUID": "e8cf97805255e86aec70c8706d6b9e5f3ca97b30", - "cMsgCount": 0, - "lastMsgTime": 1670227063.3796155, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF40U00CCg==": { - "display_string": [ - "\ue063VagueInfus" - ], - "profiles": [], - "name": "\ue063VagueInfus", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 17:20:26", - "registerOn": 1670226659.3487902, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226659.3487906, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330316.595092, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330316.5950935, - "lastIP": "az`~yj~\u007fvawl", - "deviceUUID": "253c7d0e64a83179258252f4559bc72f8679e046", - "cMsgCount": 0, - "lastMsgTime": 1670330346.254742, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF40UnkJDw==": { - "display_string": [ - "\ue063yellipai" - ], - "profiles": [], - "name": "\ue063yellipai", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-11 08:38:11", - "registerOn": 1670226866.2665646, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226866.266565, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226866.266573, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226866.266574, - "lastIP": "evvi|vb|l~~ad", - "deviceUUID": "ce58c2e31fb0efd21874c1e470474a18e21def92" - }, - "pb-IF4jU2g9Ew==": { - "display_string": [ - "\ue020UnpaidExercise38" - ], - "profiles": [], - "name": "\ue020UnpaidExercise38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-25 19:42:30", - "registerOn": 1670226869.5052457, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226869.5052464, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226869.5052528, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226869.5052536, - "lastIP": "azo~{a~~liaify", - "deviceUUID": "9b824e81fbd60169f30045059ecb9762f6b411d3" - }, - "pb-IF5WU0peVQ==": { - "display_string": [ - "\ue020KeptVacation37" - ], - "profiles": [], - "name": "\ue020KeptVacation37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 14:21:17", - "registerOn": 1670226903.3899212, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226903.3899224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226903.3899307, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226903.3899314, - "lastIP": "azo~{n~~jiaka", - "deviceUUID": "f643b228b67be1df4548532e6d11d7b24674d26f" - }, - "pb-IF4KU3AnHQ==": { - "display_string": [ - "\ue030Android62253416" - ], - "profiles": [], - "name": "\ue030Android62253416", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-26 14:30:47", - "registerOn": 1670226963.5896826, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226963.5896833, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226963.5896919, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670228788.722594, - "lastIP": "dvvc}vayn~|l", - "deviceUUID": "2620c5f80b8a2b954f6fcc27da29c5908d2f87c6", - "cMsgCount": 2, - "lastMsgTime": 1670229653.0490026, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5XUkoGDw==": { - "display_string": [ - "\ue063AerialMark", - "\ue030Android54465033" - ], - "profiles": [], - "name": "\ue063AerialMark", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-12 22:40:28", - "registerOn": 1670227022.7963612, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670227022.796362, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227022.7963703, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670227022.796371, - "lastIP": "a\u007fk~~jcaiexvgz", - "deviceUUID": "39e13719e2009e69674426018146ced270d091cc" - }, - "pb-IF4PVU49EQ==": { - "display_string": [ - "\ue020SashaGoPewpew" - ], - "profiles": [], - "name": "\ue020SashaGoPewpew", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-03 09:30:08", - "registerOn": 1670227054.923248, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670227054.923249, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227054.9232554, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670227054.923276, - "lastIP": "b\u007fk~~`iaiayva\u007fo", - "deviceUUID": "\u0015\u0004U\u0003W\u0010V_VY\u0017T\b\u0005R\u0015\u0003\\PVBT\\VXAT", - "cMsgCount": 0, - "lastMsgTime": 1670227845.6772037, - "lastMsg": "it's all good ig", - "cSameMsg": 0 - }, - "pb-IF4GUxYsDQ==": { - "display_string": [ - "\ue020ConclusiveBottle39" - ], - "profiles": [], - "name": "\ue020ConclusiveBottle39", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-16 14:12:38", - "registerOn": 1670227319.7724183, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670227319.7724187, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227319.7724278, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670227319.7724285, - "lastIP": "azo~{n~~jaaifv", - "deviceUUID": "8ead49b7ddabc9a22af41957df33d402effd5a2e" - }, - "pb-IF4KU1AsNQ==": { - "display_string": [ - "\ue063Custumtom" - ], - "profiles": [], - "name": "\ue063Custumtom", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 13:28:37", - "registerOn": 1670227461.4978473, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670227461.497848, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227461.4978573, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670227461.4978583, - "lastIP": "a}j~zh~~aeaigx", - "deviceUUID": "ff3dde8336f0ed67a71208df988d06298d531b5e" - }, - "pb-IF4LVXpYNg==": { - "display_string": [ - "\ue020UnimpededHorseback4" - ], - "profiles": [], - "name": "\ue020UnimpededHorseback4", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-10 09:53:20", - "registerOn": 1670227744.6954534, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670227744.6954541, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251381.517309, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670251437.6888216, - "lastIP": "a\u007fk~v`~|`~v", - "deviceUUID": "2227a173a4be186298989f5e5c0a0fef7e57815e", - "cMsgCount": 0, - "lastMsgTime": 1670228101.109848, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4lVUo7Eg==": { - "display_string": [ - "\ue020sobikd" - ], - "profiles": [], - "name": "\ue020sobikd", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-14 12:58:46", - "registerOn": 1670228197.982771, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228197.9827716, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228197.9827867, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670228197.9827876, - "lastIP": "a\u007fn~~aga`iajc|", - "deviceUUID": "6298115190da1bfb5df2d882f75738ee6f00d083" - }, - "pb-IF4hVFkHKg==": { - "display_string": [ - "\ue063RhythmicCr", - "\ue030Android39653045" - ], - "profiles": [], - "name": "\ue020RhythmicCrown18", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-28 18:46:27", - "registerOn": 1670228209.0389888, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228209.0389895, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314990.890113, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314990.890114, - "lastIP": "dvvcxvg{va{o", - "deviceUUID": "62e44e3760cd9c6c82cf681707d065b69027b7e1", - "cMsgCount": 0, - "lastMsgTime": 1670315230.817549, - "lastMsg": "ni?", - "cSameMsg": 0 - }, - "pb-IF4pU1BTHA==": { - "display_string": [ - "\ue063Antiquate7" - ], - "profiles": [], - "name": "\ue063Antiquate7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 12:03:47", - "registerOn": 1670228297.4124837, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228297.4124844, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228297.4124925, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670228297.4124932, - "lastIP": "azo~zi~|k~wi", - "deviceUUID": "76429b13abd2692cbf282bb1b503265d3de59f86" - }, - "pb-IF4WVUsFNw==": { - "display_string": [ - "\ue063Preferent5" - ], - "profiles": [], - "name": "\ue063Preferent5", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-20 22:01:33", - "registerOn": 1670228411.789545, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228411.7895458, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296044.435284, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296044.435285, - "lastIP": "dvvc{viyva|k", - "deviceUUID": "22932973725a6b2764c9aaaa0054bf0ac3663c09" - }, - "pb-IF5RVG8EUw==": { - "display_string": [ - "\ue020HumdrumFrame7" - ], - "profiles": [], - "name": "\ue020HumdrumFrame7", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-29 19:16:30", - "registerOn": 1670228446.579187, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228446.5791874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228446.5791957, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670228446.5791965, - "lastIP": "dvvc{va|h~~j", - "deviceUUID": "d44ffd437086b4f53c81dcffeacef2ef90654ec5" - }, - "pb-IF5UU0EtKw==": { - "display_string": [ - "\ue030Android63417416" - ], - "profiles": [], - "name": "\ue030Android63417416", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-19 20:32:50", - "registerOn": 1670228484.0479453, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228484.0479462, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228484.047954, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670228484.0479553, - "lastIP": "a\u007fn~~acaj`yvd}", - "deviceUUID": "dc9a27e890eca123a1f9ce4d05a2f66cd6d02f7c" - }, - "pb-IF4lU0cxXQ==": { - "display_string": [ - "\ue063larsyuan65" - ], - "profiles": [], - "name": "\ue063larsyuan65", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 19:12:42", - "registerOn": 1670228741.8731394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228741.8731403, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228741.8731513, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670228840.917879, - "lastIP": "a|n~~mhajhala", - "deviceUUID": "2e318aa8ec18e6c872f8539535ec1e883cc781b3" - }, - "pb-IF4HU00hJw==": { - "display_string": [ - "\ue063Recipient3" - ], - "profiles": [], - "name": "\ue063Recipient3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 14:29:02", - "registerOn": 1670228784.0108788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228784.0108795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321396.582164, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321396.5821657, - "lastIP": "a\u007fk~y`~}j~yh", - "deviceUUID": "4575321855c254908c77eefcb28cd9ff7599f77f" - }, - "pb-IF4zU00GCg==": { - "display_string": [ - "\ue020SilentSalt1900" - ], - "profiles": [], - "name": "\ue020SilentSalt1900", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 14:08:37", - "registerOn": 1670228921.5335805, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228921.533581, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228921.5335886, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670229254.4435499, - "lastIP": "azj~zo~}l~zn", - "deviceUUID": "f4a122773f682de8dc15bd34a49bd18621e2ac1e" - }, - "pb-IF42U08yFw==": { - "display_string": [ - "\ue030Android63983683" - ], - "profiles": [], - "name": "\ue030Android63983683", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:42:38", - "registerOn": 1670228933.8215332, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228933.8215337, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296269.2771714, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296269.2771726, - "lastIP": "a|o~vo~x`~~o`", - "deviceUUID": "7ed4cb26643deafc53d59f450dfda5d60fe5270f" - }, - "pb-IF4UUmQDJw==": { - "display_string": [ - "\ue020JauntyCoin52791", - "\ue030Android52824015" - ], - "profiles": [], - "name": "\ue020JauntyCoin52791", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-04 18:30:08", - "registerOn": 1670228976.775681, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228976.7756817, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228976.7756903, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670228976.775691, - "lastIP": "a\u007fn~}heajbaic~", - "deviceUUID": "71419b847c4b6137f6d3246d7890d14e677339c3" - }, - "pb-IF4yD3Qc": { - "display_string": [ - "\ue063SpaceShutt", - "\ue030Android46872814" - ], - "profiles": [], - "name": "\ue063SpaceShutt", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-05 10:42:33", - "registerOn": 1670228987.758543, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228987.7585437, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247587.031569, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247587.0315704, - "lastIP": "dvvcyvh|vbzi", - "deviceUUID": "ca8f32981f1fe7f2136876c26921f7859a9f3f96" - }, - "pb-IF4PUkkqMA==": { - "display_string": [ - "\ue063BrutalSici" - ], - "profiles": [], - "name": "\ue063BrutalSici", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-16 10:02:41", - "registerOn": 1670229356.5626655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229356.562666, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322121.2772715, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670322142.3583076, - "lastIP": "a\u007fk~~aaaj`{vg{", - "deviceUUID": "dcc5c7508559ffa5b58c9495fea6671707be3cc8" - }, - "pb-IF5dU08nEw==": { - "display_string": [ - "\ue020ElegantCavalier77306" - ], - "profiles": [], - "name": "\ue020ElegantCavalier77306", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 09:03:26", - "registerOn": 1670229402.3325691, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229402.3325698, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229402.3325784, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229402.3325794, - "lastIP": "b}k~~`gaib~vazo", - "deviceUUID": "eb82fd15cf5cc77c3ff31d26a9f7f0c821748d3e" - }, - "pb-IF4WU2ooNg==": { - "display_string": [ - "\ue063Customary7" - ], - "profiles": [], - "name": "\ue063Customary7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-03 17:39:17", - "registerOn": 1670229408.377324, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229408.3773248, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229408.3773336, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229408.3773348, - "lastIP": "azj~z`~|l~~md", - "deviceUUID": "4368e63f833e87303119297e60c52375cc211ec2" - }, - "pb-IF4KU1AsAQ==": { - "display_string": [ - "\ue063NOTJOSHLEO" - ], - "profiles": [], - "name": "\ue063NOTJOSHLEO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 14:09:38", - "registerOn": 1670229593.009421, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229593.0094216, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229593.00943, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229593.0094311, - "lastIP": "a{h~}icaiixvfx", - "deviceUUID": "99b1bcc147f758903ee66d180a59c5ffa6f77f14" - }, - "pb-IF5UUks5DQ==": { - "display_string": [ - "\ue063WinterProf" - ], - "profiles": [], - "name": "\ue063WinterProf", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-17 22:28:17", - "registerOn": 1670229595.9927943, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229595.992795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229595.9928029, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229595.9928036, - "lastIP": "azo~{a~~jiajbv", - "deviceUUID": "a94b206be518cd1883431b924685eff2e39af3dd" - }, - "pb-IF4sVW8hUA==": { - "display_string": [ - "\ue020\ud835\udd8e\ud835\udd86\ud835\udd93\ud835\udd89\ud835\udd8e\ud835\udd94\ud835\udd97" - ], - "profiles": [], - "name": "\ue020\ud835\udd8e\ud835\udd86\ud835\udd93\ud835\udd89\ud835\udd8e\ud835\udd94\ud835\udd97", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-26 11:45:30", - "registerOn": 1670229602.0637639, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229602.0637648, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229602.0637722, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229602.063773, - "lastIP": "dvvb|o~~k~v`", - "deviceUUID": "382568c64573fdea10beb998e6a68ad17b62e7f2" - }, - "pb-IF4rU3NTEA==": { - "display_string": [ - "\ue030Android62498959" - ], - "profiles": [], - "name": "\ue030Android62498959", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-06 22:59:09", - "registerOn": 1670229629.1306546, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229629.1306553, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229629.1306636, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670229701.0906115, - "lastIP": "azj~zo~~hiamb", - "deviceUUID": "\u0015QZVRG\u0002\bYWFY^PTFS\\SU@Q\\PWA" - }, - "pb-IF4MU087Dw==": { - "display_string": [ - "\ue063UnsoundApp" - ], - "profiles": [], - "name": "\ue063UnsoundApp", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 19:08:41", - "registerOn": 1670229696.38345, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229696.3834505, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229696.3834593, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229696.38346, - "lastIP": "dvva{l~~hfaicx", - "deviceUUID": "4825d16b394479d5f7c7351f6bf0ecbff01099ca" - }, - "pb-IF4UVxEtHA==": { - "display_string": [ - "\ue063SarayutVic" - ], - "profiles": [], - "name": "\ue063SarayutVic", - "isBan": false, - "isMuted": false, - "accountAge": "2018-07-11 17:55:35", - "registerOn": 1670229715.7352576, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229715.7352583, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229715.7352688, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229715.7352698, - "lastIP": "b}k~}hfajb\u007fva\u007fh", - "deviceUUID": "360dc7b30d80b599690c65212359015f751eb0af" - }, - "pb-IF4LVGQoMg==": { - "display_string": [ - "\ue020NarrativePulp7" - ], - "profiles": [], - "name": "\ue020NarrativePulp7", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-01 07:35:36", - "registerOn": 1670229799.8144748, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229799.8144753, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327914.0341606, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327914.0341618, - "lastIP": "dvvc{vaxj~~ii", - "deviceUUID": "5005c19e252c77de222a0b3aa38fbfada738a319" - }, - "pb-IF4QU3IfHw==": { - "display_string": [ - "\ue020ChestnutMisery45" - ], - "profiles": [], - "name": "\ue020ChestnutMisery45", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 16:52:45", - "registerOn": 1670229852.9366603, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229852.9366608, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229852.9366696, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229852.9366708, - "lastIP": "b}k~}jeajdyvhx", - "deviceUUID": "5ce3d6b9ee7d400300e2c33d083822274ab3a590" - }, - "pb-IF4BVGUmHw==": { - "display_string": [ - "\ue020nedstark5000" - ], - "profiles": [], - "name": "\ue020nedstark5000", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-10 10:31:18", - "registerOn": 1670229924.216744, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229924.2167447, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229924.2167525, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229924.2167535, - "lastIP": "a\u007fn~x`~~n`a`i", - "deviceUUID": "cb18af39dd9676be6089958288eea3ef546e0f39" - }, - "pb-IF4yU0oAUQ==": { - "display_string": [ - "\ue030Android63790532" - ], - "profiles": [], - "name": "\ue030Android63790532", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 19:16:01", - "registerOn": 1670230033.6235216, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230033.6235223, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230033.6235301, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670230033.6235313, - "lastIP": "azo~{a~}ifaii", - "deviceUUID": "edbf8f1218752fca82fdadf2d70f3a2bee7e837b" - }, - "pb-IF4SVU4FJw==": { - "display_string": [ - "\ue030Android52507762" - ], - "profiles": [], - "name": "\ue030Android52507762", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-07 17:10:11", - "registerOn": 1670230208.5107021, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230208.510703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230208.5107107, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670230208.510712, - "lastIP": "b}k~~`gaiaxvaxl", - "deviceUUID": "\u0015T\\T\u0004EQ_VVL\u0005\u000f\u0002\u0002\u0011STYSAQZPP@" - }, - "pb-JiNJVxFeVkNJXVtJGEBRUFJEEUFaQ1dA": { - "display_string": [ - "\ue020vijaysurya1805" - ], - "profiles": [], - "name": "\ue020vijaysurya1805", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-03 23:49:28", - "registerOn": 1670230309.6902184, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230309.6902192, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230309.6902275, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670230309.6902285, - "lastIP": "azo~zi~~hcaoe", - "deviceUUID": "66f35a045854f652d537fd4f22ffa69d0e3f71d7" - }, - "pb-IF4QU0cGKQ==": { - "display_string": [ - "\ue063Fluoresc10" - ], - "profiles": [], - "name": "\ue063Fluoresc10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 17:10:15", - "registerOn": 1670230501.3428638, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230501.342864, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230501.3428726, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670230501.3428736, - "lastIP": "a~o~}igaogaja{", - "deviceUUID": "52d426451801122f6a327e29b37553d47e1b7fd5" - }, - "pb-IF4RU0kkPA==": { - "display_string": [ - "\ue030Android63737185" - ], - "profiles": [], - "name": "\ue030Android63737185", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 12:41:43", - "registerOn": 1670230749.4979107, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230749.4979115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324759.2630568, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670325581.1100628, - "lastIP": "axi~{a~}kfai`x", - "deviceUUID": "c0d55be043457f66c1af41eb1fa91b227bf5f05b" - }, - "pb-IF4IUxUpCA==": { - "display_string": [ - "\ue020UnmarkedCommodore37" - ], - "profiles": [], - "name": "\ue020UnmarkedCommodore37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-15 13:26:32", - "registerOn": 1670230837.6404083, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230837.640409, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230837.6404185, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670230837.6404195, - "lastIP": "azo~|k~~abaibw", - "deviceUUID": "0388fd7e2f803334381174ca2a8585c9527da27a" - }, - "pb-IF5UUkMlDA==": { - "display_string": [ - "\ue063FancyPan23" - ], - "profiles": [], - "name": "\ue020FancyPantsLevel5048", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-18 10:53:25", - "registerOn": 1670230855.7314546, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230855.7314556, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308273.3458445, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308273.3458457, - "lastIP": "awj~xl~~agam`", - "deviceUUID": "5893c67d28623308e85d53e01f81d372327531dd" - }, - "pb-IF49U21YDQ==": { - "display_string": [ - "\ue020FreelanceProblem24", - "\ue030Android59843406" - ], - "profiles": [], - "name": "\ue030Android59843406", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-14 11:04:49", - "registerOn": 1670230943.0635073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230943.0635078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324297.3563714, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670324297.356373, - "lastIP": "a|n~~mhai`}vava", - "deviceUUID": "1b541227be57713283d65bfeaf44e43b051ee400", - "cMsgCount": 0, - "lastMsgTime": 1670240890.5801091, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4dU3FeVg==": { - "display_string": [ - "\ue030Android62362778", - "\ue030Android63946527", - "\ue030Android63791115" - ], - "profiles": [], - "name": "\ue030Android63946527", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 12:13:43", - "registerOn": 1670231050.7772844, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231050.7772846, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292905.8784635, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292905.8784652, - "lastIP": "dxvc~vb}o~wk", - "deviceUUID": "f0c5cbbe23c69b55ddd7f83779d8518657f89696" - }, - "pb-IF4DV24sDQ==": { - "display_string": [ - "\ue063DarkKnigh3", - "\ue030PC773596" - ], - "profiles": [], - "name": "\ue063DarkKnigh3", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-25 13:33:03", - "registerOn": 1670231104.689741, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231104.6897416, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231104.6897497, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231104.6897502, - "lastIP": "azo~{n~}hhaje|", - "deviceUUID": "58bb36a03707ec42ee131f438adc07f4c6e590cf", - "cMsgCount": 0, - "lastMsgTime": 1670231360.083685, - "lastMsg": "sure", - "cSameMsg": 0 - }, - "pb-LV4FXhAOU0pGXF9AFhNQUVJDEA==": { - "display_string": [ - "\ue030Android12758543" - ], - "profiles": [], - "name": "\ue030Android12758543", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-21 13:28:30", - "registerOn": 1670231619.3314147, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231619.3314154, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231619.3314242, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231619.331425, - "lastIP": "a\u007fk~~oiaia~va{m", - "deviceUUID": "50510f8eec27484cb21a7b263a17d112b8fee4b4" - }, - "pb-IF5VU0kBBA==": { - "display_string": [ - "\ue020VOILENTFIGHTER12", - "\ue030Android63671399" - ], - "profiles": [], - "name": "\ue020VOILENTFIGHTER12", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 16:52:45", - "registerOn": 1670231635.3568554, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231635.3568559, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670231789.973674, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231635.3568647, - "lastIP": "b}k~~`haje}vazm", - "deviceUUID": "02203c8528f66eed06dc45380a5eb55df893b6c3", - "cMsgCount": 0, - "lastMsgTime": 1670231828.4432135, - "lastMsg": "he would wipe himslf only", - "cSameMsg": 0 - }, - "pb-IF5RU0cNFA==": { - "display_string": [ - "\ue063Unsuitabl4" - ], - "profiles": [], - "name": "\ue063Unsuitabl4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 20:37:24", - "registerOn": 1670231774.9812443, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231774.981245, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231774.981254, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231774.981255, - "lastIP": "dvvd|viwvaxn", - "deviceUUID": "935c01f6439a763b266019148f02842f480c36c0" - }, - "pb-IF4QV0s7Fw==": { - "display_string": [ - "\ue020VISHAL6364S17" - ], - "profiles": [], - "name": "\ue020VISHAL6364S17", - "isBan": false, - "isMuted": false, - "accountAge": "2019-03-19 23:03:21", - "registerOn": 1670231824.3624701, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231824.3624709, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231824.3624814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231824.3624825, - "lastIP": "a\u007fk~}h`ai`yvg|", - "deviceUUID": "13e0c4be85e8a71aa81fbd51163ef27710fb4957" - }, - "pb-IF4AN2w6": { - "display_string": [ - "\ue020L\u00f8neW\u00f8lf\u00e6" - ], - "profiles": [], - "name": "\ue020L\u00f8neW\u00f8lf\u00e6", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-15 22:29:31", - "registerOn": 1670231855.141531, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231855.1415315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231855.1415393, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231855.14154, - "lastIP": "azo~zi~z`~}kd", - "deviceUUID": "64e2eeb8ff7d20fecb2b38975848aba0f3a56f13" - }, - "pb-IF4rU24hJA==": { - "display_string": [ - "\ue063StableCohe" - ], - "profiles": [], - "name": "\ue063StableCohe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 11:30:21", - "registerOn": 1670231861.1913927, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231861.1913934, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670304340.820544, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670304340.8205454, - "lastIP": "azo~{`~}jeai`z", - "deviceUUID": "7852b404f352d59f1c837ce5b6bd876df1357f13" - }, - "pb-IF4RVUIJLw==": { - "display_string": [ - "\ue020DamchAlandamcha" - ], - "profiles": [], - "name": "\ue020DamchAlandamcha", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-27 18:44:08", - "registerOn": 1670231909.292282, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231909.2922828, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231909.292292, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231909.292293, - "lastIP": "dxvbvva\u007fh~}mb", - "deviceUUID": "546dd15cb7113bf424892acf7e24c1e92ef356e9" - }, - "pb-IF4AU2MlLQ==": { - "display_string": [ - "\ue030Android61099795" - ], - "profiles": [], - "name": "\ue030Android61099795", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-09 15:41:05", - "registerOn": 1670231947.4806788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231947.4806793, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231947.4806871, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231947.4806879, - "lastIP": "azo~{n~va~yk", - "deviceUUID": "3323e73f0e4215e8ba276cbb5329a84fd3c0fbab" - }, - "pb-IF4qVEsdVQ==": { - "display_string": [ - "\ue063FreakyArac" - ], - "profiles": [], - "name": "\ue063FreakyArac", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-30 10:46:12", - "registerOn": 1670231956.4936595, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231956.49366, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231956.4936674, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231956.493668, - "lastIP": "awj~}kba`~~kg", - "deviceUUID": "9fe67bb9f218160ed3e553457297526bfcec6a21" - }, - "pb-IF4xU2I9AQ==": { - "display_string": [ - "\ue020Jafarsadiqu369", - "\ue030Android48424246" - ], - "profiles": [], - "name": "\ue020Jafarsadiqu369", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-08 14:09:07", - "registerOn": 1670231962.4716892, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231962.47169, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231962.4716992, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231962.4717002, - "lastIP": "azo~{n~~hgaja~", - "deviceUUID": "888501e43582b23844ca42842630113f077a4836" - }, - "pb-IF40UhVdVA==": { - "display_string": [ - "\ue063Deepak11De", - "\ue030Android47282468" - ], - "profiles": [], - "name": "\ue063Deepak11De", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-26 18:43:42", - "registerOn": 1670232172.3092148, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232172.3092153, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670322800.3348196, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322128.3098495, - "lastIP": "azo~zi~~abaig}", - "deviceUUID": "2d110f888b9c6f25e7c6c6a8749fadb88ab0fc02", - "cMsgCount": 0, - "lastMsgTime": 1670322800.3347573, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5QU04IXA==": { - "display_string": [ - "\ue030Android63833589" - ], - "profiles": [], - "name": "\ue030Android63833589", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 15:40:22", - "registerOn": 1670232299.9887512, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232299.988752, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232299.9887598, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232299.988761, - "lastIP": "b\u007fk~~adaafaie}", - "deviceUUID": "cc6729cd48dbaa8518fdbe9773b1da1b5db10d8e" - }, - "pb-JiNJARFdU0tCWFtDGEFVUVZLFUFbQlBH": { - "display_string": [ - "\ue020kannadapora" - ], - "profiles": [], - "name": "\ue020kannadapora", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-17 12:14:52", - "registerOn": 1670232351.0239007, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232351.0239012, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232351.0239096, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232351.0239108, - "lastIP": "azo~zh~yn~yk", - "deviceUUID": "120cdf633025fb510cdbec94ad24ac7ae954f149" - }, - "pb-IF4WVWgAEQ==": { - "display_string": [ - "\ue030Android47133090", - "\ue030Android48008737" - ], - "profiles": [], - "name": "\ue030Android47133090", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-31 16:35:33", - "registerOn": 1670232532.4790263, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232532.479027, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232532.479035, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232532.4790359, - "lastIP": "d}va\u007fm~~o`ao", - "deviceUUID": "50c60444043f819ee0cebbe1b760f052952a7c09" - }, - "pb-IF5SUkwMAg==": { - "display_string": [ - "\ue063RAGExLUINO", - "\ue030Android32286970" - ], - "profiles": [], - "name": "\ue063RAGExLUINO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-22 11:19:14", - "registerOn": 1670232565.737403, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232565.7374034, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315581.000924, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315581.0009255, - "lastIP": "dvvcyva\u007fm~~kc", - "deviceUUID": "540b5d7a29b251a9b29ecf49aacbf1ecafaaf618" - }, - "pb-IF4dU0xeEg==": { - "display_string": [ - "\ue063GreasyTrad" - ], - "profiles": [], - "name": "\ue020GreasyTrader56", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 13:26:32", - "registerOn": 1670232575.7362576, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232575.736258, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295991.2133746, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670299774.856268, - "lastIP": "awl~}j~y`~{k", - "deviceUUID": "316fd49e31dcf8ae2c73c39196bb81f875b8af94" - }, - "pb-IF4CVEMENw==": { - "display_string": [ - "\ue063MMHQ17" - ], - "profiles": [], - "name": "\ue063MMHQ17", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-14 12:53:46", - "registerOn": 1670232614.8934724, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232614.893473, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232614.8934844, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232614.8934853, - "lastIP": "awk~~oaaiaxva|", - "deviceUUID": "0161212ee288be8904751fe45194dafae3e91e8f" - }, - "pb-IF4BVWISAA==": { - "display_string": [ - "\ue020CapitalisticHeaven18" - ], - "profiles": [], - "name": "\ue020CapitalisticHeaven18", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-20 19:45:21", - "registerOn": 1670232730.2588408, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232730.2588413, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232730.2588499, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232730.2588506, - "lastIP": "aakhaih}va}m", - "deviceUUID": "36de0ba4f3fa18a835069f50f13f280e513e7527" - }, - "pb-IF4dVGU7Cw==": { - "display_string": [ - "\ue063marimol870", - "\ue030Android37966151" - ], - "profiles": [], - "name": "\ue063marimol870", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-08 19:37:42", - "registerOn": 1670232787.491768, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232787.4917684, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232787.4917767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232787.491778, - "lastIP": "dvva{`~~miaihx", - "deviceUUID": "1d45639efd616bced809e0a5f732f0a64885a9f5" - }, - "pb-JiNJARBZXENAX1tGFE5TUVNBEkFZRVJH": { - "display_string": [ - "\ue063Hackermemy", - "\ue030Android7331632" - ], - "profiles": [], - "name": "\ue063Hackermemy", - "isBan": false, - "isMuted": false, - "accountAge": "2016-10-17 17:53:02", - "registerOn": 1670232811.8246622, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232811.824663, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232811.824671, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232811.8246717, - "lastIP": "azo~{l~~oeajc\u007f", - "deviceUUID": "4a8e0db520f8c4343259a372627aedb7643f4240" - }, - "pb-IF4lVxkZUQ==": { - "display_string": [ - "\ue063hothareesh", - "\ue030Android27426054" - ], - "profiles": [], - "name": "\ue020hothareesh100", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-06 19:29:13", - "registerOn": 1670232814.937801, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232814.9378011, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670304332.1959348, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670304522.4524214, - "lastIP": "a\u007fn~}heaiawvaw`", - "deviceUUID": "21070610f22597cd241179ec831a3f4f6f2174f2", - "cMsgCount": 0, - "lastMsgTime": 1670304332.1958427, - "lastMsg": "Riya noobdaaa", - "cSameMsg": 0 - }, - "pb-IF4DU3MnLg==": { - "display_string": [ - "\ue020nonstopunstoble" - ], - "profiles": [], - "name": "\ue020nonstopunstoble", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 16:44:46", - "registerOn": 1670232842.6894054, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232842.689406, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232842.6894143, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232842.689415, - "lastIP": "a\u007fk~}hdaiavvi|", - "deviceUUID": "584fbb1fa82c6aea3da298684c427bdc72168d30" - }, - "pb-IF5dU2IpIg==": { - "display_string": [ - "\ue030Android60843943" - ], - "profiles": [], - "name": "\ue030Android60843943", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-30 10:51:00", - "registerOn": 1670232924.9661102, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232924.966111, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232924.9661202, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670232974.8136418, - "lastIP": "a}j~zl~}haaah", - "deviceUUID": "19a1fd621f0b2bf3b67425b434571cfc2db9e785" - }, - "pb-IF4vUkUOXA==": { - "display_string": [ - "\ue020Asrofi143", - "\ue030Android57950775" - ], - "profiles": [], - "name": "\ue020Asrofi143", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-02 11:46:41", - "registerOn": 1670233027.4030156, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670233027.403016, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670233027.4030247, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670233027.4030254, - "lastIP": "b\u007fk~x`~~iiaic\u007f", - "deviceUUID": "474213b702bf837418cbf7faba5bc678fa2a6bb2" - }, - "pb-JiNJARBeXEtHWlZEFkBXXVJAF0JZQ1hG": { - "display_string": [ - "\ue063BalajiStar", - "\ue030Android6370317" - ], - "profiles": [], - "name": "\ue063BalajiStar", - "isBan": false, - "isMuted": false, - "accountAge": "2016-09-04 12:33:39", - "registerOn": 1670233336.4193757, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670233336.4193764, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670233336.4193847, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670233336.419386, - "lastIP": "a~h~}jdaaeaje", - "deviceUUID": "6cf109de66417ef6bf59abd01631a26488416538" - }, - "pb-IF5TU1EZJg==": { - "display_string": [ - "\ue063SneakyCyli" - ], - "profiles": [], - "name": "\ue063SneakyCyli", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 18:28:40", - "registerOn": 1670233692.9072526, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670233692.9072533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670233692.9072618, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670233692.907263, - "lastIP": "a|a~~keajd~vb{", - "deviceUUID": "76c972299e3339d7acc74cbe0de21bc585d46b03" - }, - "pb-IF5XVEI_Kg==": { - "display_string": [ - "\ue063Genos909" - ], - "profiles": [], - "name": "\ue063Genos909", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-21 15:32:41", - "registerOn": 1670233766.9479449, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670233766.947945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670233766.9479523, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670233766.9479535, - "lastIP": "a\u007fn~~abakfajaw", - "deviceUUID": "9becef1c66dc1d720ac5e717c4dfc2a8fa59640b", - "cMsgCount": 0, - "lastMsgTime": 1670234566.625439, - "lastMsg": "bye", - "cSameMsg": 0 - }, - "pb-IF4sUhk4JA==": { - "display_string": [ - "\ue020MistakenNinja57588", - "\ue063UselessGuy", - "\ue030Android47506985", - "\ue030Android54715214" - ], - "profiles": [], - "name": "\ue063UselessGuy", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-18 13:29:29", - "registerOn": 1670233970.7107036, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670233970.7107043, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330435.991491, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670332183.576174, - "lastIP": "a\u007fk~~`aajbyva|h", - "deviceUUID": "8a637db1124ccf92bee0f3345f362f060d71afc5", - "cMsgCount": 0, - "lastMsgTime": 1670330722.9647627, - "lastMsg": "lag", - "cSameMsg": 0 - }, - "pb-IF4sU2kaLg==": { - "display_string": [ - "\ue063JauntyJour" - ], - "profiles": [], - "name": "\ue063JauntyJour", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-05 18:18:45", - "registerOn": 1670234074.3004742, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234074.3004751, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234074.3004847, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234074.3004854, - "lastIP": "awj~ya~~jfaic", - "deviceUUID": "e75309a808347eeaefab4a2c953f36377ac2c203" - }, - "pb-IF4qUhZcEA==": { - "display_string": [ - "\ue063AssortedSy" - ], - "profiles": [], - "name": "\ue063AssortedSy", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-30 08:41:53", - "registerOn": 1670234192.612451, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234192.6124518, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234192.6124678, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670243669.3451233, - "lastIP": "a|n~~mhai~|m", - "deviceUUID": "304e094248ca9109b8068e62ade737cbcaa43b98", - "cMsgCount": 0, - "lastMsgTime": 1670244145.8924348, - "lastMsg": "lick my balls", - "cSameMsg": 0 - }, - "pb-IF4GU1AiNw==": { - "display_string": [ - "\ue063ArableRail" - ], - "profiles": [], - "name": "\ue063ArableRail", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 02:08:07", - "registerOn": 1670234202.9001796, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234202.9001803, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234202.9001892, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234202.90019, - "lastIP": "azo~|m~{k~wk", - "deviceUUID": "b0a02c1298b195db2882e779f825fbc15b2c3387" - }, - "pb-IF4nUhQNAw==": { - "display_string": [ - "\ue020Dragonkozhi", - "\ue030Android46699176" - ], - "profiles": [], - "name": "\ue020Dragonkozhi", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-22 22:04:25", - "registerOn": 1670234242.7888577, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234242.7888587, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234242.7888684, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234242.7888694, - "lastIP": "a\u007fn~}hfaja{vawm", - "deviceUUID": "ae868456774656cf785b5122781b014518715be9" - }, - "pb-IF5dU00RPw==": { - "display_string": [ - "\ue020SympatheticPromise22" - ], - "profiles": [], - "name": "\ue020SympatheticPromise22", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 11:09:45", - "registerOn": 1670234258.8802338, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234258.8802342, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234258.8802423, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234258.8802433, - "lastIP": "bxvf~va{va}m", - "deviceUUID": "7a01d8b3a3c2e937a1941673055fd9b6e3961ba0" - }, - "pb-IF5TU1EnLg==": { - "display_string": [ - "\ue063OvertSubje" - ], - "profiles": [], - "name": "\ue063OvertSubje", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 13:41:34", - "registerOn": 1670234341.1950166, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234341.195017, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234341.1950245, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234341.1950252, - "lastIP": "azo~{a~}lcajaz", - "deviceUUID": "c04fd3b3117015d5805929f760c462aa173b4aa6" - }, - "pb-IF4xU04eUw==": { - "display_string": [ - "\ue063UncheckedF", - "\ue030Android63163881" - ], - "profiles": [], - "name": "\ue063UncheckedF", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 14:02:18", - "registerOn": 1670234357.1799545, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234357.179955, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261586.0848308, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261586.0848317, - "lastIP": "azo~|j~~afajcv", - "deviceUUID": "fe67a3e8127ff9b9110a971159e051d17f7329dc" - }, - "pb-IF4uVU4PKQ==": { - "display_string": [ - "\ue020AWMkingVB" - ], - "profiles": [], - "name": "\ue020AWMkingVB", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-04 08:49:29", - "registerOn": 1670234361.2587607, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234361.2587612, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316402.982529, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316402.9825308, - "lastIP": "a\u007fn~}j`aidzvb\u007fm", - "deviceUUID": "\u0015\u0003\u000bQX\u0015V\u000fT\u0002\u0015\u0007Y\u0003WLW\\VYDPYSXF" - }, - "pb-IF4cU00cCQ==": { - "display_string": [ - "\ue063EasyComple" - ], - "profiles": [], - "name": "\ue063EasyComple", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 16:48:04", - "registerOn": 1670234690.8938744, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234690.8938746, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670335003.2324574, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670334950.2500994, - "lastIP": "a\u007fk~wm~vvb\u007fj", - "deviceUUID": "c6935ed0cba45b40db30a2ef1324397ce33e9626", - "cMsgCount": 0, - "lastMsgTime": 1670335579.1368659, - "lastMsg": "we are losing because oir player are offline ", - "cSameMsg": 0 - }, - "pb-IF5UVXUlKQ==": { - "display_string": [ - "\ue063Prevalent6", - "\ue030Android63959074", - "\ue030Android63959349", - "\ue030Android63958717", - "\ue030Android63958731" - ], - "profiles": [], - "name": "\ue063Prevalent6", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-18 15:22:50", - "registerOn": 1670234774.9324722, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234774.9324732, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234774.9324815, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234774.9324827, - "lastIP": "a\u007fn~~agaiayvayi", - "deviceUUID": "da48e42a2ed2caa30161500ba2c122298cc59e97" - }, - "pb-IF4iVWQ_Bg==": { - "display_string": [ - "\ue020IpnRagul752" - ], - "profiles": [], - "name": "\ue020IpnRagul752", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-29 21:52:02", - "registerOn": 1670235012.8449953, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235012.8449957, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336016.0226274, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336016.0226288, - "lastIP": "azo~{a~~mfaiez", - "deviceUUID": "4db0b57b5ad7b1b05bd1794f41ff7dc92e916793" - }, - "pb-IF4hDRld": { - "display_string": [ - "\ue020SubmissiveRunner2674", - "\ue030Android22951133" - ], - "profiles": [], - "name": "\ue020SubmissiveRunner2674", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-14 12:15:57", - "registerOn": 1670235155.3033073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235155.303308, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235155.3033173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670235155.3033183, - "lastIP": "bxvf|vezvcv", - "deviceUUID": "3bf5795d4a2165a83642645c5b64290930730723" - }, - "pb-IF4HU0cMAw==": { - "display_string": [ - "\ue020iQninjakilaryashyash" - ], - "profiles": [], - "name": "\ue020iQninjakilaryashyash", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-17 20:46:25", - "registerOn": 1670235212.5736802, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235212.5736809, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235212.5736895, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670235212.5736902, - "lastIP": "azo~|`~}kham`", - "deviceUUID": "bd0054a8422231478b2af7cb5c6b5475cfd91d37" - }, - "pb-IF4hU0oSFw==": { - "display_string": [ - "\ue063Preventab2" - ], - "profiles": [], - "name": "\ue063Preventab2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 09:52:34", - "registerOn": 1670235231.6770694, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235231.67707, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329464.3542664, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670335205.3804848, - "lastIP": "a\u007fn~}ifajdvvb~o", - "deviceUUID": "94ca35ce05e84c3d65e04a6d37510b561ca78e00" - }, - "pb-IF5SU1EHPw==": { - "display_string": [ - "\ue030Android63989539" - ], - "profiles": [], - "name": "\ue030Android63989539", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 15:48:42", - "registerOn": 1670235559.9395788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235559.9395795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235559.9395883, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670236656.5211272, - "lastIP": "b}k~~ohaj`vvb\u007fo", - "deviceUUID": "ad542397f4b0d89c6fb7139d139e36ccd1777333" - }, - "pb-IF4UU0hfDQ==": { - "display_string": [ - "\ue020MonoCaprice47" - ], - "profiles": [], - "name": "\ue020MonoCaprice47", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 12:16:56", - "registerOn": 1670235815.705764, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235815.7057648, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235815.7057729, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670235815.7057736, - "lastIP": "azj~zo~~agaja~", - "deviceUUID": "a234e83fc5f176fbc15b92464be2bc69d223c62a" - }, - "pb-IF4qU00cHA==": { - "display_string": [ - "\ue030Android63904390" - ], - "profiles": [], - "name": "\ue030Android63904390", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 01:19:17", - "registerOn": 1670236202.318054, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236202.3180544, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236202.318063, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670238455.452045, - "lastIP": "dvvcyvb|k~}lb", - "deviceUUID": "c171afd26514f79cf389a37613dc2ad1d6f7a295" - }, - "pb-IF4NVWQzBg==": { - "display_string": [ - "\ue063Imaginabl8", - "\ue030Android47364094" - ], - "profiles": [], - "name": "\ue063Imaginabl8", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-03 19:39:08", - "registerOn": 1670236240.1274066, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236240.1274073, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332726.5356693, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332726.5356708, - "lastIP": "azo~|k~~heaigz", - "deviceUUID": "97937c4dbf0ff0f0d4572a3ad7086f746366ca83" - }, - "pb-IF4PI1Q7": { - "display_string": [ - "\ue020GeekyAardvark72483", - "\ue030Android41686991" - ], - "profiles": [], - "name": "\ue020GeekyAardvark72483", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-21 10:27:58", - "registerOn": 1670236318.4871345, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236318.487135, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236318.4871445, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236318.4871454, - "lastIP": "dvvc{vb~o~~`g", - "deviceUUID": "d3b799a9a81da4a861b3fe166ad469acc72c089b" - }, - "pb-IF4tU04mMg==": { - "display_string": [ - "\ue020NonOp43" - ], - "profiles": [], - "name": "\ue020NonOp43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 11:37:50", - "registerOn": 1670236339.502523, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236339.5025232, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236339.5025332, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236339.502534, - "lastIP": "f~vi\u007fvc}vb~o", - "deviceUUID": "cf0c8f5339e85f589f66274676c45eaafc5a451e" - }, - "pb-IF4-U04OIw==": { - "display_string": [ - "\ue020KimchiWawa2769" - ], - "profiles": [], - "name": "\ue020KimchiWawa2769", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 17:32:47", - "registerOn": 1670236464.1042817, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236464.1042821, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236464.1042907, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236464.104292, - "lastIP": "f~vfajczva{m", - "deviceUUID": "38672c47764a1a4c30fd1659d37dee5911977ea8", - "cMsgCount": 0, - "lastMsgTime": 1670236611.6556265, - "lastMsg": "Im lagg", - "cSameMsg": 0 - }, - "pb-IF42VW5aNA==": { - "display_string": [ - "\ue020AbjectLimb21", - "\ue030Android47379546" - ], - "profiles": [], - "name": "\ue030Android47379546", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-13 12:07:08", - "registerOn": 1670236486.1613517, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236486.1613522, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236486.16136, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670244839.462826, - "lastIP": "dvvc{vb{j~}li", - "deviceUUID": "49554461391413791e81a2011f0e0a23232a4925", - "cMsgCount": 0, - "lastMsgTime": 1670237148.3267462, - "lastMsg": "no", - "cSameMsg": 0 - }, - "pb-IF5WU20CLA==": { - "display_string": [ - "\ue063IdyllicTri" - ], - "profiles": [], - "name": "\ue063IdyllicTri", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 01:33:05", - "registerOn": 1670236617.6280942, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236617.628095, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236617.6281025, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236617.6281037, - "lastIP": "a\u007fj~ym~{vax`", - "deviceUUID": "f658f95a80e699ee6fa7352ff02ded6caa4a82b2" - }, - "pb-IF4tU0cOBg==": { - "display_string": [ - "\ue020sunil678p" - ], - "profiles": [], - "name": "\ue020sunil678p", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 12:19:42", - "registerOn": 1670236686.0805795, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236686.08058, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236686.0805883, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236686.0805893, - "lastIP": "azj~z`~|m~~jb", - "deviceUUID": "268b5102ca182ff4a956fc9ec1b961a66bb7f612" - }, - "pb-IF4KUnEmVg==": { - "display_string": [ - "\ue020DowncastCruise28" - ], - "profiles": [], - "name": "\ue020DowncastCruise28", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-04 09:57:41", - "registerOn": 1670236767.6040006, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236767.604001, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670254334.6349177, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670255998.405253, - "lastIP": "azo~{i~}leajd", - "deviceUUID": "\u0015Y\u000bY\u0003\u0016\u0007^U\u0005FVYS\u0005\u0016\u0007\\RPBVUUW", - "cMsgCount": 0, - "lastMsgTime": 1670254355.4051914, - "lastMsg": "fight", - "cSameMsg": 0 - }, - "pb-IF4xU0o7Ug==": { - "display_string": [ - "\ue020VvFightVv", - "\ue020SecondarySuspense43" - ], - "profiles": [], - "name": "\ue020VvFightVv", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 22:50:19", - "registerOn": 1670236826.8973343, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236826.8973348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670294905.4032302, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670295854.6780355, - "lastIP": "hzva{h~xva\u007f`", - "deviceUUID": "\u0015UXRWL\u0007\\YS\u0011Y\u000ePX\u0016\u0007\\YWDV]PUAY" - }, - "pb-IF4FU2wEUQ==": { - "display_string": [ - "\ue020GrossestHothead39", - "\ue030Android60313961" - ], - "profiles": [], - "name": "\ue020GrossestHothead39", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-14 10:47:36", - "registerOn": 1670236938.9873567, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236938.9873571, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236938.987366, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236938.987367, - "lastIP": "azo~zi~~aeaiax", - "deviceUUID": "\u0015YXW\u0004C\u0002]\u0003X\u0011Q\u000f\u0005X\u0015\u0003\\VXFP]VVES" - }, - "pb-IF4QU0ofBg==": { - "display_string": [ - "\ue030Android63800944" - ], - "profiles": [], - "name": "\ue030Android63800944", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 10:26:44", - "registerOn": 1670237026.2896433, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670237026.289644, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670237026.2896533, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670237026.2896543, - "lastIP": "a\u007fk~|`~}heaicz", - "deviceUUID": "b8c55e7b68fa4c196f17b0076e4fc9c1e716b4aa" - }, - "pb-IF4MU04zVw==": { - "display_string": [ - "\ue020noobC\u00f9i", - "\ue020BaBByDoGG", - "\ue063BoilingLam", - "\ue030Android60239451" - ], - "profiles": [], - "name": "\ue030Android60239451", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 13:26:46", - "registerOn": 1670237044.3041856, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670237044.304186, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670237044.304193, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670237044.3041937, - "lastIP": "a{vavi~}khai`", - "deviceUUID": "878198ed9e6a85430533cca240979720ea6c44de" - }, - "pb-IF4mU0MaMw==": { - "display_string": [ - "\ue020GildedCarp34577" - ], - "profiles": [], - "name": "\ue020GildedCarp34577", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-26 14:54:58", - "registerOn": 1670237124.9778595, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670237124.9778602, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670237124.9778686, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670237124.9778695, - "lastIP": "d}va\u007f`~~afa`c", - "deviceUUID": "04307182310890696a96730e12972d1abc5e9f24" - }, - "pb-IF4rU1AuNQ==": { - "display_string": [ - "\ue030Android63988326" - ], - "profiles": [], - "name": "\ue030Android63988326", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 09:29:46", - "registerOn": 1670237178.8360128, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670237178.8360133, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670237178.8360214, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670242887.0365496, - "lastIP": "b}k~~`fajb}vb}l", - "deviceUUID": "2cdfeb1dcc28a1c5fd51ac3fa2701cebc83a4036" - }, - "pb-IF4SUhJZPw==": { - "display_string": [ - "\ue020UtilitarianDose42", - "\ue063UndamagedM", - "\ue020ConfusedExcitement48", - "\ue030Android55601587", - "\ue030Android53857852" - ], - "profiles": [], - "name": "\ue030Android55601587", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-12 00:18:34", - "registerOn": 1670238541.2583952, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670238541.2583957, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329693.158495, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329693.158522, - "lastIP": "az`~yj~}m~~n`", - "deviceUUID": "\u0015\u0002_\u0005\u0004G\u0005YU" - }, - "pb-IF5XU1IiAw==": { - "display_string": [ - "\ue020wardrago666" - ], - "profiles": [], - "name": "\ue020wardrago666", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 16:40:29", - "registerOn": 1670238700.8088279, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670238700.8088286, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670238700.8088367, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670238700.8088377, - "lastIP": "b}k~}jhajb{vg~", - "deviceUUID": "065b8e8159b9b343a9ced6977900de8a0ba3e4df" - }, - "pb-IF4RU1AhUg==": { - "display_string": [ - "\ue063OutrightRo" - ], - "profiles": [], - "name": "\ue063OutrightRo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 11:06:41", - "registerOn": 1670238708.887067, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670238708.8870676, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670238708.8870754, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670238708.8870761, - "lastIP": "azo~zi~za~yh", - "deviceUUID": "e9fe44f966e904574f6c6f75d2fa08f3efce1826" - }, - "pb-IF5cVEMTVA==": { - "display_string": [ - "\ue063kartikisco", - "\ue030Android46496233" - ], - "profiles": [], - "name": "\ue063kartikisco", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-29 21:18:29", - "registerOn": 1670238809.474966, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670238809.4749665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670238809.4749749, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670238809.4749758, - "lastIP": "a\u007fk~~kgaadaid|", - "deviceUUID": "23b185f338c8173bee0b6d453d7fd3c8aa19fd3a" - }, - "pb-IF4xVEJcUA==": { - "display_string": [ - "\ue020Darshan152005" - ], - "profiles": [], - "name": "\ue020Darshan152005", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-02 17:45:46", - "registerOn": 1670238860.6113675, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670238860.611368, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670238860.6113772, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670238860.611378, - "lastIP": "a}j~~oaajbajby", - "deviceUUID": "aa0126a57a3bcfdd5052880f735645c0a377d161" - }, - "pb-IF4nU089Jw==": { - "display_string": [ - "\ue020AntisocialDisorder02" - ], - "profiles": [], - "name": "\ue020AntisocialDisorder02", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 22:06:52", - "registerOn": 1670239048.0979817, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239048.0979822, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670239048.0979898, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670241264.5604365, - "lastIP": "a~h~}jgajhalb", - "deviceUUID": "455abeadb330fc3ecd37b35bd714d48484b0e25e" - }, - "pb-IF4SVUYgUg==": { - "display_string": [ - "\ue063ProperExti" - ], - "profiles": [], - "name": "\ue063ProperExti", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-20 17:03:18", - "registerOn": 1670239258.0657077, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239258.0657086, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670239258.065717, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670239258.0657177, - "lastIP": "azo~{`~xj~~ig", - "deviceUUID": "55652ffbfd31065e34c06710016dfdd45fc0816b" - }, - "pb-IF48UlAAFA==": { - "display_string": [ - "\ue020JocularVigor9" - ], - "profiles": [], - "name": "\ue020JocularVigor9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-17 19:38:55", - "registerOn": 1670239343.3047156, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239343.304716, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670240326.5726473, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670239583.7933888, - "lastIP": "azj~zo~}ihak", - "deviceUUID": "605d81fa49723b7ff58b516f1ba6d2d5a70adec3", - "cMsgCount": 0, - "lastMsgTime": 1670240326.5723119, - "lastMsg": "Jay Shree Ram", - "cSameMsg": 0 - }, - "pb-IF4xU08zFQ==": { - "display_string": [ - "\ue063BelovedEmi" - ], - "profiles": [], - "name": "\ue063BelovedEmi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 16:39:02", - "registerOn": 1670239872.1218042, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239872.121805, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670239872.121814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670239872.121815, - "lastIP": "dvva{l~~hcaig~", - "deviceUUID": "2d9f4505d9d092cc0f40a4753e6466845b633f1d" - }, - "pb-IF4TU08kKQ==": { - "display_string": [ - "\ue063PYGREED" - ], - "profiles": [], - "name": "\ue020PYGREED", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 16:25:27", - "registerOn": 1670239874.1421275, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239874.1421282, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316237.3683982, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316237.3683996, - "lastIP": "dvva{l~|vaxj", - "deviceUUID": "aa039d9112534ea4fc879a81cfd6c76a4d70c700" - }, - "pb-IF4OVU4aUw==": { - "display_string": [ - "\ue020TheoreticPit28", - "\ue030Android63496708" - ], - "profiles": [], - "name": "\ue020TheoreticPit28", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-04 12:48:28", - "registerOn": 1670239912.2592387, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239912.2592392, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254120.21547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254120.2154713, - "lastIP": "dxva~vb{a~za", - "deviceUUID": "449105d0d850748e54202bfc5b7057e1cdb0a7b6" - }, - "pb-IF4FU0cKFQ==": { - "display_string": [ - "\ue063Chitranshp" - ], - "profiles": [], - "name": "\ue063Chitranshp", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-18 20:50:32", - "registerOn": 1670239964.4407094, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239964.4407098, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670239964.4407184, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670239964.4407194, - "lastIP": "dxvazva|va{m", - "deviceUUID": "83def38f86f641bcea9a98c2c9986127cdd6dc48" - }, - "pb-IF5UU09YMg==": { - "display_string": [ - "\ue063Niral" - ], - "profiles": [], - "name": "\ue063Niral", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 14:53:11", - "registerOn": 1670240221.7544208, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240221.7544212, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240221.7544305, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670245547.2308533, - "lastIP": "a\u007fn~~acajdyvavo", - "deviceUUID": "c0894bd95c1edfe41435513d90aa86c885bd7a02" - }, - "pb-IF4xU3EoKg==": { - "display_string": [ - "\ue063ImplicitWa" - ], - "profiles": [], - "name": "\ue063ImplicitWa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 20:00:47", - "registerOn": 1670240330.189063, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240330.189064, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333886.0047047, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333886.004706, - "lastIP": "bxvgzvb\u007fn~}i", - "deviceUUID": "622abc22427515681d4999f4a989d660bdf66b7d" - }, - "pb-IF4sU09fVw==": { - "display_string": [ - "\ue063RyoutaMina" - ], - "profiles": [], - "name": "\ue063RyoutaMina", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 15:49:42", - "registerOn": 1670240340.2109647, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240340.210965, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240340.2109756, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670240340.2109766, - "lastIP": "dvva{m~}kcai", - "deviceUUID": "e4b693ca509bd08d996e5e234401270a71c2b08d" - }, - "pb-IF5QU0cfHA==": { - "display_string": [ - "\ue020R\u016a\u016aA\u016a\u016aJ" - ], - "profiles": [], - "name": "\ue020R\u016a\u016aA\u016a\u016aJ", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 17:18:06", - "registerOn": 1670240536.169932, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240536.1699324, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240536.1699417, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670240536.1699426, - "lastIP": "a}j~~naaihxve\u007f", - "deviceUUID": "14324d541ad2d13ddf0a2a6efcea81c863ce78a8" - }, - "pb-IF4cU0haIw==": { - "display_string": [ - "\ue030Android63695613" - ], - "profiles": [], - "name": "\ue030Android63695613", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 10:23:09", - "registerOn": 1670240553.2885947, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240553.2885952, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240553.2886045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670240553.2886055, - "lastIP": "a\u007fn~}i`aig\u007fvcw", - "deviceUUID": "d38e1d689029b575879cb17917ea9000d7eff65f" - }, - "pb-IF4-U004UQ==": { - "display_string": [ - "\ue020MaleYard54" - ], - "profiles": [], - "name": "\ue020MaleYard54", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 18:45:59", - "registerOn": 1670240584.080288, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240584.080289, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240584.0802975, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670240639.9311352, - "lastIP": "a~m~~ndaacaihw", - "deviceUUID": "29a206a58e0985133fbd54730eea0b5f07add29b" - }, - "pb-IF4HU00IVQ==": { - "display_string": [ - "\ue020DescriptiveBind19" - ], - "profiles": [], - "name": "\ue020DescriptiveBind19", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 18:10:42", - "registerOn": 1670240709.5818062, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240709.581807, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335127.1030688, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335127.1030703, - "lastIP": "azo~|a~~abaiev", - "deviceUUID": "d669d18ccd3aa066d714b5f57b79945a7c11ded1" - }, - "pb-IF4nUmhfKA==": { - "display_string": [ - "\ue020SystemicAlbum16" - ], - "profiles": [], - "name": "\ue020SystemicAlbum16", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-21 23:06:22", - "registerOn": 1670241042.9810777, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241042.9810784, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241042.981088, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241042.981089, - "lastIP": "dzvbzi~~m~~j", - "deviceUUID": "214e63d0ab077bfb487eceda24bfa801afe228e5" - }, - "pb-IF4DU01YIA==": { - "display_string": [ - "\ue030PC607883" - ], - "profiles": [], - "name": "\ue030PC607883", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 16:27:37", - "registerOn": 1670241094.1723506, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241094.172351, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259019.3771942, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670259778.1752436, - "lastIP": "azo~zi~|vaxl", - "deviceUUID": "54b376588aefe7fc40893eeb6f9c39d5fb227bee" - }, - "pb-IF4jU0ckCg==": { - "display_string": [ - "\ue030Android63647111" - ], - "profiles": [], - "name": "\ue030Android63647111", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-12 11:37:36", - "registerOn": 1670241097.1638308, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241097.1638312, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241097.163841, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241097.163842, - "lastIP": "azo~|j~}liaii~", - "deviceUUID": "\u0015W\tY\u0007@\u0005XX" - }, - "pb-IF4rUkMeIg==": { - "display_string": [ - "\ue063NotableDi2" - ], - "profiles": [], - "name": "\ue063NotableDi2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-26 20:42:07", - "registerOn": 1670241326.166427, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241326.1664274, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241326.1664352, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241326.1664362, - "lastIP": "azo~{l~~adaic\u007f", - "deviceUUID": "578b9d58773f4004e74777a5cc5d9fcf415360be" - }, - "pb-IF5SNE4G": { - "display_string": [ - "\ue020KAIPULLA1111", - "\ue030Android20527637" - ], - "profiles": [], - "name": "\ue020KAIPULLA1111", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-12 19:23:48", - "registerOn": 1670241378.3315203, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241378.3315208, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241378.3315287, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241378.33153, - "lastIP": "azo~zi~~aiaicx", - "deviceUUID": "0d794e215c54de11b6d82aad5e657587ea066e96" - }, - "pb-IF4NU0YjJw==": { - "display_string": [ - "\ue030Android63657181" - ], - "profiles": [], - "name": "\ue030Android63657181", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-13 20:44:53", - "registerOn": 1670241414.5708404, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241414.5708408, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241414.570848, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241414.570849, - "lastIP": "a\u007fk~~haaia~vcx", - "deviceUUID": "3d18ff4455f1702ae1231b673cd82d72ce3b11aa" - }, - "pb-IF4dCnou": { - "display_string": [ - "\ue063RohanK" - ], - "profiles": [], - "name": "\ue063RohanK", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-21 16:57:49", - "registerOn": 1670241484.7061267, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241484.7061272, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320198.1075735, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670328625.4222271, - "lastIP": "azo~{`~~nfaidv", - "deviceUUID": "1f02f65342285a5bef6c7f453fa6010cdfc56c6b", - "cMsgCount": 0, - "lastMsgTime": 1670330423.3741438, - "lastMsg": "should have kept mines", - "cSameMsg": 0 - }, - "pb-IF4VU0taAA==": { - "display_string": [ - "\ue063FalseConte", - "\ue030Android63802649", - "\ue030Android63802632", - "\ue030Android38178062", - "\ue030Android63802519" - ], - "profiles": [], - "name": "\ue063FalseConte", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 10:15:00", - "registerOn": 1670241572.0944972, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241572.0944974, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241572.0945053, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241572.094506, - "lastIP": "azo~{l~~laaji", - "deviceUUID": "77c046a2d83abc276494b603097307327e1d3527" - }, - "pb-IF4VUhAKEg==": { - "display_string": [ - "\ue020FinestCurtain41", - "\ue063Avishek", - "\ue063InhumaneDa", - "\ue030Android63827191", - "\ue030Android63827276" - ], - "profiles": [], - "name": "\ue063InhumaneDa", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-06 11:44:58", - "registerOn": 1670241577.0625904, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241577.0625913, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259295.3298404, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670259309.3773513, - "lastIP": "dvvcxve|v`", - "deviceUUID": "e9323971ad756911ef0672ac975aa27d9938e255" - }, - "pb-IF5XU08jLA==": { - "display_string": [ - "\ue020itsjustine15" - ], - "profiles": [], - "name": "\ue020itsjustine15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 06:27:28", - "registerOn": 1670241740.605581, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241740.6055815, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328296.3015435, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328296.301545, - "lastIP": "a~h~zl~~`haid{", - "deviceUUID": "1dcaa19eab7a2e169cdd1ca1817839106d7f312c" - }, - "pb-IF5RU1EtMg==": { - "display_string": [ - "\ue063nikitamale" - ], - "profiles": [], - "name": "\ue063nikitamale", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 15:07:52", - "registerOn": 1670241780.8229892, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241780.8229902, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241780.822998, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670241821.689485, - "lastIP": "b}k~}keaie~vb}i", - "deviceUUID": "8cb9c1c51ed2bda50ed0ce9c9ace1f1e01dd2210" - }, - "pb-IF49U08JVw==": { - "display_string": [ - "\ue030Android63983125" - ], - "profiles": [], - "name": "\ue030Android63983125", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 13:37:47", - "registerOn": 1670241858.120165, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241858.1201656, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241858.1201727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241858.1201742, - "lastIP": "b}j~~jgai`\u007fvb\u007fj", - "deviceUUID": "e9a4e3b60ca7693c34713f33ff3c76d2cc42b7bf" - }, - "pb-IF41VUYgLw==": { - "display_string": [ - "\ue020OptimusPrime1517", - "\ue030Android55005911", - "\ue030VR228966" - ], - "profiles": [], - "name": "\ue020OptimusPrime1517", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-19 14:46:44", - "registerOn": 1670241883.2824998, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670244608.374289, - "totaltimeplayer": 0, - "warnCount": 4, - "lastWarned": 1670244608.37278, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241883.2825096, - "lastIP": "a\u007fn~~aeao~~nf", - "deviceUUID": "e119a4b70be6af0d77b49b7a55af08596176ab2b", - "cMsgCount": 0, - "lastMsgTime": 1670244608.372964, - "lastMsg": "Lavdi sai marnar majhyakadun", - "cSameMsg": 0 - }, - "pb-IF4TVWEnIg==": { - "display_string": [ - "\ue063bijodicarp" - ], - "profiles": [], - "name": "\ue063bijodicarp", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-10 10:34:04", - "registerOn": 1670241951.4551165, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241951.455117, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308579.690884, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308579.6908853, - "lastIP": "evvi}vd~vi~", - "deviceUUID": "248ee8d171acc33d75759da6db55fddeb165ce0d" - }, - "pb-IF4HU0IIEQ==": { - "display_string": [ - "\ue020BabyboyBro" - ], - "profiles": [], - "name": "\ue020BabyboyBro", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-17 11:49:12", - "registerOn": 1670242198.595753, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242198.5957534, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242198.595761, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242198.5957623, - "lastIP": "d|vb}l~{k~zj", - "deviceUUID": "5476cece606b2ac33114ea8efaf2f665d2edd824", - "cMsgCount": 0, - "lastMsgTime": 1670242343.3485272, - "lastMsg": "why", - "cSameMsg": 0 - }, - "pb-IF41UxkjMg==": { - "display_string": [ - "\ue030Android60845640" - ], - "profiles": [], - "name": "\ue030Android60845640", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-30 12:43:50", - "registerOn": 1670242447.848656, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670244658.064445, - "totaltimeplayer": 0, - "warnCount": 4, - "lastWarned": 1670244658.0627449, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670244150.0724747, - "lastIP": "a\u007fn~}iaai`|vb\u007fj", - "deviceUUID": "\u0015W\tVVMQ\u000bX\u0004\u0015XTYW\u0011R\\YWBRYXXMT", - "cMsgCount": 0, - "lastMsgTime": 1670244658.0626528, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5VU0UzJg==": { - "display_string": [ - "\ue063dhanushmes" - ], - "profiles": [], - "name": "\ue063dhanushmes", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-21 10:51:52", - "registerOn": 1670242494.84773, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242494.8477304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261786.7980652, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261786.7980664, - "lastIP": "dzva~m~vi~}ib", - "deviceUUID": "8231e183c8813509c0395d1a542c43e471798af9" - }, - "pb-IF40U08BJg==": { - "display_string": [ - "\ue063gianplayz0" - ], - "profiles": [], - "name": "\ue063gianplayz0", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 17:32:56", - "registerOn": 1670242548.031583, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242548.0315838, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242548.0315921, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242548.0315933, - "lastIP": "a\u007fk~~mea`haie\u007f", - "deviceUUID": "f6c59ed500881a17bc2fb4ebc52a34451bd8420c" - }, - "pb-IF41U00RFA==": { - "display_string": [ - "\ue030Android63922851" - ], - "profiles": [], - "name": "\ue030Android63922851", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 19:43:14", - "registerOn": 1670242562.8125694, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242562.8125703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242562.81258, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242562.8125808, - "lastIP": "azo~{a~}hbaifv", - "deviceUUID": "756045cb98c989aa61ac5e1a1260f07b7e56d119" - }, - "pb-IF4jVGoTCg==": { - "display_string": [ - "\ue063NarutoUsum", - "\ue030Android25643383" - ], - "profiles": [], - "name": "\ue063NarutoUsum", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-12 13:53:20", - "registerOn": 1670242568.1757827, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242568.1757834, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670302104.3211315, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670302104.321133, - "lastIP": "a\u007fk~}ibaidyvcy", - "deviceUUID": "ae34473eb16306b256ce80675c45dfe85340d89d" - }, - "pb-IF4pVVEOCA==": { - "display_string": [ - "\ue020\u1d9c\u1d3f\u1d2c\u1dbb\u1d5e\ud835\udd3b\ud835\udd63\ud835\udd52\ud835\udd5c\ud835\udd56\ud835\udd5f" - ], - "profiles": [], - "name": "\ue020\u1d9c\u1d3f\u1d2c\u1dbb\u1d5e\ud835\udd3b\ud835\udd63\ud835\udd52\ud835\udd5c\ud835\udd56\ud835\udd5f", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-17 09:19:31", - "registerOn": 1670242710.7156901, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242710.715691, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242710.7157013, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242710.7157025, - "lastIP": "azo~|m~y`~~jf", - "deviceUUID": "80767a74592447fa70b68a8b2e0ad164a147ce0d" - }, - "pb-IF43VFENFg==": { - "display_string": [ - "\ue020WishyWashyTinge10" - ], - "profiles": [], - "name": "\ue020WishyWashyTinge10", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-28 12:59:53", - "registerOn": 1670242837.191372, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242837.1913726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242837.1913803, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242837.191381, - "lastIP": "a\u007fk~}hfaic{vax`", - "deviceUUID": "7ad2a7ffb4cfbcfd57b9d138a7ccc77daa5141c4" - }, - "pb-IF4UU1AkAw==": { - "display_string": [ - "\ue063ExpensiveM" - ], - "profiles": [], - "name": "\ue063ExpensiveM", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 14:25:42", - "registerOn": 1670243048.9499106, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243048.9499109, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243048.9499197, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243048.9499204, - "lastIP": "a}j~~o`an`aie|", - "deviceUUID": "446c02955fe83399c305241c9ce56e3d1564ae71" - }, - "pb-IF5SUno-Ug==": { - "display_string": [ - "\ue063ihateu234" - ], - "profiles": [], - "name": "\ue063ihateu234", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-05 12:13:24", - "registerOn": 1670243178.5593963, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670244339.7711086, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670329401.4423296, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329091.2817159, - "lastIP": "dxvbvvaym~~jd", - "deviceUUID": "8cdff6729d518be49ee0573acb0cb19b6c5a4aef", - "cMsgCount": 2, - "lastMsgTime": 1670329723.3729773, - "lastMsg": "ha", - "cSameMsg": 0 - }, - "pb-IF4KVVUnJw==": { - "display_string": [ - "\ue020UncouthScenery25" - ], - "profiles": [], - "name": "\ue020UncouthScenery25", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-04 12:14:20", - "registerOn": 1670243187.609319, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243187.6093197, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243187.6093278, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243187.609329, - "lastIP": "a\u007fn~}i`ajbxva{h", - "deviceUUID": "39f230f5709313bac5034e4bc5c429ce8e44fb3c" - }, - "pb-IF4KU09dJg==": { - "display_string": [ - "\ue020FreezingTriangle142" - ], - "profiles": [], - "name": "\ue020FreezingTriangle142", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 21:05:03", - "registerOn": 1670243290.1733103, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243290.173311, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243290.1733193, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243290.1733205, - "lastIP": "a\u007fn~~aeakbala", - "deviceUUID": "d9b12a8cd1d61082c3006a955160103c6b22b562" - }, - "pb-IF4lVWYjIw==": { - "display_string": [ - "\ue020TBHFEVER" - ], - "profiles": [], - "name": "\ue020TBHFEVER", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-12 19:30:30", - "registerOn": 1670243421.817047, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243421.8170474, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243421.817056, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243421.8170571, - "lastIP": "dvvc}vb}n~~ig", - "deviceUUID": "853e561e5b8a8b675609755f1e05b53084f5adb6" - }, - "pb-JiNJARBdXUtFVFxIGUJQVVREFklXRVZH": { - "display_string": [ - "\ue020BasuMachakanura" - ], - "profiles": [], - "name": "\ue020BasuMachakanura", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-04 19:32:10", - "registerOn": 1670243477.0364935, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243477.036494, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255372.063081, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255372.0630825, - "lastIP": "azo~zh~{vav`", - "deviceUUID": "f4743181413fd87e59ecc7338eefd567593df5a0" - }, - "pb-IF4KVWgcBw==": { - "display_string": [ - "\ue020mohammedsafeek2" - ], - "profiles": [], - "name": "\ue020mohammedsafeek2", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-02 11:25:15", - "registerOn": 1670243500.277261, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243500.2772615, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243500.2772706, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243500.2772713, - "lastIP": "a\u007fn~~agaafaiez", - "deviceUUID": "5ee7822213487b483b9966ba9d29c68ec2bd7904" - }, - "pb-IF4CUxVaAw==": { - "display_string": [ - "\ue030Android60437730" - ], - "profiles": [], - "name": "\ue030Android60437730", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-13 11:20:27", - "registerOn": 1670243658.975171, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243658.9751716, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243658.9751792, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243658.9751804, - "lastIP": "a\u007fk~~meambaihy", - "deviceUUID": "362dc9544fc53a57def6aca4a9d3ca680f388ad2" - }, - "pb-IF4JVU8HUA==": { - "display_string": [ - "\ue020CHIP2739" - ], - "profiles": [], - "name": "\ue020CHIP2739", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-09 07:21:13", - "registerOn": 1670243680.7115374, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243680.711538, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243680.7115462, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243680.711547, - "lastIP": "a|i~}jfa`dah", - "deviceUUID": "3bb03eebaca837f771d19d10fb9e72d77737cab0" - }, - "pb-IF4cUlIHFQ==": { - "display_string": [ - "\ue063TusharRawa" - ], - "profiles": [], - "name": "\ue063TusharRawa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-26 20:49:37", - "registerOn": 1670243773.0846174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243773.0846183, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248915.7520661, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248915.7520673, - "lastIP": "dvvcyvaxo~y`", - "deviceUUID": "ef8a71e162c6bb5d73805a164e7dec56eed109bd", - "cMsgCount": 0, - "lastMsgTime": 1670243863.2455108, - "lastMsg": "1", - "cSameMsg": 0 - }, - "pb-IF43U00MHA==": { - "display_string": [ - "\ue063Nayanshiga" - ], - "profiles": [], - "name": "\ue063Nayanshiga", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 13:49:15", - "registerOn": 1670243816.267502, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243816.2675025, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256292.5326142, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256292.5326154, - "lastIP": "a\u007fn~~aeal~~ld", - "deviceUUID": "f06c4c4ff535f09426e084624a458360f8b3b427" - }, - "pb-IF4rVUkdFA==": { - "display_string": [ - "\ue020Giteshpro" - ], - "profiles": [], - "name": "\ue020Giteshpro", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-11 06:45:14", - "registerOn": 1670243839.3325484, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243839.332549, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243839.332558, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243839.3325586, - "lastIP": "azo~|k~}hhaii\u007f", - "deviceUUID": "ddb68cf272e094198e1f30411e5c0ee10b17131a", - "cMsgCount": 0, - "lastMsgTime": 1670243894.6550832, - "lastMsg": "phat sa head", - "cSameMsg": 0 - }, - "pb-IF4oU0YABg==": { - "display_string": [ - "\ue020vps32i" - ], - "profiles": [], - "name": "\ue020vps32i", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 16:16:50", - "registerOn": 1670243923.6127431, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243923.6127436, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243923.612751, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243923.6127522, - "lastIP": "azo~|k~{n~}le", - "deviceUUID": "7a54c5b9901eb59d33300ddf62863df158517520" - }, - "pb-IF4iU04PKA==": { - "display_string": [ - "\ue030Android63956151" - ], - "profiles": [], - "name": "\ue030Android63956151", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 11:33:59", - "registerOn": 1670243959.3693604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243959.369361, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670294420.6970441, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670294420.6970456, - "lastIP": "azj~zo~~adaia~", - "deviceUUID": "e9c88ccb816fc29e8e2062d29ee38cf69a3a81ba", - "cMsgCount": 0, - "lastMsgTime": 1670244090.429839, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFYV0dBVF5JEUFSU1BAGEZZT1lA": { - "display_string": [ - "\ue063mippypoop1" - ], - "profiles": [], - "name": "\ue063mippypoop1", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-16 15:00:48", - "registerOn": 1670244040.9770725, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244040.977073, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316049.6818871, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316049.6818888, - "lastIP": "axm~~ofakbaj`~", - "deviceUUID": "20872e0801eef620a5bb0c32a2e99ecea7052a2d" - }, - "pb-IF4vU0lTUw==": { - "display_string": [ - "\ue020go444vykh" - ], - "profiles": [], - "name": "\ue020go444vykh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 09:09:17", - "registerOn": 1670244146.3773913, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244146.3773918, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247631.180304, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247631.1803052, - "lastIP": "azj~zo~~k`aigw", - "deviceUUID": "099a2b8ebdd1be885607f1e97fdc6e787397267e" - }, - "pb-IF4MVXQdNw==": { - "display_string": [ - "\ue020HipRooster87595", - "\ue030Android53483198" - ], - "profiles": [], - "name": "\ue020HipRooster87595", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-08 19:34:34", - "registerOn": 1670244171.5894706, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244171.5894709, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334273.7985814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334273.798583, - "lastIP": "azo~|`~zvg|", - "deviceUUID": "\u0015Q\b\u0005X\u0012P\\", - "cMsgCount": 0, - "lastMsgTime": 1670245645.0497267, - "lastMsg": "jaldi karo", - "cSameMsg": 0 - }, - "pb-IF4mVW48Ew==": { - "display_string": [ - "\ue030PC297681" - ], - "profiles": [], - "name": "\ue030PC297681", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-16 10:17:12", - "registerOn": 1670244282.8380945, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244282.8380952, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244282.8381028, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244282.8381038, - "lastIP": "bxvixva{k~~hc", - "deviceUUID": "\u0003UYU\u0005MRZ\u0004L\u0012X]TL@U[RL\u0016\u0003\\QLBU\u000bRS@" - }, - "pb-IF5dU1EpMg==": { - "display_string": [ - "\ue020DiagnosticToad55", - "\ue030Android63941047" - ], - "profiles": [], - "name": "\ue020DiagnosticToad55", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 19:35:54", - "registerOn": 1670244492.6692612, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244492.669262, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244492.6692705, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244492.6692712, - "lastIP": "azo~{a~~`caie|", - "deviceUUID": "\u0015\u0005\bST\u0010\u0005^S\u0002@SZY\u0004\u0012Y[YP@X[TS" - }, - "pb-IF4BVEc9Hw==": { - "display_string": [ - "\ue063championof" - ], - "profiles": [], - "name": "\ue063championof", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-10 14:17:58", - "registerOn": 1670244496.6179376, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244496.6179383, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244496.6179485, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670244499.3042765, - "lastIP": "a~l~~kdajeaiix", - "deviceUUID": "e16f3ddd2272d10f1cb1e6a5f702c2d2122ee02e" - }, - "pb-IF43U00nFw==": { - "display_string": [ - "\ue020virubhai2004", - "\ue030Android61899985" - ], - "profiles": [], - "name": "\ue020virubhai2004", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 10:41:21", - "registerOn": 1670244547.7882876, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244547.7882884, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244547.7882965, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244547.7882974, - "lastIP": "a\u007fk~~mgaibvvb|h", - "deviceUUID": "dd5f225c8b6a7fb8d3e574dab97657c17d4abfff" - }, - "pb-IF4zUmFdCQ==": { - "display_string": [ - "\ue030Android54726114" - ], - "profiles": [], - "name": "\ue030Android54726114", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-17 22:18:54", - "registerOn": 1670244582.910993, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244582.9109936, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244582.9110038, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244582.911005, - "lastIP": "dvvcxvb}l~}ld", - "deviceUUID": "233d77242ee2e121329a33c05281408b169a0bc9" - }, - "pb-IF4eUnYfDQ==": { - "display_string": [ - "\ue063DarknexxoY" - ], - "profiles": [], - "name": "\ue063DarknexxoY", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-29 14:50:56", - "registerOn": 1670244684.2722738, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244684.2722743, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244684.2722826, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244684.2722836, - "lastIP": "aakiaoha``", - "deviceUUID": "18e88cd338cd9bbc01a914308c28fe53dfb0643a" - }, - "pb-IF4jU2YsNw==": { - "display_string": [ - "\ue063RemissCon2" - ], - "profiles": [], - "name": "\ue063RemissCon2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-17 08:04:05", - "registerOn": 1670244791.781524, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244791.7815247, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244791.7815332, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244791.7815342, - "lastIP": "axi~}mcaid}vg}", - "deviceUUID": "38f82533292e1b2d5e98e9d0fc9bc017d6e5ab04" - }, - "pb-IF4SU3gHFg==": { - "display_string": [ - "\ue063KookyVeloc" - ], - "profiles": [], - "name": "\ue063KookyVeloc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-31 13:01:04", - "registerOn": 1670244810.6883445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244810.6883454, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307527.693986, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307527.6939874, - "lastIP": "b}k~~`gaiavvavi", - "deviceUUID": "0850315ce740515901beae4901295115cbf8cbde" - }, - "pb-IF4xU2EbKg==": { - "display_string": [ - "\ue020AbhishekAjay744", - "\ue030Android58819906" - ], - "profiles": [], - "name": "\ue020AbhishekAjay744", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-05 23:04:11", - "registerOn": 1670244834.7953062, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244834.795307, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245931.7579398, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670251839.1547794, - "lastIP": "azo~{n~~laaigv", - "deviceUUID": "0b54dae3ad809cd77d26bd78a37b19fbf2cf9c34", - "cMsgCount": 0, - "lastMsgTime": 1670245716.467134, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4qU006Nw==": { - "display_string": [ - "\ue020LyricalWill16" - ], - "profiles": [], - "name": "\ue020LyricalWill16", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 19:59:32", - "registerOn": 1670245036.7073662, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245036.7073667, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245036.7073753, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245036.7073762, - "lastIP": "a\u007fn~}jcaia}vb{`", - "deviceUUID": "6a1194454571f41ac5e1649195f6f66374af9f9a" - }, - "pb-IF4DU0IEJg==": { - "display_string": [ - "\ue063CHAINSAW" - ], - "profiles": [], - "name": "\ue063CHAINSAW", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-18 08:46:35", - "registerOn": 1670245237.3236887, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245237.3236895, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314997.9068925, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670336976.3996308, - "lastIP": "b}k~~ohaja|vaxl", - "deviceUUID": "fa894de18350c769ac7184f54ebec6a2c12ce104", - "cMsgCount": 1, - "lastMsgTime": 1670336343.5780113, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4XU0gINA==": { - "display_string": [ - "\ue063NeuroticFe" - ], - "profiles": [], - "name": "\ue063NeuroticFe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 12:08:36", - "registerOn": 1670245251.4067552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245251.406756, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245251.4067645, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245251.406765, - "lastIP": "axi~xn~}hha`", - "deviceUUID": "5ba8f30c4a81779a2f3c28cc77a01f624490e3e3" - }, - "pb-IF4pUkYMCg==": { - "display_string": [ - "\ue020matin\u0645\u062a\u06cc\u0646\u06f1\u06f1\u06f1" - ], - "profiles": [], - "name": "\ue020matin\u0645\u062a\u06cc\u0646\u06f1\u06f1\u06f1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-04 22:38:07", - "registerOn": 1670245438.228861, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245438.228862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245438.22887, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245438.228871, - "lastIP": "baii\u007fveaoa", - "deviceUUID": "ef3bbfad57cf3b54c1568c14d2c5235eea035a6b" - }, - "pb-IF4sU01YMA==": { - "display_string": [ - "\ue063gInhospita" - ], - "profiles": [], - "name": "\ue063gInhospita", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 12:54:48", - "registerOn": 1670245461.2827165, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245461.2827168, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254383.2225502, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254383.2225513, - "lastIP": "azo~zi~xh~~kg", - "deviceUUID": "7646206bd39ce45504e685befe47159df1f8d399" - }, - "pb-IF4yU2gBDg==": { - "display_string": [ - "\ue030Android61588905" - ], - "profiles": [], - "name": "\ue030Android61588905", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-29 10:01:24", - "registerOn": 1670245480.3847618, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245480.3847623, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245480.3847704, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245480.3847713, - "lastIP": "b}k~}m~yj~~og", - "deviceUUID": "38419a888f73eb5491299e40b26c0c21c52e170a" - }, - "pb-IF4oU0wgKQ==": { - "display_string": [ - "\ue020PathologicalPeak28" - ], - "profiles": [], - "name": "\ue020PathologicalPeak28", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 08:47:48", - "registerOn": 1670245576.6693642, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245576.669365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245576.6693738, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245576.669375, - "lastIP": "a\u007fn~}igaifvva}i", - "deviceUUID": "8b634a71cafac1741c794dffbd4a89325098fb0c" - }, - "pb-IF4MU0w6Cw==": { - "display_string": [ - "\ue020UnopenedCamera42" - ], - "profiles": [], - "name": "\ue020UnopenedCamera42", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-13 11:54:25", - "registerOn": 1670245634.9927588, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245634.9927592, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245634.9927666, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245634.9927678, - "lastIP": "b}k~}jgaagaj", - "deviceUUID": "2a3d70b74dbf6d3b507c9aef723fac9c37647e9a" - }, - "pb-IF5QU0YlIw==": { - "display_string": [ - "\ue030Android63489834" - ], - "profiles": [], - "name": "\ue030Android63489834", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-23 21:42:33", - "registerOn": 1670245821.6299453, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245821.6299458, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245948.333389, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245948.33339, - "lastIP": "a\u007fn~~aeah~~ki", - "deviceUUID": "53c6cfb41ceba0fd96b7d9666541484ffde7ad43" - }, - "pb-IF4GUxUZKg==": { - "display_string": [ - "\ue020DexTerOuSVikAriA" - ], - "profiles": [], - "name": "\ue020DexTerOuSVikAriA", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-15 02:06:37", - "registerOn": 1670245968.7682805, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245968.7682815, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321466.8484159, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670321478.9066787, - "lastIP": "aya~~liajbxvb\u007fk", - "deviceUUID": "1a3a9cc2874e1a5fe2acec16a7f5014b469618c1" - }, - "pb-IF4WUVY=": { - "display_string": [ - "\ue063SReeJU7", - "\ue030Android63511561" - ], - "profiles": [], - "name": "\ue063SReeJU7", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-09 12:54:40", - "registerOn": 1670246071.2071426, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246071.2071433, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246071.207155, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246071.2071562, - "lastIP": "a\u007fk~xh~~aiajby", - "deviceUUID": "9726ecd2c4229a1706a2a286646058bb1491f133" - }, - "pb-IF4AU00sEw==": { - "display_string": [ - "\ue020FavoriteEscort39", - "\ue030Android63976746", - "\ue030Android63976765" - ], - "profiles": [], - "name": "\ue020FavoriteEscort39", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 18:38:08", - "registerOn": 1670246142.336575, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246142.3365757, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246142.336584, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246142.3365855, - "lastIP": "a\u007fk~}haaib{vaxm", - "deviceUUID": "a536a13b40c12d954647e47754580d8c2cd9ffbf" - }, - "pb-LV4FUkUPAxNEVV8RRk5WBVVEEA==": { - "display_string": [ - "\ue063MadBOY5523" - ], - "profiles": [], - "name": "\ue063MadBOY5523", - "isBan": false, - "isMuted": false, - "accountAge": "2016-08-29 17:40:03", - "registerOn": 1670246174.4305658, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246174.4305663, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328134.8117414, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328134.8117433, - "lastIP": "dvvc}va|`~vo", - "deviceUUID": "bc217ff73d9ff9f3921131f99b27d93e57d8f5dc", - "cMsgCount": 0, - "lastMsgTime": 1670329709.380544, - "lastMsg": "/ban", - "cSameMsg": 0 - }, - "pb-IF4-VVkxPw==": { - "display_string": [ - "\ue063UpbeatTrad" - ], - "profiles": [], - "name": "\ue063UpbeatTrad", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-27 09:12:01", - "registerOn": 1670246401.2753522, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246401.2753527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246401.2753594, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246401.2753603, - "lastIP": "a~j~}h`aj`xvb~", - "deviceUUID": "5df9a08a22756fac630a940bad70701464060c21" - }, - "pb-IF4lUxYq": { - "display_string": [ - "\ue063DemonChrom" - ], - "profiles": [], - "name": "\ue063DemonChrom", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-19 13:07:34", - "registerOn": 1670246550.481666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246550.4816666, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246550.481681, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670248151.9811552, - "lastIP": "dvvcyvexva|j", - "deviceUUID": "e5cb0a49d7852ffbd9d6fb0d5a3ff064b96ed0f4" - }, - "pb-IF41U3EmJg==": { - "display_string": [ - "\ue020RKGAMING475" - ], - "profiles": [], - "name": "\ue020RKGAMING475", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 20:23:24", - "registerOn": 1670246556.8013268, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246556.8013277, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246556.8013363, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246556.801338, - "lastIP": "azo~{a~wo~wa", - "deviceUUID": "13ce51d9d52a69e2c5b90d0cee75b842d1e48ff4" - }, - "pb-IF4PU08INw==": { - "display_string": [ - "\ue030Android63975172" - ], - "profiles": [], - "name": "\ue030Android63975172", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 10:14:09", - "registerOn": 1670246582.9174058, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246582.9174066, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246582.917415, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246582.9174159, - "lastIP": "a|n~~mhai`}vdz", - "deviceUUID": "f7f4bcb699c85a3e6b639df36b7a72b8fc389fa4" - }, - "pb-IF4uVUYtUA==": { - "display_string": [ - "\ue020\u00c7r\u00e3syS\u016b\u00df\u00e2sH" - ], - "profiles": [], - "name": "\ue020\u00c7r\u00e3syS\u016b\u00df\u00e2sH", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-20 18:43:08", - "registerOn": 1670247000.2656703, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247000.2656715, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247000.2656803, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247000.2656815, - "lastIP": "bxvf}va{k~~mc", - "deviceUUID": "ec526b5ed10e634ec4153dd5cff44b62cb6adaad" - }, - "pb-IF4-UxUcVA==": { - "display_string": [ - "\ue020WobblyOffender29", - "\ue030Android60540547" - ], - "profiles": [], - "name": "\ue020WobblyOffender29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-17 19:48:44", - "registerOn": 1670247189.9195635, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247189.9195642, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247189.9195719, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247189.9195733, - "lastIP": "dvvc{vg}vhy", - "deviceUUID": "\u0015V\u000eR\u0003\u0010\u0003[\u0002SBUYTXG" - }, - "pb-IF42UnUjVw==": { - "display_string": [ - "\ue020IneligibleLeague40" - ], - "profiles": [], - "name": "\ue020IneligibleLeague40", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-24 09:18:32", - "registerOn": 1670247193.955294, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247193.9552946, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247193.9553025, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247193.9553034, - "lastIP": "azo~zi~~ngaj`v", - "deviceUUID": "36e3d3e9c6a659e3880dcfe9d2f67be1f082a91a" - }, - "pb-IF5WUlhaPA==": { - "display_string": [ - "\ue030Android59530809" - ], - "profiles": [], - "name": "\ue030Android59530809", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-07 19:28:40", - "registerOn": 1670247209.9995768, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247209.9995773, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247209.9995859, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247209.9995873, - "lastIP": "evvizvbzj~~je", - "deviceUUID": "eefc6cc1babacff36bb757b998aa7612049997f1" - }, - "pb-IF4JUlYDVA==": { - "display_string": [ - "\ue020FoolhardyGorilla5970", - "\ue030Android60315518" - ], - "profiles": [], - "name": "\ue020FoolhardyGorilla5970", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-09 20:52:34", - "registerOn": 1670247289.2347045, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247289.234705, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247289.234714, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247289.2347152, - "lastIP": "azo~{a~}mbajd|", - "deviceUUID": "81ba11dea4484e124c748caf1f8c934b02c6c4bf" - }, - "pb-IF4zU08lLA==": { - "display_string": [ - "\ue063Trushank" - ], - "profiles": [], - "name": "\ue063Trushank", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 16:04:33", - "registerOn": 1670247350.8036637, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247350.8036642, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327883.9155424, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327883.9155436, - "lastIP": "azj~zo~~aaajh", - "deviceUUID": "37f641d10b06f13f5f060f73b659c3a28be656d2" - }, - "pb-IF5QU2hSFw==": { - "display_string": [ - "\ue063AffectiveH" - ], - "profiles": [], - "name": "\ue063AffectiveH", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-16 17:12:18", - "registerOn": 1670247370.5213387, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247370.5213394, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336959.3504667, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336959.3504684, - "lastIP": "azo~{a~wm~yk", - "deviceUUID": "35d73de1e2b619caae503f246447716726482aa5" - }, - "pb-IF5QV1EqEg==": { - "display_string": [ - "\ue063Harshini12" - ], - "profiles": [], - "name": "\ue063Harshini12", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-04 15:20:08", - "registerOn": 1670247379.5591614, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247379.5591621, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247379.5591695, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247379.5591702, - "lastIP": "azo~zh~~n~}mb", - "deviceUUID": "6ca8762f538f51c995290038bd88a67012d79d59" - }, - "pb-IF4qU3BcNw==": { - "display_string": [ - "\ue020PrimitiveCoercion25" - ], - "profiles": [], - "name": "\ue020PrimitiveCoercion25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-25 14:20:42", - "registerOn": 1670247466.2097733, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247466.209774, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335884.1680412, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335884.1680427, - "lastIP": "azo~{a~~aiajd~", - "deviceUUID": "3c7fff1e73e618150ff953c14e19a044f37769f3" - }, - "pb-IF40U0EFPQ==": { - "display_string": [ - "\ue020UniqueScandal132", - "\ue030Android63100788" - ], - "profiles": [], - "name": "\ue020UniqueScandal132", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-15 17:29:52", - "registerOn": 1670247485.992155, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247485.9921556, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247485.9921625, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247485.9921637, - "lastIP": "aya~~liajc\u007fvhx", - "deviceUUID": "fee953544ab6d633c2bf346f44fe26c298379aa6" - }, - "pb-IF4uU3YEVA==": { - "display_string": [ - "\ue020TipTopCommander1918" - ], - "profiles": [], - "name": "\ue020TipTopCommander1918", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-23 23:20:49", - "registerOn": 1670247553.2624562, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247553.2624567, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334811.1052673, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334811.1052687, - "lastIP": "azo~|`~~m`aka", - "deviceUUID": "ae7559bed7f2f113a7ec9669a8bca03161057a17" - }, - "pb-JiNJARFYU0pGXVdCFU9TVVZEFkFaRFlL": { - "display_string": [ - "\ue020mooninvaders24", - "\ue030Android20461819" - ], - "profiles": [], - "name": "\ue020mooninvaders24", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-24 16:56:27", - "registerOn": 1670247591.3978565, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247591.397857, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315933.3051295, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315933.305131, - "lastIP": "b}k~~oha`aali", - "deviceUUID": "\u0015\u0002[VW\u0017T\u000eWSB\u0005ZP\u0004D" - }, - "pb-IF4UU05eLw==": { - "display_string": [ - "\ue063NoName48451a" - ], - "profiles": [], - "name": "\ue063NoName48451a", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 21:21:34", - "registerOn": 1670247641.508387, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247641.5083878, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247641.5083945, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247641.5083954, - "lastIP": "axi~}m`aifzvb~l", - "deviceUUID": "48aa973988bc0e1e653dd8afffdbaeed0377cae5", - "cMsgCount": 0, - "lastMsgTime": 1670248313.8054845, - "lastMsg": "gawngbang haha", - "cSameMsg": 0 - }, - "pb-IF4yVFgOVA==": { - "display_string": [ - "\ue020Xodv8" - ], - "profiles": [], - "name": "\ue020Xodv8", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-16 15:03:14", - "registerOn": 1670247642.5841355, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247642.584136, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314048.98138, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314048.9813817, - "lastIP": "azo~{n~~kbaki", - "deviceUUID": "b404fc754d95d57a6e7a54c80351a23c4bf2f6bc" - }, - "pb-IF4yU2QiCQ==": { - "display_string": [ - "\ue020InitialFool50", - "\ue030Android60382840" - ], - "profiles": [], - "name": "\ue020InitialFool50", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-13 15:45:46", - "registerOn": 1670247846.293781, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247846.2937818, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247846.2937908, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247846.2937915, - "lastIP": "azj~zo~wj~~ah", - "deviceUUID": "5c95b5d12b13fbf4fab5a3b6f1cc7254c3966cf2" - }, - "pb-IF4SUng4Vw==": { - "display_string": [ - "\ue030Android57231442" - ], - "profiles": [], - "name": "\ue030Android57231442", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-05 18:15:53", - "registerOn": 1670247875.3993134, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247875.3993142, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247875.3993235, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670248659.7735941, - "lastIP": "azj~zo~~kdajb|", - "deviceUUID": "7e6ecd69fad99e1e7907fc561f46fe8648da42a0", - "cMsgCount": 0, - "lastMsgTime": 1670248014.0863714, - "lastMsg": "sorry", - "cSameMsg": 0 - }, - "pb-IF4jU288Jg==": { - "display_string": [ - "\ue063PentFitnes" - ], - "profiles": [], - "name": "\ue063PentFitnes", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-22 12:18:54", - "registerOn": 1670247997.8078763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247997.807877, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247997.8079166, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247997.8079176, - "lastIP": "aw`~\u007fva{l~zh", - "deviceUUID": "b7ae1252e2b5fa5e54febc349df8eef6dcedd654" - }, - "pb-IF4tUmYMXA==": { - "display_string": [ - "\ue063InvasiveS2" - ], - "profiles": [], - "name": "\ue063InvasiveS2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-14 21:55:15", - "registerOn": 1670248007.8311138, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248007.8311145, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248007.8311238, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248007.8311248, - "lastIP": "azo~{i~}liaidw", - "deviceUUID": "f92a0e56fa90e44abc0c3ae47afef4cc76f85d54" - }, - "pb-IF4oU08MDg==": { - "display_string": [ - "\ue063kishujain5" - ], - "profiles": [], - "name": "\ue063kishujain5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 22:06:06", - "registerOn": 1670248040.9213223, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248040.921323, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248040.9213312, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248040.9213328, - "lastIP": "azo~|`~~k`al", - "deviceUUID": "53da70035fa49159ecadabfeff9aca2a0b93b917" - }, - "pb-IF5cU0oCCg==": { - "display_string": [ - "\ue020Rahulnirania03" - ], - "profiles": [], - "name": "\ue020Rahulnirania03", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 21:48:41", - "registerOn": 1670248107.194649, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248107.1946497, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248107.1946566, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248107.1946573, - "lastIP": "d}va\u007fo~}jdaj`x", - "deviceUUID": "76d5be041291d8560127682c0ceec6cd0eb876b3" - }, - "pb-IF4zU2MgJw==": { - "display_string": [ - "\ue020SharpEnemy92311" - ], - "profiles": [], - "name": "\ue020SharpEnemy92311", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-09 17:53:20", - "registerOn": 1670248148.3000412, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248148.300042, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336800.8131924, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336800.8131943, - "lastIP": "a\u007fk~zvawo~~o`", - "deviceUUID": "bc4a6eebc93dd7e4038333c4d5f45f8752c87a83", - "cMsgCount": 0, - "lastMsgTime": 1670336865.3255773, - "lastMsg": "anime lover anyone", - "cSameMsg": 0 - }, - "pb-IF5SV2VbAQ==": { - "display_string": [ - "\ue020PerfidiousStress40" - ], - "profiles": [], - "name": "\ue020PerfidiousStress40", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-16 14:04:25", - "registerOn": 1670248218.5660353, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248218.5660357, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324061.4613488, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670326423.1925738, - "lastIP": "a~o~va~}lfaaa", - "deviceUUID": "2caee23c5f2ab271561abad7432231aa1f6eaa52", - "cMsgCount": 0, - "lastMsgTime": 1670327660.8594053, - "lastMsg": "khelo n", - "cSameMsg": 0 - }, - "pb-IF4-U08uHQ==": { - "display_string": [ - "\ue063Ug509" - ], - "profiles": [], - "name": "\ue063Ug509", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 21:31:48", - "registerOn": 1670248282.0917091, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248282.0917094, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248282.0917168, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248282.0917177, - "lastIP": "b}j~~ndaievvcz", - "deviceUUID": "ab8bac21d26e7a29912816ff756448ef70962a87" - }, - "pb-JiNJARFcXEpDWlpAGUJVU1dBGUVfR1ZC": { - "display_string": [ - "\ue020PokeyHammer5496", - "\ue030Android4999646" - ], - "profiles": [], - "name": "\ue020PokeyHammer5496", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-07 20:24:30", - "registerOn": 1670248414.2451305, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248414.245131, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322397.2757256, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322397.275728, - "lastIP": "azo~{a~x`~yk", - "deviceUUID": "78a6047d38f5917cfaa19831802db117a412877e" - }, - "pb-JiNJVxFTV0JDVV9BGE5YV11DFEleR1hA": { - "display_string": [ - "\ue063ThirstyNin", - "\ue020ThirstyNinja13866", - "\ue030Android24392040" - ], - "profiles": [], - "name": "\ue063ThirstyNin", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-30 15:41:41", - "registerOn": 1670248698.2888656, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248698.288866, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248698.2888749, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670252335.8334715, - "lastIP": "dvvb~o~~ieam`", - "deviceUUID": "f61386a46fdef46ef497e53cf1ebc414270113c0", - "cMsgCount": 0, - "lastMsgTime": 1670249456.4015536, - "lastMsg": "?", - "cSameMsg": 0 - }, - "pb-IF4jU046Fg==": { - "display_string": [ - "\ue020peskiller11" - ], - "profiles": [], - "name": "\ue020peskiller11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 00:16:42", - "registerOn": 1670248841.8225067, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248841.8225074, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248841.8225157, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248841.8225167, - "lastIP": "azo~{n~~miajdw", - "deviceUUID": "fce7833798549d9cd95c7d32bd0aa32e60ab12ff", - "cMsgCount": 0, - "lastMsgTime": 1670249823.114636, - "lastMsg": "babe don't kill me", - "cSameMsg": 0 - }, - "pb-IF4FU0wNJA==": { - "display_string": [ - "\ue030Android63873735" - ], - "profiles": [], - "name": "\ue030Android63873735", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 10:07:39", - "registerOn": 1670248911.0291958, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248911.0291963, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248911.029205, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670249025.218512, - "lastIP": "azo~zi~~ibaoa", - "deviceUUID": "d377327b5051b8609970eea94af694f8a8fc7e7f" - }, - "pb-IF4pU00vIA==": { - "display_string": [ - "\ue020Sanjay2522" - ], - "profiles": [], - "name": "\ue020Sanjay2522", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 13:59:20", - "registerOn": 1670249211.2428658, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249211.2428665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670249211.2428744, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249211.242875, - "lastIP": "azo~zi~~`gaigw", - "deviceUUID": "47242b1966a1fdc7f191705b819cbfc0bf3c73c1" - }, - "pb-IF4vU08nVg==": { - "display_string": [ - "\ue020Saraj123l" - ], - "profiles": [], - "name": "\ue020Saraj123l", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 20:59:14", - "registerOn": 1670249266.4511678, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249266.4511688, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670249266.451178, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249266.4511793, - "lastIP": "azo~{i~}jgaib}", - "deviceUUID": "c79f250eccbdc9292cc25bd5467800dca7dd92c6" - }, - "pb-IF4jUlRTHw==": { - "display_string": [ - "\ue063thalekalle" - ], - "profiles": [], - "name": "\ue063thalekalle", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-29 13:03:25", - "registerOn": 1670249349.700927, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249349.7009273, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670249483.5507846, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249349.7009356, - "lastIP": "a\u007fk~~mgaifyvb~o", - "deviceUUID": "b36ab79fdec5db990e50b5f0e647c7c34f287ad0", - "cMsgCount": 0, - "lastMsgTime": 1670249691.590385, - "lastMsg": "how big is your titis", - "cSameMsg": 0 - }, - "pb-IF49U04vXA==": { - "display_string": [ - "\ue020LoathsomeReaction46" - ], - "profiles": [], - "name": "\ue020LoathsomeReaction46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 13:58:29", - "registerOn": 1670249450.0387409, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249450.0387418, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670315369.8154893, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315330.0926294, - "lastIP": "d|vbzh~~mfaai", - "deviceUUID": "f8cbfc59d93e526ed3aa7fa1ed51486351576c0d", - "cMsgCount": 0, - "lastMsgTime": 1670315369.815239, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4wVFcZPw==": { - "display_string": [ - "\ue063CivilizedT" - ], - "profiles": [], - "name": "\ue063CivilizedT", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-08 13:54:25", - "registerOn": 1670249678.8690112, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249678.8690119, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323199.1413152, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323199.1413171, - "lastIP": "a\u007fk~~oaaj`\u007fvf|", - "deviceUUID": "44e3910a7e2c0d1388c508e23395a197d9699044", - "cMsgCount": 0, - "lastMsgTime": 1670326575.144846, - "lastMsg": "by by", - "cSameMsg": 0 - }, - "pb-IF4dUm4qLQ==": { - "display_string": [ - "\ue063ashknight4", - "\ue030Android56184369" - ], - "profiles": [], - "name": "\ue063ashknight4", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-21 01:36:02", - "registerOn": 1670249762.308179, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249762.3081794, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670249762.3081875, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249762.3081884, - "lastIP": "a}h~~liakgaj`~", - "deviceUUID": "774550730ff3fc25eb88f0355d4a195037d77028" - }, - "pb-IF4gUlkcDA==": { - "display_string": [ - "\ue030Android59895610" - ], - "profiles": [], - "name": "\ue030Android59895610", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-21 11:44:16", - "registerOn": 1670249849.4518666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249849.451867, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670249884.5996675, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249849.4518764, - "lastIP": "dvva{`~~idaje{", - "deviceUUID": "919131afccd37b147af5f963a5193b6317ca3ed3", - "cMsgCount": 0, - "lastMsgTime": 1670249884.5995364, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-LV4FB0JTA0VAWFYUEUdXBlNDFg==": { - "display_string": [ - "\ue063HEROgamer", - "\ue030Android24143429", - "\ue030Android15189438", - "\ue030Android16124077" - ], - "profiles": [], - "name": "\ue063HEROgamer", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-12 22:39:09", - "registerOn": 1670250120.0074592, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250120.0074596, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250120.0074673, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670267428.3911939, - "lastIP": "dvvd|vd}va}`", - "deviceUUID": "3097c53d0c0a6126c54f877065f6addaa1684210" - }, - "pb-IF4cU0xZMw==": { - "display_string": [ - "\ue063phiNix", - "\ue020TanishkFRANK", - "\ue020YawningCandle50", - "\ue020ClutchingSolo69", - "\ue030Android63908271" - ], - "profiles": [], - "name": "\ue063phiNix", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 20:15:27", - "registerOn": 1670250133.4527495, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250133.45275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250133.452759, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250133.45276, - "lastIP": "dvvd}vfvvb~l", - "deviceUUID": "7d19f22e9444d68ed2d5da1dd20d0511447410ce" - }, - "pb-IF4TABUN": { - "display_string": [ - "\ue063SRD1111997", - "\ue030Android22651353" - ], - "profiles": [], - "name": "\ue063SRD1111997", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-21 16:41:56", - "registerOn": 1670250268.0836828, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250268.0836837, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250268.0836926, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250268.0836935, - "lastIP": "a\u007fk~~n`ajc|va{i", - "deviceUUID": "85eca4976bc87b8b8109d1f417513119a8a32899" - }, - "pb-IF5QU1EMXA==": { - "display_string": [ - "\ue02011MAXTON11" - ], - "profiles": [], - "name": "\ue02011MAXTON11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 20:04:28", - "registerOn": 1670250295.143146, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250295.1431468, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312749.1196575, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312749.1196587, - "lastIP": "axi~zi~~m`aih}", - "deviceUUID": "5030e89d0d9c2de986e244acf9e88ad4503934cd" - }, - "pb-IF4MU2ozNA==": { - "display_string": [ - "\ue030Android61746695" - ], - "profiles": [], - "name": "\ue030Android61746695", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-05 20:41:06", - "registerOn": 1670250332.259322, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250332.2593224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250332.2593436, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250332.2593443, - "lastIP": "dvvcyvewvaxa", - "deviceUUID": "7c64a4ae863115bd7704c6825796c1decc327e51" - }, - "pb-IF4xU04eMw==": { - "display_string": [ - "\ue063rudrakshsh" - ], - "profiles": [], - "name": "\ue063rudrakshsh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 15:23:07", - "registerOn": 1670250383.4424148, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250383.4424157, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250383.442425, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250383.4424262, - "lastIP": "azj~z`~{m~~nb", - "deviceUUID": "d130a8d00098ff798281658f5155cd73bcc5b3c1" - }, - "pb-IF4mUkwhAA==": { - "display_string": [ - "\ue020WinningJogger46419" - ], - "profiles": [], - "name": "\ue020WinningJogger46419", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-01 21:28:10", - "registerOn": 1670250488.7782063, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250488.778207, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254357.983664, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670253386.3972933, - "lastIP": "azo~{l~~ndaigy", - "deviceUUID": "2c2779637d66affab87d4694ba875b4dc06558f6", - "cMsgCount": 0, - "lastMsgTime": 1670254650.8939326, - "lastMsg": "hu hu huuuuuuuu", - "cSameMsg": 0 - }, - "pb-IF5cU1AlNQ==": { - "display_string": [ - "\ue063ReticentPr" - ], - "profiles": [], - "name": "\ue063ReticentPr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 16:44:28", - "registerOn": 1670250659.4981358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250659.4981365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250659.4981453, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250659.4981463, - "lastIP": "a~k~~ndan~}m`", - "deviceUUID": "616bf13ce6524e0c95ff3b7024bcb317a305ba7f" - }, - "pb-IF4oU0s9PQ==": { - "display_string": [ - "\ue030Android63809675" - ], - "profiles": [], - "name": "\ue030Android63809675", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-05 15:28:37", - "registerOn": 1670250666.417381, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250666.417382, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250666.4173903, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250666.4173918, - "lastIP": "a~i~~iiaii|vgz", - "deviceUUID": "\u0015VXYQBU\u000bY\u0004\u0011XT\u0003" - }, - "pb-IF5SUlE-KQ==": { - "display_string": [ - "\ue030Android58903800" - ], - "profiles": [], - "name": "\ue030Android58903800", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-13 20:36:23", - "registerOn": 1670250707.6840343, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250707.6840348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250707.684044, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250707.684045, - "lastIP": "dvvc}vaxl~~`c", - "deviceUUID": "e8a2da1bdc74e640f94c66aea691763073d2df29" - }, - "pb-IF4GUmszHA==": { - "display_string": [ - "\ue020suryarocker1999" - ], - "profiles": [], - "name": "\ue020suryarocker1999", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-04 20:32:35", - "registerOn": 1670250719.6712677, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250719.6712685, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250719.6712766, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250719.6712773, - "lastIP": "a\u007fn~~ahaa~}ii", - "deviceUUID": "\u0015\u0003\\WXL" - }, - "pb-IF4WU2VaXQ==": { - "display_string": [ - "\ue063Interesti7", - "\ue030Android61201689" - ], - "profiles": [], - "name": "\ue063Interesti7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-14 13:31:29", - "registerOn": 1670250920.3041723, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250920.3041728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331261.2721734, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670336545.6042063, - "lastIP": "azj~zo~~ldaiiv", - "deviceUUID": "d6815a2cb1771730f88ada9d4173d80c2b4e90af" - }, - "pb-IF4rU0U8Eg==": { - "display_string": [ - "\ue020VocationalScrutiny21", - "\ue030Android50978082" - ], - "profiles": [], - "name": "\ue020VocationalScrutiny21", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 12:45:33", - "registerOn": 1670251027.71761, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670251027.7176106, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251027.7176192, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251027.7176204, - "lastIP": "dxvbvve}va|j", - "deviceUUID": "77dea83bafe18e363ae49809edd8687ed2d5cfda" - }, - "pb-IF4zUxYJEw==": { - "display_string": [ - "\ue063FrostedLor" - ], - "profiles": [], - "name": "\ue063FrostedLor", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-19 22:59:21", - "registerOn": 1670251058.8195562, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670251058.819557, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670251158.2238212, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251058.8195662, - "lastIP": "a}l~~meaje~vb{o", - "deviceUUID": "6c31f2cd8004bc88fec33cd12dcf4451a54b98ed", - "cMsgCount": 1, - "lastMsgTime": 1670251165.5072389, - "lastMsg": "bska", - "cSameMsg": 0 - }, - "pb-IF4DUk5TUg==": { - "display_string": [ - "\ue020OceanicCaptivity19" - ], - "profiles": [], - "name": "\ue020OceanicCaptivity19", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-07 01:49:24", - "registerOn": 1670251261.472954, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670251261.4729545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251261.4729621, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251261.472963, - "lastIP": "b\u007fi~~`~~ohale", - "deviceUUID": "80a731f93a43685f2fbc45b28f339808f8a9d5ab" - }, - "pb-IF4zU1BaEg==": { - "display_string": [ - "\ue063FreezingFl" - ], - "profiles": [], - "name": "\ue063FreezingFl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 20:15:42", - "registerOn": 1670251764.2393317, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670251764.2393327, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251764.2393408, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251764.2393415, - "lastIP": "a~h~zl~~mbaigx", - "deviceUUID": "c6eee5b8e498eeeb452c5e3d90b3e3075c962753" - }, - "pb-IF5TU3AmUQ==": { - "display_string": [ - "\ue030Android62080452" - ], - "profiles": [], - "name": "\ue030Android62080452", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 20:59:36", - "registerOn": 1670251929.830174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670251929.830175, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299688.556131, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299688.556132, - "lastIP": "azo~|j~~afaic~", - "deviceUUID": "fdbc58d0451aee66658ca47acaa38fcafe3cc83e" - }, - "pb-IF4wV3cJLw==": { - "display_string": [ - "\ue020gokulcmkl" - ], - "profiles": [], - "name": "\ue020gokulcmkl", - "isBan": false, - "isMuted": false, - "accountAge": "2019-01-06 17:13:28", - "registerOn": 1670252119.4277601, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252119.4277606, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252119.4277675, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252119.4277682, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF4TU08iDQ==": { - "display_string": [ - "\ue063DecodeGame" - ], - "profiles": [], - "name": "\ue063DecodeGame", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 23:48:49", - "registerOn": 1670252138.4784591, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252138.4784598, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252138.4784687, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252138.4784696, - "lastIP": "azo~|k~}iaajdv", - "deviceUUID": "5c72854fb38549f2159c7bb467ca960acf92a3ed" - }, - "pb-IF4QU04vLQ==": { - "display_string": [ - "\ue020DesirousAutonomy49" - ], - "profiles": [], - "name": "\ue020DesirousAutonomy49", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 20:15:58", - "registerOn": 1670252416.490065, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252416.4900656, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252416.4900723, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252416.4900734, - "lastIP": "a\u007fn~~aeal`ajdw", - "deviceUUID": "ee801aee1dc3812a8c5b5b8e61a9211912bdedd5" - }, - "pb-IF4DVEpfCA==": { - "display_string": [ - "\ue063dynamic271", - "\ue030Android41785159" - ], - "profiles": [], - "name": "\ue063dynamic271", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-22 03:33:27", - "registerOn": 1670252423.468689, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252423.4686897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252423.468697, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670261454.5566123, - "lastIP": "a\u007fk~~`faihajd|", - "deviceUUID": "180be3d7bbef58dbf5c518f31b09ec00fffeaf68" - }, - "pb-IF4rU0UcFw==": { - "display_string": [ - "\ue020Sanath2512" - ], - "profiles": [], - "name": "\ue020Sanath2512", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-04 23:21:03", - "registerOn": 1670252569.9620147, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252569.9620152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252569.9620223, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252569.9620235, - "lastIP": "a\u007fk~~`baibaid", - "deviceUUID": "fc7516305c400090c2197ce1bd6eb95982a5359e" - }, - "pb-IF4JVVMgDA==": { - "display_string": [ - "\ue020FutileBeef19" - ], - "profiles": [], - "name": "\ue020FutileBeef19", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-26 17:42:51", - "registerOn": 1670252578.065086, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252578.0650864, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330757.2067704, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670331106.7534826, - "lastIP": "dvvcxva}a~}jh", - "deviceUUID": "ba6691ca1d69bc886641d414188b625508bc12b0" - }, - "pb-IF4AU2QnDg==": { - "display_string": [ - "\ue030Android61174087" - ], - "profiles": [], - "name": "\ue030Android61174087", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-12 10:48:37", - "registerOn": 1670252628.7949886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252628.7949893, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252628.794997, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252628.7949986, - "lastIP": "a~o~}lhalfaifx", - "deviceUUID": "a57d53721cf79ae8f3f622ff251eae9dc9d487b3" - }, - "pb-LV4FBBRcUBESWV4RFBVUV1NBRA==": { - "display_string": [ - "\ue020mBAROT" - ], - "profiles": [], - "name": "\ue020mBAROT", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-05 14:49:29", - "registerOn": 1670252668.5095925, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252668.5095932, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670326779.7590246, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670326779.7590258, - "lastIP": "azo~|j~}ldaai", - "deviceUUID": "7bfa41b057c23c13310fd135826868e7437985d1", - "cMsgCount": 0, - "lastMsgTime": 1670329719.1965027, - "lastMsg": "ok bye", - "cSameMsg": 0 - }, - "pb-IF42V2MNDA==": { - "display_string": [ - "\ue020BeamingCornball58058" - ], - "profiles": [], - "name": "\ue020BeamingCornball58058", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-25 13:47:40", - "registerOn": 1670252719.4028423, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252719.4028435, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252719.402854, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252719.4028552, - "lastIP": "a~m~va~zk~~kb", - "deviceUUID": "406b1efe0a882743f7cc93f49688159f6d818e94" - }, - "pb-IF4UU2kpNw==": { - "display_string": [ - "\ue063EliteChime" - ], - "profiles": [], - "name": "\ue063EliteChime", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-27 23:51:26", - "registerOn": 1670252794.6688824, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252794.668883, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252794.6688926, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252794.6688933, - "lastIP": "a\u007fk~~mgaie\u007fva|j", - "deviceUUID": "d3e1bcb17b77ebd8fe8bcebcaaa38fa7bad5d9d3" - }, - "pb-IF42VEcmMg==": { - "display_string": [ - "\ue020AssuredStagnation16", - "\ue030Android42284044" - ], - "profiles": [], - "name": "\ue020AssuredStagnation16", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-09 20:05:06", - "registerOn": 1670252857.919152, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252857.9191527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252857.9191623, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252857.9191637, - "lastIP": "d}va\u007f`~yo~~n", - "deviceUUID": "332a46b82a6e08bbb1deb961addf8bdd99ba2b10" - }, - "pb-IF4nU3ZaUg==": { - "display_string": [ - "\ue020FrumptiousQuagga8864" - ], - "profiles": [], - "name": "\ue020FrumptiousQuagga8864", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-17 17:53:38", - "registerOn": 1670252952.226182, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252952.2261825, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252952.226189, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252952.2261899, - "lastIP": "a\u007fn~}hcai`xvaxo", - "deviceUUID": "8600fa9f3e667fd22ee502fe7f117a3cf2a8edba" - }, - "pb-IF4rU0lcKw==": { - "display_string": [ - "\ue020PetrifiedErrand43" - ], - "profiles": [], - "name": "\ue020PetrifiedErrand43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 09:50:16", - "registerOn": 1670252979.329765, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252979.3297658, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252979.3297727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252979.329774, - "lastIP": "azj~z`~|l~~hf", - "deviceUUID": "562c4d5d81234c294d52da4e065a7ffd07927804" - }, - "pb-IF5RU3EIEA==": { - "display_string": [ - "\ue020MeanderingArchon437" - ], - "profiles": [], - "name": "\ue020MeanderingArchon437", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-21 18:55:17", - "registerOn": 1670252993.3708808, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252993.3708813, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252993.3708901, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252993.3708913, - "lastIP": "dvvcxvavk~}jh", - "deviceUUID": "7f92c216275cdca15efa603875e38f0af5c33831" - }, - "pb-IF4cU0cKJA==": { - "display_string": [ - "\ue030Android63676730" - ], - "profiles": [], - "name": "\ue030Android63676730", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 11:00:12", - "registerOn": 1670253081.681861, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253081.6818616, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253081.6818697, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670254297.8800952, - "lastIP": "a\u007fk~xo~~jgala", - "deviceUUID": "bb673b54de9b442b208eb89eed832c2e3dc79536" - }, - "pb-IF4tU04GEw==": { - "display_string": [ - "\ue020ruklawde" - ], - "profiles": [], - "name": "\ue020ruklawde", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 13:35:05", - "registerOn": 1670253363.8080444, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253363.8080451, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253363.808054, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253363.8080547, - "lastIP": "a~o~}jhai`~vcw", - "deviceUUID": "a3d491b75cc0edaaadd932bf025ff0c7018df2a7" - }, - "pb-IF4mU0kaEA==": { - "display_string": [ - "\ue020HonorableGrunt6306" - ], - "profiles": [], - "name": "\ue020HonorableGrunt6306", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-30 19:35:55", - "registerOn": 1670253718.0740502, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253718.0740511, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253718.0740592, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253718.0740604, - "lastIP": "dvvcyvh}vaz`", - "deviceUUID": "8182916895157817de037308848699e720b92950" - }, - "pb-IF4QU0heJg==": { - "display_string": [ - "\ue030Android63711714" - ], - "profiles": [], - "name": "\ue030Android63711714", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 19:20:23", - "registerOn": 1670253805.5955071, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253805.5955074, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253805.5955155, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670253823.1389985, - "lastIP": "azo~{l~~`bajdv", - "deviceUUID": "08297aa99953ac2f3605b7cfa51893bb453e6170" - }, - "pb-IF4PUm4DHA==": { - "display_string": [ - "\ue020AJROCKlegend", - "\ue030Android62073746", - "\ue030Android62760756" - ], - "profiles": [], - "name": "\ue020AJROCKlegend", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-21 11:55:21", - "registerOn": 1670253859.572911, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253859.5729115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670293698.4350636, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670293698.435065, - "lastIP": "a~o~va~|h~~h`", - "deviceUUID": "\u0015\u0002^PRG\u0003\\T\u0007@" - }, - "pb-IF4HU28eKA==": { - "display_string": [ - "\ue030Android62211118" - ], - "profiles": [], - "name": "\ue030Android62211118", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-24 16:28:26", - "registerOn": 1670253923.7958786, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253923.7959, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253923.7959094, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253923.7959101, - "lastIP": "b}k~~`gai`yvh", - "deviceUUID": "acecef9732440497a8e9ca4bc20858a24f086f9d" - }, - "pb-IF5XUlUKKw==": { - "display_string": [ - "\ue020BevinTheBoss" - ], - "profiles": [], - "name": "\ue020BevinTheBoss", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-27 10:44:29", - "registerOn": 1670253938.8944445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253938.894445, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253938.8944535, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253938.8944542, - "lastIP": "dvvc}vaza~~kd", - "deviceUUID": "9807e63e640c1efe5e51981f029a13c5af01b4cc" - }, - "pb-IF5XU0kHNQ==": { - "display_string": [ - "\ue020Maj5677" - ], - "profiles": [], - "name": "\ue020Maj5677", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 13:26:46", - "registerOn": 1670254010.164867, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254010.1648676, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254010.1648767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254010.1648781, - "lastIP": "i{vb{`~~`daic", - "deviceUUID": "66e851e9bac06f20f0195a1d377bca96170cdb1a" - }, - "pb-IF4lVW4jEg==": { - "display_string": [ - "\ue063Samselvin1" - ], - "profiles": [], - "name": "\ue063Samselvin1", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-14 19:43:04", - "registerOn": 1670254079.3648503, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254079.3648508, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254079.3648584, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254079.3648593, - "lastIP": "a~h~}jdaib}vf", - "deviceUUID": "29a32b3adb4f82b1e058c8a7cdcc667e2599c27a" - }, - "pb-IF4-UlICNQ==": { - "display_string": [ - "\ue063Deathless2" - ], - "profiles": [], - "name": "\ue063Deathless2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-26 17:18:21", - "registerOn": 1670254092.4870377, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254092.4870381, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254092.487047, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254092.4870477, - "lastIP": "azo~|`~yo~~`b", - "deviceUUID": "365f1795853aecbfe3386c59d40033d70ea72366" - }, - "pb-IF4BU01cVQ==": { - "display_string": [ - "\ue063ChocolateT" - ], - "profiles": [], - "name": "\ue063ChocolateT", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 20:54:50", - "registerOn": 1670254150.9815195, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254150.9815202, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254150.9815302, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254150.9815311, - "lastIP": "azo~{a~}lcaif{", - "deviceUUID": "a76126d32dd8738d27d85d5b2d95b7168f16fea7" - }, - "pb-IF42U0kbEg==": { - "display_string": [ - "\ue020RustyUnicorn27009" - ], - "profiles": [], - "name": "\ue020RustyUnicorn27009", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 22:42:37", - "registerOn": 1670254220.9986901, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254220.9986908, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254220.9986994, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254220.9987006, - "lastIP": "dvvc{va~k~~af", - "deviceUUID": "f890499c54c2ed30614bb91563b994c0ac17a8b1" - }, - "pb-IF4pU3c_Fg==": { - "display_string": [ - "\ue030Android62872959" - ], - "profiles": [], - "name": "\ue030Android62872959", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-23 12:47:07", - "registerOn": 1670254315.858815, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254315.8588154, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254315.8588223, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254315.858823, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF4nU0shXQ==": { - "display_string": [ - "\ue020NehalSule01" - ], - "profiles": [], - "name": "\ue020NehalSule01", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 18:18:43", - "registerOn": 1670254440.0974624, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254440.0974631, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254440.0974724, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254440.0974734, - "lastIP": "azo~|k~}k~~jh", - "deviceUUID": "e0b58fa1a9353d747d2c86283e7d443cc5e21a0a" - }, - "pb-IF4sU2I5JA==": { - "display_string": [ - "\ue020ImportantYeoman99681" - ], - "profiles": [], - "name": "\ue020ImportantYeoman99681", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-09 18:59:02", - "registerOn": 1670254543.1246269, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254543.1246278, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323206.1668684, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670327472.4149199, - "lastIP": "azj~z`~|l~|", - "deviceUUID": "4f70739e851f001a6546754c5de2d4346c829195" - }, - "pb-IF5RU1I4Vw==": { - "display_string": [ - "\ue063Dethracer7" - ], - "profiles": [], - "name": "\ue063Dethracer7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 14:36:44", - "registerOn": 1670254550.1401196, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254550.14012, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254550.1401277, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254550.1401289, - "lastIP": "a\u007fk~za~xm~{a", - "deviceUUID": "5a9cb591ad9851f5a6963552224686de1cb0fffa" - }, - "pb-IF4AU0s_Lg==": { - "display_string": [ - "\ue063Dangerou18" - ], - "profiles": [], - "name": "\ue063Dangerou18", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-05 14:24:27", - "registerOn": 1670254849.679219, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254849.6792197, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254849.679228, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254849.679229, - "lastIP": "dvvcyva\u007fj~~ji", - "deviceUUID": "57fc4e0ed7ea08e967c03cbdaa306eef2cf172c1" - }, - "pb-IF4dV0deMw==": { - "display_string": [ - "\ue020EngrossingFarmer8411" - ], - "profiles": [], - "name": "\ue020EngrossingFarmer8411", - "isBan": false, - "isMuted": false, - "accountAge": "2019-02-27 00:36:07", - "registerOn": 1670255001.736391, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255001.736392, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313768.957601, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313768.9576027, - "lastIP": "a\u007fk~}laajbyva\u007fn", - "deviceUUID": "a0334c888a84b2407e2a4ab6c236518fe8c31d40" - }, - "pb-IF41U08-KA==": { - "display_string": [ - "\ue063Excessive5" - ], - "profiles": [], - "name": "\ue063Excessive5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 18:59:49", - "registerOn": 1670255113.3803844, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255113.380385, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255113.3803947, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255113.3803964, - "lastIP": "azo~{h~~jfajb", - "deviceUUID": "c2c212ff923c6217a21d785856238366adb097a2" - }, - "pb-IF4xU08sHQ==": { - "display_string": [ - "\ue020SmartSid12345", - "\ue030Android63979752", - "\ue030Android42905975" - ], - "profiles": [], - "name": "\ue030Android63979752", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 23:46:13", - "registerOn": 1670255144.4869297, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255144.4869304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255144.4869394, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255144.4869404, - "lastIP": "a}h~~khaia{viw", - "deviceUUID": "d5a8202ad4f3a064230e4c3a06eabcb6f715f2c2" - }, - "pb-IF4jVEwxDw==": { - "display_string": [ - "\ue020surajnikam266", - "\ue030Android61689027" - ], - "profiles": [], - "name": "\ue020surajnikam266", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-31 12:49:06", - "registerOn": 1670255391.4203773, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255391.420378, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255391.4203866, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255391.4203875, - "lastIP": "dvvcyva}h~~nd", - "deviceUUID": "70cff96ba8ba4f084c3253d67efc7841386bd18d", - "cMsgCount": 0, - "lastMsgTime": 1670255587.440066, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF40VEwfPQ==": { - "display_string": [ - "\ue020AJAYJOSHI904" - ], - "profiles": [], - "name": "\ue020AJAYJOSHI904", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-02 17:58:50", - "registerOn": 1670255434.5880437, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255434.5880444, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255434.5880518, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255434.5880527, - "lastIP": "a|a~~ngajbyvg\u007f", - "deviceUUID": "0ee6b6eecf6f52f2bb376cbcb31feee46cb123ec" - }, - "pb-IF4zU20BFA==": { - "display_string": [ - "\ue020TenableCoherence51" - ], - "profiles": [], - "name": "\ue020TenableCoherence51", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-16 12:08:23", - "registerOn": 1670255484.7145073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255484.714508, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255484.7145162, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255484.7145174, - "lastIP": "azo~{l~~nhaihy", - "deviceUUID": "705c9617b9e47d8c50f605c506cf54ea6a67cc58" - }, - "pb-IF4VUnQ-Cg==": { - "display_string": [ - "\ue020aashiq8126" - ], - "profiles": [], - "name": "\ue020aashiq8126", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-20 11:04:40", - "registerOn": 1670255567.027972, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255567.027973, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255567.02798, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255567.0279808, - "lastIP": "azo~{n~yo~}jf", - "deviceUUID": "65e39e7eb61d5effa47ed6c17016cd8ef39929a3" - }, - "pb-IF40U2UfUQ==": { - "display_string": [ - "\ue063ChromeGua3" - ], - "profiles": [], - "name": "\ue063ChromeGua3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-18 16:10:24", - "registerOn": 1670255977.6800907, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255977.6800911, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255977.6800992, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255977.6801002, - "lastIP": "azo~{a~~`caii\u007f", - "deviceUUID": "e10fe74d8f3b704ccbc129a33799524df9d6e93b" - }, - "pb-IF4qU1BYEA==": { - "display_string": [ - "\ue063RubberMast" - ], - "profiles": [], - "name": "\ue063RubberMast", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 16:10:43", - "registerOn": 1670256011.93738, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256011.9373806, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256011.937388, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256011.9373891, - "lastIP": "dvvc}va{o~~kh", - "deviceUUID": "63e47d624472109b043874aa16140f91c34fb3ed" - }, - "pb-IF49U0gMLg==": { - "display_string": [ - "\ue020FocalJunction38" - ], - "profiles": [], - "name": "\ue020FocalJunction38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 12:53:22", - "registerOn": 1670256012.1049006, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256012.1049013, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256012.104909, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256012.1049101, - "lastIP": "azo~{a~}kfaoi", - "deviceUUID": "1a178a99f5a7d57629687eabf1df69d7bbdfa623" - }, - "pb-IF4lB0sz": { - "display_string": [ - "\ue063BrownCreat" - ], - "profiles": [], - "name": "\ue063BrownCreat", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-01 13:39:18", - "registerOn": 1670256028.8637788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256028.863779, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256028.863786, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256028.8637867, - "lastIP": "b}k~~oha`eaj`\u007f", - "deviceUUID": "b0220229f2ebad7ac29d3379a9de68e4e0c9e1ce" - }, - "pb-IF4AUhIyJA==": { - "display_string": [ - "\ue063LongerImag" - ], - "profiles": [], - "name": "\ue063LongerImag", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-13 12:41:16", - "registerOn": 1670256070.954883, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256070.9548838, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256070.954892, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256070.954893, - "lastIP": "dvvc}vazn~z", - "deviceUUID": "230ae545d6366c2d0debb0c4a8803619de13478f" - }, - "pb-IF4RUnY9IQ==": { - "display_string": [ - "\ue030Android57008711" - ], - "profiles": [], - "name": "\ue030Android57008711", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-27 20:35:39", - "registerOn": 1670256129.2770996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256129.2771003, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315698.4613986, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315698.4614, - "lastIP": "azo~|`~~kiaa", - "deviceUUID": "\u0015S\u000ePSA\u0005\\\u0005U\u0017" - }, - "pb-IF40U2k8Ig==": { - "display_string": [ - "\ue030Android61657358" - ], - "profiles": [], - "name": "\ue030Android61657358", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-02 07:48:54", - "registerOn": 1670256381.4128532, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256381.4128542, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256381.4128635, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256381.4128644, - "lastIP": "azo~{n~}jaaif{", - "deviceUUID": "\u0015\u0002U" - }, - "pb-JiNJARFaUEBFW1xEGURTVFxFFkJZQ1BL": { - "display_string": [ - "\ue063Conqueror2", - "\ue030Android6251393" - ], - "profiles": [], - "name": "\ue063Conqueror2", - "isBan": false, - "isMuted": false, - "accountAge": "2016-08-28 23:08:40", - "registerOn": 1670256437.6212132, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256437.6212142, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256437.6212237, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256437.6212244, - "lastIP": "a\u007fk~~`cajbvvayl", - "deviceUUID": "83adaa972d7102283297eee361226c7407497ff5" - }, - "pb-IF4QV1kdNw==": { - "display_string": [ - "\ue063SICKBOY234" - ], - "profiles": [], - "name": "\ue063SICKBOY234", - "isBan": false, - "isMuted": false, - "accountAge": "2019-06-07 18:57:50", - "registerOn": 1670256520.9515796, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256520.95158, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256520.9515882, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256520.951589, - "lastIP": "azo~{n~~naaje\u007f", - "deviceUUID": "72c11652acdcd43b7aedc769abbe37c3982b9523" - }, - "pb-JiNJARFZUUpJX1tGE0dWVlJEE0NdQFhB": { - "display_string": [ - "\ue063bhaumikrat", - "\ue030Android12040933" - ], - "profiles": [], - "name": "\ue020bhaumikrathod1234", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-27 14:51:19", - "registerOn": 1670256565.1365228, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256565.1365232, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312560.4791799, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312560.479181, - "lastIP": "azj~z`~|n~~hb", - "deviceUUID": "24051ec9abcd42747643aa2415870c8cd47b1c39" - }, - "pb-IF4lUhAuDA==": { - "display_string": [ - "\ue063Bodacious8" - ], - "profiles": [], - "name": "\ue063Bodacious8", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-02 18:23:15", - "registerOn": 1670256648.5232904, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256648.523291, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256648.5233006, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256648.5233018, - "lastIP": "a~o~}jhaif}va\u007fj", - "deviceUUID": "2b3d06d2e74e7f36a98e8e8a6851ccb5a52b543d" - }, - "pb-IF4cVGsqNA==": { - "display_string": [ - "\ue020369joker963" - ], - "profiles": [], - "name": "\ue020369joker963", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-15 20:57:36", - "registerOn": 1670256768.0631816, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256768.0631824, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256768.063189, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256768.06319, - "lastIP": "a\u007fn~~adalaaje", - "deviceUUID": "bdca4575f5eeafa7f2539cc58e3df27ed061ba5e" - }, - "pb-IF4XU0E5AQ==": { - "display_string": [ - "\ue020UngainlyAluminum35", - "\ue030Android63419605", - "\ue030Android63419543" - ], - "profiles": [], - "name": "\ue020UngainlyAluminum35", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-10 19:08:41", - "registerOn": 1670256850.1497886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256850.1497893, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670301915.2810547, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670303450.3310106, - "lastIP": "a|o~vo~wk~~oh", - "deviceUUID": "4d9c2aba151eac517fd2829146e384861e29f9ff", - "cMsgCount": 0, - "lastMsgTime": 1670303306.985972, - "lastMsg": "sry vivek", - "cSameMsg": 0 - }, - "pb-IF4wU09SJA==": { - "display_string": [ - "\ue030Android63940563" - ], - "profiles": [], - "name": "\ue030Android63940563", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 13:43:25", - "registerOn": 1670256879.2725005, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256879.272501, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321445.7735, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321445.7735014, - "lastIP": "a\u007fn~}jcajavvex", - "deviceUUID": "f5d1b5720c5e611804c462836db425c51cce3620" - }, - "pb-IF4GUhU4AA==": { - "display_string": [ - "\ue030Android54215093" - ], - "profiles": [], - "name": "\ue030Android54215093", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-25 02:34:17", - "registerOn": 1670257031.9821866, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257031.982187, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257031.9821963, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257031.982197, - "lastIP": "awi~~odaodaj`~", - "deviceUUID": "d6488396d3fc78711d5cf48ef28ed344208b6c5c" - }, - "pb-IF4XUlQNLw==": { - "display_string": [ - "\ue030Android59340397" - ], - "profiles": [], - "name": "\ue030Android59340397", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-31 20:20:09", - "registerOn": 1670257069.9438384, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257069.9438388, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257069.943847, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670257254.3727899, - "lastIP": "a}j~~mbamdakc", - "deviceUUID": "\u0015RZPTAU^\u0004WL\u0005\tVQBWZTPLT^RY" - }, - "pb-IF4-VFMbAg==": { - "display_string": [ - "\ue063ElegantLun" - ], - "profiles": [], - "name": "\ue063ElegantLun", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-13 06:00:26", - "registerOn": 1670257121.1981733, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257121.198174, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257121.1981828, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257121.198184, - "lastIP": "dvvdvvb{k~{m", - "deviceUUID": "c5b4b03a7c3bb039e656794cfc61c49a225d18a7" - }, - "pb-IF4wBUUK": { - "display_string": [ - "\ue020RAEEEEEEEEEEEEEEEEES", - "\ue030Android33511514" - ], - "profiles": [], - "name": "\ue020RAEEEEEEEEEEEEEEEEES", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-09 23:20:43", - "registerOn": 1670257170.4323204, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257170.4323208, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257170.4323282, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670259965.0882533, - "lastIP": "dvvcyvi\u007fvfy", - "deviceUUID": "585dce69a029fb4d29648fd828dc36df5939d7aa" - }, - "pb-IF4AU085Cw==": { - "display_string": [ - "\ue030Android63969121" - ], - "profiles": [], - "name": "\ue030Android63969121", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 14:22:20", - "registerOn": 1670257188.4926977, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257188.4926984, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257188.4927082, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257188.4927092, - "lastIP": "a\u007fj~ym~xh~}m", - "deviceUUID": "\u0015\u0002\b\u0005V\u0016PY\u0003V@TZUY\u0011\u0004YTSDSZQYB" - }, - "pb-IF4OU0JcNw==": { - "display_string": [ - "\ue030Android63334530" - ], - "profiles": [], - "name": "\ue030Android63334530", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-15 22:53:08", - "registerOn": 1670257195.456958, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257195.4569585, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257195.4569666, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257195.4569676, - "lastIP": "a\u007fn~}haakdamh", - "deviceUUID": "d95a49067e47c54d6cf04fb08334208c020b6829" - }, - "pb-IF5QVWsoFw==": { - "display_string": [ - "\ue063Surajkhot0" - ], - "profiles": [], - "name": "\ue063Surajkhot0", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-29 19:11:10", - "registerOn": 1670257216.5894768, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257216.5894775, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257216.589486, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257216.5894868, - "lastIP": "a}j~~ngajezvavi", - "deviceUUID": "95ec89199587112fa5b89ec03f8d6ea5b274851a" - }, - "pb-IF4vU2ISBg==": { - "display_string": [ - "\ue063Nikhil18", - "\ue020IncompetentGhost28", - "\ue030Android60304282", - "\ue030PC750627", - "\ue030PC453003" - ], - "profiles": [], - "name": "\ue030PC750627", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-08 11:29:20", - "registerOn": 1670257267.8095806, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257267.809581, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257267.8095903, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670257608.7073476, - "lastIP": "a\u007fn~}i`aid}vb~m", - "deviceUUID": "82edc8862635598bd73138232e611b9569e9638e" - }, - "pb-IF4AU3ZcAw==": { - "display_string": [ - "\ue063Intolera18" - ], - "profiles": [], - "name": "\ue063Intolera18", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-19 10:14:51", - "registerOn": 1670257442.6885707, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257442.6885712, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257442.6885812, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257442.6885822, - "lastIP": "a\u007fk~~kganga`c", - "deviceUUID": "2b2a5028de891149889a4a2eb39786fad1a95ed5" - }, - "pb-IF4mUnE_Lg==": { - "display_string": [ - "\ue063rohithsai0" - ], - "profiles": [], - "name": "\ue063rohithsai0", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-06 18:59:43", - "registerOn": 1670257451.4285731, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257451.4285738, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257451.4285817, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257451.4285824, - "lastIP": "bxvgaif~vbzl", - "deviceUUID": "e3074849d0eee0df511f6b5881e05ffe938c5b3b" - }, - "pb-IF4HU3UIXA==": { - "display_string": [ - "\ue063danchoak47" - ], - "profiles": [], - "name": "\ue063danchoak47", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-16 17:06:36", - "registerOn": 1670257571.8968, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257571.8968008, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257571.8968105, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257571.8968115, - "lastIP": "baic{vf{vayj", - "deviceUUID": "37fda0db7af73b8e05d9db7f472122163e86fd59" - }, - "pb-IF5TUm4DNg==": { - "display_string": [ - "\ue063Sumanth386" - ], - "profiles": [], - "name": "\ue063Sumanth386", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-11 22:48:19", - "registerOn": 1670257598.010625, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257598.0106256, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257598.0106332, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257598.010634, - "lastIP": "azo~{m~}mdaihz", - "deviceUUID": "d56fd1b3882e3d7b300af8a33463737cd66516c5" - }, - "pb-IF41VEEdVA==": { - "display_string": [ - "\ue063MuscularPl" - ], - "profiles": [], - "name": "\ue063MuscularPl", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-31 20:11:02", - "registerOn": 1670257724.4213145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257724.421315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257724.4213226, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257724.4213235, - "lastIP": "dvvcxvb|l~~hf", - "deviceUUID": "52d137eaf00eb67a82a7f367b5d0a222793760dd" - }, - "pb-IF4-U0w7DQ==": { - "display_string": [ - "\ue020YOSHITHALAKMAL45", - "\ue030Android63751944" - ], - "profiles": [], - "name": "\ue020YOSHITHALAKMAL45", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 21:37:53", - "registerOn": 1670257826.8966699, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257826.8966706, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257826.8966787, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257826.8966799, - "lastIP": "b~j~~hdajbzvb{j", - "deviceUUID": "625be643e68bf9a72627ecb1c203974b21e5daae" - }, - "pb-IF4oBEwf": { - "display_string": [ - "\ue063NoName52901c", - "\ue030Android22180102" - ], - "profiles": [], - "name": "\ue063NoName52901c", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-05 21:27:42", - "registerOn": 1670257898.0722663, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257898.072267, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257898.0722752, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257898.072276, - "lastIP": "a~o~}hhajgaicz", - "deviceUUID": "fbb6a93a18228ba8573fa94f744464ace5a11058" - }, - "pb-IF4iVRRaDQ==": { - "display_string": [ - "\ue063optimusmeg" - ], - "profiles": [], - "name": "\ue063optimusmeg", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-28 19:37:49", - "registerOn": 1670257933.27594, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257933.2759407, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257933.2759502, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257933.2759511, - "lastIP": "azo~~iiajcyva{i", - "deviceUUID": "1d9711343cacf46a5e97d174be2eb96f4bb2bc20" - }, - "pb-IF5UU3YxEA==": { - "display_string": [ - "\ue020MiraculousContrary29" - ], - "profiles": [], - "name": "\ue020MiraculousContrary29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-13 20:55:50", - "registerOn": 1670257969.341402, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257969.3414025, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257969.3414106, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257969.3414116, - "lastIP": "dvvcyvd|vd{", - "deviceUUID": "b72b68b2b301a8c12b2f6e3840192b2eea474da5" - }, - "pb-IF4eU08zVQ==": { - "display_string": [ - "\ue020BouncySnake77868" - ], - "profiles": [], - "name": "\ue020BouncySnake77868", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 18:16:48", - "registerOn": 1670258009.676994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258009.6769946, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258009.6770022, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258009.677003, - "lastIP": "azo~|k~}i`a`", - "deviceUUID": "307ac933e9919132e77bb2da8f82e827ddd5196e" - }, - "pb-IF5VVBI-UQ==": { - "display_string": [ - "\ue063DryPreside", - "\ue030Android35720524" - ], - "profiles": [], - "name": "\ue063DryPreside", - "isBan": false, - "isMuted": false, - "accountAge": "2019-06-12 17:45:06", - "registerOn": 1670258027.5899825, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258027.5899832, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258027.5899925, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258027.5899932, - "lastIP": "bxvc{vb\u007fva}h", - "deviceUUID": "9c05542b0d92d6e3cdaef3d161323aef6f22fe14" - }, - "pb-IF5XU0YhFg==": { - "display_string": [ - "\ue063DiligentSt" - ], - "profiles": [], - "name": "\ue063DiligentSt", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 22:45:27", - "registerOn": 1670258043.6863267, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258043.6863275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258043.6863375, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258043.686339, - "lastIP": "bxvexvizva~a", - "deviceUUID": "c6359922302e30ae253b4c7d7a434e753afd3b5c" - }, - "pb-IF4CVUcaAg==": { - "display_string": [ - "\ue030Android51729718" - ], - "profiles": [], - "name": "\ue030Android51729718", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-01 11:15:45", - "registerOn": 1670258400.3804352, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258400.380436, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258400.3804445, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670262188.268341, - "lastIP": "a~o~}laaib\u007fvav", - "deviceUUID": "d06246790daa5a946dd0053412654233fbdbd195" - }, - "pb-IF5VUlYDHQ==": { - "display_string": [ - "\ue030Android59349492" - ], - "profiles": [], - "name": "\ue030Android59349492", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-01 02:22:07", - "registerOn": 1670258509.7183855, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258509.7183862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258509.7183943, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258509.718396, - "lastIP": "dxvazvaa`", - "deviceUUID": "9bd95b592b7a4c23361b903e2242375724a3bc06" - }, - "pb-IF4OU2oKJw==": { - "display_string": [ - "\ue020CaptainBlackbeard11" - ], - "profiles": [], - "name": "\ue020CaptainBlackbeard11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-05 11:58:33", - "registerOn": 1670258656.2382498, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258656.2382505, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258656.2382581, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258656.2382588, - "lastIP": "b~j~~hdajb{vavj", - "deviceUUID": "0c3eb8ca5ce0429e4b0545f62c20f5f844f5dc97" - }, - "pb-IF4WU0s_VA==": { - "display_string": [ - "\ue020FrostyCourt15" - ], - "profiles": [], - "name": "\ue020FrostyCourt15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 22:44:53", - "registerOn": 1670258709.4077702, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258709.4077706, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258709.4077792, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258709.4077804, - "lastIP": "azo~|`~~liaify", - "deviceUUID": "a9f51694aa2d331a4a30e971af714612fd526077" - }, - "pb-JiNJARFZXUFBX11BGEVXU1RCGERXQ1BF": { - "display_string": [ - "\ue063TaRkHaN221", - "\ue030Android11064809" - ], - "profiles": [], - "name": "\ue063TaRkHaN221", - "isBan": false, - "isMuted": false, - "accountAge": "2017-02-23 19:56:03", - "registerOn": 1670258719.434443, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258719.4344437, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258719.434454, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258719.4344547, - "lastIP": "azo~|`~~kfak", - "deviceUUID": "df2dcc995bb14f4880ff8a8743049ed69645d7b5" - }, - "pb-IF4iNRI7": { - "display_string": [ - "\ue020vikramvicky9917", - "\ue030Android16943081" - ], - "profiles": [], - "name": "\ue020vikramvicky9917", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-23 11:13:31", - "registerOn": 1670258862.0087178, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258862.0087185, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258862.008727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258862.008728, - "lastIP": "azo~{a~~ogaie}", - "deviceUUID": "eb46d3e52be084680ebfe2286c0b3834094347b6" - }, - "pb-IF4nU00CDw==": { - "display_string": [ - "\ue020IndigoProfessor29406" - ], - "profiles": [], - "name": "\ue020IndigoProfessor29406", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 21:37:52", - "registerOn": 1670258952.6872625, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258952.6872628, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258952.6872702, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258952.6872709, - "lastIP": "aya~~liajbyvavh", - "deviceUUID": "cec28973acf105e77c22762e056d2dcad53f79a6" - }, - "pb-IF4nVUkkJg==": { - "display_string": [ - "\ue063Undercove7" - ], - "profiles": [], - "name": "\ue063Undercove7", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-08 18:03:05", - "registerOn": 1670259117.053902, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670259117.0539024, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259117.0539112, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259117.0539124, - "lastIP": "b}k~}jhajdzvdv", - "deviceUUID": "eed06cfd1de9dfbee6fa36ec96d04f3c1a5bfc9a" - }, - "pb-IF4PU0UJFw==": { - "display_string": [ - "\ue020SkeletalMention95" - ], - "profiles": [], - "name": "\ue020SkeletalMention95", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-04 14:07:25", - "registerOn": 1670259225.4756715, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670259225.4756722, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259225.4756813, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259225.4756823, - "lastIP": "a~o~}mcaaiai`}", - "deviceUUID": "ccdaf8b03237a74be04a5b92442eeba20b2444ec" - }, - "pb-IF4VU3EjBg==": { - "display_string": [ - "\ue020viru199554" - ], - "profiles": [], - "name": "\ue020viru199554", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 18:48:33", - "registerOn": 1670259259.5296886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670259259.5296893, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259259.529698, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259259.5296986, - "lastIP": "dvvcyvi\u007fvfy", - "deviceUUID": "56d1170868f04f143c806ef6135b41ea8065127f" - }, - "pb-JiNJARFdVERDXllFGUdVV1VFFkBdRFdC": { - "display_string": [ - "\ue020ismailrifai", - "\ue030Android4344519" - ], - "profiles": [], - "name": "\ue020ismailrifai", - "isBan": false, - "isMuted": false, - "accountAge": "2016-07-04 17:50:10", - "registerOn": 1670259266.6807163, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670259266.680717, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670305906.3024166, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670305906.3024182, - "lastIP": "azo~zi~~h`aig~", - "deviceUUID": "7b315c816cd636483f229a8d98d34bacb99e71c2" - }, - "pb-IF4NVVkCHA==": { - "display_string": [ - "\ue063NoName46139e" - ], - "profiles": [], - "name": "\ue063NoName46139e", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-31 02:48:44", - "registerOn": 1670259528.5617445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670259528.5617456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259528.5617547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259528.5617557, - "lastIP": "cxvb\u007fh~}lgaod", - "deviceUUID": "703a56441b0d763173ea55c61f6a39c66e44f559" - }, - "pb-IF4uVG0fIQ==": { - "display_string": [ - "\ue020SleepyPhantasm49204", - "\ue030Android39278299" - ], - "profiles": [], - "name": "\ue020SleepyPhantasm49204", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-03 17:29:36", - "registerOn": 1670260019.5806453, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260019.580646, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260019.5806546, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260019.5806556, - "lastIP": "azj~z`~|l~~hf", - "deviceUUID": "548d34f6ebd9f112a259b1c8cc304d83b3538a8d" - }, - "pb-IF4eU0UiNw==": { - "display_string": [ - "\ue020DearestSovereignty39", - "\ue030VR291971" - ], - "profiles": [], - "name": "\ue030VR291971", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 23:04:12", - "registerOn": 1670260076.8670533, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260076.867054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260076.8670633, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260076.8670645, - "lastIP": "a~i~~iiaja~vaxa", - "deviceUUID": "4f64d1521a4b6da3ae8223915a4a150f32554469" - }, - "pb-JiNJVxFTUUJJXFlGFUdUUlFGF0NYT1dE": { - "display_string": [ - "\ue063PsychKille", - "\ue030Android2209099" - ], - "profiles": [], - "name": "\ue063PsychKille", - "isBan": false, - "isMuted": false, - "accountAge": "2016-06-09 01:44:47", - "registerOn": 1670260102.0836394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260102.0836399, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260102.0836606, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670260143.8437214, - "lastIP": "awk~wj~}kcaid", - "deviceUUID": "4b8dfc65e95cdda13d37214230680c24ef6a52c4" - }, - "pb-IF5WU1E8DQ==": { - "display_string": [ - "\ue020BraveDeal60" - ], - "profiles": [], - "name": "\ue020BraveDeal60", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 22:45:33", - "registerOn": 1670260137.8995283, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260137.899529, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260137.8995373, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260137.899539, - "lastIP": "dvvcxvg}vb~j", - "deviceUUID": "6d9ffb3e457c116fd09a7056da1ad2eaf6c2268a" - }, - "pb-JiNJARFeUEBHXVhGEkFQVFVFGUJdRFNH": { - "display_string": [ - "\ue063Luminesce8", - "\ue030PC101334" - ], - "profiles": [], - "name": "\ue063Luminesce8", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-26 01:36:26", - "registerOn": 1670260200.3914208, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260200.3914216, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260200.3914292, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260200.3914301, - "lastIP": "a\u007fn~}ieaj`\u007fvawl", - "deviceUUID": "dda89a37d7ce8cdd248de398b1e61a6310268083" - }, - "pb-IF4PU3cHKQ==": { - "display_string": [ - "\ue030Android62944812" - ], - "profiles": [], - "name": "\ue030Android62944812", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 00:32:39", - "registerOn": 1670260355.937781, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260355.9377816, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260355.9377887, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260355.9377894, - "lastIP": "a\u007fk~~kdaiexvey", - "deviceUUID": "\u0015P\\\u0004SC\u0004Z\u0002\u0004\u0011P]Q" - }, - "pb-JiNJARFfXEpBWlpGEUdRVlJCEklXQ1NH": { - "display_string": [ - "\ue020yravishankar15", - "\ue030Android4946615" - ], - "profiles": [], - "name": "\ue063yravishank", - "isBan": false, - "isMuted": false, - "accountAge": "2016-06-14 20:44:13", - "registerOn": 1670260599.100515, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260599.1005156, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260599.1005244, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670260599.1005256, - "lastIP": "dvvc}vb}o~\u007f", - "deviceUUID": "9fcf81ca2127044a13059c7fff597709e8aef9c9" - }, - "pb-IF4QUlgKAA==": { - "display_string": [ - "\ue063Whimsical8" - ], - "profiles": [], - "name": "\ue063Whimsical8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-16 21:25:00", - "registerOn": 1670260736.2662442, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260736.2662444, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260736.266252, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260736.2662528, - "lastIP": "d~vi\u007fvaxo~}md", - "deviceUUID": "d073747787e1fd85a68d6897bed86b72901a4f41" - }, - "pb-IF4cU0EaCQ==": { - "display_string": [ - "\ue063RagingVirg" - ], - "profiles": [], - "name": "\ue063RagingVirg", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-14 22:15:39", - "registerOn": 1670260825.575996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260825.5759964, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260825.5760062, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260825.5760071, - "lastIP": "awk~wk~~lcaif\u007f", - "deviceUUID": "8f92ccdc91c0306504a0a5e8f734ef1cc45e55f1" - }, - "pb-IF4hVEwoJA==": { - "display_string": [ - "\ue020sury2803" - ], - "profiles": [], - "name": "\ue020sury2803", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-03 04:53:30", - "registerOn": 1670260853.6077015, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260853.6077023, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260853.6078458, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260853.6078475, - "lastIP": "awn~~meaje\u007fva|h", - "deviceUUID": "f2c164ad794d898b17253914d4a6c23110a99218" - }, - "pb-JiNJARFfXEZAW1dDGUBQU11GE0FXQFZC": { - "display_string": [ - "\ue020ElectricYodeler26380", - "\ue030Android12313251" - ], - "profiles": [], - "name": "\ue020ElectricYodeler26380", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-05 20:44:22", - "registerOn": 1670260877.9083874, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260877.9083881, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260877.9083965, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260877.9083977, - "lastIP": "a\u007fk~~ofaiaaie~", - "deviceUUID": "567964f0d775d689b7fd35dfbf1e9d25123b5d79", - "cMsgCount": 0, - "lastMsgTime": 1670261659.5812995, - "lastMsg": "lul", - "cSameMsg": 0 - }, - "pb-IF4jU0JaNg==": { - "display_string": [ - "\ue020SeverestApparel30", - "\ue030Android63952940", - "\ue030Android63953044" - ], - "profiles": [], - "name": "\ue020SeverestApparel30", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 12:49:09", - "registerOn": 1670261087.3662689, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261087.3662696, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301081.518586, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301081.5185874, - "lastIP": "cwvd~vh{vez", - "deviceUUID": "c78a794d04aa626c37c56cf9a2e887505993abf9" - }, - "pb-IF4XU3gkNw==": { - "display_string": [ - "\ue020HoneyProgression37" - ], - "profiles": [], - "name": "\ue020HoneyProgression37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 19:58:05", - "registerOn": 1670261114.4563544, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261114.4563549, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261114.4563637, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670261735.6184196, - "lastIP": "azo~zi~~j`a`i", - "deviceUUID": "d6b5c8dc110f804fecb54ed1d5906d8c224a9bbf" - }, - "pb-IF5WVUcOFA==": { - "display_string": [ - "\ue020Angeliccutiee43", - "\ue030Android48977675", - "\ue030Android48990758" - ], - "profiles": [], - "name": "\ue020Angeliccutiee43", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-16 11:20:01", - "registerOn": 1670261205.910979, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261205.9109795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261205.9109886, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261205.9109895, - "lastIP": "dvvd|vb\u007fk~~ii", - "deviceUUID": "\u0015\u0005X\u0004" - }, - "pb-IF5TVVIaLA==": { - "display_string": [ - "\ue020PeakAlarm3243" - ], - "profiles": [], - "name": "\ue020PeakAlarm3243", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-13 22:20:13", - "registerOn": 1670261230.0989811, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261230.0989819, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261230.09899, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670261577.0474558, - "lastIP": "azo~{i~}meaihz", - "deviceUUID": "e332b31902594f55dd2f88cd6c06709f66e9d4f4" - }, - "pb-IF4gNFci": { - "display_string": [ - "\ue020Anirudhalwaysrockzzz" - ], - "profiles": [], - "name": "\ue020Anirudhalwaysrockzzz", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-22 21:06:18", - "registerOn": 1670261708.8552713, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261708.8552723, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261708.8552802, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261708.855281, - "lastIP": "dvvcxva|i~~m", - "deviceUUID": "efab72a946f3bfb5c01a857ae08330f90e063102" - }, - "pb-IF4mVEoyVQ==": { - "display_string": [ - "\ue030Android42718925" - ], - "profiles": [], - "name": "\ue030Android42718925", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-24 16:41:32", - "registerOn": 1670261948.7153764, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261948.715377, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670263209.608887, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261948.715387, - "lastIP": "a\u007fk~~ofaiaaie~", - "deviceUUID": "567964f0d775d689b7fd35dfbf1e9d25123b5d79", - "cMsgCount": 0, - "lastMsgTime": 1670263397.8287296, - "lastMsg": "\ud83d\udca9 ", - "cSameMsg": 0 - }, - "pb-IF4UU08TBA==": { - "display_string": [ - "\ue063Commendabl" - ], - "profiles": [], - "name": "\ue063Commendabl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 19:08:05", - "registerOn": 1670262577.1673675, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262577.167368, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670262577.1673772, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670262577.167378, - "lastIP": "a\u007fn~}igai`~vb~l", - "deviceUUID": "f0ce89638c7caec94595aa7ba691f8135c83d10f" - }, - "pb-IF5UU1EaJA==": { - "display_string": [ - "\ue030Android63987522" - ], - "profiles": [], - "name": "\ue030Android63987522", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 04:42:20", - "registerOn": 1670262591.2810163, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262591.2810168, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670262591.2810266, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670262591.2810276, - "lastIP": "f\u007fva\u007fvazh~{", - "deviceUUID": "4f2fea5353fe40b3d3f50086085d9a00b728bd75" - }, - "pb-IF4-VxM9VQ==": { - "display_string": [ - "\ue020TiredApparition30242" - ], - "profiles": [], - "name": "\ue020TiredApparition30242", - "isBan": false, - "isMuted": false, - "accountAge": "2018-07-28 16:32:06", - "registerOn": 1670262616.424632, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262616.4246325, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670262616.4246418, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670262818.9765315, - "lastIP": "i~vavk~~oiaog", - "deviceUUID": "b97c657beb043a11df17c16d5009f6e088d0f497" - }, - "pb-IF5UUxheIg==": { - "display_string": [ - "\ue020DollarHere69" - ], - "profiles": [], - "name": "\ue020DollarHere69", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-18 14:52:29", - "registerOn": 1670262711.9545352, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262711.9545357, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670263206.0221574, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670263894.805953, - "lastIP": "azo~|a~~m~~m`", - "deviceUUID": "44bf293dd1fd065c2a133e8ec510cda328d941df", - "cMsgCount": 0, - "lastMsgTime": 1670264069.7619326, - "lastMsg": "BHEN KE LAND ", - "cSameMsg": 0 - }, - "pb-IF4vUkRaEg==": { - "display_string": [ - "\ue020\u0110\u00c3\u0158\u0136x\u0160\u00ce\u011eM\u0100" - ], - "profiles": [], - "name": "\ue020\u0110\u00c3\u0158\u0136x\u0160\u00ce\u011eM\u0100", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-27 13:44:02", - "registerOn": 1670262752.0439079, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262752.0439084, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295533.540767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295533.540768, - "lastIP": "azo~{i~}mdajg", - "deviceUUID": "\u0015Q_\u0005Q\u0012\u0004\u000fVQ\u0011", - "cMsgCount": 0, - "lastMsgTime": 1670262769.590432, - "lastMsg": "anyone come to bcs epic smash?", - "cSameMsg": 0 - }, - "pb-IF4WUxcgNw==": { - "display_string": [ - "\ue063HipCompany" - ], - "profiles": [], - "name": "\ue063HipCompany", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-22 19:35:53", - "registerOn": 1670262914.968435, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262914.9684355, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314604.1281486, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314604.12815, - "lastIP": "b}k~}kcaoaaifx", - "deviceUUID": "2484cb8eb0af1bb40680e4565238f860274e03a0" - }, - "pb-IF4NU0IzCA==": { - "display_string": [ - "\ue020Naveenkrish010", - "\ue020BurnedGoose4973" - ], - "profiles": [], - "name": "\ue020Naveenkrish010", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-21 22:53:28", - "registerOn": 1670263043.3790493, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263043.3790498, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263043.3790588, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670263043.37906, - "lastIP": "azo~{a~}hfaigy", - "deviceUUID": "8cbf8dc931ac911ca6c7675b57c36fdb08698d8d" - }, - "pb-IF4HUlcgUQ==": { - "display_string": [ - "\ue063AdrenalCha" - ], - "profiles": [], - "name": "\ue063AdrenalCha", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-11 17:32:58", - "registerOn": 1670263148.671265, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263148.6712656, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670272413.2502463, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670273035.4105117, - "lastIP": "d~va\u007fk~|l~{o", - "deviceUUID": "2f88c71ae171757e42db79bd6806e724a6e90204", - "cMsgCount": 0, - "lastMsgTime": 1670263199.353203, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5UU0EkDg==": { - "display_string": [ - "\ue063PainlessVe" - ], - "profiles": [], - "name": "\ue063PainlessVe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-03 12:52:39", - "registerOn": 1670263274.3376331, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263274.3376338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263274.3376408, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670263274.337642, - "lastIP": "azj~z`~~ogaiez", - "deviceUUID": "641a2f073b1e85a22e7456f463b890e78f4be8a7" - }, - "pb-IF4dUxRaIw==": { - "display_string": [ - "\ue063Aaryan9957" - ], - "profiles": [], - "name": "\ue063Aaryan9957", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-10 19:30:59", - "registerOn": 1670263303.484445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263303.484446, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263303.4844553, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670263980.0883124, - "lastIP": "a\u007fk~~`aaa~{`", - "deviceUUID": "d538bbbf3455de4ca22b99f63aa7f00071fa8af6", - "cMsgCount": 0, - "lastMsgTime": 1670264525.1719406, - "lastMsg": "f", - "cSameMsg": 0 - }, - "pb-IF4vU00bAA==": { - "display_string": [ - "\ue020Joydeep98773" - ], - "profiles": [], - "name": "\ue020Joydeep98773", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 19:00:06", - "registerOn": 1670263447.944205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263447.9442055, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263447.944215, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670263447.944216, - "lastIP": "a\u007fn~}hcaid\u007fvb\u007fm", - "deviceUUID": "541cbf0896129baedcdf457c87c03c5d21bd7706" - }, - "pb-IF5TU24NKA==": { - "display_string": [ - "\ue063RichLegacy", - "\ue063ProGamer", - "\ue030PC591402" - ], - "profiles": [], - "name": "\ue063ProGamer", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-12 13:52:43", - "registerOn": 1670263647.0112047, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263647.0112054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336107.3554645, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336107.355466, - "lastIP": "dvvcyvaxn~~a`", - "deviceUUID": "aff7875dd52a7119aaff0c2e491b02634cbd4606", - "cMsgCount": 0, - "lastMsgTime": 1670336208.2433898, - "lastMsg": "sry", - "cSameMsg": 0 - }, - "pb-IF4WUhkcNA==": { - "display_string": [ - "\ue020TorpidSoda28" - ], - "profiles": [], - "name": "\ue020TorpidSoda28", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-18 00:43:48", - "registerOn": 1670263664.0475185, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263664.0475194, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263664.047527, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670267352.9067807, - "lastIP": "a\u007fn~~aealfajb}", - "deviceUUID": "\u0015RTSPLX\u000eQS@V\fRP\u0010\u0003\\PYFWYPYDW" - }, - "pb-IF4OU2xZMQ==": { - "display_string": [ - "\ue030Android61875750" - ], - "profiles": [], - "name": "\ue030Android61875750", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 19:26:31", - "registerOn": 1670264228.566189, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670264228.5661895, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670264228.5661979, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670264228.5661986, - "lastIP": "a\u007fk~}kcaada`h", - "deviceUUID": "\u0015U\t" - }, - "pb-IF4gU0wEDw==": { - "display_string": [ - "\ue020FlyingBrainiac12578" - ], - "profiles": [], - "name": "\ue020FlyingBrainiac12578", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 10:05:37", - "registerOn": 1670264955.4655886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670264955.465589, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670264955.465598, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670264955.4655995, - "lastIP": "dvvcxvb}n~v", - "deviceUUID": "d2efd8aacde477a9262f678f5433c27437ffc6bb" - }, - "pb-IF5QU1JaDQ==": { - "display_string": [ - "\ue063Principlej" - ], - "profiles": [], - "name": "\ue063Principlej", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 09:37:42", - "registerOn": 1670265430.1539268, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670265430.1539273, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670265430.1539366, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670265430.1539378, - "lastIP": "azo~{`~~adajbx", - "deviceUUID": "47fb79173121537a33fbe47ef8ad293c0ad3c1b5" - }, - "pb-IF4SUxIFMA==": { - "display_string": [ - "\ue030Android60235119" - ], - "profiles": [], - "name": "\ue030Android60235119", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-04 15:08:40", - "registerOn": 1670266023.2819886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670266023.281989, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670266023.2819977, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670266023.2819986, - "lastIP": "b\u007fk~~adaafaie}", - "deviceUUID": "406df2ab74f0ff998dcabeaba63bf128d7ccef5d" - }, - "pb-IF4AU00uAg==": { - "display_string": [ - "\ue063Jeffin" - ], - "profiles": [], - "name": "\ue063Jeffin", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 11:08:58", - "registerOn": 1670266229.7237597, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670266229.7237601, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670266229.7237673, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670266229.723768, - "lastIP": "bxvf~vcvva{", - "deviceUUID": "0150328aec7a69913cfe30dac447e803a9800838" - }, - "pb-IF4AU2s9Uw==": { - "display_string": [ - "\ue063Pretentio2" - ], - "profiles": [], - "name": "\ue063Pretentio2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-08 12:19:59", - "registerOn": 1670266540.9127097, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670266540.9127102, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670266540.9127188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670266540.91272, - "lastIP": "dvvcxvb|j~}ie", - "deviceUUID": "d475ea93c04557889768bc057af5319dc6bca105", - "cMsgCount": 0, - "lastMsgTime": 1670266929.3332627, - "lastMsg": "sorry ", - "cSameMsg": 0 - }, - "pb-IF5VUhQgPA==": { - "display_string": [ - "\ue020Nithya1357" - ], - "profiles": [], - "name": "\ue020Nithya1357", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-10 22:18:45", - "registerOn": 1670266809.5008829, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670266809.5008838, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268891.7333245, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670271598.2442653, - "lastIP": "dvvb\u007fn~~kdaiby", - "deviceUUID": "0f2c20877efc3588b07f2388906a504a20a4f7d0" - }, - "pb-IF4-V3IdPA==": { - "display_string": [ - "\ue020CharredFlyer12772" - ], - "profiles": [], - "name": "\ue020CharredFlyer12772", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-17 15:53:11", - "registerOn": 1670267294.4895544, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670267294.489555, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670267294.489564, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670267298.693045, - "lastIP": "dvvc|vb|o~{l", - "deviceUUID": "fb8f448e5f6c9142170c0434c30e9d02d2ea4a57" - }, - "pb-IF42U0VSCA==": { - "display_string": [ - "\ue020Bulletproofdon" - ], - "profiles": [], - "name": "\ue020Bulletproofdon", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 22:05:23", - "registerOn": 1670267698.672845, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670267698.6728451, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268220.3769019, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268220.3769035, - "lastIP": "azo~|k~w`~{j", - "deviceUUID": "d5067234b5565092274a259048f39297ac485197", - "cMsgCount": 1, - "lastMsgTime": 1670268749.7117054, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4TUkkYBw==": { - "display_string": [ - "\ue063Mushroom" - ], - "profiles": [], - "name": "\ue063Mushroom", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-18 23:21:10", - "registerOn": 1670267741.857844, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670267741.8578448, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268210.3498394, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268210.3498406, - "lastIP": "eakhajc~va~i", - "deviceUUID": "394fac9d5122b649ccdb9ba4d6c864f03088854c", - "cMsgCount": 1, - "lastMsgTime": 1670267901.2283986, - "lastMsg": "mate", - "cSameMsg": 0 - }, - "pb-IF4sU00vAg==": { - "display_string": [ - "\ue063NasalDiplo", - "\ue030Android53077044" - ], - "profiles": [], - "name": "\ue063NasalDiplo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 19:56:58", - "registerOn": 1670267982.6740432, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670267982.6740434, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670267982.6740515, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670267982.6740527, - "lastIP": "a\u007fn~~aeai~ya", - "deviceUUID": "0064e951148266470c1c3002ace73185d77510f8" - }, - "pb-IF42U3YILQ==": { - "display_string": [ - "\ue063ColderFore" - ], - "profiles": [], - "name": "\ue063ColderFore", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-22 08:38:00", - "registerOn": 1670268235.7617621, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670268235.7617626, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268235.7617717, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268235.7617729, - "lastIP": "avh~~`gaoeakc", - "deviceUUID": "6aa1346e481304a4d7fba94c90f53e1e93b22d2e", - "cMsgCount": 0, - "lastMsgTime": 1670268244.2990446, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4IUmhYLw==": { - "display_string": [ - "\ue030Android55528459" - ], - "profiles": [], - "name": "\ue030Android55528459", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-23 15:19:38", - "registerOn": 1670268669.2764938, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670268669.2764945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268669.2765048, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268669.276506, - "lastIP": "a\u007fn~}iaaiazva\u007f", - "deviceUUID": "\u0015QXYSE\u0003_W\u0004\u0012\u0002\fUW\u0016V\\UPEX\\YYLX", - "cMsgCount": 0, - "lastMsgTime": 1670268673.6153338, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4jU08vMQ==": { - "display_string": [ - "\ue063Serverr936" - ], - "profiles": [], - "name": "\ue063Serverr936", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 10:12:08", - "registerOn": 1670268813.0861893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670268813.0861897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268813.0861993, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268813.0862, - "lastIP": "azo~{i~}mdaah", - "deviceUUID": "548cce6a079bbda740d03793a1d78e999a4c1fd4" - }, - "pb-IF5VU1ItNg==": { - "display_string": [ - "\ue063SaddestAcr" - ], - "profiles": [], - "name": "\ue063SaddestAcr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 01:03:33", - "registerOn": 1670268824.8145304, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670268824.814531, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268824.8145406, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268824.8145416, - "lastIP": "a\u007fk~~leajbwva~h", - "deviceUUID": "80a5927b6c74f9a1f7c8cd16199e41ed94628989" - }, - "pb-IF4HU1AoFw==": { - "display_string": [ - "\ue030Android63992316" - ], - "profiles": [], - "name": "\ue030Android63992316", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 00:14:48", - "registerOn": 1670268999.7515473, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670268999.7515478, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268999.751557, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268999.7515578, - "lastIP": "a}j~~naanfaia{", - "deviceUUID": "5a3b221e698df0e50686cf61a4fd6c361517dd6c" - }, - "pb-IF4iVHRaXA==": { - "display_string": [ - "\ue020CapDevesh" - ], - "profiles": [], - "name": "\ue020CapDevesh", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-16 18:13:04", - "registerOn": 1670269000.4936824, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670269000.4936829, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269000.493692, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670272184.3953347, - "lastIP": "b}k~~`gaafaie~", - "deviceUUID": "70569d57efce9750d7464728562325edcf1203c6" - }, - "pb-IF4yVWpeMg==": { - "display_string": [ - "\ue020Meharsh1306", - "\ue030Android61717776" - ], - "profiles": [], - "name": "\ue030Android61717776", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-12 19:36:27", - "registerOn": 1670269060.6663125, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670269060.666313, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269060.6663203, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670269060.666321, - "lastIP": "b}k~~`iaidakg", - "deviceUUID": "9fcea12656a90d1fa47701bd113e3f0df1e4bb1e" - }, - "pb-IF4uMkky": { - "display_string": [ - "\ue020\ud808\udc31\uaab3C\u0574\u027e\u0282\u04bd\u056a\ud808\udc31\uaab3", - "\ue020OldenClub66", - "\ue063cursed", - "\ue030Android44803558" - ], - "profiles": [], - "name": "\ue063cursed", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-30 19:35:29", - "registerOn": 1670269534.705363, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670269534.7053635, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269534.7053723, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670269534.7053735, - "lastIP": "avk~}kbakfajdy", - "deviceUUID": "0ad1d379f9a2f3005f16445ceeb35bd587fe3f75" - }, - "pb-IF4-U0c8LA==": { - "display_string": [ - "\ue063ProsaicCre" - ], - "profiles": [], - "name": "\ue063ProsaicCre", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 18:51:38", - "registerOn": 1670269585.6780055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670269585.678006, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269585.678013, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670269607.3032615, - "lastIP": "dvvcyvb}j~}h`", - "deviceUUID": "e97b3a5e7828bf75796dc4f8a4b323e5c5645e62" - }, - "pb-IF4BV1ZfCQ==": { - "display_string": [ - "\ue020\uff22\uff21\uff39\uff2d\uff21\uff38", - "\ue030Android42815279" - ], - "profiles": [], - "name": "\ue020\uff22\uff21\uff39\uff2d\uff21\uff38", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-17 05:09:59", - "registerOn": 1670270264.9288244, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270264.928825, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670270264.9288337, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670270264.9288347, - "lastIP": "a\u007fn~~adakiajaw", - "deviceUUID": "757a2ad0f26b271051938389433213762d24ed76", - "cMsgCount": 0, - "lastMsgTime": 1670270277.9486527, - "lastMsg": "/punch me", - "cSameMsg": 0 - }, - "pb-IF4xU0paHA==": { - "display_string": [ - "\ue020ExpedientApproach60" - ], - "profiles": [], - "name": "\ue063Expedient5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-31 07:19:50", - "registerOn": 1670270532.2592604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270532.259261, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670270532.2592697, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670270532.2592707, - "lastIP": "dzvb}n~|m~~ic", - "deviceUUID": "473879360e0d6d066f88b91464cda01f6c376535" - }, - "pb-IF4DUmYmFg==": { - "display_string": [ - "\ue063Spaz1", - "\ue063TheSpaz", - "\ue030Android55930680", - "\ue030Android62890286", - "\ue030Android63917572" - ], - "profiles": [], - "name": "\ue063Spaz1", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-14 06:23:56", - "registerOn": 1670270557.18025, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270557.1802506, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670270557.1802583, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670270557.180259, - "lastIP": "i~vb{j~~`hanb", - "deviceUUID": "6510374edf57e52981ce2be266308e2c1e6b6d82" - }, - "pb-IF5SVXIHMA==": { - "display_string": [ - "\ue063Arnob007" - ], - "profiles": [], - "name": "\ue063Arnob007", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-31 21:17:47", - "registerOn": 1670270808.0273073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270808.0273082, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670270808.0273182, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670283168.3481822, - "lastIP": "a\u007fk~~maai`{vaxh", - "deviceUUID": "535baeb71cc6acb0e70eb4c2d6ffd356729b1c6e", - "cMsgCount": 0, - "lastMsgTime": 1670283270.5919573, - "lastMsg": "play on blue", - "cSameMsg": 0 - }, - "pb-IF4iU0lSFQ==": { - "display_string": [ - "\ue063Enigmatic7" - ], - "profiles": [], - "name": "\ue063Enigmatic7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-28 00:09:51", - "registerOn": 1670270832.1114368, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270832.1114376, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670270832.1114454, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670272142.2479439, - "lastIP": "dvvb\u007fn~yh~}jh", - "deviceUUID": "cd3fb6202f2623d5fecbad02b7d5df2dac3f51e5" - }, - "pb-IF4-B20v": { - "display_string": [ - "\ue063sena3456" - ], - "profiles": [], - "name": "\ue063sena3456", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-27 11:13:53", - "registerOn": 1670270966.3389475, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270966.3389482, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300631.9559453, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300631.9559467, - "lastIP": "b}k~~`gaia|vav`", - "deviceUUID": "2d44fc4828e6e7583a9f71bebedad64c3bd489b1" - }, - "pb-JiNJARFeXEVGX1hEFE5XXFFDE0lZT1VD": { - "display_string": [ - "\ue020pikachu07001", - "\ue063HageMaaroo", - "\ue030Android15271882" - ], - "profiles": [], - "name": "\ue063HageMaaroo", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-13 11:15:37", - "registerOn": 1670271177.389131, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670271177.3891318, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271177.3891408, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670271177.3891416, - "lastIP": "dvvcxvavm~~i", - "deviceUUID": "32b5fd2662105ff9268651e6ca9f557e0d9803a0", - "cMsgCount": 0, - "lastMsgTime": 1670274175.4552028, - "lastMsg": "yeaaahhh", - "cSameMsg": 0 - }, - "pb-IF4AU2ETLQ==": { - "display_string": [ - "\ue020CongenialLife49", - "\ue030Android61199991" - ], - "profiles": [], - "name": "\ue020CongenialLife49", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-04 21:57:50", - "registerOn": 1670271397.1699944, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670271413.5615344, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271397.1700022, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670271405.517372, - "lastIP": "a\u007fn~~adaii}va\u007fh", - "deviceUUID": "f8c58a3902ed3e2e22976546fea746e4e5fd22cd" - }, - "pb-IF4qU0ocPQ==": { - "display_string": [ - "\ue020SalutaryEnthusiasm23" - ], - "profiles": [], - "name": "\ue020SalutaryEnthusiasm23", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 17:38:04", - "registerOn": 1670271734.3235207, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670271734.3235214, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271734.32353, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670271734.3235307, - "lastIP": "azo~|j~|n~~j", - "deviceUUID": "361e6edad194d9dcd5e70f8b83ad30b89a366b20" - }, - "pb-IF4cVW5cXA==": { - "display_string": [ - "\ue063Heisenber3" - ], - "profiles": [], - "name": "\ue063Heisenber3", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-12 19:01:24", - "registerOn": 1670271861.5134966, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670271861.513497, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271861.5135052, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670271861.513506, - "lastIP": "azo~|l~va~~kg", - "deviceUUID": "c6fd0a31b3e3ca258cb8d6cacdbaba417c57a045" - }, - "pb-IF5WU3oCNg==": { - "display_string": [ - "\ue063InorganicB", - "\ue030Android63010048" - ], - "profiles": [], - "name": "\ue063InorganicB", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-31 12:20:56", - "registerOn": 1670271863.5425, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670271863.5425003, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271863.542507, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670271863.542508, - "lastIP": "dxvbvvayn~~ja", - "deviceUUID": "e0f00d931615664971144af43f9ea26cd3ad9f8f" - }, - "pb-IF4eU1BfJA==": { - "display_string": [ - "\ue063HypnoticTo" - ], - "profiles": [], - "name": "\ue063HypnoticTo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 02:50:14", - "registerOn": 1670271880.6262717, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670271880.6262722, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271880.6262815, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670271880.6262822, - "lastIP": "azj~zo~~lhajcx", - "deviceUUID": "fca8f09b2298675317559d875b05d2d87bcd1f2f" - }, - "pb-IF43U3YTJw==": { - "display_string": [ - "\ue020DisreputableExport28" - ], - "profiles": [], - "name": "\ue020DisreputableExport28", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-22 23:00:10", - "registerOn": 1670272340.3162413, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670272340.3162415, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670272340.3162508, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670272340.316252, - "lastIP": "azo~{a~~jhalf", - "deviceUUID": "a620556129944df7009078d636b07f9c0eda6ec0" - }, - "pb-IF5QU1I8Fw==": { - "display_string": [ - "\ue063zashikibut" - ], - "profiles": [], - "name": "\ue063zashikibut", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 17:22:05", - "registerOn": 1670273234.816197, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670273234.8161976, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670273234.8162081, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670273234.816209, - "lastIP": "awh~~aaajdvva|n", - "deviceUUID": "9ec0513e2640ea8cff6553fac2ab5f94d261ef08" - }, - "pb-IF4yVWg9Jw==": { - "display_string": [ - "\ue063ReptilianL" - ], - "profiles": [], - "name": "\ue063ReptilianL", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-30 21:03:11", - "registerOn": 1670273293.094381, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670273293.0943816, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335770.7557588, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335770.7557604, - "lastIP": "dvvcyvc|vgz", - "deviceUUID": "44cfbd6d791bb8654a172eab47bc640623b2938a" - }, - "pb-IF4DJRkM": { - "display_string": [ - "\ue020VoraciousBoss5149" - ], - "profiles": [], - "name": "\ue020VoraciousBoss5149", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-06 13:39:45", - "registerOn": 1670273453.4133403, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670273453.4133413, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670273453.4133496, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670273453.4133506, - "lastIP": "aakiaoeane", - "deviceUUID": "6c6e76892584138cd876c2a61feea1366dd717e8" - }, - "pb-IF4NV3oIFA==": { - "display_string": [ - "\ue063NaNaJi", - "\ue030Android57361651", - "\ue030Android59829395", - "\ue030Android47779769" - ], - "profiles": [], - "name": "\ue030Android57361651", - "isBan": false, - "isMuted": false, - "accountAge": "2019-01-26 16:32:52", - "registerOn": 1670274069.0163372, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670274069.0163374, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670274069.016347, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670275399.8444836, - "lastIP": "aakhaadaoc", - "deviceUUID": "b402e94a63cebef2cfa290e8f76c5db9d1c96d2c" - }, - "pb-IF4nUkUzNw==": { - "display_string": [ - "\ue030Android57918367" - ], - "profiles": [], - "name": "\ue030Android57918367", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-01 00:57:54", - "registerOn": 1670280021.9998217, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670280021.9998221, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670280021.9998474, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670282338.2371898, - "lastIP": "fvvavl~~i`aof", - "deviceUUID": "\u0015\u0007^P\u0005M\u0007\f" - }, - "pb-IF4JUlUTBg==": { - "display_string": [ - "\ue063PlacidVern", - "\ue030Android58791013" - ], - "profiles": [], - "name": "\ue030Android58791013", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-07 03:59:42", - "registerOn": 1670282129.8213804, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670282129.8213809, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670283282.4488156, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670282129.8213902, - "lastIP": "ay`~}jgaahaib\u007f", - "deviceUUID": "2a28a2b283612858a27b2e3d3ffc69e227689b54", - "cMsgCount": 0, - "lastMsgTime": 1670283282.4487562, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4nUklcBA==": { - "display_string": [ - "\ue030iiRcade3504" - ], - "profiles": [], - "name": "\ue030iiRcade3504", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-15 00:10:18", - "registerOn": 1670282695.2957687, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670282695.29577, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670282695.2957776, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670282695.2957783, - "lastIP": "fyvbzvb{i~}je", - "deviceUUID": "\u0015\u0004ZRQE\u0005]Y\u0007G\u0003\u000e\u0004XB\u0005_SXFPYWYL" - }, - "pb-IF4jU0gA": { - "display_string": [ - "\ue063killlergam", - "\ue030Android63743342" - ], - "profiles": [], - "name": "\ue063killlergam", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-06 11:22:14", - "registerOn": 1670283366.7695243, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670283366.7695248, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670283366.7695327, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670283366.7695334, - "lastIP": "azo~|k~~n~}hc", - "deviceUUID": "76676109d7e03a3c37c8a1409a3f6943262cb530" - }, - "pb-IF4nU1AiKA==": { - "display_string": [ - "\ue063UpstreamLo" - ], - "profiles": [], - "name": "\ue063UpstreamLo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 04:54:31", - "registerOn": 1670284384.132504, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670284384.1325045, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670284384.132514, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670284384.1325154, - "lastIP": "awo~~`daifyva|h", - "deviceUUID": "c13b37c647b994e72617502237f07398fb4f63f3" - }, - "pb-IF4oUksoHw==": { - "display_string": [ - "\ue063RYK999" - ], - "profiles": [], - "name": "\ue063RYK999", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-23 21:16:22", - "registerOn": 1670284599.4241025, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670284599.4241035, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670284599.4241123, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670284599.4241135, - "lastIP": "azo~zh~~k~~ki", - "deviceUUID": "be944e5eb5541db1aedddc3550d0732e5e80c4e5" - }, - "pb-IF4LU2sEPw==": { - "display_string": [ - "\ue063Daksh045", - "\ue030Android59836410" - ], - "profiles": [], - "name": "\ue063Daksh045", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-11 11:44:33", - "registerOn": 1670284804.664925, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670284804.6649258, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670284804.6649346, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670284804.6649356, - "lastIP": "dvvcyvaxvaz", - "deviceUUID": "5cdbe6407936362a2c718e103f0eb1edfeb0b017" - }, - "pb-IF4zUkQkXA==": { - "display_string": [ - "\ue063WarmerTin4", - "\ue030Android57711842" - ], - "profiles": [], - "name": "\ue063WarmerTin4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-28 06:08:01", - "registerOn": 1670286203.8002791, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670286203.8002799, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670286203.800289, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670286203.80029, - "lastIP": "a|`~|n~{n~|h", - "deviceUUID": "8c2685e46eea942a823602a6a362ca78b20f0115" - }, - "pb-IF4WUlMqNw==": { - "display_string": [ - "\ue020kolayali1979" - ], - "profiles": [], - "name": "\ue020kolayali1979", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-27 12:43:05", - "registerOn": 1670286269.0515594, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670286269.0515602, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670286269.051571, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670286269.0515716, - "lastIP": "bxvf~va|va\u007fl", - "deviceUUID": "f8bd824b9b49b7597083a9319c0f99a7de07ae8a" - }, - "pb-IF4UU00fNg==": { - "display_string": [ - "\ue020FormerExodus41" - ], - "profiles": [], - "name": "\ue020FormerExodus41", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 18:53:17", - "registerOn": 1670289308.018164, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670289308.0181649, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670289308.0181746, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670289308.0181763, - "lastIP": "azo~{n~~niamd", - "deviceUUID": "daa56210cabf9e5c167b5779935cee0495760a0f" - }, - "pb-IF5XVBUCFA==": { - "display_string": [ - "\ue020TriesomeComplacency" - ], - "profiles": [], - "name": "\ue020TriesomeComplacency", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-01 20:21:26", - "registerOn": 1670291352.5831916, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670291352.583192, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670291352.5832012, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670291352.5832021, - "lastIP": "a\u007fn~~agaiavvb~j", - "deviceUUID": "474d8d6b2ca1f0ce01b00b7e7129fc6bbb749c2c" - }, - "pb-IF4sVGohKw==": { - "display_string": [ - "\ue020RelativeCompass6" - ], - "profiles": [], - "name": "\ue020RelativeCompass6", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-12 21:06:32", - "registerOn": 1670292145.3115203, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670292145.3115208, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292145.3115304, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292145.3115313, - "lastIP": "a\u007fk~~h~}jeaie\u007f", - "deviceUUID": "0ee7a8711bab10bd6adc0d46aa008c621ba84083" - }, - "pb-IF4TAXlc": { - "display_string": [ - "\ue063Savage2098" - ], - "profiles": [], - "name": "\ue063Savage2098", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-27 21:09:25", - "registerOn": 1670292356.2725449, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670292356.2725453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292356.2725542, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292356.2725554, - "lastIP": "bxvf|vb}m~~me", - "deviceUUID": "35e37beb741abe75c098c0b67ab3ae85434adf7e" - }, - "pb-IF41U04SEA==": { - "display_string": [ - "\ue020UndisguisedManiac20" - ], - "profiles": [], - "name": "\ue020UndisguisedManiac20", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 15:56:33", - "registerOn": 1670292408.4293582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670292408.4293592, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292408.4293668, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292408.4293678, - "lastIP": "azo~{l~~abaicy", - "deviceUUID": "8f62a52e479d9eb1e6031223eaf4df2235316f2e" - }, - "pb-IF5QUhgZ": { - "display_string": [ - "\ue063MOSSIMOCIR", - "\ue030Android16808764" - ], - "profiles": [], - "name": "\ue063MOSSIMOCIR", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-17 16:29:24", - "registerOn": 1670294858.633466, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670294858.6334667, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670294858.6334772, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670294858.6334777, - "lastIP": "a~i~vj~xm~\u007f", - "deviceUUID": "d56940cab4aefde1afb2d8c25463f0965696e246" - }, - "pb-IF4WVUZfPA==": { - "display_string": [ - "\ue030Android51495626" - ], - "profiles": [], - "name": "\ue030Android51495626", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-18 20:29:17", - "registerOn": 1670295209.747189, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295209.7471898, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295209.7471986, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295209.7471995, - "lastIP": "azo~{j~}hhajcx", - "deviceUUID": "882b5976b4330cf9b82b621eb4c2a20f66484cfb" - }, - "pb-IF4RU2U6Cg==": { - "display_string": [ - "\ue063WesternSpo", - "\ue030Android63855477" - ], - "profiles": [], - "name": "\ue063WesternSpo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-15 10:56:30", - "registerOn": 1670295258.8824947, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295258.8824954, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295258.8825057, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295258.8825066, - "lastIP": "dvvc}vb|i~|l", - "deviceUUID": "36669770d666ce59b6e92f0ded9d50a63ab9c95f" - }, - "pb-IF40U0oIEw==": { - "display_string": [ - "\ue020UnmodifiedApplause51" - ], - "profiles": [], - "name": "\ue020UnmodifiedApplause51", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 00:34:32", - "registerOn": 1670295468.693306, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295468.6933062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295468.6933136, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295468.6933143, - "lastIP": "b\u007fh~~iiaig{vfx", - "deviceUUID": "634fa20f29aff47c3c475802d032ae5127db56a1" - }, - "pb-IF4dU0QGEw==": { - "display_string": [ - "\ue030Linux53436" - ], - "profiles": [], - "name": "\ue030Linux53436", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-01 23:48:01", - "registerOn": 1670295625.204024, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295625.2040246, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295625.2040324, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670299178.7410796, - "lastIP": "b\u007fj~zh~zj~~md", - "deviceUUID": "\u0018X\u000bT\u0003ET\u000eYLE\u0004XXL@YU" - }, - "pb-IF4oUkQSLg==": { - "display_string": [ - "\ue063HouseholdW" - ], - "profiles": [], - "name": "\ue063HouseholdW", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-30 13:58:07", - "registerOn": 1670295718.525807, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295718.5258074, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295718.5258148, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295718.5258155, - "lastIP": "azo~{n~y`~~ad", - "deviceUUID": "c51646305eabfb6264c880de4fffdea10e84b772" - }, - "pb-IF5XLHle": { - "display_string": [ - "\ue063LightJabbe" - ], - "profiles": [], - "name": "\ue063LightJabbe", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-04 11:37:59", - "registerOn": 1670295766.6989522, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295766.6989527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295766.6989617, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295766.6989625, - "lastIP": "dvvc{vaz`~~ib", - "deviceUUID": "e90db5e0bc1a1503eda6a9b84c3a9cc67f8a4475" - }, - "pb-IF4-U08PBw==": { - "display_string": [ - "\ue063Freshwate9" - ], - "profiles": [], - "name": "\ue063Freshwate9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 11:08:53", - "registerOn": 1670295999.8783853, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295999.8783863, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295999.8783958, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295999.8783972, - "lastIP": "a~n~y`~~i`aia", - "deviceUUID": "09cc94f10ef01fd14d8a30a4677f99725e1380b6" - }, - "pb-IF5TU1A9Pw==": { - "display_string": [ - "\ue020jonhjonh55ph" - ], - "profiles": [], - "name": "\ue020jonhjonh55ph", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 17:51:50", - "registerOn": 1670296004.565949, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670296004.5659494, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296004.5659583, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296004.5659592, - "lastIP": "b\u007fa~|m~~ngaie~", - "deviceUUID": "b8137cd2b5757b683a3dcbfbbb603f2416e3be55" - }, - "pb-IF4CU0Y5Ew==": { - "display_string": [ - "\ue063RetailMidn" - ], - "profiles": [], - "name": "\ue063RetailMidn", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 12:51:18", - "registerOn": 1670296306.7613952, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670296306.7613957, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296306.761405, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296306.761406, - "lastIP": "a~h~}jgai~z`", - "deviceUUID": "b9504aedda301439ceb7a6112a00648fc7da6bf3" - }, - "pb-IF4eU3gDFw==": { - "display_string": [ - "\ue063Courageou5" - ], - "profiles": [], - "name": "\ue063Courageou5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-29 19:37:24", - "registerOn": 1670296746.3660696, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670296746.3660698, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296746.3660772, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296746.3660781, - "lastIP": "azo~{a~~lcaie", - "deviceUUID": "7d09e0d3a4d367c9ed7375eaf3f096342f007c4d" - }, - "pb-IF4FU01cHw==": { - "display_string": [ - "\ue020\u1d00\u1d0d\u1d00\u02747", - "\ue030Android63880249", - "\ue030Android63880268", - "\ue030Android63894496", - "\ue030Android63880281" - ], - "profiles": [], - "name": "\ue020\u1d00\u1d0d\u1d00\u02747", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 17:46:51", - "registerOn": 1670296803.6004646, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670296803.600465, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296803.600474, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670297006.0368886, - "lastIP": "a|o~vo~~jbai`x", - "deviceUUID": "3a4f95ad4ef041aeb018074e8dd270ef2e74a3d5", - "cMsgCount": 1, - "lastMsgTime": 1670296877.657231, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4-VE0nPA==": { - "display_string": [ - "\ue063HEAVENRIDE" - ], - "profiles": [], - "name": "\ue063HEAVENRIDE", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-04 11:44:51", - "registerOn": 1670297022.3904085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670297022.3904092, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670297022.3904185, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670297040.1599576, - "lastIP": "b\u007fj~~o`aj`xva~i", - "deviceUUID": "146ce445a35400edacd772cc56e8cd9b438ab742" - }, - "pb-IF49U08ZDw==": { - "display_string": [ - "\ue063nrzimaffh" - ], - "profiles": [], - "name": "\ue063nrzimaffh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 08:41:58", - "registerOn": 1670297659.692009, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670297659.6920092, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670297659.6920168, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670297659.6920183, - "lastIP": "awk~~oaaibzvazn", - "deviceUUID": "841b8ca8606b1d8e38a5c4eea6c76033e375e414" - }, - "pb-IF4HUlMxVw==": { - "display_string": [ - "\ue030Android59278796" - ], - "profiles": [], - "name": "\ue030Android59278796", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-29 06:20:38", - "registerOn": 1670297915.598618, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670297915.5986185, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670297915.5986273, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670297915.5986283, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF5UU1EBLw==": { - "display_string": [ - "\ue063VelvetyOff", - "\ue030Android59165348" - ], - "profiles": [], - "name": "\ue063VelvetyOff", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 12:31:22", - "registerOn": 1670298211.9893699, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298211.9893703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298211.9893782, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298211.9893794, - "lastIP": "a~n~}hfak`alc", - "deviceUUID": "6a9d400a49e9d8a6d1ce55b158d778b6f372480d" - }, - "pb-IF5RU1ESNQ==": { - "display_string": [ - "\ue063ThankfulRh" - ], - "profiles": [], - "name": "\ue063ThankfulRh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 14:05:27", - "registerOn": 1670298335.113274, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298335.1132746, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298335.1132834, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298335.1132843, - "lastIP": "hxvb{k~zj~~lh", - "deviceUUID": "85a4fd0dfc0aea505819231cb74a3c574a1e5164" - }, - "pb-IF4HU04CUA==": { - "display_string": [ - "\ue030Android63930725" - ], - "profiles": [], - "name": "\ue030Android63930725", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 00:28:46", - "registerOn": 1670298396.289418, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298396.2894185, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298396.2894263, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298396.2894275, - "lastIP": "a\u007fn~}hfaifwvavl", - "deviceUUID": "511232bb8342effbc2ae4ee2b06d7650ca16e1f3" - }, - "pb-IF4BU0EsIg==": { - "display_string": [ - "\ue030Android63294581" - ], - "profiles": [], - "name": "\ue030Android63294581", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 16:51:32", - "registerOn": 1670298412.3413033, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298412.3413038, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298412.3413136, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298412.3413146, - "lastIP": "a|o~vo~y`~~kb", - "deviceUUID": "804cfefd19245f772b73fe8d48fc0bd9df48fbb7" - }, - "pb-IF4xU0QYPw==": { - "display_string": [ - "\ue063VelourLigh" - ], - "profiles": [], - "name": "\ue063VelourLigh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 18:46:32", - "registerOn": 1670298477.0726714, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298477.072672, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298477.0726805, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298477.0726814, - "lastIP": "a\u007fn~}hcaibwvb\u007fn", - "deviceUUID": "250c2c30fb4d97233507f7f6862bc2212f8307f4" - }, - "pb-IF4cU0NdDw==": { - "display_string": [ - "\ue063ALAMINMIZI" - ], - "profiles": [], - "name": "\ue063ALAMINMIZI", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-20 16:51:03", - "registerOn": 1670298915.1077976, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298915.107798, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298915.107805, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298915.1078055, - "lastIP": "a\u007fk~~khajda`f", - "deviceUUID": "87df283df9a52ee9e0667773c8ef609765b8afd2" - }, - "pb-IF4pU0c-NQ==": { - "display_string": [ - "\ue020TraditionalNarrator9" - ], - "profiles": [], - "name": "\ue020TraditionalNarrator9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-13 13:45:24", - "registerOn": 1670299032.5436296, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299032.5436304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299032.5436392, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299032.5436404, - "lastIP": "azo~{i~}mdajc~", - "deviceUUID": "11b10d0cb8bd1f703dc24638b8c51bccee3ba51c" - }, - "pb-IF5UU0dfBw==": { - "display_string": [ - "\ue030Android63564565" - ], - "profiles": [], - "name": "\ue030Android63564565", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-01 21:36:31", - "registerOn": 1670299313.514224, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299313.5142243, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324268.265627, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670324268.2656286, - "lastIP": "azo~{m~~ncao", - "deviceUUID": "ad02e5da16c68b233d860e1c351e370be5a2170f" - }, - "pb-IF4WUxAIEg==": { - "display_string": [ - "\ue020IrreverentLand33", - "\ue030Android60020707" - ], - "profiles": [], - "name": "\ue020IrreverentLand33", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-26 09:34:08", - "registerOn": 1670299388.7772841, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299388.7772846, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299388.7772946, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299388.7772956, - "lastIP": "a\u007fk~~kdajbyvb|a", - "deviceUUID": "601b5c8fb825c5f8aea8196e5deb6995f43b858b" - }, - "pb-IF4wUxkNHA==": { - "display_string": [ - "\ue063DeviantSum" - ], - "profiles": [], - "name": "\ue063DeviantSum", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-30 12:13:49", - "registerOn": 1670299395.8202848, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299395.8202856, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299395.820293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299395.820294, - "lastIP": "bxveaid~vazm", - "deviceUUID": "378189d9a60c020fffc9aad3a42061517bc533a1" - }, - "pb-IF4tUmo9VQ==": { - "display_string": [ - "\ue020sunilu338" - ], - "profiles": [], - "name": "\ue020sunilu338", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-01 12:18:31", - "registerOn": 1670299431.9521782, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299431.9521792, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299431.952188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299431.952189, - "lastIP": "azo~zi~~laaj", - "deviceUUID": "72005d1e007852357191b033dae4b9aca087c883" - }, - "pb-IF5dVUQGIQ==": { - "display_string": [ - "\ue020racetracker7738" - ], - "profiles": [], - "name": "\ue020racetracker7738", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-29 13:47:34", - "registerOn": 1670299747.05083, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299747.0508301, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299747.0508385, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299747.0508392, - "lastIP": "b}k~~`daif\u007fva~`", - "deviceUUID": "e4636f0bc1a6fb8ca30c01a65dc307c0aa037eb9" - }, - "pb-IF4lU0xTVQ==": { - "display_string": [ - "\ue020RattlingKestrel49176" - ], - "profiles": [], - "name": "\ue020RattlingKestrel49176", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 15:31:59", - "registerOn": 1670299926.7603722, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299926.7603729, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299926.7603843, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299926.7603853, - "lastIP": "b}k~~`baii|va", - "deviceUUID": "df51fc71cdb276b9393a916700bd291474f87fc4", - "cMsgCount": 0, - "lastMsgTime": 1670304459.0297408, - "lastMsg": "noops", - "cSameMsg": 0 - }, - "pb-IF4QUmRTFQ==": { - "display_string": [ - "\ue020KINGTN50" - ], - "profiles": [], - "name": "\ue020KINGTN50", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-06 09:22:01", - "registerOn": 1670300081.3034122, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300081.3034127, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300081.303422, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670308964.571488, - "lastIP": "b}k~~`gaiazvb|i", - "deviceUUID": "5e5762908041164c3a97ea8f408c36ed7b6869a5", - "cMsgCount": 0, - "lastMsgTime": 1670309951.0305045, - "lastMsg": "gg", - "cSameMsg": 0 - }, - "pb-IF4qVWIpPw==": { - "display_string": [ - "\ue020WanShell8996", - "\ue030Android58269418" - ], - "profiles": [], - "name": "\ue020WanShell8996", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-14 19:38:33", - "registerOn": 1670300135.52084, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300135.5208404, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300135.5208497, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300135.5208504, - "lastIP": "azo~zi~xh~}ib", - "deviceUUID": "08dad59ccd24a1eb0e65582d5ff666ef33972cc3" - }, - "pb-IF4AVWkcHQ==": { - "display_string": [ - "\ue021Maneesh_Royal", - "\ue030Mac212342" - ], - "profiles": [], - "name": "\ue021Maneesh_Royal", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-09 09:06:26", - "registerOn": 1670300385.4284744, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300385.4284754, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300385.4284832, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300385.4284842, - "lastIP": "awj~xi~~nbaig\u007f", - "deviceUUID": "\u0019V(WW1X]YLCW+QLA%+ULLXTUL6Y+UQ@TX%UBWURSGQ^UXC" - }, - "pb-IF4NUmY5Nw==": { - "display_string": [ - "\ue063Stochasti4", - "\ue030Android55430726" - ], - "profiles": [], - "name": "\ue063Stochasti4", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-18 20:43:37", - "registerOn": 1670300454.0055792, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300454.00558, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300454.0055907, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670306037.8867946, - "lastIP": "a\u007fk~~maaihwvb|j", - "deviceUUID": "a9026bd8027c24ea79e799177c4cf6c391b7d50d", - "cMsgCount": 0, - "lastMsgTime": 1670303992.8433242, - "lastMsg": "uff nooboli", - "cSameMsg": 0 - }, - "pb-IF4LVWEDKQ==": { - "display_string": [ - "\ue020Selvapravin6667" - ], - "profiles": [], - "name": "\ue020Selvapravin6667", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-12 17:35:58", - "registerOn": 1670300843.003842, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300843.0038428, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300843.0038502, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300843.0038512, - "lastIP": "azo~{n~~h`aid}", - "deviceUUID": "\u0015\u0002[XP\u0012UZ\u0005\u0005D\u0004TP\u0002BW[TYCS\\WRB" - }, - "pb-IF4dU3gqNQ==": { - "display_string": [ - "\ue030Android62237299", - "\ue030Android63018018", - "\ue030Android63018191" - ], - "profiles": [], - "name": "\ue030Android62237299", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-30 12:29:32", - "registerOn": 1670300890.3823156, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300890.382316, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300890.3823235, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300890.3823245, - "lastIP": "a|o~vo~xa~~`c", - "deviceUUID": "24945428d4f1357961543a88a592fe91ca9fb7cf" - }, - "pb-IF4tVW0OVw==": { - "display_string": [ - "\ue063soulwalker" - ], - "profiles": [], - "name": "\ue063soulwalker", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-09 17:09:14", - "registerOn": 1670300904.1844368, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300904.1844373, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300904.184445, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670305054.317749, - "lastIP": "a\u007fn~}hfajazve|", - "deviceUUID": "ef2ed0c2718eca5308ec64835c7535ad3a982a9d" - }, - "pb-IF4gV24qCQ==": { - "display_string": [ - "\ue063ScarredLab", - "\ue030Android29025944" - ], - "profiles": [], - "name": "\ue063ScarredLab", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-24 21:36:13", - "registerOn": 1670301128.2271342, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301128.2271347, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301128.227143, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301128.2271442, - "lastIP": "azo~{o~zi~~lc", - "deviceUUID": "c7f3ebf8f9182f6ad95f1725f8341f1570999c4a" - }, - "pb-IF4eUk0vIA==": { - "display_string": [ - "\ue063DEVILLEAGE" - ], - "profiles": [], - "name": "\ue063DEVILLEAGE", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-03 13:50:10", - "registerOn": 1670301163.2939541, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301163.2939546, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301163.2939625, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301163.2939634, - "lastIP": "azj~zo~~afame", - "deviceUUID": "dac515cb6a206784eb54887549785d5a1a66d5c4" - }, - "pb-IF4cU20TMw==": { - "display_string": [ - "\ue020RamblingLemon85370" - ], - "profiles": [], - "name": "\ue020RamblingLemon85370", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 00:38:49", - "registerOn": 1670301200.2688026, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301200.2688031, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301200.2688131, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301200.268814, - "lastIP": "cxva~i~}jbaiay", - "deviceUUID": "97218163a0346a3648c5fe92383582185b7fffca" - }, - "pb-IF4oVEYEDg==": { - "display_string": [ - "\ue030Android42142043" - ], - "profiles": [], - "name": "\ue030Android42142043", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-03 20:38:48", - "registerOn": 1670301278.6123943, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301278.6123948, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301278.6124105, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301278.6124117, - "lastIP": "dvvc|vb~o~}ld", - "deviceUUID": "74948e86820d57ae17645f4d8df8ef11bd2d6cbf" - }, - "pb-IF4QUxM-Bg==": { - "display_string": [ - "\ue020DrearyPromotion20", - "\ue030Android63600088" - ], - "profiles": [], - "name": "\ue020DrearyPromotion20", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-08 17:28:43", - "registerOn": 1670301735.20969, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301735.2096906, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301735.2096994, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301735.2097003, - "lastIP": "azo~{o~}va{`", - "deviceUUID": "d253caf7ca78ab7fa2f2b3e848739a64b02d5447" - }, - "pb-JiNJARBYUkpJWFhFEEFRVlFAGUJWTlhG": { - "display_string": [ - "\ue020sumonthedon", - "\ue030Android14301911" - ], - "profiles": [], - "name": "\ue020sumonthedon", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-11 11:57:52", - "registerOn": 1670301743.2972598, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301743.2972603, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301743.2972686, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301743.2972696, - "lastIP": "dxvbvvaym~~nd", - "deviceUUID": "aef9ee976dd9b52c5a5203d09b6a42bc2b60ced7" - }, - "pb-IF4xU3YvAw==": { - "display_string": [ - "\ue063BYMRSTRIPE" - ], - "profiles": [], - "name": "\ue063BYMRSTRIPE", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 16:08:03", - "registerOn": 1670301778.694383, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301778.6943836, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301778.6943939, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301778.6943946, - "lastIP": "a|n~~mhamaaicx", - "deviceUUID": "58ce08b6bd6b07afdfee4cfeaca29b21d6773984" - }, - "pb-IF40U09YVQ==": { - "display_string": [ - "\ue063genesisarb" - ], - "profiles": [], - "name": "\ue063genesisarb", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 04:15:05", - "registerOn": 1670301892.8078194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301892.8078198, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301892.8078275, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301892.8078284, - "lastIP": "b}k~}m~yj~~h", - "deviceUUID": "588938d990d7f3f93b8dbd0293b080b791778d58" - }, - "pb-IF5TU20EMg==": { - "display_string": [ - "\ue063Symmetric9" - ], - "profiles": [], - "name": "\ue063Symmetric9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-09 18:14:52", - "registerOn": 1670301904.3045359, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301904.3045363, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301904.304547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301904.3045483, - "lastIP": "a\u007fi~x`~~hgana", - "deviceUUID": "832a236ae9245681fbacf9ac34bfee140e821682", - "cMsgCount": 0, - "lastMsgTime": 1670302422.1730607, - "lastMsg": "stfu", - "cSameMsg": 0 - }, - "pb-IF4cU0EGCQ==": { - "display_string": [ - "\ue030Android63310192" - ], - "profiles": [], - "name": "\ue030Android63310192", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-14 16:03:15", - "registerOn": 1670301987.1924949, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301987.1924953, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301987.1925037, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301987.1925046, - "lastIP": "azj~zo~}heajd\u007f", - "deviceUUID": "c3e8e82827eff72f8c4eaf6d00fa7c9cec083779" - }, - "pb-IF4QU0spDA==": { - "display_string": [ - "\ue030Android63814438" - ], - "profiles": [], - "name": "\ue030Android63814438", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 04:23:36", - "registerOn": 1670302293.6715863, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670302293.6715868, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670302293.6715944, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670302293.671595, - "lastIP": "a~k~}iaaicyvgz", - "deviceUUID": "\u0015U\u000b" - }, - "pb-IF5cUlYRVg==": { - "display_string": [ - "\ue030PC437906" - ], - "profiles": [], - "name": "\ue030PC437906", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-03 12:56:57", - "registerOn": 1670303444.7722914, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670303444.7722921, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670303444.7723005, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670303444.7723017, - "lastIP": "axm~~haai`zva|o", - "deviceUUID": "4499a7bc6c46503367b6b970ea2fd32929853488" - }, - "pb-IF4IVU9bLA==": { - "display_string": [ - "\ue063QuackingC2" - ], - "profiles": [], - "name": "\ue063QuackingC2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-06 20:56:51", - "registerOn": 1670304194.5509522, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670304194.5509527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318553.9322767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318553.9322789, - "lastIP": "a\u007fn~~acajdvvb~a", - "deviceUUID": "42235a42b0eb397344bff7f04fc2193c69823b01" - }, - "pb-IF4RUmEvJw==": { - "display_string": [ - "\ue020GreedyMorale41" - ], - "profiles": [], - "name": "\ue020GreedyMorale41", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-18 20:11:24", - "registerOn": 1670304387.5745735, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670304387.5745742, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670304387.5745826, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670304387.5745835, - "lastIP": "azo~zi~~i`aifz", - "deviceUUID": "079a5d17869e30a5bf6185ad645bda2f3dc923b2" - }, - "pb-IF4hU2oFDg==": { - "display_string": [ - "\ue063Sabarishku", - "\ue030Android61660888" - ], - "profiles": [], - "name": "\ue063Sabarishku", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-09 12:35:31", - "registerOn": 1670304394.6752644, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670304394.6752646, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330330.6414428, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330330.6414442, - "lastIP": "b}k~~oha`dajbw", - "deviceUUID": "48f8b234e08b43924ffabea6710a141c1641c637" - }, - "pb-IF4hVWspFw==": { - "display_string": [ - "\ue063VIPINmMAIP", - "\ue030Android48516695" - ], - "profiles": [], - "name": "\ue063VIPINmMAIP", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-26 19:37:07", - "registerOn": 1670304415.697727, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670304415.6977274, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670304547.9136066, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670304415.6977358, - "lastIP": "azo~{l~~odaie~", - "deviceUUID": "c85f53e285fe87baaf6e34227889fb2b323ec403", - "cMsgCount": 0, - "lastMsgTime": 1670304547.913538, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4nU3EhMg==": { - "display_string": [ - "\ue020NiNJAMAN1267" - ], - "profiles": [], - "name": "\ue020NiNJAMAN1267", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-29 16:50:38", - "registerOn": 1670304794.0863807, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670304794.0863812, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670304794.0863922, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670304804.490444, - "lastIP": "azo~{m~~hiaiav", - "deviceUUID": "1e3d9b390331b60998ad74b3275964096476c013" - }, - "pb-IF4cU0c5Fw==": { - "display_string": [ - "\ue020EnviousIngredient43" - ], - "profiles": [], - "name": "\ue020EnviousIngredient43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 18:41:53", - "registerOn": 1670306092.398657, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670306092.3986576, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306092.398666, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670310244.6684575, - "lastIP": "dvvc{vg\u007fvazl", - "deviceUUID": "9bc22fb3a206de3d5844fd8f1b9cf611dbd448f2" - }, - "pb-IF4gMxke": { - "display_string": [ - "\ue020NaughtyFly91019", - "\ue030Android18304089" - ], - "profiles": [], - "name": "\ue020NaughtyFly91019", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-01 14:42:05", - "registerOn": 1670306300.3355408, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670306300.3355412, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306300.3355827, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306300.3355834, - "lastIP": "a|o~vo~~hbao`", - "deviceUUID": "45e0fab38307da53d605f05aef07811e5d4d5d07" - }, - "pb-IF4TU3k5Pw==": { - "display_string": [ - "\ue020RegularCensus17" - ], - "profiles": [], - "name": "\ue020RegularCensus17", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-03 20:13:26", - "registerOn": 1670306400.6369991, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670306400.6369998, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306400.63701, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306400.6370113, - "lastIP": "a}h~~`ha`fajb", - "deviceUUID": "049e993a660c8c3e1d99c717d13dbff4bd4769b0" - }, - "pb-IF4WVU9TLg==": { - "display_string": [ - "\ue020FrontPlane24", - "\ue030Android52482648" - ], - "profiles": [], - "name": "\ue020FrontPlane24", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-06 12:23:37", - "registerOn": 1670306906.515705, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670306906.5157056, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306906.5157146, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306906.5157154, - "lastIP": "a\u007fn~}heaje{vaxl", - "deviceUUID": "e76b1195c1d624aa8f49cc55ea5390708af245a0" - }, - "pb-IF4RU1ApMQ==": { - "display_string": [ - "\ue063Inconside6" - ], - "profiles": [], - "name": "\ue063Inconside6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 18:35:07", - "registerOn": 1670306948.8011086, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670306948.801109, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306948.8012843, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306948.8012853, - "lastIP": "a\u007fn~}hdaif\u007fvb}i", - "deviceUUID": "958b5b8100344c06130f157ad2b8f896b74f62f8" - }, - "pb-IF4lU00yCQ==": { - "display_string": [ - "\ue020GOJOSATURO77" - ], - "profiles": [], - "name": "\ue020GOJOSATURO77", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 09:38:51", - "registerOn": 1670307164.4858367, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307164.4858372, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318011.958812, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318011.9588134, - "lastIP": "a\u007fn~}icaja|vhv", - "deviceUUID": "fe658e85791386351b5ac17a5bc6f0e9c0c517b3" - }, - "pb-IF4oU1BZHQ==": { - "display_string": [ - "\ue030Android63993813" - ], - "profiles": [], - "name": "\ue030Android63993813", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 05:57:43", - "registerOn": 1670307406.5391788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307406.5391793, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307406.5391867, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307406.5391874, - "lastIP": "a}m~{j~~ndaaf", - "deviceUUID": "860a2dd0bf7bd0715c4f5d35daf6bfd65aa97ca9" - }, - "pb-IF4PU08NCg==": { - "display_string": [ - "\ue063BelatedDir" - ], - "profiles": [], - "name": "\ue063BelatedDir", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 19:08:59", - "registerOn": 1670307411.5568461, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307411.5568464, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307411.5568545, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670309359.9600542, - "lastIP": "dxvbvvaya~}hb", - "deviceUUID": "6602daa1802bbdbaa88c5e46ae1dab6999aacb1a" - }, - "pb-IF4cUxYIHw==": { - "display_string": [ - "\ue063AnuragRdav", - "\ue030Android60597659" - ], - "profiles": [], - "name": "\ue063AnuragRdav", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-20 16:06:53", - "registerOn": 1670307455.0994327, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307455.0994334, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307455.0994432, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307455.0994442, - "lastIP": "azo~{n~~leaif~", - "deviceUUID": "ceb430a12b5577f83ca5d1a3a8c2e6e35270db62" - }, - "pb-IF4IUhMeFg==": { - "display_string": [ - "\ue020ChargeableEmployer42", - "\ue030Android51692373" - ], - "profiles": [], - "name": "\ue020ChargeableEmployer42", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-21 14:32:50", - "registerOn": 1670307609.3040333, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307609.3040338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307609.304043, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307609.3040442, - "lastIP": "a|o~vo~vn~~oe", - "deviceUUID": "9233ca52ce0ea7918aedde69f81a50ab9d9dd4b5" - }, - "pb-IF5cU00uPA==": { - "display_string": [ - "\ue020kabilandonnn" - ], - "profiles": [], - "name": "\ue020kabilandonnn", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-05 16:19:47", - "registerOn": 1670307632.3806927, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307632.3806932, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307632.3807015, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307632.3807025, - "lastIP": "a~k~|h~~ogan", - "deviceUUID": "b4c6eb62d30bc46e039b2d74007b83598778d7ed" - }, - "pb-IF4OU08bPw==": { - "display_string": [ - "\ue063soapeater2" - ], - "profiles": [], - "name": "\ue063soapeater2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 21:47:36", - "registerOn": 1670307967.1292272, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307967.1292276, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307967.1292343, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307967.1292355, - "lastIP": "a|n~~mhakeamd", - "deviceUUID": "3261484452d68b6f502eb030867a35afddfd7bb0" - }, - "pb-IF5TUkoOHw==": { - "display_string": [ - "\ue020SriramHULK786" - ], - "profiles": [], - "name": "\ue020SriramHULK786", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-08 15:13:25", - "registerOn": 1670308377.184237, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670308377.1842375, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308377.1842446, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308377.1842456, - "lastIP": "azo~{o~~jeajc|", - "deviceUUID": "f1d8342558a186863b1b466265d7c3cf97723505" - }, - "pb-IF4oU0suEQ==": { - "display_string": [ - "\ue063UnsoldHen2" - ], - "profiles": [], - "name": "\ue063UnsoldHen2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 21:01:43", - "registerOn": 1670308443.3720107, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670308443.3720114, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308443.3720212, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308443.372022, - "lastIP": "azo~{j~}k`aje{", - "deviceUUID": "4758e969059949030ce1067862e8ffa4b064aabd" - }, - "pb-IF5TU1EaVQ==": { - "display_string": [ - "\ue063OpulentPre" - ], - "profiles": [], - "name": "\ue063OpulentPre", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:06:11", - "registerOn": 1670308695.506506, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670308695.5065064, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308695.5065153, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308695.5065162, - "lastIP": "azo~{m~~lcajbv", - "deviceUUID": "5512e4b36f90b95a9e50a0c3315343c8f4b6e066" - }, - "pb-IF4sUm0zIg==": { - "display_string": [ - "\ue020TOMCYTHAMPY" - ], - "profiles": [], - "name": "\ue020TOMCYTHAMPY", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-19 12:56:28", - "registerOn": 1670308703.735085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670308703.7350855, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308703.735095, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308703.7350957, - "lastIP": "bxvf}va\u007fh~xa", - "deviceUUID": "a5eabea99d7140a84b7ad962e4fb41e6b9710b3a" - }, - "pb-IF4nVRURUw==": { - "display_string": [ - "\ue063RanDD9322" - ], - "profiles": [], - "name": "\ue063RanDD9322", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-09 08:38:24", - "registerOn": 1670309027.1568592, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309027.1568596, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309027.1568677, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309027.1568687, - "lastIP": "cyvhzvc{vb\u007fh", - "deviceUUID": "65eeef62d88d84538f3c92c503d9328bcc24a548" - }, - "pb-IF4-U08NVQ==": { - "display_string": [ - "\ue063HolyCowMan", - "\ue030Android50424197" - ], - "profiles": [], - "name": "\ue063HolyCowMan", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 14:52:40", - "registerOn": 1670309099.4052029, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309099.4052038, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309099.4052138, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309099.4052148, - "lastIP": "awh~~aaakfaiix", - "deviceUUID": "7d1f9a6a91894be0696437fbcc1922d535d9da69" - }, - "pb-IF5VU1E5Kg==": { - "display_string": [ - "\ue030Android63956969" - ], - "profiles": [], - "name": "\ue030Android63956969", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 15:50:59", - "registerOn": 1670309217.1351027, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309217.1351035, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309217.1351132, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309217.1351142, - "lastIP": "aakhajayva\u007fo", - "deviceUUID": "63463169da33dd578888c06001bd90a71bedd337" - }, - "pb-JiNJARBdUUpEXV1AFkRVUVZHGUJdQ1NC": { - "display_string": [ - "\ue063pankajveru" - ], - "profiles": [], - "name": "\ue063pankajveru", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-24 15:07:42", - "registerOn": 1670309316.1460047, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309316.1460052, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309316.1460147, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309316.1460156, - "lastIP": "a\u007fn~}icanfaic}", - "deviceUUID": "0fa9c891a84990b8d022ff4e7315d6955e5c18e0" - }, - "pb-IF41Unk7Dw==": { - "display_string": [ - "\ue063Milenuyir", - "\ue030Android56348867" - ], - "profiles": [], - "name": "\ue063Milenuyir", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-09 11:43:13", - "registerOn": 1670309613.421994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309613.4219947, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309613.4220037, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309613.4220047, - "lastIP": "azo~{l~~adaj`|", - "deviceUUID": "14101bbfd378b392654113c405f5abe3403c1962" - }, - "pb-IF4MU09fKA==": { - "display_string": [ - "\ue063manuellaut", - "\ue030Android63961567", - "\ue030Android63444865" - ], - "profiles": [], - "name": "\ue063manuellaut", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 10:03:48", - "registerOn": 1670309639.2229416, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309639.222942, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309639.222951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309639.2229517, - "lastIP": "eaaaakiaiez", - "deviceUUID": "c91b9ef2adb7b8378fbf14200c8e8f289d222f25" - }, - "pb-IF40UmcHJw==": { - "display_string": [ - "\ue020minnie5116" - ], - "profiles": [], - "name": "\ue020minnie5116", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-21 22:08:30", - "registerOn": 1670309746.6581407, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309746.6581411, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309746.6581504, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309746.6581514, - "lastIP": "dvvcyvb~n~~ah", - "deviceUUID": "f60a287142cc9c7edd9d4678dc69d39a39c06ba0" - }, - "pb-IF4CU0MiVA==": { - "display_string": [ - "\ue030Android63428296" - ], - "profiles": [], - "name": "\ue030Android63428296", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-20 14:07:06", - "registerOn": 1670309822.1634555, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309822.1634562, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309822.1634653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309822.1634662, - "lastIP": "azo~{n~~h`a`", - "deviceUUID": "5ae788976af97e550fb2b9beaee18886efe90c1a" - }, - "pb-IF4CVUMpLQ==": { - "display_string": [ - "\ue063SymbolicLe" - ], - "profiles": [], - "name": "\ue063SymbolicLe", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-01 11:40:35", - "registerOn": 1670310039.9411213, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670310039.9411216, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310039.9411302, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670310039.9411314, - "lastIP": "a\u007fn~}hcaa`aah", - "deviceUUID": "2bbddffbe2022a2d7a39d952d5420c934d3a7d5a" - }, - "pb-IF41VRcsBw==": { - "display_string": [ - "\ue063Nikimalhan" - ], - "profiles": [], - "name": "\ue063Nikimalhan", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-17 18:08:55", - "registerOn": 1670310610.578937, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670310610.5789378, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310610.5789497, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670310610.5789506, - "lastIP": "a\u007fk~xa~~nhakh", - "deviceUUID": "3eaedb8ce47a3f6cff6eeff2ce58f105e6eb8d9d" - }, - "pb-IF4lN2QS": { - "display_string": [ - "\ue063Rocksoli17" - ], - "profiles": [], - "name": "\ue063Rocksoli17", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-15 12:13:30", - "registerOn": 1670310883.9865491, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670310883.9865499, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310883.9865596, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670310925.772695, - "lastIP": "bxvc{vaxvb|h", - "deviceUUID": "3a4a9aa017e42af1b58b717ddcf9aebbc3190c60" - }, - "pb-IF5UUlM8Fw==": { - "display_string": [ - "\ue020\u5f61CARNAGE\u5f61TANISHQ", - "\ue030Android59086853" - ], - "profiles": [], - "name": "\ue030Android59086853", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-21 13:17:07", - "registerOn": 1670311026.4798732, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311026.4798741, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311026.4799204, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311026.479921, - "lastIP": "a\u007fn~}ieam~~mg", - "deviceUUID": "\u0015YUY\u0007E\u0007]" - }, - "pb-IF4lVEscUg==": { - "display_string": [ - "\ue063Sufipnf23" - ], - "profiles": [], - "name": "\ue063Sufipnf23", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-29 22:41:13", - "registerOn": 1670311047.5644026, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311047.5644033, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311047.564412, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670311209.8321745, - "lastIP": "a~l~xa~~l`a`b", - "deviceUUID": "0d94d5d74eaee649f43a55f425a511c5e40ad2f8" - }, - "pb-IF4RA2I6": { - "display_string": [ - "\ue020Shlash7561", - "\ue030Android22000837" - ], - "profiles": [], - "name": "\ue020Shlash7561", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-17 14:43:04", - "registerOn": 1670311104.8685694, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311104.86857, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331498.072205, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670331854.898411, - "lastIP": "azo~|`~~kfaj`z", - "deviceUUID": "3e74ebb3547223c8984475cea4d10c2cacbb4ad7" - }, - "pb-IF4iU0w4KQ==": { - "display_string": [ - "\ue020HecticOnset37" - ], - "profiles": [], - "name": "\ue020HecticOnset37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 11:02:22", - "registerOn": 1670311258.5179946, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311258.5179954, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311258.518002, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311258.5180027, - "lastIP": "bxvf|vavn~~k`", - "deviceUUID": "9e2c0d9943108b3f4201a47631d8d0ea3f5f0d57" - }, - "pb-IF4NU0wOXQ==": { - "display_string": [ - "\ue020ColonialGrammar61" - ], - "profiles": [], - "name": "\ue020ColonialGrammar61", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 09:17:31", - "registerOn": 1670311259.5718555, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311259.571856, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324239.1932979, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670330075.6544108, - "lastIP": "azo~{l~}jaaihy", - "deviceUUID": "9427e3955630b5f233848073ab87e24369ca8d1b" - }, - "pb-IF4lU00bPQ==": { - "display_string": [ - "\ue063Correctiv8" - ], - "profiles": [], - "name": "\ue063Correctiv8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 22:49:37", - "registerOn": 1670311350.0987442, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311350.0987444, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311350.098753, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311350.098754, - "lastIP": "a\u007fn~~aeal~~jg", - "deviceUUID": "9f38ec8222b2e0f055319e0a2609b61f85d1e021" - }, - "pb-IF4BU3QhUQ==": { - "display_string": [ - "\ue063happygame2" - ], - "profiles": [], - "name": "\ue063happygame2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-13 12:33:07", - "registerOn": 1670311423.7830024, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311423.7830029, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323021.5193484, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323021.51935, - "lastIP": "awj~ya~~ogai`", - "deviceUUID": "671a82ea06eddfc13761a895f95f2c68dfc7939f" - }, - "pb-IF41U0cRLw==": { - "display_string": [ - "\ue063brucewayn" - ], - "profiles": [], - "name": "\ue063brucewayn", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 20:15:27", - "registerOn": 1670311578.5884929, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311578.5884933, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311578.588504, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311578.5885048, - "lastIP": "azj~zo~~hgajf", - "deviceUUID": "d74f221261f73be70e6a03a2ff660bcf5b9c0d5f" - }, - "pb-IF4dVEcfIA==": { - "display_string": [ - "\ue063gatchipatr" - ], - "profiles": [], - "name": "\ue063gatchipatr", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-12 21:55:22", - "registerOn": 1670311599.461019, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311599.4610193, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311599.4610276, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670314344.1780927, - "lastIP": "a\u007fn~~afaahaicz", - "deviceUUID": "3785e8f3d30f48f0dede133ab6215bd4ca7031b5" - }, - "pb-IF4vVFEZBg==": { - "display_string": [ - "\ue063AkshayParg" - ], - "profiles": [], - "name": "\ue063AkshayParg", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-30 18:00:25", - "registerOn": 1670311626.4767659, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311626.4767663, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311626.476776, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670312114.6517053, - "lastIP": "a\u007fk~~`cajbwvg~", - "deviceUUID": "1f6f6aebf5accbeed4defc9c91dbf223d4e927af" - }, - "pb-IF4rU0kGEA==": { - "display_string": [ - "\ue020SpectacularShield731" - ], - "profiles": [], - "name": "\ue020SpectacularShield731", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-27 17:42:37", - "registerOn": 1670311955.0098388, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311955.0098395, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311955.0098464, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311955.0098476, - "lastIP": "awj~{`~}jcaif", - "deviceUUID": "3b2ecb70df160b3bc925563348e9f55d2bf4fd79" - }, - "pb-IF5TU0tcUw==": { - "display_string": [ - "\ue020muthuMJ", - "\ue030Android51992363" - ], - "profiles": [], - "name": "\ue020muthuMJ", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 11:18:56", - "registerOn": 1670312168.1355772, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312168.1355777, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312168.1355863, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312168.135587, - "lastIP": "azo~{m~vl~}l`", - "deviceUUID": "11c4435140c3fa18d7951dac1720e2cc865b8c2c" - }, - "pb-IF4nU0scDQ==": { - "display_string": [ - "\ue063FictionalH" - ], - "profiles": [], - "name": "\ue063FictionalH", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 14:16:08", - "registerOn": 1670312190.2316623, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312190.2316625, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330107.774897, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330107.7748988, - "lastIP": "a\u007fn~}j`aidwva~o", - "deviceUUID": "5a55a76eb9e5c5b946793750d52e2b66ddff73ff" - }, - "pb-IF4jU1AyPA==": { - "display_string": [ - "\ue030Android63995855" - ], - "profiles": [], - "name": "\ue030Android63995855", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 11:48:00", - "registerOn": 1670312327.0104196, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312327.0104203, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312327.01043, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312327.010431, - "lastIP": "a\u007fi~|h~vvaym", - "deviceUUID": "10ca381ceaa576d47524ced69fb70bb5af5f48a9" - }, - "pb-IF5UU3kINA==": { - "display_string": [ - "\ue030Android62934068" - ], - "profiles": [], - "name": "\ue030Android62934068", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-26 14:58:23", - "registerOn": 1670312583.8976188, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312583.897619, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312583.8976293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312583.8976305, - "lastIP": "a\u007fi~|h~{i~~ih", - "deviceUUID": "fbe7fb9df64bb88df41863860739579e82b7f543" - }, - "pb-IF4vU00eAA==": { - "display_string": [ - "\ue030Android63898377" - ], - "profiles": [], - "name": "\ue030Android63898377", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 04:15:41", - "registerOn": 1670312659.183585, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312659.1835856, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312659.1835966, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670313521.9851687, - "lastIP": "d}va~i~~iaaag", - "deviceUUID": "\u0015" - }, - "pb-IF42U2wGFw==": { - "display_string": [ - "\ue020chugambaran", - "\ue030Android63640741" - ], - "profiles": [], - "name": "\ue020chugambaran", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-13 17:05:07", - "registerOn": 1670312704.2908556, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312704.2908561, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312704.290864, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312704.2908647, - "lastIP": "azo~{l~~ohaie~", - "deviceUUID": "32b3d31bc0385331d4fc82098d4a0a5988f3baba", - "cMsgCount": 0, - "lastMsgTime": 1670314195.7867928, - "lastMsg": "gg avi", - "cSameMsg": 0 - }, - "pb-JiNJVxBSVEFCX1lGE0JWVVBHF0deRFJG": { - "display_string": [ - "\ue020Hezardoz" - ], - "profiles": [], - "name": "\ue020Hezardoz", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-26 19:43:17", - "registerOn": 1670312747.536739, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312747.5367396, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312747.536748, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312747.5367491, - "lastIP": "d|vb{i~~lfaj`{", - "deviceUUID": "de39f038b05d92313cc3a2105de0f6a69ed380be" - }, - "pb-IF4nU3hdFw==": { - "display_string": [ - "\ue063Insatiabl3", - "\ue030Android63865931" - ], - "profiles": [], - "name": "\ue063Insatiabl3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-26 21:31:36", - "registerOn": 1670312883.8861904, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312883.886191, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312883.886201, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312883.8862016, - "lastIP": "azo~{m~~i`aiav", - "deviceUUID": "ccbb4fb58c5e22118fa6720a9915ce840207f4fd" - }, - "pb-IF5VU0dfJg==": { - "display_string": [ - "\ue020HumblerMare46" - ], - "profiles": [], - "name": "\ue020HumblerMare46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-29 20:51:22", - "registerOn": 1670312945.089181, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312945.0891812, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327861.818157, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327861.8181586, - "lastIP": "a\u007fn~}heaje|vcw", - "deviceUUID": "0c729e271c617dd813d21455250b554fa9e94944" - }, - "pb-IF4dVEUgVg==": { - "display_string": [ - "\ue063EclecticC3" - ], - "profiles": [], - "name": "\ue063EclecticC3", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-24 13:30:09", - "registerOn": 1670313070.2871656, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670313070.287166, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313070.2871757, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313070.2871766, - "lastIP": "dxvc~vavh~~ac", - "deviceUUID": "59430fabade39ff3b28818536a627a1df1dba457" - }, - "pb-IF5dU0JePQ==": { - "display_string": [ - "\ue020HopelessActor28" - ], - "profiles": [], - "name": "\ue020HopelessActor28", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-07 18:33:43", - "registerOn": 1670313381.5132644, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670313381.513265, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313381.513272, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313381.513273, - "lastIP": "a|o~vo~~ieaia~", - "deviceUUID": "038a652f18e77eaf416637f399212677de63cce6", - "cMsgCount": 0, - "lastMsgTime": 1670313474.162137, - "lastMsg": "1", - "cSameMsg": 0 - }, - "pb-JiNJARFcV0VGXF1AE09QVVdCEkRcRlVL": { - "display_string": [ - "\ue020TheIndianGamerDX" - ], - "profiles": [], - "name": "\ue020TheIndianGamerDX", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-29 16:12:51", - "registerOn": 1670313468.4106395, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670313468.4106402, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313468.410649, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313468.4106498, - "lastIP": "dvvcyvb|k~~`d", - "deviceUUID": "f9445b523df9ae355c5887b8f6710335e172d4fb" - }, - "pb-IF5UU1JaMA==": { - "display_string": [ - "\ue063MattedElix" - ], - "profiles": [], - "name": "\ue063MattedElix", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 10:49:50", - "registerOn": 1670313646.7932086, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670313646.793209, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313646.7932172, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313646.7932181, - "lastIP": "axi~zvb{m~}ld", - "deviceUUID": "e44e96c8776ff5e5a6a33fd4074642d6ebcbaaa8" - }, - "pb-IF4lU1BdIw==": { - "display_string": [ - "\ue063LiteralFlu" - ], - "profiles": [], - "name": "\ue063LiteralFlu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 13:30:05", - "registerOn": 1670313796.3415685, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670313796.341569, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313796.341578, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313796.341579, - "lastIP": "a\u007fk~yo~~mgaab", - "deviceUUID": "53d682b443cb16bd38b3b8054bc833efceda9008" - }, - "pb-IF4JU08bHA==": { - "display_string": [ - "\ue030Android63995876" - ], - "profiles": [], - "name": "\ue030Android63995876", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 11:53:14", - "registerOn": 1670314037.24787, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314037.2478704, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314037.2478976, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314037.2478983, - "lastIP": "a~o~~h~~mhaj", - "deviceUUID": "\u0015V\\XX\u0015\u0002]" - }, - "pb-IF4cVE4MDQ==": { - "display_string": [ - "\ue020Ansilchikuu" - ], - "profiles": [], - "name": "\ue020Ansilchikuu", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-11 20:58:00", - "registerOn": 1670314062.3466134, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314062.3466141, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317999.9445138, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317999.9445155, - "lastIP": "azo~{a~~kiaj`\u007f", - "deviceUUID": "b9ebe325b3e08ecb3696c2cfd5892efc7ce14e66" - }, - "pb-IF4lVWwsEw==": { - "display_string": [ - "\ue020SANKETBANSODE007" - ], - "profiles": [], - "name": "\ue020SANKETBANSODE007", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-29 11:54:16", - "registerOn": 1670314284.0633721, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314284.0633726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314284.063382, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314284.063383, - "lastIP": "azo~|k~{vb}a", - "deviceUUID": "d3753d30921e7fe8e98d705e3244326b2ec6bce3" - }, - "pb-IF4cU3NcKQ==": { - "display_string": [ - "\ue063YoungerCol" - ], - "profiles": [], - "name": "\ue063YoungerCol", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 19:22:09", - "registerOn": 1670314305.376949, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314305.3769493, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314305.376958, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314305.3769593, - "lastIP": "azh~}lbaiixvbx", - "deviceUUID": "8ff0e92d1c877d59bcd86fc9b154c3873b3163da" - }, - "pb-IF4gU0U4UA==": { - "display_string": [ - "\ue020ROHIT7100000" - ], - "profiles": [], - "name": "\ue020ROHIT7100000", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-05 09:01:56", - "registerOn": 1670314530.190387, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314530.1903875, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314530.1903956, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314530.1903963, - "lastIP": "a\u007fn~xo~~nbajcx", - "deviceUUID": "e52b11e4b73d4f64c5c8de57608a7d77236a75f1" - }, - "pb-IF5QU0s6XQ==": { - "display_string": [ - "\ue063CleanerRes" - ], - "profiles": [], - "name": "\ue063CleanerRes", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 09:00:51", - "registerOn": 1670314598.6798697, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314598.6798701, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323016.5032222, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323016.503224, - "lastIP": "dvvd|vazm~zh", - "deviceUUID": "53ad53dc7a76c4bb4f3515d1dd74b2e52cf21264" - }, - "pb-IF4yVG8uXQ==": { - "display_string": [ - "\ue020PitifulPick9", - "\ue030Android33279498" - ], - "profiles": [], - "name": "\ue020PitifulPick9", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-12 17:48:07", - "registerOn": 1670314600.422643, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314600.4226437, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314600.4226525, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314600.4226532, - "lastIP": "a~o~}jhaaiamd", - "deviceUUID": "ba006d0a7cfbddde49ec8fbfba8edc13e1268e63" - }, - "pb-IF4iVU4qDA==": { - "display_string": [ - "\ue020aswinsanthosh47249" - ], - "profiles": [], - "name": "\ue020aswinsanthosh47249", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-01 22:19:07", - "registerOn": 1670314639.8906856, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314639.890686, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314639.8906932, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314639.890694, - "lastIP": "azo~{n~~lea``", - "deviceUUID": "4b04db1094e7773fd901d6590103afadbe70e3b9" - }, - "pb-IF4FU085Ng==": { - "display_string": [ - "\ue063MootEmbrac" - ], - "profiles": [], - "name": "\ue063MootEmbrac", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 11:36:52", - "registerOn": 1670314687.8052628, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314687.8052635, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314687.805272, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314687.805273, - "lastIP": "dzva}k~}jcaje\u007f", - "deviceUUID": "2f7a26a6c3b213153f12a1c5e79e9351bc99da51" - }, - "pb-IF4xU08NPA==": { - "display_string": [ - "\ue030Android63996535" - ], - "profiles": [], - "name": "\ue030Android63996535", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 13:50:02", - "registerOn": 1670314822.1885004, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314822.1885006, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314822.1885104, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314822.1885118, - "lastIP": "b}j~~lbaiiwva}h", - "deviceUUID": "1e68d1a8d1a3942a98801321538dfd0b3a054703" - }, - "pb-IF4lUxQtAA==": { - "display_string": [ - "\ue030Android60358186", - "\ue030Android63274946" - ], - "profiles": [], - "name": "\ue030Android60358186", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-09 12:23:51", - "registerOn": 1670315063.4228208, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670315063.4228213, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315063.4228299, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315063.4228306, - "lastIP": "a\u007fn~~aeaocaifz", - "deviceUUID": "d1ae037b6c1e8d2e57f875918c4182f25fa80ff1" - }, - "pb-IF4RU3ExEg==": { - "display_string": [ - "\ue020Aswinag7" - ], - "profiles": [], - "name": "\ue020Aswinag7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-30 20:54:31", - "registerOn": 1670315361.572793, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670315361.5727935, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315361.5728004, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670324345.5142963, - "lastIP": "azo~{l~~ngaid}", - "deviceUUID": "0436e0932298b6344d2a13c7c6f63bcd1f193e77" - }, - "pb-IF4DU1BaNA==": { - "display_string": [ - "\ue063RagingPred" - ], - "profiles": [], - "name": "\ue063RagingPred", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 21:53:24", - "registerOn": 1670315488.9796941, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670315488.9796944, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315488.9797032, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670315607.0970285, - "lastIP": "a}h~}a~vh~|n", - "deviceUUID": "75e0f67d4c12298e516cf542e95d92be2d984a42", - "cMsgCount": 0, - "lastMsgTime": 1670315633.8237379, - "lastMsg": "hello", - "cSameMsg": 0 - }, - "pb-IF5TU2g6AQ==": { - "display_string": [ - "\ue030Android61350223" - ], - "profiles": [], - "name": "\ue030Android61350223", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-19 16:29:40", - "registerOn": 1670315613.4918733, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670315613.4918737, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315613.4919078, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315613.4919088, - "lastIP": "azo~{a~xi~~`a", - "deviceUUID": "\u0015P\b\u0003V\u0010P\\\u0005Y@\u0005YUY\u0016TUVYFW^PPC" - }, - "pb-IF4xU00ZLQ==": { - "display_string": [ - "\ue063jeffalbi45" - ], - "profiles": [], - "name": "\ue063jeffalbi45", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 12:46:50", - "registerOn": 1670316023.9141371, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316023.9141374, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316023.9141448, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316023.9141455, - "lastIP": "azo~zi~}`~~a", - "deviceUUID": "aeb947524315d4a16cfdeffac4e6a08d8012eee2" - }, - "pb-IF5SUk8fAA==": { - "display_string": [ - "\ue030Android58748298" - ], - "profiles": [], - "name": "\ue030Android58748298", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-07 08:04:04", - "registerOn": 1670316056.0066593, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316056.0066597, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316056.0066686, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316056.0066693, - "lastIP": "awk~wk~}hhamd", - "deviceUUID": "277d45b713ae279677f262f0397a5e9a0b1286ea", - "cMsgCount": 1, - "lastMsgTime": 1670316332.6092901, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5WU28fFg==": { - "display_string": [ - "\ue063DeceptiveL", - "\ue030Android62055355" - ], - "profiles": [], - "name": "\ue063DeceptiveL", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-17 19:42:09", - "registerOn": 1670316062.0438392, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316062.0438397, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316062.0438483, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316062.043849, - "lastIP": "b~j~~hdajcxva~`", - "deviceUUID": "ed75e19faad007fe789bf678b4b4d3f785c69b32" - }, - "pb-IF4BK046": { - "display_string": [ - "\ue063HAR1gamer" - ], - "profiles": [], - "name": "\ue063HAR1gamer", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-31 18:47:45", - "registerOn": 1670316067.1582618, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316067.1582625, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316067.1582704, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670316112.8987162, - "lastIP": "azo~zi~~hgamf", - "deviceUUID": "61ccabcfc9cdc924ec5727d5ea992b4485bec4d7" - }, - "pb-IF5XUxcnLw==": { - "display_string": [ - "\ue030Android60435181" - ], - "profiles": [], - "name": "\ue030Android60435181", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-13 07:50:15", - "registerOn": 1670316112.227712, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316112.2277124, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316112.2277215, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316112.2277224, - "lastIP": "d}vb|j~~niaj`y", - "deviceUUID": "\u0015XU\u0002S\u0012\u0004TVR\u0015X\u000eP\u0005GP\\VTLWZTWAU" - }, - "pb-IF5XUxg6Ug==": { - "display_string": [ - "\ue063orangeyty", - "\ue030Android63981131" - ], - "profiles": [], - "name": "\ue063orangeyty", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-17 15:03:33", - "registerOn": 1670316192.5192356, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316192.519236, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316192.5192444, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316192.5192459, - "lastIP": "dvva{a~yo~vh", - "deviceUUID": "ff37d192a3c1a500f55d2d575fae1737687b6efd" - }, - "pb-IF4XU04tNQ==": { - "display_string": [ - "\ue030Android63903308" - ], - "profiles": [], - "name": "\ue030Android63903308", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 22:02:06", - "registerOn": 1670316456.5129864, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316456.5129871, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316456.512996, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316456.5129967, - "lastIP": "dxvb{o~}ifaiaw", - "deviceUUID": "81c52b637fb54d13bdf7a6820b544a890dea5e05" - }, - "pb-IF4tU3obMw==": { - "display_string": [ - "\ue030Android63201472" - ], - "profiles": [], - "name": "\ue030Android63201472", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-08 21:23:56", - "registerOn": 1670316468.5487235, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316468.5487242, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316468.548734, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316468.5487347, - "lastIP": "azo~|k~}kbaigx", - "deviceUUID": "2fb4cf0fe7817a4f28f26a77f1fa674537feea82" - }, - "pb-IF4xUxA7Vg==": { - "display_string": [ - "\ue063BLOODFRAUD" - ], - "profiles": [], - "name": "\ue063BLOODFRAUD", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-26 14:49:05", - "registerOn": 1670316498.6506438, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316498.6506443, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316498.650653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316498.6506536, - "lastIP": "fvvi{vdyvavn", - "deviceUUID": "5ee6edcb161af58a38cb283145ad239b222f2484" - }, - "pb-IF5UU0gICg==": { - "display_string": [ - "\ue063mugilann2k" - ], - "profiles": [], - "name": "\ue063mugilann2k", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 15:49:44", - "registerOn": 1670316606.038708, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316606.0387084, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316606.0387173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316606.0387182, - "lastIP": "azo~{a~~ncajc|", - "deviceUUID": "8958b3116af5f3af9b627d464c678a4000fb1ce2" - }, - "pb-IF4RU3IjMA==": { - "display_string": [ - "\ue020YKthePR\u00d4F\u00c8SS\u00d8R" - ], - "profiles": [], - "name": "\ue020YKthePR\u00d4F\u00c8SS\u00d8R", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-02 18:23:48", - "registerOn": 1670316681.3245635, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316681.3245642, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316681.324574, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316681.3245747, - "lastIP": "b}k~~`gaibyvb|l", - "deviceUUID": "47b1ea347a7615d8ec4821ca85da72534df509a4" - }, - "pb-IF4xU0tTDQ==": { - "display_string": [ - "\ue030Android63814738" - ], - "profiles": [], - "name": "\ue030Android63814738", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 05:44:09", - "registerOn": 1670316710.7181842, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316710.7181845, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316710.7181916, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316710.7181926, - "lastIP": "a~h~zl~~lfaid{", - "deviceUUID": "301e04025c5aa0a3791f8e3846ce468a42c8257b" - }, - "pb-LV4TA0FSAEsWCVxdGE9YVUhGFhJZWlkWV1QNDlIRRlwJExNFWVNV": { - "display_string": [ - "\ue063J0kerr666", - "\ue030PC92677" - ], - "profiles": [], - "name": "\ue063J0kerr666", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-09 10:24:17", - "registerOn": 1670316791.7148666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316791.714867, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670317355.596628, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316791.71488, - "lastIP": "ayk~zk~}m~~mh", - "deviceUUID": "d702133aeeb80315820c3f84d8fe0f6a00a8facf", - "cMsgCount": 0, - "lastMsgTime": 1670317612.3048096, - "lastMsg": "lagg", - "cSameMsg": 0 - }, - "pb-IF5RVRcCNQ==": { - "display_string": [ - "\ue020Touqeeerking" - ], - "profiles": [], - "name": "\ue020Touqeeerking", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-04 17:10:12", - "registerOn": 1670316796.7345297, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316796.7345304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316796.7345386, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670325388.42188, - "lastIP": "azo~|`~~lhaig~", - "deviceUUID": "a356ec507ce7f4d59c118273df4f79189490cacf" - }, - "pb-IF41U08-Eg==": { - "display_string": [ - "\ue063Intermed12" - ], - "profiles": [], - "name": "\ue063Intermed12", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 20:13:07", - "registerOn": 1670316870.0969722, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316870.096973, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316870.0969832, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670316956.0226681, - "lastIP": "a\u007fn~}h`amaa`i", - "deviceUUID": "22511a304e203d7856bc47102f7830bfd5810d23" - }, - "pb-IF48VWgECg==": { - "display_string": [ - "\ue020AmusingWanderer19", - "\ue030Android52188542" - ], - "profiles": [], - "name": "\ue020AmusingWanderer19", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-01 10:52:04", - "registerOn": 1670316932.251956, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316932.2519562, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316932.2519639, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316932.2519646, - "lastIP": "azo~zi~~oiald", - "deviceUUID": "525625b9d1e1a9f2cc9b6a553fbedbb2d1d4cb83" - }, - "pb-IF4PU3hdLg==": { - "display_string": [ - "\ue020AccessibleClearing32", - "\ue030Android63098154" - ], - "profiles": [], - "name": "\ue030Android63098154", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-28 09:38:53", - "registerOn": 1670316964.4186032, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316964.4186034, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316964.4186125, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316964.4186132, - "lastIP": "azj~zo~~jaaig\u007f", - "deviceUUID": "6ba9c7402e6f457bf9e65f6dab128c492eae96d2" - }, - "pb-IF5VU0Q5LQ==": { - "display_string": [ - "\ue030Android63346781" - ], - "profiles": [], - "name": "\ue030Android63346781", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-16 16:13:41", - "registerOn": 1670316978.507343, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316978.5073433, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316978.5073504, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316978.5073516, - "lastIP": "axi~zh~}jgajc\u007f", - "deviceUUID": "c501b2cdded617d65a90721b8cd09923ddf80170" - }, - "pb-IF5cVUkgUQ==": { - "display_string": [ - "\ue020FuturisticUndead36" - ], - "profiles": [], - "name": "\ue020FuturisticUndead36", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-26 14:47:48", - "registerOn": 1670317287.7447288, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670317287.7447293, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317287.7447374, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317287.7447386, - "lastIP": "a}j~~nbaidyvaxo", - "deviceUUID": "1331436c6d1b3fa92f7c8b79e7525c4d182c941a" - }, - "pb-IF4DVU0hKQ==": { - "display_string": [ - "\ue020Vishvjeetsinhchavda4" - ], - "profiles": [], - "name": "\ue020Vishvjeetsinhchavda4", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-28 00:07:21", - "registerOn": 1670317328.7055254, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670317328.705526, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317328.7055335, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317328.7055345, - "lastIP": "azh~~jiaj`yvax", - "deviceUUID": "86c48ed293567e290cad935a1a892636a27c62aa" - }, - "pb-IF4-U0MYXA==": { - "display_string": [ - "\ue063OrganicHor" - ], - "profiles": [], - "name": "\ue063OrganicHor", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 19:15:48", - "registerOn": 1670317404.3050337, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670317404.305034, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317404.3050423, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670320978.9758103, - "lastIP": "dzvb{a~~jcaihz", - "deviceUUID": "b1d66b451c42feb7a28bfa399a978752257b518b" - }, - "pb-IF4UUmoqUw==": { - "display_string": [ - "\ue020PivotalSorcerer2" - ], - "profiles": [], - "name": "\ue020PivotalSorcerer2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-30 15:57:03", - "registerOn": 1670317631.8363683, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670317631.8363688, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317631.8363776, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317631.8363786, - "lastIP": "b}k~}jdak~}kd", - "deviceUUID": "\u0015\u0007\tWU\u0010\u0007_R\u0005B\u0007_W\u0004C\u0003TTTDVTQXG" - }, - "pb-IF4cU08bEA==": { - "display_string": [ - "\ue063Isbgamer89" - ], - "profiles": [], - "name": "\ue063Isbgamer89", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 11:58:15", - "registerOn": 1670317698.0860934, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670317698.086094, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317698.086102, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317698.086103, - "lastIP": "azj~z`~~``aib~", - "deviceUUID": "792e5f015918699da9fb9cdbe124371fbe9b9e3d" - }, - "pb-IF4yU088Uw==": { - "display_string": [ - "\ue020BiographicalSteam361" - ], - "profiles": [], - "name": "\ue020BiographicalSteam361", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 10:47:55", - "registerOn": 1670317885.8271146, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670317885.827115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317885.8271234, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317885.827124, - "lastIP": "a\u007fn~~agakaaic}", - "deviceUUID": "\u0015X\u000bRU\u0016\u0002YXWMS\u000bXULV\\WYLR^PWDQ" - }, - "pb-IF4LUlBZNQ==": { - "display_string": [ - "\ue020UnwelcomeShop20", - "\ue063SansSkelet", - "\ue030Android46238231", - "\ue030Android63837331" - ], - "profiles": [], - "name": "\ue063SansSkelet", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-17 17:02:16", - "registerOn": 1670317956.334767, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670317956.3347676, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317956.3347762, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317956.334777, - "lastIP": "a\u007fk~vl~}mea``", - "deviceUUID": "6686e18a274a451d31dc74ea82b6c952955d2be3" - }, - "pb-IF4pVXMNEw==": { - "display_string": [ - "\ue063ADI61834" - ], - "profiles": [], - "name": "\ue063ADI61834", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-18 11:31:02", - "registerOn": 1670318120.9681735, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318120.968174, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318120.9681823, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318120.9681833, - "lastIP": "azo~{l~~miaii{", - "deviceUUID": "0a787623c7c4d90854515d86ae990dabe3a38e05" - }, - "pb-IF4DV1haCg==": { - "display_string": [ - "\ue020HotChicken96163", - "\ue030Android35196498", - "\ue030Android35134665" - ], - "profiles": [], - "name": "\ue020HotChicken96163", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-25 17:06:30", - "registerOn": 1670318167.8139994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318167.814, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318167.814008, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670320532.2667272, - "lastIP": "azo~|a~za~~ic", - "deviceUUID": "7ee613330e3b555a5cad3c9e5c8d39f11dfd644d" - }, - "pb-IF4MVWwmEQ==": { - "display_string": [ - "\ue030Android48579844" - ], - "profiles": [], - "name": "\ue030Android48579844", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-29 20:22:33", - "registerOn": 1670318242.0661242, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318242.066125, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318242.0661337, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318242.0661345, - "lastIP": "azo~{m~}kdaib{", - "deviceUUID": "8f385579674fc50710c94af42d9683cec8d0c467" - }, - "pb-IF4DU04PNQ==": { - "display_string": [ - "\ue020GamerParth2022" - ], - "profiles": [], - "name": "\ue020GamerParth2022", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 20:23:15", - "registerOn": 1670318276.1646168, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318276.1646173, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318276.1646254, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318276.1646261, - "lastIP": "a\u007fn~}idaigaa", - "deviceUUID": "b19319487589db6e9e0b7b330a7b6b62baed94a0" - }, - "pb-IF5SUxIeCA==": { - "display_string": [ - "\ue063UntaintedR" - ], - "profiles": [], - "name": "\ue063UntaintedR", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-28 10:21:46", - "registerOn": 1670318392.6810591, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318392.6810596, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318392.681067, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318392.681068, - "lastIP": "a\u007fn~~acamiaj`v", - "deviceUUID": "55de96c9512a84809debbac32fde65ac902e938c" - }, - "pb-IF4nU08BVg==": { - "display_string": [ - "\ue063kingbcs" - ], - "profiles": [], - "name": "\ue063kingbcs", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 12:18:32", - "registerOn": 1670318441.849206, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318441.8492064, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318441.849216, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318441.849217, - "lastIP": "azo~{i~}mdaicv", - "deviceUUID": "548cce6a079bbda740d03793a1d78e999a4c1fd4", - "cMsgCount": 0, - "lastMsgTime": 1670318805.0360403, - "lastMsg": "pamu", - "cSameMsg": 0 - }, - "pb-IF4nU1AnFA==": { - "display_string": [ - "\ue063SOULRippeR" - ], - "profiles": [], - "name": "\ue063SOULRippeR", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 14:10:35", - "registerOn": 1670318543.2455177, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318543.2455184, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318543.2455266, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318543.2455273, - "lastIP": "dxvbvvaym~{k", - "deviceUUID": "82b7d4f4599997698e090fce3ac42f24262c826e" - }, - "pb-IF4nU0cpHA==": { - "display_string": [ - "\ue063WanProduc2" - ], - "profiles": [], - "name": "\ue063WanProduc2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-11 18:34:52", - "registerOn": 1670318720.1188574, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318720.1188576, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318720.1188676, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318720.118869, - "lastIP": "avk~~n`ajbxvax`", - "deviceUUID": "08199784570a55ee4bb51ab6b310da1ea217b3db" - }, - "pb-IF5VUmEnJg==": { - "display_string": [ - "\ue030Android54523561" - ], - "profiles": [], - "name": "\ue030Android54523561", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-08 10:50:57", - "registerOn": 1670319109.241927, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670319109.2419274, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319109.241937, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319109.2419379, - "lastIP": "dzva}i~w`~ym", - "deviceUUID": "\u0015V[", - "cMsgCount": 0, - "lastMsgTime": 1670320986.0100675, - "lastMsg": "yeah", - "cSameMsg": 0 - }, - "pb-IF5UU0gmNA==": { - "display_string": [ - "\ue063LowerWarde" - ], - "profiles": [], - "name": "\ue063LowerWarde", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-09 05:50:00", - "registerOn": 1670319197.5851161, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670319197.5851166, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319197.5851257, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319197.5851266, - "lastIP": "dvva{n~zl~~ka", - "deviceUUID": "1921b2ab5d6cdf6d169c18296a84e996c354ebb1" - }, - "pb-IF4tUkwtCA==": { - "display_string": [ - "\ue063DEATHSTORM" - ], - "profiles": [], - "name": "\ue063DEATHSTORM", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-27 10:49:12", - "registerOn": 1670319434.3927255, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670319434.3927262, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319434.392736, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319434.3927367, - "lastIP": "dvvc}va|i~~`e", - "deviceUUID": "8ee8e212af18d5468df920fe14288750121d377c" - }, - "pb-IF4iU0QlAQ==": { - "display_string": [ - "\ue020ProdigalOutlay20", - "\ue030Android63809115" - ], - "profiles": [], - "name": "\ue020ProdigalOutlay20", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-29 20:48:28", - "registerOn": 1670319462.7579763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670319462.7579768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319462.7579849, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319462.7579856, - "lastIP": "azo~{n~xh~}ji", - "deviceUUID": "\u0015YTWS\u0011S\u000e\u0003WC\u0003_YRDW_QYDT]WT@Y" - }, - "pb-IF4qU04eNQ==": { - "display_string": [ - "\ue063Instruct21" - ], - "profiles": [], - "name": "\ue063Instruct21", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 19:55:33", - "registerOn": 1670319520.7552292, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670319520.7552297, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319520.7552383, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670319668.9903166, - "lastIP": "azo~{a~~aeajdy", - "deviceUUID": "6b94c3b0cf6e764ef671ac8c0d13de7d4fa5271e" - }, - "pb-IF4WU0MpAA==": { - "display_string": [ - "\ue030Android63427027" - ], - "profiles": [], - "name": "\ue030Android63427027", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-20 11:59:26", - "registerOn": 1670319913.3264253, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670319913.3264258, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319913.326435, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319913.3264358, - "lastIP": "bxvf~vb}k~~o`", - "deviceUUID": "\u0015X\bPT@\u0002\u000ePVBQTTXM" - }, - "pb-IF4IU04HUg==": { - "display_string": [ - "\ue063StapleDrif" - ], - "profiles": [], - "name": "\ue063StapleDrif", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 15:46:16", - "registerOn": 1670319955.5551145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670319955.555115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319955.555124, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319955.5551248, - "lastIP": "bxvf~vaa`h", - "deviceUUID": "4ee1623106b49e7195380825122a67a638c8063a" - }, - "pb-IF4LU0sqMA==": { - "display_string": [ - "\ue0200neN0nly21" - ], - "profiles": [], - "name": "\ue0200neN0nly21", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 19:28:04", - "registerOn": 1670320106.0815954, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320106.0815961, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320106.0816057, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320106.0816066, - "lastIP": "azo~|a~za~~ji", - "deviceUUID": "6c1e2c4ec06492a83ee00b13e3392643d1e4247d" - }, - "pb-IF4BVWoFDQ==": { - "display_string": [ - "\ue030Android48356549" - ], - "profiles": [], - "name": "\ue030Android48356549", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-18 18:35:21", - "registerOn": 1670320122.4135852, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320122.4135857, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320122.413594, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670320845.404351, - "lastIP": "azj~zo~~aeaic|", - "deviceUUID": "\u0015\u0002X\u0004TES\u000bPPB\u0004ZYWC" - }, - "pb-IF4qVRc9Bg==": { - "display_string": [ - "\ue020ArchitViradiya4747", - "\ue030Android46467079" - ], - "profiles": [], - "name": "\ue020ArchitViradiya4747", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-21 22:49:10", - "registerOn": 1670320261.675815, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320261.6758156, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320261.6758225, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320261.6758235, - "lastIP": "azo~|j~}mdajc\u007f", - "deviceUUID": "abffb29d6d37ff35707d4e389126be7fac509a19" - }, - "pb-IF4QUxEJUA==": { - "display_string": [ - "\ue030Android60154328" - ], - "profiles": [], - "name": "\ue030Android60154328", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-01 19:32:02", - "registerOn": 1670320514.6193326, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320514.619333, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320514.6193397, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320514.6193402, - "lastIP": "dvvazva|`~~ld", - "deviceUUID": "764cf088c92bfe46096d8edf0f9d36671aba3de9" - }, - "pb-IF4eVE9dFA==": { - "display_string": [ - "\ue020UJJWALkr8569", - "\ue030Android33403124" - ], - "profiles": [], - "name": "\ue020UJJWALkr8569", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-12 14:42:17", - "registerOn": 1670320692.145576, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320692.1455762, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320692.145587, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320692.1455877, - "lastIP": "b}k~}jhajcvvavo", - "deviceUUID": "\u0015TX" - }, - "pb-IF5UVBUEUg==": { - "display_string": [ - "\ue063Lakshit213" - ], - "profiles": [], - "name": "\ue063Lakshit213", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-03 16:48:44", - "registerOn": 1670320767.5459125, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320767.5459127, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320767.545922, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320842.39236, - "lastIP": "azj~z`~~o~~jb", - "deviceUUID": "a715359af32ebfd7c3d3d5f4d2b71b166b41195d" - }, - "pb-IF4uU08GCQ==": { - "display_string": [ - "\ue063NoName55613a" - ], - "profiles": [], - "name": "\ue063NoName55613a", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 15:28:26", - "registerOn": 1670320807.611278, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320807.6112785, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320807.611288, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320807.6112888, - "lastIP": "axm~~ofameajh", - "deviceUUID": "d6abdda6579f0c95cb4d2eeba5dea14003b6be63" - }, - "pb-IF4-Uk4ZXQ==": { - "display_string": [ - "\ue030Android58843616" - ], - "profiles": [], - "name": "\ue030Android58843616", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-11 16:09:33", - "registerOn": 1670320820.6656437, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320820.6656442, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320820.665653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320820.6656542, - "lastIP": "i{vb{m~~kdaicv", - "deviceUUID": "4fd2518723de746bfe40bd12c21ea88f2b4b3ce7" - }, - "pb-IF4WVVAlDw==": { - "display_string": [ - "\ue030Android52606483" - ], - "profiles": [], - "name": "\ue030Android52606483", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-12 16:25:26", - "registerOn": 1670320863.1045487, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320863.104549, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320863.104558, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320863.104559, - "lastIP": "izvg\u007fvg{vd|", - "deviceUUID": "\u0015" - }, - "pb-IF4DU0pdEw==": { - "display_string": [ - "\ue020StereoCurriculum37" - ], - "profiles": [], - "name": "\ue020StereoCurriculum37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 10:07:16", - "registerOn": 1670321043.6589315, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670321043.658932, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321043.6589413, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321043.6589422, - "lastIP": "b\u007fj~~nhaohajd}", - "deviceUUID": "d29c4e60be9026a749df13b1b592f02d45c14367" - }, - "pb-IF4qUnE5XA==": { - "display_string": [ - "\ue063QanT" - ], - "profiles": [], - "name": "\ue063QanT", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-04 14:26:16", - "registerOn": 1670321119.8403804, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670321119.840381, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321119.8403878, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321119.8403888, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF4hU0QyUA==": { - "display_string": [ - "\ue020BionicClown95756" - ], - "profiles": [], - "name": "\ue020BionicClown95756", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-03 22:34:21", - "registerOn": 1670321356.1629827, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670321356.1629832, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670321600.6054456, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321356.1629937, - "lastIP": "avn~~meaie~vaz", - "deviceUUID": "68b208638cb6de07b8ab2a4a99c6d1229c2604cd", - "cMsgCount": 2, - "lastMsgTime": 1670321825.7926185, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4-U3QjBg==": { - "display_string": [ - "\ue063MysticBloo" - ], - "profiles": [], - "name": "\ue063MysticBloo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-12 10:51:15", - "registerOn": 1670321552.478127, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670321552.4781272, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321552.4781356, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321552.4781363, - "lastIP": "axm~~ofai`amh", - "deviceUUID": "bd9cc535441ef3d6a1cbdb85e622ff459b4edc23" - }, - "pb-IF4dU3QSKw==": { - "display_string": [ - "\ue030Android63977519", - "\ue030Android63977477", - "\ue030Android63977559", - "\ue030Android62717978", - "\ue030Android63977575" - ], - "profiles": [], - "name": "\ue030Android62717978", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-16 11:50:07", - "registerOn": 1670321600.9559095, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670321600.95591, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321600.9559193, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321600.9559205, - "lastIP": "azo~zh~~o~}mb", - "deviceUUID": "5b017a3ca1d395d080f351404b461b0b5037ef47" - }, - "pb-IF4qVFcnBg==": { - "display_string": [ - "\ue020mihirsavat" - ], - "profiles": [], - "name": "\ue020mihirsavat", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-07 12:47:48", - "registerOn": 1670321735.564338, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670321735.5643387, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321735.564348, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670335992.9475284, - "lastIP": "dvvc{va{l~~ig", - "deviceUUID": "eebd84b662041c828dc3a08d269927eda98a60c4", - "cMsgCount": 2, - "lastMsgTime": 1670332592.8913708, - "lastMsg": ", ", - "cSameMsg": 0 - }, - "pb-IF4dU20FHA==": { - "display_string": [ - "\ue063VROPPRO" - ], - "profiles": [], - "name": "\ue063VROPPRO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 13:24:55", - "registerOn": 1670321741.2328196, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670321741.23282, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321741.232828, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321741.2328286, - "lastIP": "a|a~~ngaig\u007fvay`", - "deviceUUID": "79c60b48bf6a6568181dbb43a076af6b498018e2" - }, - "pb-IF4BVRQmVA==": { - "display_string": [ - "\ue063Winplaygam", - "\ue020dhruvLM432D" - ], - "profiles": [], - "name": "\ue063Winplaygam", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-31 19:13:58", - "registerOn": 1670322073.4771006, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322073.477101, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322073.47711, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322073.4771109, - "lastIP": "azj~zo~}kfajbz", - "deviceUUID": "68dc2f21c79661de8df0b968d9caf3c3d073fc80" - }, - "pb-IF4JUlcFVQ==": { - "display_string": [ - "\ue030Android59682080" - ], - "profiles": [], - "name": "\ue030Android59682080", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-13 15:26:28", - "registerOn": 1670322206.2137709, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322206.2137713, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322206.2137794, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322206.2137802, - "lastIP": "h|va}k~~jeaiex", - "deviceUUID": "48f31ab7bef929674bfc2eedcaafb09c5e402288" - }, - "pb-IF4QU04eDQ==": { - "display_string": [ - "\ue063AgedCore46" - ], - "profiles": [], - "name": "\ue063AgedCore46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 15:11:32", - "registerOn": 1670322496.205992, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322496.2059925, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322496.206001, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322496.206002, - "lastIP": "bxva}j~yi~~ld", - "deviceUUID": "51f6c3453a32570d566a1d370bad15eb6248a6aa" - }, - "pb-IF4AU0EPAg==": { - "display_string": [ - "\ue020MRSHUBHAManuj", - "\ue030Android62840913" - ], - "profiles": [], - "name": "\ue020MRSHUBHAManuj", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 16:04:02", - "registerOn": 1670322533.091349, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322533.0913496, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322533.0913584, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322533.0913591, - "lastIP": "a\u007fn~}hiaja\u007fvd{", - "deviceUUID": "2e6807fe08a7ac4ff707a2aa3bd4ffa01fd08a98" - }, - "pb-IF5VVEEANg==": { - "display_string": [ - "\ue063Demodog02" - ], - "profiles": [], - "name": "\ue063Demodog02", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-15 19:42:07", - "registerOn": 1670322554.1415997, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322554.1416006, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670325132.2035038, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322554.14161, - "lastIP": "a}j~~ohakeaifx", - "deviceUUID": "1d464001ddbf0c3de1dd9c46627b95304e92f138", - "cMsgCount": 0, - "lastMsgTime": 1670325197.79978, - "lastMsg": "bruh", - "cSameMsg": 0 - }, - "pb-IF4LVGlSLw==": { - "display_string": [ - "\ue020SHIVAMASS1509" - ], - "profiles": [], - "name": "\ue020SHIVAMASS1509", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-02 15:59:11", - "registerOn": 1670322658.5264704, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322658.526471, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322658.526479, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322658.52648, - "lastIP": "azo~zi~~agah", - "deviceUUID": "2e533909938aa763a37dedd4525343541b88959a" - }, - "pb-IF4QU28vNg==": { - "display_string": [ - "\ue030Android62190350" - ], - "profiles": [], - "name": "\ue030Android62190350", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-23 20:05:27", - "registerOn": 1670322809.0676057, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322809.0676062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322809.0676146, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322809.0676155, - "lastIP": "azo~{m~~mbai`z", - "deviceUUID": "\u0015R\u000b" - }, - "pb-IF5SUkkBEw==": { - "display_string": [ - "\ue020FayasMH07", - "\ue030Android58151670" - ], - "profiles": [], - "name": "\ue020FayasMH07", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-10 22:58:22", - "registerOn": 1670322852.1792657, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322852.1792665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322852.1792758, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322852.1792765, - "lastIP": "azo~{n~~mgaih{", - "deviceUUID": "4be46002aef3990088f6ded70f2a053061f44b33" - }, - "pb-IF5RUnRYMg==": { - "display_string": [ - "\ue030Android56494704" - ], - "profiles": [], - "name": "\ue030Android56494704", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-05 11:41:50", - "registerOn": 1670323150.2793658, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323150.2793665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323150.279377, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670325215.832379, - "lastIP": "azo~{`~~lbakf", - "deviceUUID": "\u0015\u0007\b" - }, - "pb-IF4oVU8CIQ==": { - "display_string": [ - "\ue020srk5553", - "\ue030Android46587965" - ], - "profiles": [], - "name": "\ue020srk5553", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-08 19:10:50", - "registerOn": 1670323277.0190306, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323277.019031, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323277.01904, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670326018.6661358, - "lastIP": "azj~zo~zm~~`i", - "deviceUUID": "9857e104bfbead5c690f6ffe0b252c07010628e1" - }, - "pb-IF4QAFAT": { - "display_string": [ - "\ue063WiseCarpen", - "\ue030Android35516755" - ], - "profiles": [], - "name": "\ue063WiseCarpen", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-24 17:06:16", - "registerOn": 1670323363.06051, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323363.0605104, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323363.0605185, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323363.06052, - "lastIP": "a|a~zvb{h~~li", - "deviceUUID": "3460e5659f29bf89081ab26a4d35669898c7baa1", - "cMsgCount": 0, - "lastMsgTime": 1670324307.293298, - "lastMsg": "no", - "cSameMsg": 0 - }, - "pb-IF4KVVUSPw==": { - "display_string": [ - "\ue030Android53154238" - ], - "profiles": [], - "name": "\ue030Android53154238", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-07 16:23:51", - "registerOn": 1670323380.2076497, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323380.2076504, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323380.2076588, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323380.2076595, - "lastIP": "a\u007fk~|`~}heaidy", - "deviceUUID": "\u0015\u0004\fQWAX\u000f\u0004U\u0012\u0004\\W\u0002@\u0002\\UPAW_VQF" - }, - "pb-IF4WU0s5LA==": { - "display_string": [ - "\ue030Android63804091" - ], - "profiles": [], - "name": "\ue030Android63804091", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 19:46:19", - "registerOn": 1670323488.4761457, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323488.4761462, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323488.476156, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323488.4761572, - "lastIP": "azj~zo~}jbaid\u007f", - "deviceUUID": "69f10dea84944b1207c6357b810eb10568389ad3" - }, - "pb-IF4NU3onCg==": { - "display_string": [ - "\ue063subashchan" - ], - "profiles": [], - "name": "\ue063subashchan", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-11 12:03:28", - "registerOn": 1670323513.6518407, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323513.6518412, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323513.6518488, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323513.6518497, - "lastIP": "azo~zi~~lcaj`\u007f", - "deviceUUID": "18c7c106e716867750ea47a695d7c4a7215020c4", - "cMsgCount": 1, - "lastMsgTime": 1670323524.0594983, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4tU0cgJw==": { - "display_string": [ - "\ue030Android63653357" - ], - "profiles": [], - "name": "\ue030Android63653357", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-13 10:24:33", - "registerOn": 1670323628.0846946, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323628.084695, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323628.0847054, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323628.0847063, - "lastIP": "az`~yj~{i~~of", - "deviceUUID": "adbe7928aeddd7118fcffc649aa7cb611fd3a58f" - }, - "pb-IF4tUlgHLg==": { - "display_string": [ - "\ue063Assertive2", - "\ue030Android57101758" - ], - "profiles": [], - "name": "\ue063Assertive2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-15 18:25:42", - "registerOn": 1670323708.3498294, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323708.3498302, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323708.3498392, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323708.34984, - "lastIP": "dvva{n~~aeai`}", - "deviceUUID": "63a3897323b88ec5af199cb615205ce594c415c9" - }, - "pb-IF4uU0oHVQ==": { - "display_string": [ - "\ue063WeaklyDece" - ], - "profiles": [], - "name": "\ue063WeaklyDece", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 08:35:52", - "registerOn": 1670323772.778086, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323772.7780864, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323772.7780964, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323772.7780974, - "lastIP": "cyvh{va~k~}mc", - "deviceUUID": "34e80ef02d0fb4136ba1273bdbeab24f115bc9c1" - }, - "pb-IF4DU08kHw==": { - "display_string": [ - "\ue020TopCapability10" - ], - "profiles": [], - "name": "\ue020TopCapability10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 20:35:02", - "registerOn": 1670323787.8947546, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323787.894755, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323787.8947651, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323787.8947663, - "lastIP": "azj~zo~}ihaibz", - "deviceUUID": "8e10941ca63b3d82e330633f62c832213a10b8a3" - }, - "pb-IF4BU3EtLg==": { - "display_string": [ - "\ue030Android62371159" - ], - "profiles": [], - "name": "\ue030Android62371159", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 20:11:13", - "registerOn": 1670323804.7764452, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323804.7764454, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323804.7764542, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323804.776455, - "lastIP": "a\u007fn~~agan~~jb", - "deviceUUID": "a07a568221a613569addd1b28094fb71d57b9c4f" - }, - "pb-IF40U2stDA==": { - "display_string": [ - "\ue020anuj6dager" - ], - "profiles": [], - "name": "\ue020anuj6dager", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-08 16:10:36", - "registerOn": 1670323935.34262, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323935.3426206, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323935.3426313, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323935.3426325, - "lastIP": "a|j~~mdambajb|", - "deviceUUID": "bd7ea938045ee17e7b73f1a580edffc3ce1b8ec8" - }, - "pb-IF41UlAhCA==": { - "display_string": [ - "\ue063sds420s" - ], - "profiles": [], - "name": "\ue063sds420s", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-16 16:12:38", - "registerOn": 1670323994.946162, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323994.9461625, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323994.9461725, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670336554.7977996, - "lastIP": "azo~{a~~kaajb~", - "deviceUUID": "06b24a9588f613fb62ed6c8e4e3c3215008c957e" - }, - "pb-IF42U04yBw==": { - "display_string": [ - "\ue063Hardwork14" - ], - "profiles": [], - "name": "\ue063Hardwork14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 20:14:48", - "registerOn": 1670324233.494325, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670324233.4943254, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324233.4943345, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670324233.4943354, - "lastIP": "azo~zi~xn~~lc", - "deviceUUID": "a2f4c3e1c58d6788b8d8a19d41f6adec18a6c0a0" - }, - "pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF": { - "display_string": [ - "\ue020ashu42v" - ], - "profiles": [], - "name": "\ue020ashu42v", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-30 00:27:53", - "registerOn": 1670324377.9480104, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670324377.948011, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324377.948021, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670324377.9480221, - "lastIP": "dxvc~vazh~~l", - "deviceUUID": "\u0015\u0003]YVL\u0002\u000fX\u0007CV\u000eSRM\u0003_SYBQ_WYB", - "cMsgCount": 0, - "lastMsgTime": 1670324917.3238666, - "lastMsg": "oh acha", - "cSameMsg": 0 - }, - "pb-IF4yU08bLQ==": { - "display_string": [ - "\ue030Android63997565" - ], - "profiles": [], - "name": "\ue030Android63997565", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 16:26:10", - "registerOn": 1670324708.4183412, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670324708.4183416, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324708.4183514, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670324708.4183524, - "lastIP": "a}h~\u007fvf|vfz", - "deviceUUID": "\u0015R\u000fUT\u0015X^U\u0005G\u0003\u000bRS\u0011\u0007YTSCYYUYM" - }, - "pb-IF4QU2UnJA==": { - "display_string": [ - "\ue030Android61281057" - ], - "profiles": [], - "name": "\ue030Android61281057", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-16 23:49:08", - "registerOn": 1670324930.1736083, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670324930.1736088, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324930.1736178, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670324930.1736188, - "lastIP": "eajaxvb|o~~jh", - "deviceUUID": "\u0015Y^\u0002" - }, - "pb-IF4VUkMgUA==": { - "display_string": [ - "\ue063AfrodityHe" - ], - "profiles": [], - "name": "\ue063AfrodityHe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 21:20:07", - "registerOn": 1670325193.0797393, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325193.0797398, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325193.0797498, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325193.079751, - "lastIP": "a~o~}laaje{vayl", - "deviceUUID": "d2a77e5b4210bd6611975f624f2e83bc82e98945" - }, - "pb-IF4PU3oqXQ==": { - "display_string": [ - "\ue020Go\u3164D\u3164Usopp", - "\ue030Android63162454" - ], - "profiles": [], - "name": "\ue020Go\u3164D\u3164Usopp", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-06 17:13:17", - "registerOn": 1670325215.472564, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325215.4725645, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325215.4725733, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325215.4725742, - "lastIP": "azo~{a~}h`aja~", - "deviceUUID": "778748b6226c33833dc9c290d52824966873f9db" - }, - "pb-IF48VXAqBg==": { - "display_string": [ - "\ue030Android49166175" - ], - "profiles": [], - "name": "\ue030Android49166175", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-28 14:19:22", - "registerOn": 1670325373.6915343, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325373.6915348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325373.6915448, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325373.691546, - "lastIP": "az`~yj~{i~~of", - "deviceUUID": "5fd00443cb7b72c371389cbacfcca970cff286a0" - }, - "pb-IF4VU08bDg==": { - "display_string": [ - "\ue030Android63997698" - ], - "profiles": [], - "name": "\ue030Android63997698", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 16:45:14", - "registerOn": 1670325437.9224865, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325437.922487, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325437.922496, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325437.9224968, - "lastIP": "axm~~ofalaaje}", - "deviceUUID": "8c13885b11bf0056f71b53434f42a6343546a4f4" - }, - "pb-JiNJARBbXUFGXlpHGURYUFVCF0BYQ1VK": { - "display_string": [ - "\ue020SREEKANTH1943", - "\ue030Android12063835" - ], - "profiles": [], - "name": "\ue020SREEKANTH1943", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-28 19:26:58", - "registerOn": 1670325522.8823285, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325522.882329, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325522.8823383, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325522.8823392, - "lastIP": "a~o~}ieaj`yvb{`", - "deviceUUID": "ed7a667acc53dfa611875977af10ddb5b5b96b45" - }, - "pb-IF4DU08vBw==": { - "display_string": [ - "\ue063Miur35" - ], - "profiles": [], - "name": "\ue063Miur35", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 11:43:18", - "registerOn": 1670325727.9705892, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325727.9705896, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325727.9706001, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325727.9706013, - "lastIP": "a~o~}igangaj`\u007f", - "deviceUUID": "03c86fe9486247a0ddcbc176d369a41537c5d913" - }, - "pb-IF4iI04x": { - "display_string": [ - "\ue063jethendras", - "\ue030Android19866571", - "\ue030Android19849129" - ], - "profiles": [], - "name": "\ue063jethendras", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-20 18:35:34", - "registerOn": 1670325975.117926, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325975.1179261, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325975.117935, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325975.1179357, - "lastIP": "a}j~~ocaid|viy", - "deviceUUID": "06a13238adfca04a6a8da6b2b52cfa9117ce57a2" - }, - "pb-IF4KXmcn": { - "display_string": [ - "\ue020warriorofsoulruler1", - "\ue030Android18117877" - ], - "profiles": [], - "name": "\ue030Android18117877", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-18 09:58:16", - "registerOn": 1670325980.807262, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325980.8072624, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325980.8072712, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325980.807272, - "lastIP": "a\u007fk~}mcaie\u007fvh{", - "deviceUUID": "71460dfda3ed612808915f8322aec0eff6a622bd" - }, - "pb-IF4xU2waHw==": { - "display_string": [ - "\ue030Android61975304" - ], - "profiles": [], - "name": "\ue030Android61975304", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-14 14:16:05", - "registerOn": 1670326626.3205829, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670326626.3205833, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670326626.3205914, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670326626.3205922, - "lastIP": "a|o~vo~~hiai`z", - "deviceUUID": "\u0015T_\u0003U\u0016U\u000b\u0004" - }, - "pb-IF42UnAsNQ==": { - "display_string": [ - "\ue063WideEyedB2", - "\ue030Android56478145" - ], - "profiles": [], - "name": "\ue063WideEyedB2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-30 13:27:55", - "registerOn": 1670326659.3850675, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670326659.385068, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670326659.385076, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670326659.385077, - "lastIP": "awk~wo~}ldaof", - "deviceUUID": "a7702e699e8499e0dd2432d20dcb5deb8f56ae61" - }, - "pb-IF41UlkcIA==": { - "display_string": [ - "\ue030Android59873080" - ], - "profiles": [], - "name": "\ue030Android59873080", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-20 13:58:09", - "registerOn": 1670327192.6990142, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670327192.6990144, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670327673.800667, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670327399.1671722, - "lastIP": "azj~zo~}laaifv", - "deviceUUID": "\u0015T\\\u0004", - "cMsgCount": 0, - "lastMsgTime": 1670327673.8008454, - "lastMsg": "CKD ka gaand me 14 lund isha ki maa Randi", - "cSameMsg": 0 - }, - "pb-IF5UU3AyNw==": { - "display_string": [ - "\ue030Android62113852" - ], - "profiles": [], - "name": "\ue030Android62113852", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-20 10:27:51", - "registerOn": 1670327491.8374088, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670327491.8374093, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327491.8374193, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327491.83742, - "lastIP": "a\u007fn~}jcaj`vvb~a", - "deviceUUID": "ebbd3626b76f9cb463b10b199a09b65e3c8967f8", - "cMsgCount": 0, - "lastMsgTime": 1670327703.9231, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4zU1BSBw==": { - "display_string": [ - "\ue030Android63997645" - ], - "profiles": [], - "name": "\ue030Android63997645", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 16:37:50", - "registerOn": 1670327646.3797734, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670327646.3797739, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327646.3797832, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327646.3797839, - "lastIP": "axi~~ifa`fajb\u007f", - "deviceUUID": "\u0015RYYRDU\u000eY\u0003\u0015\u0004[\u0004VEXXSXASYQWD" - }, - "pb-IF4MU04MMg==": { - "display_string": [ - "\ue030Android63945820" - ], - "profiles": [], - "name": "\ue030Android63945820", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 10:54:07", - "registerOn": 1670327752.0334394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670327752.0334404, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327752.0334496, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327752.0334506, - "lastIP": "cxvbvvd~vava", - "deviceUUID": "f9230a0e20d8a79f2fb80cb52a299abede89f143" - }, - "pb-IF42U3ciNQ==": { - "display_string": [ - "\ue063Abbuabbuaa" - ], - "profiles": [], - "name": "\ue063Abbuabbuaa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-25 14:58:29", - "registerOn": 1670327961.6425345, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670327961.642535, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327961.642544, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327961.6425452, - "lastIP": "a~h~}jdaa`aid\u007f", - "deviceUUID": "8184746c4f18393c073c5ce44bb4877d694e912e" - }, - "pb-IF4dUloABA==": { - "display_string": [ - "\ue030Android59978471" - ], - "profiles": [], - "name": "\ue030Android59978471", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-24 14:22:26", - "registerOn": 1670327998.6811426, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670327998.6811433, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327998.6811523, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327998.6811533, - "lastIP": "azo~{a~~kdalf", - "deviceUUID": "\u0015\u0007^PRDSYQYDYZPXL" - }, - "pb-IF4KU3JdDA==": { - "display_string": [ - "\ue020SectarianPioneer25" - ], - "profiles": [], - "name": "\ue020SectarianPioneer25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-02 15:22:11", - "registerOn": 1670328047.8242092, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328047.8242097, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328047.824219, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328047.8242197, - "lastIP": "b}k~~`gaiaxvaz", - "deviceUUID": "65f0d98269264b2cff07338106471260003e7632" - }, - "pb-IF4oElIy": { - "display_string": [ - "\ue063NoName54913f", - "\ue030Android24828802" - ], - "profiles": [], - "name": "\ue063NoName54913f", - "isBan": false, - "isMuted": false, - "accountAge": "2018-06-01 19:53:14", - "registerOn": 1670328102.1097858, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328102.1097865, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670330128.035162, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328102.1097958, - "lastIP": "a~o~v`~~iiakf", - "deviceUUID": "f213a83878bed9402cd3288517165e177fd8838a", - "cMsgCount": 0, - "lastMsgTime": 1670330875.3406117, - "lastMsg": "darkness? nofe", - "cSameMsg": 0 - }, - "pb-IF4tUhgtAA==": { - "display_string": [ - "\ue030Android54534556" - ], - "profiles": [], - "name": "\ue030Android54534556", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-08 23:30:07", - "registerOn": 1670328459.441897, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328459.4418974, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328459.441906, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328459.4419067, - "lastIP": "azo~|j~xl~~jc", - "deviceUUID": "\u0015\u0002\u000f\u0004\u0004\u0017T\u000e\u0007VF\u0005YUY\u0016\u0003XSUFS^XT" - }, - "pb-IF4eU3UODA==": { - "display_string": [ - "\ue026gcuser1633413302872", - "\ue030Android60672288" - ], - "profiles": [], - "name": "\ue030Android60672288", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-16 08:00:39", - "registerOn": 1670328573.5471966, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328573.547197, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328573.547205, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328573.5472057, - "lastIP": "a~o~}mbajayvcy", - "deviceUUID": "d00694006d05615b370a49f226f7c0e938017fff" - }, - "pb-IF4GV2YFJA==": { - "display_string": [ - "\ue063GrandTorna" - ], - "profiles": [], - "name": "\ue063GrandTorna", - "isBan": false, - "isMuted": false, - "accountAge": "2018-10-09 19:30:25", - "registerOn": 1670328700.0748413, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328700.0748417, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328700.07485, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328700.0748508, - "lastIP": "i}vivvc\u007fvazh", - "deviceUUID": "80a84fbdd7d9a80abe9c77d8a4cd5bebedb436cf" - }, - "pb-IF4JU08ZAw==": { - "display_string": [ - "\ue030Android63997986" - ], - "profiles": [], - "name": "\ue030Android63997986", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 17:26:30", - "registerOn": 1670328704.0734298, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328704.0734303, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328704.0734398, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328704.0734406, - "lastIP": "b}i~~k~~vaxo", - "deviceUUID": "06e4b1315becb85e775aa9aa20c0b55328ec69c8" - }, - "pb-IF5QVXYYJA==": { - "display_string": [ - "\ue063Vivekdestr" - ], - "profiles": [], - "name": "\ue063Vivekdestr", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-23 14:40:44", - "registerOn": 1670328712.1810508, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328712.1810515, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328712.1810598, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328712.1810608, - "lastIP": "aya~~liajbyvfy", - "deviceUUID": "353e5c0e2e891b6a71026fd4bd67d989808f22ed" - }, - "pb-IF4PUhEcUQ==": { - "display_string": [ - "\ue020ItzCOSMOS2023" - ], - "profiles": [], - "name": "\ue020ItzCOSMOS2023", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-11 15:37:58", - "registerOn": 1670328715.0368557, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328715.0368567, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328715.0368655, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328715.0368667, - "lastIP": "dxvazvb\u007fvdv", - "deviceUUID": "\u0015Y\u000fQVBV[VV\u0011\u0003TTX\u0016\u0007_STLXTYSD" - }, - "pb-IF4NU04KDw==": { - "display_string": [ - "\ue063ManiacalCo" - ], - "profiles": [], - "name": "\ue063ManiacalCo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 13:33:39", - "registerOn": 1670328793.3029082, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328793.302909, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328793.3029191, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328793.3029199, - "lastIP": "b}k~}heajd}vc|", - "deviceUUID": "0535b3524d1a09ac506e18f8293a66f82d24ebd7" - }, - "pb-IF4SU3UIAQ==": { - "display_string": [ - "\ue063GreyAardva", - "\ue030Android61397395" - ], - "profiles": [], - "name": "\ue063GreyAardva", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-17 16:06:48", - "registerOn": 1670328802.362002, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328802.3620026, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328802.3620121, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328802.3620129, - "lastIP": "azo~{a~}kcaicw", - "deviceUUID": "639b12380b07f49d12ad2836e835a35900552c4a" - }, - "pb-IF4lVU9bEA==": { - "display_string": [ - "\ue020HAWKI55" - ], - "profiles": [], - "name": "\ue020HAWKI55", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-05 14:03:55", - "registerOn": 1670328843.6537716, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328843.6537719, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328843.6537793, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328843.65378, - "lastIP": "a\u007fk~wk~~leaif", - "deviceUUID": "555e0137ef2c452305722168c4b9a9fbd41f4a10" - }, - "pb-IF4FU3ADMQ==": { - "display_string": [ - "\ue030Android62325956" - ], - "profiles": [], - "name": "\ue030Android62325956", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-29 21:10:57", - "registerOn": 1670328855.734646, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328855.7346466, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328855.7346563, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328855.7346573, - "lastIP": "dxva~vavn~~nb", - "deviceUUID": "5dc2a63f03c15199a483557117009b08016a1209" - }, - "pb-IF4FU3NcFw==": { - "display_string": [ - "\ue063Unenlight4" - ], - "profiles": [], - "name": "\ue063Unenlight4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 16:48:46", - "registerOn": 1670329143.4001224, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670329143.400123, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329143.4001317, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329143.4001324, - "lastIP": "a~j~~kdajd~vazo", - "deviceUUID": "64f13314cbba2da3397b5c597ce06b5c2c496015" - }, - "pb-IF4TV0wvVQ==": { - "display_string": [ - "\ue063PuzzledSol" - ], - "profiles": [], - "name": "\ue063PuzzledSol", - "isBan": false, - "isMuted": false, - "accountAge": "2019-03-23 17:21:29", - "registerOn": 1670329212.404818, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670329212.4048188, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329212.4048443, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329212.4048452, - "lastIP": "dzvf{va}vhy", - "deviceUUID": "71f80b9134c785c4298264cb9239ccb37455fdaf" - }, - "pb-IF4XU3YGFg==": { - "display_string": [ - "\ue020TastelessSystem38" - ], - "profiles": [], - "name": "\ue020TastelessSystem38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-20 16:16:59", - "registerOn": 1670329769.7248714, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670329769.7248719, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329769.7248793, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329769.7248802, - "lastIP": "b}k~~`gaia|vax", - "deviceUUID": "218394d7f709f5896d0ea114c5c20282a9ecc5e9" - }, - "pb-IF43UlccEQ==": { - "display_string": [ - "\ue020SiriusSam15", - "\ue030Android60471603" - ], - "profiles": [], - "name": "\ue020SiriusSam15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-13 17:05:55", - "registerOn": 1670329936.3558497, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670329936.3558502, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329936.3558602, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329936.355861, - "lastIP": "azo~{a~}leaidx", - "deviceUUID": "a0b384d772aa086e7dab5fcd950f951fb13c96ed" - }, - "pb-IF4IV08vJw==": { - "display_string": [ - "\ue020anuragkareliya123" - ], - "profiles": [], - "name": "\ue020anuragkareliya123", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-07 14:22:58", - "registerOn": 1670330015.9494424, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330015.9494429, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330015.9494498, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330015.9494505, - "lastIP": "a\u007fn~}ifa`aaic}", - "deviceUUID": "01aabc41b4b9e0a7492e82bf950f3060f4ad1cb2" - }, - "pb-IF4qUxYvIA==": { - "display_string": [ - "\ue063quicksnipe" - ], - "profiles": [], - "name": "\ue063quicksnipe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-17 12:38:39", - "registerOn": 1670330038.8219302, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330038.8219304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330038.821938, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330038.8219388, - "lastIP": "a\u007fn~~acaig{vd~", - "deviceUUID": "d53fcd54e6796458b313ddfade7a39799c24dcfd", - "cMsgCount": 2, - "lastMsgTime": 1670330216.2562494, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4AU3hZPA==": { - "display_string": [ - "\ue063Pavan" - ], - "profiles": [], - "name": "\ue063Pavan", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 21:04:44", - "registerOn": 1670330051.865205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330051.8652055, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330051.8652139, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330051.8652153, - "lastIP": "dvvb\u007fl~~j`aja{", - "deviceUUID": "5e89cae6ddeaf888dcb6acf9d0e2bd7c051181d6" - }, - "pb-IF5TE2M5": { - "display_string": [ - "\ue020ahamadakthus" - ], - "profiles": [], - "name": "\ue020ahamadakthus", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-24 10:54:01", - "registerOn": 1670330072.9584184, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330072.9584188, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330072.958428, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670336725.5473769, - "lastIP": "ayj~}ifaid|vaxl", - "deviceUUID": "8a9e8b2f8430a1a02dbd8c5c33da5d338fa353b5" - }, - "pb-IF4wU00DEA==": { - "display_string": [ - "\ue063ZADKIEL", - "\ue030Android63972115", - "\ue030Android63971981", - "\ue030Android63972065", - "\ue030Android63972400" - ], - "profiles": [], - "name": "\ue063ZADKIEL", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 18:25:53", - "registerOn": 1670330084.0283349, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330084.0283353, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330084.0283444, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330084.028345, - "lastIP": "a\u007fk~}haaib{vaxm", - "deviceUUID": "711af46b6d319e2e692e3818dca8854b535283db" - }, - "pb-IF4mU0sMUQ==": { - "display_string": [ - "\ue030Android63838539" - ], - "profiles": [], - "name": "\ue030Android63838539", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-10 13:27:08", - "registerOn": 1670330181.3622932, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330181.3622937, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330181.3623028, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330181.3623035, - "lastIP": "a~j~}iaangaie|", - "deviceUUID": "ec8033d8df7f8740ecad268a33a18d5cbc86b3b9" - }, - "pb-IF5QU3oCEg==": { - "display_string": [ - "\ue020LargeTornado46516" - ], - "profiles": [], - "name": "\ue020LargeTornado46516", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-28 07:15:07", - "registerOn": 1670330413.2825234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330413.282524, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330413.282533, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670330428.9660273, - "lastIP": "b}k~~`gai`}vavm", - "deviceUUID": "e11733cfbaac799f8f8bc25da52ef852889bdb5c" - }, - "pb-IF5WU0saBg==": { - "display_string": [ - "\ue020AssasiN4116" - ], - "profiles": [], - "name": "\ue020AssasiN4116", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 15:22:04", - "registerOn": 1670330556.6910794, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330556.6910799, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330556.691088, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330556.6910892, - "lastIP": "a\u007fn~}h`aifaidz", - "deviceUUID": "f564e7fdced9c3704bcaf60333ec88db427b79bd" - }, - "pb-IF40U08YKg==": { - "display_string": [ - "\ue030Android63998324" - ], - "profiles": [], - "name": "\ue030Android63998324", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 18:08:47", - "registerOn": 1670330652.0145528, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330652.0145533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330652.0145624, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330652.0145633, - "lastIP": "a~h~zl~~a`aaa", - "deviceUUID": "24e6b2598a2fa64bc3a160906f6010716f2cc8c9" - }, - "pb-IF4eU086Dw==": { - "display_string": [ - "\ue020HerbalPopulation30" - ], - "profiles": [], - "name": "\ue020HerbalPopulation30", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 23:35:50", - "registerOn": 1670330806.6942346, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330806.6942353, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330806.6942441, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330806.6942449, - "lastIP": "azo~{n~}jaaig~", - "deviceUUID": "b24e0847757eaefd59da6b9214b0abb05b6df496" - }, - "pb-IF41U0Y5PA==": { - "display_string": [ - "\ue063Rajjadhav9", - "\ue030Android59261403" - ], - "profiles": [], - "name": "\ue063Rajjadhav9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 17:24:14", - "registerOn": 1670330823.770203, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330823.7702036, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330823.7702105, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670331451.904811, - "lastIP": "azh~~hgaih}vawn", - "deviceUUID": "6b2c8f6ccdb1b386b2809a13b57aae77fd820c1a", - "cMsgCount": 0, - "lastMsgTime": 1670331414.1109765, - "lastMsg": "\ud83d\ude02\ud83d\ude02\ud83d\ude02", - "cSameMsg": 0 - }, - "pb-IF4lVG8eBA==": { - "display_string": [ - "\ue020LogicalDuck1803" - ], - "profiles": [], - "name": "\ue020LogicalDuck1803", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-16 19:47:59", - "registerOn": 1670330871.2040243, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330871.2040248, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330871.2040348, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670333462.1248157, - "lastIP": "a\u007fn~xn~}jdaig|", - "deviceUUID": "87d6699deaa69f754f4a7de401c140119923c1ce", - "cMsgCount": 0, - "lastMsgTime": 1670331122.8076615, - "lastMsg": "0", - "cSameMsg": 0 - }, - "pb-IF5VU0EjVw==": { - "display_string": [ - "\ue030Android63061128" - ], - "profiles": [], - "name": "\ue030Android63061128", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-01 17:56:29", - "registerOn": 1670330882.108143, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330882.1081436, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330882.108151, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330882.108152, - "lastIP": "gxvb|o~~aaaiez", - "deviceUUID": "\u0015V\u000e\u0007" - }, - "pb-IF4BEW0D": { - "display_string": [ - "\ue063LEGIONDIVI", - "\ue030Android25382791" - ], - "profiles": [], - "name": "\ue063LEGIONDIVI", - "isBan": false, - "isMuted": false, - "accountAge": "2018-06-14 12:56:25", - "registerOn": 1670330914.1182535, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330914.1182542, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330914.118262, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330914.1182628, - "lastIP": "a\u007fk~}meai`yvb}n", - "deviceUUID": "70b07d512738b75547be56e7972eec2d420c3961" - }, - "pb-IF5QU0wNJg==": { - "display_string": [ - "\ue063Strangest8" - ], - "profiles": [], - "name": "\ue063Strangest8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 22:21:04", - "registerOn": 1670330928.4512026, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330928.4512029, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330928.4512107, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330928.451212, - "lastIP": "dxviaie{vaxm", - "deviceUUID": "4f06a2122eb2e40e7b497460f7ba8364481ca1ca" - }, - "pb-IF4AVHQ9NQ==": { - "display_string": [ - "\ue020ExogenousBudget8" - ], - "profiles": [], - "name": "\ue020ExogenousBudget8", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-17 16:43:42", - "registerOn": 1670331074.7362974, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670331074.736298, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331074.736306, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670331074.7363067, - "lastIP": "a\u007fk~~liaiixviz", - "deviceUUID": "\u0015Q\u000bWXDUY\u0005XETT\u0003\u0005\u0016S\\QQGYXSYCR", - "cMsgCount": 0, - "lastMsgTime": 1670333569.7223873, - "lastMsg": "sahilp me aao re koi", - "cSameMsg": 0 - }, - "pb-IF4tV0YpCg==": { - "display_string": [ - "\ue020FuschiaChicken22885" - ], - "profiles": [], - "name": "\ue020FuschiaChicken22885", - "isBan": false, - "isMuted": false, - "accountAge": "2019-02-21 21:21:37", - "registerOn": 1670331228.5726087, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670331228.5726092, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670331269.7994666, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670331228.5726187, - "lastIP": "azo~{a~~kgaiix", - "deviceUUID": "cf60478ec7cd549dd8b3bfa8108203095220e9a6", - "cMsgCount": 0, - "lastMsgTime": 1670331269.7994137, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4FU08hMw==": { - "display_string": [ - "\ue063Godfreykin" - ], - "profiles": [], - "name": "\ue063Godfreykin", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 16:11:55", - "registerOn": 1670331711.777738, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670331711.7777386, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331711.7777467, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670331711.7777474, - "lastIP": "awh~~aeaj`zvb", - "deviceUUID": "a333602af18ff895ba35d8e352d1fddfc9dbd8da" - }, - "pb-IF4gUnIzIg==": { - "display_string": [ - "\ue020OverallIncarnation20" - ], - "profiles": [], - "name": "\ue020OverallIncarnation20", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-10 23:04:50", - "registerOn": 1670331998.9420974, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670331998.942098, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331998.9421065, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670331998.9421077, - "lastIP": "azj~zo~~kfaibw", - "deviceUUID": "c0da9354ccae30d5dbe91ecbce7d54ce7eab4f32" - }, - "pb-IF4OU04GBg==": { - "display_string": [ - "\ue063MRKHINDIGA" - ], - "profiles": [], - "name": "\ue063MRKHINDIGA", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 18:23:34", - "registerOn": 1670332003.9399593, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332003.9399598, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670332262.7350354, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670334360.0765352, - "lastIP": "a\u007fk~}maaiiajb", - "deviceUUID": "6ced21ada9869093bef0a7b8fd5e8a4c55abd317", - "cMsgCount": 0, - "lastMsgTime": 1670332262.7351954, - "lastMsg": "hello chutiyo", - "cSameMsg": 0 - }, - "pb-IF4oVRIALg==": { - "display_string": [ - "\ue063DaveGamer6" - ], - "profiles": [], - "name": "\ue063DaveGamer6", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-19 14:15:23", - "registerOn": 1670332018.0404885, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332018.040489, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332018.0404985, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332018.0404994, - "lastIP": "awh~~adalaai`~", - "deviceUUID": "a0c8c0862e3a8c2792de71efc3f1a8f2cae0f578" - }, - "pb-IF4sUnYKXA==": { - "display_string": [ - "\ue063TOFFE2022" - ], - "profiles": [], - "name": "\ue063TFFE2022", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-31 21:56:06", - "registerOn": 1670332024.983172, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332024.9831727, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332024.9831817, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670335640.9330647, - "lastIP": "bxvdaie{vawl", - "deviceUUID": "7c86dff289fd825b55413be3c6d230f5ad9edaf3" - }, - "pb-IF4oU20bJA==": { - "display_string": [ - "\ue020RegretfulFighter7831" - ], - "profiles": [], - "name": "\ue020RegretfulFighter7831", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-16 15:37:41", - "registerOn": 1670332196.226634, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332196.2266347, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332196.2266417, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332196.2266424, - "lastIP": "a\u007fn~~ahaig~va\u007f", - "deviceUUID": "5b0bbcfcb34a9ccd099c0db3fb3abd9323d8d41f" - }, - "pb-IF4MU04CDQ==": { - "display_string": [ - "\ue020FasterTuba34" - ], - "profiles": [], - "name": "\ue020FasterTuba34", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 18:34:47", - "registerOn": 1670332493.031049, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332493.0310495, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332493.031058, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332493.0310595, - "lastIP": "a\u007fn~~ahaigal`", - "deviceUUID": "315426646c2a5b230daaf80dd85ed7d686c12123" - }, - "pb-IF4FU28fVg==": { - "display_string": [ - "\ue020kumargchethan56" - ], - "profiles": [], - "name": "\ue020kumargchethan56", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-26 10:30:59", - "registerOn": 1670332570.3545327, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332570.354533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332570.3545418, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332570.3545427, - "lastIP": "azo~{m~~mfai`v", - "deviceUUID": "cecaf1a5847d6b847a4e2f4d9e55db4db623ea16" - }, - "pb-IF4KU1A7PQ==": { - "display_string": [ - "\ue030Android63997996" - ], - "profiles": [], - "name": "\ue030Android63997996", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 17:27:30", - "registerOn": 1670332621.5350256, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332621.535026, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332621.5350356, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332621.5350366, - "lastIP": "d~vazh~|l~xi", - "deviceUUID": "60c18238a14a78a60e75f7ce54887386384d6818" - }, - "pb-IF4dU3QbHw==": { - "display_string": [ - "\ue020gameryasar93" - ], - "profiles": [], - "name": "\ue020gameryasar93", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-15 21:30:56", - "registerOn": 1670332678.6896298, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332678.6896303, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332678.689639, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332678.68964, - "lastIP": "azo~{a~~oiaii~", - "deviceUUID": "fab4b7f324dc6c57976278f9d62d81cd11fe8301" - }, - "pb-IF4SU1BbHw==": { - "display_string": [ - "\ue030Android63993006" - ], - "profiles": [], - "name": "\ue030Android63993006", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 02:47:53", - "registerOn": 1670332747.9222395, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332747.9222403, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332747.9222548, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332747.9222555, - "lastIP": "a~h~}maajc\u007fvb\u007fk", - "deviceUUID": "6093b02fb4a82a356fe2321e85a56fefb5bf6ec4" - }, - "pb-IF4SU1BdKg==": { - "display_string": [ - "\ue063EightyHear" - ], - "profiles": [], - "name": "\ue063EightyHear", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 18:15:42", - "registerOn": 1670332774.2946057, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332774.2946064, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332774.2946172, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332774.2946181, - "lastIP": "azo~{h~vk~ym", - "deviceUUID": "4c76f765766d1418b17ad32f629498cf4067537e" - }, - "pb-IF4VUGpe": { - "display_string": [ - "\ue063Vanquishe9", - "\ue030Android11472375" - ], - "profiles": [], - "name": "\ue063Vanquishe9", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-08 18:03:59", - "registerOn": 1670332903.4268982, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332903.4268987, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332903.426908, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332903.4269092, - "lastIP": "a\u007fk~xh~~jhaa", - "deviceUUID": "9c46b1019101f05d83b3b63b344fb047d683f051" - }, - "pb-IF49U0oCKQ==": { - "display_string": [ - "\ue063NoName44250c" - ], - "profiles": [], - "name": "\ue063NoName44250c", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 10:47:14", - "registerOn": 1670333041.984932, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333041.9849322, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333041.984939, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333041.98494, - "lastIP": "dvvc|vb{k~~l`", - "deviceUUID": "675ef762b4b584d958a4980af72e051d56743ba2" - }, - "pb-IF41VUgdEw==": { - "display_string": [ - "\ue030Android51835869" - ], - "profiles": [], - "name": "\ue030Android51835869", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-06 05:48:53", - "registerOn": 1670333077.0857003, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333077.0857008, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333077.08571, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333077.0857108, - "lastIP": "a{h~}icamhaiez", - "deviceUUID": "\u0015Q\u000bSUGV]\u0007Y@Q^U" - }, - "pb-IF4CLUED": { - "display_string": [ - "\ue063VishalDorl", - "\ue030Android19868642" - ], - "profiles": [], - "name": "\ue063VishalDorl", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-22 14:45:50", - "registerOn": 1670333159.3431795, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333159.3431797, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333159.3431885, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333159.3431892, - "lastIP": "azj~zo~}laaj`~", - "deviceUUID": "c7db4503a355ad7ad212d9a7785b6e6e040e39ef" - }, - "pb-IF4NU0sTNQ==": { - "display_string": [ - "\ue020HookedMedusa32" - ], - "profiles": [], - "name": "\ue020HookedMedusa32", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 12:50:36", - "registerOn": 1670333187.4803321, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333187.4803326, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333187.4803436, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333187.4803443, - "lastIP": "dvva{va}`~zh", - "deviceUUID": "57ae5b4a78152705e5cbc7cb57dcb014008dd7ba" - }, - "pb-IF4HVFFTUg==": { - "display_string": [ - "\ue020OutrightPeriphery10" - ], - "profiles": [], - "name": "\ue020OutrightPeriphery10", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-25 11:59:04", - "registerOn": 1670333237.9251213, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333237.925122, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333237.92513, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333237.925131, - "lastIP": "a\u007fn~}heajdwva}n", - "deviceUUID": "f2f4e5048eec62c921cdc6119b71af1d538ad371" - }, - "pb-IF4BVUYgMQ==": { - "display_string": [ - "\ue063SUSMITH200" - ], - "profiles": [], - "name": "\ue063SUSMITH200", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-22 19:44:07", - "registerOn": 1670333267.7639234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333267.7639236, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333267.7639318, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670333868.7223806, - "lastIP": "a~o~}mbaifvvby", - "deviceUUID": "a34a2bcb41c18c99c907317de924de598298d7e1" - }, - "pb-IF5SU1E4Fg==": { - "display_string": [ - "\ue063investiga2" - ], - "profiles": [], - "name": "\ue063investiga2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 21:34:33", - "registerOn": 1670333271.7683048, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333271.7683058, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333271.7683146, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333271.7683156, - "lastIP": "a\u007fk~~nfajdzvayl", - "deviceUUID": "e73b9d9e77c0462f26fd2508be62d270a65190d3" - }, - "pb-IF5WU0UEUw==": { - "display_string": [ - "\ue020parzivl2071" - ], - "profiles": [], - "name": "\ue020parzivl2071", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 16:25:15", - "registerOn": 1670333290.855211, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333290.8552115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333290.85522, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333290.855221, - "lastIP": "d~vh~vb~j~|k", - "deviceUUID": "b364b583d0d15425cf0114e62e74cbc32192ada7" - }, - "pb-IF4oU0oSHw==": { - "display_string": [ - "\ue020shreemanlegend13", - "\ue030Android63823661" - ], - "profiles": [], - "name": "\ue030Android63823661", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 14:00:25", - "registerOn": 1670333388.2180035, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333388.218004, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333388.2180114, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333388.2180123, - "lastIP": "a~o~va~}mbajcz", - "deviceUUID": "a07cd99cd38413a9c95521ab07afa1c96a7d8920" - }, - "pb-IF4JU08BXQ==": { - "display_string": [ - "\ue063Inadvisab7" - ], - "profiles": [], - "name": "\ue063Inadvisab7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 16:49:23", - "registerOn": 1670333617.0993772, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333617.0993779, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333617.0993865, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333617.0993874, - "lastIP": "azo~{i~}maai`w", - "deviceUUID": "7ae398541549661cbf000e0245d455ae820a932d" - }, - "pb-IF4dUFk_": { - "display_string": [ - "\ue020Devil77181908" - ], - "profiles": [], - "name": "\ue020Devil77181908", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-12 15:42:48", - "registerOn": 1670333620.9742932, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333620.9742937, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670333657.3684678, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333620.9743032, - "lastIP": "azo~|j~~jaaicw", - "deviceUUID": "6aa9e6c979af11b55aae601f6c77eba59c21cee4", - "cMsgCount": 0, - "lastMsgTime": 1670333657.368405, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4UU3FYVg==": { - "display_string": [ - "\ue063hck3rr" - ], - "profiles": [], - "name": "\ue063hck3rr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-28 01:29:59", - "registerOn": 1670333627.037062, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333627.0370624, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333627.0370715, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670335707.191473, - "lastIP": "dvvcxvb~l~}o", - "deviceUUID": "a5d31e88f643d9948539aabe2079c0f14763d9e0" - }, - "pb-IF5dUhkxHw==": { - "display_string": [ - "\ue063UniversalC" - ], - "profiles": [], - "name": "\ue063UniversalC", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-06 19:50:40", - "registerOn": 1670333664.5985448, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333664.5985456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333664.598555, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333664.598556, - "lastIP": "aakiaohaia~", - "deviceUUID": "d841f60ff92203a545f8c49d937efac6da72d9f4" - }, - "pb-IF4JU0U_Ug==": { - "display_string": [ - "\ue063EdwinSajiJ", - "\ue030Android59971496" - ], - "profiles": [], - "name": "\ue063EdwinSajiJ", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-04 11:22:32", - "registerOn": 1670333854.9841914, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333854.9841924, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670333979.986045, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670333921.099636, - "lastIP": "dvvazvb~j~|l", - "deviceUUID": "2c0f72b8c3fd322251462ef42a6bc69f54e2dbde", - "cMsgCount": 0, - "lastMsgTime": 1670333979.9860039, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4uU2UqLQ==": { - "display_string": [ - "\ue030Android61269388" - ], - "profiles": [], - "name": "\ue030Android61269388", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-16 13:52:50", - "registerOn": 1670333876.102998, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333876.1029985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333876.1030076, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333876.1030083, - "lastIP": "a}j~~`baid}vh\u007f", - "deviceUUID": "\u0015\u0003ZXQ\u0010VU\u0003U@\u0005\bY" - }, - "pb-IF4hU25cAg==": { - "display_string": [ - "\ue020DireImpetus33" - ], - "profiles": [], - "name": "\ue020DireImpetus33", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-21 18:03:22", - "registerOn": 1670333919.4382336, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333919.4382339, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333919.4382434, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333919.438244, - "lastIP": "azo~{a~wh~}hd", - "deviceUUID": "96711aae4bec4c80c8b800905cc0510b560eb299" - }, - "pb-IF5RUkgSAQ==": { - "display_string": [ - "\ue063EditorialU" - ], - "profiles": [], - "name": "\ue063EditorialU", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-05 20:01:19", - "registerOn": 1670333999.9390771, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333999.9390779, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333999.939087, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333999.9390876, - "lastIP": "dvvc{vg|vbzm", - "deviceUUID": "c016bfa678a90b141b92dd5bfbf0291f1c1c7ccb" - }, - "pb-IF4PUkogDg==": { - "display_string": [ - "\ue020HatefulAnnoyance26" - ], - "profiles": [], - "name": "\ue020HatefulAnnoyance26", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-20 18:57:48", - "registerOn": 1670334036.0867946, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334036.086795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334036.086804, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334036.086805, - "lastIP": "dvvc{vayo~}ii", - "deviceUUID": "465d806febeff2c167652cf44704b0b47f659f65" - }, - "pb-IF5WU04bVw==": { - "display_string": [ - "\ue030Android63870775" - ], - "profiles": [], - "name": "\ue030Android63870775", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 19:31:44", - "registerOn": 1670334066.3882244, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334066.3882248, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334066.3883545, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334066.3883557, - "lastIP": "a~k~z`~{n~~ai", - "deviceUUID": "220de134e8d86144dbf3f05c2acd9a8576e8e0b4" - }, - "pb-IF4eU0MjFw==": { - "display_string": [ - "\ue030Android63415043" - ], - "profiles": [], - "name": "\ue030Android63415043", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-19 17:52:12", - "registerOn": 1670334108.6975565, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334108.6975567, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334108.6975648, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334108.6975656, - "lastIP": "azj~zo~}iaaibz", - "deviceUUID": "55da7b029c7f1a1eb680330238ad360945e811c6" - }, - "pb-IF4vVWoPHQ==": { - "display_string": [ - "\ue020BrazenCoast73326" - ], - "profiles": [], - "name": "\ue020BrazenCoast73326", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-16 06:02:23", - "registerOn": 1670334366.3915417, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334366.3915422, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334366.3915513, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334366.3915522, - "lastIP": "a|n~}jhaig|vb{h", - "deviceUUID": "7568ce3c82f8371db8487bbbeae1727a9d8e60a8" - }, - "pb-IF4eVXJZXQ==": { - "display_string": [ - "\ue020PlaidSkipper56572", - "\ue030Android24905371" - ], - "profiles": [], - "name": "\ue020PlaidSkipper56572", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-07 06:32:55", - "registerOn": 1670334534.0828547, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334534.082855, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334534.082862, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334534.0828626, - "lastIP": "azo~zi~~lfaae", - "deviceUUID": "33dd1e4a95326667853a0e4f839ad82934e76726" - }, - "pb-IF4IVGUqDA==": { - "display_string": [ - "\ue020shagun2611" - ], - "profiles": [], - "name": "\ue020shagun2611", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-07 17:22:33", - "registerOn": 1670334564.2136989, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334564.2136996, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334564.2137084, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334564.2137094, - "lastIP": "aya~~liajb{vay`", - "deviceUUID": "33ae041f4a865e3ae0d9533f4c3c429d435a1846" - }, - "pb-IF5UU0cuMw==": { - "display_string": [ - "\ue030Android63571326" - ], - "profiles": [], - "name": "\ue030Android63571326", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 17:01:32", - "registerOn": 1670334669.617842, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334669.6178422, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334669.6178503, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334669.6178517, - "lastIP": "a\u007fn~~aeaicala", - "deviceUUID": "\u0015" - }, - "pb-IF41U3U4MQ==": { - "display_string": [ - "\ue020MunificientRoad23" - ], - "profiles": [], - "name": "\ue020MunificientRoad23", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-17 17:51:39", - "registerOn": 1670334690.017025, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334690.0170255, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334690.0170345, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334690.0170352, - "lastIP": "azo~{n~}hiaiay", - "deviceUUID": "895295b53c8554f7da8606666f53d1a1d3c98486" - }, - "pb-IF4sU08vCQ==": { - "display_string": [ - "\ue063FluffyPres" - ], - "profiles": [], - "name": "\ue063FluffyPres", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 19:14:38", - "registerOn": 1670334705.0176127, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334705.0176134, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334705.0176222, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334705.017623, - "lastIP": "avo~~n`aii~va~n", - "deviceUUID": "c971b18a214f8abfd075ccbb11569ef3cd781474" - }, - "pb-IF40U0gqUw==": { - "display_string": [ - "\ue020indiankingsman11" - ], - "profiles": [], - "name": "\ue020indiankingsman11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 15:26:49", - "registerOn": 1670334779.3070962, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334779.3070967, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334779.3071053, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670336131.1290224, - "lastIP": "a~o~va~z`~~a`", - "deviceUUID": "730d594ea1e5f33d2fb7a0ad6df4aedba7d68b6f" - }, - "pb-JiNJARFcUUpFW1pJEEJYXVFEGUBdQVdD": { - "display_string": [ - "\ue020LunaticDynamo4823", - "\ue030Android11633589" - ], - "profiles": [], - "name": "\ue020LunaticDynamo4823", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-15 10:20:44", - "registerOn": 1670334868.9082491, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334868.9082496, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334868.9082575, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334868.9082587, - "lastIP": "azo~{l~~nhaicy", - "deviceUUID": "12a1a8a9bafa33dcdf99e47331601cab76d18a6d" - }, - "pb-IF4FHxgY": { - "display_string": [ - "\ue063PoserSword", - "\ue030Android22922477" - ], - "profiles": [], - "name": "\ue063PoserSword", - "isBan": false, - "isMuted": false, - "accountAge": "2018-06-23 17:33:29", - "registerOn": 1670334892.9619994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334892.9620004, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334892.9620087, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334892.9620097, - "lastIP": "a\u007fk~~mgao`aje{", - "deviceUUID": "b2f597355fb4cff2dd6d731ea1b4bbdfd0db8f24" - }, - "pb-IF43UkIeEA==": { - "display_string": [ - "\ue030Android57703578" - ], - "profiles": [], - "name": "\ue030Android57703578", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-23 14:15:31", - "registerOn": 1670335040.8361874, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670335040.836188, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335040.8361974, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335040.8361983, - "lastIP": "dzva}h~~jcak", - "deviceUUID": "5eaa2179579df11349e60aba83c7ebd96066fccf" - }, - "pb-IF4-U0heCw==": { - "display_string": [ - "\ue020ArcticStatus25", - "\ue030Android63255168" - ], - "profiles": [], - "name": "\ue020ArcticStatus25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 17:00:28", - "registerOn": 1670335235.8373928, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670335235.8373938, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335235.8374019, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335235.8374028, - "lastIP": "a\u007fn~}ifaia~vaz`", - "deviceUUID": "338200d6d437250d44ad3a68eb1f01761bd4cdd3" - }, - "pb-IF4wU0RfVQ==": { - "display_string": [ - "\ue020PredictiveCucumber38" - ], - "profiles": [], - "name": "\ue020PredictiveCucumber38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-23 12:22:38", - "registerOn": 1670335643.2704384, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670335643.270439, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335643.2704487, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335643.2704494, - "lastIP": "azo~zi~~aeaje~", - "deviceUUID": "405405526a9fefa8398f6aff6f020b9f305aeb23" - }, - "pb-IF4LU005HA==": { - "display_string": [ - "\ue063Irascible6", - "\ue030Android61902421" - ], - "profiles": [], - "name": "\ue063Irascible6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 23:21:37", - "registerOn": 1670335792.2253563, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670335792.2253568, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335792.2254555, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335792.2254567, - "lastIP": "azo~zi~~agaif\u007f", - "deviceUUID": "d85050b9fe98d3fa76b6db9aa34aa38917637eb9" - }, - "pb-IF4pU1A-IQ==": { - "display_string": [ - "\ue030Android63998956" - ], - "profiles": [], - "name": "\ue030Android63998956", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 19:38:44", - "registerOn": 1670335795.2236857, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670335795.2236862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335795.2236958, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335795.2236967, - "lastIP": "axm~~ofao`aje", - "deviceUUID": "63a4117a1d0e28553ff0f2049cb693b2f5579ca7" - }, - "pb-IF4dU3dZHw==": { - "display_string": [ - "\ue030Android61429045", - "\ue030PC600983", - "\ue030PC601332" - ], - "profiles": [], - "name": "\ue030PC601332", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-25 17:41:33", - "registerOn": 1670335901.5617974, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670335901.5617979, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335901.5618067, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335901.5618074, - "lastIP": "d~vixva|`~}j", - "deviceUUID": "3baabc5b69e29039e3d9ac513191ad14d3bac0f8" - }, - "pb-IF4CU0gAMg==": { - "display_string": [ - "\ue020TrivialNeighbor48" - ], - "profiles": [], - "name": "\ue020TrivialNeighbor48", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-22 20:26:31", - "registerOn": 1670336321.1252081, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670336321.1252089, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336321.1252162, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336321.1252172, - "lastIP": "a|o~vo~~jca`b", - "deviceUUID": "0af2075be249f52b689b4f3ee6b7473d441e630e" - }, - "pb-IF4jVRMmUQ==": { - "display_string": [ - "\ue020nehelspm" - ], - "profiles": [], - "name": "\ue020nehelspm", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-21 19:47:41", - "registerOn": 1670336385.4933307, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670336385.4933314, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336385.4933393, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336385.4933407, - "lastIP": "azo~{m~}mdaja\u007f", - "deviceUUID": "8fa6b902b07824817dff2d82dc8ea2c38cc25e89" - }, - "pb-IF4BUxlSNg==": { - "display_string": [ - "\ue020ColTPaV", - "\ue030Android45054690" - ], - "profiles": [], - "name": "\ue020ColTPaV", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-30 20:22:56", - "registerOn": 1670336708.1064131, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670336708.1064138, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336708.1064236, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336708.1064243, - "lastIP": "azj~zo~}jhakh", - "deviceUUID": "\u0015\u0004Y\u0004V\u0017PZRVGQ\tXXF\u0002[YWFP_SSM" - }, - "pb-IF5dU08yUw==": { - "display_string": [ - "\ue030Android63906743" - ], - "profiles": [], - "name": "\ue030Android63906743", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 14:50:08", - "registerOn": 1670336783.0353587, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670336783.035359, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336783.0353675, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336783.0353682, - "lastIP": "azo~{a~~aaaje\u007f", - "deviceUUID": "670b7de8c0bbb117276732ff253cb69f094cf094" - }, - "pb-IF4hU0ooFw==": { - "display_string": [ - "\ue020newnoobgamingtamil", - "\ue030Android63487611" - ], - "profiles": [], - "name": "\ue020newnoobgamingtamil", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 14:52:45", - "registerOn": 1670336829.536829, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670336829.5368292, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336829.5368369, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336829.5368376, - "lastIP": "a\u007fn~~aha`hani", - "deviceUUID": "494de84801a36a34d38566db4eade578056955d9" - }, - "pb-IF4sVWoIIw==": { - "display_string": [ - "\ue020OutrageousLecturer43", - "\ue020WindowlessCovenant52", - "\ue063Anaerobic2" - ], - "profiles": [], - "name": "\ue063Anaerobic2", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-20 09:46:29", - "registerOn": 1670336949.7028337, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670336949.7028341, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336949.7028413, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336949.702842, - "lastIP": "a\u007fn~}ifaibwva~k", - "deviceUUID": "90a15f940e605fcfa9ccceebb83257d10177072a" - }, - "pb-IF4dUxkIUg==": { - "display_string": [ - "\ue020kalyan143gameing" - ], - "profiles": [], - "name": "\ue020kalyan143gameing", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-01 16:06:24", - "registerOn": 1670337075.5408385, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670337075.5408394, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337075.5408485, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337075.5408492, - "lastIP": "azo~{`~xj~~lh", - "deviceUUID": "4a804b12721479406d2107e40ed2b98a6024b802" - }, - "pb-IF5QU08FPA==": { - "display_string": [ - "\ue020cuber12717", - "\ue030Android48755222" - ], - "profiles": [], - "name": "\ue030Android48755222", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 10:53:41", - "registerOn": 1670337113.539556, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670337113.539557, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337113.5395656, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337113.5395665, - "lastIP": "ayj~}ifaid~vay", - "deviceUUID": "9e6f41105d9c3812d5bece495b88be19a7d055f0" - } -} \ No newline at end of file diff --git a/dist/ba_root/mods/playersdata/profiles.json2022-12-06 20%3A51%3A54.236791 b/dist/ba_root/mods/playersdata/profiles.json2022-12-06 20%3A51%3A54.236791 deleted file mode 100644 index bcfa3c8..0000000 --- a/dist/ba_root/mods/playersdata/profiles.json2022-12-06 20%3A51%3A54.236791 +++ /dev/null @@ -1,36666 +0,0 @@ -{ - "pb-IF4TVWwZUQ=9=": { - "display_string": "\ue030PC295588", - "profiles": [], - "name": "\ue030PC295588", - "isBan": false, - "isMuted": false, - "totaltimeplayer": 0, - "lastseen": 0, - "spamCount": 0, - "lastSpam": 1637911682.2054627 - }, - "pb-IF5XUm9eAg==": { - "display_string": [ - "\ue030PC402015" - ], - "profiles": [], - "name": "\ue030PC402015", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-12 20:30:30", - "registerOn": 1636801177.809589, - "canStartKickVote": true, - "totaltimeplayer": 0, - "lastseen": 0, - "spamCount": 4, - "lastSpam": 1637912278.8745685 - }, - "pb-IF4eUxk5KA==": { - "display_string": [ - "\ue063HeySmoothy" - ], - "profiles": [], - "name": "\ue063HeySmoothy", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-29 21:53:44", - "registerOn": 1655022106.4740922, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1655022106.4740927, - "totaltimeplayer": 0, - "lastseen": 0, - "warnCount": 0, - "lastWarned": 1655552812.9632144, - "verified": true, - "rejoincount": 1, - "lastJoin": 1655552812.963215, - "cMsgCount": 0, - "lastMsgTime": 1655406931.728448, - "lastMsg": "ok", - "cSameMsg": 0, - "lastIP": "axj~}j~~n`ai", - "deviceUUID": "eedccec9b0c17d3716b936981bb753c3872d905c" - }, - "pb-IF4RU2ECAg==": { - "display_string": [ - "\ue030PC452402" - ], - "profiles": [], - "name": "\ue030PC452402", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-04 01:42:22", - "registerOn": 1655407521.4853234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1655407521.4853249, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1658055515.14302, - "verified": true, - "rejoincount": 1, - "lastJoin": 1658055515.143022, - "lastIP": "axj~|h~|j~~", - "deviceUUID": "c49fafb7d66d14198924c1b9dcc59e23fb838042" - }, - "pb-IF43U2cIVw==": { - "display_string": "\ue063Smoothy", - "profiles": [], - "name": "\ue063Smoothy", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-23 22:27:13", - "registerOn": 1656442709.8344862, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1656442709.8344867, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1656527532.2340264, - "verified": true, - "rejoincount": 0, - "lastJoin": 1656527777.355527, - "lastIP": "axj~}m~}jdai", - "deviceUUID": "c49fafb7d66d14198924c1b9dcc59e23fb838042", - "cMsgCount": 0, - "lastMsgTime": 1656525491.3282282, - "lastMsg": "/end", - "cSameMsg": 0 - }, - "pb-IF41U2scIg==": { - "display_string": [ - "\ue063SHRUTIsom" - ], - "profiles": [], - "name": "\ue063SHRUTIsom", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 15:17:08", - "registerOn": 1670146929.9853938, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670146929.9853942, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339420.6298115, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670353157.649907, - "lastIP": "a\u007fk~}hhaniaig|", - "deviceUUID": "290ab9ffedc77b8768c4881945b02eca86c32ae8", - "cMsgCount": 0, - "lastMsgTime": 1670353792.935806, - "lastMsg": "\ud83d\ude36", - "cSameMsg": 0 - }, - "pb-IF4uU3gNKQ==": { - "display_string": [ - "\ue020CKD360" - ], - "profiles": [], - "name": "\ue020CKD360", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-01 07:24:59", - "registerOn": 1670146934.3897243, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670146934.389725, - "totaltimeplayer": 0, - "warnCount": 3, - "lastWarned": 1670353355.5780048, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670356609.0249004, - "lastIP": "azo~{i~}meajaz", - "deviceUUID": "548cce6a079bbda740d03793a1d78e999a4c1fd4", - "cMsgCount": 1, - "lastMsgTime": 1670356940.8026888, - "lastMsg": "jitna story banana hai bana", - "cSameMsg": 0 - }, - "pb-IF4nUxE4Nw==": { - "display_string": [ - "\ue030Android60071137" - ], - "profiles": [], - "name": "\ue030Android60071137", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-28 18:48:17", - "registerOn": 1670146945.498685, - "canStartKickVote": true, - "spamCount": 2, - "lastSpam": 1670163269.13775, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670338899.5194376, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670357051.6187315, - "lastIP": "a~h~}jfaih}va~a", - "deviceUUID": "9e21e953c214814994e344fb30238c23fc8af5ea", - "cMsgCount": 0, - "lastMsgTime": 1670357349.2342427, - "lastMsg": "ahhhh", - "cSameMsg": 0 - }, - "pb-IF5RU2wCXQ==": { - "display_string": [ - "\ue020IrremediableWraith22" - ], - "profiles": [], - "name": "\ue020IrremediableWraith22", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-03 15:18:15", - "registerOn": 1670146957.4824429, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670146957.4824433, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670340298.477066, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670343666.8854806, - "lastIP": "bxvf~vb{n~|i", - "deviceUUID": "\u0015\u0007^RY\u0010R\\\u0002WAW_\u0003Q\u0010\u0004XTYFS[TXA", - "cMsgCount": 1, - "lastMsgTime": 1670344657.651218, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5UUxgjIA==": { - "display_string": [ - "\ue020sagarrathore481", - "\ue030Android63531396", - "\ue030Android63531328", - "\ue030Android60355853" - ], - "profiles": [], - "name": "\ue020sagarrathore481", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-19 12:04:39", - "registerOn": 1670146986.8760846, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670146986.8760853, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331349.7670653, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670330747.1735826, - "lastIP": "a~o~}j`aia~va|n", - "deviceUUID": "5f7b062f4010c15627bebd1b749bdc57ef5bfb63", - "cMsgCount": 0, - "lastMsgTime": 1670332393.8098233, - "lastMsg": "ckd konsi team", - "cSameMsg": 0 - }, - "pb-IF49Umo-Fg==": { - "display_string": [ - "\ue020PATLU517" - ], - "profiles": [], - "name": "\ue020PATLU517", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-02 09:31:34", - "registerOn": 1670147005.6629934, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670301661.6737187, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301639.6076431, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670307830.092055, - "lastIP": "dvvd|va\u007fi~~nc", - "deviceUUID": "0ca89312b6820cc0711ece739ffed8a26cd3b72f", - "cMsgCount": 0, - "lastMsgTime": 1670245563.457161, - "lastMsg": "hacker", - "cSameMsg": 0 - }, - "pb-IF4xU00iHA==": { - "display_string": [ - "\ue020BleakForce44" - ], - "profiles": [], - "name": "\ue020BleakForce44", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 14:14:35", - "registerOn": 1670147022.9785194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147022.9785202, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670167091.5974138, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670167271.4085112, - "lastIP": "a|o~vo~wn~{i", - "deviceUUID": "a7497087df3804fee91357f3206f01f8f0dcd416", - "cMsgCount": 0, - "lastMsgTime": 1670167234.93747, - "lastMsg": "sry", - "cSameMsg": 0 - }, - "pb-IF4uU0kNUw==": { - "display_string": [ - "\ue020OriginalBlaster49" - ], - "profiles": [], - "name": "\ue020OriginalBlaster49", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 17:27:30", - "registerOn": 1670147065.7853847, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147065.7853854, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147065.7853942, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670147065.7853947, - "lastIP": "a|j~~mdambamc", - "deviceUUID": "3c93e0300d6f81abbd178196785c7ed80558ad4b" - }, - "pb-IF4BV2gDEA==": { - "display_string": [ - "\ue063TrippyJest" - ], - "profiles": [], - "name": "\ue063TrippyJest", - "isBan": false, - "isMuted": false, - "accountAge": "2018-10-23 15:02:35", - "registerOn": 1670147135.0654218, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147135.0654223, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310533.9907193, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670312485.2163844, - "lastIP": "azo~{a~~`dalf", - "deviceUUID": "be2fec1595bed04e080bf569f820fc78cbcf0576", - "cMsgCount": 2, - "lastMsgTime": 1670313907.7547574, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4mVU0oUw==": { - "display_string": [ - "\ue020tanishdoshi765" - ], - "profiles": [], - "name": "\ue020tanishdoshi765", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-27 23:16:54", - "registerOn": 1670147286.6486409, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147286.6486413, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147286.648649, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670147286.64865, - "lastIP": "dvvc}va{l~}m", - "deviceUUID": "30bac5ce5457fe04a69b0a9260350070e6facf74", - "cMsgCount": 0, - "lastMsgTime": 1670148549.3140652, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4dUkxeLQ==": { - "display_string": [ - "\ue063Sumit11727" - ], - "profiles": [], - "name": "\ue063Sumit11727", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-28 22:53:04", - "registerOn": 1670147319.6989822, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670148374.6405299, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248494.183191, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670260979.7385921, - "lastIP": "azo~|k~~igaiex", - "deviceUUID": "5fd3fdecff6f62f3befdb45fec945ebf7d33acb3", - "cMsgCount": 0, - "lastMsgTime": 1670261223.00056, - "lastMsg": "0", - "cSameMsg": 0 - }, - "pb-IF4-VBcnLw==": { - "display_string": [ - "\ue020Vaisakhaacharya" - ], - "profiles": [], - "name": "\ue020Vaisakhaacharya", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-26 12:50:03", - "registerOn": 1670147322.7029283, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147322.7029288, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147322.7029355, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670147322.7029364, - "lastIP": "a|o~vo~~i`aob", - "deviceUUID": "b575a88e8922f784b688b961dba39e60cf130dfa", - "cMsgCount": 0, - "lastMsgTime": 1670148236.5960152, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4hUlYfXQ==": { - "display_string": [ - "\ue063iloa12", - "\ue030Android59663117" - ], - "profiles": [], - "name": "\ue030Android59663117", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-12 22:16:09", - "registerOn": 1670147338.8019137, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147338.8019145, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147338.801951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670147338.8019516, - "lastIP": "i~vaxl~}mcaidw", - "deviceUUID": "7d444423b8f861f75adb7e354e0bfed0062867b5", - "cMsgCount": 0, - "lastMsgTime": 1670147403.7644346, - "lastMsg": "gg", - "cSameMsg": 0 - }, - "pb-IF4sU0xbKQ==": { - "display_string": [ - "\ue020RentalIndependence57" - ], - "profiles": [], - "name": "\ue020RentalIndependence57", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 13:48:07", - "registerOn": 1670147352.80363, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147352.8036306, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147352.8036387, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670147444.8446765, - "lastIP": "bxvf|vavo~}if", - "deviceUUID": "\u0015YUVVEY^\u0005YA", - "cMsgCount": 0, - "lastMsgTime": 1670148236.6669962, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFaV0RJWF1JGEBWU11CFEFXRFhG": { - "display_string": [ - "\ue020KABALIZ010" - ], - "profiles": [], - "name": "\ue020KABALIZ010", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-30 23:54:04", - "registerOn": 1670147367.1874788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147367.1874793, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147367.1874878, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670148188.4354708, - "lastIP": "b}k~}jgaiayvb~a", - "deviceUUID": "e4a77f2424701c228bc7d0cb44180365e04a27de" - }, - "pb-IF4RU3M-Jw==": { - "display_string": [ - "\ue020ComplementaryTry54", - "\ue030Android48646510" - ], - "profiles": [], - "name": "\ue020ComplementaryTry54", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 15:52:38", - "registerOn": 1670147376.9784825, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147376.978483, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147376.9784906, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670148234.6153128, - "lastIP": "a|o~vo~~jdaiay", - "deviceUUID": "025dff09d53d32f6b1682636695d3f54fd1ed2c5" - }, - "pb-IF4cUktZNg==": { - "display_string": [ - "\ue020Ainesh0001" - ], - "profiles": [], - "name": "\ue020Ainesh0001", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-24 13:00:03", - "registerOn": 1670147443.1639163, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147443.1639168, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670348763.4308014, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670348334.9433365, - "lastIP": "a~h~}keajcwvb\u007fj", - "deviceUUID": "37e673cf4af01f06366303a4c8144454569c460b", - "cMsgCount": 0, - "lastMsgTime": 1670349669.5255473, - "lastMsg": "\ud83e\udec2", - "cSameMsg": 0 - }, - "pb-IF4AVUgDDA==": { - "display_string": [ - "\ue020ProdigalAcid30" - ], - "profiles": [], - "name": "\ue020ProdigalAcid30", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-04 19:17:45", - "registerOn": 1670147447.5272655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147447.5272665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257960.9984937, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257960.9984949, - "lastIP": "a\u007fk~}hdaiczvb\u007fj", - "deviceUUID": "233b00d0bea13fe4df0dde4311979f5bdbb80374" - }, - "pb-IF4jUWY5": { - "display_string": [ - "\ue020PickyOnion8951" - ], - "profiles": [], - "name": "\ue020PickyOnion8951", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-13 20:20:54", - "registerOn": 1670147682.475688, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147682.4756885, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224370.5725636, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224370.5725653, - "lastIP": "dvvcyvh~vay", - "deviceUUID": "\u0015\u0005\fVU@\u0002\\SSLW\t\u0005\u0003B", - "cMsgCount": 0, - "lastMsgTime": 1670148251.610843, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF49UnYRLQ==": { - "display_string": [ - "\ue063ChargingBe" - ], - "profiles": [], - "name": "\ue020ChargingBear93648", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-30 19:43:31", - "registerOn": 1670147876.958139, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147876.9581401, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329563.699519, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670335813.9531093, - "lastIP": "dvvcyvb~i~~li", - "deviceUUID": "b9b711ab2a81c4ee2c8d2708018f9e859fb9e9d3", - "cMsgCount": 0, - "lastMsgTime": 1670152771.1508338, - "lastMsg": "abe laude thuje bacha rha tha ", - "cSameMsg": 0 - }, - "pb-IF4BUmpYNg==": { - "display_string": [ - "\ue063sfretgfdgf", - "\ue020SeismicPetroleum33", - "\ue020PharmacologicalFox59", - "\ue030Android47917927", - "\ue030Android63590584" - ], - "profiles": [], - "name": "\ue063sfretgfdgf", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-01 20:41:16", - "registerOn": 1670148030.5194852, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148030.5194857, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148030.5194933, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148030.5194938, - "lastIP": "bxvc{vevvf", - "deviceUUID": "d9be0da019a814b92513cb144b31aa65f6fbcffb" - }, - "pb-IF4UU1AvNw==": { - "display_string": [ - "\ue030Android63982105" - ], - "profiles": [], - "name": "\ue030Android63982105", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 09:18:35", - "registerOn": 1670148053.2875204, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148053.2875214, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148053.2875721, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148053.287573, - "lastIP": "a|o~vo~~h`ajd{", - "deviceUUID": "cc06900df11e9ee062d26dd18534f95c3462c812" - }, - "pb-IF4CVW07PA==": { - "display_string": [ - "\ue063GoodlyTran" - ], - "profiles": [], - "name": "\ue020GoodlyTrance19", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-08 18:00:46", - "registerOn": 1670148081.7151084, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148081.7151089, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337587.2738516, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670338151.2102733, - "lastIP": "a\u007fk~}hfaih\u007fvb~m", - "deviceUUID": "3e7b2c55f77d3aeec51b72a25eafc1ac73e0f353" - }, - "pb-IF4vU2lbDw==": { - "display_string": [ - "\ue020StoicTurbulence18" - ], - "profiles": [], - "name": "\ue020StoicTurbulence18", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-28 14:21:36", - "registerOn": 1670148197.870161, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148197.870162, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670185187.3254387, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670186029.2780771, - "lastIP": "a|o~vo~~i`aj`{", - "deviceUUID": "8c979450e27fa3d166bd41f5c75837c5c5e624ba", - "cMsgCount": 0, - "lastMsgTime": 1670186537.6192417, - "lastMsg": "hacker hey kya", - "cSameMsg": 0 - }, - "pb-IF5QU1ImIA==": { - "display_string": [ - "\ue063anaunzia" - ], - "profiles": [], - "name": "\ue063anaunzia", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 11:35:12", - "registerOn": 1670148261.506911, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148261.5069115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148261.5069187, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148261.5069194, - "lastIP": "a~l~xa~zi~~kf", - "deviceUUID": "3a52fdedebfa3feae73f47ccf73d5c7fdb56909e" - }, - "pb-IF43U0otUA==": { - "display_string": [ - "\ue020IronLeopard87891" - ], - "profiles": [], - "name": "\ue020IronLeopard87891", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-30 14:39:35", - "registerOn": 1670148427.628323, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148427.6283238, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240065.5562072, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670240065.5562086, - "lastIP": "azo~{n~}iaaicy", - "deviceUUID": "ee51530467ad4b8ae2b2f4eba2d6dd7f33665728" - }, - "pb-IF5dUxEdMw==": { - "display_string": [ - "\ue030Android59978094" - ], - "profiles": [], - "name": "\ue030Android59978094", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-24 14:00:33", - "registerOn": 1670148440.9455113, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148440.9455123, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148440.9455218, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670148698.2545264, - "lastIP": "a\u007fk~~obaobaicw", - "deviceUUID": "6cbe886230f5dc1432bfb49a4fee805b19d04638", - "cMsgCount": 0, - "lastMsgTime": 1670148611.921159, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4LU04tIw==": { - "display_string": [ - "\ue063VenousJack" - ], - "profiles": [], - "name": "\ue020VenousJackal46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 13:19:05", - "registerOn": 1670148443.7016256, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148443.7016263, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340308.889458, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340308.8894591, - "lastIP": "a~l~xa~~l`ajf", - "deviceUUID": "4ba5b3b38837e40928e1bd28d16e9ecad49d94c0" - }, - "pb-IF4LU04NXQ==": { - "display_string": [ - "\ue063TayzaAmazi", - "\ue030Android61518159" - ], - "profiles": [], - "name": "\ue063TayzaAmazi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 11:12:34", - "registerOn": 1670148444.676839, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148444.6768396, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148444.676848, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148444.6768484, - "lastIP": "cxva~i~zi~wn", - "deviceUUID": "f1e99c6cf2b2596414e4c5d6b4bfbb6978afbfa1" - }, - "pb-IF4IV04ZKw==": { - "display_string": [ - "\ue020paratr\u00f2\u00f3per", - "\ue030Android26319971", - "\ue030PC355734" - ], - "profiles": [], - "name": "\ue020paratr\u00f2\u00f3per", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-06 01:19:11", - "registerOn": 1670148455.7358403, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148455.7358408, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670274461.1677194, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670273833.6099362, - "lastIP": "b}k~~ohaja}vb|n", - "deviceUUID": "c6852ce1ce7c933f50abd6465ca3fcd0c0154825", - "cMsgCount": 1, - "lastMsgTime": 1670274557.3861141, - "lastMsg": "bye", - "cSameMsg": 0 - }, - "pb-IF4BU0EiEw==": { - "display_string": [ - "\ue020blacksopugaming" - ], - "profiles": [], - "name": "\ue020blacksopugaming", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 21:50:49", - "registerOn": 1670148468.822553, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148468.8225534, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148468.8225608, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148468.8225615, - "lastIP": "azj~zo~}lcaih\u007f", - "deviceUUID": "f990e4c7f7f5f95ad8212bff2d45e38da77cb574" - }, - "pb-IF4BU0cDNg==": { - "display_string": [ - "\ue063hacker1199" - ], - "profiles": [], - "name": "\ue063hacker1199", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 21:26:49", - "registerOn": 1670148469.8444016, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148469.844402, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235249.348355, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670235249.348357, - "lastIP": "a\u007fk~}jfaihwvdv", - "deviceUUID": "14b513d2239371f2b9dc72950ed1ca9b0fa8ba68" - }, - "pb-IF5VU1JZMw==": { - "display_string": [ - "\ue030Android63983659" - ], - "profiles": [], - "name": "\ue030Android63983659", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:37:20", - "registerOn": 1670148470.7953641, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148470.7953646, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148470.7953715, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148470.7953722, - "lastIP": "a\u007fn~}icaa`aihz", - "deviceUUID": "5fd3fdecff6f62f3befdb45fec945ebf7d33acb3" - }, - "pb-IF41U0ElPA==": { - "display_string": [ - "\ue030Android63288902" - ], - "profiles": [], - "name": "\ue030Android63288902", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 07:06:34", - "registerOn": 1670148504.8981645, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148504.8981652, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148504.8981729, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670148553.746867, - "lastIP": "dzva~a~}`~~ae", - "deviceUUID": "e6b8fc0713b82719263cf29f162a2ee85873591e", - "cMsgCount": 0, - "lastMsgTime": 1670148536.32531, - "lastMsg": "/end", - "cSameMsg": 0 - }, - "pb-IF5UVVE8UA==": { - "display_string": [ - "\ue020DentalDiary21", - "\ue030Android52427071" - ], - "profiles": [], - "name": "\ue030Android52427071", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-08 18:45:34", - "registerOn": 1670148558.054654, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148558.0546548, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148558.0546634, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148558.0546641, - "lastIP": "azo~{a~vm~~mh", - "deviceUUID": "bc9e21a4a6df6e6c22cdbff0f96fc525fc36e65b" - }, - "pb-IF4-U0ZcNA==": { - "display_string": [ - "\ue020GrandYogi69354", - "\ue020BiologicalPotion26" - ], - "profiles": [], - "name": "\ue020BiologicalPotion26", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 08:34:54", - "registerOn": 1670148564.0848756, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148564.084876, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148564.0848832, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148564.0848837, - "lastIP": "a\u007fn~}hiajc|vaxk", - "deviceUUID": "f4f953d038ec20f7ad8b5b0fe35d407604c20e5f" - }, - "pb-IF4eU004Ew==": { - "display_string": [ - "\ue020HonorableEttin404" - ], - "profiles": [], - "name": "\ue020HonorableEttin404", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 20:31:56", - "registerOn": 1670148624.308261, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148624.3082619, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324124.6485064, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670337030.5787466, - "lastIP": "azo~zi~~m`aid~", - "deviceUUID": "f926e6f96104161695572452dd7814d84bdd0d3c" - }, - "pb-IF4gUmMPXQ==": { - "display_string": [ - "\ue020NitricBet41" - ], - "profiles": [], - "name": "\ue020NitricBet41", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-01 16:25:42", - "registerOn": 1670148642.3436615, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148642.343662, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315267.8634155, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319691.0598974, - "lastIP": "azj~zo~}khaiez", - "deviceUUID": "\u0015\u0005^RY\u0011\u0004Z\u0002X\u0017U]YX\u0010V\\QXDT^UVDQ" - }, - "pb-IF4-VWEAUA==": { - "display_string": [ - "\ue020ForensicLaboratory19", - "\ue030Android46624746" - ], - "profiles": [], - "name": "\ue020ForensicLaboratory19", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-11 22:55:03", - "registerOn": 1670148658.7032065, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148658.7032073, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148658.7032154, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148658.703216, - "lastIP": "a\u007fn~}icaigvva~n", - "deviceUUID": "87b2e37a6910d5080cfc548246ee8dccdd0021c5", - "cMsgCount": 0, - "lastMsgTime": 1670148676.7350876, - "lastMsg": "ok", - "cSameMsg": 0 - }, - "pb-IF4sU04eMg==": { - "display_string": [ - "\ue063FloweryGar" - ], - "profiles": [], - "name": "\ue063FloweryGar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:11:36", - "registerOn": 1670148671.4688425, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148671.468843, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148671.4688516, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148671.4688525, - "lastIP": "awk~~oaajgaoe", - "deviceUUID": "ba432372bc5c5ce74c39860a860aba76d73a848c" - }, - "pb-IF4lVUwSFg==": { - "display_string": [ - "\ue020Harsaa007", - "\ue030PC446887", - "\ue030PC437584" - ], - "profiles": [], - "name": "\ue020Harsaa007", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-26 11:09:02", - "registerOn": 1670148687.6756177, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148687.6756184, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148687.6756272, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148687.675628, - "lastIP": "dvvb\u007fm~wk~zm", - "deviceUUID": "f5e8820a894fe21ff6b047fed74a17222c96c314" - }, - "pb-IF4RU0gPVg==": { - "display_string": [ - "\ue030Android63705110" - ], - "profiles": [], - "name": "\ue030Android63705110", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 21:18:58", - "registerOn": 1670148712.589369, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148712.5893698, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148712.5893786, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148712.5893793, - "lastIP": "a~o~vo~}hdai`x", - "deviceUUID": "83a016bb06f025b816c34907b8565f35f587972f" - }, - "pb-IF4RU3QoXQ==": { - "display_string": [ - "\ue030Android62576681" - ], - "profiles": [], - "name": "\ue030Android62576681", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-10 10:46:06", - "registerOn": 1670148719.7224848, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670160294.946838, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670330008.8698049, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329896.8848736, - "lastIP": "azj~zo~}keaic~", - "deviceUUID": "77223848ed08d8d5579bfe2bfeb95f9af81d2b97", - "cMsgCount": 0, - "lastMsgTime": 1670330211.9300404, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4OU2UCBA==": { - "display_string": [ - "\ue020HARSHITPATLEnilkanth" - ], - "profiles": [], - "name": "\ue020HARSHITPATLEnilkanth", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-17 12:27:56", - "registerOn": 1670148750.7460818, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148750.7460823, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148750.7460885, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148750.7460892, - "lastIP": "azj~zo~~ihaiav", - "deviceUUID": "\u0015W\fQ\u0004EX\b" - }, - "pb-IF5RUmMsFg==": { - "display_string": [ - "\ue020karanshetty6" - ], - "profiles": [], - "name": "\ue020karanshetty6", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-17 10:18:51", - "registerOn": 1670148764.8105505, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148764.810551, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328349.4780455, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328349.4780467, - "lastIP": "azo~zh~yn~~jh", - "deviceUUID": "c2a3f27acb52e3ec49f84af6f52e2f5df6caea6b", - "cMsgCount": 0, - "lastMsgTime": 1670239954.9101062, - "lastMsg": "nibbi", - "cSameMsg": 0 - }, - "pb-IF4uUxZYAQ==": { - "display_string": [ - "\ue020CompliantDelight40" - ], - "profiles": [], - "name": "\ue020CompliantDelight40", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-19 14:18:08", - "registerOn": 1670148773.8892055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148773.8892062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148773.8892148, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148773.8892155, - "lastIP": "bxvf|vb}i~~`c", - "deviceUUID": "\u0015\u0004\\\u0005\u0003MQ\u000fYXC\u0002\u000b\u0003QBX\\SX@RUUXBW" - }, - "pb-IF4xV2oPHA==": { - "display_string": [ - "\ue063JealousCry" - ], - "profiles": [], - "name": "\ue063JealousCry", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-06 06:29:28", - "registerOn": 1670148803.9486802, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148803.9486806, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339140.6071308, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339140.6071322, - "lastIP": "b\u007fk~~adaagajaz", - "deviceUUID": "eb18d12c0553a71771f6334f9660dddbe1cbadfe", - "cMsgCount": 0, - "lastMsgTime": 1670167960.761208, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4MU047BA==": { - "display_string": [ - "\ue030Android63936722" - ], - "profiles": [], - "name": "\ue030Android63936722", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 21:58:59", - "registerOn": 1670148838.3438334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148838.3438342, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148838.3439744, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670149097.643073, - "lastIP": "a\u007fn~}heajc~vb\u007fa", - "deviceUUID": "c25048a96f4b7282632fdb499249b86ae2d5f216" - }, - "pb-IF4UU0YsDQ==": { - "display_string": [ - "\ue020C\u1d00\u029f\u029fM\u1d07Y\u1d0fM\u1d00\u0274" - ], - "profiles": [], - "name": "\ue020C\u1d00\u029f\u029fM\u1d07Y\u1d0fM\u1d00\u0274", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-05 13:35:37", - "registerOn": 1670148849.3898847, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148849.3898857, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149757.3735774, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670150044.3655012, - "lastIP": "a\u007fk~~`ca`banc", - "deviceUUID": "859cb4a8f69dc428193a001988bee80274f99083" - }, - "pb-IF4nA28F": { - "display_string": [ - "\ue063pilot12856" - ], - "profiles": [], - "name": "\ue063pilot12856", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-17 15:18:58", - "registerOn": 1670148857.465405, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148857.4654057, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337279.2413576, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670345134.1327262, - "lastIP": "b}k~}kfajd{va\u007fo", - "deviceUUID": "2352589e937f9e709ea90b2f15835b7de437977b", - "cMsgCount": 0, - "lastMsgTime": 1670327392.9711547, - "lastMsg": "guts..? ", - "cSameMsg": 0 - }, - "pb-IF4hU3APAw==": { - "display_string": [ - "\ue063Sanjayduff", - "\ue030Android59973915" - ], - "profiles": [], - "name": "\ue063Sanjayduff", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 18:53:27", - "registerOn": 1670148926.3606832, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148926.3606834, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261470.6136928, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261470.613694, - "lastIP": "awk~wo~~liaj`|", - "deviceUUID": "0ce64daefb611efe9aa2d3bebdb9cb31adafd817" - }, - "pb-IF4yVVA8Bg==": { - "display_string": [ - "\ue063BABURAOAPT" - ], - "profiles": [], - "name": "\ue020BABURAOAPTE54", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-13 20:09:06", - "registerOn": 1670148927.3255122, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148927.325513, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670349051.9611084, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670349051.9611104, - "lastIP": "a\u007fk~wi~vl~}k", - "deviceUUID": "0df8d6d52f5c1ed85192c8a86fcce9d300b0c49f", - "cMsgCount": 0, - "lastMsgTime": 1670148975.0088964, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4JU084LA==": { - "display_string": [ - "\ue020CubicResurgence66" - ], - "profiles": [], - "name": "\ue020CubicResurgence66", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 22:30:15", - "registerOn": 1670149010.6385727, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149010.6385736, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149010.638581, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149010.6385818, - "lastIP": "azo~{n~~ifaka", - "deviceUUID": "32551006c0eb9d9254fe85e21bef89735c6e5f82" - }, - "pb-IF4VVFoYCA==": { - "display_string": [ - "\ue020bunnyASSAULTmodo", - "\ue063Irreveren3", - "\ue030Android57905756" - ], - "profiles": [], - "name": "\ue063Irreveren3", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-02 21:42:27", - "registerOn": 1670149025.711014, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149025.7110152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161870.98381, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161870.9838111, - "lastIP": "a}j~~ocak`aje}", - "deviceUUID": "fd2b4ff4b3b6523447bc028baa3af1514643d995" - }, - "pb-IF4VU0IZCg==": { - "display_string": [ - "\ue030Android63426698" - ], - "profiles": [], - "name": "\ue030Android63426698", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-20 11:21:28", - "registerOn": 1670149028.7052379, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149028.7052383, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670303405.1487284, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670303651.1265604, - "lastIP": "axi~{`~wk~}hd", - "deviceUUID": "a8dee104bc98d4e5da127fba7b0b28718d63c79b" - }, - "pb-IF48VWESLA==": { - "display_string": [ - "\ue020GraveHour26" - ], - "profiles": [], - "name": "\ue020GraveHour26", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-13 16:01:33", - "registerOn": 1670149100.9892652, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149100.9892657, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332266.9236147, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670337035.5974236, - "lastIP": "azo~|n~}meane", - "deviceUUID": "f64794a1c3f9c219e8611115ebf51bdb86f9b4e5" - }, - "pb-IF4hVUccIQ==": { - "display_string": [ - "\ue020UnmarkedVeracity57", - "\ue020HealthfulLodgings47", - "\ue020BroaderReceptacle56", - "\ue020SpringExactness45", - "\ue020BOSSGAMINGAssumpti26" - ], - "profiles": [], - "name": "\ue020BOSSGAMINGAssumpti26", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-05 19:06:21", - "registerOn": 1670149114.496494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149114.4964945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149114.4965034, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149114.496504, - "lastIP": "azo~|l~}k`ai`w", - "deviceUUID": "2944ef2190a1ac2e30b1cf57a75ae581e082409c" - }, - "pb-IF4SUmwlVA==": { - "display_string": [ - "\ue063UpbeatCeme" - ], - "profiles": [], - "name": "\ue063UpbeatCeme", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-11 11:51:44", - "registerOn": 1670149152.177973, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149152.1779735, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344998.649914, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670344998.6499152, - "lastIP": "dvvcyvd\u007fv`", - "deviceUUID": "660f1416ca6dd82572f08dade91ab42336b4b36d" - }, - "pb-IF4qU3pTMg==": { - "display_string": [ - "\ue063TokenMagic" - ], - "profiles": [], - "name": "\ue063TokenMagic", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-05 15:14:18", - "registerOn": 1670149208.4023619, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149208.4023623, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670350759.576104, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670350759.576105, - "lastIP": "dvvcxvdyvbzm", - "deviceUUID": "15d3f2ff88cfbf69112768f8133e83dc3d01eea4", - "cMsgCount": 2, - "lastMsgTime": 1670317964.504581, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5RU3UzJA==": { - "display_string": [ - "\ue063RabidFight" - ], - "profiles": [], - "name": "\ue063RabidFight", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-06 20:34:27", - "registerOn": 1670149285.657756, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149285.6577566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319665.9753315, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670336252.578059, - "lastIP": "a~k~~acaohaid{", - "deviceUUID": "c71ca0513260d96b6a7b4cd571d6cbab3d9e7223", - "cMsgCount": 0, - "lastMsgTime": 1670319708.8266387, - "lastMsg": "popat come in bcs epic", - "cSameMsg": 0 - }, - "pb-IF5VU044KA==": { - "display_string": [ - "\ue020Rajuphirherapheri" - ], - "profiles": [], - "name": "\ue020Rajuphirherapheri", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-10 13:46:51", - "registerOn": 1670149344.1516058, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149344.1516068, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149677.0737646, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670153776.199077, - "lastIP": "azj~zo~{a~~hc", - "deviceUUID": "508ba80ac90e87c4783035d8bb719a34c48cb02f" - }, - "pb-IF40U04tFw==": { - "display_string": [ - "\ue020NovelTrousers35", - "\ue030Android52256550" - ], - "profiles": [], - "name": "\ue020NovelTrousers35", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 21:10:12", - "registerOn": 1670149382.1885855, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149382.1885862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331701.3129885, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670331701.3129897, - "lastIP": "a\u007fn~}iaaiixve", - "deviceUUID": "71147c7cf7223cf56690d8b3d18f3b979fe7a6b3" - }, - "pb-IF4pV3McIg==": { - "display_string": [ - "\ue063patelbhai7", - "\ue030Android29345487" - ], - "profiles": [], - "name": "\ue063patelbhai7", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-22 14:00:21", - "registerOn": 1670149453.6816685, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149453.6816692, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149453.6816785, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149453.68168, - "lastIP": "azj~zo~}haaj", - "deviceUUID": "961f3ff9d0df102310423e005e65a85421d4b148" - }, - "pb-IF4RVRk7EQ==": { - "display_string": [ - "\ue063El", - "\ue063OO" - ], - "profiles": [], - "name": "\ue063OO", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-04 09:18:56", - "registerOn": 1670149481.7085655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149481.708566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269318.2580304, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670271779.8814206, - "lastIP": "dxvazvc}va{o", - "deviceUUID": "4d62a7d22142ab20057d1256906d24f12956c7e8" - }, - "pb-IF5SVBJTIQ==": { - "display_string": [ - "\ue020vj1481", - "\ue030Android58229085" - ], - "profiles": [], - "name": "\ue020vj1481", - "isBan": false, - "isMuted": false, - "accountAge": "2019-06-10 15:34:10", - "registerOn": 1670149491.7178295, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149491.71783, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149491.7178385, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670161519.781035, - "lastIP": "a\u007fk~vj~{k~}ji", - "deviceUUID": "8c9c14ecbc3845c440fd41f6c3ca7e8f7ead92d1", - "cMsgCount": 0, - "lastMsgTime": 1670158007.9228492, - "lastMsg": "jab tu bcs fun ke baare mein soch rha tha", - "cSameMsg": 0 - }, - "pb-IF4lU20cEw==": { - "display_string": [ - "\ue020mariyafelix3126" - ], - "profiles": [], - "name": "\ue020mariyafelix3126", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-17 02:06:35", - "registerOn": 1670149493.72497, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149493.7249706, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244849.4973934, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670245023.1082377, - "lastIP": "azo~zi~~ahanh", - "deviceUUID": "051471302564de0ea391b0b0461b11977b4b994d" - }, - "pb-JiNJARBbVUVBXVlAEUVQUVdLGUBWQVdK": { - "display_string": [ - "\ue063NoName47962f" - ], - "profiles": [], - "name": "\ue063NoName47962f", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-01 13:35:17", - "registerOn": 1670149518.8348966, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149518.834897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312394.9204397, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670313178.309953, - "lastIP": "a\u007fk~~n`ajc|vaz", - "deviceUUID": "b70356fabf38aa4d32dd038f7595916c2d858448" - }, - "pb-IF4nUnhYBw==": { - "display_string": [ - "\ue063BarbarianC" - ], - "profiles": [], - "name": "\ue063BarbarianC", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-02 19:05:21", - "registerOn": 1670149536.866891, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149536.8668916, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149536.8669004, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670149583.7270267, - "lastIP": "a\u007fj~~aaaiezvb\u007fn", - "deviceUUID": "237cc9cae7ae6ff540e88866779eb699b17c3eb0" - }, - "pb-IF5UU3VTAQ==": { - "display_string": [ - "\ue020CunningMix12" - ], - "profiles": [], - "name": "\ue020CunningMix12", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 22:00:52", - "registerOn": 1670149549.0570552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149549.0570557, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149549.0570633, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149549.0570643, - "lastIP": "a~j~~kdaigzvaxa", - "deviceUUID": "e216ccc20240957b64433dac970672348eadca0f" - }, - "pb-IF5WU04nBg==": { - "display_string": [ - "\ue020NeedyMaple33" - ], - "profiles": [], - "name": "\ue020NeedyMaple33", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 19:51:02", - "registerOn": 1670149549.8872194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149549.88722, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149549.8872266, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149549.8872273, - "lastIP": "azo~|j~~iaaii|", - "deviceUUID": "bd92657fcd0edb8a9e29e5d09f1204352e43b818" - }, - "pb-IF4vU2sIMg==": { - "display_string": [ - "\ue063atharv1326" - ], - "profiles": [], - "name": "\ue063atharv1326", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-08 13:13:29", - "registerOn": 1670149600.1114752, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149600.1114757, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339335.2806964, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339335.2806976, - "lastIP": "b}k~}kfajd{va\u007fo", - "deviceUUID": "95196a7eca0603a063174f07a4b149edd34057d0" - }, - "pb-IF4vVUNfEA==": { - "display_string": [ - "\ue020sagar88822" - ], - "profiles": [], - "name": "\ue020sagar88822", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-01 00:12:49", - "registerOn": 1670149616.1428947, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149616.1428955, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225500.8171113, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225500.8171127, - "lastIP": "azj~zo~}ibaiav", - "deviceUUID": "07139568af72471f8aaccca0ed1fd85207f28fa7", - "cMsgCount": 1, - "lastMsgTime": 1670227249.4758058, - "lastMsg": "\u0938\u093e\u0917\u0930\u092d\u093e\u090a \u0938\u092c\u0915\u0940 \u092c\u091c\u093e\u092f\u0947\u0902\u0917\u093e\ud83e\ude94\u2694\ufe0f\u2694\ufe0f", - "cSameMsg": 0 - }, - "pb-IF5dU05SIQ==": { - "display_string": [ - "\ue020Thambi765" - ], - "profiles": [], - "name": "\ue020Thambi765", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 11:45:30", - "registerOn": 1670149673.4017322, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149673.4017327, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149673.4017403, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149673.4017413, - "lastIP": "a~h~}jdaacali", - "deviceUUID": "f205459665b218056a8340aed8d49fc6cfb79493" - }, - "pb-IF4rUmcIUg==": { - "display_string": [ - "\ue030Android55446423" - ], - "profiles": [], - "name": "\ue030Android55446423", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-19 15:46:39", - "registerOn": 1670149729.5518153, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149729.551816, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341341.6420841, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670347428.1192787, - "lastIP": "axi~zi~}haaiex", - "deviceUUID": "02caf3fe329a1ffa3212e2576f20b2367e04e119", - "cMsgCount": 1, - "lastMsgTime": 1670350073.8206336, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4DVVQMVQ==": { - "display_string": [ - "\ue020OssifiedLegitimacy9", - "\ue030Android63815640", - "\ue030Android63837483" - ], - "profiles": [], - "name": "\ue020OssifiedLegitimacy9", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-02 08:18:06", - "registerOn": 1670149769.750018, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149769.7500184, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149769.7500255, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149769.7500265, - "lastIP": "bxveyvh\u007fvawm", - "deviceUUID": "59650fa38e210c7263839a518c6eb4e31f258f29" - }, - "pb-IF4wU0soJg==": { - "display_string": [ - "\ue030Android63786120" - ], - "profiles": [], - "name": "\ue030Android63786120", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 23:13:08", - "registerOn": 1670149771.7401085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149771.740109, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149771.7401178, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149771.7401187, - "lastIP": "axi~zi~~l`aiay", - "deviceUUID": "ff36c74dab8b1e62907104c8c6194251e6c349c7" - }, - "pb-IF5SU1E6Jg==": { - "display_string": [ - "\ue063DeceitfulL" - ], - "profiles": [], - "name": "\ue063Pankiii25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 16:16:40", - "registerOn": 1670149883.106087, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149883.1060874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149883.1060953, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670149883.1060963, - "lastIP": "b}k~~`faiivvd~", - "deviceUUID": "06a7356ea9a6ae1411430b7031fa5f3cd5ccb112" - }, - "pb-IF4rU04xBA==": { - "display_string": [ - "\ue020ExceptionalPrince25" - ], - "profiles": [], - "name": "\ue020ExceptionalPrince25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 13:55:34", - "registerOn": 1670149894.114902, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149894.1149023, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149894.1149125, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149894.1149135, - "lastIP": "axm~~ofaaeajd", - "deviceUUID": "a2159e0a545bcdb646bf96c3e1391d3053d30405" - }, - "pb-IF4AVUZaAg==": { - "display_string": [ - "\ue020OutSwarm27" - ], - "profiles": [], - "name": "\ue020OutSwarm27", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-17 21:59:19", - "registerOn": 1670149910.3621597, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149910.3621602, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149910.362359, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149910.36236, - "lastIP": "azo~|o~}jbaib}", - "deviceUUID": "\u0015T\u000b\u0002QGU[\u0007P\u0015P\\XS\u0011T\\TWDSUSUA", - "cMsgCount": 0, - "lastMsgTime": 1670150014.144953, - "lastMsg": "/codes", - "cSameMsg": 0 - }, - "pb-IF5dV3FfCw==": { - "display_string": [ - "\ue020ProsaicLunatic1799" - ], - "profiles": [], - "name": "\ue020ProsaicLunatic1799", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-29 11:41:55", - "registerOn": 1670149925.2293956, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149925.229396, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149925.2294042, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149925.229405, - "lastIP": "a~o~vo~~aeaja}", - "deviceUUID": "128fbe725a758d43f0fd20edba43c5f0dbbb4b46" - }, - "pb-IF4XU1BaKQ==": { - "display_string": [ - "\ue063ronxbone" - ], - "profiles": [], - "name": "\ue063ronxbone", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 10:34:24", - "registerOn": 1670149989.4804418, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149989.480442, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322379.211579, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670322409.3282912, - "lastIP": "a\u007fk~~liakgaib}", - "deviceUUID": "13fdf09986dc706cf2965004465a6aa644b00943" - }, - "pb-IF43VXkyKg==": { - "display_string": [ - "\ue020RagingGem36106" - ], - "profiles": [], - "name": "\ue020RagingGem36106", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-04 21:14:39", - "registerOn": 1670150016.914027, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150016.9140275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150016.9140346, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150016.9140356, - "lastIP": "d~vb~n~}hbaib", - "deviceUUID": "1395a98c9376933c9e419225719d506ce619c62a" - }, - "pb-IF4pU0sRFw==": { - "display_string": [ - "\ue063AiranChanc", - "\ue030Android45464897" - ], - "profiles": [], - "name": "\ue063AiranChanc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 11:48:02", - "registerOn": 1670150045.6772332, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150045.677234, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150045.677242, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670151230.457125, - "lastIP": "axi~xn~~hda`a", - "deviceUUID": "d0840a2da17b6bca167082ced78a6b0bb8506b3e" - }, - "pb-IF4BU0wpDw==": { - "display_string": [ - "\ue020harshadkarale007", - "\ue020SulkyPlant124", - "\ue020harshad69", - "\ue030Android63857889" - ], - "profiles": [], - "name": "\ue020harshadkarale007", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-13 11:41:54", - "registerOn": 1670150077.8061469, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150077.8061473, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329658.021688, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329658.0216897, - "lastIP": "azo~|k~}mcaia~", - "deviceUUID": "0cb6464fa2cf2cab848120323a95572fbaa12010", - "cMsgCount": 0, - "lastMsgTime": 1670167989.3255508, - "lastMsg": "\ud83e\udd23", - "cSameMsg": 0 - }, - "pb-IF4oVHAYLA==": { - "display_string": [ - "\ue020rolanjr231", - "\ue063norland231", - "\ue063WaxyFlag34", - "\ue030Android63838425" - ], - "profiles": [], - "name": "\ue063norland231", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-23 07:10:02", - "registerOn": 1670150114.9199865, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150114.919987, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150114.9199955, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150114.9199965, - "lastIP": "a|h~~heaic{vev", - "deviceUUID": "f2dead3c4aacdb7c931927e64a9c37aa34022ce2" - }, - "pb-IF4vU0skLw==": { - "display_string": [ - "\ue020MainstreamContrast42" - ], - "profiles": [], - "name": "\ue020MainstreamContrast42", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 11:29:11", - "registerOn": 1670150132.0845466, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150132.084547, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341100.8063452, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670345273.6333563, - "lastIP": "b}k~}jhaigzvavk", - "deviceUUID": "c9df545bca4a73a96629ad06fbdfa381808ec014" - }, - "pb-IF4LVVQfBA==": { - "display_string": [ - "\ue030Android53090241" - ], - "profiles": [], - "name": "\ue030Android53090241", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-04 15:05:04", - "registerOn": 1670150149.3393252, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150149.3393257, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150149.3393326, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150149.3393335, - "lastIP": "a~l~}mdaa~~m`", - "deviceUUID": "\u0015WX" - }, - "pb-IF49U0MCCA==": { - "display_string": [ - "\ue063LevelAccep" - ], - "profiles": [], - "name": "\ue063LevelAccep", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 17:54:58", - "registerOn": 1670150282.596354, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150282.5963545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338845.5760052, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338845.5760064, - "lastIP": "a\u007fk~}n~{a~|h", - "deviceUUID": "dce6773e0df5274089fc68289e928e5eb28a6464", - "cMsgCount": 0, - "lastMsgTime": 1670332428.5313196, - "lastMsg": "come in soon", - "cSameMsg": 0 - }, - "pb-IF5dU0YxNA==": { - "display_string": [ - "\ue020FurryArchon2625" - ], - "profiles": [], - "name": "\ue020FurryArchon2625", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 13:45:52", - "registerOn": 1670150292.5157666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150292.515767, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150292.5157752, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150292.5157762, - "lastIP": "b}k~~`ea`eang", - "deviceUUID": "763900e1025b41e755202eff96a775dd0f4939fe" - }, - "pb-IF4GUkYzDA==": { - "display_string": [ - "\ue020TypicalColonel69394" - ], - "profiles": [], - "name": "\ue020TypicalColonel69394", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-03 21:01:08", - "registerOn": 1670150432.0940392, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150432.09404, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317694.7742174, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670317774.05167, - "lastIP": "dvvczvavj~x`", - "deviceUUID": "f889cf812fc55730491765df446815e2f1e28dc0" - }, - "pb-IF4QU0gCJg==": { - "display_string": [ - "\ue020MegumiBakuretsu10" - ], - "profiles": [], - "name": "\ue020MegumiBakuretsu10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 13:20:59", - "registerOn": 1670150487.3369517, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150487.3369527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150487.3369608, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150487.3369617, - "lastIP": "b}k~~`hajezvhv", - "deviceUUID": "\u0015\u0007[UQ\u0010\u0002XPR\u0015TY" - }, - "pb-JiNJARFdXUtEXF1DEUVWUVRCE0VcRFJE": { - "display_string": [ - "\ue063Tenacious8" - ], - "profiles": [], - "name": "\ue063Tenacious8", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-11 09:56:08", - "registerOn": 1670150492.2616467, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150492.2616475, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150492.2616563, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150492.261657, - "lastIP": "dvvc}vavk~}hh", - "deviceUUID": "4d8a76b9fdf07e8b1fd462ea87bb130dc3be8cd5" - }, - "pb-IF4dU04ODg==": { - "display_string": [ - "\ue063WishfulHil" - ], - "profiles": [], - "name": "\ue063WishfulHil", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 10:55:17", - "registerOn": 1670150522.681502, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150522.681503, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216454.3141272, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670216454.3141284, - "lastIP": "azo~{i~~ogai`z", - "deviceUUID": "fb1c0f5578e1c51b6bb515cad6ad7dba76f630ff" - }, - "pb-IF5WU0RTLA==": { - "display_string": [ - "\ue030Android63351569" - ], - "profiles": [], - "name": "\ue030Android63351569", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-16 20:41:57", - "registerOn": 1670150533.4063275, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150533.4063282, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320506.1861095, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320506.186111, - "lastIP": "dvvc{va}j~|i", - "deviceUUID": "\u0015XUW\u0002GRU\u0005W@VTW\u0004\u0015V\\YXMX_WWBT" - }, - "pb-IF4RU049PA==": { - "display_string": [ - "\ue020MoonlitLink53" - ], - "profiles": [], - "name": "\ue020MoonlitLink53", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 13:25:04", - "registerOn": 1670150575.5474854, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150575.547486, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150575.5474932, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150575.547494, - "lastIP": "a\u007fn~~aeai`aib}", - "deviceUUID": "5a286eed79868133ec6e1dabae9c94bfc3b8d00f" - }, - "pb-IF5SVFdSFQ==": { - "display_string": [ - "\ue020GAMER123ABHAY", - "\ue030Android62205508", - "\ue030PC346437" - ], - "profiles": [], - "name": "\ue030PC346437", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-22 07:37:31", - "registerOn": 1670150597.617316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150597.6173167, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246216.2664175, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246216.2664187, - "lastIP": "a\u007fk~vl~~kiajb", - "deviceUUID": "47cddabeef7d4c1880fb0eb137dadca8aaf7f8f5" - }, - "pb-IF4vUxkKDg==": { - "display_string": [ - "\ue020TremendousCreek8" - ], - "profiles": [], - "name": "\ue020TremendousCreek8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-30 19:03:34", - "registerOn": 1670150727.111291, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150727.1112914, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670327073.3553312, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670327226.4994414, - "lastIP": "b}k~}khaj`zvavn", - "deviceUUID": "93959a9d304362003c85e791a6956c14d16159fe", - "cMsgCount": 0, - "lastMsgTime": 1670327427.4103475, - "lastMsg": "blue m aja mafia", - "cSameMsg": 0 - }, - "pb-IF4wUlIYCg==": { - "display_string": [ - "\ue063NearCandy4" - ], - "profiles": [], - "name": "\ue063NearCandy4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-25 16:12:16", - "registerOn": 1670150917.6800628, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150917.6800632, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670340600.6012743, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670347549.607178, - "lastIP": "b}k~}kaaiexva~i", - "deviceUUID": "ee2f0cdc1dd05777262b0fe90bb2e4b661f79512", - "cMsgCount": 0, - "lastMsgTime": 1670347998.0446155, - "lastMsg": "kya me hasuuu? ", - "cSameMsg": 0 - }, - "pb-IF5VU0cyFg==": { - "display_string": [ - "\ue020sOFF1C1AL", - "\ue030Android63570559", - "\ue030Android63570736", - "\ue030Android63570544", - "\ue030Android63570719" - ], - "profiles": [], - "name": "\ue020sOFF1C1AL", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 15:43:32", - "registerOn": 1670151270.9283757, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151270.9283764, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339985.7180412, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670342772.7138345, - "lastIP": "b}k~~`aaja\u007fvh}", - "deviceUUID": "c19fef9185c32abd8163880d476ab851bc8f9ff5", - "cMsgCount": 1, - "lastMsgTime": 1670151294.296285, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5RUkgTPw==": { - "display_string": [ - "\ue063BeamingLem" - ], - "profiles": [], - "name": "\ue063BeamingLem", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-05 18:43:08", - "registerOn": 1670151279.9852002, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151279.9852006, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670151279.985209, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670151279.98521, - "lastIP": "a~h~~khajbaib\u007f", - "deviceUUID": "8ebf6da6b2bc9c6234d4df41befcd6e560e5f5a1" - }, - "pb-IF4SU04JNg==": { - "display_string": [ - "\ue020BRITTODON03" - ], - "profiles": [], - "name": "\ue020BRITTODON03", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 13:56:41", - "registerOn": 1670151317.1930032, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151317.193004, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670151317.1930118, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670153033.64259, - "lastIP": "azo~zi~~hhaid\u007f", - "deviceUUID": "2804acc9c35941b7e55e2fd4c6ac2a0d9532853d" - }, - "pb-IF4yU05aKg==": { - "display_string": [ - "\ue020PRASADGOLE007" - ], - "profiles": [], - "name": "\ue020PRASADGOLE007", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 10:01:41", - "registerOn": 1670151344.1539695, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151344.1539702, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313343.8954515, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313343.8954527, - "lastIP": "a\u007fn~~aea`~w`", - "deviceUUID": "13c6f9c19f7e080eef7c76a3b615b11707f8a2fa" - }, - "pb-IF4AU2czAQ==": { - "display_string": [ - "\ue020FamedHair40" - ], - "profiles": [], - "name": "\ue020FamedHair40", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-23 12:09:17", - "registerOn": 1670151374.293031, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151374.2930315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332350.2196267, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332350.219628, - "lastIP": "dxva~vb\u007f`~zo", - "deviceUUID": "f75c1af88dac0c6daef9c9204c6ed802be3b11e5" - }, - "pb-IF4PU0YSXA==": { - "display_string": [ - "\ue020CreepySamurai688" - ], - "profiles": [], - "name": "\ue020CreepySamurai688", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-12 12:31:11", - "registerOn": 1670151393.3493638, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151393.3493645, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342527.8279045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670342527.827906, - "lastIP": "aakhaid~vb|", - "deviceUUID": "3c906c1a32f9ef10ec34f3359781d92fcd64921b", - "cMsgCount": 1, - "lastMsgTime": 1670342630.988081, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFZUEFBXlpFGERQUFdDFkNXRFFF": { - "display_string": [ - "\ue063Godfther1" - ], - "profiles": [], - "name": "\ue063Godfther1", - "isBan": false, - "isMuted": false, - "accountAge": "2017-02-14 19:12:04", - "registerOn": 1670151482.708698, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151482.7086985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340005.7776568, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340005.7776582, - "lastIP": "a\u007fn~~afai`zvayo", - "deviceUUID": "42ffe87abb80a374fba102b244863db358e1d04c" - }, - "pb-IF49VFQlPA==": { - "display_string": [ - "\ue020PAMU628", - "\ue030PC607749", - "\ue030PC608632", - "\ue030PC688281", - "\ue030PC306656" - ], - "profiles": [], - "name": "\ue030PC688281", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-23 14:22:54", - "registerOn": 1670151522.747347, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151522.7473476, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315495.7146943, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670331534.4832606, - "lastIP": "azo~zh~vvavo", - "deviceUUID": "b36eb11407361b24713fcb7a28a43226365651b8", - "cMsgCount": 1, - "lastMsgTime": 1670329014.4802153, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4OU0wZAg==": { - "display_string": [ - "\ue063Technospar" - ], - "profiles": [], - "name": "\ue063Technospar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 17:00:04", - "registerOn": 1670151635.1701655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151635.170166, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250143.176181, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250143.1761823, - "lastIP": "a\u007fk~~oiaiixva{o", - "deviceUUID": "fbc216773e63575c0d243392a7b1dfc4b07824c7" - }, - "pb-IF4sU0s_XQ==": { - "display_string": [ - "\ue020InsincereCase61" - ], - "profiles": [], - "name": "\ue020InsincereCase61", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 09:22:39", - "registerOn": 1670151776.62861, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151776.6286104, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670289904.6605852, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670290556.8770628, - "lastIP": "a~l~~h~{vd{", - "deviceUUID": "4b8e3697575ef3648363d6d73d9c02a81ab64084" - }, - "pb-IF4tU08YEA==": { - "display_string": [ - "\ue063Worthwhil4" - ], - "profiles": [], - "name": "\ue063Worthwhil4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 22:52:36", - "registerOn": 1670151848.1438696, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151848.14387, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670151848.1438785, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670151848.143892, - "lastIP": "a\u007fk~~oaaj`\u007fvaxo", - "deviceUUID": "a97bcffecd47672c4fd7a05130c19be7d2729277" - }, - "pb-IF4RUlAMNg==": { - "display_string": [ - "\ue020GnarlyJackalope56572" - ], - "profiles": [], - "name": "\ue020GnarlyJackalope56572", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-17 12:23:58", - "registerOn": 1670151949.246008, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151949.2460084, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670151949.2460163, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670151949.2460172, - "lastIP": "azo~{a~}jeaid\u007f", - "deviceUUID": "\u0015Y\u000e\u0005\u0005A\u0004ZQ\u0005\u0015Y\u000eTVBU\\SSFYUSVGS" - }, - "pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE": { - "display_string": [ - "\ue063HeySmooth2", - "\ue043Mr.Smoothy" - ], - "profiles": [], - "name": "\ue063HeySmooth2", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-13 17:21:16", - "registerOn": 1670151983.5855172, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151983.5855176, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339034.2475274, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339034.2475288, - "lastIP": "dvvd|vazm~~hf", - "deviceUUID": "014b00976f2c8cd83b1cb0f107296632148161af", - "cMsgCount": 0, - "lastMsgTime": 1670339199.1138752, - "lastMsg": "ab bol na jaio kuch idhar , ..", - "cSameMsg": 0 - }, - "pb-IF4VU3QkFQ==": { - "display_string": [ - "\ue063Downstrea3" - ], - "profiles": [], - "name": "\ue063Downstrea3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-13 16:08:57", - "registerOn": 1670152024.6097336, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152024.6097343, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152024.6097438, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152024.6097448, - "lastIP": "a~i~vj~~igaih|", - "deviceUUID": "8271060b4901c2c62f21de6e548f6b5e273e1d48" - }, - "pb-IF4HU00OIA==": { - "display_string": [ - "\ue063Ayushayy" - ], - "profiles": [], - "name": "\ue063Ayushayy", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 22:35:36", - "registerOn": 1670152203.0654047, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152203.0654051, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253458.732168, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253458.7321694, - "lastIP": "a\u007fn~}i`ajczvb~`", - "deviceUUID": "e7207cfc292c54d4dd6faa3fc42df0882dc792c3" - }, - "pb-IF4qUkQ9CA==": { - "display_string": [ - "\ue020LORDHanzoStar" - ], - "profiles": [], - "name": "\ue020LORDHanzoStar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-28 15:20:31", - "registerOn": 1670152229.5075467, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152229.5075471, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325172.6858616, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325172.685863, - "lastIP": "a\u007fn~~aeakgan", - "deviceUUID": "919cfd9dfd64b8ad2ccaeaaeeb246f9cd24ffa72" - }, - "pb-IF4GD2Yd": { - "display_string": [ - "\ue020POWERXDHRUV", - "\ue030Android49476815" - ], - "profiles": [], - "name": "\ue020POWERXDHRUV", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-02 22:20:11", - "registerOn": 1670152285.4197857, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152285.4197862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346805.6682715, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670347178.093982, - "lastIP": "a\u007fn~}j`aifxvb~a", - "deviceUUID": "ca61c483f0c9212f5c555e87ad7b8597ad6831de" - }, - "pb-IF4SU00JHw==": { - "display_string": [ - "\ue020Jayrajsinh1202" - ], - "profiles": [], - "name": "\ue020Jayrajsinh1202", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 22:56:58", - "registerOn": 1670152473.0684376, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152473.0684378, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307799.847084, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670308989.672402, - "lastIP": "azo~|j~}laaof", - "deviceUUID": "d2f24056af44a204e555084164760cbd757f8be1", - "cMsgCount": 0, - "lastMsgTime": 1670308000.4286244, - "lastMsg": "l", - "cSameMsg": 0 - }, - "pb-LV4FBEEKV0ZAVVwVGBVTBlxBFQ==": { - "display_string": [ - "\ue063LyingSword", - "\ue030Android12884065", - "\ue030PC103199", - "\ue030Android9847306", - "\ue030Android11501267" - ], - "profiles": [], - "name": "\ue063LyingSword", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-25 20:00:46", - "registerOn": 1670152520.1950645, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152520.195065, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216924.9135578, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670218300.3936977, - "lastIP": "a~o~vo~}hcami", - "deviceUUID": "07b8eee8772d5635ae26f7e42f3cb9ca44e051c8" - }, - "pb-JiNJARBfUUZBXlZFFUBYXVZBGEJYQ1BK": { - "display_string": [ - "\ue063mohitdevna", - "\ue030Android9502778" - ], - "profiles": [], - "name": "\ue063mohitdevna", - "isBan": false, - "isMuted": false, - "accountAge": "2016-09-25 21:04:40", - "registerOn": 1670152604.4520462, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152604.4520466, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152604.4520538, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152604.4520547, - "lastIP": "dvvcyvb|l~}ja", - "deviceUUID": "969bf094ecb454e163bec89a58426fd42821d07c" - }, - "pb-IF4CDlAZ": { - "display_string": [ - "\ue020bhattiarman786", - "\ue030Android20001553" - ], - "profiles": [], - "name": "\ue020bhattiarman786", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-02 18:27:07", - "registerOn": 1670152618.5758681, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152618.5758686, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152618.575878, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152618.575908, - "lastIP": "azo~|j~~o~z`", - "deviceUUID": "d8201ea90a1be9ff084631f3cfca964012a2b11b" - }, - "pb-JiNJARFTVEVHXFZFE09ZVFNGE0ZXRlRA": { - "display_string": [ - "\ue020CherryBruiser84898" - ], - "profiles": [], - "name": "\ue020CherryBruiser84898", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-30 12:37:08", - "registerOn": 1670152738.9171174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152738.9171178, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152738.9171264, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152738.9171274, - "lastIP": "a\u007fn~}i`aii|vazk", - "deviceUUID": "4a5672c499e5721358502cb69068eeb5aeb3823e", - "cMsgCount": 0, - "lastMsgTime": 1670154085.4756415, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4rVxMNCg==": { - "display_string": [ - "\ue020kvgahlaut2002" - ], - "profiles": [], - "name": "\ue020kvgahlaut2002", - "isBan": false, - "isMuted": false, - "accountAge": "2018-07-29 23:19:31", - "registerOn": 1670152859.3323731, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152859.3323739, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152859.3323812, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152859.332382, - "lastIP": "a}j~~naambakg", - "deviceUUID": "7e1bfc59a3c1ed6c5bd141cfa2174e6bda7116d4" - }, - "pb-IF4dU3ISFw==": { - "display_string": [ - "\ue030Android62533927" - ], - "profiles": [], - "name": "\ue030Android62533927", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 10:49:18", - "registerOn": 1670152895.4631698, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152895.4631703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152895.4631784, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152895.4631796, - "lastIP": "azo~zi~~nbaog", - "deviceUUID": "b05d9a02d64b7187b45d92f469e0dac940bcb8ea" - }, - "pb-JiNJVxFfUktFXltAEU5UUVVLGERXRVJG": { - "display_string": [ - "\ue020balamurugan1232" - ], - "profiles": [], - "name": "\ue020balamurugan1232", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-10 22:19:31", - "registerOn": 1670152908.5611398, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152908.5611403, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152908.5611484, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152908.5611494, - "lastIP": "azo~zi~~`eaid~", - "deviceUUID": "813cabe59525ededf26ab1d2c95abcc6ca788fe1" - }, - "pb-IF4PU0lcNA==": { - "display_string": [ - "\ue063ameno" - ], - "profiles": [], - "name": "\ue063ameno", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-26 01:58:01", - "registerOn": 1670152926.5370183, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152926.5370193, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152926.5370252, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152926.5370264, - "lastIP": "dvvcyvawk~~jh", - "deviceUUID": "e1e1598f3d07c22e54ab8b8261f5040dd0fa1a64" - }, - "pb-IF4PU08bDw==": { - "display_string": [ - "\ue063Existenti7" - ], - "profiles": [], - "name": "\ue063Existenti7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 16:51:05", - "registerOn": 1670152992.8104439, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152992.810444, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152992.810451, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152992.8104522, - "lastIP": "a~i~vj~}h~~o`", - "deviceUUID": "587e98f49720679f18aa9e0c6871f1926e775d57" - }, - "pb-IF4PU0laCQ==": { - "display_string": [ - "\ue063LegEndGoga" - ], - "profiles": [], - "name": "\ue020LegEndGogari", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 14:07:52", - "registerOn": 1670153010.835215, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153010.8352156, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260203.0652401, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670260212.1126184, - "lastIP": "a\u007fk~}jfaj`yvb~k", - "deviceUUID": "fec2ed56121c18274df688b838280fade9c0064c" - }, - "pb-IF4vUnhcMw==": { - "display_string": [ - "\ue030Android57199331" - ], - "profiles": [], - "name": "\ue030Android57199331", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-04 07:38:41", - "registerOn": 1670153037.0050778, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153037.0050783, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153037.0050874, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153037.0050883, - "lastIP": "azo~zi~~oiaje\u007f", - "deviceUUID": "b80c9d6be21d819a15adf66cdd703c0d08cc5be3" - }, - "pb-IF4TV3RbDA==": { - "display_string": [ - "\ue020HypnoticAttacker6749" - ], - "profiles": [], - "name": "\ue020HypnoticAttacker6749", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-22 23:04:35", - "registerOn": 1670153152.4128566, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153152.4128573, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339791.0321395, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670359303.6233096, - "lastIP": "azo~{m~~mcaiiz", - "deviceUUID": "d9016bdfc3800e1b8fc043ebc0fc3a0d8f2b2ca2", - "cMsgCount": 0, - "lastMsgTime": 1670359809.7961013, - "lastMsg": "itna sab for draw", - "cSameMsg": 0 - }, - "pb-IF4iUnQqHw==": { - "display_string": [ - "\ue063InbornSimp" - ], - "profiles": [], - "name": "\ue063InbornSimp", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-18 17:42:42", - "registerOn": 1670153169.4134543, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153169.4134548, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296292.3500986, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296292.3501, - "lastIP": "bxvc{va\u007fl~vi", - "deviceUUID": "6dbcc65f4bb4908ead86702a590c04d4b316248b" - }, - "pb-IF41VEMGKw==": { - "display_string": [ - "\ue020BakedCritter200" - ], - "profiles": [], - "name": "\ue020BakedCritter200", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-12 11:10:01", - "registerOn": 1670153338.006263, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153338.0062635, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215382.2109458, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215382.2109473, - "lastIP": "dvvcxvb~h~~ji", - "deviceUUID": "096e4bb2158b9909563621da2084c74f1ea05785" - }, - "pb-IF5XU1JSMA==": { - "display_string": [ - "\ue030Android63984084" - ], - "profiles": [], - "name": "\ue030Android63984084", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 16:59:13", - "registerOn": 1670153431.3419092, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153431.3419096, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153431.341918, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153431.341919, - "lastIP": "awm~{i~}hfaic~", - "deviceUUID": "8a1a293ebe34143c7402d3d3fa761c2c786cf05a" - }, - "pb-IF4pU0lYLg==": { - "display_string": [ - "\ue020MetalReporter57" - ], - "profiles": [], - "name": "\ue020MetalReporter57", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 14:49:22", - "registerOn": 1670153479.5258107, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153479.525811, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313455.472797, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313455.472798, - "lastIP": "dvvc{vb}a~~`d", - "deviceUUID": "c8da4033b497273eda820de725e077cd0286b29c" - }, - "pb-IF5cVBgkUw==": { - "display_string": [ - "\ue030Android36662481" - ], - "profiles": [], - "name": "\ue030Android36662481", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-17 17:17:28", - "registerOn": 1670153524.684184, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153524.6841846, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153524.6841922, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153524.6841931, - "lastIP": "dvva{`~}leaihv", - "deviceUUID": "f3e4d1c5524ffe09768f539800272965c26a84cf" - }, - "pb-IF4cU08zNg==": { - "display_string": [ - "\ue063hackkkkk13" - ], - "profiles": [], - "name": "\ue063hackkkkk13", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 17:19:07", - "registerOn": 1670153554.8892639, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153554.8892643, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153554.8892713, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153554.889272, - "lastIP": "a~k~~neaodaidy", - "deviceUUID": "7114c9505a120a1442526f84004de88ad869c65d" - }, - "pb-IF4NU0cpFw==": { - "display_string": [ - "\ue063ModalHandl" - ], - "profiles": [], - "name": "\ue020ModalHandle23", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 13:00:02", - "registerOn": 1670153566.9289293, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153566.9289298, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353029.1177723, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670353029.1177735, - "lastIP": "a\u007fk~xh~~lean", - "deviceUUID": "0c85292b5242a514132c321bd19ec3ba31589d49", - "cMsgCount": 0, - "lastMsgTime": 1670353304.275518, - "lastMsg": "/end", - "cSameMsg": 0 - }, - "pb-IF4TU0cRXQ==": { - "display_string": [ - "\ue020DauntingBasement23" - ], - "profiles": [], - "name": "\ue020DauntingBasement23", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 18:28:44", - "registerOn": 1670153583.8242934, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153583.824294, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153583.8243008, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153583.8243022, - "lastIP": "a\u007fn~~acajeaj`y", - "deviceUUID": "c498431cdbb8e6d74d447eba20bb191131e9f2a4" - }, - "pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF": { - "display_string": [ - "\ue020PoeticFire35261", - "\ue030Android10760074" - ], - "profiles": [], - "name": "\ue020PoeticFire35261", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-05 16:34:48", - "registerOn": 1670153597.8871176, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153597.8871183, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341655.7576294, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341655.7576308, - "lastIP": "azo~{o~~hbaiiz", - "deviceUUID": "fe0632180c6fdf0358ef662793570362f1792ca2", - "cMsgCount": 0, - "lastMsgTime": 1670254337.7456703, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH": { - "display_string": [ - "\ue063UKnowMeAJ", - "\ue030Android6156965", - "\ue030Android8450884", - "\ue030PC124724", - "\ue030Android16945336" - ], - "profiles": [], - "name": "\ue063UKnowMeAJ", - "isBan": false, - "isMuted": false, - "accountAge": "2016-08-23 22:53:02", - "registerOn": 1670153607.9341831, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153607.9341836, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153607.9341931, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153607.9341943, - "lastIP": "awj~{`~}kaaib~", - "deviceUUID": "0dabcb7a1112dfe28d7c91c8ba6834dcd0a32ff1", - "cMsgCount": 0, - "lastMsgTime": 1670155302.665023, - "lastMsg": "finally met someone i know glad for that", - "cSameMsg": 0 - }, - "pb-IF4UU2IIFg==": { - "display_string": [ - "\ue020ArunTamizha" - ], - "profiles": [], - "name": "\ue020ArunTamizha", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-05 21:09:13", - "registerOn": 1670153617.0610843, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153617.0610847, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321650.54618, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321650.5461817, - "lastIP": "azo~{a~}kbaie\u007f", - "deviceUUID": "c8c93e9246ede294de40a489382f9caff152bcca" - }, - "pb-IF4NU0ogMQ==": { - "display_string": [ - "\ue030Android63798929" - ], - "profiles": [], - "name": "\ue030Android63798929", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 00:06:46", - "registerOn": 1670153625.037714, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153625.0377147, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153625.0377228, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153625.037724, - "lastIP": "a\u007fn~~aeah~}lh", - "deviceUUID": "\u0015" - }, - "pb-IF4mU04zPA==": { - "display_string": [ - "\ue020Aryansingh7380" - ], - "profiles": [], - "name": "\ue020Aryansingh7380", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 15:36:00", - "registerOn": 1670153703.224928, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153703.2249286, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153703.2249346, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153703.2249358, - "lastIP": "bxvgakhald", - "deviceUUID": "1bcb6d4f5e67c688504e2ed69b13a6fedefb0b5c" - }, - "pb-IF4HU0sYJg==": { - "display_string": [ - "\ue020NerdyIntoxication61" - ], - "profiles": [], - "name": "\ue020NerdyIntoxication61", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 21:12:15", - "registerOn": 1670153751.4580996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153751.4581, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153751.4581082, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153751.4581094, - "lastIP": "d|vbzi~}jcaj`y", - "deviceUUID": "d41e1b56bbddcdb0889e605e38131b1e3136c616" - }, - "pb-IF41UlUmIw==": { - "display_string": [ - "\ue063Screechi15" - ], - "profiles": [], - "name": "\ue063Screechi15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-04 10:32:44", - "registerOn": 1670153940.0520194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153940.05202, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153940.0520291, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153940.0520303, - "lastIP": "a\u007fk~~iaaabajcz", - "deviceUUID": "4e3edf5ba1db2396c457d9a9e5fbfd6164cdcab0" - }, - "pb-IF5TVUJcLA==": { - "display_string": [ - "\ue020lazygamerwhatsoever" - ], - "profiles": [], - "name": "\ue020lazygamerwhatsoever", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-08 06:27:07", - "registerOn": 1670154007.2923071, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154007.2923076, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154007.2923143, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154007.2923155, - "lastIP": "b\u007fj~~o`aj`xvazi", - "deviceUUID": "19d50cda16f967f422a6754824923d499c3b92f9" - }, - "pb-IF4SU08FBw==": { - "display_string": [ - "\ue063FULLGAMING" - ], - "profiles": [], - "name": "\ue063FULLGAMING", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:18:06", - "registerOn": 1670154020.3763273, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154020.3763275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154020.3763359, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670154950.374515, - "lastIP": "azo~{l~~mbaoc", - "deviceUUID": "7d7048bd82d0b66c3650d55dacb0d18a7ac2e368" - }, - "pb-IF4OVGhcIw==": { - "display_string": [ - "\ue020NeedlessMonkey47856" - ], - "profiles": [], - "name": "\ue020NeedlessMonkey47856", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-23 13:52:24", - "registerOn": 1670154041.5401742, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154041.540175, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327813.64667, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327813.6466715, - "lastIP": "azo~zi~y`~~ob", - "deviceUUID": "a38d062dd017df250a5be569c32001f95e70f7eb" - }, - "pb-IF4lU2caEg==": { - "display_string": [ - "\ue063KiskiBaji" - ], - "profiles": [], - "name": "\ue063KiskiBaji", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-24 19:56:44", - "registerOn": 1670154092.6420085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154092.642009, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154092.6420195, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154092.6420205, - "lastIP": "axi~{`~vh~}kh", - "deviceUUID": "606f44af70f4bf1cabb722fc7d783d8f3a810887" - }, - "pb-IF4nUm84Kg==": { - "display_string": [ - "\ue030PC359091", - "\ue030Android48388543", - "\ue030Linux47759" - ], - "profiles": [], - "name": "\ue030Android48388543", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-24 17:46:42", - "registerOn": 1670154121.7974608, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154121.7974615, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154121.797471, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154121.7974722, - "lastIP": "dvvc{va|a~}ke", - "deviceUUID": "\u0015" - }, - "pb-IF4cV3AGLQ==": { - "display_string": [ - "\ue020PlasticWillOWisp7884", - "\ue030Android29929213" - ], - "profiles": [], - "name": "\ue020PlasticWillOWisp7884", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-07 16:48:17", - "registerOn": 1670154154.8782644, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154154.878265, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347106.7934768, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670347106.7934783, - "lastIP": "a\u007fn~~afai~~jh", - "deviceUUID": "4d4035f1abf08f28bfba4a1424365e80892cc400" - }, - "pb-IF5dVWgRBg==": { - "display_string": [ - "\ue030Android47745010" - ], - "profiles": [], - "name": "\ue030Android47745010", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-17 15:16:22", - "registerOn": 1670154159.865419, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154159.8654191, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226291.5876706, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670240712.201623, - "lastIP": "dvvc}vaxi~~`b", - "deviceUUID": "0d43b8953ca13eaf5199996cd75eecab4a33f535", - "cMsgCount": 0, - "lastMsgTime": 1670240542.6593437, - "lastMsg": "ok", - "cSameMsg": 0 - }, - "pb-IF5RU3AjNA==": { - "display_string": [ - "\ue020FranticFever44" - ], - "profiles": [], - "name": "\ue020FranticFever44", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-16 11:24:36", - "registerOn": 1670154190.9684489, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154190.9684496, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250715.2657275, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670250922.9935684, - "lastIP": "azo~{n~~haaaa", - "deviceUUID": "1a9c004b4686e7ad14e6a3ca809ec5ffb520c744" - }, - "pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL": { - "display_string": [ - "\ue020sahilkhatri343593", - "\ue030Android15977310" - ], - "profiles": [], - "name": "\ue020sahilkhatri343593", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-09 23:24:32", - "registerOn": 1670154268.5327513, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670156616.624894, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670354228.550771, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670354228.5507722, - "lastIP": "azo~{m~}leamf", - "deviceUUID": "f03172fe2a449fcc17773aad18f0af7cfff7aeb8", - "cMsgCount": 0, - "lastMsgTime": 1670354879.964099, - "lastMsg": "hnn\ud83c\udf03", - "cSameMsg": 0 - }, - "pb-IF4UU00MKQ==": { - "display_string": [ - "\ue063Underwate6" - ], - "profiles": [], - "name": "\ue063Underwate6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 06:34:24", - "registerOn": 1670154385.9283226, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154385.928323, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154385.9283323, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670154431.4844832, - "lastIP": "a~j~}hgai`{vb~", - "deviceUUID": "11d202b7087bc5e0f1b0fd3251f45f2a6087639a", - "cMsgCount": 0, - "lastMsgTime": 1670154817.8543675, - "lastMsg": "hahaha died cxd", - "cSameMsg": 0 - }, - "pb-IF4iU0kkFw==": { - "display_string": [ - "\ue030Android63759055" - ], - "profiles": [], - "name": "\ue030Android63759055", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-28 21:20:32", - "registerOn": 1670154458.8962836, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154458.896284, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154458.8962908, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154458.8962917, - "lastIP": "a\u007fn~}hhaievvb\u007fh", - "deviceUUID": "aa9df018acc2720dbbab3e71f4308cc3e749460b" - }, - "pb-IF4XUk87Lg==": { - "display_string": [ - "\ue063zakitcgame" - ], - "profiles": [], - "name": "\ue063zakitcgame", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-11 17:18:40", - "registerOn": 1670154476.9446325, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154476.9446332, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154476.9446418, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154476.944643, - "lastIP": "dvvcxvayi~}li", - "deviceUUID": "f60e1a759feaade6d32a3bd98c15ba1540c1443f" - }, - "pb-IF4FU3ApCw==": { - "display_string": [ - "\ue020Dharun1403" - ], - "profiles": [], - "name": "\ue020Dharun1403", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-27 18:30:58", - "registerOn": 1670154560.3510652, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154560.3510659, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154560.3510735, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154560.3510742, - "lastIP": "azo~zi~~hcaigz", - "deviceUUID": "fd5729efd2498f63fb5e6d81129a429389e021bf" - }, - "pb-IF4VVWsGIA==": { - "display_string": [ - "\ue020PseudoAttendance18" - ], - "profiles": [], - "name": "\ue020PseudoAttendance18", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-27 10:46:09", - "registerOn": 1670154570.3457055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154570.345706, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325450.6205482, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670329217.1041179, - "lastIP": "azo~zi~~m`ajdx", - "deviceUUID": "bf98ea45cae48baaed18a03b5d3996ee1c8b0f92", - "cMsgCount": 2, - "lastMsgTime": 1670330386.6632745, - "lastMsg": "/fly ", - "cSameMsg": 0 - }, - "pb-JiNJARFcV0RFWV1AF0VRVVxKFURWQFBD": { - "display_string": [ - "\ue063InfiniteVa" - ], - "profiles": [], - "name": "\ue063InfiniteVa", - "isBan": false, - "isMuted": false, - "accountAge": "2016-07-08 20:31:35", - "registerOn": 1670154667.6615448, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154667.6615453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230012.2025716, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670230024.2440221, - "lastIP": "dvvcxvb\u007fj~~mb", - "deviceUUID": "7e9cfb1ec189b9af073018c0e121a54c93b4d84a", - "cMsgCount": 0, - "lastMsgTime": 1670154803.948753, - "lastMsg": "too much crowded ", - "cSameMsg": 0 - }, - "pb-IF4NU0sbEA==": { - "display_string": [ - "\ue020LordTamboKing" - ], - "profiles": [], - "name": "\ue020LordTamboKing", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-13 18:56:12", - "registerOn": 1670154746.9129632, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154746.9129634, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301739.9053996, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670301921.5981803, - "lastIP": "azo~|l~~lfaie", - "deviceUUID": "ee45cecc4347962ab5eecb73f55adf8f735fa801" - }, - "pb-IF5XVEUZDQ==": { - "display_string": [ - "\ue063ConfusedJa", - "\ue030Android56475190" - ], - "profiles": [], - "name": "\ue063ConfusedJa", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-11 11:55:01", - "registerOn": 1670154786.0738292, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154786.07383, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154786.073839, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154786.0738397, - "lastIP": "a\u007fk~~idakiaii", - "deviceUUID": "cf0a45a18717647d9d1bb5d4bc2f40f5c632ee8a" - }, - "pb-IF4gU00eLQ==": { - "display_string": [ - "\ue030Android63922654" - ], - "profiles": [], - "name": "\ue030Android63922654", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 19:00:42", - "registerOn": 1670154810.1850333, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154810.1850338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154810.1850398, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154810.1850407, - "lastIP": "a\u007fk~~j`aj`\u007fvc}", - "deviceUUID": "2ca3765be0c668ce4b5ae1536349729c4a009d28" - }, - "pb-IF4lU0c9Hw==": { - "display_string": [ - "\ue030Android63669053" - ], - "profiles": [], - "name": "\ue030Android63669053", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 10:59:37", - "registerOn": 1670154903.5047412, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154903.5047417, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335633.919163, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335633.9191644, - "lastIP": "b}k~}jga`caigw", - "deviceUUID": "30e91cbd42dabf2a3be836ca08a1d6341db5b10d", - "cMsgCount": 1, - "lastMsgTime": 1670337045.1403408, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4zUkM_MQ==": { - "display_string": [ - "\ue030Android63984108" - ], - "profiles": [], - "name": "\ue030Android63984108", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 17:03:02", - "registerOn": 1670154917.8602087, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154917.8602092, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154917.8602173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154917.8602183, - "lastIP": "fyvawi~~`aaih{", - "deviceUUID": "fb4cbf3ed54bcb03b1a8a4dc97b8c8b07f81bb17" - }, - "pb-IF4AU0slNQ==": { - "display_string": [ - "\ue020ExposedEditorial36" - ], - "profiles": [], - "name": "\ue020ExposedEditorial36", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 23:05:52", - "registerOn": 1670155006.9034653, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155006.9034655, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340287.747325, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340287.7473266, - "lastIP": "b\u007fj~wn~}jaaiiw", - "deviceUUID": "3a858043f93d2d3d346070f046d32ae8f09f83dc" - }, - "pb-IF4sVFkqEw==": { - "display_string": [ - "\ue020THANATOS6660" - ], - "profiles": [], - "name": "\ue020THANATOS6660", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-23 20:31:48", - "registerOn": 1670155043.0317564, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155043.0317566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155043.0317628, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155043.031764, - "lastIP": "azo~{n~~`daid\u007f", - "deviceUUID": "81e6bd1280798e984d4653bf596424fbd89f18ba" - }, - "pb-IF4AV3RfLA==": { - "display_string": [ - "\ue020Rahul1000010206", - "\ue030Android30382608" - ], - "profiles": [], - "name": "\ue020Rahul1000010206", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-22 19:00:56", - "registerOn": 1670155086.163616, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155086.1636162, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220102.4517877, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220102.4517894, - "lastIP": "d}va\u007fn~vvg|", - "deviceUUID": "a3dd0677c34dccab00e64b217b08593bd7741092" - }, - "pb-IF4rU08GJw==": { - "display_string": [ - "\ue063LunarJogge" - ], - "profiles": [], - "name": "\ue063LunarJogge", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 16:14:10", - "registerOn": 1670155098.2845676, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155098.284568, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155098.2845762, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155098.2845771, - "lastIP": "azo~{l~~nbajd|", - "deviceUUID": "c7bc39d68e87db8e08579e63abd483695894e87d" - }, - "pb-IF49VW0hJA==": { - "display_string": [ - "\ue030Android48713858" - ], - "profiles": [], - "name": "\ue030Android48713858", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-06 15:20:40", - "registerOn": 1670155217.664931, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155217.6649315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169988.9518273, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169988.9518285, - "lastIP": "a\u007fn~}iaajdwvdw", - "deviceUUID": "057c3747d18371a72042fae071c8ac22f2d7ec77" - }, - "pb-IF4pU2sgJw==": { - "display_string": [ - "\ue020superchan92413", - "\ue030Android61664971" - ], - "profiles": [], - "name": "\ue020superchan92413", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-06 16:58:42", - "registerOn": 1670155380.337275, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155380.337276, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155380.3372843, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155380.3372853, - "lastIP": "a~j~~kdaj`\u007fvb{l", - "deviceUUID": "a9bc1b36fdfe2fda971bbe51a3383a7518ee4581" - }, - "pb-IF4oU3USLw==": { - "display_string": [ - "\ue020abiee1704" - ], - "profiles": [], - "name": "\ue020abiee1704", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-18 13:03:48", - "registerOn": 1670155424.4973814, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155424.497382, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155424.49739, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155424.497391, - "lastIP": "b~h~~vivva~`", - "deviceUUID": "4852a0329a65195d8ed91b6c0276c14c1cab92c9" - }, - "pb-IF4oU3oJEQ==": { - "display_string": [ - "\ue030Android63193363" - ], - "profiles": [], - "name": "\ue030Android63193363", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-08 12:35:31", - "registerOn": 1670155431.456398, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155431.4563985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155431.456405, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155431.456406, - "lastIP": "a}j~~nda`ea`", - "deviceUUID": "52e883ca4163bd784c466d1d8e309d3bc0f4ff1a" - }, - "pb-IF4nVUwZKg==": { - "display_string": [ - "\ue063SHDW1357" - ], - "profiles": [], - "name": "\ue063SHDW1357", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-24 18:12:02", - "registerOn": 1670155590.025852, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155590.0258524, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155590.0258603, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155590.025861, - "lastIP": "a~o~}hiajcxva\u007fn", - "deviceUUID": "5f7707ac18cc6bf90a4f74f0c186607e0a5c1a8f" - }, - "pb-IF4BU00xJA==": { - "display_string": [ - "\ue020SkinnyPencil69437" - ], - "profiles": [], - "name": "\ue020SkinnyPencil69437", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 21:34:06", - "registerOn": 1670155599.0226436, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155599.022644, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155599.0226533, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670155688.0137756, - "lastIP": "d}va~i~~hcaih", - "deviceUUID": "421ad51755dbf596a5afed7d8271998b7e65dc7a" - }, - "pb-IF4dU0kPLQ==": { - "display_string": [ - "\ue030Android63764097" - ], - "profiles": [], - "name": "\ue030Android63764097", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 15:28:23", - "registerOn": 1670155633.1936507, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155633.1936512, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232692.8373356, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232692.8373373, - "lastIP": "a\u007fk~}`~~icaj", - "deviceUUID": "097d38a155cd36f9651bef96204f08390ebe615a" - }, - "pb-IF41U08_Ug==": { - "display_string": [ - "\ue063gandfaad14" - ], - "profiles": [], - "name": "\ue063gandfaad14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 16:09:18", - "registerOn": 1670155714.55478, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155714.5547805, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155714.5547888, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155714.5547898, - "lastIP": "a\u007fn~}i`aifvvd\u007f", - "deviceUUID": "708461b0dbfa7a287e55479b218190516c61359e" - }, - "pb-IF48U3MGAw==": { - "display_string": [ - "\ue030Android62546435" - ], - "profiles": [], - "name": "\ue030Android62546435", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 23:05:49", - "registerOn": 1670155745.5220652, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155745.5220656, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155745.5220733, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155745.5220742, - "lastIP": "axm~~kiaj`xvawm", - "deviceUUID": "df3b7c478bdbc8a9e06c0f726d62ac4b3a1d6459", - "cMsgCount": 0, - "lastMsgTime": 1670155763.171182, - "lastMsg": "/end", - "cSameMsg": 0 - }, - "pb-IF4lU2kSJw==": { - "display_string": [ - "\ue020RareChimera45170", - "\ue030Android61670136" - ], - "profiles": [], - "name": "\ue030Android61670136", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-02 19:27:15", - "registerOn": 1670155805.7864053, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155805.7864058, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155805.786414, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155805.7864149, - "lastIP": "dvvc}vayn~wi", - "deviceUUID": "836c6c4670c3449e59c41970e1897b5d4d40b101" - }, - "pb-IF4qU25ZNQ==": { - "display_string": [ - "\ue030Android62042729" - ], - "profiles": [], - "name": "\ue030Android62042729", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-17 06:19:41", - "registerOn": 1670155836.8855462, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155836.8855467, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155836.8855538, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155836.8855548, - "lastIP": "awj~}kbai`xvb{o", - "deviceUUID": "\u0015S^" - }, - "pb-IF4UU1AuUQ==": { - "display_string": [ - "\ue063GrubbyMani" - ], - "profiles": [], - "name": "\ue063GrubbyMani", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 11:00:59", - "registerOn": 1670155944.6819415, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155944.681942, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155944.6819518, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155944.6819527, - "lastIP": "axm~~khaniaif~", - "deviceUUID": "4f706677eeb6d18054f0de0864218a90f385f5c7" - }, - "pb-IF4TU0o6Aw==": { - "display_string": [ - "\ue063unstoppabl", - "\ue030Android63873290" - ], - "profiles": [], - "name": "\ue063unstoppabl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-31 14:48:23", - "registerOn": 1670155975.315315, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155975.3153155, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320412.9129193, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320412.9129212, - "lastIP": "awh~~aaajayva|i", - "deviceUUID": "3fc28f4ee74b8d9f421e8a6e9e11b8ebc43f1e31" - }, - "pb-IF40UncaLg==": { - "display_string": [ - "\ue063TiredShift" - ], - "profiles": [], - "name": "\ue063TiredShift", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-03 12:48:25", - "registerOn": 1670156023.854145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156023.8541455, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222448.129962, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670222458.156818, - "lastIP": "dvvc}vbzi~zh", - "deviceUUID": "1bebabd26f546f797cb44971532451f5181a64a4", - "cMsgCount": 0, - "lastMsgTime": 1670170109.5159588, - "lastMsg": "gg", - "cSameMsg": 0 - }, - "pb-IF4SEHAl": { - "display_string": [ - "\ue020bisht4189", - "\ue030PC322127", - "\ue030Android45764862" - ], - "profiles": [], - "name": "\ue020bisht4189", - "isBan": false, - "isMuted": false, - "accountAge": "2018-06-09 21:21:57", - "registerOn": 1670156033.5834677, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156033.5834682, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338597.785404, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338597.7854052, - "lastIP": "a\u007fk~{`~~aiaify", - "deviceUUID": "8ece070744c3e4e7b9b808ab81b0ffecf18693ab", - "cMsgCount": 0, - "lastMsgTime": 1670339138.776181, - "lastMsg": "\u091c\u0949\u0928 \u0935\u0940\u0915 \u0930\u0924\u094d\u0928 \u0915\u093e \u0906\u0936\u093f\u0958", - "cSameMsg": 0 - }, - "pb-IF4iVFBbDA==": { - "display_string": [ - "\ue063djankit857" - ], - "profiles": [], - "name": "\ue063djankit857", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-19 08:40:00", - "registerOn": 1670156095.9860313, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156095.9860315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337482.9605923, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337482.9605935, - "lastIP": "a\u007fn~}ifaia}vh", - "deviceUUID": "9ae5fe15fbead527883571aba5ca3f1e5ca6177c", - "cMsgCount": 0, - "lastMsgTime": 1670258431.1791816, - "lastMsg": "ahh", - "cSameMsg": 0 - }, - "pb-IF4tU00oEA==": { - "display_string": [ - "\ue063Unparalle3" - ], - "profiles": [], - "name": "\ue063Unparalle3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 16:10:55", - "registerOn": 1670156138.9764473, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156138.9764478, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156138.9764707, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670156260.0455256, - "lastIP": "b}k~}jeaig~vd}", - "deviceUUID": "5c2c20c749cd54939711e428c481d15e73acc9ee" - }, - "pb-IF4UU1BeVg==": { - "display_string": [ - "\ue030Android63976531" - ], - "profiles": [], - "name": "\ue030Android63976531", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 15:30:34", - "registerOn": 1670156150.9990356, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156150.999036, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156150.9990444, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156150.9990454, - "lastIP": "azo~{a~~lbaia\u007f", - "deviceUUID": "\u0015P\bXS\u0011" - }, - "pb-IF4rU1BdLw==": { - "display_string": [ - "\ue063SheikRieng" - ], - "profiles": [], - "name": "\ue063SheikRieng", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:24:11", - "registerOn": 1670156267.369528, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156267.3695285, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331982.556344, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670331982.5563457, - "lastIP": "azo~zi~~acajc{", - "deviceUUID": "9619ea22745015da3103b77820c9c0bdef6a70f0", - "cMsgCount": 0, - "lastMsgTime": 1670332882.8532884, - "lastMsg": "suiiiii", - "cSameMsg": 0 - }, - "pb-IF4sU0tbUA==": { - "display_string": [ - "\ue030Android63824610" - ], - "profiles": [], - "name": "\ue030Android63824610", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-07 20:34:15", - "registerOn": 1670156348.6588078, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156348.6588082, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156348.658817, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156348.658818, - "lastIP": "a{h~}icalaaii|", - "deviceUUID": "a5dab92b35a1f6ce73b27982249c0e95eab50cbd" - }, - "pb-IF4IU08oXA==": { - "display_string": [ - "\ue030Android63976379" - ], - "profiles": [], - "name": "\ue030Android63976379", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 15:04:06", - "registerOn": 1670156411.8843334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156411.8843338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156411.8843422, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156411.8843434, - "lastIP": "a\u007fk~}hcaiczva{o", - "deviceUUID": "4903d084baf9abddc56cfe3c137c5e5f4cab07a3" - }, - "pb-IF4rUkFSLw==": { - "display_string": [ - "\ue063Conformab8", - "\ue030Android57282101" - ], - "profiles": [], - "name": "\ue020ConformableLink14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-16 16:52:54", - "registerOn": 1670156441.9974556, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156441.997456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341206.1418886, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341206.14189, - "lastIP": "azo~|j~~i~~lg", - "deviceUUID": "5d57b00b4e1daba91ce4fbc1d6a47384ffcec743" - }, - "pb-IF5QU3gCEQ==": { - "display_string": [ - "\ue063Arcanegame" - ], - "profiles": [], - "name": "\ue020lightingstormer", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-19 18:17:04", - "registerOn": 1670156507.2636464, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156507.263647, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169174.925367, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169174.9253683, - "lastIP": "azo~zi~~k~wh", - "deviceUUID": "9c9ca455a82357d94ff9b041816837d19fe98a92" - }, - "pb-IF4rU0o9KQ==": { - "display_string": [ - "\ue030Android63770342" - ], - "profiles": [], - "name": "\ue030Android63770342", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-30 10:28:52", - "registerOn": 1670156544.3403409, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156544.3403413, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670325605.1216817, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670331001.1045427, - "lastIP": "a~j~}h`aifyva\u007fa", - "deviceUUID": "264499e93a0572229a207bf3cf326bdce60fe69f", - "cMsgCount": 1, - "lastMsgTime": 1670330734.89296, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4TUlZZIg==": { - "display_string": [ - "\ue030Android59520942" - ], - "profiles": [], - "name": "\ue030Android59520942", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-07 08:34:13", - "registerOn": 1670156560.410046, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156560.4100468, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156560.410055, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156560.4100559, - "lastIP": "a~j~~ahajc}vhz", - "deviceUUID": "\u0015Y\u000bSUDY\fXP\u0017Y\bYTB\u0005XPXAV_SUA" - }, - "pb-IF41U2cJEA==": { - "display_string": [ - "\ue063Vanquishi8" - ], - "profiles": [], - "name": "\ue063Vanquishi8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-24 17:06:27", - "registerOn": 1670156608.679988, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156608.6799881, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156608.6799943, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156608.679995, - "lastIP": "a\u007fn~}hcaidyva|l", - "deviceUUID": "f25878bcd4d5d0c8431d14cf300314495ccb4189" - }, - "pb-IF5dVERdFA==": { - "display_string": [ - "\ue030Android41433412" - ], - "profiles": [], - "name": "\ue030Android41433412", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-02 18:48:19", - "registerOn": 1670156614.946084, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156614.9460843, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168570.8582368, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168570.8582382, - "lastIP": "dvvc{vaz`~~hh", - "deviceUUID": "fe2e14c89841f3d3cdfaa7bfd694859405277ca5" - }, - "pb-IF4XU0whCw==": { - "display_string": [ - "\ue030Android63825840" - ], - "profiles": [], - "name": "\ue030Android63825840", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 00:45:28", - "registerOn": 1670156627.7043135, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156627.704314, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156627.7043226, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156627.7043235, - "lastIP": "dxvc~va{m~}jg", - "deviceUUID": "997c03dbb6f929175bfc8cdff8b3950e693b29ef" - }, - "pb-IF4jU04xLQ==": { - "display_string": [ - "\ue020SahilRisingStar0920" - ], - "profiles": [], - "name": "\ue020SahilRisingStar0920", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 01:09:21", - "registerOn": 1670156658.9991548, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156658.9991553, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670156871.692482, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156658.9991639, - "lastIP": "azo~zh~}h~~nd", - "deviceUUID": "f03172fe2a449fcc17773aad18f0af7cfff7aeb8", - "cMsgCount": 0, - "lastMsgTime": 1670157368.0871663, - "lastMsg": " ", - "cSameMsg": 0 - }, - "pb-IF4UUmZcEA==": { - "display_string": [ - "\ue020Dharsanaswin" - ], - "profiles": [], - "name": "\ue020Dharsanaswin", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-11 08:35:28", - "registerOn": 1670156685.8769872, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156685.8769877, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340079.046858, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340079.0468595, - "lastIP": "azo~zi~~jaaibv", - "deviceUUID": "e88c7c1725a44ce7206089fd2a45d4aecb29c3de" - }, - "pb-IF5WV00NMQ==": { - "display_string": [ - "\ue020itsakasrija" - ], - "profiles": [], - "name": "\ue020itsakasrija", - "isBan": false, - "isMuted": false, - "accountAge": "2019-03-19 19:02:53", - "registerOn": 1670156818.322882, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156818.3228827, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156818.3228912, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156818.3228924, - "lastIP": "azo~|a~}n~~mc", - "deviceUUID": "e63c1a29bbc41767e40f45748864e5d421783ac7" - }, - "pb-IF5SU00_Ag==": { - "display_string": [ - "\ue020AmazingTriangle14295" - ], - "profiles": [], - "name": "\ue020AmazingTriangle14295", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 22:10:57", - "registerOn": 1670156821.4004574, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156821.400458, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156821.4004662, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670159147.2531607, - "lastIP": "azo~|j~}jdamc", - "deviceUUID": "a92e2cebf013aa06240ed50b96989dbd3044ff3e" - }, - "pb-IF4GU0gbVQ==": { - "display_string": [ - "\ue020DependableChip25" - ], - "profiles": [], - "name": "\ue020DependableChip25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 12:19:05", - "registerOn": 1670156908.6517982, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156908.6517987, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318214.6463692, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318214.646371, - "lastIP": "a\u007fk~~mfaja|va|m", - "deviceUUID": "c912da30b9db33fb38a678ee31d79e93cc9ef4bf", - "cMsgCount": 0, - "lastMsgTime": 1670318853.8974233, - "lastMsg": "lord", - "cSameMsg": 0 - }, - "pb-IF4RU2g-VQ==": { - "display_string": [ - "\ue063ErsatzGuac" - ], - "profiles": [], - "name": "\ue063ErsatzGuac", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-26 18:38:58", - "registerOn": 1670157133.8047647, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157133.804765, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670348196.353198, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670348196.3531997, - "lastIP": "dvvcxvb|k~~``", - "deviceUUID": "2894d5f21de84de80bd309ce6a555b49ea37f2aa" - }, - "pb-IF4KV04FIg==": { - "display_string": [ - "\ue063ItzMeRoman" - ], - "profiles": [], - "name": "\ue063ItzMeRoman", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-04 19:04:04", - "registerOn": 1670157219.8004673, - "canStartKickVote": true, - "spamCount": 2, - "lastSpam": 1670317030.170266, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670352068.9927344, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670356904.071566, - "lastIP": "dvvcxvfyvez", - "deviceUUID": "c9f79337d0693a50e81662cee5c8b8f1dcf508be", - "cMsgCount": 0, - "lastMsgTime": 1670355214.7969737, - "lastMsg": "\ud83d\ude42", - "cSameMsg": 0 - }, - "pb-IF4OU0MpNA==": { - "display_string": [ - "\ue063Nostalgic4" - ], - "profiles": [], - "name": "\ue063Nostalgic4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-20 16:48:26", - "registerOn": 1670157412.4206848, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157412.4206853, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670157412.420694, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670157412.420695, - "lastIP": "aw`~~jiaie~vgz", - "deviceUUID": "e2c5ef269ad01779706103d044c7585ffb000ba7" - }, - "pb-IF5WU1EqAw==": { - "display_string": [ - "\ue030Android63963639" - ], - "profiles": [], - "name": "\ue030Android63963639", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 17:29:52", - "registerOn": 1670157483.7763898, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157483.7763903, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210333.055326, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210333.0553274, - "lastIP": "dvva{l~}jhajc}", - "deviceUUID": "ee687ca5612b9f5463a9df13607420d98eddb3de" - }, - "pb-IF4qKFAu": { - "display_string": [ - "\ue063GreenKiwi4" - ], - "profiles": [], - "name": "\ue063GreenKiwi4", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-05 10:39:28", - "registerOn": 1670157486.7374034, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157486.7374036, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670304412.0338194, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670304412.0338206, - "lastIP": "azo~|j~|h~wh", - "deviceUUID": "95694b7b91756bdcb228a522ae7c0e7b57d1f025" - }, - "pb-IF4UUlQyEA==": { - "display_string": [ - "\ue063EpicQuail4", - "\ue030Android58443597" - ], - "profiles": [], - "name": "\ue063EpicQuail4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-30 22:35:41", - "registerOn": 1670157640.2495594, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157640.2495599, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254058.9861078, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254058.9861093, - "lastIP": "azo~|o~~khaoi", - "deviceUUID": "8708d0911fb55b2401c512826006a1dd0646ce00" - }, - "pb-IF4MU2sFJA==": { - "display_string": [ - "\ue020MDHAMDAN99" - ], - "profiles": [], - "name": "\ue020MDHAMDAN99", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 06:07:38", - "registerOn": 1670157676.450389, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157676.4503894, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169450.9087777, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670173940.2467167, - "lastIP": "azo~{n~w`~~ld", - "deviceUUID": "d472f8b4092afab5cc1bd4d51eecb6e2febe3e75" - }, - "pb-IF4dU04OPA==": { - "display_string": [ - "\ue063ISHANTH05" - ], - "profiles": [], - "name": "\ue063ISHANTH05", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 10:08:54", - "registerOn": 1670157876.1229389, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157876.122939, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670157876.1229472, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670157876.1229486, - "lastIP": "azo~{m~}meaicx", - "deviceUUID": "3b313c2552efa95697f7c00278ba9bb150841a5f" - }, - "pb-IF4eU0kxCg==": { - "display_string": [ - "\ue020masterkiller12398745" - ], - "profiles": [], - "name": "\ue020masterkiller12398745", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-26 22:23:38", - "registerOn": 1670157906.1819763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157906.1819768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670157906.1819868, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670157906.1819878, - "lastIP": "a|o~vo~vn~|k", - "deviceUUID": "6d0ed873d109ff0f040122376bf075a4e2f48eb6" - }, - "pb-IF4SUnMKEw==": { - "display_string": [ - "\ue063Mukund094" - ], - "profiles": [], - "name": "\ue063Mukund094", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-15 19:01:52", - "registerOn": 1670157917.202916, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157917.2029164, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168887.971206, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670169157.8623798, - "lastIP": "aakhaifxvb}a", - "deviceUUID": "81ca5c0f7a3bcd42bc49e9507bce630a6d73eca0" - }, - "pb-IF5dU1FZDA==": { - "display_string": [ - "\ue063NewestBlue", - "\ue030Android52862393" - ], - "profiles": [], - "name": "\ue063NewestBlue", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 19:16:18", - "registerOn": 1670157920.253806, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157920.2538066, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670157920.2538145, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670157920.2538157, - "lastIP": "a\u007fn~~abakfaig{", - "deviceUUID": "0a674aa22c9f045cae63f4bcdc0252fb2449c177" - }, - "pb-IF4CU2oaKw==": { - "display_string": [ - "\ue063Edwinss321" - ], - "profiles": [], - "name": "\ue063Edwinss321", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-05 21:30:27", - "registerOn": 1670158148.072629, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158148.0726295, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158148.0726385, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158148.0726395, - "lastIP": "a\u007fn~}ica`ham", - "deviceUUID": "0a91a672cfaf036c22db725f3a3e8e59035f010e" - }, - "pb-IF4DVW4HFA==": { - "display_string": [ - "\ue030Android48907943" - ], - "profiles": [], - "name": "\ue030Android48907943", - "isBan": true, - "isMuted": false, - "accountAge": "2020-12-15 22:45:08", - "registerOn": 1670158229.2643647, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158229.264365, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670158454.317948, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158229.264374, - "lastIP": "b}k~}khaid|vbx", - "deviceUUID": "\u0015YUYY\u0010", - "cMsgCount": 0, - "lastMsgTime": 1670158454.3179662, - "lastMsg": "maderchud kick to formalities h smjha \ud83e\udd72", - "cSameMsg": 0 - }, - "pb-IF4QU04nPA==": { - "display_string": [ - "\ue020DoggedAptitude38", - "\ue030Android58612835" - ], - "profiles": [], - "name": "\ue020DoggedAptitude38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 12:58:36", - "registerOn": 1670158238.2970982, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158238.2970986, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158238.2971108, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158238.2971117, - "lastIP": "azo~{n~}i`aihz", - "deviceUUID": "4eabdeb28894cf088b5d8ef27f447ab3ba2c061c" - }, - "pb-IF4VU3laVA==": { - "display_string": [ - "\ue030Android63074779" - ], - "profiles": [], - "name": "\ue030Android63074779", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-02 11:57:20", - "registerOn": 1670158299.61513, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158299.6151304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347582.7419815, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670347582.7419825, - "lastIP": "a\u007fk~~n`ajc|vb|`", - "deviceUUID": "2393a78d5604af32281b51a76fe4cbd2171ba7e6", - "cMsgCount": 2, - "lastMsgTime": 1670333619.4676514, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF41V0UyDg==": { - "display_string": [ - "\ue020Wikirex2001" - ], - "profiles": [], - "name": "\ue020Wikirex2001", - "isBan": false, - "isMuted": false, - "accountAge": "2019-02-17 15:45:44", - "registerOn": 1670158332.7237494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158332.7237499, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325490.7797647, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325490.7797663, - "lastIP": "a|a~~ngajcyve\u007f", - "deviceUUID": "05026a979dca7e3cd404eee012a2336e923ed14b", - "cMsgCount": 0, - "lastMsgTime": 1670326174.3910544, - "lastMsg": "\ud83d\ude02\ud83d\ude02\ud83d\ude02", - "cSameMsg": 0 - }, - "pb-IF4mVGEjJA==": { - "display_string": [ - "\ue020MIKEJV007" - ], - "profiles": [], - "name": "\ue020MIKEJV007", - "isBan": false, - "isMuted": false, - "accountAge": "2019-08-13 08:40:49", - "registerOn": 1670158350.750915, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158350.7509153, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158350.7509232, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158350.7509243, - "lastIP": "azo~zi~~n`aiay", - "deviceUUID": "16de327515364db52a432d36d289431e6f8825ee" - }, - "pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB": { - "display_string": [ - "\ue0209584555539", - "\ue030unknown" - ], - "profiles": [], - "name": "\ue0209584555539", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-03 00:30:21", - "registerOn": 1670158399.918968, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158399.9189684, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335265.6084077, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670335595.780019, - "lastIP": "azo~|l~zi~|j", - "deviceUUID": "8c2fb0b9d047637ef53cd32ad494cc354031f559" - }, - "pb-IF4BUnovCQ==": { - "display_string": [ - "\ue020Twistedvine0127", - "\ue030Android57444788", - "\ue030Android57444801" - ], - "profiles": [], - "name": "\ue020Twistedvine0127", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-14 14:15:06", - "registerOn": 1670158458.1324604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158458.1324608, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158458.1324685, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158458.1324692, - "lastIP": "azo~{n~~ifaiew", - "deviceUUID": "3c7d1051e17ce71e475d658180d5dd502f0ace09" - }, - "pb-IF43VEQYAw==": { - "display_string": [ - "\ue020DeadlyFly63846" - ], - "profiles": [], - "name": "\ue020DeadlyFly63846", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-20 20:37:22", - "registerOn": 1670158467.190878, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158467.1908784, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670159756.8879652, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158467.1908875, - "lastIP": "azo~{o~xj~~n", - "deviceUUID": "31eedb523daf27dc1178ac369b99349530fede79", - "cMsgCount": 2, - "lastMsgTime": 1670160918.1159883, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4HU0gSFw==": { - "display_string": [ - "\ue030Android63728390" - ], - "profiles": [], - "name": "\ue030Android63728390", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 23:04:02", - "registerOn": 1670158531.4043813, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158531.4043818, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327967.219527, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670328683.6199138, - "lastIP": "a~n~y`~va~z", - "deviceUUID": "4d328e9283e76ab72597cc75a5a4b72b313ec890" - }, - "pb-IF4TVUcGKQ==": { - "display_string": [ - "\ue020king1of1brave1gaming", - "\ue020HeartfeltChamber20" - ], - "profiles": [], - "name": "\ue020king1of1brave1gaming", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-30 11:02:51", - "registerOn": 1670158552.4431162, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158552.4431164, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158552.4431245, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158552.4431252, - "lastIP": "azo~{a~~n`ajh", - "deviceUUID": "83b496c81451591736504d9fd003651f3c431d66" - }, - "pb-IF4TU0oFAQ==": { - "display_string": [ - "\ue063FamousImpr" - ], - "profiles": [], - "name": "\ue020FamousImprovement43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 10:03:43", - "registerOn": 1670158617.7722538, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670217289.488894, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318064.1492138, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670323423.935414, - "lastIP": "a|j~~mdamgajg", - "deviceUUID": "ead26944d87701aa9f2b628098721da6d772321a", - "cMsgCount": 0, - "lastMsgTime": 1670254340.5818193, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4MVU4vLw==": { - "display_string": [ - "\ue020QuixoticEmpire16345" - ], - "profiles": [], - "name": "\ue020QuixoticEmpire16345", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-01 20:27:25", - "registerOn": 1670158646.8107684, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158646.8107688, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670159303.960782, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158646.8107784, - "lastIP": "dvvb\u007fo~zk~~li", - "deviceUUID": "b4160a8bd8994f6d125003003a21d86754474196", - "cMsgCount": 0, - "lastMsgTime": 1670159303.9608011, - "lastMsg": "asshole", - "cSameMsg": 0 - }, - "pb-IF4xU04PPw==": { - "display_string": [ - "\ue020TyrannicalSalmon36" - ], - "profiles": [], - "name": "\ue020TyrannicalSalmon36", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 16:49:49", - "registerOn": 1670158740.1758955, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158740.1758957, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158740.175904, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158740.175905, - "lastIP": "bxvf~vaw`~~na", - "deviceUUID": "b1856dffd0e4d0fe5e5128698c2ac16c0ef55de8" - }, - "pb-IF5QKnNb": { - "display_string": [ - "\ue063LoadedMart", - "\ue030Android39558415" - ], - "profiles": [], - "name": "\ue063LoadedMart", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-14 13:53:20", - "registerOn": 1670158762.2134898, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158762.2134902, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325712.5764754, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325712.5764775, - "lastIP": "a\u007fn~}icanfaic}", - "deviceUUID": "77eb0682ef0f6f2efb1c8c938c4593b7dac290cb", - "cMsgCount": 0, - "lastMsgTime": 1670159268.7488112, - "lastMsg": "/ping", - "cSameMsg": 0 - }, - "pb-IF4CU0pTCQ==": { - "display_string": [ - "\ue020vibhinnoflock" - ], - "profiles": [], - "name": "\ue020vibhinnoflock", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 13:55:12", - "registerOn": 1670158785.3006601, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158785.3006604, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158785.300669, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158785.30067, - "lastIP": "a~h~}jfaigyvb}h", - "deviceUUID": "5980ea0b22beeb8bde0de9c0c6beb4f6339aae8a" - }, - "pb-IF4DUnYIFw==": { - "display_string": [ - "\ue020DoubtfulCell25" - ], - "profiles": [], - "name": "\ue020DoubtfulCell25", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-28 09:03:28", - "registerOn": 1670158892.6819825, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158892.681983, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158892.6819916, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158892.6819928, - "lastIP": "a\u007fk~~mdakga`d", - "deviceUUID": "7413752b697042aadf43cd4fb65b6bd5a0139d35" - }, - "pb-IF4zU3gzBA==": { - "display_string": [ - "\ue020thunderstorms3054" - ], - "profiles": [], - "name": "\ue020thunderstorms3054", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-29 18:20:12", - "registerOn": 1670158901.7056797, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158901.7056801, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226806.6086006, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670242912.1311004, - "lastIP": "a~l~|i~~n`ama", - "deviceUUID": "b8aeb308a5987f2f3bf7a57960d670cda96888cb" - }, - "pb-ND0oS0YPXURAD1hFDU9SVFdfEUEKQExLAQVGRgAUEVldSRYUWFdWRg==": { - "display_string": [ - "\ue020SedAkkalaMwonu" - ], - "profiles": [], - "name": "\ue020SedAkkalaMwonu", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-04 19:17:16", - "registerOn": 1670158904.7604926, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158904.760493, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158904.7605016, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158904.7605028, - "lastIP": "dvvcxvb}l~~`a", - "deviceUUID": "\u0015PTVR\u0010\u0003UR\u0007\u0010Q\bTRFU\\SPCV]TPBT" - }, - "pb-IF4BVUw-Dg==": { - "display_string": [ - "\ue020ashikroyal" - ], - "profiles": [], - "name": "\ue020ashikroyal", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-25 17:09:30", - "registerOn": 1670159001.1008008, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159001.1008012, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310387.1653728, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670310387.165374, - "lastIP": "azo~{m~}laalc", - "deviceUUID": "11a4030b2ff5e4f07a770cd13814d9a14f8be9f0", - "cMsgCount": 0, - "lastMsgTime": 1670159585.5415635, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4eU0sbNA==": { - "display_string": [ - "\ue063Darkestkni", - "\ue030Android63863811", - "\ue030Android63863805", - "\ue030Android63863822", - "\ue030Android63863790" - ], - "profiles": [], - "name": "\ue063Darkestkni", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 10:53:00", - "registerOn": 1670159142.5520449, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159142.5520453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159142.552053, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159142.552054, - "lastIP": "awj~ya~}lbajc|", - "deviceUUID": "3a8765c73d98cba05c51b0774af94ab7cf8c0e98" - }, - "pb-IF5SU0kIPw==": { - "display_string": [ - "\ue020ShortsightedRepeat40" - ], - "profiles": [], - "name": "\ue020ShortsightedRepeat40", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-17 15:15:08", - "registerOn": 1670159218.8720262, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159218.8720267, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159218.8720348, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159218.8720357, - "lastIP": "a~o~vo~}l`aia\u007f", - "deviceUUID": "474356bd7aaed62192f0a2e276bfe4d78689c88b" - }, - "pb-IF4pVHAlKw==": { - "display_string": [ - "\ue063GoDFather6" - ], - "profiles": [], - "name": "\ue063UndtedSirw", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-18 13:41:07", - "registerOn": 1670159312.5738392, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159312.5738397, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252130.1316547, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670252654.8962054, - "lastIP": "a~o~}jaaibzva{j", - "deviceUUID": "809fa945109cc1506c101ff3c9fe3e126509515b", - "cMsgCount": 0, - "lastMsgTime": 1670165771.6086404, - "lastMsg": "papa ko sry bolo", - "cSameMsg": 0 - }, - "pb-IF43U08GJA==": { - "display_string": [ - "\ue063Inexorabl6" - ], - "profiles": [], - "name": "\ue063Inexorabl6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 18:37:06", - "registerOn": 1670159391.5937479, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159391.5937486, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159391.5937567, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159391.5937579, - "lastIP": "a~j~}haaihxvb{l", - "deviceUUID": "8150454cfadaf921ed0ad2d8fe8e206358028170" - }, - "pb-IF4mUhY5Bw==": { - "display_string": [ - "\ue020mooday800" - ], - "profiles": [], - "name": "\ue020mooday800", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-02 01:54:09", - "registerOn": 1670159673.475905, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159673.4759054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159673.4759133, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159673.4759147, - "lastIP": "cxveyva{vb\u007fm", - "deviceUUID": "90cf3cb3c344ffe2f2627dc707005f92ffb3a012" - }, - "pb-IF5XVHgmAg==": { - "display_string": [ - "\ue020Mraloneguy", - "\ue030Android58661312" - ], - "profiles": [], - "name": "\ue020Mraloneguy", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-27 18:38:56", - "registerOn": 1670159789.8858535, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159789.885854, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159789.8858626, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159789.8858638, - "lastIP": "a\u007fk~~liamiaig\u007f", - "deviceUUID": "d4bb84af38ac8c1002ca1bb1ea44190a19b03bd8" - }, - "pb-IF4OU2QjMQ==": { - "display_string": [ - "\ue063DEVTA9" - ], - "profiles": [], - "name": "\ue063DEVTA9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-12 18:34:35", - "registerOn": 1670159921.37427, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159921.3742704, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339737.8015609, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339737.8015623, - "lastIP": "a\u007fk~}hhaniaig|", - "deviceUUID": "0844c250555b3f23df4f4072f22489bcd86cf716", - "cMsgCount": 0, - "lastMsgTime": 1670161871.39972, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4TU0UaFg==": { - "display_string": [ - "\ue020CongestedPackaging20" - ], - "profiles": [], - "name": "\ue020CongestedPackaging20", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-06 12:53:48", - "registerOn": 1670159928.4023156, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159928.402316, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159928.4023263, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159928.402327, - "lastIP": "azo~{o~xm~~la", - "deviceUUID": "df88d8baf95edb9e33e1fb4feade66217f12c292" - }, - "pb-IF5SU0seMQ==": { - "display_string": [ - "\ue030Android63767506" - ], - "profiles": [], - "name": "\ue030Android63767506", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 23:07:34", - "registerOn": 1670159950.487569, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159950.4875693, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159950.4875777, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159950.4875786, - "lastIP": "a~h~}keajcwve}", - "deviceUUID": "efd4062b4fddd369664dab070a44997389b05bc8" - }, - "pb-IF40VG4yUA==": { - "display_string": [ - "\ue063sonugavale", - "\ue030Android34896235" - ], - "profiles": [], - "name": "\ue063sonugavale", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-06 19:59:52", - "registerOn": 1670160006.7266586, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160006.7266588, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328874.4872885, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670329079.2338326, - "lastIP": "a\u007fn~}j`aidwvb\u007f", - "deviceUUID": "817d31d50be40ed23fce4bdaae445e8b4242543b", - "cMsgCount": 0, - "lastMsgTime": 1670329095.9007862, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4NU0ojAA==": { - "display_string": [ - "\ue030Android63796554" - ], - "profiles": [], - "name": "\ue030Android63796554", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 18:07:17", - "registerOn": 1670160009.711596, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160009.7115965, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325313.1572607, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325313.157262, - "lastIP": "azo~|k~zj~~kd", - "deviceUUID": "3d647e7dac07fd7bb037d38317d7799c7a6d9b64" - }, - "pb-IF4cU0oEDg==": { - "display_string": [ - "\ue063lkiheasnal" - ], - "profiles": [], - "name": "\ue063lkiheasnal", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 20:36:31", - "registerOn": 1670160075.1954076, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160075.195408, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341463.0866058, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341463.0866072, - "lastIP": "b}k~~ohalfajc{", - "deviceUUID": "d284690a7e795fd0643eb563c5737a8eba47f154" - }, - "pb-IF4eU2VTAg==": { - "display_string": [ - "\ue063GinormousD" - ], - "profiles": [], - "name": "\ue063GinormousD", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-14 09:32:14", - "registerOn": 1670160370.9674878, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160370.9674888, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334960.2731783, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670334978.3177114, - "lastIP": "a}j~~nbaja{vbx", - "deviceUUID": "ca8d6637bba6507af992af44ca6ead60e54b475f" - }, - "pb-IF4jUxQxCQ==": { - "display_string": [ - "\ue063NavigableN" - ], - "profiles": [], - "name": "\ue063NavigableN", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-09 05:48:11", - "registerOn": 1670160658.1004236, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160658.100424, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670160658.100432, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670160983.8861802, - "lastIP": "axh~wj~zk~~lb", - "deviceUUID": "770e397383eb2bc7a5752d1a9fdf6d41415343a0" - }, - "pb-IF41U08kKQ==": { - "display_string": [ - "\ue030Android63981158" - ], - "profiles": [], - "name": "\ue030Android63981158", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 05:17:45", - "registerOn": 1670160675.099334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160675.0993345, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670160675.0993423, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670160675.099343, - "lastIP": "gyviwvb\u007fo~~oc", - "deviceUUID": "76bfa85e0fb27f0158a8e14566f6a35cc84b96b7" - }, - "pb-IF5XU0ZbBA==": { - "display_string": [ - "\ue063Following3" - ], - "profiles": [], - "name": "\ue063Following3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-23 12:03:38", - "registerOn": 1670160688.2706091, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160688.2706096, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246875.5107074, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246875.5107088, - "lastIP": "azo~|j~|k~~ke", - "deviceUUID": "05dc3e79b3ecfead7ef4ca371c1cc5e5b8741d13" - }, - "pb-IF4SF0Em": { - "display_string": [ - "\ue063MuddyJoker", - "\ue020EventualFlame29", - "\ue030Android54117335", - "\ue030Android57127938" - ], - "profiles": [], - "name": "\ue020MuddyJoker56571", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-17 12:09:49", - "registerOn": 1670160953.0983143, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670235183.440341, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670345099.019389, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670345099.0193899, - "lastIP": "bxvevvb|a~~ib", - "deviceUUID": "085c017f4b707662a2740e75d38d437eee8c2877", - "cMsgCount": 1, - "lastMsgTime": 1670345578.449874, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4HU0QPAw==": { - "display_string": [ - "\ue063VauntedPlu" - ], - "profiles": [], - "name": "\ue063VauntedPlu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-27 09:06:08", - "registerOn": 1670160979.4752326, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160979.475233, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670160979.4752417, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670160979.4752426, - "lastIP": "b\u007fj~w`~}hhajav", - "deviceUUID": "279b3059b77b33de45467d66b1a7186a01f7c062" - }, - "pb-IF4mVRgFBw==": { - "display_string": [ - "\ue063SpunkyEmbl" - ], - "profiles": [], - "name": "\ue063SpunkyEmbl", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-31 16:00:19", - "registerOn": 1670161009.387051, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161009.3870513, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161009.38706, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161009.3870606, - "lastIP": "dvvcyvd|vb}o", - "deviceUUID": "aa07fb78482a1ddec5a019836a870f8ec65cff41" - }, - "pb-IF41VXk5PQ==": { - "display_string": [ - "\ue063AgentShubh" - ], - "profiles": [], - "name": "\ue063AgentShubh", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-02 12:19:15", - "registerOn": 1670161017.3185666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161017.3185675, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161017.3185754, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161017.3185763, - "lastIP": "a\u007fn~}hfaic~vb{i", - "deviceUUID": "85200a9c9534941367c0ce3d2265fca68ccc5648", - "cMsgCount": 0, - "lastMsgTime": 1670161224.5551558, - "lastMsg": "sry", - "cSameMsg": 0 - }, - "pb-IF4KVUMsBg==": { - "display_string": [ - "\ue020LearnedLabyrinth7741" - ], - "profiles": [], - "name": "\ue020LearnedLabyrinth7741", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-31 15:24:44", - "registerOn": 1670161058.4950535, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161058.495054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161058.495063, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670161391.3134813, - "lastIP": "bxvf|vb~a~}hi", - "deviceUUID": "eab2b0aa1b34fa3d33048acfcffeec93e19974b6" - }, - "pb-IF5TAHQO": { - "display_string": [ - "\ue063HootingDra", - "\ue030Android53223253" - ], - "profiles": [], - "name": "\ue063HootingDra", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-12 20:20:44", - "registerOn": 1670161104.6649241, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161104.6649246, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670162389.8091376, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161104.6649332, - "lastIP": "dvvcxvfzvh|", - "deviceUUID": "8a0301ea62429d602083265ba821a81e998faa99", - "cMsgCount": 0, - "lastMsgTime": 1670163033.5394967, - "lastMsg": "see ya", - "cSameMsg": 0 - }, - "pb-IF4KU0gxMg==": { - "display_string": [ - "\ue020TGPALYWGSUDGSJSHSJSS" - ], - "profiles": [], - "name": "\ue020TGPALYWGSUDGSJSHSJSS", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 18:42:05", - "registerOn": 1670161220.065693, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161220.0656934, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161220.0657003, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161220.0657015, - "lastIP": "dvva{va|l~~m`", - "deviceUUID": "cd4528587c165931a5c036016f2575ebf19683a4" - }, - "pb-IF48UxIMIA==": { - "display_string": [ - "\ue020UltravioletAnswer35" - ], - "profiles": [], - "name": "\ue020UltravioletAnswer35", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-03 14:28:12", - "registerOn": 1670161368.698151, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161368.6981516, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161368.6981606, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161368.6981614, - "lastIP": "azo~|l~}o~}`", - "deviceUUID": "5631851b9d3c44571f5e648c9ed48a8eac7b10d3" - }, - "pb-IF5VV29eLA==": { - "display_string": [ - "\ue063RaSurKh" - ], - "profiles": [], - "name": "\ue063RaSurKh", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-17 21:47:55", - "registerOn": 1670161399.6712382, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161399.6712387, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246588.5751715, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246588.575173, - "lastIP": "dvvcyvb{vazm", - "deviceUUID": "50c9ee145c124c575b0d6881e82b15e9ac1d9482" - }, - "pb-IF4LU20cEw==": { - "display_string": [ - "\ue030Android62093703" - ], - "profiles": [], - "name": "\ue030Android62093703", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-19 12:34:21", - "registerOn": 1670161466.9012787, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670161492.6805577, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670246213.034349, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245942.3065374, - "lastIP": "a~o~va~}liake", - "deviceUUID": "beafa74a9034955afeecc388dca93ebbadb504f5", - "cMsgCount": 1, - "lastMsgTime": 1670247936.1142607, - "lastMsg": "op. game play", - "cSameMsg": 0 - }, - "pb-IF4WUk9cJw==": { - "display_string": [ - "\ue020redpalyer1" - ], - "profiles": [], - "name": "\ue020redpalyer1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-11 20:58:03", - "registerOn": 1670161496.0013673, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161496.0013678, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161496.0013752, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161496.0013769, - "lastIP": "azj~zo~~mcamf", - "deviceUUID": "\u0015V\b\u0004XA\u0005^U\u0003BVZ" - }, - "pb-IF4eU0QdUQ==": { - "display_string": [ - "\ue020CivilianProject35" - ], - "profiles": [], - "name": "\ue020CivilianProject35", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-28 11:57:27", - "registerOn": 1670161514.1843376, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161514.184338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161514.1843452, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161514.1843464, - "lastIP": "azo~zi~zl~~mc", - "deviceUUID": "2ed4716ae5a94686f1f65bb959d69d31a67eacae" - }, - "pb-IF5UU1EHFA==": { - "display_string": [ - "\ue030PC773577" - ], - "profiles": [], - "name": "\ue030PC773577", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 19:04:43", - "registerOn": 1670161534.1129794, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161534.11298, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161534.1130328, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161534.1130335, - "lastIP": "awj~|vcxvf\u007f", - "deviceUUID": "10e12c9eebaeb3f1dc2bde1c768317b170009b51" - }, - "pb-IF4JU3MxCQ==": { - "display_string": [ - "\ue020AdvancedExpomnent45m" - ], - "profiles": [], - "name": "\ue020AdvancedExpomnent45m", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-09 17:49:57", - "registerOn": 1670161564.2208176, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161564.2208183, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341775.1573565, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670345849.7109516, - "lastIP": "a~l~|i~~`iajg", - "deviceUUID": "568191a189627834d190dc2e887ec7a832cc6819", - "cMsgCount": 1, - "lastMsgTime": 1670341792.1629522, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4jVHIEHQ==": { - "display_string": [ - "\ue030Android39959906" - ], - "profiles": [], - "name": "\ue030Android39959906", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-05 15:05:41", - "registerOn": 1670161600.6883516, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161600.6883523, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161600.688361, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161600.688362, - "lastIP": "a\u007fn~}jbameajby", - "deviceUUID": "63041c5597f4831f70e774d344ec2d0f94b906f5" - }, - "pb-IF5RU0pSBg==": { - "display_string": [ - "\ue020SuggestiveGarage45" - ], - "profiles": [], - "name": "\ue020SuggestiveGarage45", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 12:19:23", - "registerOn": 1670161659.599708, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161659.599709, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222393.9349406, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670222393.934942, - "lastIP": "a{h~}icaicwvb~i", - "deviceUUID": "b99eac5262f4ba805ea9b082acd67a5fc75d6d3f" - }, - "pb-IF5WUxQlEw==": { - "display_string": [ - "\ue030Linux52467" - ], - "profiles": [], - "name": "\ue030Linux52467", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-03 19:31:23", - "registerOn": 1670161687.6822398, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670162557.3463728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670297483.760641, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670305992.7149978, - "lastIP": "a\u007fk~~meaja\u007fvb{l", - "deviceUUID": "\u0018\u0003T\u0007PMTX\u0003LD", - "cMsgCount": 0, - "lastMsgTime": 1670306651.4260283, - "lastMsg": "toh sunao", - "cSameMsg": 0 - }, - "pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL": { - "display_string": [ - "\ue020YeWest2024" - ], - "profiles": [], - "name": "\ue020YeWest2024", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-05 13:28:05", - "registerOn": 1670161742.4800205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161742.4800208, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333447.0755627, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333447.0755644, - "lastIP": "dvvcyva\u007fm~}k`", - "deviceUUID": "df33f5dee622a540618464296901184a5ed62c0a", - "cMsgCount": 0, - "lastMsgTime": 1670334412.3950067, - "lastMsg": "sorry mistake", - "cSameMsg": 0 - }, - "pb-IF4oU3hbEQ==": { - "display_string": [ - "\ue020\u0d15\u0d4d\u0d2f\u0d3e\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d7b22" - ], - "profiles": [], - "name": "\ue020\u0d15\u0d4d\u0d2f\u0d3e\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d7b22", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 12:37:58", - "registerOn": 1670162010.2120798, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162010.2120805, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162010.212089, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162010.21209, - "lastIP": "a\u007fn~~adalgaiev", - "deviceUUID": "d58f3a82e9f7bbde506330fc3a294c634bdf6e10" - }, - "pb-IF4CUhM5AQ==": { - "display_string": [ - "\ue020MilesAboveYou" - ], - "profiles": [], - "name": "\ue020MilesAboveYou", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-18 12:37:42", - "registerOn": 1670162031.9690244, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162031.9690247, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670186492.8797495, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670186492.8797512, - "lastIP": "a~n~y`~~iaaidv", - "deviceUUID": "00002973d162e002d40584d7ca11f4f5601862f8" - }, - "pb-IF4OU049CA==": { - "display_string": [ - "\ue063EntireBegg" - ], - "profiles": [], - "name": "\ue063EntireBegg", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 00:25:44", - "registerOn": 1670162234.6436152, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162234.643616, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162234.643642, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162234.643643, - "lastIP": "b\u007fi~}ihaicxvb\u007f", - "deviceUUID": "d3d40f6ae0e48683f83e68cd52a5f04656b31522" - }, - "pb-IF4KU0UqLA==": { - "display_string": [ - "\ue020DarkLordAscended" - ], - "profiles": [], - "name": "\ue020DarkLordAscended", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 11:10:47", - "registerOn": 1670162272.8136446, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162272.8136451, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315405.351848, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315405.3518496, - "lastIP": "azo~{a~}jaaifw", - "deviceUUID": "5eb883c11c38f3e3dd0831e40170faba53b1da83" - }, - "pb-IF4oUnVaNg==": { - "display_string": [ - "\ue063LustrousC3", - "\ue030Android56854542" - ], - "profiles": [], - "name": "\ue020LustrousConjurer7", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-21 12:53:25", - "registerOn": 1670162276.8084059, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162276.808406, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319785.486115, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319785.4861166, - "lastIP": "dvvcxvb~a~{`", - "deviceUUID": "39fce6b71f8d12b7107c4e4ecdabe83b0ed46270" - }, - "pb-IF5QU0MaXA==": { - "display_string": [ - "\ue020kukkututtu002" - ], - "profiles": [], - "name": "\ue020kukkututtu002", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-11 18:58:24", - "registerOn": 1670162323.9822552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162323.9822557, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162323.9822626, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162323.9822638, - "lastIP": "a~o~}i`aii~vb|n", - "deviceUUID": "10aa992e3b27eb596abaf4c53e0f887330ccfa4a" - }, - "pb-IF4dU08oXQ==": { - "display_string": [ - "\ue063MindfulAir", - "\ue030Android58076920" - ], - "profiles": [], - "name": "\ue063MindfulAir", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 07:20:51", - "registerOn": 1670162435.386602, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162435.3866024, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162435.3866107, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162435.3866117, - "lastIP": "d}va\u007fn~~a~vo", - "deviceUUID": "57fe53dc7cbe2dac162f3eabe21a37668a67eda2" - }, - "pb-JiNJVxBcUURIXVZJFkFZVFdGFEBeR1dF": { - "display_string": [ - "\ue020aniket2604" - ], - "profiles": [], - "name": "\ue020aniket2604", - "isBan": false, - "isMuted": false, - "accountAge": "2016-10-09 00:13:44", - "registerOn": 1670162495.5849707, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162495.5849712, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162495.5849807, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162495.584982, - "lastIP": "a\u007fn~}i`aja~vb~j", - "deviceUUID": "a7e8e53ca84f27fba191560a42a675878dd06f77" - }, - "pb-IF4FVUkZMw==": { - "display_string": [ - "\ue030Android52000342" - ], - "profiles": [], - "name": "\ue030Android52000342", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-13 20:09:59", - "registerOn": 1670162498.6064668, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162498.606467, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162498.6064773, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162498.6064787, - "lastIP": "azo~{n~xl~}la", - "deviceUUID": "\u0015\u0003\b\u0003W\u0010\u0003YP\u0003EV\\VSLS[UYDVYYW@" - }, - "pb-IF4DU0YhVw==": { - "display_string": [ - "\ue020ItsEpicShlok", - "\ue030Android63971632", - "\ue030Android63965243", - "\ue030Android63965319", - "\ue030Android63971463" - ], - "profiles": [], - "name": "\ue020ItsEpicShlok", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-07 17:43:52", - "registerOn": 1670162513.680428, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162513.6804285, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162513.680438, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162513.6804392, - "lastIP": "a\u007fk~}l`aj`vvd{", - "deviceUUID": "3c1788c217db926c45886bc3e7da9c1d43ca2665" - }, - "pb-JiNJARBcVEdFWlxCEE9TVl1GFUVXTlRH": { - "display_string": [ - "\ue063SilentBraw", - "\ue030Android10381153" - ], - "profiles": [], - "name": "\ue063SilentBraw", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-31 17:31:10", - "registerOn": 1670162516.5999362, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162516.5999367, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162516.5999434, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162516.5999444, - "lastIP": "a~o~}lhaihaj`y", - "deviceUUID": "c5f2f26760989728bb42544168fcb20fd91220a3" - }, - "pb-IF4QVGYjDg==": { - "display_string": [ - "\ue030Android42891191" - ], - "profiles": [], - "name": "\ue030Android42891191", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-29 09:35:48", - "registerOn": 1670162522.7241318, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162522.7241323, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230413.7166016, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670231650.0815198, - "lastIP": "dvvc{vf}vaz`", - "deviceUUID": "50971078b23d76157ae5c5c460a761d3e8389d84" - }, - "pb-IF4DUlMIDg==": { - "display_string": [ - "\ue020BellicosePatriot28" - ], - "profiles": [], - "name": "\ue020BellicosePatriot28", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-28 15:48:33", - "registerOn": 1670162611.9257605, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162611.925761, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162611.9257689, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162611.92577, - "lastIP": "azj~zo~}jianf", - "deviceUUID": "b98a1f98358f91e6d342a49c79a17760c36e8e45" - }, - "pb-IF5TVxg_HQ==": { - "display_string": [ - "\ue020CombativeGemini56036" - ], - "profiles": [], - "name": "\ue020CombativeGemini56036", - "isBan": false, - "isMuted": false, - "accountAge": "2018-08-15 19:24:47", - "registerOn": 1670162659.407589, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162659.4075894, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162659.4075997, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162659.4076004, - "lastIP": "azo~{h~}jaa`d", - "deviceUUID": "cdeaa7ab4f04a8232969b6a5bce3ed897366ff7c" - }, - "pb-IF4XU0EfDw==": { - "display_string": [ - "\ue063StealthyAn" - ], - "profiles": [], - "name": "\ue063StealthyAn", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-12 17:24:20", - "registerOn": 1670162759.4246562, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162759.4246566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343877.6058123, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670358931.2825851, - "lastIP": "hvvazk~~oban", - "deviceUUID": "1ff84f30182f86b4b2dded5db09d2d1a291d333d" - }, - "pb-IF4-U0kNVQ==": { - "display_string": [ - "\ue020jonathansanthosh" - ], - "profiles": [], - "name": "\ue020jonathansanthosh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-28 16:09:35", - "registerOn": 1670162760.4333851, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162760.4333854, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311195.7903526, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311195.790354, - "lastIP": "a~o~}iaalaajd\u007f", - "deviceUUID": "d330a623a6cde2e6c2b9727640139e0bb4c17a01" - }, - "pb-IF4sU3A7KA==": { - "display_string": [ - "\ue030Android62339210" - ], - "profiles": [], - "name": "\ue030Android62339210", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-30 11:54:16", - "registerOn": 1670162826.8334103, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162826.8334107, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162826.8334188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162826.8334198, - "lastIP": "a}j~~naa`faie", - "deviceUUID": "faf986632b7fba345df51d66b9e74b3a9293d0a3" - }, - "pb-IF4TV2w6Bw==": { - "display_string": [ - "\ue020Balajiblaze123" - ], - "profiles": [], - "name": "\ue020Balajiblaze123", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-17 11:20:14", - "registerOn": 1670162917.199675, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162917.1996756, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163493.1986566, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670163788.2039633, - "lastIP": "azo~zi~zm~vk", - "deviceUUID": "39fab6ef9f13cec5afeb264fba1c606a5cba46b2", - "cMsgCount": 0, - "lastMsgTime": 1670163778.2536945, - "lastMsg": "tk to thi", - "cSameMsg": 0 - }, - "pb-IF4eU0wpKg==": { - "display_string": [ - "\ue063Unrelenti4" - ], - "profiles": [], - "name": "\ue063Unrelenti4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 19:46:50", - "registerOn": 1670162918.076996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162918.0769968, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670345349.9209785, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670345349.92098, - "lastIP": "a\u007fk~~hfaicvvb\u007fk", - "deviceUUID": "b6148a40f9ec4b3d0b97235522e798d11db0f37e", - "cMsgCount": 2, - "lastMsgTime": 1670345402.0138547, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4BUxIzJg==": { - "display_string": [ - "\ue063TERRIFIER4" - ], - "profiles": [], - "name": "\ue063TERRIFIER4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-04 13:49:55", - "registerOn": 1670162948.13413, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162948.1341305, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251269.1393015, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251269.1393032, - "lastIP": "azj~z`~}kbaiix", - "deviceUUID": "f77c2e00c17b4c8dfaf8cf8dbb4b20b345855208" - }, - "pb-IF4xU3k6KA==": { - "display_string": [ - "\ue030Android63130011" - ], - "profiles": [], - "name": "\ue030Android63130011", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-04 21:57:18", - "registerOn": 1670162978.2862043, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162978.2862048, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162978.2862139, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162978.2862148, - "lastIP": "azo~{o~vm~~kd", - "deviceUUID": "671967ce943e46a829445a2691ed2228b5105c6f" - }, - "pb-IF5VU007Ng==": { - "display_string": [ - "\ue063DeviousEli", - "\ue030Android63827572" - ], - "profiles": [], - "name": "\ue063DeviousEli", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 13:47:07", - "registerOn": 1670163012.3621736, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163012.362174, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229838.5574918, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229838.557493, - "lastIP": "dvvcyva\u007f`~}kf", - "deviceUUID": "38c01a50379f84b46b232bdb4c38f8fa90b56ba8" - }, - "pb-IF4PIFQ9": { - "display_string": [ - "\ue063mrpainless", - "\ue030Android29214702" - ], - "profiles": [], - "name": "\ue063mrpainless", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-26 17:52:31", - "registerOn": 1670163079.6879, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163079.6879008, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163499.2280543, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670163499.2280557, - "lastIP": "azo~zi~~ohaja{", - "deviceUUID": "3fd5af7540d3def8bb525f9c868c41841d7845a9" - }, - "pb-IF4DVVgZJA==": { - "display_string": [ - "\ue02025mjadhav", - "\ue030Android52470937" - ], - "profiles": [], - "name": "\ue030Android52470937", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-22 20:12:08", - "registerOn": 1670163114.8267362, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163114.826737, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317314.352192, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317314.3521934, - "lastIP": "a\u007fk~~mgaibvvb~j", - "deviceUUID": "f459eddbc463b2e1c81bf49abb5c993b3ec70a62", - "cMsgCount": 0, - "lastMsgTime": 1670225143.8147142, - "lastMsg": "Smooth let's go in Fun Games ", - "cSameMsg": 0 - }, - "pb-IF4rU2EZEw==": { - "display_string": [ - "\ue030Android60974634" - ], - "profiles": [], - "name": "\ue030Android60974634", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-04 19:46:02", - "registerOn": 1670163175.9817445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163175.981745, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670348369.0550125, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670348369.0550137, - "lastIP": "a\u007fn~xn~vm~{", - "deviceUUID": "\u0015U\u000e", - "cMsgCount": 0, - "lastMsgTime": 1670348790.3616848, - "lastMsg": "end this shit of piece ", - "cSameMsg": 0 - }, - "pb-IF4mU0wODA==": { - "display_string": [ - "\ue020MagnificentBull96303" - ], - "profiles": [], - "name": "\ue020MagnificentBull96303", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 21:47:48", - "registerOn": 1670163204.1104448, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163204.1104453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300176.310488, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300176.3104894, - "lastIP": "a{vivva\u007fn~yn", - "deviceUUID": "4eb576fb20bc80f5fc11807746539bbd3fa079b5" - }, - "pb-IF5XUmsEVg==": { - "display_string": [ - "\ue020SickeningManeuver24" - ], - "profiles": [], - "name": "\ue020SickeningManeuver24", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-29 10:17:37", - "registerOn": 1670163256.475719, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163256.4757192, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163256.4757283, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670163256.4757295, - "lastIP": "a\u007fi~}vavi~~ag", - "deviceUUID": "\u0015S\u000e" - }, - "pb-IF4BPFRY": { - "display_string": [ - "\ue063TezrecT", - "\ue063Mizuhara", - "\ue020dhairyabhavya", - "\ue030Android47882430" - ], - "profiles": [], - "name": "\ue020dhairyabhavya", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-25 12:47:11", - "registerOn": 1670163277.3764045, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163277.3764052, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670249755.8521361, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249755.8521378, - "lastIP": "dvva{vayo~}m", - "deviceUUID": "34c398d35b9440b192223be7d56df29a68af1dec", - "cMsgCount": 0, - "lastMsgTime": 1670185717.2906294, - "lastMsg": "yeah", - "cSameMsg": 0 - }, - "pb-IF5QU04ZJw==": { - "display_string": [ - "\ue063MetabolicA" - ], - "profiles": [], - "name": "\ue063MetabolicA", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 08:53:16", - "registerOn": 1670163326.5330584, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163326.533059, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328981.901684, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328981.9016852, - "lastIP": "azo~zi~|vb{", - "deviceUUID": "402ba25fdb762b57bd8bea7d14fb5d71d9b94cb7" - }, - "pb-IF4UU0YbEQ==": { - "display_string": [ - "\ue063Moldyblade" - ], - "profiles": [], - "name": "\ue063Moldyblade", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 20:35:48", - "registerOn": 1670163410.8761308, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163410.876131, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346063.5586445, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346063.5586457, - "lastIP": "d|vbzh~~mhaj`|", - "deviceUUID": "64bcdecad82d9a6cbffc8d1dc9ccb6a55c5e211e", - "cMsgCount": 0, - "lastMsgTime": 1670347083.3281095, - "lastMsg": "bruh", - "cSameMsg": 0 - }, - "pb-IF5WU0gBHQ==": { - "display_string": [ - "\ue030Android63642729" - ], - "profiles": [], - "name": "\ue030Android63642729", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-11 18:52:12", - "registerOn": 1670163505.905853, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163505.9058537, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163505.905864, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670163505.9058652, - "lastIP": "i~vfyva|i~wk", - "deviceUUID": "2f46534a2028b8d719e515b8cedd475ebdd13b76" - }, - "pb-IF4dUmU5Fg==": { - "display_string": [ - "\ue063S2sharpsho" - ], - "profiles": [], - "name": "\ue063S2sharpsho", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-11 20:50:41", - "registerOn": 1670163538.6420956, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163538.642096, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163538.6421034, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670163658.7567844, - "lastIP": "dxvc~vaym~zk", - "deviceUUID": "73c3137f6f6b4410022e228730d5eeb1bddf954a", - "cMsgCount": 0, - "lastMsgTime": 1670163800.350488, - "lastMsg": "madar choot parton", - "cSameMsg": 0 - }, - "pb-IF4sU0sDDw==": { - "display_string": [ - "\ue063ThunderBlu" - ], - "profiles": [], - "name": "\ue063ThunderBlu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 20:06:37", - "registerOn": 1670163676.1078162, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163676.107817, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223998.2389348, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223998.2389364, - "lastIP": "a~j~}hfajd}vgv", - "deviceUUID": "10480e31fe8d4cbdc455787ea61ef8eb7d51a07c", - "cMsgCount": 0, - "lastMsgTime": 1670225178.1323888, - "lastMsg": "Vivek is strong ", - "cSameMsg": 0 - }, - "pb-IF4eU1BbMw==": { - "display_string": [ - "\ue063DiamondSqu" - ], - "profiles": [], - "name": "\ue063DiamondSqu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 19:07:32", - "registerOn": 1670163746.3978229, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163746.3978236, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163746.3978307, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670163746.3978314, - "lastIP": "a~o~}hiaic{vgv", - "deviceUUID": "be7b9e39530bfffb6c977ec00a50b69572a12043" - }, - "pb-LV4FVxEOBxcUVQxERkNWUFFA": { - "display_string": [ - "\ue020parthk1265", - "\ue030Android14858832" - ], - "profiles": [], - "name": "\ue020rajmewada12", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-01 13:59:58", - "registerOn": 1670163846.7407637, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163846.7407644, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670348833.1639318, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670348833.1639335, - "lastIP": "a\u007fn~}heajdxvawk", - "deviceUUID": "364ea53ec91919aba274c9f665704d58ebd0fd1b", - "cMsgCount": 0, - "lastMsgTime": 1670350004.925518, - "lastMsg": "ok as", - "cSameMsg": 0 - }, - "pb-IF4-U3gdFw==": { - "display_string": [ - "\ue030Android63053623" - ], - "profiles": [], - "name": "\ue030Android63053623", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-01 07:24:54", - "registerOn": 1670163922.0687854, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163922.068786, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342446.094851, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670348825.1416333, - "lastIP": "azo~{i~}mcai`w", - "deviceUUID": "548cce6a079bbda740d03793a1d78e999a4c1fd4", - "cMsgCount": 0, - "lastMsgTime": 1670350019.8387144, - "lastMsg": "\u2764\ufe0f", - "cSameMsg": 0 - }, - "pb-IF4tCRgv": { - "display_string": [ - "\ue063captshivi" - ], - "profiles": [], - "name": "\ue063captshivi", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-03 13:34:45", - "registerOn": 1670164025.4923496, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164025.49235, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334934.2020981, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334934.2020998, - "lastIP": "a\u007fk~}iaaieaidx", - "deviceUUID": "74c0175ba798dc3c92fc6bc7f4d0b6e590842648", - "cMsgCount": 0, - "lastMsgTime": 1670307619.9506536, - "lastMsg": "chutiya red team", - "cSameMsg": 0 - }, - "pb-IF5XVVACLA==": { - "display_string": [ - "\ue020blackury2003" - ], - "profiles": [], - "name": "\ue020blackury2003", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-02 15:20:15", - "registerOn": 1670164049.4426455, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164049.442646, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164049.442653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164049.4426541, - "lastIP": "dvvcxvb~m~}md", - "deviceUUID": "4675022b8c874c961302222469bb0f662d3d85e7" - }, - "pb-IF4RU0ksMQ==": { - "display_string": [ - "\ue063Torrenti16" - ], - "profiles": [], - "name": "\ue020TorrentialEase43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 16:52:16", - "registerOn": 1670164102.6703491, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164102.6703496, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337699.651503, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340933.1530826, - "lastIP": "azo~{a~~nfaa", - "deviceUUID": "43358c9e31e074b48e06e3427ad2be7cc83085d2" - }, - "pb-IF4LU28SJA==": { - "display_string": [ - "\ue020vinothmptc" - ], - "profiles": [], - "name": "\ue020vinothmptc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-27 09:18:54", - "registerOn": 1670164143.1279385, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164143.127939, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234789.677719, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670236341.1902742, - "lastIP": "azo~zi~~`fa`", - "deviceUUID": "1f4da9f99faef8dbf64b27b1dbcc7e6172f83ea3" - }, - "pb-IF4WU0QRIA==": { - "display_string": [ - "\ue063BushyInstr" - ], - "profiles": [], - "name": "\ue020BushyInstructor7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 15:18:50", - "registerOn": 1670164149.8465316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164149.846532, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341197.1226032, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341197.1226046, - "lastIP": "azo~|j~~i~~lg", - "deviceUUID": "d2ecfc08815837a8fc4a77652e70731988e1e3a1" - }, - "pb-JiNJARBdVEFAXl5GGEZZVFZCGUhXRFBC": { - "display_string": [ - "\ue063Sayan8274" - ], - "profiles": [], - "name": "\ue063Sayan8274", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-24 10:33:35", - "registerOn": 1670164201.407305, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164201.4073057, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164201.407316, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164201.4073167, - "lastIP": "azo~{h~~odaicz", - "deviceUUID": "0c88faba9ad4713a2bef5d5632f64df42945ba10" - }, - "pb-IF4BVVVYCA==": { - "display_string": [ - "\ue063LocalTruce" - ], - "profiles": [], - "name": "\ue063LocalTruce", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-05 19:09:08", - "registerOn": 1670164252.2043846, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164252.2043853, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252167.2436306, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252167.243632, - "lastIP": "dvvcyvfzvayh", - "deviceUUID": "2f035865d2bc9f545fd7215ec120feb18e12059a" - }, - "pb-IF4QU048Nw==": { - "display_string": [ - "\ue020NauseousJudge10" - ], - "profiles": [], - "name": "\ue020NauseousJudge10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 15:33:10", - "registerOn": 1670164257.225283, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164257.2252831, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164257.2252913, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164257.225292, - "lastIP": "a\u007fk~}hga`~wa", - "deviceUUID": "db15d2b826ed6a1b01a15850026d14b24b7325fe" - }, - "pb-IF5UU05aHQ==": { - "display_string": [ - "\ue020VoidPort2" - ], - "profiles": [], - "name": "\ue020VoidPort2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 20:44:30", - "registerOn": 1670164281.285934, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164281.285935, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342850.01677, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670343384.887906, - "lastIP": "a~n~xk~~ngaihx", - "deviceUUID": "caf2d45fa5cd9bb25979b3fe1f5882117e05180a", - "cMsgCount": 0, - "lastMsgTime": 1670335553.6695516, - "lastMsg": "why", - "cSameMsg": 0 - }, - "pb-IF4wV24HBw==": { - "display_string": [ - "\ue063GiantRobot" - ], - "profiles": [], - "name": "\ue063GiantRobot", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-27 02:36:51", - "registerOn": 1670164282.278136, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164282.2781367, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315871.08607, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315871.0860713, - "lastIP": "a~o~va~~ahaiex", - "deviceUUID": "cf5348ed3c9d0bc1baaf7a1c8a75e78e76e90b53", - "cMsgCount": 0, - "lastMsgTime": 1670316690.215262, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5TEHhY": { - "display_string": [ - "\ue063rvrvrvrvrv", - "\ue030Android24764519" - ], - "profiles": [], - "name": "\ue063rvrvrvrvrv", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-30 19:18:24", - "registerOn": 1670164347.5251415, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164347.525142, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164347.5251486, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164347.5251496, - "lastIP": "a\u007fk~}maaiiaiby", - "deviceUUID": "204621b919fc39e665181c2f15b7a496aaec9a81", - "cMsgCount": 0, - "lastMsgTime": 1670164626.8507328, - "lastMsg": "tu ne to liy mer", - "cSameMsg": 0 - }, - "pb-IF4qU0sOKw==": { - "display_string": [ - "\ue020MetallicPainting21" - ], - "profiles": [], - "name": "\ue020MetallicPainting21", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-05 20:06:51", - "registerOn": 1670164491.0075312, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164491.0075314, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164491.0075378, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164491.0075388, - "lastIP": "a\u007fn~}i`aihyva~i", - "deviceUUID": "bad7b7a03410739470d0e5d8bd092dec11391419" - }, - "pb-IF49U0QJDw==": { - "display_string": [ - "\ue063CRIMINAL", - "\ue063NOMERCY", - "\ue063Babysimran", - "\ue030PC605729", - "\ue030Android63861037" - ], - "profiles": [], - "name": "\ue030PC605729", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-29 22:04:04", - "registerOn": 1670164546.191456, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164546.1914566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670345112.068998, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670346173.9824681, - "lastIP": "dvvcxvdxva{k", - "deviceUUID": "52e159e6debf4b869cb6bd30a26e268c72ceab36", - "cMsgCount": 0, - "lastMsgTime": 1670346192.2770562, - "lastMsg": "/kick 92", - "cSameMsg": 0 - }, - "pb-IF4gU0wxBw==": { - "display_string": [ - "\ue063VOIDG0D" - ], - "profiles": [], - "name": "\ue063VOIDG0D", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 16:06:19", - "registerOn": 1670164581.3468778, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164581.3468783, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339227.9291139, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670349514.881789, - "lastIP": "a\u007fk~}hhaniaig|", - "deviceUUID": "53e096add4bc0eb2d359d20b0860961ff68cf255", - "cMsgCount": 0, - "lastMsgTime": 1670349551.110346, - "lastMsg": "Man Spain is out of world cup\ud83e\udd2f", - "cSameMsg": 0 - }, - "pb-IF4sJEMH": { - "display_string": [ - "\ue063KingZaki96" - ], - "profiles": [], - "name": "\ue063KingZaki96", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-04 16:47:02", - "registerOn": 1670164654.5549097, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164654.5549104, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164654.554918, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164654.554919, - "lastIP": "azo~{m~}hcaii}", - "deviceUUID": "12d88ff9cac799b62853cb2cc4745424db9a6892" - }, - "pb-IF4CMWc7": { - "display_string": [ - "\ue063Kisimo1994", - "\ue030Android21430556" - ], - "profiles": [], - "name": "\ue063Kisimo1994", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-10 23:12:25", - "registerOn": 1670164688.7271757, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164688.7271764, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164688.7271838, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164688.7271845, - "lastIP": "a\u007fn~}haai`{vbzh", - "deviceUUID": "baadf7630c1076763ba20d3c1290f44922c08fe2" - }, - "pb-IF5RUlkoHQ==": { - "display_string": [ - "\ue063serialhunt" - ], - "profiles": [], - "name": "\ue063serialhunt", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-09 19:50:31", - "registerOn": 1670164765.273882, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164765.2738826, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236590.2390156, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236590.2390168, - "lastIP": "dvvd|vixvavi", - "deviceUUID": "465f5538f809e3599131d3056a80342cb72670da" - }, - "pb-IF4CU0QpCA==": { - "display_string": [ - "\ue020MADDY1321" - ], - "profiles": [], - "name": "\ue020MADDY1321", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 23:47:39", - "registerOn": 1670164826.1793785, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164826.1793792, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164826.1793885, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670165667.7923439, - "lastIP": "azj~zo~}hfan`", - "deviceUUID": "375e940bc136e68d34cc7bee3b953fabea37ef0f" - }, - "pb-IF4dVFgCLg==": { - "display_string": [ - "\ue020Attitudeboy997" - ], - "profiles": [], - "name": "\ue020Attitudeboy997", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-17 09:31:17", - "registerOn": 1670164987.7380915, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164987.738092, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164987.738101, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670165061.6842158, - "lastIP": "dvvc{vaxj~~lf", - "deviceUUID": "9fc8f0b8cdb4ba85753351b714f6ac2055c00337" - }, - "pb-IF4eU0ggAw==": { - "display_string": [ - "\ue063BooI1219" - ], - "profiles": [], - "name": "\ue063BooI1219", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 13:48:49", - "registerOn": 1670165033.8957849, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165033.8957858, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165033.895794, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165033.8957946, - "lastIP": "azo~{a~}kbaia}", - "deviceUUID": "cd46691149db0b8e910ee622d3573aba199c0745" - }, - "pb-IF4AU04IHQ==": { - "display_string": [ - "\ue020SillyMembrane32" - ], - "profiles": [], - "name": "\ue020SillyMembrane32", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 20:19:32", - "registerOn": 1670165143.316132, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165143.3161325, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330471.1023283, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670331130.8405757, - "lastIP": "a}j~~nbaiiwvb}n", - "deviceUUID": "dcb83bdb40ec19416943298f2f7f1ab92b4523f8" - }, - "pb-IF40VEEMVA==": { - "display_string": [ - "\ue020AloofSoldier58271" - ], - "profiles": [], - "name": "\ue020AloofSoldier58271", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-30 18:21:06", - "registerOn": 1670165273.7302299, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165273.7302303, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242894.0537724, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242894.0537736, - "lastIP": "a\u007fn~~acaibwvb|a", - "deviceUUID": "77b69cdd0dc41f6e9d050e1ca7fd8e3398cfd907" - }, - "pb-JiNJARFdVUJBW1tAGUVUVV1HFkBeQ1BG": { - "display_string": [ - "\ue020HacktasticBeetle2600" - ], - "profiles": [], - "name": "\ue020HacktasticBeetle2600", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-15 15:10:21", - "registerOn": 1670165319.911316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165319.911317, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165319.9113255, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165319.9113266, - "lastIP": "a|j~~mdakeajd~", - "deviceUUID": "cd4d8f165ce494bff4ef4844e780a57d8a4e1c55" - }, - "pb-IF4CNEE7": { - "display_string": [ - "\ue020arsh2468" - ], - "profiles": [], - "name": "\ue020arsh2468", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-21 16:27:30", - "registerOn": 1670165350.0381484, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165350.0381489, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165350.038158, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670168944.1455185, - "lastIP": "evvhvvg~vb{l", - "deviceUUID": "25afc280c6a0ad7777fb2f6f2813d595f5c15365" - }, - "pb-IF4sU04cFQ==": { - "display_string": [ - "\ue063Alpha910" - ], - "profiles": [], - "name": "\ue063Alpha910", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 20:07:44", - "registerOn": 1670165431.2945395, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165431.2945404, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165431.294547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165431.294548, - "lastIP": "a\u007fn~}i`ajc{va~l", - "deviceUUID": "8b22bf20be9c77044dd4f640a5c8a3446d61660d" - }, - "pb-IF4eU08jEA==": { - "display_string": [ - "\ue020UnconvincingMaxim19" - ], - "profiles": [], - "name": "\ue020UnconvincingMaxim19", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 23:04:35", - "registerOn": 1670165442.3797126, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165442.3797133, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165442.3797226, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165442.3797233, - "lastIP": "a|o~vo~~hbaihx", - "deviceUUID": "c18fd0569eb1d8c3872661f7dab7368185ba25c9" - }, - "pb-IF49U2wiLA==": { - "display_string": [ - "\ue020Thanu41" - ], - "profiles": [], - "name": "\ue020Thanu41", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-11 16:32:02", - "registerOn": 1670165516.6016057, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165516.6016061, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165516.6016152, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670165663.786642, - "lastIP": "azo~{m~wa~}kd", - "deviceUUID": "1da86ac95b2dc46ed8d9b263a684c35764ae6d1a" - }, - "pb-IF4dKBYM": { - "display_string": [ - "\ue020Naimin95" - ], - "profiles": [], - "name": "\ue020Naimin95", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-02 11:15:18", - "registerOn": 1670165626.98999, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165626.9899907, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165626.989999, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165626.99, - "lastIP": "dvvcyva}k~}k`", - "deviceUUID": "06ca51e8f74c641f508c4df9dca664758d392b9e" - }, - "pb-IF4uUxMpLQ==": { - "display_string": [ - "\ue030Android60309780" - ], - "profiles": [], - "name": "\ue030Android60309780", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-07 17:03:23", - "registerOn": 1670165636.11352, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165636.1135206, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165636.1135285, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165636.1135297, - "lastIP": "awk~wk~}idaki", - "deviceUUID": "\u0015V_QY\u0016X\tVQCW\u000bSXB\u0004XYXMYXYUD" - }, - "pb-IF4iAGsC": { - "display_string": [ - "\ue020SleekPossum9447", - "\ue030Android38758359" - ], - "profiles": [], - "name": "\ue020SleekPossum9447", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-22 14:58:26", - "registerOn": 1670165700.3785243, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165700.378525, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165700.3785322, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165700.378533, - "lastIP": "a}j~~naaohaag", - "deviceUUID": "c8d611bc46ce05c172ed28e3d588b52e03be103d" - }, - "pb-IF4rUxdeUg==": { - "display_string": [ - "\ue020RootinTootinOoze9610" - ], - "profiles": [], - "name": "\ue020RootinTootinOoze9610", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-21 11:09:05", - "registerOn": 1670165761.4635248, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165761.4635255, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165761.4635344, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165761.463535, - "lastIP": "a\u007fn~~aealaaae", - "deviceUUID": "97e8d9436d1c81297ff0a1830fcde1d80a582805" - }, - "pb-IF4-UxI7Mg==": { - "display_string": [ - "\ue063FervidPlur" - ], - "profiles": [], - "name": "\ue020FervidPlurality13", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-03 20:18:08", - "registerOn": 1670165795.557572, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165795.5575724, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343174.1359143, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343174.1359153, - "lastIP": "a\u007fk~~ofaiaaid{", - "deviceUUID": "958364163981ea4653f377dc0e7f54814a049382" - }, - "pb-IF5XVWcCJA==": { - "display_string": [ - "\ue063PaanApitit", - "\ue030Android47505090" - ], - "profiles": [], - "name": "\ue063PaanApitit", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-05 14:02:52", - "registerOn": 1670165815.624136, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165815.6241364, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165815.6241448, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165815.6241457, - "lastIP": "dvvb\u007fm~|j~~je", - "deviceUUID": "f8035cae6006897ad6311205d7996bd2ad5ba7f8", - "cMsgCount": 0, - "lastMsgTime": 1670165895.5566382, - "lastMsg": "noooowaeee", - "cSameMsg": 0 - }, - "pb-IF4LUhcoBA==": { - "display_string": [ - "\ue030Android54473871" - ], - "profiles": [], - "name": "\ue030Android54473871", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-05 22:03:55", - "registerOn": 1670165861.8738713, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165861.873872, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165861.8738816, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165861.8738825, - "lastIP": "b}k~~`iamfaiav", - "deviceUUID": "d6ff54649e1a747e0ee737524871c74a0afb3590" - }, - "pb-IF4PVUwcFw==": { - "display_string": [ - "\ue020weirdassalien27" - ], - "profiles": [], - "name": "\ue020weirdassalien27", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-26 14:02:43", - "registerOn": 1670165877.8656523, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165877.8656533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252418.1333983, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670253578.2585526, - "lastIP": "azo~{i~~`dang", - "deviceUUID": "401586b3ba51558fcd7b099b93715c7b010b6e12" - }, - "pb-IF4eU0snCA==": { - "display_string": [ - "\ue020Gowthamsword" - ], - "profiles": [], - "name": "\ue020Gowthamsword", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 11:27:22", - "registerOn": 1670165885.841125, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165885.8411257, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165885.8411455, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165885.8411467, - "lastIP": "b}k~}jhaiezvhw", - "deviceUUID": "abeac0c14009304c2520bfa38520dc095c3c8c95" - }, - "pb-IF4nU2ssKg==": { - "display_string": [ - "\ue020PaternalisticEmu11", - "\ue030Android60829722" - ], - "profiles": [], - "name": "\ue020PaternalisticEmu11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-06 14:54:31", - "registerOn": 1670165899.9166162, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165899.916617, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670352576.2075906, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670357134.095422, - "lastIP": "a\u007fn~}iealhalh", - "deviceUUID": "2f091a8679215a74c459c99f08fca9a0e8d88944", - "cMsgCount": 0, - "lastMsgTime": 1670356948.1387243, - "lastMsg": "mai kya kru", - "cSameMsg": 0 - }, - "pb-IF5dV21TEA==": { - "display_string": [ - "\ue063ShaikhFaha" - ], - "profiles": [], - "name": "\ue063ShaikhFaha", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-08 18:18:14", - "registerOn": 1670165910.9758298, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165910.9758303, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670262908.314055, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670262908.314056, - "lastIP": "dvvc{vb{a~y`", - "deviceUUID": "b05632b1fb80c0652753b333b6527f0774019c10" - }, - "pb-IF4pU1ApEg==": { - "display_string": [ - "\ue063D4kgaming", - "\ue030Android63984902" - ], - "profiles": [], - "name": "\ue063D4kgaming", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 19:41:56", - "registerOn": 1670166034.826491, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166034.8264918, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166034.8265004, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166034.8265011, - "lastIP": "i|vazo~~ofaid}", - "deviceUUID": "27fc08532b5ed8e160644b0e3b951c7af7b1a6eb" - }, - "pb-IF4cUnc6DQ==": { - "display_string": [ - "\ue020Wakandansoldier" - ], - "profiles": [], - "name": "\ue020Wakandansoldier", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-01 19:14:35", - "registerOn": 1670166061.5229938, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166061.5229945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166061.5230021, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166061.523003, - "lastIP": "bxvf\u007fvaxn~~ac", - "deviceUUID": "0664431d96d1a4ca038792481c8158fdc64a3087" - }, - "pb-IF4sU0gNFg==": { - "display_string": [ - "\ue020bhumit21" - ], - "profiles": [], - "name": "\ue020bhumit21", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-27 14:25:15", - "registerOn": 1670166148.771087, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166148.7710874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223750.3416817, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223750.3416831, - "lastIP": "dvvc{vb}n~~ah", - "deviceUUID": "3cefea855bf56c2cbcff1cb9778307a78aad5276" - }, - "pb-IF4JU08KCg==": { - "display_string": [ - "\ue063PenitentDi" - ], - "profiles": [], - "name": "\ue063PenitentDi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 19:01:50", - "registerOn": 1670166218.00192, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166218.0019205, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166218.0019293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166218.0019302, - "lastIP": "dvvc}vb\u007fj~~ai", - "deviceUUID": "ec0325ae89346ec4a94ec12bb4a64fb75aaf8900" - }, - "pb-IF4sVXA_AA==": { - "display_string": [ - "\ue020ASSASINSURYA" - ], - "profiles": [], - "name": "\ue020ASSASINSURYA", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-02 16:19:07", - "registerOn": 1670166222.0407639, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166222.0407643, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166222.0407724, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166222.0407732, - "lastIP": "azo~{n~~kfaibw", - "deviceUUID": "74d1cb77ef378265911b3c56cb4911bfce20ee05" - }, - "pb-IF4RU1BTFA==": { - "display_string": [ - "\ue063planrearer" - ], - "profiles": [], - "name": "\ue063planrearer", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 12:17:51", - "registerOn": 1670166287.2511134, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166287.2511141, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166287.251122, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166287.2511227, - "lastIP": "a~i~vj~}`~~li", - "deviceUUID": "ce38ef6f088efc7268bce35fe6caa559bb69f1d6" - }, - "pb-IF4xU087Lw==": { - "display_string": [ - "\ue030Android63984885" - ], - "profiles": [], - "name": "\ue030Android63984885", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 19:38:08", - "registerOn": 1670166313.3401363, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166313.340137, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166313.3401449, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166313.3401458, - "lastIP": "avl~~m~}ifai`~", - "deviceUUID": "f08347ee837b54365c1bbea4f2907dc9c0839a3a" - }, - "pb-IF40U3MyVQ==": { - "display_string": [ - "\ue063CautiousPr" - ], - "profiles": [], - "name": "\ue063CautiousPr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-09 19:08:52", - "registerOn": 1670166369.590827, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166369.590828, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670294962.5891352, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670296369.6714978, - "lastIP": "b}k~}kcaniaifx", - "deviceUUID": "39246c8659ea3044a5bead7eacfb2a4a1a738619", - "cMsgCount": 0, - "lastMsgTime": 1670171554.6665184, - "lastMsg": "\ud83d\udca6\ud83d\udca6", - "cSameMsg": 0 - }, - "pb-IF4TU00FLg==": { - "display_string": [ - "\ue020meetraul" - ], - "profiles": [], - "name": "\ue020meetraul", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 10:44:31", - "registerOn": 1670166457.8404708, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166457.8404713, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166457.8404794, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166457.8404803, - "lastIP": "dvvc}vb{m~}me", - "deviceUUID": "a4546cc05c213bc94377ea74589e6e5e93a15011" - }, - "pb-IF4hVREELg==": { - "display_string": [ - "\ue063EternalChi", - "\ue030Android45695456" - ], - "profiles": [], - "name": "\ue063EternalChi", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-19 00:30:31", - "registerOn": 1670166759.9992406, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166759.999241, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166759.9992487, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670166815.828955, - "lastIP": "b}k~~ohaj`vvb\u007fo", - "deviceUUID": "5d1fd35ad6de7cf6224250984ceb1a699f372096", - "cMsgCount": 0, - "lastMsgTime": 1670169766.5801232, - "lastMsg": "I am worst player too ", - "cSameMsg": 0 - }, - "pb-IF4tUnUeDA==": { - "display_string": [ - "\ue063SVSavla" - ], - "profiles": [], - "name": "\ue063SVSavla", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-25 00:37:29", - "registerOn": 1670166760.9934235, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166760.993424, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166760.9934316, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166760.993432, - "lastIP": "a\u007fk~~lbaiaajdy", - "deviceUUID": "8bbbd6f9befc6b28f29b4a23552779248ff80649" - }, - "pb-IF4UUmQbLg==": { - "display_string": [ - "\ue020GrotesqueBargain17" - ], - "profiles": [], - "name": "\ue020GrotesqueBargain17", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-05 10:12:59", - "registerOn": 1670166827.198648, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166827.1986487, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166827.1986573, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166827.1986582, - "lastIP": "bxvf}vbwvhw", - "deviceUUID": "4c621f0b2d6559f1a1a462a50de2d6c0d3ba5564" - }, - "pb-IF4MU0UlCg==": { - "display_string": [ - "\ue020WatDocument29" - ], - "profiles": [], - "name": "\ue020WatDocument29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-04 13:11:30", - "registerOn": 1670166918.549536, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166918.549537, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166918.5495458, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166918.5495462, - "lastIP": "a\u007fn~~acaig{vayj", - "deviceUUID": "39b2745838b0d9993ed845c6bf1700aaced267e9", - "cMsgCount": 0, - "lastMsgTime": 1670167240.3673563, - "lastMsg": "nice \ud83d\udc4d\ud83d\ude42", - "cSameMsg": 0 - }, - "pb-IF4HU3YGEQ==": { - "display_string": [ - "\ue063raiyyan095" - ], - "profiles": [], - "name": "\ue063raiyyan095", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 14:32:50", - "registerOn": 1670167401.2902663, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167401.2902672, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167401.2902741, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670171495.473114, - "lastIP": "a~o~v`~~n~~oe", - "deviceUUID": "bf6c56f6373e0204da59d88191bb526bfa5cd484", - "cMsgCount": 0, - "lastMsgTime": 1670167582.42784, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4tUkQaCg==": { - "display_string": [ - "\ue063itsmohit24" - ], - "profiles": [], - "name": "\ue063itsmohit24", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-29 09:03:46", - "registerOn": 1670167410.1924782, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167410.1924787, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167410.1924858, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167410.192487, - "lastIP": "a~o~va~~naajb}", - "deviceUUID": "6575026d70ced12f5e8ce050da2c39162874affd" - }, - "pb-IF4SUxMmKA==": { - "display_string": [ - "\ue063GiltJustif", - "\ue030Android60259654" - ], - "profiles": [], - "name": "\ue063GiltJustif", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-06 21:34:55", - "registerOn": 1670167432.2450662, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167432.2450671, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167432.2450767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167432.2450776, - "lastIP": "ax`~xj~xi~~ma", - "deviceUUID": "38f9f4d8bbe68c3e6a91965157f9dbd6eacf755e" - }, - "pb-IF4PUnM-Lw==": { - "display_string": [ - "\ue030Android56697829" - ], - "profiles": [], - "name": "\ue030Android56697829", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-14 10:37:22", - "registerOn": 1670167460.3940463, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167460.394047, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167460.3940547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167460.3940556, - "lastIP": "azo~|j~zvb\u007fh", - "deviceUUID": "7cf859ef637f5dac81e22503d1db62cd00146ece" - }, - "pb-IF40UkQYJg==": { - "display_string": [ - "\ue063Navestien6" - ], - "profiles": [], - "name": "\ue020Navestien666", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-30 22:26:21", - "registerOn": 1670167462.3991795, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167462.39918, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329314.4762757, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329314.4762769, - "lastIP": "b\u007fm~}mcaib\u007fvh}", - "deviceUUID": "6e46be3c367cd489a94f4ed2ab1ecd1102ff068d", - "cMsgCount": 0, - "lastMsgTime": 1670329576.4746506, - "lastMsg": "ye kaise aya", - "cSameMsg": 0 - }, - "pb-IF4DU3AABw==": { - "display_string": [ - "\ue020YogeYogesh14", - "\ue030Android63935609", - "\ue030Android63935650", - "\ue030Android63935668", - "\ue030Android63935638" - ], - "profiles": [], - "name": "\ue020YogeYogesh14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-28 01:29:12", - "registerOn": 1670167474.517545, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167474.5175455, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670303696.2627728, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670303696.2627742, - "lastIP": "azo~{a~~ndajcv", - "deviceUUID": "f213df33642e4ebc54b521e0d617c0a8ed131fb5", - "cMsgCount": 0, - "lastMsgTime": 1670304477.640112, - "lastMsg": "go", - "cSameMsg": 0 - }, - "pb-IF4IU0waNQ==": { - "display_string": [ - "\ue063kartikm52" - ], - "profiles": [], - "name": "\ue063kartikm52", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 16:21:29", - "registerOn": 1670167486.5033967, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167486.5033977, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167486.5034065, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167486.5034077, - "lastIP": "a\u007fk~~n~~j~xa", - "deviceUUID": "483b4781309f463e2802d07dea36b718954078e8", - "cMsgCount": 0, - "lastMsgTime": 1670168415.0340774, - "lastMsg": "super", - "cSameMsg": 0 - }, - "pb-IF4eV0oMLw==": { - "display_string": [ - "\ue020TroublesomeAvail4" - ], - "profiles": [], - "name": "\ue020TroublesomeAvail4", - "isBan": false, - "isMuted": false, - "accountAge": "2019-03-15 16:16:24", - "registerOn": 1670167634.9539022, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167634.9539032, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167634.9539106, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167634.9539115, - "lastIP": "dvvcyvb~k~~k", - "deviceUUID": "1f209ff708b6750a46b9bef94d187fbfd57de283" - }, - "pb-IF4gU3cIPQ==": { - "display_string": [ - "\ue063Nirucraze" - ], - "profiles": [], - "name": "\ue020Nirucraze", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 09:15:05", - "registerOn": 1670167676.0900483, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167676.0900488, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670351106.8637354, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670351106.8637369, - "lastIP": "azo~{m~~lfaid|", - "deviceUUID": "2a433aab164c2ce5ca6a32ebd9ca8f738bb40ded" - }, - "pb-IF5cU00kKg==": { - "display_string": [ - "\ue063Headhunter", - "\ue030Android61110362" - ], - "profiles": [], - "name": "\ue063Headhunter", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 12:37:00", - "registerOn": 1670167684.3128276, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167684.312828, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167684.312836, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167684.312837, - "lastIP": "a\u007fk~vm~wi~~md", - "deviceUUID": "9512b2cf2c5d0983d4845e3c85ca5840b37965d4" - }, - "pb-IF4XU0w8Ug==": { - "display_string": [ - "\ue030Android63833158" - ], - "profiles": [], - "name": "\ue030Android63833158", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 13:15:38", - "registerOn": 1670167702.4814215, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167702.4814224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167702.4814298, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670174741.238331, - "lastIP": "azo~{n~~jfai`w", - "deviceUUID": "\u0015QU\u0004QBP^QQ\u0011V\\\u0002X\u0011WZRQARZXPL" - }, - "pb-IF4iVXQnKw==": { - "display_string": [ - "\ue02046DEVILBoy" - ], - "profiles": [], - "name": "\ue02046DEVILBoy", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-25 22:21:46", - "registerOn": 1670167927.9781718, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167927.9781728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167927.9781814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167927.9781823, - "lastIP": "azo~{n~}ieaja{", - "deviceUUID": "e629df65a638bf4b934b80d4854b7e4ccbea2d51" - }, - "pb-IF4yUmsiXQ==": { - "display_string": [ - "\ue030Android55846320" - ], - "profiles": [], - "name": "\ue030Android55846320", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-06 09:37:07", - "registerOn": 1670167942.072769, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167942.0727696, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167942.0727766, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167942.072777, - "lastIP": "a~n~~l~~maa`h", - "deviceUUID": "a5b2bb3e214b2b0f29330b1f6c3a59af7504a787" - }, - "pb-IF4OU0cMLw==": { - "display_string": [ - "\ue020prashantrajputreaba", - "\ue030Android63743210" - ], - "profiles": [], - "name": "\ue020prashantrajputreaba", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 12:46:38", - "registerOn": 1670168090.6077995, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168090.6078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256989.3859186, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256989.38592, - "lastIP": "azo~|k~|l~~nb", - "deviceUUID": "85dacad1b2327afd1235f5ac9d9f2f5d720cad47" - }, - "pb-IF4IU04pBA==": { - "display_string": [ - "\ue020InnateSinner19", - "\ue030Android63932733" - ], - "profiles": [], - "name": "\ue020InnateSinner19", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 18:22:07", - "registerOn": 1670168115.6994216, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168115.6994221, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670357190.6742754, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670357190.6742764, - "lastIP": "a\u007fk~}i~~neaod", - "deviceUUID": "a0dbf538cbca995179cc926b8597a2599c6d01c7", - "cMsgCount": 0, - "lastMsgTime": 1670359314.3526113, - "lastMsg": "sri lanka", - "cSameMsg": 0 - }, - "pb-IF4oU3oZNg==": { - "display_string": [ - "\ue030Android63217110" - ], - "profiles": [], - "name": "\ue030Android63217110", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-09 18:17:36", - "registerOn": 1670168159.9885747, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168159.9885752, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317229.0546596, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317229.054661, - "lastIP": "azo~zi~~`haiez", - "deviceUUID": "26670b93a1f1f19f329cbb6fd2ec42ff8a03be17" - }, - "pb-IF5dU084Pw==": { - "display_string": [ - "\ue030Android63903756" - ], - "profiles": [], - "name": "\ue030Android63903756", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 23:21:24", - "registerOn": 1670168260.1819232, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168260.1819236, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168260.1819322, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670168462.549141, - "lastIP": "azo~{a~ym~yk", - "deviceUUID": "d342a67421820e4a47715becb38185e609b3963a" - }, - "pb-IF4LU0sFBA==": { - "display_string": [ - "\ue063AwesomeUni" - ], - "profiles": [], - "name": "\ue063AwesomeUni", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 09:14:30", - "registerOn": 1670168441.779381, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168441.7793818, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212071.9255252, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212071.9255266, - "lastIP": "dvvcyvbzvayi", - "deviceUUID": "333c7b471173a561f43cb4f0d1d0ce56331bfd2f" - }, - "pb-IF4-U0gPUw==": { - "display_string": [ - "\ue020sahiljaiswal124" - ], - "profiles": [], - "name": "\ue020sahiljaiswal124", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 19:12:40", - "registerOn": 1670168577.2081323, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168577.208133, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168577.2081406, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168577.2081413, - "lastIP": "dxvbvvayi~~n`", - "deviceUUID": "181b9dfe147573c0d55a5aeef8a5c86d5b6e7681" - }, - "pb-IF4XV1k7Hw==": { - "display_string": [ - "\ue020louis12king018806660" - ], - "profiles": [], - "name": "\ue020louis12king018806660", - "isBan": false, - "isMuted": false, - "accountAge": "2019-06-02 02:28:59", - "registerOn": 1670168642.4050496, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168642.4050503, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168642.405059, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168642.40506, - "lastIP": "a\u007fn~~ahajdaog", - "deviceUUID": "fb5c7aee9d5a3d954ac47c2d264e36061d4bd094" - }, - "pb-IF4DU00TEw==": { - "display_string": [ - "\ue020ImpregnableInsanity1", - "\ue030Android63902876", - "\ue030Android63906184" - ], - "profiles": [], - "name": "\ue030Android63902876", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 20:44:22", - "registerOn": 1670168714.7566276, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168714.7566283, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328694.657741, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328694.6577425, - "lastIP": "a\u007fn~}hcakiaidv", - "deviceUUID": "a4f8f9370a0add1d52605546a45bf61524401bde", - "cMsgCount": 0, - "lastMsgTime": 1670235724.3246107, - "lastMsg": "hi", - "cSameMsg": 0 - }, - "pb-IF4QVXUqDg==": { - "display_string": [ - "\ue020ismartrohit" - ], - "profiles": [], - "name": "\ue020ismartrohit", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-02 16:35:13", - "registerOn": 1670168771.8602855, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168771.860286, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256717.3799422, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256717.3799434, - "lastIP": "azo~|k~}jiaia}", - "deviceUUID": "b367cb7d689d685aa944611ee2fa21b9e92231ee" - }, - "pb-IF4uU0kIFw==": { - "display_string": [ - "\ue030Android63763752" - ], - "profiles": [], - "name": "\ue030Android63763752", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 14:36:02", - "registerOn": 1670168774.8737438, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168774.8737447, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168774.873753, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168774.873754, - "lastIP": "hvva~k~~kiaih|", - "deviceUUID": "8a7b1ea9eeb5c78cb2c8d1d8e88340af06c02d08" - }, - "pb-IF4CU0MzBg==": { - "display_string": [ - "\ue020HIREN1AHIR" - ], - "profiles": [], - "name": "\ue020HIREN1AHIR", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-21 21:18:26", - "registerOn": 1670168800.9490013, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168800.9490016, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168800.9490104, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168800.9490118, - "lastIP": "aakha`aaih}", - "deviceUUID": "915750760f0ba873f2067db7b204681364660315" - }, - "pb-IF4uU09TCg==": { - "display_string": [ - "\ue030Android63969202" - ], - "profiles": [], - "name": "\ue030Android63969202", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 14:39:41", - "registerOn": 1670168863.1806862, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168863.180687, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168863.1806962, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168863.1806974, - "lastIP": "a{va\u007fj~}j~}lh", - "deviceUUID": "0685c07aedee36e7db7cf12405539e758008389b" - }, - "pb-IF4rUnYPNQ==": { - "display_string": [ - "\ue063SPERMAN" - ], - "profiles": [], - "name": "\ue063SPERMAN", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-28 20:57:12", - "registerOn": 1670169053.8202708, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169053.8202717, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169053.8202791, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169053.8202798, - "lastIP": "hwvb|m~}hdaib{", - "deviceUUID": "9772759615c3ba04fddda721b4126eb7775f3c6d" - }, - "pb-JiNJARBSXURGW1tAEERXU1RHFkBXRlNF": { - "display_string": [ - "\ue020YawningGhost61878", - "\ue063SaltyBoss5" - ], - "profiles": [], - "name": "\ue063SaltyBoss5", - "isBan": false, - "isMuted": false, - "accountAge": "2017-02-09 20:57:13", - "registerOn": 1670169067.8394074, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169067.839408, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169067.8394153, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169067.839416, - "lastIP": "dzvb{`~}vc~", - "deviceUUID": "fda17aff9614132cd899a1a73eef4e3595908baf" - }, - "pb-IF4UUxYyXA==": { - "display_string": [ - "\ue020jagu22wan" - ], - "profiles": [], - "name": "\ue020jagu22wan", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-17 13:52:10", - "registerOn": 1670169191.3203194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169191.32032, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169191.3203282, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169191.3203292, - "lastIP": "dvvcxvavm~z`", - "deviceUUID": "0f36afef7639de12c3030df7c1891bf9138b69d2" - }, - "pb-JiNJVxFfXUpEW1xCEEZSUlBGEUNaR1BE": { - "display_string": [ - "\ue063vishnu234" - ], - "profiles": [], - "name": "\ue063vishnu234", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-14 12:42:49", - "registerOn": 1670169219.4019961, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169219.4019969, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169219.4020064, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169219.402007, - "lastIP": "a\u007fk~~naameaiay", - "deviceUUID": "5438d0b4f124c84c5188a948296609fd92dfa8c0", - "cMsgCount": 0, - "lastMsgTime": 1670169554.6156301, - "lastMsg": "how he got another life", - "cSameMsg": 0 - }, - "pb-IF4MVUQjLw==": { - "display_string": [ - "\ue063PlumpEnt18" - ], - "profiles": [], - "name": "\ue063PlumpEnt18", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-07 19:10:59", - "registerOn": 1670169242.5653312, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169242.565332, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169242.5653405, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169242.5653415, - "lastIP": "azo~zi~xi~{k", - "deviceUUID": "1706b5e06255cac541531121a1ed1def01ddeb56" - }, - "pb-IF5TU0kDFw==": { - "display_string": [ - "\ue020UnmeasuredStreet50" - ], - "profiles": [], - "name": "\ue020UnmeasuredStreet50", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 12:24:25", - "registerOn": 1670169259.8273587, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169259.8273594, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169259.8273673, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169259.8273683, - "lastIP": "b~j~~hdajcyva{l", - "deviceUUID": "82233e2ef1935c012ffaae7566ebab739a1414e6" - }, - "pb-IF4sUhAyKw==": { - "display_string": [ - "\ue020SaturatedOffice44", - "\ue030Android56293089" - ], - "profiles": [], - "name": "\ue030Android56293089", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-07 13:25:58", - "registerOn": 1670169267.5681043, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169267.5681047, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169267.5681126, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169267.5681136, - "lastIP": "azo~{n~vn~}jc", - "deviceUUID": "\u0015U\f\u0002\u0005FR\f" - }, - "pb-IF4-VEsEJA==": { - "display_string": [ - "\ue020BouncyTrucker29384", - "\ue020RegretfulCrow2978" - ], - "profiles": [], - "name": "\ue020BouncyTrucker29384", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-28 19:39:00", - "registerOn": 1670169359.8949296, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169359.8949301, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169359.8949382, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169359.8949392, - "lastIP": "azo~zi~{m~~ai", - "deviceUUID": "9dd12f154ede68dcf02b90d7ff46fb75405efc8a" - }, - "pb-IF4rUmovMg==": { - "display_string": [ - "\ue063ImproperGl" - ], - "profiles": [], - "name": "\ue063ImproperGl", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-31 18:44:19", - "registerOn": 1670169389.031273, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169389.0312734, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169389.0312827, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169389.0312834, - "lastIP": "azo~|`~~ifaje", - "deviceUUID": "93f45368ee483da5feb85bf1d20f18dace721176" - }, - "pb-IF4sU2sqHQ==": { - "display_string": [ - "\ue030Android63976161", - "\ue030Android63976116", - "\ue030Android63976199", - "\ue030Android63976244", - "\ue030Android61865080" - ], - "profiles": [], - "name": "\ue030Android61865080", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 11:54:48", - "registerOn": 1670169465.2797682, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169465.2797692, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347337.7045586, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670349978.0392506, - "lastIP": "dvvc{vhzvd", - "deviceUUID": "f8ef55196d5ba4ca7a6b255fe35954bb1a416b0b", - "cMsgCount": 0, - "lastMsgTime": 1670350132.8387642, - "lastMsg": "kill MPF", - "cSameMsg": 0 - }, - "pb-IF4mUxkJPw==": { - "display_string": [ - "\ue030Android60903665" - ], - "profiles": [], - "name": "\ue030Android60903665", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-01 21:35:25", - "registerOn": 1670169494.541764, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169494.5417645, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169494.5417728, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169494.5417738, - "lastIP": "dvvc{va{o~~`d", - "deviceUUID": "\u0015Q_R\u0004\u0016\u0007T\u0003T\u0017\u0007USXBWXVXBU\\UXE" - }, - "pb-IF4MU085LA==": { - "display_string": [ - "\ue063Invisible6" - ], - "profiles": [], - "name": "\ue063Invisible6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 21:51:17", - "registerOn": 1670169570.629754, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169570.6297545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254945.1974485, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254945.1974494, - "lastIP": "b}k~~oha`gaie{", - "deviceUUID": "7ed64c541b72b7aae895a65f3315961974cb3516" - }, - "pb-IF4KUk0MJg==": { - "display_string": [ - "\ue020PreschoolViability39", - "\ue030Android50875641" - ], - "profiles": [], - "name": "\ue020PreschoolViability39", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-05 21:59:39", - "registerOn": 1670169644.9582026, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169644.9582033, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169644.9582124, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169644.9582133, - "lastIP": "a|i~\u007fvav`~}hb", - "deviceUUID": "420ed96bbfac6067d4c9ddabc36246e40328d8db" - }, - "pb-IF5VVVEADg==": { - "display_string": [ - "\ue063PlainerEnc" - ], - "profiles": [], - "name": "\ue063PlainerEnc", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-06 19:05:44", - "registerOn": 1670169659.0285316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169659.0285325, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255147.1997166, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255147.199718, - "lastIP": "a~h~}keajaxva}i", - "deviceUUID": "fe827b9c97230932d109fce9cb6b8de617b3efe9" - }, - "pb-IF4LUlQ7Ng==": { - "display_string": [ - "\ue020AbhiiiOP1" - ], - "profiles": [], - "name": "\ue020AbhiiiOP1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-02 21:55:26", - "registerOn": 1670169710.198339, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169710.19834, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169710.1983473, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169710.1983483, - "lastIP": "d|vb{a~}jiah", - "deviceUUID": "bf36db18130e678294cd8c52318c1b8ea59ee170" - }, - "pb-IF4vU0MENg==": { - "display_string": [ - "\ue063harshal" - ], - "profiles": [], - "name": "\ue063harshal", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-22 21:41:30", - "registerOn": 1670169845.7034647, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169845.7034655, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341480.1284366, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670343713.0505054, - "lastIP": "azj~zo~~jaaib", - "deviceUUID": "b144a5b6f1f89c128168881dd87511cc79229145" - }, - "pb-IF4lU086KQ==": { - "display_string": [ - "\ue063TSMentVans" - ], - "profiles": [], - "name": "\ue020TSMentVansh1234", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 02:10:21", - "registerOn": 1670169913.9522357, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169913.9522362, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254235.6481817, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254235.6481829, - "lastIP": "a\u007fn~}iealhalh", - "deviceUUID": "2186b07345b0e0b65f93bb8e1e3112cfa32dc866" - }, - "pb-IF4OF2EA": { - "display_string": [ - "\ue020SaltyClown69079" - ], - "profiles": [], - "name": "\ue020SaltyClown69079", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-14 19:39:47", - "registerOn": 1670169968.222988, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169968.2229884, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169968.2229965, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169968.2229972, - "lastIP": "dxviakbald", - "deviceUUID": "44e12025763b483f92ea475ce91cef5100d11fa2" - }, - "pb-IF4-UnVTXQ==": { - "display_string": [ - "\ue020LethargicHotshot9113" - ], - "profiles": [], - "name": "\ue020LethargicHotshot9113", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-23 11:37:44", - "registerOn": 1670170019.463155, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170019.4631557, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170019.463164, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670173277.8204453, - "lastIP": "a\u007fn~}iaajd\u007fvayk", - "deviceUUID": "bde529963f7916a55c191b2b2d6f7a5668a3d48e" - }, - "pb-IF4XVVEuAA==": { - "display_string": [ - "\ue030Android53762436", - "\ue030Android52674661", - "\ue030Android54203722", - "\ue030Android52545518", - "\ue030Android11764371" - ], - "profiles": [], - "name": "\ue030Android54203722", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-15 19:07:44", - "registerOn": 1670170064.5872755, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170064.587276, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670170452.618447, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170064.5872853, - "lastIP": "dvvazva|`~~hh", - "deviceUUID": "262b9e77aad6f334e2f64553c52b722c84047721", - "cMsgCount": 2, - "lastMsgTime": 1670170452.7592585, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4xU04OMg==": { - "display_string": [ - "\ue030PC772976" - ], - "profiles": [], - "name": "\ue030PC772976", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 19:03:47", - "registerOn": 1670170160.974992, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170160.974993, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670335355.8298144, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670333566.4834013, - "lastIP": "b}k~~ohaj`vvb\u007fo", - "deviceUUID": "418fa6a05841c1b0df790370a713ffe4c9949408", - "cMsgCount": 1, - "lastMsgTime": 1670335466.5007281, - "lastMsg": "study karta hu challange accepted bye bro", - "cSameMsg": 0 - }, - "pb-IF5UU01eKw==": { - "display_string": [ - "\ue030Android63796197" - ], - "profiles": [], - "name": "\ue030Android63796197", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 17:05:46", - "registerOn": 1670170259.3832543, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170259.3832548, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170259.3832653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170259.383266, - "lastIP": "a\u007fm~~hfaibvvex", - "deviceUUID": "c068e20e378d907eb9a759dab9c489702828bfdd" - }, - "pb-IF4sU0wcBA==": { - "display_string": [ - "\ue020DiffidentHoplite31" - ], - "profiles": [], - "name": "\ue020DiffidentHoplite31", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 20:53:51", - "registerOn": 1670170364.7377033, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170364.7377043, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334244.6891963, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670334477.5101962, - "lastIP": "a~o~}jhaig{vbzl", - "deviceUUID": "8c631f53682fe91a3f459834ed1f0286daf6db6a" - }, - "pb-IF5QU3AaLg==": { - "display_string": [ - "\ue030Android62078969" - ], - "profiles": [], - "name": "\ue030Android62078969", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 19:45:30", - "registerOn": 1670170420.9802501, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170420.9802506, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670345312.7784083, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670345312.7784095, - "lastIP": "dvvc{vavh~vo", - "deviceUUID": "f1c77e950f17e38d444f78241eb97f92085a69d3" - }, - "pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB": { - "display_string": [ - "\ue063aslammalik", - "\ue030Android13724059" - ], - "profiles": [], - "name": "\ue063aslammalik", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-23 13:26:56", - "registerOn": 1670170435.292834, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170435.2928345, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670252608.1721869, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251115.6189094, - "lastIP": "b}k~~`hajd\u007fva\u007f", - "deviceUUID": "92596357655490b82490f34ee0162e866d767923", - "cMsgCount": 0, - "lastMsgTime": 1670252707.1185305, - "lastMsg": "lol", - "cSameMsg": 0 - }, - "pb-IF4jU0MoPA==": { - "display_string": [ - "\ue030Android63397175" - ], - "profiles": [], - "name": "\ue030Android63397175", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-18 18:45:28", - "registerOn": 1670170478.2920778, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170478.2920783, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353711.1969306, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670353711.1969316, - "lastIP": "azo~{a~~ohajd}", - "deviceUUID": "e502f5721c6c771c13afba773ea7a8a4f577991a", - "cMsgCount": 0, - "lastMsgTime": 1670329074.6039155, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4DUlQYEw==": { - "display_string": [ - "\ue020UnpopularHunter14650", - "\ue030Android59369529" - ], - "profiles": [], - "name": "\ue020UnpopularHunter14650", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-02 12:49:40", - "registerOn": 1670170522.2965899, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170522.2965903, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170522.2965984, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170522.2965994, - "lastIP": "a\u007fk~}maamia`i", - "deviceUUID": "492bc021ca1fa4954f0f9ed9177b64c346aa6945" - }, - "pb-IF4PU046AA==": { - "display_string": [ - "\ue063JRGunner10" - ], - "profiles": [], - "name": "\ue063JRGunner10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 13:29:33", - "registerOn": 1670170530.343196, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170530.3431964, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170530.3432045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170530.3432055, - "lastIP": "f~vaaib|va|i", - "deviceUUID": "21d9a7317fda7d34d19cb6c069632e520e550247" - }, - "pb-IF4pU0gcDQ==": { - "display_string": [ - "\ue063OriginalTe" - ], - "profiles": [], - "name": "\ue063OriginalTe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-22 23:48:00", - "registerOn": 1670170588.589707, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170588.5897076, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170588.5897152, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170588.589716, - "lastIP": "dzvaxa~wn~~if", - "deviceUUID": "25c2075454a5c1fe8be0101dcf18b1fb5e8c08ad" - }, - "pb-IF4NUm4IFA==": { - "display_string": [ - "\ue063noselessmo" - ], - "profiles": [], - "name": "\ue063noselessmo", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-26 09:24:40", - "registerOn": 1670170888.8810575, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170888.881058, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258029.2687323, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258029.2687335, - "lastIP": "a\u007fn~}j`aie}vaza", - "deviceUUID": "afe8504287910093f009e3fb9298e339ac016e72", - "cMsgCount": 0, - "lastMsgTime": 1670258127.7363563, - "lastMsg": "sry", - "cSameMsg": 0 - }, - "pb-LV4FBUYOVRRBCl4UEkVRB1EWGA==": { - "display_string": [ - "\ue021Phalgun~", - "\ue020Phalsgun", - "\ue030PC241395", - "\ue030Android8403398", - "\ue030PC403142" - ], - "profiles": [], - "name": "\ue021Phalgun~", - "isBan": false, - "isMuted": false, - "accountAge": "2016-11-20 11:42:50", - "registerOn": 1670170943.1882389, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170943.1882393, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338260.6128583, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338260.6128597, - "lastIP": "dvvb\u007fm~~hgajf", - "deviceUUID": "\u0019 .%V2#U\"LG#)VLAQX%LLVYXL1S(%VFQ/Y EY\\UQ@Y^RXAS", - "cMsgCount": 0, - "lastMsgTime": 1670340767.871169, - "lastMsg": "hehe no kill", - "cSameMsg": 0 - }, - "pb-IF5SUlkpPQ==": { - "display_string": [ - "\ue030Android59632041" - ], - "profiles": [], - "name": "\ue030Android59632041", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-11 11:33:51", - "registerOn": 1670170955.8542447, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170955.854245, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170955.8542526, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170955.8542533, - "lastIP": "a\u007fk~xa~}mea`", - "deviceUUID": "\u0015U\u000bW\u0005\u0016YZTSB\u0003[\u0003SFY\\PXLR\\PYBT" - }, - "pb-IF49VWglHA==": { - "display_string": [ - "\ue063FormerInno", - "\ue030Android46954321" - ], - "profiles": [], - "name": "\ue063FormerInno", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-27 21:16:31", - "registerOn": 1670171282.0857804, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670171282.085781, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670171282.0857897, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670171282.0857906, - "lastIP": "dxviaibvva~j", - "deviceUUID": "2df76a1bed2e77629bc5ec2a80ad87eb9f804fd1" - }, - "pb-IF4wU00EFA==": { - "display_string": [ - "\ue020BodaciousHipster7051" - ], - "profiles": [], - "name": "\ue020BodaciousHipster7051", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 14:01:54", - "registerOn": 1670171292.368926, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670171292.3689263, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219834.2400062, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219834.2400074, - "lastIP": "a}k~}kaaibzvb}", - "deviceUUID": "8a1bd0181802c25e85b4c22ec22fb7657e699e7e" - }, - "pb-IF4mU3kDIg==": { - "display_string": [ - "\ue063ProbablePl" - ], - "profiles": [], - "name": "\ue063ProbablePl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-06 15:24:27", - "registerOn": 1670171337.263092, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670171337.2630925, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670171337.263101, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670172120.6382544, - "lastIP": "a\u007fk~~agajb{vb\u007fl", - "deviceUUID": "666cfd5e4f6f2be2ceb7998e0a7defd54d85ad08" - }, - "pb-IF5QUncABw==": { - "display_string": [ - "\ue020SpontaneousTexture21" - ], - "profiles": [], - "name": "\ue020SpontaneousTexture21", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-22 17:01:09", - "registerOn": 1670171369.360172, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670171369.360173, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343519.3416884, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670343763.2457356, - "lastIP": "azo~|k~}ihaj`", - "deviceUUID": "\u0015Y_VS\u0012P\u000eY\u0007\u0015P]\u0003P\u0016U[PTLSTTVC", - "cMsgCount": 1, - "lastMsgTime": 1670172278.892956, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4cVEsJAg==": { - "display_string": [ - "\ue020OutmodedMystery3", - "\ue020smartysurendhar", - "\ue020NOORULAMEENAK57THALA", - "\ue020SubtlerPrelude12", - "\ue030Android24527683" - ], - "profiles": [], - "name": "\ue020NOORULAMEENAK57THALA", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-28 19:29:44", - "registerOn": 1670171705.5125847, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670171705.5125856, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340224.5565116, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670341210.1555612, - "lastIP": "azo~{a~~`daiiy", - "deviceUUID": "4f95e577a50d5f70018f099e72b520364683903b" - }, - "pb-IF4pVVQBEA==": { - "display_string": [ - "\ue020\u1d35\u1d2c\u1d39\u30baRaoJi" - ], - "profiles": [], - "name": "\ue020\u1d35\u1d2c\u1d39\u30baRaoJi", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-01 17:58:38", - "registerOn": 1670172105.9046304, - "canStartKickVote": true, - "spamCount": 2, - "lastSpam": 1670216868.3627353, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670246867.0605102, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246575.5256505, - "lastIP": "a\u007fn~~aeaicaidy", - "deviceUUID": "5fe0619e43e78d3eb296f26e44b46fe30b6d98f1", - "cMsgCount": 0, - "lastMsgTime": 1670246867.0604496, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFeUkZGXVhBEUdSU1RGEkJXTlRH": { - "display_string": [ - "\ue020Sagaramin12345", - "\ue030Android9634823" - ], - "profiles": [], - "name": "\ue020Sagaramin12345", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-06 17:52:32", - "registerOn": 1670172231.363033, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172231.3630338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172231.363042, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172231.363043, - "lastIP": "azo~{m~~ldaicz", - "deviceUUID": "cdd64c05bf3f291f40e0aecd4923efeb120a9465" - }, - "pb-IF4KVRMyUw==": { - "display_string": [ - "\ue020UnnumberedRobbery17", - "\ue030Android45832072" - ], - "profiles": [], - "name": "\ue020UnnumberedRobbery17", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-24 21:50:54", - "registerOn": 1670172302.779433, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172302.7794335, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246145.013323, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246145.013324, - "lastIP": "aakhaif}vev", - "deviceUUID": "ce399e8462aa7587b43b0a15826f2e1d007fa2af" - }, - "pb-IF4-U2pcKA==": { - "display_string": [ - "\ue030Android61702035" - ], - "profiles": [], - "name": "\ue030Android61702035", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-03 23:14:58", - "registerOn": 1670172351.7900114, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172351.7900121, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172351.790019, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172351.7900198, - "lastIP": "hxvavn~wi~~mf", - "deviceUUID": "645d592ec70b838dc5115801e998c148efe1bb6f" - }, - "pb-IF49U0JZFw==": { - "display_string": [ - "\ue030Android63349899" - ], - "profiles": [], - "name": "\ue030Android63349899", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-16 19:16:34", - "registerOn": 1670172400.3639817, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172400.3639824, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172400.363991, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172400.363992, - "lastIP": "dzva~m~vi~~md", - "deviceUUID": "b9a8c922680362e8105243c616c9089ae90ed8c1" - }, - "pb-IF48VWIPPw==": { - "display_string": [ - "\ue020QuerulousBrick19" - ], - "profiles": [], - "name": "\ue020QuerulousBrick19", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-17 17:03:47", - "registerOn": 1670172556.5734344, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172556.5734348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172556.5734437, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172556.5734446, - "lastIP": "dvvcxvb{k~~ah", - "deviceUUID": "7bed0a23c4157affd91bd27ca455553c455f7028" - }, - "pb-IF4oVEwvLA==": { - "display_string": [ - "\ue063DAXDESAI" - ], - "profiles": [], - "name": "\ue063DAXDESAI", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-30 20:43:12", - "registerOn": 1670172569.584806, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172569.5848067, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172569.584815, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172569.584816, - "lastIP": "d}va\u007fn~}i~~he", - "deviceUUID": "b423c8c8f8cda2231efaf5538ddec32bd6c4cc58" - }, - "pb-IF4yUng_XA==": { - "display_string": [ - "\ue063CosmicOutl", - "\ue030Android63886432", - "\ue030Android63885993" - ], - "profiles": [], - "name": "\ue063CosmicOutl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-05 21:40:38", - "registerOn": 1670172749.221171, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172749.2211723, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172749.2211812, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670172965.7047884, - "lastIP": "azo~{m~~odaihy", - "deviceUUID": "c4c8e19e44efd3082fbdc264c20023dc909737ad" - }, - "pb-JiNJARBcUEpCW15BEUNSXVVAGUFeQVJC": { - "display_string": [ - "\ue063LoverboyRo", - "\ue030Android14612394" - ], - "profiles": [], - "name": "\ue063LoverboyRo", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-22 23:25:54", - "registerOn": 1670172815.4980688, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172815.4980693, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172815.4980776, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172815.4980788, - "lastIP": "b~a~vi~}j`aaa", - "deviceUUID": "d787184373a57c90653527370baf50bdcee7a7ac" - }, - "pb-IF4sU0ETNA==": { - "display_string": [ - "\ue020yuriiiiiiiiii116" - ], - "profiles": [], - "name": "\ue020yuriiiiiiiiii116", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-18 15:33:09", - "registerOn": 1670172859.681317, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172859.6813176, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172859.681328, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172859.6813293, - "lastIP": "a\u007fk~~nhajdwvavi", - "deviceUUID": "82c285a23195908c30ce61d37eda08b085d8f15c" - }, - "pb-JiNJARFYXEtAWVlAFERRXFRFF0VfQVND": { - "display_string": [ - "\ue020royiam", - "\ue030Android53267307", - "\ue030Android52047741" - ], - "profiles": [], - "name": "\ue020royiam", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-17 12:29:24", - "registerOn": 1670172867.7084131, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172867.7084136, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172867.7084224, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670173129.2934122, - "lastIP": "b}k~}jeamhajb~", - "deviceUUID": "23b0a4db661c47deb0c5e6a91814e083e2413305", - "cMsgCount": 0, - "lastMsgTime": 1670172899.263744, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4vU04bIw==": { - "display_string": [ - "\ue030Android63934668" - ], - "profiles": [], - "name": "\ue030Android63934668", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 16:53:45", - "registerOn": 1670172889.7440207, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172889.7440212, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172889.7441478, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172889.7441485, - "lastIP": "a\u007fn~}hhaigyvazk", - "deviceUUID": "ce1645af5c72e9508bb1ab2a7940a3b0931ae900" - }, - "pb-IF5WVXkpVQ==": { - "display_string": [ - "\ue030Android50225790" - ], - "profiles": [], - "name": "\ue030Android50225790", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-13 02:08:43", - "registerOn": 1670173039.3773623, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173039.3773627, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173039.377371, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173039.3773723, - "lastIP": "avh~}ihajaxve", - "deviceUUID": "641973b162542d8dd1a370b5566a01614dd3c1c9", - "cMsgCount": 0, - "lastMsgTime": 1670173094.5510375, - "lastMsg": "run run run", - "cSameMsg": 0 - }, - "pb-IF4BU0s8BA==": { - "display_string": [ - "\ue030Android63830734" - ], - "profiles": [], - "name": "\ue030Android63830734", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 23:03:34", - "registerOn": 1670173119.5594878, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173119.5594885, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319410.982448, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319410.9824493, - "lastIP": "azj~zo~}igaic{", - "deviceUUID": "ca7f2b95038dc2799782a23213c8fd8518c135b9", - "cMsgCount": 0, - "lastMsgTime": 1670173318.6612692, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFeUkdDX1tHEkVTVlFDFUlXRllG": { - "display_string": [ - "\ue020ScreechingOoze8069", - "\ue030Android6469030" - ], - "profiles": [], - "name": "\ue020ScreechingOoze8069", - "isBan": false, - "isMuted": false, - "accountAge": "2016-09-10 12:28:52", - "registerOn": 1670173147.8888347, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173147.8888354, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334768.9593174, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334768.959319, - "lastIP": "dvvcyva}i~|j", - "deviceUUID": "56d8b3078b48fa76c4d1d4471edcf8f7003cdf36" - }, - "pb-IF4lU2wxKA==": { - "display_string": [ - "\ue020AyushW1060" - ], - "profiles": [], - "name": "\ue020AyushW1060", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-11 23:33:43", - "registerOn": 1670173154.7079437, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173154.7079442, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173154.7079527, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173154.7079535, - "lastIP": "azj~zo~~`caa`", - "deviceUUID": "3b4cc9e515c3adf94f47e483f4a71bd08d12dc58" - }, - "pb-IF4lVVQoFg==": { - "display_string": [ - "\ue063CaffeineAs" - ], - "profiles": [], - "name": "\ue063CaffeineAs", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-30 01:03:01", - "registerOn": 1670173333.3859758, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173333.3859766, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173333.3859844, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173333.3859854, - "lastIP": "a~h~}jfaigwva\u007fm", - "deviceUUID": "783e4b6c2fc381c92432b022ef9970cda427a469", - "cMsgCount": 0, - "lastMsgTime": 1670174142.3896983, - "lastMsg": "yea ", - "cSameMsg": 0 - }, - "pb-IF4PVFRZMA==": { - "display_string": [ - "\ue063delrowe012" - ], - "profiles": [], - "name": "\ue063delrowe012", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-14 18:27:37", - "registerOn": 1670173377.5020025, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173377.5020032, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346422.0907545, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346422.0907564, - "lastIP": "dvvcyvczvh}", - "deviceUUID": "8c88a64fe0c7bcee47322e9209aee1327afe7ded", - "cMsgCount": 2, - "lastMsgTime": 1670243837.0458896, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4cU3oSUw==": { - "display_string": [ - "\ue063Martinphil" - ], - "profiles": [], - "name": "\ue020Martinphilipjacob132", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-10 19:13:38", - "registerOn": 1670173562.17576, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173562.175761, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324949.9201195, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670324949.9201212, - "lastIP": "a\u007fk~~nbaj`xva{j", - "deviceUUID": "42f36eaed98a11f72393c6cf098534c33aa87122" - }, - "pb-IF4NUhUaHw==": { - "display_string": [ - "\ue030Android63783914" - ], - "profiles": [], - "name": "\ue030Android63783914", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 16:14:23", - "registerOn": 1670173716.6809845, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173716.680985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263640.3606524, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670263715.958391, - "lastIP": "awj~{`~~aiaibw", - "deviceUUID": "8ec3176a8d9a90e7694cc8aa41ae6a8727c73ae6" - }, - "pb-IF5QVFRdIQ==": { - "display_string": [ - "\ue020UnrecordedTense20", - "\ue020ResoluteMainland12", - "\ue020shazan99502", - "\ue020tyagInvolvedOfficial", - "\ue030Android63785493" - ], - "profiles": [], - "name": "\ue020shazan99502", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-26 21:45:08", - "registerOn": 1670173723.7922611, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173723.7922616, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263658.4137301, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670263730.0153766, - "lastIP": "awj~{`~~aiaibw", - "deviceUUID": "26b41e6328ae665eec92fa309cafe0ed814c2493" - }, - "pb-IF4qUkw9Pw==": { - "display_string": [ - "\ue020TelegraphicTree29" - ], - "profiles": [], - "name": "\ue020TelegraphicTree29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-28 16:03:20", - "registerOn": 1670173868.2830174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173868.2830179, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342923.281576, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670342923.281577, - "lastIP": "dxvazvayi~zn", - "deviceUUID": "3b30ff5c934dc2e484e090a738b9d0ea5ecb0f76" - }, - "pb-IF4KU0waFA==": { - "display_string": [ - "\ue030Android63853549" - ], - "profiles": [], - "name": "\ue030Android63853549", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 20:21:14", - "registerOn": 1670173880.312833, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173880.3128338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173880.3128426, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173880.3128436, - "lastIP": "awa~~acaidvvi{", - "deviceUUID": "40ba4e759cdef11460bb98d4fbfbefcfb084cfac" - }, - "pb-IF4JUmdaIg==": { - "display_string": [ - "\ue020MemerBadshah", - "\ue030Android54946326" - ], - "profiles": [], - "name": "\ue020MemerBadshah", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-17 13:09:03", - "registerOn": 1670173904.42992, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173904.4299207, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173904.4299293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173904.4299302, - "lastIP": "a~h~}keajcwve}", - "deviceUUID": "ce6feadb6452fe5fb99586cc0606eceda723613f" - }, - "pb-IF43U0sjUQ==": { - "display_string": [ - "\ue063ReliableDi" - ], - "profiles": [], - "name": "\ue063ReliableDi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 17:49:55", - "registerOn": 1670173929.5760052, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173929.5760057, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344391.4228303, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670344391.4228315, - "lastIP": "a~h~}jfaigxvaxl", - "deviceUUID": "383976cf79c64e9a4ffd6417ae09615008a853c2", - "cMsgCount": 0, - "lastMsgTime": 1670174405.9152126, - "lastMsg": "sry. ", - "cSameMsg": 0 - }, - "pb-IF4yU0QOIw==": { - "display_string": [ - "\ue063Understoo2" - ], - "profiles": [], - "name": "\ue063Understoo2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 19:22:14", - "registerOn": 1670174013.8634691, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174013.8634696, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174013.86348, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174013.8634808, - "lastIP": "azo~{h~~k`aicw", - "deviceUUID": "019498090669705f2a306af7ef940362fb125ca4" - }, - "pb-IF4cU08AHA==": { - "display_string": [ - "\ue063SketchyPar" - ], - "profiles": [], - "name": "\ue063SketchyPar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 21:45:47", - "registerOn": 1670174020.8854249, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174020.885425, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174020.8854332, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174020.885434, - "lastIP": "dxvbvvbaidz", - "deviceUUID": "12f2849bcf4b27502d2cc1c3bc38171cb68d332a" - }, - "pb-IF4AVVAIUg==": { - "display_string": [ - "\ue020VerdantCircus9", - "\ue030Android57598974" - ], - "profiles": [], - "name": "\ue020VerdantCircus9", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-12 17:00:29", - "registerOn": 1670174260.2066307, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174260.2066312, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174260.206639, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174260.2066402, - "lastIP": "a\u007fk~}keah~zj", - "deviceUUID": "67250fd1e36d69cdb84203ec101203d1ca247a0d" - }, - "pb-IF4wU0EzEA==": { - "display_string": [ - "\ue020FranticAlliance82034" - ], - "profiles": [], - "name": "\ue020FranticAlliance82034", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-11 13:05:00", - "registerOn": 1670174438.5126605, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174438.512661, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259249.1921232, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259249.1921244, - "lastIP": "cxva~i~}lbaae", - "deviceUUID": "825a6d3c484f6f2475af76974c37f77bb40f0b2d" - }, - "pb-IF41U00aAg==": { - "display_string": [ - "\ue030Android63916646" - ], - "profiles": [], - "name": "\ue030Android63916646", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 15:58:52", - "registerOn": 1670174475.6080759, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174475.6080763, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174475.6080832, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174475.6080842, - "lastIP": "azo~|k~va~~`", - "deviceUUID": "3c9ee2ef878d6c4a4483094b15c6785c16473e0a" - }, - "pb-IF4rU3oHCw==": { - "display_string": [ - "\ue030Android63195782" - ], - "profiles": [], - "name": "\ue030Android63195782", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-08 15:26:50", - "registerOn": 1670174606.0686145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174606.0686152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174606.068624, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174606.068625, - "lastIP": "b}k~}jganaaj`y", - "deviceUUID": "\u0015TZW\u0003EW]R\u0007G\u0007\fYYB\u0003_PRLW^UU@X" - }, - "pb-IF4eUhIxBg==": { - "display_string": [ - "\ue063catbros7", - "\ue020GrandestShepherd22" - ], - "profiles": [], - "name": "\ue063catbros7", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-13 19:21:59", - "registerOn": 1670174776.7160783, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174776.716079, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174776.7160878, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174776.7160885, - "lastIP": "a\u007fm~~n`amhaif\u007f", - "deviceUUID": "4b5d6bbe94d109672dda984f017585fce563e0a1" - }, - "pb-IF4hVFQJPA==": { - "display_string": [ - "\ue020sheriff007gamer" - ], - "profiles": [], - "name": "\ue020sheriff007gamer", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-25 00:58:39", - "registerOn": 1670174884.0662334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174884.0662339, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670327878.9655817, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670327467.3993437, - "lastIP": "a~o~~aeaibzvb}a", - "deviceUUID": "5a88a38de9f59d848fa0aa2329888d522d5687d8", - "cMsgCount": 0, - "lastMsgTime": 1670328347.4019775, - "lastMsg": "wow draken", - "cSameMsg": 0 - }, - "pb-IF5VU3lYDA==": { - "display_string": [ - "\ue020AlienPersonnel44", - "\ue030Android61272703" - ], - "profiles": [], - "name": "\ue020AlienPersonnel44", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-22 11:33:30", - "registerOn": 1670174946.398253, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174946.3982537, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670349830.4809752, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670349830.4809766, - "lastIP": "azj~z`~~`canf", - "deviceUUID": "b12054ad1919551ca42bc4d11a0d1402a4e7bd92", - "cMsgCount": 0, - "lastMsgTime": 1670353285.1729784, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-JiNJARBTVkdCW1ZIEkRVVlVGGUFcRVRG": { - "display_string": [ - "\ue063rajanr1234", - "\ue030Android12526088" - ], - "profiles": [], - "name": "\ue063rajanr1234", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-13 11:49:54", - "registerOn": 1670174970.4428892, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174970.4428897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174970.4428973, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174970.4428983, - "lastIP": "a~o~vo~}hdaoh", - "deviceUUID": "d5930fe991df73b13e0fc02e5936504e86d430ea" - }, - "pb-IF4PU04gEw==": { - "display_string": [ - "\ue030Android63923008" - ], - "profiles": [], - "name": "\ue030Android63923008", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 20:15:00", - "registerOn": 1670175001.8491335, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175001.849134, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175001.8491435, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175001.8491442, - "lastIP": "a~h~}jgai`aib}", - "deviceUUID": "e50bfb4269794bb57884fcf368e26086400f4d17" - }, - "pb-IF5dU3UiAw==": { - "display_string": [ - "\ue020sheriffgamer007" - ], - "profiles": [], - "name": "\ue020sheriffgamer007", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 21:03:46", - "registerOn": 1670175030.9890144, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175030.989015, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175030.9890254, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175030.989026, - "lastIP": "azo~zi~~aiajcv", - "deviceUUID": "5a88a38de9f59d848fa0aa2329888d522d5687d8" - }, - "pb-IF4QU0s_Eg==": { - "display_string": [ - "\ue020RedeemingTariff52" - ], - "profiles": [], - "name": "\ue020RedeemingTariff52", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 00:17:56", - "registerOn": 1670175131.962698, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175131.9626985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318394.3460476, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670319464.202854, - "lastIP": "a}j~~naaohalg", - "deviceUUID": "ae526a45e4f0f4ba896730cc4b000af030e55e6a", - "cMsgCount": 0, - "lastMsgTime": 1670260216.7919657, - "lastMsg": "am i the only one who's lagging ", - "cSameMsg": 0 - }, - "pb-IF4IU3kKKA==": { - "display_string": [ - "\ue063VolcanoOP" - ], - "profiles": [], - "name": "\ue063VolcanoOP", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-05 15:15:17", - "registerOn": 1670175137.277485, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175137.2774854, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670350709.392531, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670350709.3925319, - "lastIP": "azo~{h~~`iana", - "deviceUUID": "850f3cacc311409811919cb1fc60c665a47ac661" - }, - "pb-IF4GVRNYVw==": { - "display_string": [ - "\ue030Android45693231" - ], - "profiles": [], - "name": "\ue030Android45693231", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-18 22:31:20", - "registerOn": 1670175158.3808932, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175158.3808937, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175158.3809023, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175158.3809032, - "lastIP": "a~m~v`~}kbajd\u007f", - "deviceUUID": "cd7fdf71362654f075816ef0d9e4c42de8019d6f" - }, - "pb-IF43VUwpNw==": { - "display_string": [ - "\ue020RedDreameater55290", - "\ue030Android52236929" - ], - "profiles": [], - "name": "\ue020RedDreameater55290", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-22 14:27:47", - "registerOn": 1670175170.194614, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175170.1946144, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175170.1946218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175170.1946225, - "lastIP": "a|o~vo~~hgajg", - "deviceUUID": "3866e016313a8964b64fdbf94302a07ba493bf62" - }, - "pb-IF4wU0gdPA==": { - "display_string": [ - "\ue020TranslucentSpeed26" - ], - "profiles": [], - "name": "\ue020TranslucentSpeed26", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-22 18:48:50", - "registerOn": 1670175210.2339947, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175210.2339954, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292675.0276132, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292675.0276148, - "lastIP": "d}va\u007fm~~ndaia|", - "deviceUUID": "18cc50fe25438fb91a54bff3ebc1f19d09d55a67" - }, - "pb-IF4gU2wxIg==": { - "display_string": [ - "\ue020\ud83c\udd76\ud835\udd86m\ud835\udd8a\u211dZ\u1b44", - "\ue030Android48199653" - ], - "profiles": [], - "name": "\ue030Android48199653", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-13 12:05:37", - "registerOn": 1670175374.7926185, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175374.7926192, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175374.792629, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175374.79263, - "lastIP": "azj~zo~za~~hf", - "deviceUUID": "d5fcef28207c5a26ea8a9a0000ab24651e20aa81" - }, - "pb-IF4hU0YdDg==": { - "display_string": [ - "\ue063NarrowHips" - ], - "profiles": [], - "name": "\ue063NarrowHips", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-18 23:04:26", - "registerOn": 1670175379.8240604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175379.824061, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307209.3611066, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307209.361108, - "lastIP": "dvvc}va{k~|h", - "deviceUUID": "af27fe203ccae0ab8aa185932b2df897859f41f1" - }, - "pb-IF4UU1AtCw==": { - "display_string": [ - "\ue030Android63983709" - ], - "profiles": [], - "name": "\ue030Android63983709", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:47:57", - "registerOn": 1670175383.8847692, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175383.8847702, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175383.8847783, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175383.8847792, - "lastIP": "a\u007fn~}hdaleaih}", - "deviceUUID": "b85aa7474eeddc07891aa5a83d9de87caac1f787" - }, - "pb-IF4dVVk5Nw==": { - "display_string": [ - "\ue030VR252448" - ], - "profiles": [], - "name": "\ue030VR252448", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-27 04:38:10", - "registerOn": 1670175514.2591097, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175514.2591102, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175514.2591188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175514.25912, - "lastIP": "dzvayl~~j~}ii", - "deviceUUID": "a047e6a2baaf04a56a637c005d502afa2028d5b3" - }, - "pb-IF5XVGQoFA==": { - "display_string": [ - "\ue063albyresto7", - "\ue030Android61395727" - ], - "profiles": [], - "name": "\ue020albyresto77", - "isBan": false, - "isMuted": false, - "accountAge": "2019-08-16 12:44:40", - "registerOn": 1670179934.9552991, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670179934.9552999, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337986.6848643, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670343380.8698602, - "lastIP": "a\u007fk~~nfajdzva\u007fi", - "deviceUUID": "cd4ad2abbf4423c6666fe271a1402981e635f147", - "cMsgCount": 1, - "lastMsgTime": 1670345681.3389263, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK": { - "display_string": [ - "\ue020IdenticalShock57" - ], - "profiles": [], - "name": "\ue020IdenticalShock57", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-24 16:00:32", - "registerOn": 1670180083.561179, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180083.5611794, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353498.5866482, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670354244.6086638, - "lastIP": "a}j~~naaoeajd\u007f", - "deviceUUID": "ae526a45e4f0f4ba896730cc4b000af030e55e6a", - "cMsgCount": 0, - "lastMsgTime": 1670355260.190159, - "lastMsg": "\ud83d\ude02", - "cSameMsg": 0 - }, - "pb-IF4rLkwp": { - "display_string": [ - "\ue063MPF", - "\ue030Android40308191", - "\ue030Android39582261", - "\ue030PC232491", - "\ue030Android38640036" - ], - "profiles": [], - "name": "\ue063MPF", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-07 02:20:26", - "registerOn": 1670180128.7830744, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180128.7830749, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340072.0114744, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670343186.1785004, - "lastIP": "a~j~~kdajazvb{a", - "deviceUUID": "953545bd5aff970cb214eddf944dad1dedd540a0", - "cMsgCount": 0, - "lastMsgTime": 1670351830.0519254, - "lastMsg": "alright gn cya o.o", - "cSameMsg": 0 - }, - "pb-IF4pUmQcPA==": { - "display_string": [ - "\ue030PC363206" - ], - "profiles": [], - "name": "\ue030PC363206", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-05 16:56:08", - "registerOn": 1670180268.9322007, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180268.9322014, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315792.8151095, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315792.8151107, - "lastIP": "dvvb\u007fl~~idak`", - "deviceUUID": "\u0003X]", - "cMsgCount": 1, - "lastMsgTime": 1670315951.3718553, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4iVxJYAA==": { - "display_string": [ - "\ue063BeamingMos" - ], - "profiles": [], - "name": "\ue063BeamingMos", - "isBan": false, - "isMuted": false, - "accountAge": "2018-07-19 14:24:07", - "registerOn": 1670180317.4847248, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180317.4847255, - "totaltimeplayer": 0, - "warnCount": 3, - "lastWarned": 1670180772.7773814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670180317.484736, - "lastIP": "a\u007fk~{a~}lbajc~", - "deviceUUID": "9637ab5346733ccc64193a8c1aa3ffb417a5c4ea", - "cMsgCount": 0, - "lastMsgTime": 1670180772.7774034, - "lastMsg": "chutya", - "cSameMsg": 0 - }, - "pb-IF4RU086HQ==": { - "display_string": [ - "\ue030Android63952571" - ], - "profiles": [], - "name": "\ue030Android63952571", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 19:00:44", - "registerOn": 1670180319.1790404, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180319.179041, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670180319.1790483, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670180319.179049, - "lastIP": "azn~~`daii}vaxm", - "deviceUUID": "720f329bb6e3c83cbc216b9060ad3053549598c0" - }, - "pb-IF4HU3hTEA==": { - "display_string": [ - "\ue020LunaticTactician7288" - ], - "profiles": [], - "name": "\ue020LunaticTactician7288", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 15:23:48", - "registerOn": 1670180438.5559657, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180438.5559664, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670180438.5559757, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670180438.5559769, - "lastIP": "d|vbzj~}lhai`w", - "deviceUUID": "720d78a5e12a5820b99277503405d1044718b185", - "cMsgCount": 0, - "lastMsgTime": 1670180473.529602, - "lastMsg": "/kick 233", - "cSameMsg": 0 - }, - "pb-IF4vVRUFVA==": { - "display_string": [ - "\ue063BoomBaam11" - ], - "profiles": [], - "name": "\ue063BoomBaam11", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-10 15:52:43", - "registerOn": 1670180534.8579652, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180534.8579657, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341743.0532963, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670349804.3890324, - "lastIP": "a}j~~ncaidyva}`", - "deviceUUID": "eb31b3da7f27d4919ad3eec0fdde0a796e6a4c63", - "cMsgCount": 0, - "lastMsgTime": 1670353291.9179745, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4gUlAgLw==": { - "display_string": [ - "\ue063GodplayerO", - "\ue030Android56987886" - ], - "profiles": [], - "name": "\ue063GodplayerO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-17 15:31:52", - "registerOn": 1670180593.472905, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180593.4729054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670180593.472914, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670180593.4729147, - "lastIP": "a\u007fk~~mfajcxvavi", - "deviceUUID": "45ef30024b982ad672c5aa5c35f3598e068f61d5" - }, - "pb-IF4yV2ERXQ==": { - "display_string": [ - "\ue063matinnosra", - "\ue030Android27574057", - "\ue030Android54041956", - "\ue030Android56258742" - ], - "profiles": [], - "name": "\ue063matinnosra", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-13 19:12:12", - "registerOn": 1670180904.4921591, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670181017.6537411, - "totaltimeplayer": 0, - "warnCount": 4, - "lastWarned": 1670181017.6522706, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670180904.4921694, - "lastIP": "hyvexvaanb", - "deviceUUID": "cef621b0277dc5523a8bc5f70f9a3286ecd9cae9", - "cMsgCount": 0, - "lastMsgTime": 1670181017.6515322, - "lastMsg": "/timer t=0.01 rise 141 repeat", - "cSameMsg": 0 - }, - "pb-IF4-U0wpMQ==": { - "display_string": [ - "\ue063UbeTaTtA69" - ], - "profiles": [], - "name": "\ue063UbeTaTtA69", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 14:01:05", - "registerOn": 1670180930.2976832, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180930.297684, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670181840.361041, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670182261.8190577, - "lastIP": "a~j~~kdaleajdx", - "deviceUUID": "77602c07f9db8960e506de5d3b475d90aeb6b4f2", - "cMsgCount": 0, - "lastMsgTime": 1670181911.7992318, - "lastMsg": "bos", - "cSameMsg": 0 - }, - "pb-IF4sVVM5Mg==": { - "display_string": [ - "\ue020PlaneProcession32" - ], - "profiles": [], - "name": "\ue020PlaneProcession32", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-29 18:34:53", - "registerOn": 1670181029.707517, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181029.7075174, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181029.7075264, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181029.7075274, - "lastIP": "eajawvbzvbx", - "deviceUUID": "\u0015" - }, - "pb-IF4wUkwlJg==": { - "display_string": [ - "\ue030Android58555746" - ], - "profiles": [], - "name": "\ue030Android58555746", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-27 12:53:26", - "registerOn": 1670181432.258699, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181432.2586994, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181432.2587972, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181432.2587984, - "lastIP": "cxva~i~~meajdy", - "deviceUUID": "\u0015S\u000fYWE\u0002XP" - }, - "pb-IF4PU08bLA==": { - "display_string": [ - "\ue063ArylAwesom" - ], - "profiles": [], - "name": "\ue063ArylAwesom", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:47:54", - "registerOn": 1670181470.3667445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181470.3667448, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181470.3667536, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181470.3667543, - "lastIP": "a\u007fk~yvazi~~lh", - "deviceUUID": "e15131b31c70cca389487091b2e691fb0d831695" - }, - "pb-IF4CVBYJCA==": { - "display_string": [ - "\ue020\u0e21\u0e34\u0e01\u0e0b\u0e4c3707" - ], - "profiles": [], - "name": "\ue020\u0e21\u0e34\u0e01\u0e0b\u0e4c3707", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-21 13:06:28", - "registerOn": 1670181481.5857174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181481.585718, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181481.5857265, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181481.5857275, - "lastIP": "bxva{m~~m`aif~", - "deviceUUID": "2b0fa052d8521e1c98973c76a9fb169fa0f92030" - }, - "pb-IF4XUxYINw==": { - "display_string": [ - "\ue063EpidemicDi" - ], - "profiles": [], - "name": "\ue063EpidemicDi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-18 11:38:13", - "registerOn": 1670181656.3552763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181656.3552768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181656.355285, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181656.3552861, - "lastIP": "a}j~~oba`faiey", - "deviceUUID": "6f6deb21127b9d0da2611a917a1b0fc53f369303" - }, - "pb-IF42U04kLg==": { - "display_string": [ - "\ue020Suryakd04" - ], - "profiles": [], - "name": "\ue020Suryakd04", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 20:46:28", - "registerOn": 1670181846.622074, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181846.6220746, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181846.6220837, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670184617.3156433, - "lastIP": "a}j~~ohaadaka", - "deviceUUID": "e0d7bb0df9e322216bfa620f8c6f28626b9bfc09" - }, - "pb-IF4hU0sNIQ==": { - "display_string": [ - "\ue030Android63860546" - ], - "profiles": [], - "name": "\ue030Android63860546", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-13 20:50:03", - "registerOn": 1670181849.7272325, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181849.7272332, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181849.7272422, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181849.7272434, - "lastIP": "b\u007fi~~miaja|vg}", - "deviceUUID": "dc92e885e04e12ec73b5e4b45dbd14a42a3b3c1d" - }, - "pb-IF4XU0gNJg==": { - "display_string": [ - "\ue063NoName14481" - ], - "profiles": [], - "name": "\ue063NoName14481", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 18:43:55", - "registerOn": 1670182030.6101754, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182030.6101763, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331216.3470125, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670330946.9153974, - "lastIP": "a}j~~naambaii", - "deviceUUID": "cd8311900ff88886ba021feae3e7228a1d72d0ce", - "cMsgCount": 0, - "lastMsgTime": 1670331681.9099255, - "lastMsg": "bs.dk", - "cSameMsg": 0 - }, - "pb-IF43U3opMw==": { - "display_string": [ - "\ue020ChintuKarthik1123" - ], - "profiles": [], - "name": "\ue020ChintuKarthik1123", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-06 15:45:10", - "registerOn": 1670182094.5465784, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182094.546579, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670355726.8570192, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670355726.8570204, - "lastIP": "b}k~~`fai`|va}h", - "deviceUUID": "a621451965b8d02c893d6750a7a5467812aa9c46" - }, - "pb-IF4tVUQjFA==": { - "display_string": [ - "\ue063TopicalFur" - ], - "profiles": [], - "name": "\ue063TopicalFur", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-07 15:29:51", - "registerOn": 1670182322.3295085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182322.329509, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670182322.3295176, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670182322.3295186, - "lastIP": "awh~~adaigajg", - "deviceUUID": "a445e50b1797a0020a3edac6a51b6c99704477d3" - }, - "pb-IF4-U08hVg==": { - "display_string": [ - "\ue020CompatibleUsage45" - ], - "profiles": [], - "name": "\ue020CompatibleUsage45", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 07:31:08", - "registerOn": 1670182467.805151, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182467.8051517, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670182467.8051605, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670182467.8051612, - "lastIP": "axo~}jbanaaia\u007f", - "deviceUUID": "\u0015" - }, - "pb-IF4uU0sRXA==": { - "display_string": [ - "\ue020MilderUprising53" - ], - "profiles": [], - "name": "\ue020MilderUprising53", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 11:54:26", - "registerOn": 1670182513.9974043, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182513.9974053, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670356777.6254933, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670356777.625495, - "lastIP": "dvvczvavi~~hi", - "deviceUUID": "59bce742c0a1fa913915aaff7a6064746cc1cd1a" - }, - "pb-IF5RU2IPJg==": { - "display_string": [ - "\ue063harishsola" - ], - "profiles": [], - "name": "\ue063harishsola", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-29 17:47:58", - "registerOn": 1670182764.0775707, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182764.0775712, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230959.783054, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670232238.1917896, - "lastIP": "azo~|`~}h`aiaz", - "deviceUUID": "7d56650f437299a6bd8960e064ea3d457eda038e", - "cMsgCount": 0, - "lastMsgTime": 1670185453.0047183, - "lastMsg": "i have 1000 mother box", - "cSameMsg": 0 - }, - "pb-IF4wU0EoDA==": { - "display_string": [ - "\ue030Android63224716" - ], - "profiles": [], - "name": "\ue030Android63224716", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-10 01:45:35", - "registerOn": 1670182879.3172565, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182879.3172572, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670182879.3172646, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670189686.4128318, - "lastIP": "axo~}l`amdami", - "deviceUUID": "6b36bdd08c7147b461afdc0e93f296ce71035e1d" - }, - "pb-IF4jU0EgDQ==": { - "display_string": [ - "\ue020ClearerArmy31", - "\ue030Android63230750" - ], - "profiles": [], - "name": "\ue020ClearerArmy31", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-10 10:51:46", - "registerOn": 1670183060.987385, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670183060.9873855, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670183060.9873936, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670184099.3532708, - "lastIP": "dvvc{va|i~}jg", - "deviceUUID": "c488f4c3e758a5bcd6b558cabf8d82d8d19f29df" - }, - "pb-IF4DV2ItCQ==": { - "display_string": [ - "\ue020CrushedWolf82537", - "\ue030Android38093614" - ], - "profiles": [], - "name": "\ue020CrushedWolf82537", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-14 22:32:59", - "registerOn": 1670183077.0730386, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670183077.0730393, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253271.9784403, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253271.9784415, - "lastIP": "a\u007fk~~`baifyvf~", - "deviceUUID": "9d4840f4952018dea68626b815f7f861b7219341", - "cMsgCount": 1, - "lastMsgTime": 1670184179.93401, - "lastMsg": "mass", - "cSameMsg": 0 - }, - "pb-IF4rVUcbVQ==": { - "display_string": [ - "\ue063Fancydinne" - ], - "profiles": [], - "name": "\ue063Fancydinne", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-28 21:37:03", - "registerOn": 1670183407.1803548, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670183407.1803555, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670183407.1803656, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670183407.180367, - "lastIP": "a{n~~afaldalh", - "deviceUUID": "09b4f28c01b8e01233298b6f49c580db0b60dc09", - "cMsgCount": 0, - "lastMsgTime": 1670184234.3789642, - "lastMsg": "shtt bro", - "cSameMsg": 0 - }, - "pb-IF40U0ZaPw==": { - "display_string": [ - "\ue030Android63614116" - ], - "profiles": [], - "name": "\ue030Android63614116", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 00:22:26", - "registerOn": 1670183825.6317015, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670183825.6317022, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670183852.6655056, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670183825.6317124, - "lastIP": "a\u007fj~~`iaj~z", - "deviceUUID": "a459d791f361a90efde64fd117e0ed79eb7002d5", - "cMsgCount": 0, - "lastMsgTime": 1670183852.6654449, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4DU0g6EQ==": { - "display_string": [ - "\ue020GreenishHoplite57" - ], - "profiles": [], - "name": "\ue020GreenishHoplite57", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 00:41:02", - "registerOn": 1670183931.2869294, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670183931.28693, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215810.964327, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215810.9643285, - "lastIP": "aw`~~kcakaaah", - "deviceUUID": "\u0015R[P\u0007D\u0002UX\u0002BS\u000eWY\u0015\u0005\\YXCY^VULW", - "cMsgCount": 1, - "lastMsgTime": 1670215931.9689183, - "lastMsg": "kick this betrayer ", - "cSameMsg": 0 - }, - "pb-JiNJARBSXEJGWVhIGEJQVFJDGUVXRllL": { - "display_string": [ - "\ue063NoName49837", - "\ue030Android53527602" - ], - "profiles": [], - "name": "\ue063NoName49837", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-01 18:22:17", - "registerOn": 1670184626.6953363, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670184626.695337, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670184626.6953464, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670184626.6953475, - "lastIP": "dvva{va|k~~lc", - "deviceUUID": "90eff49e1851306e47d52c94e244089837e81963" - }, - "pb-IF49VFcGNw==": { - "display_string": [ - "\ue030Android62958044" - ], - "profiles": [], - "name": "\ue030Android62958044", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 16:24:08", - "registerOn": 1670184672.81187, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670184672.811871, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670184672.811898, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670184672.8118994, - "lastIP": "h|vb}i~yn~}hb", - "deviceUUID": "185782ffcdef05a28bf4977f55b7fe3102383293" - }, - "pb-IF5dU20MFg==": { - "display_string": [ - "\ue020redrubydiamond94", - "\ue030Android62423539", - "\ue030Android62423712" - ], - "profiles": [], - "name": "\ue020redrubydiamond94", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-09 21:22:56", - "registerOn": 1670185009.0298007, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670185009.0298014, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670185009.0298119, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670185498.361606, - "lastIP": "b}k~~`gaib~vb|n", - "deviceUUID": "bcd9ad437e7af846befaebafc83e3be6274a96a3" - }, - "pb-IF4IIUU6": { - "display_string": [ - "\ue020davidson6466", - "\ue030Android19307812" - ], - "profiles": [], - "name": "\ue020davidson6466", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-01 20:11:42", - "registerOn": 1670185229.7549117, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670185229.7549121, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670185824.7601225, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670185544.5390012, - "lastIP": "azo~|`~}viw", - "deviceUUID": "270ea10f9661b5a8496af158ae2bed43c2864133", - "cMsgCount": 0, - "lastMsgTime": 1670185824.759949, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4jVVgTXA==": { - "display_string": [ - "\ue063KingsKing2" - ], - "profiles": [], - "name": "\ue063KingsKing2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-21 22:43:03", - "registerOn": 1670185492.9849513, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670185492.9849517, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670185492.9849613, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670185492.9849622, - "lastIP": "a\u007fn~~acakganf", - "deviceUUID": "8e0ce439269486aeb728ec14658e563d3137e54a" - }, - "pb-IF4RU08gKg==": { - "display_string": [ - "\ue030Android63948779" - ], - "profiles": [], - "name": "\ue030Android63948779", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 23:20:58", - "registerOn": 1670185521.0481658, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670185521.048167, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338365.9936512, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670356505.6594527, - "lastIP": "b\u007fh~~heaja}vaza", - "deviceUUID": "cb7e00f8b3e41e9998855dd3ce7a04642007cd71" - }, - "pb-IF42U05cDw==": { - "display_string": [ - "\ue063Measurabl7" - ], - "profiles": [], - "name": "\ue063Measurabl7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 02:49:26", - "registerOn": 1670185543.1754837, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670185543.1754842, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670185543.1754913, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670185543.175492, - "lastIP": "awo~~`iaig}vaxj", - "deviceUUID": "9bb765c21af3cb1d28fc4ff77961800866aa4e45" - }, - "pb-IF4TUxEoKg==": { - "display_string": [ - "\ue020TUJABAAP005", - "\ue030Android60088344" - ], - "profiles": [], - "name": "\ue020TUJABAAP005", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-29 14:15:10", - "registerOn": 1670186322.760002, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670186322.7600024, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670217665.9859152, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670217665.9859161, - "lastIP": "a\u007fn~~aeaibaifx", - "deviceUUID": "532d59db41fbfa8e777af032be92c3ee9c99fa55", - "cMsgCount": 0, - "lastMsgTime": 1670218286.3535814, - "lastMsg": "devil lavdya ", - "cSameMsg": 0 - }, - "pb-IF4FUksNDg==": { - "display_string": [ - "\ue020capnStranger" - ], - "profiles": [], - "name": "\ue020capnStranger", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-27 09:11:22", - "registerOn": 1670186510.547155, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670186510.5471554, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670186510.5471644, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670186510.5471652, - "lastIP": "a~o~}igaii|vcv", - "deviceUUID": "c8cf8234e381979f72d54a80b25a3d5ecf02a877", - "cMsgCount": 0, - "lastMsgTime": 1670188635.8347824, - "lastMsg": "sure", - "cSameMsg": 0 - }, - "pb-IF4JU3IpKw==": { - "display_string": [ - "\ue030Android62438169" - ], - "profiles": [], - "name": "\ue030Android62438169", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-04 02:54:02", - "registerOn": 1670187022.1597023, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187022.159703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187022.1597118, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187022.1597128, - "lastIP": "eaieyvhvva{l", - "deviceUUID": "afb7f8b98d738c2e87a10cd2146d56e17f0427e6" - }, - "pb-JiNJVxFcUUVJW15EGE9XVldGF0ZdTlNF": { - "display_string": [ - "\ue063swaprocks4", - "\ue030Android750766" - ], - "profiles": [], - "name": "\ue063swaprocks4", - "isBan": false, - "isMuted": false, - "accountAge": "2016-07-24 04:00:48", - "registerOn": 1670187024.0225737, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187024.0225747, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187024.0225837, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187024.022585, - "lastIP": "ayh~}khaoiaj`}", - "deviceUUID": "2ebc6a23fa9ba1ddf1d4b9257c4ee5c211e75d06" - }, - "pb-IF4PU0s9PQ==": { - "display_string": [ - "\ue030Android63813378" - ], - "profiles": [], - "name": "\ue030Android63813378", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 00:22:01", - "registerOn": 1670187157.5254676, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187157.525468, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187157.5254757, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187157.525477, - "lastIP": "a\u007fn~}hfajavva\u007fj", - "deviceUUID": "46e0bda220b4c7dd11de21758e31db178124eecb" - }, - "pb-IF4UUkJZKw==": { - "display_string": [ - "\ue020LoudArithmetic11" - ], - "profiles": [], - "name": "\ue020LoudArithmetic11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-18 19:35:49", - "registerOn": 1670187378.6117237, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187378.6117244, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187378.6117315, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187378.6117322, - "lastIP": "b\u007fi~}hiaif~vev", - "deviceUUID": "\u0015WZ\u0003WD\u0004\u000eUU@QUQWGSZQSLS\\USF" - }, - "pb-IF4sVVgTAg==": { - "display_string": [ - "\ue063WonderfulH" - ], - "profiles": [], - "name": "\ue063WonderfulH", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-25 23:56:29", - "registerOn": 1670187407.5496073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187407.5496085, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343599.6506577, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343599.6506593, - "lastIP": "a\u007fn~~ahan~{k", - "deviceUUID": "4c83d3e6437e3ea3f5ef3e3a0de6daa489b1c5f2" - }, - "pb-IF5TV1o8XQ==": { - "display_string": [ - "\ue063MadBanjoPl" - ], - "profiles": [], - "name": "\ue063MadBanjoPl", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-28 16:25:52", - "registerOn": 1670187548.9578001, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187548.9578009, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187548.95781, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187548.9578109, - "lastIP": "azo~{m~|n~\u007f", - "deviceUUID": "24461bfe2e9da2133d8266bb0f06e278e9cb1c50" - }, - "pb-IF4CVUkKKg==": { - "display_string": [ - "\ue020pulkitfirani" - ], - "profiles": [], - "name": "\ue020pulkitfirani", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-10 17:29:59", - "registerOn": 1670187747.6106598, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187747.6106603, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187747.6106682, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187747.6106694, - "lastIP": "dvvazn~w`~~ne", - "deviceUUID": "ed63ea232d99af1e6bb2e6c7752087abf325cc5a" - }, - "pb-JiNJARBfVUtBVFhCEERZUlNEGUBbRFRF": { - "display_string": [ - "\ue063Nihilisti2", - "\ue030Android16830059" - ], - "profiles": [], - "name": "\ue063Nihilisti2", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-10 23:27:14", - "registerOn": 1670188006.897376, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188006.8973763, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670359466.4233384, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670359466.4233398, - "lastIP": "b\u007fk~xn~~`haif|", - "deviceUUID": "72824515eeb4d487c6be4b60c9028b22c19606dc" - }, - "pb-IF49Ploi": { - "display_string": [ - "\ue020SniperRookie8431" - ], - "profiles": [], - "name": "\ue020SniperRookie8431", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-17 16:04:45", - "registerOn": 1670188137.0221465, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188137.0221477, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235657.839489, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670235657.8394904, - "lastIP": "azo~|l~y`~za", - "deviceUUID": "985b17a4976c8db1c0182b3638b370cb18d37405" - }, - "pb-IF4gHGlS": { - "display_string": [ - "\ue063Matt0so" - ], - "profiles": [], - "name": "\ue063Matt0so", - "isBan": false, - "isMuted": false, - "accountAge": "2018-06-29 05:11:26", - "registerOn": 1670188184.4751937, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188184.4751945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188184.4752045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670188184.4752054, - "lastIP": "a|i~\u007fvavo~|", - "deviceUUID": "d36bc3d0d68062a0d66062c6eb29ef1affbf1bf3" - }, - "pb-IF4GU1AiDw==": { - "display_string": [ - "\ue063SoochowDri" - ], - "profiles": [], - "name": "\ue063SoochowDri", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 02:34:12", - "registerOn": 1670188249.3898501, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188249.3898506, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188249.3898587, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670188249.38986, - "lastIP": "a\u007fk~}h`aia}ve\u007f", - "deviceUUID": "b20d21827258dab80a8e1a44d527a558290b5809" - }, - "pb-IF4HU3YGBw==": { - "display_string": [ - "\ue020CompanionableRag46" - ], - "profiles": [], - "name": "\ue020CompanionableRag46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 13:54:32", - "registerOn": 1670188271.7963076, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188271.796308, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188271.7963173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670188271.7963185, - "lastIP": "b~j~~hdajbzvava", - "deviceUUID": "cfa218afabdea403196b42b1b90b2fba65d1e7bd", - "cMsgCount": 0, - "lastMsgTime": 1670188708.742672, - "lastMsg": "wth", - "cSameMsg": 0 - }, - "pb-IF4TU0I4Ew==": { - "display_string": [ - "\ue063FastestThi" - ], - "profiles": [], - "name": "\ue063FastestThi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-17 23:08:49", - "registerOn": 1670188289.5418484, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188289.5418491, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188289.5418575, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670189018.0435832, - "lastIP": "d~vb|a~}iiaia~", - "deviceUUID": "a68bae10c5c6d289187d26259bca9143dd1be04d" - }, - "pb-IF4-UEgO": { - "display_string": [ - "\ue063kishordevl" - ], - "profiles": [], - "name": "\ue063kishordevl", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-11 00:17:43", - "registerOn": 1670188595.035446, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188595.0354466, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188595.0354564, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670189452.6745129, - "lastIP": "b\u007fj~~oiaaeaii", - "deviceUUID": "2ab154d67bbfe10e29b08d9de1c503929ff8f042", - "cMsgCount": 0, - "lastMsgTime": 1670189428.5453143, - "lastMsg": "\ud83d\ude0e", - "cSameMsg": 0 - }, - "pb-IF4VUhMcPw==": { - "display_string": [ - "\ue020PickyStatement25", - "\ue030Android50630763" - ], - "profiles": [], - "name": "\ue020PickyStatement25", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-21 17:31:34", - "registerOn": 1670188638.933082, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188638.9330826, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188638.9330914, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670188638.933092, - "lastIP": "dvvcyvb|j~~ja", - "deviceUUID": "4806913813935e604d81ab3b7db5830b0be20868" - }, - "pb-IF4qU0gfFA==": { - "display_string": [ - "\ue030Android63726577" - ], - "profiles": [], - "name": "\ue030Android63726577", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 18:23:36", - "registerOn": 1670189036.7102885, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670189036.7102892, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670189036.7102988, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670192009.690021, - "lastIP": "i|va~`~~oca`f", - "deviceUUID": "\u0015T_SQBWZT" - }, - "pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF": { - "display_string": [ - "\ue063iTzAnuragP" - ], - "profiles": [], - "name": "\ue020iTzAnuragP", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-26 12:06:14", - "registerOn": 1670189967.7119339, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670189967.7119348, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670347681.2469018, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670356426.2502937, - "lastIP": "b}k~}kean`aic|", - "deviceUUID": "6b4184293fa6e868fb9f4ae11285c7ae8d24e639", - "cMsgCount": 0, - "lastMsgTime": 1670356638.9502404, - "lastMsg": "xd", - "cSameMsg": 0 - }, - "pb-IF4wU0UjMg==": { - "display_string": [ - "\ue020\uc5b8\uc9c11984" - ], - "profiles": [], - "name": "\ue020\uc5b8\uc9c11984", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 11:46:52", - "registerOn": 1670189980.7305636, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670189980.7305644, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670189980.7306015, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670189980.7306027, - "lastIP": "axi~vo~~l`alf", - "deviceUUID": "3b9c946fcd7254c80cf75186a43b03d09ba552b0" - }, - "pb-IF4tU00IIg==": { - "display_string": [ - "\ue030Android63886122" - ], - "profiles": [], - "name": "\ue030Android63886122", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 12:26:47", - "registerOn": 1670190340.3067062, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670190340.3067071, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670190340.3067188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670190340.30672, - "lastIP": "a\u007fk~{l~{a~}ld", - "deviceUUID": "e1aa54c5a06e1d9472a223b7955a72abcb2d613b" - }, - "pb-IF4oUmspEQ==": { - "display_string": [ - "\ue063PILEQUIFBI", - "\ue030Android55814559" - ], - "profiles": [], - "name": "\ue063PILEQUIFBI", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-05 00:04:03", - "registerOn": 1670190409.5864458, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670190409.5864463, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670190409.5864553, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670190409.586456, - "lastIP": "a|m~~jeajc}va}h", - "deviceUUID": "d19931a554146e77a343fa11baae89566d8fd14c" - }, - "pb-IF4PU0UlAw==": { - "display_string": [ - "\ue063MunicipalJ" - ], - "profiles": [], - "name": "\ue063MunicipalJ", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-03 00:12:52", - "registerOn": 1670190830.7465851, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670190830.7465858, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670352446.763485, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670354231.5572276, - "lastIP": "a\u007fn~~aeaicaicy", - "deviceUUID": "86da5fd261f3e1090a9f1ab41ca24b9e21ad6dae", - "cMsgCount": 0, - "lastMsgTime": 1670354173.4405031, - "lastMsg": "ghe vadun mang", - "cSameMsg": 0 - }, - "pb-IF4mU0cfXA==": { - "display_string": [ - "\ue020StingyOccurrence56" - ], - "profiles": [], - "name": "\ue020StingyOccurrence56", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 13:06:23", - "registerOn": 1670191106.0276513, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191106.0276518, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670191106.0276601, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670191106.027661, - "lastIP": "a\u007fk~}hcaje{vbv", - "deviceUUID": "cdab009cd97031e609408b16b5b61921dc4a97c6" - }, - "pb-IF4rUk0bPQ==": { - "display_string": [ - "\ue020VascularDeficiency37" - ], - "profiles": [], - "name": "\ue020VascularDeficiency37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-06 07:24:25", - "registerOn": 1670191208.4187162, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191208.418717, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319169.1032193, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670327716.2861583, - "lastIP": "a}j~zj~yj~~kd", - "deviceUUID": "\u0015WTY\u0003M\u0002ZV\u0005A\u0002YW\u0004\u0015\u0003ZXTES[SSL", - "cMsgCount": 0, - "lastMsgTime": 1670327815.455282, - "lastMsg": "ice ballson", - "cSameMsg": 0 - }, - "pb-IF4mVxRZXA==": { - "display_string": [ - "\ue020PSSG24" - ], - "profiles": [], - "name": "\ue020PSSG24", - "isBan": false, - "isMuted": false, - "accountAge": "2018-08-01 14:15:49", - "registerOn": 1670191223.4327536, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191223.4327545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670191223.4327629, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670191223.4327638, - "lastIP": "a}j~~nhajc{vayj", - "deviceUUID": "a11cd4ddee9b4178f3885f3f7f410158a6f72b52" - }, - "pb-IF5SVxkfLw==": { - "display_string": [ - "\ue063SapphireM2" - ], - "profiles": [], - "name": "\ue063SapphireM2", - "isBan": false, - "isMuted": false, - "accountAge": "2018-08-22 15:56:29", - "registerOn": 1670191296.8638763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191296.8638768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670191296.8639014, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670191296.8639026, - "lastIP": "a\u007fk~~kaaa`alb", - "deviceUUID": "b846fa346be995cf50d27bc05f5b7b645b6c5784", - "cMsgCount": 0, - "lastMsgTime": 1670191770.4773633, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4iVEo4Lg==": { - "display_string": [ - "\ue063OddFeeling", - "\ue030Android38370482" - ], - "profiles": [], - "name": "\ue063OddFeeling", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-24 13:52:31", - "registerOn": 1670191480.0653112, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191480.065312, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670293432.526496, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670298940.909374, - "lastIP": "d|vbzj~|k~}jg", - "deviceUUID": "23f6bd6f26786ccd5239bf1651dbbd30b242098e" - }, - "pb-IF49VW5cKQ==": { - "display_string": [ - "\ue020UnusualJavelina35259" - ], - "profiles": [], - "name": "\ue020UnusualJavelina35259", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-12 16:00:22", - "registerOn": 1670191817.5878084, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191817.5878088, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670191817.5878155, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670191817.5878162, - "lastIP": "b}k~~oha`can", - "deviceUUID": "a8a19876857411672d8b030000bad9abd34adf90" - }, - "pb-IF4nVXktLw==": { - "display_string": [ - "\ue020LocomotiveVigilance7", - "\ue030Android63599101", - "\ue030Android40913582" - ], - "profiles": [], - "name": "\ue020LocomotiveVigilance7", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-28 12:02:54", - "registerOn": 1670191857.4362824, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191857.4362829, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670191857.4362922, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670191857.436293, - "lastIP": "awi~yo~~hdang", - "deviceUUID": "01194af824c318483a48d56b0381697283f66770" - }, - "pb-IF48U0gcBw==": { - "display_string": [ - "\ue063WeakerDist" - ], - "profiles": [], - "name": "\ue063WeakerDist", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 01:39:20", - "registerOn": 1670191940.7448688, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191940.7448695, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670272668.177606, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670272668.177608, - "lastIP": "eai`}v`aja|", - "deviceUUID": "18e7fcefd9f285966c5fee0bdd3213eb833abac2" - }, - "pb-IF48U00qNA==": { - "display_string": [ - "\ue063OverallCon", - "\ue030Android63944420" - ], - "profiles": [], - "name": "\ue063OverallCon", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 13:09:12", - "registerOn": 1670192134.568987, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670192134.5689874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670192134.5689964, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670192134.5689971, - "lastIP": "b\u007fo~~mdajd|vbw", - "deviceUUID": "81911cd56a54fa89f1d87ef93d27ca05db1535ae" - }, - "pb-IF4rU3omIw==": { - "display_string": [ - "\ue020JKS4302" - ], - "profiles": [], - "name": "\ue020JKS4302", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-06 10:23:53", - "registerOn": 1670192243.1353755, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670192243.1353765, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670192243.1353834, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670192243.1353846, - "lastIP": "azo~{l~~ogaje|", - "deviceUUID": "68b3aa1273cdd46e83ddbe562fe1db2ed3f25ced" - }, - "pb-IF4nUmsiNg==": { - "display_string": [ - "\ue020PurposefulOffence22", - "\ue030Android55843945" - ], - "profiles": [], - "name": "\ue020PurposefulOffence22", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-05 08:10:09", - "registerOn": 1670192677.3555582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670192677.3555586, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670192677.3555667, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670192677.3555677, - "lastIP": "cwvd|va|h~~ob", - "deviceUUID": "d0e052b32c49fd99e15d7ce93c0370e65b612111" - }, - "pb-IF4jU08dIQ==": { - "display_string": [ - "\ue063Roofy156" - ], - "profiles": [], - "name": "\ue063Roofy156", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 09:17:25", - "registerOn": 1670192911.5168316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670192911.5168324, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670192911.5168402, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670194337.2890995, - "lastIP": "b\u007fk~~ogai`|vbzl", - "deviceUUID": "50a9b4fbd1bb8edec3d786b099c08c2f7cca5feb" - }, - "pb-IF4sUhAOXA==": { - "display_string": [ - "\ue063NiuNiu0808" - ], - "profiles": [], - "name": "\ue063NiuNiu0808", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-07 22:52:08", - "registerOn": 1670193548.959455, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670193548.9594555, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670193548.959463, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670193548.9594636, - "lastIP": "ewvawj~y`~za", - "deviceUUID": "42c2f80d156691fcb95ba5ce24d4397b341de0cf", - "cMsgCount": 1, - "lastMsgTime": 1670194264.464536, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4yVGIYPQ==": { - "display_string": [ - "\ue063CozyProkil" - ], - "profiles": [], - "name": "\ue063CozyProkil", - "isBan": false, - "isMuted": false, - "accountAge": "2019-08-23 15:28:56", - "registerOn": 1670193813.8826878, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670193813.8826885, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670193813.8826978, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670193813.8826985, - "lastIP": "axm~~ofajiaia~", - "deviceUUID": "bd7d1e9a75fa95bd84cf4d37d5418398072e34db", - "cMsgCount": 0, - "lastMsgTime": 1670193859.1313167, - "lastMsg": "wow", - "cSameMsg": 0 - }, - "pb-LV4FURgIUhBIWg4VRBQDV1IRQg==": { - "display_string": [ - "\ue063AshuAmbros", - "\ue030PC538677" - ], - "profiles": [], - "name": "\ue063AshuAmbros", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-09 20:09:19", - "registerOn": 1670194485.1817415, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670194485.1817424, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670194485.1817498, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670194485.1817508, - "lastIP": "a\u007fn~}hcajbzvgw", - "deviceUUID": "d6a5794887314f25a6e325b77be3bc716659fa79" - }, - "pb-IF4BU04oMw==": { - "display_string": [ - "\ue020gaviota36497love" - ], - "profiles": [], - "name": "\ue020gaviota36497love", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 04:55:18", - "registerOn": 1670194644.0175629, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670194644.0175636, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670194644.0175722, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670194644.017573, - "lastIP": "awa~}ifaih\u007fvb}m", - "deviceUUID": "e941c8c60608c1773e4f2949f495b0e086a0da25" - }, - "pb-IF4LUk4-DA==": { - "display_string": [ - "\ue063Blueeesky3" - ], - "profiles": [], - "name": "\ue063Blueeesky3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-11 11:49:23", - "registerOn": 1670197135.9496934, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670197135.9496942, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670197135.9497228, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670197135.9497242, - "lastIP": "a{h~}icaifxva|k", - "deviceUUID": "8230321007aeb9286841900725f3574349e432dc" - }, - "pb-IF4XUhElCA==": { - "display_string": [ - "\ue063josesoulkn", - "\ue030Android50645693" - ], - "profiles": [], - "name": "\ue063josesoulkn", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-07 21:17:09", - "registerOn": 1670197534.3173604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670197534.3173609, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670197534.3173683, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670197534.317369, - "lastIP": "b\u007fh~|o~~heaidv", - "deviceUUID": "0b9fad259d07074debe8009e1a333d651362cb7f" - }, - "pb-IF49VUIhKA==": { - "display_string": [ - "\ue063FellowStro" - ], - "profiles": [], - "name": "\ue063FellowStro", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-24 05:29:38", - "registerOn": 1670197961.5889416, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670197961.588942, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670198429.6769404, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670197961.5889525, - "lastIP": "a~a~vl~~h~}md", - "deviceUUID": "c0b46edabde9560c21d934548cffcf66f938f546", - "cMsgCount": 0, - "lastMsgTime": 1670198429.676879, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4HVHJaLw==": { - "display_string": [ - "\ue020PeekingNomad673", - "\ue030Android43830732" - ], - "profiles": [], - "name": "\ue020PeekingNomad673", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-01 10:20:13", - "registerOn": 1670198370.0109055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670198370.0109062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670198370.0109131, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670198370.010914, - "lastIP": "axo~}jbancajax", - "deviceUUID": "ac338d85b02270561a64b425c6cb943fe20f9624" - }, - "pb-IF4-U3M7Ug==": { - "display_string": [ - "\ue020RighteousRein29" - ], - "profiles": [], - "name": "\ue020RighteousRein29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 20:12:13", - "registerOn": 1670198399.1632311, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670198399.163232, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670198399.163242, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670198399.163243, - "lastIP": "b}k~~`gaia{vawn", - "deviceUUID": "a2c13dfea614e1ab18268dd38d5382f618de4fba" - }, - "pb-IF5RU00kKw==": { - "display_string": [ - "\ue020\u1d04\u029c\u1d1c\u1d1b\u1d1b\u1d00" - ], - "profiles": [], - "name": "\ue020\u1d04\u029c\u1d1c\u1d1b\u1d1b\u1d00", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 11:31:02", - "registerOn": 1670198477.4666266, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670198477.4666271, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298562.5574703, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670309952.300242, - "lastIP": "dzva}i~w`~}ie", - "deviceUUID": "57e1fdd987c0bb93c8334c7c873614967a59b6d1" - }, - "pb-IF5RU1AaLw==": { - "display_string": [ - "\ue063RainyParce" - ], - "profiles": [], - "name": "\ue063RainyParce", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 19:23:33", - "registerOn": 1670198520.9151702, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670198520.9151711, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320123.8296862, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320123.829688, - "lastIP": "a~j~~kdakhaje|", - "deviceUUID": "02896c13454838be0c0432b4bfe4053bce969627" - }, - "pb-IF5RU21cVw==": { - "display_string": [ - "\ue063TriplePie5" - ], - "profiles": [], - "name": "\ue020TriplePie57", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-05 01:51:33", - "registerOn": 1670200161.1822622, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200161.1822634, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670359516.6048977, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670359613.9484622, - "lastIP": "avm~~a~~jeaad", - "deviceUUID": "103a226cd7a5dd3b20a212f96fe61a10d932c4ea" - }, - "pb-IF4DUhMJFg==": { - "display_string": [ - "\ue0200deathriot0", - "\ue030Android54074532" - ], - "profiles": [], - "name": "\ue0200deathriot0", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-19 08:19:03", - "registerOn": 1670200200.9522152, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200200.9522161, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670200200.9522262, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670200200.952227, - "lastIP": "a\u007fk~yj~~mcai`v", - "deviceUUID": "5735b6409a66c90ff90bfb6ef59d98c4e758f3ca" - }, - "pb-IF5WDVcI": { - "display_string": [ - "\ue020K\u00c5RT\u00d5S", - "\ue030Android18315499" - ], - "profiles": [], - "name": "\ue020K\u00c5RT\u00d5S", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-06 19:33:55", - "registerOn": 1670200306.7026906, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200306.7026913, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670200306.7027001, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670200306.702701, - "lastIP": "b}k~}jhaigwva\u007f`", - "deviceUUID": "72fc56ace4706edb441eaad293e2a88baa0022a4" - }, - "pb-IF4uU2ImAg==": { - "display_string": [ - "\ue030Android61067824" - ], - "profiles": [], - "name": "\ue030Android61067824", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-08 06:54:05", - "registerOn": 1670200367.757479, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200367.7574797, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670200367.75749, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670200367.7574909, - "lastIP": "azo~|j~~hbaih~", - "deviceUUID": "ccc8ae6a59665a05014b9d56352fb2dc2557cf42" - }, - "pb-IF48VFIlDQ==": { - "display_string": [ - "\ue020HotPinkBuccaneer9071" - ], - "profiles": [], - "name": "\ue020HotPinkBuccaneer9071", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-03 16:47:08", - "registerOn": 1670200519.9847865, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200519.984787, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670200519.984796, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670200519.9847972, - "lastIP": "azo~|`~}iga`f", - "deviceUUID": "d9933385fd007adf9daf61e8a6a76089c99ad8ca" - }, - "pb-IF4uU0MJMA==": { - "display_string": [ - "\ue030VR329281" - ], - "profiles": [], - "name": "\ue030VR329281", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 18:55:43", - "registerOn": 1670200602.427418, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200602.427419, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670200602.4274273, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670201257.5039372, - "lastIP": "f{va~a~}l~~kc", - "deviceUUID": "a456af23317cf7fc25c1dc65f0b352fdb2882409" - }, - "pb-IF4sU20DHw==": { - "display_string": [ - "\ue063IdioticPyr" - ], - "profiles": [], - "name": "\ue063IdioticPyr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-19 20:34:25", - "registerOn": 1670201094.221963, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201094.221964, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201094.2219732, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670201094.2219744, - "lastIP": "awi~~`haigyvaxk", - "deviceUUID": "44578695ed09980f1d5f43478cb40acdbfabbf32" - }, - "pb-IF5QU3ISKA==": { - "display_string": [ - "\ue020NewGamer456ProGamer", - "\ue030Android62039138" - ], - "profiles": [], - "name": "\ue020NewGamer456ProGamer", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-27 04:14:12", - "registerOn": 1670201194.6394901, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201194.6394908, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201625.1812983, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670202964.9359689, - "lastIP": "axo~}k`aih|vi", - "deviceUUID": "658c484bad61cc95241a1430db50761e6efce3fa", - "cMsgCount": 0, - "lastMsgTime": 1670201246.4659836, - "lastMsg": "xd", - "cSameMsg": 0 - }, - "pb-IF5cU1E5Mw==": { - "display_string": [ - "\ue063Moonanez" - ], - "profiles": [], - "name": "\ue063Moonanez", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 19:24:46", - "registerOn": 1670201337.3716342, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201337.3716352, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201337.3716452, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670201337.3716462, - "lastIP": "b\u007fj~~n`akfai`y", - "deviceUUID": "189d5063dde6aa25392acf1b37fea939217c905f" - }, - "pb-IF4LMxRa": { - "display_string": [ - "\ue020Dineshkd624" - ], - "profiles": [], - "name": "\ue020Dineshkd624", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-01 13:18:27", - "registerOn": 1670201523.8008842, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201523.8008847, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670202051.7249374, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670204064.6482582, - "lastIP": "a\u007fn~}iaajavvi}", - "deviceUUID": "aac0266b2225b4473b76c7a202f2e8b5c35cdc29" - }, - "pb-IF4WVHIiAQ==": { - "display_string": [ - "\ue063MVPMaGnuMG", - "\ue030Android30517211" - ], - "profiles": [], - "name": "\ue063MVPMaGnuMG", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-03 13:49:52", - "registerOn": 1670201525.8096514, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201525.8096519, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201525.8096592, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670201525.80966, - "lastIP": "dvvcxvayh~wa", - "deviceUUID": "d98ffb60cc150587b3b9474a18efad9599cbd607" - }, - "pb-IF4iU08nNw==": { - "display_string": [ - "\ue030Android63987828" - ], - "profiles": [], - "name": "\ue030Android63987828", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 06:24:09", - "registerOn": 1670201663.631497, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201663.6314976, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201663.6315067, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670201663.6315079, - "lastIP": "axm~~ofaabaig~", - "deviceUUID": "0603d61c95312f75f10be673f4cc1b3d2c2fdae0" - }, - "pb-IF4SU3kCMQ==": { - "display_string": [ - "\ue063SanguinePa" - ], - "profiles": [], - "name": "\ue063SanguinePa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-04 18:02:52", - "registerOn": 1670202122.27969, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670202122.2796907, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670202122.2796996, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670202122.2797005, - "lastIP": "a\u007fk~v`~~k`aid~", - "deviceUUID": "855df29fb09aa4b7b74af033e5868119c649844e" - }, - "pb-IF4oU04eNg==": { - "display_string": [ - "\ue063LethargicM" - ], - "profiles": [], - "name": "\ue063LethargicM", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 11:26:10", - "registerOn": 1670202164.5037704, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670202164.503771, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670202164.50378, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670202164.5037806, - "lastIP": "dvva}n~zo~}ke", - "deviceUUID": "0cbfe82996e3120c6cb59e62c8d9303d077d4e74" - }, - "pb-IF4gUk8RCw==": { - "display_string": [ - "\ue020IGNOBLETRASLATION65" - ], - "profiles": [], - "name": "\ue020IGNOBLETRASLATION65", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-16 01:45:38", - "registerOn": 1670202435.379121, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670202435.3791218, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670202435.3791292, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670202435.37913, - "lastIP": "awa~}iiaoeajc~", - "deviceUUID": "c34924d2ea94c46bad1ad5ae64ab0b7b7b3ab0c9", - "cMsgCount": 1, - "lastMsgTime": 1670202898.073434, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5SUlA8Lw==": { - "display_string": [ - "\ue020pausaltkrym" - ], - "profiles": [], - "name": "\ue020pausaltkrym", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-10 03:55:51", - "registerOn": 1670202497.6851404, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670202497.685141, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670202497.685149, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670202497.68515, - "lastIP": "a|j~~mdao~~od", - "deviceUUID": "71198d60f0a8b21db8eb6ce36cca8ee4553018a1" - }, - "pb-IF4CVWFaUw==": { - "display_string": [ - "\ue020SATHISHmax1206" - ], - "profiles": [], - "name": "\ue020SATHISHmax1206", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-08 13:48:19", - "registerOn": 1670203021.4523964, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203021.452397, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670203021.4524057, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670203021.4524074, - "lastIP": "dvvb\u007fn~~igaje~", - "deviceUUID": "763443dfb1db3637f87a372db533bacf0efd791e" - }, - "pb-IF4BV1U9LA==": { - "display_string": [ - "\ue020praneshbhat14051998" - ], - "profiles": [], - "name": "\ue020praneshbhat14051998", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-13 16:28:02", - "registerOn": 1670203708.8609905, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203708.8609912, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670203708.8610024, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670203708.8610039, - "lastIP": "azo~{m~}m~~jg", - "deviceUUID": "d1c42c757a26b1250c14b6c6de3318bb6da18f52" - }, - "pb-IF4tVVIDCw==": { - "display_string": [ - "\ue063anshudec14" - ], - "profiles": [], - "name": "\ue063anshudec14", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-22 22:57:52", - "registerOn": 1670203795.9650452, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203795.9650457, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670203795.9650557, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670203795.9650564, - "lastIP": "a}m~~n~~iaaj", - "deviceUUID": "91c7dbd6bca3d7280efec88e4154d83b80c67f97" - }, - "pb-IF5SVxkkLQ==": { - "display_string": [ - "\ue020gokulse7en" - ], - "profiles": [], - "name": "\ue020gokulse7en", - "isBan": false, - "isMuted": false, - "accountAge": "2018-08-19 18:00:10", - "registerOn": 1670203919.4198425, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203919.4198434, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670203919.4198532, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670203919.4198542, - "lastIP": "dvvcxvb}i~~he", - "deviceUUID": "2e6457a7d513f195ac4e456baf9c74d33b4b5dc8" - }, - "pb-IF40U0oYBg==": { - "display_string": [ - "\ue063Socrates43" - ], - "profiles": [], - "name": "\ue063Socrates43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 04:59:09", - "registerOn": 1670203946.553916, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203946.5539167, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269389.5119388, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670269389.5119402, - "lastIP": "b\u007fh~wo~}iaajaz", - "deviceUUID": "888ef94e3fc5880d0f37456c7b4527075b0cd968" - }, - "pb-IF4HU0wiCQ==": { - "display_string": [ - "\ue020AgreeableSemblance50" - ], - "profiles": [], - "name": "\ue020AgreeableSemblance50", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 19:45:08", - "registerOn": 1670203971.5977027, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203971.5977032, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670203971.5977118, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670203971.597713, - "lastIP": "a~o~va~}hiaiiy", - "deviceUUID": "9f4c54ebaabf82a040ecea4e086c012ca9e28586" - }, - "pb-IF4RU0EbUA==": { - "display_string": [ - "\ue030Android63276533" - ], - "profiles": [], - "name": "\ue030Android63276533", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-12 14:20:13", - "registerOn": 1670204401.1261804, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670204401.126181, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670204401.1261885, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670217872.7436073, - "lastIP": "b}k~}m~yk~~lf", - "deviceUUID": "ffdac6082f24e8138cda55d2b295e502c27b0d49", - "cMsgCount": 0, - "lastMsgTime": 1670219146.0837212, - "lastMsg": "whats with people hatin using bombs the games called bombsquad", - "cSameMsg": 0 - }, - "pb-IF4SU09eKw==": { - "display_string": [ - "\ue020SharpIcthyosaur49205" - ], - "profiles": [], - "name": "\ue020SharpIcthyosaur49205", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 18:51:12", - "registerOn": 1670205340.167161, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670205340.167162, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670205340.1671715, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670205340.1671727, - "lastIP": "a~h~zl~~mdaaa", - "deviceUUID": "0832031cc31659343ba666382c167f3884424438" - }, - "pb-IF4MU0wxNQ==": { - "display_string": [ - "\ue063GrandComma" - ], - "profiles": [], - "name": "\ue063GrandComma", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 06:24:05", - "registerOn": 1670205779.5616522, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670205779.561653, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670205779.561664, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670205779.5616653, - "lastIP": "awa~}hcaje}vb|i", - "deviceUUID": "46475493b2c3d49b5d960779a137c614e8287176" - }, - "pb-IF4dU2YgFg==": { - "display_string": [ - "\ue020RancidSpecialty27", - "\ue030Android63823303", - "\ue030Android63823291", - "\ue030Android63823319", - "\ue030Android63823332" - ], - "profiles": [], - "name": "\ue020RancidSpecialty27", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-20 12:53:24", - "registerOn": 1670205825.7090957, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670205825.7090964, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670205825.7091148, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670205825.709116, - "lastIP": "a~m~~ndaja~vb{n", - "deviceUUID": "92d9296de90f9cd3d0798e0a658bdd0a390b0e6b" - }, - "pb-IF49U3YpAA==": { - "display_string": [ - "\ue020HArSH463" - ], - "profiles": [], - "name": "\ue020HArSH463", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-20 18:05:15", - "registerOn": 1670206063.5226865, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206063.522687, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307408.2160504, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307408.2160518, - "lastIP": "azo~|j~~hiaigy", - "deviceUUID": "2d9f05b0d6be639d0bccbafb8b00e9b785662e57" - }, - "pb-IF5XU1EvNw==": { - "display_string": [ - "\ue020LegibleAgility44" - ], - "profiles": [], - "name": "\ue020LegibleAgility44", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 09:35:55", - "registerOn": 1670206081.6254022, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206081.6254027, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206081.6254113, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670206081.625412, - "lastIP": "d}va~i~~k~~oc", - "deviceUUID": "4ef843047449a9812ef4d3bacb281781e12598c5" - }, - "pb-IF4jVUctHQ==": { - "display_string": [ - "\ue020vimal2680" - ], - "profiles": [], - "name": "\ue020vimal2680", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-24 20:58:44", - "registerOn": 1670206311.4067304, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206311.4067314, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347801.721738, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670347801.721739, - "lastIP": "dvvc}va{m~}mc", - "deviceUUID": "19affb5b0fde1722f6f593df0cf6aca45d2f3e8a", - "cMsgCount": 0, - "lastMsgTime": 1670266903.656488, - "lastMsg": "ckd pk aaya", - "cSameMsg": 0 - }, - "pb-IF4eU0s9Pw==": { - "display_string": [ - "\ue020FearlessCamel86718" - ], - "profiles": [], - "name": "\ue020FearlessCamel86718", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 14:41:52", - "registerOn": 1670206342.5204551, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206342.5204556, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206342.5204635, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670222658.961414, - "lastIP": "a~a~vl~yo~vo", - "deviceUUID": "3fdc73fe2725eb7b0ecaa7730889ee7add9991c8" - }, - "pb-IF48U0wiKw==": { - "display_string": [ - "\ue020FortuitousManeuver41" - ], - "profiles": [], - "name": "\ue020FortuitousManeuver41", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 21:21:36", - "registerOn": 1670206364.604718, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206364.604719, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206364.6047294, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670206364.6047304, - "lastIP": "a\u007fk~~oiaiiyva\u007fn", - "deviceUUID": "d2d3f81fb2fa06a55fd6e6dff01e8e67fc6f5ff3" - }, - "pb-IF4VVBYtVg==": { - "display_string": [ - "\ue063Unshakabl4", - "\ue030Android33358855" - ], - "profiles": [], - "name": "\ue063Unshakabl4", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-20 14:51:37", - "registerOn": 1670206405.7893627, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206405.7893631, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206405.7893734, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670206405.789374, - "lastIP": "a~j~}ieaneajb", - "deviceUUID": "ba9cecee08162a19cb532ce724f4d8f4750cf3a5" - }, - "pb-IF5VUhQYUw==": { - "display_string": [ - "\ue063henricoBS" - ], - "profiles": [], - "name": "\ue063henricoBS", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-13 18:39:38", - "registerOn": 1670206506.4081454, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206506.408146, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206506.4081552, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670206506.4081564, - "lastIP": "axh~}leaacaif}", - "deviceUUID": "ab2871ebbb6443e8b25f4ecbabce9eca2393d228" - }, - "pb-IF4AU2kSAQ==": { - "display_string": [ - "\ue063ColderInfl", - "\ue030Android61620310" - ], - "profiles": [], - "name": "\ue063ColderInfl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-02 18:29:03", - "registerOn": 1670206523.1916451, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206523.1916456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206523.1916537, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670206523.1916544, - "lastIP": "d}va\u007fn~~ohanh", - "deviceUUID": "d1bb93dbe4507729d5833e2618873b0addd14084" - }, - "pb-IF4SU3U-Lw==": { - "display_string": [ - "\ue063PsychicalA" - ], - "profiles": [], - "name": "\ue063PsychicalA", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-16 23:43:31", - "registerOn": 1670207098.1655893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670207098.1655898, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254161.3763914, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254161.3763926, - "lastIP": "azj~zo~}keajb\u007f", - "deviceUUID": "cfc1c4b12129b1a294e58e21cc5a154ab5259ca7" - }, - "pb-IF4tUkIlKg==": { - "display_string": [ - "\ue030Android57611965" - ], - "profiles": [], - "name": "\ue030Android57611965", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-20 09:47:30", - "registerOn": 1670207446.2561529, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670207446.2561533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241881.916218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241881.9162195, - "lastIP": "a~o~}ieaj`yva{a", - "deviceUUID": "6c47affd2dca119a304abe6763f029a8b0cc79f0" - }, - "pb-IF4LU0ZTBw==": { - "display_string": [ - "\ue063NoName11978" - ], - "profiles": [], - "name": "\ue063NoName11978", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 11:06:37", - "registerOn": 1670208211.9260342, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208211.9260347, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670208211.9260426, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670208211.9260435, - "lastIP": "a\u007fn~}ifajdzvaxi", - "deviceUUID": "d68c17ce96e18e9b564af6e66534cd0ea39d9622" - }, - "pb-IF4gV1gCMQ==": { - "display_string": [ - "\ue020EliteWallaby35692" - ], - "profiles": [], - "name": "\ue020EliteWallaby35692", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-30 18:38:49", - "registerOn": 1670208744.8268719, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208744.8268726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336250.569319, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336250.5693204, - "lastIP": "dvvc}vawi~~la", - "deviceUUID": "99be2477367eb7f79e4d5b7bce090b3a5917a0d4", - "cMsgCount": 0, - "lastMsgTime": 1670307879.9956932, - "lastMsg": "insta I'd :atharvapawaskar_000", - "cSameMsg": 0 - }, - "pb-IF4TV3c_UQ==": { - "display_string": [ - "\ue063Brownmunde" - ], - "profiles": [], - "name": "\ue063Brownmunde", - "isBan": false, - "isMuted": false, - "accountAge": "2019-01-07 18:16:40", - "registerOn": 1670208761.8902287, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208761.8902292, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670208761.8902378, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670208761.8902385, - "lastIP": "dvvcyvawm~~je", - "deviceUUID": "0a9c5a8347e1de2df3534e40839cf22de21d93aa" - }, - "pb-IF5cU1E7Ig==": { - "display_string": [ - "\ue030Android63976036" - ], - "profiles": [], - "name": "\ue030Android63976036", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 13:51:27", - "registerOn": 1670208793.0052679, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208793.0052686, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670208793.0052762, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670209816.3350446, - "lastIP": "a~h~}jgajcaje~", - "deviceUUID": "88a490162e758d98ebe4b4921f4103f13d9791bc" - }, - "pb-LV4FAxcNBxBGXVtIQhAEUlxKGA==": { - "display_string": [ - "\ue020DroopyGriffin227", - "\ue030Android13950847", - "\ue030Android52421760" - ], - "profiles": [], - "name": "\ue063DroopyGrif", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-30 21:34:00", - "registerOn": 1670208826.414777, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208826.4147778, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250751.3987823, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670250751.3987832, - "lastIP": "azo~|l~~jbalh", - "deviceUUID": "342b57be5f15a4ad0025572d776cace9b5d0a71c" - }, - "pb-IF4pUxUDDQ==": { - "display_string": [ - "\ue063CulturalJa" - ], - "profiles": [], - "name": "\ue063CulturalJa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-14 19:12:56", - "registerOn": 1670208882.3057125, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208882.3057132, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336961.3543587, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336961.3543603, - "lastIP": "a|o~vo~vl~~id", - "deviceUUID": "da57110c5f4973bb04c80667c2462b4f0cf77e0b", - "cMsgCount": 0, - "lastMsgTime": 1670252049.1669688, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4JU0gtLA==": { - "display_string": [ - "\ue063TiredBrai2", - "\ue030Android53619054" - ], - "profiles": [], - "name": "\ue063TiredBrai2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 23:19:18", - "registerOn": 1670208999.7007556, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208999.7007565, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670208999.7007663, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670208999.7007675, - "lastIP": "d}va~i~}haakf", - "deviceUUID": "758100926e8aebd9f50ce724f5fe7d40114f3fc0", - "cMsgCount": 2, - "lastMsgTime": 1670209635.9368687, - "lastMsg": "see", - "cSameMsg": 0 - }, - "pb-IF40VREoKw==": { - "display_string": [ - "\ue030Android45452286" - ], - "profiles": [], - "name": "\ue030Android45452286", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-09 08:48:01", - "registerOn": 1670209175.3151407, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209175.3151412, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670302751.697148, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670302751.6971495, - "lastIP": "awk~~oaajgaih", - "deviceUUID": "\u0015R\b\u0007UMWX\u0004S\u0017VZYP\u0011XTQWLRXWQ" - }, - "pb-IF4tU24-Kw==": { - "display_string": [ - "\ue030Android62079867" - ], - "profiles": [], - "name": "\ue030Android62079867", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 20:27:57", - "registerOn": 1670209198.4533582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209198.4533587, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342489.6994224, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670342489.6994238, - "lastIP": "a\u007fn~}jbai`xva{l", - "deviceUUID": "fd963c6c84761c0d1d23d10116681cb3ed5d180f" - }, - "pb-IF4VVFIREg==": { - "display_string": [ - "\ue063Antibioti8" - ], - "profiles": [], - "name": "\ue063Antibioti8", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-10 01:53:51", - "registerOn": 1670209261.7040546, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209261.7040553, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209261.7040648, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209261.704066, - "lastIP": "azh~~hgaj`{vax`", - "deviceUUID": "8bfab885957a8123fdc4ed54914d9ef4001bec05" - }, - "pb-IF4zU3chAg==": { - "display_string": [ - "\ue020DaringQuotation17" - ], - "profiles": [], - "name": "\ue020DaringQuotation17", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-24 12:22:19", - "registerOn": 1670209277.7931867, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209277.7931871, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209277.7931972, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209277.793198, - "lastIP": "a\u007fn~}iaajbzvbz", - "deviceUUID": "85d3cccbf8da2726ede469442f687183befb110d", - "cMsgCount": 0, - "lastMsgTime": 1670209499.5314763, - "lastMsg": "the vidiya payalae", - "cSameMsg": 0 - }, - "pb-IF5XU00EDA==": { - "display_string": [ - "\ue063ElectiveEa" - ], - "profiles": [], - "name": "\ue063ElectiveEa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-05 18:56:05", - "registerOn": 1670209428.535042, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209428.5350425, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341263.3606474, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670343373.834761, - "lastIP": "a{m~}mea`~~`f", - "deviceUUID": "85ff9eab1e4c24ed89a8146ad4664bb092a95fe2", - "cMsgCount": 0, - "lastMsgTime": 1670341597.4745479, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF42U047LA==": { - "display_string": [ - "\ue063InvidiousP" - ], - "profiles": [], - "name": "\ue063InvidiousP", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 22:23:44", - "registerOn": 1670209439.3423843, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209439.3423848, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209439.342394, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209439.3423955, - "lastIP": "awa~~nbaieaic", - "deviceUUID": "a35d228e9e1cbd9b6bb906ba9e8adef6e15e716c" - }, - "pb-IF5QU1I4Pw==": { - "display_string": [ - "\ue063Relentles6" - ], - "profiles": [], - "name": "\ue063Relentles6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 02:30:24", - "registerOn": 1670209635.0177755, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209635.0177765, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209635.0177858, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209635.017787, - "lastIP": "axm~~ofaogaie|", - "deviceUUID": "59600ef6e10c6e500e00bccd6be2b693ee25096d" - }, - "pb-IF4HU3pSKA==": { - "display_string": [ - "\ue020SonorousManager14542" - ], - "profiles": [], - "name": "\ue020SonorousManager14542", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-05 13:00:51", - "registerOn": 1670209675.1301246, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209675.1301248, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209675.1301343, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209859.479255, - "lastIP": "a\u007fn~}ifajd\u007fva\u007fm", - "deviceUUID": "3e77c84887ea919f37f4da1b812cc33eb1598270" - }, - "pb-IF48U0kZJg==": { - "display_string": [ - "\ue020UnplannedReward53" - ], - "profiles": [], - "name": "\ue020UnplannedReward53", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-27 17:07:04", - "registerOn": 1670209869.871095, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209869.8710957, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209869.8711042, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670209879.5369675, - "lastIP": "bxvf|vb|m~}h", - "deviceUUID": "8ea84b9f7c3bac7bd72e6d4dff8110e2c9c70d7d" - }, - "pb-IF4BU09dUg==": { - "display_string": [ - "\ue030Android63974931" - ], - "profiles": [], - "name": "\ue030Android63974931", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 09:05:12", - "registerOn": 1670209949.081315, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209949.0813155, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209949.0814724, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209949.0814734, - "lastIP": "cyvhzva\u007fo~}id", - "deviceUUID": "c16440ed3e1bd5de591ef9063024c8e6049fea0f" - }, - "pb-IF4NVWMEXA==": { - "display_string": [ - "\ue020mrdhruv09" - ], - "profiles": [], - "name": "\ue020mrdhruv09", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-28 08:56:22", - "registerOn": 1670209959.1384113, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209959.1384118, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209959.13842, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209959.1384213, - "lastIP": "azo~|j~|m~}ma", - "deviceUUID": "42cd7aa48cb95368a6cc4d70be6dbe105b9462dc" - }, - "pb-IF49U2otCQ==": { - "display_string": [ - "\ue020DastardlyVortex59872" - ], - "profiles": [], - "name": "\ue020DastardlyVortex59872", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-04 08:42:51", - "registerOn": 1670210009.6987329, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210009.6987336, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210009.6987443, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210009.6987453, - "lastIP": "a\u007fk~~kcaib\u007fva{n", - "deviceUUID": "1c31ff1fbb254027f022a5cedf67cd212f44782a" - }, - "pb-IF4GU08eVA==": { - "display_string": [ - "\ue030Android63984495" - ], - "profiles": [], - "name": "\ue030Android63984495", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 18:19:56", - "registerOn": 1670210054.763385, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210054.7633858, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210054.7633955, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210054.763397, - "lastIP": "fvvayh~|i~z", - "deviceUUID": "e2951b29503caa89f889aab4cd8cd3cf5bdfafce" - }, - "pb-IF4zVUQEUw==": { - "display_string": [ - "\ue030Android51304540" - ], - "profiles": [], - "name": "\ue030Android51304540", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-09 13:25:38", - "registerOn": 1670210396.5905266, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210396.590527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210396.5905366, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210396.5905378, - "lastIP": "dvva{l~}khak`", - "deviceUUID": "27af06f53aea7a7691254ece64d101e75f7cc146" - }, - "pb-IF5TVU5aMA==": { - "display_string": [ - "\ue020Divaagarhockeyplayer" - ], - "profiles": [], - "name": "\ue020Divaagarhockeyplayer", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-21 13:02:43", - "registerOn": 1670210583.331977, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210583.3319774, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321415.6460853, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670322636.1200976, - "lastIP": "azo~zi~~abaih|", - "deviceUUID": "bdef5a480ebaeb581acbb098bd4b4ab8603abbd2" - }, - "pb-IF4xU0cAHA==": { - "display_string": [ - "\ue020InSaneHarsh1726", - "\ue020Harshkhabde140", - "\ue030Android63927875" - ], - "profiles": [], - "name": "\ue020InSaneHarsh1726", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 13:18:49", - "registerOn": 1670210600.384467, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210600.3844674, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210600.3844767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210600.3844774, - "lastIP": "azj~zo~}`~~jb", - "deviceUUID": "bd4d5ec98ceeed344e312952bd66b119fa7d5efc" - }, - "pb-IF4oUxYTCw==": { - "display_string": [ - "\ue020ShockPark152" - ], - "profiles": [], - "name": "\ue020ShockPark152", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-20 21:06:43", - "registerOn": 1670210682.677213, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210682.6772134, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210682.677223, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210682.6772237, - "lastIP": "azj~zo~}jcaihz", - "deviceUUID": "4fdbc382da114d69e7e8114f5d510222a03ab96f" - }, - "pb-IF5UUnUpMw==": { - "display_string": [ - "\ue020CoincidentalBelt39" - ], - "profiles": [], - "name": "\ue020CoincidentalBelt39", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-13 15:04:52", - "registerOn": 1670210684.6924808, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210684.6924813, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210684.6924896, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210684.6924906, - "lastIP": "axm~~ofamfamd", - "deviceUUID": "af70a108de6bcbc6dc4ed6e4e78aefe6d9494044" - }, - "pb-IF4QU3kvLg==": { - "display_string": [ - "\ue030Android63096875" - ], - "profiles": [], - "name": "\ue030Android63096875", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-03 12:59:24", - "registerOn": 1670212075.5992491, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212075.5992496, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252924.8042846, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252924.8042865, - "lastIP": "a\u007fn~}j`ai`wvb~n", - "deviceUUID": "a8948e96c7c1ef8dc62074cce06b621a85b5841a" - }, - "pb-IF4oU0khUg==": { - "display_string": [ - "\ue063shrirangam" - ], - "profiles": [], - "name": "\ue063shrirangam", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-26 18:11:33", - "registerOn": 1670212331.2883577, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212331.2883582, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296552.381981, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296552.3819823, - "lastIP": "azo~|l~~h~wo", - "deviceUUID": "c39d2e6cdfa3a78969b5d63978521d254a86ad69" - }, - "pb-IF4NU0s9Ig==": { - "display_string": [ - "\ue020MenialValidation36", - "\ue030Android56307058" - ], - "profiles": [], - "name": "\ue020MenialValidation36", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 20:50:34", - "registerOn": 1670212397.6337645, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212397.6337657, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334229.6408854, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334229.6408873, - "lastIP": "azo~zi~~mia`f", - "deviceUUID": "0cb9213a4caa572207426ecaa0e643b027987e0a" - }, - "pb-IF4oU004KQ==": { - "display_string": [ - "\ue030Android63888799" - ], - "profiles": [], - "name": "\ue030Android63888799", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 20:54:09", - "registerOn": 1670212418.6012237, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212418.6012247, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346716.1687467, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346716.1687477, - "lastIP": "a\u007fn~~aea`~}n", - "deviceUUID": "e6195de22eab0e6d41c74d545e28ed2a1fd6b819" - }, - "pb-IF42U08mNA==": { - "display_string": [ - "\ue063ClimaticFi" - ], - "profiles": [], - "name": "\ue063ClimaticFi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 11:40:15", - "registerOn": 1670212455.7493985, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212455.749399, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212455.7494092, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212455.7494104, - "lastIP": "bxvexvawj~za", - "deviceUUID": "44bc6a51eb3ff62e845e0ec6a47c3a4cf3e1b895" - }, - "pb-IF4pU08BVA==": { - "display_string": [ - "\ue030Android63970828" - ], - "profiles": [], - "name": "\ue030Android63970828", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 19:18:21", - "registerOn": 1670212458.8738706, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212458.873871, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212458.8738801, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212458.873881, - "lastIP": "a\u007fn~}h`aogalb", - "deviceUUID": "c535d3beaedf37efae00768e70bede898a9efdcf" - }, - "pb-IF4-U0Y9KQ==": { - "display_string": [ - "\ue020GracefulFoliage30" - ], - "profiles": [], - "name": "\ue020GracefulFoliage30", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 09:06:27", - "registerOn": 1670212757.2102232, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212757.210224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212757.2102337, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212757.210235, - "lastIP": "dvvazvb{j~~ah", - "deviceUUID": "6fc20ac21f4840ce14b86fc0d5c93e6aa13a3bf7" - }, - "pb-IF4oUxAGPQ==": { - "display_string": [ - "\ue020TejGamerNt" - ], - "profiles": [], - "name": "\ue020TejGamerNt", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-26 11:19:47", - "registerOn": 1670212816.1726687, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212816.1726694, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340002.7717102, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340002.7717116, - "lastIP": "azj~zo~}ibaiav", - "deviceUUID": "f57f66f318b3e63fa8b311219b51ba198dcaedf7", - "cMsgCount": 0, - "lastMsgTime": 1670340888.4010434, - "lastMsg": "ok aja", - "cSameMsg": 0 - }, - "pb-JiNJARFdVEVHXVdHGUJYXVRHFkNWQ1dH": { - "display_string": [ - "\ue063JollyRange", - "\ue030Android8684941" - ], - "profiles": [], - "name": "\ue063Pillain", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-02 11:09:52", - "registerOn": 1670212825.1813996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212825.1814003, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212825.1814084, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670212825.1814094, - "lastIP": "awj~}vg|vawn", - "deviceUUID": "a96d13777134b726d457f814510cf3a29b9b3bb7" - }, - "pb-IF5SU0kcBg==": { - "display_string": [ - "\ue063Monopolis2" - ], - "profiles": [], - "name": "\ue063Monopolis2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 21:46:37", - "registerOn": 1670212907.4636776, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212907.4636781, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212907.463688, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212907.4636889, - "lastIP": "azo~{a~~ldand", - "deviceUUID": "ff1aa486377a8b2b3e643385151468a4e9acb4df" - }, - "pb-IF4KV2lYIw==": { - "display_string": [ - "\ue020Jalindarabhang", - "\ue030Android28829019" - ], - "profiles": [], - "name": "\ue020Jalindarabhang", - "isBan": false, - "isMuted": false, - "accountAge": "2018-10-24 23:02:53", - "registerOn": 1670212908.8116398, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212908.8116403, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212908.8116498, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212908.8116505, - "lastIP": "azj~zo~}hhaicw", - "deviceUUID": "eae05177f2f3a0f0b7004842f87902145a2a6eda" - }, - "pb-IF5UVWk7Aw==": { - "display_string": [ - "\ue063ShamInform" - ], - "profiles": [], - "name": "\ue020ShamInformation21", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-20 20:00:48", - "registerOn": 1670213033.9959471, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213033.9959476, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347898.0829804, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670347898.0829813, - "lastIP": "gwvayk~~hiajay", - "deviceUUID": "4ae957168db3fd706d8cedea18be84309f56b2dd", - "cMsgCount": 1, - "lastMsgTime": 1670214256.5457413, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4XU1AvJA==": { - "display_string": [ - "\ue030Android63983529" - ], - "profiles": [], - "name": "\ue030Android63983529", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:07:00", - "registerOn": 1670213157.8638418, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213157.8638425, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670213157.8638513, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670213157.8638523, - "lastIP": "a}i~}a~xo~y`", - "deviceUUID": "abe87a8d2e2ce073d86f1d05bfbf5a91d2a1a6de" - }, - "pb-IF41VRATBA==": { - "display_string": [ - "\ue020GraniteInventor13" - ], - "profiles": [], - "name": "\ue020GraniteInventor13", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-06 13:30:38", - "registerOn": 1670213204.797234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213204.7972348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670213204.7972426, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670213204.7972436, - "lastIP": "a\u007fn~~adaii}vb{h", - "deviceUUID": "eb6add6187cebf529b6a08cf31630925b56adde6" - }, - "pb-JiNJARBbU0dAW1hIEk9YXFFDEkZWQVRC": { - "display_string": [ - "\ue020PureGuacamole85", - "\ue063Dragonking", - "\ue030Android14459814", - "\ue030Android63983713", - "\ue030Android63984396" - ], - "profiles": [], - "name": "\ue020Dragonking464fire", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-22 07:27:03", - "registerOn": 1670213473.6183503, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213473.6183507, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316033.6248162, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316033.6248176, - "lastIP": "a\u007fk~{h~~aiai`|", - "deviceUUID": "45455da6db46db27b366a60a0efde760801c521d" - }, - "pb-IF4CKEcn": { - "display_string": [ - "\ue063Adversar12" - ], - "profiles": [], - "name": "\ue063Adversar12", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-04 22:36:49", - "registerOn": 1670213689.4067252, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213689.406726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670213689.4067347, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670213689.4067357, - "lastIP": "azj~zo~~afalh", - "deviceUUID": "b67c81cf69d4724ef9ed83c70a3f8a8f7a528f9f" - }, - "pb-IF4CU0oeIA==": { - "display_string": [ - "\ue020SpuriousPresidency5" - ], - "profiles": [], - "name": "\ue020SpuriousPresidency5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 14:09:00", - "registerOn": 1670213870.051851, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213870.0518517, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670213870.051861, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670213870.051862, - "lastIP": "azo~|j~vvaz`", - "deviceUUID": "6d5680756cd98dddb2540ec78c67b44e83ecb45e" - }, - "pb-JiNJARFeXUZAVFlEEkVXUlNDGURXT1hH": { - "display_string": [ - "\ue063Amos101010", - "\ue030Android8834561" - ], - "profiles": [], - "name": "\ue063Amos101010", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-02 12:50:54", - "registerOn": 1670214032.6249008, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214032.6249013, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214032.6249106, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670215080.0938957, - "lastIP": "azo~zi~~haaab", - "deviceUUID": "4061b8980c89cf70109a60ed0ea04d2cf74b9c7c" - }, - "pb-IF5RJ2sR": { - "display_string": [ - "\ue063ShootingBu" - ], - "profiles": [], - "name": "\ue063ShootingBu", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-17 18:06:10", - "registerOn": 1670214040.6884418, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214040.6884427, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214040.6884515, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670214040.6884527, - "lastIP": "dxva~vav`~~na", - "deviceUUID": "822b790677641f085f68026303906669de3780ba" - }, - "pb-IF4vVXQFAw==": { - "display_string": [ - "\ue020ProdigalClassroom31", - "\ue020yash560", - "\ue020UnexplainedFinish14", - "\ue020TitanicArray29", - "\ue030Android50472681" - ], - "profiles": [], - "name": "\ue020UnexplainedFinish14", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-28 14:20:20", - "registerOn": 1670214190.134805, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214190.1348054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214190.1348152, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670214190.134816, - "lastIP": "a\u007fk~}maajbyva{", - "deviceUUID": "ecf85c47eb151b42cf4d43b18df88187914d5f7a" - }, - "pb-IF4SV08HKw==": { - "display_string": [ - "\ue063BadTermina", - "\ue030Android63925894" - ], - "profiles": [], - "name": "\ue020BadTerminator999", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-10 11:12:54", - "registerOn": 1670214199.2782712, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214199.2782717, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242806.7165518, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242806.716553, - "lastIP": "a\u007fk~~`aajbxvb}h", - "deviceUUID": "b79d6a98d56f028d4b5bdefd09447af7f2097344" - }, - "pb-IF4lUhECIQ==": { - "display_string": [ - "\ue063InteriorDu" - ], - "profiles": [], - "name": "\ue063InteriorDu", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-09 15:43:30", - "registerOn": 1670214453.1470776, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214453.147078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336926.2345066, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336926.2345078, - "lastIP": "azo~|j~w`~wn", - "deviceUUID": "f17b6f3add372ab64cb4e1f0b699e71689fd88c2" - }, - "pb-IF4zU0saEg==": { - "display_string": [ - "\ue030Android63824203" - ], - "profiles": [], - "name": "\ue030Android63824203", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-07 19:17:00", - "registerOn": 1670214522.4060535, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214522.4060545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214522.406063, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670214522.4060638, - "lastIP": "a~h~{l~~jgaiix", - "deviceUUID": "\u0015\u0007\u000fX\u0007CSZT\u0004\u0012\u0003\f\u0003WMR\\QPAYUWPMX" - }, - "pb-IF40UhdaNA==": { - "display_string": [ - "\ue020H\u00caR\u00c7\u00daL\u00c9S", - "\ue030Android54448605" - ], - "profiles": [], - "name": "\ue020H\u00caR\u00c7\u00daL\u00c9S", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-04 22:51:41", - "registerOn": 1670214527.3454735, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214527.3454742, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214527.3454835, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670214527.3454845, - "lastIP": "bxvf|vbzl~w`", - "deviceUUID": "8c9f6d3347b1971938fd8e43d6ff9d9baed039f7", - "cMsgCount": 0, - "lastMsgTime": 1670216663.2467372, - "lastMsg": "\ud83d\udc4b ", - "cSameMsg": 0 - }, - "pb-IF4wU3YdCw==": { - "display_string": [ - "\ue020Ambadykannan7878" - ], - "profiles": [], - "name": "\ue020Ambadykannan7878", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 09:21:47", - "registerOn": 1670214886.7187655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214886.718766, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214886.7187748, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670214886.7187757, - "lastIP": "a\u007fn~}h`aoeame", - "deviceUUID": "e35d28f9b8d15f4791b876309dcdd5319fa91fa2" - }, - "pb-IF48U3FaNQ==": { - "display_string": [ - "\ue063DilatoryHo" - ], - "profiles": [], - "name": "\ue063DilatoryHo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-28 22:13:45", - "registerOn": 1670215071.41463, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215071.4146307, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251509.981233, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251509.9812346, - "lastIP": "a\u007fk~~kiajb\u007fvavk", - "deviceUUID": "1260d346be9016a385ed734f949f474094c2e832", - "cMsgCount": 1, - "lastMsgTime": 1670253317.8400893, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF42U3JfFw==": { - "display_string": [ - "\ue030Android62429587" - ], - "profiles": [], - "name": "\ue030Android62429587", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-03 18:15:02", - "registerOn": 1670215135.7055113, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215135.7055128, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670303409.1750185, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670303873.018432, - "lastIP": "bxvf|ve{vawm", - "deviceUUID": "3627ce60ee96824682854c250b3492005a28966f" - }, - "pb-IF40U0sKFA==": { - "display_string": [ - "\ue020farhathu123" - ], - "profiles": [], - "name": "\ue020farhathu123", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-07 13:27:30", - "registerOn": 1670215140.701797, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215140.7017977, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215140.7018065, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670215152.3837502, - "lastIP": "azo~zi~~mhajcv", - "deviceUUID": "0f64cfc599af73a5113c3d044593c9da1d6b2e86" - }, - "pb-IF4jU00eMA==": { - "display_string": [ - "\ue020BanefulConstancy1924" - ], - "profiles": [], - "name": "\ue020BanefulConstancy1924", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 20:52:47", - "registerOn": 1670215294.28334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215294.2833405, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215294.2833488, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215294.2833498, - "lastIP": "azo~|j~|j~zn", - "deviceUUID": "aebcf939dec62cf28d6b26dd1a9f02f62e58a024" - }, - "pb-IF4TU3MKBA==": { - "display_string": [ - "\ue020HangryRanger89899" - ], - "profiles": [], - "name": "\ue020HangryRanger89899", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-09 12:55:25", - "registerOn": 1670215488.236909, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215488.2369094, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215488.2369177, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215488.2369187, - "lastIP": "a\u007fn~}hfajeald", - "deviceUUID": "2f5052e91046c15abf6a40c7d3b2c814136921e2" - }, - "pb-IF4wU04bAQ==": { - "display_string": [ - "\ue030Android63927749" - ], - "profiles": [], - "name": "\ue030Android63927749", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 16:47:23", - "registerOn": 1670215548.1855423, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215548.185543, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215548.1855533, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670215576.921767, - "lastIP": "azo~|j~}k~~ab", - "deviceUUID": "c2cdd0947b4c3571b2a973d2f360a874d0eca8c1" - }, - "pb-IF4zU04-EQ==": { - "display_string": [ - "\ue030Android63928196" - ], - "profiles": [], - "name": "\ue030Android63928196", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 18:18:44", - "registerOn": 1670215727.869937, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215727.8699374, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215727.8699455, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670216552.6286526, - "lastIP": "azo~|`~~jiamb", - "deviceUUID": "669d431df432690b31940b6f54377ac8aeb6c7c3" - }, - "pb-IF4gU3gnUQ==": { - "display_string": [ - "\ue030Android63017111" - ], - "profiles": [], - "name": "\ue030Android63017111", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-30 10:49:17", - "registerOn": 1670215771.1212344, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215771.121235, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670289069.9263475, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670292344.8639429, - "lastIP": "a|n~~mhai`}vava", - "deviceUUID": "6da86c46af8fa0351a1725d905c795608a624764" - }, - "pb-IF40U0UcFQ==": { - "display_string": [ - "\ue063TricksterH" - ], - "profiles": [], - "name": "\ue063TricksterH", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-07 15:22:38", - "registerOn": 1670215781.1936417, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215781.1936424, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215781.1936517, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215781.1936526, - "lastIP": "bxvc{vbxvazj", - "deviceUUID": "4a0acfbe3d6b0250bed99de0cca9bf8dc9e6bc37" - }, - "pb-IF5cV1YHLg==": { - "display_string": [ - "\ue020RagingAttacker80435" - ], - "profiles": [], - "name": "\ue020RagingAttacker80435", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-06 19:12:39", - "registerOn": 1670215793.4892743, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215793.489275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215793.4892848, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215793.489286, - "lastIP": "a\u007fn~}iaaje|vcz", - "deviceUUID": "77c94c385bdad2a0654295dfc2c226a6089a40a8" - }, - "pb-IF4jIEEY": { - "display_string": [ - "\ue063DarthKille" - ], - "profiles": [], - "name": "\ue063DarthKille", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-25 09:27:28", - "registerOn": 1670216046.2984664, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216046.2984672, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670338738.7539759, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337566.2152123, - "lastIP": "a\u007fn~}ibaia|va~k", - "deviceUUID": "2e3c86c3670eada80ef74c6bc6ec67f37aaec7ec", - "cMsgCount": 0, - "lastMsgTime": 1670339658.2294598, - "lastMsg": "a smxy gurl", - "cSameMsg": 0 - }, - "pb-IF5RUkRcXA==": { - "display_string": [ - "\ue020WalkingBarbarism33" - ], - "profiles": [], - "name": "\ue020WalkingBarbarism33", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-18 19:14:26", - "registerOn": 1670216200.806518, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216200.8065186, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216200.8065283, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670217113.5501418, - "lastIP": "azo~|k~~vawm", - "deviceUUID": "683caee4a4034a0bbfe8ccde3843a53d0d77af1e" - }, - "pb-IF4PU0cTLg==": { - "display_string": [ - "\ue030PC608120" - ], - "profiles": [], - "name": "\ue030PC608120", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-18 16:26:32", - "registerOn": 1670216206.7327578, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216206.7327583, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216206.732768, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670216206.7327688, - "lastIP": "awj~{`~xi~~ah", - "deviceUUID": "ebbb99d6f2c353d4c941e73bcd0ee562759a88e4" - }, - "pb-IF4SU3o5UQ==": { - "display_string": [ - "\ue063WARRIR" - ], - "profiles": [], - "name": "\ue063WARRIR", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-08 08:40:52", - "registerOn": 1670216518.2418184, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216518.2418191, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216518.2418287, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670222844.7630777, - "lastIP": "b}k~}jiaiiyva~l", - "deviceUUID": "07760583a6c6cb479e4b59c394c47128cb5b601f" - }, - "pb-IF4hV1ZTFA==": { - "display_string": [ - "\ue063Pratheeswa" - ], - "profiles": [], - "name": "\ue063Pratheeswa", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-18 13:18:20", - "registerOn": 1670216574.0087125, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216574.008713, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216574.0087218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670216574.0087233, - "lastIP": "d}va\u007fl~~jiaicz", - "deviceUUID": "6ba3d2e7c426bfa1ee0772280b87679d0c99e92c" - }, - "pb-IF4hBFgH": { - "display_string": [ - "\ue063MrDevil", - "\ue020\u14f0\u15e9\u163b\u1572\u163f\u143a\u14f0\u14aa", - "\ue030Android39851562" - ], - "profiles": [], - "name": "\ue063MrDevil", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-07 14:37:30", - "registerOn": 1670216718.509512, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216718.5095127, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328240.1389492, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670329741.3370593, - "lastIP": "a\u007fk~}m~~niaihy", - "deviceUUID": "c220dfadf48fdacac465ff3a89116f178e3db908", - "cMsgCount": 0, - "lastMsgTime": 1670329917.074225, - "lastMsg": "tum kya mast kaam karte ho maksud bhai ", - "cSameMsg": 0 - }, - "pb-IF4cU04mPw==": { - "display_string": [ - "\ue020EmbryonicHarmony14" - ], - "profiles": [], - "name": "\ue020EmbryonicHarmony14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 21:17:48", - "registerOn": 1670216869.3935142, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216869.393515, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216869.393525, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670216869.3935258, - "lastIP": "awj~ya~~ohaih}", - "deviceUUID": "2ddf7c418977dab3f7df609dc52e014136bfec2a" - }, - "pb-IF4GU0UGCA==": { - "display_string": [ - "\ue063Siddharaj1" - ], - "profiles": [], - "name": "\ue063Siddharaj1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 17:02:41", - "registerOn": 1670217017.7999706, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670217017.7999713, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227724.9944215, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670227724.9944232, - "lastIP": "azo~|j~xk~}lh", - "deviceUUID": "99173424adfabc9d37a511c4d81759f7f1deee57" - }, - "pb-IF5SUxMGAg==": { - "display_string": [ - "\ue063PointyLeo1" - ], - "profiles": [], - "name": "\ue063PointyLeo1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-01 15:10:51", - "registerOn": 1670217318.5163224, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670217318.516323, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670217318.5163324, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670217318.5163333, - "lastIP": "c~vb\u007fh~}khaad", - "deviceUUID": "8c8741c02f1a375d4b3741c978dfd25c4c5a8ae4" - }, - "pb-IF5SUxQJJw==": { - "display_string": [ - "\ue020BruceBat1997" - ], - "profiles": [], - "name": "\ue020BruceBat1997", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-04 07:48:46", - "registerOn": 1670217410.0380058, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670217410.038006, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670217410.0380168, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670217410.0380177, - "lastIP": "azo~zi~~odane", - "deviceUUID": "8bbd910cb7e0e8b48c9c3e608f521484f77c36bb" - }, - "pb-IF4FU0ohEw==": { - "display_string": [ - "\ue020kshitijGaming15" - ], - "profiles": [], - "name": "\ue020kshitijGaming15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 09:20:26", - "registerOn": 1670217457.352635, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670217457.3526354, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308872.016039, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308872.0160398, - "lastIP": "azj~zo~vl~wh", - "deviceUUID": "4dcb4a106b5964b90383ef90986a2214213b306d" - }, - "pb-IF4AV1QqEQ==": { - "display_string": [ - "\ue063CHICKENBOO", - "\ue030Android62068479" - ], - "profiles": [], - "name": "\ue063CHICKENBOO", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-04 15:27:25", - "registerOn": 1670217816.8909585, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670217816.890959, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670320868.4336603, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670319780.4661233, - "lastIP": "awj~ya~}iaajdz", - "deviceUUID": "e2055bf4e71e30e44db214ed6daf8c4d2807cd96", - "cMsgCount": 0, - "lastMsgTime": 1670321923.6015935, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4nU3IxEw==": { - "display_string": [ - "\ue063divs2104" - ], - "profiles": [], - "name": "\ue063divs2104", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-03 22:26:54", - "registerOn": 1670218053.7210672, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670218053.7210677, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316363.8413355, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670318728.533653, - "lastIP": "azo~{`~~meaja{", - "deviceUUID": "d770acc77b95b99e6006255842b0c32fee2201de", - "cMsgCount": 0, - "lastMsgTime": 1670316449.0100148, - "lastMsg": "nhi abhi", - "cSameMsg": 0 - }, - "pb-IF4WU04ENQ==": { - "display_string": [ - "\ue020HourlyTreaty30", - "\ue030Android63939544" - ], - "profiles": [], - "name": "\ue020HourlyTreaty30", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 09:15:33", - "registerOn": 1670218264.6036, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670218264.603601, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339157.6709552, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670340395.2372541, - "lastIP": "b}k~~`gai`xva{a", - "deviceUUID": "040f573333f13075c1d29a5aa45404a9a094c01c", - "cMsgCount": 0, - "lastMsgTime": 1670218486.4890654, - "lastMsg": "op", - "cSameMsg": 0 - }, - "pb-IF4PUkdbFw==": { - "display_string": [ - "\ue020ResourcefulBear38", - "\ue030Android57711511" - ], - "profiles": [], - "name": "\ue020ResourcefulBear38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-07 12:08:28", - "registerOn": 1670218740.830592, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670218740.8305924, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670218740.8306022, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670218740.8306034, - "lastIP": "dxviam~~ka", - "deviceUUID": "1a9f5aa517ea1bb68deb2d8cf1058f22308d0688" - }, - "pb-IF4CU04ePQ==": { - "display_string": [ - "\ue063AsteroidBo" - ], - "profiles": [], - "name": "\ue063AsteroidBo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 09:27:40", - "registerOn": 1670219087.6891391, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219087.68914, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242647.1257184, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242647.1257198, - "lastIP": "a~o~~afaid{vbzk", - "deviceUUID": "64e9e223bb60cf6adff3cf10896b12efd187832f" - }, - "pb-IF4dVU4xVg==": { - "display_string": [ - "\ue020Thephenomenal9903" - ], - "profiles": [], - "name": "\ue020Thephenomenal9903", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-04 20:07:36", - "registerOn": 1670219160.0008068, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219160.0008075, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219160.000814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219160.000815, - "lastIP": "azo~|l~~miaiby", - "deviceUUID": "d35f408ae362cc6161d69785c5d3ea1701e43fe5" - }, - "pb-IF4LUk0FCQ==": { - "display_string": [ - "\ue063VidhyanFal" - ], - "profiles": [], - "name": "\ue063VidhyanFal", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-08 09:56:37", - "registerOn": 1670219267.3571446, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219267.3571453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670294668.5613804, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670303838.8790617, - "lastIP": "azj~zo~}kcajbv", - "deviceUUID": "c7281055c5d01de57fe0f5a250bd68f28ec93c55", - "cMsgCount": 0, - "lastMsgTime": 1670295233.9148583, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF48VBcFEw==": { - "display_string": [ - "\ue063kutty1012" - ], - "profiles": [], - "name": "\ue063kutty1012", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-28 21:53:20", - "registerOn": 1670219348.6881964, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219348.688197, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219348.6882071, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219348.6882079, - "lastIP": "dvvb\u007fl~~ihaiaz", - "deviceUUID": "7e5ea53ca2d28ec7361f139ed1f1d435f394a29a" - }, - "pb-IF4vU08YEA==": { - "display_string": [ - "\ue063BiornIrons" - ], - "profiles": [], - "name": "\ue063BiornIrons", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 15:02:13", - "registerOn": 1670219366.0444133, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219366.0444143, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219366.0444236, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219366.0444248, - "lastIP": "dvvc{vf|vaym", - "deviceUUID": "a8076219bde97d1f917ca59808cbc058cc13fd25" - }, - "pb-IF4FU3UmHw==": { - "display_string": [ - "\ue020\u1d3f\u02e2\u13f4\u13a1\u13aa\u019d\u13a0" - ], - "profiles": [], - "name": "\ue020\u1d3f\u02e2\u13f4\u13a1\u13aa\u019d\u13a0", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-17 18:47:52", - "registerOn": 1670219412.987712, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219412.9877126, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219412.987722, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219412.987723, - "lastIP": "d}va\u007f`~~afaibz", - "deviceUUID": "f4f5a63f76c0fce5e665d0097338afb8e21aaca9" - }, - "pb-IF4yU0omIg==": { - "display_string": [ - "\ue063RollingVor" - ], - "profiles": [], - "name": "\ue063RollingVor", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-31 21:17:10", - "registerOn": 1670219652.9270635, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219652.9270647, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219652.9270737, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219652.927075, - "lastIP": "azo~{`~~kaajd|", - "deviceUUID": "7325f59153e0d2ca260538cdbde7c94dbf996ad3" - }, - "pb-IF4nUnEHVg==": { - "display_string": [ - "\ue020HacktasticCadet89388" - ], - "profiles": [], - "name": "\ue020HacktasticCadet89388", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-05 13:41:01", - "registerOn": 1670219774.3369155, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219774.3369162, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219774.336924, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670220186.840861, - "lastIP": "dvvcyvb~h~~ma", - "deviceUUID": "de5347398ff949bf2b9e20d90830dae251c23b2b", - "cMsgCount": 1, - "lastMsgTime": 1670220357.990431, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4lU08FJA==": { - "display_string": [ - "\ue030Android63983164" - ], - "profiles": [], - "name": "\ue030Android63983164", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 13:46:14", - "registerOn": 1670219776.3333168, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219776.3333173, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219776.333327, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219776.3333282, - "lastIP": "a\u007fn~~aeaia|va\u007fa", - "deviceUUID": "dcf18d29ab4c36279d335b7f4030233bad15316c" - }, - "pb-IF4gU048KQ==": { - "display_string": [ - "\ue020lolisoh640", - "\ue030Android63953042" - ], - "profiles": [], - "name": "\ue020lolisoh640", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 16:02:13", - "registerOn": 1670220081.6985872, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220081.6985874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670303214.4503963, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670303214.4503977, - "lastIP": "dvvcyvb~k~~k", - "deviceUUID": "b30b1cde3d6ee7ec7e736cf2d40b37a39fbb1ae2", - "cMsgCount": 0, - "lastMsgTime": 1670235183.292864, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4pU0gvEQ==": { - "display_string": [ - "\ue020AudaciousCombat79594" - ], - "profiles": [], - "name": "\ue020AudaciousCombat79594", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-17 23:03:42", - "registerOn": 1670220092.024401, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220092.0244014, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220092.0244107, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220092.0244117, - "lastIP": "a\u007fn~}jbaoaaja}", - "deviceUUID": "fa5441c126ca56a31774e7ba5626c788979abdc3" - }, - "pb-IF5VUlYjNw==": { - "display_string": [ - "\ue063Immeasura8" - ], - "profiles": [], - "name": "\ue063Immeasura8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-30 10:12:42", - "registerOn": 1670220141.9891405, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220141.989141, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229460.2209723, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229460.2209735, - "lastIP": "dvvcyvb~a~}hf", - "deviceUUID": "e79e19a1d5c68612efe471fa7d64f51ee682ba58", - "cMsgCount": 1, - "lastMsgTime": 1670220234.9745123, - "lastMsg": "booster lgwalo sb", - "cSameMsg": 0 - }, - "pb-IF4lU045AQ==": { - "display_string": [ - "\ue063MetalEel46" - ], - "profiles": [], - "name": "\ue063MetalEel46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 15:30:20", - "registerOn": 1670220259.464167, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220259.4641678, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220259.464178, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220259.4641793, - "lastIP": "eaif\u007fvd~vb~n", - "deviceUUID": "16569a3fba3fd0df8b7d56d8c929148dd36c753d" - }, - "pb-IF4PV24yPA==": { - "display_string": [ - "\ue063Agzx2244", - "\ue030Android48295628", - "\ue030Android50558008", - "\ue030PC351631", - "\ue030Android50407500" - ], - "profiles": [], - "name": "\ue063Agzx2244", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-27 10:21:40", - "registerOn": 1670220371.0777698, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220371.0777702, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220371.077779, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220371.0777798, - "lastIP": "a\u007fn~}hgajazvbzm", - "deviceUUID": "e14daa83663610399fd51ea00d341640044f94f0", - "cMsgCount": 0, - "lastMsgTime": 1670221292.9061713, - "lastMsg": "kro 1 sab", - "cSameMsg": 0 - }, - "pb-IF4cU08HKg==": { - "display_string": [ - "\ue063NativeEmpi" - ], - "profiles": [], - "name": "\ue063NativeEmpi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 22:38:41", - "registerOn": 1670220387.9813507, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220387.9813511, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220387.9813645, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220387.9813652, - "lastIP": "a\u007fj~}liam~|n", - "deviceUUID": "6f68f43e342dc9302f971a369736634f05c1c0bd" - }, - "pb-IF5WUxQgVw==": { - "display_string": [ - "\ue020MonocledRemainder37" - ], - "profiles": [], - "name": "\ue020MonocledRemainder37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-03 14:46:49", - "registerOn": 1670220558.6580849, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220558.6580856, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220558.6580951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220558.6580963, - "lastIP": "azo~{l~~keaif{", - "deviceUUID": "ed45cbd10c17e8d36b274d0820f8b35e9977b560" - }, - "pb-IF4PU08cFA==": { - "display_string": [ - "\ue063hddibduxj2" - ], - "profiles": [], - "name": "\ue063hddibduxj2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 10:54:00", - "registerOn": 1670220669.0910227, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220669.0910237, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220669.0910335, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670221009.3778722, - "lastIP": "dvvb|o~~j~z`", - "deviceUUID": "ddbf33686fa8a5089f7cd88b6ff00ecb8c601591" - }, - "pb-IF4MU08zBg==": { - "display_string": [ - "\ue063PersonalAc" - ], - "profiles": [], - "name": "\ue063PersonalAc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 12:36:48", - "registerOn": 1670220698.6773582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220698.6773589, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220698.6773682, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220698.677369, - "lastIP": "a~i~~jeaj`vvb\u007fo", - "deviceUUID": "5a888bbd968ee5a07e5893491abfc11f0fe4a176" - }, - "pb-IF4UVGg8KQ==": { - "display_string": [ - "\ue063LionAlpha7" - ], - "profiles": [], - "name": "\ue020LionAlpha7998", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-25 12:34:17", - "registerOn": 1670220944.3041394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220944.3041396, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670350233.1768968, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670350233.1768982, - "lastIP": "azo~zh~}a~}ma", - "deviceUUID": "8368e55397365fe31285451f09f669007e570a51", - "cMsgCount": 0, - "lastMsgTime": 1670353870.0191152, - "lastMsg": "oppppp", - "cSameMsg": 0 - }, - "pb-IF4PU0hcUg==": { - "display_string": [ - "\ue020ExpensiveSampling66" - ], - "profiles": [], - "name": "\ue020ExpensiveSampling66", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 20:15:12", - "registerOn": 1670221150.3721857, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221150.3721862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670221150.3721948, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670221150.3721964, - "lastIP": "azo~{n~~h`aibv", - "deviceUUID": "23fde69afa91374a867fba140f0a2d26162721ab" - }, - "pb-IF4WUhk7LA==": { - "display_string": [ - "\ue020Bryanfurythemaster" - ], - "profiles": [], - "name": "\ue020Bryanfurythemaster", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-15 09:27:07", - "registerOn": 1670221152.20959, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221152.2095907, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226250.4327168, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670226275.5273476, - "lastIP": "a\u007fk~~i`aj`ale", - "deviceUUID": "f635a06a0d6da016b4c98adf268cde1304f60e8a" - }, - "pb-IF4QVGYMKg==": { - "display_string": [ - "\ue020shrey19654" - ], - "profiles": [], - "name": "\ue020shrey19654", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-17 23:36:03", - "registerOn": 1670221189.3377929, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221189.3377934, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670350229.16829, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670350229.1682909, - "lastIP": "axi~xn~wi~~jf", - "deviceUUID": "b0c6921dbf3a4dd86b20da6cbae55ac353cb7b0d", - "cMsgCount": 0, - "lastMsgTime": 1670239836.4692621, - "lastMsg": "op", - "cSameMsg": 0 - }, - "pb-IF4eVGc7Cw==": { - "display_string": [ - "\ue063LIONHUNTER" - ], - "profiles": [], - "name": "\ue063LIONHUNTER", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-19 13:49:23", - "registerOn": 1670221201.400529, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221201.4005296, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670350204.0721517, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670350204.072153, - "lastIP": "axi~xn~wi~~jf", - "deviceUUID": "7e2925fb16ec0423a42113da27b7c67e2c529058", - "cMsgCount": 0, - "lastMsgTime": 1670353972.2531605, - "lastMsg": "naah", - "cSameMsg": 0 - }, - "pb-IF4MU08lCQ==": { - "display_string": [ - "\ue063lodhipro17" - ], - "profiles": [], - "name": "\ue063lodhipro17", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 13:04:15", - "registerOn": 1670221377.0058658, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221377.0058665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670221377.005912, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670221377.005913, - "lastIP": "dxvb{o~}ifakd", - "deviceUUID": "4fd2c79d2783c7590e50a85b2de79a04e46f61d6" - }, - "pb-IF4FVVIBHQ==": { - "display_string": [ - "\ue030Android52891885" - ], - "profiles": [], - "name": "\ue030Android52891885", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-25 20:06:30", - "registerOn": 1670221863.5160656, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221863.5160663, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670221863.516075, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670221863.5160758, - "lastIP": "a\u007fk~~j`aj`wvfv", - "deviceUUID": "\u0015T\tQ\u0002LT\f\u0005\u0007\u0017V\u000bPRC\u0004ZTULUYWTB" - }, - "pb-IF5TU09ZCQ==": { - "display_string": [ - "\ue030Android63868938" - ], - "profiles": [], - "name": "\ue030Android63868938", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 10:42:58", - "registerOn": 1670222018.742249, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222018.7422495, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222018.7422566, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670222018.7422578, - "lastIP": "f~vbaiexvcz", - "deviceUUID": "\u0015" - }, - "pb-IF40VUE9Kw==": { - "display_string": [ - "\ue063RedheadedV" - ], - "profiles": [], - "name": "\ue063RedheadedV", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-19 11:05:56", - "registerOn": 1670222082.0227785, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222082.0227795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222082.0227883, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670222909.0106921, - "lastIP": "awo~~`iajdwva~m", - "deviceUUID": "e789a1f4751dd6c53375cd93969fc024b831a160" - }, - "pb-IF49UxYgIA==": { - "display_string": [ - "\ue020TruthfulSustenance18" - ], - "profiles": [], - "name": "\ue020TruthfulSustenance18", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-19 10:41:58", - "registerOn": 1670222185.8033085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222185.803309, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301800.1507528, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301800.150754, - "lastIP": "bxvf}va\u007fva\u007fo", - "deviceUUID": "a80b0ea0c733f2966759c243d6855824e5116b80" - }, - "pb-IF5WVRUJUQ==": { - "display_string": [ - "\ue020FragrantRookie95898", - "\ue030Android42535153" - ], - "profiles": [], - "name": "\ue020FragrantRookie95898", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-24 19:01:16", - "registerOn": 1670222408.4347453, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222408.434746, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222408.4347553, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670222457.1537192, - "lastIP": "dvva{vayo~~hf", - "deviceUUID": "0a77ea88569f9db376684fed0cd5b19239faeb4f" - }, - "pb-IF4MU0ReEA==": { - "display_string": [ - "\ue063RoyalOwl79", - "\ue030Android63988366" - ], - "profiles": [], - "name": "\ue063RoyalOwl79", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-26 13:29:02", - "registerOn": 1670222628.1899621, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222628.1899629, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299113.489025, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299113.489026, - "lastIP": "azo~{n~~oaajby", - "deviceUUID": "6a895c7e6b6e7eeaed67ef25decfaaae72bb4845" - }, - "pb-IF4WU05cNA==": { - "display_string": [ - "\ue020mrsaifuuuu" - ], - "profiles": [], - "name": "\ue020mrsaifuuuu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 11:56:53", - "registerOn": 1670222651.2537246, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222651.253726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222651.2537346, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670222651.2537358, - "lastIP": "azo~{m~~ieaj`w", - "deviceUUID": "7e0251a647f979bfe438b46bf3cd79eb0deda0ff" - }, - "pb-IF43UxUHMw==": { - "display_string": [ - "\ue030Android60516479" - ], - "profiles": [], - "name": "\ue030Android60516479", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-16 15:43:18", - "registerOn": 1670222714.5488358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222714.5488365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347410.058625, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670347410.0586264, - "lastIP": "b}k~~`eaib\u007fvava", - "deviceUUID": "\u0015\u0004\u000fURMU[\u0002\u0007F\u0007\u000fP\u0002@" - }, - "pb-IF4nU08oIA==": { - "display_string": [ - "\ue063LightDestr" - ], - "profiles": [], - "name": "\ue063LightDestr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 17:41:56", - "registerOn": 1670222824.1744423, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222824.1744428, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222824.17445, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670222974.2591498, - "lastIP": "b}k~~oha`faid{", - "deviceUUID": "90e550de55f4472e78ab42ba521d8b4451a0c330" - }, - "pb-IF4xUmISVw==": { - "display_string": [ - "\ue063BoldestClo" - ], - "profiles": [], - "name": "\ue063BoldestClo", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-29 01:26:21", - "registerOn": 1670222830.0305262, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222830.0305266, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222830.0305347, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670222830.0305357, - "lastIP": "axo~}jham`aif}", - "deviceUUID": "3e3acd87d2262c3cd3298b13546fddd8c63183dc" - }, - "pb-IF4pU0QzBg==": { - "display_string": [ - "\ue030Android63511670" - ], - "profiles": [], - "name": "\ue030Android63511670", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-25 16:33:39", - "registerOn": 1670222948.4747255, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222948.4747262, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343684.9526927, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343684.952694, - "lastIP": "dvvc{vewva}k", - "deviceUUID": "a4a3e6530f2a3e449a55f08fbbc7b49a1e4e04fd" - }, - "pb-IF4TVWguVA==": { - "display_string": [ - "\ue020RoyalRead11", - "\ue030Android63893836", - "\ue030Android63893825", - "\ue030Android63893729", - "\ue030Android63893802" - ], - "profiles": [], - "name": "\ue020RoyalRead11", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-28 14:18:36", - "registerOn": 1670222957.5876591, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222957.5876598, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222957.5876687, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670222957.5876698, - "lastIP": "b}k~}kiakiaig\u007f", - "deviceUUID": "a0fe15893d25cbbae7b9242e10b763914eac197a", - "cMsgCount": 0, - "lastMsgTime": 1670223243.7804573, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5WVG4yCA==": { - "display_string": [ - "\ue020\ud835\ude77\ud835\ude70\u2c64\ud835\ude82\ud835\ude77v\u0360\ud835\ude74\u2c64\ud835\ude7c\ud835\ude70", - "\ue030Android48601951", - "\ue030Android48602193", - "\ue030Android48601931", - "\ue030Android39034906" - ], - "profiles": [], - "name": "\ue020\ud835\ude77\ud835\ude70\u2c64\ud835\ude82\ud835\ude77v\u0360\ud835\ude74\u2c64\ud835\ude7c\ud835\ude70", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-24 20:09:26", - "registerOn": 1670223005.7061543, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223005.7061548, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337491.9845812, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337491.9845827, - "lastIP": "azo~|o~~lgaid|", - "deviceUUID": "72d1deb3e319e18a9aafaae6c95c07faaf98c813", - "cMsgCount": 0, - "lastMsgTime": 1670337052.729382, - "lastMsg": "west pro", - "cSameMsg": 0 - }, - "pb-IF4RU1BbCQ==": { - "display_string": [ - "\ue030Android63297715", - "\ue030Android63978021" - ], - "profiles": [], - "name": "\ue030Android63297715", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 19:46:54", - "registerOn": 1670223013.750009, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223013.7500095, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223013.7500196, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223013.7500205, - "lastIP": "a\u007fk~~mfaj`yva\u007fh", - "deviceUUID": "17bd1527b38c2879e409fd15ec222b7edf87d067" - }, - "pb-IF4-U0gfIg==": { - "display_string": [ - "\ue020PlusCradle26", - "\ue030Android63906776", - "\ue030Android63917073", - "\ue030Android48414766", - "\ue030Android63906781" - ], - "profiles": [], - "name": "\ue020PlusCradle26", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 09:23:18", - "registerOn": 1670223126.1487603, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223126.148761, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310632.36223, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670310632.3622313, - "lastIP": "azo~{n~v`~}h`", - "deviceUUID": "35ef1421547313dda03ae22eb01e4e1f0259f55f" - }, - "pb-JiNJARFZV0BBVV5AGUNRUVZGFkJXRlJL": { - "display_string": [ - "\ue020jcar914", - "\ue030Android47332199" - ], - "profiles": [], - "name": "\ue020jcar914", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-26 17:42:21", - "registerOn": 1670223191.286122, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223191.2861228, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224446.9002898, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224446.900292, - "lastIP": "a}j~zh~}ifaiax", - "deviceUUID": "213acdad9f716bdc06894815f2c0bc4f516c7ebd" - }, - "pb-IF4XNk8E": { - "display_string": [ - "\ue020Mynameismr007", - "\ue030Android47352286" - ], - "profiles": [], - "name": "\ue020Mynameismr007", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-13 23:16:54", - "registerOn": 1670223306.9310734, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223306.9310741, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223306.9310822, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223306.931083, - "lastIP": "a~n~xl~}khaj`|", - "deviceUUID": "cfbdc716256dd5be19d86bd852f9657282004776" - }, - "pb-IF48U1BeVA==": { - "display_string": [ - "\ue063RetiringTh" - ], - "profiles": [], - "name": "\ue063RetiringTh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 11:26:17", - "registerOn": 1670223342.0682235, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223342.068224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223342.0682306, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223342.0682313, - "lastIP": "a|n~~mhai~xl", - "deviceUUID": "47fde9d16fc278059e28ba08a5c5923befabf415" - }, - "pb-IF5dU0haPA==": { - "display_string": [ - "\ue030Android63621219" - ], - "profiles": [], - "name": "\ue030Android63621219", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 21:22:24", - "registerOn": 1670223414.3308358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223414.3308365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223414.3308449, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223414.3308458, - "lastIP": "azo~|`~~jiaig}", - "deviceUUID": "8b23d0ed10e731852f3616071db53180f5a7639e" - }, - "pb-IF49VBQ4KQ==": { - "display_string": [ - "\ue020VariedCreator11" - ], - "profiles": [], - "name": "\ue020VariedCreator11", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-07 08:47:08", - "registerOn": 1670223647.4419773, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223647.4419777, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223647.4419851, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223647.4419858, - "lastIP": "dvvcxvaza~~ob", - "deviceUUID": "0de2c35c754bba5c6e317dc4e2356a77eaa0f6f5" - }, - "pb-JiNJARBYVUNCXl9HEk5YVVVCGUFaT1VB": { - "display_string": [ - "\ue063Alexander6" - ], - "profiles": [], - "name": "\ue063Alexander6", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-31 22:07:51", - "registerOn": 1670223994.6633196, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223994.66332, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223994.6633277, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223994.6633284, - "lastIP": "a\u007fk~}laaldaj`\u007f", - "deviceUUID": "b136cb2b325744116e4458ba7b6e14cdef93caae" - }, - "pb-IF4tU0szDw==": { - "display_string": [ - "\ue020AristocraticPossum54" - ], - "profiles": [], - "name": "\ue020AristocraticPossum54", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 17:22:58", - "registerOn": 1670224082.983369, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224082.9833698, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246038.646844, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246038.646845, - "lastIP": "aakhaa`aifz", - "deviceUUID": "3bb77423b818d2d17e9a5c2d472f7ff66b12ce67" - }, - "pb-IF4cVFEENw==": { - "display_string": [ - "\ue020TroublingSeer45843" - ], - "profiles": [], - "name": "\ue020TroublingSeer45843", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-30 17:17:37", - "registerOn": 1670224221.7086017, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224221.7086027, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224221.7086105, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224221.7086112, - "lastIP": "azo~zi~vn~vn", - "deviceUUID": "bc587bc343435acaeeb16a6168e1eeadae575953" - }, - "pb-IF42UhVfFQ==": { - "display_string": [ - "\ue063MeatyHallw" - ], - "profiles": [], - "name": "\ue063MeatyHallw", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-26 21:07:54", - "registerOn": 1670224304.6928282, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224304.6928287, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224304.692835, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224304.6928358, - "lastIP": "a\u007fk~~ohaaeamg", - "deviceUUID": "6d7ce7268bc301b3530a19e3100c26e940c64638" - }, - "pb-IF4vUhc8NA==": { - "display_string": [ - "\ue020king12of34world" - ], - "profiles": [], - "name": "\ue063king12of34", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-06 19:14:02", - "registerOn": 1670224390.9638715, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224390.963872, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224390.9638948, - "verified": false, - "rejoincount": 0, - "lastJoin": 1670224702.8370771, - "lastIP": "a\u007fn~~afai`wvazh", - "deviceUUID": "e724ac296ff3aaa7b58fb4beeb5a6bd55d243a15" - }, - "pb-IF4-U0wmFA==": { - "display_string": [ - "\ue020BroadestStress64" - ], - "profiles": [], - "name": "\ue020BroadestStress64", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 16:31:50", - "registerOn": 1670224419.1593127, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224419.1593134, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224419.1593218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224419.1593227, - "lastIP": "a\u007fk~~`gaahaih{", - "deviceUUID": "f7ec1dea556e337a4f288c1a8e992be20c6cf516" - }, - "pb-IF4NU04dKQ==": { - "display_string": [ - "\ue030Android63983749" - ], - "profiles": [], - "name": "\ue030Android63983749", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:56:21", - "registerOn": 1670224433.1994147, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224433.1994152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311471.5926657, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311471.5926664, - "lastIP": "a|h~~heaniaia|", - "deviceUUID": "8ad9c12623e62e5d87337454ec3d0d16ed4509f4", - "cMsgCount": 0, - "lastMsgTime": 1670311994.587358, - "lastMsg": "i hate shine she punch me and im her team", - "cSameMsg": 0 - }, - "pb-IF5XUxQNKg==": { - "display_string": [ - "\ue030Android60176502" - ], - "profiles": [], - "name": "\ue030Android60176502", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-02 13:36:23", - "registerOn": 1670224594.7961566, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224594.7961574, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224594.7961674, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224594.7961679, - "lastIP": "b\u007fn~wk~~ibakh", - "deviceUUID": "b628827af1660e8d1a369c7bb005ddd321826a1a" - }, - "pb-IF4LU3IhCg==": { - "display_string": [ - "\ue063UnbornObse" - ], - "profiles": [], - "name": "\ue063UnbornObse", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-06 06:24:33", - "registerOn": 1670224621.8851442, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224621.8851452, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331607.7546296, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670331607.7546308, - "lastIP": "az`~yj~wvgz", - "deviceUUID": "2d5f8908bc02bb7dc9e26846d26e9167e29f1109" - }, - "pb-IF4nVUddEA==": { - "display_string": [ - "\ue020UnrecordedContrast21", - "\ue030Android51604904" - ], - "profiles": [], - "name": "\ue020UnrecordedContrast21", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-24 19:24:09", - "registerOn": 1670224695.1638308, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224695.163831, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224695.1638393, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224695.1638403, - "lastIP": "azj~z`~}`~}ih", - "deviceUUID": "94dbacce83b90b4cfffc1bec22faf9d1acdc7db5" - }, - "pb-IF4HU00iMA==": { - "display_string": [ - "\ue020AcuteSodium40" - ], - "profiles": [], - "name": "\ue020AcuteSodium40", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 12:39:12", - "registerOn": 1670224875.8248928, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224875.8248932, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224875.8249018, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224875.8249028, - "lastIP": "a\u007fn~~aeakgaii", - "deviceUUID": "c720584a91b3cbe6db86ad747fa20b79ebd57367" - }, - "pb-IF4tURMJ": { - "display_string": [ - "\ue020RagingOrangutan79611", - "\ue030Android36362458" - ], - "profiles": [], - "name": "\ue020RagingOrangutan79611", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-12 18:45:41", - "registerOn": 1670224930.0256732, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224930.0256736, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224930.0256803, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224930.0256815, - "lastIP": "a\u007fn~~adakiaif{", - "deviceUUID": "00205d6e727c4c8655e1d50949de75de43d9f425" - }, - "pb-IF4VVGQqIA==": { - "display_string": [ - "\ue063Abwini9" - ], - "profiles": [], - "name": "\ue063Abwini9", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-01 21:38:23", - "registerOn": 1670225142.8319447, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225142.8319454, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225142.8319547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225142.8319557, - "lastIP": "ax`~xo~~meanc", - "deviceUUID": "971b74965958e51e59e30e484186b7389cc56f1a" - }, - "pb-IF4BU3YiBw==": { - "display_string": [ - "\ue020raj140608" - ], - "profiles": [], - "name": "\ue020raj140608", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 16:49:48", - "registerOn": 1670225313.742744, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225313.7427452, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225313.742753, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225313.7427537, - "lastIP": "a}k~}haaj~~`b", - "deviceUUID": "d4f4de333d3ac253c6682a64d10146afdc3bed93" - }, - "pb-IF40U08DIg==": { - "display_string": [ - "\ue063PitilessDi" - ], - "profiles": [], - "name": "\ue063PitilessDi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 09:57:03", - "registerOn": 1670225366.6395636, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225366.639564, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225366.6395714, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225366.6395721, - "lastIP": "b\u007fj~yo~|a~~h", - "deviceUUID": "cba75cd69c2cba64503daeae42befdd269060920" - }, - "pb-IF4pUxccDQ==": { - "display_string": [ - "\ue020MRSMoOtHy9098", - "\ue030Android60542989" - ], - "profiles": [], - "name": "\ue020MRSMoOtHy9098", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-23 14:20:28", - "registerOn": 1670225421.9733288, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225421.9733298, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225421.9733438, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225421.9733446, - "lastIP": "azo~{m~~oiajd|", - "deviceUUID": "017b66c9bf884f6f82343cc45aa1fc8db1d1ecf4" - }, - "pb-IF5WU3YtDg==": { - "display_string": [ - "\ue020kingofdragonwar10" - ], - "profiles": [], - "name": "\ue020kingofdragonwar10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-12 11:15:55", - "registerOn": 1670225497.0738711, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225497.0738714, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670334903.754289, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334866.5616307, - "lastIP": "a\u007fn~}j`ajd{vd\u007f", - "deviceUUID": "458f059dc7613379d0f64b393d516bfe4ce94349", - "cMsgCount": 0, - "lastMsgTime": 1670334903.754227, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4NUxcqNA==": { - "display_string": [ - "\ue063TurboFamil" - ], - "profiles": [], - "name": "\ue063TurboFamil", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-25 17:39:11", - "registerOn": 1670225548.248582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225548.2485824, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229538.8195338, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670229091.8494523, - "lastIP": "a\u007fk~zo~wm~}jc", - "deviceUUID": "761e2f8a9baa8a93f1ca262cd255c7269e8b4c96", - "cMsgCount": 0, - "lastMsgTime": 1670229538.8194907, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4tBWhf": { - "display_string": [ - "\ue063TiredShiel" - ], - "profiles": [], - "name": "\ue063TiredShiel", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-08 11:07:39", - "registerOn": 1670225703.2770789, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225703.2770793, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225703.2770863, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670225708.5493443, - "lastIP": "a\u007fn~}hfajaaic|", - "deviceUUID": "50aec541ac095332e4e7d310526059b4d87e2701" - }, - "pb-IF4OU0MmCw==": { - "display_string": [ - "\ue020PaltryLuxury43" - ], - "profiles": [], - "name": "\ue020PaltryLuxury43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-21 14:47:25", - "registerOn": 1670225752.03882, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225752.0388205, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347319.6387975, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670347319.6387992, - "lastIP": "a\u007fn~}jba`faigw", - "deviceUUID": "fac6ef408444c29869070071a76e6de49b381bdd" - }, - "pb-IF4TU0MJAQ==": { - "display_string": [ - "\ue020SovereignSplendor53", - "\ue063UnvaryingT", - "\ue020ElectricalTilt52", - "\ue020LittleJourney40429" - ], - "profiles": [], - "name": "\ue063UnvaryingT", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-23 09:41:04", - "registerOn": 1670225869.4587672, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225869.4587677, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225869.4587755, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225869.4587762, - "lastIP": "dvvcxvb~k~~mf", - "deviceUUID": "6f0b3cbe2a98d10a5ba1b40d8c12cc695a4fcd11" - }, - "pb-IF4iVRIvFA==": { - "display_string": [ - "\ue063supersmash", - "\ue030Android45064400" - ], - "profiles": [], - "name": "\ue063supersmash", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-16 13:10:01", - "registerOn": 1670225915.6225243, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225915.6225247, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225915.6225307, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225915.6225317, - "lastIP": "dvvcxvd~vavn", - "deviceUUID": "996d37e51f3c1c08aaa7659db77b08d88da28fc6" - }, - "pb-IF4tVXIbMQ==": { - "display_string": [ - "\ue020Aryannnnn\u30c5", - "\ue030Android51658791" - ], - "profiles": [], - "name": "\ue020Aryannnnn\u30c5", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-14 19:50:14", - "registerOn": 1670226061.2386627, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226061.2386632, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317537.1754663, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317537.1754677, - "lastIP": "a\u007fn~}ifa`haihy", - "deviceUUID": "7c87fdd2c2959085eb949e641404ba48594d4b86", - "cMsgCount": 1, - "lastMsgTime": 1670317570.0272377, - "lastMsg": "uncas y u angry at me", - "cSameMsg": 0 - }, - "pb-IF5SU00BVQ==": { - "display_string": [ - "\ue063NimblePass" - ], - "profiles": [], - "name": "\ue063NimblePass", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 14:22:59", - "registerOn": 1670226110.279205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226110.2792058, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226110.2792144, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226110.2792153, - "lastIP": "dxvazvawvf\u007f", - "deviceUUID": "8b95267b1e3d9e2d481577825ab6d4466e7cd053" - }, - "pb-IF4NUmovVg==": { - "display_string": [ - "\ue063ShailiPate" - ], - "profiles": [], - "name": "\ue063ShailiPate", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-05 13:12:44", - "registerOn": 1670226195.6351314, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226195.6351318, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323853.512387, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323853.5123887, - "lastIP": "d}va\u007fn~~a~yj", - "deviceUUID": "f197b811af71876fc2976f89c919eaadd4f25bfa" - }, - "pb-IF4VU3ENAA==": { - "display_string": [ - "\ue030Android62403774" - ], - "profiles": [], - "name": "\ue030Android62403774", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-02 12:18:25", - "registerOn": 1670226282.8838375, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226282.8838382, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226282.883846, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226282.883847, - "lastIP": "awk~~oaaibxvav", - "deviceUUID": "\u0015\u0004\\P" - }, - "pb-IF4FU085EQ==": { - "display_string": [ - "\ue063BrackishCh" - ], - "profiles": [], - "name": "\ue063BrackishCh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 13:10:05", - "registerOn": 1670226374.3766797, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226374.3766801, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226374.3766882, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226374.376689, - "lastIP": "azo~{n~~ocaiiz", - "deviceUUID": "91a83f9a494e45ab8450580dc802615e8120cee5" - }, - "pb-IF5TU1EzAg==": { - "display_string": [ - "\ue063FollowingH" - ], - "profiles": [], - "name": "\ue063FollowingH", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 20:48:30", - "registerOn": 1670226380.258697, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226380.258698, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226380.2587054, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226380.2587063, - "lastIP": "azo~|a~}o~~og", - "deviceUUID": "99c9e6867cc9f32ea0f9f88fc3c3fec0fa0433c5" - }, - "pb-IF4mVW4KCg==": { - "display_string": [ - "\ue030PC297792" - ], - "profiles": [], - "name": "\ue030PC297792", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-16 22:09:12", - "registerOn": 1670226457.582149, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226457.5821497, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226457.5821557, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226457.5821567, - "lastIP": "a~o~}igaii\u007fvavi", - "deviceUUID": "3b7f3440897b3d0e42c85de043bbf8c6d1cbe8ec" - }, - "pb-IF4PU20MUQ==": { - "display_string": [ - "\ue030Android62028677" - ], - "profiles": [], - "name": "\ue030Android62028677", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-16 17:57:58", - "registerOn": 1670226522.783715, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226522.7837155, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226522.7837224, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226522.7837234, - "lastIP": "a~l~|i~~`haab", - "deviceUUID": "\u0015V^\u0004\u0003M\u0007YURAQU\u0005\u0005\u0016Q\\RUAYZWVGX" - }, - "pb-IF5TV2MzCA==": { - "display_string": [ - "\ue063RoyalProph", - "\ue030Android27475121" - ], - "profiles": [], - "name": "\ue063RoyalProph", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-09 15:25:46", - "registerOn": 1670226649.6207516, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226649.620752, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300672.096717, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670300732.285673, - "lastIP": "azo~|l~~maaja", - "deviceUUID": "e8cf97805255e86aec70c8706d6b9e5f3ca97b30", - "cMsgCount": 0, - "lastMsgTime": 1670227063.3796155, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF40U00CCg==": { - "display_string": [ - "\ue063VagueInfus" - ], - "profiles": [], - "name": "\ue063VagueInfus", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 17:20:26", - "registerOn": 1670226659.3487902, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226659.3487906, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330316.595092, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330316.5950935, - "lastIP": "az`~yj~\u007fvawl", - "deviceUUID": "253c7d0e64a83179258252f4559bc72f8679e046", - "cMsgCount": 0, - "lastMsgTime": 1670330346.254742, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF40UnkJDw==": { - "display_string": [ - "\ue063yellipai" - ], - "profiles": [], - "name": "\ue063yellipai", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-11 08:38:11", - "registerOn": 1670226866.2665646, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226866.266565, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226866.266573, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226866.266574, - "lastIP": "evvi|vb|l~~ad", - "deviceUUID": "ce58c2e31fb0efd21874c1e470474a18e21def92" - }, - "pb-IF4jU2g9Ew==": { - "display_string": [ - "\ue020UnpaidExercise38" - ], - "profiles": [], - "name": "\ue020UnpaidExercise38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-25 19:42:30", - "registerOn": 1670226869.5052457, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226869.5052464, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226869.5052528, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226869.5052536, - "lastIP": "azo~{a~~liaify", - "deviceUUID": "9b824e81fbd60169f30045059ecb9762f6b411d3" - }, - "pb-IF5WU0peVQ==": { - "display_string": [ - "\ue020KeptVacation37" - ], - "profiles": [], - "name": "\ue020KeptVacation37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 14:21:17", - "registerOn": 1670226903.3899212, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226903.3899224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226903.3899307, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226903.3899314, - "lastIP": "azo~{n~~jiaka", - "deviceUUID": "f643b228b67be1df4548532e6d11d7b24674d26f" - }, - "pb-IF4KU3AnHQ==": { - "display_string": [ - "\ue030Android62253416" - ], - "profiles": [], - "name": "\ue030Android62253416", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-26 14:30:47", - "registerOn": 1670226963.5896826, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226963.5896833, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226963.5896919, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670228788.722594, - "lastIP": "dvvc}vayn~|l", - "deviceUUID": "2620c5f80b8a2b954f6fcc27da29c5908d2f87c6", - "cMsgCount": 2, - "lastMsgTime": 1670229653.0490026, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5XUkoGDw==": { - "display_string": [ - "\ue063AerialMark", - "\ue030Android54465033" - ], - "profiles": [], - "name": "\ue063AerialMark", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-12 22:40:28", - "registerOn": 1670227022.7963612, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670227022.796362, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227022.7963703, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670227022.796371, - "lastIP": "a\u007fk~~jcaiexvgz", - "deviceUUID": "39e13719e2009e69674426018146ced270d091cc" - }, - "pb-IF4PVU49EQ==": { - "display_string": [ - "\ue020SashaGoPewpew" - ], - "profiles": [], - "name": "\ue020SashaGoPewpew", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-03 09:30:08", - "registerOn": 1670227054.923248, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670227054.923249, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227054.9232554, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670227054.923276, - "lastIP": "b\u007fk~~`iaiayva\u007fo", - "deviceUUID": "\u0015\u0004U\u0003W\u0010V_VY\u0017T\b\u0005R\u0015\u0003\\PVBT\\VXAT", - "cMsgCount": 0, - "lastMsgTime": 1670227845.6772037, - "lastMsg": "it's all good ig", - "cSameMsg": 0 - }, - "pb-IF4GUxYsDQ==": { - "display_string": [ - "\ue020ConclusiveBottle39" - ], - "profiles": [], - "name": "\ue020ConclusiveBottle39", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-16 14:12:38", - "registerOn": 1670227319.7724183, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670227319.7724187, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227319.7724278, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670227319.7724285, - "lastIP": "azo~{n~~jaaifv", - "deviceUUID": "8ead49b7ddabc9a22af41957df33d402effd5a2e" - }, - "pb-IF4KU1AsNQ==": { - "display_string": [ - "\ue063Custumtom" - ], - "profiles": [], - "name": "\ue063Custumtom", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 13:28:37", - "registerOn": 1670227461.4978473, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670227461.497848, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227461.4978573, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670227461.4978583, - "lastIP": "a}j~zh~~aeaigx", - "deviceUUID": "ff3dde8336f0ed67a71208df988d06298d531b5e" - }, - "pb-IF4LVXpYNg==": { - "display_string": [ - "\ue020UnimpededHorseback4" - ], - "profiles": [], - "name": "\ue020UnimpededHorseback4", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-10 09:53:20", - "registerOn": 1670227744.6954534, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670227744.6954541, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251381.517309, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670251437.6888216, - "lastIP": "a\u007fk~v`~|`~v", - "deviceUUID": "2227a173a4be186298989f5e5c0a0fef7e57815e", - "cMsgCount": 0, - "lastMsgTime": 1670228101.109848, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4lVUo7Eg==": { - "display_string": [ - "\ue020sobikd" - ], - "profiles": [], - "name": "\ue020sobikd", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-14 12:58:46", - "registerOn": 1670228197.982771, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228197.9827716, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228197.9827867, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670228197.9827876, - "lastIP": "a\u007fn~~aga`iajc|", - "deviceUUID": "6298115190da1bfb5df2d882f75738ee6f00d083" - }, - "pb-IF4hVFkHKg==": { - "display_string": [ - "\ue063RhythmicCr", - "\ue030Android39653045" - ], - "profiles": [], - "name": "\ue020RhythmicCrown18", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-28 18:46:27", - "registerOn": 1670228209.0389888, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228209.0389895, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670357955.5512931, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670357752.466715, - "lastIP": "dvvcxvg{va{o", - "deviceUUID": "62e44e3760cd9c6c82cf681707d065b69027b7e1", - "cMsgCount": 0, - "lastMsgTime": 1670359798.4539456, - "lastMsg": "lol", - "cSameMsg": 0 - }, - "pb-IF4pU1BTHA==": { - "display_string": [ - "\ue063Antiquate7" - ], - "profiles": [], - "name": "\ue063Antiquate7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 12:03:47", - "registerOn": 1670228297.4124837, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228297.4124844, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228297.4124925, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670228297.4124932, - "lastIP": "azo~zi~|k~wi", - "deviceUUID": "76429b13abd2692cbf282bb1b503265d3de59f86" - }, - "pb-IF4WVUsFNw==": { - "display_string": [ - "\ue063Preferent5" - ], - "profiles": [], - "name": "\ue063Preferent5", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-20 22:01:33", - "registerOn": 1670228411.789545, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228411.7895458, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296044.435284, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296044.435285, - "lastIP": "dvvc{viyva|k", - "deviceUUID": "22932973725a6b2764c9aaaa0054bf0ac3663c09" - }, - "pb-IF5RVG8EUw==": { - "display_string": [ - "\ue020HumdrumFrame7" - ], - "profiles": [], - "name": "\ue020HumdrumFrame7", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-29 19:16:30", - "registerOn": 1670228446.579187, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228446.5791874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228446.5791957, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670228446.5791965, - "lastIP": "dvvc{va|h~~j", - "deviceUUID": "d44ffd437086b4f53c81dcffeacef2ef90654ec5" - }, - "pb-IF5UU0EtKw==": { - "display_string": [ - "\ue030Android63417416" - ], - "profiles": [], - "name": "\ue030Android63417416", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-19 20:32:50", - "registerOn": 1670228484.0479453, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228484.0479462, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228484.047954, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670228484.0479553, - "lastIP": "a\u007fn~~acaj`yvd}", - "deviceUUID": "dc9a27e890eca123a1f9ce4d05a2f66cd6d02f7c" - }, - "pb-IF4lU0cxXQ==": { - "display_string": [ - "\ue063larsyuan65" - ], - "profiles": [], - "name": "\ue063larsyuan65", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 19:12:42", - "registerOn": 1670228741.8731394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228741.8731403, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228741.8731513, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670228840.917879, - "lastIP": "a|n~~mhajhala", - "deviceUUID": "2e318aa8ec18e6c872f8539535ec1e883cc781b3" - }, - "pb-IF4HU00hJw==": { - "display_string": [ - "\ue063Recipient3" - ], - "profiles": [], - "name": "\ue063Recipient3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 14:29:02", - "registerOn": 1670228784.0108788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228784.0108795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321396.582164, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321396.5821657, - "lastIP": "a\u007fk~y`~}j~yh", - "deviceUUID": "4575321855c254908c77eefcb28cd9ff7599f77f" - }, - "pb-IF4zU00GCg==": { - "display_string": [ - "\ue020SilentSalt1900" - ], - "profiles": [], - "name": "\ue020SilentSalt1900", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 14:08:37", - "registerOn": 1670228921.5335805, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228921.533581, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228921.5335886, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670229254.4435499, - "lastIP": "azj~zo~}l~zn", - "deviceUUID": "f4a122773f682de8dc15bd34a49bd18621e2ac1e" - }, - "pb-IF42U08yFw==": { - "display_string": [ - "\ue030Android63983683" - ], - "profiles": [], - "name": "\ue030Android63983683", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:42:38", - "registerOn": 1670228933.8215332, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228933.8215337, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339615.3399155, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670340264.6702204, - "lastIP": "a|o~vo~x`~}id", - "deviceUUID": "7ed4cb26643deafc53d59f450dfda5d60fe5270f" - }, - "pb-IF4UUmQDJw==": { - "display_string": [ - "\ue020JauntyCoin52791", - "\ue030Android52824015" - ], - "profiles": [], - "name": "\ue020JauntyCoin52791", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-04 18:30:08", - "registerOn": 1670228976.775681, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228976.7756817, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228976.7756903, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670228976.775691, - "lastIP": "a\u007fn~}heajbaic~", - "deviceUUID": "71419b847c4b6137f6d3246d7890d14e677339c3" - }, - "pb-IF4yD3Qc": { - "display_string": [ - "\ue063SpaceShutt", - "\ue030Android46872814" - ], - "profiles": [], - "name": "\ue063SpaceShutt", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-05 10:42:33", - "registerOn": 1670228987.758543, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228987.7585437, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343940.8096943, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670346722.1913195, - "lastIP": "azo~|j~}lcaja", - "deviceUUID": "ca8f32981f1fe7f2136876c26921f7859a9f3f96", - "cMsgCount": 0, - "lastMsgTime": 1670344083.3772483, - "lastMsg": "ok", - "cSameMsg": 0 - }, - "pb-IF4PUkkqMA==": { - "display_string": [ - "\ue063BrutalSici" - ], - "profiles": [], - "name": "\ue063BrutalSici", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-16 10:02:41", - "registerOn": 1670229356.5626655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229356.562666, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322121.2772715, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670322142.3583076, - "lastIP": "a\u007fk~~aaaj`{vg{", - "deviceUUID": "dcc5c7508559ffa5b58c9495fea6671707be3cc8" - }, - "pb-IF5dU08nEw==": { - "display_string": [ - "\ue020ElegantCavalier77306" - ], - "profiles": [], - "name": "\ue020ElegantCavalier77306", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 09:03:26", - "registerOn": 1670229402.3325691, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229402.3325698, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229402.3325784, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229402.3325794, - "lastIP": "b}k~~`gaib~vazo", - "deviceUUID": "eb82fd15cf5cc77c3ff31d26a9f7f0c821748d3e" - }, - "pb-IF4WU2ooNg==": { - "display_string": [ - "\ue063Customary7" - ], - "profiles": [], - "name": "\ue063Customary7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-03 17:39:17", - "registerOn": 1670229408.377324, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229408.3773248, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229408.3773336, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229408.3773348, - "lastIP": "azj~z`~|l~~md", - "deviceUUID": "4368e63f833e87303119297e60c52375cc211ec2" - }, - "pb-IF4KU1AsAQ==": { - "display_string": [ - "\ue063NOTJOSHLEO" - ], - "profiles": [], - "name": "\ue063NOTJOSHLEO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 14:09:38", - "registerOn": 1670229593.009421, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229593.0094216, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229593.00943, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229593.0094311, - "lastIP": "a{h~}icaiixvfx", - "deviceUUID": "99b1bcc147f758903ee66d180a59c5ffa6f77f14" - }, - "pb-IF5UUks5DQ==": { - "display_string": [ - "\ue063WinterProf" - ], - "profiles": [], - "name": "\ue063WinterProf", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-17 22:28:17", - "registerOn": 1670229595.9927943, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229595.992795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229595.9928029, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229595.9928036, - "lastIP": "azo~{a~~jiajbv", - "deviceUUID": "a94b206be518cd1883431b924685eff2e39af3dd" - }, - "pb-IF4sVW8hUA==": { - "display_string": [ - "\ue020\ud835\udd8e\ud835\udd86\ud835\udd93\ud835\udd89\ud835\udd8e\ud835\udd94\ud835\udd97" - ], - "profiles": [], - "name": "\ue020\ud835\udd8e\ud835\udd86\ud835\udd93\ud835\udd89\ud835\udd8e\ud835\udd94\ud835\udd97", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-26 11:45:30", - "registerOn": 1670229602.0637639, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229602.0637648, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229602.0637722, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229602.063773, - "lastIP": "dvvb|o~~k~v`", - "deviceUUID": "382568c64573fdea10beb998e6a68ad17b62e7f2" - }, - "pb-IF4rU3NTEA==": { - "display_string": [ - "\ue030Android62498959" - ], - "profiles": [], - "name": "\ue030Android62498959", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-06 22:59:09", - "registerOn": 1670229629.1306546, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229629.1306553, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229629.1306636, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670229701.0906115, - "lastIP": "azj~zo~~hiamb", - "deviceUUID": "\u0015QZVRG\u0002\bYWFY^PTFS\\SU@Q\\PWA" - }, - "pb-IF4MU087Dw==": { - "display_string": [ - "\ue063UnsoundApp" - ], - "profiles": [], - "name": "\ue063UnsoundApp", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 19:08:41", - "registerOn": 1670229696.38345, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229696.3834505, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229696.3834593, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229696.38346, - "lastIP": "dvva{l~~hfaicx", - "deviceUUID": "4825d16b394479d5f7c7351f6bf0ecbff01099ca" - }, - "pb-IF4UVxEtHA==": { - "display_string": [ - "\ue063SarayutVic" - ], - "profiles": [], - "name": "\ue063SarayutVic", - "isBan": false, - "isMuted": false, - "accountAge": "2018-07-11 17:55:35", - "registerOn": 1670229715.7352576, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229715.7352583, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229715.7352688, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229715.7352698, - "lastIP": "b}k~}hfajb\u007fva\u007fh", - "deviceUUID": "360dc7b30d80b599690c65212359015f751eb0af" - }, - "pb-IF4LVGQoMg==": { - "display_string": [ - "\ue020NarrativePulp7" - ], - "profiles": [], - "name": "\ue020NarrativePulp7", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-01 07:35:36", - "registerOn": 1670229799.8144748, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229799.8144753, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327914.0341606, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327914.0341618, - "lastIP": "dvvc{vaxj~~ii", - "deviceUUID": "5005c19e252c77de222a0b3aa38fbfada738a319" - }, - "pb-IF4QU3IfHw==": { - "display_string": [ - "\ue020ChestnutMisery45" - ], - "profiles": [], - "name": "\ue020ChestnutMisery45", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 16:52:45", - "registerOn": 1670229852.9366603, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229852.9366608, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229852.9366696, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229852.9366708, - "lastIP": "b}k~}jeajdyvhx", - "deviceUUID": "5ce3d6b9ee7d400300e2c33d083822274ab3a590" - }, - "pb-IF4BVGUmHw==": { - "display_string": [ - "\ue020nedstark5000" - ], - "profiles": [], - "name": "\ue020nedstark5000", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-10 10:31:18", - "registerOn": 1670229924.216744, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229924.2167447, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229924.2167525, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229924.2167535, - "lastIP": "a\u007fn~x`~~n`a`i", - "deviceUUID": "cb18af39dd9676be6089958288eea3ef546e0f39" - }, - "pb-IF4yU0oAUQ==": { - "display_string": [ - "\ue030Android63790532" - ], - "profiles": [], - "name": "\ue030Android63790532", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 19:16:01", - "registerOn": 1670230033.6235216, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230033.6235223, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230033.6235301, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670230033.6235313, - "lastIP": "azo~{a~}ifaii", - "deviceUUID": "edbf8f1218752fca82fdadf2d70f3a2bee7e837b" - }, - "pb-IF4SVU4FJw==": { - "display_string": [ - "\ue030Android52507762" - ], - "profiles": [], - "name": "\ue030Android52507762", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-07 17:10:11", - "registerOn": 1670230208.5107021, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230208.510703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230208.5107107, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670230208.510712, - "lastIP": "b}k~~`gaiaxvaxl", - "deviceUUID": "\u0015T\\T\u0004EQ_VVL\u0005\u000f\u0002\u0002\u0011STYSAQZPP@" - }, - "pb-JiNJVxFeVkNJXVtJGEBRUFJEEUFaQ1dA": { - "display_string": [ - "\ue020vijaysurya1805" - ], - "profiles": [], - "name": "\ue020vijaysurya1805", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-03 23:49:28", - "registerOn": 1670230309.6902184, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230309.6902192, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230309.6902275, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670230309.6902285, - "lastIP": "azo~zi~~hcaoe", - "deviceUUID": "66f35a045854f652d537fd4f22ffa69d0e3f71d7" - }, - "pb-IF4QU0cGKQ==": { - "display_string": [ - "\ue063Fluoresc10" - ], - "profiles": [], - "name": "\ue063Fluoresc10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 17:10:15", - "registerOn": 1670230501.3428638, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230501.342864, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230501.3428726, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670230501.3428736, - "lastIP": "a~o~}igaogaja{", - "deviceUUID": "52d426451801122f6a327e29b37553d47e1b7fd5" - }, - "pb-IF4RU0kkPA==": { - "display_string": [ - "\ue030Android63737185" - ], - "profiles": [], - "name": "\ue030Android63737185", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 12:41:43", - "registerOn": 1670230749.4979107, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230749.4979115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324759.2630568, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670325581.1100628, - "lastIP": "axi~{a~}kfai`x", - "deviceUUID": "c0d55be043457f66c1af41eb1fa91b227bf5f05b" - }, - "pb-IF4IUxUpCA==": { - "display_string": [ - "\ue020UnmarkedCommodore37" - ], - "profiles": [], - "name": "\ue020UnmarkedCommodore37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-15 13:26:32", - "registerOn": 1670230837.6404083, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230837.640409, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230837.6404185, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670230837.6404195, - "lastIP": "azo~|k~~abaibw", - "deviceUUID": "0388fd7e2f803334381174ca2a8585c9527da27a" - }, - "pb-IF5UUkMlDA==": { - "display_string": [ - "\ue063FancyPan23" - ], - "profiles": [], - "name": "\ue020FancyPantsLevel5048", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-18 10:53:25", - "registerOn": 1670230855.7314546, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230855.7314556, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308273.3458445, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308273.3458457, - "lastIP": "awj~xl~~agam`", - "deviceUUID": "5893c67d28623308e85d53e01f81d372327531dd" - }, - "pb-IF49U21YDQ==": { - "display_string": [ - "\ue020FreelanceProblem24", - "\ue030Android59843406" - ], - "profiles": [], - "name": "\ue030Android59843406", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-14 11:04:49", - "registerOn": 1670230943.0635073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230943.0635078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324297.3563714, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670324297.356373, - "lastIP": "a|n~~mhai`}vava", - "deviceUUID": "1b541227be57713283d65bfeaf44e43b051ee400", - "cMsgCount": 0, - "lastMsgTime": 1670240890.5801091, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4dU3FeVg==": { - "display_string": [ - "\ue030Android62362778", - "\ue030Android63946527", - "\ue030Android63791115" - ], - "profiles": [], - "name": "\ue030Android63946527", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 12:13:43", - "registerOn": 1670231050.7772844, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231050.7772846, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292905.8784635, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292905.8784652, - "lastIP": "dxvc~vb}o~wk", - "deviceUUID": "f0c5cbbe23c69b55ddd7f83779d8518657f89696" - }, - "pb-IF4DV24sDQ==": { - "display_string": [ - "\ue063DarkKnigh3", - "\ue030PC773596" - ], - "profiles": [], - "name": "\ue063DarkKnigh3", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-25 13:33:03", - "registerOn": 1670231104.689741, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231104.6897416, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231104.6897497, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231104.6897502, - "lastIP": "azo~{n~}hhaje|", - "deviceUUID": "58bb36a03707ec42ee131f438adc07f4c6e590cf", - "cMsgCount": 0, - "lastMsgTime": 1670231360.083685, - "lastMsg": "sure", - "cSameMsg": 0 - }, - "pb-LV4FXhAOU0pGXF9AFhNQUVJDEA==": { - "display_string": [ - "\ue030Android12758543" - ], - "profiles": [], - "name": "\ue030Android12758543", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-21 13:28:30", - "registerOn": 1670231619.3314147, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231619.3314154, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231619.3314242, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231619.331425, - "lastIP": "a\u007fk~~oiaia~va{m", - "deviceUUID": "50510f8eec27484cb21a7b263a17d112b8fee4b4" - }, - "pb-IF5VU0kBBA==": { - "display_string": [ - "\ue020VOILENTFIGHTER12", - "\ue030Android63671399" - ], - "profiles": [], - "name": "\ue020VOILENTFIGHTER12", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 16:52:45", - "registerOn": 1670231635.3568554, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231635.3568559, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670231789.973674, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231635.3568647, - "lastIP": "b}k~~`haje}vazm", - "deviceUUID": "02203c8528f66eed06dc45380a5eb55df893b6c3", - "cMsgCount": 0, - "lastMsgTime": 1670231828.4432135, - "lastMsg": "he would wipe himslf only", - "cSameMsg": 0 - }, - "pb-IF5RU0cNFA==": { - "display_string": [ - "\ue063Unsuitabl4" - ], - "profiles": [], - "name": "\ue063Unsuitabl4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 20:37:24", - "registerOn": 1670231774.9812443, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231774.981245, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231774.981254, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231774.981255, - "lastIP": "dvvd|viwvaxn", - "deviceUUID": "935c01f6439a763b266019148f02842f480c36c0" - }, - "pb-IF4QV0s7Fw==": { - "display_string": [ - "\ue020VISHAL6364S17" - ], - "profiles": [], - "name": "\ue020VISHAL6364S17", - "isBan": false, - "isMuted": false, - "accountAge": "2019-03-19 23:03:21", - "registerOn": 1670231824.3624701, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231824.3624709, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231824.3624814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231824.3624825, - "lastIP": "a\u007fk~}h`ai`yvg|", - "deviceUUID": "13e0c4be85e8a71aa81fbd51163ef27710fb4957" - }, - "pb-IF4AN2w6": { - "display_string": [ - "\ue020L\u00f8neW\u00f8lf\u00e6" - ], - "profiles": [], - "name": "\ue020L\u00f8neW\u00f8lf\u00e6", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-15 22:29:31", - "registerOn": 1670231855.141531, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231855.1415315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231855.1415393, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231855.14154, - "lastIP": "azo~zi~z`~}kd", - "deviceUUID": "64e2eeb8ff7d20fecb2b38975848aba0f3a56f13" - }, - "pb-IF4rU24hJA==": { - "display_string": [ - "\ue063StableCohe" - ], - "profiles": [], - "name": "\ue063StableCohe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 11:30:21", - "registerOn": 1670231861.1913927, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231861.1913934, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670304340.820544, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670304340.8205454, - "lastIP": "azo~{`~}jeai`z", - "deviceUUID": "7852b404f352d59f1c837ce5b6bd876df1357f13" - }, - "pb-IF4RVUIJLw==": { - "display_string": [ - "\ue020DamchAlandamcha" - ], - "profiles": [], - "name": "\ue020DamchAlandamcha", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-27 18:44:08", - "registerOn": 1670231909.292282, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231909.2922828, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231909.292292, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231909.292293, - "lastIP": "dxvbvva\u007fh~}mb", - "deviceUUID": "546dd15cb7113bf424892acf7e24c1e92ef356e9" - }, - "pb-IF4AU2MlLQ==": { - "display_string": [ - "\ue030Android61099795" - ], - "profiles": [], - "name": "\ue030Android61099795", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-09 15:41:05", - "registerOn": 1670231947.4806788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231947.4806793, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231947.4806871, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231947.4806879, - "lastIP": "azo~{n~va~yk", - "deviceUUID": "3323e73f0e4215e8ba276cbb5329a84fd3c0fbab" - }, - "pb-IF4qVEsdVQ==": { - "display_string": [ - "\ue063FreakyArac" - ], - "profiles": [], - "name": "\ue063FreakyArac", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-30 10:46:12", - "registerOn": 1670231956.4936595, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231956.49366, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231956.4936674, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231956.493668, - "lastIP": "awj~}kba`~~kg", - "deviceUUID": "9fe67bb9f218160ed3e553457297526bfcec6a21" - }, - "pb-IF4xU2I9AQ==": { - "display_string": [ - "\ue020Jafarsadiqu369", - "\ue030Android48424246" - ], - "profiles": [], - "name": "\ue020Jafarsadiqu369", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-08 14:09:07", - "registerOn": 1670231962.4716892, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231962.47169, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231962.4716992, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231962.4717002, - "lastIP": "azo~{n~~hgaja~", - "deviceUUID": "888501e43582b23844ca42842630113f077a4836" - }, - "pb-IF40UhVdVA==": { - "display_string": [ - "\ue063Deepak11De", - "\ue030Android47282468" - ], - "profiles": [], - "name": "\ue063Deepak11De", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-26 18:43:42", - "registerOn": 1670232172.3092148, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232172.3092153, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670322800.3348196, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322128.3098495, - "lastIP": "azo~zi~~abaig}", - "deviceUUID": "2d110f888b9c6f25e7c6c6a8749fadb88ab0fc02", - "cMsgCount": 0, - "lastMsgTime": 1670322800.3347573, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5QU04IXA==": { - "display_string": [ - "\ue030Android63833589" - ], - "profiles": [], - "name": "\ue030Android63833589", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 15:40:22", - "registerOn": 1670232299.9887512, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232299.988752, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232299.9887598, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232299.988761, - "lastIP": "b\u007fk~~adaafaie}", - "deviceUUID": "cc6729cd48dbaa8518fdbe9773b1da1b5db10d8e" - }, - "pb-JiNJARFdU0tCWFtDGEFVUVZLFUFbQlBH": { - "display_string": [ - "\ue020kannadapora" - ], - "profiles": [], - "name": "\ue020kannadapora", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-17 12:14:52", - "registerOn": 1670232351.0239007, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232351.0239012, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232351.0239096, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232351.0239108, - "lastIP": "azo~zh~yn~yk", - "deviceUUID": "120cdf633025fb510cdbec94ad24ac7ae954f149" - }, - "pb-IF4WVWgAEQ==": { - "display_string": [ - "\ue030Android47133090", - "\ue030Android48008737" - ], - "profiles": [], - "name": "\ue030Android47133090", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-31 16:35:33", - "registerOn": 1670232532.4790263, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232532.479027, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232532.479035, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232532.4790359, - "lastIP": "d}va\u007fm~~o`ao", - "deviceUUID": "50c60444043f819ee0cebbe1b760f052952a7c09" - }, - "pb-IF5SUkwMAg==": { - "display_string": [ - "\ue063RAGExLUINO", - "\ue030Android32286970" - ], - "profiles": [], - "name": "\ue063RAGExLUINO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-22 11:19:14", - "registerOn": 1670232565.737403, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232565.7374034, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315581.000924, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315581.0009255, - "lastIP": "dvvcyva\u007fm~~kc", - "deviceUUID": "540b5d7a29b251a9b29ecf49aacbf1ecafaaf618" - }, - "pb-IF4dU0xeEg==": { - "display_string": [ - "\ue063GreasyTrad" - ], - "profiles": [], - "name": "\ue020GreasyTrader56", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 13:26:32", - "registerOn": 1670232575.7362576, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232575.736258, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295991.2133746, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670299774.856268, - "lastIP": "awl~}j~y`~{k", - "deviceUUID": "316fd49e31dcf8ae2c73c39196bb81f875b8af94" - }, - "pb-IF4CVEMENw==": { - "display_string": [ - "\ue063MMHQ17" - ], - "profiles": [], - "name": "\ue063MMHQ17", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-14 12:53:46", - "registerOn": 1670232614.8934724, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232614.893473, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232614.8934844, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232614.8934853, - "lastIP": "awk~~oaaiaxva|", - "deviceUUID": "0161212ee288be8904751fe45194dafae3e91e8f" - }, - "pb-IF4BVWISAA==": { - "display_string": [ - "\ue020CapitalisticHeaven18" - ], - "profiles": [], - "name": "\ue020CapitalisticHeaven18", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-20 19:45:21", - "registerOn": 1670232730.2588408, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232730.2588413, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232730.2588499, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232730.2588506, - "lastIP": "aakhaih}va}m", - "deviceUUID": "36de0ba4f3fa18a835069f50f13f280e513e7527" - }, - "pb-IF4dVGU7Cw==": { - "display_string": [ - "\ue063marimol870", - "\ue030Android37966151" - ], - "profiles": [], - "name": "\ue063marimol870", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-08 19:37:42", - "registerOn": 1670232787.491768, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232787.4917684, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232787.4917767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232787.491778, - "lastIP": "dvva{`~~miaihx", - "deviceUUID": "1d45639efd616bced809e0a5f732f0a64885a9f5" - }, - "pb-JiNJARBZXENAX1tGFE5TUVNBEkFZRVJH": { - "display_string": [ - "\ue063Hackermemy", - "\ue030Android7331632" - ], - "profiles": [], - "name": "\ue063Hackermemy", - "isBan": false, - "isMuted": false, - "accountAge": "2016-10-17 17:53:02", - "registerOn": 1670232811.8246622, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232811.824663, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232811.824671, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232811.8246717, - "lastIP": "azo~{l~~oeajc\u007f", - "deviceUUID": "4a8e0db520f8c4343259a372627aedb7643f4240" - }, - "pb-IF4lVxkZUQ==": { - "display_string": [ - "\ue063hothareesh", - "\ue030Android27426054" - ], - "profiles": [], - "name": "\ue020hothareesh100", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-06 19:29:13", - "registerOn": 1670232814.937801, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232814.9378011, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670304332.1959348, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670304522.4524214, - "lastIP": "a\u007fn~}heaiawvaw`", - "deviceUUID": "21070610f22597cd241179ec831a3f4f6f2174f2", - "cMsgCount": 0, - "lastMsgTime": 1670304332.1958427, - "lastMsg": "Riya noobdaaa", - "cSameMsg": 0 - }, - "pb-IF4DU3MnLg==": { - "display_string": [ - "\ue020nonstopunstoble" - ], - "profiles": [], - "name": "\ue020nonstopunstoble", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 16:44:46", - "registerOn": 1670232842.6894054, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232842.689406, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232842.6894143, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232842.689415, - "lastIP": "a\u007fk~}hdaiavvi|", - "deviceUUID": "584fbb1fa82c6aea3da298684c427bdc72168d30" - }, - "pb-IF5dU2IpIg==": { - "display_string": [ - "\ue030Android60843943" - ], - "profiles": [], - "name": "\ue030Android60843943", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-30 10:51:00", - "registerOn": 1670232924.9661102, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232924.966111, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232924.9661202, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670232974.8136418, - "lastIP": "a}j~zl~}haaah", - "deviceUUID": "19a1fd621f0b2bf3b67425b434571cfc2db9e785" - }, - "pb-IF4vUkUOXA==": { - "display_string": [ - "\ue020Asrofi143", - "\ue030Android57950775" - ], - "profiles": [], - "name": "\ue020Asrofi143", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-02 11:46:41", - "registerOn": 1670233027.4030156, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670233027.403016, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670233027.4030247, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670233027.4030254, - "lastIP": "b\u007fk~x`~~iiaic\u007f", - "deviceUUID": "474213b702bf837418cbf7faba5bc678fa2a6bb2" - }, - "pb-JiNJARBeXEtHWlZEFkBXXVJAF0JZQ1hG": { - "display_string": [ - "\ue063BalajiStar", - "\ue030Android6370317" - ], - "profiles": [], - "name": "\ue063BalajiStar", - "isBan": false, - "isMuted": false, - "accountAge": "2016-09-04 12:33:39", - "registerOn": 1670233336.4193757, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670233336.4193764, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670233336.4193847, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670233336.419386, - "lastIP": "a~h~}jdaaeaje", - "deviceUUID": "6cf109de66417ef6bf59abd01631a26488416538" - }, - "pb-IF5TU1EZJg==": { - "display_string": [ - "\ue063SneakyCyli" - ], - "profiles": [], - "name": "\ue063SneakyCyli", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 18:28:40", - "registerOn": 1670233692.9072526, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670233692.9072533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670233692.9072618, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670233692.907263, - "lastIP": "a|a~~keajd~vb{", - "deviceUUID": "76c972299e3339d7acc74cbe0de21bc585d46b03" - }, - "pb-IF5XVEI_Kg==": { - "display_string": [ - "\ue063Genos909" - ], - "profiles": [], - "name": "\ue063Genos909", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-21 15:32:41", - "registerOn": 1670233766.9479449, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670233766.947945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670233766.9479523, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670233766.9479535, - "lastIP": "a\u007fn~~abakfajaw", - "deviceUUID": "9becef1c66dc1d720ac5e717c4dfc2a8fa59640b", - "cMsgCount": 0, - "lastMsgTime": 1670234566.625439, - "lastMsg": "bye", - "cSameMsg": 0 - }, - "pb-IF4sUhk4JA==": { - "display_string": [ - "\ue020MistakenNinja57588", - "\ue063UselessGuy", - "\ue030Android47506985", - "\ue030Android54715214" - ], - "profiles": [], - "name": "\ue063UselessGuy", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-18 13:29:29", - "registerOn": 1670233970.7107036, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670233970.7107043, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330435.991491, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670332183.576174, - "lastIP": "a\u007fk~~`aajbyva|h", - "deviceUUID": "8a637db1124ccf92bee0f3345f362f060d71afc5", - "cMsgCount": 0, - "lastMsgTime": 1670330722.9647627, - "lastMsg": "lag", - "cSameMsg": 0 - }, - "pb-IF4sU2kaLg==": { - "display_string": [ - "\ue063JauntyJour" - ], - "profiles": [], - "name": "\ue063JauntyJour", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-05 18:18:45", - "registerOn": 1670234074.3004742, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234074.3004751, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234074.3004847, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234074.3004854, - "lastIP": "awj~ya~~jfaic", - "deviceUUID": "e75309a808347eeaefab4a2c953f36377ac2c203" - }, - "pb-IF4qUhZcEA==": { - "display_string": [ - "\ue063AssortedSy" - ], - "profiles": [], - "name": "\ue063AssortedSy", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-30 08:41:53", - "registerOn": 1670234192.612451, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234192.6124518, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234192.6124678, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670243669.3451233, - "lastIP": "a|n~~mhai~|m", - "deviceUUID": "304e094248ca9109b8068e62ade737cbcaa43b98", - "cMsgCount": 0, - "lastMsgTime": 1670244145.8924348, - "lastMsg": "lick my balls", - "cSameMsg": 0 - }, - "pb-IF4GU1AiNw==": { - "display_string": [ - "\ue063ArableRail" - ], - "profiles": [], - "name": "\ue063ArableRail", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 02:08:07", - "registerOn": 1670234202.9001796, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234202.9001803, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234202.9001892, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234202.90019, - "lastIP": "azo~|m~{k~wk", - "deviceUUID": "b0a02c1298b195db2882e779f825fbc15b2c3387" - }, - "pb-IF4nUhQNAw==": { - "display_string": [ - "\ue020Dragonkozhi", - "\ue030Android46699176" - ], - "profiles": [], - "name": "\ue020Dragonkozhi", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-22 22:04:25", - "registerOn": 1670234242.7888577, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234242.7888587, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234242.7888684, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234242.7888694, - "lastIP": "a\u007fn~}hfaja{vawm", - "deviceUUID": "ae868456774656cf785b5122781b014518715be9" - }, - "pb-IF5dU00RPw==": { - "display_string": [ - "\ue020SympatheticPromise22" - ], - "profiles": [], - "name": "\ue020SympatheticPromise22", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 11:09:45", - "registerOn": 1670234258.8802338, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234258.8802342, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234258.8802423, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234258.8802433, - "lastIP": "bxvf~va{va}m", - "deviceUUID": "7a01d8b3a3c2e937a1941673055fd9b6e3961ba0" - }, - "pb-IF5TU1EnLg==": { - "display_string": [ - "\ue063OvertSubje" - ], - "profiles": [], - "name": "\ue063OvertSubje", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 13:41:34", - "registerOn": 1670234341.1950166, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234341.195017, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234341.1950245, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234341.1950252, - "lastIP": "azo~{a~}lcajaz", - "deviceUUID": "c04fd3b3117015d5805929f760c462aa173b4aa6" - }, - "pb-IF4xU04eUw==": { - "display_string": [ - "\ue063UncheckedF", - "\ue030Android63163881" - ], - "profiles": [], - "name": "\ue063UncheckedF", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 14:02:18", - "registerOn": 1670234357.1799545, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234357.179955, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346988.3629231, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346988.3629246, - "lastIP": "azo~|j~}hiajbz", - "deviceUUID": "fe67a3e8127ff9b9110a971159e051d17f7329dc" - }, - "pb-IF4uVU4PKQ==": { - "display_string": [ - "\ue020AWMkingVB" - ], - "profiles": [], - "name": "\ue020AWMkingVB", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-04 08:49:29", - "registerOn": 1670234361.2587607, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234361.2587612, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316402.982529, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316402.9825308, - "lastIP": "a\u007fn~}j`aidzvb\u007fm", - "deviceUUID": "\u0015\u0003\u000bQX\u0015V\u000fT\u0002\u0015\u0007Y\u0003WLW\\VYDPYSXF" - }, - "pb-IF4cU00cCQ==": { - "display_string": [ - "\ue063EasyComple" - ], - "profiles": [], - "name": "\ue063EasyComple", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 16:48:04", - "registerOn": 1670234690.8938744, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234690.8938746, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670335003.2324574, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670334950.2500994, - "lastIP": "a\u007fk~wm~vvb\u007fj", - "deviceUUID": "c6935ed0cba45b40db30a2ef1324397ce33e9626", - "cMsgCount": 0, - "lastMsgTime": 1670335579.1368659, - "lastMsg": "we are losing because oir player are offline ", - "cSameMsg": 0 - }, - "pb-IF5UVXUlKQ==": { - "display_string": [ - "\ue063Prevalent6", - "\ue030Android63959074", - "\ue030Android63959349", - "\ue030Android63958717", - "\ue030Android63958731" - ], - "profiles": [], - "name": "\ue063Prevalent6", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-18 15:22:50", - "registerOn": 1670234774.9324722, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234774.9324732, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234774.9324815, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234774.9324827, - "lastIP": "a\u007fn~~agaiayvayi", - "deviceUUID": "da48e42a2ed2caa30161500ba2c122298cc59e97" - }, - "pb-IF4iVWQ_Bg==": { - "display_string": [ - "\ue020IpnRagul752" - ], - "profiles": [], - "name": "\ue020IpnRagul752", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-29 21:52:02", - "registerOn": 1670235012.8449953, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235012.8449957, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336016.0226274, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336016.0226288, - "lastIP": "azo~{a~~mfaiez", - "deviceUUID": "4db0b57b5ad7b1b05bd1794f41ff7dc92e916793" - }, - "pb-IF4hDRld": { - "display_string": [ - "\ue020SubmissiveRunner2674", - "\ue030Android22951133" - ], - "profiles": [], - "name": "\ue020SubmissiveRunner2674", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-14 12:15:57", - "registerOn": 1670235155.3033073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235155.303308, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235155.3033173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670235155.3033183, - "lastIP": "bxvf|vezvcv", - "deviceUUID": "3bf5795d4a2165a83642645c5b64290930730723" - }, - "pb-IF4HU0cMAw==": { - "display_string": [ - "\ue020iQninjakilaryashyash" - ], - "profiles": [], - "name": "\ue020iQninjakilaryashyash", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-17 20:46:25", - "registerOn": 1670235212.5736802, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235212.5736809, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235212.5736895, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670235212.5736902, - "lastIP": "azo~|`~}kham`", - "deviceUUID": "bd0054a8422231478b2af7cb5c6b5475cfd91d37" - }, - "pb-IF4hU0oSFw==": { - "display_string": [ - "\ue063Preventab2" - ], - "profiles": [], - "name": "\ue063Preventab2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 09:52:34", - "registerOn": 1670235231.6770694, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235231.67707, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329464.3542664, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670335205.3804848, - "lastIP": "a\u007fn~}ifajdvvb~o", - "deviceUUID": "94ca35ce05e84c3d65e04a6d37510b561ca78e00" - }, - "pb-IF5SU1EHPw==": { - "display_string": [ - "\ue030Android63989539" - ], - "profiles": [], - "name": "\ue030Android63989539", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 15:48:42", - "registerOn": 1670235559.9395788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235559.9395795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235559.9395883, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670236656.5211272, - "lastIP": "b}k~~ohaj`vvb\u007fo", - "deviceUUID": "ad542397f4b0d89c6fb7139d139e36ccd1777333" - }, - "pb-IF4UU0hfDQ==": { - "display_string": [ - "\ue020MonoCaprice47" - ], - "profiles": [], - "name": "\ue020MonoCaprice47", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 12:16:56", - "registerOn": 1670235815.705764, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235815.7057648, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235815.7057729, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670235815.7057736, - "lastIP": "azj~zo~~agaja~", - "deviceUUID": "a234e83fc5f176fbc15b92464be2bc69d223c62a" - }, - "pb-IF4qU00cHA==": { - "display_string": [ - "\ue030Android63904390" - ], - "profiles": [], - "name": "\ue030Android63904390", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 01:19:17", - "registerOn": 1670236202.318054, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236202.3180544, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236202.318063, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670238455.452045, - "lastIP": "dvvcyvb|k~}lb", - "deviceUUID": "c171afd26514f79cf389a37613dc2ad1d6f7a295" - }, - "pb-IF4NVWQzBg==": { - "display_string": [ - "\ue063Imaginabl8", - "\ue030Android47364094" - ], - "profiles": [], - "name": "\ue063Imaginabl8", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-03 19:39:08", - "registerOn": 1670236240.1274066, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236240.1274073, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332726.5356693, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332726.5356708, - "lastIP": "azo~|k~~heaigz", - "deviceUUID": "97937c4dbf0ff0f0d4572a3ad7086f746366ca83" - }, - "pb-IF4PI1Q7": { - "display_string": [ - "\ue020GeekyAardvark72483", - "\ue030Android41686991" - ], - "profiles": [], - "name": "\ue020GeekyAardvark72483", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-21 10:27:58", - "registerOn": 1670236318.4871345, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236318.487135, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236318.4871445, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236318.4871454, - "lastIP": "dvvc{vb~o~~`g", - "deviceUUID": "d3b799a9a81da4a861b3fe166ad469acc72c089b" - }, - "pb-IF4tU04mMg==": { - "display_string": [ - "\ue020NonOp43" - ], - "profiles": [], - "name": "\ue020NonOp43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 11:37:50", - "registerOn": 1670236339.502523, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236339.5025232, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236339.5025332, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236339.502534, - "lastIP": "f~vi\u007fvc}vb~o", - "deviceUUID": "cf0c8f5339e85f589f66274676c45eaafc5a451e" - }, - "pb-IF4-U04OIw==": { - "display_string": [ - "\ue020KimchiWawa2769" - ], - "profiles": [], - "name": "\ue020KimchiWawa2769", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 17:32:47", - "registerOn": 1670236464.1042817, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236464.1042821, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236464.1042907, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236464.104292, - "lastIP": "f~vfajczva{m", - "deviceUUID": "38672c47764a1a4c30fd1659d37dee5911977ea8", - "cMsgCount": 0, - "lastMsgTime": 1670236611.6556265, - "lastMsg": "Im lagg", - "cSameMsg": 0 - }, - "pb-IF42VW5aNA==": { - "display_string": [ - "\ue020AbjectLimb21", - "\ue030Android47379546" - ], - "profiles": [], - "name": "\ue030Android47379546", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-13 12:07:08", - "registerOn": 1670236486.1613517, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236486.1613522, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236486.16136, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670244839.462826, - "lastIP": "dvvc{vb{j~}li", - "deviceUUID": "49554461391413791e81a2011f0e0a23232a4925", - "cMsgCount": 0, - "lastMsgTime": 1670237148.3267462, - "lastMsg": "no", - "cSameMsg": 0 - }, - "pb-IF5WU20CLA==": { - "display_string": [ - "\ue063IdyllicTri" - ], - "profiles": [], - "name": "\ue063IdyllicTri", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 01:33:05", - "registerOn": 1670236617.6280942, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236617.628095, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236617.6281025, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236617.6281037, - "lastIP": "a\u007fj~ym~{vax`", - "deviceUUID": "f658f95a80e699ee6fa7352ff02ded6caa4a82b2" - }, - "pb-IF4tU0cOBg==": { - "display_string": [ - "\ue020sunil678p" - ], - "profiles": [], - "name": "\ue020sunil678p", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 12:19:42", - "registerOn": 1670236686.0805795, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236686.08058, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236686.0805883, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236686.0805893, - "lastIP": "azj~z`~|m~~jb", - "deviceUUID": "268b5102ca182ff4a956fc9ec1b961a66bb7f612" - }, - "pb-IF4KUnEmVg==": { - "display_string": [ - "\ue020DowncastCruise28" - ], - "profiles": [], - "name": "\ue020DowncastCruise28", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-04 09:57:41", - "registerOn": 1670236767.6040006, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236767.604001, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670254334.6349177, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670255998.405253, - "lastIP": "azo~{i~}leajd", - "deviceUUID": "\u0015Y\u000bY\u0003\u0016\u0007^U\u0005FVYS\u0005\u0016\u0007\\RPBVUUW", - "cMsgCount": 0, - "lastMsgTime": 1670254355.4051914, - "lastMsg": "fight", - "cSameMsg": 0 - }, - "pb-IF4xU0o7Ug==": { - "display_string": [ - "\ue020VvFightVv", - "\ue020SecondarySuspense43" - ], - "profiles": [], - "name": "\ue020VvFightVv", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 22:50:19", - "registerOn": 1670236826.8973343, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236826.8973348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341261.3616738, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341261.361675, - "lastIP": "hzva{h~{vb\u007fm", - "deviceUUID": "\u0015UXRWL\u0007\\YS\u0011Y\u000ePX\u0016\u0007XRUEWUPTC" - }, - "pb-IF4FU2wEUQ==": { - "display_string": [ - "\ue020GrossestHothead39", - "\ue030Android60313961" - ], - "profiles": [], - "name": "\ue020GrossestHothead39", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-14 10:47:36", - "registerOn": 1670236938.9873567, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236938.9873571, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236938.987366, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236938.987367, - "lastIP": "azo~zi~~aeaiax", - "deviceUUID": "\u0015YXW\u0004C\u0002]\u0003X\u0011Q\u000f\u0005X\u0015\u0003\\VXFP]VVES" - }, - "pb-IF4QU0ofBg==": { - "display_string": [ - "\ue030Android63800944" - ], - "profiles": [], - "name": "\ue030Android63800944", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 10:26:44", - "registerOn": 1670237026.2896433, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670237026.289644, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670237026.2896533, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670237026.2896543, - "lastIP": "a\u007fk~|`~}heaicz", - "deviceUUID": "b8c55e7b68fa4c196f17b0076e4fc9c1e716b4aa" - }, - "pb-IF4MU04zVw==": { - "display_string": [ - "\ue020noobC\u00f9i", - "\ue020BaBByDoGG", - "\ue063BoilingLam", - "\ue030Android60239451" - ], - "profiles": [], - "name": "\ue030Android60239451", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 13:26:46", - "registerOn": 1670237044.3041856, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670237044.304186, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670237044.304193, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670237044.3041937, - "lastIP": "a{vavi~}khai`", - "deviceUUID": "878198ed9e6a85430533cca240979720ea6c44de" - }, - "pb-IF4mU0MaMw==": { - "display_string": [ - "\ue020GildedCarp34577" - ], - "profiles": [], - "name": "\ue020GildedCarp34577", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-26 14:54:58", - "registerOn": 1670237124.9778595, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670237124.9778602, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670237124.9778686, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670237124.9778695, - "lastIP": "d}va\u007f`~~afa`c", - "deviceUUID": "04307182310890696a96730e12972d1abc5e9f24" - }, - "pb-IF4rU1AuNQ==": { - "display_string": [ - "\ue030Android63988326" - ], - "profiles": [], - "name": "\ue030Android63988326", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 09:29:46", - "registerOn": 1670237178.8360128, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670237178.8360133, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670237178.8360214, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670242887.0365496, - "lastIP": "b}k~~`fajb}vb}l", - "deviceUUID": "2cdfeb1dcc28a1c5fd51ac3fa2701cebc83a4036" - }, - "pb-IF4SUhJZPw==": { - "display_string": [ - "\ue020UtilitarianDose42", - "\ue063UndamagedM", - "\ue020ConfusedExcitement48", - "\ue030Android55601587", - "\ue030Android53857852" - ], - "profiles": [], - "name": "\ue030Android55601587", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-12 00:18:34", - "registerOn": 1670238541.2583952, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670238541.2583957, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329693.158495, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329693.158522, - "lastIP": "az`~yj~}m~~n`", - "deviceUUID": "\u0015\u0002_\u0005\u0004G\u0005YU" - }, - "pb-IF5XU1IiAw==": { - "display_string": [ - "\ue020wardrago666" - ], - "profiles": [], - "name": "\ue020wardrago666", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 16:40:29", - "registerOn": 1670238700.8088279, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670238700.8088286, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670238700.8088367, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670238700.8088377, - "lastIP": "b}k~}jhajb{vg~", - "deviceUUID": "065b8e8159b9b343a9ced6977900de8a0ba3e4df" - }, - "pb-IF4RU1AhUg==": { - "display_string": [ - "\ue063OutrightRo" - ], - "profiles": [], - "name": "\ue063OutrightRo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 11:06:41", - "registerOn": 1670238708.887067, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670238708.8870676, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670238708.8870754, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670238708.8870761, - "lastIP": "azo~zi~za~yh", - "deviceUUID": "e9fe44f966e904574f6c6f75d2fa08f3efce1826" - }, - "pb-IF5cVEMTVA==": { - "display_string": [ - "\ue063kartikisco", - "\ue030Android46496233" - ], - "profiles": [], - "name": "\ue063kartikisco", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-29 21:18:29", - "registerOn": 1670238809.474966, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670238809.4749665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670238809.4749749, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670238809.4749758, - "lastIP": "a\u007fk~~kgaadaid|", - "deviceUUID": "23b185f338c8173bee0b6d453d7fd3c8aa19fd3a" - }, - "pb-IF4xVEJcUA==": { - "display_string": [ - "\ue020Darshan152005" - ], - "profiles": [], - "name": "\ue020Darshan152005", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-02 17:45:46", - "registerOn": 1670238860.6113675, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670238860.611368, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670238860.6113772, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670238860.611378, - "lastIP": "a}j~~oaajbajby", - "deviceUUID": "aa0126a57a3bcfdd5052880f735645c0a377d161" - }, - "pb-IF4nU089Jw==": { - "display_string": [ - "\ue020AntisocialDisorder02" - ], - "profiles": [], - "name": "\ue020AntisocialDisorder02", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 22:06:52", - "registerOn": 1670239048.0979817, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239048.0979822, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670239048.0979898, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670241264.5604365, - "lastIP": "a~h~}jgajhalb", - "deviceUUID": "455abeadb330fc3ecd37b35bd714d48484b0e25e" - }, - "pb-IF4SVUYgUg==": { - "display_string": [ - "\ue063ProperExti" - ], - "profiles": [], - "name": "\ue063ProperExti", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-20 17:03:18", - "registerOn": 1670239258.0657077, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239258.0657086, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670239258.065717, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670239258.0657177, - "lastIP": "azo~{`~xj~~ig", - "deviceUUID": "55652ffbfd31065e34c06710016dfdd45fc0816b" - }, - "pb-IF48UlAAFA==": { - "display_string": [ - "\ue020JocularVigor9" - ], - "profiles": [], - "name": "\ue020JocularVigor9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-17 19:38:55", - "registerOn": 1670239343.3047156, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239343.304716, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670240326.5726473, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670239583.7933888, - "lastIP": "azj~zo~}ihak", - "deviceUUID": "605d81fa49723b7ff58b516f1ba6d2d5a70adec3", - "cMsgCount": 0, - "lastMsgTime": 1670240326.5723119, - "lastMsg": "Jay Shree Ram", - "cSameMsg": 0 - }, - "pb-IF4xU08zFQ==": { - "display_string": [ - "\ue063BelovedEmi" - ], - "profiles": [], - "name": "\ue063BelovedEmi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 16:39:02", - "registerOn": 1670239872.1218042, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239872.121805, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670239872.121814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670239872.121815, - "lastIP": "dvva{l~~hcaig~", - "deviceUUID": "2d9f4505d9d092cc0f40a4753e6466845b633f1d" - }, - "pb-IF4TU08kKQ==": { - "display_string": [ - "\ue063PYGREED" - ], - "profiles": [], - "name": "\ue020PYGREED", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 16:25:27", - "registerOn": 1670239874.1421275, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239874.1421282, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316237.3683982, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316237.3683996, - "lastIP": "dvva{l~|vaxj", - "deviceUUID": "aa039d9112534ea4fc879a81cfd6c76a4d70c700" - }, - "pb-IF4OVU4aUw==": { - "display_string": [ - "\ue020TheoreticPit28", - "\ue030Android63496708" - ], - "profiles": [], - "name": "\ue020TheoreticPit28", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-04 12:48:28", - "registerOn": 1670239912.2592387, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239912.2592392, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254120.21547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254120.2154713, - "lastIP": "dxva~vb{a~za", - "deviceUUID": "449105d0d850748e54202bfc5b7057e1cdb0a7b6" - }, - "pb-IF4FU0cKFQ==": { - "display_string": [ - "\ue063Chitranshp" - ], - "profiles": [], - "name": "\ue063Chitranshp", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-18 20:50:32", - "registerOn": 1670239964.4407094, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239964.4407098, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670239964.4407184, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670239964.4407194, - "lastIP": "dxvazva|va{m", - "deviceUUID": "83def38f86f641bcea9a98c2c9986127cdd6dc48" - }, - "pb-IF5UU09YMg==": { - "display_string": [ - "\ue063Niral" - ], - "profiles": [], - "name": "\ue063Niral", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 14:53:11", - "registerOn": 1670240221.7544208, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240221.7544212, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240221.7544305, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670245547.2308533, - "lastIP": "a\u007fn~~acajdyvavo", - "deviceUUID": "c0894bd95c1edfe41435513d90aa86c885bd7a02" - }, - "pb-IF4xU3EoKg==": { - "display_string": [ - "\ue063ImplicitWa" - ], - "profiles": [], - "name": "\ue063ImplicitWa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 20:00:47", - "registerOn": 1670240330.189063, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240330.189064, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337354.4820144, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337354.4820154, - "lastIP": "bxvgzvb\u007fn~}i", - "deviceUUID": "622abc22427515681d4999f4a989d660bdf66b7d" - }, - "pb-IF4sU09fVw==": { - "display_string": [ - "\ue063RyoutaMina" - ], - "profiles": [], - "name": "\ue063RyoutaMina", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 15:49:42", - "registerOn": 1670240340.2109647, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240340.210965, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240340.2109756, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670240340.2109766, - "lastIP": "dvva{m~}kcai", - "deviceUUID": "e4b693ca509bd08d996e5e234401270a71c2b08d" - }, - "pb-IF5QU0cfHA==": { - "display_string": [ - "\ue020R\u016a\u016aA\u016a\u016aJ" - ], - "profiles": [], - "name": "\ue020R\u016a\u016aA\u016a\u016aJ", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 17:18:06", - "registerOn": 1670240536.169932, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240536.1699324, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240536.1699417, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670240536.1699426, - "lastIP": "a}j~~naaihxve\u007f", - "deviceUUID": "14324d541ad2d13ddf0a2a6efcea81c863ce78a8" - }, - "pb-IF4cU0haIw==": { - "display_string": [ - "\ue030Android63695613" - ], - "profiles": [], - "name": "\ue030Android63695613", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 10:23:09", - "registerOn": 1670240553.2885947, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240553.2885952, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240553.2886045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670240553.2886055, - "lastIP": "a\u007fn~}i`aig\u007fvcw", - "deviceUUID": "d38e1d689029b575879cb17917ea9000d7eff65f" - }, - "pb-IF4-U004UQ==": { - "display_string": [ - "\ue020MaleYard54" - ], - "profiles": [], - "name": "\ue020MaleYard54", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 18:45:59", - "registerOn": 1670240584.080288, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240584.080289, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240584.0802975, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670240639.9311352, - "lastIP": "a~m~~ndaacaihw", - "deviceUUID": "29a206a58e0985133fbd54730eea0b5f07add29b" - }, - "pb-IF4HU00IVQ==": { - "display_string": [ - "\ue020DescriptiveBind19" - ], - "profiles": [], - "name": "\ue020DescriptiveBind19", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 18:10:42", - "registerOn": 1670240709.5818062, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240709.581807, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335127.1030688, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335127.1030703, - "lastIP": "azo~|a~~abaiev", - "deviceUUID": "d669d18ccd3aa066d714b5f57b79945a7c11ded1" - }, - "pb-IF4nUmhfKA==": { - "display_string": [ - "\ue020SystemicAlbum16" - ], - "profiles": [], - "name": "\ue020SystemicAlbum16", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-21 23:06:22", - "registerOn": 1670241042.9810777, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241042.9810784, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241042.981088, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241042.981089, - "lastIP": "dzvbzi~~m~~j", - "deviceUUID": "214e63d0ab077bfb487eceda24bfa801afe228e5" - }, - "pb-IF4DU01YIA==": { - "display_string": [ - "\ue030PC607883" - ], - "profiles": [], - "name": "\ue030PC607883", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 16:27:37", - "registerOn": 1670241094.1723506, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241094.172351, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259019.3771942, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670259778.1752436, - "lastIP": "azo~zi~|vaxl", - "deviceUUID": "54b376588aefe7fc40893eeb6f9c39d5fb227bee" - }, - "pb-IF4jU0ckCg==": { - "display_string": [ - "\ue030Android63647111" - ], - "profiles": [], - "name": "\ue030Android63647111", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-12 11:37:36", - "registerOn": 1670241097.1638308, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241097.1638312, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241097.163841, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241097.163842, - "lastIP": "azo~|j~}liaii~", - "deviceUUID": "\u0015W\tY\u0007@\u0005XX" - }, - "pb-IF4rUkMeIg==": { - "display_string": [ - "\ue063NotableDi2" - ], - "profiles": [], - "name": "\ue063NotableDi2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-26 20:42:07", - "registerOn": 1670241326.166427, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241326.1664274, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241326.1664352, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241326.1664362, - "lastIP": "azo~{l~~adaic\u007f", - "deviceUUID": "578b9d58773f4004e74777a5cc5d9fcf415360be" - }, - "pb-IF5SNE4G": { - "display_string": [ - "\ue020KAIPULLA1111", - "\ue030Android20527637" - ], - "profiles": [], - "name": "\ue020KAIPULLA1111", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-12 19:23:48", - "registerOn": 1670241378.3315203, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241378.3315208, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241378.3315287, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241378.33153, - "lastIP": "azo~zi~~aiaicx", - "deviceUUID": "0d794e215c54de11b6d82aad5e657587ea066e96" - }, - "pb-IF4NU0YjJw==": { - "display_string": [ - "\ue030Android63657181" - ], - "profiles": [], - "name": "\ue030Android63657181", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-13 20:44:53", - "registerOn": 1670241414.5708404, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241414.5708408, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241414.570848, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241414.570849, - "lastIP": "a\u007fk~~haaia~vcx", - "deviceUUID": "3d18ff4455f1702ae1231b673cd82d72ce3b11aa" - }, - "pb-IF4dCnou": { - "display_string": [ - "\ue063RohanK" - ], - "profiles": [], - "name": "\ue063RohanK", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-21 16:57:49", - "registerOn": 1670241484.7061267, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241484.7061272, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320198.1075735, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670328625.4222271, - "lastIP": "azo~{`~~nfaidv", - "deviceUUID": "1f02f65342285a5bef6c7f453fa6010cdfc56c6b", - "cMsgCount": 0, - "lastMsgTime": 1670330423.3741438, - "lastMsg": "should have kept mines", - "cSameMsg": 0 - }, - "pb-IF4VU0taAA==": { - "display_string": [ - "\ue063FalseConte", - "\ue030Android63802649", - "\ue030Android63802632", - "\ue030Android38178062", - "\ue030Android63802519" - ], - "profiles": [], - "name": "\ue063FalseConte", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 10:15:00", - "registerOn": 1670241572.0944972, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241572.0944974, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241572.0945053, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241572.094506, - "lastIP": "azo~{l~~laaji", - "deviceUUID": "77c046a2d83abc276494b603097307327e1d3527" - }, - "pb-IF4VUhAKEg==": { - "display_string": [ - "\ue020FinestCurtain41", - "\ue063Avishek", - "\ue063InhumaneDa", - "\ue030Android63827191", - "\ue030Android63827276" - ], - "profiles": [], - "name": "\ue063InhumaneDa", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-06 11:44:58", - "registerOn": 1670241577.0625904, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670344863.7995179, - "totaltimeplayer": 0, - "warnCount": 4, - "lastWarned": 1670344863.798438, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670344764.8697555, - "lastIP": "dvvcxvezvayn", - "deviceUUID": "e9567f8cdcecd5905230bff15b7ca74ddeef43b9", - "cMsgCount": 0, - "lastMsgTime": 1670344863.7983797, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5XU08jLA==": { - "display_string": [ - "\ue020itsjustine15" - ], - "profiles": [], - "name": "\ue020itsjustine15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 06:27:28", - "registerOn": 1670241740.605581, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241740.6055815, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328296.3015435, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328296.301545, - "lastIP": "a~h~zl~~`haid{", - "deviceUUID": "1dcaa19eab7a2e169cdd1ca1817839106d7f312c" - }, - "pb-IF5RU1EtMg==": { - "display_string": [ - "\ue063nikitamale" - ], - "profiles": [], - "name": "\ue063nikitamale", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 15:07:52", - "registerOn": 1670241780.8229892, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241780.8229902, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241780.822998, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670241821.689485, - "lastIP": "b}k~}keaie~vb}i", - "deviceUUID": "8cb9c1c51ed2bda50ed0ce9c9ace1f1e01dd2210" - }, - "pb-IF49U08JVw==": { - "display_string": [ - "\ue030Android63983125" - ], - "profiles": [], - "name": "\ue030Android63983125", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 13:37:47", - "registerOn": 1670241858.120165, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241858.1201656, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241858.1201727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241858.1201742, - "lastIP": "b}j~~jgai`\u007fvb\u007fj", - "deviceUUID": "e9a4e3b60ca7693c34713f33ff3c76d2cc42b7bf" - }, - "pb-IF41VUYgLw==": { - "display_string": [ - "\ue020OptimusPrime1517", - "\ue030Android55005911", - "\ue030VR228966" - ], - "profiles": [], - "name": "\ue020OptimusPrime1517", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-19 14:46:44", - "registerOn": 1670241883.2824998, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670244608.374289, - "totaltimeplayer": 0, - "warnCount": 4, - "lastWarned": 1670244608.37278, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241883.2825096, - "lastIP": "a\u007fn~~aeao~~nf", - "deviceUUID": "e119a4b70be6af0d77b49b7a55af08596176ab2b", - "cMsgCount": 0, - "lastMsgTime": 1670244608.372964, - "lastMsg": "Lavdi sai marnar majhyakadun", - "cSameMsg": 0 - }, - "pb-IF4TVWEnIg==": { - "display_string": [ - "\ue063bijodicarp" - ], - "profiles": [], - "name": "\ue063bijodicarp", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-10 10:34:04", - "registerOn": 1670241951.4551165, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241951.455117, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308579.690884, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308579.6908853, - "lastIP": "evvi}vd~vi~", - "deviceUUID": "248ee8d171acc33d75759da6db55fddeb165ce0d" - }, - "pb-IF4HU0IIEQ==": { - "display_string": [ - "\ue020BabyboyBro" - ], - "profiles": [], - "name": "\ue020BabyboyBro", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-17 11:49:12", - "registerOn": 1670242198.595753, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242198.5957534, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242198.595761, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242198.5957623, - "lastIP": "d|vb}l~{k~zj", - "deviceUUID": "5476cece606b2ac33114ea8efaf2f665d2edd824", - "cMsgCount": 0, - "lastMsgTime": 1670242343.3485272, - "lastMsg": "why", - "cSameMsg": 0 - }, - "pb-IF41UxkjMg==": { - "display_string": [ - "\ue030Android60845640" - ], - "profiles": [], - "name": "\ue030Android60845640", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-30 12:43:50", - "registerOn": 1670242447.848656, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670244658.064445, - "totaltimeplayer": 0, - "warnCount": 4, - "lastWarned": 1670244658.0627449, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670244150.0724747, - "lastIP": "a\u007fn~}iaai`|vb\u007fj", - "deviceUUID": "\u0015W\tVVMQ\u000bX\u0004\u0015XTYW\u0011R\\YWBRYXXMT", - "cMsgCount": 0, - "lastMsgTime": 1670244658.0626528, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5VU0UzJg==": { - "display_string": [ - "\ue063dhanushmes" - ], - "profiles": [], - "name": "\ue063dhanushmes", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-21 10:51:52", - "registerOn": 1670242494.84773, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242494.8477304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261786.7980652, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261786.7980664, - "lastIP": "dzva~m~vi~}ib", - "deviceUUID": "8231e183c8813509c0395d1a542c43e471798af9" - }, - "pb-IF40U08BJg==": { - "display_string": [ - "\ue063gianplayz0" - ], - "profiles": [], - "name": "\ue063gianplayz0", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 17:32:56", - "registerOn": 1670242548.031583, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242548.0315838, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242548.0315921, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242548.0315933, - "lastIP": "a\u007fk~~mea`haie\u007f", - "deviceUUID": "f6c59ed500881a17bc2fb4ebc52a34451bd8420c" - }, - "pb-IF41U00RFA==": { - "display_string": [ - "\ue030Android63922851" - ], - "profiles": [], - "name": "\ue030Android63922851", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 19:43:14", - "registerOn": 1670242562.8125694, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242562.8125703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242562.81258, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242562.8125808, - "lastIP": "azo~{a~}hbaifv", - "deviceUUID": "756045cb98c989aa61ac5e1a1260f07b7e56d119" - }, - "pb-IF4jVGoTCg==": { - "display_string": [ - "\ue063NarutoUsum", - "\ue030Android25643383" - ], - "profiles": [], - "name": "\ue063NarutoUsum", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-12 13:53:20", - "registerOn": 1670242568.1757827, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242568.1757834, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670302104.3211315, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670302104.321133, - "lastIP": "a\u007fk~}ibaidyvcy", - "deviceUUID": "ae34473eb16306b256ce80675c45dfe85340d89d" - }, - "pb-IF4pVVEOCA==": { - "display_string": [ - "\ue020\u1d9c\u1d3f\u1d2c\u1dbb\u1d5e\ud835\udd3b\ud835\udd63\ud835\udd52\ud835\udd5c\ud835\udd56\ud835\udd5f" - ], - "profiles": [], - "name": "\ue020\u1d9c\u1d3f\u1d2c\u1dbb\u1d5e\ud835\udd3b\ud835\udd63\ud835\udd52\ud835\udd5c\ud835\udd56\ud835\udd5f", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-17 09:19:31", - "registerOn": 1670242710.7156901, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242710.715691, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242710.7157013, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242710.7157025, - "lastIP": "azo~|m~y`~~jf", - "deviceUUID": "80767a74592447fa70b68a8b2e0ad164a147ce0d" - }, - "pb-IF43VFENFg==": { - "display_string": [ - "\ue020WishyWashyTinge10" - ], - "profiles": [], - "name": "\ue020WishyWashyTinge10", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-28 12:59:53", - "registerOn": 1670242837.191372, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242837.1913726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242837.1913803, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242837.191381, - "lastIP": "a\u007fk~}hfaic{vax`", - "deviceUUID": "7ad2a7ffb4cfbcfd57b9d138a7ccc77daa5141c4" - }, - "pb-IF4UU1AkAw==": { - "display_string": [ - "\ue063ExpensiveM" - ], - "profiles": [], - "name": "\ue063ExpensiveM", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 14:25:42", - "registerOn": 1670243048.9499106, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243048.9499109, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243048.9499197, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243048.9499204, - "lastIP": "a}j~~o`an`aie|", - "deviceUUID": "446c02955fe83399c305241c9ce56e3d1564ae71" - }, - "pb-IF5SUno-Ug==": { - "display_string": [ - "\ue063ihateu234" - ], - "profiles": [], - "name": "\ue063ihateu234", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-05 12:13:24", - "registerOn": 1670243178.5593963, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670244339.7711086, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670329401.4423296, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329091.2817159, - "lastIP": "dxvbvvaym~~jd", - "deviceUUID": "8cdff6729d518be49ee0573acb0cb19b6c5a4aef", - "cMsgCount": 2, - "lastMsgTime": 1670329723.3729773, - "lastMsg": "ha", - "cSameMsg": 0 - }, - "pb-IF4KVVUnJw==": { - "display_string": [ - "\ue020UncouthScenery25" - ], - "profiles": [], - "name": "\ue020UncouthScenery25", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-04 12:14:20", - "registerOn": 1670243187.609319, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243187.6093197, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243187.6093278, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243187.609329, - "lastIP": "a\u007fn~}i`ajbxva{h", - "deviceUUID": "39f230f5709313bac5034e4bc5c429ce8e44fb3c" - }, - "pb-IF4KU09dJg==": { - "display_string": [ - "\ue020FreezingTriangle142" - ], - "profiles": [], - "name": "\ue020FreezingTriangle142", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 21:05:03", - "registerOn": 1670243290.1733103, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243290.173311, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243290.1733193, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243290.1733205, - "lastIP": "a\u007fn~~aeakbala", - "deviceUUID": "d9b12a8cd1d61082c3006a955160103c6b22b562" - }, - "pb-IF4lVWYjIw==": { - "display_string": [ - "\ue020TBHFEVER" - ], - "profiles": [], - "name": "\ue020TBHFEVER", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-12 19:30:30", - "registerOn": 1670243421.817047, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243421.8170474, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243421.817056, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243421.8170571, - "lastIP": "dvvc}vb}n~~ig", - "deviceUUID": "853e561e5b8a8b675609755f1e05b53084f5adb6" - }, - "pb-JiNJARBdXUtFVFxIGUJQVVREFklXRVZH": { - "display_string": [ - "\ue020BasuMachakanura" - ], - "profiles": [], - "name": "\ue020BasuMachakanura", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-04 19:32:10", - "registerOn": 1670243477.0364935, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243477.036494, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255372.063081, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255372.0630825, - "lastIP": "azo~zh~{vav`", - "deviceUUID": "f4743181413fd87e59ecc7338eefd567593df5a0" - }, - "pb-IF4KVWgcBw==": { - "display_string": [ - "\ue020mohammedsafeek2" - ], - "profiles": [], - "name": "\ue020mohammedsafeek2", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-02 11:25:15", - "registerOn": 1670243500.277261, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243500.2772615, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243500.2772706, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243500.2772713, - "lastIP": "a\u007fn~~agaafaiez", - "deviceUUID": "5ee7822213487b483b9966ba9d29c68ec2bd7904" - }, - "pb-IF4CUxVaAw==": { - "display_string": [ - "\ue030Android60437730" - ], - "profiles": [], - "name": "\ue030Android60437730", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-13 11:20:27", - "registerOn": 1670243658.975171, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243658.9751716, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243658.9751792, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243658.9751804, - "lastIP": "a\u007fk~~meambaihy", - "deviceUUID": "362dc9544fc53a57def6aca4a9d3ca680f388ad2" - }, - "pb-IF4JVU8HUA==": { - "display_string": [ - "\ue020CHIP2739" - ], - "profiles": [], - "name": "\ue020CHIP2739", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-09 07:21:13", - "registerOn": 1670243680.7115374, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243680.711538, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243680.7115462, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243680.711547, - "lastIP": "a|i~}jfa`dah", - "deviceUUID": "3bb03eebaca837f771d19d10fb9e72d77737cab0" - }, - "pb-IF4cUlIHFQ==": { - "display_string": [ - "\ue063TusharRawa" - ], - "profiles": [], - "name": "\ue063TusharRawa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-26 20:49:37", - "registerOn": 1670243773.0846174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243773.0846183, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248915.7520661, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248915.7520673, - "lastIP": "dvvcyvaxo~y`", - "deviceUUID": "ef8a71e162c6bb5d73805a164e7dec56eed109bd", - "cMsgCount": 0, - "lastMsgTime": 1670243863.2455108, - "lastMsg": "1", - "cSameMsg": 0 - }, - "pb-IF43U00MHA==": { - "display_string": [ - "\ue063Nayanshiga" - ], - "profiles": [], - "name": "\ue063Nayanshiga", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 13:49:15", - "registerOn": 1670243816.267502, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243816.2675025, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256292.5326142, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256292.5326154, - "lastIP": "a\u007fn~~aeal~~ld", - "deviceUUID": "f06c4c4ff535f09426e084624a458360f8b3b427" - }, - "pb-IF4rVUkdFA==": { - "display_string": [ - "\ue020Giteshpro" - ], - "profiles": [], - "name": "\ue020Giteshpro", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-11 06:45:14", - "registerOn": 1670243839.3325484, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243839.332549, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243839.332558, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243839.3325586, - "lastIP": "azo~|k~}hhaii\u007f", - "deviceUUID": "ddb68cf272e094198e1f30411e5c0ee10b17131a", - "cMsgCount": 0, - "lastMsgTime": 1670243894.6550832, - "lastMsg": "phat sa head", - "cSameMsg": 0 - }, - "pb-IF4oU0YABg==": { - "display_string": [ - "\ue020vps32i" - ], - "profiles": [], - "name": "\ue020vps32i", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 16:16:50", - "registerOn": 1670243923.6127431, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243923.6127436, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344909.3702805, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670344909.370282, - "lastIP": "azo~|k~|j~~mb", - "deviceUUID": "7a54c5b9901eb59d33300ddf62863df158517520" - }, - "pb-IF4iU04PKA==": { - "display_string": [ - "\ue030Android63956151" - ], - "profiles": [], - "name": "\ue030Android63956151", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 11:33:59", - "registerOn": 1670243959.3693604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243959.369361, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670294420.6970441, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670294420.6970456, - "lastIP": "azj~zo~~adaia~", - "deviceUUID": "e9c88ccb816fc29e8e2062d29ee38cf69a3a81ba", - "cMsgCount": 0, - "lastMsgTime": 1670244090.429839, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFYV0dBVF5JEUFSU1BAGEZZT1lA": { - "display_string": [ - "\ue063mippypoop1" - ], - "profiles": [], - "name": "\ue063mippypoop1", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-16 15:00:48", - "registerOn": 1670244040.9770725, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244040.977073, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316049.6818871, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316049.6818888, - "lastIP": "axm~~ofakbaj`~", - "deviceUUID": "20872e0801eef620a5bb0c32a2e99ecea7052a2d" - }, - "pb-IF4vU0lTUw==": { - "display_string": [ - "\ue020go444vykh" - ], - "profiles": [], - "name": "\ue020go444vykh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 09:09:17", - "registerOn": 1670244146.3773913, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244146.3773918, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247631.180304, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247631.1803052, - "lastIP": "azj~zo~~k`aigw", - "deviceUUID": "099a2b8ebdd1be885607f1e97fdc6e787397267e" - }, - "pb-IF4MVXQdNw==": { - "display_string": [ - "\ue020HipRooster87595", - "\ue030Android53483198" - ], - "profiles": [], - "name": "\ue020HipRooster87595", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-08 19:34:34", - "registerOn": 1670244171.5894706, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244171.5894709, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334273.7985814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334273.798583, - "lastIP": "azo~|`~zvg|", - "deviceUUID": "\u0015Q\b\u0005X\u0012P\\", - "cMsgCount": 0, - "lastMsgTime": 1670245645.0497267, - "lastMsg": "jaldi karo", - "cSameMsg": 0 - }, - "pb-IF4mVW48Ew==": { - "display_string": [ - "\ue030PC297681" - ], - "profiles": [], - "name": "\ue030PC297681", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-16 10:17:12", - "registerOn": 1670244282.8380945, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244282.8380952, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244282.8381028, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244282.8381038, - "lastIP": "bxvixva{k~~hc", - "deviceUUID": "\u0003UYU\u0005MRZ\u0004L\u0012X]TL@U[RL\u0016\u0003\\QLBU\u000bRS@" - }, - "pb-IF5dU1EpMg==": { - "display_string": [ - "\ue020DiagnosticToad55", - "\ue030Android63941047" - ], - "profiles": [], - "name": "\ue020DiagnosticToad55", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 19:35:54", - "registerOn": 1670244492.6692612, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244492.669262, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244492.6692705, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244492.6692712, - "lastIP": "azo~{a~~`caie|", - "deviceUUID": "\u0015\u0005\bST\u0010\u0005^S\u0002@SZY\u0004\u0012Y[YP@X[TS" - }, - "pb-IF4BVEc9Hw==": { - "display_string": [ - "\ue063championof" - ], - "profiles": [], - "name": "\ue063championof", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-10 14:17:58", - "registerOn": 1670244496.6179376, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244496.6179383, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244496.6179485, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670244499.3042765, - "lastIP": "a~l~~kdajeaiix", - "deviceUUID": "e16f3ddd2272d10f1cb1e6a5f702c2d2122ee02e" - }, - "pb-IF43U00nFw==": { - "display_string": [ - "\ue020virubhai2004", - "\ue030Android61899985" - ], - "profiles": [], - "name": "\ue020virubhai2004", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 10:41:21", - "registerOn": 1670244547.7882876, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244547.7882884, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244547.7882965, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244547.7882974, - "lastIP": "a\u007fk~~mgaibvvb|h", - "deviceUUID": "dd5f225c8b6a7fb8d3e574dab97657c17d4abfff" - }, - "pb-IF4zUmFdCQ==": { - "display_string": [ - "\ue030Android54726114" - ], - "profiles": [], - "name": "\ue030Android54726114", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-17 22:18:54", - "registerOn": 1670244582.910993, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244582.9109936, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244582.9110038, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244582.911005, - "lastIP": "dvvcxvb}l~}ld", - "deviceUUID": "233d77242ee2e121329a33c05281408b169a0bc9" - }, - "pb-IF4eUnYfDQ==": { - "display_string": [ - "\ue063DarknexxoY" - ], - "profiles": [], - "name": "\ue063DarknexxoY", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-29 14:50:56", - "registerOn": 1670244684.2722738, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244684.2722743, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244684.2722826, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244684.2722836, - "lastIP": "aakiaoha``", - "deviceUUID": "18e88cd338cd9bbc01a914308c28fe53dfb0643a" - }, - "pb-IF4jU2YsNw==": { - "display_string": [ - "\ue063RemissCon2" - ], - "profiles": [], - "name": "\ue063RemissCon2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-17 08:04:05", - "registerOn": 1670244791.781524, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244791.7815247, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244791.7815332, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244791.7815342, - "lastIP": "axi~}mcaid}vg}", - "deviceUUID": "38f82533292e1b2d5e98e9d0fc9bc017d6e5ab04" - }, - "pb-IF4SU3gHFg==": { - "display_string": [ - "\ue063KookyVeloc" - ], - "profiles": [], - "name": "\ue063KookyVeloc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-31 13:01:04", - "registerOn": 1670244810.6883445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244810.6883454, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307527.693986, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307527.6939874, - "lastIP": "b}k~~`gaiavvavi", - "deviceUUID": "0850315ce740515901beae4901295115cbf8cbde" - }, - "pb-IF4xU2EbKg==": { - "display_string": [ - "\ue020AbhishekAjay744", - "\ue030Android58819906" - ], - "profiles": [], - "name": "\ue020AbhishekAjay744", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-05 23:04:11", - "registerOn": 1670244834.7953062, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244834.795307, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670349117.1783087, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670349117.17831, - "lastIP": "bxvf}vhzvd\u007f", - "deviceUUID": "0b54dae3ad809cd77d26bd78a37b19fbf2cf9c34", - "cMsgCount": 0, - "lastMsgTime": 1670245716.467134, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4qU006Nw==": { - "display_string": [ - "\ue020LyricalWill16" - ], - "profiles": [], - "name": "\ue020LyricalWill16", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 19:59:32", - "registerOn": 1670245036.7073662, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245036.7073667, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245036.7073753, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245036.7073762, - "lastIP": "a\u007fn~}jcaia}vb{`", - "deviceUUID": "6a1194454571f41ac5e1649195f6f66374af9f9a" - }, - "pb-IF4DU0IEJg==": { - "display_string": [ - "\ue063CHAINSAW" - ], - "profiles": [], - "name": "\ue063CHAINSAW", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-18 08:46:35", - "registerOn": 1670245237.3236887, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245237.3236895, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337222.0482295, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670344372.3631408, - "lastIP": "b}k~~ohaja|vaxl", - "deviceUUID": "fa894de18350c769ac7184f54ebec6a2c12ce104", - "cMsgCount": 0, - "lastMsgTime": 1670345053.4548779, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4XU0gINA==": { - "display_string": [ - "\ue063NeuroticFe" - ], - "profiles": [], - "name": "\ue063NeuroticFe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 12:08:36", - "registerOn": 1670245251.4067552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245251.406756, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245251.4067645, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245251.406765, - "lastIP": "axi~xn~}hha`", - "deviceUUID": "5ba8f30c4a81779a2f3c28cc77a01f624490e3e3" - }, - "pb-IF4pUkYMCg==": { - "display_string": [ - "\ue020matin\u0645\u062a\u06cc\u0646\u06f1\u06f1\u06f1" - ], - "profiles": [], - "name": "\ue020matin\u0645\u062a\u06cc\u0646\u06f1\u06f1\u06f1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-04 22:38:07", - "registerOn": 1670245438.228861, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245438.228862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245438.22887, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245438.228871, - "lastIP": "baii\u007fveaoa", - "deviceUUID": "ef3bbfad57cf3b54c1568c14d2c5235eea035a6b" - }, - "pb-IF4sU01YMA==": { - "display_string": [ - "\ue063gInhospita" - ], - "profiles": [], - "name": "\ue063gInhospita", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 12:54:48", - "registerOn": 1670245461.2827165, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245461.2827168, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254383.2225502, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254383.2225513, - "lastIP": "azo~zi~xh~~kg", - "deviceUUID": "7646206bd39ce45504e685befe47159df1f8d399" - }, - "pb-IF4yU2gBDg==": { - "display_string": [ - "\ue030Android61588905" - ], - "profiles": [], - "name": "\ue030Android61588905", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-29 10:01:24", - "registerOn": 1670245480.3847618, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245480.3847623, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245480.3847704, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245480.3847713, - "lastIP": "b}k~}m~yj~~og", - "deviceUUID": "38419a888f73eb5491299e40b26c0c21c52e170a" - }, - "pb-IF4oU0wgKQ==": { - "display_string": [ - "\ue020PathologicalPeak28" - ], - "profiles": [], - "name": "\ue020PathologicalPeak28", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 08:47:48", - "registerOn": 1670245576.6693642, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245576.669365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245576.6693738, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245576.669375, - "lastIP": "a\u007fn~}igaifvva}i", - "deviceUUID": "8b634a71cafac1741c794dffbd4a89325098fb0c" - }, - "pb-IF4MU0w6Cw==": { - "display_string": [ - "\ue020UnopenedCamera42" - ], - "profiles": [], - "name": "\ue020UnopenedCamera42", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-13 11:54:25", - "registerOn": 1670245634.9927588, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245634.9927592, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245634.9927666, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245634.9927678, - "lastIP": "b}k~}jgaagaj", - "deviceUUID": "2a3d70b74dbf6d3b507c9aef723fac9c37647e9a" - }, - "pb-IF5QU0YlIw==": { - "display_string": [ - "\ue030Android63489834" - ], - "profiles": [], - "name": "\ue030Android63489834", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-23 21:42:33", - "registerOn": 1670245821.6299453, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245821.6299458, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245948.333389, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245948.33339, - "lastIP": "a\u007fn~~aeah~~ki", - "deviceUUID": "53c6cfb41ceba0fd96b7d9666541484ffde7ad43" - }, - "pb-IF4GUxUZKg==": { - "display_string": [ - "\ue020DexTerOuSVikAriA" - ], - "profiles": [], - "name": "\ue020DexTerOuSVikAriA", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-15 02:06:37", - "registerOn": 1670245968.7682805, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245968.7682815, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321466.8484159, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670321478.9066787, - "lastIP": "aya~~liajbxvb\u007fk", - "deviceUUID": "1a3a9cc2874e1a5fe2acec16a7f5014b469618c1" - }, - "pb-IF4WUVY=": { - "display_string": [ - "\ue063SReeJU7", - "\ue030Android63511561" - ], - "profiles": [], - "name": "\ue063SReeJU7", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-09 12:54:40", - "registerOn": 1670246071.2071426, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246071.2071433, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246071.207155, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246071.2071562, - "lastIP": "a\u007fk~xh~~aiajby", - "deviceUUID": "9726ecd2c4229a1706a2a286646058bb1491f133" - }, - "pb-IF4AU00sEw==": { - "display_string": [ - "\ue020FavoriteEscort39", - "\ue030Android63976746", - "\ue030Android63976765" - ], - "profiles": [], - "name": "\ue020FavoriteEscort39", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 18:38:08", - "registerOn": 1670246142.336575, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246142.3365757, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246142.336584, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246142.3365855, - "lastIP": "a\u007fk~}haaib{vaxm", - "deviceUUID": "a536a13b40c12d954647e47754580d8c2cd9ffbf" - }, - "pb-LV4FUkUPAxNEVV8RRk5WBVVEEA==": { - "display_string": [ - "\ue063MadBOY5523" - ], - "profiles": [], - "name": "\ue063MadBOY5523", - "isBan": false, - "isMuted": false, - "accountAge": "2016-08-29 17:40:03", - "registerOn": 1670246174.4305658, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246174.4305663, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670354985.6066802, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670354985.6066813, - "lastIP": "dvvcyva}j~zm", - "deviceUUID": "bc217ff73d9ff9f3921131f99b27d93e57d8f5dc", - "cMsgCount": 0, - "lastMsgTime": 1670329709.380544, - "lastMsg": "/ban", - "cSameMsg": 0 - }, - "pb-IF4-VVkxPw==": { - "display_string": [ - "\ue063UpbeatTrad" - ], - "profiles": [], - "name": "\ue063UpbeatTrad", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-27 09:12:01", - "registerOn": 1670246401.2753522, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246401.2753527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246401.2753594, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246401.2753603, - "lastIP": "a~j~}h`aj`xvb~", - "deviceUUID": "5df9a08a22756fac630a940bad70701464060c21" - }, - "pb-IF4lUxYq": { - "display_string": [ - "\ue063DemonChrom" - ], - "profiles": [], - "name": "\ue063DemonChrom", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-19 13:07:34", - "registerOn": 1670246550.481666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246550.4816666, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343645.807983, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343645.8079844, - "lastIP": "dvvcyvexva|j", - "deviceUUID": "c4b3f43b5c7eb83c86e3f787305801bee2615c4c" - }, - "pb-IF41U3EmJg==": { - "display_string": [ - "\ue020RKGAMING475" - ], - "profiles": [], - "name": "\ue020RKGAMING475", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 20:23:24", - "registerOn": 1670246556.8013268, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246556.8013277, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246556.8013363, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246556.801338, - "lastIP": "azo~{a~wo~wa", - "deviceUUID": "13ce51d9d52a69e2c5b90d0cee75b842d1e48ff4" - }, - "pb-IF4PU08INw==": { - "display_string": [ - "\ue030Android63975172" - ], - "profiles": [], - "name": "\ue030Android63975172", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 10:14:09", - "registerOn": 1670246582.9174058, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246582.9174066, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246582.917415, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246582.9174159, - "lastIP": "a|n~~mhai`}vdz", - "deviceUUID": "f7f4bcb699c85a3e6b639df36b7a72b8fc389fa4" - }, - "pb-IF4uVUYtUA==": { - "display_string": [ - "\ue020\u00c7r\u00e3syS\u016b\u00df\u00e2sH" - ], - "profiles": [], - "name": "\ue020\u00c7r\u00e3syS\u016b\u00df\u00e2sH", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-20 18:43:08", - "registerOn": 1670247000.2656703, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247000.2656715, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247000.2656803, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247000.2656815, - "lastIP": "bxvf}va{k~~mc", - "deviceUUID": "ec526b5ed10e634ec4153dd5cff44b62cb6adaad" - }, - "pb-IF4-UxUcVA==": { - "display_string": [ - "\ue020WobblyOffender29", - "\ue030Android60540547" - ], - "profiles": [], - "name": "\ue020WobblyOffender29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-17 19:48:44", - "registerOn": 1670247189.9195635, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247189.9195642, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247189.9195719, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247189.9195733, - "lastIP": "dvvc{vg}vhy", - "deviceUUID": "\u0015V\u000eR\u0003\u0010\u0003[\u0002SBUYTXG" - }, - "pb-IF42UnUjVw==": { - "display_string": [ - "\ue020IneligibleLeague40" - ], - "profiles": [], - "name": "\ue020IneligibleLeague40", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-24 09:18:32", - "registerOn": 1670247193.955294, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247193.9552946, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247193.9553025, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247193.9553034, - "lastIP": "azo~zi~~ngaj`v", - "deviceUUID": "36e3d3e9c6a659e3880dcfe9d2f67be1f082a91a" - }, - "pb-IF5WUlhaPA==": { - "display_string": [ - "\ue030Android59530809" - ], - "profiles": [], - "name": "\ue030Android59530809", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-07 19:28:40", - "registerOn": 1670247209.9995768, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247209.9995773, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247209.9995859, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247209.9995873, - "lastIP": "evvizvbzj~~je", - "deviceUUID": "eefc6cc1babacff36bb757b998aa7612049997f1" - }, - "pb-IF4JUlYDVA==": { - "display_string": [ - "\ue020FoolhardyGorilla5970", - "\ue030Android60315518" - ], - "profiles": [], - "name": "\ue020FoolhardyGorilla5970", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-09 20:52:34", - "registerOn": 1670247289.2347045, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247289.234705, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247289.234714, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247289.2347152, - "lastIP": "azo~{a~}mbajd|", - "deviceUUID": "81ba11dea4484e124c748caf1f8c934b02c6c4bf" - }, - "pb-IF4zU08lLA==": { - "display_string": [ - "\ue063Trushank" - ], - "profiles": [], - "name": "\ue063Trushank", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 16:04:33", - "registerOn": 1670247350.8036637, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247350.8036642, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327883.9155424, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327883.9155436, - "lastIP": "azj~zo~~aaajh", - "deviceUUID": "37f641d10b06f13f5f060f73b659c3a28be656d2" - }, - "pb-IF5QU2hSFw==": { - "display_string": [ - "\ue063AffectiveH" - ], - "profiles": [], - "name": "\ue063AffectiveH", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-16 17:12:18", - "registerOn": 1670247370.5213387, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247370.5213394, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336959.3504667, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336959.3504684, - "lastIP": "azo~{a~wm~yk", - "deviceUUID": "35d73de1e2b619caae503f246447716726482aa5" - }, - "pb-IF5QV1EqEg==": { - "display_string": [ - "\ue063Harshini12" - ], - "profiles": [], - "name": "\ue063Harshini12", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-04 15:20:08", - "registerOn": 1670247379.5591614, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247379.5591621, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247379.5591695, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247379.5591702, - "lastIP": "azo~zh~~n~}mb", - "deviceUUID": "6ca8762f538f51c995290038bd88a67012d79d59" - }, - "pb-IF4qU3BcNw==": { - "display_string": [ - "\ue020PrimitiveCoercion25" - ], - "profiles": [], - "name": "\ue020PrimitiveCoercion25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-25 14:20:42", - "registerOn": 1670247466.2097733, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247466.209774, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335884.1680412, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335884.1680427, - "lastIP": "azo~{a~~aiajd~", - "deviceUUID": "3c7fff1e73e618150ff953c14e19a044f37769f3" - }, - "pb-IF40U0EFPQ==": { - "display_string": [ - "\ue020UniqueScandal132", - "\ue030Android63100788" - ], - "profiles": [], - "name": "\ue020UniqueScandal132", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-15 17:29:52", - "registerOn": 1670247485.992155, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247485.9921556, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247485.9921625, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247485.9921637, - "lastIP": "aya~~liajc\u007fvhx", - "deviceUUID": "fee953544ab6d633c2bf346f44fe26c298379aa6" - }, - "pb-IF4uU3YEVA==": { - "display_string": [ - "\ue020TipTopCommander1918" - ], - "profiles": [], - "name": "\ue020TipTopCommander1918", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-23 23:20:49", - "registerOn": 1670247553.2624562, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247553.2624567, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334811.1052673, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334811.1052687, - "lastIP": "azo~|`~~m`aka", - "deviceUUID": "ae7559bed7f2f113a7ec9669a8bca03161057a17" - }, - "pb-JiNJARFYU0pGXVdCFU9TVVZEFkFaRFlL": { - "display_string": [ - "\ue020mooninvaders24", - "\ue030Android20461819" - ], - "profiles": [], - "name": "\ue020mooninvaders24", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-24 16:56:27", - "registerOn": 1670247591.3978565, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247591.397857, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315933.3051295, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315933.305131, - "lastIP": "b}k~~oha`aali", - "deviceUUID": "\u0015\u0002[VW\u0017T\u000eWSB\u0005ZP\u0004D" - }, - "pb-IF4UU05eLw==": { - "display_string": [ - "\ue063NoName48451a" - ], - "profiles": [], - "name": "\ue063NoName48451a", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 21:21:34", - "registerOn": 1670247641.508387, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247641.5083878, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247641.5083945, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247641.5083954, - "lastIP": "axi~}m`aifzvb~l", - "deviceUUID": "48aa973988bc0e1e653dd8afffdbaeed0377cae5", - "cMsgCount": 0, - "lastMsgTime": 1670248313.8054845, - "lastMsg": "gawngbang haha", - "cSameMsg": 0 - }, - "pb-IF4yVFgOVA==": { - "display_string": [ - "\ue020Xodv8" - ], - "profiles": [], - "name": "\ue020Xodv8", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-16 15:03:14", - "registerOn": 1670247642.5841355, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247642.584136, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340649.1394944, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670344231.887329, - "lastIP": "a\u007fk~~`baifyvd{", - "deviceUUID": "b404fc754d95d57a6e7a54c80351a23c4bf2f6bc" - }, - "pb-IF4yU2QiCQ==": { - "display_string": [ - "\ue020InitialFool50", - "\ue030Android60382840" - ], - "profiles": [], - "name": "\ue020InitialFool50", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-13 15:45:46", - "registerOn": 1670247846.293781, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247846.2937818, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247846.2937908, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247846.2937915, - "lastIP": "azj~zo~wj~~ah", - "deviceUUID": "5c95b5d12b13fbf4fab5a3b6f1cc7254c3966cf2" - }, - "pb-IF4SUng4Vw==": { - "display_string": [ - "\ue030Android57231442" - ], - "profiles": [], - "name": "\ue030Android57231442", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-05 18:15:53", - "registerOn": 1670247875.3993134, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247875.3993142, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247875.3993235, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670248659.7735941, - "lastIP": "azj~zo~~kdajb|", - "deviceUUID": "7e6ecd69fad99e1e7907fc561f46fe8648da42a0", - "cMsgCount": 0, - "lastMsgTime": 1670248014.0863714, - "lastMsg": "sorry", - "cSameMsg": 0 - }, - "pb-IF4jU288Jg==": { - "display_string": [ - "\ue063PentFitnes" - ], - "profiles": [], - "name": "\ue063PentFitnes", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-22 12:18:54", - "registerOn": 1670247997.8078763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247997.807877, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247997.8079166, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247997.8079176, - "lastIP": "aw`~\u007fva{l~zh", - "deviceUUID": "b7ae1252e2b5fa5e54febc349df8eef6dcedd654" - }, - "pb-IF4tUmYMXA==": { - "display_string": [ - "\ue063InvasiveS2" - ], - "profiles": [], - "name": "\ue063InvasiveS2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-14 21:55:15", - "registerOn": 1670248007.8311138, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248007.8311145, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248007.8311238, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248007.8311248, - "lastIP": "azo~{i~}liaidw", - "deviceUUID": "f92a0e56fa90e44abc0c3ae47afef4cc76f85d54" - }, - "pb-IF4oU08MDg==": { - "display_string": [ - "\ue063kishujain5" - ], - "profiles": [], - "name": "\ue063kishujain5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 22:06:06", - "registerOn": 1670248040.9213223, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248040.921323, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248040.9213312, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248040.9213328, - "lastIP": "azo~|`~~k`al", - "deviceUUID": "53da70035fa49159ecadabfeff9aca2a0b93b917" - }, - "pb-IF5cU0oCCg==": { - "display_string": [ - "\ue020Rahulnirania03" - ], - "profiles": [], - "name": "\ue020Rahulnirania03", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 21:48:41", - "registerOn": 1670248107.194649, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248107.1946497, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248107.1946566, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248107.1946573, - "lastIP": "d}va\u007fo~}jdaj`x", - "deviceUUID": "76d5be041291d8560127682c0ceec6cd0eb876b3" - }, - "pb-IF4zU2MgJw==": { - "display_string": [ - "\ue020SharpEnemy92311" - ], - "profiles": [], - "name": "\ue020SharpEnemy92311", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-09 17:53:20", - "registerOn": 1670248148.3000412, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248148.300042, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336800.8131924, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336800.8131943, - "lastIP": "a\u007fk~zvawo~~o`", - "deviceUUID": "bc4a6eebc93dd7e4038333c4d5f45f8752c87a83", - "cMsgCount": 0, - "lastMsgTime": 1670336865.3255773, - "lastMsg": "anime lover anyone", - "cSameMsg": 0 - }, - "pb-IF5SV2VbAQ==": { - "display_string": [ - "\ue020PerfidiousStress40" - ], - "profiles": [], - "name": "\ue020PerfidiousStress40", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-16 14:04:25", - "registerOn": 1670248218.5660353, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248218.5660357, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670348611.1200438, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670350341.70787, - "lastIP": "a~o~va~}lfaidz", - "deviceUUID": "2caee23c5f2ab271561abad7432231aa1f6eaa52", - "cMsgCount": 2, - "lastMsgTime": 1670351052.3479128, - "lastMsg": "bye ", - "cSameMsg": 0 - }, - "pb-IF4-U08uHQ==": { - "display_string": [ - "\ue063Ug509" - ], - "profiles": [], - "name": "\ue063Ug509", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 21:31:48", - "registerOn": 1670248282.0917091, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248282.0917094, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248282.0917168, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248282.0917177, - "lastIP": "b}j~~ndaievvcz", - "deviceUUID": "ab8bac21d26e7a29912816ff756448ef70962a87" - }, - "pb-JiNJARFcXEpDWlpAGUJVU1dBGUVfR1ZC": { - "display_string": [ - "\ue020PokeyHammer5496", - "\ue030Android4999646" - ], - "profiles": [], - "name": "\ue020PokeyHammer5496", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-07 20:24:30", - "registerOn": 1670248414.2451305, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248414.245131, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322397.2757256, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322397.275728, - "lastIP": "azo~{a~x`~yk", - "deviceUUID": "78a6047d38f5917cfaa19831802db117a412877e" - }, - "pb-JiNJVxFTV0JDVV9BGE5YV11DFEleR1hA": { - "display_string": [ - "\ue063ThirstyNin", - "\ue020ThirstyNinja13866", - "\ue030Android24392040" - ], - "profiles": [], - "name": "\ue063ThirstyNin", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-30 15:41:41", - "registerOn": 1670248698.2888656, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248698.288866, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248698.2888749, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670252335.8334715, - "lastIP": "dvvb~o~~ieam`", - "deviceUUID": "f61386a46fdef46ef497e53cf1ebc414270113c0", - "cMsgCount": 0, - "lastMsgTime": 1670249456.4015536, - "lastMsg": "?", - "cSameMsg": 0 - }, - "pb-IF4jU046Fg==": { - "display_string": [ - "\ue020peskiller11" - ], - "profiles": [], - "name": "\ue020peskiller11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 00:16:42", - "registerOn": 1670248841.8225067, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248841.8225074, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248841.8225157, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248841.8225167, - "lastIP": "azo~{n~~miajdw", - "deviceUUID": "fce7833798549d9cd95c7d32bd0aa32e60ab12ff", - "cMsgCount": 0, - "lastMsgTime": 1670249823.114636, - "lastMsg": "babe don't kill me", - "cSameMsg": 0 - }, - "pb-IF4FU0wNJA==": { - "display_string": [ - "\ue030Android63873735" - ], - "profiles": [], - "name": "\ue030Android63873735", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 10:07:39", - "registerOn": 1670248911.0291958, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248911.0291963, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248911.029205, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670249025.218512, - "lastIP": "azo~zi~~ibaoa", - "deviceUUID": "d377327b5051b8609970eea94af694f8a8fc7e7f" - }, - "pb-IF4pU00vIA==": { - "display_string": [ - "\ue020Sanjay2522" - ], - "profiles": [], - "name": "\ue020Sanjay2522", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 13:59:20", - "registerOn": 1670249211.2428658, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249211.2428665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670249211.2428744, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249211.242875, - "lastIP": "azo~zi~~`gaigw", - "deviceUUID": "47242b1966a1fdc7f191705b819cbfc0bf3c73c1" - }, - "pb-IF4vU08nVg==": { - "display_string": [ - "\ue020Saraj123l" - ], - "profiles": [], - "name": "\ue020Saraj123l", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 20:59:14", - "registerOn": 1670249266.4511678, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249266.4511688, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670249266.451178, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249266.4511793, - "lastIP": "azo~{i~}jgaib}", - "deviceUUID": "c79f250eccbdc9292cc25bd5467800dca7dd92c6" - }, - "pb-IF4jUlRTHw==": { - "display_string": [ - "\ue063thalekalle" - ], - "profiles": [], - "name": "\ue063thalekalle", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-29 13:03:25", - "registerOn": 1670249349.700927, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249349.7009273, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670249483.5507846, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249349.7009356, - "lastIP": "a\u007fk~~mgaifyvb~o", - "deviceUUID": "b36ab79fdec5db990e50b5f0e647c7c34f287ad0", - "cMsgCount": 0, - "lastMsgTime": 1670249691.590385, - "lastMsg": "how big is your titis", - "cSameMsg": 0 - }, - "pb-IF49U04vXA==": { - "display_string": [ - "\ue020LoathsomeReaction46" - ], - "profiles": [], - "name": "\ue020LoathsomeReaction46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 13:58:29", - "registerOn": 1670249450.0387409, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249450.0387418, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670315369.8154893, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315330.0926294, - "lastIP": "d|vbzh~~mfaai", - "deviceUUID": "f8cbfc59d93e526ed3aa7fa1ed51486351576c0d", - "cMsgCount": 0, - "lastMsgTime": 1670315369.815239, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4wVFcZPw==": { - "display_string": [ - "\ue063CivilizedT" - ], - "profiles": [], - "name": "\ue063CivilizedT", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-08 13:54:25", - "registerOn": 1670249678.8690112, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249678.8690119, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670349173.391951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670349173.3919523, - "lastIP": "a\u007fk~~oaaj`\u007fvf|", - "deviceUUID": "44e3910a7e2c0d1388c508e23395a197d9699044", - "cMsgCount": 0, - "lastMsgTime": 1670349653.4042087, - "lastMsg": "koi Mumbai s e?", - "cSameMsg": 0 - }, - "pb-IF4dUm4qLQ==": { - "display_string": [ - "\ue063ashknight4", - "\ue030Android56184369" - ], - "profiles": [], - "name": "\ue063ashknight4", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-21 01:36:02", - "registerOn": 1670249762.308179, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249762.3081794, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670249762.3081875, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249762.3081884, - "lastIP": "a}h~~liakgaj`~", - "deviceUUID": "774550730ff3fc25eb88f0355d4a195037d77028" - }, - "pb-IF4gUlkcDA==": { - "display_string": [ - "\ue030Android59895610" - ], - "profiles": [], - "name": "\ue030Android59895610", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-21 11:44:16", - "registerOn": 1670249849.4518666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249849.451867, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670249884.5996675, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249849.4518764, - "lastIP": "dvva{`~~idaje{", - "deviceUUID": "919131afccd37b147af5f963a5193b6317ca3ed3", - "cMsgCount": 0, - "lastMsgTime": 1670249884.5995364, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-LV4FB0JTA0VAWFYUEUdXBlNDFg==": { - "display_string": [ - "\ue063HEROgamer", - "\ue030Android24143429", - "\ue030Android15189438", - "\ue030Android16124077" - ], - "profiles": [], - "name": "\ue063HEROgamer", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-12 22:39:09", - "registerOn": 1670250120.0074592, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250120.0074596, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250120.0074673, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670267428.3911939, - "lastIP": "dvvd|vd}va}`", - "deviceUUID": "3097c53d0c0a6126c54f877065f6addaa1684210" - }, - "pb-IF4cU0xZMw==": { - "display_string": [ - "\ue063phiNix", - "\ue020TanishkFRANK", - "\ue020YawningCandle50", - "\ue020ClutchingSolo69", - "\ue030Android63908271" - ], - "profiles": [], - "name": "\ue063phiNix", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 20:15:27", - "registerOn": 1670250133.4527495, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250133.45275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250133.452759, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250133.45276, - "lastIP": "dvvd}vfvvb~l", - "deviceUUID": "7d19f22e9444d68ed2d5da1dd20d0511447410ce" - }, - "pb-IF4TABUN": { - "display_string": [ - "\ue063SRD1111997", - "\ue030Android22651353" - ], - "profiles": [], - "name": "\ue063SRD1111997", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-21 16:41:56", - "registerOn": 1670250268.0836828, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250268.0836837, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250268.0836926, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250268.0836935, - "lastIP": "a\u007fk~~n`ajc|va{i", - "deviceUUID": "85eca4976bc87b8b8109d1f417513119a8a32899" - }, - "pb-IF5QU1EMXA==": { - "display_string": [ - "\ue02011MAXTON11" - ], - "profiles": [], - "name": "\ue02011MAXTON11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 20:04:28", - "registerOn": 1670250295.143146, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250295.1431468, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312749.1196575, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312749.1196587, - "lastIP": "axi~zi~~m`aih}", - "deviceUUID": "5030e89d0d9c2de986e244acf9e88ad4503934cd" - }, - "pb-IF4MU2ozNA==": { - "display_string": [ - "\ue030Android61746695" - ], - "profiles": [], - "name": "\ue030Android61746695", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-05 20:41:06", - "registerOn": 1670250332.259322, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250332.2593224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250332.2593436, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250332.2593443, - "lastIP": "dvvcyvewvaxa", - "deviceUUID": "7c64a4ae863115bd7704c6825796c1decc327e51" - }, - "pb-IF4xU04eMw==": { - "display_string": [ - "\ue063rudrakshsh" - ], - "profiles": [], - "name": "\ue063rudrakshsh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 15:23:07", - "registerOn": 1670250383.4424148, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250383.4424157, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250383.442425, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250383.4424262, - "lastIP": "azj~z`~{m~~nb", - "deviceUUID": "d130a8d00098ff798281658f5155cd73bcc5b3c1" - }, - "pb-IF4mUkwhAA==": { - "display_string": [ - "\ue020WinningJogger46419" - ], - "profiles": [], - "name": "\ue020WinningJogger46419", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-01 21:28:10", - "registerOn": 1670250488.7782063, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250488.778207, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254357.983664, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670253386.3972933, - "lastIP": "azo~{l~~ndaigy", - "deviceUUID": "2c2779637d66affab87d4694ba875b4dc06558f6", - "cMsgCount": 0, - "lastMsgTime": 1670254650.8939326, - "lastMsg": "hu hu huuuuuuuu", - "cSameMsg": 0 - }, - "pb-IF5cU1AlNQ==": { - "display_string": [ - "\ue063ReticentPr" - ], - "profiles": [], - "name": "\ue063ReticentPr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 16:44:28", - "registerOn": 1670250659.4981358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250659.4981365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250659.4981453, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250659.4981463, - "lastIP": "a~k~~ndan~}m`", - "deviceUUID": "616bf13ce6524e0c95ff3b7024bcb317a305ba7f" - }, - "pb-IF4oU0s9PQ==": { - "display_string": [ - "\ue030Android63809675" - ], - "profiles": [], - "name": "\ue030Android63809675", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-05 15:28:37", - "registerOn": 1670250666.417381, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250666.417382, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250666.4173903, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250666.4173918, - "lastIP": "a~i~~iiaii|vgz", - "deviceUUID": "\u0015VXYQBU\u000bY\u0004\u0011XT\u0003" - }, - "pb-IF5SUlE-KQ==": { - "display_string": [ - "\ue030Android58903800" - ], - "profiles": [], - "name": "\ue030Android58903800", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-13 20:36:23", - "registerOn": 1670250707.6840343, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250707.6840348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250707.684044, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250707.684045, - "lastIP": "dvvc}vaxl~~`c", - "deviceUUID": "e8a2da1bdc74e640f94c66aea691763073d2df29" - }, - "pb-IF4GUmszHA==": { - "display_string": [ - "\ue020suryarocker1999" - ], - "profiles": [], - "name": "\ue020suryarocker1999", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-04 20:32:35", - "registerOn": 1670250719.6712677, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250719.6712685, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250719.6712766, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250719.6712773, - "lastIP": "a\u007fn~~ahaa~}ii", - "deviceUUID": "\u0015\u0003\\WXL" - }, - "pb-IF4WU2VaXQ==": { - "display_string": [ - "\ue063Interesti7", - "\ue030Android61201689" - ], - "profiles": [], - "name": "\ue063Interesti7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-14 13:31:29", - "registerOn": 1670250920.3041723, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250920.3041728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347647.9930327, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670347647.993034, - "lastIP": "azj~zo~~lfajg", - "deviceUUID": "d6815a2cb1771730f88ada9d4173d80c2b4e90af" - }, - "pb-IF4rU0U8Eg==": { - "display_string": [ - "\ue020VocationalScrutiny21", - "\ue030Android50978082" - ], - "profiles": [], - "name": "\ue020VocationalScrutiny21", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 12:45:33", - "registerOn": 1670251027.71761, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670251027.7176106, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251027.7176192, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251027.7176204, - "lastIP": "dxvbvve}va|j", - "deviceUUID": "77dea83bafe18e363ae49809edd8687ed2d5cfda" - }, - "pb-IF4zUxYJEw==": { - "display_string": [ - "\ue063FrostedLor" - ], - "profiles": [], - "name": "\ue063FrostedLor", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-19 22:59:21", - "registerOn": 1670251058.8195562, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670251058.819557, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670251158.2238212, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251058.8195662, - "lastIP": "a}l~~meaje~vb{o", - "deviceUUID": "6c31f2cd8004bc88fec33cd12dcf4451a54b98ed", - "cMsgCount": 1, - "lastMsgTime": 1670251165.5072389, - "lastMsg": "bska", - "cSameMsg": 0 - }, - "pb-IF4DUk5TUg==": { - "display_string": [ - "\ue020OceanicCaptivity19" - ], - "profiles": [], - "name": "\ue020OceanicCaptivity19", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-07 01:49:24", - "registerOn": 1670251261.472954, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670251261.4729545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251261.4729621, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251261.472963, - "lastIP": "b\u007fi~~`~~ohale", - "deviceUUID": "80a731f93a43685f2fbc45b28f339808f8a9d5ab" - }, - "pb-IF4zU1BaEg==": { - "display_string": [ - "\ue063FreezingFl" - ], - "profiles": [], - "name": "\ue063FreezingFl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 20:15:42", - "registerOn": 1670251764.2393317, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670251764.2393327, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251764.2393408, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251764.2393415, - "lastIP": "a~h~zl~~mbaigx", - "deviceUUID": "c6eee5b8e498eeeb452c5e3d90b3e3075c962753" - }, - "pb-IF5TU3AmUQ==": { - "display_string": [ - "\ue030Android62080452" - ], - "profiles": [], - "name": "\ue030Android62080452", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 20:59:36", - "registerOn": 1670251929.830174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670251929.830175, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299688.556131, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299688.556132, - "lastIP": "azo~|j~~afaic~", - "deviceUUID": "fdbc58d0451aee66658ca47acaa38fcafe3cc83e" - }, - "pb-IF4wV3cJLw==": { - "display_string": [ - "\ue020gokulcmkl" - ], - "profiles": [], - "name": "\ue020gokulcmkl", - "isBan": false, - "isMuted": false, - "accountAge": "2019-01-06 17:13:28", - "registerOn": 1670252119.4277601, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252119.4277606, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252119.4277675, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252119.4277682, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF4TU08iDQ==": { - "display_string": [ - "\ue063DecodeGame" - ], - "profiles": [], - "name": "\ue063DecodeGame", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 23:48:49", - "registerOn": 1670252138.4784591, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252138.4784598, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252138.4784687, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252138.4784696, - "lastIP": "azo~|k~}iaajdv", - "deviceUUID": "5c72854fb38549f2159c7bb467ca960acf92a3ed" - }, - "pb-IF4QU04vLQ==": { - "display_string": [ - "\ue020DesirousAutonomy49" - ], - "profiles": [], - "name": "\ue020DesirousAutonomy49", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 20:15:58", - "registerOn": 1670252416.490065, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252416.4900656, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252416.4900723, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252416.4900734, - "lastIP": "a\u007fn~~aeal`ajdw", - "deviceUUID": "ee801aee1dc3812a8c5b5b8e61a9211912bdedd5" - }, - "pb-IF4DVEpfCA==": { - "display_string": [ - "\ue063dynamic271", - "\ue030Android41785159" - ], - "profiles": [], - "name": "\ue063dynamic271", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-22 03:33:27", - "registerOn": 1670252423.468689, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252423.4686897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670357164.5721743, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670357164.5721755, - "lastIP": "bxvixva|o~~ad", - "deviceUUID": "180be3d7bbef58dbf5c518f31b09ec00fffeaf68" - }, - "pb-IF4rU0UcFw==": { - "display_string": [ - "\ue063Sanath2512" - ], - "profiles": [], - "name": "\ue020Sanath2512", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-04 23:21:03", - "registerOn": 1670252569.9620147, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252569.9620152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343305.5986636, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343305.5986648, - "lastIP": "axi~zi~}i`al`", - "deviceUUID": "51d4bdac1c954b9ea5efdededa86b18ba70f2105" - }, - "pb-IF4JVVMgDA==": { - "display_string": [ - "\ue020FutileBeef19" - ], - "profiles": [], - "name": "\ue020FutileBeef19", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-26 17:42:51", - "registerOn": 1670252578.065086, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252578.0650864, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330757.2067704, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670331106.7534826, - "lastIP": "dvvcxva}a~}jh", - "deviceUUID": "ba6691ca1d69bc886641d414188b625508bc12b0" - }, - "pb-IF4AU2QnDg==": { - "display_string": [ - "\ue030Android61174087" - ], - "profiles": [], - "name": "\ue030Android61174087", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-12 10:48:37", - "registerOn": 1670252628.7949886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252628.7949893, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252628.794997, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252628.7949986, - "lastIP": "a~o~}lhalfaifx", - "deviceUUID": "a57d53721cf79ae8f3f622ff251eae9dc9d487b3" - }, - "pb-LV4FBBRcUBESWV4RFBVUV1NBRA==": { - "display_string": [ - "\ue020mBAROT" - ], - "profiles": [], - "name": "\ue020mBAROT", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-05 14:49:29", - "registerOn": 1670252668.5095925, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252668.5095932, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670326779.7590246, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670326779.7590258, - "lastIP": "azo~|j~}ldaai", - "deviceUUID": "7bfa41b057c23c13310fd135826868e7437985d1", - "cMsgCount": 0, - "lastMsgTime": 1670329719.1965027, - "lastMsg": "ok bye", - "cSameMsg": 0 - }, - "pb-IF42V2MNDA==": { - "display_string": [ - "\ue020BeamingCornball58058" - ], - "profiles": [], - "name": "\ue020BeamingCornball58058", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-25 13:47:40", - "registerOn": 1670252719.4028423, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252719.4028435, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252719.402854, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252719.4028552, - "lastIP": "a~m~va~zk~~kb", - "deviceUUID": "406b1efe0a882743f7cc93f49688159f6d818e94" - }, - "pb-IF4UU2kpNw==": { - "display_string": [ - "\ue063EliteChime" - ], - "profiles": [], - "name": "\ue063EliteChime", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-27 23:51:26", - "registerOn": 1670252794.6688824, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252794.668883, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252794.6688926, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252794.6688933, - "lastIP": "a\u007fk~~mgaie\u007fva|j", - "deviceUUID": "d3e1bcb17b77ebd8fe8bcebcaaa38fa7bad5d9d3" - }, - "pb-IF42VEcmMg==": { - "display_string": [ - "\ue020AssuredStagnation16", - "\ue030Android42284044" - ], - "profiles": [], - "name": "\ue020AssuredStagnation16", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-09 20:05:06", - "registerOn": 1670252857.919152, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252857.9191527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252857.9191623, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252857.9191637, - "lastIP": "d}va\u007f`~yo~~n", - "deviceUUID": "332a46b82a6e08bbb1deb961addf8bdd99ba2b10" - }, - "pb-IF4nU3ZaUg==": { - "display_string": [ - "\ue020FrumptiousQuagga8864" - ], - "profiles": [], - "name": "\ue020FrumptiousQuagga8864", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-17 17:53:38", - "registerOn": 1670252952.226182, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252952.2261825, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252952.226189, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252952.2261899, - "lastIP": "a\u007fn~}hcai`xvaxo", - "deviceUUID": "8600fa9f3e667fd22ee502fe7f117a3cf2a8edba" - }, - "pb-IF4rU0lcKw==": { - "display_string": [ - "\ue020PetrifiedErrand43" - ], - "profiles": [], - "name": "\ue020PetrifiedErrand43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 09:50:16", - "registerOn": 1670252979.329765, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252979.3297658, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252979.3297727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252979.329774, - "lastIP": "azj~z`~|l~~hf", - "deviceUUID": "562c4d5d81234c294d52da4e065a7ffd07927804" - }, - "pb-IF5RU3EIEA==": { - "display_string": [ - "\ue020MeanderingArchon437" - ], - "profiles": [], - "name": "\ue020MeanderingArchon437", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-21 18:55:17", - "registerOn": 1670252993.3708808, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252993.3708813, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252993.3708901, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252993.3708913, - "lastIP": "dvvcxvavk~}jh", - "deviceUUID": "7f92c216275cdca15efa603875e38f0af5c33831" - }, - "pb-IF4cU0cKJA==": { - "display_string": [ - "\ue030Android63676730" - ], - "profiles": [], - "name": "\ue030Android63676730", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 11:00:12", - "registerOn": 1670253081.681861, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253081.6818616, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253081.6818697, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670254297.8800952, - "lastIP": "a\u007fk~xo~~jgala", - "deviceUUID": "bb673b54de9b442b208eb89eed832c2e3dc79536" - }, - "pb-IF4tU04GEw==": { - "display_string": [ - "\ue020ruklawde" - ], - "profiles": [], - "name": "\ue020ruklawde", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 13:35:05", - "registerOn": 1670253363.8080444, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253363.8080451, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253363.808054, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253363.8080547, - "lastIP": "a~o~}jhai`~vcw", - "deviceUUID": "a3d491b75cc0edaaadd932bf025ff0c7018df2a7" - }, - "pb-IF4mU0kaEA==": { - "display_string": [ - "\ue020HonorableGrunt6306" - ], - "profiles": [], - "name": "\ue020HonorableGrunt6306", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-30 19:35:55", - "registerOn": 1670253718.0740502, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253718.0740511, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253718.0740592, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253718.0740604, - "lastIP": "dvvcyvh}vaz`", - "deviceUUID": "8182916895157817de037308848699e720b92950" - }, - "pb-IF4QU0heJg==": { - "display_string": [ - "\ue030Android63711714" - ], - "profiles": [], - "name": "\ue030Android63711714", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 19:20:23", - "registerOn": 1670253805.5955071, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253805.5955074, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253805.5955155, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670253823.1389985, - "lastIP": "azo~{l~~`bajdv", - "deviceUUID": "08297aa99953ac2f3605b7cfa51893bb453e6170" - }, - "pb-IF4PUm4DHA==": { - "display_string": [ - "\ue020AJROCKlegend", - "\ue030Android62073746", - "\ue030Android62760756" - ], - "profiles": [], - "name": "\ue020AJROCKlegend", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-21 11:55:21", - "registerOn": 1670253859.572911, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253859.5729115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670293698.4350636, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670293698.435065, - "lastIP": "a~o~va~|h~~h`", - "deviceUUID": "\u0015\u0002^PRG\u0003\\T\u0007@" - }, - "pb-IF4HU28eKA==": { - "display_string": [ - "\ue030Android62211118" - ], - "profiles": [], - "name": "\ue030Android62211118", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-24 16:28:26", - "registerOn": 1670253923.7958786, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253923.7959, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342072.180134, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670342072.1801355, - "lastIP": "a\u007fn~~abaihzvb}k", - "deviceUUID": "acecef9732440497a8e9ca4bc20858a24f086f9d" - }, - "pb-IF5XUlUKKw==": { - "display_string": [ - "\ue020BevinTheBoss" - ], - "profiles": [], - "name": "\ue020BevinTheBoss", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-27 10:44:29", - "registerOn": 1670253938.8944445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253938.894445, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253938.8944535, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253938.8944542, - "lastIP": "dvvc}vaza~~kd", - "deviceUUID": "9807e63e640c1efe5e51981f029a13c5af01b4cc" - }, - "pb-IF5XU0kHNQ==": { - "display_string": [ - "\ue020Maj5677" - ], - "profiles": [], - "name": "\ue020Maj5677", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 13:26:46", - "registerOn": 1670254010.164867, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254010.1648676, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254010.1648767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254010.1648781, - "lastIP": "i{vb{`~~`daic", - "deviceUUID": "66e851e9bac06f20f0195a1d377bca96170cdb1a" - }, - "pb-IF4lVW4jEg==": { - "display_string": [ - "\ue063Samselvin1" - ], - "profiles": [], - "name": "\ue063Samselvin1", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-14 19:43:04", - "registerOn": 1670254079.3648503, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254079.3648508, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254079.3648584, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254079.3648593, - "lastIP": "a~h~}jdaib}vf", - "deviceUUID": "29a32b3adb4f82b1e058c8a7cdcc667e2599c27a" - }, - "pb-IF4-UlICNQ==": { - "display_string": [ - "\ue063Deathless2" - ], - "profiles": [], - "name": "\ue063Deathless2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-26 17:18:21", - "registerOn": 1670254092.4870377, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254092.4870381, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254092.487047, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254092.4870477, - "lastIP": "azo~|`~yo~~`b", - "deviceUUID": "365f1795853aecbfe3386c59d40033d70ea72366" - }, - "pb-IF4BU01cVQ==": { - "display_string": [ - "\ue063ChocolateT" - ], - "profiles": [], - "name": "\ue063ChocolateT", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 20:54:50", - "registerOn": 1670254150.9815195, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254150.9815202, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254150.9815302, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254150.9815311, - "lastIP": "azo~{a~}lcaif{", - "deviceUUID": "a76126d32dd8738d27d85d5b2d95b7168f16fea7" - }, - "pb-IF42U0kbEg==": { - "display_string": [ - "\ue020RustyUnicorn27009" - ], - "profiles": [], - "name": "\ue020RustyUnicorn27009", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 22:42:37", - "registerOn": 1670254220.9986901, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254220.9986908, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341595.561214, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341595.5612152, - "lastIP": "dvvc{vc}vaxl", - "deviceUUID": "f890499c54c2ed30614bb91563b994c0ac17a8b1" - }, - "pb-IF4pU3c_Fg==": { - "display_string": [ - "\ue030Android62872959" - ], - "profiles": [], - "name": "\ue030Android62872959", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-23 12:47:07", - "registerOn": 1670254315.858815, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254315.8588154, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254315.8588223, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254315.858823, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF4nU0shXQ==": { - "display_string": [ - "\ue020NehalSule01" - ], - "profiles": [], - "name": "\ue020NehalSule01", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 18:18:43", - "registerOn": 1670254440.0974624, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254440.0974631, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254440.0974724, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254440.0974734, - "lastIP": "azo~|k~}k~~jh", - "deviceUUID": "e0b58fa1a9353d747d2c86283e7d443cc5e21a0a" - }, - "pb-IF4sU2I5JA==": { - "display_string": [ - "\ue020ImportantYeoman99681" - ], - "profiles": [], - "name": "\ue020ImportantYeoman99681", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-09 18:59:02", - "registerOn": 1670254543.1246269, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254543.1246278, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323206.1668684, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670327472.4149199, - "lastIP": "azj~z`~|l~|", - "deviceUUID": "4f70739e851f001a6546754c5de2d4346c829195" - }, - "pb-IF5RU1I4Vw==": { - "display_string": [ - "\ue063Dethracer7" - ], - "profiles": [], - "name": "\ue063Dethracer7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 14:36:44", - "registerOn": 1670254550.1401196, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254550.14012, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254550.1401277, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254550.1401289, - "lastIP": "a\u007fk~za~xm~{a", - "deviceUUID": "5a9cb591ad9851f5a6963552224686de1cb0fffa" - }, - "pb-IF4AU0s_Lg==": { - "display_string": [ - "\ue063Dangerou18" - ], - "profiles": [], - "name": "\ue063Dangerou18", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-05 14:24:27", - "registerOn": 1670254849.679219, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254849.6792197, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254849.679228, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254849.679229, - "lastIP": "dvvcyva\u007fj~~ji", - "deviceUUID": "57fc4e0ed7ea08e967c03cbdaa306eef2cf172c1" - }, - "pb-IF4dV0deMw==": { - "display_string": [ - "\ue020EngrossingFarmer8411" - ], - "profiles": [], - "name": "\ue020EngrossingFarmer8411", - "isBan": false, - "isMuted": false, - "accountAge": "2019-02-27 00:36:07", - "registerOn": 1670255001.736391, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255001.736392, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313768.957601, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313768.9576027, - "lastIP": "a\u007fk~}laajbyva\u007fn", - "deviceUUID": "a0334c888a84b2407e2a4ab6c236518fe8c31d40" - }, - "pb-IF41U08-KA==": { - "display_string": [ - "\ue063Excessive5" - ], - "profiles": [], - "name": "\ue063Excessive5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 18:59:49", - "registerOn": 1670255113.3803844, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255113.380385, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255113.3803947, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255113.3803964, - "lastIP": "azo~{h~~jfajb", - "deviceUUID": "c2c212ff923c6217a21d785856238366adb097a2" - }, - "pb-IF4xU08sHQ==": { - "display_string": [ - "\ue020SmartSid12345", - "\ue030Android63979752", - "\ue030Android42905975" - ], - "profiles": [], - "name": "\ue030Android63979752", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 23:46:13", - "registerOn": 1670255144.4869297, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255144.4869304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255144.4869394, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255144.4869404, - "lastIP": "a}h~~khaia{viw", - "deviceUUID": "d5a8202ad4f3a064230e4c3a06eabcb6f715f2c2" - }, - "pb-IF4jVEwxDw==": { - "display_string": [ - "\ue020surajnikam266", - "\ue030Android61689027" - ], - "profiles": [], - "name": "\ue020surajnikam266", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-31 12:49:06", - "registerOn": 1670255391.4203773, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255391.420378, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255391.4203866, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255391.4203875, - "lastIP": "dvvcyva}h~~nd", - "deviceUUID": "70cff96ba8ba4f084c3253d67efc7841386bd18d", - "cMsgCount": 0, - "lastMsgTime": 1670255587.440066, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF40VEwfPQ==": { - "display_string": [ - "\ue020AJAYJOSHI904" - ], - "profiles": [], - "name": "\ue020AJAYJOSHI904", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-02 17:58:50", - "registerOn": 1670255434.5880437, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255434.5880444, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255434.5880518, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255434.5880527, - "lastIP": "a|a~~ngajbyvg\u007f", - "deviceUUID": "0ee6b6eecf6f52f2bb376cbcb31feee46cb123ec" - }, - "pb-IF4zU20BFA==": { - "display_string": [ - "\ue020TenableCoherence51" - ], - "profiles": [], - "name": "\ue020TenableCoherence51", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-16 12:08:23", - "registerOn": 1670255484.7145073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255484.714508, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255484.7145162, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255484.7145174, - "lastIP": "azo~{l~~nhaihy", - "deviceUUID": "705c9617b9e47d8c50f605c506cf54ea6a67cc58" - }, - "pb-IF4VUnQ-Cg==": { - "display_string": [ - "\ue020aashiq8126" - ], - "profiles": [], - "name": "\ue020aashiq8126", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-20 11:04:40", - "registerOn": 1670255567.027972, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255567.027973, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255567.02798, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255567.0279808, - "lastIP": "azo~{n~yo~}jf", - "deviceUUID": "65e39e7eb61d5effa47ed6c17016cd8ef39929a3" - }, - "pb-IF40U2UfUQ==": { - "display_string": [ - "\ue063ChromeGua3" - ], - "profiles": [], - "name": "\ue063ChromeGua3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-18 16:10:24", - "registerOn": 1670255977.6800907, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255977.6800911, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255977.6800992, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255977.6801002, - "lastIP": "azo~{a~~`caii\u007f", - "deviceUUID": "e10fe74d8f3b704ccbc129a33799524df9d6e93b" - }, - "pb-IF4qU1BYEA==": { - "display_string": [ - "\ue063RubberMast" - ], - "profiles": [], - "name": "\ue063RubberMast", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 16:10:43", - "registerOn": 1670256011.93738, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256011.9373806, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256011.937388, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256011.9373891, - "lastIP": "dvvc}va{o~~kh", - "deviceUUID": "63e47d624472109b043874aa16140f91c34fb3ed" - }, - "pb-IF49U0gMLg==": { - "display_string": [ - "\ue020FocalJunction38" - ], - "profiles": [], - "name": "\ue020FocalJunction38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 12:53:22", - "registerOn": 1670256012.1049006, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256012.1049013, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256012.104909, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256012.1049101, - "lastIP": "azo~{a~}kfaoi", - "deviceUUID": "1a178a99f5a7d57629687eabf1df69d7bbdfa623" - }, - "pb-IF4lB0sz": { - "display_string": [ - "\ue063BrownCreat" - ], - "profiles": [], - "name": "\ue063BrownCreat", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-01 13:39:18", - "registerOn": 1670256028.8637788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256028.863779, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256028.863786, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256028.8637867, - "lastIP": "b}k~~oha`eaj`\u007f", - "deviceUUID": "b0220229f2ebad7ac29d3379a9de68e4e0c9e1ce" - }, - "pb-IF4AUhIyJA==": { - "display_string": [ - "\ue063LongerImag" - ], - "profiles": [], - "name": "\ue063LongerImag", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-13 12:41:16", - "registerOn": 1670256070.954883, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256070.9548838, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256070.954892, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256070.954893, - "lastIP": "dvvc}vazn~z", - "deviceUUID": "230ae545d6366c2d0debb0c4a8803619de13478f" - }, - "pb-IF4RUnY9IQ==": { - "display_string": [ - "\ue030Android57008711" - ], - "profiles": [], - "name": "\ue030Android57008711", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-27 20:35:39", - "registerOn": 1670256129.2770996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256129.2771003, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315698.4613986, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315698.4614, - "lastIP": "azo~|`~~kiaa", - "deviceUUID": "\u0015S\u000ePSA\u0005\\\u0005U\u0017" - }, - "pb-IF40U2k8Ig==": { - "display_string": [ - "\ue030Android61657358" - ], - "profiles": [], - "name": "\ue030Android61657358", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-02 07:48:54", - "registerOn": 1670256381.4128532, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256381.4128542, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256381.4128635, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256381.4128644, - "lastIP": "azo~{n~}jaaif{", - "deviceUUID": "\u0015\u0002U" - }, - "pb-JiNJARFaUEBFW1xEGURTVFxFFkJZQ1BL": { - "display_string": [ - "\ue063Conqueror2", - "\ue030Android6251393" - ], - "profiles": [], - "name": "\ue063Conqueror2", - "isBan": false, - "isMuted": false, - "accountAge": "2016-08-28 23:08:40", - "registerOn": 1670256437.6212132, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256437.6212142, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256437.6212237, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256437.6212244, - "lastIP": "a\u007fk~~`cajbvvayl", - "deviceUUID": "83adaa972d7102283297eee361226c7407497ff5" - }, - "pb-IF4QV1kdNw==": { - "display_string": [ - "\ue063SICKBOY234" - ], - "profiles": [], - "name": "\ue063SICKBOY234", - "isBan": false, - "isMuted": false, - "accountAge": "2019-06-07 18:57:50", - "registerOn": 1670256520.9515796, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256520.95158, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256520.9515882, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256520.951589, - "lastIP": "azo~{n~~naaje\u007f", - "deviceUUID": "72c11652acdcd43b7aedc769abbe37c3982b9523" - }, - "pb-JiNJARFZUUpJX1tGE0dWVlJEE0NdQFhB": { - "display_string": [ - "\ue063bhaumikrat", - "\ue030Android12040933" - ], - "profiles": [], - "name": "\ue020bhaumikrathod1234", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-27 14:51:19", - "registerOn": 1670256565.1365228, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256565.1365232, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344406.4825704, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670344424.543868, - "lastIP": "azj~z`~|l~}ig", - "deviceUUID": "24051ec9abcd42747643aa2415870c8cd47b1c39" - }, - "pb-IF4lUhAuDA==": { - "display_string": [ - "\ue063Bodacious8" - ], - "profiles": [], - "name": "\ue063Bodacious8", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-02 18:23:15", - "registerOn": 1670256648.5232904, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256648.523291, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256648.5233006, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256648.5233018, - "lastIP": "a~o~}jhaif}va\u007fj", - "deviceUUID": "2b3d06d2e74e7f36a98e8e8a6851ccb5a52b543d" - }, - "pb-IF4cVGsqNA==": { - "display_string": [ - "\ue020369joker963" - ], - "profiles": [], - "name": "\ue020369joker963", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-15 20:57:36", - "registerOn": 1670256768.0631816, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256768.0631824, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256768.063189, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256768.06319, - "lastIP": "a\u007fn~~adalaaje", - "deviceUUID": "bdca4575f5eeafa7f2539cc58e3df27ed061ba5e" - }, - "pb-IF4XU0E5AQ==": { - "display_string": [ - "\ue020UngainlyAluminum35", - "\ue030Android63419605", - "\ue030Android63419543" - ], - "profiles": [], - "name": "\ue020UngainlyAluminum35", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-10 19:08:41", - "registerOn": 1670256850.1497886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256850.1497893, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670301915.2810547, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670303450.3310106, - "lastIP": "a|o~vo~wk~~oh", - "deviceUUID": "4d9c2aba151eac517fd2829146e384861e29f9ff", - "cMsgCount": 0, - "lastMsgTime": 1670303306.985972, - "lastMsg": "sry vivek", - "cSameMsg": 0 - }, - "pb-IF4wU09SJA==": { - "display_string": [ - "\ue030Android63940563" - ], - "profiles": [], - "name": "\ue030Android63940563", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 13:43:25", - "registerOn": 1670256879.2725005, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256879.272501, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321445.7735, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321445.7735014, - "lastIP": "a\u007fn~}jcajavvex", - "deviceUUID": "f5d1b5720c5e611804c462836db425c51cce3620" - }, - "pb-IF4GUhU4AA==": { - "display_string": [ - "\ue030Android54215093" - ], - "profiles": [], - "name": "\ue030Android54215093", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-25 02:34:17", - "registerOn": 1670257031.9821866, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257031.982187, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257031.9821963, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257031.982197, - "lastIP": "awi~~odaodaj`~", - "deviceUUID": "d6488396d3fc78711d5cf48ef28ed344208b6c5c" - }, - "pb-IF4XUlQNLw==": { - "display_string": [ - "\ue030Android59340397" - ], - "profiles": [], - "name": "\ue030Android59340397", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-31 20:20:09", - "registerOn": 1670257069.9438384, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257069.9438388, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257069.943847, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670257254.3727899, - "lastIP": "a}j~~mbamdakc", - "deviceUUID": "\u0015RZPTAU^\u0004WL\u0005\tVQBWZTPLT^RY" - }, - "pb-IF4-VFMbAg==": { - "display_string": [ - "\ue063ElegantLun" - ], - "profiles": [], - "name": "\ue063ElegantLun", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-13 06:00:26", - "registerOn": 1670257121.1981733, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257121.198174, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257121.1981828, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257121.198184, - "lastIP": "dvvdvvb{k~{m", - "deviceUUID": "c5b4b03a7c3bb039e656794cfc61c49a225d18a7" - }, - "pb-IF4wBUUK": { - "display_string": [ - "\ue020RAEEEEEEEEEEEEEEEEES", - "\ue030Android33511514" - ], - "profiles": [], - "name": "\ue020RAEEEEEEEEEEEEEEEEES", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-09 23:20:43", - "registerOn": 1670257170.4323204, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257170.4323208, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344421.5305216, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670344421.5305226, - "lastIP": "azo~|j~}kdaja", - "deviceUUID": "585dce69a029fb4d29648fd828dc36df5939d7aa" - }, - "pb-IF4AU085Cw==": { - "display_string": [ - "\ue030Android63969121" - ], - "profiles": [], - "name": "\ue030Android63969121", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 14:22:20", - "registerOn": 1670257188.4926977, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257188.4926984, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257188.4927082, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257188.4927092, - "lastIP": "a\u007fj~ym~xh~}m", - "deviceUUID": "\u0015\u0002\b\u0005V\u0016PY\u0003V@TZUY\u0011\u0004YTSDSZQYB" - }, - "pb-IF4OU0JcNw==": { - "display_string": [ - "\ue030Android63334530" - ], - "profiles": [], - "name": "\ue030Android63334530", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-15 22:53:08", - "registerOn": 1670257195.456958, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257195.4569585, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342087.234133, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670343654.846162, - "lastIP": "awj~xo~~iiana", - "deviceUUID": "d95a49067e47c54d6cf04fb08334208c020b6829" - }, - "pb-IF5QVWsoFw==": { - "display_string": [ - "\ue063Surajkhot0" - ], - "profiles": [], - "name": "\ue063Surajkhot0", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-29 19:11:10", - "registerOn": 1670257216.5894768, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257216.5894775, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257216.589486, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257216.5894868, - "lastIP": "a}j~~ngajezvavi", - "deviceUUID": "95ec89199587112fa5b89ec03f8d6ea5b274851a" - }, - "pb-IF4vU2ISBg==": { - "display_string": [ - "\ue063Nikhil18", - "\ue020IncompetentGhost28", - "\ue030Android60304282", - "\ue030PC750627", - "\ue030PC453003" - ], - "profiles": [], - "name": "\ue030PC750627", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-08 11:29:20", - "registerOn": 1670257267.8095806, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257267.809581, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257267.8095903, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670257608.7073476, - "lastIP": "a\u007fn~}i`aid}vb~m", - "deviceUUID": "82edc8862635598bd73138232e611b9569e9638e" - }, - "pb-IF4AU3ZcAw==": { - "display_string": [ - "\ue063Intolera18" - ], - "profiles": [], - "name": "\ue063Intolera18", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-19 10:14:51", - "registerOn": 1670257442.6885707, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257442.6885712, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257442.6885812, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257442.6885822, - "lastIP": "a\u007fk~~kganga`c", - "deviceUUID": "2b2a5028de891149889a4a2eb39786fad1a95ed5" - }, - "pb-IF4mUnE_Lg==": { - "display_string": [ - "\ue063rohithsai0" - ], - "profiles": [], - "name": "\ue063rohithsai0", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-06 18:59:43", - "registerOn": 1670257451.4285731, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257451.4285738, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257451.4285817, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257451.4285824, - "lastIP": "bxvgaif~vbzl", - "deviceUUID": "e3074849d0eee0df511f6b5881e05ffe938c5b3b" - }, - "pb-IF4HU3UIXA==": { - "display_string": [ - "\ue063danchoak47" - ], - "profiles": [], - "name": "\ue063danchoak47", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-16 17:06:36", - "registerOn": 1670257571.8968, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257571.8968008, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257571.8968105, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257571.8968115, - "lastIP": "baic{vf{vayj", - "deviceUUID": "37fda0db7af73b8e05d9db7f472122163e86fd59" - }, - "pb-IF5TUm4DNg==": { - "display_string": [ - "\ue063Sumanth386" - ], - "profiles": [], - "name": "\ue063Sumanth386", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-11 22:48:19", - "registerOn": 1670257598.010625, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257598.0106256, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257598.0106332, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257598.010634, - "lastIP": "azo~{m~}mdaihz", - "deviceUUID": "d56fd1b3882e3d7b300af8a33463737cd66516c5" - }, - "pb-IF41VEEdVA==": { - "display_string": [ - "\ue063MuscularPl" - ], - "profiles": [], - "name": "\ue063MuscularPl", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-31 20:11:02", - "registerOn": 1670257724.4213145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257724.421315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257724.4213226, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257724.4213235, - "lastIP": "dvvcxvb|l~~hf", - "deviceUUID": "52d137eaf00eb67a82a7f367b5d0a222793760dd" - }, - "pb-IF4-U0w7DQ==": { - "display_string": [ - "\ue020YOSHITHALAKMAL45", - "\ue030Android63751944" - ], - "profiles": [], - "name": "\ue020YOSHITHALAKMAL45", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 21:37:53", - "registerOn": 1670257826.8966699, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257826.8966706, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257826.8966787, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257826.8966799, - "lastIP": "b~j~~hdajbzvb{j", - "deviceUUID": "625be643e68bf9a72627ecb1c203974b21e5daae" - }, - "pb-IF4oBEwf": { - "display_string": [ - "\ue063NoName52901c", - "\ue030Android22180102" - ], - "profiles": [], - "name": "\ue063NoName52901c", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-05 21:27:42", - "registerOn": 1670257898.0722663, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257898.072267, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257898.0722752, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257898.072276, - "lastIP": "a~o~}hhajgaicz", - "deviceUUID": "fbb6a93a18228ba8573fa94f744464ace5a11058" - }, - "pb-IF4iVRRaDQ==": { - "display_string": [ - "\ue063optimusmeg" - ], - "profiles": [], - "name": "\ue063optimusmeg", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-28 19:37:49", - "registerOn": 1670257933.27594, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257933.2759407, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257933.2759502, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257933.2759511, - "lastIP": "azo~~iiajcyva{i", - "deviceUUID": "1d9711343cacf46a5e97d174be2eb96f4bb2bc20" - }, - "pb-IF5UU3YxEA==": { - "display_string": [ - "\ue020MiraculousContrary29" - ], - "profiles": [], - "name": "\ue020MiraculousContrary29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-13 20:55:50", - "registerOn": 1670257969.341402, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257969.3414025, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257969.3414106, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257969.3414116, - "lastIP": "dvvcyvd|vd{", - "deviceUUID": "b72b68b2b301a8c12b2f6e3840192b2eea474da5" - }, - "pb-IF4eU08zVQ==": { - "display_string": [ - "\ue020BouncySnake77868" - ], - "profiles": [], - "name": "\ue020BouncySnake77868", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 18:16:48", - "registerOn": 1670258009.676994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258009.6769946, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258009.6770022, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258009.677003, - "lastIP": "azo~|k~}i`a`", - "deviceUUID": "307ac933e9919132e77bb2da8f82e827ddd5196e" - }, - "pb-IF5VVBI-UQ==": { - "display_string": [ - "\ue063DryPreside", - "\ue030Android35720524" - ], - "profiles": [], - "name": "\ue063DryPreside", - "isBan": false, - "isMuted": false, - "accountAge": "2019-06-12 17:45:06", - "registerOn": 1670258027.5899825, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258027.5899832, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258027.5899925, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258027.5899932, - "lastIP": "bxvc{vb\u007fva}h", - "deviceUUID": "9c05542b0d92d6e3cdaef3d161323aef6f22fe14" - }, - "pb-IF5XU0YhFg==": { - "display_string": [ - "\ue063DiligentSt" - ], - "profiles": [], - "name": "\ue063DiligentSt", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 22:45:27", - "registerOn": 1670258043.6863267, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258043.6863275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258043.6863375, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258043.686339, - "lastIP": "bxvexvizva~a", - "deviceUUID": "c6359922302e30ae253b4c7d7a434e753afd3b5c" - }, - "pb-IF4CVUcaAg==": { - "display_string": [ - "\ue030Android51729718" - ], - "profiles": [], - "name": "\ue030Android51729718", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-01 11:15:45", - "registerOn": 1670258400.3804352, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258400.380436, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258400.3804445, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670262188.268341, - "lastIP": "a~o~}laaib\u007fvav", - "deviceUUID": "d06246790daa5a946dd0053412654233fbdbd195" - }, - "pb-IF5VUlYDHQ==": { - "display_string": [ - "\ue030Android59349492" - ], - "profiles": [], - "name": "\ue030Android59349492", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-01 02:22:07", - "registerOn": 1670258509.7183855, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258509.7183862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258509.7183943, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258509.718396, - "lastIP": "dxvazvaa`", - "deviceUUID": "9bd95b592b7a4c23361b903e2242375724a3bc06" - }, - "pb-IF4OU2oKJw==": { - "display_string": [ - "\ue020CaptainBlackbeard11" - ], - "profiles": [], - "name": "\ue020CaptainBlackbeard11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-05 11:58:33", - "registerOn": 1670258656.2382498, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258656.2382505, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258656.2382581, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258656.2382588, - "lastIP": "b~j~~hdajb{vavj", - "deviceUUID": "0c3eb8ca5ce0429e4b0545f62c20f5f844f5dc97" - }, - "pb-IF4WU0s_VA==": { - "display_string": [ - "\ue020FrostyCourt15" - ], - "profiles": [], - "name": "\ue020FrostyCourt15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 22:44:53", - "registerOn": 1670258709.4077702, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258709.4077706, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258709.4077792, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258709.4077804, - "lastIP": "azo~|`~~liaify", - "deviceUUID": "a9f51694aa2d331a4a30e971af714612fd526077" - }, - "pb-JiNJARFZXUFBX11BGEVXU1RCGERXQ1BF": { - "display_string": [ - "\ue063TaRkHaN221", - "\ue030Android11064809" - ], - "profiles": [], - "name": "\ue063TaRkHaN221", - "isBan": false, - "isMuted": false, - "accountAge": "2017-02-23 19:56:03", - "registerOn": 1670258719.434443, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258719.4344437, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258719.434454, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258719.4344547, - "lastIP": "azo~|`~~kfak", - "deviceUUID": "df2dcc995bb14f4880ff8a8743049ed69645d7b5" - }, - "pb-IF4iNRI7": { - "display_string": [ - "\ue020vikramvicky9917", - "\ue030Android16943081" - ], - "profiles": [], - "name": "\ue020vikramvicky9917", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-23 11:13:31", - "registerOn": 1670258862.0087178, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258862.0087185, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258862.008727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258862.008728, - "lastIP": "azo~{a~~ogaie}", - "deviceUUID": "eb46d3e52be084680ebfe2286c0b3834094347b6" - }, - "pb-IF4nU00CDw==": { - "display_string": [ - "\ue020IndigoProfessor29406" - ], - "profiles": [], - "name": "\ue020IndigoProfessor29406", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 21:37:52", - "registerOn": 1670258952.6872625, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258952.6872628, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258952.6872702, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258952.6872709, - "lastIP": "aya~~liajbyvavh", - "deviceUUID": "cec28973acf105e77c22762e056d2dcad53f79a6" - }, - "pb-IF4nVUkkJg==": { - "display_string": [ - "\ue063Undercove7" - ], - "profiles": [], - "name": "\ue063Undercove7", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-08 18:03:05", - "registerOn": 1670259117.053902, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670259117.0539024, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259117.0539112, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259117.0539124, - "lastIP": "b}k~}jhajdzvdv", - "deviceUUID": "eed06cfd1de9dfbee6fa36ec96d04f3c1a5bfc9a" - }, - "pb-IF4PU0UJFw==": { - "display_string": [ - "\ue020SkeletalMention95" - ], - "profiles": [], - "name": "\ue020SkeletalMention95", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-04 14:07:25", - "registerOn": 1670259225.4756715, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670259225.4756722, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259225.4756813, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259225.4756823, - "lastIP": "a~o~}mcaaiai`}", - "deviceUUID": "ccdaf8b03237a74be04a5b92442eeba20b2444ec" - }, - "pb-IF4VU3EjBg==": { - "display_string": [ - "\ue020viru199554" - ], - "profiles": [], - "name": "\ue020viru199554", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 18:48:33", - "registerOn": 1670259259.5296886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670259259.5296893, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344413.507099, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670344413.5071, - "lastIP": "azj~z`~|m~}le", - "deviceUUID": "56d1170868f04f143c806ef6135b41ea8065127f", - "cMsgCount": 1, - "lastMsgTime": 1670345255.366503, - "lastMsg": "yes", - "cSameMsg": 0 - }, - "pb-JiNJARFdVERDXllFGUdVV1VFFkBdRFdC": { - "display_string": [ - "\ue020ismailrifai", - "\ue030Android4344519" - ], - "profiles": [], - "name": "\ue020ismailrifai", - "isBan": false, - "isMuted": false, - "accountAge": "2016-07-04 17:50:10", - "registerOn": 1670259266.6807163, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670259266.680717, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670305906.3024166, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670305906.3024182, - "lastIP": "azo~zi~~h`aig~", - "deviceUUID": "7b315c816cd636483f229a8d98d34bacb99e71c2" - }, - "pb-IF4NVVkCHA==": { - "display_string": [ - "\ue063NoName46139e" - ], - "profiles": [], - "name": "\ue063NoName46139e", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-31 02:48:44", - "registerOn": 1670259528.5617445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670259528.5617456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259528.5617547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259528.5617557, - "lastIP": "cxvb\u007fh~}lgaod", - "deviceUUID": "703a56441b0d763173ea55c61f6a39c66e44f559" - }, - "pb-IF4uVG0fIQ==": { - "display_string": [ - "\ue020SleepyPhantasm49204", - "\ue030Android39278299" - ], - "profiles": [], - "name": "\ue020SleepyPhantasm49204", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-03 17:29:36", - "registerOn": 1670260019.5806453, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260019.580646, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260019.5806546, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260019.5806556, - "lastIP": "azj~z`~|l~~hf", - "deviceUUID": "548d34f6ebd9f112a259b1c8cc304d83b3538a8d" - }, - "pb-IF4eU0UiNw==": { - "display_string": [ - "\ue020DearestSovereignty39", - "\ue030VR291971" - ], - "profiles": [], - "name": "\ue030VR291971", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 23:04:12", - "registerOn": 1670260076.8670533, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260076.867054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260076.8670633, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260076.8670645, - "lastIP": "a~i~~iiaja~vaxa", - "deviceUUID": "4f64d1521a4b6da3ae8223915a4a150f32554469" - }, - "pb-JiNJVxFTUUJJXFlGFUdUUlFGF0NYT1dE": { - "display_string": [ - "\ue063PsychKille", - "\ue030Android2209099" - ], - "profiles": [], - "name": "\ue063PsychKille", - "isBan": false, - "isMuted": false, - "accountAge": "2016-06-09 01:44:47", - "registerOn": 1670260102.0836394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260102.0836399, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260102.0836606, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670260143.8437214, - "lastIP": "awk~wj~}kcaid", - "deviceUUID": "4b8dfc65e95cdda13d37214230680c24ef6a52c4" - }, - "pb-IF5WU1E8DQ==": { - "display_string": [ - "\ue020BraveDeal60" - ], - "profiles": [], - "name": "\ue020BraveDeal60", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 22:45:33", - "registerOn": 1670260137.8995283, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260137.899529, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260137.8995373, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260137.899539, - "lastIP": "dvvcxvg}vb~j", - "deviceUUID": "6d9ffb3e457c116fd09a7056da1ad2eaf6c2268a" - }, - "pb-JiNJARFeUEBHXVhGEkFQVFVFGUJdRFNH": { - "display_string": [ - "\ue063Luminesce8", - "\ue030PC101334" - ], - "profiles": [], - "name": "\ue063Luminesce8", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-26 01:36:26", - "registerOn": 1670260200.3914208, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260200.3914216, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260200.3914292, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260200.3914301, - "lastIP": "a\u007fn~}ieaj`\u007fvawl", - "deviceUUID": "dda89a37d7ce8cdd248de398b1e61a6310268083" - }, - "pb-IF4PU3cHKQ==": { - "display_string": [ - "\ue030Android62944812" - ], - "profiles": [], - "name": "\ue030Android62944812", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 00:32:39", - "registerOn": 1670260355.937781, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260355.9377816, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260355.9377887, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260355.9377894, - "lastIP": "a\u007fk~~kdaiexvey", - "deviceUUID": "\u0015P\\\u0004SC\u0004Z\u0002\u0004\u0011P]Q" - }, - "pb-JiNJARFfXEpBWlpGEUdRVlJCEklXQ1NH": { - "display_string": [ - "\ue020yravishankar15", - "\ue030Android4946615" - ], - "profiles": [], - "name": "\ue063yravishank", - "isBan": false, - "isMuted": false, - "accountAge": "2016-06-14 20:44:13", - "registerOn": 1670260599.100515, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260599.1005156, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260599.1005244, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670260599.1005256, - "lastIP": "dvvc}vb}o~\u007f", - "deviceUUID": "9fcf81ca2127044a13059c7fff597709e8aef9c9" - }, - "pb-IF4QUlgKAA==": { - "display_string": [ - "\ue063Whimsical8" - ], - "profiles": [], - "name": "\ue063Whimsical8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-16 21:25:00", - "registerOn": 1670260736.2662442, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260736.2662444, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340624.0684586, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340624.0684597, - "lastIP": "d~vi\u007fvaxo~}md", - "deviceUUID": "d073747787e1fd85a68d6897bed86b72901a4f41", - "cMsgCount": 1, - "lastMsgTime": 1670341821.6542563, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4cU0EaCQ==": { - "display_string": [ - "\ue063RagingVirg" - ], - "profiles": [], - "name": "\ue063RagingVirg", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-14 22:15:39", - "registerOn": 1670260825.575996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260825.5759964, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260825.5760062, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260825.5760071, - "lastIP": "awk~wk~~lcaif\u007f", - "deviceUUID": "8f92ccdc91c0306504a0a5e8f734ef1cc45e55f1" - }, - "pb-IF4hVEwoJA==": { - "display_string": [ - "\ue020sury2803" - ], - "profiles": [], - "name": "\ue020sury2803", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-03 04:53:30", - "registerOn": 1670260853.6077015, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260853.6077023, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260853.6078458, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260853.6078475, - "lastIP": "awn~~meaje\u007fva|h", - "deviceUUID": "f2c164ad794d898b17253914d4a6c23110a99218" - }, - "pb-JiNJARFfXEZAW1dDGUBQU11GE0FXQFZC": { - "display_string": [ - "\ue020ElectricYodeler26380", - "\ue030Android12313251" - ], - "profiles": [], - "name": "\ue020ElectricYodeler26380", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-05 20:44:22", - "registerOn": 1670260877.9083874, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260877.9083881, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260877.9083965, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260877.9083977, - "lastIP": "a\u007fk~~ofaiaaie~", - "deviceUUID": "567964f0d775d689b7fd35dfbf1e9d25123b5d79", - "cMsgCount": 0, - "lastMsgTime": 1670261659.5812995, - "lastMsg": "lul", - "cSameMsg": 0 - }, - "pb-IF4jU0JaNg==": { - "display_string": [ - "\ue063SeverestAp", - "\ue030Android63952940", - "\ue030Android63953044" - ], - "profiles": [], - "name": "\ue020SeverestApparel30", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 12:49:09", - "registerOn": 1670261087.3662689, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261087.3662696, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338921.8457785, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670339677.5781896, - "lastIP": "cwvd~vh{vez", - "deviceUUID": "c56f8361af0300b9516a6b0801a9cd8c83667895" - }, - "pb-IF4XU3gkNw==": { - "display_string": [ - "\ue020HoneyProgression37" - ], - "profiles": [], - "name": "\ue020HoneyProgression37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 19:58:05", - "registerOn": 1670261114.4563544, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261114.4563549, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261114.4563637, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670261735.6184196, - "lastIP": "azo~zi~~j`a`i", - "deviceUUID": "d6b5c8dc110f804fecb54ed1d5906d8c224a9bbf" - }, - "pb-IF5WVUcOFA==": { - "display_string": [ - "\ue020Angeliccutiee43", - "\ue030Android48977675", - "\ue030Android48990758" - ], - "profiles": [], - "name": "\ue020Angeliccutiee43", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-16 11:20:01", - "registerOn": 1670261205.910979, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261205.9109795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261205.9109886, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261205.9109895, - "lastIP": "dvvd|vb\u007fk~~ii", - "deviceUUID": "\u0015\u0005X\u0004" - }, - "pb-IF5TVVIaLA==": { - "display_string": [ - "\ue020PeakAlarm3243" - ], - "profiles": [], - "name": "\ue020PeakAlarm3243", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-13 22:20:13", - "registerOn": 1670261230.0989811, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261230.0989819, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261230.09899, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670261577.0474558, - "lastIP": "azo~{i~}meaihz", - "deviceUUID": "e332b31902594f55dd2f88cd6c06709f66e9d4f4" - }, - "pb-IF4gNFci": { - "display_string": [ - "\ue020Anirudhalwaysrockzzz" - ], - "profiles": [], - "name": "\ue020Anirudhalwaysrockzzz", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-22 21:06:18", - "registerOn": 1670261708.8552713, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261708.8552723, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261708.8552802, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261708.855281, - "lastIP": "dvvcxva|i~~m", - "deviceUUID": "efab72a946f3bfb5c01a857ae08330f90e063102" - }, - "pb-IF4mVEoyVQ==": { - "display_string": [ - "\ue030Android42718925" - ], - "profiles": [], - "name": "\ue030Android42718925", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-24 16:41:32", - "registerOn": 1670261948.7153764, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261948.715377, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670263209.608887, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261948.715387, - "lastIP": "a\u007fk~~ofaiaaie~", - "deviceUUID": "567964f0d775d689b7fd35dfbf1e9d25123b5d79", - "cMsgCount": 0, - "lastMsgTime": 1670263397.8287296, - "lastMsg": "\ud83d\udca9 ", - "cSameMsg": 0 - }, - "pb-IF4UU08TBA==": { - "display_string": [ - "\ue063Commendabl" - ], - "profiles": [], - "name": "\ue063Commendabl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 19:08:05", - "registerOn": 1670262577.1673675, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262577.167368, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670262577.1673772, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670262577.167378, - "lastIP": "a\u007fn~}igai`~vb~l", - "deviceUUID": "f0ce89638c7caec94595aa7ba691f8135c83d10f" - }, - "pb-IF5UU1EaJA==": { - "display_string": [ - "\ue030Android63987522" - ], - "profiles": [], - "name": "\ue030Android63987522", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 04:42:20", - "registerOn": 1670262591.2810163, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262591.2810168, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670262591.2810266, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670262591.2810276, - "lastIP": "f\u007fva\u007fvazh~{", - "deviceUUID": "4f2fea5353fe40b3d3f50086085d9a00b728bd75" - }, - "pb-IF4-VxM9VQ==": { - "display_string": [ - "\ue020TiredApparition30242" - ], - "profiles": [], - "name": "\ue020TiredApparition30242", - "isBan": false, - "isMuted": false, - "accountAge": "2018-07-28 16:32:06", - "registerOn": 1670262616.424632, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262616.4246325, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670262616.4246418, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670262818.9765315, - "lastIP": "i~vavk~~oiaog", - "deviceUUID": "b97c657beb043a11df17c16d5009f6e088d0f497" - }, - "pb-IF5UUxheIg==": { - "display_string": [ - "\ue020DollarHere69" - ], - "profiles": [], - "name": "\ue020DollarHere69", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-18 14:52:29", - "registerOn": 1670262711.9545352, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262711.9545357, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670263206.0221574, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670263894.805953, - "lastIP": "azo~|a~~m~~m`", - "deviceUUID": "44bf293dd1fd065c2a133e8ec510cda328d941df", - "cMsgCount": 0, - "lastMsgTime": 1670264069.7619326, - "lastMsg": "BHEN KE LAND ", - "cSameMsg": 0 - }, - "pb-IF4vUkRaEg==": { - "display_string": [ - "\ue020\u0110\u00c3\u0158\u0136x\u0160\u00ce\u011eM\u0100" - ], - "profiles": [], - "name": "\ue020\u0110\u00c3\u0158\u0136x\u0160\u00ce\u011eM\u0100", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-27 13:44:02", - "registerOn": 1670262752.0439079, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262752.0439084, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353528.4438727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670353528.4438741, - "lastIP": "azo~{i~}jgaj`v", - "deviceUUID": "\u0015Q_\u0005Q\u0012\u0004\u000fVQ\u0011", - "cMsgCount": 2, - "lastMsgTime": 1670353875.6399574, - "lastMsg": "VANSH KILLER MODE ON", - "cSameMsg": 0 - }, - "pb-IF4WUxcgNw==": { - "display_string": [ - "\ue063HipCompany" - ], - "profiles": [], - "name": "\ue063HipCompany", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-22 19:35:53", - "registerOn": 1670262914.968435, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262914.9684355, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670348483.6660147, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670349811.4159536, - "lastIP": "b}k~}kcaoaaicv", - "deviceUUID": "2484cb8eb0af1bb40680e4565238f860274e03a0" - }, - "pb-IF4NU0IzCA==": { - "display_string": [ - "\ue020Naveenkrish010", - "\ue020BurnedGoose4973" - ], - "profiles": [], - "name": "\ue020Naveenkrish010", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-21 22:53:28", - "registerOn": 1670263043.3790493, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263043.3790498, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263043.3790588, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670263043.37906, - "lastIP": "azo~{a~}hfaigy", - "deviceUUID": "8cbf8dc931ac911ca6c7675b57c36fdb08698d8d" - }, - "pb-IF4HUlcgUQ==": { - "display_string": [ - "\ue063AdrenalCha" - ], - "profiles": [], - "name": "\ue063AdrenalCha", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-11 17:32:58", - "registerOn": 1670263148.671265, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263148.6712656, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670272413.2502463, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670273035.4105117, - "lastIP": "d~va\u007fk~|l~{o", - "deviceUUID": "2f88c71ae171757e42db79bd6806e724a6e90204", - "cMsgCount": 0, - "lastMsgTime": 1670263199.353203, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5UU0EkDg==": { - "display_string": [ - "\ue063PainlessVe" - ], - "profiles": [], - "name": "\ue063PainlessVe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-03 12:52:39", - "registerOn": 1670263274.3376331, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263274.3376338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670350232.1731644, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670350393.8888426, - "lastIP": "dvvcxvdyvbzm", - "deviceUUID": "641a2f073b1e85a22e7456f463b890e78f4be8a7" - }, - "pb-IF4dUxRaIw==": { - "display_string": [ - "\ue063Aaryan9957" - ], - "profiles": [], - "name": "\ue063Aaryan9957", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-10 19:30:59", - "registerOn": 1670263303.484445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263303.484446, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263303.4844553, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670263980.0883124, - "lastIP": "a\u007fk~~`aaa~{`", - "deviceUUID": "d538bbbf3455de4ca22b99f63aa7f00071fa8af6", - "cMsgCount": 0, - "lastMsgTime": 1670264525.1719406, - "lastMsg": "f", - "cSameMsg": 0 - }, - "pb-IF4vU00bAA==": { - "display_string": [ - "\ue020Joydeep98773" - ], - "profiles": [], - "name": "\ue020Joydeep98773", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 19:00:06", - "registerOn": 1670263447.944205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263447.9442055, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263447.944215, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670263447.944216, - "lastIP": "a\u007fn~}hcaid\u007fvb\u007fm", - "deviceUUID": "541cbf0896129baedcdf457c87c03c5d21bd7706" - }, - "pb-IF5TU24NKA==": { - "display_string": [ - "\ue063RichLegacy", - "\ue063ProGamer", - "\ue030PC591402" - ], - "profiles": [], - "name": "\ue063ProGamer", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-12 13:52:43", - "registerOn": 1670263647.0112047, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263647.0112054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336107.3554645, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336107.355466, - "lastIP": "dvvcyvaxn~~a`", - "deviceUUID": "aff7875dd52a7119aaff0c2e491b02634cbd4606", - "cMsgCount": 0, - "lastMsgTime": 1670336208.2433898, - "lastMsg": "sry", - "cSameMsg": 0 - }, - "pb-IF4WUhkcNA==": { - "display_string": [ - "\ue020TorpidSoda28" - ], - "profiles": [], - "name": "\ue020TorpidSoda28", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-18 00:43:48", - "registerOn": 1670263664.0475185, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263664.0475194, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263664.047527, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670267352.9067807, - "lastIP": "a\u007fn~~aealfajb}", - "deviceUUID": "\u0015RTSPLX\u000eQS@V\fRP\u0010\u0003\\PYFWYPYDW" - }, - "pb-IF4OU2xZMQ==": { - "display_string": [ - "\ue030Android61875750" - ], - "profiles": [], - "name": "\ue030Android61875750", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 19:26:31", - "registerOn": 1670264228.566189, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670264228.5661895, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670264228.5661979, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670264228.5661986, - "lastIP": "a\u007fk~}kcaada`h", - "deviceUUID": "\u0015U\t" - }, - "pb-IF4gU0wEDw==": { - "display_string": [ - "\ue020FlyingBrainiac12578" - ], - "profiles": [], - "name": "\ue020FlyingBrainiac12578", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 10:05:37", - "registerOn": 1670264955.4655886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670264955.465589, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670264955.465598, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670264955.4655995, - "lastIP": "dvvcxvb}n~v", - "deviceUUID": "d2efd8aacde477a9262f678f5433c27437ffc6bb" - }, - "pb-IF5QU1JaDQ==": { - "display_string": [ - "\ue063Principlej" - ], - "profiles": [], - "name": "\ue063Principlej", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 09:37:42", - "registerOn": 1670265430.1539268, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670265430.1539273, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670265430.1539366, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670265430.1539378, - "lastIP": "azo~{`~~adajbx", - "deviceUUID": "47fb79173121537a33fbe47ef8ad293c0ad3c1b5" - }, - "pb-IF4SUxIFMA==": { - "display_string": [ - "\ue030Android60235119" - ], - "profiles": [], - "name": "\ue030Android60235119", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-04 15:08:40", - "registerOn": 1670266023.2819886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670266023.281989, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670266023.2819977, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670266023.2819986, - "lastIP": "b\u007fk~~adaafaie}", - "deviceUUID": "406df2ab74f0ff998dcabeaba63bf128d7ccef5d" - }, - "pb-IF4AU00uAg==": { - "display_string": [ - "\ue063Jeffin" - ], - "profiles": [], - "name": "\ue063Jeffin", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 11:08:58", - "registerOn": 1670266229.7237597, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670266229.7237601, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670266229.7237673, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670266229.723768, - "lastIP": "bxvf~vcvva{", - "deviceUUID": "0150328aec7a69913cfe30dac447e803a9800838" - }, - "pb-IF4AU2s9Uw==": { - "display_string": [ - "\ue063Pretentio2" - ], - "profiles": [], - "name": "\ue063Pretentio2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-08 12:19:59", - "registerOn": 1670266540.9127097, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670266540.9127102, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670266540.9127188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670266540.91272, - "lastIP": "dvvcxvb|j~}ie", - "deviceUUID": "d475ea93c04557889768bc057af5319dc6bca105", - "cMsgCount": 0, - "lastMsgTime": 1670266929.3332627, - "lastMsg": "sorry ", - "cSameMsg": 0 - }, - "pb-IF5VUhQgPA==": { - "display_string": [ - "\ue020Nithya1357" - ], - "profiles": [], - "name": "\ue020Nithya1357", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-10 22:18:45", - "registerOn": 1670266809.5008829, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670266809.5008838, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347305.5816493, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670347305.5816507, - "lastIP": "dvvb\u007fn~~kdaiby", - "deviceUUID": "0f2c20877efc3588b07f2388906a504a20a4f7d0" - }, - "pb-IF4-V3IdPA==": { - "display_string": [ - "\ue020CharredFlyer12772" - ], - "profiles": [], - "name": "\ue020CharredFlyer12772", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-17 15:53:11", - "registerOn": 1670267294.4895544, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670267294.489555, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670267294.489564, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670267298.693045, - "lastIP": "dvvc|vb|o~{l", - "deviceUUID": "fb8f448e5f6c9142170c0434c30e9d02d2ea4a57" - }, - "pb-IF42U0VSCA==": { - "display_string": [ - "\ue020Bulletproofdon" - ], - "profiles": [], - "name": "\ue020Bulletproofdon", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 22:05:23", - "registerOn": 1670267698.672845, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670267698.6728451, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268220.3769019, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268220.3769035, - "lastIP": "azo~|k~w`~{j", - "deviceUUID": "d5067234b5565092274a259048f39297ac485197", - "cMsgCount": 1, - "lastMsgTime": 1670268749.7117054, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4TUkkYBw==": { - "display_string": [ - "\ue063Mushroom" - ], - "profiles": [], - "name": "\ue063Mushroom", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-18 23:21:10", - "registerOn": 1670267741.857844, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670267741.8578448, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268210.3498394, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268210.3498406, - "lastIP": "eakhajc~va~i", - "deviceUUID": "394fac9d5122b649ccdb9ba4d6c864f03088854c", - "cMsgCount": 1, - "lastMsgTime": 1670267901.2283986, - "lastMsg": "mate", - "cSameMsg": 0 - }, - "pb-IF4sU00vAg==": { - "display_string": [ - "\ue063NasalDiplo", - "\ue030Android53077044" - ], - "profiles": [], - "name": "\ue063NasalDiplo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 19:56:58", - "registerOn": 1670267982.6740432, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670267982.6740434, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670267982.6740515, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670267982.6740527, - "lastIP": "a\u007fn~~aeai~ya", - "deviceUUID": "0064e951148266470c1c3002ace73185d77510f8" - }, - "pb-IF42U3YILQ==": { - "display_string": [ - "\ue063ColderFore" - ], - "profiles": [], - "name": "\ue063ColderFore", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-22 08:38:00", - "registerOn": 1670268235.7617621, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670268235.7617626, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268235.7617717, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268235.7617729, - "lastIP": "avh~~`gaoeakc", - "deviceUUID": "6aa1346e481304a4d7fba94c90f53e1e93b22d2e", - "cMsgCount": 0, - "lastMsgTime": 1670268244.2990446, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4IUmhYLw==": { - "display_string": [ - "\ue030Android55528459" - ], - "profiles": [], - "name": "\ue030Android55528459", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-23 15:19:38", - "registerOn": 1670268669.2764938, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670268669.2764945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268669.2765048, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268669.276506, - "lastIP": "a\u007fn~}iaaiazva\u007f", - "deviceUUID": "\u0015QXYSE\u0003_W\u0004\u0012\u0002\fUW\u0016V\\UPEX\\YYLX", - "cMsgCount": 0, - "lastMsgTime": 1670268673.6153338, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4jU08vMQ==": { - "display_string": [ - "\ue063Serverr936" - ], - "profiles": [], - "name": "\ue063Serverr936", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 10:12:08", - "registerOn": 1670268813.0861893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670268813.0861897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268813.0861993, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268813.0862, - "lastIP": "azo~{i~}mdaah", - "deviceUUID": "548cce6a079bbda740d03793a1d78e999a4c1fd4" - }, - "pb-IF5VU1ItNg==": { - "display_string": [ - "\ue063SaddestAcr" - ], - "profiles": [], - "name": "\ue063SaddestAcr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 01:03:33", - "registerOn": 1670268824.8145304, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670268824.814531, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268824.8145406, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268824.8145416, - "lastIP": "a\u007fk~~leajbwva~h", - "deviceUUID": "80a5927b6c74f9a1f7c8cd16199e41ed94628989" - }, - "pb-IF4HU1AoFw==": { - "display_string": [ - "\ue030Android63992316" - ], - "profiles": [], - "name": "\ue030Android63992316", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 00:14:48", - "registerOn": 1670268999.7515473, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670268999.7515478, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268999.751557, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268999.7515578, - "lastIP": "a}j~~naanfaia{", - "deviceUUID": "5a3b221e698df0e50686cf61a4fd6c361517dd6c" - }, - "pb-IF4iVHRaXA==": { - "display_string": [ - "\ue020CapDevesh" - ], - "profiles": [], - "name": "\ue020CapDevesh", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-16 18:13:04", - "registerOn": 1670269000.4936824, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670269000.4936829, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269000.493692, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670272184.3953347, - "lastIP": "b}k~~`gaafaie~", - "deviceUUID": "70569d57efce9750d7464728562325edcf1203c6" - }, - "pb-IF4yVWpeMg==": { - "display_string": [ - "\ue020Meharsh1306", - "\ue030Android61717776" - ], - "profiles": [], - "name": "\ue030Android61717776", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-12 19:36:27", - "registerOn": 1670269060.6663125, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670269060.666313, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269060.6663203, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670269060.666321, - "lastIP": "b}k~~`iaidakg", - "deviceUUID": "9fcea12656a90d1fa47701bd113e3f0df1e4bb1e" - }, - "pb-IF4uMkky": { - "display_string": [ - "\ue020\ud808\udc31\uaab3C\u0574\u027e\u0282\u04bd\u056a\ud808\udc31\uaab3", - "\ue020OldenClub66", - "\ue063cursed", - "\ue030Android44803558" - ], - "profiles": [], - "name": "\ue063cursed", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-30 19:35:29", - "registerOn": 1670269534.705363, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670269534.7053635, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269534.7053723, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670269534.7053735, - "lastIP": "avk~}kbakfajdy", - "deviceUUID": "0ad1d379f9a2f3005f16445ceeb35bd587fe3f75" - }, - "pb-IF4-U0c8LA==": { - "display_string": [ - "\ue063ProsaicCre" - ], - "profiles": [], - "name": "\ue063ProsaicCre", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 18:51:38", - "registerOn": 1670269585.6780055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670269585.678006, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269585.678013, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670269607.3032615, - "lastIP": "dvvcyvb}j~}h`", - "deviceUUID": "e97b3a5e7828bf75796dc4f8a4b323e5c5645e62" - }, - "pb-IF4BV1ZfCQ==": { - "display_string": [ - "\ue020\uff22\uff21\uff39\uff2d\uff21\uff38", - "\ue030Android42815279" - ], - "profiles": [], - "name": "\ue020\uff22\uff21\uff39\uff2d\uff21\uff38", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-17 05:09:59", - "registerOn": 1670270264.9288244, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270264.928825, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670270264.9288337, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670270264.9288347, - "lastIP": "a\u007fn~~adakiajaw", - "deviceUUID": "757a2ad0f26b271051938389433213762d24ed76", - "cMsgCount": 0, - "lastMsgTime": 1670270277.9486527, - "lastMsg": "/punch me", - "cSameMsg": 0 - }, - "pb-IF4xU0paHA==": { - "display_string": [ - "\ue020ExpedientApproach60" - ], - "profiles": [], - "name": "\ue063Expedient5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-31 07:19:50", - "registerOn": 1670270532.2592604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270532.259261, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670270532.2592697, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670270532.2592707, - "lastIP": "dzvb}n~|m~~ic", - "deviceUUID": "473879360e0d6d066f88b91464cda01f6c376535" - }, - "pb-IF4DUmYmFg==": { - "display_string": [ - "\ue063Spaz1", - "\ue063TheSpaz", - "\ue030Android55930680", - "\ue030Android62890286", - "\ue030Android63917572" - ], - "profiles": [], - "name": "\ue063Spaz1", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-14 06:23:56", - "registerOn": 1670270557.18025, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270557.1802506, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670270557.1802583, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670270557.180259, - "lastIP": "i~vb{j~~`hanb", - "deviceUUID": "6510374edf57e52981ce2be266308e2c1e6b6d82" - }, - "pb-IF5SVXIHMA==": { - "display_string": [ - "\ue063Arnob007" - ], - "profiles": [], - "name": "\ue063Arnob007", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-31 21:17:47", - "registerOn": 1670270808.0273073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270808.0273082, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670356204.201779, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670359374.1001542, - "lastIP": "a\u007fk~~maai`{vaxl", - "deviceUUID": "2d35579a15f649e90d3651997909672e0d9bfd45", - "cMsgCount": 1, - "lastMsgTime": 1670359802.0892978, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4iU0lSFQ==": { - "display_string": [ - "\ue063Enigmatic7" - ], - "profiles": [], - "name": "\ue063Enigmatic7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-28 00:09:51", - "registerOn": 1670270832.1114368, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270832.1114376, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343813.4026566, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343813.4026577, - "lastIP": "a\u007fn~~aeaoca`h", - "deviceUUID": "cd3fb6202f2623d5fecbad02b7d5df2dac3f51e5" - }, - "pb-IF4-B20v": { - "display_string": [ - "\ue063sena3456" - ], - "profiles": [], - "name": "\ue063sena3456", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-27 11:13:53", - "registerOn": 1670270966.3389475, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270966.3389482, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300631.9559453, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300631.9559467, - "lastIP": "b}k~~`gaia|vav`", - "deviceUUID": "2d44fc4828e6e7583a9f71bebedad64c3bd489b1" - }, - "pb-JiNJARFeXEVGX1hEFE5XXFFDE0lZT1VD": { - "display_string": [ - "\ue020pikachu07001", - "\ue063HageMaaroo", - "\ue030Android15271882" - ], - "profiles": [], - "name": "\ue063HageMaaroo", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-13 11:15:37", - "registerOn": 1670271177.389131, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670271177.3891318, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271177.3891408, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670271177.3891416, - "lastIP": "dvvcxvavm~~i", - "deviceUUID": "32b5fd2662105ff9268651e6ca9f557e0d9803a0", - "cMsgCount": 0, - "lastMsgTime": 1670274175.4552028, - "lastMsg": "yeaaahhh", - "cSameMsg": 0 - }, - "pb-IF4AU2ETLQ==": { - "display_string": [ - "\ue020CongenialLife49", - "\ue030Android61199991" - ], - "profiles": [], - "name": "\ue020CongenialLife49", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-04 21:57:50", - "registerOn": 1670271397.1699944, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670271413.5615344, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271397.1700022, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670271405.517372, - "lastIP": "a\u007fn~~adaii}va\u007fh", - "deviceUUID": "f8c58a3902ed3e2e22976546fea746e4e5fd22cd" - }, - "pb-IF4qU0ocPQ==": { - "display_string": [ - "\ue020SalutaryEnthusiasm23" - ], - "profiles": [], - "name": "\ue020SalutaryEnthusiasm23", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 17:38:04", - "registerOn": 1670271734.3235207, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670271734.3235214, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271734.32353, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670271734.3235307, - "lastIP": "azo~|j~|n~~j", - "deviceUUID": "361e6edad194d9dcd5e70f8b83ad30b89a366b20" - }, - "pb-IF4cVW5cXA==": { - "display_string": [ - "\ue063Heisenber3" - ], - "profiles": [], - "name": "\ue063Heisenber3", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-12 19:01:24", - "registerOn": 1670271861.5134966, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670271861.513497, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271861.5135052, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670271861.513506, - "lastIP": "azo~|l~va~~kg", - "deviceUUID": "c6fd0a31b3e3ca258cb8d6cacdbaba417c57a045" - }, - "pb-IF5WU3oCNg==": { - "display_string": [ - "\ue063InorganicB", - "\ue030Android63010048" - ], - "profiles": [], - "name": "\ue063InorganicB", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-31 12:20:56", - "registerOn": 1670271863.5425, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670271863.5425003, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271863.542507, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670271863.542508, - "lastIP": "dxvbvvayn~~ja", - "deviceUUID": "e0f00d931615664971144af43f9ea26cd3ad9f8f" - }, - "pb-IF4eU1BfJA==": { - "display_string": [ - "\ue063HypnoticTo" - ], - "profiles": [], - "name": "\ue063HypnoticTo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 02:50:14", - "registerOn": 1670271880.6262717, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670271880.6262722, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271880.6262815, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670271880.6262822, - "lastIP": "azj~zo~~lhajcx", - "deviceUUID": "fca8f09b2298675317559d875b05d2d87bcd1f2f" - }, - "pb-IF43U3YTJw==": { - "display_string": [ - "\ue020DisreputableExport28" - ], - "profiles": [], - "name": "\ue020DisreputableExport28", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-22 23:00:10", - "registerOn": 1670272340.3162413, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670272340.3162415, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340215.5294034, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340215.5294154, - "lastIP": "azo~zi~~adaic}", - "deviceUUID": "a620556129944df7009078d636b07f9c0eda6ec0" - }, - "pb-IF5QU1I8Fw==": { - "display_string": [ - "\ue063zashikibut" - ], - "profiles": [], - "name": "\ue063zashikibut", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 17:22:05", - "registerOn": 1670273234.816197, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670273234.8161976, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670273234.8162081, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670273234.816209, - "lastIP": "awh~~aaajdvva|n", - "deviceUUID": "9ec0513e2640ea8cff6553fac2ab5f94d261ef08" - }, - "pb-IF4yVWg9Jw==": { - "display_string": [ - "\ue063ReptilianL" - ], - "profiles": [], - "name": "\ue063ReptilianL", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-30 21:03:11", - "registerOn": 1670273293.094381, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670273293.0943816, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335770.7557588, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335770.7557604, - "lastIP": "dvvcyvc|vgz", - "deviceUUID": "44cfbd6d791bb8654a172eab47bc640623b2938a" - }, - "pb-IF4DJRkM": { - "display_string": [ - "\ue020VoraciousBoss5149" - ], - "profiles": [], - "name": "\ue020VoraciousBoss5149", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-06 13:39:45", - "registerOn": 1670273453.4133403, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670273453.4133413, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670273453.4133496, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670273453.4133506, - "lastIP": "aakiaoeane", - "deviceUUID": "6c6e76892584138cd876c2a61feea1366dd717e8" - }, - "pb-IF4NV3oIFA==": { - "display_string": [ - "\ue063NaNaJi", - "\ue030Android57361651", - "\ue030Android59829395", - "\ue030Android47779769" - ], - "profiles": [], - "name": "\ue030Android57361651", - "isBan": false, - "isMuted": false, - "accountAge": "2019-01-26 16:32:52", - "registerOn": 1670274069.0163372, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670274069.0163374, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670274069.016347, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670275399.8444836, - "lastIP": "aakhaadaoc", - "deviceUUID": "b402e94a63cebef2cfa290e8f76c5db9d1c96d2c" - }, - "pb-IF4nUkUzNw==": { - "display_string": [ - "\ue030Android57918367" - ], - "profiles": [], - "name": "\ue030Android57918367", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-01 00:57:54", - "registerOn": 1670280021.9998217, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670280021.9998221, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670280021.9998474, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670282338.2371898, - "lastIP": "fvvavl~~i`aof", - "deviceUUID": "\u0015\u0007^P\u0005M\u0007\f" - }, - "pb-IF4JUlUTBg==": { - "display_string": [ - "\ue063PlacidVern", - "\ue030Android58791013" - ], - "profiles": [], - "name": "\ue030Android58791013", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-07 03:59:42", - "registerOn": 1670282129.8213804, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670282129.8213809, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670283282.4488156, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670282129.8213902, - "lastIP": "ay`~}jgaahaib\u007f", - "deviceUUID": "2a28a2b283612858a27b2e3d3ffc69e227689b54", - "cMsgCount": 0, - "lastMsgTime": 1670283282.4487562, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4nUklcBA==": { - "display_string": [ - "\ue030iiRcade3504" - ], - "profiles": [], - "name": "\ue030iiRcade3504", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-15 00:10:18", - "registerOn": 1670282695.2957687, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670282695.29577, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670282695.2957776, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670282695.2957783, - "lastIP": "fyvbzvb{i~}je", - "deviceUUID": "\u0015\u0004ZRQE\u0005]Y\u0007G\u0003\u000e\u0004XB\u0005_SXFPYWYL" - }, - "pb-IF4jU0gA": { - "display_string": [ - "\ue063killlergam", - "\ue030Android63743342" - ], - "profiles": [], - "name": "\ue063killlergam", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-06 11:22:14", - "registerOn": 1670283366.7695243, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670283366.7695248, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670283366.7695327, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670283366.7695334, - "lastIP": "azo~|k~~n~}hc", - "deviceUUID": "76676109d7e03a3c37c8a1409a3f6943262cb530" - }, - "pb-IF4nU1AiKA==": { - "display_string": [ - "\ue063UpstreamLo" - ], - "profiles": [], - "name": "\ue063UpstreamLo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 04:54:31", - "registerOn": 1670284384.132504, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670284384.1325045, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670284384.132514, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670284384.1325154, - "lastIP": "awo~~`daifyva|h", - "deviceUUID": "c13b37c647b994e72617502237f07398fb4f63f3" - }, - "pb-IF4oUksoHw==": { - "display_string": [ - "\ue063RYK999" - ], - "profiles": [], - "name": "\ue063RYK999", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-23 21:16:22", - "registerOn": 1670284599.4241025, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670284599.4241035, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670284599.4241123, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670284599.4241135, - "lastIP": "azo~zh~~k~~ki", - "deviceUUID": "be944e5eb5541db1aedddc3550d0732e5e80c4e5" - }, - "pb-IF4LU2sEPw==": { - "display_string": [ - "\ue063Daksh045", - "\ue030Android59836410" - ], - "profiles": [], - "name": "\ue063Daksh045", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-11 11:44:33", - "registerOn": 1670284804.664925, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670284804.6649258, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670284804.6649346, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670284804.6649356, - "lastIP": "dvvcyvaxvaz", - "deviceUUID": "5cdbe6407936362a2c718e103f0eb1edfeb0b017" - }, - "pb-IF4zUkQkXA==": { - "display_string": [ - "\ue063WarmerTin4", - "\ue030Android57711842" - ], - "profiles": [], - "name": "\ue063WarmerTin4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-28 06:08:01", - "registerOn": 1670286203.8002791, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670286203.8002799, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670286203.800289, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670286203.80029, - "lastIP": "a|`~|n~{n~|h", - "deviceUUID": "8c2685e46eea942a823602a6a362ca78b20f0115" - }, - "pb-IF4WUlMqNw==": { - "display_string": [ - "\ue020kolayali1979" - ], - "profiles": [], - "name": "\ue020kolayali1979", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-27 12:43:05", - "registerOn": 1670286269.0515594, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670286269.0515602, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670286269.051571, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670286269.0515716, - "lastIP": "bxvf~va|va\u007fl", - "deviceUUID": "f8bd824b9b49b7597083a9319c0f99a7de07ae8a" - }, - "pb-IF4UU00fNg==": { - "display_string": [ - "\ue020FormerExodus41" - ], - "profiles": [], - "name": "\ue020FormerExodus41", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 18:53:17", - "registerOn": 1670289308.018164, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670289308.0181649, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670289308.0181746, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670289308.0181763, - "lastIP": "azo~{n~~niamd", - "deviceUUID": "daa56210cabf9e5c167b5779935cee0495760a0f" - }, - "pb-IF5XVBUCFA==": { - "display_string": [ - "\ue020TriesomeComplacency" - ], - "profiles": [], - "name": "\ue020TriesomeComplacency", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-01 20:21:26", - "registerOn": 1670291352.5831916, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670291352.583192, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670291352.5832012, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670291352.5832021, - "lastIP": "a\u007fn~~agaiavvb~j", - "deviceUUID": "474d8d6b2ca1f0ce01b00b7e7129fc6bbb749c2c" - }, - "pb-IF4sVGohKw==": { - "display_string": [ - "\ue020RelativeCompass6" - ], - "profiles": [], - "name": "\ue020RelativeCompass6", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-12 21:06:32", - "registerOn": 1670292145.3115203, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670292145.3115208, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292145.3115304, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292145.3115313, - "lastIP": "a\u007fk~~h~}jeaie\u007f", - "deviceUUID": "0ee7a8711bab10bd6adc0d46aa008c621ba84083" - }, - "pb-IF4TAXlc": { - "display_string": [ - "\ue063Savage2098" - ], - "profiles": [], - "name": "\ue063Savage2098", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-27 21:09:25", - "registerOn": 1670292356.2725449, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670292356.2725453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292356.2725542, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292356.2725554, - "lastIP": "bxvf|vb}m~~me", - "deviceUUID": "35e37beb741abe75c098c0b67ab3ae85434adf7e" - }, - "pb-IF41U04SEA==": { - "display_string": [ - "\ue020UndisguisedManiac20" - ], - "profiles": [], - "name": "\ue020UndisguisedManiac20", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 15:56:33", - "registerOn": 1670292408.4293582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670292408.4293592, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292408.4293668, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292408.4293678, - "lastIP": "azo~{l~~abaicy", - "deviceUUID": "8f62a52e479d9eb1e6031223eaf4df2235316f2e" - }, - "pb-IF5QUhgZ": { - "display_string": [ - "\ue063MOSSIMOCIR", - "\ue030Android16808764" - ], - "profiles": [], - "name": "\ue063MOSSIMOCIR", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-17 16:29:24", - "registerOn": 1670294858.633466, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670294858.6334667, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670294858.6334772, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670294858.6334777, - "lastIP": "a~i~vj~xm~\u007f", - "deviceUUID": "d56940cab4aefde1afb2d8c25463f0965696e246" - }, - "pb-IF4WVUZfPA==": { - "display_string": [ - "\ue030Android51495626" - ], - "profiles": [], - "name": "\ue030Android51495626", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-18 20:29:17", - "registerOn": 1670295209.747189, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295209.7471898, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295209.7471986, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295209.7471995, - "lastIP": "azo~{j~}hhajcx", - "deviceUUID": "882b5976b4330cf9b82b621eb4c2a20f66484cfb" - }, - "pb-IF4RU2U6Cg==": { - "display_string": [ - "\ue063WesternSpo", - "\ue030Android63855477" - ], - "profiles": [], - "name": "\ue063WesternSpo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-15 10:56:30", - "registerOn": 1670295258.8824947, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295258.8824954, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295258.8825057, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295258.8825066, - "lastIP": "dvvc}vb|i~|l", - "deviceUUID": "36669770d666ce59b6e92f0ded9d50a63ab9c95f" - }, - "pb-IF40U0oIEw==": { - "display_string": [ - "\ue020UnmodifiedApplause51" - ], - "profiles": [], - "name": "\ue020UnmodifiedApplause51", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 00:34:32", - "registerOn": 1670295468.693306, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295468.6933062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295468.6933136, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295468.6933143, - "lastIP": "b\u007fh~~iiaig{vfx", - "deviceUUID": "634fa20f29aff47c3c475802d032ae5127db56a1" - }, - "pb-IF4dU0QGEw==": { - "display_string": [ - "\ue030Linux53436" - ], - "profiles": [], - "name": "\ue030Linux53436", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-01 23:48:01", - "registerOn": 1670295625.204024, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295625.2040246, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295625.2040324, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670299178.7410796, - "lastIP": "b\u007fj~zh~zj~~md", - "deviceUUID": "\u0018X\u000bT\u0003ET\u000eYLE\u0004XXL@YU" - }, - "pb-IF4oUkQSLg==": { - "display_string": [ - "\ue063HouseholdW" - ], - "profiles": [], - "name": "\ue063HouseholdW", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-30 13:58:07", - "registerOn": 1670295718.525807, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295718.5258074, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295718.5258148, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295718.5258155, - "lastIP": "azo~{n~y`~~ad", - "deviceUUID": "c51646305eabfb6264c880de4fffdea10e84b772" - }, - "pb-IF5XLHle": { - "display_string": [ - "\ue063LightJabbe" - ], - "profiles": [], - "name": "\ue063LightJabbe", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-04 11:37:59", - "registerOn": 1670295766.6989522, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295766.6989527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295766.6989617, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295766.6989625, - "lastIP": "dvvc{vaz`~~ib", - "deviceUUID": "e90db5e0bc1a1503eda6a9b84c3a9cc67f8a4475" - }, - "pb-IF4-U08PBw==": { - "display_string": [ - "\ue063Freshwate9" - ], - "profiles": [], - "name": "\ue063Freshwate9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 11:08:53", - "registerOn": 1670295999.8783853, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295999.8783863, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295999.8783958, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295999.8783972, - "lastIP": "a~n~y`~~i`aia", - "deviceUUID": "09cc94f10ef01fd14d8a30a4677f99725e1380b6" - }, - "pb-IF5TU1A9Pw==": { - "display_string": [ - "\ue020jonhjonh55ph" - ], - "profiles": [], - "name": "\ue020jonhjonh55ph", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 17:51:50", - "registerOn": 1670296004.565949, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670296004.5659494, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296004.5659583, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296004.5659592, - "lastIP": "b\u007fa~|m~~ngaie~", - "deviceUUID": "b8137cd2b5757b683a3dcbfbbb603f2416e3be55" - }, - "pb-IF4CU0Y5Ew==": { - "display_string": [ - "\ue063RetailMidn" - ], - "profiles": [], - "name": "\ue063RetailMidn", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 12:51:18", - "registerOn": 1670296306.7613952, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670296306.7613957, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296306.761405, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296306.761406, - "lastIP": "a~h~}jgai~z`", - "deviceUUID": "b9504aedda301439ceb7a6112a00648fc7da6bf3" - }, - "pb-IF4eU3gDFw==": { - "display_string": [ - "\ue063Courageou5" - ], - "profiles": [], - "name": "\ue063Courageou5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-29 19:37:24", - "registerOn": 1670296746.3660696, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670296746.3660698, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296746.3660772, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296746.3660781, - "lastIP": "azo~{a~~lcaie", - "deviceUUID": "7d09e0d3a4d367c9ed7375eaf3f096342f007c4d" - }, - "pb-IF4FU01cHw==": { - "display_string": [ - "\ue020\u1d00\u1d0d\u1d00\u02747", - "\ue030Android63880249", - "\ue030Android63880268", - "\ue030Android63894496", - "\ue030Android63880281" - ], - "profiles": [], - "name": "\ue020\u1d00\u1d0d\u1d00\u02747", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 17:46:51", - "registerOn": 1670296803.6004646, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670296803.600465, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296803.600474, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670297006.0368886, - "lastIP": "a|o~vo~~jbai`x", - "deviceUUID": "3a4f95ad4ef041aeb018074e8dd270ef2e74a3d5", - "cMsgCount": 1, - "lastMsgTime": 1670296877.657231, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4-VE0nPA==": { - "display_string": [ - "\ue063HEAVENRIDE" - ], - "profiles": [], - "name": "\ue063HEAVENRIDE", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-04 11:44:51", - "registerOn": 1670297022.3904085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670297022.3904092, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670297022.3904185, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670297040.1599576, - "lastIP": "b\u007fj~~o`aj`xva~i", - "deviceUUID": "146ce445a35400edacd772cc56e8cd9b438ab742" - }, - "pb-IF49U08ZDw==": { - "display_string": [ - "\ue063nrzimaffh" - ], - "profiles": [], - "name": "\ue063nrzimaffh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 08:41:58", - "registerOn": 1670297659.692009, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670297659.6920092, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670297659.6920168, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670297659.6920183, - "lastIP": "awk~~oaaibzvazn", - "deviceUUID": "841b8ca8606b1d8e38a5c4eea6c76033e375e414" - }, - "pb-IF4HUlMxVw==": { - "display_string": [ - "\ue030Android59278796" - ], - "profiles": [], - "name": "\ue030Android59278796", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-29 06:20:38", - "registerOn": 1670297915.598618, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670297915.5986185, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670297915.5986273, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670297915.5986283, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF5UU1EBLw==": { - "display_string": [ - "\ue063VelvetyOff", - "\ue030Android59165348" - ], - "profiles": [], - "name": "\ue063VelvetyOff", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 12:31:22", - "registerOn": 1670298211.9893699, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298211.9893703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298211.9893782, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298211.9893794, - "lastIP": "a~n~}hfak`alc", - "deviceUUID": "6a9d400a49e9d8a6d1ce55b158d778b6f372480d" - }, - "pb-IF5RU1ESNQ==": { - "display_string": [ - "\ue063ThankfulRh" - ], - "profiles": [], - "name": "\ue063ThankfulRh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 14:05:27", - "registerOn": 1670298335.113274, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298335.1132746, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298335.1132834, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298335.1132843, - "lastIP": "hxvb{k~zj~~lh", - "deviceUUID": "85a4fd0dfc0aea505819231cb74a3c574a1e5164" - }, - "pb-IF4HU04CUA==": { - "display_string": [ - "\ue030Android63930725" - ], - "profiles": [], - "name": "\ue030Android63930725", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 00:28:46", - "registerOn": 1670298396.289418, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298396.2894185, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298396.2894263, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298396.2894275, - "lastIP": "a\u007fn~}hfaifwvavl", - "deviceUUID": "511232bb8342effbc2ae4ee2b06d7650ca16e1f3" - }, - "pb-IF4BU0EsIg==": { - "display_string": [ - "\ue030Android63294581" - ], - "profiles": [], - "name": "\ue030Android63294581", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 16:51:32", - "registerOn": 1670298412.3413033, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298412.3413038, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298412.3413136, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298412.3413146, - "lastIP": "a|o~vo~y`~~kb", - "deviceUUID": "804cfefd19245f772b73fe8d48fc0bd9df48fbb7" - }, - "pb-IF4xU0QYPw==": { - "display_string": [ - "\ue063VelourLigh" - ], - "profiles": [], - "name": "\ue063VelourLigh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 18:46:32", - "registerOn": 1670298477.0726714, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298477.072672, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298477.0726805, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298477.0726814, - "lastIP": "a\u007fn~}hcaibwvb\u007fn", - "deviceUUID": "250c2c30fb4d97233507f7f6862bc2212f8307f4" - }, - "pb-IF4cU0NdDw==": { - "display_string": [ - "\ue063ALAMINMIZI" - ], - "profiles": [], - "name": "\ue063ALAMINMIZI", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-20 16:51:03", - "registerOn": 1670298915.1077976, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298915.107798, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298915.107805, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298915.1078055, - "lastIP": "a\u007fk~~khajda`f", - "deviceUUID": "87df283df9a52ee9e0667773c8ef609765b8afd2" - }, - "pb-IF4pU0c-NQ==": { - "display_string": [ - "\ue020TraditionalNarrator9" - ], - "profiles": [], - "name": "\ue020TraditionalNarrator9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-13 13:45:24", - "registerOn": 1670299032.5436296, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299032.5436304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299032.5436392, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299032.5436404, - "lastIP": "azo~{i~}mdajc~", - "deviceUUID": "11b10d0cb8bd1f703dc24638b8c51bccee3ba51c" - }, - "pb-IF5UU0dfBw==": { - "display_string": [ - "\ue030Android63564565" - ], - "profiles": [], - "name": "\ue030Android63564565", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-01 21:36:31", - "registerOn": 1670299313.514224, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299313.5142243, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324268.265627, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670324268.2656286, - "lastIP": "azo~{m~~ncao", - "deviceUUID": "ad02e5da16c68b233d860e1c351e370be5a2170f" - }, - "pb-IF4WUxAIEg==": { - "display_string": [ - "\ue020IrreverentLand33", - "\ue030Android60020707" - ], - "profiles": [], - "name": "\ue020IrreverentLand33", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-26 09:34:08", - "registerOn": 1670299388.7772841, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299388.7772846, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299388.7772946, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299388.7772956, - "lastIP": "a\u007fk~~kdajbyvb|a", - "deviceUUID": "601b5c8fb825c5f8aea8196e5deb6995f43b858b" - }, - "pb-IF4wUxkNHA==": { - "display_string": [ - "\ue063DeviantSum" - ], - "profiles": [], - "name": "\ue063DeviantSum", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-30 12:13:49", - "registerOn": 1670299395.8202848, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299395.8202856, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299395.820293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299395.820294, - "lastIP": "bxveaid~vazm", - "deviceUUID": "378189d9a60c020fffc9aad3a42061517bc533a1" - }, - "pb-IF4tUmo9VQ==": { - "display_string": [ - "\ue020sunilu338" - ], - "profiles": [], - "name": "\ue020sunilu338", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-01 12:18:31", - "registerOn": 1670299431.9521782, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299431.9521792, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340250.6369264, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670340293.7752302, - "lastIP": "azo~zi~~k`ani", - "deviceUUID": "72005d1e007852357191b033dae4b9aca087c883" - }, - "pb-IF5dVUQGIQ==": { - "display_string": [ - "\ue020racetracker7738" - ], - "profiles": [], - "name": "\ue020racetracker7738", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-29 13:47:34", - "registerOn": 1670299747.05083, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299747.0508301, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299747.0508385, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299747.0508392, - "lastIP": "b}k~~`daif\u007fva~`", - "deviceUUID": "e4636f0bc1a6fb8ca30c01a65dc307c0aa037eb9" - }, - "pb-IF4lU0xTVQ==": { - "display_string": [ - "\ue020RattlingKestrel49176" - ], - "profiles": [], - "name": "\ue020RattlingKestrel49176", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 15:31:59", - "registerOn": 1670299926.7603722, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299926.7603729, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299926.7603843, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299926.7603853, - "lastIP": "b}k~~`baii|va", - "deviceUUID": "df51fc71cdb276b9393a916700bd291474f87fc4", - "cMsgCount": 0, - "lastMsgTime": 1670304459.0297408, - "lastMsg": "noops", - "cSameMsg": 0 - }, - "pb-IF4QUmRTFQ==": { - "display_string": [ - "\ue020KINGTN50" - ], - "profiles": [], - "name": "\ue020KINGTN50", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-06 09:22:01", - "registerOn": 1670300081.3034122, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300081.3034127, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300081.303422, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670308964.571488, - "lastIP": "b}k~~`gaiazvb|i", - "deviceUUID": "5e5762908041164c3a97ea8f408c36ed7b6869a5", - "cMsgCount": 0, - "lastMsgTime": 1670309951.0305045, - "lastMsg": "gg", - "cSameMsg": 0 - }, - "pb-IF4qVWIpPw==": { - "display_string": [ - "\ue020WanShell8996", - "\ue030Android58269418" - ], - "profiles": [], - "name": "\ue020WanShell8996", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-14 19:38:33", - "registerOn": 1670300135.52084, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300135.5208404, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300135.5208497, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300135.5208504, - "lastIP": "azo~zi~xh~}ib", - "deviceUUID": "08dad59ccd24a1eb0e65582d5ff666ef33972cc3" - }, - "pb-IF4AVWkcHQ==": { - "display_string": [ - "\ue021Maneesh_Royal", - "\ue030Mac212342" - ], - "profiles": [], - "name": "\ue021Maneesh_Royal", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-09 09:06:26", - "registerOn": 1670300385.4284744, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300385.4284754, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300385.4284832, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300385.4284842, - "lastIP": "awj~xi~~nbaig\u007f", - "deviceUUID": "\u0019V(WW1X]YLCW+QLA%+ULLXTUL6Y+UQ@TX%UBWURSGQ^UXC" - }, - "pb-IF4NUmY5Nw==": { - "display_string": [ - "\ue063Stochasti4", - "\ue030Android55430726" - ], - "profiles": [], - "name": "\ue063Stochasti4", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-18 20:43:37", - "registerOn": 1670300454.0055792, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300454.00558, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300454.0055907, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670306037.8867946, - "lastIP": "a\u007fk~~maaihwvb|j", - "deviceUUID": "a9026bd8027c24ea79e799177c4cf6c391b7d50d", - "cMsgCount": 0, - "lastMsgTime": 1670303992.8433242, - "lastMsg": "uff nooboli", - "cSameMsg": 0 - }, - "pb-IF4LVWEDKQ==": { - "display_string": [ - "\ue020Selvapravin6667" - ], - "profiles": [], - "name": "\ue020Selvapravin6667", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-12 17:35:58", - "registerOn": 1670300843.003842, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300843.0038428, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300843.0038502, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300843.0038512, - "lastIP": "azo~{n~~h`aid}", - "deviceUUID": "\u0015\u0002[XP\u0012UZ\u0005\u0005D\u0004TP\u0002BW[TYCS\\WRB" - }, - "pb-IF4dU3gqNQ==": { - "display_string": [ - "\ue030Android62237299", - "\ue030Android63018018", - "\ue030Android63018191" - ], - "profiles": [], - "name": "\ue030Android62237299", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-30 12:29:32", - "registerOn": 1670300890.3823156, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300890.382316, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300890.3823235, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300890.3823245, - "lastIP": "a|o~vo~xa~~`c", - "deviceUUID": "24945428d4f1357961543a88a592fe91ca9fb7cf" - }, - "pb-IF4tVW0OVw==": { - "display_string": [ - "\ue063soulwalker" - ], - "profiles": [], - "name": "\ue063soulwalker", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-09 17:09:14", - "registerOn": 1670300904.1844368, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300904.1844373, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300904.184445, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670305054.317749, - "lastIP": "a\u007fn~}hfajazve|", - "deviceUUID": "ef2ed0c2718eca5308ec64835c7535ad3a982a9d" - }, - "pb-IF4gV24qCQ==": { - "display_string": [ - "\ue063ScarredLab", - "\ue030Android29025944" - ], - "profiles": [], - "name": "\ue063ScarredLab", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-24 21:36:13", - "registerOn": 1670301128.2271342, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301128.2271347, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301128.227143, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301128.2271442, - "lastIP": "azo~{o~zi~~lc", - "deviceUUID": "c7f3ebf8f9182f6ad95f1725f8341f1570999c4a" - }, - "pb-IF4eUk0vIA==": { - "display_string": [ - "\ue063DEVILLEAGE" - ], - "profiles": [], - "name": "\ue063DEVILLEAGE", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-03 13:50:10", - "registerOn": 1670301163.2939541, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301163.2939546, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301163.2939625, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301163.2939634, - "lastIP": "azj~zo~~afame", - "deviceUUID": "dac515cb6a206784eb54887549785d5a1a66d5c4" - }, - "pb-IF4cU20TMw==": { - "display_string": [ - "\ue020RamblingLemon85370" - ], - "profiles": [], - "name": "\ue020RamblingLemon85370", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 00:38:49", - "registerOn": 1670301200.2688026, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301200.2688031, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301200.2688131, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301200.268814, - "lastIP": "cxva~i~}jbaiay", - "deviceUUID": "97218163a0346a3648c5fe92383582185b7fffca" - }, - "pb-IF4oVEYEDg==": { - "display_string": [ - "\ue030Android42142043" - ], - "profiles": [], - "name": "\ue030Android42142043", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-03 20:38:48", - "registerOn": 1670301278.6123943, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301278.6123948, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301278.6124105, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301278.6124117, - "lastIP": "dvvc|vb~o~}ld", - "deviceUUID": "74948e86820d57ae17645f4d8df8ef11bd2d6cbf" - }, - "pb-IF4QUxM-Bg==": { - "display_string": [ - "\ue020DrearyPromotion20", - "\ue030Android63600088" - ], - "profiles": [], - "name": "\ue020DrearyPromotion20", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-08 17:28:43", - "registerOn": 1670301735.20969, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301735.2096906, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301735.2096994, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301735.2097003, - "lastIP": "azo~{o~}va{`", - "deviceUUID": "d253caf7ca78ab7fa2f2b3e848739a64b02d5447" - }, - "pb-JiNJARBYUkpJWFhFEEFRVlFAGUJWTlhG": { - "display_string": [ - "\ue020sumonthedon", - "\ue030Android14301911" - ], - "profiles": [], - "name": "\ue020sumonthedon", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-11 11:57:52", - "registerOn": 1670301743.2972598, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301743.2972603, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301743.2972686, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301743.2972696, - "lastIP": "dxvbvvaym~~nd", - "deviceUUID": "aef9ee976dd9b52c5a5203d09b6a42bc2b60ced7" - }, - "pb-IF4xU3YvAw==": { - "display_string": [ - "\ue063BYMRSTRIPE" - ], - "profiles": [], - "name": "\ue063BYMRSTRIPE", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 16:08:03", - "registerOn": 1670301778.694383, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301778.6943836, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301778.6943939, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301778.6943946, - "lastIP": "a|n~~mhamaaicx", - "deviceUUID": "58ce08b6bd6b07afdfee4cfeaca29b21d6773984" - }, - "pb-IF40U09YVQ==": { - "display_string": [ - "\ue063genesisarb" - ], - "profiles": [], - "name": "\ue063genesisarb", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 04:15:05", - "registerOn": 1670301892.8078194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301892.8078198, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301892.8078275, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301892.8078284, - "lastIP": "b}k~}m~yj~~h", - "deviceUUID": "588938d990d7f3f93b8dbd0293b080b791778d58" - }, - "pb-IF5TU20EMg==": { - "display_string": [ - "\ue063Symmetric9" - ], - "profiles": [], - "name": "\ue063Symmetric9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-09 18:14:52", - "registerOn": 1670301904.3045359, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301904.3045363, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301904.304547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301904.3045483, - "lastIP": "a\u007fi~x`~~hgana", - "deviceUUID": "832a236ae9245681fbacf9ac34bfee140e821682", - "cMsgCount": 0, - "lastMsgTime": 1670302422.1730607, - "lastMsg": "stfu", - "cSameMsg": 0 - }, - "pb-IF4cU0EGCQ==": { - "display_string": [ - "\ue030Android63310192" - ], - "profiles": [], - "name": "\ue030Android63310192", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-14 16:03:15", - "registerOn": 1670301987.1924949, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301987.1924953, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301987.1925037, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301987.1925046, - "lastIP": "azj~zo~}heajd\u007f", - "deviceUUID": "c3e8e82827eff72f8c4eaf6d00fa7c9cec083779" - }, - "pb-IF4QU0spDA==": { - "display_string": [ - "\ue030Android63814438" - ], - "profiles": [], - "name": "\ue030Android63814438", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 04:23:36", - "registerOn": 1670302293.6715863, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670302293.6715868, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670302293.6715944, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670302293.671595, - "lastIP": "a~k~}iaaicyvgz", - "deviceUUID": "\u0015U\u000b" - }, - "pb-IF5cUlYRVg==": { - "display_string": [ - "\ue030PC437906" - ], - "profiles": [], - "name": "\ue030PC437906", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-03 12:56:57", - "registerOn": 1670303444.7722914, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670303444.7722921, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670303444.7723005, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670303444.7723017, - "lastIP": "axm~~haai`zva|o", - "deviceUUID": "4499a7bc6c46503367b6b970ea2fd32929853488" - }, - "pb-IF4IVU9bLA==": { - "display_string": [ - "\ue063QuackingC2" - ], - "profiles": [], - "name": "\ue063QuackingC2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-06 20:56:51", - "registerOn": 1670304194.5509522, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670304194.5509527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318553.9322767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318553.9322789, - "lastIP": "a\u007fn~~acajdvvb~a", - "deviceUUID": "42235a42b0eb397344bff7f04fc2193c69823b01" - }, - "pb-IF4RUmEvJw==": { - "display_string": [ - "\ue020GreedyMorale41" - ], - "profiles": [], - "name": "\ue020GreedyMorale41", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-18 20:11:24", - "registerOn": 1670304387.5745735, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670304387.5745742, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670304387.5745826, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670304387.5745835, - "lastIP": "azo~zi~~i`aifz", - "deviceUUID": "079a5d17869e30a5bf6185ad645bda2f3dc923b2" - }, - "pb-IF4hU2oFDg==": { - "display_string": [ - "\ue063Sabarishku", - "\ue030Android61660888" - ], - "profiles": [], - "name": "\ue063Sabarishku", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-09 12:35:31", - "registerOn": 1670304394.6752644, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670304394.6752646, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330330.6414428, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330330.6414442, - "lastIP": "b}k~~oha`dajbw", - "deviceUUID": "48f8b234e08b43924ffabea6710a141c1641c637" - }, - "pb-IF4hVWspFw==": { - "display_string": [ - "\ue063VIPINmMAIP", - "\ue030Android48516695" - ], - "profiles": [], - "name": "\ue063VIPINmMAIP", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-26 19:37:07", - "registerOn": 1670304415.697727, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670304415.6977274, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670304547.9136066, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670304415.6977358, - "lastIP": "azo~{l~~odaie~", - "deviceUUID": "c85f53e285fe87baaf6e34227889fb2b323ec403", - "cMsgCount": 0, - "lastMsgTime": 1670304547.913538, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4nU3EhMg==": { - "display_string": [ - "\ue063NiNJAMAN12" - ], - "profiles": [], - "name": "\ue020NiNJAMAN1267", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-29 16:50:38", - "registerOn": 1670304794.0863807, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670304794.0863812, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670359854.005637, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670359854.005638, - "lastIP": "azo~{m~~hcakf", - "deviceUUID": "4b5be48aa1ad697f9af4953a9bf88fc7457bda48" - }, - "pb-IF4cU0c5Fw==": { - "display_string": [ - "\ue020EnviousIngredient43" - ], - "profiles": [], - "name": "\ue020EnviousIngredient43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 18:41:53", - "registerOn": 1670306092.398657, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670306092.3986576, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306092.398666, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670310244.6684575, - "lastIP": "dvvc{vg\u007fvazl", - "deviceUUID": "9bc22fb3a206de3d5844fd8f1b9cf611dbd448f2" - }, - "pb-IF4gMxke": { - "display_string": [ - "\ue020NaughtyFly91019", - "\ue030Android18304089" - ], - "profiles": [], - "name": "\ue020NaughtyFly91019", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-01 14:42:05", - "registerOn": 1670306300.3355408, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670306300.3355412, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306300.3355827, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306300.3355834, - "lastIP": "a|o~vo~~hbao`", - "deviceUUID": "45e0fab38307da53d605f05aef07811e5d4d5d07" - }, - "pb-IF4TU3k5Pw==": { - "display_string": [ - "\ue020RegularCensus17" - ], - "profiles": [], - "name": "\ue020RegularCensus17", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-03 20:13:26", - "registerOn": 1670306400.6369991, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670306400.6369998, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306400.63701, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306400.6370113, - "lastIP": "a}h~~`ha`fajb", - "deviceUUID": "049e993a660c8c3e1d99c717d13dbff4bd4769b0" - }, - "pb-IF4WVU9TLg==": { - "display_string": [ - "\ue020FrontPlane24", - "\ue030Android52482648" - ], - "profiles": [], - "name": "\ue020FrontPlane24", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-06 12:23:37", - "registerOn": 1670306906.515705, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670306906.5157056, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306906.5157146, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306906.5157154, - "lastIP": "a\u007fn~}heaje{vaxl", - "deviceUUID": "e76b1195c1d624aa8f49cc55ea5390708af245a0" - }, - "pb-IF4RU1ApMQ==": { - "display_string": [ - "\ue063Inconside6" - ], - "profiles": [], - "name": "\ue063Inconside6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 18:35:07", - "registerOn": 1670306948.8011086, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670306948.801109, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306948.8012843, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306948.8012853, - "lastIP": "a\u007fn~}hdaif\u007fvb}i", - "deviceUUID": "958b5b8100344c06130f157ad2b8f896b74f62f8" - }, - "pb-IF4lU00yCQ==": { - "display_string": [ - "\ue020GOJOSATURO77" - ], - "profiles": [], - "name": "\ue020GOJOSATURO77", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 09:38:51", - "registerOn": 1670307164.4858367, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307164.4858372, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342644.2542155, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670342644.2542167, - "lastIP": "a\u007fn~}ifaabam", - "deviceUUID": "fe658e85791386351b5ac17a5bc6f0e9c0c517b3" - }, - "pb-IF4oU1BZHQ==": { - "display_string": [ - "\ue030Android63993813" - ], - "profiles": [], - "name": "\ue030Android63993813", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 05:57:43", - "registerOn": 1670307406.5391788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307406.5391793, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307406.5391867, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307406.5391874, - "lastIP": "a}m~{j~~ndaaf", - "deviceUUID": "860a2dd0bf7bd0715c4f5d35daf6bfd65aa97ca9" - }, - "pb-IF4PU08NCg==": { - "display_string": [ - "\ue063BelatedDir" - ], - "profiles": [], - "name": "\ue063BelatedDir", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 19:08:59", - "registerOn": 1670307411.5568461, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307411.5568464, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307411.5568545, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670309359.9600542, - "lastIP": "dxvbvvaya~}hb", - "deviceUUID": "6602daa1802bbdbaa88c5e46ae1dab6999aacb1a" - }, - "pb-IF4cUxYIHw==": { - "display_string": [ - "\ue063AnuragRdav", - "\ue030Android60597659" - ], - "profiles": [], - "name": "\ue063AnuragRdav", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-20 16:06:53", - "registerOn": 1670307455.0994327, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307455.0994334, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307455.0994432, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307455.0994442, - "lastIP": "azo~{n~~leaif~", - "deviceUUID": "ceb430a12b5577f83ca5d1a3a8c2e6e35270db62" - }, - "pb-IF4IUhMeFg==": { - "display_string": [ - "\ue020ChargeableEmployer42", - "\ue030Android51692373" - ], - "profiles": [], - "name": "\ue020ChargeableEmployer42", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-21 14:32:50", - "registerOn": 1670307609.3040333, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307609.3040338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307609.304043, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307609.3040442, - "lastIP": "a|o~vo~vn~~oe", - "deviceUUID": "9233ca52ce0ea7918aedde69f81a50ab9d9dd4b5" - }, - "pb-IF5cU00uPA==": { - "display_string": [ - "\ue020kabilandonnn" - ], - "profiles": [], - "name": "\ue020kabilandonnn", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-05 16:19:47", - "registerOn": 1670307632.3806927, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307632.3806932, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307632.3807015, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307632.3807025, - "lastIP": "a~k~|h~~ogan", - "deviceUUID": "b4c6eb62d30bc46e039b2d74007b83598778d7ed" - }, - "pb-IF4OU08bPw==": { - "display_string": [ - "\ue063soapeater2" - ], - "profiles": [], - "name": "\ue063soapeater2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 21:47:36", - "registerOn": 1670307967.1292272, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307967.1292276, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307967.1292343, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307967.1292355, - "lastIP": "a|n~~mhakeamd", - "deviceUUID": "3261484452d68b6f502eb030867a35afddfd7bb0" - }, - "pb-IF5TUkoOHw==": { - "display_string": [ - "\ue020SriramHULK786" - ], - "profiles": [], - "name": "\ue020SriramHULK786", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-08 15:13:25", - "registerOn": 1670308377.184237, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670308377.1842375, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308377.1842446, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308377.1842456, - "lastIP": "azo~{o~~jeajc|", - "deviceUUID": "f1d8342558a186863b1b466265d7c3cf97723505" - }, - "pb-IF4oU0suEQ==": { - "display_string": [ - "\ue063UnsoldHen2" - ], - "profiles": [], - "name": "\ue063UnsoldHen2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 21:01:43", - "registerOn": 1670308443.3720107, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670308443.3720114, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308443.3720212, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308443.372022, - "lastIP": "azo~{j~}k`aje{", - "deviceUUID": "4758e969059949030ce1067862e8ffa4b064aabd" - }, - "pb-IF5TU1EaVQ==": { - "display_string": [ - "\ue063OpulentPre" - ], - "profiles": [], - "name": "\ue063OpulentPre", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:06:11", - "registerOn": 1670308695.506506, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670308695.5065064, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308695.5065153, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308695.5065162, - "lastIP": "azo~{m~~lcajbv", - "deviceUUID": "5512e4b36f90b95a9e50a0c3315343c8f4b6e066" - }, - "pb-IF4sUm0zIg==": { - "display_string": [ - "\ue020TOMCYTHAMPY" - ], - "profiles": [], - "name": "\ue020TOMCYTHAMPY", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-19 12:56:28", - "registerOn": 1670308703.735085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670308703.7350855, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308703.735095, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308703.7350957, - "lastIP": "bxvf}va\u007fh~xa", - "deviceUUID": "a5eabea99d7140a84b7ad962e4fb41e6b9710b3a" - }, - "pb-IF4nVRURUw==": { - "display_string": [ - "\ue063RanDD9322" - ], - "profiles": [], - "name": "\ue063RanDD9322", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-09 08:38:24", - "registerOn": 1670309027.1568592, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309027.1568596, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309027.1568677, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309027.1568687, - "lastIP": "cyvhzvc{vb\u007fh", - "deviceUUID": "65eeef62d88d84538f3c92c503d9328bcc24a548" - }, - "pb-IF4-U08NVQ==": { - "display_string": [ - "\ue063HolyCowMan", - "\ue030Android50424197" - ], - "profiles": [], - "name": "\ue063HolyCowMan", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 14:52:40", - "registerOn": 1670309099.4052029, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309099.4052038, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309099.4052138, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309099.4052148, - "lastIP": "awh~~aaakfaiix", - "deviceUUID": "7d1f9a6a91894be0696437fbcc1922d535d9da69" - }, - "pb-IF5VU1E5Kg==": { - "display_string": [ - "\ue030Android63956969" - ], - "profiles": [], - "name": "\ue030Android63956969", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 15:50:59", - "registerOn": 1670309217.1351027, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309217.1351035, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309217.1351132, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309217.1351142, - "lastIP": "aakhajayva\u007fo", - "deviceUUID": "63463169da33dd578888c06001bd90a71bedd337" - }, - "pb-JiNJARBdUUpEXV1AFkRVUVZHGUJdQ1NC": { - "display_string": [ - "\ue063pankajveru" - ], - "profiles": [], - "name": "\ue063pankajveru", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-24 15:07:42", - "registerOn": 1670309316.1460047, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309316.1460052, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309316.1460147, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309316.1460156, - "lastIP": "a\u007fn~}icanfaic}", - "deviceUUID": "0fa9c891a84990b8d022ff4e7315d6955e5c18e0" - }, - "pb-IF41Unk7Dw==": { - "display_string": [ - "\ue063Milenuyir", - "\ue030Android56348867" - ], - "profiles": [], - "name": "\ue063Milenuyir", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-09 11:43:13", - "registerOn": 1670309613.421994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309613.4219947, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309613.4220037, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309613.4220047, - "lastIP": "azo~{l~~adaj`|", - "deviceUUID": "14101bbfd378b392654113c405f5abe3403c1962" - }, - "pb-IF4MU09fKA==": { - "display_string": [ - "\ue063manuellaut", - "\ue030Android63961567", - "\ue030Android63444865" - ], - "profiles": [], - "name": "\ue063manuellaut", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 10:03:48", - "registerOn": 1670309639.2229416, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309639.222942, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309639.222951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309639.2229517, - "lastIP": "eaaaakiaiez", - "deviceUUID": "c91b9ef2adb7b8378fbf14200c8e8f289d222f25" - }, - "pb-IF40UmcHJw==": { - "display_string": [ - "\ue020minnie5116" - ], - "profiles": [], - "name": "\ue020minnie5116", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-21 22:08:30", - "registerOn": 1670309746.6581407, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309746.6581411, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309746.6581504, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309746.6581514, - "lastIP": "dvvcyvb~n~~ah", - "deviceUUID": "f60a287142cc9c7edd9d4678dc69d39a39c06ba0" - }, - "pb-IF4CU0MiVA==": { - "display_string": [ - "\ue030Android63428296" - ], - "profiles": [], - "name": "\ue030Android63428296", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-20 14:07:06", - "registerOn": 1670309822.1634555, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309822.1634562, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347510.4689014, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670347542.5855813, - "lastIP": "azo~{a~}jgaicv", - "deviceUUID": "5ae788976af97e550fb2b9beaee18886efe90c1a" - }, - "pb-IF4CVUMpLQ==": { - "display_string": [ - "\ue063SymbolicLe" - ], - "profiles": [], - "name": "\ue063SymbolicLe", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-01 11:40:35", - "registerOn": 1670310039.9411213, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670310039.9411216, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310039.9411302, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670310039.9411314, - "lastIP": "a\u007fn~}hcaa`aah", - "deviceUUID": "2bbddffbe2022a2d7a39d952d5420c934d3a7d5a" - }, - "pb-IF41VRcsBw==": { - "display_string": [ - "\ue063Nikimalhan" - ], - "profiles": [], - "name": "\ue063Nikimalhan", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-17 18:08:55", - "registerOn": 1670310610.578937, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670310610.5789378, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310610.5789497, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670310610.5789506, - "lastIP": "a\u007fk~xa~~nhakh", - "deviceUUID": "3eaedb8ce47a3f6cff6eeff2ce58f105e6eb8d9d" - }, - "pb-IF4lN2QS": { - "display_string": [ - "\ue063Rocksoli17" - ], - "profiles": [], - "name": "\ue063Rocksoli17", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-15 12:13:30", - "registerOn": 1670310883.9865491, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670310883.9865499, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310883.9865596, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670310925.772695, - "lastIP": "bxvc{vaxvb|h", - "deviceUUID": "3a4a9aa017e42af1b58b717ddcf9aebbc3190c60" - }, - "pb-IF5UUlM8Fw==": { - "display_string": [ - "\ue020\u5f61CARNAGE\u5f61TANISHQ", - "\ue030Android59086853" - ], - "profiles": [], - "name": "\ue030Android59086853", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-21 13:17:07", - "registerOn": 1670311026.4798732, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311026.4798741, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311026.4799204, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311026.479921, - "lastIP": "a\u007fn~}ieam~~mg", - "deviceUUID": "\u0015YUY\u0007E\u0007]" - }, - "pb-IF4lVEscUg==": { - "display_string": [ - "\ue063Sufipnf23" - ], - "profiles": [], - "name": "\ue063Sufipnf23", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-29 22:41:13", - "registerOn": 1670311047.5644026, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311047.5644033, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311047.564412, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670311209.8321745, - "lastIP": "a~l~xa~~l`a`b", - "deviceUUID": "0d94d5d74eaee649f43a55f425a511c5e40ad2f8" - }, - "pb-IF4RA2I6": { - "display_string": [ - "\ue020Shlash7561", - "\ue030Android22000837" - ], - "profiles": [], - "name": "\ue020Shlash7561", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-17 14:43:04", - "registerOn": 1670311104.8685694, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311104.86857, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331498.072205, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670331854.898411, - "lastIP": "azo~|`~~kfaj`z", - "deviceUUID": "3e74ebb3547223c8984475cea4d10c2cacbb4ad7" - }, - "pb-IF4iU0w4KQ==": { - "display_string": [ - "\ue020HecticOnset37" - ], - "profiles": [], - "name": "\ue020HecticOnset37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 11:02:22", - "registerOn": 1670311258.5179946, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311258.5179954, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311258.518002, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311258.5180027, - "lastIP": "bxvf|vavn~~k`", - "deviceUUID": "9e2c0d9943108b3f4201a47631d8d0ea3f5f0d57" - }, - "pb-IF4NU0wOXQ==": { - "display_string": [ - "\ue020ColonialGrammar61" - ], - "profiles": [], - "name": "\ue020ColonialGrammar61", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 09:17:31", - "registerOn": 1670311259.5718555, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311259.571856, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324239.1932979, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670330075.6544108, - "lastIP": "azo~{l~}jaaihy", - "deviceUUID": "9427e3955630b5f233848073ab87e24369ca8d1b" - }, - "pb-IF4lU00bPQ==": { - "display_string": [ - "\ue063Correctiv8" - ], - "profiles": [], - "name": "\ue063Correctiv8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 22:49:37", - "registerOn": 1670311350.0987442, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311350.0987444, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311350.098753, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311350.098754, - "lastIP": "a\u007fn~~aeal~~jg", - "deviceUUID": "9f38ec8222b2e0f055319e0a2609b61f85d1e021" - }, - "pb-IF4BU3QhUQ==": { - "display_string": [ - "\ue063happygame2" - ], - "profiles": [], - "name": "\ue063happygame2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-13 12:33:07", - "registerOn": 1670311423.7830024, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311423.7830029, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323021.5193484, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323021.51935, - "lastIP": "awj~ya~~ogai`", - "deviceUUID": "671a82ea06eddfc13761a895f95f2c68dfc7939f" - }, - "pb-IF41U0cRLw==": { - "display_string": [ - "\ue063brucewayn" - ], - "profiles": [], - "name": "\ue063brucewayn", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 20:15:27", - "registerOn": 1670311578.5884929, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311578.5884933, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311578.588504, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311578.5885048, - "lastIP": "azj~zo~~hgajf", - "deviceUUID": "d74f221261f73be70e6a03a2ff660bcf5b9c0d5f" - }, - "pb-IF4dVEcfIA==": { - "display_string": [ - "\ue063gatchipatr" - ], - "profiles": [], - "name": "\ue063gatchipatr", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-12 21:55:22", - "registerOn": 1670311599.461019, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311599.4610193, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311599.4610276, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670314344.1780927, - "lastIP": "a\u007fn~~afaahaicz", - "deviceUUID": "3785e8f3d30f48f0dede133ab6215bd4ca7031b5" - }, - "pb-IF4vVFEZBg==": { - "display_string": [ - "\ue063AkshayParg" - ], - "profiles": [], - "name": "\ue063AkshayParg", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-30 18:00:25", - "registerOn": 1670311626.4767659, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311626.4767663, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311626.476776, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670312114.6517053, - "lastIP": "a\u007fk~~`cajbwvg~", - "deviceUUID": "1f6f6aebf5accbeed4defc9c91dbf223d4e927af" - }, - "pb-IF4rU0kGEA==": { - "display_string": [ - "\ue020SpectacularShield731" - ], - "profiles": [], - "name": "\ue020SpectacularShield731", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-27 17:42:37", - "registerOn": 1670311955.0098388, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311955.0098395, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311955.0098464, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311955.0098476, - "lastIP": "awj~{`~}jcaif", - "deviceUUID": "3b2ecb70df160b3bc925563348e9f55d2bf4fd79" - }, - "pb-IF5TU0tcUw==": { - "display_string": [ - "\ue020muthuMJ", - "\ue030Android51992363" - ], - "profiles": [], - "name": "\ue020muthuMJ", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 11:18:56", - "registerOn": 1670312168.1355772, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312168.1355777, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312168.1355863, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312168.135587, - "lastIP": "azo~{m~vl~}l`", - "deviceUUID": "11c4435140c3fa18d7951dac1720e2cc865b8c2c" - }, - "pb-IF4nU0scDQ==": { - "display_string": [ - "\ue063FictionalH" - ], - "profiles": [], - "name": "\ue063FictionalH", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 14:16:08", - "registerOn": 1670312190.2316623, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312190.2316625, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330107.774897, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330107.7748988, - "lastIP": "a\u007fn~}j`aidwva~o", - "deviceUUID": "5a55a76eb9e5c5b946793750d52e2b66ddff73ff" - }, - "pb-IF4jU1AyPA==": { - "display_string": [ - "\ue030Android63995855" - ], - "profiles": [], - "name": "\ue030Android63995855", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 11:48:00", - "registerOn": 1670312327.0104196, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312327.0104203, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312327.01043, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312327.010431, - "lastIP": "a\u007fi~|h~vvaym", - "deviceUUID": "10ca381ceaa576d47524ced69fb70bb5af5f48a9" - }, - "pb-IF5UU3kINA==": { - "display_string": [ - "\ue030Android62934068" - ], - "profiles": [], - "name": "\ue030Android62934068", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-26 14:58:23", - "registerOn": 1670312583.8976188, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312583.897619, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312583.8976293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312583.8976305, - "lastIP": "a\u007fi~|h~{i~~ih", - "deviceUUID": "fbe7fb9df64bb88df41863860739579e82b7f543" - }, - "pb-IF4vU00eAA==": { - "display_string": [ - "\ue030Android63898377" - ], - "profiles": [], - "name": "\ue030Android63898377", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 04:15:41", - "registerOn": 1670312659.183585, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312659.1835856, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312659.1835966, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670313521.9851687, - "lastIP": "d}va~i~~iaaag", - "deviceUUID": "\u0015" - }, - "pb-IF42U2wGFw==": { - "display_string": [ - "\ue020chugambaran", - "\ue030Android63640741" - ], - "profiles": [], - "name": "\ue020chugambaran", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-13 17:05:07", - "registerOn": 1670312704.2908556, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312704.2908561, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312704.290864, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312704.2908647, - "lastIP": "azo~{l~~ohaie~", - "deviceUUID": "32b3d31bc0385331d4fc82098d4a0a5988f3baba", - "cMsgCount": 0, - "lastMsgTime": 1670314195.7867928, - "lastMsg": "gg avi", - "cSameMsg": 0 - }, - "pb-JiNJVxBSVEFCX1lGE0JWVVBHF0deRFJG": { - "display_string": [ - "\ue020Hezardoz" - ], - "profiles": [], - "name": "\ue020Hezardoz", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-26 19:43:17", - "registerOn": 1670312747.536739, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312747.5367396, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312747.536748, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312747.5367491, - "lastIP": "d|vb{i~~lfaj`{", - "deviceUUID": "de39f038b05d92313cc3a2105de0f6a69ed380be" - }, - "pb-IF4nU3hdFw==": { - "display_string": [ - "\ue063Insatiabl3", - "\ue030Android63865931" - ], - "profiles": [], - "name": "\ue063Insatiabl3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-26 21:31:36", - "registerOn": 1670312883.8861904, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312883.886191, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312883.886201, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312883.8862016, - "lastIP": "azo~{m~~i`aiav", - "deviceUUID": "ccbb4fb58c5e22118fa6720a9915ce840207f4fd" - }, - "pb-IF5VU0dfJg==": { - "display_string": [ - "\ue020HumblerMare46" - ], - "profiles": [], - "name": "\ue020HumblerMare46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-29 20:51:22", - "registerOn": 1670312945.089181, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312945.0891812, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327861.818157, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327861.8181586, - "lastIP": "a\u007fn~}heaje|vcw", - "deviceUUID": "0c729e271c617dd813d21455250b554fa9e94944" - }, - "pb-IF4dVEUgVg==": { - "display_string": [ - "\ue063EclecticC3" - ], - "profiles": [], - "name": "\ue063EclecticC3", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-24 13:30:09", - "registerOn": 1670313070.2871656, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670313070.287166, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313070.2871757, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313070.2871766, - "lastIP": "dxvc~vavh~~ac", - "deviceUUID": "59430fabade39ff3b28818536a627a1df1dba457" - }, - "pb-IF5dU0JePQ==": { - "display_string": [ - "\ue020HopelessActor28" - ], - "profiles": [], - "name": "\ue020HopelessActor28", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-07 18:33:43", - "registerOn": 1670313381.5132644, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670313381.513265, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313381.513272, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313381.513273, - "lastIP": "a|o~vo~~ieaia~", - "deviceUUID": "038a652f18e77eaf416637f399212677de63cce6", - "cMsgCount": 0, - "lastMsgTime": 1670313474.162137, - "lastMsg": "1", - "cSameMsg": 0 - }, - "pb-JiNJARFcV0VGXF1AE09QVVdCEkRcRlVL": { - "display_string": [ - "\ue020TheIndianGamerDX" - ], - "profiles": [], - "name": "\ue020TheIndianGamerDX", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-29 16:12:51", - "registerOn": 1670313468.4106395, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670313468.4106402, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313468.410649, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313468.4106498, - "lastIP": "dvvcyvb|k~~`d", - "deviceUUID": "f9445b523df9ae355c5887b8f6710335e172d4fb" - }, - "pb-IF5UU1JaMA==": { - "display_string": [ - "\ue063MattedElix" - ], - "profiles": [], - "name": "\ue063MattedElix", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 10:49:50", - "registerOn": 1670313646.7932086, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670313646.793209, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313646.7932172, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313646.7932181, - "lastIP": "axi~zvb{m~}ld", - "deviceUUID": "e44e96c8776ff5e5a6a33fd4074642d6ebcbaaa8" - }, - "pb-IF4lU1BdIw==": { - "display_string": [ - "\ue063LiteralFlu" - ], - "profiles": [], - "name": "\ue063LiteralFlu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 13:30:05", - "registerOn": 1670313796.3415685, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670313796.341569, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313796.341578, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313796.341579, - "lastIP": "a\u007fk~yo~~mgaab", - "deviceUUID": "53d682b443cb16bd38b3b8054bc833efceda9008" - }, - "pb-IF4JU08bHA==": { - "display_string": [ - "\ue030Android63995876" - ], - "profiles": [], - "name": "\ue030Android63995876", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 11:53:14", - "registerOn": 1670314037.24787, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314037.2478704, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314037.2478976, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314037.2478983, - "lastIP": "a~o~~h~~mhaj", - "deviceUUID": "\u0015V\\XX\u0015\u0002]" - }, - "pb-IF4cVE4MDQ==": { - "display_string": [ - "\ue020Ansilchikuu" - ], - "profiles": [], - "name": "\ue020Ansilchikuu", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-11 20:58:00", - "registerOn": 1670314062.3466134, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314062.3466141, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317999.9445138, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317999.9445155, - "lastIP": "azo~{a~~kiaj`\u007f", - "deviceUUID": "b9ebe325b3e08ecb3696c2cfd5892efc7ce14e66" - }, - "pb-IF4lVWwsEw==": { - "display_string": [ - "\ue020SANKETBANSODE007" - ], - "profiles": [], - "name": "\ue020SANKETBANSODE007", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-29 11:54:16", - "registerOn": 1670314284.0633721, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314284.0633726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314284.063382, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314284.063383, - "lastIP": "azo~|k~{vb}a", - "deviceUUID": "d3753d30921e7fe8e98d705e3244326b2ec6bce3" - }, - "pb-IF4cU3NcKQ==": { - "display_string": [ - "\ue063YoungerCol" - ], - "profiles": [], - "name": "\ue063YoungerCol", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 19:22:09", - "registerOn": 1670314305.376949, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314305.3769493, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314305.376958, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314305.3769593, - "lastIP": "azh~}lbaiixvbx", - "deviceUUID": "8ff0e92d1c877d59bcd86fc9b154c3873b3163da" - }, - "pb-IF4gU0U4UA==": { - "display_string": [ - "\ue020ROHIT7100000" - ], - "profiles": [], - "name": "\ue020ROHIT7100000", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-05 09:01:56", - "registerOn": 1670314530.190387, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314530.1903875, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314530.1903956, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314530.1903963, - "lastIP": "a\u007fn~xo~~nbajcx", - "deviceUUID": "e52b11e4b73d4f64c5c8de57608a7d77236a75f1" - }, - "pb-IF5QU0s6XQ==": { - "display_string": [ - "\ue063CleanerRes" - ], - "profiles": [], - "name": "\ue063CleanerRes", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 09:00:51", - "registerOn": 1670314598.6798697, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314598.6798701, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323016.5032222, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323016.503224, - "lastIP": "dvvd|vazm~zh", - "deviceUUID": "53ad53dc7a76c4bb4f3515d1dd74b2e52cf21264" - }, - "pb-IF4yVG8uXQ==": { - "display_string": [ - "\ue020PitifulPick9", - "\ue030Android33279498" - ], - "profiles": [], - "name": "\ue020PitifulPick9", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-12 17:48:07", - "registerOn": 1670314600.422643, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314600.4226437, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314600.4226525, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314600.4226532, - "lastIP": "a~o~}jhaaiamd", - "deviceUUID": "ba006d0a7cfbddde49ec8fbfba8edc13e1268e63" - }, - "pb-IF4iVU4qDA==": { - "display_string": [ - "\ue020aswinsanthosh47249" - ], - "profiles": [], - "name": "\ue020aswinsanthosh47249", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-01 22:19:07", - "registerOn": 1670314639.8906856, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314639.890686, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314639.8906932, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314639.890694, - "lastIP": "azo~{n~~lea``", - "deviceUUID": "4b04db1094e7773fd901d6590103afadbe70e3b9" - }, - "pb-IF4FU085Ng==": { - "display_string": [ - "\ue063MootEmbrac" - ], - "profiles": [], - "name": "\ue063MootEmbrac", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 11:36:52", - "registerOn": 1670314687.8052628, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314687.8052635, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314687.805272, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314687.805273, - "lastIP": "dzva}k~}jcaje\u007f", - "deviceUUID": "2f7a26a6c3b213153f12a1c5e79e9351bc99da51" - }, - "pb-IF4xU08NPA==": { - "display_string": [ - "\ue030Android63996535" - ], - "profiles": [], - "name": "\ue030Android63996535", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 13:50:02", - "registerOn": 1670314822.1885004, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314822.1885006, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314822.1885104, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314822.1885118, - "lastIP": "b}j~~lbaiiwva}h", - "deviceUUID": "1e68d1a8d1a3942a98801321538dfd0b3a054703" - }, - "pb-IF4lUxQtAA==": { - "display_string": [ - "\ue030Android60358186", - "\ue030Android63274946" - ], - "profiles": [], - "name": "\ue030Android60358186", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-09 12:23:51", - "registerOn": 1670315063.4228208, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670315063.4228213, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315063.4228299, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315063.4228306, - "lastIP": "a\u007fn~~aeaocaifz", - "deviceUUID": "d1ae037b6c1e8d2e57f875918c4182f25fa80ff1" - }, - "pb-IF4RU3ExEg==": { - "display_string": [ - "\ue020Aswinag7" - ], - "profiles": [], - "name": "\ue020Aswinag7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-30 20:54:31", - "registerOn": 1670315361.572793, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670315361.5727935, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315361.5728004, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670324345.5142963, - "lastIP": "azo~{l~~ngaid}", - "deviceUUID": "0436e0932298b6344d2a13c7c6f63bcd1f193e77" - }, - "pb-IF4DU1BaNA==": { - "display_string": [ - "\ue063RagingPred" - ], - "profiles": [], - "name": "\ue063RagingPred", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 21:53:24", - "registerOn": 1670315488.9796941, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670315488.9796944, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315488.9797032, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670315607.0970285, - "lastIP": "a}h~}a~vh~|n", - "deviceUUID": "75e0f67d4c12298e516cf542e95d92be2d984a42", - "cMsgCount": 0, - "lastMsgTime": 1670315633.8237379, - "lastMsg": "hello", - "cSameMsg": 0 - }, - "pb-IF5TU2g6AQ==": { - "display_string": [ - "\ue030Android61350223" - ], - "profiles": [], - "name": "\ue030Android61350223", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-19 16:29:40", - "registerOn": 1670315613.4918733, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670315613.4918737, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315613.4919078, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315613.4919088, - "lastIP": "azo~{a~xi~~`a", - "deviceUUID": "\u0015P\b\u0003V\u0010P\\\u0005Y@\u0005YUY\u0016TUVYFW^PPC" - }, - "pb-IF4xU00ZLQ==": { - "display_string": [ - "\ue063jeffalbi45" - ], - "profiles": [], - "name": "\ue063jeffalbi45", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 12:46:50", - "registerOn": 1670316023.9141371, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316023.9141374, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316023.9141448, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316023.9141455, - "lastIP": "azo~zi~}`~~a", - "deviceUUID": "aeb947524315d4a16cfdeffac4e6a08d8012eee2" - }, - "pb-IF5SUk8fAA==": { - "display_string": [ - "\ue030Android58748298" - ], - "profiles": [], - "name": "\ue030Android58748298", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-07 08:04:04", - "registerOn": 1670316056.0066593, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316056.0066597, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316056.0066686, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316056.0066693, - "lastIP": "awk~wk~}hhamd", - "deviceUUID": "277d45b713ae279677f262f0397a5e9a0b1286ea", - "cMsgCount": 1, - "lastMsgTime": 1670316332.6092901, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5WU28fFg==": { - "display_string": [ - "\ue063DeceptiveL", - "\ue030Android62055355" - ], - "profiles": [], - "name": "\ue063DeceptiveL", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-17 19:42:09", - "registerOn": 1670316062.0438392, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316062.0438397, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316062.0438483, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316062.043849, - "lastIP": "b~j~~hdajcxva~`", - "deviceUUID": "ed75e19faad007fe789bf678b4b4d3f785c69b32" - }, - "pb-IF4BK046": { - "display_string": [ - "\ue063HAR1gamer" - ], - "profiles": [], - "name": "\ue063HAR1gamer", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-31 18:47:45", - "registerOn": 1670316067.1582618, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316067.1582625, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343530.384187, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343530.3841882, - "lastIP": "azo~{a~~lfaihy", - "deviceUUID": "61ccabcfc9cdc924ec5727d5ea992b4485bec4d7" - }, - "pb-IF5XUxcnLw==": { - "display_string": [ - "\ue030Android60435181" - ], - "profiles": [], - "name": "\ue030Android60435181", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-13 07:50:15", - "registerOn": 1670316112.227712, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316112.2277124, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316112.2277215, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316112.2277224, - "lastIP": "d}vb|j~~niaj`y", - "deviceUUID": "\u0015XU\u0002S\u0012\u0004TVR\u0015X\u000eP\u0005GP\\VTLWZTWAU" - }, - "pb-IF5XUxg6Ug==": { - "display_string": [ - "\ue063orangeyty", - "\ue030Android63981131" - ], - "profiles": [], - "name": "\ue063orangeyty", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-17 15:03:33", - "registerOn": 1670316192.5192356, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316192.519236, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316192.5192444, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316192.5192459, - "lastIP": "dvva{a~yo~vh", - "deviceUUID": "ff37d192a3c1a500f55d2d575fae1737687b6efd" - }, - "pb-IF4XU04tNQ==": { - "display_string": [ - "\ue030Android63903308" - ], - "profiles": [], - "name": "\ue030Android63903308", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 22:02:06", - "registerOn": 1670316456.5129864, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316456.5129871, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316456.512996, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316456.5129967, - "lastIP": "dxvb{o~}ifaiaw", - "deviceUUID": "81c52b637fb54d13bdf7a6820b544a890dea5e05" - }, - "pb-IF4tU3obMw==": { - "display_string": [ - "\ue030Android63201472" - ], - "profiles": [], - "name": "\ue030Android63201472", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-08 21:23:56", - "registerOn": 1670316468.5487235, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316468.5487242, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316468.548734, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316468.5487347, - "lastIP": "azo~|k~}kbaigx", - "deviceUUID": "2fb4cf0fe7817a4f28f26a77f1fa674537feea82" - }, - "pb-IF4xUxA7Vg==": { - "display_string": [ - "\ue063BLOODFRAUD" - ], - "profiles": [], - "name": "\ue063BLOODFRAUD", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-26 14:49:05", - "registerOn": 1670316498.6506438, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316498.6506443, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316498.650653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316498.6506536, - "lastIP": "fvvi{vdyvavn", - "deviceUUID": "5ee6edcb161af58a38cb283145ad239b222f2484" - }, - "pb-IF5UU0gICg==": { - "display_string": [ - "\ue063mugilann2k" - ], - "profiles": [], - "name": "\ue063mugilann2k", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 15:49:44", - "registerOn": 1670316606.038708, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316606.0387084, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316606.0387173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316606.0387182, - "lastIP": "azo~{a~~ncajc|", - "deviceUUID": "8958b3116af5f3af9b627d464c678a4000fb1ce2" - }, - "pb-IF4RU3IjMA==": { - "display_string": [ - "\ue020YKthePR\u00d4F\u00c8SS\u00d8R" - ], - "profiles": [], - "name": "\ue020YKthePR\u00d4F\u00c8SS\u00d8R", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-02 18:23:48", - "registerOn": 1670316681.3245635, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316681.3245642, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316681.324574, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316681.3245747, - "lastIP": "b}k~~`gaibyvb|l", - "deviceUUID": "47b1ea347a7615d8ec4821ca85da72534df509a4" - }, - "pb-IF4xU0tTDQ==": { - "display_string": [ - "\ue030Android63814738" - ], - "profiles": [], - "name": "\ue030Android63814738", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 05:44:09", - "registerOn": 1670316710.7181842, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316710.7181845, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316710.7181916, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316710.7181926, - "lastIP": "a~h~zl~~lfaid{", - "deviceUUID": "301e04025c5aa0a3791f8e3846ce468a42c8257b" - }, - "pb-LV4TA0FSAEsWCVxdGE9YVUhGFhJZWlkWV1QNDlIRRlwJExNFWVNV": { - "display_string": [ - "\ue063J0kerr666", - "\ue030PC92677" - ], - "profiles": [], - "name": "\ue063J0kerr666", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-09 10:24:17", - "registerOn": 1670316791.7148666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316791.714867, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670317355.596628, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316791.71488, - "lastIP": "ayk~zk~}m~~mh", - "deviceUUID": "d702133aeeb80315820c3f84d8fe0f6a00a8facf", - "cMsgCount": 0, - "lastMsgTime": 1670317612.3048096, - "lastMsg": "lagg", - "cSameMsg": 0 - }, - "pb-IF5RVRcCNQ==": { - "display_string": [ - "\ue020Touqeeerking" - ], - "profiles": [], - "name": "\ue020Touqeeerking", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-04 17:10:12", - "registerOn": 1670316796.7345297, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316796.7345304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316796.7345386, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670325388.42188, - "lastIP": "azo~|`~~lhaig~", - "deviceUUID": "a356ec507ce7f4d59c118273df4f79189490cacf" - }, - "pb-IF41U08-Eg==": { - "display_string": [ - "\ue063Intermed12" - ], - "profiles": [], - "name": "\ue063Intermed12", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 20:13:07", - "registerOn": 1670316870.0969722, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316870.096973, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337559.1937356, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337559.1937368, - "lastIP": "a\u007fn~}h`alhajc|", - "deviceUUID": "22511a304e203d7856bc47102f7830bfd5810d23" - }, - "pb-IF48VWgECg==": { - "display_string": [ - "\ue020AmusingWanderer19", - "\ue030Android52188542" - ], - "profiles": [], - "name": "\ue020AmusingWanderer19", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-01 10:52:04", - "registerOn": 1670316932.251956, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316932.2519562, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316932.2519639, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316932.2519646, - "lastIP": "azo~zi~~oiald", - "deviceUUID": "525625b9d1e1a9f2cc9b6a553fbedbb2d1d4cb83" - }, - "pb-IF4PU3hdLg==": { - "display_string": [ - "\ue020AccessibleClearing32", - "\ue030Android63098154" - ], - "profiles": [], - "name": "\ue030Android63098154", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-28 09:38:53", - "registerOn": 1670316964.4186032, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316964.4186034, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316964.4186125, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316964.4186132, - "lastIP": "azj~zo~~jaaig\u007f", - "deviceUUID": "6ba9c7402e6f457bf9e65f6dab128c492eae96d2" - }, - "pb-IF5VU0Q5LQ==": { - "display_string": [ - "\ue030Android63346781" - ], - "profiles": [], - "name": "\ue030Android63346781", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-16 16:13:41", - "registerOn": 1670316978.507343, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316978.5073433, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316978.5073504, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316978.5073516, - "lastIP": "axi~zh~}jgajc\u007f", - "deviceUUID": "c501b2cdded617d65a90721b8cd09923ddf80170" - }, - "pb-IF5cVUkgUQ==": { - "display_string": [ - "\ue020FuturisticUndead36" - ], - "profiles": [], - "name": "\ue020FuturisticUndead36", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-26 14:47:48", - "registerOn": 1670317287.7447288, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670317287.7447293, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317287.7447374, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317287.7447386, - "lastIP": "a}j~~nbaidyvaxo", - "deviceUUID": "1331436c6d1b3fa92f7c8b79e7525c4d182c941a" - }, - "pb-IF4DVU0hKQ==": { - "display_string": [ - "\ue020Vishvjeetsinhchavda4" - ], - "profiles": [], - "name": "\ue020Vishvjeetsinhchavda4", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-28 00:07:21", - "registerOn": 1670317328.7055254, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670317328.705526, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317328.7055335, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317328.7055345, - "lastIP": "azh~~jiaj`yvax", - "deviceUUID": "86c48ed293567e290cad935a1a892636a27c62aa" - }, - "pb-IF4-U0MYXA==": { - "display_string": [ - "\ue063OrganicHor" - ], - "profiles": [], - "name": "\ue063OrganicHor", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 19:15:48", - "registerOn": 1670317404.3050337, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670317404.305034, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317404.3050423, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670320978.9758103, - "lastIP": "dzvb{a~~jcaihz", - "deviceUUID": "b1d66b451c42feb7a28bfa399a978752257b518b" - }, - "pb-IF4UUmoqUw==": { - "display_string": [ - "\ue020PivotalSorcerer2" - ], - "profiles": [], - "name": "\ue020PivotalSorcerer2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-30 15:57:03", - "registerOn": 1670317631.8363683, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670317631.8363688, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317631.8363776, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317631.8363786, - "lastIP": "b}k~}jdak~}kd", - "deviceUUID": "\u0015\u0007\tWU\u0010\u0007_R\u0005B\u0007_W\u0004C\u0003TTTDVTQXG" - }, - "pb-IF4cU08bEA==": { - "display_string": [ - "\ue063Isbgamer89" - ], - "profiles": [], - "name": "\ue063Isbgamer89", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 11:58:15", - "registerOn": 1670317698.0860934, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670317698.086094, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317698.086102, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317698.086103, - "lastIP": "azj~z`~~``aib~", - "deviceUUID": "792e5f015918699da9fb9cdbe124371fbe9b9e3d" - }, - "pb-IF4yU088Uw==": { - "display_string": [ - "\ue020BiographicalSteam361" - ], - "profiles": [], - "name": "\ue020BiographicalSteam361", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 10:47:55", - "registerOn": 1670317885.8271146, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670317885.827115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317885.8271234, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317885.827124, - "lastIP": "a\u007fn~~agakaaic}", - "deviceUUID": "\u0015X\u000bRU\u0016\u0002YXWMS\u000bXULV\\WYLR^PWDQ" - }, - "pb-IF4LUlBZNQ==": { - "display_string": [ - "\ue020UnwelcomeShop20", - "\ue063SansSkelet", - "\ue030Android46238231", - "\ue030Android63837331" - ], - "profiles": [], - "name": "\ue063SansSkelet", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-17 17:02:16", - "registerOn": 1670317956.334767, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670317956.3347676, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317956.3347762, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317956.334777, - "lastIP": "a\u007fk~vl~}mea``", - "deviceUUID": "6686e18a274a451d31dc74ea82b6c952955d2be3" - }, - "pb-IF4pVXMNEw==": { - "display_string": [ - "\ue063ADI61834" - ], - "profiles": [], - "name": "\ue063ADI61834", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-18 11:31:02", - "registerOn": 1670318120.9681735, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318120.968174, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318120.9681823, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318120.9681833, - "lastIP": "azo~{l~~miaii{", - "deviceUUID": "0a787623c7c4d90854515d86ae990dabe3a38e05" - }, - "pb-IF4DV1haCg==": { - "display_string": [ - "\ue020HotChicken96163", - "\ue030Android35196498", - "\ue030Android35134665" - ], - "profiles": [], - "name": "\ue020HotChicken96163", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-25 17:06:30", - "registerOn": 1670318167.8139994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318167.814, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318167.814008, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670320532.2667272, - "lastIP": "azo~|a~za~~ic", - "deviceUUID": "7ee613330e3b555a5cad3c9e5c8d39f11dfd644d" - }, - "pb-IF4MVWwmEQ==": { - "display_string": [ - "\ue030Android48579844" - ], - "profiles": [], - "name": "\ue030Android48579844", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-29 20:22:33", - "registerOn": 1670318242.0661242, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318242.066125, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318242.0661337, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318242.0661345, - "lastIP": "azo~{m~}kdaib{", - "deviceUUID": "8f385579674fc50710c94af42d9683cec8d0c467" - }, - "pb-IF4DU04PNQ==": { - "display_string": [ - "\ue020GamerParth2022" - ], - "profiles": [], - "name": "\ue020GamerParth2022", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 20:23:15", - "registerOn": 1670318276.1646168, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318276.1646173, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318276.1646254, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318276.1646261, - "lastIP": "a\u007fn~}idaigaa", - "deviceUUID": "b19319487589db6e9e0b7b330a7b6b62baed94a0" - }, - "pb-IF5SUxIeCA==": { - "display_string": [ - "\ue063UntaintedR" - ], - "profiles": [], - "name": "\ue063UntaintedR", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-28 10:21:46", - "registerOn": 1670318392.6810591, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318392.6810596, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318392.681067, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318392.681068, - "lastIP": "a\u007fn~~acamiaj`v", - "deviceUUID": "55de96c9512a84809debbac32fde65ac902e938c" - }, - "pb-IF4nU08BVg==": { - "display_string": [ - "\ue063kingbcs" - ], - "profiles": [], - "name": "\ue063kingbcs", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 12:18:32", - "registerOn": 1670318441.849206, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318441.8492064, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670354570.7014854, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670356555.8463821, - "lastIP": "dvvcxvdzvaym", - "deviceUUID": "548cce6a079bbda740d03793a1d78e999a4c1fd4", - "cMsgCount": 0, - "lastMsgTime": 1670355610.5520344, - "lastMsg": "vansh", - "cSameMsg": 0 - }, - "pb-IF4nU1AnFA==": { - "display_string": [ - "\ue063SOULRippeR" - ], - "profiles": [], - "name": "\ue063SOULRippeR", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 14:10:35", - "registerOn": 1670318543.2455177, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318543.2455184, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318543.2455266, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318543.2455273, - "lastIP": "dxvbvvaym~{k", - "deviceUUID": "82b7d4f4599997698e090fce3ac42f24262c826e" - }, - "pb-IF4nU0cpHA==": { - "display_string": [ - "\ue063WanProduc2" - ], - "profiles": [], - "name": "\ue063WanProduc2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-11 18:34:52", - "registerOn": 1670318720.1188574, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318720.1188576, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318720.1188676, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318720.118869, - "lastIP": "avk~~n`ajbxvax`", - "deviceUUID": "08199784570a55ee4bb51ab6b310da1ea217b3db" - }, - "pb-IF5VUmEnJg==": { - "display_string": [ - "\ue030Android54523561" - ], - "profiles": [], - "name": "\ue030Android54523561", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-08 10:50:57", - "registerOn": 1670319109.241927, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670319109.2419274, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319109.241937, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319109.2419379, - "lastIP": "dzva}i~w`~ym", - "deviceUUID": "\u0015V[", - "cMsgCount": 0, - "lastMsgTime": 1670320986.0100675, - "lastMsg": "yeah", - "cSameMsg": 0 - }, - "pb-IF5UU0gmNA==": { - "display_string": [ - "\ue063LowerWarde" - ], - "profiles": [], - "name": "\ue063LowerWarde", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-09 05:50:00", - "registerOn": 1670319197.5851161, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670319197.5851166, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319197.5851257, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319197.5851266, - "lastIP": "dvva{n~zl~~ka", - "deviceUUID": "1921b2ab5d6cdf6d169c18296a84e996c354ebb1" - }, - "pb-IF4tUkwtCA==": { - "display_string": [ - "\ue063DEATHSTORM" - ], - "profiles": [], - "name": "\ue063DEATHSTORM", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-27 10:49:12", - "registerOn": 1670319434.3927255, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670319434.3927262, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319434.392736, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319434.3927367, - "lastIP": "dvvc}va|i~~`e", - "deviceUUID": "8ee8e212af18d5468df920fe14288750121d377c" - }, - "pb-IF4iU0QlAQ==": { - "display_string": [ - "\ue020ProdigalOutlay20", - "\ue030Android63809115" - ], - "profiles": [], - "name": "\ue020ProdigalOutlay20", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-29 20:48:28", - "registerOn": 1670319462.7579763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670319462.7579768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319462.7579849, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319462.7579856, - "lastIP": "azo~{n~xh~}ji", - "deviceUUID": "\u0015YTWS\u0011S\u000e\u0003WC\u0003_YRDW_QYDT]WT@Y" - }, - "pb-IF4qU04eNQ==": { - "display_string": [ - "\ue063Instruct21" - ], - "profiles": [], - "name": "\ue063Instruct21", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 19:55:33", - "registerOn": 1670319520.7552292, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670319520.7552297, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319520.7552383, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670319668.9903166, - "lastIP": "azo~{a~~aeajdy", - "deviceUUID": "6b94c3b0cf6e764ef671ac8c0d13de7d4fa5271e" - }, - "pb-IF4WU0MpAA==": { - "display_string": [ - "\ue030Android63427027" - ], - "profiles": [], - "name": "\ue030Android63427027", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-20 11:59:26", - "registerOn": 1670319913.3264253, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670319913.3264258, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319913.326435, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319913.3264358, - "lastIP": "bxvf~vb}k~~o`", - "deviceUUID": "\u0015X\bPT@\u0002\u000ePVBQTTXM" - }, - "pb-IF4IU04HUg==": { - "display_string": [ - "\ue063StapleDrif" - ], - "profiles": [], - "name": "\ue063StapleDrif", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 15:46:16", - "registerOn": 1670319955.5551145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670319955.555115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319955.555124, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319955.5551248, - "lastIP": "bxvf~vaa`h", - "deviceUUID": "4ee1623106b49e7195380825122a67a638c8063a" - }, - "pb-IF4LU0sqMA==": { - "display_string": [ - "\ue0200neN0nly21" - ], - "profiles": [], - "name": "\ue0200neN0nly21", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 19:28:04", - "registerOn": 1670320106.0815954, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320106.0815961, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320106.0816057, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320106.0816066, - "lastIP": "azo~|a~za~~ji", - "deviceUUID": "6c1e2c4ec06492a83ee00b13e3392643d1e4247d" - }, - "pb-IF4BVWoFDQ==": { - "display_string": [ - "\ue030Android48356549" - ], - "profiles": [], - "name": "\ue030Android48356549", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-18 18:35:21", - "registerOn": 1670320122.4135852, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320122.4135857, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320122.413594, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670320845.404351, - "lastIP": "azj~zo~~aeaic|", - "deviceUUID": "\u0015\u0002X\u0004TES\u000bPPB\u0004ZYWC" - }, - "pb-IF4qVRc9Bg==": { - "display_string": [ - "\ue020ArchitViradiya4747", - "\ue030Android46467079" - ], - "profiles": [], - "name": "\ue020ArchitViradiya4747", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-21 22:49:10", - "registerOn": 1670320261.675815, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320261.6758156, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320261.6758225, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320261.6758235, - "lastIP": "azo~|j~}mdajc\u007f", - "deviceUUID": "abffb29d6d37ff35707d4e389126be7fac509a19" - }, - "pb-IF4QUxEJUA==": { - "display_string": [ - "\ue030Android60154328" - ], - "profiles": [], - "name": "\ue030Android60154328", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-01 19:32:02", - "registerOn": 1670320514.6193326, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320514.619333, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320514.6193397, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320514.6193402, - "lastIP": "dvvazva|`~~ld", - "deviceUUID": "764cf088c92bfe46096d8edf0f9d36671aba3de9" - }, - "pb-IF4eVE9dFA==": { - "display_string": [ - "\ue020UJJWALkr8569", - "\ue030Android33403124" - ], - "profiles": [], - "name": "\ue020UJJWALkr8569", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-12 14:42:17", - "registerOn": 1670320692.145576, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320692.1455762, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320692.145587, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320692.1455877, - "lastIP": "b}k~}jhajcvvavo", - "deviceUUID": "\u0015TX" - }, - "pb-IF5UVBUEUg==": { - "display_string": [ - "\ue063Lakshit213" - ], - "profiles": [], - "name": "\ue063Lakshit213", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-03 16:48:44", - "registerOn": 1670320767.5459125, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320767.5459127, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320767.545922, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320842.39236, - "lastIP": "azj~z`~~o~~jb", - "deviceUUID": "a715359af32ebfd7c3d3d5f4d2b71b166b41195d" - }, - "pb-IF4uU08GCQ==": { - "display_string": [ - "\ue063NoName55613a" - ], - "profiles": [], - "name": "\ue063NoName55613a", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 15:28:26", - "registerOn": 1670320807.611278, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320807.6112785, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320807.611288, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320807.6112888, - "lastIP": "axm~~ofameajh", - "deviceUUID": "d6abdda6579f0c95cb4d2eeba5dea14003b6be63" - }, - "pb-IF4-Uk4ZXQ==": { - "display_string": [ - "\ue030Android58843616" - ], - "profiles": [], - "name": "\ue030Android58843616", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-11 16:09:33", - "registerOn": 1670320820.6656437, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320820.6656442, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320820.665653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320820.6656542, - "lastIP": "i{vb{m~~kdaicv", - "deviceUUID": "4fd2518723de746bfe40bd12c21ea88f2b4b3ce7" - }, - "pb-IF4WVVAlDw==": { - "display_string": [ - "\ue030Android52606483" - ], - "profiles": [], - "name": "\ue030Android52606483", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-12 16:25:26", - "registerOn": 1670320863.1045487, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320863.104549, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320863.104558, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320863.104559, - "lastIP": "izvg\u007fvg{vd|", - "deviceUUID": "\u0015" - }, - "pb-IF4DU0pdEw==": { - "display_string": [ - "\ue020StereoCurriculum37" - ], - "profiles": [], - "name": "\ue020StereoCurriculum37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 10:07:16", - "registerOn": 1670321043.6589315, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670321043.658932, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321043.6589413, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321043.6589422, - "lastIP": "b\u007fj~~nhaohajd}", - "deviceUUID": "d29c4e60be9026a749df13b1b592f02d45c14367" - }, - "pb-IF4qUnE5XA==": { - "display_string": [ - "\ue063QanT" - ], - "profiles": [], - "name": "\ue063QanT", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-04 14:26:16", - "registerOn": 1670321119.8403804, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670321119.840381, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321119.8403878, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321119.8403888, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF4hU0QyUA==": { - "display_string": [ - "\ue020BionicClown95756" - ], - "profiles": [], - "name": "\ue020BionicClown95756", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-03 22:34:21", - "registerOn": 1670321356.1629827, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670321356.1629832, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670321600.6054456, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321356.1629937, - "lastIP": "avn~~meaie~vaz", - "deviceUUID": "68b208638cb6de07b8ab2a4a99c6d1229c2604cd", - "cMsgCount": 2, - "lastMsgTime": 1670321825.7926185, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4-U3QjBg==": { - "display_string": [ - "\ue063MysticBloo" - ], - "profiles": [], - "name": "\ue063MysticBloo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-12 10:51:15", - "registerOn": 1670321552.478127, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670321552.4781272, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321552.4781356, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321552.4781363, - "lastIP": "axm~~ofai`amh", - "deviceUUID": "bd9cc535441ef3d6a1cbdb85e622ff459b4edc23" - }, - "pb-IF4dU3QSKw==": { - "display_string": [ - "\ue030Android63977519", - "\ue030Android63977477", - "\ue030Android63977559", - "\ue030Android62717978", - "\ue030Android63977575" - ], - "profiles": [], - "name": "\ue030Android62717978", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-16 11:50:07", - "registerOn": 1670321600.9559095, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670321600.95591, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321600.9559193, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321600.9559205, - "lastIP": "azo~zh~~o~}mb", - "deviceUUID": "5b017a3ca1d395d080f351404b461b0b5037ef47" - }, - "pb-IF4qVFcnBg==": { - "display_string": [ - "\ue020mihirsavat" - ], - "profiles": [], - "name": "\ue020mihirsavat", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-07 12:47:48", - "registerOn": 1670321735.564338, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670321735.5643387, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670338828.597606, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670338825.5237856, - "lastIP": "dvvc{va|m~y", - "deviceUUID": "eebd84b662041c828dc3a08d269927eda98a60c4", - "cMsgCount": 0, - "lastMsgTime": 1670338828.5971737, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4dU20FHA==": { - "display_string": [ - "\ue063VROPPRO" - ], - "profiles": [], - "name": "\ue063VROPPRO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 13:24:55", - "registerOn": 1670321741.2328196, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670321741.23282, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338352.9392703, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670338569.7063751, - "lastIP": "a|a~~ngaig\u007fvay`", - "deviceUUID": "79c60b48bf6a6568181dbb43a076af6b498018e2" - }, - "pb-IF4BVRQmVA==": { - "display_string": [ - "\ue063Winplaygam", - "\ue020dhruvLM432D" - ], - "profiles": [], - "name": "\ue063Winplaygam", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-31 19:13:58", - "registerOn": 1670322073.4771006, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322073.477101, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322073.47711, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322073.4771109, - "lastIP": "azj~zo~}kfajbz", - "deviceUUID": "68dc2f21c79661de8df0b968d9caf3c3d073fc80" - }, - "pb-IF4JUlcFVQ==": { - "display_string": [ - "\ue030Android59682080" - ], - "profiles": [], - "name": "\ue030Android59682080", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-13 15:26:28", - "registerOn": 1670322206.2137709, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322206.2137713, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322206.2137794, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322206.2137802, - "lastIP": "h|va}k~~jeaiex", - "deviceUUID": "48f31ab7bef929674bfc2eedcaafb09c5e402288" - }, - "pb-IF4QU04eDQ==": { - "display_string": [ - "\ue063AgedCore46" - ], - "profiles": [], - "name": "\ue063AgedCore46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 15:11:32", - "registerOn": 1670322496.205992, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322496.2059925, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322496.206001, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322496.206002, - "lastIP": "bxva}j~yi~~ld", - "deviceUUID": "51f6c3453a32570d566a1d370bad15eb6248a6aa" - }, - "pb-IF4AU0EPAg==": { - "display_string": [ - "\ue020MRSHUBHAManuj", - "\ue030Android62840913" - ], - "profiles": [], - "name": "\ue020MRSHUBHAManuj", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 16:04:02", - "registerOn": 1670322533.091349, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322533.0913496, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322533.0913584, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322533.0913591, - "lastIP": "a\u007fn~}hiaja\u007fvd{", - "deviceUUID": "2e6807fe08a7ac4ff707a2aa3bd4ffa01fd08a98" - }, - "pb-IF5VVEEANg==": { - "display_string": [ - "\ue063Demodog02" - ], - "profiles": [], - "name": "\ue063Demodog02", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-15 19:42:07", - "registerOn": 1670322554.1415997, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322554.1416006, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670325132.2035038, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322554.14161, - "lastIP": "a}j~~ohakeaifx", - "deviceUUID": "1d464001ddbf0c3de1dd9c46627b95304e92f138", - "cMsgCount": 0, - "lastMsgTime": 1670325197.79978, - "lastMsg": "bruh", - "cSameMsg": 0 - }, - "pb-IF4LVGlSLw==": { - "display_string": [ - "\ue020SHIVAMASS1509" - ], - "profiles": [], - "name": "\ue020SHIVAMASS1509", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-02 15:59:11", - "registerOn": 1670322658.5264704, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322658.526471, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322658.526479, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322658.52648, - "lastIP": "azo~zi~~agah", - "deviceUUID": "2e533909938aa763a37dedd4525343541b88959a" - }, - "pb-IF4QU28vNg==": { - "display_string": [ - "\ue030Android62190350" - ], - "profiles": [], - "name": "\ue030Android62190350", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-23 20:05:27", - "registerOn": 1670322809.0676057, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322809.0676062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347174.0749197, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670347174.0749207, - "lastIP": "a\u007fk~xh~~jhaa", - "deviceUUID": "\u0015R\u000b" - }, - "pb-IF5SUkkBEw==": { - "display_string": [ - "\ue020FayasMH07", - "\ue030Android58151670" - ], - "profiles": [], - "name": "\ue020FayasMH07", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-10 22:58:22", - "registerOn": 1670322852.1792657, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322852.1792665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322852.1792758, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322852.1792765, - "lastIP": "azo~{n~~mgaih{", - "deviceUUID": "4be46002aef3990088f6ded70f2a053061f44b33" - }, - "pb-IF5RUnRYMg==": { - "display_string": [ - "\ue030Android56494704" - ], - "profiles": [], - "name": "\ue030Android56494704", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-05 11:41:50", - "registerOn": 1670323150.2793658, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323150.2793665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323150.279377, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670325215.832379, - "lastIP": "azo~{`~~lbakf", - "deviceUUID": "\u0015\u0007\b" - }, - "pb-IF4oVU8CIQ==": { - "display_string": [ - "\ue020srk5553", - "\ue030Android46587965" - ], - "profiles": [], - "name": "\ue020srk5553", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-08 19:10:50", - "registerOn": 1670323277.0190306, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323277.019031, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323277.01904, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670326018.6661358, - "lastIP": "azj~zo~zm~~`i", - "deviceUUID": "9857e104bfbead5c690f6ffe0b252c07010628e1" - }, - "pb-IF4QAFAT": { - "display_string": [ - "\ue063WiseCarpen", - "\ue030Android35516755" - ], - "profiles": [], - "name": "\ue063WiseCarpen", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-24 17:06:16", - "registerOn": 1670323363.06051, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323363.0605104, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323363.0605185, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323363.06052, - "lastIP": "a|a~zvb{h~~li", - "deviceUUID": "3460e5659f29bf89081ab26a4d35669898c7baa1", - "cMsgCount": 0, - "lastMsgTime": 1670324307.293298, - "lastMsg": "no", - "cSameMsg": 0 - }, - "pb-IF4KVVUSPw==": { - "display_string": [ - "\ue030Android53154238" - ], - "profiles": [], - "name": "\ue030Android53154238", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-07 16:23:51", - "registerOn": 1670323380.2076497, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323380.2076504, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323380.2076588, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323380.2076595, - "lastIP": "a\u007fk~|`~}heaidy", - "deviceUUID": "\u0015\u0004\fQWAX\u000f\u0004U\u0012\u0004\\W\u0002@\u0002\\UPAW_VQF" - }, - "pb-IF4WU0s5LA==": { - "display_string": [ - "\ue030Android63804091" - ], - "profiles": [], - "name": "\ue030Android63804091", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 19:46:19", - "registerOn": 1670323488.4761457, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323488.4761462, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323488.476156, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323488.4761572, - "lastIP": "azj~zo~}jbaid\u007f", - "deviceUUID": "69f10dea84944b1207c6357b810eb10568389ad3" - }, - "pb-IF4NU3onCg==": { - "display_string": [ - "\ue063subashchan" - ], - "profiles": [], - "name": "\ue063subashchan", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-11 12:03:28", - "registerOn": 1670323513.6518407, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323513.6518412, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323513.6518488, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323513.6518497, - "lastIP": "azo~zi~~lcaj`\u007f", - "deviceUUID": "18c7c106e716867750ea47a695d7c4a7215020c4", - "cMsgCount": 1, - "lastMsgTime": 1670323524.0594983, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4tU0cgJw==": { - "display_string": [ - "\ue030Android63653357" - ], - "profiles": [], - "name": "\ue030Android63653357", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-13 10:24:33", - "registerOn": 1670323628.0846946, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323628.084695, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323628.0847054, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323628.0847063, - "lastIP": "az`~yj~{i~~of", - "deviceUUID": "adbe7928aeddd7118fcffc649aa7cb611fd3a58f" - }, - "pb-IF4tUlgHLg==": { - "display_string": [ - "\ue063Assertive2", - "\ue030Android57101758" - ], - "profiles": [], - "name": "\ue063Assertive2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-15 18:25:42", - "registerOn": 1670323708.3498294, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323708.3498302, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323708.3498392, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323708.34984, - "lastIP": "dvva{n~~aeai`}", - "deviceUUID": "63a3897323b88ec5af199cb615205ce594c415c9" - }, - "pb-IF4uU0oHVQ==": { - "display_string": [ - "\ue063WeaklyDece" - ], - "profiles": [], - "name": "\ue063WeaklyDece", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 08:35:52", - "registerOn": 1670323772.778086, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323772.7780864, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323772.7780964, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323772.7780974, - "lastIP": "cyvh{va~k~}mc", - "deviceUUID": "34e80ef02d0fb4136ba1273bdbeab24f115bc9c1" - }, - "pb-IF4DU08kHw==": { - "display_string": [ - "\ue020TopCapability10" - ], - "profiles": [], - "name": "\ue020TopCapability10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 20:35:02", - "registerOn": 1670323787.8947546, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323787.894755, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323787.8947651, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323787.8947663, - "lastIP": "azj~zo~}ihaibz", - "deviceUUID": "8e10941ca63b3d82e330633f62c832213a10b8a3" - }, - "pb-IF4BU3EtLg==": { - "display_string": [ - "\ue030Android62371159" - ], - "profiles": [], - "name": "\ue030Android62371159", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 20:11:13", - "registerOn": 1670323804.7764452, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323804.7764454, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323804.7764542, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323804.776455, - "lastIP": "a\u007fn~~agan~~jb", - "deviceUUID": "a07a568221a613569addd1b28094fb71d57b9c4f" - }, - "pb-IF40U2stDA==": { - "display_string": [ - "\ue020anuj6dager" - ], - "profiles": [], - "name": "\ue020anuj6dager", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-08 16:10:36", - "registerOn": 1670323935.34262, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323935.3426206, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323935.3426313, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323935.3426325, - "lastIP": "a|j~~mdambajb|", - "deviceUUID": "bd7ea938045ee17e7b73f1a580edffc3ce1b8ec8" - }, - "pb-IF41UlAhCA==": { - "display_string": [ - "\ue063sds420s" - ], - "profiles": [], - "name": "\ue063sds420s", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-16 16:12:38", - "registerOn": 1670323994.946162, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323994.9461625, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337594.2915354, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337594.2915366, - "lastIP": "azo~{a~~kaajb~", - "deviceUUID": "06b24a9588f613fb62ed6c8e4e3c3215008c957e" - }, - "pb-IF42U04yBw==": { - "display_string": [ - "\ue063Hardwork14" - ], - "profiles": [], - "name": "\ue063Hardwork14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 20:14:48", - "registerOn": 1670324233.494325, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670324233.4943254, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324233.4943345, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670324233.4943354, - "lastIP": "azo~zi~xn~~lc", - "deviceUUID": "a2f4c3e1c58d6788b8d8a19d41f6adec18a6c0a0" - }, - "pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF": { - "display_string": [ - "\ue020ashu42v" - ], - "profiles": [], - "name": "\ue020ashu42v", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-30 00:27:53", - "registerOn": 1670324377.9480104, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670324377.948011, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324377.948021, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670324377.9480221, - "lastIP": "dxvc~vazh~~l", - "deviceUUID": "\u0015\u0003]YVL\u0002\u000fX\u0007CV\u000eSRM\u0003_SYBQ_WYB", - "cMsgCount": 0, - "lastMsgTime": 1670324917.3238666, - "lastMsg": "oh acha", - "cSameMsg": 0 - }, - "pb-IF4yU08bLQ==": { - "display_string": [ - "\ue030Android63997565" - ], - "profiles": [], - "name": "\ue030Android63997565", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 16:26:10", - "registerOn": 1670324708.4183412, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670324708.4183416, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324708.4183514, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670324708.4183524, - "lastIP": "a}h~\u007fvf|vfz", - "deviceUUID": "\u0015R\u000fUT\u0015X^U\u0005G\u0003\u000bRS\u0011\u0007YTSCYYUYM" - }, - "pb-IF4QU2UnJA==": { - "display_string": [ - "\ue030Android61281057" - ], - "profiles": [], - "name": "\ue030Android61281057", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-16 23:49:08", - "registerOn": 1670324930.1736083, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670324930.1736088, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324930.1736178, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670324930.1736188, - "lastIP": "eajaxvb|o~~jh", - "deviceUUID": "\u0015Y^\u0002" - }, - "pb-IF4VUkMgUA==": { - "display_string": [ - "\ue063AfrodityHe" - ], - "profiles": [], - "name": "\ue063AfrodityHe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 21:20:07", - "registerOn": 1670325193.0797393, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325193.0797398, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325193.0797498, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325193.079751, - "lastIP": "a~o~}laaje{vayl", - "deviceUUID": "d2a77e5b4210bd6611975f624f2e83bc82e98945" - }, - "pb-IF4PU3oqXQ==": { - "display_string": [ - "\ue020Go\u3164D\u3164Usopp", - "\ue030Android63162454" - ], - "profiles": [], - "name": "\ue020Go\u3164D\u3164Usopp", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-06 17:13:17", - "registerOn": 1670325215.472564, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325215.4725645, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325215.4725733, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325215.4725742, - "lastIP": "azo~{a~}h`aja~", - "deviceUUID": "778748b6226c33833dc9c290d52824966873f9db" - }, - "pb-IF48VXAqBg==": { - "display_string": [ - "\ue030Android49166175" - ], - "profiles": [], - "name": "\ue030Android49166175", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-28 14:19:22", - "registerOn": 1670325373.6915343, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325373.6915348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325373.6915448, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325373.691546, - "lastIP": "az`~yj~{i~~of", - "deviceUUID": "5fd00443cb7b72c371389cbacfcca970cff286a0" - }, - "pb-IF4VU08bDg==": { - "display_string": [ - "\ue030Android63997698" - ], - "profiles": [], - "name": "\ue030Android63997698", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 16:45:14", - "registerOn": 1670325437.9224865, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325437.922487, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325437.922496, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325437.9224968, - "lastIP": "axm~~ofalaaje}", - "deviceUUID": "8c13885b11bf0056f71b53434f42a6343546a4f4" - }, - "pb-JiNJARBbXUFGXlpHGURYUFVCF0BYQ1VK": { - "display_string": [ - "\ue020SREEKANTH1943", - "\ue030Android12063835" - ], - "profiles": [], - "name": "\ue020SREEKANTH1943", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-28 19:26:58", - "registerOn": 1670325522.8823285, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325522.882329, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325522.8823383, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325522.8823392, - "lastIP": "a~o~}ieaj`yvb{`", - "deviceUUID": "ed7a667acc53dfa611875977af10ddb5b5b96b45" - }, - "pb-IF4DU08vBw==": { - "display_string": [ - "\ue063Miur35" - ], - "profiles": [], - "name": "\ue063Miur35", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 11:43:18", - "registerOn": 1670325727.9705892, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325727.9705896, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325727.9706001, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325727.9706013, - "lastIP": "a~o~}igangaj`\u007f", - "deviceUUID": "03c86fe9486247a0ddcbc176d369a41537c5d913" - }, - "pb-IF4iI04x": { - "display_string": [ - "\ue063jethendras", - "\ue030Android19866571", - "\ue030Android19849129" - ], - "profiles": [], - "name": "\ue063jethendras", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-20 18:35:34", - "registerOn": 1670325975.117926, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325975.1179261, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325975.117935, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325975.1179357, - "lastIP": "a}j~~ocaid|viy", - "deviceUUID": "06a13238adfca04a6a8da6b2b52cfa9117ce57a2" - }, - "pb-IF4KXmcn": { - "display_string": [ - "\ue020warriorofsoulruler1", - "\ue030Android18117877" - ], - "profiles": [], - "name": "\ue030Android18117877", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-18 09:58:16", - "registerOn": 1670325980.807262, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325980.8072624, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325980.8072712, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325980.807272, - "lastIP": "a\u007fk~}mcaie\u007fvh{", - "deviceUUID": "71460dfda3ed612808915f8322aec0eff6a622bd" - }, - "pb-IF4xU2waHw==": { - "display_string": [ - "\ue030Android61975304" - ], - "profiles": [], - "name": "\ue030Android61975304", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-14 14:16:05", - "registerOn": 1670326626.3205829, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670326626.3205833, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670326626.3205914, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670326626.3205922, - "lastIP": "a|o~vo~~hiai`z", - "deviceUUID": "\u0015T_\u0003U\u0016U\u000b\u0004" - }, - "pb-IF42UnAsNQ==": { - "display_string": [ - "\ue063WideEyedB2", - "\ue030Android56478145" - ], - "profiles": [], - "name": "\ue063WideEyedB2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-30 13:27:55", - "registerOn": 1670326659.3850675, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670326659.385068, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670326659.385076, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670326659.385077, - "lastIP": "awk~wo~}ldaof", - "deviceUUID": "a7702e699e8499e0dd2432d20dcb5deb8f56ae61" - }, - "pb-IF41UlkcIA==": { - "display_string": [ - "\ue030Android59873080" - ], - "profiles": [], - "name": "\ue030Android59873080", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-20 13:58:09", - "registerOn": 1670327192.6990142, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670327192.6990144, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670327673.800667, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670327399.1671722, - "lastIP": "azj~zo~}laaifv", - "deviceUUID": "\u0015T\\\u0004", - "cMsgCount": 0, - "lastMsgTime": 1670327673.8008454, - "lastMsg": "CKD ka gaand me 14 lund isha ki maa Randi", - "cSameMsg": 0 - }, - "pb-IF5UU3AyNw==": { - "display_string": [ - "\ue030Android62113852" - ], - "profiles": [], - "name": "\ue030Android62113852", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-20 10:27:51", - "registerOn": 1670327491.8374088, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670327491.8374093, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670355432.3889458, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670355432.3889472, - "lastIP": "b}k~}jgaobajd\u007f", - "deviceUUID": "ebbd3626b76f9cb463b10b199a09b65e3c8967f8", - "cMsgCount": 0, - "lastMsgTime": 1670327703.9231, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4zU1BSBw==": { - "display_string": [ - "\ue030Android63997645" - ], - "profiles": [], - "name": "\ue030Android63997645", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 16:37:50", - "registerOn": 1670327646.3797734, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670327646.3797739, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327646.3797832, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327646.3797839, - "lastIP": "axi~~ifa`fajb\u007f", - "deviceUUID": "\u0015RYYRDU\u000eY\u0003\u0015\u0004[\u0004VEXXSXASYQWD" - }, - "pb-IF4MU04MMg==": { - "display_string": [ - "\ue030Android63945820" - ], - "profiles": [], - "name": "\ue030Android63945820", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 10:54:07", - "registerOn": 1670327752.0334394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670327752.0334404, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327752.0334496, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327752.0334506, - "lastIP": "cxvbvvd~vava", - "deviceUUID": "f9230a0e20d8a79f2fb80cb52a299abede89f143" - }, - "pb-IF42U3ciNQ==": { - "display_string": [ - "\ue063Abbuabbuaa" - ], - "profiles": [], - "name": "\ue063Abbuabbuaa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-25 14:58:29", - "registerOn": 1670327961.6425345, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670327961.642535, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327961.642544, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327961.6425452, - "lastIP": "a~h~}jdaa`aid\u007f", - "deviceUUID": "8184746c4f18393c073c5ce44bb4877d694e912e" - }, - "pb-IF4dUloABA==": { - "display_string": [ - "\ue030Android59978471" - ], - "profiles": [], - "name": "\ue030Android59978471", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-24 14:22:26", - "registerOn": 1670327998.6811426, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670327998.6811433, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327998.6811523, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327998.6811533, - "lastIP": "azo~{a~~kdalf", - "deviceUUID": "\u0015\u0007^PRDSYQYDYZPXL" - }, - "pb-IF4KU3JdDA==": { - "display_string": [ - "\ue020SectarianPioneer25" - ], - "profiles": [], - "name": "\ue020SectarianPioneer25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-02 15:22:11", - "registerOn": 1670328047.8242092, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328047.8242097, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328047.824219, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328047.8242197, - "lastIP": "b}k~~`gaiaxvaz", - "deviceUUID": "65f0d98269264b2cff07338106471260003e7632" - }, - "pb-IF4oElIy": { - "display_string": [ - "\ue063NoName54913f", - "\ue030Android24828802" - ], - "profiles": [], - "name": "\ue063NoName54913f", - "isBan": false, - "isMuted": false, - "accountAge": "2018-06-01 19:53:14", - "registerOn": 1670328102.1097858, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328102.1097865, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670330128.035162, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328102.1097958, - "lastIP": "a~o~v`~~iiakf", - "deviceUUID": "f213a83878bed9402cd3288517165e177fd8838a", - "cMsgCount": 0, - "lastMsgTime": 1670330875.3406117, - "lastMsg": "darkness? nofe", - "cSameMsg": 0 - }, - "pb-IF4tUhgtAA==": { - "display_string": [ - "\ue030Android54534556" - ], - "profiles": [], - "name": "\ue030Android54534556", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-08 23:30:07", - "registerOn": 1670328459.441897, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328459.4418974, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328459.441906, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328459.4419067, - "lastIP": "azo~|j~xl~~jc", - "deviceUUID": "\u0015\u0002\u000f\u0004\u0004\u0017T\u000e\u0007VF\u0005YUY\u0016\u0003XSUFS^XT" - }, - "pb-IF4eU3UODA==": { - "display_string": [ - "\ue026gcuser1633413302872", - "\ue030Android60672288" - ], - "profiles": [], - "name": "\ue030Android60672288", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-16 08:00:39", - "registerOn": 1670328573.5471966, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328573.547197, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328573.547205, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328573.5472057, - "lastIP": "a~o~}mbajayvcy", - "deviceUUID": "d00694006d05615b370a49f226f7c0e938017fff" - }, - "pb-IF4GV2YFJA==": { - "display_string": [ - "\ue063GrandTorna" - ], - "profiles": [], - "name": "\ue063GrandTorna", - "isBan": false, - "isMuted": false, - "accountAge": "2018-10-09 19:30:25", - "registerOn": 1670328700.0748413, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328700.0748417, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328700.07485, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328700.0748508, - "lastIP": "i}vivvc\u007fvazh", - "deviceUUID": "80a84fbdd7d9a80abe9c77d8a4cd5bebedb436cf" - }, - "pb-IF4JU08ZAw==": { - "display_string": [ - "\ue030Android63997986" - ], - "profiles": [], - "name": "\ue030Android63997986", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 17:26:30", - "registerOn": 1670328704.0734298, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328704.0734303, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328704.0734398, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328704.0734406, - "lastIP": "b}i~~k~~vaxo", - "deviceUUID": "06e4b1315becb85e775aa9aa20c0b55328ec69c8" - }, - "pb-IF5QVXYYJA==": { - "display_string": [ - "\ue063Vivekdestr" - ], - "profiles": [], - "name": "\ue063Vivekdestr", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-23 14:40:44", - "registerOn": 1670328712.1810508, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328712.1810515, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328712.1810598, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328712.1810608, - "lastIP": "aya~~liajbyvfy", - "deviceUUID": "353e5c0e2e891b6a71026fd4bd67d989808f22ed" - }, - "pb-IF4PUhEcUQ==": { - "display_string": [ - "\ue020ItzCOSMOS2023" - ], - "profiles": [], - "name": "\ue020ItzCOSMOS2023", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-11 15:37:58", - "registerOn": 1670328715.0368557, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328715.0368567, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328715.0368655, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328715.0368667, - "lastIP": "dxvazvb\u007fvdv", - "deviceUUID": "\u0015Y\u000fQVBV[VV\u0011\u0003TTX\u0016\u0007_STLXTYSD" - }, - "pb-IF4NU04KDw==": { - "display_string": [ - "\ue063ManiacalCo" - ], - "profiles": [], - "name": "\ue063ManiacalCo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 13:33:39", - "registerOn": 1670328793.3029082, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328793.302909, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328793.3029191, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328793.3029199, - "lastIP": "b}k~}heajd}vc|", - "deviceUUID": "0535b3524d1a09ac506e18f8293a66f82d24ebd7" - }, - "pb-IF4SU3UIAQ==": { - "display_string": [ - "\ue063GreyAardva", - "\ue030Android61397395" - ], - "profiles": [], - "name": "\ue063GreyAardva", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-17 16:06:48", - "registerOn": 1670328802.362002, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328802.3620026, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328802.3620121, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328802.3620129, - "lastIP": "azo~{a~}kcaicw", - "deviceUUID": "639b12380b07f49d12ad2836e835a35900552c4a" - }, - "pb-IF4lVU9bEA==": { - "display_string": [ - "\ue020HAWKI55" - ], - "profiles": [], - "name": "\ue020HAWKI55", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-05 14:03:55", - "registerOn": 1670328843.6537716, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328843.6537719, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328843.6537793, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328843.65378, - "lastIP": "a\u007fk~wk~~leaif", - "deviceUUID": "555e0137ef2c452305722168c4b9a9fbd41f4a10" - }, - "pb-IF4FU3ADMQ==": { - "display_string": [ - "\ue030Android62325956" - ], - "profiles": [], - "name": "\ue030Android62325956", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-29 21:10:57", - "registerOn": 1670328855.734646, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328855.7346466, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328855.7346563, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328855.7346573, - "lastIP": "dxva~vavn~~nb", - "deviceUUID": "5dc2a63f03c15199a483557117009b08016a1209" - }, - "pb-IF4FU3NcFw==": { - "display_string": [ - "\ue063Unenlight4" - ], - "profiles": [], - "name": "\ue063Unenlight4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 16:48:46", - "registerOn": 1670329143.4001224, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670329143.400123, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329143.4001317, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329143.4001324, - "lastIP": "a~j~~kdajd~vazo", - "deviceUUID": "64f13314cbba2da3397b5c597ce06b5c2c496015" - }, - "pb-IF4TV0wvVQ==": { - "display_string": [ - "\ue063PuzzledSol" - ], - "profiles": [], - "name": "\ue063PuzzledSol", - "isBan": false, - "isMuted": false, - "accountAge": "2019-03-23 17:21:29", - "registerOn": 1670329212.404818, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670329212.4048188, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329212.4048443, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329212.4048452, - "lastIP": "dzvf{va}vhy", - "deviceUUID": "71f80b9134c785c4298264cb9239ccb37455fdaf" - }, - "pb-IF4XU3YGFg==": { - "display_string": [ - "\ue020TastelessSystem38" - ], - "profiles": [], - "name": "\ue020TastelessSystem38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-20 16:16:59", - "registerOn": 1670329769.7248714, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670329769.7248719, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329769.7248793, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329769.7248802, - "lastIP": "b}k~~`gaia|vax", - "deviceUUID": "218394d7f709f5896d0ea114c5c20282a9ecc5e9" - }, - "pb-IF43UlccEQ==": { - "display_string": [ - "\ue020SiriusSam15", - "\ue030Android60471603" - ], - "profiles": [], - "name": "\ue020SiriusSam15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-13 17:05:55", - "registerOn": 1670329936.3558497, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670329936.3558502, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329936.3558602, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329936.355861, - "lastIP": "azo~{a~}leaidx", - "deviceUUID": "a0b384d772aa086e7dab5fcd950f951fb13c96ed" - }, - "pb-IF4IV08vJw==": { - "display_string": [ - "\ue020anuragkareliya123" - ], - "profiles": [], - "name": "\ue020anuragkareliya123", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-07 14:22:58", - "registerOn": 1670330015.9494424, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330015.9494429, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330015.9494498, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330015.9494505, - "lastIP": "a\u007fn~}ifa`aaic}", - "deviceUUID": "01aabc41b4b9e0a7492e82bf950f3060f4ad1cb2" - }, - "pb-IF4qUxYvIA==": { - "display_string": [ - "\ue063quicksnipe" - ], - "profiles": [], - "name": "\ue063quicksnipe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-17 12:38:39", - "registerOn": 1670330038.8219302, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330038.8219304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330038.821938, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330038.8219388, - "lastIP": "a\u007fn~~acaig{vd~", - "deviceUUID": "d53fcd54e6796458b313ddfade7a39799c24dcfd", - "cMsgCount": 2, - "lastMsgTime": 1670330216.2562494, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4AU3hZPA==": { - "display_string": [ - "\ue063Pavan" - ], - "profiles": [], - "name": "\ue063Pavan", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 21:04:44", - "registerOn": 1670330051.865205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330051.8652055, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330051.8652139, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330051.8652153, - "lastIP": "dvvb\u007fl~~j`aja{", - "deviceUUID": "5e89cae6ddeaf888dcb6acf9d0e2bd7c051181d6" - }, - "pb-IF5TE2M5": { - "display_string": [ - "\ue020ahamadakthus" - ], - "profiles": [], - "name": "\ue020ahamadakthus", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-24 10:54:01", - "registerOn": 1670330072.9584184, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330072.9584188, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330072.958428, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670336725.5473769, - "lastIP": "ayj~}ifaid|vaxl", - "deviceUUID": "8a9e8b2f8430a1a02dbd8c5c33da5d338fa353b5" - }, - "pb-IF4wU00DEA==": { - "display_string": [ - "\ue063ZADKIEL", - "\ue030Android63972115", - "\ue030Android63971981", - "\ue030Android63972065", - "\ue030Android63972400" - ], - "profiles": [], - "name": "\ue063ZADKIEL", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 18:25:53", - "registerOn": 1670330084.0283349, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330084.0283353, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330084.0283444, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330084.028345, - "lastIP": "a\u007fk~}haaib{vaxm", - "deviceUUID": "711af46b6d319e2e692e3818dca8854b535283db" - }, - "pb-IF4mU0sMUQ==": { - "display_string": [ - "\ue030Android63838539" - ], - "profiles": [], - "name": "\ue030Android63838539", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-10 13:27:08", - "registerOn": 1670330181.3622932, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330181.3622937, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330181.3623028, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330181.3623035, - "lastIP": "a~j~}iaangaie|", - "deviceUUID": "ec8033d8df7f8740ecad268a33a18d5cbc86b3b9" - }, - "pb-IF5QU3oCEg==": { - "display_string": [ - "\ue020LargeTornado46516" - ], - "profiles": [], - "name": "\ue020LargeTornado46516", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-28 07:15:07", - "registerOn": 1670330413.2825234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330413.282524, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337368.5282972, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670337378.5740252, - "lastIP": "a\u007fn~~afai`~vf}", - "deviceUUID": "e11733cfbaac799f8f8bc25da52ef852889bdb5c" - }, - "pb-IF5WU0saBg==": { - "display_string": [ - "\ue020AssasiN4116" - ], - "profiles": [], - "name": "\ue020AssasiN4116", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 15:22:04", - "registerOn": 1670330556.6910794, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330556.6910799, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330556.691088, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330556.6910892, - "lastIP": "a\u007fn~}h`aifaidz", - "deviceUUID": "f564e7fdced9c3704bcaf60333ec88db427b79bd" - }, - "pb-IF40U08YKg==": { - "display_string": [ - "\ue030Android63998324" - ], - "profiles": [], - "name": "\ue030Android63998324", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 18:08:47", - "registerOn": 1670330652.0145528, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330652.0145533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330652.0145624, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330652.0145633, - "lastIP": "a~h~zl~~a`aaa", - "deviceUUID": "24e6b2598a2fa64bc3a160906f6010716f2cc8c9" - }, - "pb-IF4eU086Dw==": { - "display_string": [ - "\ue020HerbalPopulation30" - ], - "profiles": [], - "name": "\ue020HerbalPopulation30", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 23:35:50", - "registerOn": 1670330806.6942346, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330806.6942353, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330806.6942441, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330806.6942449, - "lastIP": "azo~{n~}jaaig~", - "deviceUUID": "b24e0847757eaefd59da6b9214b0abb05b6df496" - }, - "pb-IF41U0Y5PA==": { - "display_string": [ - "\ue063Rajjadhav9", - "\ue030Android59261403" - ], - "profiles": [], - "name": "\ue063Rajjadhav9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 17:24:14", - "registerOn": 1670330823.770203, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330823.7702036, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330823.7702105, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670331451.904811, - "lastIP": "azh~~hgaih}vawn", - "deviceUUID": "6b2c8f6ccdb1b386b2809a13b57aae77fd820c1a", - "cMsgCount": 0, - "lastMsgTime": 1670331414.1109765, - "lastMsg": "\ud83d\ude02\ud83d\ude02\ud83d\ude02", - "cSameMsg": 0 - }, - "pb-IF4lVG8eBA==": { - "display_string": [ - "\ue020LogicalDuck1803" - ], - "profiles": [], - "name": "\ue020LogicalDuck1803", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-16 19:47:59", - "registerOn": 1670330871.2040243, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330871.2040248, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339046.294569, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339046.2945702, - "lastIP": "a\u007fn~xo~~neaie{", - "deviceUUID": "87d6699deaa69f754f4a7de401c140119923c1ce", - "cMsgCount": 0, - "lastMsgTime": 1670331122.8076615, - "lastMsg": "0", - "cSameMsg": 0 - }, - "pb-IF5VU0EjVw==": { - "display_string": [ - "\ue030Android63061128" - ], - "profiles": [], - "name": "\ue030Android63061128", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-01 17:56:29", - "registerOn": 1670330882.108143, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330882.1081436, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330882.108151, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330882.108152, - "lastIP": "gxvb|o~~aaaiez", - "deviceUUID": "\u0015V\u000e\u0007" - }, - "pb-IF4BEW0D": { - "display_string": [ - "\ue063LEGIONDIVI", - "\ue030Android25382791" - ], - "profiles": [], - "name": "\ue063LEGIONDIVI", - "isBan": false, - "isMuted": false, - "accountAge": "2018-06-14 12:56:25", - "registerOn": 1670330914.1182535, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330914.1182542, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330914.118262, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330914.1182628, - "lastIP": "a\u007fk~}meai`yvb}n", - "deviceUUID": "70b07d512738b75547be56e7972eec2d420c3961" - }, - "pb-IF5QU0wNJg==": { - "display_string": [ - "\ue063Strangest8" - ], - "profiles": [], - "name": "\ue063Strangest8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 22:21:04", - "registerOn": 1670330928.4512026, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330928.4512029, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330928.4512107, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330928.451212, - "lastIP": "dxviaie{vaxm", - "deviceUUID": "4f06a2122eb2e40e7b497460f7ba8364481ca1ca" - }, - "pb-IF4AVHQ9NQ==": { - "display_string": [ - "\ue020ExogenousBudget8" - ], - "profiles": [], - "name": "\ue020ExogenousBudget8", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-17 16:43:42", - "registerOn": 1670331074.7362974, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670331074.736298, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331074.736306, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670331074.7363067, - "lastIP": "a\u007fk~~liaiixviz", - "deviceUUID": "\u0015Q\u000bWXDUY\u0005XETT\u0003\u0005\u0016S\\QQGYXSYCR", - "cMsgCount": 0, - "lastMsgTime": 1670333569.7223873, - "lastMsg": "sahilp me aao re koi", - "cSameMsg": 0 - }, - "pb-IF4tV0YpCg==": { - "display_string": [ - "\ue020FuschiaChicken22885" - ], - "profiles": [], - "name": "\ue020FuschiaChicken22885", - "isBan": false, - "isMuted": false, - "accountAge": "2019-02-21 21:21:37", - "registerOn": 1670331228.5726087, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670331228.5726092, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670331269.7994666, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670331228.5726187, - "lastIP": "azo~{a~~kgaiix", - "deviceUUID": "cf60478ec7cd549dd8b3bfa8108203095220e9a6", - "cMsgCount": 0, - "lastMsgTime": 1670331269.7994137, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4FU08hMw==": { - "display_string": [ - "\ue063Godfreykin" - ], - "profiles": [], - "name": "\ue063Godfreykin", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 16:11:55", - "registerOn": 1670331711.777738, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670331711.7777386, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331711.7777467, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670331711.7777474, - "lastIP": "awh~~aeaj`zvb", - "deviceUUID": "a333602af18ff895ba35d8e352d1fddfc9dbd8da" - }, - "pb-IF4gUnIzIg==": { - "display_string": [ - "\ue020OverallIncarnation20" - ], - "profiles": [], - "name": "\ue020OverallIncarnation20", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-10 23:04:50", - "registerOn": 1670331998.9420974, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670331998.942098, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331998.9421065, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670331998.9421077, - "lastIP": "azj~zo~~kfaibw", - "deviceUUID": "c0da9354ccae30d5dbe91ecbce7d54ce7eab4f32" - }, - "pb-IF4OU04GBg==": { - "display_string": [ - "\ue063MRKHINDIGA" - ], - "profiles": [], - "name": "\ue063MRKHINDIGA", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 18:23:34", - "registerOn": 1670332003.9399593, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332003.9399598, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337486.9741192, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670337617.3663964, - "lastIP": "a\u007fk~}maaiiajb", - "deviceUUID": "6ced21ada9869093bef0a7b8fd5e8a4c55abd317", - "cMsgCount": 0, - "lastMsgTime": 1670332262.7351954, - "lastMsg": "hello chutiyo", - "cSameMsg": 0 - }, - "pb-IF4oVRIALg==": { - "display_string": [ - "\ue063DaveGamer6" - ], - "profiles": [], - "name": "\ue063DaveGamer6", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-19 14:15:23", - "registerOn": 1670332018.0404885, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332018.040489, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332018.0404985, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332018.0404994, - "lastIP": "awh~~adalaai`~", - "deviceUUID": "a0c8c0862e3a8c2792de71efc3f1a8f2cae0f578" - }, - "pb-IF4sUnYKXA==": { - "display_string": [ - "\ue063TOFFE2022" - ], - "profiles": [], - "name": "\ue063TFFE2022", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-31 21:56:06", - "registerOn": 1670332024.983172, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332024.9831727, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332024.9831817, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670335640.9330647, - "lastIP": "bxvdaie{vawl", - "deviceUUID": "7c86dff289fd825b55413be3c6d230f5ad9edaf3" - }, - "pb-IF4oU20bJA==": { - "display_string": [ - "\ue020RegretfulFighter7831" - ], - "profiles": [], - "name": "\ue020RegretfulFighter7831", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-16 15:37:41", - "registerOn": 1670332196.226634, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332196.2266347, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332196.2266417, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332196.2266424, - "lastIP": "a\u007fn~~ahaig~va\u007f", - "deviceUUID": "5b0bbcfcb34a9ccd099c0db3fb3abd9323d8d41f" - }, - "pb-IF4MU04CDQ==": { - "display_string": [ - "\ue020FasterTuba34" - ], - "profiles": [], - "name": "\ue020FasterTuba34", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 18:34:47", - "registerOn": 1670332493.031049, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332493.0310495, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332493.031058, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332493.0310595, - "lastIP": "a\u007fn~~ahaigal`", - "deviceUUID": "315426646c2a5b230daaf80dd85ed7d686c12123" - }, - "pb-IF4FU28fVg==": { - "display_string": [ - "\ue020kumargchethan56" - ], - "profiles": [], - "name": "\ue020kumargchethan56", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-26 10:30:59", - "registerOn": 1670332570.3545327, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332570.354533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332570.3545418, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332570.3545427, - "lastIP": "azo~{m~~mfai`v", - "deviceUUID": "cecaf1a5847d6b847a4e2f4d9e55db4db623ea16" - }, - "pb-IF4KU1A7PQ==": { - "display_string": [ - "\ue030Android63997996" - ], - "profiles": [], - "name": "\ue030Android63997996", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 17:27:30", - "registerOn": 1670332621.5350256, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332621.535026, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332621.5350356, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332621.5350366, - "lastIP": "d~vazh~|l~xi", - "deviceUUID": "60c18238a14a78a60e75f7ce54887386384d6818" - }, - "pb-IF4dU3QbHw==": { - "display_string": [ - "\ue020gameryasar93" - ], - "profiles": [], - "name": "\ue020gameryasar93", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-15 21:30:56", - "registerOn": 1670332678.6896298, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332678.6896303, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332678.689639, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332678.68964, - "lastIP": "azo~{a~~oiaii~", - "deviceUUID": "fab4b7f324dc6c57976278f9d62d81cd11fe8301" - }, - "pb-IF4SU1BbHw==": { - "display_string": [ - "\ue030Android63993006" - ], - "profiles": [], - "name": "\ue030Android63993006", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 02:47:53", - "registerOn": 1670332747.9222395, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332747.9222403, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332747.9222548, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332747.9222555, - "lastIP": "a~h~}maajc\u007fvb\u007fk", - "deviceUUID": "6093b02fb4a82a356fe2321e85a56fefb5bf6ec4" - }, - "pb-IF4SU1BdKg==": { - "display_string": [ - "\ue063EightyHear" - ], - "profiles": [], - "name": "\ue063EightyHear", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 18:15:42", - "registerOn": 1670332774.2946057, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332774.2946064, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332774.2946172, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332774.2946181, - "lastIP": "azo~{h~vk~ym", - "deviceUUID": "4c76f765766d1418b17ad32f629498cf4067537e" - }, - "pb-IF4VUGpe": { - "display_string": [ - "\ue063Vanquishe9", - "\ue030Android11472375" - ], - "profiles": [], - "name": "\ue063Vanquishe9", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-08 18:03:59", - "registerOn": 1670332903.4268982, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332903.4268987, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332903.426908, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332903.4269092, - "lastIP": "a\u007fk~xh~~jhaa", - "deviceUUID": "9c46b1019101f05d83b3b63b344fb047d683f051" - }, - "pb-IF49U0oCKQ==": { - "display_string": [ - "\ue063NoName44250c" - ], - "profiles": [], - "name": "\ue063NoName44250c", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 10:47:14", - "registerOn": 1670333041.984932, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333041.9849322, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670339522.8307118, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670341272.3873558, - "lastIP": "dvvc}vb~l~{o", - "deviceUUID": "675ef762b4b584d958a4980af72e051d56743ba2", - "cMsgCount": 0, - "lastMsgTime": 1670339607.2104697, - "lastMsg": "1", - "cSameMsg": 0 - }, - "pb-IF41VUgdEw==": { - "display_string": [ - "\ue030Android51835869" - ], - "profiles": [], - "name": "\ue030Android51835869", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-06 05:48:53", - "registerOn": 1670333077.0857003, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333077.0857008, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333077.08571, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333077.0857108, - "lastIP": "a{h~}icamhaiez", - "deviceUUID": "\u0015Q\u000bSUGV]\u0007Y@Q^U" - }, - "pb-IF4CLUED": { - "display_string": [ - "\ue063VishalDorl", - "\ue030Android19868642" - ], - "profiles": [], - "name": "\ue063VishalDorl", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-22 14:45:50", - "registerOn": 1670333159.3431795, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333159.3431797, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333159.3431885, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333159.3431892, - "lastIP": "azj~zo~}laaj`~", - "deviceUUID": "c7db4503a355ad7ad212d9a7785b6e6e040e39ef" - }, - "pb-IF4NU0sTNQ==": { - "display_string": [ - "\ue020HookedMedusa32" - ], - "profiles": [], - "name": "\ue020HookedMedusa32", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 12:50:36", - "registerOn": 1670333187.4803321, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333187.4803326, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333187.4803436, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333187.4803443, - "lastIP": "dvva{va}`~zh", - "deviceUUID": "57ae5b4a78152705e5cbc7cb57dcb014008dd7ba" - }, - "pb-IF4HVFFTUg==": { - "display_string": [ - "\ue020OutrightPeriphery10" - ], - "profiles": [], - "name": "\ue020OutrightPeriphery10", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-25 11:59:04", - "registerOn": 1670333237.9251213, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333237.925122, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333237.92513, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333237.925131, - "lastIP": "a\u007fn~}heajdwva}n", - "deviceUUID": "f2f4e5048eec62c921cdc6119b71af1d538ad371" - }, - "pb-IF4BVUYgMQ==": { - "display_string": [ - "\ue063SUSMITH200" - ], - "profiles": [], - "name": "\ue063SUSMITH200", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-22 19:44:07", - "registerOn": 1670333267.7639234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333267.7639236, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333267.7639318, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670333868.7223806, - "lastIP": "a~o~}mbaifvvby", - "deviceUUID": "a34a2bcb41c18c99c907317de924de598298d7e1" - }, - "pb-IF5SU1E4Fg==": { - "display_string": [ - "\ue063investiga2" - ], - "profiles": [], - "name": "\ue063investiga2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 21:34:33", - "registerOn": 1670333271.7683048, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333271.7683058, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333271.7683146, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333271.7683156, - "lastIP": "a\u007fk~~nfajdzvayl", - "deviceUUID": "e73b9d9e77c0462f26fd2508be62d270a65190d3" - }, - "pb-IF5WU0UEUw==": { - "display_string": [ - "\ue020parzivl2071" - ], - "profiles": [], - "name": "\ue020parzivl2071", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 16:25:15", - "registerOn": 1670333290.855211, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333290.8552115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333290.85522, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333290.855221, - "lastIP": "d~vh~vb~j~|k", - "deviceUUID": "b364b583d0d15425cf0114e62e74cbc32192ada7" - }, - "pb-IF4oU0oSHw==": { - "display_string": [ - "\ue020shreemanlegend13", - "\ue030Android63823661" - ], - "profiles": [], - "name": "\ue030Android63823661", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 14:00:25", - "registerOn": 1670333388.2180035, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333388.218004, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333388.2180114, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333388.2180123, - "lastIP": "a~o~va~}mbajcz", - "deviceUUID": "a07cd99cd38413a9c95521ab07afa1c96a7d8920" - }, - "pb-IF4JU08BXQ==": { - "display_string": [ - "\ue063Inadvisab7" - ], - "profiles": [], - "name": "\ue063Inadvisab7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 16:49:23", - "registerOn": 1670333617.0993772, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333617.0993779, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333617.0993865, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333617.0993874, - "lastIP": "azo~{i~}maai`w", - "deviceUUID": "7ae398541549661cbf000e0245d455ae820a932d" - }, - "pb-IF4dUFk_": { - "display_string": [ - "\ue020Devil77181908" - ], - "profiles": [], - "name": "\ue020Devil77181908", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-12 15:42:48", - "registerOn": 1670333620.9742932, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333620.9742937, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670333657.3684678, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333620.9743032, - "lastIP": "azo~|j~~jaaicw", - "deviceUUID": "6aa9e6c979af11b55aae601f6c77eba59c21cee4", - "cMsgCount": 0, - "lastMsgTime": 1670333657.368405, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4UU3FYVg==": { - "display_string": [ - "\ue063hck3rr" - ], - "profiles": [], - "name": "\ue063hck3rr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-28 01:29:59", - "registerOn": 1670333627.037062, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333627.0370624, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333627.0370715, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670335707.191473, - "lastIP": "dvvcxvb~l~}o", - "deviceUUID": "a5d31e88f643d9948539aabe2079c0f14763d9e0" - }, - "pb-IF5dUhkxHw==": { - "display_string": [ - "\ue063UniversalC" - ], - "profiles": [], - "name": "\ue063UniversalC", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-06 19:50:40", - "registerOn": 1670333664.5985448, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333664.5985456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333664.598555, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333664.598556, - "lastIP": "aakiaohaia~", - "deviceUUID": "d841f60ff92203a545f8c49d937efac6da72d9f4" - }, - "pb-IF4JU0U_Ug==": { - "display_string": [ - "\ue063EdwinSajiJ", - "\ue030Android59971496" - ], - "profiles": [], - "name": "\ue063EdwinSajiJ", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-04 11:22:32", - "registerOn": 1670333854.9841914, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333854.9841924, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670333979.986045, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670333921.099636, - "lastIP": "dvvazvb~j~|l", - "deviceUUID": "2c0f72b8c3fd322251462ef42a6bc69f54e2dbde", - "cMsgCount": 0, - "lastMsgTime": 1670333979.9860039, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4uU2UqLQ==": { - "display_string": [ - "\ue030Android61269388" - ], - "profiles": [], - "name": "\ue030Android61269388", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-16 13:52:50", - "registerOn": 1670333876.102998, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333876.1029985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333876.1030076, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333876.1030083, - "lastIP": "a}j~~`baid}vh\u007f", - "deviceUUID": "\u0015\u0003ZXQ\u0010VU\u0003U@\u0005\bY" - }, - "pb-IF4hU25cAg==": { - "display_string": [ - "\ue020DireImpetus33" - ], - "profiles": [], - "name": "\ue020DireImpetus33", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-21 18:03:22", - "registerOn": 1670333919.4382336, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333919.4382339, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333919.4382434, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333919.438244, - "lastIP": "azo~{a~wh~}hd", - "deviceUUID": "96711aae4bec4c80c8b800905cc0510b560eb299" - }, - "pb-IF5RUkgSAQ==": { - "display_string": [ - "\ue063EditorialU" - ], - "profiles": [], - "name": "\ue063EditorialU", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-05 20:01:19", - "registerOn": 1670333999.9390771, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333999.9390779, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333999.939087, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333999.9390876, - "lastIP": "dvvc{vg|vbzm", - "deviceUUID": "c016bfa678a90b141b92dd5bfbf0291f1c1c7ccb" - }, - "pb-IF4PUkogDg==": { - "display_string": [ - "\ue020HatefulAnnoyance26" - ], - "profiles": [], - "name": "\ue020HatefulAnnoyance26", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-20 18:57:48", - "registerOn": 1670334036.0867946, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334036.086795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334036.086804, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334036.086805, - "lastIP": "dvvc{vayo~}ii", - "deviceUUID": "465d806febeff2c167652cf44704b0b47f659f65" - }, - "pb-IF5WU04bVw==": { - "display_string": [ - "\ue030Android63870775" - ], - "profiles": [], - "name": "\ue030Android63870775", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 19:31:44", - "registerOn": 1670334066.3882244, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334066.3882248, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334066.3883545, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334066.3883557, - "lastIP": "a~k~z`~{n~~ai", - "deviceUUID": "220de134e8d86144dbf3f05c2acd9a8576e8e0b4" - }, - "pb-IF4eU0MjFw==": { - "display_string": [ - "\ue030Android63415043" - ], - "profiles": [], - "name": "\ue030Android63415043", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-19 17:52:12", - "registerOn": 1670334108.6975565, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334108.6975567, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334108.6975648, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334108.6975656, - "lastIP": "azj~zo~}iaaibz", - "deviceUUID": "55da7b029c7f1a1eb680330238ad360945e811c6" - }, - "pb-IF4vVWoPHQ==": { - "display_string": [ - "\ue020BrazenCoast73326" - ], - "profiles": [], - "name": "\ue020BrazenCoast73326", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-16 06:02:23", - "registerOn": 1670334366.3915417, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334366.3915422, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334366.3915513, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334366.3915522, - "lastIP": "a|n~}jhaig|vb{h", - "deviceUUID": "7568ce3c82f8371db8487bbbeae1727a9d8e60a8" - }, - "pb-IF4eVXJZXQ==": { - "display_string": [ - "\ue020PlaidSkipper56572", - "\ue030Android24905371" - ], - "profiles": [], - "name": "\ue020PlaidSkipper56572", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-07 06:32:55", - "registerOn": 1670334534.0828547, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334534.082855, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334534.082862, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334534.0828626, - "lastIP": "azo~zi~~lfaae", - "deviceUUID": "33dd1e4a95326667853a0e4f839ad82934e76726" - }, - "pb-IF4IVGUqDA==": { - "display_string": [ - "\ue020shagun2611" - ], - "profiles": [], - "name": "\ue020shagun2611", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-07 17:22:33", - "registerOn": 1670334564.2136989, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334564.2136996, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334564.2137084, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334564.2137094, - "lastIP": "aya~~liajb{vay`", - "deviceUUID": "33ae041f4a865e3ae0d9533f4c3c429d435a1846" - }, - "pb-IF5UU0cuMw==": { - "display_string": [ - "\ue030Android63571326" - ], - "profiles": [], - "name": "\ue030Android63571326", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 17:01:32", - "registerOn": 1670334669.617842, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334669.6178422, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334669.6178503, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334669.6178517, - "lastIP": "a\u007fn~~aeaicala", - "deviceUUID": "\u0015" - }, - "pb-IF41U3U4MQ==": { - "display_string": [ - "\ue020MunificientRoad23" - ], - "profiles": [], - "name": "\ue020MunificientRoad23", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-17 17:51:39", - "registerOn": 1670334690.017025, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334690.0170255, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334690.0170345, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334690.0170352, - "lastIP": "azo~{n~}hiaiay", - "deviceUUID": "895295b53c8554f7da8606666f53d1a1d3c98486" - }, - "pb-IF4sU08vCQ==": { - "display_string": [ - "\ue063FluffyPres" - ], - "profiles": [], - "name": "\ue063FluffyPres", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 19:14:38", - "registerOn": 1670334705.0176127, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334705.0176134, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334705.0176222, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334705.017623, - "lastIP": "avo~~n`aii~va~n", - "deviceUUID": "c971b18a214f8abfd075ccbb11569ef3cd781474" - }, - "pb-IF40U0gqUw==": { - "display_string": [ - "\ue020indiankingsman11" - ], - "profiles": [], - "name": "\ue020indiankingsman11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 15:26:49", - "registerOn": 1670334779.3070962, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334779.3070967, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334779.3071053, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670336131.1290224, - "lastIP": "a~o~va~z`~~a`", - "deviceUUID": "730d594ea1e5f33d2fb7a0ad6df4aedba7d68b6f" - }, - "pb-JiNJARFcUUpFW1pJEEJYXVFEGUBdQVdD": { - "display_string": [ - "\ue020LunaticDynamo4823", - "\ue030Android11633589" - ], - "profiles": [], - "name": "\ue020LunaticDynamo4823", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-15 10:20:44", - "registerOn": 1670334868.9082491, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334868.9082496, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334868.9082575, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334868.9082587, - "lastIP": "azo~{l~~nhaicy", - "deviceUUID": "12a1a8a9bafa33dcdf99e47331601cab76d18a6d" - }, - "pb-IF4FHxgY": { - "display_string": [ - "\ue063PoserSword", - "\ue030Android22922477" - ], - "profiles": [], - "name": "\ue063PoserSword", - "isBan": false, - "isMuted": false, - "accountAge": "2018-06-23 17:33:29", - "registerOn": 1670334892.9619994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334892.9620004, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334892.9620087, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334892.9620097, - "lastIP": "a\u007fk~~mgao`aje{", - "deviceUUID": "b2f597355fb4cff2dd6d731ea1b4bbdfd0db8f24" - }, - "pb-IF43UkIeEA==": { - "display_string": [ - "\ue030Android57703578" - ], - "profiles": [], - "name": "\ue030Android57703578", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-23 14:15:31", - "registerOn": 1670335040.8361874, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670335040.836188, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335040.8361974, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335040.8361983, - "lastIP": "dzva}h~~jcak", - "deviceUUID": "5eaa2179579df11349e60aba83c7ebd96066fccf" - }, - "pb-IF4-U0heCw==": { - "display_string": [ - "\ue020ArcticStatus25", - "\ue030Android63255168" - ], - "profiles": [], - "name": "\ue020ArcticStatus25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 17:00:28", - "registerOn": 1670335235.8373928, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670335235.8373938, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343596.6410909, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343596.6410923, - "lastIP": "a\u007fn~}ifaia~vaz`", - "deviceUUID": "338200d6d437250d44ad3a68eb1f01761bd4cdd3" - }, - "pb-IF4wU0RfVQ==": { - "display_string": [ - "\ue020PredictiveCucumber38" - ], - "profiles": [], - "name": "\ue020PredictiveCucumber38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-23 12:22:38", - "registerOn": 1670335643.2704384, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670335643.270439, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335643.2704487, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335643.2704494, - "lastIP": "azo~zi~~aeaje~", - "deviceUUID": "405405526a9fefa8398f6aff6f020b9f305aeb23" - }, - "pb-IF4LU005HA==": { - "display_string": [ - "\ue063Irascible6", - "\ue030Android61902421" - ], - "profiles": [], - "name": "\ue063Irascible6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 23:21:37", - "registerOn": 1670335792.2253563, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670335792.2253568, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335792.2254555, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335792.2254567, - "lastIP": "azo~zi~~agaif\u007f", - "deviceUUID": "d85050b9fe98d3fa76b6db9aa34aa38917637eb9" - }, - "pb-IF4pU1A-IQ==": { - "display_string": [ - "\ue030Android63998956" - ], - "profiles": [], - "name": "\ue030Android63998956", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 19:38:44", - "registerOn": 1670335795.2236857, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670335795.2236862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335795.2236958, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335795.2236967, - "lastIP": "axm~~ofao`aje", - "deviceUUID": "63a4117a1d0e28553ff0f2049cb693b2f5579ca7" - }, - "pb-IF4dU3dZHw==": { - "display_string": [ - "\ue030Android61429045", - "\ue030PC600983", - "\ue030PC601332" - ], - "profiles": [], - "name": "\ue030PC601332", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-25 17:41:33", - "registerOn": 1670335901.5617974, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670335901.5617979, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335901.5618067, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335901.5618074, - "lastIP": "d~vixva|`~}j", - "deviceUUID": "3baabc5b69e29039e3d9ac513191ad14d3bac0f8" - }, - "pb-IF4CU0gAMg==": { - "display_string": [ - "\ue020TrivialNeighbor48" - ], - "profiles": [], - "name": "\ue020TrivialNeighbor48", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-22 20:26:31", - "registerOn": 1670336321.1252081, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670336321.1252089, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336321.1252162, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336321.1252172, - "lastIP": "a|o~vo~~jca`b", - "deviceUUID": "0af2075be249f52b689b4f3ee6b7473d441e630e" - }, - "pb-IF4jVRMmUQ==": { - "display_string": [ - "\ue020nehelspm" - ], - "profiles": [], - "name": "\ue020nehelspm", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-21 19:47:41", - "registerOn": 1670336385.4933307, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670336385.4933314, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336385.4933393, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336385.4933407, - "lastIP": "azo~{m~}mdaja\u007f", - "deviceUUID": "8fa6b902b07824817dff2d82dc8ea2c38cc25e89" - }, - "pb-IF4BUxlSNg==": { - "display_string": [ - "\ue020ColTPaV", - "\ue030Android45054690" - ], - "profiles": [], - "name": "\ue020ColTPaV", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-30 20:22:56", - "registerOn": 1670336708.1064131, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670336708.1064138, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336708.1064236, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336708.1064243, - "lastIP": "azj~zo~}jhakh", - "deviceUUID": "\u0015\u0004Y\u0004V\u0017PZRVGQ\tXXF\u0002[YWFP_SSM" - }, - "pb-IF5dU08yUw==": { - "display_string": [ - "\ue030Android63906743" - ], - "profiles": [], - "name": "\ue030Android63906743", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 14:50:08", - "registerOn": 1670336783.0353587, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670336783.035359, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343297.572366, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343297.5723677, - "lastIP": "azo~{a~~neaj`y", - "deviceUUID": "670b7de8c0bbb117276732ff253cb69f094cf094" - }, - "pb-IF4hU0ooFw==": { - "display_string": [ - "\ue020newnoobgamingtamil", - "\ue030Android63487611" - ], - "profiles": [], - "name": "\ue020newnoobgamingtamil", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 14:52:45", - "registerOn": 1670336829.536829, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670336829.5368292, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336829.5368369, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336829.5368376, - "lastIP": "a\u007fn~~aha`hani", - "deviceUUID": "494de84801a36a34d38566db4eade578056955d9" - }, - "pb-IF4sVWoIIw==": { - "display_string": [ - "\ue020OutrageousLecturer43", - "\ue020WindowlessCovenant52", - "\ue063Anaerobic2" - ], - "profiles": [], - "name": "\ue063Anaerobic2", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-20 09:46:29", - "registerOn": 1670336949.7028337, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670336949.7028341, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336949.7028413, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336949.702842, - "lastIP": "a\u007fn~}ifaibwva~k", - "deviceUUID": "90a15f940e605fcfa9ccceebb83257d10177072a" - }, - "pb-IF4dU08xBg==": { - "display_string": [ - "\ue063haotruong1" - ], - "profiles": [], - "name": "\ue063haotruong1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 18:23:01", - "registerOn": 1670337314.6806595, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670337314.6806602, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337314.6806679, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337314.6806686, - "lastIP": "d}va~j~vh~~m", - "deviceUUID": "36bd7f1cd7da908afa464ede50a12cd76c024085" - }, - "pb-IF4BVWIzDg==": { - "display_string": [ - "\ue020CoastalToad55268" - ], - "profiles": [], - "name": "\ue020CoastalToad55268", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-18 11:09:57", - "registerOn": 1670337351.798301, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670337351.7983017, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337351.798312, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337351.7983127, - "lastIP": "b\u007fn~wl~}kbalg", - "deviceUUID": "d83443d4d0c7c043e32c1bcc335ba32c9aac11c8" - }, - "pb-IF42U08YIg==": { - "display_string": [ - "\ue063NoName56287c" - ], - "profiles": [], - "name": "\ue063NoName56287c", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 19:00:11", - "registerOn": 1670337392.2187831, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670337392.2187839, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337392.218791, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337392.218792, - "lastIP": "b\u007fk~~nhaje}ve{", - "deviceUUID": "5532d5289235c840436dbdf9997365cd491e8228" - }, - "pb-IF43VWMNFw==": { - "display_string": [ - "\ue063SeriousEle" - ], - "profiles": [], - "name": "\ue063SeriousEle", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-23 12:53:46", - "registerOn": 1670337437.1022358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670337437.1022365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337437.1022453, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337437.102246, - "lastIP": "a\u007fn~}i`aidvvby", - "deviceUUID": "7c2d70edd8e87adb184d586d4c7d66b60a3ad7ea" - }, - "pb-IF4HVVgjUA==": { - "display_string": [ - "\ue020ChangeableEagle25", - "\ue030Android53419150" - ], - "profiles": [], - "name": "\ue020ChangeableEagle25", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-20 09:56:08", - "registerOn": 1670337459.2056828, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670337459.2056835, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337459.205692, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337459.205693, - "lastIP": "a\u007fn~}hfaja}va{`", - "deviceUUID": "db96d612e64506e637eeb35d408f0b302287b347" - }, - "pb-IF4cU2UJCA==": { - "display_string": [ - "\ue020Raghav2655" - ], - "profiles": [], - "name": "\ue020Raghav2655", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-17 09:58:07", - "registerOn": 1670337881.6507773, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670337881.6507778, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337881.650785, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670347834.8336236, - "lastIP": "a\u007fk~~hdaih~vdx", - "deviceUUID": "\u0015S[SUL\u0002Z", - "cMsgCount": 0, - "lastMsgTime": 1670348848.5188951, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF5cUkoGBA==": { - "display_string": [ - "\ue063BestAdmire" - ], - "profiles": [], - "name": "\ue063BestAdmire", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-14 09:14:02", - "registerOn": 1670337944.8587286, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670337944.8587291, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337944.8587377, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337944.8587384, - "lastIP": "a~o~}jdajb|vi|", - "deviceUUID": "123381499a1bcf022970415e387b5bb16a6a9999" - }, - "pb-IF4AU2seNQ==": { - "display_string": [ - "\ue063DrierAcqui" - ], - "profiles": [], - "name": "\ue063DrierAcqui", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-09 22:32:08", - "registerOn": 1670337963.922187, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670337963.9221876, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337963.9222205, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337963.9222217, - "lastIP": "dvvc}vb|o~~af", - "deviceUUID": "034f19683dc12fe7cb1cf8e994dd456396cf310e" - }, - "pb-IF4FUxcfDw==": { - "display_string": [ - "\ue020SweetestFirm23" - ], - "profiles": [], - "name": "\ue020SweetestFirm23", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-26 14:31:34", - "registerOn": 1670337995.0700502, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670337995.070051, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337995.070059, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337995.07006, - "lastIP": "bxvf}vhwvhw", - "deviceUUID": "e4463844583c18e39521a0132ca04ea3d6c4c7ee" - }, - "pb-IF41V1oeMg==": { - "display_string": [ - "\ue063StoneGroce" - ], - "profiles": [], - "name": "\ue063StoneGroce", - "isBan": false, - "isMuted": false, - "accountAge": "2019-06-10 20:53:59", - "registerOn": 1670338073.3674004, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338073.367401, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338073.3674088, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338073.3674097, - "lastIP": "a~m~vn~}iiajby", - "deviceUUID": "34811af326bc992813c5e7803c99297e1ff02fba" - }, - "pb-IF4nU0MaVw==": { - "display_string": [ - "\ue020ArguableDisregard12" - ], - "profiles": [], - "name": "\ue020ArguableDisregard12", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-22 10:45:17", - "registerOn": 1670338174.5984874, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338174.5984879, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338174.5984952, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338174.598496, - "lastIP": "b}k~~`aaja}vb|k", - "deviceUUID": "cffe3d2e2ba02a4be01012aa870818a8039d37bd" - }, - "pb-IF4sU0cpKQ==": { - "display_string": [ - "\ue063PotentReco" - ], - "profiles": [], - "name": "\ue063PotentReco", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-18 20:37:55", - "registerOn": 1670338191.9282258, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338191.9282265, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338191.928236, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338191.9282367, - "lastIP": "azo~{a~yn~w`", - "deviceUUID": "88b8ed005dd447372d7da1ca0177465ba4a933e3" - }, - "pb-IF4mU2gMJg==": { - "display_string": [ - "\ue063DefiantFro" - ], - "profiles": [], - "name": "\ue063DefiantFro", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-29 18:09:39", - "registerOn": 1670338358.3375046, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338358.337505, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338358.3375123, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338358.337513, - "lastIP": "dvvc{va{j~vn", - "deviceUUID": "cf26a8c2724a1fde863bb7773e1500b643c8aa13" - }, - "pb-IF4SV2xaJA==": { - "display_string": [ - "\ue063OddScimita" - ], - "profiles": [], - "name": "\ue063OddScimita", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-14 12:23:24", - "registerOn": 1670338383.3665884, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338383.366589, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338383.3665981, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338383.366599, - "lastIP": "azo~|k~vl~}jf", - "deviceUUID": "1e766c1e79ee7ad16732ddf9393c076fad286e79" - }, - "pb-IF5cVXcFXQ==": { - "display_string": [ - "\ue030Android49994032" - ], - "profiles": [], - "name": "\ue030Android49994032", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-02 10:38:56", - "registerOn": 1670338396.4084299, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338396.4084303, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338396.4084375, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338396.4084382, - "lastIP": "a\u007fn~}icaje\u007fvhw", - "deviceUUID": "\u0015TUQWCQ\\VXFV\u000bXTFW\\SSERYYWFW" - }, - "pb-IF41VWEHFA==": { - "display_string": [ - "\ue020Tejaswalkoli2411", - "\ue030Android46338732" - ], - "profiles": [], - "name": "\ue020Tejaswalkoli2411", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-10 19:56:55", - "registerOn": 1670338516.8552022, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338516.855203, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338516.8552098, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338516.8552108, - "lastIP": "a\u007fk~~ofaihxva~o", - "deviceUUID": "3a002c8af576c1781c1f3eee5177b375717579fd", - "cMsgCount": 0, - "lastMsgTime": 1670339181.100443, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF43U3QvVg==": { - "display_string": [ - "\ue030Android62603660" - ], - "profiles": [], - "name": "\ue030Android62603660", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-11 16:08:13", - "registerOn": 1670338532.8928812, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338532.8928816, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338532.8928893, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338532.8928902, - "lastIP": "a~m~vn~xo~~mf", - "deviceUUID": "740c5a2526a0e4fe2c86455ff40daa341566fc2d" - }, - "pb-IF4KU3ktMQ==": { - "display_string": [ - "\ue020NicerChant21" - ], - "profiles": [], - "name": "\ue020NicerChant21", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-01 11:01:36", - "registerOn": 1670338601.1026573, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338601.1026576, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338601.102665, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338601.1026657, - "lastIP": "a\u007fn~xn~xh~~l`", - "deviceUUID": "b98cebeb15f3ce0fb833d89b28f5e8fa699b019d" - }, - "pb-IF4rEGIK": { - "display_string": [ - "\ue063Victorio13" - ], - "profiles": [], - "name": "\ue063Victorio13", - "isBan": false, - "isMuted": false, - "accountAge": "2018-06-08 19:31:38", - "registerOn": 1670338672.6203015, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338672.6203027, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338672.620312, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338672.6203132, - "lastIP": "a}j~~naaogaii}", - "deviceUUID": "588576056c4b3321055e7b6c1f8a385812d00a2a" - }, - "pb-IF4PVE4cMg==": { - "display_string": [ - "\ue063Karthick" - ], - "profiles": [], - "name": "\ue063Karthick", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-12 00:03:46", - "registerOn": 1670338751.6050045, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338751.605005, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338751.6050127, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670342963.3881876, - "lastIP": "azo~{n~~hiajd}", - "deviceUUID": "31be83d7d83ef8e1f50101132f4a1b94eeddd7d6" - }, - "pb-IF5dU0suLg==": { - "display_string": [ - "\ue020DARKsoulNiNJA01" - ], - "profiles": [], - "name": "\ue020DARKsoulNiNJA01", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-27 19:25:12", - "registerOn": 1670338810.8044646, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338810.804465, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338810.804477, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670340957.2357497, - "lastIP": "dxviaii\u007fvg\u007f", - "deviceUUID": "75fe8b211b78d8ffd7f087adb42d0b2dfd41ab0a" - }, - "pb-IF5WU0RSKw==": { - "display_string": [ - "\ue030Android63353151" - ], - "profiles": [], - "name": "\ue030Android63353151", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-16 22:03:19", - "registerOn": 1670338818.8090746, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338818.809075, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338818.809088, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338818.809089, - "lastIP": "aw`~~iia`~~aa", - "deviceUUID": "e4a7a659d2f4eb2ae30c8f1601b62aebc89cb025" - }, - "pb-IF4RU24pIA==": { - "display_string": [ - "\ue020FrouFrouJay10625", - "\ue020ROLEXsir1111", - "\ue020ROLEXsir7545", - "\ue030Android62004049", - "\ue030Android63999090" - ], - "profiles": [], - "name": "\ue020ROLEXsir1111", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-17 09:42:33", - "registerOn": 1670338903.1342645, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338903.1342654, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338903.1342762, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338903.1342773, - "lastIP": "a\u007fn~~aealeajaw", - "deviceUUID": "f9aa7100037cfe4c18449bf2fdaa6d2d9a7f62e6" - }, - "pb-IF42U2cHJA==": { - "display_string": [ - "\ue020DeepEnthusiasm48" - ], - "profiles": [], - "name": "\ue020DeepEnthusiasm48", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-25 15:04:18", - "registerOn": 1670339004.4822853, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670339004.4822857, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339004.4822927, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339004.4822938, - "lastIP": "azo~{n~~hbaiav", - "deviceUUID": "e1ab4980420b007c9405ffbf9bfb37d22867e0f9" - }, - "pb-IF4FU0wyXQ==": { - "display_string": [ - "\ue020BrassDoctor94896" - ], - "profiles": [], - "name": "\ue020BrassDoctor94896", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 13:58:23", - "registerOn": 1670339261.3631678, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670339261.3631685, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339261.3631778, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339261.3631787, - "lastIP": "bxvf~va{o~~ka", - "deviceUUID": "b97780b949efbb7b37aa5852d2a96a1f710806e4" - }, - "pb-IF4CVUsiNA==": { - "display_string": [ - "\ue020SilverDearth2041" - ], - "profiles": [], - "name": "\ue020SilverDearth2041", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-18 18:24:12", - "registerOn": 1670339332.5988607, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670339332.5988615, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339332.5988727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339332.5988736, - "lastIP": "a\u007fn~~ahajiaia{", - "deviceUUID": "4607a8256f80ac9a1b91fd085fe1ff52c736f07d" - }, - "pb-IF4lU00PEA==": { - "display_string": [ - "\ue063MrsSmoothy", - "\ue030Android62190140" - ], - "profiles": [], - "name": "\ue030Android62190140", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 21:07:55", - "registerOn": 1670339417.16045, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670339417.1604505, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339417.160459, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670340103.1113822, - "lastIP": "dvvd|vazm~~hf", - "deviceUUID": "014b00976f2c8cd83b1cb0f107296632148161af", - "cMsgCount": 0, - "lastMsgTime": 1670340758.6122563, - "lastMsg": "lol", - "cSameMsg": 0 - }, - "pb-IF4AU0IoCA==": { - "display_string": [ - "\ue020WeakerResonance54", - "\ue030Android59086177" - ], - "profiles": [], - "name": "\ue020WeakerResonance54", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-16 12:05:03", - "registerOn": 1670339498.244529, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670339498.2445297, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339498.2445405, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339498.2445414, - "lastIP": "azo~{m~}m`aja", - "deviceUUID": "7ac9de63f2e4630e30077ff336bbc5213b0a5362", - "cMsgCount": 0, - "lastMsgTime": 1670339820.7957923, - "lastMsg": "hi", - "cSameMsg": 0 - }, - "pb-IF5QVGZdEA==": { - "display_string": [ - "\ue020Vishnuly" - ], - "profiles": [], - "name": "\ue020Vishnuly", - "isBan": false, - "isMuted": false, - "accountAge": "2019-08-26 16:51:09", - "registerOn": 1670339805.4354608, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670339805.4354613, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339805.4354699, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339805.4354708, - "lastIP": "axi~xn~wh~}jb", - "deviceUUID": "2366c4c56c737a83e134081d5761ac9652a5c7e4" - }, - "pb-IF4WU1AvJw==": { - "display_string": [ - "\ue063PineRingBe" - ], - "profiles": [], - "name": "\ue063PineRingBe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 20:22:29", - "registerOn": 1670339875.643309, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670339875.6433096, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339875.6433172, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339875.6433182, - "lastIP": "d}va~`~vvawi", - "deviceUUID": "0b1e768ca51b525f4283e9673debc2a4722155fa" - }, - "pb-IF4GVWVYIA==": { - "display_string": [ - "\ue030Android47387591" - ], - "profiles": [], - "name": "\ue030Android47387591", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-30 06:24:28", - "registerOn": 1670339888.738607, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670339888.7386074, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339888.7386158, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339888.7386165, - "lastIP": "d|vbzh~}h`aob", - "deviceUUID": "\u0015S\tR" - }, - "pb-IF4mUlEICw==": { - "display_string": [ - "\ue063AgreedMono", - "\ue030Android56204072" - ], - "profiles": [], - "name": "\ue063AgreedMono", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-22 20:11:55", - "registerOn": 1670339908.7656593, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670339908.7656598, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339908.7656682, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339908.765669, - "lastIP": "a}j~~ofaiivvg}", - "deviceUUID": "130162b7627289d5d475ac0031d4adf2e4afdf0b" - }, - "pb-IF4VVXAqNQ==": { - "display_string": [ - "\ue063Keval1305" - ], - "profiles": [], - "name": "\ue063Keval1305", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-30 17:36:32", - "registerOn": 1670339992.0592542, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670339992.0592546, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339992.0592635, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670340462.479723, - "lastIP": "a\u007fk~}l`aj`vvb~", - "deviceUUID": "884483926648560270c129644fea217da8da8a1e" - }, - "pb-IF4hU04sMQ==": { - "display_string": [ - "\ue030Android63964858" - ], - "profiles": [], - "name": "\ue030Android63964858", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 20:56:55", - "registerOn": 1670340082.4017909, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340082.4017918, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340082.4018004, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340082.4018016, - "lastIP": "dxvbvviyviz", - "deviceUUID": "9248172dd0a316085e054c444c104bdc74083678" - }, - "pb-IF5VU3oeKQ==": { - "display_string": [ - "\ue020RoutineAuthorship51" - ], - "profiles": [], - "name": "\ue020RoutineAuthorship51", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-30 21:15:13", - "registerOn": 1670340135.634061, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340135.6340616, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340135.6340702, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340135.6340716, - "lastIP": "d}va\u007fl~~jiakf", - "deviceUUID": "f1940795b9a141a0fc87b46a5b2db47969498894" - }, - "pb-IF4VVWc4Eg==": { - "display_string": [ - "\ue063Recumbent2" - ], - "profiles": [], - "name": "\ue063Recumbent2", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-23 22:54:11", - "registerOn": 1670340231.8734145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340231.8734152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340231.8734245, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340231.8734255, - "lastIP": "cxva~k~~nhaib}", - "deviceUUID": "4c215457a799c9a6f39d602a84c96fdf14c58ba0" - }, - "pb-IF4mVWsmJA==": { - "display_string": [ - "\ue030Android48419571" - ], - "profiles": [], - "name": "\ue030Android48419571", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-21 19:19:29", - "registerOn": 1670340392.8182867, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340392.8182871, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340392.8182952, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670345210.399503, - "lastIP": "a\u007fn~}jba`~~nh", - "deviceUUID": "0e3cd647d64c59226bd281c2906b3f173281e5a1" - }, - "pb-IF4HU0xcPA==": { - "display_string": [ - "\ue063StingingSq", - "\ue030Android46802080" - ], - "profiles": [], - "name": "\ue063StingingSq", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 10:20:20", - "registerOn": 1670340393.5914392, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340393.59144, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340393.5914462, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340393.5914474, - "lastIP": "a\u007fk~~neaifxvfy", - "deviceUUID": "5293cec39d0c13d83c26c7842e5258217db4e718" - }, - "pb-IF4-U1BaKw==": { - "display_string": [ - "\ue063RustyJayha" - ], - "profiles": [], - "name": "\ue063RustyJayha", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 20:52:27", - "registerOn": 1670340401.6530092, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340401.65301, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340401.6530197, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340401.6530206, - "lastIP": "dvvc}va{l~~hg", - "deviceUUID": "540e172b71c57035d68ad098bc6e97906fe134d4" - }, - "pb-IF4RU3gIUw==": { - "display_string": [ - "\ue030Android62985132" - ], - "profiles": [], - "name": "\ue030Android62985132", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-28 19:13:26", - "registerOn": 1670340575.5174456, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340575.5174465, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340575.5174532, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340575.5174546, - "lastIP": "aakhaif{vb~k", - "deviceUUID": "\u0015RY\u0003YGRXTT@\u0004]WV\u0016T_YYMVZQQM" - }, - "pb-IF5XU2QgJw==": { - "display_string": [ - "\ue063DerisiveBr" - ], - "profiles": [], - "name": "\ue063DerisiveBr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-05 12:26:34", - "registerOn": 1670340649.4537358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340649.4537368, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340649.453746, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340649.4537473, - "lastIP": "azo~{i~~lbaib\u007f", - "deviceUUID": "425c73f8ee2dfebe0c802d314c63d59cd9860404" - }, - "pb-IF4jU0hTBg==": { - "display_string": [ - "\ue030Android63680318" - ], - "profiles": [], - "name": "\ue030Android63680318", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 21:42:01", - "registerOn": 1670340743.038409, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340743.0384095, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340743.038421, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340743.0384219, - "lastIP": "a\u007fk~~abaohaoi", - "deviceUUID": "fab077ff5060ade382d2129d38653ef0b6287744" - }, - "pb-IF4hU04fVg==": { - "display_string": [ - "\ue030Android63990451" - ], - "profiles": [], - "name": "\ue030Android63990451", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 18:47:55", - "registerOn": 1670340814.0353515, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340814.0353522, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340814.0353603, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340814.0353618, - "lastIP": "a\u007fj~~`eai`}vayl", - "deviceUUID": "f106a0a8ff17a421bd61b98fd82a7ebdc4f6de41" - }, - "pb-IF4FVFUxVw==": { - "display_string": [ - "\ue020MysteriousVehicle16" - ], - "profiles": [], - "name": "\ue020MysteriousVehicle16", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-28 10:43:04", - "registerOn": 1670340871.2440581, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340871.2440586, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340871.2440655, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340871.2440662, - "lastIP": "a~m~vn~}igaah", - "deviceUUID": "383cd4e472c5f366165e82a94c80499154a5b932", - "cMsgCount": 0, - "lastMsgTime": 1670340881.8275363, - "lastMsg": "are tej bcs super smash me khel.", - "cSameMsg": 0 - }, - "pb-IF5WU0kZJw==": { - "display_string": [ - "\ue030Android63692742" - ], - "profiles": [], - "name": "\ue030Android63692742", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-18 21:33:11", - "registerOn": 1670340919.4476616, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340919.4476624, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340919.4476717, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340919.4476726, - "lastIP": "dvvc{va~j~xi", - "deviceUUID": "4aedbcbff954be0702eaa7e85f70cd1b9194787d" - }, - "pb-IF4-UhkEAA==": { - "display_string": [ - "\ue063Northwes16", - "\ue030Android54761413" - ], - "profiles": [], - "name": "\ue063Northwes16", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-18 14:35:46", - "registerOn": 1670341023.867528, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670341023.8675284, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341023.8675356, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341023.8675363, - "lastIP": "b\u007fj~~lbaia|vbzj", - "deviceUUID": "ac5532438197adf0f54a40194895399ae4fe2fad" - }, - "pb-IF4qU2gzMA==": { - "display_string": [ - "\ue063amanpro1", - "\ue030Android61522201" - ], - "profiles": [], - "name": "\ue063amanpro1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-26 23:03:26", - "registerOn": 1670341038.9008214, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670341038.900822, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341038.9009116, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341038.9009125, - "lastIP": "dvvcxvcwva~m", - "deviceUUID": "6fba44493e03c45d45ca11b4dcf21d55283683c4", - "cMsgCount": 0, - "lastMsgTime": 1670341128.586691, - "lastMsg": "\ud83d\ude0e", - "cSameMsg": 0 - }, - "pb-IF4TUxAGNw==": { - "display_string": [ - "\ue063Profliga11", - "\ue030Android47146220" - ], - "profiles": [], - "name": "\ue063Profliga11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-27 18:27:02", - "registerOn": 1670341047.0774093, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670341047.0774097, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341047.0774188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341047.0774195, - "lastIP": "bxvc{vb}va}a", - "deviceUUID": "ecdee885b76055fa7d4aa97f77322c870c315195" - }, - "pb-IF4RVRETAg==": { - "display_string": [ - "\ue063hulk151120" - ], - "profiles": [], - "name": "\ue063hulk151120", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-14 21:55:27", - "registerOn": 1670341088.0580056, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670341088.058006, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341088.0580142, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341088.0580149, - "lastIP": "dvvcyvavva|`", - "deviceUUID": "33d86b3ee7ec78b61d0cc44dcba3cf4689dacd00" - }, - "pb-IF4-U0soEg==": { - "display_string": [ - "\ue020MassiveCough58" - ], - "profiles": [], - "name": "\ue020MassiveCough58", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 19:42:24", - "registerOn": 1670341270.8808856, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670341270.880886, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341270.8808947, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341270.8808954, - "lastIP": "hzva{h~yviv", - "deviceUUID": "0e7bf450283c5265c6c14e6cf991621b733501ec" - }, - "pb-IF5SU3kADA==": { - "display_string": [ - "\ue030Android62953595" - ], - "profiles": [], - "name": "\ue030Android62953595", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 12:01:41", - "registerOn": 1670341388.1654115, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670341388.1654122, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341388.1654212, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341388.1654227, - "lastIP": "a\u007fn~~agalbaigz", - "deviceUUID": "4605bc63cf207e5fd34194bbbdd5b997ce99695b" - }, - "pb-IF4BUxUTFA==": { - "display_string": [ - "\ue020FoolhardyLizard21681" - ], - "profiles": [], - "name": "\ue020FoolhardyLizard21681", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-18 18:00:57", - "registerOn": 1670341472.438712, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670341472.4387124, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341472.4387205, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341472.4387212, - "lastIP": "azo~zi~~ndaj`", - "deviceUUID": "f1f947ae7604a0c4efb7ec3b6818d9068c99af72" - }, - "pb-IF4gU0QnEQ==": { - "display_string": [ - "\ue020CumbersomeMeadow46" - ], - "profiles": [], - "name": "\ue020CumbersomeMeadow46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-28 14:51:38", - "registerOn": 1670341895.85768, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670341895.8576806, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341895.85769, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341895.857691, - "lastIP": "a~h~}jgameaiaw", - "deviceUUID": "7deff4a44cace92bf9d8612e46b0e2d4b6bdbae4" - }, - "pb-IF4hUk0xNg==": { - "display_string": [ - "\ue063SerratedSt" - ], - "profiles": [], - "name": "\ue063SerratedSt", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-08 12:41:43", - "registerOn": 1670341939.0488508, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670341939.0488513, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341939.0488594, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341939.04886, - "lastIP": "dvvc}va|i~{m", - "deviceUUID": "a9370f0a8775517cf51a1382c14b58685e499944" - }, - "pb-IF4GUhcxHA==": { - "display_string": [ - "\ue030Android54812141", - "\ue030Android54467269", - "\ue030Android54434099", - "\ue030Android54396539" - ], - "profiles": [], - "name": "\ue030Android54396539", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-04 08:43:39", - "registerOn": 1670342113.6011076, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670342113.6011083, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342113.6011176, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670342113.6011186, - "lastIP": "a|a~~ngaii|va", - "deviceUUID": "\u0015" - }, - "pb-IF4GU05ZKQ==": { - "display_string": [ - "\ue063BrickJeste" - ], - "profiles": [], - "name": "\ue063BrickJeste", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 19:58:56", - "registerOn": 1670342303.2682931, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670342303.2682936, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342303.2683027, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670342633.215056, - "lastIP": "azo~|j~}maaic\u007f", - "deviceUUID": "eff7bbe31328377f79e15983ab7aeb56b9511d5f" - }, - "pb-IF4TU04tXA==": { - "display_string": [ - "\ue030Android63923401" - ], - "profiles": [], - "name": "\ue030Android63923401", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 21:26:27", - "registerOn": 1670342338.5054343, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670342338.505435, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342338.5054433, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670342338.5054445, - "lastIP": "b\u007fi~~oeajd\u007fvb{", - "deviceUUID": "d63194a76f917af0d41abaa0eb9c434c7c5d6263" - }, - "pb-IF4yU0YDUw==": { - "display_string": [ - "\ue063SableIntim" - ], - "profiles": [], - "name": "\ue063SableIntim", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-12 19:09:30", - "registerOn": 1670342517.1059763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670342517.1059768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342517.1059866, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670344401.4635267, - "lastIP": "a\u007fn~~adajcwva{a", - "deviceUUID": "5640adb90d0941bba28eb5f30ee484c11a82e865" - }, - "pb-IF4gU0Q_Hw==": { - "display_string": [ - "\ue020StarredGondolier2087" - ], - "profiles": [], - "name": "\ue020StarredGondolier2087", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-29 14:08:08", - "registerOn": 1670342533.2696772, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670342533.2696776, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342533.2696865, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670342533.2696877, - "lastIP": "a\u007fn~}i`aih~vaxm", - "deviceUUID": "94176a35a9eed2d60c9ebfc527e156055440863b" - }, - "pb-IF4qVWg5MA==": { - "display_string": [ - "\ue063Engrossi18", - "\ue030Android46375615" - ], - "profiles": [], - "name": "\ue063Engrossi18", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-29 19:43:27", - "registerOn": 1670342660.708752, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670342660.7087526, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342660.7087615, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670353474.2122025, - "lastIP": "azo~{a~~`baif\u007f", - "deviceUUID": "2be21764e8da224ccf27d0bee62902aa1912ca03" - }, - "pb-IF4cU1BZXQ==": { - "display_string": [ - "\ue063CapitalOrd" - ], - "profiles": [], - "name": "\ue063CapitalOrd", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 21:26:53", - "registerOn": 1670342831.2751734, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670342831.2751741, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342831.275182, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670342831.275183, - "lastIP": "axi~}kdaieand", - "deviceUUID": "720eccd4923ceed7bd764b43f3158fed44ea2e7d" - }, - "pb-IF5dU3oyFw==": { - "display_string": [ - "\ue063StrongerK2" - ], - "profiles": [], - "name": "\ue063StrongerK2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-31 12:27:42", - "registerOn": 1670342845.411435, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670342845.411436, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342845.4114447, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670342845.4114456, - "lastIP": "d|vb{k~wj~~ae", - "deviceUUID": "941f7f5f0b22ad0604168bf9fbb5415eb95a3b9f" - }, - "pb-IF4DVU4tLA==": { - "display_string": [ - "\ue020Deepen31397" - ], - "profiles": [], - "name": "\ue020Deepen31397", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-01 12:22:37", - "registerOn": 1670342897.5945134, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670342897.5945141, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342897.5945225, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670356493.604779, - "lastIP": "b\u007fk~~`hajc\u007fvb\u007fo", - "deviceUUID": "c292249945838ecb281c5b8b7faa4353a83710e1" - }, - "pb-JiNJARFbXUtFXV9BGURWV1ZFGUBZQ1BA": { - "display_string": [ - "\ue063ARJUNVV288" - ], - "profiles": [], - "name": "\ue063ARJUNVV288", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-02 18:37:22", - "registerOn": 1670343068.079055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343068.0790555, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343068.0790627, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670343111.9102573, - "lastIP": "a\u007fk~{j~~aga`e", - "deviceUUID": "4f2fb1a47b1275e553a4a7f326b8d23ac38fa77d" - }, - "pb-IF4jUhIeAA==": { - "display_string": [ - "\ue063shashiHD", - "\ue030Android34814816" - ], - "profiles": [], - "name": "\ue063shashiHD", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-14 15:00:13", - "registerOn": 1670343081.148472, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343081.1484728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343081.1484814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343081.148482, - "lastIP": "azo~{m~wl~~ld", - "deviceUUID": "abe70bd0786978396dbeefa9cc09ffa26ad7733b" - }, - "pb-IF4RUlFSCA==": { - "display_string": [ - "\ue020UgliestThird46", - "\ue063Ambidextr8", - "\ue030Android59026321" - ], - "profiles": [], - "name": "\ue063Ambidextr8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-19 08:18:17", - "registerOn": 1670343217.6643054, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343217.6643062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343217.6643152, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343217.6643162, - "lastIP": "a~o~}icalhaja\u007f", - "deviceUUID": "81136ec8ce3b49c455e0316c9601bec99fb8e2fc" - }, - "pb-IF4iU0g-Ug==": { - "display_string": [ - "\ue063KimonoChen" - ], - "profiles": [], - "name": "\ue063KimonoChen", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 20:11:59", - "registerOn": 1670343416.320677, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343416.320678, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343416.3206868, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670344673.500147, - "lastIP": "dvvcxva\u007fo~z`", - "deviceUUID": "ddffe4aed4a4bcf493c53ef9f885e7f21edcff1c" - }, - "pb-IF5SU1E5VA==": { - "display_string": [ - "\ue030Android63977469" - ], - "profiles": [], - "name": "\ue030Android63977469", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 18:19:32", - "registerOn": 1670343448.4156666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343448.4156673, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343448.415676, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343448.415677, - "lastIP": "dvvcyvh}vb~l", - "deviceUUID": "a626e81f7eaa8314e31d25dbf158adb6b9da7aaa" - }, - "pb-IF5dVWsGUA==": { - "display_string": [ - "\ue020AlternativeCircle13" - ], - "profiles": [], - "name": "\ue020AlternativeCircle13", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-08 21:17:12", - "registerOn": 1670343459.4654012, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343459.4654016, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343459.4654105, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343459.4654117, - "lastIP": "b}k~}jean`a`c", - "deviceUUID": "3d5cdc3f97d6814ee4554340517e894c896d8301" - }, - "pb-IF4yU3gtIQ==": { - "display_string": [ - "\ue020BoastfulFaith8", - "\ue030Android63804874" - ], - "profiles": [], - "name": "\ue020BoastfulFaith8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-29 21:34:10", - "registerOn": 1670343513.6497552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343513.6497555, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343513.6497626, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343513.6497636, - "lastIP": "dvvc{vaza~~ke", - "deviceUUID": "819491f15487196c78fa426fb86e2f8e6f5f69ab" - }, - "pb-IF43UkU_Kg==": { - "display_string": [ - "\ue063CandidCors", - "\ue030Android56862232" - ], - "profiles": [], - "name": "\ue063CandidCors", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-01 22:32:05", - "registerOn": 1670343532.6947274, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343532.694728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343532.6947367, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343532.6947377, - "lastIP": "a~j~~keaobaidv", - "deviceUUID": "d2954da842d4bc14598d61624bbbd7fcd40ea246" - }, - "pb-IF48VUEdKQ==": { - "display_string": [ - "\ue063CurlyBrace" - ], - "profiles": [], - "name": "\ue063CurlyBrace", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-22 09:31:55", - "registerOn": 1670343661.1869156, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343661.1869159, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343661.186924, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343661.1869247, - "lastIP": "azo~{`~xj~}ld", - "deviceUUID": "b40a2a5b09946932988510cc95b89d8df63a72dd" - }, - "pb-IF4dV1EFDA==": { - "display_string": [ - "\ue063SachinSava", - "\ue030Android40001369", - "\ue030Android34742408" - ], - "profiles": [], - "name": "\ue063SachinSava", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-21 16:49:51", - "registerOn": 1670343770.8922238, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343770.8922243, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343770.892233, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343770.892234, - "lastIP": "azo~|o~~jiajc~", - "deviceUUID": "7ce96c79cccd3f16362f8a62fbed9f86bdf806e3" - }, - "pb-IF5UVWkuEw==": { - "display_string": [ - "\ue030Android62169386" - ], - "profiles": [], - "name": "\ue030Android62169386", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-22 22:09:48", - "registerOn": 1670343869.2297523, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343869.229753, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343869.2297626, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343869.2297635, - "lastIP": "b\u007fn~wl~}kfaaf", - "deviceUUID": "5c3b59b00c68cc267c4b2c93ddc87a01c4e5383f" - }, - "pb-IF5UUkMkVw==": { - "display_string": [ - "\ue063Instructi6", - "\ue030Android57438796" - ], - "profiles": [], - "name": "\ue063Instructi6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-18 11:22:09", - "registerOn": 1670343879.9166842, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343879.9166849, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343879.9166937, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670344338.241435, - "lastIP": "a\u007fn~xa~}hdaidv", - "deviceUUID": "6d205e8d920719adb983123b6f23b7ae2ee67121", - "cMsgCount": 0, - "lastMsgTime": 1670344053.2678149, - "lastMsg": "gg", - "cSameMsg": 0 - }, - "pb-IF4JU007VA==": { - "display_string": [ - "\ue020AuralBookworm41" - ], - "profiles": [], - "name": "\ue020AuralBookworm41", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 19:42:18", - "registerOn": 1670344212.1247869, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670344212.1247878, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344212.1247966, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670344212.1247976, - "lastIP": "dvvc{vaxi~}hf", - "deviceUUID": "9dfdec12df7b6397fc764cb9ccba5a56193d51dc" - }, - "pb-IF4cUloODA==": { - "display_string": [ - "\ue030Android59950580" - ], - "profiles": [], - "name": "\ue030Android59950580", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-23 15:22:53", - "registerOn": 1670344256.33425, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670344256.3342505, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344256.3342812, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670344256.3342822, - "lastIP": "b}k~~`baihxva{k", - "deviceUUID": "\u0015T\u000f\u0007SDX\u000bVVM" - }, - "pb-IF4dUmgyDQ==": { - "display_string": [ - "\ue063parshuavin" - ], - "profiles": [], - "name": "\ue063parshuavin", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-26 19:59:46", - "registerOn": 1670344328.6735716, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670344328.673572, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344328.6735802, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670346136.845685, - "lastIP": "a~h~}jdaiaxvi~", - "deviceUUID": "53c1080a8f8e941e645a6389d40ca7c4d3d8be9e" - }, - "pb-IF4TUmonHw==": { - "display_string": [ - "\ue020RajasPro" - ], - "profiles": [], - "name": "\ue020RajasPro", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-01 22:04:33", - "registerOn": 1670344386.698758, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670344386.6987586, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344386.6987677, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670344410.4988198, - "lastIP": "dvvc}vb\u007fj~~oi", - "deviceUUID": "40449c228a705ffddc06825501b4c3fd6df48f19" - }, - "pb-IF4nUk8SNg==": { - "display_string": [ - "\ue020BiswasCK" - ], - "profiles": [], - "name": "\ue020BiswasCK", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-13 22:23:03", - "registerOn": 1670344706.2722812, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670344706.2722816, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344706.2722902, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670344725.71094, - "lastIP": "dxva~vcwvgv", - "deviceUUID": "a9c6aaa4fdef6859363b6d89d2ce546f5e10fda2" - }, - "pb-IF49VRABPA==": { - "display_string": [ - "\ue063Tinymonk32" - ], - "profiles": [], - "name": "\ue063Tinymonk32", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-05 13:51:59", - "registerOn": 1670344741.1027625, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670344920.8857827, - "totaltimeplayer": 0, - "warnCount": 4, - "lastWarned": 1670344920.8844182, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670344741.1027722, - "lastIP": "a\u007fn~xa~~aiajdy", - "deviceUUID": "29e1203112e21de523201bd531eb48913cfbf6c5", - "cMsgCount": 0, - "lastMsgTime": 1670344920.884358, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF41VFMPNQ==": { - "display_string": [ - "\ue020SinkAiMehRan" - ], - "profiles": [], - "name": "\ue020SinkAiMehRan", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-11 00:01:41", - "registerOn": 1670344920.7385077, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670344920.738508, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344920.7385156, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670346593.7377918, - "lastIP": "azo~|l~yk~}he", - "deviceUUID": "\u0015PUP\u0005\u0017" - }, - "pb-IF4VU04CUA==": { - "display_string": [ - "\ue063zAuzaaaaa1" - ], - "profiles": [], - "name": "\ue063zAuzaaaaa1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 21:05:40", - "registerOn": 1670345535.9794552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670345535.979456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670345535.979466, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670345535.9794667, - "lastIP": "awn~~`iaoaajdx", - "deviceUUID": "934b585f1d03fdaabc53dc1fd512109326b8c217" - }, - "pb-IF4oU0YuVg==": { - "display_string": [ - "\ue020Lizowsowra" - ], - "profiles": [], - "name": "\ue020Lizowsowra", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-07 17:40:22", - "registerOn": 1670345591.186088, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670345591.1860888, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670345591.1860976, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670345591.1860983, - "lastIP": "b}k~}kiaagajb", - "deviceUUID": "1309f7f6682f791aa19e40c30d6f3a1fb40905d2" - }, - "pb-IF4pU00cVg==": { - "display_string": [ - "\ue030Android63894042" - ], - "profiles": [], - "name": "\ue030Android63894042", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 16:35:03", - "registerOn": 1670345689.46354, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670345689.4635403, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670345689.4635484, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670345689.4635491, - "lastIP": "a\u007fn~~acai`aoe", - "deviceUUID": "4e15762a1d40658098b00d486ddbfc17778afd19" - }, - "pb-IF4qCmET": { - "display_string": [ - "\ue020BackBrecker05" - ], - "profiles": [], - "name": "\ue020BackBrecker05", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-19 14:04:28", - "registerOn": 1670345786.9669368, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670345786.9669373, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670345786.9669461, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670345786.9669468, - "lastIP": "aakhaifzvayk", - "deviceUUID": "c7fc998afaccf5248913e24fef4dd5aa23b01b93" - }, - "pb-IF42U0tdVQ==": { - "display_string": [ - "\ue020JIHAN0218A" - ], - "profiles": [], - "name": "\ue020JIHAN0218A", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 22:54:23", - "registerOn": 1670345911.279007, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670345911.2790077, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670345911.279034, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670345911.2790349, - "lastIP": "aakhaid}ve\u007f", - "deviceUUID": "453316cf6e91c867c6a6e8d5ef095daa1023f6f8" - }, - "pb-IF4FU08hCQ==": { - "display_string": [ - "\ue063DanRex2006" - ], - "profiles": [], - "name": "\ue063DanRex2006", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 16:45:25", - "registerOn": 1670345957.6492267, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670345957.6492274, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670345957.6492357, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670345957.6492367, - "lastIP": "a~a~xk~~jaah", - "deviceUUID": "f4c48a4308160386bfbb4048550077c11d233a10" - }, - "pb-JiNJARBbXUdAVF5FF0BWXFRDEkZfQlRC": { - "display_string": [ - "\ue063MuhaiminSk", - "\ue030Android14882899" - ], - "profiles": [], - "name": "\ue063MuhaiminSk", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-13 20:00:43", - "registerOn": 1670346011.692214, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346011.6922145, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346011.692223, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346011.6922238, - "lastIP": "a\u007fk~vl~~kgaiiz", - "deviceUUID": "dce0e6d1ef092d7bbbcdc01096680681aeaad1fa" - }, - "pb-IF5VUlYhJw==": { - "display_string": [ - "\ue020Dominator9844" - ], - "profiles": [], - "name": "\ue020Dominator9844", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-30 13:47:27", - "registerOn": 1670346170.3916426, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346170.3916433, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346170.3916514, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346170.391652, - "lastIP": "azo~zh~zo~|a", - "deviceUUID": "49aba9148ddf7a23b2257abcdb8b9b0f0e4cddc9" - }, - "pb-IF4qU3A4Jg==": { - "display_string": [ - "\ue063MAHARSHI14" - ], - "profiles": [], - "name": "\ue063MAHARSHI14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-26 22:53:44", - "registerOn": 1670346282.788821, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346282.7888215, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346282.788831, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346282.788832, - "lastIP": "dvvd|vb\u007fh~vi", - "deviceUUID": "360b88d7040887ba22ca49514006fde69ef03bfd" - }, - "pb-IF4-U2suMg==": { - "display_string": [ - "\ue063Anthropolo" - ], - "profiles": [], - "name": "\ue063Anthropolo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-08 03:55:02", - "registerOn": 1670346341.4276035, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346341.427604, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670346600.4455264, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346341.4276118, - "lastIP": "h|vb}i~yn~}hb", - "deviceUUID": "f2d0566ea854aa6a61c7929e8cfc5d06b5e54f42", - "cMsgCount": 0, - "lastMsgTime": 1670346600.4457104, - "lastMsg": "pussys", - "cSameMsg": 0 - }, - "pb-IF4WU0kpNg==": { - "display_string": [ - "\ue030Android63737684" - ], - "profiles": [], - "name": "\ue030Android63737684", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 14:28:34", - "registerOn": 1670346370.2462375, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346370.246238, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346370.2462468, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346370.246248, - "lastIP": "a\u007fn~~aeaieajax", - "deviceUUID": "60e5f649e0240fcf66867cdb6dcacdb51a43f678" - }, - "pb-IF4UVEMHAg==": { - "display_string": [ - "\ue030Android41592779" - ], - "profiles": [], - "name": "\ue030Android41592779", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-09 11:45:23", - "registerOn": 1670346374.2746387, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346374.274639, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346374.2746468, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346374.2746477, - "lastIP": "a\u007fn~}ifa`haiex", - "deviceUUID": "ce334ea4e6cc9a683da505d54549af924c681734" - }, - "pb-IF4QU0kHPA==": { - "display_string": [ - "\ue020ZeroSnow19056" - ], - "profiles": [], - "name": "\ue020ZeroSnow19056", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 23:58:47", - "registerOn": 1670346464.5984795, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346464.5984807, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346464.5984907, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346464.5984914, - "lastIP": "dvvc}vava~~m", - "deviceUUID": "dbb07b84b2dc828cb68794d17cab5762be3418de" - }, - "pb-IF4KUhJbBw==": { - "display_string": [ - "\ue063paradoxffH" - ], - "profiles": [], - "name": "\ue063paradoxffH", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-10 22:08:10", - "registerOn": 1670346476.1135232, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346476.113524, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346476.1135342, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346476.1135352, - "lastIP": "dxvc~vixvav`", - "deviceUUID": "7454af18b49e1f4590444aca6872bf493222fd2c" - }, - "pb-IF4RU00sAA==": { - "display_string": [ - "\ue063AccursedCe" - ], - "profiles": [], - "name": "\ue063AccursedCe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 23:00:57", - "registerOn": 1670346597.124075, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346597.124076, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346597.1241593, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346597.12416, - "lastIP": "a~o~}jcaidzvdw", - "deviceUUID": "1fc082d755c33870ef49891adec076985ee0b342" - }, - "pb-IF4QUxcxFA==": { - "display_string": [ - "\ue020DevilsonDhivagar", - "\ue030Android60713283" - ], - "profiles": [], - "name": "\ue020DevilsonDhivagar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-25 10:32:31", - "registerOn": 1670346719.492304, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346719.4923048, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346719.492314, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346719.4923153, - "lastIP": "aakhaiixvc\u007f", - "deviceUUID": "b395da26d0a5a77500c2e6d9860123cf2b90af98" - }, - "pb-IF4cU0lZAw==": { - "display_string": [ - "\ue020Shrirajpooja00" - ], - "profiles": [], - "name": "\ue020Shrirajpooja00", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 15:24:32", - "registerOn": 1670346763.6410358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346763.6410365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346763.641046, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346763.641047, - "lastIP": "b\u007fk~~abaje|vava", - "deviceUUID": "3507078298f9660d99c8bb6b2c35626d2f795c0f" - }, - "pb-IF4FU0waDw==": { - "display_string": [ - "\ue063RubyRingBe" - ], - "profiles": [], - "name": "\ue063RubyRingBe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 20:16:15", - "registerOn": 1670346780.8853247, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346780.8853252, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670347131.4074423, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346780.8853366, - "lastIP": "d}va\u007fn~}i~|o", - "deviceUUID": "2e1f4f718fe7d62bf7e6adbdb465882221370c48", - "cMsgCount": 0, - "lastMsgTime": 1670347131.4073675, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4rU0wZCg==": { - "display_string": [ - "\ue063Disingenu8", - "\ue030Android58517688" - ], - "profiles": [], - "name": "\ue030Android58517688", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 12:37:07", - "registerOn": 1670346817.0747364, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346817.0747368, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346817.0747478, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346817.0747488, - "lastIP": "a\u007fm~~hfajdajcz", - "deviceUUID": "a4ab25be984f5e30a2e3800ea176b1513aa7cdb9" - }, - "pb-IF4iU3M8EA==": { - "display_string": [ - "\ue020hariharan371" - ], - "profiles": [], - "name": "\ue020hariharan371", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-10 18:49:21", - "registerOn": 1670346997.8361568, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346997.8361578, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346997.8361669, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346997.836168, - "lastIP": "azo~zi~~maaie{", - "deviceUUID": "ea31319a574969915a79f7b8978ab9f22ec35f44" - }, - "pb-IF4RU0s-Fg==": { - "display_string": [ - "\ue063Ecologic10" - ], - "profiles": [], - "name": "\ue063Ecologic10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 11:21:17", - "registerOn": 1670347325.9515867, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670347325.951587, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347325.9515975, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670347325.9515986, - "lastIP": "d|vb{j~~j`aiew", - "deviceUUID": "a3a7dd8c755c6e1a44b8ad36c11baad7fb07db1e" - }, - "pb-IF4RU3c6Jg==": { - "display_string": [ - "\ue020virenpanchal1313" - ], - "profiles": [], - "name": "\ue020virenpanchal1313", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-23 17:08:51", - "registerOn": 1670347416.3832989, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670347416.3832994, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347416.3833091, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670347479.3397582, - "lastIP": "dvvc{vg}va\u007fo", - "deviceUUID": "ac80bdc8d1dd8b3a4b1ea0df68400ff9dd3f7256" - }, - "pb-IF4xMkpd": { - "display_string": [ - "\ue063ValiantThu", - "\ue030Android49347344", - "\ue030Android19900192", - "\ue030Android29110802" - ], - "profiles": [], - "name": "\ue063ValiantThu", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-30 19:59:27", - "registerOn": 1670347486.750208, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670347486.7502086, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347486.750218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670347486.750219, - "lastIP": "a\u007fk~~agaia|va}`", - "deviceUUID": "3ff4371b6328ec50bd079c81307f23db31946d03", - "cMsgCount": 0, - "lastMsgTime": 1670349029.7751834, - "lastMsg": "bah", - "cSameMsg": 0 - }, - "pb-IF4XNWsZ": { - "display_string": [ - "\ue063Hmm183" - ], - "profiles": [], - "name": "\ue063Hmm183", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-24 16:48:50", - "registerOn": 1670347531.0128837, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670347531.0128844, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670347654.664607, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670347877.0008335, - "lastIP": "dvvb\u007fo~}hgaoc", - "deviceUUID": "a349d990177729d659210410596a8e02db81ddcc", - "cMsgCount": 2, - "lastMsgTime": 1670347898.3941052, - "lastMsg": "bye", - "cSameMsg": 0 - }, - "pb-IF4lU005Jw==": { - "display_string": [ - "\ue063SinisterCa" - ], - "profiles": [], - "name": "\ue063SinisterCa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 16:14:02", - "registerOn": 1670348041.109112, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670348041.1091125, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670348041.1091206, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670348041.1091216, - "lastIP": "azo~{m~}liajd|", - "deviceUUID": "2c5826226d76b4f3ce8a3d2d3137f1c211315e9d" - }, - "pb-IF4XUhA8VQ==": { - "display_string": [ - "\ue020SupernaturalDozen14" - ], - "profiles": [], - "name": "\ue020SupernaturalDozen14", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-03 23:39:57", - "registerOn": 1670348215.8337095, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670348215.8337102, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670348215.8337185, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670348215.8337195, - "lastIP": "hwvayh~|a~~ma", - "deviceUUID": "51de90e18f4f4f251a6d2985fc26168ceeb13d72" - }, - "pb-IF5dU3USEQ==": { - "display_string": [ - "\ue020IvoryFormality24" - ], - "profiles": [], - "name": "\ue020IvoryFormality24", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-11 19:22:22", - "registerOn": 1670348507.0564573, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670348507.0564578, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670348507.0564663, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670348507.0564675, - "lastIP": "a\u007fn~~acaig|ve~", - "deviceUUID": "3455cb6db05135135a8bdf3dc77b797427a245df" - }, - "pb-IF5UVVMgIA==": { - "display_string": [ - "\ue063Tractable2" - ], - "profiles": [], - "name": "\ue063Tractable2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-17 21:42:14", - "registerOn": 1670348582.417031, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670348582.4170318, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670348582.417042, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670348582.4170427, - "lastIP": "dvvc}vb|m~~hh", - "deviceUUID": "ed17f8f60636deefe20f41bb3951b327374239c5" - }, - "pb-IF4PU00PAw==": { - "display_string": [ - "\ue063arunesh99" - ], - "profiles": [], - "name": "\ue063arunesh99", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 22:15:43", - "registerOn": 1670348946.9775016, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670348946.977502, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670348946.9775107, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670348946.9775114, - "lastIP": "a\u007fk~{k~}h`aidy", - "deviceUUID": "e0f2cd0d90ca8db41b6958d2b9f5a5a645e4302a" - }, - "pb-IF41U0wEVA==": { - "display_string": [ - "\ue063Honorabl20" - ], - "profiles": [], - "name": "\ue063Honorabl20", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 14:06:54", - "registerOn": 1670349090.7417576, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670349090.741758, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670349090.741766, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670349090.7417672, - "lastIP": "a\u007fk~~aeaj`}vbzl", - "deviceUUID": "5399f6d70bf7d4343680cab6c8355d7ab478a4b3" - }, - "pb-IF41U005DQ==": { - "display_string": [ - "\ue063YEGbs" - ], - "profiles": [], - "name": "\ue063YEGbs", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 19:06:21", - "registerOn": 1670349907.0626075, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670349907.0626085, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670349907.0626178, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670349907.0626187, - "lastIP": "a\u007fa~}i`ameajb~", - "deviceUUID": "a6e39f5fd56f259fdb3c795552874b868e87bcc6" - }, - "pb-IF4lU0pZLA==": { - "display_string": [ - "\ue063Northerly5" - ], - "profiles": [], - "name": "\ue063Northerly5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 13:08:08", - "registerOn": 1670350283.6567082, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670350283.6567094, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670356942.0094352, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670356548.8296356, - "lastIP": "azo~|l~~hfaii}", - "deviceUUID": "2d9c93c6ad9c4ccce23f01141e0c6c2bfbbedce1", - "cMsgCount": 0, - "lastMsgTime": 1670357978.3901784, - "lastMsg": "kya", - "cSameMsg": 0 - }, - "pb-JiNJVxBfVENDWF1GEEFRV11HF0ZYQFRE": { - "display_string": [ - "\ue063Jenishmodi" - ], - "profiles": [], - "name": "\ue063Jenishmodi", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-10 15:40:01", - "registerOn": 1670350562.4859262, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670350562.4859266, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670350562.4859352, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670350562.485936, - "lastIP": "azj~z`~|n~~kf", - "deviceUUID": "2b350f8aa01d4ee858817abf3e27635e71a28282" - }, - "pb-IF4OU1BfLA==": { - "display_string": [ - "\ue063sanka45678" - ], - "profiles": [], - "name": "\ue063sanka45678", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 12:12:44", - "registerOn": 1670350621.3491118, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670350621.3491125, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670350621.349124, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670350621.349125, - "lastIP": "a~j~~kdajdzvb{j", - "deviceUUID": "0ba52aa2aba20dde52978a3107c093d7cc011626" - }, - "pb-IF5RU00ZXA==": { - "display_string": [ - "\ue020PutativeFoe61" - ], - "profiles": [], - "name": "\ue020PutativeFoe61", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 23:21:04", - "registerOn": 1670351229.670523, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670351229.6705234, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670351229.6705337, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670351229.6705346, - "lastIP": "a~o~v`~~iiakf", - "deviceUUID": "0bd384cc42547a0bfead5e4061e718af8724fd29" - }, - "pb-IF4oDWRe": { - "display_string": [ - "\ue063WaryRider8" - ], - "profiles": [], - "name": "\ue063WaryRider8", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-13 22:02:31", - "registerOn": 1670351258.101326, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670351258.1013267, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670351258.1013346, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670351258.1013355, - "lastIP": "a\u007fn~~aea`~x", - "deviceUUID": "3613c202752f6bbe55730fdf6453fbdda0546460" - }, - "pb-IF4pU0cHIA==": { - "display_string": [ - "\ue063HipUnicorn" - ], - "profiles": [], - "name": "\ue063HipUnicorn", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 08:16:04", - "registerOn": 1670351424.3635006, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670351424.3635013, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670351424.3635092, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670351424.3635104, - "lastIP": "a}l~~jcaih~vawk", - "deviceUUID": "9998a2c7616974e5c675893bf420daadd01c028c" - }, - "pb-IF4vU04bUg==": { - "display_string": [ - "\ue063OrdinaryLe" - ], - "profiles": [], - "name": "\ue063OrdinaryLe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 16:33:33", - "registerOn": 1670351467.5326383, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670351467.5326388, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670351467.5326493, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670351467.5326505, - "lastIP": "azo~|m~~m~zn", - "deviceUUID": "43d89ca6aa391f9dc5428e7343864b11d1ad414d" - }, - "pb-IF4TU3EfNw==": { - "display_string": [ - "\ue020LaxCurb126" - ], - "profiles": [], - "name": "\ue020LaxCurb126", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-02 17:47:59", - "registerOn": 1670353082.7043333, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670353082.7043338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353082.7043424, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670353082.7043433, - "lastIP": "aaihxvhvvh", - "deviceUUID": "a81650ce59653c7273c79385cd3c804e2efc2c5d", - "cMsgCount": 0, - "lastMsgTime": 1670353662.6206582, - "lastMsg": "\ud83e\udd23\ud83e\udd23", - "cSameMsg": 0 - }, - "pb-IF5XUmgSJA==": { - "display_string": [ - "\ue063NoName38501b" - ], - "profiles": [], - "name": "\ue063NoName38501b", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-15 20:54:21", - "registerOn": 1670353120.1340988, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670353120.1340992, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353120.1341064, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670353120.1341074, - "lastIP": "a}l~zk~z`~{o", - "deviceUUID": "d63239a5bd33fdeebf979bb7b7c61b36bd37c5f4" - }, - "pb-IF4CU3QEFQ==": { - "display_string": [ - "\ue030Android62648900" - ], - "profiles": [], - "name": "\ue030Android62648900", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-13 15:24:21", - "registerOn": 1670353415.1211934, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670353415.1211941, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353415.1212034, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670353535.4644165, - "lastIP": "a\u007fk~~oaaj`\u007fvf|", - "deviceUUID": "73b6499bfee28da86faf7f3b2f852fe34a03d6a5" - }, - "pb-IF4HU1AnIw==": { - "display_string": [ - "\ue063GrimStakes" - ], - "profiles": [], - "name": "\ue063GrimStakes", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-07 00:30:07", - "registerOn": 1670353423.2185583, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670353423.2185588, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353423.218567, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670354552.6423726, - "lastIP": "a|o~vo~ya~zm", - "deviceUUID": "a5dc3776ef893cd1e1a3344931a5e3f39645382b" - }, - "pb-IF4rU1A6HQ==": { - "display_string": [ - "\ue063ismailalac" - ], - "profiles": [], - "name": "\ue063ismailalac", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 20:39:37", - "registerOn": 1670353492.5995445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670353492.5995452, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353492.5995538, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670353492.5995548, - "lastIP": "eajdajc{va}o", - "deviceUUID": "a49d1d01775d220c5f072f649916f89abd865ca1" - }, - "pb-IF4gU0Y7AQ==": { - "display_string": [ - "\ue020IndependentBoard34" - ], - "profiles": [], - "name": "\ue020IndependentBoard34", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 21:50:23", - "registerOn": 1670353765.073014, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670353765.0730145, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353765.0730238, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670353765.0730247, - "lastIP": "azo~{m~}leamf", - "deviceUUID": "f03172fe2a449fcc17773aad18f0af7cfff7aeb8", - "cMsgCount": 0, - "lastMsgTime": 1670354204.4623644, - "lastMsg": "Mai bhi jaa rahi sone\ud83d\udc80", - "cSameMsg": 0 - }, - "pb-IF4yU2sFEQ==": { - "display_string": [ - "\ue030Android62073479" - ], - "profiles": [], - "name": "\ue030Android62073479", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 14:26:16", - "registerOn": 1670353827.3070753, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670353827.3070757, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353827.3070848, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670353827.3070855, - "lastIP": "d|vbzh~~miaif\u007f", - "deviceUUID": "\u0015XXXRFWTTV\u0015R\u000bUXMVTPYLX[VRM" - }, - "pb-IF5UU1AmIQ==": { - "display_string": [ - "\ue020UnalteredHymn2273" - ], - "profiles": [], - "name": "\ue020UnalteredHymn2273", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 14:26:25", - "registerOn": 1670354159.9339242, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670354159.9339247, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670354159.9339347, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670354159.9339356, - "lastIP": "awi~~idaib}va|", - "deviceUUID": "3e599f6cbf7ed6f44f1d5b1fa31669228513ecf5" - }, - "pb-IF4TVGIONQ==": { - "display_string": [ - "\ue063ViciousFon" - ], - "profiles": [], - "name": "\ue063ViciousFon", - "isBan": false, - "isMuted": false, - "accountAge": "2019-08-22 15:31:31", - "registerOn": 1670354339.6950152, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670354339.695016, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670354762.109486, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670354339.6950254, - "lastIP": "dvvcyvc}va~j", - "deviceUUID": "e5bfb38924deae30cb9d273f4445b69fb1a60681", - "cMsgCount": 0, - "lastMsgTime": 1670355009.0030503, - "lastMsg": "run boys", - "cSameMsg": 0 - }, - "pb-IF43U2szXQ==": { - "display_string": [ - "\ue020vedhu74" - ], - "profiles": [], - "name": "\ue020vedhu74", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-08 17:26:37", - "registerOn": 1670355176.8719523, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670355176.8719532, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670355176.8719606, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670355176.8719614, - "lastIP": "azo~zh~zn~~`g", - "deviceUUID": "\u0015" - }, - "pb-JiNJARFaUUNEVVlCE0NTVVFEEUFYT1NG": { - "display_string": [ - "\ue063Trickste14" - ], - "profiles": [], - "name": "\ue063Trickste14", - "isBan": false, - "isMuted": false, - "accountAge": "2017-02-18 14:35:58", - "registerOn": 1670355409.6235325, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670355409.623533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670355409.6235418, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670355409.6235428, - "lastIP": "azo~|j~~igaka", - "deviceUUID": "269de5dc01cf504d2a36b3df4a8a15c9c04b7f1f" - }, - "pb-JiNJARFZUUZEXVtCFUVTUlxDGUVfQFFB": { - "display_string": [ - "\ue063ChestnutVo", - "\ue030Android14303943" - ], - "profiles": [], - "name": "\ue063ChestnutVo", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-11 13:26:36", - "registerOn": 1670355808.5153575, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670355808.515358, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670355808.5153697, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670355808.5153706, - "lastIP": "dvvcyvb|k~~hb", - "deviceUUID": "faf7bfc5a11a8a6239baa53fad6bc8a6613d2c90" - }, - "pb-IF42U08NIA==": { - "display_string": [ - "\ue020VainNymph11222", - "\ue030Android63987492", - "\ue030Android62046192" - ], - "profiles": [], - "name": "\ue030Android63987492", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 04:34:20", - "registerOn": 1670356181.422779, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670356181.4227796, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670356181.422788, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670356181.4227889, - "lastIP": "awi~~ieaif~vd~", - "deviceUUID": "430b03230eaf19fb14461e11e07c0c30eb561f3b" - }, - "pb-IF4TUnIzNQ==": { - "display_string": [ - "\ue063Engrossin3" - ], - "profiles": [], - "name": "\ue063Engrossin3", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-10 16:14:58", - "registerOn": 1670356219.6794536, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670356219.6794546, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670356353.3494902, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670358463.514206, - "lastIP": "azj~zo~zj~vi", - "deviceUUID": "5e075ff55d844c053431f17e4bb528701f75add5", - "cMsgCount": 0, - "lastMsgTime": 1670356353.3495123, - "lastMsg": "chutiya chintu", - "cSameMsg": 0 - }, - "pb-IF5cU2haHA==": { - "display_string": [ - "\ue063ASSASSINBA" - ], - "profiles": [], - "name": "\ue063ASSASSINBA", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-18 21:32:28", - "registerOn": 1670356367.3844233, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670356367.3844237, - "totaltimeplayer": 0, - "warnCount": 3, - "lastWarned": 1670359224.753352, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670358173.1075954, - "lastIP": "b}k~~`faic|ve|", - "deviceUUID": "94eda402e26e331e774eadd614e05ef7ad6397ac", - "cMsgCount": 0, - "lastMsgTime": 1670359800.8844407, - "lastMsg": "BRUH", - "cSameMsg": 0 - }, - "pb-IF4VVVEFAQ==": { - "display_string": [ - "\ue063mike110900" - ], - "profiles": [], - "name": "\ue063mike110900", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-20 13:04:52", - "registerOn": 1670356808.0441456, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670356808.044146, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670356808.0441554, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670356808.0441568, - "lastIP": "a\u007fn~}hhaibaig|", - "deviceUUID": "5e153f1bf8b62d62215c154a32550dbbd87996bc" - }, - "pb-IF4zC1Ap": { - "display_string": [ - "\ue020HypnoticAlliance6502", - "\ue030Android23747296" - ], - "profiles": [], - "name": "\ue020HypnoticAlliance6502", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-26 15:30:19", - "registerOn": 1670356895.768411, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670356895.7684112, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670356895.76842, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670357033.5330324, - "lastIP": "dvvb\u007fl~~kbaif", - "deviceUUID": "efee2c2113347d0087684cc34efe9b82a58ad1f0", - "cMsgCount": 0, - "lastMsgTime": 1670357740.364204, - "lastMsg": "gg", - "cSameMsg": 0 - }, - "pb-IF4MUnBbPw==": { - "display_string": [ - "\ue030Android56347751" - ], - "profiles": [], - "name": "\ue030Android56347751", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-28 14:54:39", - "registerOn": 1670357181.0882378, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670357181.0882385, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670357181.0882485, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670357181.0882497, - "lastIP": "avo~}iaamhajd", - "deviceUUID": "937b3ed512df7e5944aad1a0ff5d272cf1f01597" - }, - "pb-IF4BUkMkBg==": { - "display_string": [ - "\ue030Android57770388" - ], - "profiles": [], - "name": "\ue030Android57770388", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-26 02:02:17", - "registerOn": 1670357227.1507597, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670357227.1507602, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670357227.1507714, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670357227.1507726, - "lastIP": "a\u007fk~~nbajayva|i", - "deviceUUID": "\u0015W]YT\u0011U_\u0002\u0002\u0010Q\u000bQ\u0002B\u0002[RU@WYXRC" - }, - "pb-IF4CVUwbLw==": { - "display_string": [ - "\ue030Android52260302" - ], - "profiles": [], - "name": "\ue030Android52260302", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-26 02:45:09", - "registerOn": 1670357511.9389925, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670357511.938993, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670357511.9390006, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670359366.0757296, - "lastIP": "dvvcyvc}va~j", - "deviceUUID": "1a8150d84fb122c7b1632a916a8d846103a237d6", - "cMsgCount": 0, - "lastMsgTime": 1670359493.8932016, - "lastMsg": "end pls", - "cSameMsg": 0 - }, - "pb-IF5UU0QiUQ==": { - "display_string": [ - "\ue063ApKaAbuu", - "\ue030Android59817678", - "\ue030Android63361491" - ], - "profiles": [], - "name": "\ue063ApKaAbuu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-17 07:28:29", - "registerOn": 1670357923.4600525, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670357923.460053, - "totaltimeplayer": 0, - "warnCount": 3, - "lastWarned": 1670358758.4049983, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670357923.4600625, - "lastIP": "a}i~vi~{k~ya", - "deviceUUID": "247b57ac4bcbcebe10e88ce1fac1a1a4d0e25cc9", - "cMsgCount": 0, - "lastMsgTime": 1670358809.8463717, - "lastMsg": "lag f", - "cSameMsg": 0 - }, - "pb-IF4TVUZbEA==": { - "display_string": [ - "\ue063LeggedAchi" - ], - "profiles": [], - "name": "\ue063LeggedAchi", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-18 14:59:35", - "registerOn": 1670358080.0569866, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670358080.056987, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670358080.0573366, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670358080.0573375, - "lastIP": "azo~|l~}jdaia\u007f", - "deviceUUID": "5355b88a6335b4b0be8f4ade60d8d305c5422452" - }, - "pb-IF4WU00lFQ==": { - "display_string": [ - "\ue063CrushedLe2" - ], - "profiles": [], - "name": "\ue063CrushedLe2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 19:57:38", - "registerOn": 1670358150.3993948, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670358150.3993952, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670358150.399403, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670358150.399404, - "lastIP": "azj~zo~}l`aii~", - "deviceUUID": "fa3a99ac4dcd4f3661b9d396a72ea8311c27ba54" - }, - "pb-IF4FVXoRIw==": { - "display_string": [ - "\ue063Uninvited5", - "\ue030Android39081970" - ], - "profiles": [], - "name": "\ue063Uninvited5", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-18 19:37:31", - "registerOn": 1670358474.9075394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670358474.90754, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670358474.907548, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670358474.9075487, - "lastIP": "a|n~~niaii{vaza", - "deviceUUID": "48a9589729597e5a522f1c0250086694bf2aab8d" - }, - "pb-IF5SU0hTEw==": { - "display_string": [ - "\ue063VeteranGuy" - ], - "profiles": [], - "name": "\ue063VeteranGuy", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 14:03:11", - "registerOn": 1670358959.8816469, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670358959.8816473, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670358959.881655, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670358959.8816562, - "lastIP": "dvvcxvb|k~~a", - "deviceUUID": "c3d0e08f57973b778f297219e4751dbafcd9369e", - "cMsgCount": 0, - "lastMsgTime": 1670359168.4138572, - "lastMsg": "hi", - "cSameMsg": 0 - }, - "pb-IF5WU2E5PQ==": { - "display_string": [ - "\ue030Android60777465" - ], - "profiles": [], - "name": "\ue030Android60777465", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-28 00:53:12", - "registerOn": 1670359004.8619003, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670359004.8619008, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670359004.861909, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670359004.86191, - "lastIP": "azi~{j~}i`aig\u007f", - "deviceUUID": "627d52bae3891cf754503c421ac837fe672fcded" - }, - "pb-IF4BUkVYUA==": { - "display_string": [ - "\ue020AloneTraveler007", - "\ue030Android30841052" - ], - "profiles": [], - "name": "\ue020AloneTraveler007", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-01 02:11:16", - "registerOn": 1670359058.4074655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670359058.4074662, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670359058.407475, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670359058.407476, - "lastIP": "a\u007fn~}jbanhand", - "deviceUUID": "\u0015QUUX\u0015\u0005TXS\u0010T]\u0005P\u0010Y\\TPDVZVSDV" - }, - "pb-IF48U0YAMQ==": { - "display_string": [ - "\ue020WolfViperCr7" - ], - "profiles": [], - "name": "\ue020WolfViperCr7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-09 04:00:05", - "registerOn": 1670359092.3219705, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670359092.321971, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670359092.32198, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670359092.321981, - "lastIP": "azo~{a~yl~~l", - "deviceUUID": "cbc804f7ed36896ecf8add8a57eb7339787e0ffc" - }, - "pb-IF4IV1BZVw==": { - "display_string": [ - "\ue063HellalSouh", - "\ue030Android33740360", - "\ue030Android48195571", - "\ue030Android45997838", - "\ue030Android36441516" - ], - "profiles": [], - "name": "\ue063HellalSouh", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-12 19:08:55", - "registerOn": 1670359543.3102126, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670359543.3102133, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670359543.3102207, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670359543.3102221, - "lastIP": "avo~}hgamaa`c", - "deviceUUID": "dc690c37b4f23918c647a150f2db117ffbd6e8d5" - } -} \ No newline at end of file diff --git a/dist/ba_root/mods/playersdata/profiles.json2022-12-07 03%3A05%3A19.300593 b/dist/ba_root/mods/playersdata/profiles.json2022-12-07 03%3A05%3A19.300593 deleted file mode 100644 index 248269f..0000000 --- a/dist/ba_root/mods/playersdata/profiles.json2022-12-07 03%3A05%3A19.300593 +++ /dev/null @@ -1,37588 +0,0 @@ -{ - "pb-IF4TVWwZUQ=9=": { - "display_string": "\ue030PC295588", - "profiles": [], - "name": "\ue030PC295588", - "isBan": false, - "isMuted": false, - "totaltimeplayer": 0, - "lastseen": 0, - "spamCount": 0, - "lastSpam": 1637911682.2054627 - }, - "pb-IF5XUm9eAg==": { - "display_string": [ - "\ue030PC402015" - ], - "profiles": [], - "name": "\ue030PC402015", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-12 20:30:30", - "registerOn": 1636801177.809589, - "canStartKickVote": true, - "totaltimeplayer": 0, - "lastseen": 0, - "spamCount": 4, - "lastSpam": 1637912278.8745685 - }, - "pb-IF4eUxk5KA==": { - "display_string": [ - "\ue063HeySmoothy" - ], - "profiles": [], - "name": "\ue063HeySmoothy", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-29 21:53:44", - "registerOn": 1655022106.4740922, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1655022106.4740927, - "totaltimeplayer": 0, - "lastseen": 0, - "warnCount": 0, - "lastWarned": 1655552812.9632144, - "verified": true, - "rejoincount": 1, - "lastJoin": 1655552812.963215, - "cMsgCount": 0, - "lastMsgTime": 1655406931.728448, - "lastMsg": "ok", - "cSameMsg": 0, - "lastIP": "axj~}j~~n`ai", - "deviceUUID": "eedccec9b0c17d3716b936981bb753c3872d905c" - }, - "pb-IF4RU2ECAg==": { - "display_string": [ - "\ue030PC452402" - ], - "profiles": [], - "name": "\ue030PC452402", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-04 01:42:22", - "registerOn": 1655407521.4853234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1655407521.4853249, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1658055515.14302, - "verified": true, - "rejoincount": 1, - "lastJoin": 1658055515.143022, - "lastIP": "axj~|h~|j~~", - "deviceUUID": "c49fafb7d66d14198924c1b9dcc59e23fb838042" - }, - "pb-IF43U2cIVw==": { - "display_string": "\ue063Smoothy", - "profiles": [], - "name": "\ue063Smoothy", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-23 22:27:13", - "registerOn": 1656442709.8344862, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1656442709.8344867, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1656527532.2340264, - "verified": true, - "rejoincount": 0, - "lastJoin": 1656527777.355527, - "lastIP": "axj~}m~}jdai", - "deviceUUID": "c49fafb7d66d14198924c1b9dcc59e23fb838042", - "cMsgCount": 0, - "lastMsgTime": 1656525491.3282282, - "lastMsg": "/end", - "cSameMsg": 0 - }, - "pb-IF41U2scIg==": { - "display_string": [ - "\ue063SHRUTIsom" - ], - "profiles": [], - "name": "\ue063SHRUTIsom", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 15:17:08", - "registerOn": 1670146929.9853938, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670146929.9853942, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339420.6298115, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670353157.649907, - "lastIP": "a\u007fk~}hhaniaig|", - "deviceUUID": "290ab9ffedc77b8768c4881945b02eca86c32ae8", - "cMsgCount": 0, - "lastMsgTime": 1670353792.935806, - "lastMsg": "\ud83d\ude36", - "cSameMsg": 0 - }, - "pb-IF4uU3gNKQ==": { - "display_string": [ - "\ue020CKD360" - ], - "profiles": [], - "name": "\ue020CKD360", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-01 07:24:59", - "registerOn": 1670146934.3897243, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670146934.389725, - "totaltimeplayer": 0, - "warnCount": 3, - "lastWarned": 1670353355.5780048, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670356609.0249004, - "lastIP": "azo~{i~}meajaz", - "deviceUUID": "548cce6a079bbda740d03793a1d78e999a4c1fd4", - "cMsgCount": 1, - "lastMsgTime": 1670356940.8026888, - "lastMsg": "jitna story banana hai bana", - "cSameMsg": 0 - }, - "pb-IF4nUxE4Nw==": { - "display_string": [ - "\ue030Android60071137" - ], - "profiles": [], - "name": "\ue030Android60071137", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-28 18:48:17", - "registerOn": 1670146945.498685, - "canStartKickVote": true, - "spamCount": 2, - "lastSpam": 1670163269.13775, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670374343.5551455, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670374343.5551467, - "lastIP": "a~h~}jfaih}va~a", - "deviceUUID": "9e21e953c214814994e344fb30238c23fc8af5ea", - "cMsgCount": 0, - "lastMsgTime": 1670357349.2342427, - "lastMsg": "ahhhh", - "cSameMsg": 0 - }, - "pb-IF5RU2wCXQ==": { - "display_string": [ - "\ue020IrremediableWraith22" - ], - "profiles": [], - "name": "\ue020IrremediableWraith22", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-03 15:18:15", - "registerOn": 1670146957.4824429, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670146957.4824433, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670340298.477066, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670343666.8854806, - "lastIP": "bxvf~vb{n~|i", - "deviceUUID": "\u0015\u0007^RY\u0010R\\\u0002WAW_\u0003Q\u0010\u0004XTYFS[TXA", - "cMsgCount": 1, - "lastMsgTime": 1670344657.651218, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5UUxgjIA==": { - "display_string": [ - "\ue020sagarrathore481", - "\ue030Android63531396", - "\ue030Android63531328", - "\ue030Android60355853" - ], - "profiles": [], - "name": "\ue020sagarrathore481", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-19 12:04:39", - "registerOn": 1670146986.8760846, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670146986.8760853, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331349.7670653, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670330747.1735826, - "lastIP": "a~o~}j`aia~va|n", - "deviceUUID": "5f7b062f4010c15627bebd1b749bdc57ef5bfb63", - "cMsgCount": 0, - "lastMsgTime": 1670332393.8098233, - "lastMsg": "ckd konsi team", - "cSameMsg": 0 - }, - "pb-IF49Umo-Fg==": { - "display_string": [ - "\ue020PATLU517" - ], - "profiles": [], - "name": "\ue020PATLU517", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-02 09:31:34", - "registerOn": 1670147005.6629934, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670301661.6737187, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301639.6076431, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670307830.092055, - "lastIP": "dvvd|va\u007fi~~nc", - "deviceUUID": "0ca89312b6820cc0711ece739ffed8a26cd3b72f", - "cMsgCount": 0, - "lastMsgTime": 1670245563.457161, - "lastMsg": "hacker", - "cSameMsg": 0 - }, - "pb-IF4xU00iHA==": { - "display_string": [ - "\ue020BleakForce44" - ], - "profiles": [], - "name": "\ue020BleakForce44", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 14:14:35", - "registerOn": 1670147022.9785194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147022.9785202, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670167091.5974138, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670167271.4085112, - "lastIP": "a|o~vo~wn~{i", - "deviceUUID": "a7497087df3804fee91357f3206f01f8f0dcd416", - "cMsgCount": 0, - "lastMsgTime": 1670167234.93747, - "lastMsg": "sry", - "cSameMsg": 0 - }, - "pb-IF4uU0kNUw==": { - "display_string": [ - "\ue020OriginalBlaster49" - ], - "profiles": [], - "name": "\ue020OriginalBlaster49", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 17:27:30", - "registerOn": 1670147065.7853847, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147065.7853854, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147065.7853942, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670147065.7853947, - "lastIP": "a|j~~mdambamc", - "deviceUUID": "3c93e0300d6f81abbd178196785c7ed80558ad4b" - }, - "pb-IF4BV2gDEA==": { - "display_string": [ - "\ue063TrippyJest" - ], - "profiles": [], - "name": "\ue063TrippyJest", - "isBan": false, - "isMuted": false, - "accountAge": "2018-10-23 15:02:35", - "registerOn": 1670147135.0654218, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147135.0654223, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310533.9907193, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670312485.2163844, - "lastIP": "azo~{a~~`dalf", - "deviceUUID": "be2fec1595bed04e080bf569f820fc78cbcf0576", - "cMsgCount": 2, - "lastMsgTime": 1670313907.7547574, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4mVU0oUw==": { - "display_string": [ - "\ue020tanishdoshi765" - ], - "profiles": [], - "name": "\ue020tanishdoshi765", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-27 23:16:54", - "registerOn": 1670147286.6486409, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147286.6486413, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147286.648649, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670147286.64865, - "lastIP": "dvvc}va{l~}m", - "deviceUUID": "30bac5ce5457fe04a69b0a9260350070e6facf74", - "cMsgCount": 0, - "lastMsgTime": 1670148549.3140652, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4dUkxeLQ==": { - "display_string": [ - "\ue063Sumit11727" - ], - "profiles": [], - "name": "\ue063Sumit11727", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-28 22:53:04", - "registerOn": 1670147319.6989822, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670148374.6405299, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248494.183191, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670260979.7385921, - "lastIP": "azo~|k~~igaiex", - "deviceUUID": "5fd3fdecff6f62f3befdb45fec945ebf7d33acb3", - "cMsgCount": 0, - "lastMsgTime": 1670261223.00056, - "lastMsg": "0", - "cSameMsg": 0 - }, - "pb-IF4-VBcnLw==": { - "display_string": [ - "\ue020Vaisakhaacharya" - ], - "profiles": [], - "name": "\ue020Vaisakhaacharya", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-26 12:50:03", - "registerOn": 1670147322.7029283, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147322.7029288, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147322.7029355, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670147322.7029364, - "lastIP": "a|o~vo~~i`aob", - "deviceUUID": "b575a88e8922f784b688b961dba39e60cf130dfa", - "cMsgCount": 0, - "lastMsgTime": 1670148236.5960152, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4hUlYfXQ==": { - "display_string": [ - "\ue063iloa12", - "\ue030Android59663117" - ], - "profiles": [], - "name": "\ue030Android59663117", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-12 22:16:09", - "registerOn": 1670147338.8019137, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147338.8019145, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147338.801951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670147338.8019516, - "lastIP": "i~vaxl~}mcaidw", - "deviceUUID": "7d444423b8f861f75adb7e354e0bfed0062867b5", - "cMsgCount": 0, - "lastMsgTime": 1670147403.7644346, - "lastMsg": "gg", - "cSameMsg": 0 - }, - "pb-IF4sU0xbKQ==": { - "display_string": [ - "\ue020RentalIndependence57" - ], - "profiles": [], - "name": "\ue020RentalIndependence57", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 13:48:07", - "registerOn": 1670147352.80363, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147352.8036306, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147352.8036387, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670147444.8446765, - "lastIP": "bxvf|vavo~}if", - "deviceUUID": "\u0015YUVVEY^\u0005YA", - "cMsgCount": 0, - "lastMsgTime": 1670148236.6669962, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFaV0RJWF1JGEBWU11CFEFXRFhG": { - "display_string": [ - "\ue020KABALIZ010" - ], - "profiles": [], - "name": "\ue020KABALIZ010", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-30 23:54:04", - "registerOn": 1670147367.1874788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147367.1874793, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147367.1874878, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670148188.4354708, - "lastIP": "b}k~}jgaiayvb~a", - "deviceUUID": "e4a77f2424701c228bc7d0cb44180365e04a27de" - }, - "pb-IF4RU3M-Jw==": { - "display_string": [ - "\ue020ComplementaryTry54", - "\ue030Android48646510" - ], - "profiles": [], - "name": "\ue020ComplementaryTry54", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 15:52:38", - "registerOn": 1670147376.9784825, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147376.978483, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670147376.9784906, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670148234.6153128, - "lastIP": "a|o~vo~~jdaiay", - "deviceUUID": "025dff09d53d32f6b1682636695d3f54fd1ed2c5" - }, - "pb-IF4cUktZNg==": { - "display_string": [ - "\ue020Ainesh0001" - ], - "profiles": [], - "name": "\ue020Ainesh0001", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-24 13:00:03", - "registerOn": 1670147443.1639163, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147443.1639168, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670348763.4308014, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670348334.9433365, - "lastIP": "a~h~}keajcwvb\u007fj", - "deviceUUID": "37e673cf4af01f06366303a4c8144454569c460b", - "cMsgCount": 0, - "lastMsgTime": 1670349669.5255473, - "lastMsg": "\ud83e\udec2", - "cSameMsg": 0 - }, - "pb-IF4AVUgDDA==": { - "display_string": [ - "\ue020ProdigalAcid30" - ], - "profiles": [], - "name": "\ue020ProdigalAcid30", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-04 19:17:45", - "registerOn": 1670147447.5272655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147447.5272665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257960.9984937, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257960.9984949, - "lastIP": "a\u007fk~}hdaiczvb\u007fj", - "deviceUUID": "233b00d0bea13fe4df0dde4311979f5bdbb80374" - }, - "pb-IF4jUWY5": { - "display_string": [ - "\ue020PickyOnion8951" - ], - "profiles": [], - "name": "\ue020PickyOnion8951", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-13 20:20:54", - "registerOn": 1670147682.475688, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147682.4756885, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224370.5725636, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224370.5725653, - "lastIP": "dvvcyvh~vay", - "deviceUUID": "\u0015\u0005\fVU@\u0002\\SSLW\t\u0005\u0003B", - "cMsgCount": 0, - "lastMsgTime": 1670148251.610843, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF49UnYRLQ==": { - "display_string": [ - "\ue063ChargingBe" - ], - "profiles": [], - "name": "\ue020ChargingBear93648", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-30 19:43:31", - "registerOn": 1670147876.958139, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670147876.9581401, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329563.699519, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670335813.9531093, - "lastIP": "dvvcyvb~i~~li", - "deviceUUID": "b9b711ab2a81c4ee2c8d2708018f9e859fb9e9d3", - "cMsgCount": 0, - "lastMsgTime": 1670152771.1508338, - "lastMsg": "abe laude thuje bacha rha tha ", - "cSameMsg": 0 - }, - "pb-IF4BUmpYNg==": { - "display_string": [ - "\ue063sfretgfdgf", - "\ue020SeismicPetroleum33", - "\ue020PharmacologicalFox59", - "\ue030Android47917927", - "\ue030Android63590584" - ], - "profiles": [], - "name": "\ue063sfretgfdgf", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-01 20:41:16", - "registerOn": 1670148030.5194852, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148030.5194857, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148030.5194933, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148030.5194938, - "lastIP": "bxvc{vevvf", - "deviceUUID": "d9be0da019a814b92513cb144b31aa65f6fbcffb" - }, - "pb-IF4UU1AvNw==": { - "display_string": [ - "\ue030Android63982105" - ], - "profiles": [], - "name": "\ue030Android63982105", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 09:18:35", - "registerOn": 1670148053.2875204, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148053.2875214, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148053.2875721, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148053.287573, - "lastIP": "a|o~vo~~h`ajd{", - "deviceUUID": "cc06900df11e9ee062d26dd18534f95c3462c812" - }, - "pb-IF4CVW07PA==": { - "display_string": [ - "\ue063GoodlyTran" - ], - "profiles": [], - "name": "\ue020GoodlyTrance19", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-08 18:00:46", - "registerOn": 1670148081.7151084, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148081.7151089, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337587.2738516, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670338151.2102733, - "lastIP": "a\u007fk~}hfaih\u007fvb~m", - "deviceUUID": "3e7b2c55f77d3aeec51b72a25eafc1ac73e0f353" - }, - "pb-IF4vU2lbDw==": { - "display_string": [ - "\ue020StoicTurbulence18" - ], - "profiles": [], - "name": "\ue020StoicTurbulence18", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-28 14:21:36", - "registerOn": 1670148197.870161, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148197.870162, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670185187.3254387, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670186029.2780771, - "lastIP": "a|o~vo~~i`aj`{", - "deviceUUID": "8c979450e27fa3d166bd41f5c75837c5c5e624ba", - "cMsgCount": 0, - "lastMsgTime": 1670186537.6192417, - "lastMsg": "hacker hey kya", - "cSameMsg": 0 - }, - "pb-IF5QU1ImIA==": { - "display_string": [ - "\ue063anaunzia" - ], - "profiles": [], - "name": "\ue063anaunzia", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 11:35:12", - "registerOn": 1670148261.506911, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148261.5069115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148261.5069187, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148261.5069194, - "lastIP": "a~l~xa~zi~~kf", - "deviceUUID": "3a52fdedebfa3feae73f47ccf73d5c7fdb56909e" - }, - "pb-IF43U0otUA==": { - "display_string": [ - "\ue020IronLeopard87891" - ], - "profiles": [], - "name": "\ue020IronLeopard87891", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-30 14:39:35", - "registerOn": 1670148427.628323, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148427.6283238, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240065.5562072, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670240065.5562086, - "lastIP": "azo~{n~}iaaicy", - "deviceUUID": "ee51530467ad4b8ae2b2f4eba2d6dd7f33665728" - }, - "pb-IF5dUxEdMw==": { - "display_string": [ - "\ue030Android59978094" - ], - "profiles": [], - "name": "\ue030Android59978094", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-24 14:00:33", - "registerOn": 1670148440.9455113, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148440.9455123, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148440.9455218, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670148698.2545264, - "lastIP": "a\u007fk~~obaobaicw", - "deviceUUID": "6cbe886230f5dc1432bfb49a4fee805b19d04638", - "cMsgCount": 0, - "lastMsgTime": 1670148611.921159, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4LU04tIw==": { - "display_string": [ - "\ue063VenousJack" - ], - "profiles": [], - "name": "\ue020VenousJackal46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 13:19:05", - "registerOn": 1670148443.7016256, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148443.7016263, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340308.889458, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340308.8894591, - "lastIP": "a~l~xa~~l`ajf", - "deviceUUID": "4ba5b3b38837e40928e1bd28d16e9ecad49d94c0" - }, - "pb-IF4LU04NXQ==": { - "display_string": [ - "\ue063TayzaAmazi", - "\ue030Android61518159" - ], - "profiles": [], - "name": "\ue063TayzaAmazi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 11:12:34", - "registerOn": 1670148444.676839, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148444.6768396, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148444.676848, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148444.6768484, - "lastIP": "cxva~i~zi~wn", - "deviceUUID": "f1e99c6cf2b2596414e4c5d6b4bfbb6978afbfa1" - }, - "pb-IF4IV04ZKw==": { - "display_string": [ - "\ue020paratr\u00f2\u00f3per", - "\ue030Android26319971", - "\ue030PC355734" - ], - "profiles": [], - "name": "\ue020paratr\u00f2\u00f3per", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-06 01:19:11", - "registerOn": 1670148455.7358403, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148455.7358408, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670362032.15247, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670360398.4270902, - "lastIP": "azo~|a~zj~~`", - "deviceUUID": "c6852ce1ce7c933f50abd6465ca3fcd0c0154825", - "cMsgCount": 0, - "lastMsgTime": 1670364187.8224497, - "lastMsg": "bye bro", - "cSameMsg": 0 - }, - "pb-IF4BU0EiEw==": { - "display_string": [ - "\ue020blacksopugaming" - ], - "profiles": [], - "name": "\ue020blacksopugaming", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 21:50:49", - "registerOn": 1670148468.822553, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148468.8225534, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148468.8225608, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148468.8225615, - "lastIP": "azj~zo~}lcaih\u007f", - "deviceUUID": "f990e4c7f7f5f95ad8212bff2d45e38da77cb574" - }, - "pb-IF4BU0cDNg==": { - "display_string": [ - "\ue063hacker1199" - ], - "profiles": [], - "name": "\ue063hacker1199", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 21:26:49", - "registerOn": 1670148469.8444016, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148469.844402, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235249.348355, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670235249.348357, - "lastIP": "a\u007fk~}jfaihwvdv", - "deviceUUID": "14b513d2239371f2b9dc72950ed1ca9b0fa8ba68" - }, - "pb-IF5VU1JZMw==": { - "display_string": [ - "\ue030Android63983659" - ], - "profiles": [], - "name": "\ue030Android63983659", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:37:20", - "registerOn": 1670148470.7953641, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148470.7953646, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148470.7953715, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148470.7953722, - "lastIP": "a\u007fn~}icaa`aihz", - "deviceUUID": "5fd3fdecff6f62f3befdb45fec945ebf7d33acb3" - }, - "pb-IF41U0ElPA==": { - "display_string": [ - "\ue030Android63288902" - ], - "profiles": [], - "name": "\ue030Android63288902", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 07:06:34", - "registerOn": 1670148504.8981645, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148504.8981652, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148504.8981729, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670148553.746867, - "lastIP": "dzva~a~}`~~ae", - "deviceUUID": "e6b8fc0713b82719263cf29f162a2ee85873591e", - "cMsgCount": 0, - "lastMsgTime": 1670148536.32531, - "lastMsg": "/end", - "cSameMsg": 0 - }, - "pb-IF5UVVE8UA==": { - "display_string": [ - "\ue020DentalDiary21", - "\ue030Android52427071" - ], - "profiles": [], - "name": "\ue030Android52427071", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-08 18:45:34", - "registerOn": 1670148558.054654, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148558.0546548, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148558.0546634, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148558.0546641, - "lastIP": "azo~{a~vm~~mh", - "deviceUUID": "bc9e21a4a6df6e6c22cdbff0f96fc525fc36e65b" - }, - "pb-IF4-U0ZcNA==": { - "display_string": [ - "\ue020GrandYogi69354", - "\ue020BiologicalPotion26" - ], - "profiles": [], - "name": "\ue020BiologicalPotion26", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 08:34:54", - "registerOn": 1670148564.0848756, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148564.084876, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148564.0848832, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148564.0848837, - "lastIP": "a\u007fn~}hiajc|vaxk", - "deviceUUID": "f4f953d038ec20f7ad8b5b0fe35d407604c20e5f" - }, - "pb-IF4eU004Ew==": { - "display_string": [ - "\ue020HonorableEttin404" - ], - "profiles": [], - "name": "\ue020HonorableEttin404", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 20:31:56", - "registerOn": 1670148624.308261, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148624.3082619, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324124.6485064, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670337030.5787466, - "lastIP": "azo~zi~~m`aid~", - "deviceUUID": "f926e6f96104161695572452dd7814d84bdd0d3c" - }, - "pb-IF4gUmMPXQ==": { - "display_string": [ - "\ue020NitricBet41" - ], - "profiles": [], - "name": "\ue020NitricBet41", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-01 16:25:42", - "registerOn": 1670148642.3436615, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148642.343662, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315267.8634155, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319691.0598974, - "lastIP": "azj~zo~}khaiez", - "deviceUUID": "\u0015\u0005^RY\u0011\u0004Z\u0002X\u0017U]YX\u0010V\\QXDT^UVDQ" - }, - "pb-IF4-VWEAUA==": { - "display_string": [ - "\ue020ForensicLaboratory19", - "\ue030Android46624746" - ], - "profiles": [], - "name": "\ue020ForensicLaboratory19", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-11 22:55:03", - "registerOn": 1670148658.7032065, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148658.7032073, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148658.7032154, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148658.703216, - "lastIP": "a\u007fn~}icaigvva~n", - "deviceUUID": "87b2e37a6910d5080cfc548246ee8dccdd0021c5", - "cMsgCount": 0, - "lastMsgTime": 1670148676.7350876, - "lastMsg": "ok", - "cSameMsg": 0 - }, - "pb-IF4sU04eMg==": { - "display_string": [ - "\ue063FloweryGar" - ], - "profiles": [], - "name": "\ue063FloweryGar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:11:36", - "registerOn": 1670148671.4688425, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148671.468843, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148671.4688516, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148671.4688525, - "lastIP": "awk~~oaajgaoe", - "deviceUUID": "ba432372bc5c5ce74c39860a860aba76d73a848c" - }, - "pb-IF4lVUwSFg==": { - "display_string": [ - "\ue020Harsaa007", - "\ue030PC446887", - "\ue030PC437584" - ], - "profiles": [], - "name": "\ue020Harsaa007", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-26 11:09:02", - "registerOn": 1670148687.6756177, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148687.6756184, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148687.6756272, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148687.675628, - "lastIP": "dvvb\u007fm~wk~zm", - "deviceUUID": "f5e8820a894fe21ff6b047fed74a17222c96c314" - }, - "pb-IF4RU0gPVg==": { - "display_string": [ - "\ue030Android63705110" - ], - "profiles": [], - "name": "\ue030Android63705110", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 21:18:58", - "registerOn": 1670148712.589369, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148712.5893698, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148712.5893786, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148712.5893793, - "lastIP": "a~o~vo~}hdai`x", - "deviceUUID": "83a016bb06f025b816c34907b8565f35f587972f" - }, - "pb-IF4RU3QoXQ==": { - "display_string": [ - "\ue030Android62576681" - ], - "profiles": [], - "name": "\ue030Android62576681", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-10 10:46:06", - "registerOn": 1670148719.7224848, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670160294.946838, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670330008.8698049, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329896.8848736, - "lastIP": "azj~zo~}keaic~", - "deviceUUID": "77223848ed08d8d5579bfe2bfeb95f9af81d2b97", - "cMsgCount": 0, - "lastMsgTime": 1670330211.9300404, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4OU2UCBA==": { - "display_string": [ - "\ue020HARSHITPATLEnilkanth" - ], - "profiles": [], - "name": "\ue020HARSHITPATLEnilkanth", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-17 12:27:56", - "registerOn": 1670148750.7460818, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148750.7460823, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148750.7460885, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148750.7460892, - "lastIP": "azj~zo~~ihaiav", - "deviceUUID": "\u0015W\fQ\u0004EX\b" - }, - "pb-IF5RUmMsFg==": { - "display_string": [ - "\ue020karanshetty6" - ], - "profiles": [], - "name": "\ue020karanshetty6", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-17 10:18:51", - "registerOn": 1670148764.8105505, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148764.810551, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328349.4780455, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328349.4780467, - "lastIP": "azo~zh~yn~~jh", - "deviceUUID": "c2a3f27acb52e3ec49f84af6f52e2f5df6caea6b", - "cMsgCount": 0, - "lastMsgTime": 1670239954.9101062, - "lastMsg": "nibbi", - "cSameMsg": 0 - }, - "pb-IF4uUxZYAQ==": { - "display_string": [ - "\ue020CompliantDelight40" - ], - "profiles": [], - "name": "\ue020CompliantDelight40", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-19 14:18:08", - "registerOn": 1670148773.8892055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148773.8892062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148773.8892148, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670148773.8892155, - "lastIP": "bxvf|vb}i~~`c", - "deviceUUID": "\u0015\u0004\\\u0005\u0003MQ\u000fYXC\u0002\u000b\u0003QBX\\SX@RUUXBW" - }, - "pb-IF4xV2oPHA==": { - "display_string": [ - "\ue063JealousCry" - ], - "profiles": [], - "name": "\ue063JealousCry", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-06 06:29:28", - "registerOn": 1670148803.9486802, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148803.9486806, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339140.6071308, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339140.6071322, - "lastIP": "b\u007fk~~adaagajaz", - "deviceUUID": "eb18d12c0553a71771f6334f9660dddbe1cbadfe", - "cMsgCount": 0, - "lastMsgTime": 1670167960.761208, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4MU047BA==": { - "display_string": [ - "\ue030Android63936722" - ], - "profiles": [], - "name": "\ue030Android63936722", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 21:58:59", - "registerOn": 1670148838.3438334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148838.3438342, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670148838.3439744, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670149097.643073, - "lastIP": "a\u007fn~}heajc~vb\u007fa", - "deviceUUID": "c25048a96f4b7282632fdb499249b86ae2d5f216" - }, - "pb-IF4UU0YsDQ==": { - "display_string": [ - "\ue020C\u1d00\u029f\u029fM\u1d07Y\u1d0fM\u1d00\u0274" - ], - "profiles": [], - "name": "\ue020C\u1d00\u029f\u029fM\u1d07Y\u1d0fM\u1d00\u0274", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-05 13:35:37", - "registerOn": 1670148849.3898847, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148849.3898857, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149757.3735774, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670150044.3655012, - "lastIP": "a\u007fk~~`ca`banc", - "deviceUUID": "859cb4a8f69dc428193a001988bee80274f99083" - }, - "pb-IF4nA28F": { - "display_string": [ - "\ue063pilot12856" - ], - "profiles": [], - "name": "\ue063pilot12856", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-17 15:18:58", - "registerOn": 1670148857.465405, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148857.4654057, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337279.2413576, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670345134.1327262, - "lastIP": "b}k~}kfajd{va\u007fo", - "deviceUUID": "2352589e937f9e709ea90b2f15835b7de437977b", - "cMsgCount": 0, - "lastMsgTime": 1670327392.9711547, - "lastMsg": "guts..? ", - "cSameMsg": 0 - }, - "pb-IF4hU3APAw==": { - "display_string": [ - "\ue063Sanjayduff", - "\ue030Android59973915" - ], - "profiles": [], - "name": "\ue063Sanjayduff", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 18:53:27", - "registerOn": 1670148926.3606832, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148926.3606834, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261470.6136928, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261470.613694, - "lastIP": "awk~wo~~liaj`|", - "deviceUUID": "0ce64daefb611efe9aa2d3bebdb9cb31adafd817" - }, - "pb-IF4yVVA8Bg==": { - "display_string": [ - "\ue063BABURAOAPT" - ], - "profiles": [], - "name": "\ue020BABURAOAPTE54", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-13 20:09:06", - "registerOn": 1670148927.3255122, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670148927.325513, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670349051.9611084, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670349051.9611104, - "lastIP": "a\u007fk~wi~vl~}k", - "deviceUUID": "0df8d6d52f5c1ed85192c8a86fcce9d300b0c49f", - "cMsgCount": 0, - "lastMsgTime": 1670148975.0088964, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4JU084LA==": { - "display_string": [ - "\ue020CubicResurgence66" - ], - "profiles": [], - "name": "\ue020CubicResurgence66", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 22:30:15", - "registerOn": 1670149010.6385727, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149010.6385736, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149010.638581, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149010.6385818, - "lastIP": "azo~{n~~ifaka", - "deviceUUID": "32551006c0eb9d9254fe85e21bef89735c6e5f82" - }, - "pb-IF4VVFoYCA==": { - "display_string": [ - "\ue020bunnyASSAULTmodo", - "\ue063Irreveren3", - "\ue030Android57905756" - ], - "profiles": [], - "name": "\ue063Irreveren3", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-02 21:42:27", - "registerOn": 1670149025.711014, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149025.7110152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161870.98381, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161870.9838111, - "lastIP": "a}j~~ocak`aje}", - "deviceUUID": "fd2b4ff4b3b6523447bc028baa3af1514643d995" - }, - "pb-IF4VU0IZCg==": { - "display_string": [ - "\ue030Android63426698" - ], - "profiles": [], - "name": "\ue030Android63426698", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-20 11:21:28", - "registerOn": 1670149028.7052379, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149028.7052383, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670303405.1487284, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670303651.1265604, - "lastIP": "axi~{`~wk~}hd", - "deviceUUID": "a8dee104bc98d4e5da127fba7b0b28718d63c79b" - }, - "pb-IF48VWESLA==": { - "display_string": [ - "\ue020GraveHour26" - ], - "profiles": [], - "name": "\ue020GraveHour26", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-13 16:01:33", - "registerOn": 1670149100.9892652, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149100.9892657, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332266.9236147, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670337035.5974236, - "lastIP": "azo~|n~}meane", - "deviceUUID": "f64794a1c3f9c219e8611115ebf51bdb86f9b4e5" - }, - "pb-IF4hVUccIQ==": { - "display_string": [ - "\ue020UnmarkedVeracity57", - "\ue020HealthfulLodgings47", - "\ue020BroaderReceptacle56", - "\ue020SpringExactness45", - "\ue020BOSSGAMINGAssumpti26" - ], - "profiles": [], - "name": "\ue020BOSSGAMINGAssumpti26", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-05 19:06:21", - "registerOn": 1670149114.496494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149114.4964945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149114.4965034, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149114.496504, - "lastIP": "azo~|l~}k`ai`w", - "deviceUUID": "2944ef2190a1ac2e30b1cf57a75ae581e082409c" - }, - "pb-IF4SUmwlVA==": { - "display_string": [ - "\ue063UpbeatCeme" - ], - "profiles": [], - "name": "\ue063UpbeatCeme", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-11 11:51:44", - "registerOn": 1670149152.177973, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149152.1779735, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344998.649914, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670344998.6499152, - "lastIP": "dvvcyvd\u007fv`", - "deviceUUID": "660f1416ca6dd82572f08dade91ab42336b4b36d" - }, - "pb-IF4qU3pTMg==": { - "display_string": [ - "\ue063TokenMagic" - ], - "profiles": [], - "name": "\ue063TokenMagic", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-05 15:14:18", - "registerOn": 1670149208.4023619, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149208.4023623, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670350759.576104, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670350759.576105, - "lastIP": "dvvcxvdyvbzm", - "deviceUUID": "15d3f2ff88cfbf69112768f8133e83dc3d01eea4", - "cMsgCount": 2, - "lastMsgTime": 1670317964.504581, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5RU3UzJA==": { - "display_string": [ - "\ue063RabidFight" - ], - "profiles": [], - "name": "\ue063RabidFight", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-06 20:34:27", - "registerOn": 1670149285.657756, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149285.6577566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319665.9753315, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670336252.578059, - "lastIP": "a~k~~acaohaid{", - "deviceUUID": "c71ca0513260d96b6a7b4cd571d6cbab3d9e7223", - "cMsgCount": 0, - "lastMsgTime": 1670319708.8266387, - "lastMsg": "popat come in bcs epic", - "cSameMsg": 0 - }, - "pb-IF5VU044KA==": { - "display_string": [ - "\ue020Rajuphirherapheri" - ], - "profiles": [], - "name": "\ue020Rajuphirherapheri", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-10 13:46:51", - "registerOn": 1670149344.1516058, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149344.1516068, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149677.0737646, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670153776.199077, - "lastIP": "azj~zo~{a~~hc", - "deviceUUID": "508ba80ac90e87c4783035d8bb719a34c48cb02f" - }, - "pb-IF40U04tFw==": { - "display_string": [ - "\ue020NovelTrousers35", - "\ue030Android52256550" - ], - "profiles": [], - "name": "\ue020NovelTrousers35", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 21:10:12", - "registerOn": 1670149382.1885855, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149382.1885862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331701.3129885, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670331701.3129897, - "lastIP": "a\u007fn~}iaaiixve", - "deviceUUID": "71147c7cf7223cf56690d8b3d18f3b979fe7a6b3" - }, - "pb-IF4pV3McIg==": { - "display_string": [ - "\ue063patelbhai7", - "\ue030Android29345487" - ], - "profiles": [], - "name": "\ue063patelbhai7", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-22 14:00:21", - "registerOn": 1670149453.6816685, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149453.6816692, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149453.6816785, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149453.68168, - "lastIP": "azj~zo~}haaj", - "deviceUUID": "961f3ff9d0df102310423e005e65a85421d4b148" - }, - "pb-IF4RVRk7EQ==": { - "display_string": [ - "\ue063El", - "\ue063OO" - ], - "profiles": [], - "name": "\ue063OO", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-04 09:18:56", - "registerOn": 1670149481.7085655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149481.708566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269318.2580304, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670271779.8814206, - "lastIP": "dxvazvc}va{o", - "deviceUUID": "4d62a7d22142ab20057d1256906d24f12956c7e8" - }, - "pb-IF5SVBJTIQ==": { - "display_string": [ - "\ue020vj1481", - "\ue030Android58229085" - ], - "profiles": [], - "name": "\ue020vj1481", - "isBan": false, - "isMuted": false, - "accountAge": "2019-06-10 15:34:10", - "registerOn": 1670149491.7178295, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149491.71783, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149491.7178385, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670161519.781035, - "lastIP": "a\u007fk~vj~{k~}ji", - "deviceUUID": "8c9c14ecbc3845c440fd41f6c3ca7e8f7ead92d1", - "cMsgCount": 0, - "lastMsgTime": 1670158007.9228492, - "lastMsg": "jab tu bcs fun ke baare mein soch rha tha", - "cSameMsg": 0 - }, - "pb-IF4lU20cEw==": { - "display_string": [ - "\ue020mariyafelix3126" - ], - "profiles": [], - "name": "\ue020mariyafelix3126", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-17 02:06:35", - "registerOn": 1670149493.72497, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149493.7249706, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244849.4973934, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670245023.1082377, - "lastIP": "azo~zi~~ahanh", - "deviceUUID": "051471302564de0ea391b0b0461b11977b4b994d" - }, - "pb-JiNJARBbVUVBXVlAEUVQUVdLGUBWQVdK": { - "display_string": [ - "\ue063NoName47962f" - ], - "profiles": [], - "name": "\ue063NoName47962f", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-01 13:35:17", - "registerOn": 1670149518.8348966, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149518.834897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312394.9204397, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670313178.309953, - "lastIP": "a\u007fk~~n`ajc|vaz", - "deviceUUID": "b70356fabf38aa4d32dd038f7595916c2d858448" - }, - "pb-IF4nUnhYBw==": { - "display_string": [ - "\ue063BarbarianC" - ], - "profiles": [], - "name": "\ue063BarbarianC", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-02 19:05:21", - "registerOn": 1670149536.866891, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149536.8668916, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149536.8669004, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670149583.7270267, - "lastIP": "a\u007fj~~aaaiezvb\u007fn", - "deviceUUID": "237cc9cae7ae6ff540e88866779eb699b17c3eb0" - }, - "pb-IF5UU3VTAQ==": { - "display_string": [ - "\ue020CunningMix12" - ], - "profiles": [], - "name": "\ue020CunningMix12", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 22:00:52", - "registerOn": 1670149549.0570552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149549.0570557, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149549.0570633, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149549.0570643, - "lastIP": "a~j~~kdaigzvaxa", - "deviceUUID": "e216ccc20240957b64433dac970672348eadca0f" - }, - "pb-IF5WU04nBg==": { - "display_string": [ - "\ue020NeedyMaple33" - ], - "profiles": [], - "name": "\ue020NeedyMaple33", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 19:51:02", - "registerOn": 1670149549.8872194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149549.88722, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149549.8872266, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149549.8872273, - "lastIP": "azo~|j~~iaaii|", - "deviceUUID": "bd92657fcd0edb8a9e29e5d09f1204352e43b818" - }, - "pb-IF4vU2sIMg==": { - "display_string": [ - "\ue063atharv1326" - ], - "profiles": [], - "name": "\ue063atharv1326", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-08 13:13:29", - "registerOn": 1670149600.1114752, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149600.1114757, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339335.2806964, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339335.2806976, - "lastIP": "b}k~}kfajd{va\u007fo", - "deviceUUID": "95196a7eca0603a063174f07a4b149edd34057d0" - }, - "pb-IF4vVUNfEA==": { - "display_string": [ - "\ue020sagar88822" - ], - "profiles": [], - "name": "\ue020sagar88822", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-01 00:12:49", - "registerOn": 1670149616.1428947, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149616.1428955, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225500.8171113, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225500.8171127, - "lastIP": "azj~zo~}ibaiav", - "deviceUUID": "07139568af72471f8aaccca0ed1fd85207f28fa7", - "cMsgCount": 1, - "lastMsgTime": 1670227249.4758058, - "lastMsg": "\u0938\u093e\u0917\u0930\u092d\u093e\u090a \u0938\u092c\u0915\u0940 \u092c\u091c\u093e\u092f\u0947\u0902\u0917\u093e\ud83e\ude94\u2694\ufe0f\u2694\ufe0f", - "cSameMsg": 0 - }, - "pb-IF5dU05SIQ==": { - "display_string": [ - "\ue020Thambi765" - ], - "profiles": [], - "name": "\ue020Thambi765", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 11:45:30", - "registerOn": 1670149673.4017322, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149673.4017327, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149673.4017403, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149673.4017413, - "lastIP": "a~h~}jdaacali", - "deviceUUID": "f205459665b218056a8340aed8d49fc6cfb79493" - }, - "pb-IF4rUmcIUg==": { - "display_string": [ - "\ue030Android55446423" - ], - "profiles": [], - "name": "\ue030Android55446423", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-19 15:46:39", - "registerOn": 1670149729.5518153, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149729.551816, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341341.6420841, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670347428.1192787, - "lastIP": "axi~zi~}haaiex", - "deviceUUID": "02caf3fe329a1ffa3212e2576f20b2367e04e119", - "cMsgCount": 1, - "lastMsgTime": 1670350073.8206336, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4DVVQMVQ==": { - "display_string": [ - "\ue020OssifiedLegitimacy9", - "\ue030Android63815640", - "\ue030Android63837483" - ], - "profiles": [], - "name": "\ue020OssifiedLegitimacy9", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-02 08:18:06", - "registerOn": 1670149769.750018, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149769.7500184, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149769.7500255, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149769.7500265, - "lastIP": "bxveyvh\u007fvawm", - "deviceUUID": "59650fa38e210c7263839a518c6eb4e31f258f29" - }, - "pb-IF4wU0soJg==": { - "display_string": [ - "\ue030Android63786120" - ], - "profiles": [], - "name": "\ue030Android63786120", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 23:13:08", - "registerOn": 1670149771.7401085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149771.740109, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149771.7401178, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149771.7401187, - "lastIP": "axi~zi~~l`aiay", - "deviceUUID": "ff36c74dab8b1e62907104c8c6194251e6c349c7" - }, - "pb-IF5SU1E6Jg==": { - "display_string": [ - "\ue063DeceitfulL" - ], - "profiles": [], - "name": "\ue063Pankiii25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 16:16:40", - "registerOn": 1670149883.106087, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149883.1060874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149883.1060953, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670149883.1060963, - "lastIP": "b}k~~`faiivvd~", - "deviceUUID": "06a7356ea9a6ae1411430b7031fa5f3cd5ccb112" - }, - "pb-IF4rU04xBA==": { - "display_string": [ - "\ue020ExceptionalPrince25" - ], - "profiles": [], - "name": "\ue020ExceptionalPrince25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 13:55:34", - "registerOn": 1670149894.114902, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149894.1149023, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149894.1149125, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149894.1149135, - "lastIP": "axm~~ofaaeajd", - "deviceUUID": "a2159e0a545bcdb646bf96c3e1391d3053d30405" - }, - "pb-IF4AVUZaAg==": { - "display_string": [ - "\ue020OutSwarm27" - ], - "profiles": [], - "name": "\ue020OutSwarm27", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-17 21:59:19", - "registerOn": 1670149910.3621597, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149910.3621602, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149910.362359, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149910.36236, - "lastIP": "azo~|o~}jbaib}", - "deviceUUID": "\u0015T\u000b\u0002QGU[\u0007P\u0015P\\XS\u0011T\\TWDSUSUA", - "cMsgCount": 0, - "lastMsgTime": 1670150014.144953, - "lastMsg": "/codes", - "cSameMsg": 0 - }, - "pb-IF5dV3FfCw==": { - "display_string": [ - "\ue020ProsaicLunatic1799" - ], - "profiles": [], - "name": "\ue020ProsaicLunatic1799", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-29 11:41:55", - "registerOn": 1670149925.2293956, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149925.229396, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670149925.2294042, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670149925.229405, - "lastIP": "a~o~vo~~aeaja}", - "deviceUUID": "128fbe725a758d43f0fd20edba43c5f0dbbb4b46" - }, - "pb-IF4XU1BaKQ==": { - "display_string": [ - "\ue063ronxbone" - ], - "profiles": [], - "name": "\ue063ronxbone", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 10:34:24", - "registerOn": 1670149989.4804418, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670149989.480442, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322379.211579, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670322409.3282912, - "lastIP": "a\u007fk~~liakgaib}", - "deviceUUID": "13fdf09986dc706cf2965004465a6aa644b00943" - }, - "pb-IF43VXkyKg==": { - "display_string": [ - "\ue020RagingGem36106" - ], - "profiles": [], - "name": "\ue020RagingGem36106", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-04 21:14:39", - "registerOn": 1670150016.914027, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150016.9140275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150016.9140346, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150016.9140356, - "lastIP": "d~vb~n~}hbaib", - "deviceUUID": "1395a98c9376933c9e419225719d506ce619c62a" - }, - "pb-IF4pU0sRFw==": { - "display_string": [ - "\ue063AiranChanc", - "\ue030Android45464897" - ], - "profiles": [], - "name": "\ue063AiranChanc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 11:48:02", - "registerOn": 1670150045.6772332, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150045.677234, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150045.677242, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670151230.457125, - "lastIP": "axi~xn~~hda`a", - "deviceUUID": "d0840a2da17b6bca167082ced78a6b0bb8506b3e" - }, - "pb-IF4BU0wpDw==": { - "display_string": [ - "\ue020harshadkarale007", - "\ue020SulkyPlant124", - "\ue020harshad69", - "\ue030Android63857889" - ], - "profiles": [], - "name": "\ue020harshadkarale007", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-13 11:41:54", - "registerOn": 1670150077.8061469, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150077.8061473, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329658.021688, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329658.0216897, - "lastIP": "azo~|k~}mcaia~", - "deviceUUID": "0cb6464fa2cf2cab848120323a95572fbaa12010", - "cMsgCount": 0, - "lastMsgTime": 1670167989.3255508, - "lastMsg": "\ud83e\udd23", - "cSameMsg": 0 - }, - "pb-IF4oVHAYLA==": { - "display_string": [ - "\ue020rolanjr231", - "\ue063norland231", - "\ue063WaxyFlag34", - "\ue030Android63838425" - ], - "profiles": [], - "name": "\ue063norland231", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-23 07:10:02", - "registerOn": 1670150114.9199865, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150114.919987, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150114.9199955, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150114.9199965, - "lastIP": "a|h~~heaic{vev", - "deviceUUID": "f2dead3c4aacdb7c931927e64a9c37aa34022ce2" - }, - "pb-IF4vU0skLw==": { - "display_string": [ - "\ue020MainstreamContrast42" - ], - "profiles": [], - "name": "\ue020MainstreamContrast42", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 11:29:11", - "registerOn": 1670150132.0845466, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150132.084547, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341100.8063452, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670345273.6333563, - "lastIP": "b}k~}jhaigzvavk", - "deviceUUID": "c9df545bca4a73a96629ad06fbdfa381808ec014" - }, - "pb-IF4LVVQfBA==": { - "display_string": [ - "\ue030Android53090241" - ], - "profiles": [], - "name": "\ue030Android53090241", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-04 15:05:04", - "registerOn": 1670150149.3393252, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150149.3393257, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150149.3393326, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150149.3393335, - "lastIP": "a~l~}mdaa~~m`", - "deviceUUID": "\u0015WX" - }, - "pb-IF49U0MCCA==": { - "display_string": [ - "\ue063LevelAccep" - ], - "profiles": [], - "name": "\ue063LevelAccep", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 17:54:58", - "registerOn": 1670150282.596354, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150282.5963545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338845.5760052, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338845.5760064, - "lastIP": "a\u007fk~}n~{a~|h", - "deviceUUID": "dce6773e0df5274089fc68289e928e5eb28a6464", - "cMsgCount": 0, - "lastMsgTime": 1670332428.5313196, - "lastMsg": "come in soon", - "cSameMsg": 0 - }, - "pb-IF5dU0YxNA==": { - "display_string": [ - "\ue020FurryArchon2625" - ], - "profiles": [], - "name": "\ue020FurryArchon2625", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 13:45:52", - "registerOn": 1670150292.5157666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150292.515767, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150292.5157752, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150292.5157762, - "lastIP": "b}k~~`ea`eang", - "deviceUUID": "763900e1025b41e755202eff96a775dd0f4939fe" - }, - "pb-IF4GUkYzDA==": { - "display_string": [ - "\ue020TypicalColonel69394" - ], - "profiles": [], - "name": "\ue020TypicalColonel69394", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-03 21:01:08", - "registerOn": 1670150432.0940392, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150432.09404, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317694.7742174, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670317774.05167, - "lastIP": "dvvczvavj~x`", - "deviceUUID": "f889cf812fc55730491765df446815e2f1e28dc0" - }, - "pb-IF4QU0gCJg==": { - "display_string": [ - "\ue020MegumiBakuretsu10" - ], - "profiles": [], - "name": "\ue020MegumiBakuretsu10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 13:20:59", - "registerOn": 1670150487.3369517, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150487.3369527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150487.3369608, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150487.3369617, - "lastIP": "b}k~~`hajezvhv", - "deviceUUID": "\u0015\u0007[UQ\u0010\u0002XPR\u0015TY" - }, - "pb-JiNJARFdXUtEXF1DEUVWUVRCE0VcRFJE": { - "display_string": [ - "\ue063Tenacious8" - ], - "profiles": [], - "name": "\ue063Tenacious8", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-11 09:56:08", - "registerOn": 1670150492.2616467, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150492.2616475, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150492.2616563, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150492.261657, - "lastIP": "dvvc}vavk~}hh", - "deviceUUID": "4d8a76b9fdf07e8b1fd462ea87bb130dc3be8cd5" - }, - "pb-IF4dU04ODg==": { - "display_string": [ - "\ue063WishfulHil" - ], - "profiles": [], - "name": "\ue063WishfulHil", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 10:55:17", - "registerOn": 1670150522.681502, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150522.681503, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216454.3141272, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670216454.3141284, - "lastIP": "azo~{i~~ogai`z", - "deviceUUID": "fb1c0f5578e1c51b6bb515cad6ad7dba76f630ff" - }, - "pb-IF5WU0RTLA==": { - "display_string": [ - "\ue030Android63351569" - ], - "profiles": [], - "name": "\ue030Android63351569", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-16 20:41:57", - "registerOn": 1670150533.4063275, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150533.4063282, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320506.1861095, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320506.186111, - "lastIP": "dvvc{va}j~|i", - "deviceUUID": "\u0015XUW\u0002GRU\u0005W@VTW\u0004\u0015V\\YXMX_WWBT" - }, - "pb-IF4RU049PA==": { - "display_string": [ - "\ue020MoonlitLink53" - ], - "profiles": [], - "name": "\ue020MoonlitLink53", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 13:25:04", - "registerOn": 1670150575.5474854, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150575.547486, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670150575.5474932, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670150575.547494, - "lastIP": "a\u007fn~~aeai`aib}", - "deviceUUID": "5a286eed79868133ec6e1dabae9c94bfc3b8d00f" - }, - "pb-IF5SVFdSFQ==": { - "display_string": [ - "\ue020GAMER123ABHAY", - "\ue030Android62205508", - "\ue030PC346437" - ], - "profiles": [], - "name": "\ue030PC346437", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-22 07:37:31", - "registerOn": 1670150597.617316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150597.6173167, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246216.2664175, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246216.2664187, - "lastIP": "a\u007fk~vl~~kiajb", - "deviceUUID": "47cddabeef7d4c1880fb0eb137dadca8aaf7f8f5" - }, - "pb-IF4vUxkKDg==": { - "display_string": [ - "\ue020TremendousCreek8" - ], - "profiles": [], - "name": "\ue020TremendousCreek8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-30 19:03:34", - "registerOn": 1670150727.111291, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150727.1112914, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670327073.3553312, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670327226.4994414, - "lastIP": "b}k~}khaj`zvavn", - "deviceUUID": "93959a9d304362003c85e791a6956c14d16159fe", - "cMsgCount": 0, - "lastMsgTime": 1670327427.4103475, - "lastMsg": "blue m aja mafia", - "cSameMsg": 0 - }, - "pb-IF4wUlIYCg==": { - "display_string": [ - "\ue063NearCandy4" - ], - "profiles": [], - "name": "\ue063NearCandy4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-25 16:12:16", - "registerOn": 1670150917.6800628, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670150917.6800632, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670340600.6012743, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670347549.607178, - "lastIP": "b}k~}kaaiexva~i", - "deviceUUID": "ee2f0cdc1dd05777262b0fe90bb2e4b661f79512", - "cMsgCount": 0, - "lastMsgTime": 1670347998.0446155, - "lastMsg": "kya me hasuuu? ", - "cSameMsg": 0 - }, - "pb-IF5VU0cyFg==": { - "display_string": [ - "\ue020sOFF1C1AL", - "\ue030Android63570559", - "\ue030Android63570736", - "\ue030Android63570544", - "\ue030Android63570719" - ], - "profiles": [], - "name": "\ue020sOFF1C1AL", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 15:43:32", - "registerOn": 1670151270.9283757, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151270.9283764, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339985.7180412, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670342772.7138345, - "lastIP": "b}k~~`aaja\u007fvh}", - "deviceUUID": "c19fef9185c32abd8163880d476ab851bc8f9ff5", - "cMsgCount": 1, - "lastMsgTime": 1670151294.296285, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5RUkgTPw==": { - "display_string": [ - "\ue063BeamingLem" - ], - "profiles": [], - "name": "\ue063BeamingLem", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-05 18:43:08", - "registerOn": 1670151279.9852002, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151279.9852006, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670151279.985209, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670151279.98521, - "lastIP": "a~h~~khajbaib\u007f", - "deviceUUID": "8ebf6da6b2bc9c6234d4df41befcd6e560e5f5a1" - }, - "pb-IF4SU04JNg==": { - "display_string": [ - "\ue020BRITTODON03" - ], - "profiles": [], - "name": "\ue020BRITTODON03", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 13:56:41", - "registerOn": 1670151317.1930032, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151317.193004, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670151317.1930118, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670153033.64259, - "lastIP": "azo~zi~~hhaid\u007f", - "deviceUUID": "2804acc9c35941b7e55e2fd4c6ac2a0d9532853d" - }, - "pb-IF4yU05aKg==": { - "display_string": [ - "\ue020PRASADGOLE007" - ], - "profiles": [], - "name": "\ue020PRASADGOLE007", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 10:01:41", - "registerOn": 1670151344.1539695, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151344.1539702, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313343.8954515, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313343.8954527, - "lastIP": "a\u007fn~~aea`~w`", - "deviceUUID": "13c6f9c19f7e080eef7c76a3b615b11707f8a2fa" - }, - "pb-IF4AU2czAQ==": { - "display_string": [ - "\ue020FamedHair40" - ], - "profiles": [], - "name": "\ue020FamedHair40", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-23 12:09:17", - "registerOn": 1670151374.293031, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151374.2930315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332350.2196267, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332350.219628, - "lastIP": "dxva~vb\u007f`~zo", - "deviceUUID": "f75c1af88dac0c6daef9c9204c6ed802be3b11e5" - }, - "pb-IF4PU0YSXA==": { - "display_string": [ - "\ue020CreepySamurai688" - ], - "profiles": [], - "name": "\ue020CreepySamurai688", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-12 12:31:11", - "registerOn": 1670151393.3493638, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151393.3493645, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342527.8279045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670342527.827906, - "lastIP": "aakhaid~vb|", - "deviceUUID": "3c906c1a32f9ef10ec34f3359781d92fcd64921b", - "cMsgCount": 1, - "lastMsgTime": 1670342630.988081, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFZUEFBXlpFGERQUFdDFkNXRFFF": { - "display_string": [ - "\ue063Godfther1" - ], - "profiles": [], - "name": "\ue063Godfther1", - "isBan": false, - "isMuted": false, - "accountAge": "2017-02-14 19:12:04", - "registerOn": 1670151482.708698, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151482.7086985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340005.7776568, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340005.7776582, - "lastIP": "a\u007fn~~afai`zvayo", - "deviceUUID": "42ffe87abb80a374fba102b244863db358e1d04c" - }, - "pb-IF49VFQlPA==": { - "display_string": [ - "\ue020PAMU628", - "\ue030PC607749", - "\ue030PC608632", - "\ue030PC688281", - "\ue030PC306656" - ], - "profiles": [], - "name": "\ue030PC688281", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-23 14:22:54", - "registerOn": 1670151522.747347, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151522.7473476, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315495.7146943, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670331534.4832606, - "lastIP": "azo~zh~vvavo", - "deviceUUID": "b36eb11407361b24713fcb7a28a43226365651b8", - "cMsgCount": 1, - "lastMsgTime": 1670329014.4802153, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4OU0wZAg==": { - "display_string": [ - "\ue063Technospar" - ], - "profiles": [], - "name": "\ue063Technospar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 17:00:04", - "registerOn": 1670151635.1701655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151635.170166, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250143.176181, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250143.1761823, - "lastIP": "a\u007fk~~oiaiixva{o", - "deviceUUID": "fbc216773e63575c0d243392a7b1dfc4b07824c7" - }, - "pb-IF4sU0s_XQ==": { - "display_string": [ - "\ue020InsincereCase61" - ], - "profiles": [], - "name": "\ue020InsincereCase61", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 09:22:39", - "registerOn": 1670151776.62861, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151776.6286104, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670289904.6605852, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670290556.8770628, - "lastIP": "a~l~~h~{vd{", - "deviceUUID": "4b8e3697575ef3648363d6d73d9c02a81ab64084" - }, - "pb-IF4tU08YEA==": { - "display_string": [ - "\ue063Worthwhil4" - ], - "profiles": [], - "name": "\ue063Worthwhil4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 22:52:36", - "registerOn": 1670151848.1438696, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151848.14387, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670151848.1438785, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670151848.143892, - "lastIP": "a\u007fk~~oaaj`\u007fvaxo", - "deviceUUID": "a97bcffecd47672c4fd7a05130c19be7d2729277" - }, - "pb-IF4RUlAMNg==": { - "display_string": [ - "\ue020GnarlyJackalope56572" - ], - "profiles": [], - "name": "\ue020GnarlyJackalope56572", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-17 12:23:58", - "registerOn": 1670151949.246008, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151949.2460084, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670151949.2460163, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670151949.2460172, - "lastIP": "azo~{a~}jeaid\u007f", - "deviceUUID": "\u0015Y\u000e\u0005\u0005A\u0004ZQ\u0005\u0015Y\u000eTVBU\\SSFYUSVGS" - }, - "pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE": { - "display_string": [ - "\ue063HeySmooth2", - "\ue043Mr.Smoothy" - ], - "profiles": [], - "name": "\ue063HeySmooth2", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-13 17:21:16", - "registerOn": 1670151983.5855172, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670151983.5855176, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339034.2475274, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339034.2475288, - "lastIP": "dvvd|vazm~~hf", - "deviceUUID": "014b00976f2c8cd83b1cb0f107296632148161af", - "cMsgCount": 0, - "lastMsgTime": 1670339199.1138752, - "lastMsg": "ab bol na jaio kuch idhar , ..", - "cSameMsg": 0 - }, - "pb-IF4VU3QkFQ==": { - "display_string": [ - "\ue063Downstrea3" - ], - "profiles": [], - "name": "\ue063Downstrea3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-13 16:08:57", - "registerOn": 1670152024.6097336, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152024.6097343, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152024.6097438, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152024.6097448, - "lastIP": "a~i~vj~~igaih|", - "deviceUUID": "8271060b4901c2c62f21de6e548f6b5e273e1d48" - }, - "pb-IF4HU00OIA==": { - "display_string": [ - "\ue063Ayushayy" - ], - "profiles": [], - "name": "\ue063Ayushayy", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 22:35:36", - "registerOn": 1670152203.0654047, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152203.0654051, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253458.732168, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253458.7321694, - "lastIP": "a\u007fn~}i`ajczvb~`", - "deviceUUID": "e7207cfc292c54d4dd6faa3fc42df0882dc792c3" - }, - "pb-IF4qUkQ9CA==": { - "display_string": [ - "\ue020LORDHanzoStar" - ], - "profiles": [], - "name": "\ue020LORDHanzoStar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-28 15:20:31", - "registerOn": 1670152229.5075467, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152229.5075471, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325172.6858616, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325172.685863, - "lastIP": "a\u007fn~~aeakgan", - "deviceUUID": "919cfd9dfd64b8ad2ccaeaaeeb246f9cd24ffa72" - }, - "pb-IF4GD2Yd": { - "display_string": [ - "\ue020POWERXDHRUV", - "\ue030Android49476815" - ], - "profiles": [], - "name": "\ue020POWERXDHRUV", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-02 22:20:11", - "registerOn": 1670152285.4197857, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152285.4197862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346805.6682715, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670347178.093982, - "lastIP": "a\u007fn~}j`aifxvb~a", - "deviceUUID": "ca61c483f0c9212f5c555e87ad7b8597ad6831de" - }, - "pb-IF4SU00JHw==": { - "display_string": [ - "\ue020Jayrajsinh1202" - ], - "profiles": [], - "name": "\ue020Jayrajsinh1202", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 22:56:58", - "registerOn": 1670152473.0684376, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152473.0684378, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307799.847084, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670308989.672402, - "lastIP": "azo~|j~}laaof", - "deviceUUID": "d2f24056af44a204e555084164760cbd757f8be1", - "cMsgCount": 0, - "lastMsgTime": 1670308000.4286244, - "lastMsg": "l", - "cSameMsg": 0 - }, - "pb-LV4FBEEKV0ZAVVwVGBVTBlxBFQ==": { - "display_string": [ - "\ue063LyingSword", - "\ue030Android12884065", - "\ue030PC103199", - "\ue030Android9847306", - "\ue030Android11501267" - ], - "profiles": [], - "name": "\ue063LyingSword", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-25 20:00:46", - "registerOn": 1670152520.1950645, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152520.195065, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216924.9135578, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670218300.3936977, - "lastIP": "a~o~vo~}hcami", - "deviceUUID": "07b8eee8772d5635ae26f7e42f3cb9ca44e051c8" - }, - "pb-JiNJARBfUUZBXlZFFUBYXVZBGEJYQ1BK": { - "display_string": [ - "\ue063mohitdevna", - "\ue030Android9502778" - ], - "profiles": [], - "name": "\ue063mohitdevna", - "isBan": false, - "isMuted": false, - "accountAge": "2016-09-25 21:04:40", - "registerOn": 1670152604.4520462, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152604.4520466, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152604.4520538, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152604.4520547, - "lastIP": "dvvcyvb|l~}ja", - "deviceUUID": "969bf094ecb454e163bec89a58426fd42821d07c" - }, - "pb-IF4CDlAZ": { - "display_string": [ - "\ue020bhattiarman786", - "\ue030Android20001553" - ], - "profiles": [], - "name": "\ue020bhattiarman786", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-02 18:27:07", - "registerOn": 1670152618.5758681, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152618.5758686, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152618.575878, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152618.575908, - "lastIP": "azo~|j~~o~z`", - "deviceUUID": "d8201ea90a1be9ff084631f3cfca964012a2b11b" - }, - "pb-JiNJARFTVEVHXFZFE09ZVFNGE0ZXRlRA": { - "display_string": [ - "\ue020CherryBruiser84898" - ], - "profiles": [], - "name": "\ue020CherryBruiser84898", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-30 12:37:08", - "registerOn": 1670152738.9171174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152738.9171178, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152738.9171264, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152738.9171274, - "lastIP": "a\u007fn~}i`aii|vazk", - "deviceUUID": "4a5672c499e5721358502cb69068eeb5aeb3823e", - "cMsgCount": 0, - "lastMsgTime": 1670154085.4756415, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4rVxMNCg==": { - "display_string": [ - "\ue020kvgahlaut2002" - ], - "profiles": [], - "name": "\ue020kvgahlaut2002", - "isBan": false, - "isMuted": false, - "accountAge": "2018-07-29 23:19:31", - "registerOn": 1670152859.3323731, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152859.3323739, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152859.3323812, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152859.332382, - "lastIP": "a}j~~naambakg", - "deviceUUID": "7e1bfc59a3c1ed6c5bd141cfa2174e6bda7116d4" - }, - "pb-IF4dU3ISFw==": { - "display_string": [ - "\ue030Android62533927" - ], - "profiles": [], - "name": "\ue030Android62533927", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 10:49:18", - "registerOn": 1670152895.4631698, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152895.4631703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152895.4631784, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152895.4631796, - "lastIP": "azo~zi~~nbaog", - "deviceUUID": "b05d9a02d64b7187b45d92f469e0dac940bcb8ea" - }, - "pb-JiNJVxFfUktFXltAEU5UUVVLGERXRVJG": { - "display_string": [ - "\ue020balamurugan1232" - ], - "profiles": [], - "name": "\ue020balamurugan1232", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-10 22:19:31", - "registerOn": 1670152908.5611398, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152908.5611403, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152908.5611484, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152908.5611494, - "lastIP": "azo~zi~~`eaid~", - "deviceUUID": "813cabe59525ededf26ab1d2c95abcc6ca788fe1" - }, - "pb-IF4PU0lcNA==": { - "display_string": [ - "\ue063ameno" - ], - "profiles": [], - "name": "\ue063ameno", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-26 01:58:01", - "registerOn": 1670152926.5370183, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152926.5370193, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152926.5370252, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152926.5370264, - "lastIP": "dvvcyvawk~~jh", - "deviceUUID": "e1e1598f3d07c22e54ab8b8261f5040dd0fa1a64" - }, - "pb-IF4PU08bDw==": { - "display_string": [ - "\ue063Existenti7" - ], - "profiles": [], - "name": "\ue063Existenti7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 16:51:05", - "registerOn": 1670152992.8104439, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670152992.810444, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670152992.810451, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670152992.8104522, - "lastIP": "a~i~vj~}h~~o`", - "deviceUUID": "587e98f49720679f18aa9e0c6871f1926e775d57" - }, - "pb-IF4PU0laCQ==": { - "display_string": [ - "\ue063LegEndGoga" - ], - "profiles": [], - "name": "\ue020LegEndGogari", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 14:07:52", - "registerOn": 1670153010.835215, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153010.8352156, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260203.0652401, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670260212.1126184, - "lastIP": "a\u007fk~}jfaj`yvb~k", - "deviceUUID": "fec2ed56121c18274df688b838280fade9c0064c" - }, - "pb-IF4vUnhcMw==": { - "display_string": [ - "\ue030Android57199331" - ], - "profiles": [], - "name": "\ue030Android57199331", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-04 07:38:41", - "registerOn": 1670153037.0050778, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153037.0050783, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153037.0050874, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153037.0050883, - "lastIP": "azo~zi~~oiaje\u007f", - "deviceUUID": "b80c9d6be21d819a15adf66cdd703c0d08cc5be3" - }, - "pb-IF4TV3RbDA==": { - "display_string": [ - "\ue020HypnoticAttacker6749" - ], - "profiles": [], - "name": "\ue020HypnoticAttacker6749", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-22 23:04:35", - "registerOn": 1670153152.4128566, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153152.4128573, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670359922.789603, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670361646.889132, - "lastIP": "azo~{m~~lgamh", - "deviceUUID": "d9016bdfc3800e1b8fc043ebc0fc3a0d8f2b2ca2", - "cMsgCount": 0, - "lastMsgTime": 1670362233.1066937, - "lastMsg": "are majak hai yrr ye sab tu bhi masti kr", - "cSameMsg": 0 - }, - "pb-IF4iUnQqHw==": { - "display_string": [ - "\ue063InbornSimp" - ], - "profiles": [], - "name": "\ue063InbornSimp", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-18 17:42:42", - "registerOn": 1670153169.4134543, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153169.4134548, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296292.3500986, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296292.3501, - "lastIP": "bxvc{va\u007fl~vi", - "deviceUUID": "6dbcc65f4bb4908ead86702a590c04d4b316248b" - }, - "pb-IF41VEMGKw==": { - "display_string": [ - "\ue020BakedCritter200" - ], - "profiles": [], - "name": "\ue020BakedCritter200", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-12 11:10:01", - "registerOn": 1670153338.006263, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153338.0062635, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215382.2109458, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215382.2109473, - "lastIP": "dvvcxvb~h~~ji", - "deviceUUID": "096e4bb2158b9909563621da2084c74f1ea05785" - }, - "pb-IF5XU1JSMA==": { - "display_string": [ - "\ue030Android63984084" - ], - "profiles": [], - "name": "\ue030Android63984084", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 16:59:13", - "registerOn": 1670153431.3419092, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153431.3419096, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153431.341918, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153431.341919, - "lastIP": "awm~{i~}hfaic~", - "deviceUUID": "8a1a293ebe34143c7402d3d3fa761c2c786cf05a" - }, - "pb-IF4pU0lYLg==": { - "display_string": [ - "\ue020MetalReporter57" - ], - "profiles": [], - "name": "\ue020MetalReporter57", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 14:49:22", - "registerOn": 1670153479.5258107, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153479.525811, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313455.472797, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313455.472798, - "lastIP": "dvvc{vb}a~~`d", - "deviceUUID": "c8da4033b497273eda820de725e077cd0286b29c" - }, - "pb-IF5cVBgkUw==": { - "display_string": [ - "\ue030Android36662481" - ], - "profiles": [], - "name": "\ue030Android36662481", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-17 17:17:28", - "registerOn": 1670153524.684184, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153524.6841846, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153524.6841922, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153524.6841931, - "lastIP": "dvva{`~}leaihv", - "deviceUUID": "f3e4d1c5524ffe09768f539800272965c26a84cf" - }, - "pb-IF4cU08zNg==": { - "display_string": [ - "\ue063hackkkkk13" - ], - "profiles": [], - "name": "\ue063hackkkkk13", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 17:19:07", - "registerOn": 1670153554.8892639, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153554.8892643, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153554.8892713, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153554.889272, - "lastIP": "a~k~~neaodaidy", - "deviceUUID": "7114c9505a120a1442526f84004de88ad869c65d" - }, - "pb-IF4NU0cpFw==": { - "display_string": [ - "\ue063ModalHandl" - ], - "profiles": [], - "name": "\ue020ModalHandle23", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 13:00:02", - "registerOn": 1670153566.9289293, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153566.9289298, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353029.1177723, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670353029.1177735, - "lastIP": "a\u007fk~xh~~lean", - "deviceUUID": "0c85292b5242a514132c321bd19ec3ba31589d49", - "cMsgCount": 0, - "lastMsgTime": 1670353304.275518, - "lastMsg": "/end", - "cSameMsg": 0 - }, - "pb-IF4TU0cRXQ==": { - "display_string": [ - "\ue020DauntingBasement23" - ], - "profiles": [], - "name": "\ue020DauntingBasement23", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 18:28:44", - "registerOn": 1670153583.8242934, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153583.824294, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153583.8243008, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153583.8243022, - "lastIP": "a\u007fn~~acajeaj`y", - "deviceUUID": "c498431cdbb8e6d74d447eba20bb191131e9f2a4" - }, - "pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF": { - "display_string": [ - "\ue020PoeticFire35261", - "\ue030Android10760074" - ], - "profiles": [], - "name": "\ue020PoeticFire35261", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-05 16:34:48", - "registerOn": 1670153597.8871176, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153597.8871183, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341655.7576294, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341655.7576308, - "lastIP": "azo~{o~~hbaiiz", - "deviceUUID": "fe0632180c6fdf0358ef662793570362f1792ca2", - "cMsgCount": 0, - "lastMsgTime": 1670254337.7456703, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH": { - "display_string": [ - "\ue063UKnowMeAJ", - "\ue030Android6156965", - "\ue030Android8450884", - "\ue030PC124724", - "\ue030Android16945336" - ], - "profiles": [], - "name": "\ue063UKnowMeAJ", - "isBan": false, - "isMuted": false, - "accountAge": "2016-08-23 22:53:02", - "registerOn": 1670153607.9341831, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153607.9341836, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153607.9341931, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153607.9341943, - "lastIP": "awj~{`~}kaaib~", - "deviceUUID": "0dabcb7a1112dfe28d7c91c8ba6834dcd0a32ff1", - "cMsgCount": 0, - "lastMsgTime": 1670155302.665023, - "lastMsg": "finally met someone i know glad for that", - "cSameMsg": 0 - }, - "pb-IF4UU2IIFg==": { - "display_string": [ - "\ue020ArunTamizha" - ], - "profiles": [], - "name": "\ue020ArunTamizha", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-05 21:09:13", - "registerOn": 1670153617.0610843, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153617.0610847, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321650.54618, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321650.5461817, - "lastIP": "azo~{a~}kbaie\u007f", - "deviceUUID": "c8c93e9246ede294de40a489382f9caff152bcca" - }, - "pb-IF4NU0ogMQ==": { - "display_string": [ - "\ue030Android63798929" - ], - "profiles": [], - "name": "\ue030Android63798929", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 00:06:46", - "registerOn": 1670153625.037714, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153625.0377147, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153625.0377228, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153625.037724, - "lastIP": "a\u007fn~~aeah~}lh", - "deviceUUID": "\u0015" - }, - "pb-IF4mU04zPA==": { - "display_string": [ - "\ue020Aryansingh7380" - ], - "profiles": [], - "name": "\ue020Aryansingh7380", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 15:36:00", - "registerOn": 1670153703.224928, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153703.2249286, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153703.2249346, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153703.2249358, - "lastIP": "bxvgakhald", - "deviceUUID": "1bcb6d4f5e67c688504e2ed69b13a6fedefb0b5c" - }, - "pb-IF4HU0sYJg==": { - "display_string": [ - "\ue020NerdyIntoxication61" - ], - "profiles": [], - "name": "\ue020NerdyIntoxication61", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 21:12:15", - "registerOn": 1670153751.4580996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153751.4581, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153751.4581082, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153751.4581094, - "lastIP": "d|vbzi~}jcaj`y", - "deviceUUID": "d41e1b56bbddcdb0889e605e38131b1e3136c616" - }, - "pb-IF41UlUmIw==": { - "display_string": [ - "\ue063Screechi15" - ], - "profiles": [], - "name": "\ue063Screechi15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-04 10:32:44", - "registerOn": 1670153940.0520194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670153940.05202, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670153940.0520291, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670153940.0520303, - "lastIP": "a\u007fk~~iaaabajcz", - "deviceUUID": "4e3edf5ba1db2396c457d9a9e5fbfd6164cdcab0" - }, - "pb-IF5TVUJcLA==": { - "display_string": [ - "\ue020lazygamerwhatsoever" - ], - "profiles": [], - "name": "\ue020lazygamerwhatsoever", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-08 06:27:07", - "registerOn": 1670154007.2923071, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154007.2923076, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154007.2923143, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154007.2923155, - "lastIP": "b\u007fj~~o`aj`xvazi", - "deviceUUID": "19d50cda16f967f422a6754824923d499c3b92f9" - }, - "pb-IF4SU08FBw==": { - "display_string": [ - "\ue063FULLGAMING" - ], - "profiles": [], - "name": "\ue063FULLGAMING", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:18:06", - "registerOn": 1670154020.3763273, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154020.3763275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154020.3763359, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670154950.374515, - "lastIP": "azo~{l~~mbaoc", - "deviceUUID": "7d7048bd82d0b66c3650d55dacb0d18a7ac2e368" - }, - "pb-IF4OVGhcIw==": { - "display_string": [ - "\ue020NeedlessMonkey47856" - ], - "profiles": [], - "name": "\ue020NeedlessMonkey47856", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-23 13:52:24", - "registerOn": 1670154041.5401742, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154041.540175, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327813.64667, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327813.6466715, - "lastIP": "azo~zi~y`~~ob", - "deviceUUID": "a38d062dd017df250a5be569c32001f95e70f7eb" - }, - "pb-IF4lU2caEg==": { - "display_string": [ - "\ue063KiskiBaji" - ], - "profiles": [], - "name": "\ue063KiskiBaji", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-24 19:56:44", - "registerOn": 1670154092.6420085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154092.642009, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154092.6420195, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154092.6420205, - "lastIP": "axi~{`~vh~}kh", - "deviceUUID": "606f44af70f4bf1cabb722fc7d783d8f3a810887" - }, - "pb-IF4nUm84Kg==": { - "display_string": [ - "\ue030PC359091", - "\ue030Android48388543", - "\ue030Linux47759" - ], - "profiles": [], - "name": "\ue030Android48388543", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-24 17:46:42", - "registerOn": 1670154121.7974608, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154121.7974615, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154121.797471, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154121.7974722, - "lastIP": "dvvc{va|a~}ke", - "deviceUUID": "\u0015" - }, - "pb-IF4cV3AGLQ==": { - "display_string": [ - "\ue020PlasticWillOWisp7884", - "\ue030Android29929213" - ], - "profiles": [], - "name": "\ue020PlasticWillOWisp7884", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-07 16:48:17", - "registerOn": 1670154154.8782644, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154154.878265, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347106.7934768, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670347106.7934783, - "lastIP": "a\u007fn~~afai~~jh", - "deviceUUID": "4d4035f1abf08f28bfba4a1424365e80892cc400" - }, - "pb-IF5dVWgRBg==": { - "display_string": [ - "\ue030Android47745010" - ], - "profiles": [], - "name": "\ue030Android47745010", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-17 15:16:22", - "registerOn": 1670154159.865419, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154159.8654191, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226291.5876706, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670240712.201623, - "lastIP": "dvvc}vaxi~~`b", - "deviceUUID": "0d43b8953ca13eaf5199996cd75eecab4a33f535", - "cMsgCount": 0, - "lastMsgTime": 1670240542.6593437, - "lastMsg": "ok", - "cSameMsg": 0 - }, - "pb-IF5RU3AjNA==": { - "display_string": [ - "\ue020FranticFever44" - ], - "profiles": [], - "name": "\ue020FranticFever44", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-16 11:24:36", - "registerOn": 1670154190.9684489, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154190.9684496, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250715.2657275, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670250922.9935684, - "lastIP": "azo~{n~~haaaa", - "deviceUUID": "1a9c004b4686e7ad14e6a3ca809ec5ffb520c744" - }, - "pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL": { - "display_string": [ - "\ue020sahilkhatri343593", - "\ue030Android15977310" - ], - "profiles": [], - "name": "\ue020sahilkhatri343593", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-09 23:24:32", - "registerOn": 1670154268.5327513, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670156616.624894, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670354228.550771, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670354228.5507722, - "lastIP": "azo~{m~}leamf", - "deviceUUID": "f03172fe2a449fcc17773aad18f0af7cfff7aeb8", - "cMsgCount": 0, - "lastMsgTime": 1670354879.964099, - "lastMsg": "hnn\ud83c\udf03", - "cSameMsg": 0 - }, - "pb-IF4UU00MKQ==": { - "display_string": [ - "\ue063Underwate6" - ], - "profiles": [], - "name": "\ue063Underwate6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 06:34:24", - "registerOn": 1670154385.9283226, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154385.928323, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154385.9283323, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670154431.4844832, - "lastIP": "a~j~}hgai`{vb~", - "deviceUUID": "11d202b7087bc5e0f1b0fd3251f45f2a6087639a", - "cMsgCount": 0, - "lastMsgTime": 1670154817.8543675, - "lastMsg": "hahaha died cxd", - "cSameMsg": 0 - }, - "pb-IF4iU0kkFw==": { - "display_string": [ - "\ue030Android63759055" - ], - "profiles": [], - "name": "\ue030Android63759055", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-28 21:20:32", - "registerOn": 1670154458.8962836, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154458.896284, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154458.8962908, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154458.8962917, - "lastIP": "a\u007fn~}hhaievvb\u007fh", - "deviceUUID": "aa9df018acc2720dbbab3e71f4308cc3e749460b" - }, - "pb-IF4XUk87Lg==": { - "display_string": [ - "\ue063zakitcgame" - ], - "profiles": [], - "name": "\ue063zakitcgame", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-11 17:18:40", - "registerOn": 1670154476.9446325, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154476.9446332, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154476.9446418, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154476.944643, - "lastIP": "dvvcxvayi~}li", - "deviceUUID": "f60e1a759feaade6d32a3bd98c15ba1540c1443f" - }, - "pb-IF4FU3ApCw==": { - "display_string": [ - "\ue020Dharun1403" - ], - "profiles": [], - "name": "\ue020Dharun1403", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-27 18:30:58", - "registerOn": 1670154560.3510652, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154560.3510659, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154560.3510735, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154560.3510742, - "lastIP": "azo~zi~~hcaigz", - "deviceUUID": "fd5729efd2498f63fb5e6d81129a429389e021bf" - }, - "pb-IF4VVWsGIA==": { - "display_string": [ - "\ue020PseudoAttendance18" - ], - "profiles": [], - "name": "\ue020PseudoAttendance18", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-27 10:46:09", - "registerOn": 1670154570.3457055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154570.345706, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325450.6205482, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670329217.1041179, - "lastIP": "azo~zi~~m`ajdx", - "deviceUUID": "bf98ea45cae48baaed18a03b5d3996ee1c8b0f92", - "cMsgCount": 2, - "lastMsgTime": 1670330386.6632745, - "lastMsg": "/fly ", - "cSameMsg": 0 - }, - "pb-JiNJARFcV0RFWV1AF0VRVVxKFURWQFBD": { - "display_string": [ - "\ue063InfiniteVa" - ], - "profiles": [], - "name": "\ue063InfiniteVa", - "isBan": false, - "isMuted": false, - "accountAge": "2016-07-08 20:31:35", - "registerOn": 1670154667.6615448, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154667.6615453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230012.2025716, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670230024.2440221, - "lastIP": "dvvcxvb\u007fj~~mb", - "deviceUUID": "7e9cfb1ec189b9af073018c0e121a54c93b4d84a", - "cMsgCount": 0, - "lastMsgTime": 1670154803.948753, - "lastMsg": "too much crowded ", - "cSameMsg": 0 - }, - "pb-IF4NU0sbEA==": { - "display_string": [ - "\ue020LordTamboKing" - ], - "profiles": [], - "name": "\ue020LordTamboKing", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-13 18:56:12", - "registerOn": 1670154746.9129632, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154746.9129634, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301739.9053996, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670301921.5981803, - "lastIP": "azo~|l~~lfaie", - "deviceUUID": "ee45cecc4347962ab5eecb73f55adf8f735fa801" - }, - "pb-IF5XVEUZDQ==": { - "display_string": [ - "\ue063ConfusedJa", - "\ue030Android56475190" - ], - "profiles": [], - "name": "\ue063ConfusedJa", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-11 11:55:01", - "registerOn": 1670154786.0738292, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154786.07383, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154786.073839, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154786.0738397, - "lastIP": "a\u007fk~~idakiaii", - "deviceUUID": "cf0a45a18717647d9d1bb5d4bc2f40f5c632ee8a" - }, - "pb-IF4gU00eLQ==": { - "display_string": [ - "\ue030Android63922654" - ], - "profiles": [], - "name": "\ue030Android63922654", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 19:00:42", - "registerOn": 1670154810.1850333, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154810.1850338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154810.1850398, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154810.1850407, - "lastIP": "a\u007fk~~j`aj`\u007fvc}", - "deviceUUID": "2ca3765be0c668ce4b5ae1536349729c4a009d28" - }, - "pb-IF4lU0c9Hw==": { - "display_string": [ - "\ue030Android63669053" - ], - "profiles": [], - "name": "\ue030Android63669053", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 10:59:37", - "registerOn": 1670154903.5047412, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154903.5047417, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335633.919163, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335633.9191644, - "lastIP": "b}k~}jga`caigw", - "deviceUUID": "30e91cbd42dabf2a3be836ca08a1d6341db5b10d", - "cMsgCount": 1, - "lastMsgTime": 1670337045.1403408, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4zUkM_MQ==": { - "display_string": [ - "\ue030Android63984108" - ], - "profiles": [], - "name": "\ue030Android63984108", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 17:03:02", - "registerOn": 1670154917.8602087, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670154917.8602092, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670154917.8602173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670154917.8602183, - "lastIP": "fyvawi~~`aaih{", - "deviceUUID": "fb4cbf3ed54bcb03b1a8a4dc97b8c8b07f81bb17" - }, - "pb-IF4AU0slNQ==": { - "display_string": [ - "\ue020ExposedEditorial36" - ], - "profiles": [], - "name": "\ue020ExposedEditorial36", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 23:05:52", - "registerOn": 1670155006.9034653, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155006.9034655, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340287.747325, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340287.7473266, - "lastIP": "b\u007fj~wn~}jaaiiw", - "deviceUUID": "3a858043f93d2d3d346070f046d32ae8f09f83dc" - }, - "pb-IF4sVFkqEw==": { - "display_string": [ - "\ue020THANATOS6660" - ], - "profiles": [], - "name": "\ue020THANATOS6660", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-23 20:31:48", - "registerOn": 1670155043.0317564, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155043.0317566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155043.0317628, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155043.031764, - "lastIP": "azo~{n~~`daid\u007f", - "deviceUUID": "81e6bd1280798e984d4653bf596424fbd89f18ba" - }, - "pb-IF4AV3RfLA==": { - "display_string": [ - "\ue020Rahul1000010206", - "\ue030Android30382608" - ], - "profiles": [], - "name": "\ue020Rahul1000010206", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-22 19:00:56", - "registerOn": 1670155086.163616, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155086.1636162, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220102.4517877, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220102.4517894, - "lastIP": "d}va\u007fn~vvg|", - "deviceUUID": "a3dd0677c34dccab00e64b217b08593bd7741092" - }, - "pb-IF4rU08GJw==": { - "display_string": [ - "\ue063LunarJogge" - ], - "profiles": [], - "name": "\ue063LunarJogge", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 16:14:10", - "registerOn": 1670155098.2845676, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155098.284568, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155098.2845762, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155098.2845771, - "lastIP": "azo~{l~~nbajd|", - "deviceUUID": "c7bc39d68e87db8e08579e63abd483695894e87d" - }, - "pb-IF49VW0hJA==": { - "display_string": [ - "\ue030Android48713858" - ], - "profiles": [], - "name": "\ue030Android48713858", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-06 15:20:40", - "registerOn": 1670155217.664931, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155217.6649315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169988.9518273, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169988.9518285, - "lastIP": "a\u007fn~}iaajdwvdw", - "deviceUUID": "057c3747d18371a72042fae071c8ac22f2d7ec77" - }, - "pb-IF4pU2sgJw==": { - "display_string": [ - "\ue020superchan92413", - "\ue030Android61664971" - ], - "profiles": [], - "name": "\ue020superchan92413", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-06 16:58:42", - "registerOn": 1670155380.337275, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155380.337276, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155380.3372843, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155380.3372853, - "lastIP": "a~j~~kdaj`\u007fvb{l", - "deviceUUID": "a9bc1b36fdfe2fda971bbe51a3383a7518ee4581" - }, - "pb-IF4oU3USLw==": { - "display_string": [ - "\ue020abiee1704" - ], - "profiles": [], - "name": "\ue020abiee1704", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-18 13:03:48", - "registerOn": 1670155424.4973814, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155424.497382, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155424.49739, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155424.497391, - "lastIP": "b~h~~vivva~`", - "deviceUUID": "4852a0329a65195d8ed91b6c0276c14c1cab92c9" - }, - "pb-IF4oU3oJEQ==": { - "display_string": [ - "\ue030Android63193363" - ], - "profiles": [], - "name": "\ue030Android63193363", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-08 12:35:31", - "registerOn": 1670155431.456398, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155431.4563985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155431.456405, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155431.456406, - "lastIP": "a}j~~nda`ea`", - "deviceUUID": "52e883ca4163bd784c466d1d8e309d3bc0f4ff1a" - }, - "pb-IF4nVUwZKg==": { - "display_string": [ - "\ue063SHDW1357" - ], - "profiles": [], - "name": "\ue063SHDW1357", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-24 18:12:02", - "registerOn": 1670155590.025852, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155590.0258524, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155590.0258603, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155590.025861, - "lastIP": "a~o~}hiajcxva\u007fn", - "deviceUUID": "5f7707ac18cc6bf90a4f74f0c186607e0a5c1a8f" - }, - "pb-IF4BU00xJA==": { - "display_string": [ - "\ue020SkinnyPencil69437" - ], - "profiles": [], - "name": "\ue020SkinnyPencil69437", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 21:34:06", - "registerOn": 1670155599.0226436, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155599.022644, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155599.0226533, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670155688.0137756, - "lastIP": "d}va~i~~hcaih", - "deviceUUID": "421ad51755dbf596a5afed7d8271998b7e65dc7a" - }, - "pb-IF4dU0kPLQ==": { - "display_string": [ - "\ue030Android63764097" - ], - "profiles": [], - "name": "\ue030Android63764097", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 15:28:23", - "registerOn": 1670155633.1936507, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155633.1936512, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232692.8373356, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232692.8373373, - "lastIP": "a\u007fk~}`~~icaj", - "deviceUUID": "097d38a155cd36f9651bef96204f08390ebe615a" - }, - "pb-IF41U08_Ug==": { - "display_string": [ - "\ue063gandfaad14" - ], - "profiles": [], - "name": "\ue063gandfaad14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 16:09:18", - "registerOn": 1670155714.55478, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155714.5547805, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155714.5547888, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155714.5547898, - "lastIP": "a\u007fn~}i`aifvvd\u007f", - "deviceUUID": "708461b0dbfa7a287e55479b218190516c61359e" - }, - "pb-IF48U3MGAw==": { - "display_string": [ - "\ue030Android62546435" - ], - "profiles": [], - "name": "\ue030Android62546435", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 23:05:49", - "registerOn": 1670155745.5220652, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155745.5220656, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155745.5220733, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155745.5220742, - "lastIP": "axm~~kiaj`xvawm", - "deviceUUID": "df3b7c478bdbc8a9e06c0f726d62ac4b3a1d6459", - "cMsgCount": 0, - "lastMsgTime": 1670155763.171182, - "lastMsg": "/end", - "cSameMsg": 0 - }, - "pb-IF4lU2kSJw==": { - "display_string": [ - "\ue020RareChimera45170", - "\ue030Android61670136" - ], - "profiles": [], - "name": "\ue030Android61670136", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-02 19:27:15", - "registerOn": 1670155805.7864053, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155805.7864058, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155805.786414, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155805.7864149, - "lastIP": "dvvc}vayn~wi", - "deviceUUID": "836c6c4670c3449e59c41970e1897b5d4d40b101" - }, - "pb-IF4qU25ZNQ==": { - "display_string": [ - "\ue030Android62042729" - ], - "profiles": [], - "name": "\ue030Android62042729", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-17 06:19:41", - "registerOn": 1670155836.8855462, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155836.8855467, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155836.8855538, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155836.8855548, - "lastIP": "awj~}kbai`xvb{o", - "deviceUUID": "\u0015S^" - }, - "pb-IF4UU1AuUQ==": { - "display_string": [ - "\ue063GrubbyMani" - ], - "profiles": [], - "name": "\ue063GrubbyMani", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 11:00:59", - "registerOn": 1670155944.6819415, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155944.681942, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670155944.6819518, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670155944.6819527, - "lastIP": "axm~~khaniaif~", - "deviceUUID": "4f706677eeb6d18054f0de0864218a90f385f5c7" - }, - "pb-IF4TU0o6Aw==": { - "display_string": [ - "\ue063unstoppabl", - "\ue030Android63873290" - ], - "profiles": [], - "name": "\ue063unstoppabl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-31 14:48:23", - "registerOn": 1670155975.315315, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670155975.3153155, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670378586.2766302, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670378586.2766316, - "lastIP": "awh~~aaajayva|i", - "deviceUUID": "3fc28f4ee74b8d9f421e8a6e9e11b8ebc43f1e31" - }, - "pb-IF40UncaLg==": { - "display_string": [ - "\ue063TiredShift" - ], - "profiles": [], - "name": "\ue063TiredShift", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-03 12:48:25", - "registerOn": 1670156023.854145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156023.8541455, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222448.129962, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670222458.156818, - "lastIP": "dvvc}vbzi~zh", - "deviceUUID": "1bebabd26f546f797cb44971532451f5181a64a4", - "cMsgCount": 0, - "lastMsgTime": 1670170109.5159588, - "lastMsg": "gg", - "cSameMsg": 0 - }, - "pb-IF4SEHAl": { - "display_string": [ - "\ue020bisht4189", - "\ue030PC322127", - "\ue030Android45764862" - ], - "profiles": [], - "name": "\ue020bisht4189", - "isBan": false, - "isMuted": false, - "accountAge": "2018-06-09 21:21:57", - "registerOn": 1670156033.5834677, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156033.5834682, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338597.785404, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338597.7854052, - "lastIP": "a\u007fk~{`~~aiaify", - "deviceUUID": "8ece070744c3e4e7b9b808ab81b0ffecf18693ab", - "cMsgCount": 0, - "lastMsgTime": 1670339138.776181, - "lastMsg": "\u091c\u0949\u0928 \u0935\u0940\u0915 \u0930\u0924\u094d\u0928 \u0915\u093e \u0906\u0936\u093f\u0958", - "cSameMsg": 0 - }, - "pb-IF4iVFBbDA==": { - "display_string": [ - "\ue063djankit857" - ], - "profiles": [], - "name": "\ue063djankit857", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-19 08:40:00", - "registerOn": 1670156095.9860313, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156095.9860315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337482.9605923, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337482.9605935, - "lastIP": "a\u007fn~}ifaia}vh", - "deviceUUID": "9ae5fe15fbead527883571aba5ca3f1e5ca6177c", - "cMsgCount": 0, - "lastMsgTime": 1670258431.1791816, - "lastMsg": "ahh", - "cSameMsg": 0 - }, - "pb-IF4tU00oEA==": { - "display_string": [ - "\ue063Unparalle3" - ], - "profiles": [], - "name": "\ue063Unparalle3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 16:10:55", - "registerOn": 1670156138.9764473, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156138.9764478, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156138.9764707, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670156260.0455256, - "lastIP": "b}k~}jeaig~vd}", - "deviceUUID": "5c2c20c749cd54939711e428c481d15e73acc9ee" - }, - "pb-IF4UU1BeVg==": { - "display_string": [ - "\ue030Android63976531" - ], - "profiles": [], - "name": "\ue030Android63976531", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 15:30:34", - "registerOn": 1670156150.9990356, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156150.999036, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156150.9990444, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156150.9990454, - "lastIP": "azo~{a~~lbaia\u007f", - "deviceUUID": "\u0015P\bXS\u0011" - }, - "pb-IF4rU1BdLw==": { - "display_string": [ - "\ue063SheikRieng" - ], - "profiles": [], - "name": "\ue063SheikRieng", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:24:11", - "registerOn": 1670156267.369528, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156267.3695285, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331982.556344, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670331982.5563457, - "lastIP": "azo~zi~~acajc{", - "deviceUUID": "9619ea22745015da3103b77820c9c0bdef6a70f0", - "cMsgCount": 0, - "lastMsgTime": 1670332882.8532884, - "lastMsg": "suiiiii", - "cSameMsg": 0 - }, - "pb-IF4sU0tbUA==": { - "display_string": [ - "\ue030Android63824610" - ], - "profiles": [], - "name": "\ue030Android63824610", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-07 20:34:15", - "registerOn": 1670156348.6588078, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156348.6588082, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156348.658817, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156348.658818, - "lastIP": "a{h~}icalaaii|", - "deviceUUID": "a5dab92b35a1f6ce73b27982249c0e95eab50cbd" - }, - "pb-IF4IU08oXA==": { - "display_string": [ - "\ue030Android63976379" - ], - "profiles": [], - "name": "\ue030Android63976379", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 15:04:06", - "registerOn": 1670156411.8843334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156411.8843338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156411.8843422, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156411.8843434, - "lastIP": "a\u007fk~}hcaiczva{o", - "deviceUUID": "4903d084baf9abddc56cfe3c137c5e5f4cab07a3" - }, - "pb-IF4rUkFSLw==": { - "display_string": [ - "\ue063Conformab8", - "\ue030Android57282101" - ], - "profiles": [], - "name": "\ue020ConformableLink14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-16 16:52:54", - "registerOn": 1670156441.9974556, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156441.997456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341206.1418886, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341206.14189, - "lastIP": "azo~|j~~i~~lg", - "deviceUUID": "5d57b00b4e1daba91ce4fbc1d6a47384ffcec743" - }, - "pb-IF5QU3gCEQ==": { - "display_string": [ - "\ue063Arcanegame" - ], - "profiles": [], - "name": "\ue020lightingstormer", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-19 18:17:04", - "registerOn": 1670156507.2636464, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156507.263647, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169174.925367, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169174.9253683, - "lastIP": "azo~zi~~k~wh", - "deviceUUID": "9c9ca455a82357d94ff9b041816837d19fe98a92" - }, - "pb-IF4rU0o9KQ==": { - "display_string": [ - "\ue030Android63770342" - ], - "profiles": [], - "name": "\ue030Android63770342", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-30 10:28:52", - "registerOn": 1670156544.3403409, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156544.3403413, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670325605.1216817, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670331001.1045427, - "lastIP": "a~j~}h`aifyva\u007fa", - "deviceUUID": "264499e93a0572229a207bf3cf326bdce60fe69f", - "cMsgCount": 1, - "lastMsgTime": 1670330734.89296, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4TUlZZIg==": { - "display_string": [ - "\ue030Android59520942" - ], - "profiles": [], - "name": "\ue030Android59520942", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-07 08:34:13", - "registerOn": 1670156560.410046, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156560.4100468, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156560.410055, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156560.4100559, - "lastIP": "a~j~~ahajc}vhz", - "deviceUUID": "\u0015Y\u000bSUDY\fXP\u0017Y\bYTB\u0005XPXAV_SUA" - }, - "pb-IF41U2cJEA==": { - "display_string": [ - "\ue063Vanquishi8" - ], - "profiles": [], - "name": "\ue063Vanquishi8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-24 17:06:27", - "registerOn": 1670156608.679988, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156608.6799881, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156608.6799943, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156608.679995, - "lastIP": "a\u007fn~}hcaidyva|l", - "deviceUUID": "f25878bcd4d5d0c8431d14cf300314495ccb4189" - }, - "pb-IF5dVERdFA==": { - "display_string": [ - "\ue030Android41433412" - ], - "profiles": [], - "name": "\ue030Android41433412", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-02 18:48:19", - "registerOn": 1670156614.946084, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156614.9460843, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168570.8582368, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168570.8582382, - "lastIP": "dvvc{vaz`~~hh", - "deviceUUID": "fe2e14c89841f3d3cdfaa7bfd694859405277ca5" - }, - "pb-IF4XU0whCw==": { - "display_string": [ - "\ue030Android63825840" - ], - "profiles": [], - "name": "\ue030Android63825840", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 00:45:28", - "registerOn": 1670156627.7043135, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156627.704314, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156627.7043226, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156627.7043235, - "lastIP": "dxvc~va{m~}jg", - "deviceUUID": "997c03dbb6f929175bfc8cdff8b3950e693b29ef" - }, - "pb-IF4jU04xLQ==": { - "display_string": [ - "\ue020SahilRisingStar0920" - ], - "profiles": [], - "name": "\ue020SahilRisingStar0920", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 01:09:21", - "registerOn": 1670156658.9991548, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156658.9991553, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670156871.692482, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156658.9991639, - "lastIP": "azo~zh~}h~~nd", - "deviceUUID": "f03172fe2a449fcc17773aad18f0af7cfff7aeb8", - "cMsgCount": 0, - "lastMsgTime": 1670157368.0871663, - "lastMsg": " ", - "cSameMsg": 0 - }, - "pb-IF4UUmZcEA==": { - "display_string": [ - "\ue020Dharsanaswin" - ], - "profiles": [], - "name": "\ue020Dharsanaswin", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-11 08:35:28", - "registerOn": 1670156685.8769872, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156685.8769877, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340079.046858, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340079.0468595, - "lastIP": "azo~zi~~jaaibv", - "deviceUUID": "e88c7c1725a44ce7206089fd2a45d4aecb29c3de" - }, - "pb-IF5WV00NMQ==": { - "display_string": [ - "\ue020itsakasrija" - ], - "profiles": [], - "name": "\ue020itsakasrija", - "isBan": false, - "isMuted": false, - "accountAge": "2019-03-19 19:02:53", - "registerOn": 1670156818.322882, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156818.3228827, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156818.3228912, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670156818.3228924, - "lastIP": "azo~|a~}n~~mc", - "deviceUUID": "e63c1a29bbc41767e40f45748864e5d421783ac7" - }, - "pb-IF5SU00_Ag==": { - "display_string": [ - "\ue020AmazingTriangle14295" - ], - "profiles": [], - "name": "\ue020AmazingTriangle14295", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 22:10:57", - "registerOn": 1670156821.4004574, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156821.400458, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670156821.4004662, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670159147.2531607, - "lastIP": "azo~|j~}jdamc", - "deviceUUID": "a92e2cebf013aa06240ed50b96989dbd3044ff3e" - }, - "pb-IF4GU0gbVQ==": { - "display_string": [ - "\ue020DependableChip25" - ], - "profiles": [], - "name": "\ue020DependableChip25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 12:19:05", - "registerOn": 1670156908.6517982, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670156908.6517987, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318214.6463692, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318214.646371, - "lastIP": "a\u007fk~~mfaja|va|m", - "deviceUUID": "c912da30b9db33fb38a678ee31d79e93cc9ef4bf", - "cMsgCount": 0, - "lastMsgTime": 1670318853.8974233, - "lastMsg": "lord", - "cSameMsg": 0 - }, - "pb-IF4RU2g-VQ==": { - "display_string": [ - "\ue063ErsatzGuac" - ], - "profiles": [], - "name": "\ue063ErsatzGuac", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-26 18:38:58", - "registerOn": 1670157133.8047647, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157133.804765, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670348196.353198, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670348196.3531997, - "lastIP": "dvvcxvb|k~~``", - "deviceUUID": "2894d5f21de84de80bd309ce6a555b49ea37f2aa" - }, - "pb-IF4KV04FIg==": { - "display_string": [ - "\ue063ItzMeRoman" - ], - "profiles": [], - "name": "\ue063ItzMeRoman", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-04 19:04:04", - "registerOn": 1670157219.8004673, - "canStartKickVote": true, - "spamCount": 2, - "lastSpam": 1670317030.170266, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670352068.9927344, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670356904.071566, - "lastIP": "dvvcxvfyvez", - "deviceUUID": "c9f79337d0693a50e81662cee5c8b8f1dcf508be", - "cMsgCount": 0, - "lastMsgTime": 1670355214.7969737, - "lastMsg": "\ud83d\ude42", - "cSameMsg": 0 - }, - "pb-IF4OU0MpNA==": { - "display_string": [ - "\ue063Nostalgic4" - ], - "profiles": [], - "name": "\ue063Nostalgic4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-20 16:48:26", - "registerOn": 1670157412.4206848, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157412.4206853, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670157412.420694, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670157412.420695, - "lastIP": "aw`~~jiaie~vgz", - "deviceUUID": "e2c5ef269ad01779706103d044c7585ffb000ba7" - }, - "pb-IF5WU1EqAw==": { - "display_string": [ - "\ue030Android63963639" - ], - "profiles": [], - "name": "\ue030Android63963639", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 17:29:52", - "registerOn": 1670157483.7763898, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157483.7763903, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210333.055326, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210333.0553274, - "lastIP": "dvva{l~}jhajc}", - "deviceUUID": "ee687ca5612b9f5463a9df13607420d98eddb3de" - }, - "pb-IF4qKFAu": { - "display_string": [ - "\ue063GreenKiwi4" - ], - "profiles": [], - "name": "\ue063GreenKiwi4", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-05 10:39:28", - "registerOn": 1670157486.7374034, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157486.7374036, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670304412.0338194, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670304412.0338206, - "lastIP": "azo~|j~|h~wh", - "deviceUUID": "95694b7b91756bdcb228a522ae7c0e7b57d1f025" - }, - "pb-IF4UUlQyEA==": { - "display_string": [ - "\ue063EpicQuail4", - "\ue030Android58443597" - ], - "profiles": [], - "name": "\ue063EpicQuail4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-30 22:35:41", - "registerOn": 1670157640.2495594, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157640.2495599, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254058.9861078, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254058.9861093, - "lastIP": "azo~|o~~khaoi", - "deviceUUID": "8708d0911fb55b2401c512826006a1dd0646ce00" - }, - "pb-IF4MU2sFJA==": { - "display_string": [ - "\ue020MDHAMDAN99" - ], - "profiles": [], - "name": "\ue020MDHAMDAN99", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 06:07:38", - "registerOn": 1670157676.450389, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157676.4503894, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169450.9087777, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670173940.2467167, - "lastIP": "azo~{n~w`~~ld", - "deviceUUID": "d472f8b4092afab5cc1bd4d51eecb6e2febe3e75" - }, - "pb-IF4dU04OPA==": { - "display_string": [ - "\ue063ISHANTH05" - ], - "profiles": [], - "name": "\ue063ISHANTH05", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 10:08:54", - "registerOn": 1670157876.1229389, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157876.122939, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670157876.1229472, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670157876.1229486, - "lastIP": "azo~{m~}meaicx", - "deviceUUID": "3b313c2552efa95697f7c00278ba9bb150841a5f" - }, - "pb-IF4eU0kxCg==": { - "display_string": [ - "\ue020masterkiller12398745" - ], - "profiles": [], - "name": "\ue020masterkiller12398745", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-26 22:23:38", - "registerOn": 1670157906.1819763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157906.1819768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670157906.1819868, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670157906.1819878, - "lastIP": "a|o~vo~vn~|k", - "deviceUUID": "6d0ed873d109ff0f040122376bf075a4e2f48eb6" - }, - "pb-IF4SUnMKEw==": { - "display_string": [ - "\ue063Mukund094" - ], - "profiles": [], - "name": "\ue063Mukund094", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-15 19:01:52", - "registerOn": 1670157917.202916, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157917.2029164, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168887.971206, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670169157.8623798, - "lastIP": "aakhaifxvb}a", - "deviceUUID": "81ca5c0f7a3bcd42bc49e9507bce630a6d73eca0" - }, - "pb-IF5dU1FZDA==": { - "display_string": [ - "\ue063NewestBlue", - "\ue030Android52862393" - ], - "profiles": [], - "name": "\ue063NewestBlue", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 19:16:18", - "registerOn": 1670157920.253806, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670157920.2538066, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670157920.2538145, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670157920.2538157, - "lastIP": "a\u007fn~~abakfaig{", - "deviceUUID": "0a674aa22c9f045cae63f4bcdc0252fb2449c177" - }, - "pb-IF4CU2oaKw==": { - "display_string": [ - "\ue063Edwinss321" - ], - "profiles": [], - "name": "\ue063Edwinss321", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-05 21:30:27", - "registerOn": 1670158148.072629, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158148.0726295, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158148.0726385, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158148.0726395, - "lastIP": "a\u007fn~}ica`ham", - "deviceUUID": "0a91a672cfaf036c22db725f3a3e8e59035f010e" - }, - "pb-IF4DVW4HFA==": { - "display_string": [ - "\ue030Android48907943" - ], - "profiles": [], - "name": "\ue030Android48907943", - "isBan": true, - "isMuted": false, - "accountAge": "2020-12-15 22:45:08", - "registerOn": 1670158229.2643647, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158229.264365, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670158454.317948, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158229.264374, - "lastIP": "b}k~}khaid|vbx", - "deviceUUID": "\u0015YUYY\u0010", - "cMsgCount": 0, - "lastMsgTime": 1670158454.3179662, - "lastMsg": "maderchud kick to formalities h smjha \ud83e\udd72", - "cSameMsg": 0 - }, - "pb-IF4QU04nPA==": { - "display_string": [ - "\ue020DoggedAptitude38", - "\ue030Android58612835" - ], - "profiles": [], - "name": "\ue020DoggedAptitude38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 12:58:36", - "registerOn": 1670158238.2970982, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158238.2970986, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158238.2971108, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158238.2971117, - "lastIP": "azo~{n~}i`aihz", - "deviceUUID": "4eabdeb28894cf088b5d8ef27f447ab3ba2c061c" - }, - "pb-IF4VU3laVA==": { - "display_string": [ - "\ue030Android63074779" - ], - "profiles": [], - "name": "\ue030Android63074779", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-02 11:57:20", - "registerOn": 1670158299.61513, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158299.6151304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347582.7419815, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670347582.7419825, - "lastIP": "a\u007fk~~n`ajc|vb|`", - "deviceUUID": "2393a78d5604af32281b51a76fe4cbd2171ba7e6", - "cMsgCount": 2, - "lastMsgTime": 1670333619.4676514, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF41V0UyDg==": { - "display_string": [ - "\ue020Wikirex2001" - ], - "profiles": [], - "name": "\ue020Wikirex2001", - "isBan": false, - "isMuted": false, - "accountAge": "2019-02-17 15:45:44", - "registerOn": 1670158332.7237494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158332.7237499, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325490.7797647, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325490.7797663, - "lastIP": "a|a~~ngajcyve\u007f", - "deviceUUID": "05026a979dca7e3cd404eee012a2336e923ed14b", - "cMsgCount": 0, - "lastMsgTime": 1670326174.3910544, - "lastMsg": "\ud83d\ude02\ud83d\ude02\ud83d\ude02", - "cSameMsg": 0 - }, - "pb-IF4mVGEjJA==": { - "display_string": [ - "\ue020MIKEJV007" - ], - "profiles": [], - "name": "\ue020MIKEJV007", - "isBan": false, - "isMuted": false, - "accountAge": "2019-08-13 08:40:49", - "registerOn": 1670158350.750915, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158350.7509153, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158350.7509232, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158350.7509243, - "lastIP": "azo~zi~~n`aiay", - "deviceUUID": "16de327515364db52a432d36d289431e6f8825ee" - }, - "pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB": { - "display_string": [ - "\ue0209584555539", - "\ue030unknown" - ], - "profiles": [], - "name": "\ue0209584555539", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-03 00:30:21", - "registerOn": 1670158399.918968, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158399.9189684, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335265.6084077, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670335595.780019, - "lastIP": "azo~|l~zi~|j", - "deviceUUID": "8c2fb0b9d047637ef53cd32ad494cc354031f559" - }, - "pb-IF4BUnovCQ==": { - "display_string": [ - "\ue020Twistedvine0127", - "\ue030Android57444788", - "\ue030Android57444801" - ], - "profiles": [], - "name": "\ue020Twistedvine0127", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-14 14:15:06", - "registerOn": 1670158458.1324604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158458.1324608, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158458.1324685, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158458.1324692, - "lastIP": "azo~{n~~ifaiew", - "deviceUUID": "3c7d1051e17ce71e475d658180d5dd502f0ace09" - }, - "pb-IF43VEQYAw==": { - "display_string": [ - "\ue020DeadlyFly63846" - ], - "profiles": [], - "name": "\ue020DeadlyFly63846", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-20 20:37:22", - "registerOn": 1670158467.190878, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158467.1908784, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670159756.8879652, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158467.1908875, - "lastIP": "azo~{o~xj~~n", - "deviceUUID": "31eedb523daf27dc1178ac369b99349530fede79", - "cMsgCount": 2, - "lastMsgTime": 1670160918.1159883, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4HU0gSFw==": { - "display_string": [ - "\ue030Android63728390" - ], - "profiles": [], - "name": "\ue030Android63728390", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 23:04:02", - "registerOn": 1670158531.4043813, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158531.4043818, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327967.219527, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670328683.6199138, - "lastIP": "a~n~y`~va~z", - "deviceUUID": "4d328e9283e76ab72597cc75a5a4b72b313ec890" - }, - "pb-IF4TVUcGKQ==": { - "display_string": [ - "\ue020king1of1brave1gaming", - "\ue020HeartfeltChamber20" - ], - "profiles": [], - "name": "\ue020king1of1brave1gaming", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-30 11:02:51", - "registerOn": 1670158552.4431162, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158552.4431164, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670377910.812239, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670377910.8122404, - "lastIP": "azo~{a~ym~}ie", - "deviceUUID": "83b496c81451591736504d9fd003651f3c431d66" - }, - "pb-IF4TU0oFAQ==": { - "display_string": [ - "\ue063FamousImpr" - ], - "profiles": [], - "name": "\ue020FamousImprovement43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 10:03:43", - "registerOn": 1670158617.7722538, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670217289.488894, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318064.1492138, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670323423.935414, - "lastIP": "a|j~~mdamgajg", - "deviceUUID": "ead26944d87701aa9f2b628098721da6d772321a", - "cMsgCount": 0, - "lastMsgTime": 1670254340.5818193, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4MVU4vLw==": { - "display_string": [ - "\ue020QuixoticEmpire16345" - ], - "profiles": [], - "name": "\ue020QuixoticEmpire16345", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-01 20:27:25", - "registerOn": 1670158646.8107684, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158646.8107688, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670159303.960782, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158646.8107784, - "lastIP": "dvvb\u007fo~zk~~li", - "deviceUUID": "b4160a8bd8994f6d125003003a21d86754474196", - "cMsgCount": 0, - "lastMsgTime": 1670159303.9608011, - "lastMsg": "asshole", - "cSameMsg": 0 - }, - "pb-IF4xU04PPw==": { - "display_string": [ - "\ue020TyrannicalSalmon36" - ], - "profiles": [], - "name": "\ue020TyrannicalSalmon36", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 16:49:49", - "registerOn": 1670158740.1758955, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158740.1758957, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158740.175904, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158740.175905, - "lastIP": "bxvf~vaw`~~na", - "deviceUUID": "b1856dffd0e4d0fe5e5128698c2ac16c0ef55de8" - }, - "pb-IF5QKnNb": { - "display_string": [ - "\ue063LoadedMart", - "\ue030Android39558415" - ], - "profiles": [], - "name": "\ue063LoadedMart", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-14 13:53:20", - "registerOn": 1670158762.2134898, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158762.2134902, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325712.5764754, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325712.5764775, - "lastIP": "a\u007fn~}icanfaic}", - "deviceUUID": "77eb0682ef0f6f2efb1c8c938c4593b7dac290cb", - "cMsgCount": 0, - "lastMsgTime": 1670159268.7488112, - "lastMsg": "/ping", - "cSameMsg": 0 - }, - "pb-IF4CU0pTCQ==": { - "display_string": [ - "\ue020vibhinnoflock" - ], - "profiles": [], - "name": "\ue020vibhinnoflock", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 13:55:12", - "registerOn": 1670158785.3006601, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158785.3006604, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158785.300669, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158785.30067, - "lastIP": "a~h~}jfaigyvb}h", - "deviceUUID": "5980ea0b22beeb8bde0de9c0c6beb4f6339aae8a" - }, - "pb-IF4DUnYIFw==": { - "display_string": [ - "\ue020DoubtfulCell25" - ], - "profiles": [], - "name": "\ue020DoubtfulCell25", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-28 09:03:28", - "registerOn": 1670158892.6819825, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158892.681983, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158892.6819916, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158892.6819928, - "lastIP": "a\u007fk~~mdakga`d", - "deviceUUID": "7413752b697042aadf43cd4fb65b6bd5a0139d35" - }, - "pb-IF4zU3gzBA==": { - "display_string": [ - "\ue020thunderstorms3054" - ], - "profiles": [], - "name": "\ue020thunderstorms3054", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-29 18:20:12", - "registerOn": 1670158901.7056797, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158901.7056801, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226806.6086006, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670242912.1311004, - "lastIP": "a~l~|i~~n`ama", - "deviceUUID": "b8aeb308a5987f2f3bf7a57960d670cda96888cb" - }, - "pb-ND0oS0YPXURAD1hFDU9SVFdfEUEKQExLAQVGRgAUEVldSRYUWFdWRg==": { - "display_string": [ - "\ue020SedAkkalaMwonu" - ], - "profiles": [], - "name": "\ue020SedAkkalaMwonu", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-04 19:17:16", - "registerOn": 1670158904.7604926, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670158904.760493, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670158904.7605016, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670158904.7605028, - "lastIP": "dvvcxvb}l~~`a", - "deviceUUID": "\u0015PTVR\u0010\u0003UR\u0007\u0010Q\bTRFU\\SPCV]TPBT" - }, - "pb-IF4BVUw-Dg==": { - "display_string": [ - "\ue020ashikroyal" - ], - "profiles": [], - "name": "\ue020ashikroyal", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-25 17:09:30", - "registerOn": 1670159001.1008008, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159001.1008012, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310387.1653728, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670310387.165374, - "lastIP": "azo~{m~}laalc", - "deviceUUID": "11a4030b2ff5e4f07a770cd13814d9a14f8be9f0", - "cMsgCount": 0, - "lastMsgTime": 1670159585.5415635, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4eU0sbNA==": { - "display_string": [ - "\ue063Darkestkni", - "\ue030Android63863811", - "\ue030Android63863805", - "\ue030Android63863822", - "\ue030Android63863790" - ], - "profiles": [], - "name": "\ue063Darkestkni", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 10:53:00", - "registerOn": 1670159142.5520449, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159142.5520453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159142.552053, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159142.552054, - "lastIP": "awj~ya~}lbajc|", - "deviceUUID": "3a8765c73d98cba05c51b0774af94ab7cf8c0e98" - }, - "pb-IF5SU0kIPw==": { - "display_string": [ - "\ue020ShortsightedRepeat40" - ], - "profiles": [], - "name": "\ue020ShortsightedRepeat40", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-17 15:15:08", - "registerOn": 1670159218.8720262, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159218.8720267, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159218.8720348, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159218.8720357, - "lastIP": "a~o~vo~}l`aia\u007f", - "deviceUUID": "474356bd7aaed62192f0a2e276bfe4d78689c88b" - }, - "pb-IF4pVHAlKw==": { - "display_string": [ - "\ue063GoDFather6" - ], - "profiles": [], - "name": "\ue063UndtedSirw", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-18 13:41:07", - "registerOn": 1670159312.5738392, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159312.5738397, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252130.1316547, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670252654.8962054, - "lastIP": "a~o~}jaaibzva{j", - "deviceUUID": "809fa945109cc1506c101ff3c9fe3e126509515b", - "cMsgCount": 0, - "lastMsgTime": 1670165771.6086404, - "lastMsg": "papa ko sry bolo", - "cSameMsg": 0 - }, - "pb-IF43U08GJA==": { - "display_string": [ - "\ue063Inexorabl6" - ], - "profiles": [], - "name": "\ue063Inexorabl6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 18:37:06", - "registerOn": 1670159391.5937479, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159391.5937486, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159391.5937567, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159391.5937579, - "lastIP": "a~j~}haaihxvb{l", - "deviceUUID": "8150454cfadaf921ed0ad2d8fe8e206358028170" - }, - "pb-IF4mUhY5Bw==": { - "display_string": [ - "\ue020mooday800" - ], - "profiles": [], - "name": "\ue020mooday800", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-02 01:54:09", - "registerOn": 1670159673.475905, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159673.4759054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159673.4759133, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159673.4759147, - "lastIP": "cxveyva{vb\u007fm", - "deviceUUID": "90cf3cb3c344ffe2f2627dc707005f92ffb3a012" - }, - "pb-IF5XVHgmAg==": { - "display_string": [ - "\ue020Mraloneguy", - "\ue030Android58661312" - ], - "profiles": [], - "name": "\ue020Mraloneguy", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-27 18:38:56", - "registerOn": 1670159789.8858535, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159789.885854, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159789.8858626, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159789.8858638, - "lastIP": "a\u007fk~~liamiaig\u007f", - "deviceUUID": "d4bb84af38ac8c1002ca1bb1ea44190a19b03bd8" - }, - "pb-IF4OU2QjMQ==": { - "display_string": [ - "\ue063DEVTA9" - ], - "profiles": [], - "name": "\ue063DEVTA9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-12 18:34:35", - "registerOn": 1670159921.37427, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159921.3742704, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339737.8015609, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339737.8015623, - "lastIP": "a\u007fk~}hhaniaig|", - "deviceUUID": "0844c250555b3f23df4f4072f22489bcd86cf716", - "cMsgCount": 0, - "lastMsgTime": 1670161871.39972, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4TU0UaFg==": { - "display_string": [ - "\ue020CongestedPackaging20" - ], - "profiles": [], - "name": "\ue020CongestedPackaging20", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-06 12:53:48", - "registerOn": 1670159928.4023156, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159928.402316, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159928.4023263, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159928.402327, - "lastIP": "azo~{o~xm~~la", - "deviceUUID": "df88d8baf95edb9e33e1fb4feade66217f12c292" - }, - "pb-IF5SU0seMQ==": { - "display_string": [ - "\ue030Android63767506" - ], - "profiles": [], - "name": "\ue030Android63767506", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 23:07:34", - "registerOn": 1670159950.487569, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670159950.4875693, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670159950.4875777, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670159950.4875786, - "lastIP": "a~h~}keajcwve}", - "deviceUUID": "efd4062b4fddd369664dab070a44997389b05bc8" - }, - "pb-IF40VG4yUA==": { - "display_string": [ - "\ue063sonugavale", - "\ue030Android34896235" - ], - "profiles": [], - "name": "\ue063sonugavale", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-06 19:59:52", - "registerOn": 1670160006.7266586, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160006.7266588, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328874.4872885, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670329079.2338326, - "lastIP": "a\u007fn~}j`aidwvb\u007f", - "deviceUUID": "817d31d50be40ed23fce4bdaae445e8b4242543b", - "cMsgCount": 0, - "lastMsgTime": 1670329095.9007862, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4NU0ojAA==": { - "display_string": [ - "\ue030Android63796554" - ], - "profiles": [], - "name": "\ue030Android63796554", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 18:07:17", - "registerOn": 1670160009.711596, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160009.7115965, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325313.1572607, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325313.157262, - "lastIP": "azo~|k~zj~~kd", - "deviceUUID": "3d647e7dac07fd7bb037d38317d7799c7a6d9b64" - }, - "pb-IF4cU0oEDg==": { - "display_string": [ - "\ue063lkiheasnal" - ], - "profiles": [], - "name": "\ue063lkiheasnal", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 20:36:31", - "registerOn": 1670160075.1954076, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160075.195408, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341463.0866058, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341463.0866072, - "lastIP": "b}k~~ohalfajc{", - "deviceUUID": "d284690a7e795fd0643eb563c5737a8eba47f154" - }, - "pb-IF4eU2VTAg==": { - "display_string": [ - "\ue063GinormousD" - ], - "profiles": [], - "name": "\ue063GinormousD", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-14 09:32:14", - "registerOn": 1670160370.9674878, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160370.9674888, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334960.2731783, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670334978.3177114, - "lastIP": "a}j~~nbaja{vbx", - "deviceUUID": "ca8d6637bba6507af992af44ca6ead60e54b475f" - }, - "pb-IF4jUxQxCQ==": { - "display_string": [ - "\ue063NavigableN" - ], - "profiles": [], - "name": "\ue063NavigableN", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-09 05:48:11", - "registerOn": 1670160658.1004236, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160658.100424, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670160658.100432, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670160983.8861802, - "lastIP": "axh~wj~zk~~lb", - "deviceUUID": "770e397383eb2bc7a5752d1a9fdf6d41415343a0" - }, - "pb-IF41U08kKQ==": { - "display_string": [ - "\ue030Android63981158" - ], - "profiles": [], - "name": "\ue030Android63981158", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 05:17:45", - "registerOn": 1670160675.099334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160675.0993345, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670160675.0993423, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670160675.099343, - "lastIP": "gyviwvb\u007fo~~oc", - "deviceUUID": "76bfa85e0fb27f0158a8e14566f6a35cc84b96b7" - }, - "pb-IF5XU0ZbBA==": { - "display_string": [ - "\ue063Following3" - ], - "profiles": [], - "name": "\ue063Following3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-23 12:03:38", - "registerOn": 1670160688.2706091, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160688.2706096, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246875.5107074, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246875.5107088, - "lastIP": "azo~|j~|k~~ke", - "deviceUUID": "05dc3e79b3ecfead7ef4ca371c1cc5e5b8741d13" - }, - "pb-IF4SF0Em": { - "display_string": [ - "\ue063MuddyJoker", - "\ue020EventualFlame29", - "\ue030Android54117335", - "\ue030Android57127938" - ], - "profiles": [], - "name": "\ue020MuddyJoker56571", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-17 12:09:49", - "registerOn": 1670160953.0983143, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670235183.440341, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670345099.019389, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670345099.0193899, - "lastIP": "bxvevvb|a~~ib", - "deviceUUID": "085c017f4b707662a2740e75d38d437eee8c2877", - "cMsgCount": 1, - "lastMsgTime": 1670345578.449874, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4HU0QPAw==": { - "display_string": [ - "\ue063VauntedPlu" - ], - "profiles": [], - "name": "\ue063VauntedPlu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-27 09:06:08", - "registerOn": 1670160979.4752326, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670160979.475233, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670160979.4752417, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670160979.4752426, - "lastIP": "b\u007fj~w`~}hhajav", - "deviceUUID": "279b3059b77b33de45467d66b1a7186a01f7c062" - }, - "pb-IF4mVRgFBw==": { - "display_string": [ - "\ue063SpunkyEmbl" - ], - "profiles": [], - "name": "\ue063SpunkyEmbl", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-31 16:00:19", - "registerOn": 1670161009.387051, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161009.3870513, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161009.38706, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161009.3870606, - "lastIP": "dvvcyvd|vb}o", - "deviceUUID": "aa07fb78482a1ddec5a019836a870f8ec65cff41" - }, - "pb-IF41VXk5PQ==": { - "display_string": [ - "\ue063AgentShubh" - ], - "profiles": [], - "name": "\ue063AgentShubh", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-02 12:19:15", - "registerOn": 1670161017.3185666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161017.3185675, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161017.3185754, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161017.3185763, - "lastIP": "a\u007fn~}hfaic~vb{i", - "deviceUUID": "85200a9c9534941367c0ce3d2265fca68ccc5648", - "cMsgCount": 0, - "lastMsgTime": 1670161224.5551558, - "lastMsg": "sry", - "cSameMsg": 0 - }, - "pb-IF4KVUMsBg==": { - "display_string": [ - "\ue020LearnedLabyrinth7741" - ], - "profiles": [], - "name": "\ue020LearnedLabyrinth7741", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-31 15:24:44", - "registerOn": 1670161058.4950535, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161058.495054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161058.495063, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670161391.3134813, - "lastIP": "bxvf|vb~a~}hi", - "deviceUUID": "eab2b0aa1b34fa3d33048acfcffeec93e19974b6" - }, - "pb-IF5TAHQO": { - "display_string": [ - "\ue063HootingDra", - "\ue030Android53223253" - ], - "profiles": [], - "name": "\ue063HootingDra", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-12 20:20:44", - "registerOn": 1670161104.6649241, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161104.6649246, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670162389.8091376, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161104.6649332, - "lastIP": "dvvcxvfzvh|", - "deviceUUID": "8a0301ea62429d602083265ba821a81e998faa99", - "cMsgCount": 0, - "lastMsgTime": 1670163033.5394967, - "lastMsg": "see ya", - "cSameMsg": 0 - }, - "pb-IF4KU0gxMg==": { - "display_string": [ - "\ue020TGPALYWGSUDGSJSHSJSS" - ], - "profiles": [], - "name": "\ue020TGPALYWGSUDGSJSHSJSS", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 18:42:05", - "registerOn": 1670161220.065693, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161220.0656934, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161220.0657003, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161220.0657015, - "lastIP": "dvva{va|l~~m`", - "deviceUUID": "cd4528587c165931a5c036016f2575ebf19683a4" - }, - "pb-IF48UxIMIA==": { - "display_string": [ - "\ue020UltravioletAnswer35" - ], - "profiles": [], - "name": "\ue020UltravioletAnswer35", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-03 14:28:12", - "registerOn": 1670161368.698151, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161368.6981516, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161368.6981606, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161368.6981614, - "lastIP": "azo~|l~}o~}`", - "deviceUUID": "5631851b9d3c44571f5e648c9ed48a8eac7b10d3" - }, - "pb-IF5VV29eLA==": { - "display_string": [ - "\ue063RaSurKh" - ], - "profiles": [], - "name": "\ue063RaSurKh", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-17 21:47:55", - "registerOn": 1670161399.6712382, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161399.6712387, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246588.5751715, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246588.575173, - "lastIP": "dvvcyvb{vazm", - "deviceUUID": "50c9ee145c124c575b0d6881e82b15e9ac1d9482" - }, - "pb-IF4LU20cEw==": { - "display_string": [ - "\ue030Android62093703" - ], - "profiles": [], - "name": "\ue030Android62093703", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-19 12:34:21", - "registerOn": 1670161466.9012787, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670161492.6805577, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670246213.034349, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245942.3065374, - "lastIP": "a~o~va~}liake", - "deviceUUID": "beafa74a9034955afeecc388dca93ebbadb504f5", - "cMsgCount": 1, - "lastMsgTime": 1670247936.1142607, - "lastMsg": "op. game play", - "cSameMsg": 0 - }, - "pb-IF4WUk9cJw==": { - "display_string": [ - "\ue020redpalyer1" - ], - "profiles": [], - "name": "\ue020redpalyer1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-11 20:58:03", - "registerOn": 1670161496.0013673, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161496.0013678, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161496.0013752, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161496.0013769, - "lastIP": "azj~zo~~mcamf", - "deviceUUID": "\u0015V\b\u0004XA\u0005^U\u0003BVZ" - }, - "pb-IF4eU0QdUQ==": { - "display_string": [ - "\ue020CivilianProject35" - ], - "profiles": [], - "name": "\ue020CivilianProject35", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-28 11:57:27", - "registerOn": 1670161514.1843376, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161514.184338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161514.1843452, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161514.1843464, - "lastIP": "azo~zi~zl~~mc", - "deviceUUID": "2ed4716ae5a94686f1f65bb959d69d31a67eacae" - }, - "pb-IF5UU1EHFA==": { - "display_string": [ - "\ue030PC773577" - ], - "profiles": [], - "name": "\ue030PC773577", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 19:04:43", - "registerOn": 1670161534.1129794, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161534.11298, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161534.1130328, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161534.1130335, - "lastIP": "awj~|vcxvf\u007f", - "deviceUUID": "10e12c9eebaeb3f1dc2bde1c768317b170009b51" - }, - "pb-IF4JU3MxCQ==": { - "display_string": [ - "\ue020AdvancedExpomnent45m" - ], - "profiles": [], - "name": "\ue020AdvancedExpomnent45m", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-09 17:49:57", - "registerOn": 1670161564.2208176, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161564.2208183, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341775.1573565, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670345849.7109516, - "lastIP": "a~l~|i~~`iajg", - "deviceUUID": "568191a189627834d190dc2e887ec7a832cc6819", - "cMsgCount": 1, - "lastMsgTime": 1670341792.1629522, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4jVHIEHQ==": { - "display_string": [ - "\ue030Android39959906" - ], - "profiles": [], - "name": "\ue030Android39959906", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-05 15:05:41", - "registerOn": 1670161600.6883516, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161600.6883523, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670161600.688361, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670161600.688362, - "lastIP": "a\u007fn~}jbameajby", - "deviceUUID": "63041c5597f4831f70e774d344ec2d0f94b906f5" - }, - "pb-IF5RU0pSBg==": { - "display_string": [ - "\ue020SuggestiveGarage45" - ], - "profiles": [], - "name": "\ue020SuggestiveGarage45", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 12:19:23", - "registerOn": 1670161659.599708, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161659.599709, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222393.9349406, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670222393.934942, - "lastIP": "a{h~}icaicwvb~i", - "deviceUUID": "b99eac5262f4ba805ea9b082acd67a5fc75d6d3f" - }, - "pb-IF5WUxQlEw==": { - "display_string": [ - "\ue030Linux52467" - ], - "profiles": [], - "name": "\ue030Linux52467", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-03 19:31:23", - "registerOn": 1670161687.6822398, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670162557.3463728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670297483.760641, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670305992.7149978, - "lastIP": "a\u007fk~~meaja\u007fvb{l", - "deviceUUID": "\u0018\u0003T\u0007PMTX\u0003LD", - "cMsgCount": 0, - "lastMsgTime": 1670306651.4260283, - "lastMsg": "toh sunao", - "cSameMsg": 0 - }, - "pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL": { - "display_string": [ - "\ue020YeWest2024" - ], - "profiles": [], - "name": "\ue020YeWest2024", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-05 13:28:05", - "registerOn": 1670161742.4800205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670161742.4800208, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333447.0755627, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333447.0755644, - "lastIP": "dvvcyva\u007fm~}k`", - "deviceUUID": "df33f5dee622a540618464296901184a5ed62c0a", - "cMsgCount": 0, - "lastMsgTime": 1670334412.3950067, - "lastMsg": "sorry mistake", - "cSameMsg": 0 - }, - "pb-IF4oU3hbEQ==": { - "display_string": [ - "\ue020\u0d15\u0d4d\u0d2f\u0d3e\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d7b22" - ], - "profiles": [], - "name": "\ue020\u0d15\u0d4d\u0d2f\u0d3e\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d7b22", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 12:37:58", - "registerOn": 1670162010.2120798, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162010.2120805, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162010.212089, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162010.21209, - "lastIP": "a\u007fn~~adalgaiev", - "deviceUUID": "d58f3a82e9f7bbde506330fc3a294c634bdf6e10" - }, - "pb-IF4CUhM5AQ==": { - "display_string": [ - "\ue020MilesAboveYou" - ], - "profiles": [], - "name": "\ue020MilesAboveYou", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-18 12:37:42", - "registerOn": 1670162031.9690244, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162031.9690247, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670186492.8797495, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670186492.8797512, - "lastIP": "a~n~y`~~iaaidv", - "deviceUUID": "00002973d162e002d40584d7ca11f4f5601862f8" - }, - "pb-IF4OU049CA==": { - "display_string": [ - "\ue063EntireBegg" - ], - "profiles": [], - "name": "\ue063EntireBegg", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 00:25:44", - "registerOn": 1670162234.6436152, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162234.643616, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162234.643642, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162234.643643, - "lastIP": "b\u007fi~}ihaicxvb\u007f", - "deviceUUID": "d3d40f6ae0e48683f83e68cd52a5f04656b31522" - }, - "pb-IF4KU0UqLA==": { - "display_string": [ - "\ue020DarkLordAscended" - ], - "profiles": [], - "name": "\ue020DarkLordAscended", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 11:10:47", - "registerOn": 1670162272.8136446, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162272.8136451, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315405.351848, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315405.3518496, - "lastIP": "azo~{a~}jaaifw", - "deviceUUID": "5eb883c11c38f3e3dd0831e40170faba53b1da83" - }, - "pb-IF4oUnVaNg==": { - "display_string": [ - "\ue063LustrousC3", - "\ue030Android56854542" - ], - "profiles": [], - "name": "\ue020LustrousConjurer7", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-21 12:53:25", - "registerOn": 1670162276.8084059, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162276.808406, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319785.486115, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319785.4861166, - "lastIP": "dvvcxvb~a~{`", - "deviceUUID": "39fce6b71f8d12b7107c4e4ecdabe83b0ed46270" - }, - "pb-IF5QU0MaXA==": { - "display_string": [ - "\ue020kukkututtu002" - ], - "profiles": [], - "name": "\ue020kukkututtu002", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-11 18:58:24", - "registerOn": 1670162323.9822552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162323.9822557, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162323.9822626, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162323.9822638, - "lastIP": "a~o~}i`aii~vb|n", - "deviceUUID": "10aa992e3b27eb596abaf4c53e0f887330ccfa4a" - }, - "pb-IF4dU08oXQ==": { - "display_string": [ - "\ue063MindfulAir", - "\ue030Android58076920" - ], - "profiles": [], - "name": "\ue063MindfulAir", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 07:20:51", - "registerOn": 1670162435.386602, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162435.3866024, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162435.3866107, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162435.3866117, - "lastIP": "d}va\u007fn~~a~vo", - "deviceUUID": "57fe53dc7cbe2dac162f3eabe21a37668a67eda2" - }, - "pb-JiNJVxBcUURIXVZJFkFZVFdGFEBeR1dF": { - "display_string": [ - "\ue020aniket2604" - ], - "profiles": [], - "name": "\ue020aniket2604", - "isBan": false, - "isMuted": false, - "accountAge": "2016-10-09 00:13:44", - "registerOn": 1670162495.5849707, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162495.5849712, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162495.5849807, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162495.584982, - "lastIP": "a\u007fn~}i`aja~vb~j", - "deviceUUID": "a7e8e53ca84f27fba191560a42a675878dd06f77" - }, - "pb-IF4FVUkZMw==": { - "display_string": [ - "\ue030Android52000342" - ], - "profiles": [], - "name": "\ue030Android52000342", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-13 20:09:59", - "registerOn": 1670162498.6064668, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162498.606467, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162498.6064773, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162498.6064787, - "lastIP": "azo~{n~xl~}la", - "deviceUUID": "\u0015\u0003\b\u0003W\u0010\u0003YP\u0003EV\\VSLS[UYDVYYW@" - }, - "pb-IF4DU0YhVw==": { - "display_string": [ - "\ue020ItsEpicShlok", - "\ue030Android63971632", - "\ue030Android63965243", - "\ue030Android63965319", - "\ue030Android63971463" - ], - "profiles": [], - "name": "\ue020ItsEpicShlok", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-07 17:43:52", - "registerOn": 1670162513.680428, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162513.6804285, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162513.680438, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162513.6804392, - "lastIP": "a\u007fk~}l`aj`vvd{", - "deviceUUID": "3c1788c217db926c45886bc3e7da9c1d43ca2665" - }, - "pb-JiNJARBcVEdFWlxCEE9TVl1GFUVXTlRH": { - "display_string": [ - "\ue063SilentBraw", - "\ue030Android10381153" - ], - "profiles": [], - "name": "\ue063SilentBraw", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-31 17:31:10", - "registerOn": 1670162516.5999362, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162516.5999367, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162516.5999434, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162516.5999444, - "lastIP": "a~o~}lhaihaj`y", - "deviceUUID": "c5f2f26760989728bb42544168fcb20fd91220a3" - }, - "pb-IF4QVGYjDg==": { - "display_string": [ - "\ue030Android42891191" - ], - "profiles": [], - "name": "\ue030Android42891191", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-29 09:35:48", - "registerOn": 1670162522.7241318, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162522.7241323, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230413.7166016, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670231650.0815198, - "lastIP": "dvvc{vf}vaz`", - "deviceUUID": "50971078b23d76157ae5c5c460a761d3e8389d84" - }, - "pb-IF4DUlMIDg==": { - "display_string": [ - "\ue020BellicosePatriot28" - ], - "profiles": [], - "name": "\ue020BellicosePatriot28", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-28 15:48:33", - "registerOn": 1670162611.9257605, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162611.925761, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162611.9257689, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162611.92577, - "lastIP": "azj~zo~}jianf", - "deviceUUID": "b98a1f98358f91e6d342a49c79a17760c36e8e45" - }, - "pb-IF5TVxg_HQ==": { - "display_string": [ - "\ue020CombativeGemini56036" - ], - "profiles": [], - "name": "\ue020CombativeGemini56036", - "isBan": false, - "isMuted": false, - "accountAge": "2018-08-15 19:24:47", - "registerOn": 1670162659.407589, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162659.4075894, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162659.4075997, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162659.4076004, - "lastIP": "azo~{h~}jaa`d", - "deviceUUID": "cdeaa7ab4f04a8232969b6a5bce3ed897366ff7c" - }, - "pb-IF4XU0EfDw==": { - "display_string": [ - "\ue063StealthyAn" - ], - "profiles": [], - "name": "\ue063StealthyAn", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-12 17:24:20", - "registerOn": 1670162759.4246562, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162759.4246566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343877.6058123, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670358931.2825851, - "lastIP": "hvvazk~~oban", - "deviceUUID": "1ff84f30182f86b4b2dded5db09d2d1a291d333d" - }, - "pb-IF4-U0kNVQ==": { - "display_string": [ - "\ue020jonathansanthosh" - ], - "profiles": [], - "name": "\ue020jonathansanthosh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-28 16:09:35", - "registerOn": 1670162760.4333851, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162760.4333854, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311195.7903526, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311195.790354, - "lastIP": "a~o~}iaalaajd\u007f", - "deviceUUID": "d330a623a6cde2e6c2b9727640139e0bb4c17a01" - }, - "pb-IF4sU3A7KA==": { - "display_string": [ - "\ue030Android62339210" - ], - "profiles": [], - "name": "\ue030Android62339210", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-30 11:54:16", - "registerOn": 1670162826.8334103, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162826.8334107, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162826.8334188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162826.8334198, - "lastIP": "a}j~~naa`faie", - "deviceUUID": "faf986632b7fba345df51d66b9e74b3a9293d0a3" - }, - "pb-IF4TV2w6Bw==": { - "display_string": [ - "\ue020Balajiblaze123" - ], - "profiles": [], - "name": "\ue020Balajiblaze123", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-17 11:20:14", - "registerOn": 1670162917.199675, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162917.1996756, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163493.1986566, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670163788.2039633, - "lastIP": "azo~zi~zm~vk", - "deviceUUID": "39fab6ef9f13cec5afeb264fba1c606a5cba46b2", - "cMsgCount": 0, - "lastMsgTime": 1670163778.2536945, - "lastMsg": "tk to thi", - "cSameMsg": 0 - }, - "pb-IF4eU0wpKg==": { - "display_string": [ - "\ue063Unrelenti4" - ], - "profiles": [], - "name": "\ue063Unrelenti4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 19:46:50", - "registerOn": 1670162918.076996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162918.0769968, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670345349.9209785, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670345349.92098, - "lastIP": "a\u007fk~~hfaicvvb\u007fk", - "deviceUUID": "b6148a40f9ec4b3d0b97235522e798d11db0f37e", - "cMsgCount": 2, - "lastMsgTime": 1670345402.0138547, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4BUxIzJg==": { - "display_string": [ - "\ue063TERRIFIER4" - ], - "profiles": [], - "name": "\ue063TERRIFIER4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-04 13:49:55", - "registerOn": 1670162948.13413, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162948.1341305, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251269.1393015, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251269.1393032, - "lastIP": "azj~z`~}kbaiix", - "deviceUUID": "f77c2e00c17b4c8dfaf8cf8dbb4b20b345855208" - }, - "pb-IF4xU3k6KA==": { - "display_string": [ - "\ue030Android63130011" - ], - "profiles": [], - "name": "\ue030Android63130011", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-04 21:57:18", - "registerOn": 1670162978.2862043, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670162978.2862048, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670162978.2862139, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670162978.2862148, - "lastIP": "azo~{o~vm~~kd", - "deviceUUID": "671967ce943e46a829445a2691ed2228b5105c6f" - }, - "pb-IF5VU007Ng==": { - "display_string": [ - "\ue063DeviousEli", - "\ue030Android63827572" - ], - "profiles": [], - "name": "\ue063DeviousEli", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 13:47:07", - "registerOn": 1670163012.3621736, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163012.362174, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229838.5574918, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229838.557493, - "lastIP": "dvvcyva\u007f`~}kf", - "deviceUUID": "38c01a50379f84b46b232bdb4c38f8fa90b56ba8" - }, - "pb-IF4PIFQ9": { - "display_string": [ - "\ue063mrpainless", - "\ue030Android29214702" - ], - "profiles": [], - "name": "\ue063mrpainless", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-26 17:52:31", - "registerOn": 1670163079.6879, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163079.6879008, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163499.2280543, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670163499.2280557, - "lastIP": "azo~zi~~ohaja{", - "deviceUUID": "3fd5af7540d3def8bb525f9c868c41841d7845a9" - }, - "pb-IF4DVVgZJA==": { - "display_string": [ - "\ue02025mjadhav", - "\ue030Android52470937" - ], - "profiles": [], - "name": "\ue030Android52470937", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-22 20:12:08", - "registerOn": 1670163114.8267362, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163114.826737, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317314.352192, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317314.3521934, - "lastIP": "a\u007fk~~mgaibvvb~j", - "deviceUUID": "f459eddbc463b2e1c81bf49abb5c993b3ec70a62", - "cMsgCount": 0, - "lastMsgTime": 1670225143.8147142, - "lastMsg": "Smooth let's go in Fun Games ", - "cSameMsg": 0 - }, - "pb-IF4rU2EZEw==": { - "display_string": [ - "\ue030Android60974634" - ], - "profiles": [], - "name": "\ue030Android60974634", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-04 19:46:02", - "registerOn": 1670163175.9817445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163175.981745, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670348369.0550125, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670348369.0550137, - "lastIP": "a\u007fn~xn~vm~{", - "deviceUUID": "\u0015U\u000e", - "cMsgCount": 0, - "lastMsgTime": 1670348790.3616848, - "lastMsg": "end this shit of piece ", - "cSameMsg": 0 - }, - "pb-IF4mU0wODA==": { - "display_string": [ - "\ue020MagnificentBull96303" - ], - "profiles": [], - "name": "\ue020MagnificentBull96303", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 21:47:48", - "registerOn": 1670163204.1104448, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163204.1104453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300176.310488, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300176.3104894, - "lastIP": "a{vivva\u007fn~yn", - "deviceUUID": "4eb576fb20bc80f5fc11807746539bbd3fa079b5" - }, - "pb-IF5XUmsEVg==": { - "display_string": [ - "\ue020SickeningManeuver24" - ], - "profiles": [], - "name": "\ue020SickeningManeuver24", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-29 10:17:37", - "registerOn": 1670163256.475719, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163256.4757192, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163256.4757283, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670163256.4757295, - "lastIP": "a\u007fi~}vavi~~ag", - "deviceUUID": "\u0015S\u000e" - }, - "pb-IF4BPFRY": { - "display_string": [ - "\ue063TezrecT", - "\ue063Mizuhara", - "\ue020dhairyabhavya", - "\ue030Android47882430" - ], - "profiles": [], - "name": "\ue020dhairyabhavya", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-25 12:47:11", - "registerOn": 1670163277.3764045, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163277.3764052, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670249755.8521361, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249755.8521378, - "lastIP": "dvva{vayo~}m", - "deviceUUID": "34c398d35b9440b192223be7d56df29a68af1dec", - "cMsgCount": 0, - "lastMsgTime": 1670185717.2906294, - "lastMsg": "yeah", - "cSameMsg": 0 - }, - "pb-IF5QU04ZJw==": { - "display_string": [ - "\ue063MetabolicA" - ], - "profiles": [], - "name": "\ue063MetabolicA", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 08:53:16", - "registerOn": 1670163326.5330584, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163326.533059, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328981.901684, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328981.9016852, - "lastIP": "azo~zi~|vb{", - "deviceUUID": "402ba25fdb762b57bd8bea7d14fb5d71d9b94cb7" - }, - "pb-IF4UU0YbEQ==": { - "display_string": [ - "\ue063Moldyblade" - ], - "profiles": [], - "name": "\ue063Moldyblade", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 20:35:48", - "registerOn": 1670163410.8761308, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163410.876131, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346063.5586445, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346063.5586457, - "lastIP": "d|vbzh~~mhaj`|", - "deviceUUID": "64bcdecad82d9a6cbffc8d1dc9ccb6a55c5e211e", - "cMsgCount": 0, - "lastMsgTime": 1670347083.3281095, - "lastMsg": "bruh", - "cSameMsg": 0 - }, - "pb-IF5WU0gBHQ==": { - "display_string": [ - "\ue030Android63642729" - ], - "profiles": [], - "name": "\ue030Android63642729", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-11 18:52:12", - "registerOn": 1670163505.905853, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163505.9058537, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163505.905864, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670163505.9058652, - "lastIP": "i~vfyva|i~wk", - "deviceUUID": "2f46534a2028b8d719e515b8cedd475ebdd13b76" - }, - "pb-IF4dUmU5Fg==": { - "display_string": [ - "\ue063S2sharpsho" - ], - "profiles": [], - "name": "\ue063S2sharpsho", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-11 20:50:41", - "registerOn": 1670163538.6420956, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163538.642096, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163538.6421034, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670163658.7567844, - "lastIP": "dxvc~vaym~zk", - "deviceUUID": "73c3137f6f6b4410022e228730d5eeb1bddf954a", - "cMsgCount": 0, - "lastMsgTime": 1670163800.350488, - "lastMsg": "madar choot parton", - "cSameMsg": 0 - }, - "pb-IF4sU0sDDw==": { - "display_string": [ - "\ue063ThunderBlu" - ], - "profiles": [], - "name": "\ue063ThunderBlu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 20:06:37", - "registerOn": 1670163676.1078162, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163676.107817, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223998.2389348, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223998.2389364, - "lastIP": "a~j~}hfajd}vgv", - "deviceUUID": "10480e31fe8d4cbdc455787ea61ef8eb7d51a07c", - "cMsgCount": 0, - "lastMsgTime": 1670225178.1323888, - "lastMsg": "Vivek is strong ", - "cSameMsg": 0 - }, - "pb-IF4eU1BbMw==": { - "display_string": [ - "\ue063DiamondSqu" - ], - "profiles": [], - "name": "\ue063DiamondSqu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 19:07:32", - "registerOn": 1670163746.3978229, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163746.3978236, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670163746.3978307, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670163746.3978314, - "lastIP": "a~o~}hiaic{vgv", - "deviceUUID": "be7b9e39530bfffb6c977ec00a50b69572a12043" - }, - "pb-LV4FVxEOBxcUVQxERkNWUFFA": { - "display_string": [ - "\ue020parthk1265", - "\ue030Android14858832" - ], - "profiles": [], - "name": "\ue020rajmewada12", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-01 13:59:58", - "registerOn": 1670163846.7407637, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163846.7407644, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670348833.1639318, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670348833.1639335, - "lastIP": "a\u007fn~}heajdxvawk", - "deviceUUID": "364ea53ec91919aba274c9f665704d58ebd0fd1b", - "cMsgCount": 0, - "lastMsgTime": 1670350004.925518, - "lastMsg": "ok as", - "cSameMsg": 0 - }, - "pb-IF4-U3gdFw==": { - "display_string": [ - "\ue030Android63053623" - ], - "profiles": [], - "name": "\ue030Android63053623", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-01 07:24:54", - "registerOn": 1670163922.0687854, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670163922.068786, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342446.094851, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670348825.1416333, - "lastIP": "azo~{i~}mcai`w", - "deviceUUID": "548cce6a079bbda740d03793a1d78e999a4c1fd4", - "cMsgCount": 0, - "lastMsgTime": 1670350019.8387144, - "lastMsg": "\u2764\ufe0f", - "cSameMsg": 0 - }, - "pb-IF4tCRgv": { - "display_string": [ - "\ue063captshivi" - ], - "profiles": [], - "name": "\ue063captshivi", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-03 13:34:45", - "registerOn": 1670164025.4923496, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164025.49235, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334934.2020981, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334934.2020998, - "lastIP": "a\u007fk~}iaaieaidx", - "deviceUUID": "74c0175ba798dc3c92fc6bc7f4d0b6e590842648", - "cMsgCount": 0, - "lastMsgTime": 1670307619.9506536, - "lastMsg": "chutiya red team", - "cSameMsg": 0 - }, - "pb-IF5XVVACLA==": { - "display_string": [ - "\ue020blackury2003" - ], - "profiles": [], - "name": "\ue020blackury2003", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-02 15:20:15", - "registerOn": 1670164049.4426455, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164049.442646, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164049.442653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164049.4426541, - "lastIP": "dvvcxvb~m~}md", - "deviceUUID": "4675022b8c874c961302222469bb0f662d3d85e7" - }, - "pb-IF4RU0ksMQ==": { - "display_string": [ - "\ue063Torrenti16" - ], - "profiles": [], - "name": "\ue020TorrentialEase43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 16:52:16", - "registerOn": 1670164102.6703491, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164102.6703496, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337699.651503, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340933.1530826, - "lastIP": "azo~{a~~nfaa", - "deviceUUID": "43358c9e31e074b48e06e3427ad2be7cc83085d2" - }, - "pb-IF4LU28SJA==": { - "display_string": [ - "\ue020vinothmptc" - ], - "profiles": [], - "name": "\ue020vinothmptc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-27 09:18:54", - "registerOn": 1670164143.1279385, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164143.127939, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234789.677719, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670236341.1902742, - "lastIP": "azo~zi~~`fa`", - "deviceUUID": "1f4da9f99faef8dbf64b27b1dbcc7e6172f83ea3" - }, - "pb-IF4WU0QRIA==": { - "display_string": [ - "\ue063BushyInstr" - ], - "profiles": [], - "name": "\ue020BushyInstructor7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 15:18:50", - "registerOn": 1670164149.8465316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164149.846532, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341197.1226032, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341197.1226046, - "lastIP": "azo~|j~~i~~lg", - "deviceUUID": "d2ecfc08815837a8fc4a77652e70731988e1e3a1" - }, - "pb-JiNJARBdVEFAXl5GGEZZVFZCGUhXRFBC": { - "display_string": [ - "\ue063Sayan8274" - ], - "profiles": [], - "name": "\ue063Sayan8274", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-24 10:33:35", - "registerOn": 1670164201.407305, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164201.4073057, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164201.407316, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164201.4073167, - "lastIP": "azo~{h~~odaicz", - "deviceUUID": "0c88faba9ad4713a2bef5d5632f64df42945ba10" - }, - "pb-IF4BVVVYCA==": { - "display_string": [ - "\ue063LocalTruce" - ], - "profiles": [], - "name": "\ue063LocalTruce", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-05 19:09:08", - "registerOn": 1670164252.2043846, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164252.2043853, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252167.2436306, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252167.243632, - "lastIP": "dvvcyvfzvayh", - "deviceUUID": "2f035865d2bc9f545fd7215ec120feb18e12059a" - }, - "pb-IF4QU048Nw==": { - "display_string": [ - "\ue020NauseousJudge10" - ], - "profiles": [], - "name": "\ue020NauseousJudge10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 15:33:10", - "registerOn": 1670164257.225283, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164257.2252831, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164257.2252913, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164257.225292, - "lastIP": "a\u007fk~}hga`~wa", - "deviceUUID": "db15d2b826ed6a1b01a15850026d14b24b7325fe" - }, - "pb-IF5UU05aHQ==": { - "display_string": [ - "\ue020VoidPort2" - ], - "profiles": [], - "name": "\ue020VoidPort2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 20:44:30", - "registerOn": 1670164281.285934, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164281.285935, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670382198.0869153, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670382198.0869167, - "lastIP": "a\u007fn~~ahakiajbw", - "deviceUUID": "caf2d45fa5cd9bb25979b3fe1f5882117e05180a", - "cMsgCount": 0, - "lastMsgTime": 1670335553.6695516, - "lastMsg": "why", - "cSameMsg": 0 - }, - "pb-IF4wV24HBw==": { - "display_string": [ - "\ue063GiantRobot" - ], - "profiles": [], - "name": "\ue063GiantRobot", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-27 02:36:51", - "registerOn": 1670164282.278136, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164282.2781367, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315871.08607, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315871.0860713, - "lastIP": "a~o~va~~ahaiex", - "deviceUUID": "cf5348ed3c9d0bc1baaf7a1c8a75e78e76e90b53", - "cMsgCount": 0, - "lastMsgTime": 1670316690.215262, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5TEHhY": { - "display_string": [ - "\ue063rvrvrvrvrv", - "\ue030Android24764519" - ], - "profiles": [], - "name": "\ue063rvrvrvrvrv", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-30 19:18:24", - "registerOn": 1670164347.5251415, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164347.525142, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164347.5251486, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164347.5251496, - "lastIP": "a\u007fk~}maaiiaiby", - "deviceUUID": "204621b919fc39e665181c2f15b7a496aaec9a81", - "cMsgCount": 0, - "lastMsgTime": 1670164626.8507328, - "lastMsg": "tu ne to liy mer", - "cSameMsg": 0 - }, - "pb-IF4qU0sOKw==": { - "display_string": [ - "\ue020MetallicPainting21" - ], - "profiles": [], - "name": "\ue020MetallicPainting21", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-05 20:06:51", - "registerOn": 1670164491.0075312, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164491.0075314, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164491.0075378, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164491.0075388, - "lastIP": "a\u007fn~}i`aihyva~i", - "deviceUUID": "bad7b7a03410739470d0e5d8bd092dec11391419" - }, - "pb-IF49U0QJDw==": { - "display_string": [ - "\ue063CRIMINAL", - "\ue063NOMERCY", - "\ue063Babysimran", - "\ue030PC605729", - "\ue030Android63861037" - ], - "profiles": [], - "name": "\ue030PC605729", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-29 22:04:04", - "registerOn": 1670164546.191456, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164546.1914566, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670345112.068998, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670346173.9824681, - "lastIP": "dvvcxvdxva{k", - "deviceUUID": "52e159e6debf4b869cb6bd30a26e268c72ceab36", - "cMsgCount": 0, - "lastMsgTime": 1670346192.2770562, - "lastMsg": "/kick 92", - "cSameMsg": 0 - }, - "pb-IF4gU0wxBw==": { - "display_string": [ - "\ue063VOIDG0D" - ], - "profiles": [], - "name": "\ue063VOIDG0D", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 16:06:19", - "registerOn": 1670164581.3468778, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164581.3468783, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339227.9291139, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670349514.881789, - "lastIP": "a\u007fk~}hhaniaig|", - "deviceUUID": "53e096add4bc0eb2d359d20b0860961ff68cf255", - "cMsgCount": 0, - "lastMsgTime": 1670349551.110346, - "lastMsg": "Man Spain is out of world cup\ud83e\udd2f", - "cSameMsg": 0 - }, - "pb-IF4sJEMH": { - "display_string": [ - "\ue063KingZaki96" - ], - "profiles": [], - "name": "\ue063KingZaki96", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-04 16:47:02", - "registerOn": 1670164654.5549097, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164654.5549104, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164654.554918, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164654.554919, - "lastIP": "azo~{m~}hcaii}", - "deviceUUID": "12d88ff9cac799b62853cb2cc4745424db9a6892" - }, - "pb-IF4CMWc7": { - "display_string": [ - "\ue063Kisimo1994", - "\ue030Android21430556" - ], - "profiles": [], - "name": "\ue063Kisimo1994", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-10 23:12:25", - "registerOn": 1670164688.7271757, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164688.7271764, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164688.7271838, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670164688.7271845, - "lastIP": "a\u007fn~}haai`{vbzh", - "deviceUUID": "baadf7630c1076763ba20d3c1290f44922c08fe2" - }, - "pb-IF5RUlkoHQ==": { - "display_string": [ - "\ue063serialhunt" - ], - "profiles": [], - "name": "\ue063serialhunt", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-09 19:50:31", - "registerOn": 1670164765.273882, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164765.2738826, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236590.2390156, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236590.2390168, - "lastIP": "dvvd|vixvavi", - "deviceUUID": "465f5538f809e3599131d3056a80342cb72670da" - }, - "pb-IF4CU0QpCA==": { - "display_string": [ - "\ue020MADDY1321" - ], - "profiles": [], - "name": "\ue020MADDY1321", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 23:47:39", - "registerOn": 1670164826.1793785, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164826.1793792, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164826.1793885, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670165667.7923439, - "lastIP": "azj~zo~}hfan`", - "deviceUUID": "375e940bc136e68d34cc7bee3b953fabea37ef0f" - }, - "pb-IF4dVFgCLg==": { - "display_string": [ - "\ue020Attitudeboy997" - ], - "profiles": [], - "name": "\ue020Attitudeboy997", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-17 09:31:17", - "registerOn": 1670164987.7380915, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670164987.738092, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670164987.738101, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670165061.6842158, - "lastIP": "dvvc{vaxj~~lf", - "deviceUUID": "9fc8f0b8cdb4ba85753351b714f6ac2055c00337" - }, - "pb-IF4eU0ggAw==": { - "display_string": [ - "\ue063BooI1219" - ], - "profiles": [], - "name": "\ue063BooI1219", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 13:48:49", - "registerOn": 1670165033.8957849, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165033.8957858, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165033.895794, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165033.8957946, - "lastIP": "azo~{a~}kbaia}", - "deviceUUID": "cd46691149db0b8e910ee622d3573aba199c0745" - }, - "pb-IF4AU04IHQ==": { - "display_string": [ - "\ue020SillyMembrane32" - ], - "profiles": [], - "name": "\ue020SillyMembrane32", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 20:19:32", - "registerOn": 1670165143.316132, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165143.3161325, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330471.1023283, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670331130.8405757, - "lastIP": "a}j~~nbaiiwvb}n", - "deviceUUID": "dcb83bdb40ec19416943298f2f7f1ab92b4523f8" - }, - "pb-IF40VEEMVA==": { - "display_string": [ - "\ue020AloofSoldier58271" - ], - "profiles": [], - "name": "\ue020AloofSoldier58271", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-30 18:21:06", - "registerOn": 1670165273.7302299, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165273.7302303, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242894.0537724, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242894.0537736, - "lastIP": "a\u007fn~~acaibwvb|a", - "deviceUUID": "77b69cdd0dc41f6e9d050e1ca7fd8e3398cfd907" - }, - "pb-JiNJARFdVUJBW1tAGUVUVV1HFkBeQ1BG": { - "display_string": [ - "\ue020HacktasticBeetle2600" - ], - "profiles": [], - "name": "\ue020HacktasticBeetle2600", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-15 15:10:21", - "registerOn": 1670165319.911316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165319.911317, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165319.9113255, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165319.9113266, - "lastIP": "a|j~~mdakeajd~", - "deviceUUID": "cd4d8f165ce494bff4ef4844e780a57d8a4e1c55" - }, - "pb-IF4CNEE7": { - "display_string": [ - "\ue020arsh2468" - ], - "profiles": [], - "name": "\ue020arsh2468", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-21 16:27:30", - "registerOn": 1670165350.0381484, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165350.0381489, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165350.038158, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670168944.1455185, - "lastIP": "evvhvvg~vb{l", - "deviceUUID": "25afc280c6a0ad7777fb2f6f2813d595f5c15365" - }, - "pb-IF4sU04cFQ==": { - "display_string": [ - "\ue063Alpha910" - ], - "profiles": [], - "name": "\ue063Alpha910", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 20:07:44", - "registerOn": 1670165431.2945395, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165431.2945404, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165431.294547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165431.294548, - "lastIP": "a\u007fn~}i`ajc{va~l", - "deviceUUID": "8b22bf20be9c77044dd4f640a5c8a3446d61660d" - }, - "pb-IF4eU08jEA==": { - "display_string": [ - "\ue020UnconvincingMaxim19" - ], - "profiles": [], - "name": "\ue020UnconvincingMaxim19", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 23:04:35", - "registerOn": 1670165442.3797126, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165442.3797133, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165442.3797226, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165442.3797233, - "lastIP": "a|o~vo~~hbaihx", - "deviceUUID": "c18fd0569eb1d8c3872661f7dab7368185ba25c9" - }, - "pb-IF49U2wiLA==": { - "display_string": [ - "\ue020Thanu41" - ], - "profiles": [], - "name": "\ue020Thanu41", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-11 16:32:02", - "registerOn": 1670165516.6016057, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165516.6016061, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165516.6016152, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670165663.786642, - "lastIP": "azo~{m~wa~}kd", - "deviceUUID": "1da86ac95b2dc46ed8d9b263a684c35764ae6d1a" - }, - "pb-IF4dKBYM": { - "display_string": [ - "\ue020Naimin95" - ], - "profiles": [], - "name": "\ue020Naimin95", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-02 11:15:18", - "registerOn": 1670165626.98999, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165626.9899907, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165626.989999, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165626.99, - "lastIP": "dvvcyva}k~}k`", - "deviceUUID": "06ca51e8f74c641f508c4df9dca664758d392b9e" - }, - "pb-IF4uUxMpLQ==": { - "display_string": [ - "\ue030Android60309780" - ], - "profiles": [], - "name": "\ue030Android60309780", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-07 17:03:23", - "registerOn": 1670165636.11352, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165636.1135206, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165636.1135285, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165636.1135297, - "lastIP": "awk~wk~}idaki", - "deviceUUID": "\u0015V_QY\u0016X\tVQCW\u000bSXB\u0004XYXMYXYUD" - }, - "pb-IF4iAGsC": { - "display_string": [ - "\ue020SleekPossum9447", - "\ue030Android38758359" - ], - "profiles": [], - "name": "\ue020SleekPossum9447", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-22 14:58:26", - "registerOn": 1670165700.3785243, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165700.378525, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165700.3785322, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165700.378533, - "lastIP": "a}j~~naaohaag", - "deviceUUID": "c8d611bc46ce05c172ed28e3d588b52e03be103d" - }, - "pb-IF4rUxdeUg==": { - "display_string": [ - "\ue020RootinTootinOoze9610" - ], - "profiles": [], - "name": "\ue020RootinTootinOoze9610", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-21 11:09:05", - "registerOn": 1670165761.4635248, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165761.4635255, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165761.4635344, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165761.463535, - "lastIP": "a\u007fn~~aealaaae", - "deviceUUID": "97e8d9436d1c81297ff0a1830fcde1d80a582805" - }, - "pb-IF4-UxI7Mg==": { - "display_string": [ - "\ue063FervidPlur" - ], - "profiles": [], - "name": "\ue020FervidPlurality13", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-03 20:18:08", - "registerOn": 1670165795.557572, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165795.5575724, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343174.1359143, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343174.1359153, - "lastIP": "a\u007fk~~ofaiaaid{", - "deviceUUID": "958364163981ea4653f377dc0e7f54814a049382" - }, - "pb-IF5XVWcCJA==": { - "display_string": [ - "\ue063PaanApitit", - "\ue030Android47505090" - ], - "profiles": [], - "name": "\ue063PaanApitit", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-05 14:02:52", - "registerOn": 1670165815.624136, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165815.6241364, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165815.6241448, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165815.6241457, - "lastIP": "dvvb\u007fm~|j~~je", - "deviceUUID": "f8035cae6006897ad6311205d7996bd2ad5ba7f8", - "cMsgCount": 0, - "lastMsgTime": 1670165895.5566382, - "lastMsg": "noooowaeee", - "cSameMsg": 0 - }, - "pb-IF4LUhcoBA==": { - "display_string": [ - "\ue030Android54473871" - ], - "profiles": [], - "name": "\ue030Android54473871", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-05 22:03:55", - "registerOn": 1670165861.8738713, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165861.873872, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165861.8738816, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165861.8738825, - "lastIP": "b}k~~`iamfaiav", - "deviceUUID": "d6ff54649e1a747e0ee737524871c74a0afb3590" - }, - "pb-IF4PVUwcFw==": { - "display_string": [ - "\ue020weirdassalien27" - ], - "profiles": [], - "name": "\ue020weirdassalien27", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-26 14:02:43", - "registerOn": 1670165877.8656523, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165877.8656533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252418.1333983, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670253578.2585526, - "lastIP": "azo~{i~~`dang", - "deviceUUID": "401586b3ba51558fcd7b099b93715c7b010b6e12" - }, - "pb-IF4eU0snCA==": { - "display_string": [ - "\ue020Gowthamsword" - ], - "profiles": [], - "name": "\ue020Gowthamsword", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 11:27:22", - "registerOn": 1670165885.841125, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165885.8411257, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670165885.8411455, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670165885.8411467, - "lastIP": "b}k~}jhaiezvhw", - "deviceUUID": "abeac0c14009304c2520bfa38520dc095c3c8c95" - }, - "pb-IF4nU2ssKg==": { - "display_string": [ - "\ue020PaternalisticEmu11", - "\ue030Android60829722" - ], - "profiles": [], - "name": "\ue020PaternalisticEmu11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-06 14:54:31", - "registerOn": 1670165899.9166162, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165899.916617, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670352576.2075906, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670357134.095422, - "lastIP": "a\u007fn~}iealhalh", - "deviceUUID": "2f091a8679215a74c459c99f08fca9a0e8d88944", - "cMsgCount": 0, - "lastMsgTime": 1670356948.1387243, - "lastMsg": "mai kya kru", - "cSameMsg": 0 - }, - "pb-IF5dV21TEA==": { - "display_string": [ - "\ue063ShaikhFaha" - ], - "profiles": [], - "name": "\ue063ShaikhFaha", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-08 18:18:14", - "registerOn": 1670165910.9758298, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670165910.9758303, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670262908.314055, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670262908.314056, - "lastIP": "dvvc{vb{a~y`", - "deviceUUID": "b05632b1fb80c0652753b333b6527f0774019c10" - }, - "pb-IF4pU1ApEg==": { - "display_string": [ - "\ue063D4kgaming", - "\ue030Android63984902" - ], - "profiles": [], - "name": "\ue063D4kgaming", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 19:41:56", - "registerOn": 1670166034.826491, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166034.8264918, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166034.8265004, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166034.8265011, - "lastIP": "i|vazo~~ofaid}", - "deviceUUID": "27fc08532b5ed8e160644b0e3b951c7af7b1a6eb" - }, - "pb-IF4cUnc6DQ==": { - "display_string": [ - "\ue020Wakandansoldier" - ], - "profiles": [], - "name": "\ue020Wakandansoldier", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-01 19:14:35", - "registerOn": 1670166061.5229938, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166061.5229945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166061.5230021, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166061.523003, - "lastIP": "bxvf\u007fvaxn~~ac", - "deviceUUID": "0664431d96d1a4ca038792481c8158fdc64a3087" - }, - "pb-IF4sU0gNFg==": { - "display_string": [ - "\ue020bhumit21" - ], - "profiles": [], - "name": "\ue020bhumit21", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-27 14:25:15", - "registerOn": 1670166148.771087, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166148.7710874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223750.3416817, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223750.3416831, - "lastIP": "dvvc{vb}n~~ah", - "deviceUUID": "3cefea855bf56c2cbcff1cb9778307a78aad5276" - }, - "pb-IF4JU08KCg==": { - "display_string": [ - "\ue063PenitentDi" - ], - "profiles": [], - "name": "\ue063PenitentDi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 19:01:50", - "registerOn": 1670166218.00192, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166218.0019205, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166218.0019293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166218.0019302, - "lastIP": "dvvc}vb\u007fj~~ai", - "deviceUUID": "ec0325ae89346ec4a94ec12bb4a64fb75aaf8900" - }, - "pb-IF4sVXA_AA==": { - "display_string": [ - "\ue020ASSASINSURYA" - ], - "profiles": [], - "name": "\ue020ASSASINSURYA", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-02 16:19:07", - "registerOn": 1670166222.0407639, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166222.0407643, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166222.0407724, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166222.0407732, - "lastIP": "azo~{n~~kfaibw", - "deviceUUID": "74d1cb77ef378265911b3c56cb4911bfce20ee05" - }, - "pb-IF4RU1BTFA==": { - "display_string": [ - "\ue063planrearer" - ], - "profiles": [], - "name": "\ue063planrearer", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 12:17:51", - "registerOn": 1670166287.2511134, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166287.2511141, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166287.251122, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166287.2511227, - "lastIP": "a~i~vj~}`~~li", - "deviceUUID": "ce38ef6f088efc7268bce35fe6caa559bb69f1d6" - }, - "pb-IF4xU087Lw==": { - "display_string": [ - "\ue030Android63984885" - ], - "profiles": [], - "name": "\ue030Android63984885", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 19:38:08", - "registerOn": 1670166313.3401363, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166313.340137, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166313.3401449, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166313.3401458, - "lastIP": "avl~~m~}ifai`~", - "deviceUUID": "f08347ee837b54365c1bbea4f2907dc9c0839a3a" - }, - "pb-IF40U3MyVQ==": { - "display_string": [ - "\ue063CautiousPr" - ], - "profiles": [], - "name": "\ue063CautiousPr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-09 19:08:52", - "registerOn": 1670166369.590827, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166369.590828, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670294962.5891352, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670296369.6714978, - "lastIP": "b}k~}kcaniaifx", - "deviceUUID": "39246c8659ea3044a5bead7eacfb2a4a1a738619", - "cMsgCount": 0, - "lastMsgTime": 1670171554.6665184, - "lastMsg": "\ud83d\udca6\ud83d\udca6", - "cSameMsg": 0 - }, - "pb-IF4TU00FLg==": { - "display_string": [ - "\ue020meetraul" - ], - "profiles": [], - "name": "\ue020meetraul", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 10:44:31", - "registerOn": 1670166457.8404708, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166457.8404713, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166457.8404794, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166457.8404803, - "lastIP": "dvvc}vb{m~}me", - "deviceUUID": "a4546cc05c213bc94377ea74589e6e5e93a15011" - }, - "pb-IF4hVREELg==": { - "display_string": [ - "\ue063EternalChi", - "\ue030Android45695456" - ], - "profiles": [], - "name": "\ue063EternalChi", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-19 00:30:31", - "registerOn": 1670166759.9992406, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166759.999241, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166759.9992487, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670166815.828955, - "lastIP": "b}k~~ohaj`vvb\u007fo", - "deviceUUID": "5d1fd35ad6de7cf6224250984ceb1a699f372096", - "cMsgCount": 0, - "lastMsgTime": 1670169766.5801232, - "lastMsg": "I am worst player too ", - "cSameMsg": 0 - }, - "pb-IF4tUnUeDA==": { - "display_string": [ - "\ue063SVSavla" - ], - "profiles": [], - "name": "\ue063SVSavla", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-25 00:37:29", - "registerOn": 1670166760.9934235, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166760.993424, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166760.9934316, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166760.993432, - "lastIP": "a\u007fk~~lbaiaajdy", - "deviceUUID": "8bbbd6f9befc6b28f29b4a23552779248ff80649" - }, - "pb-IF4UUmQbLg==": { - "display_string": [ - "\ue020GrotesqueBargain17" - ], - "profiles": [], - "name": "\ue020GrotesqueBargain17", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-05 10:12:59", - "registerOn": 1670166827.198648, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166827.1986487, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166827.1986573, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166827.1986582, - "lastIP": "bxvf}vbwvhw", - "deviceUUID": "4c621f0b2d6559f1a1a462a50de2d6c0d3ba5564" - }, - "pb-IF4MU0UlCg==": { - "display_string": [ - "\ue020WatDocument29" - ], - "profiles": [], - "name": "\ue020WatDocument29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-04 13:11:30", - "registerOn": 1670166918.549536, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670166918.549537, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670166918.5495458, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670166918.5495462, - "lastIP": "a\u007fn~~acaig{vayj", - "deviceUUID": "39b2745838b0d9993ed845c6bf1700aaced267e9", - "cMsgCount": 0, - "lastMsgTime": 1670167240.3673563, - "lastMsg": "nice \ud83d\udc4d\ud83d\ude42", - "cSameMsg": 0 - }, - "pb-IF4HU3YGEQ==": { - "display_string": [ - "\ue063raiyyan095" - ], - "profiles": [], - "name": "\ue063raiyyan095", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 14:32:50", - "registerOn": 1670167401.2902663, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167401.2902672, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167401.2902741, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670171495.473114, - "lastIP": "a~o~v`~~n~~oe", - "deviceUUID": "bf6c56f6373e0204da59d88191bb526bfa5cd484", - "cMsgCount": 0, - "lastMsgTime": 1670167582.42784, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4tUkQaCg==": { - "display_string": [ - "\ue063itsmohit24" - ], - "profiles": [], - "name": "\ue063itsmohit24", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-29 09:03:46", - "registerOn": 1670167410.1924782, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167410.1924787, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167410.1924858, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167410.192487, - "lastIP": "a~o~va~~naajb}", - "deviceUUID": "6575026d70ced12f5e8ce050da2c39162874affd" - }, - "pb-IF4SUxMmKA==": { - "display_string": [ - "\ue063GiltJustif", - "\ue030Android60259654" - ], - "profiles": [], - "name": "\ue063GiltJustif", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-06 21:34:55", - "registerOn": 1670167432.2450662, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167432.2450671, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167432.2450767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167432.2450776, - "lastIP": "ax`~xj~xi~~ma", - "deviceUUID": "38f9f4d8bbe68c3e6a91965157f9dbd6eacf755e" - }, - "pb-IF4PUnM-Lw==": { - "display_string": [ - "\ue030Android56697829" - ], - "profiles": [], - "name": "\ue030Android56697829", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-14 10:37:22", - "registerOn": 1670167460.3940463, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167460.394047, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167460.3940547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167460.3940556, - "lastIP": "azo~|j~zvb\u007fh", - "deviceUUID": "7cf859ef637f5dac81e22503d1db62cd00146ece" - }, - "pb-IF40UkQYJg==": { - "display_string": [ - "\ue063Navestien6" - ], - "profiles": [], - "name": "\ue020Navestien666", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-30 22:26:21", - "registerOn": 1670167462.3991795, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167462.39918, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329314.4762757, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329314.4762769, - "lastIP": "b\u007fm~}mcaib\u007fvh}", - "deviceUUID": "6e46be3c367cd489a94f4ed2ab1ecd1102ff068d", - "cMsgCount": 0, - "lastMsgTime": 1670329576.4746506, - "lastMsg": "ye kaise aya", - "cSameMsg": 0 - }, - "pb-IF4DU3AABw==": { - "display_string": [ - "\ue020YogeYogesh14", - "\ue030Android63935609", - "\ue030Android63935650", - "\ue030Android63935668", - "\ue030Android63935638" - ], - "profiles": [], - "name": "\ue020YogeYogesh14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-28 01:29:12", - "registerOn": 1670167474.517545, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167474.5175455, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670303696.2627728, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670303696.2627742, - "lastIP": "azo~{a~~ndajcv", - "deviceUUID": "f213df33642e4ebc54b521e0d617c0a8ed131fb5", - "cMsgCount": 0, - "lastMsgTime": 1670304477.640112, - "lastMsg": "go", - "cSameMsg": 0 - }, - "pb-IF4IU0waNQ==": { - "display_string": [ - "\ue063kartikm52" - ], - "profiles": [], - "name": "\ue063kartikm52", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 16:21:29", - "registerOn": 1670167486.5033967, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167486.5033977, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167486.5034065, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167486.5034077, - "lastIP": "a\u007fk~~n~~j~xa", - "deviceUUID": "483b4781309f463e2802d07dea36b718954078e8", - "cMsgCount": 0, - "lastMsgTime": 1670168415.0340774, - "lastMsg": "super", - "cSameMsg": 0 - }, - "pb-IF4eV0oMLw==": { - "display_string": [ - "\ue020TroublesomeAvail4" - ], - "profiles": [], - "name": "\ue020TroublesomeAvail4", - "isBan": false, - "isMuted": false, - "accountAge": "2019-03-15 16:16:24", - "registerOn": 1670167634.9539022, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167634.9539032, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167634.9539106, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167634.9539115, - "lastIP": "dvvcyvb~k~~k", - "deviceUUID": "1f209ff708b6750a46b9bef94d187fbfd57de283" - }, - "pb-IF4gU3cIPQ==": { - "display_string": [ - "\ue063Nirucraze" - ], - "profiles": [], - "name": "\ue020Nirucraze", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 09:15:05", - "registerOn": 1670167676.0900483, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167676.0900488, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670351106.8637354, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670351106.8637369, - "lastIP": "azo~{m~~lfaid|", - "deviceUUID": "2a433aab164c2ce5ca6a32ebd9ca8f738bb40ded" - }, - "pb-IF5cU00kKg==": { - "display_string": [ - "\ue063Headhunter", - "\ue030Android61110362" - ], - "profiles": [], - "name": "\ue063Headhunter", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 12:37:00", - "registerOn": 1670167684.3128276, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167684.312828, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167684.312836, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167684.312837, - "lastIP": "a\u007fk~vm~wi~~md", - "deviceUUID": "9512b2cf2c5d0983d4845e3c85ca5840b37965d4" - }, - "pb-IF4XU0w8Ug==": { - "display_string": [ - "\ue030Android63833158" - ], - "profiles": [], - "name": "\ue030Android63833158", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 13:15:38", - "registerOn": 1670167702.4814215, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167702.4814224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167702.4814298, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670174741.238331, - "lastIP": "azo~{n~~jfai`w", - "deviceUUID": "\u0015QU\u0004QBP^QQ\u0011V\\\u0002X\u0011WZRQARZXPL" - }, - "pb-IF4iVXQnKw==": { - "display_string": [ - "\ue02046DEVILBoy" - ], - "profiles": [], - "name": "\ue02046DEVILBoy", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-25 22:21:46", - "registerOn": 1670167927.9781718, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167927.9781728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167927.9781814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167927.9781823, - "lastIP": "azo~{n~}ieaja{", - "deviceUUID": "e629df65a638bf4b934b80d4854b7e4ccbea2d51" - }, - "pb-IF4yUmsiXQ==": { - "display_string": [ - "\ue030Android55846320" - ], - "profiles": [], - "name": "\ue030Android55846320", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-06 09:37:07", - "registerOn": 1670167942.072769, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670167942.0727696, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670167942.0727766, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670167942.072777, - "lastIP": "a~n~~l~~maa`h", - "deviceUUID": "a5b2bb3e214b2b0f29330b1f6c3a59af7504a787" - }, - "pb-IF4OU0cMLw==": { - "display_string": [ - "\ue020prashantrajputreaba", - "\ue030Android63743210" - ], - "profiles": [], - "name": "\ue020prashantrajputreaba", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 12:46:38", - "registerOn": 1670168090.6077995, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168090.6078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256989.3859186, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256989.38592, - "lastIP": "azo~|k~|l~~nb", - "deviceUUID": "85dacad1b2327afd1235f5ac9d9f2f5d720cad47" - }, - "pb-IF4IU04pBA==": { - "display_string": [ - "\ue020InnateSinner19", - "\ue030Android63932733" - ], - "profiles": [], - "name": "\ue020InnateSinner19", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 18:22:07", - "registerOn": 1670168115.6994216, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168115.6994221, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670357190.6742754, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670357190.6742764, - "lastIP": "a\u007fk~}i~~neaod", - "deviceUUID": "a0dbf538cbca995179cc926b8597a2599c6d01c7", - "cMsgCount": 0, - "lastMsgTime": 1670359314.3526113, - "lastMsg": "sri lanka", - "cSameMsg": 0 - }, - "pb-IF4oU3oZNg==": { - "display_string": [ - "\ue030Android63217110" - ], - "profiles": [], - "name": "\ue030Android63217110", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-09 18:17:36", - "registerOn": 1670168159.9885747, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168159.9885752, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670380770.129137, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670380770.1291382, - "lastIP": "azo~zi~~ohakc", - "deviceUUID": "26670b93a1f1f19f329cbb6fd2ec42ff8a03be17" - }, - "pb-IF5dU084Pw==": { - "display_string": [ - "\ue030Android63903756" - ], - "profiles": [], - "name": "\ue030Android63903756", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 23:21:24", - "registerOn": 1670168260.1819232, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168260.1819236, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168260.1819322, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670168462.549141, - "lastIP": "azo~{a~ym~yk", - "deviceUUID": "d342a67421820e4a47715becb38185e609b3963a" - }, - "pb-IF4LU0sFBA==": { - "display_string": [ - "\ue063AwesomeUni" - ], - "profiles": [], - "name": "\ue063AwesomeUni", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 09:14:30", - "registerOn": 1670168441.779381, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168441.7793818, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212071.9255252, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212071.9255266, - "lastIP": "dvvcyvbzvayi", - "deviceUUID": "333c7b471173a561f43cb4f0d1d0ce56331bfd2f" - }, - "pb-IF4-U0gPUw==": { - "display_string": [ - "\ue020sahiljaiswal124" - ], - "profiles": [], - "name": "\ue020sahiljaiswal124", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 19:12:40", - "registerOn": 1670168577.2081323, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168577.208133, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168577.2081406, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168577.2081413, - "lastIP": "dxvbvvayi~~n`", - "deviceUUID": "181b9dfe147573c0d55a5aeef8a5c86d5b6e7681" - }, - "pb-IF4XV1k7Hw==": { - "display_string": [ - "\ue020louis12king018806660" - ], - "profiles": [], - "name": "\ue020louis12king018806660", - "isBan": false, - "isMuted": false, - "accountAge": "2019-06-02 02:28:59", - "registerOn": 1670168642.4050496, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168642.4050503, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168642.405059, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168642.40506, - "lastIP": "a\u007fn~~ahajdaog", - "deviceUUID": "fb5c7aee9d5a3d954ac47c2d264e36061d4bd094" - }, - "pb-IF4DU00TEw==": { - "display_string": [ - "\ue020ImpregnableInsanity1", - "\ue030Android63902876", - "\ue030Android63906184" - ], - "profiles": [], - "name": "\ue030Android63902876", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 20:44:22", - "registerOn": 1670168714.7566276, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168714.7566283, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328694.657741, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328694.6577425, - "lastIP": "a\u007fn~}hcakiaidv", - "deviceUUID": "a4f8f9370a0add1d52605546a45bf61524401bde", - "cMsgCount": 0, - "lastMsgTime": 1670235724.3246107, - "lastMsg": "hi", - "cSameMsg": 0 - }, - "pb-IF4QVXUqDg==": { - "display_string": [ - "\ue020ismartrohit" - ], - "profiles": [], - "name": "\ue020ismartrohit", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-02 16:35:13", - "registerOn": 1670168771.8602855, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168771.860286, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256717.3799422, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256717.3799434, - "lastIP": "azo~|k~}jiaia}", - "deviceUUID": "b367cb7d689d685aa944611ee2fa21b9e92231ee" - }, - "pb-IF4uU0kIFw==": { - "display_string": [ - "\ue030Android63763752" - ], - "profiles": [], - "name": "\ue030Android63763752", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 14:36:02", - "registerOn": 1670168774.8737438, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168774.8737447, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168774.873753, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168774.873754, - "lastIP": "hvva~k~~kiaih|", - "deviceUUID": "8a7b1ea9eeb5c78cb2c8d1d8e88340af06c02d08" - }, - "pb-IF4CU0MzBg==": { - "display_string": [ - "\ue020HIREN1AHIR" - ], - "profiles": [], - "name": "\ue020HIREN1AHIR", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-21 21:18:26", - "registerOn": 1670168800.9490013, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168800.9490016, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168800.9490104, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168800.9490118, - "lastIP": "aakha`aaih}", - "deviceUUID": "915750760f0ba873f2067db7b204681364660315" - }, - "pb-IF4uU09TCg==": { - "display_string": [ - "\ue030Android63969202" - ], - "profiles": [], - "name": "\ue030Android63969202", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 14:39:41", - "registerOn": 1670168863.1806862, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670168863.180687, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670168863.1806962, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670168863.1806974, - "lastIP": "a{va\u007fj~}j~}lh", - "deviceUUID": "0685c07aedee36e7db7cf12405539e758008389b" - }, - "pb-IF4rUnYPNQ==": { - "display_string": [ - "\ue063SPERMAN" - ], - "profiles": [], - "name": "\ue063SPERMAN", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-28 20:57:12", - "registerOn": 1670169053.8202708, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169053.8202717, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169053.8202791, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169053.8202798, - "lastIP": "hwvb|m~}hdaib{", - "deviceUUID": "9772759615c3ba04fddda721b4126eb7775f3c6d" - }, - "pb-JiNJARBSXURGW1tAEERXU1RHFkBXRlNF": { - "display_string": [ - "\ue020YawningGhost61878", - "\ue063SaltyBoss5" - ], - "profiles": [], - "name": "\ue063SaltyBoss5", - "isBan": false, - "isMuted": false, - "accountAge": "2017-02-09 20:57:13", - "registerOn": 1670169067.8394074, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169067.839408, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169067.8394153, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169067.839416, - "lastIP": "dzvb{`~}vc~", - "deviceUUID": "fda17aff9614132cd899a1a73eef4e3595908baf" - }, - "pb-IF4UUxYyXA==": { - "display_string": [ - "\ue020jagu22wan" - ], - "profiles": [], - "name": "\ue020jagu22wan", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-17 13:52:10", - "registerOn": 1670169191.3203194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169191.32032, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169191.3203282, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169191.3203292, - "lastIP": "dvvcxvavm~z`", - "deviceUUID": "0f36afef7639de12c3030df7c1891bf9138b69d2" - }, - "pb-JiNJVxFfXUpEW1xCEEZSUlBGEUNaR1BE": { - "display_string": [ - "\ue063vishnu234" - ], - "profiles": [], - "name": "\ue063vishnu234", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-14 12:42:49", - "registerOn": 1670169219.4019961, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169219.4019969, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169219.4020064, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169219.402007, - "lastIP": "a\u007fk~~naameaiay", - "deviceUUID": "5438d0b4f124c84c5188a948296609fd92dfa8c0", - "cMsgCount": 0, - "lastMsgTime": 1670169554.6156301, - "lastMsg": "how he got another life", - "cSameMsg": 0 - }, - "pb-IF4MVUQjLw==": { - "display_string": [ - "\ue063PlumpEnt18" - ], - "profiles": [], - "name": "\ue063PlumpEnt18", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-07 19:10:59", - "registerOn": 1670169242.5653312, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169242.565332, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169242.5653405, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169242.5653415, - "lastIP": "azo~zi~xi~{k", - "deviceUUID": "1706b5e06255cac541531121a1ed1def01ddeb56" - }, - "pb-IF5TU0kDFw==": { - "display_string": [ - "\ue020UnmeasuredStreet50" - ], - "profiles": [], - "name": "\ue020UnmeasuredStreet50", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 12:24:25", - "registerOn": 1670169259.8273587, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169259.8273594, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169259.8273673, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169259.8273683, - "lastIP": "b~j~~hdajcyva{l", - "deviceUUID": "82233e2ef1935c012ffaae7566ebab739a1414e6" - }, - "pb-IF4sUhAyKw==": { - "display_string": [ - "\ue020SaturatedOffice44", - "\ue030Android56293089" - ], - "profiles": [], - "name": "\ue030Android56293089", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-07 13:25:58", - "registerOn": 1670169267.5681043, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169267.5681047, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169267.5681126, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169267.5681136, - "lastIP": "azo~{n~vn~}jc", - "deviceUUID": "\u0015U\f\u0002\u0005FR\f" - }, - "pb-IF4-VEsEJA==": { - "display_string": [ - "\ue020BouncyTrucker29384", - "\ue020RegretfulCrow2978" - ], - "profiles": [], - "name": "\ue020BouncyTrucker29384", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-28 19:39:00", - "registerOn": 1670169359.8949296, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169359.8949301, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169359.8949382, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169359.8949392, - "lastIP": "azo~zi~{m~~ai", - "deviceUUID": "9dd12f154ede68dcf02b90d7ff46fb75405efc8a" - }, - "pb-IF4rUmovMg==": { - "display_string": [ - "\ue063ImproperGl" - ], - "profiles": [], - "name": "\ue063ImproperGl", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-31 18:44:19", - "registerOn": 1670169389.031273, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169389.0312734, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169389.0312827, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169389.0312834, - "lastIP": "azo~|`~~ifaje", - "deviceUUID": "93f45368ee483da5feb85bf1d20f18dace721176" - }, - "pb-IF4sU2sqHQ==": { - "display_string": [ - "\ue030Android63976161", - "\ue030Android63976116", - "\ue030Android63976199", - "\ue030Android63976244", - "\ue030Android61865080" - ], - "profiles": [], - "name": "\ue030Android61865080", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 11:54:48", - "registerOn": 1670169465.2797682, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169465.2797692, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347337.7045586, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670349978.0392506, - "lastIP": "dvvc{vhzvd", - "deviceUUID": "f8ef55196d5ba4ca7a6b255fe35954bb1a416b0b", - "cMsgCount": 0, - "lastMsgTime": 1670350132.8387642, - "lastMsg": "kill MPF", - "cSameMsg": 0 - }, - "pb-IF4mUxkJPw==": { - "display_string": [ - "\ue030Android60903665" - ], - "profiles": [], - "name": "\ue030Android60903665", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-01 21:35:25", - "registerOn": 1670169494.541764, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169494.5417645, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169494.5417728, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169494.5417738, - "lastIP": "dvvc{va{o~~`d", - "deviceUUID": "\u0015Q_R\u0004\u0016\u0007T\u0003T\u0017\u0007USXBWXVXBU\\UXE" - }, - "pb-IF4MU085LA==": { - "display_string": [ - "\ue063Invisible6" - ], - "profiles": [], - "name": "\ue063Invisible6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 21:51:17", - "registerOn": 1670169570.629754, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169570.6297545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254945.1974485, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254945.1974494, - "lastIP": "b}k~~oha`gaie{", - "deviceUUID": "7ed64c541b72b7aae895a65f3315961974cb3516" - }, - "pb-IF4KUk0MJg==": { - "display_string": [ - "\ue020PreschoolViability39", - "\ue030Android50875641" - ], - "profiles": [], - "name": "\ue020PreschoolViability39", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-05 21:59:39", - "registerOn": 1670169644.9582026, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169644.9582033, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169644.9582124, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169644.9582133, - "lastIP": "a|i~\u007fvav`~}hb", - "deviceUUID": "420ed96bbfac6067d4c9ddabc36246e40328d8db" - }, - "pb-IF5VVVEADg==": { - "display_string": [ - "\ue063PlainerEnc" - ], - "profiles": [], - "name": "\ue063PlainerEnc", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-06 19:05:44", - "registerOn": 1670169659.0285316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169659.0285325, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255147.1997166, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255147.199718, - "lastIP": "a~h~}keajaxva}i", - "deviceUUID": "fe827b9c97230932d109fce9cb6b8de617b3efe9" - }, - "pb-IF4LUlQ7Ng==": { - "display_string": [ - "\ue020AbhiiiOP1" - ], - "profiles": [], - "name": "\ue020AbhiiiOP1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-02 21:55:26", - "registerOn": 1670169710.198339, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169710.19834, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169710.1983473, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169710.1983483, - "lastIP": "d|vb{a~}jiah", - "deviceUUID": "bf36db18130e678294cd8c52318c1b8ea59ee170" - }, - "pb-IF4vU0MENg==": { - "display_string": [ - "\ue063harshal" - ], - "profiles": [], - "name": "\ue063harshal", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-22 21:41:30", - "registerOn": 1670169845.7034647, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169845.7034655, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341480.1284366, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670343713.0505054, - "lastIP": "azj~zo~~jaaib", - "deviceUUID": "b144a5b6f1f89c128168881dd87511cc79229145" - }, - "pb-IF4lU086KQ==": { - "display_string": [ - "\ue063TSMentVans" - ], - "profiles": [], - "name": "\ue020TSMentVansh1234", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 02:10:21", - "registerOn": 1670169913.9522357, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169913.9522362, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254235.6481817, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254235.6481829, - "lastIP": "a\u007fn~}iealhalh", - "deviceUUID": "2186b07345b0e0b65f93bb8e1e3112cfa32dc866" - }, - "pb-IF4OF2EA": { - "display_string": [ - "\ue020SaltyClown69079" - ], - "profiles": [], - "name": "\ue020SaltyClown69079", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-14 19:39:47", - "registerOn": 1670169968.222988, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670169968.2229884, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670169968.2229965, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670169968.2229972, - "lastIP": "dxviakbald", - "deviceUUID": "44e12025763b483f92ea475ce91cef5100d11fa2" - }, - "pb-IF4-UnVTXQ==": { - "display_string": [ - "\ue020LethargicHotshot9113" - ], - "profiles": [], - "name": "\ue020LethargicHotshot9113", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-23 11:37:44", - "registerOn": 1670170019.463155, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170019.4631557, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170019.463164, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670173277.8204453, - "lastIP": "a\u007fn~}iaajd\u007fvayk", - "deviceUUID": "bde529963f7916a55c191b2b2d6f7a5668a3d48e" - }, - "pb-IF4XVVEuAA==": { - "display_string": [ - "\ue030Android53762436", - "\ue030Android52674661", - "\ue030Android54203722", - "\ue030Android52545518", - "\ue030Android11764371" - ], - "profiles": [], - "name": "\ue030Android54203722", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-15 19:07:44", - "registerOn": 1670170064.5872755, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170064.587276, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670170452.618447, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170064.5872853, - "lastIP": "dvvazva|`~~hh", - "deviceUUID": "262b9e77aad6f334e2f64553c52b722c84047721", - "cMsgCount": 2, - "lastMsgTime": 1670170452.7592585, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4xU04OMg==": { - "display_string": [ - "\ue030PC772976" - ], - "profiles": [], - "name": "\ue030PC772976", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 19:03:47", - "registerOn": 1670170160.974992, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170160.974993, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670335355.8298144, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670333566.4834013, - "lastIP": "b}k~~ohaj`vvb\u007fo", - "deviceUUID": "418fa6a05841c1b0df790370a713ffe4c9949408", - "cMsgCount": 1, - "lastMsgTime": 1670335466.5007281, - "lastMsg": "study karta hu challange accepted bye bro", - "cSameMsg": 0 - }, - "pb-IF5UU01eKw==": { - "display_string": [ - "\ue030Android63796197" - ], - "profiles": [], - "name": "\ue030Android63796197", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 17:05:46", - "registerOn": 1670170259.3832543, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170259.3832548, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170259.3832653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170259.383266, - "lastIP": "a\u007fm~~hfaibvvex", - "deviceUUID": "c068e20e378d907eb9a759dab9c489702828bfdd" - }, - "pb-IF4sU0wcBA==": { - "display_string": [ - "\ue020DiffidentHoplite31" - ], - "profiles": [], - "name": "\ue020DiffidentHoplite31", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 20:53:51", - "registerOn": 1670170364.7377033, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170364.7377043, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334244.6891963, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670334477.5101962, - "lastIP": "a~o~}jhaig{vbzl", - "deviceUUID": "8c631f53682fe91a3f459834ed1f0286daf6db6a" - }, - "pb-IF5QU3AaLg==": { - "display_string": [ - "\ue030Android62078969" - ], - "profiles": [], - "name": "\ue030Android62078969", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 19:45:30", - "registerOn": 1670170420.9802501, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170420.9802506, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670345312.7784083, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670345312.7784095, - "lastIP": "dvvc{vavh~vo", - "deviceUUID": "f1c77e950f17e38d444f78241eb97f92085a69d3" - }, - "pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB": { - "display_string": [ - "\ue063aslammalik", - "\ue030Android13724059" - ], - "profiles": [], - "name": "\ue063aslammalik", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-23 13:26:56", - "registerOn": 1670170435.292834, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170435.2928345, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670252608.1721869, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251115.6189094, - "lastIP": "b}k~~`hajd\u007fva\u007f", - "deviceUUID": "92596357655490b82490f34ee0162e866d767923", - "cMsgCount": 0, - "lastMsgTime": 1670252707.1185305, - "lastMsg": "lol", - "cSameMsg": 0 - }, - "pb-IF4jU0MoPA==": { - "display_string": [ - "\ue030Android63397175" - ], - "profiles": [], - "name": "\ue030Android63397175", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-18 18:45:28", - "registerOn": 1670170478.2920778, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170478.2920783, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353711.1969306, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670353711.1969316, - "lastIP": "azo~{a~~ohajd}", - "deviceUUID": "e502f5721c6c771c13afba773ea7a8a4f577991a", - "cMsgCount": 0, - "lastMsgTime": 1670329074.6039155, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4DUlQYEw==": { - "display_string": [ - "\ue020UnpopularHunter14650", - "\ue030Android59369529" - ], - "profiles": [], - "name": "\ue020UnpopularHunter14650", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-02 12:49:40", - "registerOn": 1670170522.2965899, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170522.2965903, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170522.2965984, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170522.2965994, - "lastIP": "a\u007fk~}maamia`i", - "deviceUUID": "492bc021ca1fa4954f0f9ed9177b64c346aa6945" - }, - "pb-IF4PU046AA==": { - "display_string": [ - "\ue063JRGunner10" - ], - "profiles": [], - "name": "\ue063JRGunner10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 13:29:33", - "registerOn": 1670170530.343196, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170530.3431964, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170530.3432045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170530.3432055, - "lastIP": "f~vaaib|va|i", - "deviceUUID": "21d9a7317fda7d34d19cb6c069632e520e550247" - }, - "pb-IF4pU0gcDQ==": { - "display_string": [ - "\ue063OriginalTe" - ], - "profiles": [], - "name": "\ue063OriginalTe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-22 23:48:00", - "registerOn": 1670170588.589707, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170588.5897076, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170588.5897152, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170588.589716, - "lastIP": "dzvaxa~wn~~if", - "deviceUUID": "25c2075454a5c1fe8be0101dcf18b1fb5e8c08ad" - }, - "pb-IF4NUm4IFA==": { - "display_string": [ - "\ue063noselessmo" - ], - "profiles": [], - "name": "\ue063noselessmo", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-26 09:24:40", - "registerOn": 1670170888.8810575, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170888.881058, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258029.2687323, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258029.2687335, - "lastIP": "a\u007fn~}j`aie}vaza", - "deviceUUID": "afe8504287910093f009e3fb9298e339ac016e72", - "cMsgCount": 0, - "lastMsgTime": 1670258127.7363563, - "lastMsg": "sry", - "cSameMsg": 0 - }, - "pb-LV4FBUYOVRRBCl4UEkVRB1EWGA==": { - "display_string": [ - "\ue021Phalgun~", - "\ue020Phalsgun", - "\ue030PC241395", - "\ue030Android8403398", - "\ue030PC403142" - ], - "profiles": [], - "name": "\ue021Phalgun~", - "isBan": false, - "isMuted": false, - "accountAge": "2016-11-20 11:42:50", - "registerOn": 1670170943.1882389, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170943.1882393, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338260.6128583, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338260.6128597, - "lastIP": "dvvb\u007fm~~hgajf", - "deviceUUID": "\u0019 .%V2#U\"LG#)VLAQX%LLVYXL1S(%VFQ/Y EY\\UQ@Y^RXAS", - "cMsgCount": 0, - "lastMsgTime": 1670340767.871169, - "lastMsg": "hehe no kill", - "cSameMsg": 0 - }, - "pb-IF5SUlkpPQ==": { - "display_string": [ - "\ue030Android59632041" - ], - "profiles": [], - "name": "\ue030Android59632041", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-11 11:33:51", - "registerOn": 1670170955.8542447, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670170955.854245, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670170955.8542526, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670170955.8542533, - "lastIP": "a\u007fk~xa~}mea`", - "deviceUUID": "\u0015U\u000bW\u0005\u0016YZTSB\u0003[\u0003SFY\\PXLR\\PYBT" - }, - "pb-IF49VWglHA==": { - "display_string": [ - "\ue063FormerInno", - "\ue030Android46954321" - ], - "profiles": [], - "name": "\ue063FormerInno", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-27 21:16:31", - "registerOn": 1670171282.0857804, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670171282.085781, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670171282.0857897, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670171282.0857906, - "lastIP": "dxviaibvva~j", - "deviceUUID": "2df76a1bed2e77629bc5ec2a80ad87eb9f804fd1" - }, - "pb-IF4wU00EFA==": { - "display_string": [ - "\ue020BodaciousHipster7051" - ], - "profiles": [], - "name": "\ue020BodaciousHipster7051", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 14:01:54", - "registerOn": 1670171292.368926, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670171292.3689263, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219834.2400062, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219834.2400074, - "lastIP": "a}k~}kaaibzvb}", - "deviceUUID": "8a1bd0181802c25e85b4c22ec22fb7657e699e7e" - }, - "pb-IF4mU3kDIg==": { - "display_string": [ - "\ue063ProbablePl" - ], - "profiles": [], - "name": "\ue063ProbablePl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-06 15:24:27", - "registerOn": 1670171337.263092, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670171337.2630925, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670171337.263101, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670172120.6382544, - "lastIP": "a\u007fk~~agajb{vb\u007fl", - "deviceUUID": "666cfd5e4f6f2be2ceb7998e0a7defd54d85ad08" - }, - "pb-IF5QUncABw==": { - "display_string": [ - "\ue020SpontaneousTexture21" - ], - "profiles": [], - "name": "\ue020SpontaneousTexture21", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-22 17:01:09", - "registerOn": 1670171369.360172, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670171369.360173, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343519.3416884, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670343763.2457356, - "lastIP": "azo~|k~}ihaj`", - "deviceUUID": "\u0015Y_VS\u0012P\u000eY\u0007\u0015P]\u0003P\u0016U[PTLSTTVC", - "cMsgCount": 1, - "lastMsgTime": 1670172278.892956, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4cVEsJAg==": { - "display_string": [ - "\ue020OutmodedMystery3", - "\ue020smartysurendhar", - "\ue020NOORULAMEENAK57THALA", - "\ue020SubtlerPrelude12", - "\ue030Android24527683" - ], - "profiles": [], - "name": "\ue020NOORULAMEENAK57THALA", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-28 19:29:44", - "registerOn": 1670171705.5125847, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670171705.5125856, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340224.5565116, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670341210.1555612, - "lastIP": "azo~{a~~`daiiy", - "deviceUUID": "4f95e577a50d5f70018f099e72b520364683903b" - }, - "pb-IF4pVVQBEA==": { - "display_string": [ - "\ue020\u1d35\u1d2c\u1d39\u30baRaoJi" - ], - "profiles": [], - "name": "\ue020\u1d35\u1d2c\u1d39\u30baRaoJi", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-01 17:58:38", - "registerOn": 1670172105.9046304, - "canStartKickVote": true, - "spamCount": 2, - "lastSpam": 1670216868.3627353, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670246867.0605102, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246575.5256505, - "lastIP": "a\u007fn~~aeaicaidy", - "deviceUUID": "5fe0619e43e78d3eb296f26e44b46fe30b6d98f1", - "cMsgCount": 0, - "lastMsgTime": 1670246867.0604496, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFeUkZGXVhBEUdSU1RGEkJXTlRH": { - "display_string": [ - "\ue020Sagaramin12345", - "\ue030Android9634823" - ], - "profiles": [], - "name": "\ue020Sagaramin12345", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-06 17:52:32", - "registerOn": 1670172231.363033, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172231.3630338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172231.363042, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172231.363043, - "lastIP": "azo~{m~~ldaicz", - "deviceUUID": "cdd64c05bf3f291f40e0aecd4923efeb120a9465" - }, - "pb-IF4KVRMyUw==": { - "display_string": [ - "\ue020UnnumberedRobbery17", - "\ue030Android45832072" - ], - "profiles": [], - "name": "\ue020UnnumberedRobbery17", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-24 21:50:54", - "registerOn": 1670172302.779433, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172302.7794335, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246145.013323, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246145.013324, - "lastIP": "aakhaif}vev", - "deviceUUID": "ce399e8462aa7587b43b0a15826f2e1d007fa2af" - }, - "pb-IF4-U2pcKA==": { - "display_string": [ - "\ue030Android61702035" - ], - "profiles": [], - "name": "\ue030Android61702035", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-03 23:14:58", - "registerOn": 1670172351.7900114, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172351.7900121, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172351.790019, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172351.7900198, - "lastIP": "hxvavn~wi~~mf", - "deviceUUID": "645d592ec70b838dc5115801e998c148efe1bb6f" - }, - "pb-IF49U0JZFw==": { - "display_string": [ - "\ue030Android63349899" - ], - "profiles": [], - "name": "\ue030Android63349899", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-16 19:16:34", - "registerOn": 1670172400.3639817, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172400.3639824, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172400.363991, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172400.363992, - "lastIP": "dzva~m~vi~~md", - "deviceUUID": "b9a8c922680362e8105243c616c9089ae90ed8c1" - }, - "pb-IF48VWIPPw==": { - "display_string": [ - "\ue020QuerulousBrick19" - ], - "profiles": [], - "name": "\ue020QuerulousBrick19", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-17 17:03:47", - "registerOn": 1670172556.5734344, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172556.5734348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172556.5734437, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172556.5734446, - "lastIP": "dvvcxvb{k~~ah", - "deviceUUID": "7bed0a23c4157affd91bd27ca455553c455f7028" - }, - "pb-IF4oVEwvLA==": { - "display_string": [ - "\ue063DAXDESAI" - ], - "profiles": [], - "name": "\ue063DAXDESAI", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-30 20:43:12", - "registerOn": 1670172569.584806, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172569.5848067, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172569.584815, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172569.584816, - "lastIP": "d}va\u007fn~}i~~he", - "deviceUUID": "b423c8c8f8cda2231efaf5538ddec32bd6c4cc58" - }, - "pb-IF4yUng_XA==": { - "display_string": [ - "\ue063CosmicOutl", - "\ue030Android63886432", - "\ue030Android63885993" - ], - "profiles": [], - "name": "\ue063CosmicOutl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-05 21:40:38", - "registerOn": 1670172749.221171, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172749.2211723, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172749.2211812, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670172965.7047884, - "lastIP": "azo~{m~~odaihy", - "deviceUUID": "c4c8e19e44efd3082fbdc264c20023dc909737ad" - }, - "pb-JiNJARBcUEpCW15BEUNSXVVAGUFeQVJC": { - "display_string": [ - "\ue063LoverboyRo", - "\ue030Android14612394" - ], - "profiles": [], - "name": "\ue063LoverboyRo", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-22 23:25:54", - "registerOn": 1670172815.4980688, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172815.4980693, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172815.4980776, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172815.4980788, - "lastIP": "b~a~vi~}j`aaa", - "deviceUUID": "d787184373a57c90653527370baf50bdcee7a7ac" - }, - "pb-IF4sU0ETNA==": { - "display_string": [ - "\ue020yuriiiiiiiiii116" - ], - "profiles": [], - "name": "\ue020yuriiiiiiiiii116", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-18 15:33:09", - "registerOn": 1670172859.681317, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172859.6813176, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172859.681328, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172859.6813293, - "lastIP": "a\u007fk~~nhajdwvavi", - "deviceUUID": "82c285a23195908c30ce61d37eda08b085d8f15c" - }, - "pb-JiNJARFYXEtAWVlAFERRXFRFF0VfQVND": { - "display_string": [ - "\ue020royiam", - "\ue030Android53267307", - "\ue030Android52047741" - ], - "profiles": [], - "name": "\ue020royiam", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-17 12:29:24", - "registerOn": 1670172867.7084131, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172867.7084136, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172867.7084224, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670173129.2934122, - "lastIP": "b}k~}jeamhajb~", - "deviceUUID": "23b0a4db661c47deb0c5e6a91814e083e2413305", - "cMsgCount": 0, - "lastMsgTime": 1670172899.263744, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4vU04bIw==": { - "display_string": [ - "\ue030Android63934668" - ], - "profiles": [], - "name": "\ue030Android63934668", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 16:53:45", - "registerOn": 1670172889.7440207, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670172889.7440212, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670172889.7441478, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670172889.7441485, - "lastIP": "a\u007fn~}hhaigyvazk", - "deviceUUID": "ce1645af5c72e9508bb1ab2a7940a3b0931ae900" - }, - "pb-IF5WVXkpVQ==": { - "display_string": [ - "\ue030Android50225790" - ], - "profiles": [], - "name": "\ue030Android50225790", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-13 02:08:43", - "registerOn": 1670173039.3773623, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173039.3773627, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173039.377371, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173039.3773723, - "lastIP": "avh~}ihajaxve", - "deviceUUID": "641973b162542d8dd1a370b5566a01614dd3c1c9", - "cMsgCount": 0, - "lastMsgTime": 1670173094.5510375, - "lastMsg": "run run run", - "cSameMsg": 0 - }, - "pb-IF4BU0s8BA==": { - "display_string": [ - "\ue030Android63830734" - ], - "profiles": [], - "name": "\ue030Android63830734", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 23:03:34", - "registerOn": 1670173119.5594878, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173119.5594885, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319410.982448, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319410.9824493, - "lastIP": "azj~zo~}igaic{", - "deviceUUID": "ca7f2b95038dc2799782a23213c8fd8518c135b9", - "cMsgCount": 0, - "lastMsgTime": 1670173318.6612692, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFeUkdDX1tHEkVTVlFDFUlXRllG": { - "display_string": [ - "\ue020ScreechingOoze8069", - "\ue030Android6469030" - ], - "profiles": [], - "name": "\ue020ScreechingOoze8069", - "isBan": false, - "isMuted": false, - "accountAge": "2016-09-10 12:28:52", - "registerOn": 1670173147.8888347, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173147.8888354, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334768.9593174, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334768.959319, - "lastIP": "dvvcyva}i~|j", - "deviceUUID": "56d8b3078b48fa76c4d1d4471edcf8f7003cdf36" - }, - "pb-IF4lU2wxKA==": { - "display_string": [ - "\ue020AyushW1060" - ], - "profiles": [], - "name": "\ue020AyushW1060", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-11 23:33:43", - "registerOn": 1670173154.7079437, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173154.7079442, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173154.7079527, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173154.7079535, - "lastIP": "azj~zo~~`caa`", - "deviceUUID": "3b4cc9e515c3adf94f47e483f4a71bd08d12dc58" - }, - "pb-IF4lVVQoFg==": { - "display_string": [ - "\ue063CaffeineAs" - ], - "profiles": [], - "name": "\ue063CaffeineAs", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-30 01:03:01", - "registerOn": 1670173333.3859758, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173333.3859766, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173333.3859844, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173333.3859854, - "lastIP": "a~h~}jfaigwva\u007fm", - "deviceUUID": "783e4b6c2fc381c92432b022ef9970cda427a469", - "cMsgCount": 0, - "lastMsgTime": 1670174142.3896983, - "lastMsg": "yea ", - "cSameMsg": 0 - }, - "pb-IF4PVFRZMA==": { - "display_string": [ - "\ue063delrowe012" - ], - "profiles": [], - "name": "\ue063delrowe012", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-14 18:27:37", - "registerOn": 1670173377.5020025, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173377.5020032, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346422.0907545, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346422.0907564, - "lastIP": "dvvcyvczvh}", - "deviceUUID": "8c88a64fe0c7bcee47322e9209aee1327afe7ded", - "cMsgCount": 2, - "lastMsgTime": 1670243837.0458896, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4cU3oSUw==": { - "display_string": [ - "\ue063Martinphil" - ], - "profiles": [], - "name": "\ue020Martinphilipjacob132", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-10 19:13:38", - "registerOn": 1670173562.17576, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173562.175761, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324949.9201195, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670324949.9201212, - "lastIP": "a\u007fk~~nbaj`xva{j", - "deviceUUID": "42f36eaed98a11f72393c6cf098534c33aa87122" - }, - "pb-IF4NUhUaHw==": { - "display_string": [ - "\ue030Android63783914" - ], - "profiles": [], - "name": "\ue030Android63783914", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 16:14:23", - "registerOn": 1670173716.6809845, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173716.680985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263640.3606524, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670263715.958391, - "lastIP": "awj~{`~~aiaibw", - "deviceUUID": "8ec3176a8d9a90e7694cc8aa41ae6a8727c73ae6" - }, - "pb-IF5QVFRdIQ==": { - "display_string": [ - "\ue020UnrecordedTense20", - "\ue020ResoluteMainland12", - "\ue020shazan99502", - "\ue020tyagInvolvedOfficial", - "\ue030Android63785493" - ], - "profiles": [], - "name": "\ue020shazan99502", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-26 21:45:08", - "registerOn": 1670173723.7922611, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173723.7922616, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263658.4137301, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670263730.0153766, - "lastIP": "awj~{`~~aiaibw", - "deviceUUID": "26b41e6328ae665eec92fa309cafe0ed814c2493" - }, - "pb-IF4qUkw9Pw==": { - "display_string": [ - "\ue020TelegraphicTree29" - ], - "profiles": [], - "name": "\ue020TelegraphicTree29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-28 16:03:20", - "registerOn": 1670173868.2830174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173868.2830179, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670374927.33097, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670374927.3309717, - "lastIP": "dxvazvaxi~}hd", - "deviceUUID": "3b30ff5c934dc2e484e090a738b9d0ea5ecb0f76" - }, - "pb-IF4KU0waFA==": { - "display_string": [ - "\ue030Android63853549" - ], - "profiles": [], - "name": "\ue030Android63853549", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 20:21:14", - "registerOn": 1670173880.312833, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173880.3128338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173880.3128426, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173880.3128436, - "lastIP": "awa~~acaidvvi{", - "deviceUUID": "40ba4e759cdef11460bb98d4fbfbefcfb084cfac" - }, - "pb-IF4JUmdaIg==": { - "display_string": [ - "\ue020MemerBadshah", - "\ue030Android54946326" - ], - "profiles": [], - "name": "\ue020MemerBadshah", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-17 13:09:03", - "registerOn": 1670173904.42992, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173904.4299207, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670173904.4299293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670173904.4299302, - "lastIP": "a~h~}keajcwve}", - "deviceUUID": "ce6feadb6452fe5fb99586cc0606eceda723613f" - }, - "pb-IF43U0sjUQ==": { - "display_string": [ - "\ue063ReliableDi" - ], - "profiles": [], - "name": "\ue063ReliableDi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 17:49:55", - "registerOn": 1670173929.5760052, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670173929.5760057, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344391.4228303, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670344391.4228315, - "lastIP": "a~h~}jfaigxvaxl", - "deviceUUID": "383976cf79c64e9a4ffd6417ae09615008a853c2", - "cMsgCount": 0, - "lastMsgTime": 1670174405.9152126, - "lastMsg": "sry. ", - "cSameMsg": 0 - }, - "pb-IF4yU0QOIw==": { - "display_string": [ - "\ue063Understoo2" - ], - "profiles": [], - "name": "\ue063Understoo2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 19:22:14", - "registerOn": 1670174013.8634691, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174013.8634696, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174013.86348, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174013.8634808, - "lastIP": "azo~{h~~k`aicw", - "deviceUUID": "019498090669705f2a306af7ef940362fb125ca4" - }, - "pb-IF4cU08AHA==": { - "display_string": [ - "\ue063SketchyPar" - ], - "profiles": [], - "name": "\ue063SketchyPar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 21:45:47", - "registerOn": 1670174020.8854249, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174020.885425, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174020.8854332, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174020.885434, - "lastIP": "dxvbvvbaidz", - "deviceUUID": "12f2849bcf4b27502d2cc1c3bc38171cb68d332a" - }, - "pb-IF4AVVAIUg==": { - "display_string": [ - "\ue020VerdantCircus9", - "\ue030Android57598974" - ], - "profiles": [], - "name": "\ue020VerdantCircus9", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-12 17:00:29", - "registerOn": 1670174260.2066307, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174260.2066312, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174260.206639, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174260.2066402, - "lastIP": "a\u007fk~}keah~zj", - "deviceUUID": "67250fd1e36d69cdb84203ec101203d1ca247a0d" - }, - "pb-IF4wU0EzEA==": { - "display_string": [ - "\ue020FranticAlliance82034" - ], - "profiles": [], - "name": "\ue020FranticAlliance82034", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-11 13:05:00", - "registerOn": 1670174438.5126605, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174438.512661, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259249.1921232, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259249.1921244, - "lastIP": "cxva~i~}lbaae", - "deviceUUID": "825a6d3c484f6f2475af76974c37f77bb40f0b2d" - }, - "pb-IF41U00aAg==": { - "display_string": [ - "\ue030Android63916646" - ], - "profiles": [], - "name": "\ue030Android63916646", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 15:58:52", - "registerOn": 1670174475.6080759, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174475.6080763, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174475.6080832, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174475.6080842, - "lastIP": "azo~|k~va~~`", - "deviceUUID": "3c9ee2ef878d6c4a4483094b15c6785c16473e0a" - }, - "pb-IF4rU3oHCw==": { - "display_string": [ - "\ue030Android63195782" - ], - "profiles": [], - "name": "\ue030Android63195782", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-08 15:26:50", - "registerOn": 1670174606.0686145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174606.0686152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174606.068624, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174606.068625, - "lastIP": "b}k~}jganaaj`y", - "deviceUUID": "\u0015TZW\u0003EW]R\u0007G\u0007\fYYB\u0003_PRLW^UU@X" - }, - "pb-IF4eUhIxBg==": { - "display_string": [ - "\ue063catbros7", - "\ue020GrandestShepherd22" - ], - "profiles": [], - "name": "\ue063catbros7", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-13 19:21:59", - "registerOn": 1670174776.7160783, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174776.716079, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174776.7160878, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174776.7160885, - "lastIP": "a\u007fm~~n`amhaif\u007f", - "deviceUUID": "4b5d6bbe94d109672dda984f017585fce563e0a1" - }, - "pb-IF4hVFQJPA==": { - "display_string": [ - "\ue020sheriff007gamer" - ], - "profiles": [], - "name": "\ue020sheriff007gamer", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-25 00:58:39", - "registerOn": 1670174884.0662334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174884.0662339, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670327878.9655817, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670327467.3993437, - "lastIP": "a~o~~aeaibzvb}a", - "deviceUUID": "5a88a38de9f59d848fa0aa2329888d522d5687d8", - "cMsgCount": 0, - "lastMsgTime": 1670328347.4019775, - "lastMsg": "wow draken", - "cSameMsg": 0 - }, - "pb-IF5VU3lYDA==": { - "display_string": [ - "\ue020AlienPersonnel44", - "\ue030Android61272703" - ], - "profiles": [], - "name": "\ue020AlienPersonnel44", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-22 11:33:30", - "registerOn": 1670174946.398253, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174946.3982537, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670349830.4809752, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670349830.4809766, - "lastIP": "azj~z`~~`canf", - "deviceUUID": "b12054ad1919551ca42bc4d11a0d1402a4e7bd92", - "cMsgCount": 0, - "lastMsgTime": 1670353285.1729784, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-JiNJARBTVkdCW1ZIEkRVVlVGGUFcRVRG": { - "display_string": [ - "\ue063rajanr1234", - "\ue030Android12526088" - ], - "profiles": [], - "name": "\ue063rajanr1234", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-13 11:49:54", - "registerOn": 1670174970.4428892, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670174970.4428897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670174970.4428973, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670174970.4428983, - "lastIP": "a~o~vo~}hdaoh", - "deviceUUID": "d5930fe991df73b13e0fc02e5936504e86d430ea" - }, - "pb-IF4PU04gEw==": { - "display_string": [ - "\ue030Android63923008" - ], - "profiles": [], - "name": "\ue030Android63923008", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 20:15:00", - "registerOn": 1670175001.8491335, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175001.849134, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175001.8491435, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175001.8491442, - "lastIP": "a~h~}jgai`aib}", - "deviceUUID": "e50bfb4269794bb57884fcf368e26086400f4d17" - }, - "pb-IF5dU3UiAw==": { - "display_string": [ - "\ue020sheriffgamer007" - ], - "profiles": [], - "name": "\ue020sheriffgamer007", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 21:03:46", - "registerOn": 1670175030.9890144, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175030.989015, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175030.9890254, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175030.989026, - "lastIP": "azo~zi~~aiajcv", - "deviceUUID": "5a88a38de9f59d848fa0aa2329888d522d5687d8" - }, - "pb-IF4QU0s_Eg==": { - "display_string": [ - "\ue020RedeemingTariff52" - ], - "profiles": [], - "name": "\ue020RedeemingTariff52", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 00:17:56", - "registerOn": 1670175131.962698, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175131.9626985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318394.3460476, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670319464.202854, - "lastIP": "a}j~~naaohalg", - "deviceUUID": "ae526a45e4f0f4ba896730cc4b000af030e55e6a", - "cMsgCount": 0, - "lastMsgTime": 1670260216.7919657, - "lastMsg": "am i the only one who's lagging ", - "cSameMsg": 0 - }, - "pb-IF4IU3kKKA==": { - "display_string": [ - "\ue063VolcanoOP" - ], - "profiles": [], - "name": "\ue063VolcanoOP", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-05 15:15:17", - "registerOn": 1670175137.277485, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175137.2774854, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670350709.392531, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670350709.3925319, - "lastIP": "azo~{h~~`iana", - "deviceUUID": "850f3cacc311409811919cb1fc60c665a47ac661" - }, - "pb-IF4GVRNYVw==": { - "display_string": [ - "\ue030Android45693231" - ], - "profiles": [], - "name": "\ue030Android45693231", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-18 22:31:20", - "registerOn": 1670175158.3808932, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175158.3808937, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175158.3809023, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175158.3809032, - "lastIP": "a~m~v`~}kbajd\u007f", - "deviceUUID": "cd7fdf71362654f075816ef0d9e4c42de8019d6f" - }, - "pb-IF43VUwpNw==": { - "display_string": [ - "\ue020RedDreameater55290", - "\ue030Android52236929" - ], - "profiles": [], - "name": "\ue020RedDreameater55290", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-22 14:27:47", - "registerOn": 1670175170.194614, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175170.1946144, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175170.1946218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175170.1946225, - "lastIP": "a|o~vo~~hgajg", - "deviceUUID": "3866e016313a8964b64fdbf94302a07ba493bf62" - }, - "pb-IF4wU0gdPA==": { - "display_string": [ - "\ue020TranslucentSpeed26" - ], - "profiles": [], - "name": "\ue020TranslucentSpeed26", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-22 18:48:50", - "registerOn": 1670175210.2339947, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175210.2339954, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292675.0276132, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292675.0276148, - "lastIP": "d}va\u007fm~~ndaia|", - "deviceUUID": "18cc50fe25438fb91a54bff3ebc1f19d09d55a67" - }, - "pb-IF4gU2wxIg==": { - "display_string": [ - "\ue020\ud83c\udd76\ud835\udd86m\ud835\udd8a\u211dZ\u1b44", - "\ue030Android48199653" - ], - "profiles": [], - "name": "\ue030Android48199653", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-13 12:05:37", - "registerOn": 1670175374.7926185, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175374.7926192, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175374.792629, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175374.79263, - "lastIP": "azj~zo~za~~hf", - "deviceUUID": "d5fcef28207c5a26ea8a9a0000ab24651e20aa81" - }, - "pb-IF4hU0YdDg==": { - "display_string": [ - "\ue063NarrowHips" - ], - "profiles": [], - "name": "\ue063NarrowHips", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-18 23:04:26", - "registerOn": 1670175379.8240604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175379.824061, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307209.3611066, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307209.361108, - "lastIP": "dvvc}va{k~|h", - "deviceUUID": "af27fe203ccae0ab8aa185932b2df897859f41f1" - }, - "pb-IF4UU1AtCw==": { - "display_string": [ - "\ue030Android63983709" - ], - "profiles": [], - "name": "\ue030Android63983709", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:47:57", - "registerOn": 1670175383.8847692, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175383.8847702, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175383.8847783, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175383.8847792, - "lastIP": "a\u007fn~}hdaleaih}", - "deviceUUID": "b85aa7474eeddc07891aa5a83d9de87caac1f787" - }, - "pb-IF4dVVk5Nw==": { - "display_string": [ - "\ue030VR252448" - ], - "profiles": [], - "name": "\ue030VR252448", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-27 04:38:10", - "registerOn": 1670175514.2591097, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670175514.2591102, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670175514.2591188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670175514.25912, - "lastIP": "dzvayl~~j~}ii", - "deviceUUID": "a047e6a2baaf04a56a637c005d502afa2028d5b3" - }, - "pb-IF5XVGQoFA==": { - "display_string": [ - "\ue063albyresto7", - "\ue030Android61395727" - ], - "profiles": [], - "name": "\ue020albyresto77", - "isBan": false, - "isMuted": false, - "accountAge": "2019-08-16 12:44:40", - "registerOn": 1670179934.9552991, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670179934.9552999, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337986.6848643, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670343380.8698602, - "lastIP": "a\u007fk~~nfajdzva\u007fi", - "deviceUUID": "cd4ad2abbf4423c6666fe271a1402981e635f147", - "cMsgCount": 1, - "lastMsgTime": 1670345681.3389263, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK": { - "display_string": [ - "\ue020IdenticalShock57" - ], - "profiles": [], - "name": "\ue020IdenticalShock57", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-24 16:00:32", - "registerOn": 1670180083.561179, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180083.5611794, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353498.5866482, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670354244.6086638, - "lastIP": "a}j~~naaoeajd\u007f", - "deviceUUID": "ae526a45e4f0f4ba896730cc4b000af030e55e6a", - "cMsgCount": 0, - "lastMsgTime": 1670355260.190159, - "lastMsg": "\ud83d\ude02", - "cSameMsg": 0 - }, - "pb-IF4rLkwp": { - "display_string": [ - "\ue063MPF", - "\ue030Android40308191", - "\ue030Android39582261", - "\ue030PC232491", - "\ue030Android38640036" - ], - "profiles": [], - "name": "\ue063MPF", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-07 02:20:26", - "registerOn": 1670180128.7830744, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180128.7830749, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340072.0114744, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670343186.1785004, - "lastIP": "a~j~~kdajazvb{a", - "deviceUUID": "953545bd5aff970cb214eddf944dad1dedd540a0", - "cMsgCount": 0, - "lastMsgTime": 1670351830.0519254, - "lastMsg": "alright gn cya o.o", - "cSameMsg": 0 - }, - "pb-IF4pUmQcPA==": { - "display_string": [ - "\ue030PC363206" - ], - "profiles": [], - "name": "\ue030PC363206", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-05 16:56:08", - "registerOn": 1670180268.9322007, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180268.9322014, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315792.8151095, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315792.8151107, - "lastIP": "dvvb\u007fl~~idak`", - "deviceUUID": "\u0003X]", - "cMsgCount": 1, - "lastMsgTime": 1670315951.3718553, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4iVxJYAA==": { - "display_string": [ - "\ue063BeamingMos" - ], - "profiles": [], - "name": "\ue063BeamingMos", - "isBan": false, - "isMuted": false, - "accountAge": "2018-07-19 14:24:07", - "registerOn": 1670180317.4847248, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180317.4847255, - "totaltimeplayer": 0, - "warnCount": 3, - "lastWarned": 1670180772.7773814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670180317.484736, - "lastIP": "a\u007fk~{a~}lbajc~", - "deviceUUID": "9637ab5346733ccc64193a8c1aa3ffb417a5c4ea", - "cMsgCount": 0, - "lastMsgTime": 1670180772.7774034, - "lastMsg": "chutya", - "cSameMsg": 0 - }, - "pb-IF4RU086HQ==": { - "display_string": [ - "\ue030Android63952571" - ], - "profiles": [], - "name": "\ue030Android63952571", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 19:00:44", - "registerOn": 1670180319.1790404, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180319.179041, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670180319.1790483, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670180319.179049, - "lastIP": "azn~~`daii}vaxm", - "deviceUUID": "720f329bb6e3c83cbc216b9060ad3053549598c0" - }, - "pb-IF4HU3hTEA==": { - "display_string": [ - "\ue020LunaticTactician7288" - ], - "profiles": [], - "name": "\ue020LunaticTactician7288", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 15:23:48", - "registerOn": 1670180438.5559657, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180438.5559664, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670180438.5559757, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670180438.5559769, - "lastIP": "d|vbzj~}lhai`w", - "deviceUUID": "720d78a5e12a5820b99277503405d1044718b185", - "cMsgCount": 0, - "lastMsgTime": 1670180473.529602, - "lastMsg": "/kick 233", - "cSameMsg": 0 - }, - "pb-IF4vVRUFVA==": { - "display_string": [ - "\ue063BoomBaam11" - ], - "profiles": [], - "name": "\ue063BoomBaam11", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-10 15:52:43", - "registerOn": 1670180534.8579652, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180534.8579657, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341743.0532963, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670349804.3890324, - "lastIP": "a}j~~ncaidyva}`", - "deviceUUID": "eb31b3da7f27d4919ad3eec0fdde0a796e6a4c63", - "cMsgCount": 0, - "lastMsgTime": 1670353291.9179745, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4gUlAgLw==": { - "display_string": [ - "\ue063GodplayerO", - "\ue030Android56987886" - ], - "profiles": [], - "name": "\ue063GodplayerO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-17 15:31:52", - "registerOn": 1670180593.472905, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180593.4729054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670180593.472914, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670180593.4729147, - "lastIP": "a\u007fk~~mfajcxvavi", - "deviceUUID": "45ef30024b982ad672c5aa5c35f3598e068f61d5" - }, - "pb-IF4yV2ERXQ==": { - "display_string": [ - "\ue063matinnosra", - "\ue030Android27574057", - "\ue030Android54041956", - "\ue030Android56258742" - ], - "profiles": [], - "name": "\ue063matinnosra", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-13 19:12:12", - "registerOn": 1670180904.4921591, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670181017.6537411, - "totaltimeplayer": 0, - "warnCount": 4, - "lastWarned": 1670181017.6522706, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670180904.4921694, - "lastIP": "hyvexvaanb", - "deviceUUID": "cef621b0277dc5523a8bc5f70f9a3286ecd9cae9", - "cMsgCount": 0, - "lastMsgTime": 1670181017.6515322, - "lastMsg": "/timer t=0.01 rise 141 repeat", - "cSameMsg": 0 - }, - "pb-IF4-U0wpMQ==": { - "display_string": [ - "\ue063UbeTaTtA69" - ], - "profiles": [], - "name": "\ue063UbeTaTtA69", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 14:01:05", - "registerOn": 1670180930.2976832, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670180930.297684, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670181840.361041, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670182261.8190577, - "lastIP": "a~j~~kdaleajdx", - "deviceUUID": "77602c07f9db8960e506de5d3b475d90aeb6b4f2", - "cMsgCount": 0, - "lastMsgTime": 1670181911.7992318, - "lastMsg": "bos", - "cSameMsg": 0 - }, - "pb-IF4sVVM5Mg==": { - "display_string": [ - "\ue020PlaneProcession32" - ], - "profiles": [], - "name": "\ue020PlaneProcession32", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-29 18:34:53", - "registerOn": 1670181029.707517, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181029.7075174, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181029.7075264, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181029.7075274, - "lastIP": "eajawvbzvbx", - "deviceUUID": "\u0015" - }, - "pb-IF4wUkwlJg==": { - "display_string": [ - "\ue030Android58555746" - ], - "profiles": [], - "name": "\ue030Android58555746", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-27 12:53:26", - "registerOn": 1670181432.258699, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181432.2586994, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181432.2587972, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181432.2587984, - "lastIP": "cxva~i~~meajdy", - "deviceUUID": "\u0015S\u000fYWE\u0002XP" - }, - "pb-IF4PU08bLA==": { - "display_string": [ - "\ue063ArylAwesom" - ], - "profiles": [], - "name": "\ue063ArylAwesom", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:47:54", - "registerOn": 1670181470.3667445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181470.3667448, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181470.3667536, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181470.3667543, - "lastIP": "a\u007fk~yvazi~~lh", - "deviceUUID": "e15131b31c70cca389487091b2e691fb0d831695" - }, - "pb-IF4CVBYJCA==": { - "display_string": [ - "\ue020\u0e21\u0e34\u0e01\u0e0b\u0e4c3707" - ], - "profiles": [], - "name": "\ue020\u0e21\u0e34\u0e01\u0e0b\u0e4c3707", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-21 13:06:28", - "registerOn": 1670181481.5857174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181481.585718, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181481.5857265, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181481.5857275, - "lastIP": "bxva{m~~m`aif~", - "deviceUUID": "2b0fa052d8521e1c98973c76a9fb169fa0f92030" - }, - "pb-IF4XUxYINw==": { - "display_string": [ - "\ue063EpidemicDi" - ], - "profiles": [], - "name": "\ue063EpidemicDi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-18 11:38:13", - "registerOn": 1670181656.3552763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181656.3552768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181656.355285, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181656.3552861, - "lastIP": "a}j~~oba`faiey", - "deviceUUID": "6f6deb21127b9d0da2611a917a1b0fc53f369303" - }, - "pb-IF42U04kLg==": { - "display_string": [ - "\ue020Suryakd04" - ], - "profiles": [], - "name": "\ue020Suryakd04", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 20:46:28", - "registerOn": 1670181846.622074, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181846.6220746, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181846.6220837, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670184617.3156433, - "lastIP": "a}j~~ohaadaka", - "deviceUUID": "e0d7bb0df9e322216bfa620f8c6f28626b9bfc09" - }, - "pb-IF4hU0sNIQ==": { - "display_string": [ - "\ue030Android63860546" - ], - "profiles": [], - "name": "\ue030Android63860546", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-13 20:50:03", - "registerOn": 1670181849.7272325, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670181849.7272332, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670181849.7272422, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670181849.7272434, - "lastIP": "b\u007fi~~miaja|vg}", - "deviceUUID": "dc92e885e04e12ec73b5e4b45dbd14a42a3b3c1d" - }, - "pb-IF4XU0gNJg==": { - "display_string": [ - "\ue063NoName14481" - ], - "profiles": [], - "name": "\ue063NoName14481", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 18:43:55", - "registerOn": 1670182030.6101754, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182030.6101763, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331216.3470125, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670330946.9153974, - "lastIP": "a}j~~naambaii", - "deviceUUID": "cd8311900ff88886ba021feae3e7228a1d72d0ce", - "cMsgCount": 0, - "lastMsgTime": 1670331681.9099255, - "lastMsg": "bs.dk", - "cSameMsg": 0 - }, - "pb-IF43U3opMw==": { - "display_string": [ - "\ue020ChintuKarthik1123" - ], - "profiles": [], - "name": "\ue020ChintuKarthik1123", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-06 15:45:10", - "registerOn": 1670182094.5465784, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182094.546579, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670355726.8570192, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670355726.8570204, - "lastIP": "b}k~~`fai`|va}h", - "deviceUUID": "a621451965b8d02c893d6750a7a5467812aa9c46" - }, - "pb-IF4tVUQjFA==": { - "display_string": [ - "\ue063TopicalFur" - ], - "profiles": [], - "name": "\ue063TopicalFur", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-07 15:29:51", - "registerOn": 1670182322.3295085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182322.329509, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670182322.3295176, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670182322.3295186, - "lastIP": "awh~~adaigajg", - "deviceUUID": "a445e50b1797a0020a3edac6a51b6c99704477d3" - }, - "pb-IF4-U08hVg==": { - "display_string": [ - "\ue063Compatibl8" - ], - "profiles": [], - "name": "\ue020CompatibleUsage45", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 07:31:08", - "registerOn": 1670182467.805151, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182467.8051517, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670378723.8770041, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670378723.8770053, - "lastIP": "axo~}jbancajb~", - "deviceUUID": "41eb017a64f680ef1a3e0ae4bff8224040c11a1f" - }, - "pb-IF4uU0sRXA==": { - "display_string": [ - "\ue020MilderUprising53" - ], - "profiles": [], - "name": "\ue020MilderUprising53", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 11:54:26", - "registerOn": 1670182513.9974043, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182513.9974053, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670356777.6254933, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670356777.625495, - "lastIP": "dvvczvavi~~hi", - "deviceUUID": "59bce742c0a1fa913915aaff7a6064746cc1cd1a" - }, - "pb-IF5RU2IPJg==": { - "display_string": [ - "\ue063harishsola" - ], - "profiles": [], - "name": "\ue063harishsola", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-29 17:47:58", - "registerOn": 1670182764.0775707, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182764.0775712, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230959.783054, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670232238.1917896, - "lastIP": "azo~|`~}h`aiaz", - "deviceUUID": "7d56650f437299a6bd8960e064ea3d457eda038e", - "cMsgCount": 0, - "lastMsgTime": 1670185453.0047183, - "lastMsg": "i have 1000 mother box", - "cSameMsg": 0 - }, - "pb-IF4wU0EoDA==": { - "display_string": [ - "\ue030Android63224716" - ], - "profiles": [], - "name": "\ue030Android63224716", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-10 01:45:35", - "registerOn": 1670182879.3172565, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670182879.3172572, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670182879.3172646, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670189686.4128318, - "lastIP": "axo~}l`amdami", - "deviceUUID": "6b36bdd08c7147b461afdc0e93f296ce71035e1d" - }, - "pb-IF4jU0EgDQ==": { - "display_string": [ - "\ue020ClearerArmy31", - "\ue030Android63230750" - ], - "profiles": [], - "name": "\ue020ClearerArmy31", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-10 10:51:46", - "registerOn": 1670183060.987385, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670183060.9873855, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670183060.9873936, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670184099.3532708, - "lastIP": "dvvc{va|i~}jg", - "deviceUUID": "c488f4c3e758a5bcd6b558cabf8d82d8d19f29df" - }, - "pb-IF4DV2ItCQ==": { - "display_string": [ - "\ue020CrushedWolf82537", - "\ue030Android38093614" - ], - "profiles": [], - "name": "\ue020CrushedWolf82537", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-14 22:32:59", - "registerOn": 1670183077.0730386, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670183077.0730393, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253271.9784403, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253271.9784415, - "lastIP": "a\u007fk~~`baifyvf~", - "deviceUUID": "9d4840f4952018dea68626b815f7f861b7219341", - "cMsgCount": 1, - "lastMsgTime": 1670184179.93401, - "lastMsg": "mass", - "cSameMsg": 0 - }, - "pb-IF4rVUcbVQ==": { - "display_string": [ - "\ue063Fancydinne" - ], - "profiles": [], - "name": "\ue063Fancydinne", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-28 21:37:03", - "registerOn": 1670183407.1803548, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670183407.1803555, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670183407.1803656, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670183407.180367, - "lastIP": "a{n~~afaldalh", - "deviceUUID": "09b4f28c01b8e01233298b6f49c580db0b60dc09", - "cMsgCount": 0, - "lastMsgTime": 1670184234.3789642, - "lastMsg": "shtt bro", - "cSameMsg": 0 - }, - "pb-IF40U0ZaPw==": { - "display_string": [ - "\ue030Android63614116" - ], - "profiles": [], - "name": "\ue030Android63614116", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 00:22:26", - "registerOn": 1670183825.6317015, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670183825.6317022, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670183852.6655056, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670183825.6317124, - "lastIP": "a\u007fj~~`iaj~z", - "deviceUUID": "a459d791f361a90efde64fd117e0ed79eb7002d5", - "cMsgCount": 0, - "lastMsgTime": 1670183852.6654449, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4DU0g6EQ==": { - "display_string": [ - "\ue020GreenishHoplite57" - ], - "profiles": [], - "name": "\ue020GreenishHoplite57", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 00:41:02", - "registerOn": 1670183931.2869294, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670183931.28693, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215810.964327, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215810.9643285, - "lastIP": "aw`~~kcakaaah", - "deviceUUID": "\u0015R[P\u0007D\u0002UX\u0002BS\u000eWY\u0015\u0005\\YXCY^VULW", - "cMsgCount": 1, - "lastMsgTime": 1670215931.9689183, - "lastMsg": "kick this betrayer ", - "cSameMsg": 0 - }, - "pb-JiNJARBSXEJGWVhIGEJQVFJDGUVXRllL": { - "display_string": [ - "\ue063NoName49837", - "\ue030Android53527602" - ], - "profiles": [], - "name": "\ue063NoName49837", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-01 18:22:17", - "registerOn": 1670184626.6953363, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670184626.695337, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670184626.6953464, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670184626.6953475, - "lastIP": "dvva{va|k~~lc", - "deviceUUID": "90eff49e1851306e47d52c94e244089837e81963" - }, - "pb-IF49VFcGNw==": { - "display_string": [ - "\ue030Android62958044" - ], - "profiles": [], - "name": "\ue030Android62958044", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 16:24:08", - "registerOn": 1670184672.81187, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670184672.811871, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670184672.811898, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670184672.8118994, - "lastIP": "h|vb}i~yn~}hb", - "deviceUUID": "185782ffcdef05a28bf4977f55b7fe3102383293" - }, - "pb-IF5dU20MFg==": { - "display_string": [ - "\ue020redrubydiamond94", - "\ue030Android62423539", - "\ue030Android62423712" - ], - "profiles": [], - "name": "\ue020redrubydiamond94", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-09 21:22:56", - "registerOn": 1670185009.0298007, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670185009.0298014, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670185009.0298119, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670185498.361606, - "lastIP": "b}k~~`gaib~vb|n", - "deviceUUID": "bcd9ad437e7af846befaebafc83e3be6274a96a3" - }, - "pb-IF4IIUU6": { - "display_string": [ - "\ue020davidson6466", - "\ue030Android19307812" - ], - "profiles": [], - "name": "\ue020davidson6466", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-01 20:11:42", - "registerOn": 1670185229.7549117, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670185229.7549121, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670185824.7601225, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670185544.5390012, - "lastIP": "azo~|`~}viw", - "deviceUUID": "270ea10f9661b5a8496af158ae2bed43c2864133", - "cMsgCount": 0, - "lastMsgTime": 1670185824.759949, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4jVVgTXA==": { - "display_string": [ - "\ue063KingsKing2" - ], - "profiles": [], - "name": "\ue063KingsKing2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-21 22:43:03", - "registerOn": 1670185492.9849513, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670185492.9849517, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670185492.9849613, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670185492.9849622, - "lastIP": "a\u007fn~~acakganf", - "deviceUUID": "8e0ce439269486aeb728ec14658e563d3137e54a" - }, - "pb-IF4RU08gKg==": { - "display_string": [ - "\ue030Android63948779" - ], - "profiles": [], - "name": "\ue030Android63948779", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 23:20:58", - "registerOn": 1670185521.0481658, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670185521.048167, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338365.9936512, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670356505.6594527, - "lastIP": "b\u007fh~~heaja}vaza", - "deviceUUID": "cb7e00f8b3e41e9998855dd3ce7a04642007cd71" - }, - "pb-IF42U05cDw==": { - "display_string": [ - "\ue063Measurabl7" - ], - "profiles": [], - "name": "\ue063Measurabl7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 02:49:26", - "registerOn": 1670185543.1754837, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670185543.1754842, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670185543.1754913, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670185543.175492, - "lastIP": "awo~~`iaig}vaxj", - "deviceUUID": "9bb765c21af3cb1d28fc4ff77961800866aa4e45" - }, - "pb-IF4TUxEoKg==": { - "display_string": [ - "\ue020TUJABAAP005", - "\ue030Android60088344" - ], - "profiles": [], - "name": "\ue020TUJABAAP005", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-29 14:15:10", - "registerOn": 1670186322.760002, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670186322.7600024, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670217665.9859152, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670217665.9859161, - "lastIP": "a\u007fn~~aeaibaifx", - "deviceUUID": "532d59db41fbfa8e777af032be92c3ee9c99fa55", - "cMsgCount": 0, - "lastMsgTime": 1670218286.3535814, - "lastMsg": "devil lavdya ", - "cSameMsg": 0 - }, - "pb-IF4FUksNDg==": { - "display_string": [ - "\ue020capnStranger" - ], - "profiles": [], - "name": "\ue020capnStranger", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-27 09:11:22", - "registerOn": 1670186510.547155, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670186510.5471554, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670186510.5471644, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670186510.5471652, - "lastIP": "a~o~}igaii|vcv", - "deviceUUID": "c8cf8234e381979f72d54a80b25a3d5ecf02a877", - "cMsgCount": 0, - "lastMsgTime": 1670188635.8347824, - "lastMsg": "sure", - "cSameMsg": 0 - }, - "pb-IF4JU3IpKw==": { - "display_string": [ - "\ue030Android62438169" - ], - "profiles": [], - "name": "\ue030Android62438169", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-04 02:54:02", - "registerOn": 1670187022.1597023, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187022.159703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187022.1597118, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187022.1597128, - "lastIP": "eaieyvhvva{l", - "deviceUUID": "afb7f8b98d738c2e87a10cd2146d56e17f0427e6" - }, - "pb-JiNJVxFcUUVJW15EGE9XVldGF0ZdTlNF": { - "display_string": [ - "\ue063swaprocks4", - "\ue030Android750766" - ], - "profiles": [], - "name": "\ue063swaprocks4", - "isBan": false, - "isMuted": false, - "accountAge": "2016-07-24 04:00:48", - "registerOn": 1670187024.0225737, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187024.0225747, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187024.0225837, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187024.022585, - "lastIP": "ayh~}khaoiaj`}", - "deviceUUID": "2ebc6a23fa9ba1ddf1d4b9257c4ee5c211e75d06" - }, - "pb-IF4PU0s9PQ==": { - "display_string": [ - "\ue030Android63813378" - ], - "profiles": [], - "name": "\ue030Android63813378", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 00:22:01", - "registerOn": 1670187157.5254676, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187157.525468, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187157.5254757, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187157.525477, - "lastIP": "a\u007fn~}hfajavva\u007fj", - "deviceUUID": "46e0bda220b4c7dd11de21758e31db178124eecb" - }, - "pb-IF4UUkJZKw==": { - "display_string": [ - "\ue020LoudArithmetic11" - ], - "profiles": [], - "name": "\ue020LoudArithmetic11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-18 19:35:49", - "registerOn": 1670187378.6117237, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187378.6117244, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187378.6117315, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187378.6117322, - "lastIP": "b\u007fi~}hiaif~vev", - "deviceUUID": "\u0015WZ\u0003WD\u0004\u000eUU@QUQWGSZQSLS\\USF" - }, - "pb-IF4sVVgTAg==": { - "display_string": [ - "\ue063WonderfulH" - ], - "profiles": [], - "name": "\ue063WonderfulH", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-25 23:56:29", - "registerOn": 1670187407.5496073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187407.5496085, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343599.6506577, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343599.6506593, - "lastIP": "a\u007fn~~ahan~{k", - "deviceUUID": "4c83d3e6437e3ea3f5ef3e3a0de6daa489b1c5f2" - }, - "pb-IF5TV1o8XQ==": { - "display_string": [ - "\ue063MadBanjoPl" - ], - "profiles": [], - "name": "\ue063MadBanjoPl", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-28 16:25:52", - "registerOn": 1670187548.9578001, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187548.9578009, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187548.95781, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187548.9578109, - "lastIP": "azo~{m~|n~\u007f", - "deviceUUID": "24461bfe2e9da2133d8266bb0f06e278e9cb1c50" - }, - "pb-IF4CVUkKKg==": { - "display_string": [ - "\ue020pulkitfirani" - ], - "profiles": [], - "name": "\ue020pulkitfirani", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-10 17:29:59", - "registerOn": 1670187747.6106598, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670187747.6106603, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670187747.6106682, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670187747.6106694, - "lastIP": "dvvazn~w`~~ne", - "deviceUUID": "ed63ea232d99af1e6bb2e6c7752087abf325cc5a" - }, - "pb-JiNJARBfVUtBVFhCEERZUlNEGUBbRFRF": { - "display_string": [ - "\ue063Nihilisti2", - "\ue030Android16830059" - ], - "profiles": [], - "name": "\ue063Nihilisti2", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-10 23:27:14", - "registerOn": 1670188006.897376, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188006.8973763, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670359466.4233384, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670359466.4233398, - "lastIP": "b\u007fk~xn~~`haif|", - "deviceUUID": "72824515eeb4d487c6be4b60c9028b22c19606dc" - }, - "pb-IF49Ploi": { - "display_string": [ - "\ue020SniperRookie8431" - ], - "profiles": [], - "name": "\ue020SniperRookie8431", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-17 16:04:45", - "registerOn": 1670188137.0221465, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188137.0221477, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235657.839489, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670235657.8394904, - "lastIP": "azo~|l~y`~za", - "deviceUUID": "985b17a4976c8db1c0182b3638b370cb18d37405" - }, - "pb-IF4gHGlS": { - "display_string": [ - "\ue063Matt0so" - ], - "profiles": [], - "name": "\ue063Matt0so", - "isBan": false, - "isMuted": false, - "accountAge": "2018-06-29 05:11:26", - "registerOn": 1670188184.4751937, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188184.4751945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188184.4752045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670188184.4752054, - "lastIP": "a|i~\u007fvavo~|", - "deviceUUID": "d36bc3d0d68062a0d66062c6eb29ef1affbf1bf3" - }, - "pb-IF4GU1AiDw==": { - "display_string": [ - "\ue063SoochowDri" - ], - "profiles": [], - "name": "\ue063SoochowDri", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 02:34:12", - "registerOn": 1670188249.3898501, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188249.3898506, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188249.3898587, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670188249.38986, - "lastIP": "a\u007fk~}h`aia}ve\u007f", - "deviceUUID": "b20d21827258dab80a8e1a44d527a558290b5809" - }, - "pb-IF4HU3YGBw==": { - "display_string": [ - "\ue020CompanionableRag46" - ], - "profiles": [], - "name": "\ue020CompanionableRag46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 13:54:32", - "registerOn": 1670188271.7963076, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188271.796308, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188271.7963173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670188271.7963185, - "lastIP": "b~j~~hdajbzvava", - "deviceUUID": "cfa218afabdea403196b42b1b90b2fba65d1e7bd", - "cMsgCount": 0, - "lastMsgTime": 1670188708.742672, - "lastMsg": "wth", - "cSameMsg": 0 - }, - "pb-IF4TU0I4Ew==": { - "display_string": [ - "\ue063FastestThi" - ], - "profiles": [], - "name": "\ue063FastestThi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-17 23:08:49", - "registerOn": 1670188289.5418484, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188289.5418491, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188289.5418575, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670189018.0435832, - "lastIP": "d~vb|a~}iiaia~", - "deviceUUID": "a68bae10c5c6d289187d26259bca9143dd1be04d" - }, - "pb-IF4-UEgO": { - "display_string": [ - "\ue063kishordevl" - ], - "profiles": [], - "name": "\ue063kishordevl", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-11 00:17:43", - "registerOn": 1670188595.035446, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188595.0354466, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188595.0354564, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670189452.6745129, - "lastIP": "b\u007fj~~oiaaeaii", - "deviceUUID": "2ab154d67bbfe10e29b08d9de1c503929ff8f042", - "cMsgCount": 0, - "lastMsgTime": 1670189428.5453143, - "lastMsg": "\ud83d\ude0e", - "cSameMsg": 0 - }, - "pb-IF4VUhMcPw==": { - "display_string": [ - "\ue020PickyStatement25", - "\ue030Android50630763" - ], - "profiles": [], - "name": "\ue020PickyStatement25", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-21 17:31:34", - "registerOn": 1670188638.933082, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670188638.9330826, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670188638.9330914, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670188638.933092, - "lastIP": "dvvcyvb|j~~ja", - "deviceUUID": "4806913813935e604d81ab3b7db5830b0be20868" - }, - "pb-IF4qU0gfFA==": { - "display_string": [ - "\ue030Android63726577" - ], - "profiles": [], - "name": "\ue030Android63726577", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 18:23:36", - "registerOn": 1670189036.7102885, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670189036.7102892, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670189036.7102988, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670192009.690021, - "lastIP": "i|va~`~~oca`f", - "deviceUUID": "\u0015T_SQBWZT" - }, - "pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF": { - "display_string": [ - "\ue063iTzAnuragP" - ], - "profiles": [], - "name": "\ue020iTzAnuragP", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-26 12:06:14", - "registerOn": 1670189967.7119339, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670189967.7119348, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670347681.2469018, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670356426.2502937, - "lastIP": "b}k~}kean`aic|", - "deviceUUID": "6b4184293fa6e868fb9f4ae11285c7ae8d24e639", - "cMsgCount": 0, - "lastMsgTime": 1670356638.9502404, - "lastMsg": "xd", - "cSameMsg": 0 - }, - "pb-IF4wU0UjMg==": { - "display_string": [ - "\ue020\uc5b8\uc9c11984" - ], - "profiles": [], - "name": "\ue020\uc5b8\uc9c11984", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 11:46:52", - "registerOn": 1670189980.7305636, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670189980.7305644, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670189980.7306015, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670189980.7306027, - "lastIP": "axi~vo~~l`alf", - "deviceUUID": "3b9c946fcd7254c80cf75186a43b03d09ba552b0" - }, - "pb-IF4tU00IIg==": { - "display_string": [ - "\ue030Android63886122" - ], - "profiles": [], - "name": "\ue030Android63886122", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 12:26:47", - "registerOn": 1670190340.3067062, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670190340.3067071, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670190340.3067188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670190340.30672, - "lastIP": "a\u007fk~{l~{a~}ld", - "deviceUUID": "e1aa54c5a06e1d9472a223b7955a72abcb2d613b" - }, - "pb-IF4oUmspEQ==": { - "display_string": [ - "\ue063PILEQUIFBI", - "\ue030Android55814559" - ], - "profiles": [], - "name": "\ue063PILEQUIFBI", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-05 00:04:03", - "registerOn": 1670190409.5864458, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670190409.5864463, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670190409.5864553, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670190409.586456, - "lastIP": "a|m~~jeajc}va}h", - "deviceUUID": "d19931a554146e77a343fa11baae89566d8fd14c" - }, - "pb-IF4PU0UlAw==": { - "display_string": [ - "\ue063MunicipalJ" - ], - "profiles": [], - "name": "\ue063MunicipalJ", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-03 00:12:52", - "registerOn": 1670190830.7465851, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670190830.7465858, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670378966.6756232, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670379393.61815, - "lastIP": "a\u007fn~~aeah~va", - "deviceUUID": "86da5fd261f3e1090a9f1ab41ca24b9e21ad6dae", - "cMsgCount": 0, - "lastMsgTime": 1670354173.4405031, - "lastMsg": "ghe vadun mang", - "cSameMsg": 0 - }, - "pb-IF4mU0cfXA==": { - "display_string": [ - "\ue020StingyOccurrence56" - ], - "profiles": [], - "name": "\ue020StingyOccurrence56", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 13:06:23", - "registerOn": 1670191106.0276513, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191106.0276518, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670191106.0276601, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670191106.027661, - "lastIP": "a\u007fk~}hcaje{vbv", - "deviceUUID": "cdab009cd97031e609408b16b5b61921dc4a97c6" - }, - "pb-IF4rUk0bPQ==": { - "display_string": [ - "\ue020VascularDeficiency37" - ], - "profiles": [], - "name": "\ue020VascularDeficiency37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-06 07:24:25", - "registerOn": 1670191208.4187162, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191208.418717, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319169.1032193, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670327716.2861583, - "lastIP": "a}j~zj~yj~~kd", - "deviceUUID": "\u0015WTY\u0003M\u0002ZV\u0005A\u0002YW\u0004\u0015\u0003ZXTES[SSL", - "cMsgCount": 0, - "lastMsgTime": 1670327815.455282, - "lastMsg": "ice ballson", - "cSameMsg": 0 - }, - "pb-IF4mVxRZXA==": { - "display_string": [ - "\ue020PSSG24" - ], - "profiles": [], - "name": "\ue020PSSG24", - "isBan": false, - "isMuted": false, - "accountAge": "2018-08-01 14:15:49", - "registerOn": 1670191223.4327536, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191223.4327545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670191223.4327629, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670191223.4327638, - "lastIP": "a}j~~nhajc{vayj", - "deviceUUID": "a11cd4ddee9b4178f3885f3f7f410158a6f72b52" - }, - "pb-IF5SVxkfLw==": { - "display_string": [ - "\ue063SapphireM2" - ], - "profiles": [], - "name": "\ue063SapphireM2", - "isBan": false, - "isMuted": false, - "accountAge": "2018-08-22 15:56:29", - "registerOn": 1670191296.8638763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191296.8638768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670191296.8639014, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670191296.8639026, - "lastIP": "a\u007fk~~kaaa`alb", - "deviceUUID": "b846fa346be995cf50d27bc05f5b7b645b6c5784", - "cMsgCount": 0, - "lastMsgTime": 1670191770.4773633, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4iVEo4Lg==": { - "display_string": [ - "\ue063OddFeeling", - "\ue030Android38370482" - ], - "profiles": [], - "name": "\ue063OddFeeling", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-24 13:52:31", - "registerOn": 1670191480.0653112, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191480.065312, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670293432.526496, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670298940.909374, - "lastIP": "d|vbzj~|k~}jg", - "deviceUUID": "23f6bd6f26786ccd5239bf1651dbbd30b242098e" - }, - "pb-IF49VW5cKQ==": { - "display_string": [ - "\ue020UnusualJavelina35259" - ], - "profiles": [], - "name": "\ue020UnusualJavelina35259", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-12 16:00:22", - "registerOn": 1670191817.5878084, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191817.5878088, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670191817.5878155, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670191817.5878162, - "lastIP": "b}k~~oha`can", - "deviceUUID": "a8a19876857411672d8b030000bad9abd34adf90" - }, - "pb-IF4nVXktLw==": { - "display_string": [ - "\ue063Locomoti12", - "\ue030Android63599101", - "\ue030Android40913582" - ], - "profiles": [], - "name": "\ue020LocomotiveVigilance7", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-28 12:02:54", - "registerOn": 1670191857.4362824, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191857.4362829, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670363181.5911884, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670363181.59119, - "lastIP": "awi~yo~~hdang", - "deviceUUID": "6a5bf19f8c5e8b3a99d003feb48420a504fe6ce5" - }, - "pb-IF48U0gcBw==": { - "display_string": [ - "\ue063WeakerDist" - ], - "profiles": [], - "name": "\ue063WeakerDist", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-23 01:39:20", - "registerOn": 1670191940.7448688, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670191940.7448695, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670272668.177606, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670272668.177608, - "lastIP": "eai`}v`aja|", - "deviceUUID": "18e7fcefd9f285966c5fee0bdd3213eb833abac2" - }, - "pb-IF48U00qNA==": { - "display_string": [ - "\ue063OverallCon", - "\ue030Android63944420" - ], - "profiles": [], - "name": "\ue063OverallCon", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 13:09:12", - "registerOn": 1670192134.568987, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670192134.5689874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670192134.5689964, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670192134.5689971, - "lastIP": "b\u007fo~~mdajd|vbw", - "deviceUUID": "81911cd56a54fa89f1d87ef93d27ca05db1535ae" - }, - "pb-IF4rU3omIw==": { - "display_string": [ - "\ue020JKS4302" - ], - "profiles": [], - "name": "\ue020JKS4302", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-06 10:23:53", - "registerOn": 1670192243.1353755, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670192243.1353765, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670192243.1353834, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670192243.1353846, - "lastIP": "azo~{l~~ogaje|", - "deviceUUID": "68b3aa1273cdd46e83ddbe562fe1db2ed3f25ced" - }, - "pb-IF4nUmsiNg==": { - "display_string": [ - "\ue020PurposefulOffence22", - "\ue030Android55843945" - ], - "profiles": [], - "name": "\ue020PurposefulOffence22", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-05 08:10:09", - "registerOn": 1670192677.3555582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670192677.3555586, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670192677.3555667, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670192677.3555677, - "lastIP": "cwvd|va|h~~ob", - "deviceUUID": "d0e052b32c49fd99e15d7ce93c0370e65b612111" - }, - "pb-IF4jU08dIQ==": { - "display_string": [ - "\ue063Roofy156" - ], - "profiles": [], - "name": "\ue063Roofy156", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 09:17:25", - "registerOn": 1670192911.5168316, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670192911.5168324, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670192911.5168402, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670194337.2890995, - "lastIP": "b\u007fk~~ogai`|vbzl", - "deviceUUID": "50a9b4fbd1bb8edec3d786b099c08c2f7cca5feb" - }, - "pb-IF4sUhAOXA==": { - "display_string": [ - "\ue063NiuNiu0808" - ], - "profiles": [], - "name": "\ue063NiuNiu0808", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-07 22:52:08", - "registerOn": 1670193548.959455, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670193548.9594555, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670193548.959463, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670193548.9594636, - "lastIP": "ewvawj~y`~za", - "deviceUUID": "42c2f80d156691fcb95ba5ce24d4397b341de0cf", - "cMsgCount": 1, - "lastMsgTime": 1670194264.464536, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4yVGIYPQ==": { - "display_string": [ - "\ue063CozyProkil" - ], - "profiles": [], - "name": "\ue063CozyProkil", - "isBan": false, - "isMuted": false, - "accountAge": "2019-08-23 15:28:56", - "registerOn": 1670193813.8826878, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670193813.8826885, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670193813.8826978, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670193813.8826985, - "lastIP": "axm~~ofajiaia~", - "deviceUUID": "bd7d1e9a75fa95bd84cf4d37d5418398072e34db", - "cMsgCount": 0, - "lastMsgTime": 1670193859.1313167, - "lastMsg": "wow", - "cSameMsg": 0 - }, - "pb-LV4FURgIUhBIWg4VRBQDV1IRQg==": { - "display_string": [ - "\ue063AshuAmbros", - "\ue030PC538677" - ], - "profiles": [], - "name": "\ue063AshuAmbros", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-09 20:09:19", - "registerOn": 1670194485.1817415, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670194485.1817424, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670194485.1817498, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670194485.1817508, - "lastIP": "a\u007fn~}hcajbzvgw", - "deviceUUID": "d6a5794887314f25a6e325b77be3bc716659fa79" - }, - "pb-IF4BU04oMw==": { - "display_string": [ - "\ue020gaviota36497love" - ], - "profiles": [], - "name": "\ue020gaviota36497love", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 04:55:18", - "registerOn": 1670194644.0175629, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670194644.0175636, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670194644.0175722, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670194644.017573, - "lastIP": "awa~}ifaih\u007fvb}m", - "deviceUUID": "e941c8c60608c1773e4f2949f495b0e086a0da25" - }, - "pb-IF4LUk4-DA==": { - "display_string": [ - "\ue063Blueeesky3" - ], - "profiles": [], - "name": "\ue063Blueeesky3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-11 11:49:23", - "registerOn": 1670197135.9496934, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670197135.9496942, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670197135.9497228, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670197135.9497242, - "lastIP": "a{h~}icaifxva|k", - "deviceUUID": "8230321007aeb9286841900725f3574349e432dc" - }, - "pb-IF4XUhElCA==": { - "display_string": [ - "\ue063josesoulkn", - "\ue030Android50645693" - ], - "profiles": [], - "name": "\ue063josesoulkn", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-07 21:17:09", - "registerOn": 1670197534.3173604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670197534.3173609, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670197534.3173683, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670197534.317369, - "lastIP": "b\u007fh~|o~~heaidv", - "deviceUUID": "0b9fad259d07074debe8009e1a333d651362cb7f" - }, - "pb-IF49VUIhKA==": { - "display_string": [ - "\ue063FellowStro" - ], - "profiles": [], - "name": "\ue063FellowStro", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-24 05:29:38", - "registerOn": 1670197961.5889416, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670197961.588942, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670198429.6769404, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670197961.5889525, - "lastIP": "a~a~vl~~h~}md", - "deviceUUID": "c0b46edabde9560c21d934548cffcf66f938f546", - "cMsgCount": 0, - "lastMsgTime": 1670198429.676879, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4HVHJaLw==": { - "display_string": [ - "\ue020PeekingNomad673", - "\ue030Android43830732" - ], - "profiles": [], - "name": "\ue020PeekingNomad673", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-01 10:20:13", - "registerOn": 1670198370.0109055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670198370.0109062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670198370.0109131, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670198370.010914, - "lastIP": "axo~}jbancajax", - "deviceUUID": "ac338d85b02270561a64b425c6cb943fe20f9624" - }, - "pb-IF4-U3M7Ug==": { - "display_string": [ - "\ue020RighteousRein29" - ], - "profiles": [], - "name": "\ue020RighteousRein29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 20:12:13", - "registerOn": 1670198399.1632311, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670198399.163232, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670198399.163242, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670198399.163243, - "lastIP": "b}k~~`gaia{vawn", - "deviceUUID": "a2c13dfea614e1ab18268dd38d5382f618de4fba" - }, - "pb-IF5RU00kKw==": { - "display_string": [ - "\ue020\u1d04\u029c\u1d1c\u1d1b\u1d1b\u1d00" - ], - "profiles": [], - "name": "\ue020\u1d04\u029c\u1d1c\u1d1b\u1d1b\u1d00", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 11:31:02", - "registerOn": 1670198477.4666266, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670198477.4666271, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298562.5574703, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670309952.300242, - "lastIP": "dzva}i~w`~}ie", - "deviceUUID": "57e1fdd987c0bb93c8334c7c873614967a59b6d1" - }, - "pb-IF5RU1AaLw==": { - "display_string": [ - "\ue063RainyParce" - ], - "profiles": [], - "name": "\ue063RainyParce", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 19:23:33", - "registerOn": 1670198520.9151702, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670198520.9151711, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670374451.8967786, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670375501.2903428, - "lastIP": "b~j~~hdajcyvc\u007f", - "deviceUUID": "02896c13454838be0c0432b4bfe4053bce969627" - }, - "pb-IF5RU21cVw==": { - "display_string": [ - "\ue063TriplePie5" - ], - "profiles": [], - "name": "\ue020TriplePie57", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-05 01:51:33", - "registerOn": 1670200161.1822622, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200161.1822634, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670359516.6048977, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670359613.9484622, - "lastIP": "avm~~a~~jeaad", - "deviceUUID": "103a226cd7a5dd3b20a212f96fe61a10d932c4ea" - }, - "pb-IF4DUhMJFg==": { - "display_string": [ - "\ue0200deathriot0", - "\ue030Android54074532" - ], - "profiles": [], - "name": "\ue0200deathriot0", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-19 08:19:03", - "registerOn": 1670200200.9522152, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200200.9522161, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670200200.9522262, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670200200.952227, - "lastIP": "a\u007fk~yj~~mcai`v", - "deviceUUID": "5735b6409a66c90ff90bfb6ef59d98c4e758f3ca" - }, - "pb-IF5WDVcI": { - "display_string": [ - "\ue020K\u00c5RT\u00d5S", - "\ue030Android18315499" - ], - "profiles": [], - "name": "\ue020K\u00c5RT\u00d5S", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-06 19:33:55", - "registerOn": 1670200306.7026906, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200306.7026913, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670200306.7027001, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670200306.702701, - "lastIP": "b}k~}jhaigwva\u007f`", - "deviceUUID": "72fc56ace4706edb441eaad293e2a88baa0022a4" - }, - "pb-IF4uU2ImAg==": { - "display_string": [ - "\ue030Android61067824" - ], - "profiles": [], - "name": "\ue030Android61067824", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-08 06:54:05", - "registerOn": 1670200367.757479, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200367.7574797, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670200367.75749, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670200367.7574909, - "lastIP": "azo~|j~~hbaih~", - "deviceUUID": "ccc8ae6a59665a05014b9d56352fb2dc2557cf42" - }, - "pb-IF48VFIlDQ==": { - "display_string": [ - "\ue020HotPinkBuccaneer9071" - ], - "profiles": [], - "name": "\ue020HotPinkBuccaneer9071", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-03 16:47:08", - "registerOn": 1670200519.9847865, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200519.984787, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670200519.984796, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670200519.9847972, - "lastIP": "azo~|`~}iga`f", - "deviceUUID": "d9933385fd007adf9daf61e8a6a76089c99ad8ca" - }, - "pb-IF4uU0MJMA==": { - "display_string": [ - "\ue030VR329281" - ], - "profiles": [], - "name": "\ue030VR329281", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 18:55:43", - "registerOn": 1670200602.427418, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670200602.427419, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670200602.4274273, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670201257.5039372, - "lastIP": "f{va~a~}l~~kc", - "deviceUUID": "a456af23317cf7fc25c1dc65f0b352fdb2882409" - }, - "pb-IF4sU20DHw==": { - "display_string": [ - "\ue063IdioticPyr" - ], - "profiles": [], - "name": "\ue063IdioticPyr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-19 20:34:25", - "registerOn": 1670201094.221963, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201094.221964, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201094.2219732, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670201094.2219744, - "lastIP": "awi~~`haigyvaxk", - "deviceUUID": "44578695ed09980f1d5f43478cb40acdbfabbf32" - }, - "pb-IF5QU3ISKA==": { - "display_string": [ - "\ue020NewGamer456ProGamer", - "\ue030Android62039138" - ], - "profiles": [], - "name": "\ue020NewGamer456ProGamer", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-27 04:14:12", - "registerOn": 1670201194.6394901, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201194.6394908, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201625.1812983, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670202964.9359689, - "lastIP": "axo~}k`aih|vi", - "deviceUUID": "658c484bad61cc95241a1430db50761e6efce3fa", - "cMsgCount": 0, - "lastMsgTime": 1670201246.4659836, - "lastMsg": "xd", - "cSameMsg": 0 - }, - "pb-IF5cU1E5Mw==": { - "display_string": [ - "\ue063Moonanez" - ], - "profiles": [], - "name": "\ue063Moonanez", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 19:24:46", - "registerOn": 1670201337.3716342, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201337.3716352, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201337.3716452, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670201337.3716462, - "lastIP": "b\u007fj~~n`akfai`y", - "deviceUUID": "189d5063dde6aa25392acf1b37fea939217c905f" - }, - "pb-IF4LMxRa": { - "display_string": [ - "\ue020Dineshkd624" - ], - "profiles": [], - "name": "\ue020Dineshkd624", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-01 13:18:27", - "registerOn": 1670201523.8008842, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201523.8008847, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670202051.7249374, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670204064.6482582, - "lastIP": "a\u007fn~}iaajavvi}", - "deviceUUID": "aac0266b2225b4473b76c7a202f2e8b5c35cdc29" - }, - "pb-IF4WVHIiAQ==": { - "display_string": [ - "\ue063MVPMaGnuMG", - "\ue030Android30517211" - ], - "profiles": [], - "name": "\ue063MVPMaGnuMG", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-03 13:49:52", - "registerOn": 1670201525.8096514, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201525.8096519, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201525.8096592, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670201525.80966, - "lastIP": "dvvcxvayh~wa", - "deviceUUID": "d98ffb60cc150587b3b9474a18efad9599cbd607" - }, - "pb-IF4iU08nNw==": { - "display_string": [ - "\ue030Android63987828" - ], - "profiles": [], - "name": "\ue030Android63987828", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 06:24:09", - "registerOn": 1670201663.631497, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670201663.6314976, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670201663.6315067, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670201663.6315079, - "lastIP": "axm~~ofaabaig~", - "deviceUUID": "0603d61c95312f75f10be673f4cc1b3d2c2fdae0" - }, - "pb-IF4SU3kCMQ==": { - "display_string": [ - "\ue063SanguinePa" - ], - "profiles": [], - "name": "\ue063SanguinePa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-04 18:02:52", - "registerOn": 1670202122.27969, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670202122.2796907, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670202122.2796996, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670202122.2797005, - "lastIP": "a\u007fk~v`~~k`aid~", - "deviceUUID": "855df29fb09aa4b7b74af033e5868119c649844e" - }, - "pb-IF4oU04eNg==": { - "display_string": [ - "\ue063LethargicM" - ], - "profiles": [], - "name": "\ue063LethargicM", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 11:26:10", - "registerOn": 1670202164.5037704, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670202164.503771, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670202164.50378, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670202164.5037806, - "lastIP": "dvva}n~zo~}ke", - "deviceUUID": "0cbfe82996e3120c6cb59e62c8d9303d077d4e74" - }, - "pb-IF4gUk8RCw==": { - "display_string": [ - "\ue020IGNOBLETRASLATION65" - ], - "profiles": [], - "name": "\ue020IGNOBLETRASLATION65", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-16 01:45:38", - "registerOn": 1670202435.379121, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670202435.3791218, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670202435.3791292, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670202435.37913, - "lastIP": "awa~}iiaoeajc~", - "deviceUUID": "c34924d2ea94c46bad1ad5ae64ab0b7b7b3ab0c9", - "cMsgCount": 1, - "lastMsgTime": 1670202898.073434, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5SUlA8Lw==": { - "display_string": [ - "\ue020pausaltkrym" - ], - "profiles": [], - "name": "\ue020pausaltkrym", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-10 03:55:51", - "registerOn": 1670202497.6851404, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670202497.685141, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670202497.685149, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670202497.68515, - "lastIP": "a|j~~mdao~~od", - "deviceUUID": "71198d60f0a8b21db8eb6ce36cca8ee4553018a1" - }, - "pb-IF4CVWFaUw==": { - "display_string": [ - "\ue020SATHISHmax1206" - ], - "profiles": [], - "name": "\ue020SATHISHmax1206", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-08 13:48:19", - "registerOn": 1670203021.4523964, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203021.452397, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670203021.4524057, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670203021.4524074, - "lastIP": "dvvb\u007fn~~igaje~", - "deviceUUID": "763443dfb1db3637f87a372db533bacf0efd791e" - }, - "pb-IF4BV1U9LA==": { - "display_string": [ - "\ue020praneshbhat14051998" - ], - "profiles": [], - "name": "\ue020praneshbhat14051998", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-13 16:28:02", - "registerOn": 1670203708.8609905, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203708.8609912, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670203708.8610024, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670203708.8610039, - "lastIP": "azo~{m~}m~~jg", - "deviceUUID": "d1c42c757a26b1250c14b6c6de3318bb6da18f52" - }, - "pb-IF4tVVIDCw==": { - "display_string": [ - "\ue063anshudec14" - ], - "profiles": [], - "name": "\ue063anshudec14", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-22 22:57:52", - "registerOn": 1670203795.9650452, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203795.9650457, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670203795.9650557, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670203795.9650564, - "lastIP": "a}m~~n~~iaaj", - "deviceUUID": "91c7dbd6bca3d7280efec88e4154d83b80c67f97" - }, - "pb-IF5SVxkkLQ==": { - "display_string": [ - "\ue020gokulse7en" - ], - "profiles": [], - "name": "\ue020gokulse7en", - "isBan": false, - "isMuted": false, - "accountAge": "2018-08-19 18:00:10", - "registerOn": 1670203919.4198425, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203919.4198434, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670203919.4198532, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670203919.4198542, - "lastIP": "dvvcxvb}i~~he", - "deviceUUID": "2e6457a7d513f195ac4e456baf9c74d33b4b5dc8" - }, - "pb-IF40U0oYBg==": { - "display_string": [ - "\ue063Socrates43" - ], - "profiles": [], - "name": "\ue063Socrates43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 04:59:09", - "registerOn": 1670203946.553916, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203946.5539167, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269389.5119388, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670269389.5119402, - "lastIP": "b\u007fh~wo~}iaajaz", - "deviceUUID": "888ef94e3fc5880d0f37456c7b4527075b0cd968" - }, - "pb-IF4HU0wiCQ==": { - "display_string": [ - "\ue020AgreeableSemblance50" - ], - "profiles": [], - "name": "\ue020AgreeableSemblance50", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 19:45:08", - "registerOn": 1670203971.5977027, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670203971.5977032, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670203971.5977118, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670203971.597713, - "lastIP": "a~o~va~}hiaiiy", - "deviceUUID": "9f4c54ebaabf82a040ecea4e086c012ca9e28586" - }, - "pb-IF4RU0EbUA==": { - "display_string": [ - "\ue030Android63276533" - ], - "profiles": [], - "name": "\ue030Android63276533", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-12 14:20:13", - "registerOn": 1670204401.1261804, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670204401.126181, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670204401.1261885, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670217872.7436073, - "lastIP": "b}k~}m~yk~~lf", - "deviceUUID": "ffdac6082f24e8138cda55d2b295e502c27b0d49", - "cMsgCount": 0, - "lastMsgTime": 1670219146.0837212, - "lastMsg": "whats with people hatin using bombs the games called bombsquad", - "cSameMsg": 0 - }, - "pb-IF4SU09eKw==": { - "display_string": [ - "\ue020SharpIcthyosaur49205" - ], - "profiles": [], - "name": "\ue020SharpIcthyosaur49205", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 18:51:12", - "registerOn": 1670205340.167161, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670205340.167162, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670205340.1671715, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670205340.1671727, - "lastIP": "a~h~zl~~mdaaa", - "deviceUUID": "0832031cc31659343ba666382c167f3884424438" - }, - "pb-IF4MU0wxNQ==": { - "display_string": [ - "\ue063GrandComma" - ], - "profiles": [], - "name": "\ue063GrandComma", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 06:24:05", - "registerOn": 1670205779.5616522, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670205779.561653, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670205779.561664, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670205779.5616653, - "lastIP": "awa~}hcaje}vb|i", - "deviceUUID": "46475493b2c3d49b5d960779a137c614e8287176" - }, - "pb-IF4dU2YgFg==": { - "display_string": [ - "\ue020RancidSpecialty27", - "\ue030Android63823303", - "\ue030Android63823291", - "\ue030Android63823319", - "\ue030Android63823332" - ], - "profiles": [], - "name": "\ue020RancidSpecialty27", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-20 12:53:24", - "registerOn": 1670205825.7090957, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670205825.7090964, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670205825.7091148, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670205825.709116, - "lastIP": "a~m~~ndaja~vb{n", - "deviceUUID": "92d9296de90f9cd3d0798e0a658bdd0a390b0e6b" - }, - "pb-IF49U3YpAA==": { - "display_string": [ - "\ue020HArSH463" - ], - "profiles": [], - "name": "\ue020HArSH463", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-20 18:05:15", - "registerOn": 1670206063.5226865, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206063.522687, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307408.2160504, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307408.2160518, - "lastIP": "azo~|j~~hiaigy", - "deviceUUID": "2d9f05b0d6be639d0bccbafb8b00e9b785662e57" - }, - "pb-IF5XU1EvNw==": { - "display_string": [ - "\ue020LegibleAgility44" - ], - "profiles": [], - "name": "\ue020LegibleAgility44", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 09:35:55", - "registerOn": 1670206081.6254022, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206081.6254027, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206081.6254113, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670206081.625412, - "lastIP": "d}va~i~~k~~oc", - "deviceUUID": "4ef843047449a9812ef4d3bacb281781e12598c5" - }, - "pb-IF4jVUctHQ==": { - "display_string": [ - "\ue020vimal2680" - ], - "profiles": [], - "name": "\ue020vimal2680", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-24 20:58:44", - "registerOn": 1670206311.4067304, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206311.4067314, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670379166.787345, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670379166.7873461, - "lastIP": "dvvc}va{m~}mc", - "deviceUUID": "19affb5b0fde1722f6f593df0cf6aca45d2f3e8a", - "cMsgCount": 0, - "lastMsgTime": 1670266903.656488, - "lastMsg": "ckd pk aaya", - "cSameMsg": 0 - }, - "pb-IF4eU0s9Pw==": { - "display_string": [ - "\ue020FearlessCamel86718" - ], - "profiles": [], - "name": "\ue020FearlessCamel86718", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 14:41:52", - "registerOn": 1670206342.5204551, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206342.5204556, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206342.5204635, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670222658.961414, - "lastIP": "a~a~vl~yo~vo", - "deviceUUID": "3fdc73fe2725eb7b0ecaa7730889ee7add9991c8" - }, - "pb-IF48U0wiKw==": { - "display_string": [ - "\ue020FortuitousManeuver41" - ], - "profiles": [], - "name": "\ue020FortuitousManeuver41", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 21:21:36", - "registerOn": 1670206364.604718, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206364.604719, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206364.6047294, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670206364.6047304, - "lastIP": "a\u007fk~~oiaiiyva\u007fn", - "deviceUUID": "d2d3f81fb2fa06a55fd6e6dff01e8e67fc6f5ff3" - }, - "pb-IF4VVBYtVg==": { - "display_string": [ - "\ue063Unshakabl4", - "\ue030Android33358855" - ], - "profiles": [], - "name": "\ue063Unshakabl4", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-20 14:51:37", - "registerOn": 1670206405.7893627, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206405.7893631, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206405.7893734, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670206405.789374, - "lastIP": "a~j~}ieaneajb", - "deviceUUID": "ba9cecee08162a19cb532ce724f4d8f4750cf3a5" - }, - "pb-IF5VUhQYUw==": { - "display_string": [ - "\ue063henricoBS" - ], - "profiles": [], - "name": "\ue063henricoBS", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-13 18:39:38", - "registerOn": 1670206506.4081454, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206506.408146, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206506.4081552, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670206506.4081564, - "lastIP": "axh~}leaacaif}", - "deviceUUID": "ab2871ebbb6443e8b25f4ecbabce9eca2393d228" - }, - "pb-IF4AU2kSAQ==": { - "display_string": [ - "\ue063ColderInfl", - "\ue030Android61620310" - ], - "profiles": [], - "name": "\ue063ColderInfl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-02 18:29:03", - "registerOn": 1670206523.1916451, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670206523.1916456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670206523.1916537, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670206523.1916544, - "lastIP": "d}va\u007fn~~ohanh", - "deviceUUID": "d1bb93dbe4507729d5833e2618873b0addd14084" - }, - "pb-IF4SU3U-Lw==": { - "display_string": [ - "\ue063PsychicalA" - ], - "profiles": [], - "name": "\ue063PsychicalA", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-16 23:43:31", - "registerOn": 1670207098.1655893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670207098.1655898, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254161.3763914, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254161.3763926, - "lastIP": "azj~zo~}keajb\u007f", - "deviceUUID": "cfc1c4b12129b1a294e58e21cc5a154ab5259ca7" - }, - "pb-IF4tUkIlKg==": { - "display_string": [ - "\ue030Android57611965" - ], - "profiles": [], - "name": "\ue030Android57611965", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-20 09:47:30", - "registerOn": 1670207446.2561529, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670207446.2561533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241881.916218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241881.9162195, - "lastIP": "a~o~}ieaj`yva{a", - "deviceUUID": "6c47affd2dca119a304abe6763f029a8b0cc79f0" - }, - "pb-IF4LU0ZTBw==": { - "display_string": [ - "\ue063NoName11978" - ], - "profiles": [], - "name": "\ue063NoName11978", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 11:06:37", - "registerOn": 1670208211.9260342, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208211.9260347, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670208211.9260426, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670208211.9260435, - "lastIP": "a\u007fn~}ifajdzvaxi", - "deviceUUID": "d68c17ce96e18e9b564af6e66534cd0ea39d9622" - }, - "pb-IF4gV1gCMQ==": { - "display_string": [ - "\ue020EliteWallaby35692" - ], - "profiles": [], - "name": "\ue020EliteWallaby35692", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-30 18:38:49", - "registerOn": 1670208744.8268719, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208744.8268726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336250.569319, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336250.5693204, - "lastIP": "dvvc}vawi~~la", - "deviceUUID": "99be2477367eb7f79e4d5b7bce090b3a5917a0d4", - "cMsgCount": 0, - "lastMsgTime": 1670307879.9956932, - "lastMsg": "insta I'd :atharvapawaskar_000", - "cSameMsg": 0 - }, - "pb-IF4TV3c_UQ==": { - "display_string": [ - "\ue063Brownmunde" - ], - "profiles": [], - "name": "\ue063Brownmunde", - "isBan": false, - "isMuted": false, - "accountAge": "2019-01-07 18:16:40", - "registerOn": 1670208761.8902287, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208761.8902292, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670208761.8902378, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670208761.8902385, - "lastIP": "dvvcyvawm~~je", - "deviceUUID": "0a9c5a8347e1de2df3534e40839cf22de21d93aa" - }, - "pb-IF5cU1E7Ig==": { - "display_string": [ - "\ue030Android63976036" - ], - "profiles": [], - "name": "\ue030Android63976036", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 13:51:27", - "registerOn": 1670208793.0052679, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208793.0052686, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670208793.0052762, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670209816.3350446, - "lastIP": "a~h~}jgajcaje~", - "deviceUUID": "88a490162e758d98ebe4b4921f4103f13d9791bc" - }, - "pb-LV4FAxcNBxBGXVtIQhAEUlxKGA==": { - "display_string": [ - "\ue020DroopyGriffin227", - "\ue030Android13950847", - "\ue030Android52421760" - ], - "profiles": [], - "name": "\ue063DroopyGrif", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-30 21:34:00", - "registerOn": 1670208826.414777, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208826.4147778, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250751.3987823, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670250751.3987832, - "lastIP": "azo~|l~~jbalh", - "deviceUUID": "342b57be5f15a4ad0025572d776cace9b5d0a71c" - }, - "pb-IF4pUxUDDQ==": { - "display_string": [ - "\ue063CulturalJa" - ], - "profiles": [], - "name": "\ue063CulturalJa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-14 19:12:56", - "registerOn": 1670208882.3057125, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208882.3057132, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670381667.5670402, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670381667.567042, - "lastIP": "a|o~vo~wi~~``", - "deviceUUID": "da57110c5f4973bb04c80667c2462b4f0cf77e0b", - "cMsgCount": 0, - "lastMsgTime": 1670252049.1669688, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4JU0gtLA==": { - "display_string": [ - "\ue063TiredBrai2", - "\ue030Android53619054" - ], - "profiles": [], - "name": "\ue063TiredBrai2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 23:19:18", - "registerOn": 1670208999.7007556, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670208999.7007565, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670208999.7007663, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670208999.7007675, - "lastIP": "d}va~i~}haakf", - "deviceUUID": "758100926e8aebd9f50ce724f5fe7d40114f3fc0", - "cMsgCount": 2, - "lastMsgTime": 1670209635.9368687, - "lastMsg": "see", - "cSameMsg": 0 - }, - "pb-IF40VREoKw==": { - "display_string": [ - "\ue030Android45452286" - ], - "profiles": [], - "name": "\ue030Android45452286", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-09 08:48:01", - "registerOn": 1670209175.3151407, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209175.3151412, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670302751.697148, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670302751.6971495, - "lastIP": "awk~~oaajgaih", - "deviceUUID": "\u0015R\b\u0007UMWX\u0004S\u0017VZYP\u0011XTQWLRXWQ" - }, - "pb-IF4tU24-Kw==": { - "display_string": [ - "\ue030Android62079867" - ], - "profiles": [], - "name": "\ue030Android62079867", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 20:27:57", - "registerOn": 1670209198.4533582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209198.4533587, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342489.6994224, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670342489.6994238, - "lastIP": "a\u007fn~}jbai`xva{l", - "deviceUUID": "fd963c6c84761c0d1d23d10116681cb3ed5d180f" - }, - "pb-IF4VVFIREg==": { - "display_string": [ - "\ue063Antibioti8" - ], - "profiles": [], - "name": "\ue063Antibioti8", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-10 01:53:51", - "registerOn": 1670209261.7040546, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209261.7040553, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209261.7040648, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209261.704066, - "lastIP": "azh~~hgaj`{vax`", - "deviceUUID": "8bfab885957a8123fdc4ed54914d9ef4001bec05" - }, - "pb-IF4zU3chAg==": { - "display_string": [ - "\ue020DaringQuotation17" - ], - "profiles": [], - "name": "\ue020DaringQuotation17", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-24 12:22:19", - "registerOn": 1670209277.7931867, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209277.7931871, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209277.7931972, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209277.793198, - "lastIP": "a\u007fn~}iaajbzvbz", - "deviceUUID": "85d3cccbf8da2726ede469442f687183befb110d", - "cMsgCount": 0, - "lastMsgTime": 1670209499.5314763, - "lastMsg": "the vidiya payalae", - "cSameMsg": 0 - }, - "pb-IF5XU00EDA==": { - "display_string": [ - "\ue063ElectiveEa" - ], - "profiles": [], - "name": "\ue063ElectiveEa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-05 18:56:05", - "registerOn": 1670209428.535042, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209428.5350425, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341263.3606474, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670343373.834761, - "lastIP": "a{m~}mea`~~`f", - "deviceUUID": "85ff9eab1e4c24ed89a8146ad4664bb092a95fe2", - "cMsgCount": 0, - "lastMsgTime": 1670341597.4745479, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF42U047LA==": { - "display_string": [ - "\ue063InvidiousP" - ], - "profiles": [], - "name": "\ue063InvidiousP", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 22:23:44", - "registerOn": 1670209439.3423843, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209439.3423848, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209439.342394, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209439.3423955, - "lastIP": "awa~~nbaieaic", - "deviceUUID": "a35d228e9e1cbd9b6bb906ba9e8adef6e15e716c" - }, - "pb-IF5QU1I4Pw==": { - "display_string": [ - "\ue063Relentles6" - ], - "profiles": [], - "name": "\ue063Relentles6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 02:30:24", - "registerOn": 1670209635.0177755, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209635.0177765, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209635.0177858, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209635.017787, - "lastIP": "axm~~ofaogaie|", - "deviceUUID": "59600ef6e10c6e500e00bccd6be2b693ee25096d" - }, - "pb-IF4HU3pSKA==": { - "display_string": [ - "\ue020SonorousManager14542" - ], - "profiles": [], - "name": "\ue020SonorousManager14542", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-05 13:00:51", - "registerOn": 1670209675.1301246, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209675.1301248, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209675.1301343, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209859.479255, - "lastIP": "a\u007fn~}ifajd\u007fva\u007fm", - "deviceUUID": "3e77c84887ea919f37f4da1b812cc33eb1598270" - }, - "pb-IF48U0kZJg==": { - "display_string": [ - "\ue020UnplannedReward53" - ], - "profiles": [], - "name": "\ue020UnplannedReward53", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-27 17:07:04", - "registerOn": 1670209869.871095, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209869.8710957, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209869.8711042, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670209879.5369675, - "lastIP": "bxvf|vb|m~}h", - "deviceUUID": "8ea84b9f7c3bac7bd72e6d4dff8110e2c9c70d7d" - }, - "pb-IF4BU09dUg==": { - "display_string": [ - "\ue030Android63974931" - ], - "profiles": [], - "name": "\ue030Android63974931", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 09:05:12", - "registerOn": 1670209949.081315, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209949.0813155, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209949.0814724, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209949.0814734, - "lastIP": "cyvhzva\u007fo~}id", - "deviceUUID": "c16440ed3e1bd5de591ef9063024c8e6049fea0f" - }, - "pb-IF4NVWMEXA==": { - "display_string": [ - "\ue020mrdhruv09" - ], - "profiles": [], - "name": "\ue020mrdhruv09", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-28 08:56:22", - "registerOn": 1670209959.1384113, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670209959.1384118, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670209959.13842, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670209959.1384213, - "lastIP": "azo~|j~|m~}ma", - "deviceUUID": "42cd7aa48cb95368a6cc4d70be6dbe105b9462dc" - }, - "pb-IF49U2otCQ==": { - "display_string": [ - "\ue020DastardlyVortex59872" - ], - "profiles": [], - "name": "\ue020DastardlyVortex59872", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-04 08:42:51", - "registerOn": 1670210009.6987329, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210009.6987336, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210009.6987443, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210009.6987453, - "lastIP": "a\u007fk~~kcaib\u007fva{n", - "deviceUUID": "1c31ff1fbb254027f022a5cedf67cd212f44782a" - }, - "pb-IF4GU08eVA==": { - "display_string": [ - "\ue030Android63984495" - ], - "profiles": [], - "name": "\ue030Android63984495", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 18:19:56", - "registerOn": 1670210054.763385, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210054.7633858, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210054.7633955, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210054.763397, - "lastIP": "fvvayh~|i~z", - "deviceUUID": "e2951b29503caa89f889aab4cd8cd3cf5bdfafce" - }, - "pb-IF4zVUQEUw==": { - "display_string": [ - "\ue030Android51304540" - ], - "profiles": [], - "name": "\ue030Android51304540", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-09 13:25:38", - "registerOn": 1670210396.5905266, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210396.590527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210396.5905366, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210396.5905378, - "lastIP": "dvva{l~}khak`", - "deviceUUID": "27af06f53aea7a7691254ece64d101e75f7cc146" - }, - "pb-IF5TVU5aMA==": { - "display_string": [ - "\ue020Divaagarhockeyplayer" - ], - "profiles": [], - "name": "\ue020Divaagarhockeyplayer", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-21 13:02:43", - "registerOn": 1670210583.331977, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210583.3319774, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321415.6460853, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670322636.1200976, - "lastIP": "azo~zi~~abaih|", - "deviceUUID": "bdef5a480ebaeb581acbb098bd4b4ab8603abbd2" - }, - "pb-IF4xU0cAHA==": { - "display_string": [ - "\ue020InSaneHarsh1726", - "\ue020Harshkhabde140", - "\ue030Android63927875" - ], - "profiles": [], - "name": "\ue020InSaneHarsh1726", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 13:18:49", - "registerOn": 1670210600.384467, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210600.3844674, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210600.3844767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210600.3844774, - "lastIP": "azj~zo~}`~~jb", - "deviceUUID": "bd4d5ec98ceeed344e312952bd66b119fa7d5efc" - }, - "pb-IF4oUxYTCw==": { - "display_string": [ - "\ue020ShockPark152" - ], - "profiles": [], - "name": "\ue020ShockPark152", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-20 21:06:43", - "registerOn": 1670210682.677213, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210682.6772134, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210682.677223, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210682.6772237, - "lastIP": "azj~zo~}jcaihz", - "deviceUUID": "4fdbc382da114d69e7e8114f5d510222a03ab96f" - }, - "pb-IF5UUnUpMw==": { - "display_string": [ - "\ue020CoincidentalBelt39" - ], - "profiles": [], - "name": "\ue020CoincidentalBelt39", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-13 15:04:52", - "registerOn": 1670210684.6924808, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670210684.6924813, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670210684.6924896, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670210684.6924906, - "lastIP": "axm~~ofamfamd", - "deviceUUID": "af70a108de6bcbc6dc4ed6e4e78aefe6d9494044" - }, - "pb-IF4QU3kvLg==": { - "display_string": [ - "\ue030Android63096875" - ], - "profiles": [], - "name": "\ue030Android63096875", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-03 12:59:24", - "registerOn": 1670212075.5992491, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212075.5992496, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252924.8042846, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252924.8042865, - "lastIP": "a\u007fn~}j`ai`wvb~n", - "deviceUUID": "a8948e96c7c1ef8dc62074cce06b621a85b5841a" - }, - "pb-IF4oU0khUg==": { - "display_string": [ - "\ue063shrirangam" - ], - "profiles": [], - "name": "\ue063shrirangam", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-26 18:11:33", - "registerOn": 1670212331.2883577, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212331.2883582, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296552.381981, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296552.3819823, - "lastIP": "azo~|l~~h~wo", - "deviceUUID": "c39d2e6cdfa3a78969b5d63978521d254a86ad69" - }, - "pb-IF4NU0s9Ig==": { - "display_string": [ - "\ue020MenialValidation36", - "\ue030Android56307058" - ], - "profiles": [], - "name": "\ue020MenialValidation36", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 20:50:34", - "registerOn": 1670212397.6337645, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212397.6337657, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334229.6408854, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334229.6408873, - "lastIP": "azo~zi~~mia`f", - "deviceUUID": "0cb9213a4caa572207426ecaa0e643b027987e0a" - }, - "pb-IF4oU004KQ==": { - "display_string": [ - "\ue030Android63888799" - ], - "profiles": [], - "name": "\ue030Android63888799", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 20:54:09", - "registerOn": 1670212418.6012237, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212418.6012247, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346716.1687467, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346716.1687477, - "lastIP": "a\u007fn~~aea`~}n", - "deviceUUID": "e6195de22eab0e6d41c74d545e28ed2a1fd6b819" - }, - "pb-IF42U08mNA==": { - "display_string": [ - "\ue063ClimaticFi" - ], - "profiles": [], - "name": "\ue063ClimaticFi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 11:40:15", - "registerOn": 1670212455.7493985, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212455.749399, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212455.7494092, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212455.7494104, - "lastIP": "bxvexvawj~za", - "deviceUUID": "44bc6a51eb3ff62e845e0ec6a47c3a4cf3e1b895" - }, - "pb-IF4pU08BVA==": { - "display_string": [ - "\ue030Android63970828" - ], - "profiles": [], - "name": "\ue030Android63970828", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 19:18:21", - "registerOn": 1670212458.8738706, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212458.873871, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212458.8738801, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212458.873881, - "lastIP": "a\u007fn~}h`aogalb", - "deviceUUID": "c535d3beaedf37efae00768e70bede898a9efdcf" - }, - "pb-IF4-U0Y9KQ==": { - "display_string": [ - "\ue020GracefulFoliage30" - ], - "profiles": [], - "name": "\ue020GracefulFoliage30", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 09:06:27", - "registerOn": 1670212757.2102232, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212757.210224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212757.2102337, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212757.210235, - "lastIP": "dvvazvb{j~~ah", - "deviceUUID": "6fc20ac21f4840ce14b86fc0d5c93e6aa13a3bf7" - }, - "pb-IF4oUxAGPQ==": { - "display_string": [ - "\ue020TejGamerNt" - ], - "profiles": [], - "name": "\ue020TejGamerNt", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-26 11:19:47", - "registerOn": 1670212816.1726687, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212816.1726694, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340002.7717102, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340002.7717116, - "lastIP": "azj~zo~}ibaiav", - "deviceUUID": "f57f66f318b3e63fa8b311219b51ba198dcaedf7", - "cMsgCount": 0, - "lastMsgTime": 1670340888.4010434, - "lastMsg": "ok aja", - "cSameMsg": 0 - }, - "pb-JiNJARFdVEVHXVdHGUJYXVRHFkNWQ1dH": { - "display_string": [ - "\ue063JollyRange", - "\ue030Android8684941" - ], - "profiles": [], - "name": "\ue063Pillain", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-02 11:09:52", - "registerOn": 1670212825.1813996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212825.1814003, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212825.1814084, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670212825.1814094, - "lastIP": "awj~}vg|vawn", - "deviceUUID": "a96d13777134b726d457f814510cf3a29b9b3bb7" - }, - "pb-IF5SU0kcBg==": { - "display_string": [ - "\ue063Monopolis2" - ], - "profiles": [], - "name": "\ue063Monopolis2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 21:46:37", - "registerOn": 1670212907.4636776, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212907.4636781, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212907.463688, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212907.4636889, - "lastIP": "azo~{a~~ldand", - "deviceUUID": "ff1aa486377a8b2b3e643385151468a4e9acb4df" - }, - "pb-IF4KV2lYIw==": { - "display_string": [ - "\ue020Jalindarabhang", - "\ue030Android28829019" - ], - "profiles": [], - "name": "\ue020Jalindarabhang", - "isBan": false, - "isMuted": false, - "accountAge": "2018-10-24 23:02:53", - "registerOn": 1670212908.8116398, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670212908.8116403, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670212908.8116498, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670212908.8116505, - "lastIP": "azj~zo~}hhaicw", - "deviceUUID": "eae05177f2f3a0f0b7004842f87902145a2a6eda" - }, - "pb-IF5UVWk7Aw==": { - "display_string": [ - "\ue063ShamInform" - ], - "profiles": [], - "name": "\ue020ShamInformation21", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-20 20:00:48", - "registerOn": 1670213033.9959471, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213033.9959476, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347898.0829804, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670347898.0829813, - "lastIP": "gwvayk~~hiajay", - "deviceUUID": "4ae957168db3fd706d8cedea18be84309f56b2dd", - "cMsgCount": 1, - "lastMsgTime": 1670214256.5457413, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4XU1AvJA==": { - "display_string": [ - "\ue030Android63983529" - ], - "profiles": [], - "name": "\ue030Android63983529", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:07:00", - "registerOn": 1670213157.8638418, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213157.8638425, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670213157.8638513, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670213157.8638523, - "lastIP": "a}i~}a~xo~y`", - "deviceUUID": "abe87a8d2e2ce073d86f1d05bfbf5a91d2a1a6de" - }, - "pb-IF41VRATBA==": { - "display_string": [ - "\ue020GraniteInventor13" - ], - "profiles": [], - "name": "\ue020GraniteInventor13", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-06 13:30:38", - "registerOn": 1670213204.797234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213204.7972348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670213204.7972426, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670213204.7972436, - "lastIP": "a\u007fn~~adaii}vb{h", - "deviceUUID": "eb6add6187cebf529b6a08cf31630925b56adde6" - }, - "pb-JiNJARBbU0dAW1hIEk9YXFFDEkZWQVRC": { - "display_string": [ - "\ue020PureGuacamole85", - "\ue063Dragonking", - "\ue030Android14459814", - "\ue030Android63983713", - "\ue030Android63984396" - ], - "profiles": [], - "name": "\ue020Dragonking464fire", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-22 07:27:03", - "registerOn": 1670213473.6183503, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213473.6183507, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316033.6248162, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316033.6248176, - "lastIP": "a\u007fk~{h~~aiai`|", - "deviceUUID": "45455da6db46db27b366a60a0efde760801c521d" - }, - "pb-IF4CKEcn": { - "display_string": [ - "\ue063Adversar12" - ], - "profiles": [], - "name": "\ue063Adversar12", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-04 22:36:49", - "registerOn": 1670213689.4067252, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213689.406726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670213689.4067347, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670213689.4067357, - "lastIP": "azj~zo~~afalh", - "deviceUUID": "b67c81cf69d4724ef9ed83c70a3f8a8f7a528f9f" - }, - "pb-IF4CU0oeIA==": { - "display_string": [ - "\ue063SpuriousP2" - ], - "profiles": [], - "name": "\ue020SpuriousPresidency5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 14:09:00", - "registerOn": 1670213870.051851, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670213870.0518517, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670382223.1828964, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670382223.1828978, - "lastIP": "dvvc{va|o~vh", - "deviceUUID": "69524e96ea98d52b174545b4c8afe11202f5816c" - }, - "pb-JiNJARFeXUZAVFlEEkVXUlNDGURXT1hH": { - "display_string": [ - "\ue063Amos101010", - "\ue030Android8834561" - ], - "profiles": [], - "name": "\ue063Amos101010", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-02 12:50:54", - "registerOn": 1670214032.6249008, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214032.6249013, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214032.6249106, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670215080.0938957, - "lastIP": "azo~zi~~haaab", - "deviceUUID": "4061b8980c89cf70109a60ed0ea04d2cf74b9c7c" - }, - "pb-IF5RJ2sR": { - "display_string": [ - "\ue063ShootingBu" - ], - "profiles": [], - "name": "\ue063ShootingBu", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-17 18:06:10", - "registerOn": 1670214040.6884418, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214040.6884427, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670378011.1667116, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670378011.166713, - "lastIP": "dxva~vava~xl", - "deviceUUID": "822b790677641f085f68026303906669de3780ba" - }, - "pb-IF4vVXQFAw==": { - "display_string": [ - "\ue020ProdigalClassroom31", - "\ue020yash560", - "\ue020UnexplainedFinish14", - "\ue020TitanicArray29", - "\ue030Android50472681" - ], - "profiles": [], - "name": "\ue020UnexplainedFinish14", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-28 14:20:20", - "registerOn": 1670214190.134805, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214190.1348054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214190.1348152, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670214190.134816, - "lastIP": "a\u007fk~}maajbyva{", - "deviceUUID": "ecf85c47eb151b42cf4d43b18df88187914d5f7a" - }, - "pb-IF4SV08HKw==": { - "display_string": [ - "\ue063BadTermina", - "\ue030Android63925894" - ], - "profiles": [], - "name": "\ue020BadTerminator999", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-10 11:12:54", - "registerOn": 1670214199.2782712, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214199.2782717, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242806.7165518, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242806.716553, - "lastIP": "a\u007fk~~`aajbxvb}h", - "deviceUUID": "b79d6a98d56f028d4b5bdefd09447af7f2097344" - }, - "pb-IF4lUhECIQ==": { - "display_string": [ - "\ue063InteriorDu" - ], - "profiles": [], - "name": "\ue063InteriorDu", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-09 15:43:30", - "registerOn": 1670214453.1470776, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214453.147078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336926.2345066, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336926.2345078, - "lastIP": "azo~|j~w`~wn", - "deviceUUID": "f17b6f3add372ab64cb4e1f0b699e71689fd88c2" - }, - "pb-IF4zU0saEg==": { - "display_string": [ - "\ue030Android63824203" - ], - "profiles": [], - "name": "\ue030Android63824203", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-07 19:17:00", - "registerOn": 1670214522.4060535, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214522.4060545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214522.406063, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670214522.4060638, - "lastIP": "a~h~{l~~jgaiix", - "deviceUUID": "\u0015\u0007\u000fX\u0007CSZT\u0004\u0012\u0003\f\u0003WMR\\QPAYUWPMX" - }, - "pb-IF40UhdaNA==": { - "display_string": [ - "\ue020H\u00caR\u00c7\u00daL\u00c9S", - "\ue030Android54448605" - ], - "profiles": [], - "name": "\ue020H\u00caR\u00c7\u00daL\u00c9S", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-04 22:51:41", - "registerOn": 1670214527.3454735, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214527.3454742, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214527.3454835, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670214527.3454845, - "lastIP": "bxvf|vbzl~w`", - "deviceUUID": "8c9f6d3347b1971938fd8e43d6ff9d9baed039f7", - "cMsgCount": 0, - "lastMsgTime": 1670216663.2467372, - "lastMsg": "\ud83d\udc4b ", - "cSameMsg": 0 - }, - "pb-IF4wU3YdCw==": { - "display_string": [ - "\ue020Ambadykannan7878" - ], - "profiles": [], - "name": "\ue020Ambadykannan7878", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 09:21:47", - "registerOn": 1670214886.7187655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670214886.718766, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670214886.7187748, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670214886.7187757, - "lastIP": "a\u007fn~}h`aoeame", - "deviceUUID": "e35d28f9b8d15f4791b876309dcdd5319fa91fa2" - }, - "pb-IF48U3FaNQ==": { - "display_string": [ - "\ue063DilatoryHo" - ], - "profiles": [], - "name": "\ue063DilatoryHo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-28 22:13:45", - "registerOn": 1670215071.41463, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215071.4146307, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251509.981233, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251509.9812346, - "lastIP": "a\u007fk~~kiajb\u007fvavk", - "deviceUUID": "1260d346be9016a385ed734f949f474094c2e832", - "cMsgCount": 1, - "lastMsgTime": 1670253317.8400893, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF42U3JfFw==": { - "display_string": [ - "\ue030Android62429587" - ], - "profiles": [], - "name": "\ue030Android62429587", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-03 18:15:02", - "registerOn": 1670215135.7055113, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215135.7055128, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670303409.1750185, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670303873.018432, - "lastIP": "bxvf|ve{vawm", - "deviceUUID": "3627ce60ee96824682854c250b3492005a28966f" - }, - "pb-IF40U0sKFA==": { - "display_string": [ - "\ue020farhathu123" - ], - "profiles": [], - "name": "\ue020farhathu123", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-07 13:27:30", - "registerOn": 1670215140.701797, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215140.7017977, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215140.7018065, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670215152.3837502, - "lastIP": "azo~zi~~mhajcv", - "deviceUUID": "0f64cfc599af73a5113c3d044593c9da1d6b2e86" - }, - "pb-IF4jU00eMA==": { - "display_string": [ - "\ue020BanefulConstancy1924" - ], - "profiles": [], - "name": "\ue020BanefulConstancy1924", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 20:52:47", - "registerOn": 1670215294.28334, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215294.2833405, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215294.2833488, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215294.2833498, - "lastIP": "azo~|j~|j~zn", - "deviceUUID": "aebcf939dec62cf28d6b26dd1a9f02f62e58a024" - }, - "pb-IF4TU3MKBA==": { - "display_string": [ - "\ue020HangryRanger89899" - ], - "profiles": [], - "name": "\ue020HangryRanger89899", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-09 12:55:25", - "registerOn": 1670215488.236909, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215488.2369094, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215488.2369177, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215488.2369187, - "lastIP": "a\u007fn~}hfajeald", - "deviceUUID": "2f5052e91046c15abf6a40c7d3b2c814136921e2" - }, - "pb-IF4wU04bAQ==": { - "display_string": [ - "\ue030Android63927749" - ], - "profiles": [], - "name": "\ue030Android63927749", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 16:47:23", - "registerOn": 1670215548.1855423, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215548.185543, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215548.1855533, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670215576.921767, - "lastIP": "azo~|j~}k~~ab", - "deviceUUID": "c2cdd0947b4c3571b2a973d2f360a874d0eca8c1" - }, - "pb-IF4zU04-EQ==": { - "display_string": [ - "\ue030Android63928196" - ], - "profiles": [], - "name": "\ue030Android63928196", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 18:18:44", - "registerOn": 1670215727.869937, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215727.8699374, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215727.8699455, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670216552.6286526, - "lastIP": "azo~|`~~jiamb", - "deviceUUID": "669d431df432690b31940b6f54377ac8aeb6c7c3" - }, - "pb-IF4gU3gnUQ==": { - "display_string": [ - "\ue030Android63017111" - ], - "profiles": [], - "name": "\ue030Android63017111", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-30 10:49:17", - "registerOn": 1670215771.1212344, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215771.121235, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670289069.9263475, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670292344.8639429, - "lastIP": "a|n~~mhai`}vava", - "deviceUUID": "6da86c46af8fa0351a1725d905c795608a624764" - }, - "pb-IF40U0UcFQ==": { - "display_string": [ - "\ue063TricksterH" - ], - "profiles": [], - "name": "\ue063TricksterH", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-07 15:22:38", - "registerOn": 1670215781.1936417, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215781.1936424, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215781.1936517, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215781.1936526, - "lastIP": "bxvc{vbxvazj", - "deviceUUID": "4a0acfbe3d6b0250bed99de0cca9bf8dc9e6bc37" - }, - "pb-IF5cV1YHLg==": { - "display_string": [ - "\ue020RagingAttacker80435" - ], - "profiles": [], - "name": "\ue020RagingAttacker80435", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-06 19:12:39", - "registerOn": 1670215793.4892743, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670215793.489275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670215793.4892848, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670215793.489286, - "lastIP": "a\u007fn~}iaaje|vcz", - "deviceUUID": "77c94c385bdad2a0654295dfc2c226a6089a40a8" - }, - "pb-IF4jIEEY": { - "display_string": [ - "\ue063DarthKille" - ], - "profiles": [], - "name": "\ue063DarthKille", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-25 09:27:28", - "registerOn": 1670216046.2984664, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216046.2984672, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670338738.7539759, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337566.2152123, - "lastIP": "a\u007fn~}ibaia|va~k", - "deviceUUID": "2e3c86c3670eada80ef74c6bc6ec67f37aaec7ec", - "cMsgCount": 0, - "lastMsgTime": 1670339658.2294598, - "lastMsg": "a smxy gurl", - "cSameMsg": 0 - }, - "pb-IF5RUkRcXA==": { - "display_string": [ - "\ue020WalkingBarbarism33" - ], - "profiles": [], - "name": "\ue020WalkingBarbarism33", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-18 19:14:26", - "registerOn": 1670216200.806518, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216200.8065186, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216200.8065283, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670217113.5501418, - "lastIP": "azo~|k~~vawm", - "deviceUUID": "683caee4a4034a0bbfe8ccde3843a53d0d77af1e" - }, - "pb-IF4PU0cTLg==": { - "display_string": [ - "\ue030PC608120" - ], - "profiles": [], - "name": "\ue030PC608120", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-18 16:26:32", - "registerOn": 1670216206.7327578, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216206.7327583, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216206.732768, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670216206.7327688, - "lastIP": "awj~{`~xi~~ah", - "deviceUUID": "ebbb99d6f2c353d4c941e73bcd0ee562759a88e4" - }, - "pb-IF4SU3o5UQ==": { - "display_string": [ - "\ue063WARRIR" - ], - "profiles": [], - "name": "\ue063WARRIR", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-08 08:40:52", - "registerOn": 1670216518.2418184, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216518.2418191, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216518.2418287, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670222844.7630777, - "lastIP": "b}k~}jiaiiyva~l", - "deviceUUID": "07760583a6c6cb479e4b59c394c47128cb5b601f" - }, - "pb-IF4hV1ZTFA==": { - "display_string": [ - "\ue063Pratheeswa" - ], - "profiles": [], - "name": "\ue063Pratheeswa", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-18 13:18:20", - "registerOn": 1670216574.0087125, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216574.008713, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216574.0087218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670216574.0087233, - "lastIP": "d}va\u007fl~~jiaicz", - "deviceUUID": "6ba3d2e7c426bfa1ee0772280b87679d0c99e92c" - }, - "pb-IF4hBFgH": { - "display_string": [ - "\ue063MrDevil", - "\ue020\u14f0\u15e9\u163b\u1572\u163f\u143a\u14f0\u14aa", - "\ue030Android39851562" - ], - "profiles": [], - "name": "\ue063MrDevil", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-07 14:37:30", - "registerOn": 1670216718.509512, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216718.5095127, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328240.1389492, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670329741.3370593, - "lastIP": "a\u007fk~}m~~niaihy", - "deviceUUID": "c220dfadf48fdacac465ff3a89116f178e3db908", - "cMsgCount": 0, - "lastMsgTime": 1670329917.074225, - "lastMsg": "tum kya mast kaam karte ho maksud bhai ", - "cSameMsg": 0 - }, - "pb-IF4cU04mPw==": { - "display_string": [ - "\ue020EmbryonicHarmony14" - ], - "profiles": [], - "name": "\ue020EmbryonicHarmony14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 21:17:48", - "registerOn": 1670216869.3935142, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670216869.393515, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670216869.393525, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670216869.3935258, - "lastIP": "awj~ya~~ohaih}", - "deviceUUID": "2ddf7c418977dab3f7df609dc52e014136bfec2a" - }, - "pb-IF4GU0UGCA==": { - "display_string": [ - "\ue063Siddharaj1" - ], - "profiles": [], - "name": "\ue063Siddharaj1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 17:02:41", - "registerOn": 1670217017.7999706, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670217017.7999713, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227724.9944215, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670227724.9944232, - "lastIP": "azo~|j~xk~}lh", - "deviceUUID": "99173424adfabc9d37a511c4d81759f7f1deee57" - }, - "pb-IF5SUxMGAg==": { - "display_string": [ - "\ue063PointyLeo1" - ], - "profiles": [], - "name": "\ue063PointyLeo1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-01 15:10:51", - "registerOn": 1670217318.5163224, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670217318.516323, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670217318.5163324, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670217318.5163333, - "lastIP": "c~vb\u007fh~}khaad", - "deviceUUID": "8c8741c02f1a375d4b3741c978dfd25c4c5a8ae4" - }, - "pb-IF5SUxQJJw==": { - "display_string": [ - "\ue020BruceBat1997" - ], - "profiles": [], - "name": "\ue020BruceBat1997", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-04 07:48:46", - "registerOn": 1670217410.0380058, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670217410.038006, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670217410.0380168, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670217410.0380177, - "lastIP": "azo~zi~~odane", - "deviceUUID": "8bbd910cb7e0e8b48c9c3e608f521484f77c36bb" - }, - "pb-IF4FU0ohEw==": { - "display_string": [ - "\ue020kshitijGaming15" - ], - "profiles": [], - "name": "\ue020kshitijGaming15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 09:20:26", - "registerOn": 1670217457.352635, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670217457.3526354, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308872.016039, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308872.0160398, - "lastIP": "azj~zo~vl~wh", - "deviceUUID": "4dcb4a106b5964b90383ef90986a2214213b306d" - }, - "pb-IF4AV1QqEQ==": { - "display_string": [ - "\ue063CHICKENBOO", - "\ue030Android62068479" - ], - "profiles": [], - "name": "\ue063CHICKENBOO", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-04 15:27:25", - "registerOn": 1670217816.8909585, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670217816.890959, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670320868.4336603, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670319780.4661233, - "lastIP": "awj~ya~}iaajdz", - "deviceUUID": "e2055bf4e71e30e44db214ed6daf8c4d2807cd96", - "cMsgCount": 0, - "lastMsgTime": 1670321923.6015935, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4nU3IxEw==": { - "display_string": [ - "\ue063divs2104" - ], - "profiles": [], - "name": "\ue063divs2104", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-03 22:26:54", - "registerOn": 1670218053.7210672, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670218053.7210677, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316363.8413355, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670318728.533653, - "lastIP": "azo~{`~~meaja{", - "deviceUUID": "d770acc77b95b99e6006255842b0c32fee2201de", - "cMsgCount": 0, - "lastMsgTime": 1670316449.0100148, - "lastMsg": "nhi abhi", - "cSameMsg": 0 - }, - "pb-IF4WU04ENQ==": { - "display_string": [ - "\ue020HourlyTreaty30", - "\ue030Android63939544" - ], - "profiles": [], - "name": "\ue020HourlyTreaty30", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 09:15:33", - "registerOn": 1670218264.6036, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670218264.603601, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339157.6709552, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670340395.2372541, - "lastIP": "b}k~~`gai`xva{a", - "deviceUUID": "040f573333f13075c1d29a5aa45404a9a094c01c", - "cMsgCount": 0, - "lastMsgTime": 1670218486.4890654, - "lastMsg": "op", - "cSameMsg": 0 - }, - "pb-IF4PUkdbFw==": { - "display_string": [ - "\ue020ResourcefulBear38", - "\ue030Android57711511" - ], - "profiles": [], - "name": "\ue020ResourcefulBear38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-07 12:08:28", - "registerOn": 1670218740.830592, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670218740.8305924, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670218740.8306022, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670218740.8306034, - "lastIP": "dxviam~~ka", - "deviceUUID": "1a9f5aa517ea1bb68deb2d8cf1058f22308d0688" - }, - "pb-IF4CU04ePQ==": { - "display_string": [ - "\ue063AsteroidBo" - ], - "profiles": [], - "name": "\ue063AsteroidBo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 09:27:40", - "registerOn": 1670219087.6891391, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219087.68914, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242647.1257184, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242647.1257198, - "lastIP": "a~o~~afaid{vbzk", - "deviceUUID": "64e9e223bb60cf6adff3cf10896b12efd187832f" - }, - "pb-IF4dVU4xVg==": { - "display_string": [ - "\ue020Thephenomenal9903" - ], - "profiles": [], - "name": "\ue020Thephenomenal9903", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-04 20:07:36", - "registerOn": 1670219160.0008068, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219160.0008075, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219160.000814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219160.000815, - "lastIP": "azo~|l~~miaiby", - "deviceUUID": "d35f408ae362cc6161d69785c5d3ea1701e43fe5" - }, - "pb-IF4LUk0FCQ==": { - "display_string": [ - "\ue063VidhyanFal" - ], - "profiles": [], - "name": "\ue063VidhyanFal", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-08 09:56:37", - "registerOn": 1670219267.3571446, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219267.3571453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670294668.5613804, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670303838.8790617, - "lastIP": "azj~zo~}kcajbv", - "deviceUUID": "c7281055c5d01de57fe0f5a250bd68f28ec93c55", - "cMsgCount": 0, - "lastMsgTime": 1670295233.9148583, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF48VBcFEw==": { - "display_string": [ - "\ue063kutty1012" - ], - "profiles": [], - "name": "\ue063kutty1012", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-28 21:53:20", - "registerOn": 1670219348.6881964, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219348.688197, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219348.6882071, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219348.6882079, - "lastIP": "dvvb\u007fl~~ihaiaz", - "deviceUUID": "7e5ea53ca2d28ec7361f139ed1f1d435f394a29a" - }, - "pb-IF4vU08YEA==": { - "display_string": [ - "\ue063BiornIrons" - ], - "profiles": [], - "name": "\ue063BiornIrons", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 15:02:13", - "registerOn": 1670219366.0444133, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219366.0444143, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219366.0444236, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219366.0444248, - "lastIP": "dvvc{vf|vaym", - "deviceUUID": "a8076219bde97d1f917ca59808cbc058cc13fd25" - }, - "pb-IF4FU3UmHw==": { - "display_string": [ - "\ue020\u1d3f\u02e2\u13f4\u13a1\u13aa\u019d\u13a0" - ], - "profiles": [], - "name": "\ue020\u1d3f\u02e2\u13f4\u13a1\u13aa\u019d\u13a0", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-17 18:47:52", - "registerOn": 1670219412.987712, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219412.9877126, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219412.987722, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219412.987723, - "lastIP": "d}va\u007f`~~afaibz", - "deviceUUID": "f4f5a63f76c0fce5e665d0097338afb8e21aaca9" - }, - "pb-IF4yU0omIg==": { - "display_string": [ - "\ue063RollingVor" - ], - "profiles": [], - "name": "\ue063RollingVor", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-31 21:17:10", - "registerOn": 1670219652.9270635, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219652.9270647, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219652.9270737, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219652.927075, - "lastIP": "azo~{`~~kaajd|", - "deviceUUID": "7325f59153e0d2ca260538cdbde7c94dbf996ad3" - }, - "pb-IF4nUnEHVg==": { - "display_string": [ - "\ue020HacktasticCadet89388" - ], - "profiles": [], - "name": "\ue020HacktasticCadet89388", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-05 13:41:01", - "registerOn": 1670219774.3369155, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219774.3369162, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219774.336924, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670220186.840861, - "lastIP": "dvvcyvb~h~~ma", - "deviceUUID": "de5347398ff949bf2b9e20d90830dae251c23b2b", - "cMsgCount": 1, - "lastMsgTime": 1670220357.990431, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4lU08FJA==": { - "display_string": [ - "\ue030Android63983164" - ], - "profiles": [], - "name": "\ue030Android63983164", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 13:46:14", - "registerOn": 1670219776.3333168, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670219776.3333173, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670219776.333327, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670219776.3333282, - "lastIP": "a\u007fn~~aeaia|va\u007fa", - "deviceUUID": "dcf18d29ab4c36279d335b7f4030233bad15316c" - }, - "pb-IF4gU048KQ==": { - "display_string": [ - "\ue020lolisoh640", - "\ue030Android63953042" - ], - "profiles": [], - "name": "\ue020lolisoh640", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 16:02:13", - "registerOn": 1670220081.6985872, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220081.6985874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670303214.4503963, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670303214.4503977, - "lastIP": "dvvcyvb~k~~k", - "deviceUUID": "b30b1cde3d6ee7ec7e736cf2d40b37a39fbb1ae2", - "cMsgCount": 0, - "lastMsgTime": 1670235183.292864, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4pU0gvEQ==": { - "display_string": [ - "\ue020AudaciousCombat79594" - ], - "profiles": [], - "name": "\ue020AudaciousCombat79594", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-17 23:03:42", - "registerOn": 1670220092.024401, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220092.0244014, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220092.0244107, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220092.0244117, - "lastIP": "a\u007fn~}jbaoaaja}", - "deviceUUID": "fa5441c126ca56a31774e7ba5626c788979abdc3" - }, - "pb-IF5VUlYjNw==": { - "display_string": [ - "\ue063Immeasura8" - ], - "profiles": [], - "name": "\ue063Immeasura8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-30 10:12:42", - "registerOn": 1670220141.9891405, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220141.989141, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229460.2209723, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229460.2209735, - "lastIP": "dvvcyvb~a~}hf", - "deviceUUID": "e79e19a1d5c68612efe471fa7d64f51ee682ba58", - "cMsgCount": 1, - "lastMsgTime": 1670220234.9745123, - "lastMsg": "booster lgwalo sb", - "cSameMsg": 0 - }, - "pb-IF4lU045AQ==": { - "display_string": [ - "\ue063MetalEel46" - ], - "profiles": [], - "name": "\ue063MetalEel46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 15:30:20", - "registerOn": 1670220259.464167, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220259.4641678, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220259.464178, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220259.4641793, - "lastIP": "eaif\u007fvd~vb~n", - "deviceUUID": "16569a3fba3fd0df8b7d56d8c929148dd36c753d" - }, - "pb-IF4PV24yPA==": { - "display_string": [ - "\ue063Agzx2244", - "\ue030Android48295628", - "\ue030Android50558008", - "\ue030PC351631", - "\ue030Android50407500" - ], - "profiles": [], - "name": "\ue063Agzx2244", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-27 10:21:40", - "registerOn": 1670220371.0777698, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220371.0777702, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220371.077779, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220371.0777798, - "lastIP": "a\u007fn~}hgajazvbzm", - "deviceUUID": "e14daa83663610399fd51ea00d341640044f94f0", - "cMsgCount": 0, - "lastMsgTime": 1670221292.9061713, - "lastMsg": "kro 1 sab", - "cSameMsg": 0 - }, - "pb-IF4cU08HKg==": { - "display_string": [ - "\ue063NativeEmpi" - ], - "profiles": [], - "name": "\ue063NativeEmpi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 22:38:41", - "registerOn": 1670220387.9813507, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220387.9813511, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220387.9813645, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220387.9813652, - "lastIP": "a\u007fj~}liam~|n", - "deviceUUID": "6f68f43e342dc9302f971a369736634f05c1c0bd" - }, - "pb-IF5WUxQgVw==": { - "display_string": [ - "\ue020MonocledRemainder37" - ], - "profiles": [], - "name": "\ue020MonocledRemainder37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-03 14:46:49", - "registerOn": 1670220558.6580849, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220558.6580856, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220558.6580951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220558.6580963, - "lastIP": "azo~{l~~keaif{", - "deviceUUID": "ed45cbd10c17e8d36b274d0820f8b35e9977b560" - }, - "pb-IF4PU08cFA==": { - "display_string": [ - "\ue063hddibduxj2" - ], - "profiles": [], - "name": "\ue063hddibduxj2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 10:54:00", - "registerOn": 1670220669.0910227, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220669.0910237, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220669.0910335, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670221009.3778722, - "lastIP": "dvvb|o~~j~z`", - "deviceUUID": "ddbf33686fa8a5089f7cd88b6ff00ecb8c601591" - }, - "pb-IF4MU08zBg==": { - "display_string": [ - "\ue063PersonalAc" - ], - "profiles": [], - "name": "\ue063PersonalAc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 12:36:48", - "registerOn": 1670220698.6773582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220698.6773589, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670220698.6773682, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670220698.677369, - "lastIP": "a~i~~jeaj`vvb\u007fo", - "deviceUUID": "5a888bbd968ee5a07e5893491abfc11f0fe4a176" - }, - "pb-IF4UVGg8KQ==": { - "display_string": [ - "\ue063LionAlpha7" - ], - "profiles": [], - "name": "\ue020LionAlpha7998", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-25 12:34:17", - "registerOn": 1670220944.3041394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670220944.3041396, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670350233.1768968, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670350233.1768982, - "lastIP": "azo~zh~}a~}ma", - "deviceUUID": "8368e55397365fe31285451f09f669007e570a51", - "cMsgCount": 0, - "lastMsgTime": 1670353870.0191152, - "lastMsg": "oppppp", - "cSameMsg": 0 - }, - "pb-IF4PU0hcUg==": { - "display_string": [ - "\ue020ExpensiveSampling66" - ], - "profiles": [], - "name": "\ue020ExpensiveSampling66", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 20:15:12", - "registerOn": 1670221150.3721857, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221150.3721862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670221150.3721948, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670221150.3721964, - "lastIP": "azo~{n~~h`aibv", - "deviceUUID": "23fde69afa91374a867fba140f0a2d26162721ab" - }, - "pb-IF4WUhk7LA==": { - "display_string": [ - "\ue020Bryanfurythemaster" - ], - "profiles": [], - "name": "\ue020Bryanfurythemaster", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-15 09:27:07", - "registerOn": 1670221152.20959, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221152.2095907, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226250.4327168, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670226275.5273476, - "lastIP": "a\u007fk~~i`aj`ale", - "deviceUUID": "f635a06a0d6da016b4c98adf268cde1304f60e8a" - }, - "pb-IF4QVGYMKg==": { - "display_string": [ - "\ue020shrey19654" - ], - "profiles": [], - "name": "\ue020shrey19654", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-17 23:36:03", - "registerOn": 1670221189.3377929, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221189.3377934, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670350229.16829, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670350229.1682909, - "lastIP": "axi~xn~wi~~jf", - "deviceUUID": "b0c6921dbf3a4dd86b20da6cbae55ac353cb7b0d", - "cMsgCount": 0, - "lastMsgTime": 1670239836.4692621, - "lastMsg": "op", - "cSameMsg": 0 - }, - "pb-IF4eVGc7Cw==": { - "display_string": [ - "\ue063LIONHUNTER" - ], - "profiles": [], - "name": "\ue063LIONHUNTER", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-19 13:49:23", - "registerOn": 1670221201.400529, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221201.4005296, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670350204.0721517, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670350204.072153, - "lastIP": "axi~xn~wi~~jf", - "deviceUUID": "7e2925fb16ec0423a42113da27b7c67e2c529058", - "cMsgCount": 0, - "lastMsgTime": 1670353972.2531605, - "lastMsg": "naah", - "cSameMsg": 0 - }, - "pb-IF4MU08lCQ==": { - "display_string": [ - "\ue063lodhipro17" - ], - "profiles": [], - "name": "\ue063lodhipro17", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 13:04:15", - "registerOn": 1670221377.0058658, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221377.0058665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670221377.005912, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670221377.005913, - "lastIP": "dxvb{o~}ifakd", - "deviceUUID": "4fd2c79d2783c7590e50a85b2de79a04e46f61d6" - }, - "pb-IF4FVVIBHQ==": { - "display_string": [ - "\ue030Android52891885" - ], - "profiles": [], - "name": "\ue030Android52891885", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-25 20:06:30", - "registerOn": 1670221863.5160656, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670221863.5160663, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670221863.516075, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670221863.5160758, - "lastIP": "a\u007fk~~j`aj`wvfv", - "deviceUUID": "\u0015T\tQ\u0002LT\f\u0005\u0007\u0017V\u000bPRC\u0004ZTULUYWTB" - }, - "pb-IF5TU09ZCQ==": { - "display_string": [ - "\ue030Android63868938" - ], - "profiles": [], - "name": "\ue030Android63868938", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 10:42:58", - "registerOn": 1670222018.742249, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222018.7422495, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222018.7422566, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670222018.7422578, - "lastIP": "f~vbaiexvcz", - "deviceUUID": "\u0015" - }, - "pb-IF40VUE9Kw==": { - "display_string": [ - "\ue063RedheadedV" - ], - "profiles": [], - "name": "\ue063RedheadedV", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-19 11:05:56", - "registerOn": 1670222082.0227785, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222082.0227795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222082.0227883, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670222909.0106921, - "lastIP": "awo~~`iajdwva~m", - "deviceUUID": "e789a1f4751dd6c53375cd93969fc024b831a160" - }, - "pb-IF49UxYgIA==": { - "display_string": [ - "\ue020TruthfulSustenance18" - ], - "profiles": [], - "name": "\ue020TruthfulSustenance18", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-19 10:41:58", - "registerOn": 1670222185.8033085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222185.803309, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301800.1507528, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301800.150754, - "lastIP": "bxvf}va\u007fva\u007fo", - "deviceUUID": "a80b0ea0c733f2966759c243d6855824e5116b80" - }, - "pb-IF5WVRUJUQ==": { - "display_string": [ - "\ue020FragrantRookie95898", - "\ue030Android42535153" - ], - "profiles": [], - "name": "\ue020FragrantRookie95898", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-24 19:01:16", - "registerOn": 1670222408.4347453, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222408.434746, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222408.4347553, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670222457.1537192, - "lastIP": "dvva{vayo~~hf", - "deviceUUID": "0a77ea88569f9db376684fed0cd5b19239faeb4f" - }, - "pb-IF4MU0ReEA==": { - "display_string": [ - "\ue063RoyalOwl79", - "\ue030Android63988366" - ], - "profiles": [], - "name": "\ue063RoyalOwl79", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-26 13:29:02", - "registerOn": 1670222628.1899621, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222628.1899629, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299113.489025, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299113.489026, - "lastIP": "azo~{n~~oaajby", - "deviceUUID": "6a895c7e6b6e7eeaed67ef25decfaaae72bb4845" - }, - "pb-IF4WU05cNA==": { - "display_string": [ - "\ue020mrsaifuuuu" - ], - "profiles": [], - "name": "\ue020mrsaifuuuu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 11:56:53", - "registerOn": 1670222651.2537246, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222651.253726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222651.2537346, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670222651.2537358, - "lastIP": "azo~{m~~ieaj`w", - "deviceUUID": "7e0251a647f979bfe438b46bf3cd79eb0deda0ff" - }, - "pb-IF43UxUHMw==": { - "display_string": [ - "\ue030Android60516479" - ], - "profiles": [], - "name": "\ue030Android60516479", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-16 15:43:18", - "registerOn": 1670222714.5488358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222714.5488365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347410.058625, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670347410.0586264, - "lastIP": "b}k~~`eaib\u007fvava", - "deviceUUID": "\u0015\u0004\u000fURMU[\u0002\u0007F\u0007\u000fP\u0002@" - }, - "pb-IF4nU08oIA==": { - "display_string": [ - "\ue063LightDestr" - ], - "profiles": [], - "name": "\ue063LightDestr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 17:41:56", - "registerOn": 1670222824.1744423, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222824.1744428, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222824.17445, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670222974.2591498, - "lastIP": "b}k~~oha`faid{", - "deviceUUID": "90e550de55f4472e78ab42ba521d8b4451a0c330" - }, - "pb-IF4xUmISVw==": { - "display_string": [ - "\ue063BoldestClo" - ], - "profiles": [], - "name": "\ue063BoldestClo", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-29 01:26:21", - "registerOn": 1670222830.0305262, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222830.0305266, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222830.0305347, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670222830.0305357, - "lastIP": "axo~}jham`aif}", - "deviceUUID": "3e3acd87d2262c3cd3298b13546fddd8c63183dc" - }, - "pb-IF4pU0QzBg==": { - "display_string": [ - "\ue030Android63511670" - ], - "profiles": [], - "name": "\ue030Android63511670", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-25 16:33:39", - "registerOn": 1670222948.4747255, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222948.4747262, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343684.9526927, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343684.952694, - "lastIP": "dvvc{vewva}k", - "deviceUUID": "a4a3e6530f2a3e449a55f08fbbc7b49a1e4e04fd" - }, - "pb-IF4TVWguVA==": { - "display_string": [ - "\ue020RoyalRead11", - "\ue030Android63893836", - "\ue030Android63893825", - "\ue030Android63893729", - "\ue030Android63893802" - ], - "profiles": [], - "name": "\ue020RoyalRead11", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-28 14:18:36", - "registerOn": 1670222957.5876591, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670222957.5876598, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670222957.5876687, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670222957.5876698, - "lastIP": "b}k~}kiakiaig\u007f", - "deviceUUID": "a0fe15893d25cbbae7b9242e10b763914eac197a", - "cMsgCount": 0, - "lastMsgTime": 1670223243.7804573, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5WVG4yCA==": { - "display_string": [ - "\ue020\ud835\ude77\ud835\ude70\u2c64\ud835\ude82\ud835\ude77v\u0360\ud835\ude74\u2c64\ud835\ude7c\ud835\ude70", - "\ue030Android48601951", - "\ue030Android48602193", - "\ue030Android48601931", - "\ue030Android39034906" - ], - "profiles": [], - "name": "\ue020\ud835\ude77\ud835\ude70\u2c64\ud835\ude82\ud835\ude77v\u0360\ud835\ude74\u2c64\ud835\ude7c\ud835\ude70", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-24 20:09:26", - "registerOn": 1670223005.7061543, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223005.7061548, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337491.9845812, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337491.9845827, - "lastIP": "azo~|o~~lgaid|", - "deviceUUID": "72d1deb3e319e18a9aafaae6c95c07faaf98c813", - "cMsgCount": 0, - "lastMsgTime": 1670337052.729382, - "lastMsg": "west pro", - "cSameMsg": 0 - }, - "pb-IF4RU1BbCQ==": { - "display_string": [ - "\ue030Android63297715", - "\ue030Android63978021" - ], - "profiles": [], - "name": "\ue030Android63297715", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 19:46:54", - "registerOn": 1670223013.750009, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223013.7500095, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223013.7500196, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223013.7500205, - "lastIP": "a\u007fk~~mfaj`yva\u007fh", - "deviceUUID": "17bd1527b38c2879e409fd15ec222b7edf87d067" - }, - "pb-IF4-U0gfIg==": { - "display_string": [ - "\ue020PlusCradle26", - "\ue030Android63906776", - "\ue030Android63917073", - "\ue030Android48414766", - "\ue030Android63906781" - ], - "profiles": [], - "name": "\ue020PlusCradle26", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 09:23:18", - "registerOn": 1670223126.1487603, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223126.148761, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310632.36223, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670310632.3622313, - "lastIP": "azo~{n~v`~}h`", - "deviceUUID": "35ef1421547313dda03ae22eb01e4e1f0259f55f" - }, - "pb-JiNJARFZV0BBVV5AGUNRUVZGFkJXRlJL": { - "display_string": [ - "\ue020jcar914", - "\ue030Android47332199" - ], - "profiles": [], - "name": "\ue020jcar914", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-26 17:42:21", - "registerOn": 1670223191.286122, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223191.2861228, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224446.9002898, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224446.900292, - "lastIP": "a}j~zh~}ifaiax", - "deviceUUID": "213acdad9f716bdc06894815f2c0bc4f516c7ebd" - }, - "pb-IF4XNk8E": { - "display_string": [ - "\ue020Mynameismr007", - "\ue030Android47352286" - ], - "profiles": [], - "name": "\ue020Mynameismr007", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-13 23:16:54", - "registerOn": 1670223306.9310734, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223306.9310741, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223306.9310822, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223306.931083, - "lastIP": "a~n~xl~}khaj`|", - "deviceUUID": "cfbdc716256dd5be19d86bd852f9657282004776" - }, - "pb-IF48U1BeVA==": { - "display_string": [ - "\ue063RetiringTh" - ], - "profiles": [], - "name": "\ue063RetiringTh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 11:26:17", - "registerOn": 1670223342.0682235, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223342.068224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223342.0682306, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223342.0682313, - "lastIP": "a|n~~mhai~xl", - "deviceUUID": "47fde9d16fc278059e28ba08a5c5923befabf415" - }, - "pb-IF5dU0haPA==": { - "display_string": [ - "\ue030Android63621219" - ], - "profiles": [], - "name": "\ue030Android63621219", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 21:22:24", - "registerOn": 1670223414.3308358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223414.3308365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223414.3308449, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223414.3308458, - "lastIP": "azo~|`~~jiaig}", - "deviceUUID": "8b23d0ed10e731852f3616071db53180f5a7639e" - }, - "pb-IF49VBQ4KQ==": { - "display_string": [ - "\ue020VariedCreator11" - ], - "profiles": [], - "name": "\ue020VariedCreator11", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-07 08:47:08", - "registerOn": 1670223647.4419773, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223647.4419777, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223647.4419851, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223647.4419858, - "lastIP": "dvvcxvaza~~ob", - "deviceUUID": "0de2c35c754bba5c6e317dc4e2356a77eaa0f6f5" - }, - "pb-JiNJARBYVUNCXl9HEk5YVVVCGUFaT1VB": { - "display_string": [ - "\ue063Alexander6" - ], - "profiles": [], - "name": "\ue063Alexander6", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-31 22:07:51", - "registerOn": 1670223994.6633196, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670223994.66332, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670223994.6633277, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670223994.6633284, - "lastIP": "a\u007fk~}laaldaj`\u007f", - "deviceUUID": "b136cb2b325744116e4458ba7b6e14cdef93caae" - }, - "pb-IF4tU0szDw==": { - "display_string": [ - "\ue020AristocraticPossum54" - ], - "profiles": [], - "name": "\ue020AristocraticPossum54", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 17:22:58", - "registerOn": 1670224082.983369, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224082.9833698, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246038.646844, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246038.646845, - "lastIP": "aakhaa`aifz", - "deviceUUID": "3bb77423b818d2d17e9a5c2d472f7ff66b12ce67" - }, - "pb-IF4cVFEENw==": { - "display_string": [ - "\ue020TroublingSeer45843" - ], - "profiles": [], - "name": "\ue020TroublingSeer45843", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-30 17:17:37", - "registerOn": 1670224221.7086017, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224221.7086027, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224221.7086105, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224221.7086112, - "lastIP": "azo~zi~vn~vn", - "deviceUUID": "bc587bc343435acaeeb16a6168e1eeadae575953" - }, - "pb-IF42UhVfFQ==": { - "display_string": [ - "\ue063MeatyHallw" - ], - "profiles": [], - "name": "\ue063MeatyHallw", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-26 21:07:54", - "registerOn": 1670224304.6928282, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224304.6928287, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224304.692835, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224304.6928358, - "lastIP": "a\u007fk~~ohaaeamg", - "deviceUUID": "6d7ce7268bc301b3530a19e3100c26e940c64638" - }, - "pb-IF4vUhc8NA==": { - "display_string": [ - "\ue020king12of34world" - ], - "profiles": [], - "name": "\ue063king12of34", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-06 19:14:02", - "registerOn": 1670224390.9638715, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224390.963872, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224390.9638948, - "verified": false, - "rejoincount": 0, - "lastJoin": 1670224702.8370771, - "lastIP": "a\u007fn~~afai`wvazh", - "deviceUUID": "e724ac296ff3aaa7b58fb4beeb5a6bd55d243a15" - }, - "pb-IF4-U0wmFA==": { - "display_string": [ - "\ue020BroadestStress64" - ], - "profiles": [], - "name": "\ue020BroadestStress64", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 16:31:50", - "registerOn": 1670224419.1593127, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224419.1593134, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224419.1593218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224419.1593227, - "lastIP": "a\u007fk~~`gaahaih{", - "deviceUUID": "f7ec1dea556e337a4f288c1a8e992be20c6cf516" - }, - "pb-IF4NU04dKQ==": { - "display_string": [ - "\ue030Android63983749" - ], - "profiles": [], - "name": "\ue030Android63983749", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:56:21", - "registerOn": 1670224433.1994147, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224433.1994152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311471.5926657, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311471.5926664, - "lastIP": "a|h~~heaniaia|", - "deviceUUID": "8ad9c12623e62e5d87337454ec3d0d16ed4509f4", - "cMsgCount": 0, - "lastMsgTime": 1670311994.587358, - "lastMsg": "i hate shine she punch me and im her team", - "cSameMsg": 0 - }, - "pb-IF5XUxQNKg==": { - "display_string": [ - "\ue030Android60176502" - ], - "profiles": [], - "name": "\ue030Android60176502", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-02 13:36:23", - "registerOn": 1670224594.7961566, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224594.7961574, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224594.7961674, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224594.7961679, - "lastIP": "b\u007fn~wk~~ibakh", - "deviceUUID": "b628827af1660e8d1a369c7bb005ddd321826a1a" - }, - "pb-IF4LU3IhCg==": { - "display_string": [ - "\ue063UnbornObse" - ], - "profiles": [], - "name": "\ue063UnbornObse", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-06 06:24:33", - "registerOn": 1670224621.8851442, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224621.8851452, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331607.7546296, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670331607.7546308, - "lastIP": "az`~yj~wvgz", - "deviceUUID": "2d5f8908bc02bb7dc9e26846d26e9167e29f1109" - }, - "pb-IF4nVUddEA==": { - "display_string": [ - "\ue020UnrecordedContrast21", - "\ue030Android51604904" - ], - "profiles": [], - "name": "\ue020UnrecordedContrast21", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-24 19:24:09", - "registerOn": 1670224695.1638308, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224695.163831, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224695.1638393, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224695.1638403, - "lastIP": "azj~z`~}`~}ih", - "deviceUUID": "94dbacce83b90b4cfffc1bec22faf9d1acdc7db5" - }, - "pb-IF4HU00iMA==": { - "display_string": [ - "\ue020AcuteSodium40" - ], - "profiles": [], - "name": "\ue020AcuteSodium40", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 12:39:12", - "registerOn": 1670224875.8248928, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224875.8248932, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224875.8249018, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224875.8249028, - "lastIP": "a\u007fn~~aeakgaii", - "deviceUUID": "c720584a91b3cbe6db86ad747fa20b79ebd57367" - }, - "pb-IF4tURMJ": { - "display_string": [ - "\ue020RagingOrangutan79611", - "\ue030Android36362458" - ], - "profiles": [], - "name": "\ue020RagingOrangutan79611", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-12 18:45:41", - "registerOn": 1670224930.0256732, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670224930.0256736, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670224930.0256803, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670224930.0256815, - "lastIP": "a\u007fn~~adakiaif{", - "deviceUUID": "00205d6e727c4c8655e1d50949de75de43d9f425" - }, - "pb-IF4VVGQqIA==": { - "display_string": [ - "\ue063Abwini9" - ], - "profiles": [], - "name": "\ue063Abwini9", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-01 21:38:23", - "registerOn": 1670225142.8319447, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225142.8319454, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225142.8319547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225142.8319557, - "lastIP": "ax`~xo~~meanc", - "deviceUUID": "971b74965958e51e59e30e484186b7389cc56f1a" - }, - "pb-IF4BU3YiBw==": { - "display_string": [ - "\ue020raj140608" - ], - "profiles": [], - "name": "\ue020raj140608", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 16:49:48", - "registerOn": 1670225313.742744, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225313.7427452, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225313.742753, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225313.7427537, - "lastIP": "a}k~}haaj~~`b", - "deviceUUID": "d4f4de333d3ac253c6682a64d10146afdc3bed93" - }, - "pb-IF40U08DIg==": { - "display_string": [ - "\ue063PitilessDi" - ], - "profiles": [], - "name": "\ue063PitilessDi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 09:57:03", - "registerOn": 1670225366.6395636, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225366.639564, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225366.6395714, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225366.6395721, - "lastIP": "b\u007fj~yo~|a~~h", - "deviceUUID": "cba75cd69c2cba64503daeae42befdd269060920" - }, - "pb-IF4pUxccDQ==": { - "display_string": [ - "\ue020MRSMoOtHy9098", - "\ue030Android60542989" - ], - "profiles": [], - "name": "\ue020MRSMoOtHy9098", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-23 14:20:28", - "registerOn": 1670225421.9733288, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225421.9733298, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225421.9733438, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225421.9733446, - "lastIP": "azo~{m~~oiajd|", - "deviceUUID": "017b66c9bf884f6f82343cc45aa1fc8db1d1ecf4" - }, - "pb-IF5WU3YtDg==": { - "display_string": [ - "\ue020kingofdragonwar10" - ], - "profiles": [], - "name": "\ue020kingofdragonwar10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-12 11:15:55", - "registerOn": 1670225497.0738711, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225497.0738714, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670334903.754289, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334866.5616307, - "lastIP": "a\u007fn~}j`ajd{vd\u007f", - "deviceUUID": "458f059dc7613379d0f64b393d516bfe4ce94349", - "cMsgCount": 0, - "lastMsgTime": 1670334903.754227, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4NUxcqNA==": { - "display_string": [ - "\ue063TurboFamil" - ], - "profiles": [], - "name": "\ue063TurboFamil", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-25 17:39:11", - "registerOn": 1670225548.248582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225548.2485824, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229538.8195338, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670229091.8494523, - "lastIP": "a\u007fk~zo~wm~}jc", - "deviceUUID": "761e2f8a9baa8a93f1ca262cd255c7269e8b4c96", - "cMsgCount": 0, - "lastMsgTime": 1670229538.8194907, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4tBWhf": { - "display_string": [ - "\ue063TiredShiel" - ], - "profiles": [], - "name": "\ue063TiredShiel", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-08 11:07:39", - "registerOn": 1670225703.2770789, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225703.2770793, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225703.2770863, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670225708.5493443, - "lastIP": "a\u007fn~}hfajaaic|", - "deviceUUID": "50aec541ac095332e4e7d310526059b4d87e2701" - }, - "pb-IF4OU0MmCw==": { - "display_string": [ - "\ue020PaltryLuxury43" - ], - "profiles": [], - "name": "\ue020PaltryLuxury43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-21 14:47:25", - "registerOn": 1670225752.03882, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225752.0388205, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347319.6387975, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670347319.6387992, - "lastIP": "a\u007fn~}jba`faigw", - "deviceUUID": "fac6ef408444c29869070071a76e6de49b381bdd" - }, - "pb-IF4TU0MJAQ==": { - "display_string": [ - "\ue020SovereignSplendor53", - "\ue063UnvaryingT", - "\ue020ElectricalTilt52", - "\ue020LittleJourney40429" - ], - "profiles": [], - "name": "\ue063UnvaryingT", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-23 09:41:04", - "registerOn": 1670225869.4587672, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225869.4587677, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225869.4587755, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225869.4587762, - "lastIP": "dvvcxvb~k~~mf", - "deviceUUID": "6f0b3cbe2a98d10a5ba1b40d8c12cc695a4fcd11" - }, - "pb-IF4iVRIvFA==": { - "display_string": [ - "\ue063supersmash", - "\ue030Android45064400" - ], - "profiles": [], - "name": "\ue063supersmash", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-16 13:10:01", - "registerOn": 1670225915.6225243, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670225915.6225247, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670225915.6225307, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670225915.6225317, - "lastIP": "dvvcxvd~vavn", - "deviceUUID": "996d37e51f3c1c08aaa7659db77b08d88da28fc6" - }, - "pb-IF4tVXIbMQ==": { - "display_string": [ - "\ue020Aryannnnn\u30c5", - "\ue030Android51658791" - ], - "profiles": [], - "name": "\ue020Aryannnnn\u30c5", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-14 19:50:14", - "registerOn": 1670226061.2386627, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226061.2386632, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317537.1754663, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317537.1754677, - "lastIP": "a\u007fn~}ifa`haihy", - "deviceUUID": "7c87fdd2c2959085eb949e641404ba48594d4b86", - "cMsgCount": 1, - "lastMsgTime": 1670317570.0272377, - "lastMsg": "uncas y u angry at me", - "cSameMsg": 0 - }, - "pb-IF5SU00BVQ==": { - "display_string": [ - "\ue063NimblePass" - ], - "profiles": [], - "name": "\ue063NimblePass", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 14:22:59", - "registerOn": 1670226110.279205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226110.2792058, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226110.2792144, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226110.2792153, - "lastIP": "dxvazvawvf\u007f", - "deviceUUID": "8b95267b1e3d9e2d481577825ab6d4466e7cd053" - }, - "pb-IF4NUmovVg==": { - "display_string": [ - "\ue063ShailiPate" - ], - "profiles": [], - "name": "\ue063ShailiPate", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-05 13:12:44", - "registerOn": 1670226195.6351314, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226195.6351318, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323853.512387, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323853.5123887, - "lastIP": "d}va\u007fn~~a~yj", - "deviceUUID": "f197b811af71876fc2976f89c919eaadd4f25bfa" - }, - "pb-IF4VU3ENAA==": { - "display_string": [ - "\ue030Android62403774" - ], - "profiles": [], - "name": "\ue030Android62403774", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-02 12:18:25", - "registerOn": 1670226282.8838375, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226282.8838382, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226282.883846, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226282.883847, - "lastIP": "awk~~oaaibxvav", - "deviceUUID": "\u0015\u0004\\P" - }, - "pb-IF4FU085EQ==": { - "display_string": [ - "\ue063BrackishCh" - ], - "profiles": [], - "name": "\ue063BrackishCh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 13:10:05", - "registerOn": 1670226374.3766797, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226374.3766801, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226374.3766882, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226374.376689, - "lastIP": "azo~{n~~ocaiiz", - "deviceUUID": "91a83f9a494e45ab8450580dc802615e8120cee5" - }, - "pb-IF5TU1EzAg==": { - "display_string": [ - "\ue063FollowingH" - ], - "profiles": [], - "name": "\ue063FollowingH", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 20:48:30", - "registerOn": 1670226380.258697, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226380.258698, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226380.2587054, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226380.2587063, - "lastIP": "azo~|a~}o~~og", - "deviceUUID": "99c9e6867cc9f32ea0f9f88fc3c3fec0fa0433c5" - }, - "pb-IF4mVW4KCg==": { - "display_string": [ - "\ue030PC297792" - ], - "profiles": [], - "name": "\ue030PC297792", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-16 22:09:12", - "registerOn": 1670226457.582149, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226457.5821497, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226457.5821557, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226457.5821567, - "lastIP": "a~o~}igaii\u007fvavi", - "deviceUUID": "3b7f3440897b3d0e42c85de043bbf8c6d1cbe8ec" - }, - "pb-IF4PU20MUQ==": { - "display_string": [ - "\ue030Android62028677" - ], - "profiles": [], - "name": "\ue030Android62028677", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-16 17:57:58", - "registerOn": 1670226522.783715, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226522.7837155, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226522.7837224, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226522.7837234, - "lastIP": "a~l~|i~~`haab", - "deviceUUID": "\u0015V^\u0004\u0003M\u0007YURAQU\u0005\u0005\u0016Q\\RUAYZWVGX" - }, - "pb-IF5TV2MzCA==": { - "display_string": [ - "\ue063RoyalProph", - "\ue030Android27475121" - ], - "profiles": [], - "name": "\ue063RoyalProph", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-09 15:25:46", - "registerOn": 1670226649.6207516, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226649.620752, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300672.096717, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670300732.285673, - "lastIP": "azo~|l~~maaja", - "deviceUUID": "e8cf97805255e86aec70c8706d6b9e5f3ca97b30", - "cMsgCount": 0, - "lastMsgTime": 1670227063.3796155, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF40U00CCg==": { - "display_string": [ - "\ue063VagueInfus" - ], - "profiles": [], - "name": "\ue063VagueInfus", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 17:20:26", - "registerOn": 1670226659.3487902, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226659.3487906, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330316.595092, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330316.5950935, - "lastIP": "az`~yj~\u007fvawl", - "deviceUUID": "253c7d0e64a83179258252f4559bc72f8679e046", - "cMsgCount": 0, - "lastMsgTime": 1670330346.254742, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF40UnkJDw==": { - "display_string": [ - "\ue063yellipai" - ], - "profiles": [], - "name": "\ue063yellipai", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-11 08:38:11", - "registerOn": 1670226866.2665646, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226866.266565, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226866.266573, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226866.266574, - "lastIP": "evvi|vb|l~~ad", - "deviceUUID": "ce58c2e31fb0efd21874c1e470474a18e21def92" - }, - "pb-IF4jU2g9Ew==": { - "display_string": [ - "\ue020UnpaidExercise38" - ], - "profiles": [], - "name": "\ue020UnpaidExercise38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-25 19:42:30", - "registerOn": 1670226869.5052457, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226869.5052464, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226869.5052528, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226869.5052536, - "lastIP": "azo~{a~~liaify", - "deviceUUID": "9b824e81fbd60169f30045059ecb9762f6b411d3" - }, - "pb-IF5WU0peVQ==": { - "display_string": [ - "\ue020KeptVacation37" - ], - "profiles": [], - "name": "\ue020KeptVacation37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 14:21:17", - "registerOn": 1670226903.3899212, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226903.3899224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226903.3899307, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670226903.3899314, - "lastIP": "azo~{n~~jiaka", - "deviceUUID": "f643b228b67be1df4548532e6d11d7b24674d26f" - }, - "pb-IF4KU3AnHQ==": { - "display_string": [ - "\ue030Android62253416" - ], - "profiles": [], - "name": "\ue030Android62253416", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-26 14:30:47", - "registerOn": 1670226963.5896826, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670226963.5896833, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670226963.5896919, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670228788.722594, - "lastIP": "dvvc}vayn~|l", - "deviceUUID": "2620c5f80b8a2b954f6fcc27da29c5908d2f87c6", - "cMsgCount": 2, - "lastMsgTime": 1670229653.0490026, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5XUkoGDw==": { - "display_string": [ - "\ue063AerialMark", - "\ue030Android54465033" - ], - "profiles": [], - "name": "\ue063AerialMark", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-12 22:40:28", - "registerOn": 1670227022.7963612, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670227022.796362, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227022.7963703, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670227022.796371, - "lastIP": "a\u007fk~~jcaiexvgz", - "deviceUUID": "39e13719e2009e69674426018146ced270d091cc" - }, - "pb-IF4PVU49EQ==": { - "display_string": [ - "\ue020SashaGoPewpew" - ], - "profiles": [], - "name": "\ue020SashaGoPewpew", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-03 09:30:08", - "registerOn": 1670227054.923248, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670227054.923249, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227054.9232554, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670227054.923276, - "lastIP": "b\u007fk~~`iaiayva\u007fo", - "deviceUUID": "\u0015\u0004U\u0003W\u0010V_VY\u0017T\b\u0005R\u0015\u0003\\PVBT\\VXAT", - "cMsgCount": 0, - "lastMsgTime": 1670227845.6772037, - "lastMsg": "it's all good ig", - "cSameMsg": 0 - }, - "pb-IF4GUxYsDQ==": { - "display_string": [ - "\ue020ConclusiveBottle39" - ], - "profiles": [], - "name": "\ue020ConclusiveBottle39", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-16 14:12:38", - "registerOn": 1670227319.7724183, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670227319.7724187, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227319.7724278, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670227319.7724285, - "lastIP": "azo~{n~~jaaifv", - "deviceUUID": "8ead49b7ddabc9a22af41957df33d402effd5a2e" - }, - "pb-IF4KU1AsNQ==": { - "display_string": [ - "\ue063Custumtom" - ], - "profiles": [], - "name": "\ue063Custumtom", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 13:28:37", - "registerOn": 1670227461.4978473, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670227461.497848, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670227461.4978573, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670227461.4978583, - "lastIP": "a}j~zh~~aeaigx", - "deviceUUID": "ff3dde8336f0ed67a71208df988d06298d531b5e" - }, - "pb-IF4LVXpYNg==": { - "display_string": [ - "\ue020UnimpededHorseback4" - ], - "profiles": [], - "name": "\ue020UnimpededHorseback4", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-10 09:53:20", - "registerOn": 1670227744.6954534, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670227744.6954541, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251381.517309, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670251437.6888216, - "lastIP": "a\u007fk~v`~|`~v", - "deviceUUID": "2227a173a4be186298989f5e5c0a0fef7e57815e", - "cMsgCount": 0, - "lastMsgTime": 1670228101.109848, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4lVUo7Eg==": { - "display_string": [ - "\ue020sobikd" - ], - "profiles": [], - "name": "\ue020sobikd", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-14 12:58:46", - "registerOn": 1670228197.982771, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228197.9827716, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228197.9827867, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670228197.9827876, - "lastIP": "a\u007fn~~aga`iajc|", - "deviceUUID": "6298115190da1bfb5df2d882f75738ee6f00d083" - }, - "pb-IF4hVFkHKg==": { - "display_string": [ - "\ue063RhythmicCr", - "\ue030Android39653045" - ], - "profiles": [], - "name": "\ue020RhythmicCrown18", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-28 18:46:27", - "registerOn": 1670228209.0389888, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228209.0389895, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670361055.1304178, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670359923.7921474, - "lastIP": "dvvcxvg{va{o", - "deviceUUID": "62e44e3760cd9c6c82cf681707d065b69027b7e1", - "cMsgCount": 1, - "lastMsgTime": 1670361101.025925, - "lastMsg": "oo smj gya babla mtlab pagal", - "cSameMsg": 0 - }, - "pb-IF4pU1BTHA==": { - "display_string": [ - "\ue063Antiquate7" - ], - "profiles": [], - "name": "\ue063Antiquate7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 12:03:47", - "registerOn": 1670228297.4124837, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228297.4124844, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228297.4124925, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670228297.4124932, - "lastIP": "azo~zi~|k~wi", - "deviceUUID": "76429b13abd2692cbf282bb1b503265d3de59f86" - }, - "pb-IF4WVUsFNw==": { - "display_string": [ - "\ue063Preferent5" - ], - "profiles": [], - "name": "\ue063Preferent5", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-20 22:01:33", - "registerOn": 1670228411.789545, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228411.7895458, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296044.435284, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296044.435285, - "lastIP": "dvvc{viyva|k", - "deviceUUID": "22932973725a6b2764c9aaaa0054bf0ac3663c09" - }, - "pb-IF5RVG8EUw==": { - "display_string": [ - "\ue020HumdrumFrame7" - ], - "profiles": [], - "name": "\ue020HumdrumFrame7", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-29 19:16:30", - "registerOn": 1670228446.579187, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228446.5791874, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228446.5791957, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670228446.5791965, - "lastIP": "dvvc{va|h~~j", - "deviceUUID": "d44ffd437086b4f53c81dcffeacef2ef90654ec5" - }, - "pb-IF5UU0EtKw==": { - "display_string": [ - "\ue030Android63417416" - ], - "profiles": [], - "name": "\ue030Android63417416", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-19 20:32:50", - "registerOn": 1670228484.0479453, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228484.0479462, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228484.047954, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670228484.0479553, - "lastIP": "a\u007fn~~acaj`yvd}", - "deviceUUID": "dc9a27e890eca123a1f9ce4d05a2f66cd6d02f7c" - }, - "pb-IF4lU0cxXQ==": { - "display_string": [ - "\ue063larsyuan65" - ], - "profiles": [], - "name": "\ue063larsyuan65", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 19:12:42", - "registerOn": 1670228741.8731394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228741.8731403, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228741.8731513, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670228840.917879, - "lastIP": "a|n~~mhajhala", - "deviceUUID": "2e318aa8ec18e6c872f8539535ec1e883cc781b3" - }, - "pb-IF4HU00hJw==": { - "display_string": [ - "\ue063Recipient3" - ], - "profiles": [], - "name": "\ue063Recipient3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 14:29:02", - "registerOn": 1670228784.0108788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228784.0108795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321396.582164, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321396.5821657, - "lastIP": "a\u007fk~y`~}j~yh", - "deviceUUID": "4575321855c254908c77eefcb28cd9ff7599f77f" - }, - "pb-IF4zU00GCg==": { - "display_string": [ - "\ue020SilentSalt1900" - ], - "profiles": [], - "name": "\ue020SilentSalt1900", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 14:08:37", - "registerOn": 1670228921.5335805, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228921.533581, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228921.5335886, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670229254.4435499, - "lastIP": "azj~zo~}l~zn", - "deviceUUID": "f4a122773f682de8dc15bd34a49bd18621e2ac1e" - }, - "pb-IF42U08yFw==": { - "display_string": [ - "\ue030Android63983683" - ], - "profiles": [], - "name": "\ue030Android63983683", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:42:38", - "registerOn": 1670228933.8215332, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228933.8215337, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339615.3399155, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670340264.6702204, - "lastIP": "a|o~vo~x`~}id", - "deviceUUID": "7ed4cb26643deafc53d59f450dfda5d60fe5270f" - }, - "pb-IF4UUmQDJw==": { - "display_string": [ - "\ue020JauntyCoin52791", - "\ue030Android52824015" - ], - "profiles": [], - "name": "\ue020JauntyCoin52791", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-04 18:30:08", - "registerOn": 1670228976.775681, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228976.7756817, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670228976.7756903, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670228976.775691, - "lastIP": "a\u007fn~}heajbaic~", - "deviceUUID": "71419b847c4b6137f6d3246d7890d14e677339c3" - }, - "pb-IF4yD3Qc": { - "display_string": [ - "\ue063SpaceShutt", - "\ue030Android46872814" - ], - "profiles": [], - "name": "\ue063SpaceShutt", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-05 10:42:33", - "registerOn": 1670228987.758543, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670228987.7585437, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343940.8096943, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670346722.1913195, - "lastIP": "azo~|j~}lcaja", - "deviceUUID": "ca8f32981f1fe7f2136876c26921f7859a9f3f96", - "cMsgCount": 0, - "lastMsgTime": 1670344083.3772483, - "lastMsg": "ok", - "cSameMsg": 0 - }, - "pb-IF4PUkkqMA==": { - "display_string": [ - "\ue063BrutalSici" - ], - "profiles": [], - "name": "\ue063BrutalSici", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-16 10:02:41", - "registerOn": 1670229356.5626655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229356.562666, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322121.2772715, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670322142.3583076, - "lastIP": "a\u007fk~~aaaj`{vg{", - "deviceUUID": "dcc5c7508559ffa5b58c9495fea6671707be3cc8" - }, - "pb-IF5dU08nEw==": { - "display_string": [ - "\ue020ElegantCavalier77306" - ], - "profiles": [], - "name": "\ue020ElegantCavalier77306", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 09:03:26", - "registerOn": 1670229402.3325691, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229402.3325698, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229402.3325784, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229402.3325794, - "lastIP": "b}k~~`gaib~vazo", - "deviceUUID": "eb82fd15cf5cc77c3ff31d26a9f7f0c821748d3e" - }, - "pb-IF4WU2ooNg==": { - "display_string": [ - "\ue063Customary7" - ], - "profiles": [], - "name": "\ue063Customary7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-03 17:39:17", - "registerOn": 1670229408.377324, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229408.3773248, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229408.3773336, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229408.3773348, - "lastIP": "azj~z`~|l~~md", - "deviceUUID": "4368e63f833e87303119297e60c52375cc211ec2" - }, - "pb-IF4KU1AsAQ==": { - "display_string": [ - "\ue063NOTJOSHLEO" - ], - "profiles": [], - "name": "\ue063NOTJOSHLEO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 14:09:38", - "registerOn": 1670229593.009421, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229593.0094216, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229593.00943, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229593.0094311, - "lastIP": "a{h~}icaiixvfx", - "deviceUUID": "99b1bcc147f758903ee66d180a59c5ffa6f77f14" - }, - "pb-IF5UUks5DQ==": { - "display_string": [ - "\ue063WinterProf" - ], - "profiles": [], - "name": "\ue063WinterProf", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-17 22:28:17", - "registerOn": 1670229595.9927943, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229595.992795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229595.9928029, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229595.9928036, - "lastIP": "azo~{a~~jiajbv", - "deviceUUID": "a94b206be518cd1883431b924685eff2e39af3dd" - }, - "pb-IF4sVW8hUA==": { - "display_string": [ - "\ue020\ud835\udd8e\ud835\udd86\ud835\udd93\ud835\udd89\ud835\udd8e\ud835\udd94\ud835\udd97" - ], - "profiles": [], - "name": "\ue020\ud835\udd8e\ud835\udd86\ud835\udd93\ud835\udd89\ud835\udd8e\ud835\udd94\ud835\udd97", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-26 11:45:30", - "registerOn": 1670229602.0637639, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229602.0637648, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229602.0637722, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229602.063773, - "lastIP": "dvvb|o~~k~v`", - "deviceUUID": "382568c64573fdea10beb998e6a68ad17b62e7f2" - }, - "pb-IF4rU3NTEA==": { - "display_string": [ - "\ue030Android62498959" - ], - "profiles": [], - "name": "\ue030Android62498959", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-06 22:59:09", - "registerOn": 1670229629.1306546, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229629.1306553, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229629.1306636, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670229701.0906115, - "lastIP": "azj~zo~~hiamb", - "deviceUUID": "\u0015QZVRG\u0002\bYWFY^PTFS\\SU@Q\\PWA" - }, - "pb-IF4MU087Dw==": { - "display_string": [ - "\ue063UnsoundApp" - ], - "profiles": [], - "name": "\ue063UnsoundApp", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 19:08:41", - "registerOn": 1670229696.38345, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229696.3834505, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229696.3834593, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229696.38346, - "lastIP": "dvva{l~~hfaicx", - "deviceUUID": "4825d16b394479d5f7c7351f6bf0ecbff01099ca" - }, - "pb-IF4UVxEtHA==": { - "display_string": [ - "\ue063SarayutVic" - ], - "profiles": [], - "name": "\ue063SarayutVic", - "isBan": false, - "isMuted": false, - "accountAge": "2018-07-11 17:55:35", - "registerOn": 1670229715.7352576, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229715.7352583, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229715.7352688, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229715.7352698, - "lastIP": "b}k~}hfajb\u007fva\u007fh", - "deviceUUID": "360dc7b30d80b599690c65212359015f751eb0af" - }, - "pb-IF4LVGQoMg==": { - "display_string": [ - "\ue020NarrativePulp7" - ], - "profiles": [], - "name": "\ue020NarrativePulp7", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-01 07:35:36", - "registerOn": 1670229799.8144748, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229799.8144753, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327914.0341606, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327914.0341618, - "lastIP": "dvvc{vaxj~~ii", - "deviceUUID": "5005c19e252c77de222a0b3aa38fbfada738a319" - }, - "pb-IF4QU3IfHw==": { - "display_string": [ - "\ue020ChestnutMisery45" - ], - "profiles": [], - "name": "\ue020ChestnutMisery45", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 16:52:45", - "registerOn": 1670229852.9366603, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229852.9366608, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229852.9366696, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229852.9366708, - "lastIP": "b}k~}jeajdyvhx", - "deviceUUID": "5ce3d6b9ee7d400300e2c33d083822274ab3a590" - }, - "pb-IF4BVGUmHw==": { - "display_string": [ - "\ue020nedstark5000" - ], - "profiles": [], - "name": "\ue020nedstark5000", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-10 10:31:18", - "registerOn": 1670229924.216744, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670229924.2167447, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670229924.2167525, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670229924.2167535, - "lastIP": "a\u007fn~x`~~n`a`i", - "deviceUUID": "cb18af39dd9676be6089958288eea3ef546e0f39" - }, - "pb-IF4yU0oAUQ==": { - "display_string": [ - "\ue030Android63790532" - ], - "profiles": [], - "name": "\ue030Android63790532", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 19:16:01", - "registerOn": 1670230033.6235216, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230033.6235223, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230033.6235301, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670230033.6235313, - "lastIP": "azo~{a~}ifaii", - "deviceUUID": "edbf8f1218752fca82fdadf2d70f3a2bee7e837b" - }, - "pb-IF4SVU4FJw==": { - "display_string": [ - "\ue030Android52507762" - ], - "profiles": [], - "name": "\ue030Android52507762", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-07 17:10:11", - "registerOn": 1670230208.5107021, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230208.510703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230208.5107107, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670230208.510712, - "lastIP": "b}k~~`gaiaxvaxl", - "deviceUUID": "\u0015T\\T\u0004EQ_VVL\u0005\u000f\u0002\u0002\u0011STYSAQZPP@" - }, - "pb-JiNJVxFeVkNJXVtJGEBRUFJEEUFaQ1dA": { - "display_string": [ - "\ue020vijaysurya1805" - ], - "profiles": [], - "name": "\ue020vijaysurya1805", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-03 23:49:28", - "registerOn": 1670230309.6902184, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230309.6902192, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230309.6902275, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670230309.6902285, - "lastIP": "azo~zi~~hcaoe", - "deviceUUID": "66f35a045854f652d537fd4f22ffa69d0e3f71d7" - }, - "pb-IF4QU0cGKQ==": { - "display_string": [ - "\ue063Fluoresc10" - ], - "profiles": [], - "name": "\ue063Fluoresc10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 17:10:15", - "registerOn": 1670230501.3428638, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230501.342864, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230501.3428726, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670230501.3428736, - "lastIP": "a~o~}igaogaja{", - "deviceUUID": "52d426451801122f6a327e29b37553d47e1b7fd5" - }, - "pb-IF4RU0kkPA==": { - "display_string": [ - "\ue030Android63737185" - ], - "profiles": [], - "name": "\ue030Android63737185", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 12:41:43", - "registerOn": 1670230749.4979107, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230749.4979115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324759.2630568, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670325581.1100628, - "lastIP": "axi~{a~}kfai`x", - "deviceUUID": "c0d55be043457f66c1af41eb1fa91b227bf5f05b" - }, - "pb-IF4IUxUpCA==": { - "display_string": [ - "\ue020UnmarkedCommodore37" - ], - "profiles": [], - "name": "\ue020UnmarkedCommodore37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-15 13:26:32", - "registerOn": 1670230837.6404083, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230837.640409, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670230837.6404185, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670230837.6404195, - "lastIP": "azo~|k~~abaibw", - "deviceUUID": "0388fd7e2f803334381174ca2a8585c9527da27a" - }, - "pb-IF5UUkMlDA==": { - "display_string": [ - "\ue063FancyPan23" - ], - "profiles": [], - "name": "\ue020FancyPantsLevel5048", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-18 10:53:25", - "registerOn": 1670230855.7314546, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230855.7314556, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308273.3458445, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308273.3458457, - "lastIP": "awj~xl~~agam`", - "deviceUUID": "5893c67d28623308e85d53e01f81d372327531dd" - }, - "pb-IF49U21YDQ==": { - "display_string": [ - "\ue020FreelanceProblem24", - "\ue030Android59843406" - ], - "profiles": [], - "name": "\ue030Android59843406", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-14 11:04:49", - "registerOn": 1670230943.0635073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670230943.0635078, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670377230.6686845, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670380446.0814939, - "lastIP": "a|n~~mhai`}vava", - "deviceUUID": "1b541227be57713283d65bfeaf44e43b051ee400", - "cMsgCount": 0, - "lastMsgTime": 1670377248.8355405, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF4dU3FeVg==": { - "display_string": [ - "\ue030Android62362778", - "\ue030Android63946527", - "\ue030Android63791115" - ], - "profiles": [], - "name": "\ue030Android63946527", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 12:13:43", - "registerOn": 1670231050.7772844, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231050.7772846, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292905.8784635, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292905.8784652, - "lastIP": "dxvc~vb}o~wk", - "deviceUUID": "f0c5cbbe23c69b55ddd7f83779d8518657f89696" - }, - "pb-IF4DV24sDQ==": { - "display_string": [ - "\ue063DarkKnigh3", - "\ue030PC773596" - ], - "profiles": [], - "name": "\ue063DarkKnigh3", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-25 13:33:03", - "registerOn": 1670231104.689741, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231104.6897416, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231104.6897497, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231104.6897502, - "lastIP": "azo~{n~}hhaje|", - "deviceUUID": "58bb36a03707ec42ee131f438adc07f4c6e590cf", - "cMsgCount": 0, - "lastMsgTime": 1670231360.083685, - "lastMsg": "sure", - "cSameMsg": 0 - }, - "pb-LV4FXhAOU0pGXF9AFhNQUVJDEA==": { - "display_string": [ - "\ue030Android12758543" - ], - "profiles": [], - "name": "\ue030Android12758543", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-21 13:28:30", - "registerOn": 1670231619.3314147, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231619.3314154, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231619.3314242, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231619.331425, - "lastIP": "a\u007fk~~oiaia~va{m", - "deviceUUID": "50510f8eec27484cb21a7b263a17d112b8fee4b4" - }, - "pb-IF5VU0kBBA==": { - "display_string": [ - "\ue020VOILENTFIGHTER12", - "\ue030Android63671399" - ], - "profiles": [], - "name": "\ue020VOILENTFIGHTER12", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 16:52:45", - "registerOn": 1670231635.3568554, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231635.3568559, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670231789.973674, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231635.3568647, - "lastIP": "b}k~~`haje}vazm", - "deviceUUID": "02203c8528f66eed06dc45380a5eb55df893b6c3", - "cMsgCount": 0, - "lastMsgTime": 1670231828.4432135, - "lastMsg": "he would wipe himslf only", - "cSameMsg": 0 - }, - "pb-IF5RU0cNFA==": { - "display_string": [ - "\ue063Unsuitabl4" - ], - "profiles": [], - "name": "\ue063Unsuitabl4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 20:37:24", - "registerOn": 1670231774.9812443, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231774.981245, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231774.981254, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231774.981255, - "lastIP": "dvvd|viwvaxn", - "deviceUUID": "935c01f6439a763b266019148f02842f480c36c0" - }, - "pb-IF4QV0s7Fw==": { - "display_string": [ - "\ue020VISHAL6364S17" - ], - "profiles": [], - "name": "\ue020VISHAL6364S17", - "isBan": false, - "isMuted": false, - "accountAge": "2019-03-19 23:03:21", - "registerOn": 1670231824.3624701, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231824.3624709, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231824.3624814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231824.3624825, - "lastIP": "a\u007fk~}h`ai`yvg|", - "deviceUUID": "13e0c4be85e8a71aa81fbd51163ef27710fb4957" - }, - "pb-IF4AN2w6": { - "display_string": [ - "\ue020L\u00f8neW\u00f8lf\u00e6" - ], - "profiles": [], - "name": "\ue020L\u00f8neW\u00f8lf\u00e6", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-15 22:29:31", - "registerOn": 1670231855.141531, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231855.1415315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231855.1415393, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231855.14154, - "lastIP": "azo~zi~z`~}kd", - "deviceUUID": "64e2eeb8ff7d20fecb2b38975848aba0f3a56f13" - }, - "pb-IF4rU24hJA==": { - "display_string": [ - "\ue063StableCohe" - ], - "profiles": [], - "name": "\ue063StableCohe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 11:30:21", - "registerOn": 1670231861.1913927, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231861.1913934, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670378104.5088973, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670378104.508899, - "lastIP": "dvvb\u007fl~}jdam`", - "deviceUUID": "7852b404f352d59f1c837ce5b6bd876df1357f13" - }, - "pb-IF4RVUIJLw==": { - "display_string": [ - "\ue020DamchAlandamcha" - ], - "profiles": [], - "name": "\ue020DamchAlandamcha", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-27 18:44:08", - "registerOn": 1670231909.292282, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231909.2922828, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231909.292292, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231909.292293, - "lastIP": "dxvbvva\u007fh~}mb", - "deviceUUID": "546dd15cb7113bf424892acf7e24c1e92ef356e9" - }, - "pb-IF4AU2MlLQ==": { - "display_string": [ - "\ue030Android61099795" - ], - "profiles": [], - "name": "\ue030Android61099795", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-09 15:41:05", - "registerOn": 1670231947.4806788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231947.4806793, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231947.4806871, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231947.4806879, - "lastIP": "azo~{n~va~yk", - "deviceUUID": "3323e73f0e4215e8ba276cbb5329a84fd3c0fbab" - }, - "pb-IF4qVEsdVQ==": { - "display_string": [ - "\ue063FreakyArac" - ], - "profiles": [], - "name": "\ue063FreakyArac", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-30 10:46:12", - "registerOn": 1670231956.4936595, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231956.49366, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231956.4936674, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231956.493668, - "lastIP": "awj~}kba`~~kg", - "deviceUUID": "9fe67bb9f218160ed3e553457297526bfcec6a21" - }, - "pb-IF4xU2I9AQ==": { - "display_string": [ - "\ue020Jafarsadiqu369", - "\ue030Android48424246" - ], - "profiles": [], - "name": "\ue020Jafarsadiqu369", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-08 14:09:07", - "registerOn": 1670231962.4716892, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670231962.47169, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670231962.4716992, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670231962.4717002, - "lastIP": "azo~{n~~hgaja~", - "deviceUUID": "888501e43582b23844ca42842630113f077a4836" - }, - "pb-IF40UhVdVA==": { - "display_string": [ - "\ue063Deepak11De", - "\ue030Android47282468" - ], - "profiles": [], - "name": "\ue063Deepak11De", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-26 18:43:42", - "registerOn": 1670232172.3092148, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232172.3092153, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670322800.3348196, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322128.3098495, - "lastIP": "azo~zi~~abaig}", - "deviceUUID": "2d110f888b9c6f25e7c6c6a8749fadb88ab0fc02", - "cMsgCount": 0, - "lastMsgTime": 1670322800.3347573, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5QU04IXA==": { - "display_string": [ - "\ue030Android63833589" - ], - "profiles": [], - "name": "\ue030Android63833589", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 15:40:22", - "registerOn": 1670232299.9887512, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232299.988752, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232299.9887598, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232299.988761, - "lastIP": "b\u007fk~~adaafaie}", - "deviceUUID": "cc6729cd48dbaa8518fdbe9773b1da1b5db10d8e" - }, - "pb-JiNJARFdU0tCWFtDGEFVUVZLFUFbQlBH": { - "display_string": [ - "\ue020kannadapora" - ], - "profiles": [], - "name": "\ue020kannadapora", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-17 12:14:52", - "registerOn": 1670232351.0239007, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232351.0239012, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232351.0239096, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232351.0239108, - "lastIP": "azo~zh~yn~yk", - "deviceUUID": "120cdf633025fb510cdbec94ad24ac7ae954f149" - }, - "pb-IF4WVWgAEQ==": { - "display_string": [ - "\ue030Android47133090", - "\ue030Android48008737" - ], - "profiles": [], - "name": "\ue030Android47133090", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-31 16:35:33", - "registerOn": 1670232532.4790263, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232532.479027, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232532.479035, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232532.4790359, - "lastIP": "d}va\u007fm~~o`ao", - "deviceUUID": "50c60444043f819ee0cebbe1b760f052952a7c09" - }, - "pb-IF5SUkwMAg==": { - "display_string": [ - "\ue063RAGExLUINO", - "\ue030Android32286970" - ], - "profiles": [], - "name": "\ue063RAGExLUINO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-22 11:19:14", - "registerOn": 1670232565.737403, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232565.7374034, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315581.000924, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315581.0009255, - "lastIP": "dvvcyva\u007fm~~kc", - "deviceUUID": "540b5d7a29b251a9b29ecf49aacbf1ecafaaf618" - }, - "pb-IF4dU0xeEg==": { - "display_string": [ - "\ue063GreasyTrad" - ], - "profiles": [], - "name": "\ue020GreasyTrader56", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 13:26:32", - "registerOn": 1670232575.7362576, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232575.736258, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295991.2133746, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670299774.856268, - "lastIP": "awl~}j~y`~{k", - "deviceUUID": "316fd49e31dcf8ae2c73c39196bb81f875b8af94" - }, - "pb-IF4CVEMENw==": { - "display_string": [ - "\ue063MMHQ17" - ], - "profiles": [], - "name": "\ue063MMHQ17", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-14 12:53:46", - "registerOn": 1670232614.8934724, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232614.893473, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232614.8934844, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232614.8934853, - "lastIP": "awk~~oaaiaxva|", - "deviceUUID": "0161212ee288be8904751fe45194dafae3e91e8f" - }, - "pb-IF4BVWISAA==": { - "display_string": [ - "\ue020CapitalisticHeaven18" - ], - "profiles": [], - "name": "\ue020CapitalisticHeaven18", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-20 19:45:21", - "registerOn": 1670232730.2588408, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232730.2588413, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232730.2588499, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232730.2588506, - "lastIP": "aakhaih}va}m", - "deviceUUID": "36de0ba4f3fa18a835069f50f13f280e513e7527" - }, - "pb-IF4dVGU7Cw==": { - "display_string": [ - "\ue063marimol870", - "\ue030Android37966151" - ], - "profiles": [], - "name": "\ue063marimol870", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-08 19:37:42", - "registerOn": 1670232787.491768, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232787.4917684, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232787.4917767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232787.491778, - "lastIP": "dvva{`~~miaihx", - "deviceUUID": "1d45639efd616bced809e0a5f732f0a64885a9f5" - }, - "pb-JiNJARBZXENAX1tGFE5TUVNBEkFZRVJH": { - "display_string": [ - "\ue063Hackermemy", - "\ue030Android7331632" - ], - "profiles": [], - "name": "\ue063Hackermemy", - "isBan": false, - "isMuted": false, - "accountAge": "2016-10-17 17:53:02", - "registerOn": 1670232811.8246622, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232811.824663, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232811.824671, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232811.8246717, - "lastIP": "azo~{l~~oeajc\u007f", - "deviceUUID": "4a8e0db520f8c4343259a372627aedb7643f4240" - }, - "pb-IF4lVxkZUQ==": { - "display_string": [ - "\ue063hothareesh", - "\ue030Android27426054" - ], - "profiles": [], - "name": "\ue020hothareesh100", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-06 19:29:13", - "registerOn": 1670232814.937801, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232814.9378011, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670304332.1959348, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670304522.4524214, - "lastIP": "a\u007fn~}heaiawvaw`", - "deviceUUID": "21070610f22597cd241179ec831a3f4f6f2174f2", - "cMsgCount": 0, - "lastMsgTime": 1670304332.1958427, - "lastMsg": "Riya noobdaaa", - "cSameMsg": 0 - }, - "pb-IF4DU3MnLg==": { - "display_string": [ - "\ue020nonstopunstoble" - ], - "profiles": [], - "name": "\ue020nonstopunstoble", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 16:44:46", - "registerOn": 1670232842.6894054, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232842.689406, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232842.6894143, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670232842.689415, - "lastIP": "a\u007fk~}hdaiavvi|", - "deviceUUID": "584fbb1fa82c6aea3da298684c427bdc72168d30" - }, - "pb-IF5dU2IpIg==": { - "display_string": [ - "\ue030Android60843943" - ], - "profiles": [], - "name": "\ue030Android60843943", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-30 10:51:00", - "registerOn": 1670232924.9661102, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670232924.966111, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670232924.9661202, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670232974.8136418, - "lastIP": "a}j~zl~}haaah", - "deviceUUID": "19a1fd621f0b2bf3b67425b434571cfc2db9e785" - }, - "pb-IF4vUkUOXA==": { - "display_string": [ - "\ue020Asrofi143", - "\ue030Android57950775" - ], - "profiles": [], - "name": "\ue020Asrofi143", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-02 11:46:41", - "registerOn": 1670233027.4030156, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670233027.403016, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670233027.4030247, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670233027.4030254, - "lastIP": "b\u007fk~x`~~iiaic\u007f", - "deviceUUID": "474213b702bf837418cbf7faba5bc678fa2a6bb2" - }, - "pb-JiNJARBeXEtHWlZEFkBXXVJAF0JZQ1hG": { - "display_string": [ - "\ue063BalajiStar", - "\ue030Android6370317" - ], - "profiles": [], - "name": "\ue063BalajiStar", - "isBan": false, - "isMuted": false, - "accountAge": "2016-09-04 12:33:39", - "registerOn": 1670233336.4193757, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670233336.4193764, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670233336.4193847, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670233336.419386, - "lastIP": "a~h~}jdaaeaje", - "deviceUUID": "6cf109de66417ef6bf59abd01631a26488416538" - }, - "pb-IF5TU1EZJg==": { - "display_string": [ - "\ue063SneakyCyli" - ], - "profiles": [], - "name": "\ue063SneakyCyli", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 18:28:40", - "registerOn": 1670233692.9072526, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670233692.9072533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670233692.9072618, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670233692.907263, - "lastIP": "a|a~~keajd~vb{", - "deviceUUID": "76c972299e3339d7acc74cbe0de21bc585d46b03" - }, - "pb-IF5XVEI_Kg==": { - "display_string": [ - "\ue063Genos909" - ], - "profiles": [], - "name": "\ue063Genos909", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-21 15:32:41", - "registerOn": 1670233766.9479449, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670233766.947945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670233766.9479523, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670233766.9479535, - "lastIP": "a\u007fn~~abakfajaw", - "deviceUUID": "9becef1c66dc1d720ac5e717c4dfc2a8fa59640b", - "cMsgCount": 0, - "lastMsgTime": 1670234566.625439, - "lastMsg": "bye", - "cSameMsg": 0 - }, - "pb-IF4sUhk4JA==": { - "display_string": [ - "\ue020MistakenNinja57588", - "\ue063UselessGuy", - "\ue030Android47506985", - "\ue030Android54715214" - ], - "profiles": [], - "name": "\ue063UselessGuy", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-18 13:29:29", - "registerOn": 1670233970.7107036, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670233970.7107043, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330435.991491, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670332183.576174, - "lastIP": "a\u007fk~~`aajbyva|h", - "deviceUUID": "8a637db1124ccf92bee0f3345f362f060d71afc5", - "cMsgCount": 0, - "lastMsgTime": 1670330722.9647627, - "lastMsg": "lag", - "cSameMsg": 0 - }, - "pb-IF4sU2kaLg==": { - "display_string": [ - "\ue063JauntyJour" - ], - "profiles": [], - "name": "\ue063JauntyJour", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-05 18:18:45", - "registerOn": 1670234074.3004742, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234074.3004751, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234074.3004847, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234074.3004854, - "lastIP": "awj~ya~~jfaic", - "deviceUUID": "e75309a808347eeaefab4a2c953f36377ac2c203" - }, - "pb-IF4qUhZcEA==": { - "display_string": [ - "\ue063AssortedSy" - ], - "profiles": [], - "name": "\ue063AssortedSy", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-30 08:41:53", - "registerOn": 1670234192.612451, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234192.6124518, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234192.6124678, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670243669.3451233, - "lastIP": "a|n~~mhai~|m", - "deviceUUID": "304e094248ca9109b8068e62ade737cbcaa43b98", - "cMsgCount": 0, - "lastMsgTime": 1670244145.8924348, - "lastMsg": "lick my balls", - "cSameMsg": 0 - }, - "pb-IF4GU1AiNw==": { - "display_string": [ - "\ue063ArableRail" - ], - "profiles": [], - "name": "\ue063ArableRail", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 02:08:07", - "registerOn": 1670234202.9001796, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234202.9001803, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234202.9001892, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234202.90019, - "lastIP": "azo~|m~{k~wk", - "deviceUUID": "b0a02c1298b195db2882e779f825fbc15b2c3387" - }, - "pb-IF4nUhQNAw==": { - "display_string": [ - "\ue020Dragonkozhi", - "\ue030Android46699176" - ], - "profiles": [], - "name": "\ue020Dragonkozhi", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-22 22:04:25", - "registerOn": 1670234242.7888577, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234242.7888587, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234242.7888684, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234242.7888694, - "lastIP": "a\u007fn~}hfaja{vawm", - "deviceUUID": "ae868456774656cf785b5122781b014518715be9" - }, - "pb-IF5dU00RPw==": { - "display_string": [ - "\ue020SympatheticPromise22" - ], - "profiles": [], - "name": "\ue020SympatheticPromise22", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 11:09:45", - "registerOn": 1670234258.8802338, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234258.8802342, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234258.8802423, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234258.8802433, - "lastIP": "bxvf~va{va}m", - "deviceUUID": "7a01d8b3a3c2e937a1941673055fd9b6e3961ba0" - }, - "pb-IF5TU1EnLg==": { - "display_string": [ - "\ue063OvertSubje" - ], - "profiles": [], - "name": "\ue063OvertSubje", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 13:41:34", - "registerOn": 1670234341.1950166, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234341.195017, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234341.1950245, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234341.1950252, - "lastIP": "azo~{a~}lcajaz", - "deviceUUID": "c04fd3b3117015d5805929f760c462aa173b4aa6" - }, - "pb-IF4xU04eUw==": { - "display_string": [ - "\ue063UncheckedF", - "\ue030Android63163881" - ], - "profiles": [], - "name": "\ue063UncheckedF", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 14:02:18", - "registerOn": 1670234357.1799545, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234357.179955, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346988.3629231, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346988.3629246, - "lastIP": "azo~|j~}hiajbz", - "deviceUUID": "fe67a3e8127ff9b9110a971159e051d17f7329dc" - }, - "pb-IF4uVU4PKQ==": { - "display_string": [ - "\ue020AWMkingVB" - ], - "profiles": [], - "name": "\ue020AWMkingVB", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-04 08:49:29", - "registerOn": 1670234361.2587607, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234361.2587612, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316402.982529, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316402.9825308, - "lastIP": "a\u007fn~}j`aidzvb\u007fm", - "deviceUUID": "\u0015\u0003\u000bQX\u0015V\u000fT\u0002\u0015\u0007Y\u0003WLW\\VYDPYSXF" - }, - "pb-IF4cU00cCQ==": { - "display_string": [ - "\ue063EasyComple" - ], - "profiles": [], - "name": "\ue063EasyComple", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 16:48:04", - "registerOn": 1670234690.8938744, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234690.8938746, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670335003.2324574, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670334950.2500994, - "lastIP": "a\u007fk~wm~vvb\u007fj", - "deviceUUID": "c6935ed0cba45b40db30a2ef1324397ce33e9626", - "cMsgCount": 0, - "lastMsgTime": 1670335579.1368659, - "lastMsg": "we are losing because oir player are offline ", - "cSameMsg": 0 - }, - "pb-IF5UVXUlKQ==": { - "display_string": [ - "\ue063Prevalent6", - "\ue030Android63959074", - "\ue030Android63959349", - "\ue030Android63958717", - "\ue030Android63958731" - ], - "profiles": [], - "name": "\ue063Prevalent6", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-18 15:22:50", - "registerOn": 1670234774.9324722, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670234774.9324732, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670234774.9324815, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670234774.9324827, - "lastIP": "a\u007fn~~agaiayvayi", - "deviceUUID": "da48e42a2ed2caa30161500ba2c122298cc59e97" - }, - "pb-IF4iVWQ_Bg==": { - "display_string": [ - "\ue020IpnRagul752" - ], - "profiles": [], - "name": "\ue020IpnRagul752", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-29 21:52:02", - "registerOn": 1670235012.8449953, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235012.8449957, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336016.0226274, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336016.0226288, - "lastIP": "azo~{a~~mfaiez", - "deviceUUID": "4db0b57b5ad7b1b05bd1794f41ff7dc92e916793" - }, - "pb-IF4hDRld": { - "display_string": [ - "\ue020SubmissiveRunner2674", - "\ue030Android22951133" - ], - "profiles": [], - "name": "\ue020SubmissiveRunner2674", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-14 12:15:57", - "registerOn": 1670235155.3033073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235155.303308, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235155.3033173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670235155.3033183, - "lastIP": "bxvf|vezvcv", - "deviceUUID": "3bf5795d4a2165a83642645c5b64290930730723" - }, - "pb-IF4HU0cMAw==": { - "display_string": [ - "\ue020iQninjakilaryashyash" - ], - "profiles": [], - "name": "\ue020iQninjakilaryashyash", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-17 20:46:25", - "registerOn": 1670235212.5736802, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235212.5736809, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235212.5736895, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670235212.5736902, - "lastIP": "azo~|`~}kham`", - "deviceUUID": "bd0054a8422231478b2af7cb5c6b5475cfd91d37" - }, - "pb-IF4hU0oSFw==": { - "display_string": [ - "\ue063Preventab2" - ], - "profiles": [], - "name": "\ue063Preventab2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 09:52:34", - "registerOn": 1670235231.6770694, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235231.67707, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329464.3542664, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670335205.3804848, - "lastIP": "a\u007fn~}ifajdvvb~o", - "deviceUUID": "94ca35ce05e84c3d65e04a6d37510b561ca78e00" - }, - "pb-IF5SU1EHPw==": { - "display_string": [ - "\ue030Android63989539" - ], - "profiles": [], - "name": "\ue030Android63989539", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 15:48:42", - "registerOn": 1670235559.9395788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235559.9395795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235559.9395883, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670236656.5211272, - "lastIP": "b}k~~ohaj`vvb\u007fo", - "deviceUUID": "ad542397f4b0d89c6fb7139d139e36ccd1777333" - }, - "pb-IF4UU0hfDQ==": { - "display_string": [ - "\ue020MonoCaprice47" - ], - "profiles": [], - "name": "\ue020MonoCaprice47", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 12:16:56", - "registerOn": 1670235815.705764, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670235815.7057648, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670235815.7057729, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670235815.7057736, - "lastIP": "azj~zo~~agaja~", - "deviceUUID": "a234e83fc5f176fbc15b92464be2bc69d223c62a" - }, - "pb-IF4qU00cHA==": { - "display_string": [ - "\ue030Android63904390" - ], - "profiles": [], - "name": "\ue030Android63904390", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 01:19:17", - "registerOn": 1670236202.318054, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236202.3180544, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236202.318063, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670238455.452045, - "lastIP": "dvvcyvb|k~}lb", - "deviceUUID": "c171afd26514f79cf389a37613dc2ad1d6f7a295" - }, - "pb-IF4NVWQzBg==": { - "display_string": [ - "\ue063Imaginabl8", - "\ue030Android47364094" - ], - "profiles": [], - "name": "\ue063Imaginabl8", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-03 19:39:08", - "registerOn": 1670236240.1274066, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236240.1274073, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332726.5356693, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332726.5356708, - "lastIP": "azo~|k~~heaigz", - "deviceUUID": "97937c4dbf0ff0f0d4572a3ad7086f746366ca83" - }, - "pb-IF4PI1Q7": { - "display_string": [ - "\ue020GeekyAardvark72483", - "\ue030Android41686991" - ], - "profiles": [], - "name": "\ue020GeekyAardvark72483", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-21 10:27:58", - "registerOn": 1670236318.4871345, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236318.487135, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236318.4871445, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236318.4871454, - "lastIP": "dvvc{vb~o~~`g", - "deviceUUID": "d3b799a9a81da4a861b3fe166ad469acc72c089b" - }, - "pb-IF4tU04mMg==": { - "display_string": [ - "\ue020NonOp43" - ], - "profiles": [], - "name": "\ue020NonOp43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-23 11:37:50", - "registerOn": 1670236339.502523, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236339.5025232, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236339.5025332, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236339.502534, - "lastIP": "f~vi\u007fvc}vb~o", - "deviceUUID": "cf0c8f5339e85f589f66274676c45eaafc5a451e" - }, - "pb-IF4-U04OIw==": { - "display_string": [ - "\ue020KimchiWawa2769" - ], - "profiles": [], - "name": "\ue020KimchiWawa2769", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 17:32:47", - "registerOn": 1670236464.1042817, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236464.1042821, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236464.1042907, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236464.104292, - "lastIP": "f~vfajczva{m", - "deviceUUID": "38672c47764a1a4c30fd1659d37dee5911977ea8", - "cMsgCount": 0, - "lastMsgTime": 1670236611.6556265, - "lastMsg": "Im lagg", - "cSameMsg": 0 - }, - "pb-IF42VW5aNA==": { - "display_string": [ - "\ue020AbjectLimb21", - "\ue030Android47379546" - ], - "profiles": [], - "name": "\ue030Android47379546", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-13 12:07:08", - "registerOn": 1670236486.1613517, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236486.1613522, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236486.16136, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670244839.462826, - "lastIP": "dvvc{vb{j~}li", - "deviceUUID": "49554461391413791e81a2011f0e0a23232a4925", - "cMsgCount": 0, - "lastMsgTime": 1670237148.3267462, - "lastMsg": "no", - "cSameMsg": 0 - }, - "pb-IF5WU20CLA==": { - "display_string": [ - "\ue063IdyllicTri" - ], - "profiles": [], - "name": "\ue063IdyllicTri", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 01:33:05", - "registerOn": 1670236617.6280942, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236617.628095, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236617.6281025, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236617.6281037, - "lastIP": "a\u007fj~ym~{vax`", - "deviceUUID": "f658f95a80e699ee6fa7352ff02ded6caa4a82b2" - }, - "pb-IF4tU0cOBg==": { - "display_string": [ - "\ue020sunil678p" - ], - "profiles": [], - "name": "\ue020sunil678p", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 12:19:42", - "registerOn": 1670236686.0805795, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236686.08058, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236686.0805883, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236686.0805893, - "lastIP": "azj~z`~|m~~jb", - "deviceUUID": "268b5102ca182ff4a956fc9ec1b961a66bb7f612" - }, - "pb-IF4KUnEmVg==": { - "display_string": [ - "\ue020DowncastCruise28" - ], - "profiles": [], - "name": "\ue020DowncastCruise28", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-04 09:57:41", - "registerOn": 1670236767.6040006, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236767.604001, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670254334.6349177, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670255998.405253, - "lastIP": "azo~{i~}leajd", - "deviceUUID": "\u0015Y\u000bY\u0003\u0016\u0007^U\u0005FVYS\u0005\u0016\u0007\\RPBVUUW", - "cMsgCount": 0, - "lastMsgTime": 1670254355.4051914, - "lastMsg": "fight", - "cSameMsg": 0 - }, - "pb-IF4xU0o7Ug==": { - "display_string": [ - "\ue020VvFightVv", - "\ue020SecondarySuspense43" - ], - "profiles": [], - "name": "\ue020VvFightVv", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 22:50:19", - "registerOn": 1670236826.8973343, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236826.8973348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341261.3616738, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341261.361675, - "lastIP": "hzva{h~{vb\u007fm", - "deviceUUID": "\u0015UXRWL\u0007\\YS\u0011Y\u000ePX\u0016\u0007XRUEWUPTC" - }, - "pb-IF4FU2wEUQ==": { - "display_string": [ - "\ue020GrossestHothead39", - "\ue030Android60313961" - ], - "profiles": [], - "name": "\ue020GrossestHothead39", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-14 10:47:36", - "registerOn": 1670236938.9873567, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670236938.9873571, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670236938.987366, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670236938.987367, - "lastIP": "azo~zi~~aeaiax", - "deviceUUID": "\u0015YXW\u0004C\u0002]\u0003X\u0011Q\u000f\u0005X\u0015\u0003\\VXFP]VVES" - }, - "pb-IF4QU0ofBg==": { - "display_string": [ - "\ue030Android63800944" - ], - "profiles": [], - "name": "\ue030Android63800944", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 10:26:44", - "registerOn": 1670237026.2896433, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670237026.289644, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670237026.2896533, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670237026.2896543, - "lastIP": "a\u007fk~|`~}heaicz", - "deviceUUID": "b8c55e7b68fa4c196f17b0076e4fc9c1e716b4aa" - }, - "pb-IF4MU04zVw==": { - "display_string": [ - "\ue020noobC\u00f9i", - "\ue020BaBByDoGG", - "\ue063BoilingLam", - "\ue030Android60239451" - ], - "profiles": [], - "name": "\ue030Android60239451", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 13:26:46", - "registerOn": 1670237044.3041856, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670237044.304186, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670237044.304193, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670237044.3041937, - "lastIP": "a{vavi~}khai`", - "deviceUUID": "878198ed9e6a85430533cca240979720ea6c44de" - }, - "pb-IF4mU0MaMw==": { - "display_string": [ - "\ue020GildedCarp34577" - ], - "profiles": [], - "name": "\ue020GildedCarp34577", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-26 14:54:58", - "registerOn": 1670237124.9778595, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670237124.9778602, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670237124.9778686, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670237124.9778695, - "lastIP": "d}va\u007f`~~afa`c", - "deviceUUID": "04307182310890696a96730e12972d1abc5e9f24" - }, - "pb-IF4rU1AuNQ==": { - "display_string": [ - "\ue030Android63988326" - ], - "profiles": [], - "name": "\ue030Android63988326", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 09:29:46", - "registerOn": 1670237178.8360128, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670237178.8360133, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670237178.8360214, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670242887.0365496, - "lastIP": "b}k~~`fajb}vb}l", - "deviceUUID": "2cdfeb1dcc28a1c5fd51ac3fa2701cebc83a4036" - }, - "pb-IF4SUhJZPw==": { - "display_string": [ - "\ue020UtilitarianDose42", - "\ue063UndamagedM", - "\ue020ConfusedExcitement48", - "\ue030Android55601587", - "\ue030Android53857852" - ], - "profiles": [], - "name": "\ue030Android55601587", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-12 00:18:34", - "registerOn": 1670238541.2583952, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670238541.2583957, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329693.158495, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329693.158522, - "lastIP": "az`~yj~}m~~n`", - "deviceUUID": "\u0015\u0002_\u0005\u0004G\u0005YU" - }, - "pb-IF5XU1IiAw==": { - "display_string": [ - "\ue020wardrago666" - ], - "profiles": [], - "name": "\ue020wardrago666", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 16:40:29", - "registerOn": 1670238700.8088279, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670238700.8088286, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670238700.8088367, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670238700.8088377, - "lastIP": "b}k~}jhajb{vg~", - "deviceUUID": "065b8e8159b9b343a9ced6977900de8a0ba3e4df" - }, - "pb-IF4RU1AhUg==": { - "display_string": [ - "\ue063OutrightRo" - ], - "profiles": [], - "name": "\ue063OutrightRo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 11:06:41", - "registerOn": 1670238708.887067, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670238708.8870676, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670238708.8870754, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670238708.8870761, - "lastIP": "azo~zi~za~yh", - "deviceUUID": "e9fe44f966e904574f6c6f75d2fa08f3efce1826" - }, - "pb-IF5cVEMTVA==": { - "display_string": [ - "\ue063kartikisco", - "\ue030Android46496233" - ], - "profiles": [], - "name": "\ue063kartikisco", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-29 21:18:29", - "registerOn": 1670238809.474966, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670238809.4749665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670238809.4749749, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670238809.4749758, - "lastIP": "a\u007fk~~kgaadaid|", - "deviceUUID": "23b185f338c8173bee0b6d453d7fd3c8aa19fd3a" - }, - "pb-IF4xVEJcUA==": { - "display_string": [ - "\ue020Darshan152005" - ], - "profiles": [], - "name": "\ue020Darshan152005", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-02 17:45:46", - "registerOn": 1670238860.6113675, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670238860.611368, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670238860.6113772, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670238860.611378, - "lastIP": "a}j~~oaajbajby", - "deviceUUID": "aa0126a57a3bcfdd5052880f735645c0a377d161" - }, - "pb-IF4nU089Jw==": { - "display_string": [ - "\ue020AntisocialDisorder02" - ], - "profiles": [], - "name": "\ue020AntisocialDisorder02", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 22:06:52", - "registerOn": 1670239048.0979817, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239048.0979822, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670239048.0979898, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670241264.5604365, - "lastIP": "a~h~}jgajhalb", - "deviceUUID": "455abeadb330fc3ecd37b35bd714d48484b0e25e" - }, - "pb-IF4SVUYgUg==": { - "display_string": [ - "\ue063ProperExti" - ], - "profiles": [], - "name": "\ue063ProperExti", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-20 17:03:18", - "registerOn": 1670239258.0657077, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239258.0657086, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670239258.065717, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670239258.0657177, - "lastIP": "azo~{`~xj~~ig", - "deviceUUID": "55652ffbfd31065e34c06710016dfdd45fc0816b" - }, - "pb-IF48UlAAFA==": { - "display_string": [ - "\ue020JocularVigor9" - ], - "profiles": [], - "name": "\ue020JocularVigor9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-17 19:38:55", - "registerOn": 1670239343.3047156, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239343.304716, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670240326.5726473, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670239583.7933888, - "lastIP": "azj~zo~}ihak", - "deviceUUID": "605d81fa49723b7ff58b516f1ba6d2d5a70adec3", - "cMsgCount": 0, - "lastMsgTime": 1670240326.5723119, - "lastMsg": "Jay Shree Ram", - "cSameMsg": 0 - }, - "pb-IF4xU08zFQ==": { - "display_string": [ - "\ue063BelovedEmi" - ], - "profiles": [], - "name": "\ue063BelovedEmi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 16:39:02", - "registerOn": 1670239872.1218042, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239872.121805, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670239872.121814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670239872.121815, - "lastIP": "dvva{l~~hcaig~", - "deviceUUID": "2d9f4505d9d092cc0f40a4753e6466845b633f1d" - }, - "pb-IF4TU08kKQ==": { - "display_string": [ - "\ue063PYGREED" - ], - "profiles": [], - "name": "\ue020PYGREED", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 16:25:27", - "registerOn": 1670239874.1421275, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239874.1421282, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316237.3683982, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316237.3683996, - "lastIP": "dvva{l~|vaxj", - "deviceUUID": "aa039d9112534ea4fc879a81cfd6c76a4d70c700" - }, - "pb-IF4OVU4aUw==": { - "display_string": [ - "\ue020TheoreticPit28", - "\ue030Android63496708" - ], - "profiles": [], - "name": "\ue020TheoreticPit28", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-04 12:48:28", - "registerOn": 1670239912.2592387, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239912.2592392, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254120.21547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254120.2154713, - "lastIP": "dxva~vb{a~za", - "deviceUUID": "449105d0d850748e54202bfc5b7057e1cdb0a7b6" - }, - "pb-IF4FU0cKFQ==": { - "display_string": [ - "\ue063Chitranshp" - ], - "profiles": [], - "name": "\ue063Chitranshp", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-18 20:50:32", - "registerOn": 1670239964.4407094, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670239964.4407098, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670239964.4407184, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670239964.4407194, - "lastIP": "dxvazva|va{m", - "deviceUUID": "83def38f86f641bcea9a98c2c9986127cdd6dc48" - }, - "pb-IF5UU09YMg==": { - "display_string": [ - "\ue063Niral" - ], - "profiles": [], - "name": "\ue063Niral", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 14:53:11", - "registerOn": 1670240221.7544208, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240221.7544212, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240221.7544305, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670245547.2308533, - "lastIP": "a\u007fn~~acajdyvavo", - "deviceUUID": "c0894bd95c1edfe41435513d90aa86c885bd7a02" - }, - "pb-IF4xU3EoKg==": { - "display_string": [ - "\ue063ImplicitWa" - ], - "profiles": [], - "name": "\ue063ImplicitWa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 20:00:47", - "registerOn": 1670240330.189063, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240330.189064, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337354.4820144, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337354.4820154, - "lastIP": "bxvgzvb\u007fn~}i", - "deviceUUID": "622abc22427515681d4999f4a989d660bdf66b7d" - }, - "pb-IF4sU09fVw==": { - "display_string": [ - "\ue063RyoutaMina" - ], - "profiles": [], - "name": "\ue063RyoutaMina", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 15:49:42", - "registerOn": 1670240340.2109647, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240340.210965, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240340.2109756, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670240340.2109766, - "lastIP": "dvva{m~}kcai", - "deviceUUID": "e4b693ca509bd08d996e5e234401270a71c2b08d" - }, - "pb-IF5QU0cfHA==": { - "display_string": [ - "\ue020R\u016a\u016aA\u016a\u016aJ" - ], - "profiles": [], - "name": "\ue020R\u016a\u016aA\u016a\u016aJ", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 17:18:06", - "registerOn": 1670240536.169932, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240536.1699324, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240536.1699417, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670240536.1699426, - "lastIP": "a}j~~naaihxve\u007f", - "deviceUUID": "14324d541ad2d13ddf0a2a6efcea81c863ce78a8" - }, - "pb-IF4cU0haIw==": { - "display_string": [ - "\ue030Android63695613" - ], - "profiles": [], - "name": "\ue030Android63695613", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-19 10:23:09", - "registerOn": 1670240553.2885947, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240553.2885952, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240553.2886045, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670240553.2886055, - "lastIP": "a\u007fn~}i`aig\u007fvcw", - "deviceUUID": "d38e1d689029b575879cb17917ea9000d7eff65f" - }, - "pb-IF4-U004UQ==": { - "display_string": [ - "\ue020MaleYard54" - ], - "profiles": [], - "name": "\ue020MaleYard54", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 18:45:59", - "registerOn": 1670240584.080288, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240584.080289, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670240584.0802975, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670240639.9311352, - "lastIP": "a~m~~ndaacaihw", - "deviceUUID": "29a206a58e0985133fbd54730eea0b5f07add29b" - }, - "pb-IF4HU00IVQ==": { - "display_string": [ - "\ue020DescriptiveBind19" - ], - "profiles": [], - "name": "\ue020DescriptiveBind19", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 18:10:42", - "registerOn": 1670240709.5818062, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670240709.581807, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335127.1030688, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335127.1030703, - "lastIP": "azo~|a~~abaiev", - "deviceUUID": "d669d18ccd3aa066d714b5f57b79945a7c11ded1" - }, - "pb-IF4nUmhfKA==": { - "display_string": [ - "\ue020SystemicAlbum16" - ], - "profiles": [], - "name": "\ue020SystemicAlbum16", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-21 23:06:22", - "registerOn": 1670241042.9810777, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241042.9810784, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241042.981088, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241042.981089, - "lastIP": "dzvbzi~~m~~j", - "deviceUUID": "214e63d0ab077bfb487eceda24bfa801afe228e5" - }, - "pb-IF4DU01YIA==": { - "display_string": [ - "\ue030PC607883" - ], - "profiles": [], - "name": "\ue030PC607883", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 16:27:37", - "registerOn": 1670241094.1723506, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241094.172351, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259019.3771942, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670259778.1752436, - "lastIP": "azo~zi~|vaxl", - "deviceUUID": "54b376588aefe7fc40893eeb6f9c39d5fb227bee" - }, - "pb-IF4jU0ckCg==": { - "display_string": [ - "\ue030Android63647111" - ], - "profiles": [], - "name": "\ue030Android63647111", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-12 11:37:36", - "registerOn": 1670241097.1638308, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241097.1638312, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241097.163841, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241097.163842, - "lastIP": "azo~|j~}liaii~", - "deviceUUID": "\u0015W\tY\u0007@\u0005XX" - }, - "pb-IF4rUkMeIg==": { - "display_string": [ - "\ue063NotableDi2" - ], - "profiles": [], - "name": "\ue063NotableDi2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-26 20:42:07", - "registerOn": 1670241326.166427, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241326.1664274, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241326.1664352, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241326.1664362, - "lastIP": "azo~{l~~adaic\u007f", - "deviceUUID": "578b9d58773f4004e74777a5cc5d9fcf415360be" - }, - "pb-IF5SNE4G": { - "display_string": [ - "\ue020KAIPULLA1111", - "\ue030Android20527637" - ], - "profiles": [], - "name": "\ue020KAIPULLA1111", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-12 19:23:48", - "registerOn": 1670241378.3315203, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241378.3315208, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241378.3315287, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241378.33153, - "lastIP": "azo~zi~~aiaicx", - "deviceUUID": "0d794e215c54de11b6d82aad5e657587ea066e96" - }, - "pb-IF4NU0YjJw==": { - "display_string": [ - "\ue030Android63657181" - ], - "profiles": [], - "name": "\ue030Android63657181", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-13 20:44:53", - "registerOn": 1670241414.5708404, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241414.5708408, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241414.570848, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241414.570849, - "lastIP": "a\u007fk~~haaia~vcx", - "deviceUUID": "3d18ff4455f1702ae1231b673cd82d72ce3b11aa" - }, - "pb-IF4dCnou": { - "display_string": [ - "\ue063RohanK" - ], - "profiles": [], - "name": "\ue063RohanK", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-21 16:57:49", - "registerOn": 1670241484.7061267, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241484.7061272, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320198.1075735, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670328625.4222271, - "lastIP": "azo~{`~~nfaidv", - "deviceUUID": "1f02f65342285a5bef6c7f453fa6010cdfc56c6b", - "cMsgCount": 0, - "lastMsgTime": 1670330423.3741438, - "lastMsg": "should have kept mines", - "cSameMsg": 0 - }, - "pb-IF4VU0taAA==": { - "display_string": [ - "\ue063FalseConte", - "\ue030Android63802649", - "\ue030Android63802632", - "\ue030Android38178062", - "\ue030Android63802519" - ], - "profiles": [], - "name": "\ue063FalseConte", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 10:15:00", - "registerOn": 1670241572.0944972, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241572.0944974, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241572.0945053, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241572.094506, - "lastIP": "azo~{l~~laaji", - "deviceUUID": "77c046a2d83abc276494b603097307327e1d3527" - }, - "pb-IF4VUhAKEg==": { - "display_string": [ - "\ue020FinestCurtain41", - "\ue063Avishek", - "\ue063InhumaneDa", - "\ue030Android63827191", - "\ue030Android63827276" - ], - "profiles": [], - "name": "\ue063InhumaneDa", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-06 11:44:58", - "registerOn": 1670241577.0625904, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670344863.7995179, - "totaltimeplayer": 0, - "warnCount": 4, - "lastWarned": 1670344863.798438, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670344764.8697555, - "lastIP": "dvvcxvezvayn", - "deviceUUID": "e9567f8cdcecd5905230bff15b7ca74ddeef43b9", - "cMsgCount": 0, - "lastMsgTime": 1670344863.7983797, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5XU08jLA==": { - "display_string": [ - "\ue020itsjustine15" - ], - "profiles": [], - "name": "\ue020itsjustine15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 06:27:28", - "registerOn": 1670241740.605581, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241740.6055815, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328296.3015435, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328296.301545, - "lastIP": "a~h~zl~~`haid{", - "deviceUUID": "1dcaa19eab7a2e169cdd1ca1817839106d7f312c" - }, - "pb-IF5RU1EtMg==": { - "display_string": [ - "\ue063nikitamale" - ], - "profiles": [], - "name": "\ue063nikitamale", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 15:07:52", - "registerOn": 1670241780.8229892, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241780.8229902, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241780.822998, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670241821.689485, - "lastIP": "b}k~}keaie~vb}i", - "deviceUUID": "8cb9c1c51ed2bda50ed0ce9c9ace1f1e01dd2210" - }, - "pb-IF49U08JVw==": { - "display_string": [ - "\ue030Android63983125" - ], - "profiles": [], - "name": "\ue030Android63983125", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 13:37:47", - "registerOn": 1670241858.120165, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241858.1201656, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670241858.1201727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241858.1201742, - "lastIP": "b}j~~jgai`\u007fvb\u007fj", - "deviceUUID": "e9a4e3b60ca7693c34713f33ff3c76d2cc42b7bf" - }, - "pb-IF41VUYgLw==": { - "display_string": [ - "\ue020OptimusPrime1517", - "\ue030Android55005911", - "\ue030VR228966" - ], - "profiles": [], - "name": "\ue020OptimusPrime1517", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-19 14:46:44", - "registerOn": 1670241883.2824998, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670244608.374289, - "totaltimeplayer": 0, - "warnCount": 4, - "lastWarned": 1670244608.37278, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670241883.2825096, - "lastIP": "a\u007fn~~aeao~~nf", - "deviceUUID": "e119a4b70be6af0d77b49b7a55af08596176ab2b", - "cMsgCount": 0, - "lastMsgTime": 1670244608.372964, - "lastMsg": "Lavdi sai marnar majhyakadun", - "cSameMsg": 0 - }, - "pb-IF4TVWEnIg==": { - "display_string": [ - "\ue063bijodicarp" - ], - "profiles": [], - "name": "\ue063bijodicarp", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-10 10:34:04", - "registerOn": 1670241951.4551165, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670241951.455117, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308579.690884, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308579.6908853, - "lastIP": "evvi}vd~vi~", - "deviceUUID": "248ee8d171acc33d75759da6db55fddeb165ce0d" - }, - "pb-IF4HU0IIEQ==": { - "display_string": [ - "\ue020BabyboyBro" - ], - "profiles": [], - "name": "\ue020BabyboyBro", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-17 11:49:12", - "registerOn": 1670242198.595753, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242198.5957534, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242198.595761, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242198.5957623, - "lastIP": "d|vb}l~{k~zj", - "deviceUUID": "5476cece606b2ac33114ea8efaf2f665d2edd824", - "cMsgCount": 0, - "lastMsgTime": 1670242343.3485272, - "lastMsg": "why", - "cSameMsg": 0 - }, - "pb-IF41UxkjMg==": { - "display_string": [ - "\ue030Android60845640" - ], - "profiles": [], - "name": "\ue030Android60845640", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-30 12:43:50", - "registerOn": 1670242447.848656, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670244658.064445, - "totaltimeplayer": 0, - "warnCount": 4, - "lastWarned": 1670244658.0627449, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670244150.0724747, - "lastIP": "a\u007fn~}iaai`|vb\u007fj", - "deviceUUID": "\u0015W\tVVMQ\u000bX\u0004\u0015XTYW\u0011R\\YWBRYXXMT", - "cMsgCount": 0, - "lastMsgTime": 1670244658.0626528, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5VU0UzJg==": { - "display_string": [ - "\ue063dhanushmes" - ], - "profiles": [], - "name": "\ue063dhanushmes", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-21 10:51:52", - "registerOn": 1670242494.84773, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242494.8477304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261786.7980652, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261786.7980664, - "lastIP": "dzva~m~vi~}ib", - "deviceUUID": "8231e183c8813509c0395d1a542c43e471798af9" - }, - "pb-IF40U08BJg==": { - "display_string": [ - "\ue063gianplayz0" - ], - "profiles": [], - "name": "\ue063gianplayz0", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 17:32:56", - "registerOn": 1670242548.031583, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242548.0315838, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242548.0315921, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242548.0315933, - "lastIP": "a\u007fk~~mea`haie\u007f", - "deviceUUID": "f6c59ed500881a17bc2fb4ebc52a34451bd8420c" - }, - "pb-IF41U00RFA==": { - "display_string": [ - "\ue030Android63922851" - ], - "profiles": [], - "name": "\ue030Android63922851", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 19:43:14", - "registerOn": 1670242562.8125694, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242562.8125703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242562.81258, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242562.8125808, - "lastIP": "azo~{a~}hbaifv", - "deviceUUID": "756045cb98c989aa61ac5e1a1260f07b7e56d119" - }, - "pb-IF4jVGoTCg==": { - "display_string": [ - "\ue063NarutoUsum", - "\ue030Android25643383" - ], - "profiles": [], - "name": "\ue063NarutoUsum", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-12 13:53:20", - "registerOn": 1670242568.1757827, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242568.1757834, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670302104.3211315, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670302104.321133, - "lastIP": "a\u007fk~}ibaidyvcy", - "deviceUUID": "ae34473eb16306b256ce80675c45dfe85340d89d" - }, - "pb-IF4pVVEOCA==": { - "display_string": [ - "\ue020\u1d9c\u1d3f\u1d2c\u1dbb\u1d5e\ud835\udd3b\ud835\udd63\ud835\udd52\ud835\udd5c\ud835\udd56\ud835\udd5f" - ], - "profiles": [], - "name": "\ue020\u1d9c\u1d3f\u1d2c\u1dbb\u1d5e\ud835\udd3b\ud835\udd63\ud835\udd52\ud835\udd5c\ud835\udd56\ud835\udd5f", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-17 09:19:31", - "registerOn": 1670242710.7156901, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242710.715691, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242710.7157013, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242710.7157025, - "lastIP": "azo~|m~y`~~jf", - "deviceUUID": "80767a74592447fa70b68a8b2e0ad164a147ce0d" - }, - "pb-IF43VFENFg==": { - "display_string": [ - "\ue020WishyWashyTinge10" - ], - "profiles": [], - "name": "\ue020WishyWashyTinge10", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-28 12:59:53", - "registerOn": 1670242837.191372, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670242837.1913726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670242837.1913803, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670242837.191381, - "lastIP": "a\u007fk~}hfaic{vax`", - "deviceUUID": "7ad2a7ffb4cfbcfd57b9d138a7ccc77daa5141c4" - }, - "pb-IF4UU1AkAw==": { - "display_string": [ - "\ue063ExpensiveM" - ], - "profiles": [], - "name": "\ue063ExpensiveM", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 14:25:42", - "registerOn": 1670243048.9499106, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243048.9499109, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243048.9499197, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243048.9499204, - "lastIP": "a}j~~o`an`aie|", - "deviceUUID": "446c02955fe83399c305241c9ce56e3d1564ae71" - }, - "pb-IF5SUno-Ug==": { - "display_string": [ - "\ue063ihateu234" - ], - "profiles": [], - "name": "\ue063ihateu234", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-05 12:13:24", - "registerOn": 1670243178.5593963, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670244339.7711086, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670377507.8467705, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670378971.697964, - "lastIP": "dxvbvvaxm~~oe", - "deviceUUID": "8cdff6729d518be49ee0573acb0cb19b6c5a4aef", - "cMsgCount": 1, - "lastMsgTime": 1670379281.6700165, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4KVVUnJw==": { - "display_string": [ - "\ue020UncouthScenery25" - ], - "profiles": [], - "name": "\ue020UncouthScenery25", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-04 12:14:20", - "registerOn": 1670243187.609319, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243187.6093197, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243187.6093278, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243187.609329, - "lastIP": "a\u007fn~}i`ajbxva{h", - "deviceUUID": "39f230f5709313bac5034e4bc5c429ce8e44fb3c" - }, - "pb-IF4KU09dJg==": { - "display_string": [ - "\ue020FreezingTriangle142" - ], - "profiles": [], - "name": "\ue020FreezingTriangle142", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 21:05:03", - "registerOn": 1670243290.1733103, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243290.173311, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243290.1733193, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243290.1733205, - "lastIP": "a\u007fn~~aeakbala", - "deviceUUID": "d9b12a8cd1d61082c3006a955160103c6b22b562" - }, - "pb-IF4lVWYjIw==": { - "display_string": [ - "\ue020TBHFEVER" - ], - "profiles": [], - "name": "\ue020TBHFEVER", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-12 19:30:30", - "registerOn": 1670243421.817047, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243421.8170474, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243421.817056, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243421.8170571, - "lastIP": "dvvc}vb}n~~ig", - "deviceUUID": "853e561e5b8a8b675609755f1e05b53084f5adb6" - }, - "pb-JiNJARBdXUtFVFxIGUJQVVREFklXRVZH": { - "display_string": [ - "\ue020BasuMachakanura" - ], - "profiles": [], - "name": "\ue020BasuMachakanura", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-04 19:32:10", - "registerOn": 1670243477.0364935, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243477.036494, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255372.063081, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255372.0630825, - "lastIP": "azo~zh~{vav`", - "deviceUUID": "f4743181413fd87e59ecc7338eefd567593df5a0" - }, - "pb-IF4KVWgcBw==": { - "display_string": [ - "\ue020mohammedsafeek2" - ], - "profiles": [], - "name": "\ue020mohammedsafeek2", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-02 11:25:15", - "registerOn": 1670243500.277261, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243500.2772615, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243500.2772706, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243500.2772713, - "lastIP": "a\u007fn~~agaafaiez", - "deviceUUID": "5ee7822213487b483b9966ba9d29c68ec2bd7904" - }, - "pb-IF4CUxVaAw==": { - "display_string": [ - "\ue030Android60437730" - ], - "profiles": [], - "name": "\ue030Android60437730", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-13 11:20:27", - "registerOn": 1670243658.975171, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243658.9751716, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243658.9751792, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243658.9751804, - "lastIP": "a\u007fk~~meambaihy", - "deviceUUID": "362dc9544fc53a57def6aca4a9d3ca680f388ad2" - }, - "pb-IF4JVU8HUA==": { - "display_string": [ - "\ue020CHIP2739" - ], - "profiles": [], - "name": "\ue020CHIP2739", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-09 07:21:13", - "registerOn": 1670243680.7115374, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243680.711538, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243680.7115462, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243680.711547, - "lastIP": "a|i~}jfa`dah", - "deviceUUID": "3bb03eebaca837f771d19d10fb9e72d77737cab0" - }, - "pb-IF4cUlIHFQ==": { - "display_string": [ - "\ue063TusharRawa" - ], - "profiles": [], - "name": "\ue063TusharRawa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-26 20:49:37", - "registerOn": 1670243773.0846174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243773.0846183, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248915.7520661, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248915.7520673, - "lastIP": "dvvcyvaxo~y`", - "deviceUUID": "ef8a71e162c6bb5d73805a164e7dec56eed109bd", - "cMsgCount": 0, - "lastMsgTime": 1670243863.2455108, - "lastMsg": "1", - "cSameMsg": 0 - }, - "pb-IF43U00MHA==": { - "display_string": [ - "\ue063Nayanshiga" - ], - "profiles": [], - "name": "\ue063Nayanshiga", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 13:49:15", - "registerOn": 1670243816.267502, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243816.2675025, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256292.5326142, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256292.5326154, - "lastIP": "a\u007fn~~aeal~~ld", - "deviceUUID": "f06c4c4ff535f09426e084624a458360f8b3b427" - }, - "pb-IF4rVUkdFA==": { - "display_string": [ - "\ue020Giteshpro" - ], - "profiles": [], - "name": "\ue020Giteshpro", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-11 06:45:14", - "registerOn": 1670243839.3325484, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243839.332549, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670243839.332558, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670243839.3325586, - "lastIP": "azo~|k~}hhaii\u007f", - "deviceUUID": "ddb68cf272e094198e1f30411e5c0ee10b17131a", - "cMsgCount": 0, - "lastMsgTime": 1670243894.6550832, - "lastMsg": "phat sa head", - "cSameMsg": 0 - }, - "pb-IF4oU0YABg==": { - "display_string": [ - "\ue020vps32i" - ], - "profiles": [], - "name": "\ue020vps32i", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 16:16:50", - "registerOn": 1670243923.6127431, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243923.6127436, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344909.3702805, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670344909.370282, - "lastIP": "azo~|k~|j~~mb", - "deviceUUID": "7a54c5b9901eb59d33300ddf62863df158517520" - }, - "pb-IF4iU04PKA==": { - "display_string": [ - "\ue030Android63956151" - ], - "profiles": [], - "name": "\ue030Android63956151", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 11:33:59", - "registerOn": 1670243959.3693604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670243959.369361, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670377929.8763127, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670377929.8763142, - "lastIP": "azj~zo~}jgaii", - "deviceUUID": "e9c88ccb816fc29e8e2062d29ee38cf69a3a81ba", - "cMsgCount": 0, - "lastMsgTime": 1670244090.429839, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFYV0dBVF5JEUFSU1BAGEZZT1lA": { - "display_string": [ - "\ue063mippypoop1" - ], - "profiles": [], - "name": "\ue063mippypoop1", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-16 15:00:48", - "registerOn": 1670244040.9770725, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244040.977073, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316049.6818871, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316049.6818888, - "lastIP": "axm~~ofakbaj`~", - "deviceUUID": "20872e0801eef620a5bb0c32a2e99ecea7052a2d" - }, - "pb-IF4vU0lTUw==": { - "display_string": [ - "\ue020go444vykh" - ], - "profiles": [], - "name": "\ue020go444vykh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 09:09:17", - "registerOn": 1670244146.3773913, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244146.3773918, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247631.180304, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247631.1803052, - "lastIP": "azj~zo~~k`aigw", - "deviceUUID": "099a2b8ebdd1be885607f1e97fdc6e787397267e" - }, - "pb-IF4MVXQdNw==": { - "display_string": [ - "\ue020HipRooster87595", - "\ue030Android53483198" - ], - "profiles": [], - "name": "\ue020HipRooster87595", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-08 19:34:34", - "registerOn": 1670244171.5894706, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244171.5894709, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334273.7985814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334273.798583, - "lastIP": "azo~|`~zvg|", - "deviceUUID": "\u0015Q\b\u0005X\u0012P\\", - "cMsgCount": 0, - "lastMsgTime": 1670245645.0497267, - "lastMsg": "jaldi karo", - "cSameMsg": 0 - }, - "pb-IF4mVW48Ew==": { - "display_string": [ - "\ue030PC297681" - ], - "profiles": [], - "name": "\ue030PC297681", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-16 10:17:12", - "registerOn": 1670244282.8380945, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244282.8380952, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244282.8381028, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244282.8381038, - "lastIP": "bxvixva{k~~hc", - "deviceUUID": "\u0003UYU\u0005MRZ\u0004L\u0012X]TL@U[RL\u0016\u0003\\QLBU\u000bRS@" - }, - "pb-IF5dU1EpMg==": { - "display_string": [ - "\ue020DiagnosticToad55", - "\ue030Android63941047" - ], - "profiles": [], - "name": "\ue020DiagnosticToad55", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 19:35:54", - "registerOn": 1670244492.6692612, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244492.669262, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244492.6692705, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244492.6692712, - "lastIP": "azo~{a~~`caie|", - "deviceUUID": "\u0015\u0005\bST\u0010\u0005^S\u0002@SZY\u0004\u0012Y[YP@X[TS" - }, - "pb-IF4BVEc9Hw==": { - "display_string": [ - "\ue063championof" - ], - "profiles": [], - "name": "\ue063championof", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-10 14:17:58", - "registerOn": 1670244496.6179376, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244496.6179383, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244496.6179485, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670244499.3042765, - "lastIP": "a~l~~kdajeaiix", - "deviceUUID": "e16f3ddd2272d10f1cb1e6a5f702c2d2122ee02e" - }, - "pb-IF43U00nFw==": { - "display_string": [ - "\ue020virubhai2004", - "\ue030Android61899985" - ], - "profiles": [], - "name": "\ue020virubhai2004", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 10:41:21", - "registerOn": 1670244547.7882876, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244547.7882884, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244547.7882965, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244547.7882974, - "lastIP": "a\u007fk~~mgaibvvb|h", - "deviceUUID": "dd5f225c8b6a7fb8d3e574dab97657c17d4abfff" - }, - "pb-IF4zUmFdCQ==": { - "display_string": [ - "\ue030Android54726114" - ], - "profiles": [], - "name": "\ue030Android54726114", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-17 22:18:54", - "registerOn": 1670244582.910993, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244582.9109936, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244582.9110038, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244582.911005, - "lastIP": "dvvcxvb}l~}ld", - "deviceUUID": "233d77242ee2e121329a33c05281408b169a0bc9" - }, - "pb-IF4eUnYfDQ==": { - "display_string": [ - "\ue063DarknexxoY" - ], - "profiles": [], - "name": "\ue063DarknexxoY", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-29 14:50:56", - "registerOn": 1670244684.2722738, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244684.2722743, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244684.2722826, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244684.2722836, - "lastIP": "aakiaoha``", - "deviceUUID": "18e88cd338cd9bbc01a914308c28fe53dfb0643a" - }, - "pb-IF4jU2YsNw==": { - "display_string": [ - "\ue063RemissCon2" - ], - "profiles": [], - "name": "\ue063RemissCon2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-17 08:04:05", - "registerOn": 1670244791.781524, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244791.7815247, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670244791.7815332, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670244791.7815342, - "lastIP": "axi~}mcaid}vg}", - "deviceUUID": "38f82533292e1b2d5e98e9d0fc9bc017d6e5ab04" - }, - "pb-IF4SU3gHFg==": { - "display_string": [ - "\ue063KookyVeloc" - ], - "profiles": [], - "name": "\ue063KookyVeloc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-31 13:01:04", - "registerOn": 1670244810.6883445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244810.6883454, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307527.693986, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307527.6939874, - "lastIP": "b}k~~`gaiavvavi", - "deviceUUID": "0850315ce740515901beae4901295115cbf8cbde" - }, - "pb-IF4xU2EbKg==": { - "display_string": [ - "\ue020AbhishekAjay744", - "\ue030Android58819906" - ], - "profiles": [], - "name": "\ue020AbhishekAjay744", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-05 23:04:11", - "registerOn": 1670244834.7953062, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670244834.795307, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670349117.1783087, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670349117.17831, - "lastIP": "bxvf}vhzvd\u007f", - "deviceUUID": "0b54dae3ad809cd77d26bd78a37b19fbf2cf9c34", - "cMsgCount": 0, - "lastMsgTime": 1670245716.467134, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4qU006Nw==": { - "display_string": [ - "\ue020LyricalWill16" - ], - "profiles": [], - "name": "\ue020LyricalWill16", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 19:59:32", - "registerOn": 1670245036.7073662, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245036.7073667, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245036.7073753, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245036.7073762, - "lastIP": "a\u007fn~}jcaia}vb{`", - "deviceUUID": "6a1194454571f41ac5e1649195f6f66374af9f9a" - }, - "pb-IF4DU0IEJg==": { - "display_string": [ - "\ue063CHAINSAW" - ], - "profiles": [], - "name": "\ue063CHAINSAW", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-18 08:46:35", - "registerOn": 1670245237.3236887, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245237.3236895, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337222.0482295, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670344372.3631408, - "lastIP": "b}k~~ohaja|vaxl", - "deviceUUID": "fa894de18350c769ac7184f54ebec6a2c12ce104", - "cMsgCount": 0, - "lastMsgTime": 1670345053.4548779, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4XU0gINA==": { - "display_string": [ - "\ue063NeuroticFe" - ], - "profiles": [], - "name": "\ue063NeuroticFe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 12:08:36", - "registerOn": 1670245251.4067552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245251.406756, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245251.4067645, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245251.406765, - "lastIP": "axi~xn~}hha`", - "deviceUUID": "5ba8f30c4a81779a2f3c28cc77a01f624490e3e3" - }, - "pb-IF4pUkYMCg==": { - "display_string": [ - "\ue020matin\u0645\u062a\u06cc\u0646\u06f1\u06f1\u06f1" - ], - "profiles": [], - "name": "\ue020matin\u0645\u062a\u06cc\u0646\u06f1\u06f1\u06f1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-04 22:38:07", - "registerOn": 1670245438.228861, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245438.228862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245438.22887, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245438.228871, - "lastIP": "baii\u007fveaoa", - "deviceUUID": "ef3bbfad57cf3b54c1568c14d2c5235eea035a6b" - }, - "pb-IF4sU01YMA==": { - "display_string": [ - "\ue063gInhospita" - ], - "profiles": [], - "name": "\ue063gInhospita", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 12:54:48", - "registerOn": 1670245461.2827165, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245461.2827168, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254383.2225502, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254383.2225513, - "lastIP": "azo~zi~xh~~kg", - "deviceUUID": "7646206bd39ce45504e685befe47159df1f8d399" - }, - "pb-IF4yU2gBDg==": { - "display_string": [ - "\ue030Android61588905" - ], - "profiles": [], - "name": "\ue030Android61588905", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-29 10:01:24", - "registerOn": 1670245480.3847618, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245480.3847623, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245480.3847704, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245480.3847713, - "lastIP": "b}k~}m~yj~~og", - "deviceUUID": "38419a888f73eb5491299e40b26c0c21c52e170a" - }, - "pb-IF4oU0wgKQ==": { - "display_string": [ - "\ue020PathologicalPeak28" - ], - "profiles": [], - "name": "\ue020PathologicalPeak28", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-11 08:47:48", - "registerOn": 1670245576.6693642, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245576.669365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245576.6693738, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245576.669375, - "lastIP": "a\u007fn~}igaifvva}i", - "deviceUUID": "8b634a71cafac1741c794dffbd4a89325098fb0c" - }, - "pb-IF4MU0w6Cw==": { - "display_string": [ - "\ue020UnopenedCamera42" - ], - "profiles": [], - "name": "\ue020UnopenedCamera42", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-13 11:54:25", - "registerOn": 1670245634.9927588, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245634.9927592, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245634.9927666, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245634.9927678, - "lastIP": "b}k~}jgaagaj", - "deviceUUID": "2a3d70b74dbf6d3b507c9aef723fac9c37647e9a" - }, - "pb-IF5QU0YlIw==": { - "display_string": [ - "\ue030Android63489834" - ], - "profiles": [], - "name": "\ue030Android63489834", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-23 21:42:33", - "registerOn": 1670245821.6299453, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245821.6299458, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670245948.333389, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670245948.33339, - "lastIP": "a\u007fn~~aeah~~ki", - "deviceUUID": "53c6cfb41ceba0fd96b7d9666541484ffde7ad43" - }, - "pb-IF4GUxUZKg==": { - "display_string": [ - "\ue020DexTerOuSVikAriA" - ], - "profiles": [], - "name": "\ue020DexTerOuSVikAriA", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-15 02:06:37", - "registerOn": 1670245968.7682805, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670245968.7682815, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321466.8484159, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670321478.9066787, - "lastIP": "aya~~liajbxvb\u007fk", - "deviceUUID": "1a3a9cc2874e1a5fe2acec16a7f5014b469618c1" - }, - "pb-IF4WUVY=": { - "display_string": [ - "\ue063SReeJU7", - "\ue030Android63511561" - ], - "profiles": [], - "name": "\ue063SReeJU7", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-09 12:54:40", - "registerOn": 1670246071.2071426, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246071.2071433, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246071.207155, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246071.2071562, - "lastIP": "a\u007fk~xh~~aiajby", - "deviceUUID": "9726ecd2c4229a1706a2a286646058bb1491f133" - }, - "pb-IF4AU00sEw==": { - "display_string": [ - "\ue020FavoriteEscort39", - "\ue030Android63976746", - "\ue030Android63976765" - ], - "profiles": [], - "name": "\ue020FavoriteEscort39", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 18:38:08", - "registerOn": 1670246142.336575, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246142.3365757, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246142.336584, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246142.3365855, - "lastIP": "a\u007fk~}haaib{vaxm", - "deviceUUID": "a536a13b40c12d954647e47754580d8c2cd9ffbf" - }, - "pb-LV4FUkUPAxNEVV8RRk5WBVVEEA==": { - "display_string": [ - "\ue063MadBOY5523" - ], - "profiles": [], - "name": "\ue063MadBOY5523", - "isBan": false, - "isMuted": false, - "accountAge": "2016-08-29 17:40:03", - "registerOn": 1670246174.4305658, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246174.4305663, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670354985.6066802, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670354985.6066813, - "lastIP": "dvvcyva}j~zm", - "deviceUUID": "bc217ff73d9ff9f3921131f99b27d93e57d8f5dc", - "cMsgCount": 0, - "lastMsgTime": 1670329709.380544, - "lastMsg": "/ban", - "cSameMsg": 0 - }, - "pb-IF4-VVkxPw==": { - "display_string": [ - "\ue063UpbeatTrad" - ], - "profiles": [], - "name": "\ue063UpbeatTrad", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-27 09:12:01", - "registerOn": 1670246401.2753522, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246401.2753527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246401.2753594, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246401.2753603, - "lastIP": "a~j~}h`aj`xvb~", - "deviceUUID": "5df9a08a22756fac630a940bad70701464060c21" - }, - "pb-IF4lUxYq": { - "display_string": [ - "\ue063DemonChrom" - ], - "profiles": [], - "name": "\ue063DemonChrom", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-19 13:07:34", - "registerOn": 1670246550.481666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246550.4816666, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343645.807983, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343645.8079844, - "lastIP": "dvvcyvexva|j", - "deviceUUID": "c4b3f43b5c7eb83c86e3f787305801bee2615c4c" - }, - "pb-IF41U3EmJg==": { - "display_string": [ - "\ue020RKGAMING475" - ], - "profiles": [], - "name": "\ue020RKGAMING475", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 20:23:24", - "registerOn": 1670246556.8013268, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246556.8013277, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246556.8013363, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246556.801338, - "lastIP": "azo~{a~wo~wa", - "deviceUUID": "13ce51d9d52a69e2c5b90d0cee75b842d1e48ff4" - }, - "pb-IF4PU08INw==": { - "display_string": [ - "\ue030Android63975172" - ], - "profiles": [], - "name": "\ue030Android63975172", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 10:14:09", - "registerOn": 1670246582.9174058, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670246582.9174066, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670246582.917415, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670246582.9174159, - "lastIP": "a|n~~mhai`}vdz", - "deviceUUID": "f7f4bcb699c85a3e6b639df36b7a72b8fc389fa4" - }, - "pb-IF4uVUYtUA==": { - "display_string": [ - "\ue020\u00c7r\u00e3syS\u016b\u00df\u00e2sH" - ], - "profiles": [], - "name": "\ue020\u00c7r\u00e3syS\u016b\u00df\u00e2sH", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-20 18:43:08", - "registerOn": 1670247000.2656703, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247000.2656715, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247000.2656803, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247000.2656815, - "lastIP": "bxvf}va{k~~mc", - "deviceUUID": "ec526b5ed10e634ec4153dd5cff44b62cb6adaad" - }, - "pb-IF4-UxUcVA==": { - "display_string": [ - "\ue020WobblyOffender29", - "\ue030Android60540547" - ], - "profiles": [], - "name": "\ue020WobblyOffender29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-17 19:48:44", - "registerOn": 1670247189.9195635, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247189.9195642, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247189.9195719, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247189.9195733, - "lastIP": "dvvc{vg}vhy", - "deviceUUID": "\u0015V\u000eR\u0003\u0010\u0003[\u0002SBUYTXG" - }, - "pb-IF42UnUjVw==": { - "display_string": [ - "\ue020IneligibleLeague40" - ], - "profiles": [], - "name": "\ue020IneligibleLeague40", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-24 09:18:32", - "registerOn": 1670247193.955294, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247193.9552946, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247193.9553025, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247193.9553034, - "lastIP": "azo~zi~~ngaj`v", - "deviceUUID": "36e3d3e9c6a659e3880dcfe9d2f67be1f082a91a" - }, - "pb-IF5WUlhaPA==": { - "display_string": [ - "\ue030Android59530809" - ], - "profiles": [], - "name": "\ue030Android59530809", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-07 19:28:40", - "registerOn": 1670247209.9995768, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247209.9995773, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247209.9995859, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247209.9995873, - "lastIP": "evvizvbzj~~je", - "deviceUUID": "eefc6cc1babacff36bb757b998aa7612049997f1" - }, - "pb-IF4JUlYDVA==": { - "display_string": [ - "\ue020FoolhardyGorilla5970", - "\ue030Android60315518" - ], - "profiles": [], - "name": "\ue020FoolhardyGorilla5970", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-09 20:52:34", - "registerOn": 1670247289.2347045, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247289.234705, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247289.234714, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247289.2347152, - "lastIP": "azo~{a~}mbajd|", - "deviceUUID": "81ba11dea4484e124c748caf1f8c934b02c6c4bf" - }, - "pb-IF4zU08lLA==": { - "display_string": [ - "\ue063Trushank" - ], - "profiles": [], - "name": "\ue063Trushank", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 16:04:33", - "registerOn": 1670247350.8036637, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247350.8036642, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327883.9155424, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327883.9155436, - "lastIP": "azj~zo~~aaajh", - "deviceUUID": "37f641d10b06f13f5f060f73b659c3a28be656d2" - }, - "pb-IF5QU2hSFw==": { - "display_string": [ - "\ue063AffectiveH" - ], - "profiles": [], - "name": "\ue063AffectiveH", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-16 17:12:18", - "registerOn": 1670247370.5213387, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247370.5213394, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336959.3504667, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336959.3504684, - "lastIP": "azo~{a~wm~yk", - "deviceUUID": "35d73de1e2b619caae503f246447716726482aa5" - }, - "pb-IF5QV1EqEg==": { - "display_string": [ - "\ue063Harshini12" - ], - "profiles": [], - "name": "\ue063Harshini12", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-04 15:20:08", - "registerOn": 1670247379.5591614, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247379.5591621, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247379.5591695, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247379.5591702, - "lastIP": "azo~zh~~n~}mb", - "deviceUUID": "6ca8762f538f51c995290038bd88a67012d79d59" - }, - "pb-IF4qU3BcNw==": { - "display_string": [ - "\ue020PrimitiveCoercion25" - ], - "profiles": [], - "name": "\ue020PrimitiveCoercion25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-25 14:20:42", - "registerOn": 1670247466.2097733, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247466.209774, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335884.1680412, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335884.1680427, - "lastIP": "azo~{a~~aiajd~", - "deviceUUID": "3c7fff1e73e618150ff953c14e19a044f37769f3" - }, - "pb-IF40U0EFPQ==": { - "display_string": [ - "\ue020UniqueScandal132", - "\ue030Android63100788" - ], - "profiles": [], - "name": "\ue020UniqueScandal132", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-15 17:29:52", - "registerOn": 1670247485.992155, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247485.9921556, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670377262.8691158, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670377262.8691175, - "lastIP": "aya~~liajc\u007fva{o", - "deviceUUID": "fee953544ab6d633c2bf346f44fe26c298379aa6" - }, - "pb-IF4uU3YEVA==": { - "display_string": [ - "\ue020TipTopCommander1918" - ], - "profiles": [], - "name": "\ue020TipTopCommander1918", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-23 23:20:49", - "registerOn": 1670247553.2624562, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247553.2624567, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334811.1052673, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334811.1052687, - "lastIP": "azo~|`~~m`aka", - "deviceUUID": "ae7559bed7f2f113a7ec9669a8bca03161057a17" - }, - "pb-JiNJARFYU0pGXVdCFU9TVVZEFkFaRFlL": { - "display_string": [ - "\ue020mooninvaders24", - "\ue030Android20461819" - ], - "profiles": [], - "name": "\ue020mooninvaders24", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-24 16:56:27", - "registerOn": 1670247591.3978565, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247591.397857, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315933.3051295, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315933.305131, - "lastIP": "b}k~~oha`aali", - "deviceUUID": "\u0015\u0002[VW\u0017T\u000eWSB\u0005ZP\u0004D" - }, - "pb-IF4UU05eLw==": { - "display_string": [ - "\ue063NoName48451a" - ], - "profiles": [], - "name": "\ue063NoName48451a", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 21:21:34", - "registerOn": 1670247641.508387, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247641.5083878, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247641.5083945, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247641.5083954, - "lastIP": "axi~}m`aifzvb~l", - "deviceUUID": "48aa973988bc0e1e653dd8afffdbaeed0377cae5", - "cMsgCount": 0, - "lastMsgTime": 1670248313.8054845, - "lastMsg": "gawngbang haha", - "cSameMsg": 0 - }, - "pb-IF4yVFgOVA==": { - "display_string": [ - "\ue020Xodv8" - ], - "profiles": [], - "name": "\ue020Xodv8", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-16 15:03:14", - "registerOn": 1670247642.5841355, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247642.584136, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670380596.5672948, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670380596.567296, - "lastIP": "a\u007fk~~n`ajc|vb}o", - "deviceUUID": "b404fc754d95d57a6e7a54c80351a23c4bf2f6bc" - }, - "pb-IF4yU2QiCQ==": { - "display_string": [ - "\ue020InitialFool50", - "\ue030Android60382840" - ], - "profiles": [], - "name": "\ue020InitialFool50", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-13 15:45:46", - "registerOn": 1670247846.293781, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247846.2937818, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247846.2937908, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247846.2937915, - "lastIP": "azj~zo~wj~~ah", - "deviceUUID": "5c95b5d12b13fbf4fab5a3b6f1cc7254c3966cf2" - }, - "pb-IF4SUng4Vw==": { - "display_string": [ - "\ue030Android57231442" - ], - "profiles": [], - "name": "\ue030Android57231442", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-05 18:15:53", - "registerOn": 1670247875.3993134, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247875.3993142, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247875.3993235, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670248659.7735941, - "lastIP": "azj~zo~~kdajb|", - "deviceUUID": "7e6ecd69fad99e1e7907fc561f46fe8648da42a0", - "cMsgCount": 0, - "lastMsgTime": 1670248014.0863714, - "lastMsg": "sorry", - "cSameMsg": 0 - }, - "pb-IF4jU288Jg==": { - "display_string": [ - "\ue063PentFitnes" - ], - "profiles": [], - "name": "\ue063PentFitnes", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-22 12:18:54", - "registerOn": 1670247997.8078763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670247997.807877, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670247997.8079166, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670247997.8079176, - "lastIP": "aw`~\u007fva{l~zh", - "deviceUUID": "b7ae1252e2b5fa5e54febc349df8eef6dcedd654" - }, - "pb-IF4tUmYMXA==": { - "display_string": [ - "\ue063InvasiveS2" - ], - "profiles": [], - "name": "\ue063InvasiveS2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-14 21:55:15", - "registerOn": 1670248007.8311138, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248007.8311145, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248007.8311238, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248007.8311248, - "lastIP": "azo~{i~}liaidw", - "deviceUUID": "f92a0e56fa90e44abc0c3ae47afef4cc76f85d54" - }, - "pb-IF4oU08MDg==": { - "display_string": [ - "\ue063kishujain5" - ], - "profiles": [], - "name": "\ue063kishujain5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 22:06:06", - "registerOn": 1670248040.9213223, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248040.921323, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248040.9213312, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248040.9213328, - "lastIP": "azo~|`~~k`al", - "deviceUUID": "53da70035fa49159ecadabfeff9aca2a0b93b917" - }, - "pb-IF5cU0oCCg==": { - "display_string": [ - "\ue020Rahulnirania03" - ], - "profiles": [], - "name": "\ue020Rahulnirania03", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 21:48:41", - "registerOn": 1670248107.194649, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248107.1946497, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248107.1946566, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248107.1946573, - "lastIP": "d}va\u007fo~}jdaj`x", - "deviceUUID": "76d5be041291d8560127682c0ceec6cd0eb876b3" - }, - "pb-IF4zU2MgJw==": { - "display_string": [ - "\ue020SharpEnemy92311" - ], - "profiles": [], - "name": "\ue020SharpEnemy92311", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-09 17:53:20", - "registerOn": 1670248148.3000412, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248148.300042, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336800.8131924, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336800.8131943, - "lastIP": "a\u007fk~zvawo~~o`", - "deviceUUID": "bc4a6eebc93dd7e4038333c4d5f45f8752c87a83", - "cMsgCount": 0, - "lastMsgTime": 1670336865.3255773, - "lastMsg": "anime lover anyone", - "cSameMsg": 0 - }, - "pb-IF5SV2VbAQ==": { - "display_string": [ - "\ue020PerfidiousStress40" - ], - "profiles": [], - "name": "\ue020PerfidiousStress40", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-16 14:04:25", - "registerOn": 1670248218.5660353, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248218.5660357, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670348611.1200438, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670350341.70787, - "lastIP": "a~o~va~}lfaidz", - "deviceUUID": "2caee23c5f2ab271561abad7432231aa1f6eaa52", - "cMsgCount": 2, - "lastMsgTime": 1670351052.3479128, - "lastMsg": "bye ", - "cSameMsg": 0 - }, - "pb-IF4-U08uHQ==": { - "display_string": [ - "\ue063Ug509" - ], - "profiles": [], - "name": "\ue063Ug509", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 21:31:48", - "registerOn": 1670248282.0917091, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248282.0917094, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248282.0917168, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248282.0917177, - "lastIP": "b}j~~ndaievvcz", - "deviceUUID": "ab8bac21d26e7a29912816ff756448ef70962a87" - }, - "pb-JiNJARFcXEpDWlpAGUJVU1dBGUVfR1ZC": { - "display_string": [ - "\ue020PokeyHammer5496", - "\ue030Android4999646" - ], - "profiles": [], - "name": "\ue020PokeyHammer5496", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-07 20:24:30", - "registerOn": 1670248414.2451305, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248414.245131, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322397.2757256, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322397.275728, - "lastIP": "azo~{a~x`~yk", - "deviceUUID": "78a6047d38f5917cfaa19831802db117a412877e" - }, - "pb-JiNJVxFTV0JDVV9BGE5YV11DFEleR1hA": { - "display_string": [ - "\ue063ThirstyNin", - "\ue020ThirstyNinja13866", - "\ue030Android24392040" - ], - "profiles": [], - "name": "\ue063ThirstyNin", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-30 15:41:41", - "registerOn": 1670248698.2888656, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248698.288866, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248698.2888749, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670252335.8334715, - "lastIP": "dvvb~o~~ieam`", - "deviceUUID": "f61386a46fdef46ef497e53cf1ebc414270113c0", - "cMsgCount": 0, - "lastMsgTime": 1670249456.4015536, - "lastMsg": "?", - "cSameMsg": 0 - }, - "pb-IF4jU046Fg==": { - "display_string": [ - "\ue020peskiller11" - ], - "profiles": [], - "name": "\ue020peskiller11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 00:16:42", - "registerOn": 1670248841.8225067, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248841.8225074, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248841.8225157, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670248841.8225167, - "lastIP": "azo~{n~~miajdw", - "deviceUUID": "fce7833798549d9cd95c7d32bd0aa32e60ab12ff", - "cMsgCount": 0, - "lastMsgTime": 1670249823.114636, - "lastMsg": "babe don't kill me", - "cSameMsg": 0 - }, - "pb-IF4FU0wNJA==": { - "display_string": [ - "\ue030Android63873735" - ], - "profiles": [], - "name": "\ue030Android63873735", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 10:07:39", - "registerOn": 1670248911.0291958, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670248911.0291963, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670248911.029205, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670249025.218512, - "lastIP": "azo~zi~~ibaoa", - "deviceUUID": "d377327b5051b8609970eea94af694f8a8fc7e7f" - }, - "pb-IF4pU00vIA==": { - "display_string": [ - "\ue020Sanjay2522" - ], - "profiles": [], - "name": "\ue020Sanjay2522", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 13:59:20", - "registerOn": 1670249211.2428658, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249211.2428665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670249211.2428744, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249211.242875, - "lastIP": "azo~zi~~`gaigw", - "deviceUUID": "47242b1966a1fdc7f191705b819cbfc0bf3c73c1" - }, - "pb-IF4vU08nVg==": { - "display_string": [ - "\ue020Saraj123l" - ], - "profiles": [], - "name": "\ue020Saraj123l", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 20:59:14", - "registerOn": 1670249266.4511678, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249266.4511688, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670249266.451178, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249266.4511793, - "lastIP": "azo~{i~}jgaib}", - "deviceUUID": "c79f250eccbdc9292cc25bd5467800dca7dd92c6" - }, - "pb-IF4jUlRTHw==": { - "display_string": [ - "\ue063thalekalle" - ], - "profiles": [], - "name": "\ue063thalekalle", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-29 13:03:25", - "registerOn": 1670249349.700927, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249349.7009273, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670249483.5507846, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249349.7009356, - "lastIP": "a\u007fk~~mgaifyvb~o", - "deviceUUID": "b36ab79fdec5db990e50b5f0e647c7c34f287ad0", - "cMsgCount": 0, - "lastMsgTime": 1670249691.590385, - "lastMsg": "how big is your titis", - "cSameMsg": 0 - }, - "pb-IF49U04vXA==": { - "display_string": [ - "\ue020LoathsomeReaction46" - ], - "profiles": [], - "name": "\ue020LoathsomeReaction46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 13:58:29", - "registerOn": 1670249450.0387409, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249450.0387418, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670315369.8154893, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315330.0926294, - "lastIP": "d|vbzh~~mfaai", - "deviceUUID": "f8cbfc59d93e526ed3aa7fa1ed51486351576c0d", - "cMsgCount": 0, - "lastMsgTime": 1670315369.815239, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4wVFcZPw==": { - "display_string": [ - "\ue063CivilizedT" - ], - "profiles": [], - "name": "\ue063CivilizedT", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-08 13:54:25", - "registerOn": 1670249678.8690112, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249678.8690119, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670349173.391951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670349173.3919523, - "lastIP": "a\u007fk~~oaaj`\u007fvf|", - "deviceUUID": "44e3910a7e2c0d1388c508e23395a197d9699044", - "cMsgCount": 0, - "lastMsgTime": 1670349653.4042087, - "lastMsg": "koi Mumbai s e?", - "cSameMsg": 0 - }, - "pb-IF4dUm4qLQ==": { - "display_string": [ - "\ue063ashknight4", - "\ue030Android56184369" - ], - "profiles": [], - "name": "\ue063ashknight4", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-21 01:36:02", - "registerOn": 1670249762.308179, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249762.3081794, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670249762.3081875, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249762.3081884, - "lastIP": "a}h~~liakgaj`~", - "deviceUUID": "774550730ff3fc25eb88f0355d4a195037d77028" - }, - "pb-IF4gUlkcDA==": { - "display_string": [ - "\ue030Android59895610" - ], - "profiles": [], - "name": "\ue030Android59895610", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-21 11:44:16", - "registerOn": 1670249849.4518666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670249849.451867, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670249884.5996675, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670249849.4518764, - "lastIP": "dvva{`~~idaje{", - "deviceUUID": "919131afccd37b147af5f963a5193b6317ca3ed3", - "cMsgCount": 0, - "lastMsgTime": 1670249884.5995364, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-LV4FB0JTA0VAWFYUEUdXBlNDFg==": { - "display_string": [ - "\ue063HEROgamer", - "\ue030Android24143429", - "\ue030Android15189438", - "\ue030Android16124077" - ], - "profiles": [], - "name": "\ue063HEROgamer", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-12 22:39:09", - "registerOn": 1670250120.0074592, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250120.0074596, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250120.0074673, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670267428.3911939, - "lastIP": "dvvd|vd}va}`", - "deviceUUID": "3097c53d0c0a6126c54f877065f6addaa1684210" - }, - "pb-IF4cU0xZMw==": { - "display_string": [ - "\ue063phiNix", - "\ue020TanishkFRANK", - "\ue020YawningCandle50", - "\ue020ClutchingSolo69", - "\ue030Android63908271" - ], - "profiles": [], - "name": "\ue063phiNix", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 20:15:27", - "registerOn": 1670250133.4527495, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250133.45275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250133.452759, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250133.45276, - "lastIP": "dvvd}vfvvb~l", - "deviceUUID": "7d19f22e9444d68ed2d5da1dd20d0511447410ce" - }, - "pb-IF4TABUN": { - "display_string": [ - "\ue063SRD1111997", - "\ue030Android22651353" - ], - "profiles": [], - "name": "\ue063SRD1111997", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-21 16:41:56", - "registerOn": 1670250268.0836828, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250268.0836837, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250268.0836926, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250268.0836935, - "lastIP": "a\u007fk~~n`ajc|va{i", - "deviceUUID": "85eca4976bc87b8b8109d1f417513119a8a32899" - }, - "pb-IF5QU1EMXA==": { - "display_string": [ - "\ue02011MAXTON11" - ], - "profiles": [], - "name": "\ue02011MAXTON11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 20:04:28", - "registerOn": 1670250295.143146, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250295.1431468, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312749.1196575, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312749.1196587, - "lastIP": "axi~zi~~m`aih}", - "deviceUUID": "5030e89d0d9c2de986e244acf9e88ad4503934cd" - }, - "pb-IF4MU2ozNA==": { - "display_string": [ - "\ue030Android61746695" - ], - "profiles": [], - "name": "\ue030Android61746695", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-05 20:41:06", - "registerOn": 1670250332.259322, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250332.2593224, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250332.2593436, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250332.2593443, - "lastIP": "dvvcyvewvaxa", - "deviceUUID": "7c64a4ae863115bd7704c6825796c1decc327e51" - }, - "pb-IF4xU04eMw==": { - "display_string": [ - "\ue063rudrakshsh" - ], - "profiles": [], - "name": "\ue063rudrakshsh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 15:23:07", - "registerOn": 1670250383.4424148, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250383.4424157, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250383.442425, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250383.4424262, - "lastIP": "azj~z`~{m~~nb", - "deviceUUID": "d130a8d00098ff798281658f5155cd73bcc5b3c1" - }, - "pb-IF4mUkwhAA==": { - "display_string": [ - "\ue020WinningJogger46419" - ], - "profiles": [], - "name": "\ue020WinningJogger46419", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-01 21:28:10", - "registerOn": 1670250488.7782063, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250488.778207, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254357.983664, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670253386.3972933, - "lastIP": "azo~{l~~ndaigy", - "deviceUUID": "2c2779637d66affab87d4694ba875b4dc06558f6", - "cMsgCount": 0, - "lastMsgTime": 1670254650.8939326, - "lastMsg": "hu hu huuuuuuuu", - "cSameMsg": 0 - }, - "pb-IF5cU1AlNQ==": { - "display_string": [ - "\ue063ReticentPr" - ], - "profiles": [], - "name": "\ue063ReticentPr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 16:44:28", - "registerOn": 1670250659.4981358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250659.4981365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250659.4981453, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250659.4981463, - "lastIP": "a~k~~ndan~}m`", - "deviceUUID": "616bf13ce6524e0c95ff3b7024bcb317a305ba7f" - }, - "pb-IF4oU0s9PQ==": { - "display_string": [ - "\ue030Android63809675" - ], - "profiles": [], - "name": "\ue030Android63809675", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-05 15:28:37", - "registerOn": 1670250666.417381, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250666.417382, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250666.4173903, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250666.4173918, - "lastIP": "a~i~~iiaii|vgz", - "deviceUUID": "\u0015VXYQBU\u000bY\u0004\u0011XT\u0003" - }, - "pb-IF5SUlE-KQ==": { - "display_string": [ - "\ue030Android58903800" - ], - "profiles": [], - "name": "\ue030Android58903800", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-13 20:36:23", - "registerOn": 1670250707.6840343, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250707.6840348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250707.684044, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250707.684045, - "lastIP": "dvvc}vaxl~~`c", - "deviceUUID": "e8a2da1bdc74e640f94c66aea691763073d2df29" - }, - "pb-IF4GUmszHA==": { - "display_string": [ - "\ue020suryarocker1999" - ], - "profiles": [], - "name": "\ue020suryarocker1999", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-04 20:32:35", - "registerOn": 1670250719.6712677, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250719.6712685, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670250719.6712766, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670250719.6712773, - "lastIP": "a\u007fn~~ahaa~}ii", - "deviceUUID": "\u0015\u0003\\WXL" - }, - "pb-IF4WU2VaXQ==": { - "display_string": [ - "\ue063Interesti7", - "\ue030Android61201689" - ], - "profiles": [], - "name": "\ue063Interesti7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-14 13:31:29", - "registerOn": 1670250920.3041723, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670250920.3041728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347647.9930327, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670347647.993034, - "lastIP": "azj~zo~~lfajg", - "deviceUUID": "d6815a2cb1771730f88ada9d4173d80c2b4e90af" - }, - "pb-IF4rU0U8Eg==": { - "display_string": [ - "\ue020VocationalScrutiny21", - "\ue030Android50978082" - ], - "profiles": [], - "name": "\ue020VocationalScrutiny21", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 12:45:33", - "registerOn": 1670251027.71761, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670251027.7176106, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251027.7176192, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251027.7176204, - "lastIP": "dxvbvve}va|j", - "deviceUUID": "77dea83bafe18e363ae49809edd8687ed2d5cfda" - }, - "pb-IF4zUxYJEw==": { - "display_string": [ - "\ue063FrostedLor" - ], - "profiles": [], - "name": "\ue063FrostedLor", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-19 22:59:21", - "registerOn": 1670251058.8195562, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670251058.819557, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670251158.2238212, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251058.8195662, - "lastIP": "a}l~~meaje~vb{o", - "deviceUUID": "6c31f2cd8004bc88fec33cd12dcf4451a54b98ed", - "cMsgCount": 1, - "lastMsgTime": 1670251165.5072389, - "lastMsg": "bska", - "cSameMsg": 0 - }, - "pb-IF4DUk5TUg==": { - "display_string": [ - "\ue020OceanicCaptivity19" - ], - "profiles": [], - "name": "\ue020OceanicCaptivity19", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-07 01:49:24", - "registerOn": 1670251261.472954, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670251261.4729545, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251261.4729621, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251261.472963, - "lastIP": "b\u007fi~~`~~ohale", - "deviceUUID": "80a731f93a43685f2fbc45b28f339808f8a9d5ab" - }, - "pb-IF4zU1BaEg==": { - "display_string": [ - "\ue063FreezingFl" - ], - "profiles": [], - "name": "\ue063FreezingFl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 20:15:42", - "registerOn": 1670251764.2393317, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670251764.2393327, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670251764.2393408, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670251764.2393415, - "lastIP": "a~h~zl~~mbaigx", - "deviceUUID": "c6eee5b8e498eeeb452c5e3d90b3e3075c962753" - }, - "pb-IF5TU3AmUQ==": { - "display_string": [ - "\ue030Android62080452" - ], - "profiles": [], - "name": "\ue030Android62080452", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 20:59:36", - "registerOn": 1670251929.830174, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670251929.830175, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299688.556131, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299688.556132, - "lastIP": "azo~|j~~afaic~", - "deviceUUID": "fdbc58d0451aee66658ca47acaa38fcafe3cc83e" - }, - "pb-IF4wV3cJLw==": { - "display_string": [ - "\ue020gokulcmkl" - ], - "profiles": [], - "name": "\ue020gokulcmkl", - "isBan": false, - "isMuted": false, - "accountAge": "2019-01-06 17:13:28", - "registerOn": 1670252119.4277601, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252119.4277606, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252119.4277675, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252119.4277682, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF4TU08iDQ==": { - "display_string": [ - "\ue063DecodeGame" - ], - "profiles": [], - "name": "\ue063DecodeGame", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 23:48:49", - "registerOn": 1670252138.4784591, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252138.4784598, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252138.4784687, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252138.4784696, - "lastIP": "azo~|k~}iaajdv", - "deviceUUID": "5c72854fb38549f2159c7bb467ca960acf92a3ed" - }, - "pb-IF4QU04vLQ==": { - "display_string": [ - "\ue020DesirousAutonomy49" - ], - "profiles": [], - "name": "\ue020DesirousAutonomy49", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 20:15:58", - "registerOn": 1670252416.490065, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252416.4900656, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252416.4900723, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252416.4900734, - "lastIP": "a\u007fn~~aeal`ajdw", - "deviceUUID": "ee801aee1dc3812a8c5b5b8e61a9211912bdedd5" - }, - "pb-IF4DVEpfCA==": { - "display_string": [ - "\ue063dynamic271", - "\ue030Android41785159" - ], - "profiles": [], - "name": "\ue063dynamic271", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-22 03:33:27", - "registerOn": 1670252423.468689, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252423.4686897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670357164.5721743, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670357164.5721755, - "lastIP": "bxvixva|o~~ad", - "deviceUUID": "180be3d7bbef58dbf5c518f31b09ec00fffeaf68" - }, - "pb-IF4rU0UcFw==": { - "display_string": [ - "\ue063Sanath2512" - ], - "profiles": [], - "name": "\ue020Sanath2512", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-04 23:21:03", - "registerOn": 1670252569.9620147, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252569.9620152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343305.5986636, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343305.5986648, - "lastIP": "axi~zi~}i`al`", - "deviceUUID": "51d4bdac1c954b9ea5efdededa86b18ba70f2105" - }, - "pb-IF4JVVMgDA==": { - "display_string": [ - "\ue020FutileBeef19" - ], - "profiles": [], - "name": "\ue020FutileBeef19", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-26 17:42:51", - "registerOn": 1670252578.065086, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252578.0650864, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330757.2067704, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670331106.7534826, - "lastIP": "dvvcxva}a~}jh", - "deviceUUID": "ba6691ca1d69bc886641d414188b625508bc12b0" - }, - "pb-IF4AU2QnDg==": { - "display_string": [ - "\ue030Android61174087" - ], - "profiles": [], - "name": "\ue030Android61174087", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-12 10:48:37", - "registerOn": 1670252628.7949886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252628.7949893, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252628.794997, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252628.7949986, - "lastIP": "a~o~}lhalfaifx", - "deviceUUID": "a57d53721cf79ae8f3f622ff251eae9dc9d487b3" - }, - "pb-LV4FBBRcUBESWV4RFBVUV1NBRA==": { - "display_string": [ - "\ue020mBAROT" - ], - "profiles": [], - "name": "\ue020mBAROT", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-05 14:49:29", - "registerOn": 1670252668.5095925, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252668.5095932, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670326779.7590246, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670326779.7590258, - "lastIP": "azo~|j~}ldaai", - "deviceUUID": "7bfa41b057c23c13310fd135826868e7437985d1", - "cMsgCount": 0, - "lastMsgTime": 1670329719.1965027, - "lastMsg": "ok bye", - "cSameMsg": 0 - }, - "pb-IF42V2MNDA==": { - "display_string": [ - "\ue020BeamingCornball58058" - ], - "profiles": [], - "name": "\ue020BeamingCornball58058", - "isBan": false, - "isMuted": false, - "accountAge": "2018-09-25 13:47:40", - "registerOn": 1670252719.4028423, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252719.4028435, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252719.402854, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252719.4028552, - "lastIP": "a~m~va~zk~~kb", - "deviceUUID": "406b1efe0a882743f7cc93f49688159f6d818e94" - }, - "pb-IF4UU2kpNw==": { - "display_string": [ - "\ue063EliteChime" - ], - "profiles": [], - "name": "\ue063EliteChime", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-27 23:51:26", - "registerOn": 1670252794.6688824, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252794.668883, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252794.6688926, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252794.6688933, - "lastIP": "a\u007fk~~mgaie\u007fva|j", - "deviceUUID": "d3e1bcb17b77ebd8fe8bcebcaaa38fa7bad5d9d3" - }, - "pb-IF42VEcmMg==": { - "display_string": [ - "\ue020AssuredStagnation16", - "\ue030Android42284044" - ], - "profiles": [], - "name": "\ue020AssuredStagnation16", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-09 20:05:06", - "registerOn": 1670252857.919152, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252857.9191527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252857.9191623, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252857.9191637, - "lastIP": "d}va\u007f`~yo~~n", - "deviceUUID": "332a46b82a6e08bbb1deb961addf8bdd99ba2b10" - }, - "pb-IF4nU3ZaUg==": { - "display_string": [ - "\ue020FrumptiousQuagga8864" - ], - "profiles": [], - "name": "\ue020FrumptiousQuagga8864", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-17 17:53:38", - "registerOn": 1670252952.226182, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252952.2261825, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252952.226189, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252952.2261899, - "lastIP": "a\u007fn~}hcai`xvaxo", - "deviceUUID": "8600fa9f3e667fd22ee502fe7f117a3cf2a8edba" - }, - "pb-IF4rU0lcKw==": { - "display_string": [ - "\ue020PetrifiedErrand43" - ], - "profiles": [], - "name": "\ue020PetrifiedErrand43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 09:50:16", - "registerOn": 1670252979.329765, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252979.3297658, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252979.3297727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252979.329774, - "lastIP": "azj~z`~|l~~hf", - "deviceUUID": "562c4d5d81234c294d52da4e065a7ffd07927804" - }, - "pb-IF5RU3EIEA==": { - "display_string": [ - "\ue020MeanderingArchon437" - ], - "profiles": [], - "name": "\ue020MeanderingArchon437", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-21 18:55:17", - "registerOn": 1670252993.3708808, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670252993.3708813, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670252993.3708901, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670252993.3708913, - "lastIP": "dvvcxvavk~}jh", - "deviceUUID": "7f92c216275cdca15efa603875e38f0af5c33831" - }, - "pb-IF4cU0cKJA==": { - "display_string": [ - "\ue030Android63676730" - ], - "profiles": [], - "name": "\ue030Android63676730", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 11:00:12", - "registerOn": 1670253081.681861, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253081.6818616, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253081.6818697, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670254297.8800952, - "lastIP": "a\u007fk~xo~~jgala", - "deviceUUID": "bb673b54de9b442b208eb89eed832c2e3dc79536" - }, - "pb-IF4tU04GEw==": { - "display_string": [ - "\ue020ruklawde" - ], - "profiles": [], - "name": "\ue020ruklawde", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 13:35:05", - "registerOn": 1670253363.8080444, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253363.8080451, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253363.808054, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253363.8080547, - "lastIP": "a~o~}jhai`~vcw", - "deviceUUID": "a3d491b75cc0edaaadd932bf025ff0c7018df2a7" - }, - "pb-IF4mU0kaEA==": { - "display_string": [ - "\ue020HonorableGrunt6306" - ], - "profiles": [], - "name": "\ue020HonorableGrunt6306", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-30 19:35:55", - "registerOn": 1670253718.0740502, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253718.0740511, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253718.0740592, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253718.0740604, - "lastIP": "dvvcyvh}vaz`", - "deviceUUID": "8182916895157817de037308848699e720b92950" - }, - "pb-IF4QU0heJg==": { - "display_string": [ - "\ue030Android63711714" - ], - "profiles": [], - "name": "\ue030Android63711714", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 19:20:23", - "registerOn": 1670253805.5955071, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253805.5955074, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253805.5955155, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670253823.1389985, - "lastIP": "azo~{l~~`bajdv", - "deviceUUID": "08297aa99953ac2f3605b7cfa51893bb453e6170" - }, - "pb-IF4PUm4DHA==": { - "display_string": [ - "\ue020AJROCKlegend", - "\ue030Android62073746", - "\ue030Android62760756" - ], - "profiles": [], - "name": "\ue020AJROCKlegend", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-21 11:55:21", - "registerOn": 1670253859.572911, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253859.5729115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670293698.4350636, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670293698.435065, - "lastIP": "a~o~va~|h~~h`", - "deviceUUID": "\u0015\u0002^PRG\u0003\\T\u0007@" - }, - "pb-IF4HU28eKA==": { - "display_string": [ - "\ue030Android62211118" - ], - "profiles": [], - "name": "\ue030Android62211118", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-24 16:28:26", - "registerOn": 1670253923.7958786, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253923.7959, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342072.180134, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670342072.1801355, - "lastIP": "a\u007fn~~abaihzvb}k", - "deviceUUID": "acecef9732440497a8e9ca4bc20858a24f086f9d" - }, - "pb-IF5XUlUKKw==": { - "display_string": [ - "\ue020BevinTheBoss" - ], - "profiles": [], - "name": "\ue020BevinTheBoss", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-27 10:44:29", - "registerOn": 1670253938.8944445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670253938.894445, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670253938.8944535, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670253938.8944542, - "lastIP": "dvvc}vaza~~kd", - "deviceUUID": "9807e63e640c1efe5e51981f029a13c5af01b4cc" - }, - "pb-IF5XU0kHNQ==": { - "display_string": [ - "\ue020Maj5677" - ], - "profiles": [], - "name": "\ue020Maj5677", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 13:26:46", - "registerOn": 1670254010.164867, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254010.1648676, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254010.1648767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254010.1648781, - "lastIP": "i{vb{`~~`daic", - "deviceUUID": "66e851e9bac06f20f0195a1d377bca96170cdb1a" - }, - "pb-IF4lVW4jEg==": { - "display_string": [ - "\ue063Samselvin1" - ], - "profiles": [], - "name": "\ue063Samselvin1", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-14 19:43:04", - "registerOn": 1670254079.3648503, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254079.3648508, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254079.3648584, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254079.3648593, - "lastIP": "a~h~}jdaib}vf", - "deviceUUID": "29a32b3adb4f82b1e058c8a7cdcc667e2599c27a" - }, - "pb-IF4-UlICNQ==": { - "display_string": [ - "\ue063Deathless2" - ], - "profiles": [], - "name": "\ue063Deathless2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-26 17:18:21", - "registerOn": 1670254092.4870377, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254092.4870381, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254092.487047, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254092.4870477, - "lastIP": "azo~|`~yo~~`b", - "deviceUUID": "365f1795853aecbfe3386c59d40033d70ea72366" - }, - "pb-IF4BU01cVQ==": { - "display_string": [ - "\ue063ChocolateT" - ], - "profiles": [], - "name": "\ue063ChocolateT", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 20:54:50", - "registerOn": 1670254150.9815195, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254150.9815202, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254150.9815302, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254150.9815311, - "lastIP": "azo~{a~}lcaif{", - "deviceUUID": "a76126d32dd8738d27d85d5b2d95b7168f16fea7" - }, - "pb-IF42U0kbEg==": { - "display_string": [ - "\ue020RustyUnicorn27009" - ], - "profiles": [], - "name": "\ue020RustyUnicorn27009", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 22:42:37", - "registerOn": 1670254220.9986901, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254220.9986908, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341595.561214, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341595.5612152, - "lastIP": "dvvc{vc}vaxl", - "deviceUUID": "f890499c54c2ed30614bb91563b994c0ac17a8b1" - }, - "pb-IF4pU3c_Fg==": { - "display_string": [ - "\ue030Android62872959" - ], - "profiles": [], - "name": "\ue030Android62872959", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-23 12:47:07", - "registerOn": 1670254315.858815, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254315.8588154, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254315.8588223, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254315.858823, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF4nU0shXQ==": { - "display_string": [ - "\ue020NehalSule01" - ], - "profiles": [], - "name": "\ue020NehalSule01", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 18:18:43", - "registerOn": 1670254440.0974624, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254440.0974631, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254440.0974724, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254440.0974734, - "lastIP": "azo~|k~}k~~jh", - "deviceUUID": "e0b58fa1a9353d747d2c86283e7d443cc5e21a0a" - }, - "pb-IF4sU2I5JA==": { - "display_string": [ - "\ue020ImportantYeoman99681" - ], - "profiles": [], - "name": "\ue020ImportantYeoman99681", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-09 18:59:02", - "registerOn": 1670254543.1246269, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254543.1246278, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323206.1668684, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670327472.4149199, - "lastIP": "azj~z`~|l~|", - "deviceUUID": "4f70739e851f001a6546754c5de2d4346c829195" - }, - "pb-IF5RU1I4Vw==": { - "display_string": [ - "\ue063Dethracer7" - ], - "profiles": [], - "name": "\ue063Dethracer7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 14:36:44", - "registerOn": 1670254550.1401196, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254550.14012, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254550.1401277, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254550.1401289, - "lastIP": "a\u007fk~za~xm~{a", - "deviceUUID": "5a9cb591ad9851f5a6963552224686de1cb0fffa" - }, - "pb-IF4AU0s_Lg==": { - "display_string": [ - "\ue063Dangerou18" - ], - "profiles": [], - "name": "\ue063Dangerou18", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-05 14:24:27", - "registerOn": 1670254849.679219, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670254849.6792197, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670254849.679228, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670254849.679229, - "lastIP": "dvvcyva\u007fj~~ji", - "deviceUUID": "57fc4e0ed7ea08e967c03cbdaa306eef2cf172c1" - }, - "pb-IF4dV0deMw==": { - "display_string": [ - "\ue020EngrossingFarmer8411" - ], - "profiles": [], - "name": "\ue020EngrossingFarmer8411", - "isBan": false, - "isMuted": false, - "accountAge": "2019-02-27 00:36:07", - "registerOn": 1670255001.736391, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255001.736392, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313768.957601, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313768.9576027, - "lastIP": "a\u007fk~}laajbyva\u007fn", - "deviceUUID": "a0334c888a84b2407e2a4ab6c236518fe8c31d40" - }, - "pb-IF41U08-KA==": { - "display_string": [ - "\ue063Excessive5" - ], - "profiles": [], - "name": "\ue063Excessive5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 18:59:49", - "registerOn": 1670255113.3803844, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255113.380385, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255113.3803947, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255113.3803964, - "lastIP": "azo~{h~~jfajb", - "deviceUUID": "c2c212ff923c6217a21d785856238366adb097a2" - }, - "pb-IF4xU08sHQ==": { - "display_string": [ - "\ue020SmartSid12345", - "\ue030Android63979752", - "\ue030Android42905975" - ], - "profiles": [], - "name": "\ue030Android63979752", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 23:46:13", - "registerOn": 1670255144.4869297, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255144.4869304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255144.4869394, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255144.4869404, - "lastIP": "a}h~~khaia{viw", - "deviceUUID": "d5a8202ad4f3a064230e4c3a06eabcb6f715f2c2" - }, - "pb-IF4jVEwxDw==": { - "display_string": [ - "\ue020surajnikam266", - "\ue030Android61689027" - ], - "profiles": [], - "name": "\ue020surajnikam266", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-31 12:49:06", - "registerOn": 1670255391.4203773, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255391.420378, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255391.4203866, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255391.4203875, - "lastIP": "dvvcyva}h~~nd", - "deviceUUID": "70cff96ba8ba4f084c3253d67efc7841386bd18d", - "cMsgCount": 0, - "lastMsgTime": 1670255587.440066, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF40VEwfPQ==": { - "display_string": [ - "\ue020AJAYJOSHI904" - ], - "profiles": [], - "name": "\ue020AJAYJOSHI904", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-02 17:58:50", - "registerOn": 1670255434.5880437, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255434.5880444, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255434.5880518, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255434.5880527, - "lastIP": "a|a~~ngajbyvg\u007f", - "deviceUUID": "0ee6b6eecf6f52f2bb376cbcb31feee46cb123ec" - }, - "pb-IF4zU20BFA==": { - "display_string": [ - "\ue020TenableCoherence51" - ], - "profiles": [], - "name": "\ue020TenableCoherence51", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-16 12:08:23", - "registerOn": 1670255484.7145073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255484.714508, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255484.7145162, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255484.7145174, - "lastIP": "azo~{l~~nhaihy", - "deviceUUID": "705c9617b9e47d8c50f605c506cf54ea6a67cc58" - }, - "pb-IF4VUnQ-Cg==": { - "display_string": [ - "\ue020aashiq8126" - ], - "profiles": [], - "name": "\ue020aashiq8126", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-20 11:04:40", - "registerOn": 1670255567.027972, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255567.027973, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255567.02798, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255567.0279808, - "lastIP": "azo~{n~yo~}jf", - "deviceUUID": "65e39e7eb61d5effa47ed6c17016cd8ef39929a3" - }, - "pb-IF40U2UfUQ==": { - "display_string": [ - "\ue063ChromeGua3" - ], - "profiles": [], - "name": "\ue063ChromeGua3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-18 16:10:24", - "registerOn": 1670255977.6800907, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670255977.6800911, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670255977.6800992, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670255977.6801002, - "lastIP": "azo~{a~~`caii\u007f", - "deviceUUID": "e10fe74d8f3b704ccbc129a33799524df9d6e93b" - }, - "pb-IF4qU1BYEA==": { - "display_string": [ - "\ue063RubberMast" - ], - "profiles": [], - "name": "\ue063RubberMast", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 16:10:43", - "registerOn": 1670256011.93738, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256011.9373806, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256011.937388, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256011.9373891, - "lastIP": "dvvc}va{o~~kh", - "deviceUUID": "63e47d624472109b043874aa16140f91c34fb3ed" - }, - "pb-IF49U0gMLg==": { - "display_string": [ - "\ue020FocalJunction38" - ], - "profiles": [], - "name": "\ue020FocalJunction38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 12:53:22", - "registerOn": 1670256012.1049006, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256012.1049013, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256012.104909, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256012.1049101, - "lastIP": "azo~{a~}kfaoi", - "deviceUUID": "1a178a99f5a7d57629687eabf1df69d7bbdfa623" - }, - "pb-IF4lB0sz": { - "display_string": [ - "\ue063BrownCreat" - ], - "profiles": [], - "name": "\ue063BrownCreat", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-01 13:39:18", - "registerOn": 1670256028.8637788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256028.863779, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256028.863786, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256028.8637867, - "lastIP": "b}k~~oha`eaj`\u007f", - "deviceUUID": "b0220229f2ebad7ac29d3379a9de68e4e0c9e1ce" - }, - "pb-IF4AUhIyJA==": { - "display_string": [ - "\ue063LongerImag" - ], - "profiles": [], - "name": "\ue063LongerImag", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-13 12:41:16", - "registerOn": 1670256070.954883, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256070.9548838, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256070.954892, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256070.954893, - "lastIP": "dvvc}vazn~z", - "deviceUUID": "230ae545d6366c2d0debb0c4a8803619de13478f" - }, - "pb-IF4RUnY9IQ==": { - "display_string": [ - "\ue030Android57008711" - ], - "profiles": [], - "name": "\ue030Android57008711", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-27 20:35:39", - "registerOn": 1670256129.2770996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256129.2771003, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315698.4613986, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315698.4614, - "lastIP": "azo~|`~~kiaa", - "deviceUUID": "\u0015S\u000ePSA\u0005\\\u0005U\u0017" - }, - "pb-IF40U2k8Ig==": { - "display_string": [ - "\ue030Android61657358" - ], - "profiles": [], - "name": "\ue030Android61657358", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-02 07:48:54", - "registerOn": 1670256381.4128532, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256381.4128542, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256381.4128635, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256381.4128644, - "lastIP": "azo~{n~}jaaif{", - "deviceUUID": "\u0015\u0002U" - }, - "pb-JiNJARFaUEBFW1xEGURTVFxFFkJZQ1BL": { - "display_string": [ - "\ue063Conqueror2", - "\ue030Android6251393" - ], - "profiles": [], - "name": "\ue063Conqueror2", - "isBan": false, - "isMuted": false, - "accountAge": "2016-08-28 23:08:40", - "registerOn": 1670256437.6212132, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256437.6212142, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256437.6212237, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256437.6212244, - "lastIP": "a\u007fk~~`cajbvvayl", - "deviceUUID": "83adaa972d7102283297eee361226c7407497ff5" - }, - "pb-IF4QV1kdNw==": { - "display_string": [ - "\ue063SICKBOY234" - ], - "profiles": [], - "name": "\ue063SICKBOY234", - "isBan": false, - "isMuted": false, - "accountAge": "2019-06-07 18:57:50", - "registerOn": 1670256520.9515796, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256520.95158, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256520.9515882, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256520.951589, - "lastIP": "azo~{n~~naaje\u007f", - "deviceUUID": "72c11652acdcd43b7aedc769abbe37c3982b9523" - }, - "pb-JiNJARFZUUpJX1tGE0dWVlJEE0NdQFhB": { - "display_string": [ - "\ue063bhaumikrat", - "\ue030Android12040933" - ], - "profiles": [], - "name": "\ue020bhaumikrathod1234", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-27 14:51:19", - "registerOn": 1670256565.1365228, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256565.1365232, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344406.4825704, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670344424.543868, - "lastIP": "azj~z`~|l~}ig", - "deviceUUID": "24051ec9abcd42747643aa2415870c8cd47b1c39" - }, - "pb-IF4lUhAuDA==": { - "display_string": [ - "\ue063Bodacious8" - ], - "profiles": [], - "name": "\ue063Bodacious8", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-02 18:23:15", - "registerOn": 1670256648.5232904, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256648.523291, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256648.5233006, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256648.5233018, - "lastIP": "a~o~}jhaif}va\u007fj", - "deviceUUID": "2b3d06d2e74e7f36a98e8e8a6851ccb5a52b543d" - }, - "pb-IF4cVGsqNA==": { - "display_string": [ - "\ue020369joker963" - ], - "profiles": [], - "name": "\ue020369joker963", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-15 20:57:36", - "registerOn": 1670256768.0631816, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256768.0631824, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670256768.063189, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670256768.06319, - "lastIP": "a\u007fn~~adalaaje", - "deviceUUID": "bdca4575f5eeafa7f2539cc58e3df27ed061ba5e" - }, - "pb-IF4XU0E5AQ==": { - "display_string": [ - "\ue020UngainlyAluminum35", - "\ue030Android63419605", - "\ue030Android63419543" - ], - "profiles": [], - "name": "\ue020UngainlyAluminum35", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-10 19:08:41", - "registerOn": 1670256850.1497886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256850.1497893, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670301915.2810547, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670303450.3310106, - "lastIP": "a|o~vo~wk~~oh", - "deviceUUID": "4d9c2aba151eac517fd2829146e384861e29f9ff", - "cMsgCount": 0, - "lastMsgTime": 1670303306.985972, - "lastMsg": "sry vivek", - "cSameMsg": 0 - }, - "pb-IF4wU09SJA==": { - "display_string": [ - "\ue030Android63940563" - ], - "profiles": [], - "name": "\ue030Android63940563", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 13:43:25", - "registerOn": 1670256879.2725005, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670256879.272501, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321445.7735, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321445.7735014, - "lastIP": "a\u007fn~}jcajavvex", - "deviceUUID": "f5d1b5720c5e611804c462836db425c51cce3620" - }, - "pb-IF4GUhU4AA==": { - "display_string": [ - "\ue030Android54215093" - ], - "profiles": [], - "name": "\ue030Android54215093", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-25 02:34:17", - "registerOn": 1670257031.9821866, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257031.982187, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257031.9821963, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257031.982197, - "lastIP": "awi~~odaodaj`~", - "deviceUUID": "d6488396d3fc78711d5cf48ef28ed344208b6c5c" - }, - "pb-IF4XUlQNLw==": { - "display_string": [ - "\ue030Android59340397" - ], - "profiles": [], - "name": "\ue030Android59340397", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-31 20:20:09", - "registerOn": 1670257069.9438384, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257069.9438388, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257069.943847, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670257254.3727899, - "lastIP": "a}j~~mbamdakc", - "deviceUUID": "\u0015RZPTAU^\u0004WL\u0005\tVQBWZTPLT^RY" - }, - "pb-IF4-VFMbAg==": { - "display_string": [ - "\ue063ElegantLun" - ], - "profiles": [], - "name": "\ue063ElegantLun", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-13 06:00:26", - "registerOn": 1670257121.1981733, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257121.198174, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257121.1981828, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257121.198184, - "lastIP": "dvvdvvb{k~{m", - "deviceUUID": "c5b4b03a7c3bb039e656794cfc61c49a225d18a7" - }, - "pb-IF4wBUUK": { - "display_string": [ - "\ue020RAEEEEEEEEEEEEEEEEES", - "\ue030Android33511514" - ], - "profiles": [], - "name": "\ue020RAEEEEEEEEEEEEEEEEES", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-09 23:20:43", - "registerOn": 1670257170.4323204, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257170.4323208, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344421.5305216, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670344421.5305226, - "lastIP": "azo~|j~}kdaja", - "deviceUUID": "585dce69a029fb4d29648fd828dc36df5939d7aa" - }, - "pb-IF4AU085Cw==": { - "display_string": [ - "\ue030Android63969121" - ], - "profiles": [], - "name": "\ue030Android63969121", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 14:22:20", - "registerOn": 1670257188.4926977, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257188.4926984, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257188.4927082, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257188.4927092, - "lastIP": "a\u007fj~ym~xh~}m", - "deviceUUID": "\u0015\u0002\b\u0005V\u0016PY\u0003V@TZUY\u0011\u0004YTSDSZQYB" - }, - "pb-IF4OU0JcNw==": { - "display_string": [ - "\ue030Android63334530" - ], - "profiles": [], - "name": "\ue030Android63334530", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-15 22:53:08", - "registerOn": 1670257195.456958, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257195.4569585, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342087.234133, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670343654.846162, - "lastIP": "awj~xo~~iiana", - "deviceUUID": "d95a49067e47c54d6cf04fb08334208c020b6829" - }, - "pb-IF5QVWsoFw==": { - "display_string": [ - "\ue063Surajkhot0" - ], - "profiles": [], - "name": "\ue063Surajkhot0", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-29 19:11:10", - "registerOn": 1670257216.5894768, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257216.5894775, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257216.589486, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257216.5894868, - "lastIP": "a}j~~ngajezvavi", - "deviceUUID": "95ec89199587112fa5b89ec03f8d6ea5b274851a" - }, - "pb-IF4vU2ISBg==": { - "display_string": [ - "\ue063Nikhil18", - "\ue020IncompetentGhost28", - "\ue030Android60304282", - "\ue030PC750627", - "\ue030PC453003" - ], - "profiles": [], - "name": "\ue030PC750627", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-08 11:29:20", - "registerOn": 1670257267.8095806, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257267.809581, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257267.8095903, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670257608.7073476, - "lastIP": "a\u007fn~}i`aid}vb~m", - "deviceUUID": "82edc8862635598bd73138232e611b9569e9638e" - }, - "pb-IF4AU3ZcAw==": { - "display_string": [ - "\ue063Intolera18" - ], - "profiles": [], - "name": "\ue063Intolera18", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-19 10:14:51", - "registerOn": 1670257442.6885707, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257442.6885712, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257442.6885812, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257442.6885822, - "lastIP": "a\u007fk~~kganga`c", - "deviceUUID": "2b2a5028de891149889a4a2eb39786fad1a95ed5" - }, - "pb-IF4mUnE_Lg==": { - "display_string": [ - "\ue063rohithsai0" - ], - "profiles": [], - "name": "\ue063rohithsai0", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-06 18:59:43", - "registerOn": 1670257451.4285731, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257451.4285738, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257451.4285817, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257451.4285824, - "lastIP": "bxvgaif~vbzl", - "deviceUUID": "e3074849d0eee0df511f6b5881e05ffe938c5b3b" - }, - "pb-IF4HU3UIXA==": { - "display_string": [ - "\ue063danchoak47" - ], - "profiles": [], - "name": "\ue063danchoak47", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-16 17:06:36", - "registerOn": 1670257571.8968, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257571.8968008, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257571.8968105, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257571.8968115, - "lastIP": "baic{vf{vayj", - "deviceUUID": "37fda0db7af73b8e05d9db7f472122163e86fd59" - }, - "pb-IF5TUm4DNg==": { - "display_string": [ - "\ue063Sumanth386" - ], - "profiles": [], - "name": "\ue063Sumanth386", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-11 22:48:19", - "registerOn": 1670257598.010625, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257598.0106256, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257598.0106332, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257598.010634, - "lastIP": "azo~{m~}mdaihz", - "deviceUUID": "d56fd1b3882e3d7b300af8a33463737cd66516c5" - }, - "pb-IF41VEEdVA==": { - "display_string": [ - "\ue063MuscularPl" - ], - "profiles": [], - "name": "\ue063MuscularPl", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-31 20:11:02", - "registerOn": 1670257724.4213145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257724.421315, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257724.4213226, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257724.4213235, - "lastIP": "dvvcxvb|l~~hf", - "deviceUUID": "52d137eaf00eb67a82a7f367b5d0a222793760dd" - }, - "pb-IF4-U0w7DQ==": { - "display_string": [ - "\ue020YOSHITHALAKMAL45", - "\ue030Android63751944" - ], - "profiles": [], - "name": "\ue020YOSHITHALAKMAL45", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-12 21:37:53", - "registerOn": 1670257826.8966699, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257826.8966706, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257826.8966787, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257826.8966799, - "lastIP": "b~j~~hdajbzvb{j", - "deviceUUID": "625be643e68bf9a72627ecb1c203974b21e5daae" - }, - "pb-IF4oBEwf": { - "display_string": [ - "\ue063NoName52901c", - "\ue030Android22180102" - ], - "profiles": [], - "name": "\ue063NoName52901c", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-05 21:27:42", - "registerOn": 1670257898.0722663, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257898.072267, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257898.0722752, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257898.072276, - "lastIP": "a~o~}hhajgaicz", - "deviceUUID": "fbb6a93a18228ba8573fa94f744464ace5a11058" - }, - "pb-IF4iVRRaDQ==": { - "display_string": [ - "\ue063optimusmeg" - ], - "profiles": [], - "name": "\ue063optimusmeg", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-28 19:37:49", - "registerOn": 1670257933.27594, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257933.2759407, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257933.2759502, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257933.2759511, - "lastIP": "azo~~iiajcyva{i", - "deviceUUID": "1d9711343cacf46a5e97d174be2eb96f4bb2bc20" - }, - "pb-IF5UU3YxEA==": { - "display_string": [ - "\ue020MiraculousContrary29" - ], - "profiles": [], - "name": "\ue020MiraculousContrary29", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-13 20:55:50", - "registerOn": 1670257969.341402, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670257969.3414025, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670257969.3414106, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670257969.3414116, - "lastIP": "dvvcyvd|vd{", - "deviceUUID": "b72b68b2b301a8c12b2f6e3840192b2eea474da5" - }, - "pb-IF4eU08zVQ==": { - "display_string": [ - "\ue020BouncySnake77868" - ], - "profiles": [], - "name": "\ue020BouncySnake77868", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 18:16:48", - "registerOn": 1670258009.676994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258009.6769946, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258009.6770022, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258009.677003, - "lastIP": "azo~|k~}i`a`", - "deviceUUID": "307ac933e9919132e77bb2da8f82e827ddd5196e" - }, - "pb-IF5VVBI-UQ==": { - "display_string": [ - "\ue063DryPreside", - "\ue030Android35720524" - ], - "profiles": [], - "name": "\ue063DryPreside", - "isBan": false, - "isMuted": false, - "accountAge": "2019-06-12 17:45:06", - "registerOn": 1670258027.5899825, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258027.5899832, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258027.5899925, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258027.5899932, - "lastIP": "bxvc{vb\u007fva}h", - "deviceUUID": "9c05542b0d92d6e3cdaef3d161323aef6f22fe14" - }, - "pb-IF5XU0YhFg==": { - "display_string": [ - "\ue063DiligentSt" - ], - "profiles": [], - "name": "\ue063DiligentSt", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 22:45:27", - "registerOn": 1670258043.6863267, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258043.6863275, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258043.6863375, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258043.686339, - "lastIP": "bxvexvizva~a", - "deviceUUID": "c6359922302e30ae253b4c7d7a434e753afd3b5c" - }, - "pb-IF4CVUcaAg==": { - "display_string": [ - "\ue030Android51729718" - ], - "profiles": [], - "name": "\ue030Android51729718", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-01 11:15:45", - "registerOn": 1670258400.3804352, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258400.380436, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258400.3804445, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670262188.268341, - "lastIP": "a~o~}laaib\u007fvav", - "deviceUUID": "d06246790daa5a946dd0053412654233fbdbd195" - }, - "pb-IF5VUlYDHQ==": { - "display_string": [ - "\ue030Android59349492" - ], - "profiles": [], - "name": "\ue030Android59349492", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-01 02:22:07", - "registerOn": 1670258509.7183855, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258509.7183862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258509.7183943, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258509.718396, - "lastIP": "dxvazvaa`", - "deviceUUID": "9bd95b592b7a4c23361b903e2242375724a3bc06" - }, - "pb-IF4OU2oKJw==": { - "display_string": [ - "\ue020CaptainBlackbeard11" - ], - "profiles": [], - "name": "\ue020CaptainBlackbeard11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-05 11:58:33", - "registerOn": 1670258656.2382498, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258656.2382505, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258656.2382581, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258656.2382588, - "lastIP": "b~j~~hdajb{vavj", - "deviceUUID": "0c3eb8ca5ce0429e4b0545f62c20f5f844f5dc97" - }, - "pb-IF4WU0s_VA==": { - "display_string": [ - "\ue020FrostyCourt15" - ], - "profiles": [], - "name": "\ue020FrostyCourt15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 22:44:53", - "registerOn": 1670258709.4077702, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258709.4077706, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258709.4077792, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258709.4077804, - "lastIP": "azo~|`~~liaify", - "deviceUUID": "a9f51694aa2d331a4a30e971af714612fd526077" - }, - "pb-JiNJARFZXUFBX11BGEVXU1RCGERXQ1BF": { - "display_string": [ - "\ue063TaRkHaN221", - "\ue030Android11064809" - ], - "profiles": [], - "name": "\ue063TaRkHaN221", - "isBan": false, - "isMuted": false, - "accountAge": "2017-02-23 19:56:03", - "registerOn": 1670258719.434443, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258719.4344437, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258719.434454, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258719.4344547, - "lastIP": "azo~|`~~kfak", - "deviceUUID": "df2dcc995bb14f4880ff8a8743049ed69645d7b5" - }, - "pb-IF4iNRI7": { - "display_string": [ - "\ue020vikramvicky9917", - "\ue030Android16943081" - ], - "profiles": [], - "name": "\ue020vikramvicky9917", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-23 11:13:31", - "registerOn": 1670258862.0087178, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258862.0087185, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258862.008727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258862.008728, - "lastIP": "azo~{a~~ogaie}", - "deviceUUID": "eb46d3e52be084680ebfe2286c0b3834094347b6" - }, - "pb-IF4nU00CDw==": { - "display_string": [ - "\ue020IndigoProfessor29406" - ], - "profiles": [], - "name": "\ue020IndigoProfessor29406", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 21:37:52", - "registerOn": 1670258952.6872625, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670258952.6872628, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670258952.6872702, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670258952.6872709, - "lastIP": "aya~~liajbyvavh", - "deviceUUID": "cec28973acf105e77c22762e056d2dcad53f79a6" - }, - "pb-IF4nVUkkJg==": { - "display_string": [ - "\ue063Undercove7" - ], - "profiles": [], - "name": "\ue063Undercove7", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-08 18:03:05", - "registerOn": 1670259117.053902, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670259117.0539024, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259117.0539112, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259117.0539124, - "lastIP": "b}k~}jhajdzvdv", - "deviceUUID": "eed06cfd1de9dfbee6fa36ec96d04f3c1a5bfc9a" - }, - "pb-IF4PU0UJFw==": { - "display_string": [ - "\ue020SkeletalMention95" - ], - "profiles": [], - "name": "\ue020SkeletalMention95", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-04 14:07:25", - "registerOn": 1670259225.4756715, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670259225.4756722, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259225.4756813, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259225.4756823, - "lastIP": "a~o~}mcaaiai`}", - "deviceUUID": "ccdaf8b03237a74be04a5b92442eeba20b2444ec" - }, - "pb-IF4VU3EjBg==": { - "display_string": [ - "\ue020viru199554" - ], - "profiles": [], - "name": "\ue020viru199554", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 18:48:33", - "registerOn": 1670259259.5296886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670259259.5296893, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344413.507099, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670344413.5071, - "lastIP": "azj~z`~|m~}le", - "deviceUUID": "56d1170868f04f143c806ef6135b41ea8065127f", - "cMsgCount": 1, - "lastMsgTime": 1670345255.366503, - "lastMsg": "yes", - "cSameMsg": 0 - }, - "pb-JiNJARFdVERDXllFGUdVV1VFFkBdRFdC": { - "display_string": [ - "\ue020ismailrifai", - "\ue030Android4344519" - ], - "profiles": [], - "name": "\ue020ismailrifai", - "isBan": false, - "isMuted": false, - "accountAge": "2016-07-04 17:50:10", - "registerOn": 1670259266.6807163, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670259266.680717, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670305906.3024166, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670305906.3024182, - "lastIP": "azo~zi~~h`aig~", - "deviceUUID": "7b315c816cd636483f229a8d98d34bacb99e71c2" - }, - "pb-IF4NVVkCHA==": { - "display_string": [ - "\ue063NoName46139e" - ], - "profiles": [], - "name": "\ue063NoName46139e", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-31 02:48:44", - "registerOn": 1670259528.5617445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670259528.5617456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670259528.5617547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670259528.5617557, - "lastIP": "cxvb\u007fh~}lgaod", - "deviceUUID": "703a56441b0d763173ea55c61f6a39c66e44f559" - }, - "pb-IF4uVG0fIQ==": { - "display_string": [ - "\ue020SleepyPhantasm49204", - "\ue030Android39278299" - ], - "profiles": [], - "name": "\ue020SleepyPhantasm49204", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-03 17:29:36", - "registerOn": 1670260019.5806453, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260019.580646, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260019.5806546, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260019.5806556, - "lastIP": "azj~z`~|l~~hf", - "deviceUUID": "548d34f6ebd9f112a259b1c8cc304d83b3538a8d" - }, - "pb-IF4eU0UiNw==": { - "display_string": [ - "\ue020DearestSovereignty39", - "\ue030VR291971" - ], - "profiles": [], - "name": "\ue030VR291971", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-30 23:04:12", - "registerOn": 1670260076.8670533, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260076.867054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260076.8670633, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260076.8670645, - "lastIP": "a~i~~iiaja~vaxa", - "deviceUUID": "4f64d1521a4b6da3ae8223915a4a150f32554469" - }, - "pb-JiNJVxFTUUJJXFlGFUdUUlFGF0NYT1dE": { - "display_string": [ - "\ue063PsychKille", - "\ue030Android2209099" - ], - "profiles": [], - "name": "\ue063PsychKille", - "isBan": false, - "isMuted": false, - "accountAge": "2016-06-09 01:44:47", - "registerOn": 1670260102.0836394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260102.0836399, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260102.0836606, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670260143.8437214, - "lastIP": "awk~wj~}kcaid", - "deviceUUID": "4b8dfc65e95cdda13d37214230680c24ef6a52c4" - }, - "pb-IF5WU1E8DQ==": { - "display_string": [ - "\ue020BraveDeal60" - ], - "profiles": [], - "name": "\ue020BraveDeal60", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 22:45:33", - "registerOn": 1670260137.8995283, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260137.899529, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260137.8995373, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260137.899539, - "lastIP": "dvvcxvg}vb~j", - "deviceUUID": "6d9ffb3e457c116fd09a7056da1ad2eaf6c2268a" - }, - "pb-JiNJARFeUEBHXVhGEkFQVFVFGUJdRFNH": { - "display_string": [ - "\ue063Luminesce8", - "\ue030PC101334" - ], - "profiles": [], - "name": "\ue063Luminesce8", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-26 01:36:26", - "registerOn": 1670260200.3914208, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260200.3914216, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260200.3914292, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260200.3914301, - "lastIP": "a\u007fn~}ieaj`\u007fvawl", - "deviceUUID": "dda89a37d7ce8cdd248de398b1e61a6310268083" - }, - "pb-IF4PU3cHKQ==": { - "display_string": [ - "\ue030Android62944812" - ], - "profiles": [], - "name": "\ue030Android62944812", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 00:32:39", - "registerOn": 1670260355.937781, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260355.9377816, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260355.9377887, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260355.9377894, - "lastIP": "a\u007fk~~kdaiexvey", - "deviceUUID": "\u0015P\\\u0004SC\u0004Z\u0002\u0004\u0011P]Q" - }, - "pb-JiNJARFfXEpBWlpGEUdRVlJCEklXQ1NH": { - "display_string": [ - "\ue020yravishankar15", - "\ue030Android4946615" - ], - "profiles": [], - "name": "\ue063yravishank", - "isBan": false, - "isMuted": false, - "accountAge": "2016-06-14 20:44:13", - "registerOn": 1670260599.100515, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260599.1005156, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260599.1005244, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670260599.1005256, - "lastIP": "dvvc}vb}o~\u007f", - "deviceUUID": "9fcf81ca2127044a13059c7fff597709e8aef9c9" - }, - "pb-IF4QUlgKAA==": { - "display_string": [ - "\ue063Whimsical8" - ], - "profiles": [], - "name": "\ue063Whimsical8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-16 21:25:00", - "registerOn": 1670260736.2662442, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260736.2662444, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340624.0684586, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340624.0684597, - "lastIP": "d~vi\u007fvaxo~}md", - "deviceUUID": "d073747787e1fd85a68d6897bed86b72901a4f41", - "cMsgCount": 1, - "lastMsgTime": 1670341821.6542563, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4cU0EaCQ==": { - "display_string": [ - "\ue063RagingVirg" - ], - "profiles": [], - "name": "\ue063RagingVirg", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-14 22:15:39", - "registerOn": 1670260825.575996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260825.5759964, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260825.5760062, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260825.5760071, - "lastIP": "awk~wk~~lcaif\u007f", - "deviceUUID": "8f92ccdc91c0306504a0a5e8f734ef1cc45e55f1" - }, - "pb-IF4hVEwoJA==": { - "display_string": [ - "\ue020sury2803" - ], - "profiles": [], - "name": "\ue020sury2803", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-03 04:53:30", - "registerOn": 1670260853.6077015, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260853.6077023, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260853.6078458, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260853.6078475, - "lastIP": "awn~~meaje\u007fva|h", - "deviceUUID": "f2c164ad794d898b17253914d4a6c23110a99218" - }, - "pb-JiNJARFfXEZAW1dDGUBQU11GE0FXQFZC": { - "display_string": [ - "\ue020ElectricYodeler26380", - "\ue030Android12313251" - ], - "profiles": [], - "name": "\ue020ElectricYodeler26380", - "isBan": false, - "isMuted": false, - "accountAge": "2017-04-05 20:44:22", - "registerOn": 1670260877.9083874, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670260877.9083881, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670260877.9083965, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670260877.9083977, - "lastIP": "a\u007fk~~ofaiaaie~", - "deviceUUID": "567964f0d775d689b7fd35dfbf1e9d25123b5d79", - "cMsgCount": 0, - "lastMsgTime": 1670261659.5812995, - "lastMsg": "lul", - "cSameMsg": 0 - }, - "pb-IF4jU0JaNg==": { - "display_string": [ - "\ue063SeverestAp", - "\ue030Android63952940", - "\ue030Android63953044" - ], - "profiles": [], - "name": "\ue020SeverestApparel30", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 12:49:09", - "registerOn": 1670261087.3662689, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261087.3662696, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338921.8457785, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670339677.5781896, - "lastIP": "cwvd~vh{vez", - "deviceUUID": "c56f8361af0300b9516a6b0801a9cd8c83667895" - }, - "pb-IF4XU3gkNw==": { - "display_string": [ - "\ue020HoneyProgression37" - ], - "profiles": [], - "name": "\ue020HoneyProgression37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 19:58:05", - "registerOn": 1670261114.4563544, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261114.4563549, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261114.4563637, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670261735.6184196, - "lastIP": "azo~zi~~j`a`i", - "deviceUUID": "d6b5c8dc110f804fecb54ed1d5906d8c224a9bbf" - }, - "pb-IF5WVUcOFA==": { - "display_string": [ - "\ue020Angeliccutiee43", - "\ue030Android48977675", - "\ue030Android48990758" - ], - "profiles": [], - "name": "\ue020Angeliccutiee43", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-16 11:20:01", - "registerOn": 1670261205.910979, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261205.9109795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261205.9109886, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261205.9109895, - "lastIP": "dvvd|vb\u007fk~~ii", - "deviceUUID": "\u0015\u0005X\u0004" - }, - "pb-IF5TVVIaLA==": { - "display_string": [ - "\ue020PeakAlarm3243" - ], - "profiles": [], - "name": "\ue020PeakAlarm3243", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-13 22:20:13", - "registerOn": 1670261230.0989811, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261230.0989819, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261230.09899, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670261577.0474558, - "lastIP": "azo~{i~}meaihz", - "deviceUUID": "e332b31902594f55dd2f88cd6c06709f66e9d4f4" - }, - "pb-IF4gNFci": { - "display_string": [ - "\ue020Anirudhalwaysrockzzz" - ], - "profiles": [], - "name": "\ue020Anirudhalwaysrockzzz", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-22 21:06:18", - "registerOn": 1670261708.8552713, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261708.8552723, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670261708.8552802, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261708.855281, - "lastIP": "dvvcxva|i~~m", - "deviceUUID": "efab72a946f3bfb5c01a857ae08330f90e063102" - }, - "pb-IF4mVEoyVQ==": { - "display_string": [ - "\ue030Android42718925" - ], - "profiles": [], - "name": "\ue030Android42718925", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-24 16:41:32", - "registerOn": 1670261948.7153764, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670261948.715377, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670263209.608887, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670261948.715387, - "lastIP": "a\u007fk~~ofaiaaie~", - "deviceUUID": "567964f0d775d689b7fd35dfbf1e9d25123b5d79", - "cMsgCount": 0, - "lastMsgTime": 1670263397.8287296, - "lastMsg": "\ud83d\udca9 ", - "cSameMsg": 0 - }, - "pb-IF4UU08TBA==": { - "display_string": [ - "\ue063Commendabl" - ], - "profiles": [], - "name": "\ue063Commendabl", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 19:08:05", - "registerOn": 1670262577.1673675, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262577.167368, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670262577.1673772, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670262577.167378, - "lastIP": "a\u007fn~}igai`~vb~l", - "deviceUUID": "f0ce89638c7caec94595aa7ba691f8135c83d10f" - }, - "pb-IF5UU1EaJA==": { - "display_string": [ - "\ue030Android63987522" - ], - "profiles": [], - "name": "\ue030Android63987522", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 04:42:20", - "registerOn": 1670262591.2810163, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262591.2810168, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670262591.2810266, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670262591.2810276, - "lastIP": "f\u007fva\u007fvazh~{", - "deviceUUID": "4f2fea5353fe40b3d3f50086085d9a00b728bd75" - }, - "pb-IF4-VxM9VQ==": { - "display_string": [ - "\ue020TiredApparition30242" - ], - "profiles": [], - "name": "\ue020TiredApparition30242", - "isBan": false, - "isMuted": false, - "accountAge": "2018-07-28 16:32:06", - "registerOn": 1670262616.424632, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262616.4246325, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670262616.4246418, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670262818.9765315, - "lastIP": "i~vavk~~oiaog", - "deviceUUID": "b97c657beb043a11df17c16d5009f6e088d0f497" - }, - "pb-IF5UUxheIg==": { - "display_string": [ - "\ue020DollarHere69" - ], - "profiles": [], - "name": "\ue020DollarHere69", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-18 14:52:29", - "registerOn": 1670262711.9545352, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262711.9545357, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670263206.0221574, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670263894.805953, - "lastIP": "azo~|a~~m~~m`", - "deviceUUID": "44bf293dd1fd065c2a133e8ec510cda328d941df", - "cMsgCount": 0, - "lastMsgTime": 1670264069.7619326, - "lastMsg": "BHEN KE LAND ", - "cSameMsg": 0 - }, - "pb-IF4vUkRaEg==": { - "display_string": [ - "\ue020\u0110\u00c3\u0158\u0136x\u0160\u00ce\u011eM\u0100" - ], - "profiles": [], - "name": "\ue020\u0110\u00c3\u0158\u0136x\u0160\u00ce\u011eM\u0100", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-27 13:44:02", - "registerOn": 1670262752.0439079, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262752.0439084, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353528.4438727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670353528.4438741, - "lastIP": "azo~{i~}jgaj`v", - "deviceUUID": "\u0015Q_\u0005Q\u0012\u0004\u000fVQ\u0011", - "cMsgCount": 2, - "lastMsgTime": 1670353875.6399574, - "lastMsg": "VANSH KILLER MODE ON", - "cSameMsg": 0 - }, - "pb-IF4WUxcgNw==": { - "display_string": [ - "\ue063HipCompany" - ], - "profiles": [], - "name": "\ue063HipCompany", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-22 19:35:53", - "registerOn": 1670262914.968435, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670262914.9684355, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670348483.6660147, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670349811.4159536, - "lastIP": "b}k~}kcaoaaicv", - "deviceUUID": "2484cb8eb0af1bb40680e4565238f860274e03a0" - }, - "pb-IF4NU0IzCA==": { - "display_string": [ - "\ue020Naveenkrish010", - "\ue020BurnedGoose4973" - ], - "profiles": [], - "name": "\ue020Naveenkrish010", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-21 22:53:28", - "registerOn": 1670263043.3790493, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263043.3790498, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263043.3790588, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670263043.37906, - "lastIP": "azo~{a~}hfaigy", - "deviceUUID": "8cbf8dc931ac911ca6c7675b57c36fdb08698d8d" - }, - "pb-IF4HUlcgUQ==": { - "display_string": [ - "\ue063AdrenalCha" - ], - "profiles": [], - "name": "\ue063AdrenalCha", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-11 17:32:58", - "registerOn": 1670263148.671265, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263148.6712656, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670272413.2502463, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670273035.4105117, - "lastIP": "d~va\u007fk~|l~{o", - "deviceUUID": "2f88c71ae171757e42db79bd6806e724a6e90204", - "cMsgCount": 0, - "lastMsgTime": 1670263199.353203, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5UU0EkDg==": { - "display_string": [ - "\ue063PainlessVe" - ], - "profiles": [], - "name": "\ue063PainlessVe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-03 12:52:39", - "registerOn": 1670263274.3376331, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263274.3376338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670350232.1731644, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670350393.8888426, - "lastIP": "dvvcxvdyvbzm", - "deviceUUID": "641a2f073b1e85a22e7456f463b890e78f4be8a7" - }, - "pb-IF4dUxRaIw==": { - "display_string": [ - "\ue063Aaryan9957" - ], - "profiles": [], - "name": "\ue063Aaryan9957", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-10 19:30:59", - "registerOn": 1670263303.484445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263303.484446, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263303.4844553, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670263980.0883124, - "lastIP": "a\u007fk~~`aaa~{`", - "deviceUUID": "d538bbbf3455de4ca22b99f63aa7f00071fa8af6", - "cMsgCount": 0, - "lastMsgTime": 1670264525.1719406, - "lastMsg": "f", - "cSameMsg": 0 - }, - "pb-IF4vU00bAA==": { - "display_string": [ - "\ue020Joydeep98773" - ], - "profiles": [], - "name": "\ue020Joydeep98773", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 19:00:06", - "registerOn": 1670263447.944205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263447.9442055, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263447.944215, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670263447.944216, - "lastIP": "a\u007fn~}hcaid\u007fvb\u007fm", - "deviceUUID": "541cbf0896129baedcdf457c87c03c5d21bd7706" - }, - "pb-IF5TU24NKA==": { - "display_string": [ - "\ue063RichLegacy", - "\ue063ProGamer", - "\ue030PC591402" - ], - "profiles": [], - "name": "\ue063ProGamer", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-12 13:52:43", - "registerOn": 1670263647.0112047, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263647.0112054, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336107.3554645, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336107.355466, - "lastIP": "dvvcyvaxn~~a`", - "deviceUUID": "aff7875dd52a7119aaff0c2e491b02634cbd4606", - "cMsgCount": 0, - "lastMsgTime": 1670336208.2433898, - "lastMsg": "sry", - "cSameMsg": 0 - }, - "pb-IF4WUhkcNA==": { - "display_string": [ - "\ue020TorpidSoda28" - ], - "profiles": [], - "name": "\ue020TorpidSoda28", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-18 00:43:48", - "registerOn": 1670263664.0475185, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670263664.0475194, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670263664.047527, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670267352.9067807, - "lastIP": "a\u007fn~~aealfajb}", - "deviceUUID": "\u0015RTSPLX\u000eQS@V\fRP\u0010\u0003\\PYFWYPYDW" - }, - "pb-IF4OU2xZMQ==": { - "display_string": [ - "\ue030Android61875750" - ], - "profiles": [], - "name": "\ue030Android61875750", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-10 19:26:31", - "registerOn": 1670264228.566189, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670264228.5661895, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670264228.5661979, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670264228.5661986, - "lastIP": "a\u007fk~}kcaada`h", - "deviceUUID": "\u0015U\t" - }, - "pb-IF4gU0wEDw==": { - "display_string": [ - "\ue020FlyingBrainiac12578" - ], - "profiles": [], - "name": "\ue020FlyingBrainiac12578", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 10:05:37", - "registerOn": 1670264955.4655886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670264955.465589, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670264955.465598, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670264955.4655995, - "lastIP": "dvvcxvb}n~v", - "deviceUUID": "d2efd8aacde477a9262f678f5433c27437ffc6bb" - }, - "pb-IF5QU1JaDQ==": { - "display_string": [ - "\ue063Principlej" - ], - "profiles": [], - "name": "\ue063Principlej", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 09:37:42", - "registerOn": 1670265430.1539268, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670265430.1539273, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670265430.1539366, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670265430.1539378, - "lastIP": "azo~{`~~adajbx", - "deviceUUID": "47fb79173121537a33fbe47ef8ad293c0ad3c1b5" - }, - "pb-IF4SUxIFMA==": { - "display_string": [ - "\ue030Android60235119" - ], - "profiles": [], - "name": "\ue030Android60235119", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-04 15:08:40", - "registerOn": 1670266023.2819886, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670266023.281989, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670266023.2819977, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670266023.2819986, - "lastIP": "b\u007fk~~adaafaie}", - "deviceUUID": "406df2ab74f0ff998dcabeaba63bf128d7ccef5d" - }, - "pb-IF4AU00uAg==": { - "display_string": [ - "\ue063Jeffin" - ], - "profiles": [], - "name": "\ue063Jeffin", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 11:08:58", - "registerOn": 1670266229.7237597, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670266229.7237601, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670266229.7237673, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670266229.723768, - "lastIP": "bxvf~vcvva{", - "deviceUUID": "0150328aec7a69913cfe30dac447e803a9800838" - }, - "pb-IF4AU2s9Uw==": { - "display_string": [ - "\ue063Pretentio2" - ], - "profiles": [], - "name": "\ue063Pretentio2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-08 12:19:59", - "registerOn": 1670266540.9127097, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670266540.9127102, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670266540.9127188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670266540.91272, - "lastIP": "dvvcxvb|j~}ie", - "deviceUUID": "d475ea93c04557889768bc057af5319dc6bca105", - "cMsgCount": 0, - "lastMsgTime": 1670266929.3332627, - "lastMsg": "sorry ", - "cSameMsg": 0 - }, - "pb-IF5VUhQgPA==": { - "display_string": [ - "\ue020Nithya1357" - ], - "profiles": [], - "name": "\ue020Nithya1357", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-10 22:18:45", - "registerOn": 1670266809.5008829, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670266809.5008838, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347305.5816493, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670347305.5816507, - "lastIP": "dvvb\u007fn~~kdaiby", - "deviceUUID": "0f2c20877efc3588b07f2388906a504a20a4f7d0" - }, - "pb-IF4-V3IdPA==": { - "display_string": [ - "\ue020CharredFlyer12772" - ], - "profiles": [], - "name": "\ue020CharredFlyer12772", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-17 15:53:11", - "registerOn": 1670267294.4895544, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670267294.489555, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670267294.489564, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670267298.693045, - "lastIP": "dvvc|vb|o~{l", - "deviceUUID": "fb8f448e5f6c9142170c0434c30e9d02d2ea4a57" - }, - "pb-IF42U0VSCA==": { - "display_string": [ - "\ue020Bulletproofdon" - ], - "profiles": [], - "name": "\ue020Bulletproofdon", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 22:05:23", - "registerOn": 1670267698.672845, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670267698.6728451, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268220.3769019, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268220.3769035, - "lastIP": "azo~|k~w`~{j", - "deviceUUID": "d5067234b5565092274a259048f39297ac485197", - "cMsgCount": 1, - "lastMsgTime": 1670268749.7117054, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4TUkkYBw==": { - "display_string": [ - "\ue063Mushroom" - ], - "profiles": [], - "name": "\ue063Mushroom", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-18 23:21:10", - "registerOn": 1670267741.857844, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670267741.8578448, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268210.3498394, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268210.3498406, - "lastIP": "eakhajc~va~i", - "deviceUUID": "394fac9d5122b649ccdb9ba4d6c864f03088854c", - "cMsgCount": 1, - "lastMsgTime": 1670267901.2283986, - "lastMsg": "mate", - "cSameMsg": 0 - }, - "pb-IF4sU00vAg==": { - "display_string": [ - "\ue063NasalDiplo", - "\ue030Android53077044" - ], - "profiles": [], - "name": "\ue063NasalDiplo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 19:56:58", - "registerOn": 1670267982.6740432, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670267982.6740434, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670267982.6740515, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670267982.6740527, - "lastIP": "a\u007fn~~aeai~ya", - "deviceUUID": "0064e951148266470c1c3002ace73185d77510f8" - }, - "pb-IF42U3YILQ==": { - "display_string": [ - "\ue063ColderFore" - ], - "profiles": [], - "name": "\ue063ColderFore", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-22 08:38:00", - "registerOn": 1670268235.7617621, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670268235.7617626, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268235.7617717, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268235.7617729, - "lastIP": "avh~~`gaoeakc", - "deviceUUID": "6aa1346e481304a4d7fba94c90f53e1e93b22d2e", - "cMsgCount": 0, - "lastMsgTime": 1670268244.2990446, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4IUmhYLw==": { - "display_string": [ - "\ue030Android55528459" - ], - "profiles": [], - "name": "\ue030Android55528459", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-23 15:19:38", - "registerOn": 1670268669.2764938, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670268669.2764945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268669.2765048, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268669.276506, - "lastIP": "a\u007fn~}iaaiazva\u007f", - "deviceUUID": "\u0015QXYSE\u0003_W\u0004\u0012\u0002\fUW\u0016V\\UPEX\\YYLX", - "cMsgCount": 0, - "lastMsgTime": 1670268673.6153338, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4jU08vMQ==": { - "display_string": [ - "\ue063Serverr936" - ], - "profiles": [], - "name": "\ue063Serverr936", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 10:12:08", - "registerOn": 1670268813.0861893, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670268813.0861897, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268813.0861993, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268813.0862, - "lastIP": "azo~{i~}mdaah", - "deviceUUID": "548cce6a079bbda740d03793a1d78e999a4c1fd4" - }, - "pb-IF5VU1ItNg==": { - "display_string": [ - "\ue063SaddestAcr" - ], - "profiles": [], - "name": "\ue063SaddestAcr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 01:03:33", - "registerOn": 1670268824.8145304, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670268824.814531, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268824.8145406, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268824.8145416, - "lastIP": "a\u007fk~~leajbwva~h", - "deviceUUID": "80a5927b6c74f9a1f7c8cd16199e41ed94628989" - }, - "pb-IF4HU1AoFw==": { - "display_string": [ - "\ue030Android63992316" - ], - "profiles": [], - "name": "\ue030Android63992316", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 00:14:48", - "registerOn": 1670268999.7515473, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670268999.7515478, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670268999.751557, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670268999.7515578, - "lastIP": "a}j~~naanfaia{", - "deviceUUID": "5a3b221e698df0e50686cf61a4fd6c361517dd6c" - }, - "pb-IF4iVHRaXA==": { - "display_string": [ - "\ue020CapDevesh" - ], - "profiles": [], - "name": "\ue020CapDevesh", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-16 18:13:04", - "registerOn": 1670269000.4936824, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670269000.4936829, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269000.493692, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670272184.3953347, - "lastIP": "b}k~~`gaafaie~", - "deviceUUID": "70569d57efce9750d7464728562325edcf1203c6" - }, - "pb-IF4yVWpeMg==": { - "display_string": [ - "\ue020Meharsh1306", - "\ue030Android61717776" - ], - "profiles": [], - "name": "\ue030Android61717776", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-12 19:36:27", - "registerOn": 1670269060.6663125, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670269060.666313, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269060.6663203, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670269060.666321, - "lastIP": "b}k~~`iaidakg", - "deviceUUID": "9fcea12656a90d1fa47701bd113e3f0df1e4bb1e" - }, - "pb-IF4uMkky": { - "display_string": [ - "\ue020\ud808\udc31\uaab3C\u0574\u027e\u0282\u04bd\u056a\ud808\udc31\uaab3", - "\ue020OldenClub66", - "\ue063cursed", - "\ue030Android44803558" - ], - "profiles": [], - "name": "\ue063cursed", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-30 19:35:29", - "registerOn": 1670269534.705363, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670269534.7053635, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269534.7053723, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670269534.7053735, - "lastIP": "avk~}kbakfajdy", - "deviceUUID": "0ad1d379f9a2f3005f16445ceeb35bd587fe3f75" - }, - "pb-IF4-U0c8LA==": { - "display_string": [ - "\ue063ProsaicCre" - ], - "profiles": [], - "name": "\ue063ProsaicCre", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 18:51:38", - "registerOn": 1670269585.6780055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670269585.678006, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670269585.678013, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670269607.3032615, - "lastIP": "dvvcyvb}j~}h`", - "deviceUUID": "e97b3a5e7828bf75796dc4f8a4b323e5c5645e62" - }, - "pb-IF4BV1ZfCQ==": { - "display_string": [ - "\ue020\uff22\uff21\uff39\uff2d\uff21\uff38", - "\ue030Android42815279" - ], - "profiles": [], - "name": "\ue020\uff22\uff21\uff39\uff2d\uff21\uff38", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-17 05:09:59", - "registerOn": 1670270264.9288244, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270264.928825, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670270264.9288337, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670270264.9288347, - "lastIP": "a\u007fn~~adakiajaw", - "deviceUUID": "757a2ad0f26b271051938389433213762d24ed76", - "cMsgCount": 0, - "lastMsgTime": 1670270277.9486527, - "lastMsg": "/punch me", - "cSameMsg": 0 - }, - "pb-IF4xU0paHA==": { - "display_string": [ - "\ue020ExpedientApproach60" - ], - "profiles": [], - "name": "\ue063Expedient5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-31 07:19:50", - "registerOn": 1670270532.2592604, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270532.259261, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670270532.2592697, - "verified": false, - "rejoincount": 1, - "lastJoin": 1670270532.2592707, - "lastIP": "dzvb}n~|m~~ic", - "deviceUUID": "473879360e0d6d066f88b91464cda01f6c376535" - }, - "pb-IF4DUmYmFg==": { - "display_string": [ - "\ue063Spaz1", - "\ue063TheSpaz", - "\ue030Android55930680", - "\ue030Android62890286", - "\ue030Android63917572" - ], - "profiles": [], - "name": "\ue063Spaz1", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-14 06:23:56", - "registerOn": 1670270557.18025, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270557.1802506, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670270557.1802583, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670270557.180259, - "lastIP": "i~vb{j~~`hanb", - "deviceUUID": "6510374edf57e52981ce2be266308e2c1e6b6d82" - }, - "pb-IF5SVXIHMA==": { - "display_string": [ - "\ue063Arnob007" - ], - "profiles": [], - "name": "\ue063Arnob007", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-31 21:17:47", - "registerOn": 1670270808.0273073, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270808.0273082, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670363341.0405223, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670362486.0646586, - "lastIP": "a\u007fk~~maai`{vawk", - "deviceUUID": "2d35579a15f649e90d3651997909672e0d9bfd45", - "cMsgCount": 0, - "lastMsgTime": 1670363441.8099403, - "lastMsg": "my ping high", - "cSameMsg": 0 - }, - "pb-IF4iU0lSFQ==": { - "display_string": [ - "\ue063Enigmatic7" - ], - "profiles": [], - "name": "\ue063Enigmatic7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-28 00:09:51", - "registerOn": 1670270832.1114368, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270832.1114376, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343813.4026566, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343813.4026577, - "lastIP": "a\u007fn~~aeaoca`h", - "deviceUUID": "cd3fb6202f2623d5fecbad02b7d5df2dac3f51e5" - }, - "pb-IF4-B20v": { - "display_string": [ - "\ue063sena3456" - ], - "profiles": [], - "name": "\ue063sena3456", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-27 11:13:53", - "registerOn": 1670270966.3389475, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670270966.3389482, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300631.9559453, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300631.9559467, - "lastIP": "b}k~~`gaia|vav`", - "deviceUUID": "2d44fc4828e6e7583a9f71bebedad64c3bd489b1" - }, - "pb-JiNJARFeXEVGX1hEFE5XXFFDE0lZT1VD": { - "display_string": [ - "\ue020pikachu07001", - "\ue063HageMaaroo", - "\ue030Android15271882" - ], - "profiles": [], - "name": "\ue063HageMaaroo", - "isBan": false, - "isMuted": false, - "accountAge": "2017-07-13 11:15:37", - "registerOn": 1670271177.389131, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670271177.3891318, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271177.3891408, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670271177.3891416, - "lastIP": "dvvcxvavm~~i", - "deviceUUID": "32b5fd2662105ff9268651e6ca9f557e0d9803a0", - "cMsgCount": 0, - "lastMsgTime": 1670274175.4552028, - "lastMsg": "yeaaahhh", - "cSameMsg": 0 - }, - "pb-IF4AU2ETLQ==": { - "display_string": [ - "\ue020CongenialLife49", - "\ue030Android61199991" - ], - "profiles": [], - "name": "\ue020CongenialLife49", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-04 21:57:50", - "registerOn": 1670271397.1699944, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670271413.5615344, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271397.1700022, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670271405.517372, - "lastIP": "a\u007fn~~adaii}va\u007fh", - "deviceUUID": "f8c58a3902ed3e2e22976546fea746e4e5fd22cd" - }, - "pb-IF4qU0ocPQ==": { - "display_string": [ - "\ue020SalutaryEnthusiasm23" - ], - "profiles": [], - "name": "\ue020SalutaryEnthusiasm23", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 17:38:04", - "registerOn": 1670271734.3235207, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670271734.3235214, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271734.32353, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670271734.3235307, - "lastIP": "azo~|j~|n~~j", - "deviceUUID": "361e6edad194d9dcd5e70f8b83ad30b89a366b20" - }, - "pb-IF4cVW5cXA==": { - "display_string": [ - "\ue063Heisenber3" - ], - "profiles": [], - "name": "\ue063Heisenber3", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-12 19:01:24", - "registerOn": 1670271861.5134966, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670271861.513497, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271861.5135052, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670271861.513506, - "lastIP": "azo~|l~va~~kg", - "deviceUUID": "c6fd0a31b3e3ca258cb8d6cacdbaba417c57a045" - }, - "pb-IF5WU3oCNg==": { - "display_string": [ - "\ue063InorganicB", - "\ue030Android63010048" - ], - "profiles": [], - "name": "\ue063InorganicB", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-31 12:20:56", - "registerOn": 1670271863.5425, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670271863.5425003, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271863.542507, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670271863.542508, - "lastIP": "dxvbvvayn~~ja", - "deviceUUID": "e0f00d931615664971144af43f9ea26cd3ad9f8f" - }, - "pb-IF4eU1BfJA==": { - "display_string": [ - "\ue063HypnoticTo" - ], - "profiles": [], - "name": "\ue063HypnoticTo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 02:50:14", - "registerOn": 1670271880.6262717, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670271880.6262722, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670271880.6262815, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670271880.6262822, - "lastIP": "azj~zo~~lhajcx", - "deviceUUID": "fca8f09b2298675317559d875b05d2d87bcd1f2f" - }, - "pb-IF43U3YTJw==": { - "display_string": [ - "\ue020DisreputableExport28" - ], - "profiles": [], - "name": "\ue020DisreputableExport28", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-22 23:00:10", - "registerOn": 1670272340.3162413, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670272340.3162415, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340215.5294034, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340215.5294154, - "lastIP": "azo~zi~~adaic}", - "deviceUUID": "a620556129944df7009078d636b07f9c0eda6ec0" - }, - "pb-IF5QU1I8Fw==": { - "display_string": [ - "\ue063zashikibut" - ], - "profiles": [], - "name": "\ue063zashikibut", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 17:22:05", - "registerOn": 1670273234.816197, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670273234.8161976, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670273234.8162081, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670273234.816209, - "lastIP": "awh~~aaajdvva|n", - "deviceUUID": "9ec0513e2640ea8cff6553fac2ab5f94d261ef08" - }, - "pb-IF4yVWg9Jw==": { - "display_string": [ - "\ue063ReptilianL" - ], - "profiles": [], - "name": "\ue063ReptilianL", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-30 21:03:11", - "registerOn": 1670273293.094381, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670273293.0943816, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335770.7557588, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335770.7557604, - "lastIP": "dvvcyvc|vgz", - "deviceUUID": "44cfbd6d791bb8654a172eab47bc640623b2938a" - }, - "pb-IF4DJRkM": { - "display_string": [ - "\ue020VoraciousBoss5149" - ], - "profiles": [], - "name": "\ue020VoraciousBoss5149", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-06 13:39:45", - "registerOn": 1670273453.4133403, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670273453.4133413, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670273453.4133496, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670273453.4133506, - "lastIP": "aakiaoeane", - "deviceUUID": "6c6e76892584138cd876c2a61feea1366dd717e8" - }, - "pb-IF4NV3oIFA==": { - "display_string": [ - "\ue063NaNaJi", - "\ue030Android57361651", - "\ue030Android59829395", - "\ue030Android47779769" - ], - "profiles": [], - "name": "\ue030Android57361651", - "isBan": false, - "isMuted": false, - "accountAge": "2019-01-26 16:32:52", - "registerOn": 1670274069.0163372, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670274069.0163374, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670274069.016347, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670275399.8444836, - "lastIP": "aakhaadaoc", - "deviceUUID": "b402e94a63cebef2cfa290e8f76c5db9d1c96d2c" - }, - "pb-IF4nUkUzNw==": { - "display_string": [ - "\ue030Android57918367" - ], - "profiles": [], - "name": "\ue030Android57918367", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-01 00:57:54", - "registerOn": 1670280021.9998217, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670280021.9998221, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670280021.9998474, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670282338.2371898, - "lastIP": "fvvavl~~i`aof", - "deviceUUID": "\u0015\u0007^P\u0005M\u0007\f" - }, - "pb-IF4JUlUTBg==": { - "display_string": [ - "\ue063PlacidVern", - "\ue030Android58791013" - ], - "profiles": [], - "name": "\ue030Android58791013", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-07 03:59:42", - "registerOn": 1670282129.8213804, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670282129.8213809, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670283282.4488156, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670282129.8213902, - "lastIP": "ay`~}jgaahaib\u007f", - "deviceUUID": "2a28a2b283612858a27b2e3d3ffc69e227689b54", - "cMsgCount": 0, - "lastMsgTime": 1670283282.4487562, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4nUklcBA==": { - "display_string": [ - "\ue030iiRcade3504" - ], - "profiles": [], - "name": "\ue030iiRcade3504", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-15 00:10:18", - "registerOn": 1670282695.2957687, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670282695.29577, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670282695.2957776, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670282695.2957783, - "lastIP": "fyvbzvb{i~}je", - "deviceUUID": "\u0015\u0004ZRQE\u0005]Y\u0007G\u0003\u000e\u0004XB\u0005_SXFPYWYL" - }, - "pb-IF4jU0gA": { - "display_string": [ - "\ue063killlergam", - "\ue030Android63743342" - ], - "profiles": [], - "name": "\ue063killlergam", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-06 11:22:14", - "registerOn": 1670283366.7695243, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670283366.7695248, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670283366.7695327, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670283366.7695334, - "lastIP": "azo~|k~~n~}hc", - "deviceUUID": "76676109d7e03a3c37c8a1409a3f6943262cb530" - }, - "pb-IF4nU1AiKA==": { - "display_string": [ - "\ue063UpstreamLo" - ], - "profiles": [], - "name": "\ue063UpstreamLo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 04:54:31", - "registerOn": 1670284384.132504, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670284384.1325045, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670284384.132514, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670284384.1325154, - "lastIP": "awo~~`daifyva|h", - "deviceUUID": "c13b37c647b994e72617502237f07398fb4f63f3" - }, - "pb-IF4oUksoHw==": { - "display_string": [ - "\ue063RYK999" - ], - "profiles": [], - "name": "\ue063RYK999", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-23 21:16:22", - "registerOn": 1670284599.4241025, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670284599.4241035, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670284599.4241123, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670284599.4241135, - "lastIP": "azo~zh~~k~~ki", - "deviceUUID": "be944e5eb5541db1aedddc3550d0732e5e80c4e5" - }, - "pb-IF4LU2sEPw==": { - "display_string": [ - "\ue063Daksh045", - "\ue030Android59836410" - ], - "profiles": [], - "name": "\ue063Daksh045", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-11 11:44:33", - "registerOn": 1670284804.664925, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670284804.6649258, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670284804.6649346, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670284804.6649356, - "lastIP": "dvvcyvaxvaz", - "deviceUUID": "5cdbe6407936362a2c718e103f0eb1edfeb0b017" - }, - "pb-IF4zUkQkXA==": { - "display_string": [ - "\ue063WarmerTin4", - "\ue030Android57711842" - ], - "profiles": [], - "name": "\ue063WarmerTin4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-28 06:08:01", - "registerOn": 1670286203.8002791, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670286203.8002799, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670286203.800289, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670286203.80029, - "lastIP": "a|`~|n~{n~|h", - "deviceUUID": "8c2685e46eea942a823602a6a362ca78b20f0115" - }, - "pb-IF4WUlMqNw==": { - "display_string": [ - "\ue020kolayali1979" - ], - "profiles": [], - "name": "\ue020kolayali1979", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-27 12:43:05", - "registerOn": 1670286269.0515594, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670286269.0515602, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670286269.051571, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670286269.0515716, - "lastIP": "bxvf~va|va\u007fl", - "deviceUUID": "f8bd824b9b49b7597083a9319c0f99a7de07ae8a" - }, - "pb-IF4UU00fNg==": { - "display_string": [ - "\ue020FormerExodus41" - ], - "profiles": [], - "name": "\ue020FormerExodus41", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 18:53:17", - "registerOn": 1670289308.018164, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670289308.0181649, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670289308.0181746, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670289308.0181763, - "lastIP": "azo~{n~~niamd", - "deviceUUID": "daa56210cabf9e5c167b5779935cee0495760a0f" - }, - "pb-IF5XVBUCFA==": { - "display_string": [ - "\ue020TriesomeComplacency" - ], - "profiles": [], - "name": "\ue020TriesomeComplacency", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-01 20:21:26", - "registerOn": 1670291352.5831916, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670291352.583192, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670291352.5832012, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670291352.5832021, - "lastIP": "a\u007fn~~agaiavvb~j", - "deviceUUID": "474d8d6b2ca1f0ce01b00b7e7129fc6bbb749c2c" - }, - "pb-IF4sVGohKw==": { - "display_string": [ - "\ue020RelativeCompass6" - ], - "profiles": [], - "name": "\ue020RelativeCompass6", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-12 21:06:32", - "registerOn": 1670292145.3115203, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670292145.3115208, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292145.3115304, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292145.3115313, - "lastIP": "a\u007fk~~h~}jeaie\u007f", - "deviceUUID": "0ee7a8711bab10bd6adc0d46aa008c621ba84083" - }, - "pb-IF4TAXlc": { - "display_string": [ - "\ue063Savage2098" - ], - "profiles": [], - "name": "\ue063Savage2098", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-27 21:09:25", - "registerOn": 1670292356.2725449, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670292356.2725453, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292356.2725542, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292356.2725554, - "lastIP": "bxvf|vb}m~~me", - "deviceUUID": "35e37beb741abe75c098c0b67ab3ae85434adf7e" - }, - "pb-IF41U04SEA==": { - "display_string": [ - "\ue020UndisguisedManiac20" - ], - "profiles": [], - "name": "\ue020UndisguisedManiac20", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 15:56:33", - "registerOn": 1670292408.4293582, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670292408.4293592, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670292408.4293668, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670292408.4293678, - "lastIP": "azo~{l~~abaicy", - "deviceUUID": "8f62a52e479d9eb1e6031223eaf4df2235316f2e" - }, - "pb-IF5QUhgZ": { - "display_string": [ - "\ue063MOSSIMOCIR", - "\ue030Android16808764" - ], - "profiles": [], - "name": "\ue063MOSSIMOCIR", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-17 16:29:24", - "registerOn": 1670294858.633466, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670294858.6334667, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670294858.6334772, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670294858.6334777, - "lastIP": "a~i~vj~xm~\u007f", - "deviceUUID": "d56940cab4aefde1afb2d8c25463f0965696e246" - }, - "pb-IF4WVUZfPA==": { - "display_string": [ - "\ue030Android51495626" - ], - "profiles": [], - "name": "\ue030Android51495626", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-18 20:29:17", - "registerOn": 1670295209.747189, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295209.7471898, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295209.7471986, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295209.7471995, - "lastIP": "azo~{j~}hhajcx", - "deviceUUID": "882b5976b4330cf9b82b621eb4c2a20f66484cfb" - }, - "pb-IF4RU2U6Cg==": { - "display_string": [ - "\ue063WesternSpo", - "\ue030Android63855477" - ], - "profiles": [], - "name": "\ue063WesternSpo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-15 10:56:30", - "registerOn": 1670295258.8824947, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295258.8824954, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295258.8825057, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295258.8825066, - "lastIP": "dvvc}vb|i~|l", - "deviceUUID": "36669770d666ce59b6e92f0ded9d50a63ab9c95f" - }, - "pb-IF40U0oIEw==": { - "display_string": [ - "\ue020UnmodifiedApplause51" - ], - "profiles": [], - "name": "\ue020UnmodifiedApplause51", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 00:34:32", - "registerOn": 1670295468.693306, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295468.6933062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295468.6933136, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295468.6933143, - "lastIP": "b\u007fh~~iiaig{vfx", - "deviceUUID": "634fa20f29aff47c3c475802d032ae5127db56a1" - }, - "pb-IF4dU0QGEw==": { - "display_string": [ - "\ue030Linux53436" - ], - "profiles": [], - "name": "\ue030Linux53436", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-01 23:48:01", - "registerOn": 1670295625.204024, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295625.2040246, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295625.2040324, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670299178.7410796, - "lastIP": "b\u007fj~zh~zj~~md", - "deviceUUID": "\u0018X\u000bT\u0003ET\u000eYLE\u0004XXL@YU" - }, - "pb-IF4oUkQSLg==": { - "display_string": [ - "\ue063HouseholdW" - ], - "profiles": [], - "name": "\ue063HouseholdW", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-30 13:58:07", - "registerOn": 1670295718.525807, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295718.5258074, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295718.5258148, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295718.5258155, - "lastIP": "azo~{n~y`~~ad", - "deviceUUID": "c51646305eabfb6264c880de4fffdea10e84b772" - }, - "pb-IF5XLHle": { - "display_string": [ - "\ue063LightJabbe" - ], - "profiles": [], - "name": "\ue063LightJabbe", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-04 11:37:59", - "registerOn": 1670295766.6989522, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295766.6989527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295766.6989617, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295766.6989625, - "lastIP": "dvvc{vaz`~~ib", - "deviceUUID": "e90db5e0bc1a1503eda6a9b84c3a9cc67f8a4475" - }, - "pb-IF4-U08PBw==": { - "display_string": [ - "\ue063Freshwate9" - ], - "profiles": [], - "name": "\ue063Freshwate9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 11:08:53", - "registerOn": 1670295999.8783853, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670295999.8783863, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670295999.8783958, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670295999.8783972, - "lastIP": "a~n~y`~~i`aia", - "deviceUUID": "09cc94f10ef01fd14d8a30a4677f99725e1380b6" - }, - "pb-IF5TU1A9Pw==": { - "display_string": [ - "\ue020jonhjonh55ph" - ], - "profiles": [], - "name": "\ue020jonhjonh55ph", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 17:51:50", - "registerOn": 1670296004.565949, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670296004.5659494, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296004.5659583, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296004.5659592, - "lastIP": "b\u007fa~|m~~ngaie~", - "deviceUUID": "b8137cd2b5757b683a3dcbfbbb603f2416e3be55" - }, - "pb-IF4CU0Y5Ew==": { - "display_string": [ - "\ue063RetailMidn" - ], - "profiles": [], - "name": "\ue063RetailMidn", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 12:51:18", - "registerOn": 1670296306.7613952, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670296306.7613957, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296306.761405, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296306.761406, - "lastIP": "a~h~}jgai~z`", - "deviceUUID": "b9504aedda301439ceb7a6112a00648fc7da6bf3" - }, - "pb-IF4eU3gDFw==": { - "display_string": [ - "\ue063Courageou5" - ], - "profiles": [], - "name": "\ue063Courageou5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-29 19:37:24", - "registerOn": 1670296746.3660696, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670296746.3660698, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296746.3660772, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670296746.3660781, - "lastIP": "azo~{a~~lcaie", - "deviceUUID": "7d09e0d3a4d367c9ed7375eaf3f096342f007c4d" - }, - "pb-IF4FU01cHw==": { - "display_string": [ - "\ue020\u1d00\u1d0d\u1d00\u02747", - "\ue030Android63880249", - "\ue030Android63880268", - "\ue030Android63894496", - "\ue030Android63880281" - ], - "profiles": [], - "name": "\ue020\u1d00\u1d0d\u1d00\u02747", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 17:46:51", - "registerOn": 1670296803.6004646, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670296803.600465, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670296803.600474, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670297006.0368886, - "lastIP": "a|o~vo~~jbai`x", - "deviceUUID": "3a4f95ad4ef041aeb018074e8dd270ef2e74a3d5", - "cMsgCount": 1, - "lastMsgTime": 1670296877.657231, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4-VE0nPA==": { - "display_string": [ - "\ue063HEAVENRIDE" - ], - "profiles": [], - "name": "\ue063HEAVENRIDE", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-04 11:44:51", - "registerOn": 1670297022.3904085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670297022.3904092, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670297022.3904185, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670297040.1599576, - "lastIP": "b\u007fj~~o`aj`xva~i", - "deviceUUID": "146ce445a35400edacd772cc56e8cd9b438ab742" - }, - "pb-IF49U08ZDw==": { - "display_string": [ - "\ue063nrzimaffh" - ], - "profiles": [], - "name": "\ue063nrzimaffh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 08:41:58", - "registerOn": 1670297659.692009, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670297659.6920092, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670297659.6920168, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670297659.6920183, - "lastIP": "awk~~oaaibzvazn", - "deviceUUID": "841b8ca8606b1d8e38a5c4eea6c76033e375e414" - }, - "pb-IF4HUlMxVw==": { - "display_string": [ - "\ue030Android59278796" - ], - "profiles": [], - "name": "\ue030Android59278796", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-29 06:20:38", - "registerOn": 1670297915.598618, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670297915.5986185, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670297915.5986273, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670297915.5986283, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF5UU1EBLw==": { - "display_string": [ - "\ue063VelvetyOff", - "\ue030Android59165348" - ], - "profiles": [], - "name": "\ue063VelvetyOff", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 12:31:22", - "registerOn": 1670298211.9893699, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298211.9893703, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298211.9893782, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298211.9893794, - "lastIP": "a~n~}hfak`alc", - "deviceUUID": "6a9d400a49e9d8a6d1ce55b158d778b6f372480d" - }, - "pb-IF5RU1ESNQ==": { - "display_string": [ - "\ue063ThankfulRh" - ], - "profiles": [], - "name": "\ue063ThankfulRh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 14:05:27", - "registerOn": 1670298335.113274, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298335.1132746, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298335.1132834, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298335.1132843, - "lastIP": "hxvb{k~zj~~lh", - "deviceUUID": "85a4fd0dfc0aea505819231cb74a3c574a1e5164" - }, - "pb-IF4HU04CUA==": { - "display_string": [ - "\ue030Android63930725" - ], - "profiles": [], - "name": "\ue030Android63930725", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 00:28:46", - "registerOn": 1670298396.289418, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298396.2894185, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298396.2894263, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298396.2894275, - "lastIP": "a\u007fn~}hfaifwvavl", - "deviceUUID": "511232bb8342effbc2ae4ee2b06d7650ca16e1f3" - }, - "pb-IF4BU0EsIg==": { - "display_string": [ - "\ue030Android63294581" - ], - "profiles": [], - "name": "\ue030Android63294581", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 16:51:32", - "registerOn": 1670298412.3413033, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298412.3413038, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298412.3413136, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298412.3413146, - "lastIP": "a|o~vo~y`~~kb", - "deviceUUID": "804cfefd19245f772b73fe8d48fc0bd9df48fbb7" - }, - "pb-IF4xU0QYPw==": { - "display_string": [ - "\ue063VelourLigh" - ], - "profiles": [], - "name": "\ue063VelourLigh", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 18:46:32", - "registerOn": 1670298477.0726714, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298477.072672, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298477.0726805, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298477.0726814, - "lastIP": "a\u007fn~}hcaibwvb\u007fn", - "deviceUUID": "250c2c30fb4d97233507f7f6862bc2212f8307f4" - }, - "pb-IF4cU0NdDw==": { - "display_string": [ - "\ue063ALAMINMIZI" - ], - "profiles": [], - "name": "\ue063ALAMINMIZI", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-20 16:51:03", - "registerOn": 1670298915.1077976, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670298915.107798, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670298915.107805, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670298915.1078055, - "lastIP": "a\u007fk~~khajda`f", - "deviceUUID": "87df283df9a52ee9e0667773c8ef609765b8afd2" - }, - "pb-IF4pU0c-NQ==": { - "display_string": [ - "\ue020TraditionalNarrator9" - ], - "profiles": [], - "name": "\ue020TraditionalNarrator9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-13 13:45:24", - "registerOn": 1670299032.5436296, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299032.5436304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299032.5436392, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299032.5436404, - "lastIP": "azo~{i~}mdajc~", - "deviceUUID": "11b10d0cb8bd1f703dc24638b8c51bccee3ba51c" - }, - "pb-IF5UU0dfBw==": { - "display_string": [ - "\ue030Android63564565" - ], - "profiles": [], - "name": "\ue030Android63564565", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-01 21:36:31", - "registerOn": 1670299313.514224, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299313.5142243, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324268.265627, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670324268.2656286, - "lastIP": "azo~{m~~ncao", - "deviceUUID": "ad02e5da16c68b233d860e1c351e370be5a2170f" - }, - "pb-IF4WUxAIEg==": { - "display_string": [ - "\ue020IrreverentLand33", - "\ue030Android60020707" - ], - "profiles": [], - "name": "\ue020IrreverentLand33", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-26 09:34:08", - "registerOn": 1670299388.7772841, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299388.7772846, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299388.7772946, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299388.7772956, - "lastIP": "a\u007fk~~kdajbyvb|a", - "deviceUUID": "601b5c8fb825c5f8aea8196e5deb6995f43b858b" - }, - "pb-IF4wUxkNHA==": { - "display_string": [ - "\ue063DeviantSum" - ], - "profiles": [], - "name": "\ue063DeviantSum", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-30 12:13:49", - "registerOn": 1670299395.8202848, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299395.8202856, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299395.820293, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299395.820294, - "lastIP": "bxveaid~vazm", - "deviceUUID": "378189d9a60c020fffc9aad3a42061517bc533a1" - }, - "pb-IF4tUmo9VQ==": { - "display_string": [ - "\ue020sunilu338" - ], - "profiles": [], - "name": "\ue020sunilu338", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-01 12:18:31", - "registerOn": 1670299431.9521782, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299431.9521792, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340250.6369264, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670340293.7752302, - "lastIP": "azo~zi~~k`ani", - "deviceUUID": "72005d1e007852357191b033dae4b9aca087c883" - }, - "pb-IF5dVUQGIQ==": { - "display_string": [ - "\ue020racetracker7738" - ], - "profiles": [], - "name": "\ue020racetracker7738", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-29 13:47:34", - "registerOn": 1670299747.05083, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299747.0508301, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299747.0508385, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299747.0508392, - "lastIP": "b}k~~`daif\u007fva~`", - "deviceUUID": "e4636f0bc1a6fb8ca30c01a65dc307c0aa037eb9" - }, - "pb-IF4lU0xTVQ==": { - "display_string": [ - "\ue020RattlingKestrel49176" - ], - "profiles": [], - "name": "\ue020RattlingKestrel49176", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-09 15:31:59", - "registerOn": 1670299926.7603722, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670299926.7603729, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670299926.7603843, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670299926.7603853, - "lastIP": "b}k~~`baii|va", - "deviceUUID": "df51fc71cdb276b9393a916700bd291474f87fc4", - "cMsgCount": 0, - "lastMsgTime": 1670304459.0297408, - "lastMsg": "noops", - "cSameMsg": 0 - }, - "pb-IF4QUmRTFQ==": { - "display_string": [ - "\ue020KINGTN50" - ], - "profiles": [], - "name": "\ue020KINGTN50", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-06 09:22:01", - "registerOn": 1670300081.3034122, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300081.3034127, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300081.303422, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670308964.571488, - "lastIP": "b}k~~`gaiazvb|i", - "deviceUUID": "5e5762908041164c3a97ea8f408c36ed7b6869a5", - "cMsgCount": 0, - "lastMsgTime": 1670309951.0305045, - "lastMsg": "gg", - "cSameMsg": 0 - }, - "pb-IF4qVWIpPw==": { - "display_string": [ - "\ue020WanShell8996", - "\ue030Android58269418" - ], - "profiles": [], - "name": "\ue020WanShell8996", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-14 19:38:33", - "registerOn": 1670300135.52084, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300135.5208404, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300135.5208497, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300135.5208504, - "lastIP": "azo~zi~xh~}ib", - "deviceUUID": "08dad59ccd24a1eb0e65582d5ff666ef33972cc3" - }, - "pb-IF4AVWkcHQ==": { - "display_string": [ - "\ue021Maneesh_Royal", - "\ue030Mac212342" - ], - "profiles": [], - "name": "\ue021Maneesh_Royal", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-09 09:06:26", - "registerOn": 1670300385.4284744, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300385.4284754, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300385.4284832, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300385.4284842, - "lastIP": "awj~xi~~nbaig\u007f", - "deviceUUID": "\u0019V(WW1X]YLCW+QLA%+ULLXTUL6Y+UQ@TX%UBWURSGQ^UXC" - }, - "pb-IF4NUmY5Nw==": { - "display_string": [ - "\ue063Stochasti4", - "\ue030Android55430726" - ], - "profiles": [], - "name": "\ue063Stochasti4", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-18 20:43:37", - "registerOn": 1670300454.0055792, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300454.00558, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300454.0055907, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670306037.8867946, - "lastIP": "a\u007fk~~maaihwvb|j", - "deviceUUID": "a9026bd8027c24ea79e799177c4cf6c391b7d50d", - "cMsgCount": 0, - "lastMsgTime": 1670303992.8433242, - "lastMsg": "uff nooboli", - "cSameMsg": 0 - }, - "pb-IF4LVWEDKQ==": { - "display_string": [ - "\ue020Selvapravin6667" - ], - "profiles": [], - "name": "\ue020Selvapravin6667", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-12 17:35:58", - "registerOn": 1670300843.003842, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300843.0038428, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300843.0038502, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300843.0038512, - "lastIP": "azo~{n~~h`aid}", - "deviceUUID": "\u0015\u0002[XP\u0012UZ\u0005\u0005D\u0004TP\u0002BW[TYCS\\WRB" - }, - "pb-IF4dU3gqNQ==": { - "display_string": [ - "\ue030Android62237299", - "\ue030Android63018018", - "\ue030Android63018191" - ], - "profiles": [], - "name": "\ue030Android62237299", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-30 12:29:32", - "registerOn": 1670300890.3823156, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300890.382316, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300890.3823235, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670300890.3823245, - "lastIP": "a|o~vo~xa~~`c", - "deviceUUID": "24945428d4f1357961543a88a592fe91ca9fb7cf" - }, - "pb-IF4tVW0OVw==": { - "display_string": [ - "\ue063soulwalker" - ], - "profiles": [], - "name": "\ue063soulwalker", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-09 17:09:14", - "registerOn": 1670300904.1844368, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670300904.1844373, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670300904.184445, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670305054.317749, - "lastIP": "a\u007fn~}hfajazve|", - "deviceUUID": "ef2ed0c2718eca5308ec64835c7535ad3a982a9d" - }, - "pb-IF4gV24qCQ==": { - "display_string": [ - "\ue063ScarredLab", - "\ue030Android29025944" - ], - "profiles": [], - "name": "\ue063ScarredLab", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-24 21:36:13", - "registerOn": 1670301128.2271342, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301128.2271347, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301128.227143, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301128.2271442, - "lastIP": "azo~{o~zi~~lc", - "deviceUUID": "c7f3ebf8f9182f6ad95f1725f8341f1570999c4a" - }, - "pb-IF4eUk0vIA==": { - "display_string": [ - "\ue063DEVILLEAGE" - ], - "profiles": [], - "name": "\ue063DEVILLEAGE", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-03 13:50:10", - "registerOn": 1670301163.2939541, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301163.2939546, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301163.2939625, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301163.2939634, - "lastIP": "azj~zo~~afame", - "deviceUUID": "dac515cb6a206784eb54887549785d5a1a66d5c4" - }, - "pb-IF4cU20TMw==": { - "display_string": [ - "\ue020RamblingLemon85370" - ], - "profiles": [], - "name": "\ue020RamblingLemon85370", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 00:38:49", - "registerOn": 1670301200.2688026, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301200.2688031, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301200.2688131, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301200.268814, - "lastIP": "cxva~i~}jbaiay", - "deviceUUID": "97218163a0346a3648c5fe92383582185b7fffca" - }, - "pb-IF4oVEYEDg==": { - "display_string": [ - "\ue030Android42142043" - ], - "profiles": [], - "name": "\ue030Android42142043", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-03 20:38:48", - "registerOn": 1670301278.6123943, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301278.6123948, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301278.6124105, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301278.6124117, - "lastIP": "dvvc|vb~o~}ld", - "deviceUUID": "74948e86820d57ae17645f4d8df8ef11bd2d6cbf" - }, - "pb-IF4QUxM-Bg==": { - "display_string": [ - "\ue020DrearyPromotion20", - "\ue030Android63600088" - ], - "profiles": [], - "name": "\ue020DrearyPromotion20", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-08 17:28:43", - "registerOn": 1670301735.20969, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301735.2096906, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301735.2096994, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301735.2097003, - "lastIP": "azo~{o~}va{`", - "deviceUUID": "d253caf7ca78ab7fa2f2b3e848739a64b02d5447" - }, - "pb-JiNJARBYUkpJWFhFEEFRVlFAGUJWTlhG": { - "display_string": [ - "\ue020sumonthedon", - "\ue030Android14301911" - ], - "profiles": [], - "name": "\ue020sumonthedon", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-11 11:57:52", - "registerOn": 1670301743.2972598, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301743.2972603, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301743.2972686, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301743.2972696, - "lastIP": "dxvbvvaym~~nd", - "deviceUUID": "aef9ee976dd9b52c5a5203d09b6a42bc2b60ced7" - }, - "pb-IF4xU3YvAw==": { - "display_string": [ - "\ue063BYMRSTRIPE" - ], - "profiles": [], - "name": "\ue063BYMRSTRIPE", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-21 16:08:03", - "registerOn": 1670301778.694383, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301778.6943836, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301778.6943939, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301778.6943946, - "lastIP": "a|n~~mhamaaicx", - "deviceUUID": "58ce08b6bd6b07afdfee4cfeaca29b21d6773984" - }, - "pb-IF40U09YVQ==": { - "display_string": [ - "\ue063genesisarb" - ], - "profiles": [], - "name": "\ue063genesisarb", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 04:15:05", - "registerOn": 1670301892.8078194, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301892.8078198, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301892.8078275, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301892.8078284, - "lastIP": "b}k~}m~yj~~h", - "deviceUUID": "588938d990d7f3f93b8dbd0293b080b791778d58" - }, - "pb-IF5TU20EMg==": { - "display_string": [ - "\ue063Symmetric9" - ], - "profiles": [], - "name": "\ue063Symmetric9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-09 18:14:52", - "registerOn": 1670301904.3045359, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301904.3045363, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301904.304547, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301904.3045483, - "lastIP": "a\u007fi~x`~~hgana", - "deviceUUID": "832a236ae9245681fbacf9ac34bfee140e821682", - "cMsgCount": 0, - "lastMsgTime": 1670302422.1730607, - "lastMsg": "stfu", - "cSameMsg": 0 - }, - "pb-IF4cU0EGCQ==": { - "display_string": [ - "\ue030Android63310192" - ], - "profiles": [], - "name": "\ue030Android63310192", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-14 16:03:15", - "registerOn": 1670301987.1924949, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670301987.1924953, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670301987.1925037, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670301987.1925046, - "lastIP": "azj~zo~}heajd\u007f", - "deviceUUID": "c3e8e82827eff72f8c4eaf6d00fa7c9cec083779" - }, - "pb-IF4QU0spDA==": { - "display_string": [ - "\ue030Android63814438" - ], - "profiles": [], - "name": "\ue030Android63814438", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 04:23:36", - "registerOn": 1670302293.6715863, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670302293.6715868, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670302293.6715944, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670302293.671595, - "lastIP": "a~k~}iaaicyvgz", - "deviceUUID": "\u0015U\u000b" - }, - "pb-IF5cUlYRVg==": { - "display_string": [ - "\ue030PC437906" - ], - "profiles": [], - "name": "\ue030PC437906", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-03 12:56:57", - "registerOn": 1670303444.7722914, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670303444.7722921, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670303444.7723005, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670303444.7723017, - "lastIP": "axm~~haai`zva|o", - "deviceUUID": "4499a7bc6c46503367b6b970ea2fd32929853488" - }, - "pb-IF4IVU9bLA==": { - "display_string": [ - "\ue063QuackingC2" - ], - "profiles": [], - "name": "\ue063QuackingC2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-06 20:56:51", - "registerOn": 1670304194.5509522, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670304194.5509527, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318553.9322767, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318553.9322789, - "lastIP": "a\u007fn~~acajdvvb~a", - "deviceUUID": "42235a42b0eb397344bff7f04fc2193c69823b01" - }, - "pb-IF4RUmEvJw==": { - "display_string": [ - "\ue020GreedyMorale41" - ], - "profiles": [], - "name": "\ue020GreedyMorale41", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-18 20:11:24", - "registerOn": 1670304387.5745735, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670304387.5745742, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670304387.5745826, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670304387.5745835, - "lastIP": "azo~zi~~i`aifz", - "deviceUUID": "079a5d17869e30a5bf6185ad645bda2f3dc923b2" - }, - "pb-IF4hU2oFDg==": { - "display_string": [ - "\ue063Sabarishku", - "\ue030Android61660888" - ], - "profiles": [], - "name": "\ue063Sabarishku", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-09 12:35:31", - "registerOn": 1670304394.6752644, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670304394.6752646, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330330.6414428, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330330.6414442, - "lastIP": "b}k~~oha`dajbw", - "deviceUUID": "48f8b234e08b43924ffabea6710a141c1641c637" - }, - "pb-IF4hVWspFw==": { - "display_string": [ - "\ue063VIPINmMAIP", - "\ue030Android48516695" - ], - "profiles": [], - "name": "\ue063VIPINmMAIP", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-26 19:37:07", - "registerOn": 1670304415.697727, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670304415.6977274, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670304547.9136066, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670304415.6977358, - "lastIP": "azo~{l~~odaie~", - "deviceUUID": "c85f53e285fe87baaf6e34227889fb2b323ec403", - "cMsgCount": 0, - "lastMsgTime": 1670304547.913538, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4nU3EhMg==": { - "display_string": [ - "\ue020NiNJAMAN1267" - ], - "profiles": [], - "name": "\ue020NiNJAMAN1267", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-29 16:50:38", - "registerOn": 1670304794.0863807, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670304794.0863812, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670304794.0863922, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670304804.490444, - "lastIP": "azo~{m~~hiaiav", - "deviceUUID": "1e3d9b390331b60998ad74b3275964096476c013" - }, - "pb-IF4cU0c5Fw==": { - "display_string": [ - "\ue020EnviousIngredient43" - ], - "profiles": [], - "name": "\ue020EnviousIngredient43", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 18:41:53", - "registerOn": 1670306092.398657, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670306092.3986576, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306092.398666, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670310244.6684575, - "lastIP": "dvvc{vg\u007fvazl", - "deviceUUID": "9bc22fb3a206de3d5844fd8f1b9cf611dbd448f2" - }, - "pb-IF4gMxke": { - "display_string": [ - "\ue020NaughtyFly91019", - "\ue030Android18304089" - ], - "profiles": [], - "name": "\ue020NaughtyFly91019", - "isBan": false, - "isMuted": false, - "accountAge": "2018-02-01 14:42:05", - "registerOn": 1670306300.3355408, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670306300.3355412, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306300.3355827, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306300.3355834, - "lastIP": "a|o~vo~~hbao`", - "deviceUUID": "45e0fab38307da53d605f05aef07811e5d4d5d07" - }, - "pb-IF4TU3k5Pw==": { - "display_string": [ - "\ue020RegularCensus17" - ], - "profiles": [], - "name": "\ue020RegularCensus17", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-03 20:13:26", - "registerOn": 1670306400.6369991, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670306400.6369998, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306400.63701, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306400.6370113, - "lastIP": "a}h~~`ha`fajb", - "deviceUUID": "049e993a660c8c3e1d99c717d13dbff4bd4769b0" - }, - "pb-IF4WVU9TLg==": { - "display_string": [ - "\ue020FrontPlane24", - "\ue030Android52482648" - ], - "profiles": [], - "name": "\ue020FrontPlane24", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-06 12:23:37", - "registerOn": 1670306906.515705, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670306906.5157056, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306906.5157146, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306906.5157154, - "lastIP": "a\u007fn~}heaje{vaxl", - "deviceUUID": "e76b1195c1d624aa8f49cc55ea5390708af245a0" - }, - "pb-IF4RU1ApMQ==": { - "display_string": [ - "\ue063Inconside6" - ], - "profiles": [], - "name": "\ue063Inconside6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 18:35:07", - "registerOn": 1670306948.8011086, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670306948.801109, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670306948.8012843, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670306948.8012853, - "lastIP": "a\u007fn~}hdaif\u007fvb}i", - "deviceUUID": "958b5b8100344c06130f157ad2b8f896b74f62f8" - }, - "pb-IF4lU00yCQ==": { - "display_string": [ - "\ue020GOJOSATURO77" - ], - "profiles": [], - "name": "\ue020GOJOSATURO77", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 09:38:51", - "registerOn": 1670307164.4858367, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307164.4858372, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342644.2542155, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670342644.2542167, - "lastIP": "a\u007fn~}ifaabam", - "deviceUUID": "fe658e85791386351b5ac17a5bc6f0e9c0c517b3" - }, - "pb-IF4oU1BZHQ==": { - "display_string": [ - "\ue030Android63993813" - ], - "profiles": [], - "name": "\ue030Android63993813", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 05:57:43", - "registerOn": 1670307406.5391788, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307406.5391793, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307406.5391867, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307406.5391874, - "lastIP": "a}m~{j~~ndaaf", - "deviceUUID": "860a2dd0bf7bd0715c4f5d35daf6bfd65aa97ca9" - }, - "pb-IF4PU08NCg==": { - "display_string": [ - "\ue063BelatedDir" - ], - "profiles": [], - "name": "\ue063BelatedDir", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 19:08:59", - "registerOn": 1670307411.5568461, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307411.5568464, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307411.5568545, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670309359.9600542, - "lastIP": "dxvbvvaya~}hb", - "deviceUUID": "6602daa1802bbdbaa88c5e46ae1dab6999aacb1a" - }, - "pb-IF4cUxYIHw==": { - "display_string": [ - "\ue063AnuragRdav", - "\ue030Android60597659" - ], - "profiles": [], - "name": "\ue063AnuragRdav", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-20 16:06:53", - "registerOn": 1670307455.0994327, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307455.0994334, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307455.0994432, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307455.0994442, - "lastIP": "azo~{n~~leaif~", - "deviceUUID": "ceb430a12b5577f83ca5d1a3a8c2e6e35270db62" - }, - "pb-IF4IUhMeFg==": { - "display_string": [ - "\ue020ChargeableEmployer42", - "\ue030Android51692373" - ], - "profiles": [], - "name": "\ue020ChargeableEmployer42", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-21 14:32:50", - "registerOn": 1670307609.3040333, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307609.3040338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307609.304043, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307609.3040442, - "lastIP": "a|o~vo~vn~~oe", - "deviceUUID": "9233ca52ce0ea7918aedde69f81a50ab9d9dd4b5" - }, - "pb-IF5cU00uPA==": { - "display_string": [ - "\ue020kabilandonnn" - ], - "profiles": [], - "name": "\ue020kabilandonnn", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-05 16:19:47", - "registerOn": 1670307632.3806927, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307632.3806932, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307632.3807015, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307632.3807025, - "lastIP": "a~k~|h~~ogan", - "deviceUUID": "b4c6eb62d30bc46e039b2d74007b83598778d7ed" - }, - "pb-IF4OU08bPw==": { - "display_string": [ - "\ue063soapeater2" - ], - "profiles": [], - "name": "\ue063soapeater2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 21:47:36", - "registerOn": 1670307967.1292272, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670307967.1292276, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670307967.1292343, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670307967.1292355, - "lastIP": "a|n~~mhakeamd", - "deviceUUID": "3261484452d68b6f502eb030867a35afddfd7bb0" - }, - "pb-IF5TUkoOHw==": { - "display_string": [ - "\ue020SriramHULK786" - ], - "profiles": [], - "name": "\ue020SriramHULK786", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-08 15:13:25", - "registerOn": 1670308377.184237, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670308377.1842375, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308377.1842446, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308377.1842456, - "lastIP": "azo~{o~~jeajc|", - "deviceUUID": "f1d8342558a186863b1b466265d7c3cf97723505" - }, - "pb-IF4oU0suEQ==": { - "display_string": [ - "\ue063UnsoldHen2" - ], - "profiles": [], - "name": "\ue063UnsoldHen2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 21:01:43", - "registerOn": 1670308443.3720107, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670308443.3720114, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308443.3720212, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308443.372022, - "lastIP": "azo~{j~}k`aje{", - "deviceUUID": "4758e969059949030ce1067862e8ffa4b064aabd" - }, - "pb-IF5TU1EaVQ==": { - "display_string": [ - "\ue063OpulentPre" - ], - "profiles": [], - "name": "\ue063OpulentPre", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:06:11", - "registerOn": 1670308695.506506, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670308695.5065064, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308695.5065153, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308695.5065162, - "lastIP": "azo~{m~~lcajbv", - "deviceUUID": "5512e4b36f90b95a9e50a0c3315343c8f4b6e066" - }, - "pb-IF4sUm0zIg==": { - "display_string": [ - "\ue020TOMCYTHAMPY" - ], - "profiles": [], - "name": "\ue020TOMCYTHAMPY", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-19 12:56:28", - "registerOn": 1670308703.735085, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670308703.7350855, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670308703.735095, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670308703.7350957, - "lastIP": "bxvf}va\u007fh~xa", - "deviceUUID": "a5eabea99d7140a84b7ad962e4fb41e6b9710b3a" - }, - "pb-IF4nVRURUw==": { - "display_string": [ - "\ue063RanDD9322" - ], - "profiles": [], - "name": "\ue063RanDD9322", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-09 08:38:24", - "registerOn": 1670309027.1568592, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309027.1568596, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309027.1568677, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309027.1568687, - "lastIP": "cyvhzvc{vb\u007fh", - "deviceUUID": "65eeef62d88d84538f3c92c503d9328bcc24a548" - }, - "pb-IF4-U08NVQ==": { - "display_string": [ - "\ue063HolyCowMan", - "\ue030Android50424197" - ], - "profiles": [], - "name": "\ue063HolyCowMan", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 14:52:40", - "registerOn": 1670309099.4052029, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309099.4052038, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309099.4052138, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309099.4052148, - "lastIP": "awh~~aaakfaiix", - "deviceUUID": "7d1f9a6a91894be0696437fbcc1922d535d9da69" - }, - "pb-IF5VU1E5Kg==": { - "display_string": [ - "\ue030Android63956969" - ], - "profiles": [], - "name": "\ue030Android63956969", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 15:50:59", - "registerOn": 1670309217.1351027, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309217.1351035, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309217.1351132, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309217.1351142, - "lastIP": "aakhajayva\u007fo", - "deviceUUID": "63463169da33dd578888c06001bd90a71bedd337" - }, - "pb-JiNJARBdUUpEXV1AFkRVUVZHGUJdQ1NC": { - "display_string": [ - "\ue063pankajveru" - ], - "profiles": [], - "name": "\ue063pankajveru", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-24 15:07:42", - "registerOn": 1670309316.1460047, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309316.1460052, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309316.1460147, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309316.1460156, - "lastIP": "a\u007fn~}icanfaic}", - "deviceUUID": "0fa9c891a84990b8d022ff4e7315d6955e5c18e0" - }, - "pb-IF41Unk7Dw==": { - "display_string": [ - "\ue063Milenuyir", - "\ue030Android56348867" - ], - "profiles": [], - "name": "\ue063Milenuyir", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-09 11:43:13", - "registerOn": 1670309613.421994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309613.4219947, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309613.4220037, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309613.4220047, - "lastIP": "azo~{l~~adaj`|", - "deviceUUID": "14101bbfd378b392654113c405f5abe3403c1962" - }, - "pb-IF4MU09fKA==": { - "display_string": [ - "\ue063manuellaut", - "\ue030Android63961567", - "\ue030Android63444865" - ], - "profiles": [], - "name": "\ue063manuellaut", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 10:03:48", - "registerOn": 1670309639.2229416, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309639.222942, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309639.222951, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309639.2229517, - "lastIP": "eaaaakiaiez", - "deviceUUID": "c91b9ef2adb7b8378fbf14200c8e8f289d222f25" - }, - "pb-IF40UmcHJw==": { - "display_string": [ - "\ue020minnie5116" - ], - "profiles": [], - "name": "\ue020minnie5116", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-21 22:08:30", - "registerOn": 1670309746.6581407, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309746.6581411, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670309746.6581504, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670309746.6581514, - "lastIP": "dvvcyvb~n~~ah", - "deviceUUID": "f60a287142cc9c7edd9d4678dc69d39a39c06ba0" - }, - "pb-IF4CU0MiVA==": { - "display_string": [ - "\ue030Android63428296" - ], - "profiles": [], - "name": "\ue030Android63428296", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-20 14:07:06", - "registerOn": 1670309822.1634555, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670309822.1634562, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347510.4689014, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670347542.5855813, - "lastIP": "azo~{a~}jgaicv", - "deviceUUID": "5ae788976af97e550fb2b9beaee18886efe90c1a" - }, - "pb-IF4CVUMpLQ==": { - "display_string": [ - "\ue063SymbolicLe" - ], - "profiles": [], - "name": "\ue063SymbolicLe", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-01 11:40:35", - "registerOn": 1670310039.9411213, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670310039.9411216, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310039.9411302, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670310039.9411314, - "lastIP": "a\u007fn~}hcaa`aah", - "deviceUUID": "2bbddffbe2022a2d7a39d952d5420c934d3a7d5a" - }, - "pb-IF41VRcsBw==": { - "display_string": [ - "\ue063Nikimalhan" - ], - "profiles": [], - "name": "\ue063Nikimalhan", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-17 18:08:55", - "registerOn": 1670310610.578937, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670310610.5789378, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310610.5789497, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670310610.5789506, - "lastIP": "a\u007fk~xa~~nhakh", - "deviceUUID": "3eaedb8ce47a3f6cff6eeff2ce58f105e6eb8d9d" - }, - "pb-IF4lN2QS": { - "display_string": [ - "\ue063Rocksoli17" - ], - "profiles": [], - "name": "\ue063Rocksoli17", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-15 12:13:30", - "registerOn": 1670310883.9865491, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670310883.9865499, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670310883.9865596, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670310925.772695, - "lastIP": "bxvc{vaxvb|h", - "deviceUUID": "3a4a9aa017e42af1b58b717ddcf9aebbc3190c60" - }, - "pb-IF5UUlM8Fw==": { - "display_string": [ - "\ue020\u5f61CARNAGE\u5f61TANISHQ", - "\ue030Android59086853" - ], - "profiles": [], - "name": "\ue030Android59086853", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-21 13:17:07", - "registerOn": 1670311026.4798732, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311026.4798741, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311026.4799204, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311026.479921, - "lastIP": "a\u007fn~}ieam~~mg", - "deviceUUID": "\u0015YUY\u0007E\u0007]" - }, - "pb-IF4lVEscUg==": { - "display_string": [ - "\ue063Sufipnf23" - ], - "profiles": [], - "name": "\ue063Sufipnf23", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-29 22:41:13", - "registerOn": 1670311047.5644026, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311047.5644033, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311047.564412, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670311209.8321745, - "lastIP": "a~l~xa~~l`a`b", - "deviceUUID": "0d94d5d74eaee649f43a55f425a511c5e40ad2f8" - }, - "pb-IF4RA2I6": { - "display_string": [ - "\ue020Shlash7561", - "\ue030Android22000837" - ], - "profiles": [], - "name": "\ue020Shlash7561", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-17 14:43:04", - "registerOn": 1670311104.8685694, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311104.86857, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331498.072205, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670331854.898411, - "lastIP": "azo~|`~~kfaj`z", - "deviceUUID": "3e74ebb3547223c8984475cea4d10c2cacbb4ad7" - }, - "pb-IF4iU0w4KQ==": { - "display_string": [ - "\ue020HecticOnset37" - ], - "profiles": [], - "name": "\ue020HecticOnset37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 11:02:22", - "registerOn": 1670311258.5179946, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311258.5179954, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311258.518002, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311258.5180027, - "lastIP": "bxvf|vavn~~k`", - "deviceUUID": "9e2c0d9943108b3f4201a47631d8d0ea3f5f0d57" - }, - "pb-IF4NU0wOXQ==": { - "display_string": [ - "\ue020ColonialGrammar61" - ], - "profiles": [], - "name": "\ue020ColonialGrammar61", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 09:17:31", - "registerOn": 1670311259.5718555, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311259.571856, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324239.1932979, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670330075.6544108, - "lastIP": "azo~{l~}jaaihy", - "deviceUUID": "9427e3955630b5f233848073ab87e24369ca8d1b" - }, - "pb-IF4lU00bPQ==": { - "display_string": [ - "\ue063Correctiv8" - ], - "profiles": [], - "name": "\ue063Correctiv8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 22:49:37", - "registerOn": 1670311350.0987442, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311350.0987444, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311350.098753, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311350.098754, - "lastIP": "a\u007fn~~aeal~~jg", - "deviceUUID": "9f38ec8222b2e0f055319e0a2609b61f85d1e021" - }, - "pb-IF4BU3QhUQ==": { - "display_string": [ - "\ue063happygame2" - ], - "profiles": [], - "name": "\ue063happygame2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-13 12:33:07", - "registerOn": 1670311423.7830024, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311423.7830029, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323021.5193484, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323021.51935, - "lastIP": "awj~ya~~ogai`", - "deviceUUID": "671a82ea06eddfc13761a895f95f2c68dfc7939f" - }, - "pb-IF41U0cRLw==": { - "display_string": [ - "\ue063brucewayn" - ], - "profiles": [], - "name": "\ue063brucewayn", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 20:15:27", - "registerOn": 1670311578.5884929, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311578.5884933, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311578.588504, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311578.5885048, - "lastIP": "azj~zo~~hgajf", - "deviceUUID": "d74f221261f73be70e6a03a2ff660bcf5b9c0d5f" - }, - "pb-IF4dVEcfIA==": { - "display_string": [ - "\ue063gatchipatr" - ], - "profiles": [], - "name": "\ue063gatchipatr", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-12 21:55:22", - "registerOn": 1670311599.461019, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311599.4610193, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311599.4610276, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670314344.1780927, - "lastIP": "a\u007fn~~afaahaicz", - "deviceUUID": "3785e8f3d30f48f0dede133ab6215bd4ca7031b5" - }, - "pb-IF4vVFEZBg==": { - "display_string": [ - "\ue063AkshayParg" - ], - "profiles": [], - "name": "\ue063AkshayParg", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-30 18:00:25", - "registerOn": 1670311626.4767659, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311626.4767663, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311626.476776, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670312114.6517053, - "lastIP": "a\u007fk~~`cajbwvg~", - "deviceUUID": "1f6f6aebf5accbeed4defc9c91dbf223d4e927af" - }, - "pb-IF4rU0kGEA==": { - "display_string": [ - "\ue020SpectacularShield731" - ], - "profiles": [], - "name": "\ue020SpectacularShield731", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-27 17:42:37", - "registerOn": 1670311955.0098388, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670311955.0098395, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670311955.0098464, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670311955.0098476, - "lastIP": "awj~{`~}jcaif", - "deviceUUID": "3b2ecb70df160b3bc925563348e9f55d2bf4fd79" - }, - "pb-IF5TU0tcUw==": { - "display_string": [ - "\ue020muthuMJ", - "\ue030Android51992363" - ], - "profiles": [], - "name": "\ue020muthuMJ", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 11:18:56", - "registerOn": 1670312168.1355772, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312168.1355777, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312168.1355863, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312168.135587, - "lastIP": "azo~{m~vl~}l`", - "deviceUUID": "11c4435140c3fa18d7951dac1720e2cc865b8c2c" - }, - "pb-IF4nU0scDQ==": { - "display_string": [ - "\ue063FictionalH" - ], - "profiles": [], - "name": "\ue063FictionalH", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 14:16:08", - "registerOn": 1670312190.2316623, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312190.2316625, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330107.774897, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330107.7748988, - "lastIP": "a\u007fn~}j`aidwva~o", - "deviceUUID": "5a55a76eb9e5c5b946793750d52e2b66ddff73ff" - }, - "pb-IF4jU1AyPA==": { - "display_string": [ - "\ue030Android63995855" - ], - "profiles": [], - "name": "\ue030Android63995855", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 11:48:00", - "registerOn": 1670312327.0104196, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312327.0104203, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312327.01043, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312327.010431, - "lastIP": "a\u007fi~|h~vvaym", - "deviceUUID": "10ca381ceaa576d47524ced69fb70bb5af5f48a9" - }, - "pb-IF5UU3kINA==": { - "display_string": [ - "\ue030Android62934068" - ], - "profiles": [], - "name": "\ue030Android62934068", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-26 14:58:23", - "registerOn": 1670312583.8976188, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312583.897619, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670377060.9441757, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670377138.3614912, - "lastIP": "a\u007fi~|h~{i~~ah", - "deviceUUID": "fbe7fb9df64bb88df41863860739579e82b7f543" - }, - "pb-IF4vU00eAA==": { - "display_string": [ - "\ue030Android63898377" - ], - "profiles": [], - "name": "\ue030Android63898377", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 04:15:41", - "registerOn": 1670312659.183585, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312659.1835856, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312659.1835966, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670313521.9851687, - "lastIP": "d}va~i~~iaaag", - "deviceUUID": "\u0015" - }, - "pb-IF42U2wGFw==": { - "display_string": [ - "\ue020chugambaran", - "\ue030Android63640741" - ], - "profiles": [], - "name": "\ue020chugambaran", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-13 17:05:07", - "registerOn": 1670312704.2908556, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312704.2908561, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670382039.8794103, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670382039.8794115, - "lastIP": "azo~{l~~nhaigv", - "deviceUUID": "32b3d31bc0385331d4fc82098d4a0a5988f3baba", - "cMsgCount": 0, - "lastMsgTime": 1670314195.7867928, - "lastMsg": "gg avi", - "cSameMsg": 0 - }, - "pb-JiNJVxBSVEFCX1lGE0JWVVBHF0deRFJG": { - "display_string": [ - "\ue020Hezardoz" - ], - "profiles": [], - "name": "\ue020Hezardoz", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-26 19:43:17", - "registerOn": 1670312747.536739, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312747.5367396, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312747.536748, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312747.5367491, - "lastIP": "d|vb{i~~lfaj`{", - "deviceUUID": "de39f038b05d92313cc3a2105de0f6a69ed380be" - }, - "pb-IF4nU3hdFw==": { - "display_string": [ - "\ue063Insatiabl3", - "\ue030Android63865931" - ], - "profiles": [], - "name": "\ue063Insatiabl3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-26 21:31:36", - "registerOn": 1670312883.8861904, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312883.886191, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670312883.886201, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670312883.8862016, - "lastIP": "azo~{m~~i`aiav", - "deviceUUID": "ccbb4fb58c5e22118fa6720a9915ce840207f4fd" - }, - "pb-IF5VU0dfJg==": { - "display_string": [ - "\ue020HumblerMare46" - ], - "profiles": [], - "name": "\ue020HumblerMare46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-29 20:51:22", - "registerOn": 1670312945.089181, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670312945.0891812, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327861.818157, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327861.8181586, - "lastIP": "a\u007fn~}heaje|vcw", - "deviceUUID": "0c729e271c617dd813d21455250b554fa9e94944" - }, - "pb-IF4dVEUgVg==": { - "display_string": [ - "\ue063EclecticC3" - ], - "profiles": [], - "name": "\ue063EclecticC3", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-24 13:30:09", - "registerOn": 1670313070.2871656, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670313070.287166, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313070.2871757, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313070.2871766, - "lastIP": "dxvc~vavh~~ac", - "deviceUUID": "59430fabade39ff3b28818536a627a1df1dba457" - }, - "pb-IF5dU0JePQ==": { - "display_string": [ - "\ue020HopelessActor28" - ], - "profiles": [], - "name": "\ue020HopelessActor28", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-07 18:33:43", - "registerOn": 1670313381.5132644, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670313381.513265, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313381.513272, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313381.513273, - "lastIP": "a|o~vo~~ieaia~", - "deviceUUID": "038a652f18e77eaf416637f399212677de63cce6", - "cMsgCount": 0, - "lastMsgTime": 1670313474.162137, - "lastMsg": "1", - "cSameMsg": 0 - }, - "pb-JiNJARFcV0VGXF1AE09QVVdCEkRcRlVL": { - "display_string": [ - "\ue020TheIndianGamerDX" - ], - "profiles": [], - "name": "\ue020TheIndianGamerDX", - "isBan": false, - "isMuted": false, - "accountAge": "2016-12-29 16:12:51", - "registerOn": 1670313468.4106395, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670313468.4106402, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313468.410649, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313468.4106498, - "lastIP": "dvvcyvb|k~~`d", - "deviceUUID": "f9445b523df9ae355c5887b8f6710335e172d4fb" - }, - "pb-IF5UU1JaMA==": { - "display_string": [ - "\ue063MattedElix" - ], - "profiles": [], - "name": "\ue063MattedElix", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 10:49:50", - "registerOn": 1670313646.7932086, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670313646.793209, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313646.7932172, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313646.7932181, - "lastIP": "axi~zvb{m~}ld", - "deviceUUID": "e44e96c8776ff5e5a6a33fd4074642d6ebcbaaa8" - }, - "pb-IF4lU1BdIw==": { - "display_string": [ - "\ue063LiteralFlu" - ], - "profiles": [], - "name": "\ue063LiteralFlu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 13:30:05", - "registerOn": 1670313796.3415685, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670313796.341569, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670313796.341578, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670313796.341579, - "lastIP": "a\u007fk~yo~~mgaab", - "deviceUUID": "53d682b443cb16bd38b3b8054bc833efceda9008" - }, - "pb-IF4JU08bHA==": { - "display_string": [ - "\ue030Android63995876" - ], - "profiles": [], - "name": "\ue030Android63995876", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 11:53:14", - "registerOn": 1670314037.24787, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314037.2478704, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314037.2478976, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314037.2478983, - "lastIP": "a~o~~h~~mhaj", - "deviceUUID": "\u0015V\\XX\u0015\u0002]" - }, - "pb-IF4cVE4MDQ==": { - "display_string": [ - "\ue020Ansilchikuu" - ], - "profiles": [], - "name": "\ue020Ansilchikuu", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-11 20:58:00", - "registerOn": 1670314062.3466134, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314062.3466141, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317999.9445138, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317999.9445155, - "lastIP": "azo~{a~~kiaj`\u007f", - "deviceUUID": "b9ebe325b3e08ecb3696c2cfd5892efc7ce14e66" - }, - "pb-IF4lVWwsEw==": { - "display_string": [ - "\ue020SANKETBANSODE007" - ], - "profiles": [], - "name": "\ue020SANKETBANSODE007", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-29 11:54:16", - "registerOn": 1670314284.0633721, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314284.0633726, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314284.063382, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314284.063383, - "lastIP": "azo~|k~{vb}a", - "deviceUUID": "d3753d30921e7fe8e98d705e3244326b2ec6bce3" - }, - "pb-IF4cU3NcKQ==": { - "display_string": [ - "\ue063YoungerCol" - ], - "profiles": [], - "name": "\ue063YoungerCol", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-07 19:22:09", - "registerOn": 1670314305.376949, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314305.3769493, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314305.376958, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314305.3769593, - "lastIP": "azh~}lbaiixvbx", - "deviceUUID": "8ff0e92d1c877d59bcd86fc9b154c3873b3163da" - }, - "pb-IF4gU0U4UA==": { - "display_string": [ - "\ue020ROHIT7100000" - ], - "profiles": [], - "name": "\ue020ROHIT7100000", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-05 09:01:56", - "registerOn": 1670314530.190387, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314530.1903875, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314530.1903956, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314530.1903963, - "lastIP": "a\u007fn~xo~~nbajcx", - "deviceUUID": "e52b11e4b73d4f64c5c8de57608a7d77236a75f1" - }, - "pb-IF5QU0s6XQ==": { - "display_string": [ - "\ue063CleanerRes" - ], - "profiles": [], - "name": "\ue063CleanerRes", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 09:00:51", - "registerOn": 1670314598.6798697, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314598.6798701, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323016.5032222, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323016.503224, - "lastIP": "dvvd|vazm~zh", - "deviceUUID": "53ad53dc7a76c4bb4f3515d1dd74b2e52cf21264" - }, - "pb-IF4yVG8uXQ==": { - "display_string": [ - "\ue020PitifulPick9", - "\ue030Android33279498" - ], - "profiles": [], - "name": "\ue020PitifulPick9", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-12 17:48:07", - "registerOn": 1670314600.422643, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314600.4226437, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314600.4226525, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314600.4226532, - "lastIP": "a~o~}jhaaiamd", - "deviceUUID": "ba006d0a7cfbddde49ec8fbfba8edc13e1268e63" - }, - "pb-IF4iVU4qDA==": { - "display_string": [ - "\ue020aswinsanthosh47249" - ], - "profiles": [], - "name": "\ue020aswinsanthosh47249", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-01 22:19:07", - "registerOn": 1670314639.8906856, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314639.890686, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314639.8906932, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314639.890694, - "lastIP": "azo~{n~~lea``", - "deviceUUID": "4b04db1094e7773fd901d6590103afadbe70e3b9" - }, - "pb-IF4FU085Ng==": { - "display_string": [ - "\ue063MootEmbrac" - ], - "profiles": [], - "name": "\ue063MootEmbrac", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 11:36:52", - "registerOn": 1670314687.8052628, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314687.8052635, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314687.805272, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314687.805273, - "lastIP": "dzva}k~}jcaje\u007f", - "deviceUUID": "2f7a26a6c3b213153f12a1c5e79e9351bc99da51" - }, - "pb-IF4xU08NPA==": { - "display_string": [ - "\ue030Android63996535" - ], - "profiles": [], - "name": "\ue030Android63996535", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 13:50:02", - "registerOn": 1670314822.1885004, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670314822.1885006, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670314822.1885104, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670314822.1885118, - "lastIP": "b}j~~lbaiiwva}h", - "deviceUUID": "1e68d1a8d1a3942a98801321538dfd0b3a054703" - }, - "pb-IF4lUxQtAA==": { - "display_string": [ - "\ue030Android60358186", - "\ue030Android63274946" - ], - "profiles": [], - "name": "\ue030Android60358186", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-09 12:23:51", - "registerOn": 1670315063.4228208, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670315063.4228213, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315063.4228299, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315063.4228306, - "lastIP": "a\u007fn~~aeaocaifz", - "deviceUUID": "d1ae037b6c1e8d2e57f875918c4182f25fa80ff1" - }, - "pb-IF4RU3ExEg==": { - "display_string": [ - "\ue020Aswinag7" - ], - "profiles": [], - "name": "\ue020Aswinag7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-30 20:54:31", - "registerOn": 1670315361.572793, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670315361.5727935, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315361.5728004, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670324345.5142963, - "lastIP": "azo~{l~~ngaid}", - "deviceUUID": "0436e0932298b6344d2a13c7c6f63bcd1f193e77" - }, - "pb-IF4DU1BaNA==": { - "display_string": [ - "\ue063RagingPred" - ], - "profiles": [], - "name": "\ue063RagingPred", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 21:53:24", - "registerOn": 1670315488.9796941, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670315488.9796944, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315488.9797032, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670315607.0970285, - "lastIP": "a}h~}a~vh~|n", - "deviceUUID": "75e0f67d4c12298e516cf542e95d92be2d984a42", - "cMsgCount": 0, - "lastMsgTime": 1670315633.8237379, - "lastMsg": "hello", - "cSameMsg": 0 - }, - "pb-IF5TU2g6AQ==": { - "display_string": [ - "\ue030Android61350223" - ], - "profiles": [], - "name": "\ue030Android61350223", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-19 16:29:40", - "registerOn": 1670315613.4918733, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670315613.4918737, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670315613.4919078, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670315613.4919088, - "lastIP": "azo~{a~xi~~`a", - "deviceUUID": "\u0015P\b\u0003V\u0010P\\\u0005Y@\u0005YUY\u0016TUVYFW^PPC" - }, - "pb-IF4xU00ZLQ==": { - "display_string": [ - "\ue063jeffalbi45" - ], - "profiles": [], - "name": "\ue063jeffalbi45", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 12:46:50", - "registerOn": 1670316023.9141371, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316023.9141374, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316023.9141448, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316023.9141455, - "lastIP": "azo~zi~}`~~a", - "deviceUUID": "aeb947524315d4a16cfdeffac4e6a08d8012eee2" - }, - "pb-IF5SUk8fAA==": { - "display_string": [ - "\ue030Android58748298" - ], - "profiles": [], - "name": "\ue030Android58748298", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-07 08:04:04", - "registerOn": 1670316056.0066593, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316056.0066597, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316056.0066686, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316056.0066693, - "lastIP": "awk~wk~}hhamd", - "deviceUUID": "277d45b713ae279677f262f0397a5e9a0b1286ea", - "cMsgCount": 1, - "lastMsgTime": 1670316332.6092901, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF5WU28fFg==": { - "display_string": [ - "\ue063DeceptiveL", - "\ue030Android62055355" - ], - "profiles": [], - "name": "\ue063DeceptiveL", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-17 19:42:09", - "registerOn": 1670316062.0438392, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316062.0438397, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316062.0438483, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316062.043849, - "lastIP": "b~j~~hdajcxva~`", - "deviceUUID": "ed75e19faad007fe789bf678b4b4d3f785c69b32" - }, - "pb-IF4BK046": { - "display_string": [ - "\ue063HAR1gamer" - ], - "profiles": [], - "name": "\ue063HAR1gamer", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-31 18:47:45", - "registerOn": 1670316067.1582618, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316067.1582625, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343530.384187, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343530.3841882, - "lastIP": "azo~{a~~lfaihy", - "deviceUUID": "61ccabcfc9cdc924ec5727d5ea992b4485bec4d7" - }, - "pb-IF5XUxcnLw==": { - "display_string": [ - "\ue030Android60435181" - ], - "profiles": [], - "name": "\ue030Android60435181", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-13 07:50:15", - "registerOn": 1670316112.227712, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316112.2277124, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316112.2277215, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316112.2277224, - "lastIP": "d}vb|j~~niaj`y", - "deviceUUID": "\u0015XU\u0002S\u0012\u0004TVR\u0015X\u000eP\u0005GP\\VTLWZTWAU" - }, - "pb-IF5XUxg6Ug==": { - "display_string": [ - "\ue063orangeyty", - "\ue030Android63981131" - ], - "profiles": [], - "name": "\ue063orangeyty", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-17 15:03:33", - "registerOn": 1670316192.5192356, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316192.519236, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316192.5192444, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316192.5192459, - "lastIP": "dvva{a~yo~vh", - "deviceUUID": "ff37d192a3c1a500f55d2d575fae1737687b6efd" - }, - "pb-IF4XU04tNQ==": { - "display_string": [ - "\ue030Android63903308" - ], - "profiles": [], - "name": "\ue030Android63903308", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 22:02:06", - "registerOn": 1670316456.5129864, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316456.5129871, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316456.512996, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316456.5129967, - "lastIP": "dxvb{o~}ifaiaw", - "deviceUUID": "81c52b637fb54d13bdf7a6820b544a890dea5e05" - }, - "pb-IF4tU3obMw==": { - "display_string": [ - "\ue030Android63201472" - ], - "profiles": [], - "name": "\ue030Android63201472", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-08 21:23:56", - "registerOn": 1670316468.5487235, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316468.5487242, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316468.548734, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316468.5487347, - "lastIP": "azo~|k~}kbaigx", - "deviceUUID": "2fb4cf0fe7817a4f28f26a77f1fa674537feea82" - }, - "pb-IF4xUxA7Vg==": { - "display_string": [ - "\ue063BLOODFRAUD" - ], - "profiles": [], - "name": "\ue063BLOODFRAUD", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-26 14:49:05", - "registerOn": 1670316498.6506438, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316498.6506443, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316498.650653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316498.6506536, - "lastIP": "fvvi{vdyvavn", - "deviceUUID": "5ee6edcb161af58a38cb283145ad239b222f2484" - }, - "pb-IF5UU0gICg==": { - "display_string": [ - "\ue063mugilann2k" - ], - "profiles": [], - "name": "\ue063mugilann2k", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 15:49:44", - "registerOn": 1670316606.038708, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316606.0387084, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316606.0387173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316606.0387182, - "lastIP": "azo~{a~~ncajc|", - "deviceUUID": "8958b3116af5f3af9b627d464c678a4000fb1ce2" - }, - "pb-IF4RU3IjMA==": { - "display_string": [ - "\ue020YKthePR\u00d4F\u00c8SS\u00d8R" - ], - "profiles": [], - "name": "\ue020YKthePR\u00d4F\u00c8SS\u00d8R", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-02 18:23:48", - "registerOn": 1670316681.3245635, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316681.3245642, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316681.324574, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316681.3245747, - "lastIP": "b}k~~`gaibyvb|l", - "deviceUUID": "47b1ea347a7615d8ec4821ca85da72534df509a4" - }, - "pb-IF4xU0tTDQ==": { - "display_string": [ - "\ue030Android63814738" - ], - "profiles": [], - "name": "\ue030Android63814738", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 05:44:09", - "registerOn": 1670316710.7181842, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316710.7181845, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316710.7181916, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316710.7181926, - "lastIP": "a~h~zl~~lfaid{", - "deviceUUID": "301e04025c5aa0a3791f8e3846ce468a42c8257b" - }, - "pb-LV4TA0FSAEsWCVxdGE9YVUhGFhJZWlkWV1QNDlIRRlwJExNFWVNV": { - "display_string": [ - "\ue063J0kerr666", - "\ue030PC92677" - ], - "profiles": [], - "name": "\ue063J0kerr666", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-09 10:24:17", - "registerOn": 1670316791.7148666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316791.714867, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670317355.596628, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316791.71488, - "lastIP": "ayk~zk~}m~~mh", - "deviceUUID": "d702133aeeb80315820c3f84d8fe0f6a00a8facf", - "cMsgCount": 0, - "lastMsgTime": 1670317612.3048096, - "lastMsg": "lagg", - "cSameMsg": 0 - }, - "pb-IF5RVRcCNQ==": { - "display_string": [ - "\ue020Touqeeerking" - ], - "profiles": [], - "name": "\ue020Touqeeerking", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-04 17:10:12", - "registerOn": 1670316796.7345297, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316796.7345304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316796.7345386, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670325388.42188, - "lastIP": "azo~|`~~lhaig~", - "deviceUUID": "a356ec507ce7f4d59c118273df4f79189490cacf" - }, - "pb-IF41U08-Eg==": { - "display_string": [ - "\ue063Intermed12" - ], - "profiles": [], - "name": "\ue063Intermed12", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 20:13:07", - "registerOn": 1670316870.0969722, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316870.096973, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337559.1937356, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337559.1937368, - "lastIP": "a\u007fn~}h`alhajc|", - "deviceUUID": "22511a304e203d7856bc47102f7830bfd5810d23" - }, - "pb-IF48VWgECg==": { - "display_string": [ - "\ue020AmusingWanderer19", - "\ue030Android52188542" - ], - "profiles": [], - "name": "\ue020AmusingWanderer19", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-01 10:52:04", - "registerOn": 1670316932.251956, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316932.2519562, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316932.2519639, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316932.2519646, - "lastIP": "azo~zi~~oiald", - "deviceUUID": "525625b9d1e1a9f2cc9b6a553fbedbb2d1d4cb83" - }, - "pb-IF4PU3hdLg==": { - "display_string": [ - "\ue020AccessibleClearing32", - "\ue030Android63098154" - ], - "profiles": [], - "name": "\ue030Android63098154", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-28 09:38:53", - "registerOn": 1670316964.4186032, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316964.4186034, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316964.4186125, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316964.4186132, - "lastIP": "azj~zo~~jaaig\u007f", - "deviceUUID": "6ba9c7402e6f457bf9e65f6dab128c492eae96d2" - }, - "pb-IF5VU0Q5LQ==": { - "display_string": [ - "\ue030Android63346781" - ], - "profiles": [], - "name": "\ue030Android63346781", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-16 16:13:41", - "registerOn": 1670316978.507343, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670316978.5073433, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670316978.5073504, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670316978.5073516, - "lastIP": "axi~zh~}jgajc\u007f", - "deviceUUID": "c501b2cdded617d65a90721b8cd09923ddf80170" - }, - "pb-IF5cVUkgUQ==": { - "display_string": [ - "\ue020FuturisticUndead36" - ], - "profiles": [], - "name": "\ue020FuturisticUndead36", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-26 14:47:48", - "registerOn": 1670317287.7447288, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670317287.7447293, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317287.7447374, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317287.7447386, - "lastIP": "a}j~~nbaidyvaxo", - "deviceUUID": "1331436c6d1b3fa92f7c8b79e7525c4d182c941a" - }, - "pb-IF4DVU0hKQ==": { - "display_string": [ - "\ue020Vishvjeetsinhchavda4" - ], - "profiles": [], - "name": "\ue020Vishvjeetsinhchavda4", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-28 00:07:21", - "registerOn": 1670317328.7055254, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670317328.705526, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317328.7055335, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317328.7055345, - "lastIP": "azh~~jiaj`yvax", - "deviceUUID": "86c48ed293567e290cad935a1a892636a27c62aa" - }, - "pb-IF4-U0MYXA==": { - "display_string": [ - "\ue063OrganicHor" - ], - "profiles": [], - "name": "\ue063OrganicHor", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 19:15:48", - "registerOn": 1670317404.3050337, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670317404.305034, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317404.3050423, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670320978.9758103, - "lastIP": "dzvb{a~~jcaihz", - "deviceUUID": "b1d66b451c42feb7a28bfa399a978752257b518b" - }, - "pb-IF4UUmoqUw==": { - "display_string": [ - "\ue020PivotalSorcerer2" - ], - "profiles": [], - "name": "\ue020PivotalSorcerer2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-30 15:57:03", - "registerOn": 1670317631.8363683, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670317631.8363688, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317631.8363776, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317631.8363786, - "lastIP": "b}k~}jdak~}kd", - "deviceUUID": "\u0015\u0007\tWU\u0010\u0007_R\u0005B\u0007_W\u0004C\u0003TTTDVTQXG" - }, - "pb-IF4cU08bEA==": { - "display_string": [ - "\ue063Isbgamer89" - ], - "profiles": [], - "name": "\ue063Isbgamer89", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 11:58:15", - "registerOn": 1670317698.0860934, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670317698.086094, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317698.086102, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317698.086103, - "lastIP": "azj~z`~~``aib~", - "deviceUUID": "792e5f015918699da9fb9cdbe124371fbe9b9e3d" - }, - "pb-IF4yU088Uw==": { - "display_string": [ - "\ue020BiographicalSteam361" - ], - "profiles": [], - "name": "\ue020BiographicalSteam361", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 10:47:55", - "registerOn": 1670317885.8271146, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670317885.827115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317885.8271234, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317885.827124, - "lastIP": "a\u007fn~~agakaaic}", - "deviceUUID": "\u0015X\u000bRU\u0016\u0002YXWMS\u000bXULV\\WYLR^PWDQ" - }, - "pb-IF4LUlBZNQ==": { - "display_string": [ - "\ue020UnwelcomeShop20", - "\ue063SansSkelet", - "\ue030Android46238231", - "\ue030Android63837331" - ], - "profiles": [], - "name": "\ue063SansSkelet", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-17 17:02:16", - "registerOn": 1670317956.334767, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670317956.3347676, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670317956.3347762, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670317956.334777, - "lastIP": "a\u007fk~vl~}mea``", - "deviceUUID": "6686e18a274a451d31dc74ea82b6c952955d2be3" - }, - "pb-IF4pVXMNEw==": { - "display_string": [ - "\ue063ADI61834" - ], - "profiles": [], - "name": "\ue063ADI61834", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-18 11:31:02", - "registerOn": 1670318120.9681735, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318120.968174, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318120.9681823, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318120.9681833, - "lastIP": "azo~{l~~miaii{", - "deviceUUID": "0a787623c7c4d90854515d86ae990dabe3a38e05" - }, - "pb-IF4DV1haCg==": { - "display_string": [ - "\ue020HotChicken96163", - "\ue030Android35196498", - "\ue030Android35134665" - ], - "profiles": [], - "name": "\ue020HotChicken96163", - "isBan": false, - "isMuted": false, - "accountAge": "2019-05-25 17:06:30", - "registerOn": 1670318167.8139994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318167.814, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318167.814008, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670320532.2667272, - "lastIP": "azo~|a~za~~ic", - "deviceUUID": "7ee613330e3b555a5cad3c9e5c8d39f11dfd644d" - }, - "pb-IF4MVWwmEQ==": { - "display_string": [ - "\ue030Android48579844" - ], - "profiles": [], - "name": "\ue030Android48579844", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-29 20:22:33", - "registerOn": 1670318242.0661242, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318242.066125, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318242.0661337, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318242.0661345, - "lastIP": "azo~{m~}kdaib{", - "deviceUUID": "8f385579674fc50710c94af42d9683cec8d0c467" - }, - "pb-IF4DU04PNQ==": { - "display_string": [ - "\ue020GamerParth2022" - ], - "profiles": [], - "name": "\ue020GamerParth2022", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 20:23:15", - "registerOn": 1670318276.1646168, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318276.1646173, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318276.1646254, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318276.1646261, - "lastIP": "a\u007fn~}idaigaa", - "deviceUUID": "b19319487589db6e9e0b7b330a7b6b62baed94a0" - }, - "pb-IF5SUxIeCA==": { - "display_string": [ - "\ue063UntaintedR" - ], - "profiles": [], - "name": "\ue063UntaintedR", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-28 10:21:46", - "registerOn": 1670318392.6810591, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318392.6810596, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318392.681067, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318392.681068, - "lastIP": "a\u007fn~~acamiaj`v", - "deviceUUID": "55de96c9512a84809debbac32fde65ac902e938c" - }, - "pb-IF4nU08BVg==": { - "display_string": [ - "\ue063kingbcs" - ], - "profiles": [], - "name": "\ue063kingbcs", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 12:18:32", - "registerOn": 1670318441.849206, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318441.8492064, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670354570.7014854, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670356555.8463821, - "lastIP": "dvvcxvdzvaym", - "deviceUUID": "548cce6a079bbda740d03793a1d78e999a4c1fd4", - "cMsgCount": 0, - "lastMsgTime": 1670355610.5520344, - "lastMsg": "vansh", - "cSameMsg": 0 - }, - "pb-IF4nU1AnFA==": { - "display_string": [ - "\ue063SOULRippeR" - ], - "profiles": [], - "name": "\ue063SOULRippeR", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 14:10:35", - "registerOn": 1670318543.2455177, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318543.2455184, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318543.2455266, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318543.2455273, - "lastIP": "dxvbvvaym~{k", - "deviceUUID": "82b7d4f4599997698e090fce3ac42f24262c826e" - }, - "pb-IF4nU0cpHA==": { - "display_string": [ - "\ue063WanProduc2" - ], - "profiles": [], - "name": "\ue063WanProduc2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-11 18:34:52", - "registerOn": 1670318720.1188574, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670318720.1188576, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670318720.1188676, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670318720.118869, - "lastIP": "avk~~n`ajbxvax`", - "deviceUUID": "08199784570a55ee4bb51ab6b310da1ea217b3db" - }, - "pb-IF5VUmEnJg==": { - "display_string": [ - "\ue030Android54523561" - ], - "profiles": [], - "name": "\ue030Android54523561", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-08 10:50:57", - "registerOn": 1670319109.241927, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670319109.2419274, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319109.241937, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319109.2419379, - "lastIP": "dzva}i~w`~ym", - "deviceUUID": "\u0015V[", - "cMsgCount": 0, - "lastMsgTime": 1670320986.0100675, - "lastMsg": "yeah", - "cSameMsg": 0 - }, - "pb-IF5UU0gmNA==": { - "display_string": [ - "\ue063LowerWarde" - ], - "profiles": [], - "name": "\ue063LowerWarde", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-09 05:50:00", - "registerOn": 1670319197.5851161, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670319197.5851166, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319197.5851257, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319197.5851266, - "lastIP": "dvva{n~zl~~ka", - "deviceUUID": "1921b2ab5d6cdf6d169c18296a84e996c354ebb1" - }, - "pb-IF4tUkwtCA==": { - "display_string": [ - "\ue063DEATHSTORM" - ], - "profiles": [], - "name": "\ue063DEATHSTORM", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-27 10:49:12", - "registerOn": 1670319434.3927255, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670319434.3927262, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319434.392736, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319434.3927367, - "lastIP": "dvvc}va|i~~`e", - "deviceUUID": "8ee8e212af18d5468df920fe14288750121d377c" - }, - "pb-IF4iU0QlAQ==": { - "display_string": [ - "\ue020ProdigalOutlay20", - "\ue030Android63809115" - ], - "profiles": [], - "name": "\ue020ProdigalOutlay20", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-29 20:48:28", - "registerOn": 1670319462.7579763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670319462.7579768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319462.7579849, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319462.7579856, - "lastIP": "azo~{n~xh~}ji", - "deviceUUID": "\u0015YTWS\u0011S\u000e\u0003WC\u0003_YRDW_QYDT]WT@Y" - }, - "pb-IF4qU04eNQ==": { - "display_string": [ - "\ue063Instruct21" - ], - "profiles": [], - "name": "\ue063Instruct21", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 19:55:33", - "registerOn": 1670319520.7552292, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670319520.7552297, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319520.7552383, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670319668.9903166, - "lastIP": "azo~{a~~aeajdy", - "deviceUUID": "6b94c3b0cf6e764ef671ac8c0d13de7d4fa5271e" - }, - "pb-IF4WU0MpAA==": { - "display_string": [ - "\ue030Android63427027" - ], - "profiles": [], - "name": "\ue030Android63427027", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-20 11:59:26", - "registerOn": 1670319913.3264253, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670319913.3264258, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319913.326435, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319913.3264358, - "lastIP": "bxvf~vb}k~~o`", - "deviceUUID": "\u0015X\bPT@\u0002\u000ePVBQTTXM" - }, - "pb-IF4IU04HUg==": { - "display_string": [ - "\ue063StapleDrif" - ], - "profiles": [], - "name": "\ue063StapleDrif", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 15:46:16", - "registerOn": 1670319955.5551145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670319955.555115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670319955.555124, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670319955.5551248, - "lastIP": "bxvf~vaa`h", - "deviceUUID": "4ee1623106b49e7195380825122a67a638c8063a" - }, - "pb-IF4LU0sqMA==": { - "display_string": [ - "\ue0200neN0nly21" - ], - "profiles": [], - "name": "\ue0200neN0nly21", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-06 19:28:04", - "registerOn": 1670320106.0815954, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320106.0815961, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320106.0816057, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320106.0816066, - "lastIP": "azo~|a~za~~ji", - "deviceUUID": "6c1e2c4ec06492a83ee00b13e3392643d1e4247d" - }, - "pb-IF4BVWoFDQ==": { - "display_string": [ - "\ue030Android48356549" - ], - "profiles": [], - "name": "\ue030Android48356549", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-18 18:35:21", - "registerOn": 1670320122.4135852, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320122.4135857, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320122.413594, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670320845.404351, - "lastIP": "azj~zo~~aeaic|", - "deviceUUID": "\u0015\u0002X\u0004TES\u000bPPB\u0004ZYWC" - }, - "pb-IF4qVRc9Bg==": { - "display_string": [ - "\ue020ArchitViradiya4747", - "\ue030Android46467079" - ], - "profiles": [], - "name": "\ue020ArchitViradiya4747", - "isBan": false, - "isMuted": false, - "accountAge": "2020-08-21 22:49:10", - "registerOn": 1670320261.675815, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320261.6758156, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320261.6758225, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320261.6758235, - "lastIP": "azo~|j~}mdajc\u007f", - "deviceUUID": "abffb29d6d37ff35707d4e389126be7fac509a19" - }, - "pb-IF4QUxEJUA==": { - "display_string": [ - "\ue030Android60154328" - ], - "profiles": [], - "name": "\ue030Android60154328", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-01 19:32:02", - "registerOn": 1670320514.6193326, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320514.619333, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320514.6193397, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320514.6193402, - "lastIP": "dvvazva|`~~ld", - "deviceUUID": "764cf088c92bfe46096d8edf0f9d36671aba3de9" - }, - "pb-IF4eVE9dFA==": { - "display_string": [ - "\ue020UJJWALkr8569", - "\ue030Android33403124" - ], - "profiles": [], - "name": "\ue020UJJWALkr8569", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-12 14:42:17", - "registerOn": 1670320692.145576, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320692.1455762, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320692.145587, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320692.1455877, - "lastIP": "b}k~}jhajcvvavo", - "deviceUUID": "\u0015TX" - }, - "pb-IF5UVBUEUg==": { - "display_string": [ - "\ue063Lakshit213" - ], - "profiles": [], - "name": "\ue063Lakshit213", - "isBan": false, - "isMuted": false, - "accountAge": "2019-07-03 16:48:44", - "registerOn": 1670320767.5459125, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320767.5459127, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320767.545922, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320842.39236, - "lastIP": "azj~z`~~o~~jb", - "deviceUUID": "a715359af32ebfd7c3d3d5f4d2b71b166b41195d" - }, - "pb-IF4uU08GCQ==": { - "display_string": [ - "\ue063NoName55613a" - ], - "profiles": [], - "name": "\ue063NoName55613a", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 15:28:26", - "registerOn": 1670320807.611278, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320807.6112785, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320807.611288, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320807.6112888, - "lastIP": "axm~~ofameajh", - "deviceUUID": "d6abdda6579f0c95cb4d2eeba5dea14003b6be63" - }, - "pb-IF4-Uk4ZXQ==": { - "display_string": [ - "\ue030Android58843616" - ], - "profiles": [], - "name": "\ue030Android58843616", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-11 16:09:33", - "registerOn": 1670320820.6656437, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320820.6656442, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320820.665653, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320820.6656542, - "lastIP": "i{vb{m~~kdaicv", - "deviceUUID": "4fd2518723de746bfe40bd12c21ea88f2b4b3ce7" - }, - "pb-IF4WVVAlDw==": { - "display_string": [ - "\ue030Android52606483" - ], - "profiles": [], - "name": "\ue030Android52606483", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-12 16:25:26", - "registerOn": 1670320863.1045487, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670320863.104549, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670320863.104558, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670320863.104559, - "lastIP": "izvg\u007fvg{vd|", - "deviceUUID": "\u0015" - }, - "pb-IF4DU0pdEw==": { - "display_string": [ - "\ue020StereoCurriculum37" - ], - "profiles": [], - "name": "\ue020StereoCurriculum37", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 10:07:16", - "registerOn": 1670321043.6589315, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670321043.658932, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321043.6589413, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321043.6589422, - "lastIP": "b\u007fj~~nhaohajd}", - "deviceUUID": "d29c4e60be9026a749df13b1b592f02d45c14367" - }, - "pb-IF4qUnE5XA==": { - "display_string": [ - "\ue063QanT" - ], - "profiles": [], - "name": "\ue063QanT", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-04 14:26:16", - "registerOn": 1670321119.8403804, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670321119.840381, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321119.8403878, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321119.8403888, - "lastIP": "", - "deviceUUID": "" - }, - "pb-IF4hU0QyUA==": { - "display_string": [ - "\ue020BionicClown95756" - ], - "profiles": [], - "name": "\ue020BionicClown95756", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-03 22:34:21", - "registerOn": 1670321356.1629827, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670321356.1629832, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670321600.6054456, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321356.1629937, - "lastIP": "avn~~meaie~vaz", - "deviceUUID": "68b208638cb6de07b8ab2a4a99c6d1229c2604cd", - "cMsgCount": 2, - "lastMsgTime": 1670321825.7926185, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4-U3QjBg==": { - "display_string": [ - "\ue063MysticBloo" - ], - "profiles": [], - "name": "\ue063MysticBloo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-12 10:51:15", - "registerOn": 1670321552.478127, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670321552.4781272, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321552.4781356, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321552.4781363, - "lastIP": "axm~~ofai`amh", - "deviceUUID": "bd9cc535441ef3d6a1cbdb85e622ff459b4edc23" - }, - "pb-IF4dU3QSKw==": { - "display_string": [ - "\ue030Android63977519", - "\ue030Android63977477", - "\ue030Android63977559", - "\ue030Android62717978", - "\ue030Android63977575" - ], - "profiles": [], - "name": "\ue030Android62717978", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-16 11:50:07", - "registerOn": 1670321600.9559095, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670321600.95591, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670321600.9559193, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670321600.9559205, - "lastIP": "azo~zh~~o~}mb", - "deviceUUID": "5b017a3ca1d395d080f351404b461b0b5037ef47" - }, - "pb-IF4qVFcnBg==": { - "display_string": [ - "\ue020mihirsavat" - ], - "profiles": [], - "name": "\ue020mihirsavat", - "isBan": false, - "isMuted": false, - "accountAge": "2020-06-07 12:47:48", - "registerOn": 1670321735.564338, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670321735.5643387, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670338828.597606, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670338825.5237856, - "lastIP": "dvvc{va|m~y", - "deviceUUID": "eebd84b662041c828dc3a08d269927eda98a60c4", - "cMsgCount": 0, - "lastMsgTime": 1670338828.5971737, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4dU20FHA==": { - "display_string": [ - "\ue063VROPPRO" - ], - "profiles": [], - "name": "\ue063VROPPRO", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 13:24:55", - "registerOn": 1670321741.2328196, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670321741.23282, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338352.9392703, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670338569.7063751, - "lastIP": "a|a~~ngaig\u007fvay`", - "deviceUUID": "79c60b48bf6a6568181dbb43a076af6b498018e2" - }, - "pb-IF4BVRQmVA==": { - "display_string": [ - "\ue063Winplaygam", - "\ue020dhruvLM432D" - ], - "profiles": [], - "name": "\ue063Winplaygam", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-31 19:13:58", - "registerOn": 1670322073.4771006, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322073.477101, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322073.47711, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322073.4771109, - "lastIP": "azj~zo~}kfajbz", - "deviceUUID": "68dc2f21c79661de8df0b968d9caf3c3d073fc80" - }, - "pb-IF4JUlcFVQ==": { - "display_string": [ - "\ue030Android59682080" - ], - "profiles": [], - "name": "\ue030Android59682080", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-13 15:26:28", - "registerOn": 1670322206.2137709, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322206.2137713, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322206.2137794, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322206.2137802, - "lastIP": "h|va}k~~jeaiex", - "deviceUUID": "48f31ab7bef929674bfc2eedcaafb09c5e402288" - }, - "pb-IF4QU04eDQ==": { - "display_string": [ - "\ue063AgedCore46" - ], - "profiles": [], - "name": "\ue063AgedCore46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 15:11:32", - "registerOn": 1670322496.205992, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322496.2059925, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322496.206001, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322496.206002, - "lastIP": "bxva}j~yi~~ld", - "deviceUUID": "51f6c3453a32570d566a1d370bad15eb6248a6aa" - }, - "pb-IF4AU0EPAg==": { - "display_string": [ - "\ue020MRSHUBHAManuj", - "\ue030Android62840913" - ], - "profiles": [], - "name": "\ue020MRSHUBHAManuj", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 16:04:02", - "registerOn": 1670322533.091349, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322533.0913496, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322533.0913584, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322533.0913591, - "lastIP": "a\u007fn~}hiaja\u007fvd{", - "deviceUUID": "2e6807fe08a7ac4ff707a2aa3bd4ffa01fd08a98" - }, - "pb-IF5VVEEANg==": { - "display_string": [ - "\ue063Demodog02" - ], - "profiles": [], - "name": "\ue063Demodog02", - "isBan": false, - "isMuted": false, - "accountAge": "2020-01-15 19:42:07", - "registerOn": 1670322554.1415997, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322554.1416006, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670325132.2035038, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322554.14161, - "lastIP": "a}j~~ohakeaifx", - "deviceUUID": "1d464001ddbf0c3de1dd9c46627b95304e92f138", - "cMsgCount": 0, - "lastMsgTime": 1670325197.79978, - "lastMsg": "bruh", - "cSameMsg": 0 - }, - "pb-IF4LVGlSLw==": { - "display_string": [ - "\ue020SHIVAMASS1509" - ], - "profiles": [], - "name": "\ue020SHIVAMASS1509", - "isBan": false, - "isMuted": false, - "accountAge": "2019-10-02 15:59:11", - "registerOn": 1670322658.5264704, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322658.526471, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322658.526479, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322658.52648, - "lastIP": "azo~zi~~agah", - "deviceUUID": "2e533909938aa763a37dedd4525343541b88959a" - }, - "pb-IF4QU28vNg==": { - "display_string": [ - "\ue030Android62190350" - ], - "profiles": [], - "name": "\ue030Android62190350", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-23 20:05:27", - "registerOn": 1670322809.0676057, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322809.0676062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347174.0749197, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670347174.0749207, - "lastIP": "a\u007fk~xh~~jhaa", - "deviceUUID": "\u0015R\u000b" - }, - "pb-IF5SUkkBEw==": { - "display_string": [ - "\ue020FayasMH07", - "\ue030Android58151670" - ], - "profiles": [], - "name": "\ue020FayasMH07", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-10 22:58:22", - "registerOn": 1670322852.1792657, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670322852.1792665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670322852.1792758, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670322852.1792765, - "lastIP": "azo~{n~~mgaih{", - "deviceUUID": "4be46002aef3990088f6ded70f2a053061f44b33" - }, - "pb-IF5RUnRYMg==": { - "display_string": [ - "\ue030Android56494704" - ], - "profiles": [], - "name": "\ue030Android56494704", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-05 11:41:50", - "registerOn": 1670323150.2793658, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323150.2793665, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323150.279377, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670325215.832379, - "lastIP": "azo~{`~~lbakf", - "deviceUUID": "\u0015\u0007\b" - }, - "pb-IF4oVU8CIQ==": { - "display_string": [ - "\ue020srk5553", - "\ue030Android46587965" - ], - "profiles": [], - "name": "\ue020srk5553", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-08 19:10:50", - "registerOn": 1670323277.0190306, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323277.019031, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323277.01904, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670326018.6661358, - "lastIP": "azj~zo~zm~~`i", - "deviceUUID": "9857e104bfbead5c690f6ffe0b252c07010628e1" - }, - "pb-IF4QAFAT": { - "display_string": [ - "\ue063WiseCarpen", - "\ue030Android35516755" - ], - "profiles": [], - "name": "\ue063WiseCarpen", - "isBan": false, - "isMuted": false, - "accountAge": "2018-03-24 17:06:16", - "registerOn": 1670323363.06051, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323363.0605104, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323363.0605185, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323363.06052, - "lastIP": "a|a~zvb{h~~li", - "deviceUUID": "3460e5659f29bf89081ab26a4d35669898c7baa1", - "cMsgCount": 0, - "lastMsgTime": 1670324307.293298, - "lastMsg": "no", - "cSameMsg": 0 - }, - "pb-IF4KVVUSPw==": { - "display_string": [ - "\ue030Android53154238" - ], - "profiles": [], - "name": "\ue030Android53154238", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-07 16:23:51", - "registerOn": 1670323380.2076497, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323380.2076504, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323380.2076588, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323380.2076595, - "lastIP": "a\u007fk~|`~}heaidy", - "deviceUUID": "\u0015\u0004\fQWAX\u000f\u0004U\u0012\u0004\\W\u0002@\u0002\\UPAW_VQF" - }, - "pb-IF4WU0s5LA==": { - "display_string": [ - "\ue030Android63804091" - ], - "profiles": [], - "name": "\ue030Android63804091", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 19:46:19", - "registerOn": 1670323488.4761457, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323488.4761462, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323488.476156, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323488.4761572, - "lastIP": "azj~zo~}jbaid\u007f", - "deviceUUID": "69f10dea84944b1207c6357b810eb10568389ad3" - }, - "pb-IF4NU3onCg==": { - "display_string": [ - "\ue063subashchan" - ], - "profiles": [], - "name": "\ue063subashchan", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-11 12:03:28", - "registerOn": 1670323513.6518407, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323513.6518412, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323513.6518488, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323513.6518497, - "lastIP": "azo~zi~~lcaj`\u007f", - "deviceUUID": "18c7c106e716867750ea47a695d7c4a7215020c4", - "cMsgCount": 1, - "lastMsgTime": 1670323524.0594983, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4tU0cgJw==": { - "display_string": [ - "\ue030Android63653357" - ], - "profiles": [], - "name": "\ue030Android63653357", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-13 10:24:33", - "registerOn": 1670323628.0846946, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323628.084695, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323628.0847054, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323628.0847063, - "lastIP": "az`~yj~{i~~of", - "deviceUUID": "adbe7928aeddd7118fcffc649aa7cb611fd3a58f" - }, - "pb-IF4tUlgHLg==": { - "display_string": [ - "\ue063Assertive2", - "\ue030Android57101758" - ], - "profiles": [], - "name": "\ue063Assertive2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-15 18:25:42", - "registerOn": 1670323708.3498294, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323708.3498302, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323708.3498392, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323708.34984, - "lastIP": "dvva{n~~aeai`}", - "deviceUUID": "63a3897323b88ec5af199cb615205ce594c415c9" - }, - "pb-IF4uU0oHVQ==": { - "display_string": [ - "\ue063WeaklyDece" - ], - "profiles": [], - "name": "\ue063WeaklyDece", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 08:35:52", - "registerOn": 1670323772.778086, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323772.7780864, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323772.7780964, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323772.7780974, - "lastIP": "cyvh{va~k~}mc", - "deviceUUID": "34e80ef02d0fb4136ba1273bdbeab24f115bc9c1" - }, - "pb-IF4DU08kHw==": { - "display_string": [ - "\ue020TopCapability10" - ], - "profiles": [], - "name": "\ue020TopCapability10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 20:35:02", - "registerOn": 1670323787.8947546, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323787.894755, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323787.8947651, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323787.8947663, - "lastIP": "azj~zo~}ihaibz", - "deviceUUID": "8e10941ca63b3d82e330633f62c832213a10b8a3" - }, - "pb-IF4BU3EtLg==": { - "display_string": [ - "\ue030Android62371159" - ], - "profiles": [], - "name": "\ue030Android62371159", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-31 20:11:13", - "registerOn": 1670323804.7764452, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323804.7764454, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323804.7764542, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323804.776455, - "lastIP": "a\u007fn~~agan~~jb", - "deviceUUID": "a07a568221a613569addd1b28094fb71d57b9c4f" - }, - "pb-IF40U2stDA==": { - "display_string": [ - "\ue020anuj6dager" - ], - "profiles": [], - "name": "\ue020anuj6dager", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-08 16:10:36", - "registerOn": 1670323935.34262, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323935.3426206, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670323935.3426313, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670323935.3426325, - "lastIP": "a|j~~mdambajb|", - "deviceUUID": "bd7ea938045ee17e7b73f1a580edffc3ce1b8ec8" - }, - "pb-IF41UlAhCA==": { - "display_string": [ - "\ue063sds420s" - ], - "profiles": [], - "name": "\ue063sds420s", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-16 16:12:38", - "registerOn": 1670323994.946162, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670323994.9461625, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337594.2915354, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337594.2915366, - "lastIP": "azo~{a~~kaajb~", - "deviceUUID": "06b24a9588f613fb62ed6c8e4e3c3215008c957e" - }, - "pb-IF42U04yBw==": { - "display_string": [ - "\ue063Hardwork14" - ], - "profiles": [], - "name": "\ue063Hardwork14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 20:14:48", - "registerOn": 1670324233.494325, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670324233.4943254, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324233.4943345, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670324233.4943354, - "lastIP": "azo~zi~xn~~lc", - "deviceUUID": "a2f4c3e1c58d6788b8d8a19d41f6adec18a6c0a0" - }, - "pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF": { - "display_string": [ - "\ue020ashu42v" - ], - "profiles": [], - "name": "\ue020ashu42v", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-30 00:27:53", - "registerOn": 1670324377.9480104, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670324377.948011, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324377.948021, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670324377.9480221, - "lastIP": "dxvc~vazh~~l", - "deviceUUID": "\u0015\u0003]YVL\u0002\u000fX\u0007CV\u000eSRM\u0003_SYBQ_WYB", - "cMsgCount": 0, - "lastMsgTime": 1670324917.3238666, - "lastMsg": "oh acha", - "cSameMsg": 0 - }, - "pb-IF4yU08bLQ==": { - "display_string": [ - "\ue030Android63997565" - ], - "profiles": [], - "name": "\ue030Android63997565", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 16:26:10", - "registerOn": 1670324708.4183412, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670324708.4183416, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324708.4183514, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670324708.4183524, - "lastIP": "a}h~\u007fvf|vfz", - "deviceUUID": "\u0015R\u000fUT\u0015X^U\u0005G\u0003\u000bRS\u0011\u0007YTSCYYUYM" - }, - "pb-IF4QU2UnJA==": { - "display_string": [ - "\ue030Android61281057" - ], - "profiles": [], - "name": "\ue030Android61281057", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-16 23:49:08", - "registerOn": 1670324930.1736083, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670324930.1736088, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670324930.1736178, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670324930.1736188, - "lastIP": "eajaxvb|o~~jh", - "deviceUUID": "\u0015Y^\u0002" - }, - "pb-IF4VUkMgUA==": { - "display_string": [ - "\ue063AfrodityHe" - ], - "profiles": [], - "name": "\ue063AfrodityHe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-01 21:20:07", - "registerOn": 1670325193.0797393, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325193.0797398, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325193.0797498, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325193.079751, - "lastIP": "a~o~}laaje{vayl", - "deviceUUID": "d2a77e5b4210bd6611975f624f2e83bc82e98945" - }, - "pb-IF4PU3oqXQ==": { - "display_string": [ - "\ue020Go\u3164D\u3164Usopp", - "\ue030Android63162454" - ], - "profiles": [], - "name": "\ue020Go\u3164D\u3164Usopp", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-06 17:13:17", - "registerOn": 1670325215.472564, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325215.4725645, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325215.4725733, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325215.4725742, - "lastIP": "azo~{a~}h`aja~", - "deviceUUID": "778748b6226c33833dc9c290d52824966873f9db" - }, - "pb-IF48VXAqBg==": { - "display_string": [ - "\ue030Android49166175" - ], - "profiles": [], - "name": "\ue030Android49166175", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-28 14:19:22", - "registerOn": 1670325373.6915343, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325373.6915348, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325373.6915448, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325373.691546, - "lastIP": "az`~yj~{i~~of", - "deviceUUID": "5fd00443cb7b72c371389cbacfcca970cff286a0" - }, - "pb-IF4VU08bDg==": { - "display_string": [ - "\ue030Android63997698" - ], - "profiles": [], - "name": "\ue030Android63997698", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 16:45:14", - "registerOn": 1670325437.9224865, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325437.922487, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325437.922496, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325437.9224968, - "lastIP": "axm~~ofalaaje}", - "deviceUUID": "8c13885b11bf0056f71b53434f42a6343546a4f4" - }, - "pb-JiNJARBbXUFGXlpHGURYUFVCF0BYQ1VK": { - "display_string": [ - "\ue020SREEKANTH1943", - "\ue030Android12063835" - ], - "profiles": [], - "name": "\ue020SREEKANTH1943", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-28 19:26:58", - "registerOn": 1670325522.8823285, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325522.882329, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325522.8823383, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325522.8823392, - "lastIP": "a~o~}ieaj`yvb{`", - "deviceUUID": "ed7a667acc53dfa611875977af10ddb5b5b96b45" - }, - "pb-IF4DU08vBw==": { - "display_string": [ - "\ue063Miur35" - ], - "profiles": [], - "name": "\ue063Miur35", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 11:43:18", - "registerOn": 1670325727.9705892, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325727.9705896, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325727.9706001, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325727.9706013, - "lastIP": "a~o~}igangaj`\u007f", - "deviceUUID": "03c86fe9486247a0ddcbc176d369a41537c5d913" - }, - "pb-IF4iI04x": { - "display_string": [ - "\ue063jethendras", - "\ue030Android19866571", - "\ue030Android19849129" - ], - "profiles": [], - "name": "\ue063jethendras", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-20 18:35:34", - "registerOn": 1670325975.117926, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325975.1179261, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325975.117935, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325975.1179357, - "lastIP": "a}j~~ocaid|viy", - "deviceUUID": "06a13238adfca04a6a8da6b2b52cfa9117ce57a2" - }, - "pb-IF4KXmcn": { - "display_string": [ - "\ue020warriorofsoulruler1", - "\ue030Android18117877" - ], - "profiles": [], - "name": "\ue030Android18117877", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-18 09:58:16", - "registerOn": 1670325980.807262, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670325980.8072624, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670325980.8072712, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670325980.807272, - "lastIP": "a\u007fk~}mcaie\u007fvh{", - "deviceUUID": "71460dfda3ed612808915f8322aec0eff6a622bd" - }, - "pb-IF4xU2waHw==": { - "display_string": [ - "\ue030Android61975304" - ], - "profiles": [], - "name": "\ue030Android61975304", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-14 14:16:05", - "registerOn": 1670326626.3205829, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670326626.3205833, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670326626.3205914, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670326626.3205922, - "lastIP": "a|o~vo~~hiai`z", - "deviceUUID": "\u0015T_\u0003U\u0016U\u000b\u0004" - }, - "pb-IF42UnAsNQ==": { - "display_string": [ - "\ue063WideEyedB2", - "\ue030Android56478145" - ], - "profiles": [], - "name": "\ue063WideEyedB2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-30 13:27:55", - "registerOn": 1670326659.3850675, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670326659.385068, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670326659.385076, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670326659.385077, - "lastIP": "awk~wo~}ldaof", - "deviceUUID": "a7702e699e8499e0dd2432d20dcb5deb8f56ae61" - }, - "pb-IF41UlkcIA==": { - "display_string": [ - "\ue030Android59873080" - ], - "profiles": [], - "name": "\ue030Android59873080", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-20 13:58:09", - "registerOn": 1670327192.6990142, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670327192.6990144, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670327673.800667, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670327399.1671722, - "lastIP": "azj~zo~}laaifv", - "deviceUUID": "\u0015T\\\u0004", - "cMsgCount": 0, - "lastMsgTime": 1670327673.8008454, - "lastMsg": "CKD ka gaand me 14 lund isha ki maa Randi", - "cSameMsg": 0 - }, - "pb-IF5UU3AyNw==": { - "display_string": [ - "\ue030Android62113852" - ], - "profiles": [], - "name": "\ue030Android62113852", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-20 10:27:51", - "registerOn": 1670327491.8374088, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670327491.8374093, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670355432.3889458, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670355432.3889472, - "lastIP": "b}k~}jgaobajd\u007f", - "deviceUUID": "ebbd3626b76f9cb463b10b199a09b65e3c8967f8", - "cMsgCount": 0, - "lastMsgTime": 1670327703.9231, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4zU1BSBw==": { - "display_string": [ - "\ue030Android63997645" - ], - "profiles": [], - "name": "\ue030Android63997645", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 16:37:50", - "registerOn": 1670327646.3797734, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670327646.3797739, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327646.3797832, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327646.3797839, - "lastIP": "axi~~ifa`fajb\u007f", - "deviceUUID": "\u0015RYYRDU\u000eY\u0003\u0015\u0004[\u0004VEXXSXASYQWD" - }, - "pb-IF4MU04MMg==": { - "display_string": [ - "\ue030Android63945820" - ], - "profiles": [], - "name": "\ue030Android63945820", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 10:54:07", - "registerOn": 1670327752.0334394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670327752.0334404, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327752.0334496, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327752.0334506, - "lastIP": "cxvbvvd~vava", - "deviceUUID": "f9230a0e20d8a79f2fb80cb52a299abede89f143" - }, - "pb-IF42U3ciNQ==": { - "display_string": [ - "\ue063Abbuabbuaa" - ], - "profiles": [], - "name": "\ue063Abbuabbuaa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-25 14:58:29", - "registerOn": 1670327961.6425345, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670327961.642535, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327961.642544, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327961.6425452, - "lastIP": "a~h~}jdaa`aid\u007f", - "deviceUUID": "8184746c4f18393c073c5ce44bb4877d694e912e" - }, - "pb-IF4dUloABA==": { - "display_string": [ - "\ue030Android59978471" - ], - "profiles": [], - "name": "\ue030Android59978471", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-24 14:22:26", - "registerOn": 1670327998.6811426, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670327998.6811433, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670327998.6811523, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670327998.6811533, - "lastIP": "azo~{a~~kdalf", - "deviceUUID": "\u0015\u0007^PRDSYQYDYZPXL" - }, - "pb-IF4KU3JdDA==": { - "display_string": [ - "\ue020SectarianPioneer25" - ], - "profiles": [], - "name": "\ue020SectarianPioneer25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-02 15:22:11", - "registerOn": 1670328047.8242092, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328047.8242097, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328047.824219, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328047.8242197, - "lastIP": "b}k~~`gaiaxvaz", - "deviceUUID": "65f0d98269264b2cff07338106471260003e7632" - }, - "pb-IF4oElIy": { - "display_string": [ - "\ue063NoName54913f", - "\ue030Android24828802" - ], - "profiles": [], - "name": "\ue063NoName54913f", - "isBan": false, - "isMuted": false, - "accountAge": "2018-06-01 19:53:14", - "registerOn": 1670328102.1097858, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328102.1097865, - "totaltimeplayer": 0, - "warnCount": 2, - "lastWarned": 1670330128.035162, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328102.1097958, - "lastIP": "a~o~v`~~iiakf", - "deviceUUID": "f213a83878bed9402cd3288517165e177fd8838a", - "cMsgCount": 0, - "lastMsgTime": 1670330875.3406117, - "lastMsg": "darkness? nofe", - "cSameMsg": 0 - }, - "pb-IF4tUhgtAA==": { - "display_string": [ - "\ue030Android54534556" - ], - "profiles": [], - "name": "\ue030Android54534556", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-08 23:30:07", - "registerOn": 1670328459.441897, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328459.4418974, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328459.441906, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328459.4419067, - "lastIP": "azo~|j~xl~~jc", - "deviceUUID": "\u0015\u0002\u000f\u0004\u0004\u0017T\u000e\u0007VF\u0005YUY\u0016\u0003XSUFS^XT" - }, - "pb-IF4eU3UODA==": { - "display_string": [ - "\ue026gcuser1633413302872", - "\ue030Android60672288" - ], - "profiles": [], - "name": "\ue030Android60672288", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-16 08:00:39", - "registerOn": 1670328573.5471966, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328573.547197, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328573.547205, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328573.5472057, - "lastIP": "a~o~}mbajayvcy", - "deviceUUID": "d00694006d05615b370a49f226f7c0e938017fff" - }, - "pb-IF4GV2YFJA==": { - "display_string": [ - "\ue063GrandTorna" - ], - "profiles": [], - "name": "\ue063GrandTorna", - "isBan": false, - "isMuted": false, - "accountAge": "2018-10-09 19:30:25", - "registerOn": 1670328700.0748413, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328700.0748417, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328700.07485, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328700.0748508, - "lastIP": "i}vivvc\u007fvazh", - "deviceUUID": "80a84fbdd7d9a80abe9c77d8a4cd5bebedb436cf" - }, - "pb-IF4JU08ZAw==": { - "display_string": [ - "\ue030Android63997986" - ], - "profiles": [], - "name": "\ue030Android63997986", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 17:26:30", - "registerOn": 1670328704.0734298, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328704.0734303, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328704.0734398, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328704.0734406, - "lastIP": "b}i~~k~~vaxo", - "deviceUUID": "06e4b1315becb85e775aa9aa20c0b55328ec69c8" - }, - "pb-IF5QVXYYJA==": { - "display_string": [ - "\ue063Vivekdestr" - ], - "profiles": [], - "name": "\ue063Vivekdestr", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-23 14:40:44", - "registerOn": 1670328712.1810508, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328712.1810515, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328712.1810598, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328712.1810608, - "lastIP": "aya~~liajbyvfy", - "deviceUUID": "353e5c0e2e891b6a71026fd4bd67d989808f22ed" - }, - "pb-IF4PUhEcUQ==": { - "display_string": [ - "\ue020ItzCOSMOS2023" - ], - "profiles": [], - "name": "\ue020ItzCOSMOS2023", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-11 15:37:58", - "registerOn": 1670328715.0368557, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328715.0368567, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328715.0368655, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328715.0368667, - "lastIP": "dxvazvb\u007fvdv", - "deviceUUID": "\u0015Y\u000fQVBV[VV\u0011\u0003TTX\u0016\u0007_STLXTYSD" - }, - "pb-IF4NU04KDw==": { - "display_string": [ - "\ue063ManiacalCo" - ], - "profiles": [], - "name": "\ue063ManiacalCo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-02 13:33:39", - "registerOn": 1670328793.3029082, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328793.302909, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328793.3029191, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328793.3029199, - "lastIP": "b}k~}heajd}vc|", - "deviceUUID": "0535b3524d1a09ac506e18f8293a66f82d24ebd7" - }, - "pb-IF4SU3UIAQ==": { - "display_string": [ - "\ue063GreyAardva", - "\ue030Android61397395" - ], - "profiles": [], - "name": "\ue063GreyAardva", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-17 16:06:48", - "registerOn": 1670328802.362002, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328802.3620026, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328802.3620121, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328802.3620129, - "lastIP": "azo~{a~}kcaicw", - "deviceUUID": "639b12380b07f49d12ad2836e835a35900552c4a" - }, - "pb-IF4lVU9bEA==": { - "display_string": [ - "\ue020HAWKI55" - ], - "profiles": [], - "name": "\ue020HAWKI55", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-05 14:03:55", - "registerOn": 1670328843.6537716, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328843.6537719, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328843.6537793, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328843.65378, - "lastIP": "a\u007fk~wk~~leaif", - "deviceUUID": "555e0137ef2c452305722168c4b9a9fbd41f4a10" - }, - "pb-IF4FU3ADMQ==": { - "display_string": [ - "\ue030Android62325956" - ], - "profiles": [], - "name": "\ue030Android62325956", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-29 21:10:57", - "registerOn": 1670328855.734646, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670328855.7346466, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670328855.7346563, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670328855.7346573, - "lastIP": "dxva~vavn~~nb", - "deviceUUID": "5dc2a63f03c15199a483557117009b08016a1209" - }, - "pb-IF4FU3NcFw==": { - "display_string": [ - "\ue063Unenlight4" - ], - "profiles": [], - "name": "\ue063Unenlight4", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-08 16:48:46", - "registerOn": 1670329143.4001224, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670329143.400123, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329143.4001317, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329143.4001324, - "lastIP": "a~j~~kdajd~vazo", - "deviceUUID": "64f13314cbba2da3397b5c597ce06b5c2c496015" - }, - "pb-IF4TV0wvVQ==": { - "display_string": [ - "\ue063PuzzledSol" - ], - "profiles": [], - "name": "\ue063PuzzledSol", - "isBan": false, - "isMuted": false, - "accountAge": "2019-03-23 17:21:29", - "registerOn": 1670329212.404818, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670329212.4048188, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329212.4048443, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329212.4048452, - "lastIP": "dzvf{va}vhy", - "deviceUUID": "71f80b9134c785c4298264cb9239ccb37455fdaf" - }, - "pb-IF4XU3YGFg==": { - "display_string": [ - "\ue020TastelessSystem38" - ], - "profiles": [], - "name": "\ue020TastelessSystem38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-20 16:16:59", - "registerOn": 1670329769.7248714, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670329769.7248719, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329769.7248793, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329769.7248802, - "lastIP": "b}k~~`gaia|vax", - "deviceUUID": "218394d7f709f5896d0ea114c5c20282a9ecc5e9" - }, - "pb-IF43UlccEQ==": { - "display_string": [ - "\ue020SiriusSam15", - "\ue030Android60471603" - ], - "profiles": [], - "name": "\ue020SiriusSam15", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-13 17:05:55", - "registerOn": 1670329936.3558497, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670329936.3558502, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670329936.3558602, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670329936.355861, - "lastIP": "azo~{a~}leaidx", - "deviceUUID": "a0b384d772aa086e7dab5fcd950f951fb13c96ed" - }, - "pb-IF4IV08vJw==": { - "display_string": [ - "\ue020anuragkareliya123" - ], - "profiles": [], - "name": "\ue020anuragkareliya123", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-07 14:22:58", - "registerOn": 1670330015.9494424, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330015.9494429, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330015.9494498, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330015.9494505, - "lastIP": "a\u007fn~}ifa`aaic}", - "deviceUUID": "01aabc41b4b9e0a7492e82bf950f3060f4ad1cb2" - }, - "pb-IF4qUxYvIA==": { - "display_string": [ - "\ue063quicksnipe" - ], - "profiles": [], - "name": "\ue063quicksnipe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-17 12:38:39", - "registerOn": 1670330038.8219302, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330038.8219304, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330038.821938, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330038.8219388, - "lastIP": "a\u007fn~~acaig{vd~", - "deviceUUID": "d53fcd54e6796458b313ddfade7a39799c24dcfd", - "cMsgCount": 2, - "lastMsgTime": 1670330216.2562494, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4AU3hZPA==": { - "display_string": [ - "\ue063Pavan" - ], - "profiles": [], - "name": "\ue063Pavan", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 21:04:44", - "registerOn": 1670330051.865205, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330051.8652055, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330051.8652139, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330051.8652153, - "lastIP": "dvvb\u007fl~~j`aja{", - "deviceUUID": "5e89cae6ddeaf888dcb6acf9d0e2bd7c051181d6" - }, - "pb-IF5TE2M5": { - "display_string": [ - "\ue020ahamadakthus" - ], - "profiles": [], - "name": "\ue020ahamadakthus", - "isBan": false, - "isMuted": false, - "accountAge": "2018-05-24 10:54:01", - "registerOn": 1670330072.9584184, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330072.9584188, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330072.958428, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670336725.5473769, - "lastIP": "ayj~}ifaid|vaxl", - "deviceUUID": "8a9e8b2f8430a1a02dbd8c5c33da5d338fa353b5" - }, - "pb-IF4wU00DEA==": { - "display_string": [ - "\ue063ZADKIEL", - "\ue030Android63972115", - "\ue030Android63971981", - "\ue030Android63972065", - "\ue030Android63972400" - ], - "profiles": [], - "name": "\ue063ZADKIEL", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 18:25:53", - "registerOn": 1670330084.0283349, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330084.0283353, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330084.0283444, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330084.028345, - "lastIP": "a\u007fk~}haaib{vaxm", - "deviceUUID": "711af46b6d319e2e692e3818dca8854b535283db" - }, - "pb-IF4mU0sMUQ==": { - "display_string": [ - "\ue030Android63838539" - ], - "profiles": [], - "name": "\ue030Android63838539", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-10 13:27:08", - "registerOn": 1670330181.3622932, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330181.3622937, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330181.3623028, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330181.3623035, - "lastIP": "a~j~}iaangaie|", - "deviceUUID": "ec8033d8df7f8740ecad268a33a18d5cbc86b3b9" - }, - "pb-IF5QU3oCEg==": { - "display_string": [ - "\ue020LargeTornado46516" - ], - "profiles": [], - "name": "\ue020LargeTornado46516", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-28 07:15:07", - "registerOn": 1670330413.2825234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330413.282524, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337368.5282972, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670337378.5740252, - "lastIP": "a\u007fn~~afai`~vf}", - "deviceUUID": "e11733cfbaac799f8f8bc25da52ef852889bdb5c" - }, - "pb-IF5WU0saBg==": { - "display_string": [ - "\ue020AssasiN4116" - ], - "profiles": [], - "name": "\ue020AssasiN4116", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 15:22:04", - "registerOn": 1670330556.6910794, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330556.6910799, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330556.691088, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330556.6910892, - "lastIP": "a\u007fn~}h`aifaidz", - "deviceUUID": "f564e7fdced9c3704bcaf60333ec88db427b79bd" - }, - "pb-IF40U08YKg==": { - "display_string": [ - "\ue030Android63998324" - ], - "profiles": [], - "name": "\ue030Android63998324", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 18:08:47", - "registerOn": 1670330652.0145528, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330652.0145533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330652.0145624, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330652.0145633, - "lastIP": "a~h~zl~~a`aaa", - "deviceUUID": "24e6b2598a2fa64bc3a160906f6010716f2cc8c9" - }, - "pb-IF4eU086Dw==": { - "display_string": [ - "\ue020HerbalPopulation30" - ], - "profiles": [], - "name": "\ue020HerbalPopulation30", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-30 23:35:50", - "registerOn": 1670330806.6942346, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330806.6942353, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330806.6942441, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330806.6942449, - "lastIP": "azo~{n~}jaaig~", - "deviceUUID": "b24e0847757eaefd59da6b9214b0abb05b6df496" - }, - "pb-IF41U0Y5PA==": { - "display_string": [ - "\ue063Rajjadhav9", - "\ue030Android59261403" - ], - "profiles": [], - "name": "\ue063Rajjadhav9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 17:24:14", - "registerOn": 1670330823.770203, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330823.7702036, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330823.7702105, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670331451.904811, - "lastIP": "azh~~hgaih}vawn", - "deviceUUID": "6b2c8f6ccdb1b386b2809a13b57aae77fd820c1a", - "cMsgCount": 0, - "lastMsgTime": 1670331414.1109765, - "lastMsg": "\ud83d\ude02\ud83d\ude02\ud83d\ude02", - "cSameMsg": 0 - }, - "pb-IF4lVG8eBA==": { - "display_string": [ - "\ue020LogicalDuck1803" - ], - "profiles": [], - "name": "\ue020LogicalDuck1803", - "isBan": false, - "isMuted": false, - "accountAge": "2019-11-16 19:47:59", - "registerOn": 1670330871.2040243, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330871.2040248, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339046.294569, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339046.2945702, - "lastIP": "a\u007fn~xo~~neaie{", - "deviceUUID": "87d6699deaa69f754f4a7de401c140119923c1ce", - "cMsgCount": 0, - "lastMsgTime": 1670331122.8076615, - "lastMsg": "0", - "cSameMsg": 0 - }, - "pb-IF5VU0EjVw==": { - "display_string": [ - "\ue030Android63061128" - ], - "profiles": [], - "name": "\ue030Android63061128", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-01 17:56:29", - "registerOn": 1670330882.108143, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330882.1081436, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330882.108151, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330882.108152, - "lastIP": "gxvb|o~~aaaiez", - "deviceUUID": "\u0015V\u000e\u0007" - }, - "pb-IF4BEW0D": { - "display_string": [ - "\ue063LEGIONDIVI", - "\ue030Android25382791" - ], - "profiles": [], - "name": "\ue063LEGIONDIVI", - "isBan": false, - "isMuted": false, - "accountAge": "2018-06-14 12:56:25", - "registerOn": 1670330914.1182535, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330914.1182542, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330914.118262, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330914.1182628, - "lastIP": "a\u007fk~}meai`yvb}n", - "deviceUUID": "70b07d512738b75547be56e7972eec2d420c3961" - }, - "pb-IF5QU0wNJg==": { - "display_string": [ - "\ue063Strangest8" - ], - "profiles": [], - "name": "\ue063Strangest8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 22:21:04", - "registerOn": 1670330928.4512026, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670330928.4512029, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670330928.4512107, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670330928.451212, - "lastIP": "dxviaie{vaxm", - "deviceUUID": "4f06a2122eb2e40e7b497460f7ba8364481ca1ca" - }, - "pb-IF4AVHQ9NQ==": { - "display_string": [ - "\ue020ExogenousBudget8" - ], - "profiles": [], - "name": "\ue020ExogenousBudget8", - "isBan": false, - "isMuted": false, - "accountAge": "2019-12-17 16:43:42", - "registerOn": 1670331074.7362974, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670331074.736298, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331074.736306, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670331074.7363067, - "lastIP": "a\u007fk~~liaiixviz", - "deviceUUID": "\u0015Q\u000bWXDUY\u0005XETT\u0003\u0005\u0016S\\QQGYXSYCR", - "cMsgCount": 0, - "lastMsgTime": 1670333569.7223873, - "lastMsg": "sahilp me aao re koi", - "cSameMsg": 0 - }, - "pb-IF4tV0YpCg==": { - "display_string": [ - "\ue020FuschiaChicken22885" - ], - "profiles": [], - "name": "\ue020FuschiaChicken22885", - "isBan": false, - "isMuted": false, - "accountAge": "2019-02-21 21:21:37", - "registerOn": 1670331228.5726087, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670331228.5726092, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670331269.7994666, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670331228.5726187, - "lastIP": "azo~{a~~kgaiix", - "deviceUUID": "cf60478ec7cd549dd8b3bfa8108203095220e9a6", - "cMsgCount": 0, - "lastMsgTime": 1670331269.7994137, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4FU08hMw==": { - "display_string": [ - "\ue063Godfreykin" - ], - "profiles": [], - "name": "\ue063Godfreykin", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 16:11:55", - "registerOn": 1670331711.777738, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670331711.7777386, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331711.7777467, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670331711.7777474, - "lastIP": "awh~~aeaj`zvb", - "deviceUUID": "a333602af18ff895ba35d8e352d1fddfc9dbd8da" - }, - "pb-IF4gUnIzIg==": { - "display_string": [ - "\ue020OverallIncarnation20" - ], - "profiles": [], - "name": "\ue020OverallIncarnation20", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-10 23:04:50", - "registerOn": 1670331998.9420974, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670331998.942098, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670331998.9421065, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670331998.9421077, - "lastIP": "azj~zo~~kfaibw", - "deviceUUID": "c0da9354ccae30d5dbe91ecbce7d54ce7eab4f32" - }, - "pb-IF4OU04GBg==": { - "display_string": [ - "\ue063MRKHINDIGA" - ], - "profiles": [], - "name": "\ue063MRKHINDIGA", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-27 18:23:34", - "registerOn": 1670332003.9399593, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332003.9399598, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337486.9741192, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670337617.3663964, - "lastIP": "a\u007fk~}maaiiajb", - "deviceUUID": "6ced21ada9869093bef0a7b8fd5e8a4c55abd317", - "cMsgCount": 0, - "lastMsgTime": 1670332262.7351954, - "lastMsg": "hello chutiyo", - "cSameMsg": 0 - }, - "pb-IF4oVRIALg==": { - "display_string": [ - "\ue063DaveGamer6" - ], - "profiles": [], - "name": "\ue063DaveGamer6", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-19 14:15:23", - "registerOn": 1670332018.0404885, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332018.040489, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332018.0404985, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332018.0404994, - "lastIP": "awh~~adalaai`~", - "deviceUUID": "a0c8c0862e3a8c2792de71efc3f1a8f2cae0f578" - }, - "pb-IF4sUnYKXA==": { - "display_string": [ - "\ue063TOFFE2022" - ], - "profiles": [], - "name": "\ue063TFFE2022", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-31 21:56:06", - "registerOn": 1670332024.983172, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332024.9831727, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332024.9831817, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670335640.9330647, - "lastIP": "bxvdaie{vawl", - "deviceUUID": "7c86dff289fd825b55413be3c6d230f5ad9edaf3" - }, - "pb-IF4oU20bJA==": { - "display_string": [ - "\ue020RegretfulFighter7831" - ], - "profiles": [], - "name": "\ue020RegretfulFighter7831", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-16 15:37:41", - "registerOn": 1670332196.226634, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332196.2266347, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332196.2266417, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332196.2266424, - "lastIP": "a\u007fn~~ahaig~va\u007f", - "deviceUUID": "5b0bbcfcb34a9ccd099c0db3fb3abd9323d8d41f" - }, - "pb-IF4MU04CDQ==": { - "display_string": [ - "\ue020FasterTuba34" - ], - "profiles": [], - "name": "\ue020FasterTuba34", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 18:34:47", - "registerOn": 1670332493.031049, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332493.0310495, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332493.031058, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332493.0310595, - "lastIP": "a\u007fn~~ahaigal`", - "deviceUUID": "315426646c2a5b230daaf80dd85ed7d686c12123" - }, - "pb-IF4FU28fVg==": { - "display_string": [ - "\ue020kumargchethan56" - ], - "profiles": [], - "name": "\ue020kumargchethan56", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-26 10:30:59", - "registerOn": 1670332570.3545327, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332570.354533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332570.3545418, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332570.3545427, - "lastIP": "azo~{m~~mfai`v", - "deviceUUID": "cecaf1a5847d6b847a4e2f4d9e55db4db623ea16" - }, - "pb-IF4KU1A7PQ==": { - "display_string": [ - "\ue030Android63997996" - ], - "profiles": [], - "name": "\ue030Android63997996", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 17:27:30", - "registerOn": 1670332621.5350256, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332621.535026, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332621.5350356, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332621.5350366, - "lastIP": "d~vazh~|l~xi", - "deviceUUID": "60c18238a14a78a60e75f7ce54887386384d6818" - }, - "pb-IF4dU3QbHw==": { - "display_string": [ - "\ue020gameryasar93" - ], - "profiles": [], - "name": "\ue020gameryasar93", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-15 21:30:56", - "registerOn": 1670332678.6896298, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332678.6896303, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332678.689639, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332678.68964, - "lastIP": "azo~{a~~oiaii~", - "deviceUUID": "fab4b7f324dc6c57976278f9d62d81cd11fe8301" - }, - "pb-IF4SU1BbHw==": { - "display_string": [ - "\ue030Android63993006" - ], - "profiles": [], - "name": "\ue030Android63993006", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 02:47:53", - "registerOn": 1670332747.9222395, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332747.9222403, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332747.9222548, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332747.9222555, - "lastIP": "a~h~}maajc\u007fvb\u007fk", - "deviceUUID": "6093b02fb4a82a356fe2321e85a56fefb5bf6ec4" - }, - "pb-IF4SU1BdKg==": { - "display_string": [ - "\ue063EightyHear" - ], - "profiles": [], - "name": "\ue063EightyHear", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 18:15:42", - "registerOn": 1670332774.2946057, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332774.2946064, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332774.2946172, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332774.2946181, - "lastIP": "azo~{h~vk~ym", - "deviceUUID": "4c76f765766d1418b17ad32f629498cf4067537e" - }, - "pb-IF4VUGpe": { - "display_string": [ - "\ue063Vanquishe9", - "\ue030Android11472375" - ], - "profiles": [], - "name": "\ue063Vanquishe9", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-08 18:03:59", - "registerOn": 1670332903.4268982, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670332903.4268987, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670332903.426908, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670332903.4269092, - "lastIP": "a\u007fk~xh~~jhaa", - "deviceUUID": "9c46b1019101f05d83b3b63b344fb047d683f051" - }, - "pb-IF49U0oCKQ==": { - "display_string": [ - "\ue063NoName44250c" - ], - "profiles": [], - "name": "\ue063NoName44250c", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 10:47:14", - "registerOn": 1670333041.984932, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333041.9849322, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670339522.8307118, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670341272.3873558, - "lastIP": "dvvc}vb~l~{o", - "deviceUUID": "675ef762b4b584d958a4980af72e051d56743ba2", - "cMsgCount": 0, - "lastMsgTime": 1670339607.2104697, - "lastMsg": "1", - "cSameMsg": 0 - }, - "pb-IF41VUgdEw==": { - "display_string": [ - "\ue030Android51835869" - ], - "profiles": [], - "name": "\ue030Android51835869", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-06 05:48:53", - "registerOn": 1670333077.0857003, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333077.0857008, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333077.08571, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333077.0857108, - "lastIP": "a{h~}icamhaiez", - "deviceUUID": "\u0015Q\u000bSUGV]\u0007Y@Q^U" - }, - "pb-IF4CLUED": { - "display_string": [ - "\ue063VishalDorl", - "\ue030Android19868642" - ], - "profiles": [], - "name": "\ue063VishalDorl", - "isBan": false, - "isMuted": false, - "accountAge": "2017-12-22 14:45:50", - "registerOn": 1670333159.3431795, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333159.3431797, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333159.3431885, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333159.3431892, - "lastIP": "azj~zo~}laaj`~", - "deviceUUID": "c7db4503a355ad7ad212d9a7785b6e6e040e39ef" - }, - "pb-IF4NU0sTNQ==": { - "display_string": [ - "\ue020HookedMedusa32" - ], - "profiles": [], - "name": "\ue020HookedMedusa32", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 12:50:36", - "registerOn": 1670333187.4803321, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333187.4803326, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333187.4803436, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333187.4803443, - "lastIP": "dvva{va}`~zh", - "deviceUUID": "57ae5b4a78152705e5cbc7cb57dcb014008dd7ba" - }, - "pb-IF4HVFFTUg==": { - "display_string": [ - "\ue020OutrightPeriphery10" - ], - "profiles": [], - "name": "\ue020OutrightPeriphery10", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-25 11:59:04", - "registerOn": 1670333237.9251213, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333237.925122, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333237.92513, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333237.925131, - "lastIP": "a\u007fn~}heajdwva}n", - "deviceUUID": "f2f4e5048eec62c921cdc6119b71af1d538ad371" - }, - "pb-IF4BVUYgMQ==": { - "display_string": [ - "\ue063SUSMITH200" - ], - "profiles": [], - "name": "\ue063SUSMITH200", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-22 19:44:07", - "registerOn": 1670333267.7639234, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333267.7639236, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333267.7639318, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670333868.7223806, - "lastIP": "a~o~}mbaifvvby", - "deviceUUID": "a34a2bcb41c18c99c907317de924de598298d7e1" - }, - "pb-IF5SU1E4Fg==": { - "display_string": [ - "\ue063investiga2" - ], - "profiles": [], - "name": "\ue063investiga2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 21:34:33", - "registerOn": 1670333271.7683048, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333271.7683058, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333271.7683146, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333271.7683156, - "lastIP": "a\u007fk~~nfajdzvayl", - "deviceUUID": "e73b9d9e77c0462f26fd2508be62d270a65190d3" - }, - "pb-IF5WU0UEUw==": { - "display_string": [ - "\ue020parzivl2071" - ], - "profiles": [], - "name": "\ue020parzivl2071", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-24 16:25:15", - "registerOn": 1670333290.855211, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333290.8552115, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333290.85522, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333290.855221, - "lastIP": "d~vh~vb~j~|k", - "deviceUUID": "b364b583d0d15425cf0114e62e74cbc32192ada7" - }, - "pb-IF4oU0oSHw==": { - "display_string": [ - "\ue020shreemanlegend13", - "\ue030Android63823661" - ], - "profiles": [], - "name": "\ue030Android63823661", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 14:00:25", - "registerOn": 1670333388.2180035, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333388.218004, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333388.2180114, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333388.2180123, - "lastIP": "a~o~va~}mbajcz", - "deviceUUID": "a07cd99cd38413a9c95521ab07afa1c96a7d8920" - }, - "pb-IF4JU08BXQ==": { - "display_string": [ - "\ue063Inadvisab7" - ], - "profiles": [], - "name": "\ue063Inadvisab7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 16:49:23", - "registerOn": 1670333617.0993772, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333617.0993779, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333617.0993865, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333617.0993874, - "lastIP": "azo~{i~}maai`w", - "deviceUUID": "7ae398541549661cbf000e0245d455ae820a932d" - }, - "pb-IF4dUFk_": { - "display_string": [ - "\ue020Devil77181908" - ], - "profiles": [], - "name": "\ue020Devil77181908", - "isBan": false, - "isMuted": false, - "accountAge": "2017-10-12 15:42:48", - "registerOn": 1670333620.9742932, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333620.9742937, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670333657.3684678, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333620.9743032, - "lastIP": "azo~|j~~jaaicw", - "deviceUUID": "6aa9e6c979af11b55aae601f6c77eba59c21cee4", - "cMsgCount": 0, - "lastMsgTime": 1670333657.368405, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4UU3FYVg==": { - "display_string": [ - "\ue063hck3rr" - ], - "profiles": [], - "name": "\ue063hck3rr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-28 01:29:59", - "registerOn": 1670333627.037062, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333627.0370624, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333627.0370715, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670335707.191473, - "lastIP": "dvvcxvb~l~}o", - "deviceUUID": "a5d31e88f643d9948539aabe2079c0f14763d9e0" - }, - "pb-IF5dUhkxHw==": { - "display_string": [ - "\ue063UniversalC" - ], - "profiles": [], - "name": "\ue063UniversalC", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-06 19:50:40", - "registerOn": 1670333664.5985448, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333664.5985456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333664.598555, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333664.598556, - "lastIP": "aakiaohaia~", - "deviceUUID": "d841f60ff92203a545f8c49d937efac6da72d9f4" - }, - "pb-IF4JU0U_Ug==": { - "display_string": [ - "\ue063EdwinSajiJ", - "\ue030Android59971496" - ], - "profiles": [], - "name": "\ue063EdwinSajiJ", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-04 11:22:32", - "registerOn": 1670333854.9841914, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333854.9841924, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670333979.986045, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670333921.099636, - "lastIP": "dvvazvb~j~|l", - "deviceUUID": "2c0f72b8c3fd322251462ef42a6bc69f54e2dbde", - "cMsgCount": 0, - "lastMsgTime": 1670333979.9860039, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4uU2UqLQ==": { - "display_string": [ - "\ue030Android61269388" - ], - "profiles": [], - "name": "\ue030Android61269388", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-16 13:52:50", - "registerOn": 1670333876.102998, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333876.1029985, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333876.1030076, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333876.1030083, - "lastIP": "a}j~~`baid}vh\u007f", - "deviceUUID": "\u0015\u0003ZXQ\u0010VU\u0003U@\u0005\bY" - }, - "pb-IF4hU25cAg==": { - "display_string": [ - "\ue020DireImpetus33" - ], - "profiles": [], - "name": "\ue020DireImpetus33", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-21 18:03:22", - "registerOn": 1670333919.4382336, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333919.4382339, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333919.4382434, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333919.438244, - "lastIP": "azo~{a~wh~}hd", - "deviceUUID": "96711aae4bec4c80c8b800905cc0510b560eb299" - }, - "pb-IF5RUkgSAQ==": { - "display_string": [ - "\ue063EditorialU" - ], - "profiles": [], - "name": "\ue063EditorialU", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-05 20:01:19", - "registerOn": 1670333999.9390771, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670333999.9390779, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670333999.939087, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670333999.9390876, - "lastIP": "dvvc{vg|vbzm", - "deviceUUID": "c016bfa678a90b141b92dd5bfbf0291f1c1c7ccb" - }, - "pb-IF4PUkogDg==": { - "display_string": [ - "\ue020HatefulAnnoyance26" - ], - "profiles": [], - "name": "\ue020HatefulAnnoyance26", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-20 18:57:48", - "registerOn": 1670334036.0867946, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334036.086795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334036.086804, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334036.086805, - "lastIP": "dvvc{vayo~}ii", - "deviceUUID": "465d806febeff2c167652cf44704b0b47f659f65" - }, - "pb-IF5WU04bVw==": { - "display_string": [ - "\ue030Android63870775" - ], - "profiles": [], - "name": "\ue030Android63870775", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 19:31:44", - "registerOn": 1670334066.3882244, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334066.3882248, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334066.3883545, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334066.3883557, - "lastIP": "a~k~z`~{n~~ai", - "deviceUUID": "220de134e8d86144dbf3f05c2acd9a8576e8e0b4" - }, - "pb-IF4eU0MjFw==": { - "display_string": [ - "\ue030Android63415043" - ], - "profiles": [], - "name": "\ue030Android63415043", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-19 17:52:12", - "registerOn": 1670334108.6975565, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334108.6975567, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334108.6975648, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334108.6975656, - "lastIP": "azj~zo~}iaaibz", - "deviceUUID": "55da7b029c7f1a1eb680330238ad360945e811c6" - }, - "pb-IF4vVWoPHQ==": { - "display_string": [ - "\ue020BrazenCoast73326" - ], - "profiles": [], - "name": "\ue020BrazenCoast73326", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-16 06:02:23", - "registerOn": 1670334366.3915417, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334366.3915422, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334366.3915513, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334366.3915522, - "lastIP": "a|n~}jhaig|vb{h", - "deviceUUID": "7568ce3c82f8371db8487bbbeae1727a9d8e60a8" - }, - "pb-IF4eVXJZXQ==": { - "display_string": [ - "\ue020PlaidSkipper56572", - "\ue030Android24905371" - ], - "profiles": [], - "name": "\ue020PlaidSkipper56572", - "isBan": false, - "isMuted": false, - "accountAge": "2021-01-07 06:32:55", - "registerOn": 1670334534.0828547, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334534.082855, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334534.082862, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334534.0828626, - "lastIP": "azo~zi~~lfaae", - "deviceUUID": "33dd1e4a95326667853a0e4f839ad82934e76726" - }, - "pb-IF4IVGUqDA==": { - "display_string": [ - "\ue020shagun2611" - ], - "profiles": [], - "name": "\ue020shagun2611", - "isBan": false, - "isMuted": false, - "accountAge": "2019-09-07 17:22:33", - "registerOn": 1670334564.2136989, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334564.2136996, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334564.2137084, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334564.2137094, - "lastIP": "aya~~liajb{vay`", - "deviceUUID": "33ae041f4a865e3ae0d9533f4c3c429d435a1846" - }, - "pb-IF5UU0cuMw==": { - "display_string": [ - "\ue030Android63571326" - ], - "profiles": [], - "name": "\ue030Android63571326", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 17:01:32", - "registerOn": 1670334669.617842, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334669.6178422, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334669.6178503, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334669.6178517, - "lastIP": "a\u007fn~~aeaicala", - "deviceUUID": "\u0015" - }, - "pb-IF41U3U4MQ==": { - "display_string": [ - "\ue020MunificientRoad23" - ], - "profiles": [], - "name": "\ue020MunificientRoad23", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-17 17:51:39", - "registerOn": 1670334690.017025, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334690.0170255, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334690.0170345, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334690.0170352, - "lastIP": "azo~{n~}hiaiay", - "deviceUUID": "895295b53c8554f7da8606666f53d1a1d3c98486" - }, - "pb-IF4sU08vCQ==": { - "display_string": [ - "\ue063FluffyPres" - ], - "profiles": [], - "name": "\ue063FluffyPres", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 19:14:38", - "registerOn": 1670334705.0176127, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334705.0176134, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334705.0176222, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334705.017623, - "lastIP": "avo~~n`aii~va~n", - "deviceUUID": "c971b18a214f8abfd075ccbb11569ef3cd781474" - }, - "pb-IF40U0gqUw==": { - "display_string": [ - "\ue020indiankingsman11" - ], - "profiles": [], - "name": "\ue020indiankingsman11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-21 15:26:49", - "registerOn": 1670334779.3070962, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334779.3070967, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334779.3071053, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670336131.1290224, - "lastIP": "a~o~va~z`~~a`", - "deviceUUID": "730d594ea1e5f33d2fb7a0ad6df4aedba7d68b6f" - }, - "pb-JiNJARFcUUpFW1pJEEJYXVFEGUBdQVdD": { - "display_string": [ - "\ue020LunaticDynamo4823", - "\ue030Android11633589" - ], - "profiles": [], - "name": "\ue020LunaticDynamo4823", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-15 10:20:44", - "registerOn": 1670334868.9082491, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334868.9082496, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334868.9082575, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334868.9082587, - "lastIP": "azo~{l~~nhaicy", - "deviceUUID": "12a1a8a9bafa33dcdf99e47331601cab76d18a6d" - }, - "pb-IF4FHxgY": { - "display_string": [ - "\ue063PoserSword", - "\ue030Android22922477" - ], - "profiles": [], - "name": "\ue063PoserSword", - "isBan": false, - "isMuted": false, - "accountAge": "2018-06-23 17:33:29", - "registerOn": 1670334892.9619994, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670334892.9620004, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670334892.9620087, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670334892.9620097, - "lastIP": "a\u007fk~~mgao`aje{", - "deviceUUID": "b2f597355fb4cff2dd6d731ea1b4bbdfd0db8f24" - }, - "pb-IF43UkIeEA==": { - "display_string": [ - "\ue030Android57703578" - ], - "profiles": [], - "name": "\ue030Android57703578", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-23 14:15:31", - "registerOn": 1670335040.8361874, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670335040.836188, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335040.8361974, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335040.8361983, - "lastIP": "dzva}h~~jcak", - "deviceUUID": "5eaa2179579df11349e60aba83c7ebd96066fccf" - }, - "pb-IF4-U0heCw==": { - "display_string": [ - "\ue020ArcticStatus25", - "\ue030Android63255168" - ], - "profiles": [], - "name": "\ue020ArcticStatus25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-20 17:00:28", - "registerOn": 1670335235.8373928, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670335235.8373938, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343596.6410909, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343596.6410923, - "lastIP": "a\u007fn~}ifaia~vaz`", - "deviceUUID": "338200d6d437250d44ad3a68eb1f01761bd4cdd3" - }, - "pb-IF4wU0RfVQ==": { - "display_string": [ - "\ue020PredictiveCucumber38" - ], - "profiles": [], - "name": "\ue020PredictiveCucumber38", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-23 12:22:38", - "registerOn": 1670335643.2704384, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670335643.270439, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335643.2704487, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335643.2704494, - "lastIP": "azo~zi~~aeaje~", - "deviceUUID": "405405526a9fefa8398f6aff6f020b9f305aeb23" - }, - "pb-IF4LU005HA==": { - "display_string": [ - "\ue063Irascible6", - "\ue030Android61902421" - ], - "profiles": [], - "name": "\ue063Irascible6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 23:21:37", - "registerOn": 1670335792.2253563, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670335792.2253568, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335792.2254555, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335792.2254567, - "lastIP": "azo~zi~~agaif\u007f", - "deviceUUID": "d85050b9fe98d3fa76b6db9aa34aa38917637eb9" - }, - "pb-IF4pU1A-IQ==": { - "display_string": [ - "\ue030Android63998956" - ], - "profiles": [], - "name": "\ue030Android63998956", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 19:38:44", - "registerOn": 1670335795.2236857, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670335795.2236862, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335795.2236958, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335795.2236967, - "lastIP": "axm~~ofao`aje", - "deviceUUID": "63a4117a1d0e28553ff0f2049cb693b2f5579ca7" - }, - "pb-IF4dU3dZHw==": { - "display_string": [ - "\ue030Android61429045", - "\ue030PC600983", - "\ue030PC601332" - ], - "profiles": [], - "name": "\ue030PC601332", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-25 17:41:33", - "registerOn": 1670335901.5617974, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670335901.5617979, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670335901.5618067, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670335901.5618074, - "lastIP": "d~vixva|`~}j", - "deviceUUID": "3baabc5b69e29039e3d9ac513191ad14d3bac0f8" - }, - "pb-IF4CU0gAMg==": { - "display_string": [ - "\ue020TrivialNeighbor48" - ], - "profiles": [], - "name": "\ue020TrivialNeighbor48", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-22 20:26:31", - "registerOn": 1670336321.1252081, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670336321.1252089, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336321.1252162, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336321.1252172, - "lastIP": "a|o~vo~~jca`b", - "deviceUUID": "0af2075be249f52b689b4f3ee6b7473d441e630e" - }, - "pb-IF4jVRMmUQ==": { - "display_string": [ - "\ue020nehelspm" - ], - "profiles": [], - "name": "\ue020nehelspm", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-21 19:47:41", - "registerOn": 1670336385.4933307, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670336385.4933314, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336385.4933393, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336385.4933407, - "lastIP": "azo~{m~}mdaja\u007f", - "deviceUUID": "8fa6b902b07824817dff2d82dc8ea2c38cc25e89" - }, - "pb-IF4BUxlSNg==": { - "display_string": [ - "\ue020ColTPaV", - "\ue030Android45054690" - ], - "profiles": [], - "name": "\ue020ColTPaV", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-30 20:22:56", - "registerOn": 1670336708.1064131, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670336708.1064138, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336708.1064236, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336708.1064243, - "lastIP": "azj~zo~}jhakh", - "deviceUUID": "\u0015\u0004Y\u0004V\u0017PZRVGQ\tXXF\u0002[YWFP_SSM" - }, - "pb-IF5dU08yUw==": { - "display_string": [ - "\ue030Android63906743" - ], - "profiles": [], - "name": "\ue030Android63906743", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-21 14:50:08", - "registerOn": 1670336783.0353587, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670336783.035359, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343297.572366, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343297.5723677, - "lastIP": "azo~{a~~neaj`y", - "deviceUUID": "670b7de8c0bbb117276732ff253cb69f094cf094" - }, - "pb-IF4hU0ooFw==": { - "display_string": [ - "\ue020newnoobgamingtamil", - "\ue030Android63487611" - ], - "profiles": [], - "name": "\ue020newnoobgamingtamil", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 14:52:45", - "registerOn": 1670336829.536829, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670336829.5368292, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336829.5368369, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336829.5368376, - "lastIP": "a\u007fn~~aha`hani", - "deviceUUID": "494de84801a36a34d38566db4eade578056955d9" - }, - "pb-IF4sVWoIIw==": { - "display_string": [ - "\ue020OutrageousLecturer43", - "\ue020WindowlessCovenant52", - "\ue063Anaerobic2" - ], - "profiles": [], - "name": "\ue063Anaerobic2", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-20 09:46:29", - "registerOn": 1670336949.7028337, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670336949.7028341, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670336949.7028413, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670336949.702842, - "lastIP": "a\u007fn~}ifaibwva~k", - "deviceUUID": "90a15f940e605fcfa9ccceebb83257d10177072a" - }, - "pb-IF4dU08xBg==": { - "display_string": [ - "\ue063haotruong1" - ], - "profiles": [], - "name": "\ue063haotruong1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 18:23:01", - "registerOn": 1670337314.6806595, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670337314.6806602, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337314.6806679, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337314.6806686, - "lastIP": "d}va~j~vh~~m", - "deviceUUID": "36bd7f1cd7da908afa464ede50a12cd76c024085" - }, - "pb-IF4BVWIzDg==": { - "display_string": [ - "\ue020CoastalToad55268" - ], - "profiles": [], - "name": "\ue020CoastalToad55268", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-18 11:09:57", - "registerOn": 1670337351.798301, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670337351.7983017, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337351.798312, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337351.7983127, - "lastIP": "b\u007fn~wl~}kbalg", - "deviceUUID": "d83443d4d0c7c043e32c1bcc335ba32c9aac11c8" - }, - "pb-IF42U08YIg==": { - "display_string": [ - "\ue063NoName56287c" - ], - "profiles": [], - "name": "\ue063NoName56287c", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 19:00:11", - "registerOn": 1670337392.2187831, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670337392.2187839, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337392.218791, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337392.218792, - "lastIP": "b\u007fk~~nhaje}ve{", - "deviceUUID": "5532d5289235c840436dbdf9997365cd491e8228" - }, - "pb-IF43VWMNFw==": { - "display_string": [ - "\ue063SeriousEle" - ], - "profiles": [], - "name": "\ue063SeriousEle", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-23 12:53:46", - "registerOn": 1670337437.1022358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670337437.1022365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337437.1022453, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337437.102246, - "lastIP": "a\u007fn~}i`aidvvby", - "deviceUUID": "7c2d70edd8e87adb184d586d4c7d66b60a3ad7ea" - }, - "pb-IF4HVVgjUA==": { - "display_string": [ - "\ue020ChangeableEagle25", - "\ue030Android53419150" - ], - "profiles": [], - "name": "\ue020ChangeableEagle25", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-20 09:56:08", - "registerOn": 1670337459.2056828, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670337459.2056835, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337459.205692, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337459.205693, - "lastIP": "a\u007fn~}hfaja}va{`", - "deviceUUID": "db96d612e64506e637eeb35d408f0b302287b347" - }, - "pb-IF4cU2UJCA==": { - "display_string": [ - "\ue020Raghav2655" - ], - "profiles": [], - "name": "\ue020Raghav2655", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-17 09:58:07", - "registerOn": 1670337881.6507773, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670337881.6507778, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337881.650785, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670347834.8336236, - "lastIP": "a\u007fk~~hdaih~vdx", - "deviceUUID": "\u0015S[SUL\u0002Z", - "cMsgCount": 0, - "lastMsgTime": 1670348848.5188951, - "lastMsg": "end", - "cSameMsg": 0 - }, - "pb-IF5cUkoGBA==": { - "display_string": [ - "\ue063BestAdmire" - ], - "profiles": [], - "name": "\ue063BestAdmire", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-14 09:14:02", - "registerOn": 1670337944.8587286, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670337944.8587291, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337944.8587377, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337944.8587384, - "lastIP": "a~o~}jdajb|vi|", - "deviceUUID": "123381499a1bcf022970415e387b5bb16a6a9999" - }, - "pb-IF4AU2seNQ==": { - "display_string": [ - "\ue063DrierAcqui" - ], - "profiles": [], - "name": "\ue063DrierAcqui", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-09 22:32:08", - "registerOn": 1670337963.922187, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670337963.9221876, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337963.9222205, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337963.9222217, - "lastIP": "dvvc}vb|o~~af", - "deviceUUID": "034f19683dc12fe7cb1cf8e994dd456396cf310e" - }, - "pb-IF4FUxcfDw==": { - "display_string": [ - "\ue020SweetestFirm23" - ], - "profiles": [], - "name": "\ue020SweetestFirm23", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-26 14:31:34", - "registerOn": 1670337995.0700502, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670337995.070051, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670337995.070059, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670337995.07006, - "lastIP": "bxvf}vhwvhw", - "deviceUUID": "e4463844583c18e39521a0132ca04ea3d6c4c7ee" - }, - "pb-IF41V1oeMg==": { - "display_string": [ - "\ue063StoneGroce" - ], - "profiles": [], - "name": "\ue063StoneGroce", - "isBan": false, - "isMuted": false, - "accountAge": "2019-06-10 20:53:59", - "registerOn": 1670338073.3674004, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338073.367401, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338073.3674088, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338073.3674097, - "lastIP": "a~m~vn~}iiajby", - "deviceUUID": "34811af326bc992813c5e7803c99297e1ff02fba" - }, - "pb-IF4nU0MaVw==": { - "display_string": [ - "\ue020ArguableDisregard12" - ], - "profiles": [], - "name": "\ue020ArguableDisregard12", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-22 10:45:17", - "registerOn": 1670338174.5984874, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338174.5984879, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338174.5984952, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338174.598496, - "lastIP": "b}k~~`aaja}vb|k", - "deviceUUID": "cffe3d2e2ba02a4be01012aa870818a8039d37bd" - }, - "pb-IF4sU0cpKQ==": { - "display_string": [ - "\ue063PotentReco" - ], - "profiles": [], - "name": "\ue063PotentReco", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-18 20:37:55", - "registerOn": 1670338191.9282258, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338191.9282265, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338191.928236, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338191.9282367, - "lastIP": "azo~{a~yn~w`", - "deviceUUID": "88b8ed005dd447372d7da1ca0177465ba4a933e3" - }, - "pb-IF4mU2gMJg==": { - "display_string": [ - "\ue063DefiantFro" - ], - "profiles": [], - "name": "\ue063DefiantFro", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-29 18:09:39", - "registerOn": 1670338358.3375046, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338358.337505, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338358.3375123, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338358.337513, - "lastIP": "dvvc{va{j~vn", - "deviceUUID": "cf26a8c2724a1fde863bb7773e1500b643c8aa13" - }, - "pb-IF4SV2xaJA==": { - "display_string": [ - "\ue063OddScimita" - ], - "profiles": [], - "name": "\ue063OddScimita", - "isBan": false, - "isMuted": false, - "accountAge": "2018-11-14 12:23:24", - "registerOn": 1670338383.3665884, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338383.366589, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338383.3665981, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338383.366599, - "lastIP": "azo~|k~vl~}jf", - "deviceUUID": "1e766c1e79ee7ad16732ddf9393c076fad286e79" - }, - "pb-IF5cVXcFXQ==": { - "display_string": [ - "\ue030Android49994032" - ], - "profiles": [], - "name": "\ue030Android49994032", - "isBan": false, - "isMuted": false, - "accountAge": "2021-02-02 10:38:56", - "registerOn": 1670338396.4084299, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338396.4084303, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338396.4084375, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338396.4084382, - "lastIP": "a\u007fn~}icaje\u007fvhw", - "deviceUUID": "\u0015TUQWCQ\\VXFV\u000bXTFW\\SSERYYWFW" - }, - "pb-IF41VWEHFA==": { - "display_string": [ - "\ue020Tejaswalkoli2411", - "\ue030Android46338732" - ], - "profiles": [], - "name": "\ue020Tejaswalkoli2411", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-10 19:56:55", - "registerOn": 1670338516.8552022, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338516.855203, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338516.8552098, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338516.8552108, - "lastIP": "a\u007fk~~ofaihxva~o", - "deviceUUID": "3a002c8af576c1781c1f3eee5177b375717579fd", - "cMsgCount": 0, - "lastMsgTime": 1670339181.100443, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF43U3QvVg==": { - "display_string": [ - "\ue030Android62603660" - ], - "profiles": [], - "name": "\ue030Android62603660", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-11 16:08:13", - "registerOn": 1670338532.8928812, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338532.8928816, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338532.8928893, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338532.8928902, - "lastIP": "a~m~vn~xo~~mf", - "deviceUUID": "740c5a2526a0e4fe2c86455ff40daa341566fc2d" - }, - "pb-IF4KU3ktMQ==": { - "display_string": [ - "\ue020NicerChant21" - ], - "profiles": [], - "name": "\ue020NicerChant21", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-01 11:01:36", - "registerOn": 1670338601.1026573, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338601.1026576, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338601.102665, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338601.1026657, - "lastIP": "a\u007fn~xn~xh~~l`", - "deviceUUID": "b98cebeb15f3ce0fb833d89b28f5e8fa699b019d" - }, - "pb-IF4rEGIK": { - "display_string": [ - "\ue063Victorio13" - ], - "profiles": [], - "name": "\ue063Victorio13", - "isBan": false, - "isMuted": false, - "accountAge": "2018-06-08 19:31:38", - "registerOn": 1670338672.6203015, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338672.6203027, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338672.620312, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338672.6203132, - "lastIP": "a}j~~naaogaii}", - "deviceUUID": "588576056c4b3321055e7b6c1f8a385812d00a2a" - }, - "pb-IF4PVE4cMg==": { - "display_string": [ - "\ue063Karthick" - ], - "profiles": [], - "name": "\ue063Karthick", - "isBan": false, - "isMuted": false, - "accountAge": "2020-04-12 00:03:46", - "registerOn": 1670338751.6050045, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338751.605005, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338751.6050127, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670342963.3881876, - "lastIP": "azo~{n~~hiajd}", - "deviceUUID": "31be83d7d83ef8e1f50101132f4a1b94eeddd7d6" - }, - "pb-IF5dU0suLg==": { - "display_string": [ - "\ue020DARKsoulNiNJA01" - ], - "profiles": [], - "name": "\ue020DARKsoulNiNJA01", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-27 19:25:12", - "registerOn": 1670338810.8044646, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338810.804465, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338810.804477, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670340957.2357497, - "lastIP": "dxviaii\u007fvg\u007f", - "deviceUUID": "75fe8b211b78d8ffd7f087adb42d0b2dfd41ab0a" - }, - "pb-IF5WU0RSKw==": { - "display_string": [ - "\ue030Android63353151" - ], - "profiles": [], - "name": "\ue030Android63353151", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-16 22:03:19", - "registerOn": 1670338818.8090746, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338818.809075, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338818.809088, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338818.809089, - "lastIP": "aw`~~iia`~~aa", - "deviceUUID": "e4a7a659d2f4eb2ae30c8f1601b62aebc89cb025" - }, - "pb-IF4RU24pIA==": { - "display_string": [ - "\ue020FrouFrouJay10625", - "\ue020ROLEXsir1111", - "\ue020ROLEXsir7545", - "\ue030Android62004049", - "\ue030Android63999090" - ], - "profiles": [], - "name": "\ue020ROLEXsir1111", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-17 09:42:33", - "registerOn": 1670338903.1342645, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670338903.1342654, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670338903.1342762, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670338903.1342773, - "lastIP": "a\u007fn~~aealeajaw", - "deviceUUID": "f9aa7100037cfe4c18449bf2fdaa6d2d9a7f62e6" - }, - "pb-IF42U2cHJA==": { - "display_string": [ - "\ue020DeepEnthusiasm48" - ], - "profiles": [], - "name": "\ue020DeepEnthusiasm48", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-25 15:04:18", - "registerOn": 1670339004.4822853, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670339004.4822857, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339004.4822927, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339004.4822938, - "lastIP": "azo~{n~~hbaiav", - "deviceUUID": "e1ab4980420b007c9405ffbf9bfb37d22867e0f9" - }, - "pb-IF4FU0wyXQ==": { - "display_string": [ - "\ue020BrassDoctor94896" - ], - "profiles": [], - "name": "\ue020BrassDoctor94896", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-15 13:58:23", - "registerOn": 1670339261.3631678, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670339261.3631685, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339261.3631778, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339261.3631787, - "lastIP": "bxvf~va{o~~ka", - "deviceUUID": "b97780b949efbb7b37aa5852d2a96a1f710806e4" - }, - "pb-IF4CVUsiNA==": { - "display_string": [ - "\ue020SilverDearth2041" - ], - "profiles": [], - "name": "\ue020SilverDearth2041", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-18 18:24:12", - "registerOn": 1670339332.5988607, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670339332.5988615, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339332.5988727, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339332.5988736, - "lastIP": "a\u007fn~~ahajiaia{", - "deviceUUID": "4607a8256f80ac9a1b91fd085fe1ff52c736f07d" - }, - "pb-IF4lU00PEA==": { - "display_string": [ - "\ue063MrsSmoothy", - "\ue030Android62190140" - ], - "profiles": [], - "name": "\ue030Android62190140", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 21:07:55", - "registerOn": 1670339417.16045, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670339417.1604505, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339417.160459, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670340103.1113822, - "lastIP": "dvvd|vazm~~hf", - "deviceUUID": "014b00976f2c8cd83b1cb0f107296632148161af", - "cMsgCount": 0, - "lastMsgTime": 1670340758.6122563, - "lastMsg": "lol", - "cSameMsg": 0 - }, - "pb-IF4AU0IoCA==": { - "display_string": [ - "\ue020WeakerResonance54", - "\ue030Android59086177" - ], - "profiles": [], - "name": "\ue020WeakerResonance54", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-16 12:05:03", - "registerOn": 1670339498.244529, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670339498.2445297, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339498.2445405, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339498.2445414, - "lastIP": "azo~{m~}m`aja", - "deviceUUID": "7ac9de63f2e4630e30077ff336bbc5213b0a5362", - "cMsgCount": 0, - "lastMsgTime": 1670339820.7957923, - "lastMsg": "hi", - "cSameMsg": 0 - }, - "pb-IF5QVGZdEA==": { - "display_string": [ - "\ue020Vishnuly" - ], - "profiles": [], - "name": "\ue020Vishnuly", - "isBan": false, - "isMuted": false, - "accountAge": "2019-08-26 16:51:09", - "registerOn": 1670339805.4354608, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670339805.4354613, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339805.4354699, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339805.4354708, - "lastIP": "axi~xn~wh~}jb", - "deviceUUID": "2366c4c56c737a83e134081d5761ac9652a5c7e4" - }, - "pb-IF4WU1AvJw==": { - "display_string": [ - "\ue063PineRingBe" - ], - "profiles": [], - "name": "\ue063PineRingBe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 20:22:29", - "registerOn": 1670339875.643309, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670339875.6433096, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339875.6433172, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339875.6433182, - "lastIP": "d}va~`~vvawi", - "deviceUUID": "0b1e768ca51b525f4283e9673debc2a4722155fa" - }, - "pb-IF4GVWVYIA==": { - "display_string": [ - "\ue030Android47387591" - ], - "profiles": [], - "name": "\ue030Android47387591", - "isBan": false, - "isMuted": false, - "accountAge": "2020-09-30 06:24:28", - "registerOn": 1670339888.738607, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670339888.7386074, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339888.7386158, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339888.7386165, - "lastIP": "d|vbzh~}h`aob", - "deviceUUID": "\u0015S\tR" - }, - "pb-IF4mUlEICw==": { - "display_string": [ - "\ue063AgreedMono", - "\ue030Android56204072" - ], - "profiles": [], - "name": "\ue063AgreedMono", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-22 20:11:55", - "registerOn": 1670339908.7656593, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670339908.7656598, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339908.7656682, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670339908.765669, - "lastIP": "a}j~~ofaiivvg}", - "deviceUUID": "130162b7627289d5d475ac0031d4adf2e4afdf0b" - }, - "pb-IF4VVXAqNQ==": { - "display_string": [ - "\ue063Keval1305" - ], - "profiles": [], - "name": "\ue063Keval1305", - "isBan": false, - "isMuted": false, - "accountAge": "2020-12-30 17:36:32", - "registerOn": 1670339992.0592542, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670339992.0592546, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670339992.0592635, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670340462.479723, - "lastIP": "a\u007fk~}l`aj`vvb~", - "deviceUUID": "884483926648560270c129644fea217da8da8a1e" - }, - "pb-IF4hU04sMQ==": { - "display_string": [ - "\ue030Android63964858" - ], - "profiles": [], - "name": "\ue030Android63964858", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-01 20:56:55", - "registerOn": 1670340082.4017909, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340082.4017918, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340082.4018004, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340082.4018016, - "lastIP": "dxvbvviyviz", - "deviceUUID": "9248172dd0a316085e054c444c104bdc74083678" - }, - "pb-IF5VU3oeKQ==": { - "display_string": [ - "\ue020RoutineAuthorship51" - ], - "profiles": [], - "name": "\ue020RoutineAuthorship51", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-30 21:15:13", - "registerOn": 1670340135.634061, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340135.6340616, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340135.6340702, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340135.6340716, - "lastIP": "d}va\u007fl~~jiakf", - "deviceUUID": "f1940795b9a141a0fc87b46a5b2db47969498894" - }, - "pb-IF4VVWc4Eg==": { - "display_string": [ - "\ue063Recumbent2" - ], - "profiles": [], - "name": "\ue063Recumbent2", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-23 22:54:11", - "registerOn": 1670340231.8734145, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340231.8734152, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340231.8734245, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340231.8734255, - "lastIP": "cxva~k~~nhaib}", - "deviceUUID": "4c215457a799c9a6f39d602a84c96fdf14c58ba0" - }, - "pb-IF4mVWsmJA==": { - "display_string": [ - "\ue030Android48419571" - ], - "profiles": [], - "name": "\ue030Android48419571", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-21 19:19:29", - "registerOn": 1670340392.8182867, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340392.8182871, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340392.8182952, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670345210.399503, - "lastIP": "a\u007fn~}jba`~~nh", - "deviceUUID": "0e3cd647d64c59226bd281c2906b3f173281e5a1" - }, - "pb-IF4HU0xcPA==": { - "display_string": [ - "\ue063StingingSq", - "\ue030Android46802080" - ], - "profiles": [], - "name": "\ue063StingingSq", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-08 10:20:20", - "registerOn": 1670340393.5914392, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340393.59144, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340393.5914462, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340393.5914474, - "lastIP": "a\u007fk~~neaifxvfy", - "deviceUUID": "5293cec39d0c13d83c26c7842e5258217db4e718" - }, - "pb-IF4-U1BaKw==": { - "display_string": [ - "\ue063RustyJayha" - ], - "profiles": [], - "name": "\ue063RustyJayha", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 20:52:27", - "registerOn": 1670340401.6530092, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340401.65301, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340401.6530197, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340401.6530206, - "lastIP": "dvvc}va{l~~hg", - "deviceUUID": "540e172b71c57035d68ad098bc6e97906fe134d4" - }, - "pb-IF4RU3gIUw==": { - "display_string": [ - "\ue030Android62985132" - ], - "profiles": [], - "name": "\ue030Android62985132", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-28 19:13:26", - "registerOn": 1670340575.5174456, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340575.5174465, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340575.5174532, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340575.5174546, - "lastIP": "aakhaif{vb~k", - "deviceUUID": "\u0015RY\u0003YGRXTT@\u0004]WV\u0016T_YYMVZQQM" - }, - "pb-IF5XU2QgJw==": { - "display_string": [ - "\ue063DerisiveBr" - ], - "profiles": [], - "name": "\ue063DerisiveBr", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-05 12:26:34", - "registerOn": 1670340649.4537358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340649.4537368, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340649.453746, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340649.4537473, - "lastIP": "azo~{i~~lbaib\u007f", - "deviceUUID": "425c73f8ee2dfebe0c802d314c63d59cd9860404" - }, - "pb-IF4jU0hTBg==": { - "display_string": [ - "\ue030Android63680318" - ], - "profiles": [], - "name": "\ue030Android63680318", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-16 21:42:01", - "registerOn": 1670340743.038409, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340743.0384095, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340743.038421, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340743.0384219, - "lastIP": "a\u007fk~~abaohaoi", - "deviceUUID": "fab077ff5060ade382d2129d38653ef0b6287744" - }, - "pb-IF4hU04fVg==": { - "display_string": [ - "\ue030Android63990451" - ], - "profiles": [], - "name": "\ue030Android63990451", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 18:47:55", - "registerOn": 1670340814.0353515, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340814.0353522, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340814.0353603, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340814.0353618, - "lastIP": "a\u007fj~~`eai`}vayl", - "deviceUUID": "f106a0a8ff17a421bd61b98fd82a7ebdc4f6de41" - }, - "pb-IF4FVFUxVw==": { - "display_string": [ - "\ue020MysteriousVehicle16" - ], - "profiles": [], - "name": "\ue020MysteriousVehicle16", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-28 10:43:04", - "registerOn": 1670340871.2440581, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340871.2440586, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340871.2440655, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340871.2440662, - "lastIP": "a~m~vn~}igaah", - "deviceUUID": "383cd4e472c5f366165e82a94c80499154a5b932", - "cMsgCount": 0, - "lastMsgTime": 1670340881.8275363, - "lastMsg": "are tej bcs super smash me khel.", - "cSameMsg": 0 - }, - "pb-IF5WU0kZJw==": { - "display_string": [ - "\ue030Android63692742" - ], - "profiles": [], - "name": "\ue030Android63692742", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-18 21:33:11", - "registerOn": 1670340919.4476616, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670340919.4476624, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670340919.4476717, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670340919.4476726, - "lastIP": "dvvc{va~j~xi", - "deviceUUID": "4aedbcbff954be0702eaa7e85f70cd1b9194787d" - }, - "pb-IF4-UhkEAA==": { - "display_string": [ - "\ue063Northwes16", - "\ue030Android54761413" - ], - "profiles": [], - "name": "\ue063Northwes16", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-18 14:35:46", - "registerOn": 1670341023.867528, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670341023.8675284, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341023.8675356, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341023.8675363, - "lastIP": "b\u007fj~~lbaia|vbzj", - "deviceUUID": "ac5532438197adf0f54a40194895399ae4fe2fad" - }, - "pb-IF4qU2gzMA==": { - "display_string": [ - "\ue063amanpro1", - "\ue030Android61522201" - ], - "profiles": [], - "name": "\ue063amanpro1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-26 23:03:26", - "registerOn": 1670341038.9008214, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670341038.900822, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341038.9009116, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341038.9009125, - "lastIP": "dvvcxvcwva~m", - "deviceUUID": "6fba44493e03c45d45ca11b4dcf21d55283683c4", - "cMsgCount": 0, - "lastMsgTime": 1670341128.586691, - "lastMsg": "\ud83d\ude0e", - "cSameMsg": 0 - }, - "pb-IF4TUxAGNw==": { - "display_string": [ - "\ue063Profliga11", - "\ue030Android47146220" - ], - "profiles": [], - "name": "\ue063Profliga11", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-27 18:27:02", - "registerOn": 1670341047.0774093, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670341047.0774097, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341047.0774188, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341047.0774195, - "lastIP": "bxvc{vb}va}a", - "deviceUUID": "ecdee885b76055fa7d4aa97f77322c870c315195" - }, - "pb-IF4RVRETAg==": { - "display_string": [ - "\ue063hulk151120" - ], - "profiles": [], - "name": "\ue063hulk151120", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-14 21:55:27", - "registerOn": 1670341088.0580056, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670341088.058006, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341088.0580142, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341088.0580149, - "lastIP": "dvvcyvavva|`", - "deviceUUID": "33d86b3ee7ec78b61d0cc44dcba3cf4689dacd00" - }, - "pb-IF4-U0soEg==": { - "display_string": [ - "\ue020MassiveCough58" - ], - "profiles": [], - "name": "\ue020MassiveCough58", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 19:42:24", - "registerOn": 1670341270.8808856, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670341270.880886, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341270.8808947, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341270.8808954, - "lastIP": "hzva{h~yviv", - "deviceUUID": "0e7bf450283c5265c6c14e6cf991621b733501ec" - }, - "pb-IF5SU3kADA==": { - "display_string": [ - "\ue030Android62953595" - ], - "profiles": [], - "name": "\ue030Android62953595", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 12:01:41", - "registerOn": 1670341388.1654115, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670341388.1654122, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341388.1654212, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341388.1654227, - "lastIP": "a\u007fn~~agalbaigz", - "deviceUUID": "4605bc63cf207e5fd34194bbbdd5b997ce99695b" - }, - "pb-IF4BUxUTFA==": { - "display_string": [ - "\ue020FoolhardyLizard21681" - ], - "profiles": [], - "name": "\ue020FoolhardyLizard21681", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-18 18:00:57", - "registerOn": 1670341472.438712, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670341472.4387124, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341472.4387205, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341472.4387212, - "lastIP": "azo~zi~~ndaj`", - "deviceUUID": "f1f947ae7604a0c4efb7ec3b6818d9068c99af72" - }, - "pb-IF4gU0QnEQ==": { - "display_string": [ - "\ue020CumbersomeMeadow46" - ], - "profiles": [], - "name": "\ue020CumbersomeMeadow46", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-28 14:51:38", - "registerOn": 1670341895.85768, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670341895.8576806, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341895.85769, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341895.857691, - "lastIP": "a~h~}jgameaiaw", - "deviceUUID": "7deff4a44cace92bf9d8612e46b0e2d4b6bdbae4" - }, - "pb-IF4hUk0xNg==": { - "display_string": [ - "\ue063SerratedSt" - ], - "profiles": [], - "name": "\ue063SerratedSt", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-08 12:41:43", - "registerOn": 1670341939.0488508, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670341939.0488513, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670341939.0488594, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670341939.04886, - "lastIP": "dvvc}va|i~{m", - "deviceUUID": "a9370f0a8775517cf51a1382c14b58685e499944" - }, - "pb-IF4GUhcxHA==": { - "display_string": [ - "\ue030Android54812141", - "\ue030Android54467269", - "\ue030Android54434099", - "\ue030Android54396539" - ], - "profiles": [], - "name": "\ue030Android54396539", - "isBan": false, - "isMuted": false, - "accountAge": "2021-09-04 08:43:39", - "registerOn": 1670342113.6011076, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670342113.6011083, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342113.6011176, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670342113.6011186, - "lastIP": "a|a~~ngaii|va", - "deviceUUID": "\u0015" - }, - "pb-IF4GU05ZKQ==": { - "display_string": [ - "\ue063BrickJeste" - ], - "profiles": [], - "name": "\ue063BrickJeste", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 19:58:56", - "registerOn": 1670342303.2682931, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670342303.2682936, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342303.2683027, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670342633.215056, - "lastIP": "azo~|j~}maaic\u007f", - "deviceUUID": "eff7bbe31328377f79e15983ab7aeb56b9511d5f" - }, - "pb-IF4TU04tXA==": { - "display_string": [ - "\ue030Android63923401" - ], - "profiles": [], - "name": "\ue030Android63923401", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-24 21:26:27", - "registerOn": 1670342338.5054343, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670342338.505435, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342338.5054433, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670342338.5054445, - "lastIP": "b\u007fi~~oeajd\u007fvb{", - "deviceUUID": "d63194a76f917af0d41abaa0eb9c434c7c5d6263" - }, - "pb-IF4yU0YDUw==": { - "display_string": [ - "\ue063SableIntim" - ], - "profiles": [], - "name": "\ue063SableIntim", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-12 19:09:30", - "registerOn": 1670342517.1059763, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670342517.1059768, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342517.1059866, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670344401.4635267, - "lastIP": "a\u007fn~~adajcwva{a", - "deviceUUID": "5640adb90d0941bba28eb5f30ee484c11a82e865" - }, - "pb-IF4gU0Q_Hw==": { - "display_string": [ - "\ue020StarredGondolier2087" - ], - "profiles": [], - "name": "\ue020StarredGondolier2087", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-29 14:08:08", - "registerOn": 1670342533.2696772, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670342533.2696776, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342533.2696865, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670342533.2696877, - "lastIP": "a\u007fn~}i`aih~vaxm", - "deviceUUID": "94176a35a9eed2d60c9ebfc527e156055440863b" - }, - "pb-IF4qVWg5MA==": { - "display_string": [ - "\ue063Engrossi18", - "\ue030Android46375615" - ], - "profiles": [], - "name": "\ue063Engrossi18", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-29 19:43:27", - "registerOn": 1670342660.708752, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670342660.7087526, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342660.7087615, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670353474.2122025, - "lastIP": "azo~{a~~`baif\u007f", - "deviceUUID": "2be21764e8da224ccf27d0bee62902aa1912ca03" - }, - "pb-IF4cU1BZXQ==": { - "display_string": [ - "\ue063CapitalOrd" - ], - "profiles": [], - "name": "\ue063CapitalOrd", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 21:26:53", - "registerOn": 1670342831.2751734, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670342831.2751741, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342831.275182, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670342831.275183, - "lastIP": "axi~}kdaieand", - "deviceUUID": "720eccd4923ceed7bd764b43f3158fed44ea2e7d" - }, - "pb-IF5dU3oyFw==": { - "display_string": [ - "\ue063StrongerK2" - ], - "profiles": [], - "name": "\ue063StrongerK2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-31 12:27:42", - "registerOn": 1670342845.411435, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670342845.411436, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342845.4114447, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670342845.4114456, - "lastIP": "d|vb{k~wj~~ae", - "deviceUUID": "941f7f5f0b22ad0604168bf9fbb5415eb95a3b9f" - }, - "pb-IF4DVU4tLA==": { - "display_string": [ - "\ue020Deepen31397" - ], - "profiles": [], - "name": "\ue020Deepen31397", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-01 12:22:37", - "registerOn": 1670342897.5945134, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670342897.5945141, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670342897.5945225, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670356493.604779, - "lastIP": "b\u007fk~~`hajc\u007fvb\u007fo", - "deviceUUID": "c292249945838ecb281c5b8b7faa4353a83710e1" - }, - "pb-JiNJARFbXUtFXV9BGURWV1ZFGUBZQ1BA": { - "display_string": [ - "\ue063ARJUNVV288" - ], - "profiles": [], - "name": "\ue063ARJUNVV288", - "isBan": false, - "isMuted": false, - "accountAge": "2017-09-02 18:37:22", - "registerOn": 1670343068.079055, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343068.0790555, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343068.0790627, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670343111.9102573, - "lastIP": "a\u007fk~{j~~aga`e", - "deviceUUID": "4f2fb1a47b1275e553a4a7f326b8d23ac38fa77d" - }, - "pb-IF4jUhIeAA==": { - "display_string": [ - "\ue063shashiHD", - "\ue030Android34814816" - ], - "profiles": [], - "name": "\ue063shashiHD", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-14 15:00:13", - "registerOn": 1670343081.148472, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343081.1484728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343081.1484814, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343081.148482, - "lastIP": "azo~{m~wl~~ld", - "deviceUUID": "abe70bd0786978396dbeefa9cc09ffa26ad7733b" - }, - "pb-IF4RUlFSCA==": { - "display_string": [ - "\ue020UgliestThird46", - "\ue063Ambidextr8", - "\ue030Android59026321" - ], - "profiles": [], - "name": "\ue063Ambidextr8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-19 08:18:17", - "registerOn": 1670343217.6643054, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343217.6643062, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343217.6643152, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343217.6643162, - "lastIP": "a~o~}icalhaja\u007f", - "deviceUUID": "81136ec8ce3b49c455e0316c9601bec99fb8e2fc" - }, - "pb-IF4iU0g-Ug==": { - "display_string": [ - "\ue063KimonoChen" - ], - "profiles": [], - "name": "\ue063KimonoChen", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-24 20:11:59", - "registerOn": 1670343416.320677, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343416.320678, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343416.3206868, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670344673.500147, - "lastIP": "dvvcxva\u007fo~z`", - "deviceUUID": "ddffe4aed4a4bcf493c53ef9f885e7f21edcff1c" - }, - "pb-IF5SU1E5VA==": { - "display_string": [ - "\ue030Android63977469" - ], - "profiles": [], - "name": "\ue030Android63977469", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-03 18:19:32", - "registerOn": 1670343448.4156666, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343448.4156673, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343448.415676, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343448.415677, - "lastIP": "dvvcyvh}vb~l", - "deviceUUID": "a626e81f7eaa8314e31d25dbf158adb6b9da7aaa" - }, - "pb-IF5dVWsGUA==": { - "display_string": [ - "\ue020AlternativeCircle13" - ], - "profiles": [], - "name": "\ue020AlternativeCircle13", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-08 21:17:12", - "registerOn": 1670343459.4654012, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343459.4654016, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343459.4654105, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343459.4654117, - "lastIP": "b}k~}jean`a`c", - "deviceUUID": "3d5cdc3f97d6814ee4554340517e894c896d8301" - }, - "pb-IF4yU3gtIQ==": { - "display_string": [ - "\ue020BoastfulFaith8", - "\ue030Android63804874" - ], - "profiles": [], - "name": "\ue020BoastfulFaith8", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-29 21:34:10", - "registerOn": 1670343513.6497552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343513.6497555, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343513.6497626, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343513.6497636, - "lastIP": "dvvc{vaza~~ke", - "deviceUUID": "819491f15487196c78fa426fb86e2f8e6f5f69ab" - }, - "pb-IF43UkU_Kg==": { - "display_string": [ - "\ue063CandidCors", - "\ue030Android56862232" - ], - "profiles": [], - "name": "\ue063CandidCors", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-01 22:32:05", - "registerOn": 1670343532.6947274, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343532.694728, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343532.6947367, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343532.6947377, - "lastIP": "a~j~~keaobaidv", - "deviceUUID": "d2954da842d4bc14598d61624bbbd7fcd40ea246" - }, - "pb-IF48VUEdKQ==": { - "display_string": [ - "\ue063CurlyBrace" - ], - "profiles": [], - "name": "\ue063CurlyBrace", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-22 09:31:55", - "registerOn": 1670343661.1869156, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343661.1869159, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343661.186924, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343661.1869247, - "lastIP": "azo~{`~xj~}ld", - "deviceUUID": "b40a2a5b09946932988510cc95b89d8df63a72dd" - }, - "pb-IF4dV1EFDA==": { - "display_string": [ - "\ue063SachinSava", - "\ue030Android40001369", - "\ue030Android34742408" - ], - "profiles": [], - "name": "\ue063SachinSava", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-21 16:49:51", - "registerOn": 1670343770.8922238, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343770.8922243, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343770.892233, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343770.892234, - "lastIP": "azo~|o~~jiajc~", - "deviceUUID": "7ce96c79cccd3f16362f8a62fbed9f86bdf806e3" - }, - "pb-IF5UVWkuEw==": { - "display_string": [ - "\ue030Android62169386" - ], - "profiles": [], - "name": "\ue030Android62169386", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-22 22:09:48", - "registerOn": 1670343869.2297523, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343869.229753, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343869.2297626, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670343869.2297635, - "lastIP": "b\u007fn~wl~}kfaaf", - "deviceUUID": "5c3b59b00c68cc267c4b2c93ddc87a01c4e5383f" - }, - "pb-IF5UUkMkVw==": { - "display_string": [ - "\ue063Instructi6", - "\ue030Android57438796" - ], - "profiles": [], - "name": "\ue063Instructi6", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-18 11:22:09", - "registerOn": 1670343879.9166842, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670343879.9166849, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670343879.9166937, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670344338.241435, - "lastIP": "a\u007fn~xa~}hdaidv", - "deviceUUID": "6d205e8d920719adb983123b6f23b7ae2ee67121", - "cMsgCount": 0, - "lastMsgTime": 1670344053.2678149, - "lastMsg": "gg", - "cSameMsg": 0 - }, - "pb-IF4JU007VA==": { - "display_string": [ - "\ue020AuralBookworm41" - ], - "profiles": [], - "name": "\ue020AuralBookworm41", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 19:42:18", - "registerOn": 1670344212.1247869, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670344212.1247878, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344212.1247966, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670344212.1247976, - "lastIP": "dvvc{vaxi~}hf", - "deviceUUID": "9dfdec12df7b6397fc764cb9ccba5a56193d51dc" - }, - "pb-IF4cUloODA==": { - "display_string": [ - "\ue030Android59950580" - ], - "profiles": [], - "name": "\ue030Android59950580", - "isBan": false, - "isMuted": false, - "accountAge": "2022-04-23 15:22:53", - "registerOn": 1670344256.33425, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670344256.3342505, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344256.3342812, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670344256.3342822, - "lastIP": "b}k~~`baihxva{k", - "deviceUUID": "\u0015T\u000f\u0007SDX\u000bVVM" - }, - "pb-IF4dUmgyDQ==": { - "display_string": [ - "\ue063parshuavin" - ], - "profiles": [], - "name": "\ue063parshuavin", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-26 19:59:46", - "registerOn": 1670344328.6735716, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670344328.673572, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344328.6735802, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670346136.845685, - "lastIP": "a~h~}jdaiaxvi~", - "deviceUUID": "53c1080a8f8e941e645a6389d40ca7c4d3d8be9e" - }, - "pb-IF4TUmonHw==": { - "display_string": [ - "\ue020RajasPro" - ], - "profiles": [], - "name": "\ue020RajasPro", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-01 22:04:33", - "registerOn": 1670344386.698758, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670344386.6987586, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344386.6987677, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670344410.4988198, - "lastIP": "dvvc}vb\u007fj~~oi", - "deviceUUID": "40449c228a705ffddc06825501b4c3fd6df48f19" - }, - "pb-IF4nUk8SNg==": { - "display_string": [ - "\ue020BiswasCK" - ], - "profiles": [], - "name": "\ue020BiswasCK", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-13 22:23:03", - "registerOn": 1670344706.2722812, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670344706.2722816, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344706.2722902, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670344725.71094, - "lastIP": "dxva~vcwvgv", - "deviceUUID": "a9c6aaa4fdef6859363b6d89d2ce546f5e10fda2" - }, - "pb-IF49VRABPA==": { - "display_string": [ - "\ue063Tinymonk32" - ], - "profiles": [], - "name": "\ue063Tinymonk32", - "isBan": false, - "isMuted": false, - "accountAge": "2020-07-05 13:51:59", - "registerOn": 1670344741.1027625, - "canStartKickVote": true, - "spamCount": 1, - "lastSpam": 1670344920.8857827, - "totaltimeplayer": 0, - "warnCount": 4, - "lastWarned": 1670344920.8844182, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670344741.1027722, - "lastIP": "a\u007fn~xa~~aiajdy", - "deviceUUID": "29e1203112e21de523201bd531eb48913cfbf6c5", - "cMsgCount": 0, - "lastMsgTime": 1670344920.884358, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF41VFMPNQ==": { - "display_string": [ - "\ue020SinkAiMehRan" - ], - "profiles": [], - "name": "\ue020SinkAiMehRan", - "isBan": false, - "isMuted": false, - "accountAge": "2020-05-11 00:01:41", - "registerOn": 1670344920.7385077, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670344920.738508, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670344920.7385156, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670346593.7377918, - "lastIP": "azo~|l~yk~}he", - "deviceUUID": "\u0015PUP\u0005\u0017" - }, - "pb-IF4VU04CUA==": { - "display_string": [ - "\ue063zAuzaaaaa1" - ], - "profiles": [], - "name": "\ue063zAuzaaaaa1", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-28 21:05:40", - "registerOn": 1670345535.9794552, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670345535.979456, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670345535.979466, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670345535.9794667, - "lastIP": "awn~~`iaoaajdx", - "deviceUUID": "934b585f1d03fdaabc53dc1fd512109326b8c217" - }, - "pb-IF4oU0YuVg==": { - "display_string": [ - "\ue020Lizowsowra" - ], - "profiles": [], - "name": "\ue020Lizowsowra", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-07 17:40:22", - "registerOn": 1670345591.186088, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670345591.1860888, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670345591.1860976, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670345591.1860983, - "lastIP": "b}k~}kiaagajb", - "deviceUUID": "1309f7f6682f791aa19e40c30d6f3a1fb40905d2" - }, - "pb-IF4pU00cVg==": { - "display_string": [ - "\ue030Android63894042" - ], - "profiles": [], - "name": "\ue030Android63894042", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 16:35:03", - "registerOn": 1670345689.46354, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670345689.4635403, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670345689.4635484, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670345689.4635491, - "lastIP": "a\u007fn~~acai`aoe", - "deviceUUID": "4e15762a1d40658098b00d486ddbfc17778afd19" - }, - "pb-IF4qCmET": { - "display_string": [ - "\ue020BackBrecker05" - ], - "profiles": [], - "name": "\ue020BackBrecker05", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-19 14:04:28", - "registerOn": 1670345786.9669368, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670345786.9669373, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670345786.9669461, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670345786.9669468, - "lastIP": "aakhaifzvayk", - "deviceUUID": "c7fc998afaccf5248913e24fef4dd5aa23b01b93" - }, - "pb-IF42U0tdVQ==": { - "display_string": [ - "\ue020JIHAN0218A" - ], - "profiles": [], - "name": "\ue020JIHAN0218A", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-04 22:54:23", - "registerOn": 1670345911.279007, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670345911.2790077, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670345911.279034, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670345911.2790349, - "lastIP": "aakhaid}ve\u007f", - "deviceUUID": "453316cf6e91c867c6a6e8d5ef095daa1023f6f8" - }, - "pb-IF4FU08hCQ==": { - "display_string": [ - "\ue063DanRex2006" - ], - "profiles": [], - "name": "\ue063DanRex2006", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 16:45:25", - "registerOn": 1670345957.6492267, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670345957.6492274, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670345957.6492357, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670345957.6492367, - "lastIP": "a~a~xk~~jaah", - "deviceUUID": "f4c48a4308160386bfbb4048550077c11d233a10" - }, - "pb-JiNJARBbXUdAVF5FF0BWXFRDEkZfQlRC": { - "display_string": [ - "\ue063MuhaiminSk", - "\ue030Android14882899" - ], - "profiles": [], - "name": "\ue063MuhaiminSk", - "isBan": false, - "isMuted": false, - "accountAge": "2017-08-13 20:00:43", - "registerOn": 1670346011.692214, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346011.6922145, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346011.692223, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346011.6922238, - "lastIP": "a\u007fk~vl~~kgaiiz", - "deviceUUID": "dce0e6d1ef092d7bbbcdc01096680681aeaad1fa" - }, - "pb-IF5VUlYhJw==": { - "display_string": [ - "\ue020Dominator9844" - ], - "profiles": [], - "name": "\ue020Dominator9844", - "isBan": false, - "isMuted": false, - "accountAge": "2022-03-30 13:47:27", - "registerOn": 1670346170.3916426, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346170.3916433, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346170.3916514, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346170.391652, - "lastIP": "azo~zh~zo~|a", - "deviceUUID": "49aba9148ddf7a23b2257abcdb8b9b0f0e4cddc9" - }, - "pb-IF4qU3A4Jg==": { - "display_string": [ - "\ue063MAHARSHI14" - ], - "profiles": [], - "name": "\ue063MAHARSHI14", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-26 22:53:44", - "registerOn": 1670346282.788821, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346282.7888215, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346282.788831, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346282.788832, - "lastIP": "dvvd|vb\u007fh~vi", - "deviceUUID": "360b88d7040887ba22ca49514006fde69ef03bfd" - }, - "pb-IF4-U2suMg==": { - "display_string": [ - "\ue063Anthropolo" - ], - "profiles": [], - "name": "\ue063Anthropolo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-08 03:55:02", - "registerOn": 1670346341.4276035, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346341.427604, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670346600.4455264, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346341.4276118, - "lastIP": "h|vb}i~yn~}hb", - "deviceUUID": "f2d0566ea854aa6a61c7929e8cfc5d06b5e54f42", - "cMsgCount": 0, - "lastMsgTime": 1670346600.4457104, - "lastMsg": "pussys", - "cSameMsg": 0 - }, - "pb-IF4WU0kpNg==": { - "display_string": [ - "\ue030Android63737684" - ], - "profiles": [], - "name": "\ue030Android63737684", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 14:28:34", - "registerOn": 1670346370.2462375, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346370.246238, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346370.2462468, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346370.246248, - "lastIP": "a\u007fn~~aeaieajax", - "deviceUUID": "60e5f649e0240fcf66867cdb6dcacdb51a43f678" - }, - "pb-IF4UVEMHAg==": { - "display_string": [ - "\ue030Android41592779" - ], - "profiles": [], - "name": "\ue030Android41592779", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-09 11:45:23", - "registerOn": 1670346374.2746387, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346374.274639, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346374.2746468, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346374.2746477, - "lastIP": "a\u007fn~}ifa`haiex", - "deviceUUID": "ce334ea4e6cc9a683da505d54549af924c681734" - }, - "pb-IF4QU0kHPA==": { - "display_string": [ - "\ue020ZeroSnow19056" - ], - "profiles": [], - "name": "\ue020ZeroSnow19056", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 23:58:47", - "registerOn": 1670346464.5984795, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346464.5984807, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346464.5984907, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346464.5984914, - "lastIP": "dvvc}vava~~m", - "deviceUUID": "dbb07b84b2dc828cb68794d17cab5762be3418de" - }, - "pb-IF4KUhJbBw==": { - "display_string": [ - "\ue063paradoxffH" - ], - "profiles": [], - "name": "\ue063paradoxffH", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-10 22:08:10", - "registerOn": 1670346476.1135232, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346476.113524, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346476.1135342, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346476.1135352, - "lastIP": "dxvc~vixvav`", - "deviceUUID": "7454af18b49e1f4590444aca6872bf493222fd2c" - }, - "pb-IF4RU00sAA==": { - "display_string": [ - "\ue063AccursedCe" - ], - "profiles": [], - "name": "\ue063AccursedCe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-14 23:00:57", - "registerOn": 1670346597.124075, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346597.124076, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346597.1241593, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346597.12416, - "lastIP": "a~o~}jcaidzvdw", - "deviceUUID": "1fc082d755c33870ef49891adec076985ee0b342" - }, - "pb-IF4QUxcxFA==": { - "display_string": [ - "\ue020DevilsonDhivagar", - "\ue030Android60713283" - ], - "profiles": [], - "name": "\ue020DevilsonDhivagar", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-25 10:32:31", - "registerOn": 1670346719.492304, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346719.4923048, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670377777.03954, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670377802.1502836, - "lastIP": "aakhaii{vavh", - "deviceUUID": "b395da26d0a5a77500c2e6d9860123cf2b90af98" - }, - "pb-IF4cU0lZAw==": { - "display_string": [ - "\ue020Shrirajpooja00" - ], - "profiles": [], - "name": "\ue020Shrirajpooja00", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 15:24:32", - "registerOn": 1670346763.6410358, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346763.6410365, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346763.641046, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346763.641047, - "lastIP": "b\u007fk~~abaje|vava", - "deviceUUID": "3507078298f9660d99c8bb6b2c35626d2f795c0f" - }, - "pb-IF4FU0waDw==": { - "display_string": [ - "\ue063RubyRingBe" - ], - "profiles": [], - "name": "\ue063RubyRingBe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 20:16:15", - "registerOn": 1670346780.8853247, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346780.8853252, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670347131.4074423, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346780.8853366, - "lastIP": "d}va\u007fn~}i~|o", - "deviceUUID": "2e1f4f718fe7d62bf7e6adbdb465882221370c48", - "cMsgCount": 0, - "lastMsgTime": 1670347131.4073675, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4rU0wZCg==": { - "display_string": [ - "\ue063Disingenu8", - "\ue030Android58517688" - ], - "profiles": [], - "name": "\ue030Android58517688", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-29 12:37:07", - "registerOn": 1670346817.0747364, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346817.0747368, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346817.0747478, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346817.0747488, - "lastIP": "a\u007fm~~hfajdajcz", - "deviceUUID": "a4ab25be984f5e30a2e3800ea176b1513aa7cdb9" - }, - "pb-IF4iU3M8EA==": { - "display_string": [ - "\ue020hariharan371" - ], - "profiles": [], - "name": "\ue020hariharan371", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-10 18:49:21", - "registerOn": 1670346997.8361568, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670346997.8361578, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670346997.8361669, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670346997.836168, - "lastIP": "azo~zi~~maaie{", - "deviceUUID": "ea31319a574969915a79f7b8978ab9f22ec35f44" - }, - "pb-IF4RU0s-Fg==": { - "display_string": [ - "\ue063Ecologic10" - ], - "profiles": [], - "name": "\ue063Ecologic10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 11:21:17", - "registerOn": 1670347325.9515867, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670347325.951587, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347325.9515975, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670347325.9515986, - "lastIP": "d|vb{j~~j`aiew", - "deviceUUID": "a3a7dd8c755c6e1a44b8ad36c11baad7fb07db1e" - }, - "pb-IF4RU3c6Jg==": { - "display_string": [ - "\ue020virenpanchal1313" - ], - "profiles": [], - "name": "\ue020virenpanchal1313", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-23 17:08:51", - "registerOn": 1670347416.3832989, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670347416.3832994, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347416.3833091, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670347479.3397582, - "lastIP": "dvvc{vg}va\u007fo", - "deviceUUID": "ac80bdc8d1dd8b3a4b1ea0df68400ff9dd3f7256" - }, - "pb-IF4xMkpd": { - "display_string": [ - "\ue063ValiantThu", - "\ue030Android49347344", - "\ue030Android19900192", - "\ue030Android29110802" - ], - "profiles": [], - "name": "\ue063ValiantThu", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-30 19:59:27", - "registerOn": 1670347486.750208, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670347486.7502086, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670347486.750218, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670347486.750219, - "lastIP": "a\u007fk~~agaia|va}`", - "deviceUUID": "3ff4371b6328ec50bd079c81307f23db31946d03", - "cMsgCount": 0, - "lastMsgTime": 1670349029.7751834, - "lastMsg": "bah", - "cSameMsg": 0 - }, - "pb-IF4XNWsZ": { - "display_string": [ - "\ue063Hmm183" - ], - "profiles": [], - "name": "\ue063Hmm183", - "isBan": false, - "isMuted": false, - "accountAge": "2018-01-24 16:48:50", - "registerOn": 1670347531.0128837, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670347531.0128844, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670347654.664607, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670347877.0008335, - "lastIP": "dvvb\u007fo~}hgaoc", - "deviceUUID": "a349d990177729d659210410596a8e02db81ddcc", - "cMsgCount": 2, - "lastMsgTime": 1670347898.3941052, - "lastMsg": "bye", - "cSameMsg": 0 - }, - "pb-IF4lU005Jw==": { - "display_string": [ - "\ue063SinisterCa" - ], - "profiles": [], - "name": "\ue063SinisterCa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-18 16:14:02", - "registerOn": 1670348041.109112, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670348041.1091125, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670348041.1091206, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670348041.1091216, - "lastIP": "azo~{m~}liajd|", - "deviceUUID": "2c5826226d76b4f3ce8a3d2d3137f1c211315e9d" - }, - "pb-IF4XUhA8VQ==": { - "display_string": [ - "\ue020SupernaturalDozen14" - ], - "profiles": [], - "name": "\ue020SupernaturalDozen14", - "isBan": false, - "isMuted": false, - "accountAge": "2021-08-03 23:39:57", - "registerOn": 1670348215.8337095, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670348215.8337102, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670348215.8337185, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670348215.8337195, - "lastIP": "hwvayh~|a~~ma", - "deviceUUID": "51de90e18f4f4f251a6d2985fc26168ceeb13d72" - }, - "pb-IF5dU3USEQ==": { - "display_string": [ - "\ue020IvoryFormality24" - ], - "profiles": [], - "name": "\ue020IvoryFormality24", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-11 19:22:22", - "registerOn": 1670348507.0564573, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670348507.0564578, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670348507.0564663, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670348507.0564675, - "lastIP": "a\u007fn~~acaig|ve~", - "deviceUUID": "3455cb6db05135135a8bdf3dc77b797427a245df" - }, - "pb-IF5UVVMgIA==": { - "display_string": [ - "\ue063Tractable2" - ], - "profiles": [], - "name": "\ue063Tractable2", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-17 21:42:14", - "registerOn": 1670348582.417031, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670348582.4170318, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670348582.417042, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670348582.4170427, - "lastIP": "dvvc}vb|m~~hh", - "deviceUUID": "ed17f8f60636deefe20f41bb3951b327374239c5" - }, - "pb-IF4PU00PAw==": { - "display_string": [ - "\ue063arunesh99" - ], - "profiles": [], - "name": "\ue063arunesh99", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-19 22:15:43", - "registerOn": 1670348946.9775016, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670348946.977502, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670348946.9775107, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670348946.9775114, - "lastIP": "a\u007fk~{k~}h`aidy", - "deviceUUID": "e0f2cd0d90ca8db41b6958d2b9f5a5a645e4302a" - }, - "pb-IF41U0wEVA==": { - "display_string": [ - "\ue063Honorabl20" - ], - "profiles": [], - "name": "\ue063Honorabl20", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-16 14:06:54", - "registerOn": 1670349090.7417576, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670349090.741758, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670349090.741766, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670349090.7417672, - "lastIP": "a\u007fk~~aeaj`}vbzl", - "deviceUUID": "5399f6d70bf7d4343680cab6c8355d7ab478a4b3" - }, - "pb-IF41U005DQ==": { - "display_string": [ - "\ue063YEGbs" - ], - "profiles": [], - "name": "\ue063YEGbs", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-20 19:06:21", - "registerOn": 1670349907.0626075, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670349907.0626085, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670349907.0626178, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670349907.0626187, - "lastIP": "a\u007fa~}i`ameajb~", - "deviceUUID": "a6e39f5fd56f259fdb3c795552874b868e87bcc6" - }, - "pb-IF4lU0pZLA==": { - "display_string": [ - "\ue063Northerly5" - ], - "profiles": [], - "name": "\ue063Northerly5", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-29 13:08:08", - "registerOn": 1670350283.6567082, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670350283.6567094, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670356942.0094352, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670356548.8296356, - "lastIP": "azo~|l~~hfaii}", - "deviceUUID": "2d9c93c6ad9c4ccce23f01141e0c6c2bfbbedce1", - "cMsgCount": 0, - "lastMsgTime": 1670357978.3901784, - "lastMsg": "kya", - "cSameMsg": 0 - }, - "pb-JiNJVxBfVENDWF1GEEFRV11HF0ZYQFRE": { - "display_string": [ - "\ue063Jenishmodi" - ], - "profiles": [], - "name": "\ue063Jenishmodi", - "isBan": false, - "isMuted": false, - "accountAge": "2017-01-10 15:40:01", - "registerOn": 1670350562.4859262, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670350562.4859266, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670350562.4859352, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670350562.485936, - "lastIP": "azj~z`~|n~~kf", - "deviceUUID": "2b350f8aa01d4ee858817abf3e27635e71a28282" - }, - "pb-IF4OU1BfLA==": { - "display_string": [ - "\ue063sanka45678" - ], - "profiles": [], - "name": "\ue063sanka45678", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 12:12:44", - "registerOn": 1670350621.3491118, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670350621.3491125, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670350621.349124, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670350621.349125, - "lastIP": "a~j~~kdajdzvb{j", - "deviceUUID": "0ba52aa2aba20dde52978a3107c093d7cc011626" - }, - "pb-IF5RU00ZXA==": { - "display_string": [ - "\ue020PutativeFoe61" - ], - "profiles": [], - "name": "\ue020PutativeFoe61", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-03 23:21:04", - "registerOn": 1670351229.670523, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670351229.6705234, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670351229.6705337, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670351229.6705346, - "lastIP": "a~o~v`~~iiakf", - "deviceUUID": "0bd384cc42547a0bfead5e4061e718af8724fd29" - }, - "pb-IF4oDWRe": { - "display_string": [ - "\ue063WaryRider8" - ], - "profiles": [], - "name": "\ue063WaryRider8", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-13 22:02:31", - "registerOn": 1670351258.101326, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670351258.1013267, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670351258.1013346, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670351258.1013355, - "lastIP": "a\u007fn~~aea`~x", - "deviceUUID": "3613c202752f6bbe55730fdf6453fbdda0546460" - }, - "pb-IF4pU0cHIA==": { - "display_string": [ - "\ue063HipUnicorn" - ], - "profiles": [], - "name": "\ue063HipUnicorn", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 08:16:04", - "registerOn": 1670351424.3635006, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670351424.3635013, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670351424.3635092, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670351424.3635104, - "lastIP": "a}l~~jcaih~vawk", - "deviceUUID": "9998a2c7616974e5c675893bf420daadd01c028c" - }, - "pb-IF4vU04bUg==": { - "display_string": [ - "\ue063OrdinaryLe" - ], - "profiles": [], - "name": "\ue063OrdinaryLe", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-26 16:33:33", - "registerOn": 1670351467.5326383, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670351467.5326388, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670351467.5326493, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670351467.5326505, - "lastIP": "azo~|m~~m~zn", - "deviceUUID": "43d89ca6aa391f9dc5428e7343864b11d1ad414d" - }, - "pb-IF4TU3EfNw==": { - "display_string": [ - "\ue020LaxCurb126" - ], - "profiles": [], - "name": "\ue020LaxCurb126", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-02 17:47:59", - "registerOn": 1670353082.7043333, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670353082.7043338, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353082.7043424, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670353082.7043433, - "lastIP": "aaihxvhvvh", - "deviceUUID": "a81650ce59653c7273c79385cd3c804e2efc2c5d", - "cMsgCount": 0, - "lastMsgTime": 1670353662.6206582, - "lastMsg": "\ud83e\udd23\ud83e\udd23", - "cSameMsg": 0 - }, - "pb-IF5XUmgSJA==": { - "display_string": [ - "\ue063NoName38501b" - ], - "profiles": [], - "name": "\ue063NoName38501b", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-15 20:54:21", - "registerOn": 1670353120.1340988, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670353120.1340992, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353120.1341064, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670353120.1341074, - "lastIP": "a}l~zk~z`~{o", - "deviceUUID": "d63239a5bd33fdeebf979bb7b7c61b36bd37c5f4" - }, - "pb-IF4CU3QEFQ==": { - "display_string": [ - "\ue030Android62648900" - ], - "profiles": [], - "name": "\ue030Android62648900", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-13 15:24:21", - "registerOn": 1670353415.1211934, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670353415.1211941, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353415.1212034, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670353535.4644165, - "lastIP": "a\u007fk~~oaaj`\u007fvf|", - "deviceUUID": "73b6499bfee28da86faf7f3b2f852fe34a03d6a5" - }, - "pb-IF4HU1AnIw==": { - "display_string": [ - "\ue063GrimStakes" - ], - "profiles": [], - "name": "\ue063GrimStakes", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-07 00:30:07", - "registerOn": 1670353423.2185583, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670353423.2185588, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353423.218567, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670354552.6423726, - "lastIP": "a|o~vo~ya~zm", - "deviceUUID": "a5dc3776ef893cd1e1a3344931a5e3f39645382b" - }, - "pb-IF4rU1A6HQ==": { - "display_string": [ - "\ue063ismailalac" - ], - "profiles": [], - "name": "\ue063ismailalac", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 20:39:37", - "registerOn": 1670353492.5995445, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670353492.5995452, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353492.5995538, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670353492.5995548, - "lastIP": "eajdajc{va}o", - "deviceUUID": "a49d1d01775d220c5f072f649916f89abd865ca1" - }, - "pb-IF4gU0Y7AQ==": { - "display_string": [ - "\ue020IndependentBoard34" - ], - "profiles": [], - "name": "\ue020IndependentBoard34", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-10 21:50:23", - "registerOn": 1670353765.073014, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670353765.0730145, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353765.0730238, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670353765.0730247, - "lastIP": "azo~{m~}leamf", - "deviceUUID": "f03172fe2a449fcc17773aad18f0af7cfff7aeb8", - "cMsgCount": 0, - "lastMsgTime": 1670354204.4623644, - "lastMsg": "Mai bhi jaa rahi sone\ud83d\udc80", - "cSameMsg": 0 - }, - "pb-IF4yU2sFEQ==": { - "display_string": [ - "\ue030Android62073479" - ], - "profiles": [], - "name": "\ue030Android62073479", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-18 14:26:16", - "registerOn": 1670353827.3070753, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670353827.3070757, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670353827.3070848, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670353827.3070855, - "lastIP": "d|vbzh~~miaif\u007f", - "deviceUUID": "\u0015XXXRFWTTV\u0015R\u000bUXMVTPYLX[VRM" - }, - "pb-IF5UU1AmIQ==": { - "display_string": [ - "\ue020UnalteredHymn2273" - ], - "profiles": [], - "name": "\ue020UnalteredHymn2273", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-25 14:26:25", - "registerOn": 1670354159.9339242, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670354159.9339247, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670354159.9339347, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670354159.9339356, - "lastIP": "awi~~idaib}va|", - "deviceUUID": "3e599f6cbf7ed6f44f1d5b1fa31669228513ecf5" - }, - "pb-IF4TVGIONQ==": { - "display_string": [ - "\ue063ViciousFon" - ], - "profiles": [], - "name": "\ue063ViciousFon", - "isBan": false, - "isMuted": false, - "accountAge": "2019-08-22 15:31:31", - "registerOn": 1670354339.6950152, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670354339.695016, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670354762.109486, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670354339.6950254, - "lastIP": "dvvcyvc}va~j", - "deviceUUID": "e5bfb38924deae30cb9d273f4445b69fb1a60681", - "cMsgCount": 0, - "lastMsgTime": 1670355009.0030503, - "lastMsg": "run boys", - "cSameMsg": 0 - }, - "pb-IF43U2szXQ==": { - "display_string": [ - "\ue020vedhu74" - ], - "profiles": [], - "name": "\ue020vedhu74", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-08 17:26:37", - "registerOn": 1670355176.8719523, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670355176.8719532, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670355176.8719606, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670355176.8719614, - "lastIP": "azo~zh~zn~~`g", - "deviceUUID": "\u0015" - }, - "pb-JiNJARFaUUNEVVlCE0NTVVFEEUFYT1NG": { - "display_string": [ - "\ue063Trickste14" - ], - "profiles": [], - "name": "\ue063Trickste14", - "isBan": false, - "isMuted": false, - "accountAge": "2017-02-18 14:35:58", - "registerOn": 1670355409.6235325, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670355409.623533, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670355409.6235418, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670355409.6235428, - "lastIP": "azo~|j~~igaka", - "deviceUUID": "269de5dc01cf504d2a36b3df4a8a15c9c04b7f1f" - }, - "pb-JiNJARFZUUZEXVtCFUVTUlxDGUVfQFFB": { - "display_string": [ - "\ue063ChestnutVo", - "\ue030Android14303943" - ], - "profiles": [], - "name": "\ue063ChestnutVo", - "isBan": false, - "isMuted": false, - "accountAge": "2017-06-11 13:26:36", - "registerOn": 1670355808.5153575, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670355808.515358, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670355808.5153697, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670355808.5153706, - "lastIP": "dvvcyvb|k~~hb", - "deviceUUID": "faf7bfc5a11a8a6239baa53fad6bc8a6613d2c90" - }, - "pb-IF42U08NIA==": { - "display_string": [ - "\ue020VainNymph11222", - "\ue030Android63987492", - "\ue030Android62046192" - ], - "profiles": [], - "name": "\ue030Android63987492", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 04:34:20", - "registerOn": 1670356181.422779, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670356181.4227796, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670356181.422788, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670356181.4227889, - "lastIP": "awi~~ieaif~vd~", - "deviceUUID": "430b03230eaf19fb14461e11e07c0c30eb561f3b" - }, - "pb-IF4TUnIzNQ==": { - "display_string": [ - "\ue063Engrossin3" - ], - "profiles": [], - "name": "\ue063Engrossin3", - "isBan": false, - "isMuted": false, - "accountAge": "2021-12-10 16:14:58", - "registerOn": 1670356219.6794536, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670356219.6794546, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670356353.3494902, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670358463.514206, - "lastIP": "azj~zo~zj~vi", - "deviceUUID": "5e075ff55d844c053431f17e4bb528701f75add5", - "cMsgCount": 0, - "lastMsgTime": 1670356353.3495123, - "lastMsg": "chutiya chintu", - "cSameMsg": 0 - }, - "pb-IF5cU2haHA==": { - "display_string": [ - "\ue063ASSASSINBA" - ], - "profiles": [], - "name": "\ue063ASSASSINBA", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-18 21:32:28", - "registerOn": 1670356367.3844233, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670356367.3844237, - "totaltimeplayer": 0, - "warnCount": 3, - "lastWarned": 1670359224.753352, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670358173.1075954, - "lastIP": "b}k~~`faic|ve|", - "deviceUUID": "94eda402e26e331e774eadd614e05ef7ad6397ac", - "cMsgCount": 0, - "lastMsgTime": 1670359800.8844407, - "lastMsg": "BRUH", - "cSameMsg": 0 - }, - "pb-IF4VVVEFAQ==": { - "display_string": [ - "\ue063mike110900" - ], - "profiles": [], - "name": "\ue063mike110900", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-20 13:04:52", - "registerOn": 1670356808.0441456, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670356808.044146, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670356808.0441554, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670356808.0441568, - "lastIP": "a\u007fn~}hhaibaig|", - "deviceUUID": "5e153f1bf8b62d62215c154a32550dbbd87996bc" - }, - "pb-IF4zC1Ap": { - "display_string": [ - "\ue020HypnoticAlliance6502", - "\ue030Android23747296" - ], - "profiles": [], - "name": "\ue020HypnoticAlliance6502", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-26 15:30:19", - "registerOn": 1670356895.768411, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670356895.7684112, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670356895.76842, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670357033.5330324, - "lastIP": "dvvb\u007fl~~kbaif", - "deviceUUID": "efee2c2113347d0087684cc34efe9b82a58ad1f0", - "cMsgCount": 0, - "lastMsgTime": 1670357740.364204, - "lastMsg": "gg", - "cSameMsg": 0 - }, - "pb-IF4MUnBbPw==": { - "display_string": [ - "\ue030Android56347751" - ], - "profiles": [], - "name": "\ue030Android56347751", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-28 14:54:39", - "registerOn": 1670357181.0882378, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670357181.0882385, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670357181.0882485, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670357181.0882497, - "lastIP": "avo~}iaamhajd", - "deviceUUID": "937b3ed512df7e5944aad1a0ff5d272cf1f01597" - }, - "pb-IF4BUkMkBg==": { - "display_string": [ - "\ue030Android57770388" - ], - "profiles": [], - "name": "\ue030Android57770388", - "isBan": false, - "isMuted": false, - "accountAge": "2022-01-26 02:02:17", - "registerOn": 1670357227.1507597, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670357227.1507602, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670357227.1507714, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670357227.1507726, - "lastIP": "a\u007fk~~nbajayva|i", - "deviceUUID": "\u0015W]YT\u0011U_\u0002\u0002\u0010Q\u000bQ\u0002B\u0002[RU@WYXRC" - }, - "pb-IF4CVUwbLw==": { - "display_string": [ - "\ue030Android52260302" - ], - "profiles": [], - "name": "\ue030Android52260302", - "isBan": false, - "isMuted": false, - "accountAge": "2021-05-26 02:45:09", - "registerOn": 1670357511.9389925, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670357511.938993, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670357511.9390006, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670359366.0757296, - "lastIP": "dvvcyvc}va~j", - "deviceUUID": "1a8150d84fb122c7b1632a916a8d846103a237d6", - "cMsgCount": 0, - "lastMsgTime": 1670359493.8932016, - "lastMsg": "end pls", - "cSameMsg": 0 - }, - "pb-IF5UU0QiUQ==": { - "display_string": [ - "\ue063ApKaAbuu", - "\ue030Android59817678", - "\ue030Android63361491" - ], - "profiles": [], - "name": "\ue063ApKaAbuu", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-17 07:28:29", - "registerOn": 1670357923.4600525, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670357923.460053, - "totaltimeplayer": 0, - "warnCount": 3, - "lastWarned": 1670358758.4049983, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670357923.4600625, - "lastIP": "a}i~vi~{k~ya", - "deviceUUID": "247b57ac4bcbcebe10e88ce1fac1a1a4d0e25cc9", - "cMsgCount": 0, - "lastMsgTime": 1670358809.8463717, - "lastMsg": "lag f", - "cSameMsg": 0 - }, - "pb-IF4TVUZbEA==": { - "display_string": [ - "\ue063LeggedAchi" - ], - "profiles": [], - "name": "\ue063LeggedAchi", - "isBan": false, - "isMuted": false, - "accountAge": "2021-04-18 14:59:35", - "registerOn": 1670358080.0569866, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670358080.056987, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670360161.6484299, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670360161.648431, - "lastIP": "azo~|l~}jdaia\u007f", - "deviceUUID": "5355b88a6335b4b0be8f4ade60d8d305c5422452", - "cMsgCount": 0, - "lastMsgTime": 1670361531.3235004, - "lastMsg": "gg", - "cSameMsg": 0 - }, - "pb-IF4WU00lFQ==": { - "display_string": [ - "\ue063CrushedLe2" - ], - "profiles": [], - "name": "\ue063CrushedLe2", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-17 19:57:38", - "registerOn": 1670358150.3993948, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670358150.3993952, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670358150.399403, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670358150.399404, - "lastIP": "azj~zo~}l`aii~", - "deviceUUID": "fa3a99ac4dcd4f3661b9d396a72ea8311c27ba54" - }, - "pb-IF4FVXoRIw==": { - "display_string": [ - "\ue063Uninvited5", - "\ue030Android39081970" - ], - "profiles": [], - "name": "\ue063Uninvited5", - "isBan": false, - "isMuted": false, - "accountAge": "2021-03-18 19:37:31", - "registerOn": 1670358474.9075394, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670358474.90754, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670358474.907548, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670358474.9075487, - "lastIP": "a|n~~niaii{vaza", - "deviceUUID": "48a9589729597e5a522f1c0250086694bf2aab8d" - }, - "pb-IF5SU0hTEw==": { - "display_string": [ - "\ue063VeteranGuy" - ], - "profiles": [], - "name": "\ue063VeteranGuy", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-08 14:03:11", - "registerOn": 1670358959.8816469, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670358959.8816473, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670358959.881655, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670358959.8816562, - "lastIP": "dvvcxvb|k~~a", - "deviceUUID": "c3d0e08f57973b778f297219e4751dbafcd9369e", - "cMsgCount": 0, - "lastMsgTime": 1670359168.4138572, - "lastMsg": "hi", - "cSameMsg": 0 - }, - "pb-IF5WU2E5PQ==": { - "display_string": [ - "\ue030Android60777465" - ], - "profiles": [], - "name": "\ue030Android60777465", - "isBan": false, - "isMuted": false, - "accountAge": "2022-05-28 00:53:12", - "registerOn": 1670359004.8619003, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670359004.8619008, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670359004.861909, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670359004.86191, - "lastIP": "azi~{j~}i`aig\u007f", - "deviceUUID": "627d52bae3891cf754503c421ac837fe672fcded" - }, - "pb-IF4BUkVYUA==": { - "display_string": [ - "\ue020AloneTraveler007", - "\ue030Android30841052" - ], - "profiles": [], - "name": "\ue020AloneTraveler007", - "isBan": false, - "isMuted": false, - "accountAge": "2022-02-01 02:11:16", - "registerOn": 1670359058.4074655, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670359058.4074662, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670360472.6741555, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670360472.674157, - "lastIP": "a\u007fn~}jbanhand", - "deviceUUID": "\u0015QUUX\u0015\u0005TXS\u0010T]\u0005P\u0010Y\\TPDVZVSDV" - }, - "pb-IF48U0YAMQ==": { - "display_string": [ - "\ue020WolfViperCr7" - ], - "profiles": [], - "name": "\ue020WolfViperCr7", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-09 04:00:05", - "registerOn": 1670359092.3219705, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670359092.321971, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670359092.32198, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670359092.321981, - "lastIP": "azo~{a~yl~~l", - "deviceUUID": "cbc804f7ed36896ecf8add8a57eb7339787e0ffc" - }, - "pb-IF4IV1BZVw==": { - "display_string": [ - "\ue063HellalSouh", - "\ue030Android33740360", - "\ue030Android48195571", - "\ue030Android45997838", - "\ue030Android36441516" - ], - "profiles": [], - "name": "\ue063HellalSouh", - "isBan": false, - "isMuted": false, - "accountAge": "2019-04-12 19:08:55", - "registerOn": 1670359543.3102126, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670359543.3102133, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670359543.3102207, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670359543.3102221, - "lastIP": "avo~}hgamaa`c", - "deviceUUID": "dc690c37b4f23918c647a150f2db117ffbd6e8d5" - }, - "pb-IF4IU0MRLA==": { - "display_string": [ - "\ue063PerkyFill3", - "\ue030Android57908928" - ], - "profiles": [], - "name": "\ue063PerkyFill3", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-26 13:51:15", - "registerOn": 1670360088.065733, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670360088.0657337, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670360088.0657418, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670360088.0657425, - "lastIP": "d|vb|i~zo~~`a", - "deviceUUID": "cdc04573a4a752acb7f94c53a2a2f848b57c176e" - }, - "pb-IF4sD1cb": { - "display_string": [ - "\ue063Rambuncti7", - "\ue030Android31122611" - ], - "profiles": [], - "name": "\ue063Rambuncti7", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-08 00:42:47", - "registerOn": 1670361148.454978, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670361148.4549785, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670361148.4549868, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670361148.4549882, - "lastIP": "a\u007fm~~mgaii\u007fvf}", - "deviceUUID": "a8a481c4fcb20c1e0e5430b9e8ed36f56fe52408", - "cMsgCount": 0, - "lastMsgTime": 1670361171.8402483, - "lastMsg": "hi", - "cSameMsg": 0 - }, - "pb-IF43VVZSVQ==": { - "display_string": [ - "\ue020NativeCrusade20", - "\ue030Android56720941" - ], - "profiles": [], - "name": "\ue030Android56720941", - "isBan": false, - "isMuted": false, - "accountAge": "2021-07-09 20:20:11", - "registerOn": 1670361264.7433949, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670361264.7433953, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670361264.7434053, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670361592.6545231, - "lastIP": "b}k~}jeamiaiiz", - "deviceUUID": "98fb5d9a54a2e911336550246069b9024ddc7d32" - }, - "pb-IF43UmVTLw==": { - "display_string": [ - "\ue063GamingLaks", - "\ue030Android55197171" - ], - "profiles": [], - "name": "\ue063GamingLaks", - "isBan": false, - "isMuted": false, - "accountAge": "2021-10-09 03:31:00", - "registerOn": 1670361553.215527, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670361553.2155278, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670361553.215534, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670361553.215535, - "lastIP": "b}k~}jda`~y`", - "deviceUUID": "fa05ecad88dcac0cea773bbf429581fb6d0c59ee" - }, - "pb-IF48V3QKFw==": { - "display_string": [ - "\ue063gamerpika9", - "\ue030Android29600361" - ], - "profiles": [], - "name": "\ue063gamerpika9", - "isBan": false, - "isMuted": false, - "accountAge": "2018-12-25 09:23:11", - "registerOn": 1670361773.7463303, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670361773.746331, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670361773.7463408, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670361773.746342, - "lastIP": "a\u007fk~~kdaif{vb~l", - "deviceUUID": "d20c13beeeee9d871692a69ec903dfbf9ca4a792" - }, - "pb-IF4OU0UINQ==": { - "display_string": [ - "\ue063arijjojo" - ], - "profiles": [], - "name": "\ue063arijjojo", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-04 03:56:32", - "registerOn": 1670362056.8252099, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670362056.8252106, - "totaltimeplayer": 0, - "warnCount": 1, - "lastWarned": 1670362178.3775613, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670362056.8252203, - "lastIP": "d~va{j~~oaajdw", - "deviceUUID": "2ffb55705d62dd67f87ea2a39374f96577865825", - "cMsgCount": 0, - "lastMsgTime": 1670362227.0380926, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-IF4VVEIlVw==": { - "display_string": [ - "\ue063RockAzauru" - ], - "profiles": [], - "name": "\ue063RockAzauru", - "isBan": false, - "isMuted": false, - "accountAge": "2020-02-05 21:34:11", - "registerOn": 1670362142.5519783, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670362142.551979, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670362142.5519855, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670362142.5519862, - "lastIP": "a\u007fk~~lhaj`aiiz", - "deviceUUID": "37495b9519900935db56c4d3542a02c0bf269428" - }, - "pb-IF4nU0k7HA==": { - "display_string": [ - "\ue020Krishraj2221" - ], - "profiles": [], - "name": "\ue020Krishraj2221", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-25 17:42:51", - "registerOn": 1670362250.7658021, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670362250.7658029, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670362250.7658126, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670362275.262591, - "lastIP": "azj~z`~|`~~hf", - "deviceUUID": "100a16fba2663aff7fc8760db888937f349955a1" - }, - "pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB": { - "display_string": [ - "\ue063Rikko", - "\ue020SatellaReinhard", - "\ue047Nyaa! :3", - "\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2593\n\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2593\u2592\u2592\u2593\u2588\u2588\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2593\n\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2592\u2592\u2588\u2588\n\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2593\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\n\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2592\u2592\u2593\u2588\u2593\n\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2588\u2588\u2592\u2588\u2588\u2592\u2592\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\n\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2592\u2593\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2592\u2592\u2592\u2592\u2588\u2588\n\u2591\u2591\u2591\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2588\u2592\u2588\u2592\u2592\u2592\u2588\u2588\n\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2593\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2592\u2588\u2593\n\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2593\u2588\u2588\n\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2593\u2588\u2588\u2588\u2588\u2588\n\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2593\u2591\u2591\u2588\u2588\n\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2593\n\u2591\u2593\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\n\u2588\u2588\u2591\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\n\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2593\n\u2591\u2591\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\n\u2588\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\n\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2588\u2593\n\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2593\u2588\u2588\u2588\n\u2591\u2593\u2588\u2588\u2593\u2591\u2591\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2593\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2593\u2592\u2592\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2588\u2588\u2588\u2588\u2593\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2593\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2588\u2588\u2592\u2592\u2592\u2588\u2588\u2588\u2593\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2592\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2593\u2588\u2588\u2593\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2592\u2593\u2588\u2588\u2588\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2593\u2588\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2592\u2592\u2592\u2593\u2588\u2588\u2588\u2593\u2591\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2592\u2592\u2588\u2588\u2591\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2592\u2588\u2588\u2591\u2593\u2588\u2591\u2591\u2591\u2591\u2591\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2588\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2588\u2592\u2592\u2592\u2588\u2588\u2591\u2591\u2591\u2591\u2593\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2591\u2591\u2591\u2588\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2593\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2588\u2588\u2588\u2593\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2593\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\n\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588", - "\ue030SYSTEM ALERT CODE: 871\ue030" - ], - "profiles": [], - "name": "\ue047Nyaa! :3", - "isBan": false, - "isMuted": false, - "accountAge": "2016-06-04 13:35:45", - "registerOn": 1670362939.6814356, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670362939.681436, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670362939.6814454, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670362939.6814463, - "lastIP": "a\u007fk~}n~zo~zk", - "deviceUUID": "rikkolovescats :3", - "cMsgCount": 0, - "lastMsgTime": 1670364218.7958999, - "lastMsg": "/help", - "cSameMsg": 0 - }, - "pb-IF49U08dJg==": { - "display_string": [ - "\ue063ChewySmell" - ], - "profiles": [], - "name": "\ue063ChewySmell", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 17:34:12", - "registerOn": 1670363141.7777863, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670363141.777787, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670363141.7777963, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670363141.7777975, - "lastIP": "dvvc}vb~j~~kg", - "deviceUUID": "277c86928df4cd97c5eb9abd86addac5e959c112" - }, - "pb-IF4JU2MkFQ==": { - "display_string": [ - "\ue020BubblyPenguin8265" - ], - "profiles": [], - "name": "\ue020BubblyPenguin8265", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-10 16:39:33", - "registerOn": 1670363216.0309393, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670363216.0309398, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670363216.0309489, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670363216.0309498, - "lastIP": "azo~{l~}ihaji", - "deviceUUID": "f6f67b2189593e6e644062c8175daacb7cb36450" - }, - "pb-IF5RU2YRHw==": { - "display_string": [ - "\ue063SparklyAcc" - ], - "profiles": [], - "name": "\ue063SparklyAcc", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-13 02:09:00", - "registerOn": 1670363985.8638213, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670363985.8638217, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670363985.8638291, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670363985.8638299, - "lastIP": "awi~~ieaif~va{i", - "deviceUUID": "354451ed3a3f49b24dfde47bbb386e7b569d1bd6" - }, - "pb-IF5dVGQkFw==": { - "display_string": [ - "\ue020GoldenSasquatch4644" - ], - "profiles": [], - "name": "\ue020GoldenSasquatch4644", - "isBan": false, - "isMuted": false, - "accountAge": "2019-08-19 21:15:40", - "registerOn": 1670364633.445744, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670364633.4457448, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670364633.4457543, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670364633.4457552, - "lastIP": "cxvd\u007fvb}l~}kd", - "deviceUUID": "\u0015S\u000bW\u0003C\u0005XXPG\u0004\b\u0004\u0007\u0010U_QTBR]RUAX" - }, - "pb-IF40U3kNPQ==": { - "display_string": [ - "\ue063Cristovien" - ], - "profiles": [], - "name": "\ue063Cristovien", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-05 02:24:46", - "registerOn": 1670364815.7405884, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670364815.7405894, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670364815.7405984, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670364815.7405994, - "lastIP": "dzvazk~~neaie", - "deviceUUID": "87d91d2e2ea3b5ee4ef17412ffd622098f000967" - }, - "pb-IF4PIEQj": { - "display_string": [ - "\ue063bhalunab", - "\ue030Android45702998", - "\ue030Android45946205" - ], - "profiles": [], - "name": "\ue063bhalunab", - "isBan": false, - "isMuted": false, - "accountAge": "2017-11-27 16:12:14", - "registerOn": 1670365469.2288785, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670365469.2288795, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670365469.228893, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670365469.228894, - "lastIP": "b}k~~ohaj`wva|j", - "deviceUUID": "4cbfbddf756d149f6751b85f834d0d7939a4107a" - }, - "pb-IF5QU1IHLQ==": { - "display_string": [ - "\ue063MeowMeow12" - ], - "profiles": [], - "name": "\ue063MeowMeow12", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-07 04:29:25", - "registerOn": 1670369158.9916842, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670369158.991685, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670369158.9917173, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670369158.9917188, - "lastIP": "a|n~~mhai`}vava", - "deviceUUID": "74bffb131f7d21cece2c24cdbeea4c3247307c35" - }, - "pb-IF4BU0EoNw==": { - "display_string": [ - "\ue030Android63288818" - ], - "profiles": [], - "name": "\ue030Android63288818", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-13 06:58:55", - "registerOn": 1670371033.273494, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670371033.2734945, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670371033.273502, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670371033.2735033, - "lastIP": "g|vaxn~|n~}l", - "deviceUUID": "\u0015RU" - }, - "pb-IF4PU1BbJw==": { - "display_string": [ - "\ue030Android63991676" - ], - "profiles": [], - "name": "\ue030Android63991676", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-05 22:08:33", - "registerOn": 1670372123.3680108, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670372123.3680117, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670372123.3680212, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670372123.3680222, - "lastIP": "avi~~mfaleaia}", - "deviceUUID": "bdb9305146fd0d2f9e125b831e712e5ce1255f10" - }, - "pb-IF4GU1A5MA==": { - "display_string": [ - "\ue030Android63993917" - ], - "profiles": [], - "name": "\ue030Android63993917", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-06 06:22:57", - "registerOn": 1670372789.3913307, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670372789.391332, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670372789.3913405, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670372789.3913417, - "lastIP": "b}i~~abaih\u007fvb|a", - "deviceUUID": "7546d4790eae49ff6365b6aef2c27300bb0f669d" - }, - "pb-IF4FU24gIQ==": { - "display_string": [ - "\ue030Android62111030" - ], - "profiles": [], - "name": "\ue030Android62111030", - "isBan": false, - "isMuted": false, - "accountAge": "2022-07-20 07:00:48", - "registerOn": 1670374727.3419864, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670374727.3419871, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670374727.3419962, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670374727.3419974, - "lastIP": "b\u007fh~wa~wl~}id", - "deviceUUID": "\u0015YYRV\u0017\u0004\tYTDPTRXET_QVAYYSVDT" - }, - "pb-IF48U3pfCw==": { - "display_string": [ - "\ue063Ombala9" - ], - "profiles": [], - "name": "\ue063Ombala9", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-04 17:09:20", - "registerOn": 1670377370.9391403, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670377370.939141, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670377370.9391484, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670377370.9391496, - "lastIP": "dvvcxvavm~z`", - "deviceUUID": "e0560efe4f17d909d7f48045a039f78b338ff0b5" - }, - "pb-JiNJARBfVENAW1lIFkVRUlZBFklWRVhK": { - "display_string": [ - "\ue020spshubham12pandey", - "\ue030Android11520375" - ], - "profiles": [], - "name": "\ue020spshubham12pandey", - "isBan": false, - "isMuted": false, - "accountAge": "2017-03-30 14:55:46", - "registerOn": 1670377625.9659693, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670377625.9659698, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670377625.9659784, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670377625.9659793, - "lastIP": "a\u007fn~}iaaliai`v", - "deviceUUID": "58e61d3b59ffa117589077a2e497b4db1b69fff6" - }, - "pb-IF4wU3g8KQ==": { - "display_string": [ - "\ue030PC601395" - ], - "profiles": [], - "name": "\ue030PC601395", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-28 13:04:17", - "registerOn": 1670377678.9846752, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670377678.984676, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670377678.9846845, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670377678.9846857, - "lastIP": "a~o~}mbajayvcy", - "deviceUUID": "77279886158c9087753947d1a0fa9c79efbf65bf" - }, - "pb-IF4rVWwEVQ==": { - "display_string": [ - "\ue020AmberRingmaster22504", - "\ue030Android48547935" - ], - "profiles": [], - "name": "\ue020AmberRingmaster22504", - "isBan": false, - "isMuted": false, - "accountAge": "2020-11-30 16:01:58", - "registerOn": 1670377689.1893985, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670377689.189399, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670377689.1894069, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670377689.189408, - "lastIP": "d|vbzi~vl~}m`", - "deviceUUID": "4e29b07d2f8e230dfeed17aba1673a5a5b37f8a2" - }, - "pb-IF5VU0kDUg==": { - "display_string": [ - "\ue063PerpetualF" - ], - "profiles": [], - "name": "\ue063PerpetualF", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-15 11:02:09", - "registerOn": 1670377897.0696702, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670377897.069671, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670377897.0696793, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670377897.0696805, - "lastIP": "a|a~zvb{j~}hf", - "deviceUUID": "c8bb1cf80445fd300b235ef434f2365e7ec2c464" - }, - "pb-IF49U0QkIA==": { - "display_string": [ - "\ue063CrispyPugi" - ], - "profiles": [], - "name": "\ue063CrispyPugi", - "isBan": false, - "isMuted": false, - "accountAge": "2022-09-28 11:13:09", - "registerOn": 1670378168.061353, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670378168.0613537, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670378168.0613623, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670381262.7203743, - "lastIP": "a\u007fn~~acaie{vb~o", - "deviceUUID": "fdba05ee3301b9e8064eb819d4b1d6d993773e22", - "cMsgCount": 1, - "lastMsgTime": 1670382156.247579, - "lastMsg": "", - "cSameMsg": 0 - }, - "pb-JiNJARFcVEFFX1tBF09XUV1AGUhcRFRE": { - "display_string": [ - "\ue063MuddyFlami", - "\ue030Android14718555" - ], - "profiles": [], - "name": "\ue063MuddyFlami", - "isBan": false, - "isMuted": false, - "accountAge": "2017-05-21 19:04:57", - "registerOn": 1670379112.5147157, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670379112.5147161, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670379112.5147235, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670379112.514725, - "lastIP": "azo~zi~~mfaje~", - "deviceUUID": "8e199aa1e377b4c88f5ddade9633a0cec98d9fa1" - }, - "pb-IF4pU0UPNQ==": { - "display_string": [ - "\ue063SHEESHR10" - ], - "profiles": [], - "name": "\ue063SHEESHR10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-02 05:32:50", - "registerOn": 1670379120.5293214, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670379120.529322, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670379120.5293307, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670379120.5293317, - "lastIP": "axj~zn~}jea`h", - "deviceUUID": "16b8e407ef18c0b2a7e1c42bccaa2f5a409afc10" - }, - "pb-IF4LVU4_VA==": { - "display_string": [ - "\ue063GlossyVaca", - "\ue030Android52435993" - ], - "profiles": [], - "name": "\ue063GlossyVaca", - "isBan": false, - "isMuted": false, - "accountAge": "2021-06-04 07:14:39", - "registerOn": 1670379302.6156352, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670379302.6156359, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670379302.6157734, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670379302.6157753, - "lastIP": "a~j~~kdaocaia\u007f", - "deviceUUID": "87a76b1ce6fd187b405903d8e0242c0b084fb2bc" - }, - "pb-IF4RU04mPA==": { - "display_string": [ - "\ue020sugamkulal16" - ], - "profiles": [], - "name": "\ue020sugamkulal16", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-22 09:01:46", - "registerOn": 1670380076.037497, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670380076.0374978, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670380076.0375063, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670380076.0375073, - "lastIP": "azo~{m~~oaalg", - "deviceUUID": "2d3463ca7fc0f6c8788957abd6411b3c6fb4be7b" - }, - "pb-IF4jU0Y5FA==": { - "display_string": [ - "\ue030Android63790933" - ], - "profiles": [], - "name": "\ue030Android63790933", - "isBan": false, - "isMuted": false, - "accountAge": "2022-11-02 20:19:19", - "registerOn": 1670380324.296239, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670380324.2962394, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670380324.2962477, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670380324.2962487, - "lastIP": "a\u007fn~}j`aih\u007fvazi", - "deviceUUID": "\u0015T\b\u0005VBP\u000e\u0005S\u0017\u0004Y\u0005\u0002\u0015\u0003\\UYLTTXVLQ" - }, - "pb-IF5QU3hfHw==": { - "display_string": [ - "\ue020FunnyArrest25", - "\ue030Android62723293" - ], - "profiles": [], - "name": "\ue020FunnyArrest25", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-16 21:57:26", - "registerOn": 1670380567.7665067, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670380567.7665071, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670380567.766515, - "verified": true, - "rejoincount": 0, - "lastJoin": 1670380694.888488, - "lastIP": "a\u007fn~~ahakbaii}", - "deviceUUID": "f192fad3e50156962d576f60661f60a38b438633" - }, - "pb-IF5WU3kZAQ==": { - "display_string": [ - "\ue020HeedlessCalcium28" - ], - "profiles": [], - "name": "\ue020HeedlessCalcium28", - "isBan": false, - "isMuted": false, - "accountAge": "2022-08-27 18:49:07", - "registerOn": 1670381242.9991794, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670381242.9991798, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670381242.9991875, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670381242.9991884, - "lastIP": "azo~{l~}i`ajcx", - "deviceUUID": "dbcc5950acb4e3d2a4d1011c306d68cbc260d0ef" - }, - "pb-IF4sUm48JA==": { - "display_string": [ - "\ue063ImportantL" - ], - "profiles": [], - "name": "\ue063ImportantL", - "isBan": false, - "isMuted": false, - "accountAge": "2021-11-24 01:44:51", - "registerOn": 1670381268.0952013, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670381268.095202, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670381268.095212, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670381268.0952127, - "lastIP": "awo~}ldaogak`", - "deviceUUID": "7947fc3b9cfa04e49504c6ed248154d128dea868" - }, - "pb-IF4-VWgKNA==": { - "display_string": [ - "\ue030Android47974368" - ], - "profiles": [], - "name": "\ue030Android47974368", - "isBan": false, - "isMuted": false, - "accountAge": "2020-10-29 21:16:04", - "registerOn": 1670381700.0825047, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670381700.0825055, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670381700.0825138, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670381700.0825148, - "lastIP": "azj~zo~~acajc{", - "deviceUUID": "2ef505cfff5e924d62126b8957dcd09cefa424d2" - }, - "pb-IF4RU0UZIA==": { - "display_string": [ - "\ue063SandyProMa" - ], - "profiles": [], - "name": "\ue063SandyProMa", - "isBan": false, - "isMuted": false, - "accountAge": "2022-10-03 14:34:22", - "registerOn": 1670381749.1926086, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670381749.1926098, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670381749.192619, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670381749.19262, - "lastIP": "a\u007fn~}ifaaiamd", - "deviceUUID": "72ca345991ad08b87f76f21e47a0ced07d166a31" - }, - "pb-IF4MU08yEw==": { - "display_string": [ - "\ue063MrHacker10" - ], - "profiles": [], - "name": "\ue063MrHacker10", - "isBan": false, - "isMuted": false, - "accountAge": "2022-12-04 15:31:14", - "registerOn": 1670381785.3252378, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670381785.3252387, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670381785.3252726, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670381785.3252738, - "lastIP": "azo~{l~~ncai`\u007f", - "deviceUUID": "32f64003efb14f3e6b9e4eacc28ca930fd6be698" - }, - "pb-IF5WU2MoIA==": { - "display_string": [ - "\ue020ClearerGlory17", - "\ue030Android58760922" - ], - "profiles": [], - "name": "\ue020ClearerGlory17", - "isBan": false, - "isMuted": false, - "accountAge": "2022-06-03 12:03:40", - "registerOn": 1670381906.087257, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670381906.0872574, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670381906.0872655, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670381906.087267, - "lastIP": "b}k~~aaajcamg", - "deviceUUID": "471d8eed2b0437732bf6a05c3a5da23958103f5e", - "cMsgCount": 0, - "lastMsgTime": 1670381919.2761264, - "lastMsg": "join \ud83d\udd25dbz", - "cSameMsg": 0 - }, - "pb-IF5dDUIZ": { - "display_string": [ - "\ue063LameMotive", - "\ue030Android25310191" - ], - "profiles": [], - "name": "\ue063LameMotive", - "isBan": false, - "isMuted": false, - "accountAge": "2018-04-04 21:30:33", - "registerOn": 1670381953.969996, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670381953.9699967, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670381953.9700053, - "verified": true, - "rejoincount": 1, - "lastJoin": 1670381953.970006, - "lastIP": "d|vb{k~~obaai", - "deviceUUID": "3aa959fe21721a6ac4f98ccdafd15b7da63804f4" - }, - "pb-IF40VEocAw==": { - "display_string": [ - "\ue020kaddy2144" - ], - "profiles": [], - "name": "\ue020kaddy2144", - "isBan": false, - "isMuted": false, - "accountAge": "2020-03-25 20:24:47", - "registerOn": 1670382038.578723, - "canStartKickVote": true, - "spamCount": 0, - "lastSpam": 1670382038.5787237, - "totaltimeplayer": 0, - "warnCount": 0, - "lastWarned": 1670382038.5787332, - "verified": true, - "rejoincount": 2, - "lastJoin": 1670382043.8924859, - "lastIP": "azj~zo~{k~~nd", - "deviceUUID": "e85ca02811170ca4c683cd6ccc927f859c686eb5" - } -} \ No newline at end of file diff --git a/dist/ba_root/mods/playersdata/roles.json b/dist/ba_root/mods/playersdata/roles.json index e3da243..c566e59 100644 --- a/dist/ba_root/mods/playersdata/roles.json +++ b/dist/ba_root/mods/playersdata/roles.json @@ -71,7 +71,7 @@ "commands": [], "ids": [ "pb-IF4VAk4a", - "pb-IF5RU3EcAg==" + "pb-IF4RU2ECAg==" ] }, "bypass-warn": { diff --git a/dist/ba_root/mods/playersdata/roles.json.backup b/dist/ba_root/mods/playersdata/roles.json.backup index e3da243..c566e59 100644 --- a/dist/ba_root/mods/playersdata/roles.json.backup +++ b/dist/ba_root/mods/playersdata/roles.json.backup @@ -71,7 +71,7 @@ "commands": [], "ids": [ "pb-IF4VAk4a", - "pb-IF5RU3EcAg==" + "pb-IF4RU2ECAg==" ] }, "bypass-warn": { diff --git a/dist/ba_root/mods/plugins/bcs_plugin.py b/dist/ba_root/mods/plugins/bcs_plugin.py index 9103886..0e419a7 100644 --- a/dist/ba_root/mods/plugins/bcs_plugin.py +++ b/dist/ba_root/mods/plugins/bcs_plugin.py @@ -11,6 +11,7 @@ from functools import wraps from threading import Thread import _babase +import _bascenev1 from flask import Flask, request, jsonify # import uvicorn @@ -42,7 +43,7 @@ def check_admin(func): @wraps(func) def wrapper(*args, **kwargs): if "Secret-Key" not in request.headers or request.headers[ - "Secret-Key"] != SECRET_KEY: + "Secret-Key"] != SECRET_KEY: return jsonify({"message": "Invalid secret key provided."}), 401 return func(*args, **kwargs) @@ -277,7 +278,7 @@ def update_server_config(): def run_server(): from waitress import serve - serve(app, host="0.0.0.0", port=_babase.get_game_port()) + serve(app, host="0.0.0.0", port=_bascenev1.get_game_port()) def enable(password): diff --git a/dist/ba_root/mods/plugins/bombsquad_service.py b/dist/ba_root/mods/plugins/bombsquad_service.py index 2711afb..5c0a11f 100644 --- a/dist/ba_root/mods/plugins/bombsquad_service.py +++ b/dist/ba_root/mods/plugins/bombsquad_service.py @@ -16,6 +16,7 @@ from typing import Type import babase import bascenev1 as bs from tools import servercheck, logger, notification_manager +from tools.file_handle import OpenJson stats = {} leaderboard = {} @@ -28,11 +29,12 @@ class BsDataThread(object): def __init__(self): global stats stats["name"] = _babase.app.classic.server._config.party_name - stats["discord"] = "https://discord.gg/ucyaesh" + stats["discord"] = get_server_settings( + )["ballistica_web"]["discord_link"] stats["vapidKey"] = notification_manager.get_vapid_keys()["public_key"] self.refresh_stats_cache_timer = bs.AppTimer(8, babase.Call( - self.refreshStats) , repeat=True) + self.refreshStats), repeat=True) self.refresh_leaderboard_cache_timer = bs.AppTimer(10, babase.Call( self.refreshLeaderboard), repeat=True) @@ -98,7 +100,7 @@ class BsDataThread(object): teams = session.sessionteams for team in teams: data[str(team.id)] = {'name': team.name if isinstance(team.name, - str) else team.name, + str) else team.name.evaluate(), 'color': list(team.color), 'score': team.customdata['score'], 'players': [] @@ -116,7 +118,8 @@ class BsDataThread(object): return data -BsDataThread() +v = bs.AppTimer(8, babase.Call( + BsDataThread)) def get_stats(): @@ -191,7 +194,7 @@ def search_player_profile(search_key: str, db: str): if (search_key == key or any(search_key.lower() in s.lower() for s in selectedDB[key].get("display_string", [])) or - search_key.lower() in selectedDB[key].get("name", "").lower()): + search_key.lower() in selectedDB[key].get("name", "").lower()): matching_objects[key] = selectedDB[key] count += 1 if count > 50: @@ -216,15 +219,15 @@ def get_player_details(account_id: str): isBanned = True extra_info += " , Banned for > " + haveBanReason if account_id in pdata.get_blacklist()[ - "muted-ids"] and current_time < datetime.strptime( - pdata.get_blacklist()["muted-ids"][account_id]["till"], - "%Y-%m-%d %H:%M:%S"): + "muted-ids"] and current_time < datetime.strptime( + pdata.get_blacklist()["muted-ids"][account_id]["till"], + "%Y-%m-%d %H:%M:%S"): isMuted = True extra_info += f', Muted for > {pdata.get_blacklist()["muted-ids"][account_id]["reason"]} , till > {pdata.get_blacklist()["muted-ids"][account_id]["till"]} ,' if account_id in pdata.get_blacklist()[ - "kick-vote-disabled"] and current_time < datetime.strptime( - pdata.get_blacklist()["kick-vote-disabled"][account_id]["till"], - "%Y-%m-%d %H:%M:%S"): + "kick-vote-disabled"] and current_time < datetime.strptime( + pdata.get_blacklist()["kick-vote-disabled"][account_id]["till"], + "%Y-%m-%d %H:%M:%S"): isKickVoteDisabled = True extra_info += f', Kick vote disabled for > {pdata.get_blacklist()["kick-vote-disabled"][account_id]["reason"]} , till > {pdata.get_blacklist()["kick-vote-disabled"][account_id]["till"]} ' @@ -271,10 +274,10 @@ def get_server_config(): def update_server_config(config): current_dir = os.getcwd() - file_path = os.path.join(current_dir, '..', 'config.yaml') + file_path = os.path.join(current_dir, '..', 'config.json') - with open(file_path, "w") as f: - f.write(yaml.dump(config)) + with OpenJson(file_path) as f: + f.dump(config, indent=4) def do_action(action, value): diff --git a/dist/ba_root/mods/plugins/character_chooser.py b/dist/ba_root/mods/plugins/character_chooser.py index 33955e1..c89cfbe 100644 --- a/dist/ba_root/mods/plugins/character_chooser.py +++ b/dist/ba_root/mods/plugins/character_chooser.py @@ -1,4 +1,4 @@ -# ba_meta require api 8 +# ba_meta require api 9 ''' Character Chooser by Mr.Smoothy @@ -36,7 +36,6 @@ from typing import TYPE_CHECKING import babase import bauiv1 as bui -from babase._error import print_error from babase._language import Lstr if TYPE_CHECKING: @@ -248,11 +247,11 @@ def handlemessage(self, msg: Any) -> Any: # If we've been removed from the lobby, ignore this stuff. if self._dead: - print_error('chooser got ChangeMessage after dying') + print('chooser got ChangeMessage after dying') return if not self._text_node: - print_error('got ChangeMessage after nodes died') + print('got ChangeMessage after nodes died') return if msg.what == 'characterchooser': self._click_sound.play() diff --git a/dist/ba_root/mods/plugins/elPatronPowerups.py b/dist/ba_root/mods/plugins/elPatronPowerups.py index 8ccd0f6..6f23a11 100644 --- a/dist/ba_root/mods/plugins/elPatronPowerups.py +++ b/dist/ba_root/mods/plugins/elPatronPowerups.py @@ -15,6 +15,8 @@ from bascenev1lib.mainmenu import (MainMenuActivity, MainMenuSession) from bascenev1lib.actor.popuptext import PopupText from bauiv1lib.confirm import ConfirmWindow from bascenev1lib.actor.spaz import * +from bascenev1lib.actor.bomb import BombFactory + if TYPE_CHECKING: pass @@ -38,9 +40,9 @@ def getlanguage(text, subs: str = None, almacen: list = []): "English": "Powerups", "Portuguese": "Powerups"}, "Action 2": - {"Spanish": "Configuración", + {"Spanish": "Configuración", "English": "Settings", - "Portuguese": "Definições"}, + "Portuguese": "Definições"}, "Action 3": {"Spanish": "Extras", "English": "Extras", @@ -50,9 +52,9 @@ def getlanguage(text, subs: str = None, almacen: list = []): "English": "Store", "Portuguese": "Loja"}, "Action 5": - {"Spanish": "Canjear código", + {"Spanish": "Canjear código", "English": "Enter Code", - "Portuguese": "Código promocional"}, + "Portuguese": "Código promocional"}, "Custom": {"Spanish": "", "English": "Customize", @@ -78,25 +80,25 @@ def getlanguage(text, subs: str = None, almacen: list = []): "English": "Expansive bombs", "Portuguese": "Bombas expansivas"}, "Goodbye": - {"Spanish": "¡Hasta luego!", + {"Spanish": "¡Hasta luego!", "English": "Goodbye!", "Portuguese": "Adeus!"}, "Healing Damage": - {"Spanish": "Auto-curación", + {"Spanish": "Auto-curación", "English": "Healing Damage", "Portuguese": "Auto-cura"}, "Tank Shield": - {"Spanish": "Súper blindaje", + {"Spanish": "Súper blindaje", "English": "Reinforced shield", - "Portuguese": "Escudo reforçado"}, + "Portuguese": "Escudo reforçado"}, "Tank Shield PTG": - {"Spanish": "Porcentaje de disminución", + {"Spanish": "Porcentaje de disminución", "English": "Percentage decreased", "Portuguese": "Percentual reduzido"}, "Healing Damage PTG": - {"Spanish": "Porcentaje de recuperación de salud", + {"Spanish": "Porcentaje de recuperación de salud", "English": "Percentage of health recovered", - "Portuguese": "Porcentagem de recuperação de saúde"}, + "Portuguese": "Porcentagem de recuperação de saúde"}, "SY: BALL": {"Spanish": "Esfera", "English": "Sphere", @@ -110,7 +112,7 @@ def getlanguage(text, subs: str = None, almacen: list = []): "English": "Egg shape", "Portuguese": "Ovo"}, "Powerup Scale": - {"Spanish": "Tamaño del potenciador", + {"Spanish": "Tamaño del potenciador", "English": "Powerups size", "Portuguese": "Tamanho de powerups"}, "Powerup With Shield": @@ -120,7 +122,7 @@ def getlanguage(text, subs: str = None, almacen: list = []): "Powerup Time": {"Spanish": "Mostrar Temporizador", "English": "Show end time", - "Portuguese": "Mostrar cronômetro"}, + "Portuguese": "Mostrar cronômetro"}, "Powerup Style": {"Spanish": "Forma de los potenciadores", "English": "Shape of powerup", @@ -134,7 +136,7 @@ def getlanguage(text, subs: str = None, almacen: list = []): "English": "Show percentage", "Portuguese": "Mostrar porcentagem"}, "Only Items": - {"Spanish": "Sólo Accesorios", + {"Spanish": "Sólo Accesorios", "English": "Only utensils", "Portuguese": "Apenas utensilios"}, "New": @@ -142,7 +144,7 @@ def getlanguage(text, subs: str = None, almacen: list = []): "English": "New", "Portuguese": "Novo"}, "Only Bombs": - {"Spanish": "Sólo Bombas", + {"Spanish": "Sólo Bombas", "English": "Only bombs", "Portuguese": "Apenas bombas"}, "Coins 0": @@ -154,7 +156,7 @@ def getlanguage(text, subs: str = None, almacen: list = []): "English": "Successful purchase", "Portuguese": "Compra Bem Sucedida"}, "Double Product": - {"Spanish": "Ya has comprado este artículo", + {"Spanish": "Ya has comprado este artículo", "English": "You've already bought this", "Portuguese": "Voce ja comprou isto"}, "Bought": @@ -163,13 +165,13 @@ def getlanguage(text, subs: str = None, almacen: list = []): "Portuguese": "Comprou"}, "Confirm Purchase": { - "Spanish": f'Tienes {subs} monedas. {_sp_} ¿Deseas comprar esto?', + "Spanish": f'Tienes {subs} monedas. {_sp_} ¿Deseas comprar esto?', "English": f'You have {subs} coins. {_sp_} Do you want to buy this?', - "Portuguese": f'Você tem {subs} moedas. {_sp_} Deseja comprar isto?'}, + "Portuguese": f'Você tem {subs} moedas. {_sp_} Deseja comprar isto?'}, "FireBombs Store": {"Spanish": 'Bombas de fuego', "English": 'Fire bombs', - "Portuguese": 'Bombas de incêndio'}, + "Portuguese": 'Bombas de incêndio'}, "Timer Store": {"Spanish": 'Temporizador', "English": 'Timer', @@ -180,43 +182,43 @@ def getlanguage(text, subs: str = None, almacen: list = []): "Portuguese": 'Extras'}, "Block Option Store": { - "Spanish": f"Uuups..{_sp_}Esta opción está bloqueada.{_sp_} Para acceder a ella puedes {_sp_} comprarla en la tienda.{_sp_} Gracias...", + "Spanish": f"Uuups..{_sp_}Esta opción está bloqueada.{_sp_} Para acceder a ella puedes {_sp_} comprarla en la tienda.{_sp_} Gracias...", "English": f"Oooops...{_sp_}This option is blocked. {_sp_} To access it you can buy {_sp_} it in the store.{_sp_} Thank you...", - "Portuguese": f"Ooops...{_sp_}Esta opção está bloqueada. {_sp_} Para acessá-lo, você pode {_sp_} comprá-lo na loja.{_sp_} Obrigado..."}, + "Portuguese": f"Ooops...{_sp_}Esta opção está bloqueada. {_sp_} Para acessá-lo, você pode {_sp_} comprá-lo na loja.{_sp_} Obrigado..."}, "True Code": - {"Spanish": "¡Código canjeado!", + {"Spanish": "¡Código canjeado!", "English": "Successful code!", - "Portuguese": "¡Código válido!"}, + "Portuguese": "¡Código válido!"}, "False Code": - {"Spanish": "Código ya canjeado", + {"Spanish": "Código ya canjeado", "English": "Expired code", - "Portuguese": "Código expirado"}, + "Portuguese": "Código expirado"}, "Invalid Code": - {"Spanish": "Código inválido", + {"Spanish": "Código inválido", "English": "Invalid code", - "Portuguese": "Código inválido"}, + "Portuguese": "Código inválido"}, "Reward Code": - {"Spanish": f"¡Felicitaciones! ¡Ganaste {subs} monedas!", + {"Spanish": f"¡Felicitaciones! ¡Ganaste {subs} monedas!", "English": f"Congratulations! You've {subs} coins", - "Portuguese": f"Parabéns! Você tem {subs} moedas"}, + "Portuguese": f"Parabéns! Você tem {subs} moedas"}, "Creator": - {"Spanish": "Mod creado por @PatrónModz", - "English": "Mod created by @PatrónModz", - "Portuguese": "Mod creado by @PatrónModz"}, + {"Spanish": "Mod creado por @PatrónModz", + "English": "Mod created by @PatrónModz", + "Portuguese": "Mod creado by @PatrónModz"}, "Mod Info": { - "Spanish": f"Un mod genial que te permite gestionar {_sp_} los potenciadores a tu antojo. {_sp_} también incluye 8 potenciadores extra{_sp_} dejando 17 en total... ¡Guay!", + "Spanish": f"Un mod genial que te permite gestionar {_sp_} los potenciadores a tu antojo. {_sp_} también incluye 8 potenciadores extra{_sp_} dejando 17 en total... ¡Guay!", "English": f"A cool mod that allows you to manage {_sp_} powerups at your whims. {_sp_} also includes 8 extra powerups{_sp_} leaving 17 in total... Wow!", - "Portuguese": f"Um mod legal que permite que você gerencie os{_sp_} powerups de de acordo com seus caprichos. {_sp_} também inclui 8 powerups extras,{_sp_} deixando 17 no total... Uau!"}, + "Portuguese": f"Um mod legal que permite que você gerencie os{_sp_} powerups de de acordo com seus caprichos. {_sp_} também inclui 8 powerups extras,{_sp_} deixando 17 no total... Uau!"}, "Coins Message": {"Spanish": f"Recompensa: {subs} Monedas", "English": f"Reward: {subs} Coins", "Portuguese": f"Recompensa: {subs} Moedas"}, "Coins Limit Message": { - "Spanish": f"Ganaste {almacen[0]} Monedas.{_sp_} Pero has superado el límite de {almacen[1]}", + "Spanish": f"Ganaste {almacen[0]} Monedas.{_sp_} Pero has superado el límite de {almacen[1]}", "English": f"You won {almacen[0]} Coins. {_sp_} But you have exceeded the limit of {almacen[1]}", - "Portuguese": f"Você ganhou {almacen[0]} Moedas. {_sp_} Mas você excedeu o limite de {almacen[1]}"}, + "Portuguese": f"Você ganhou {almacen[0]} Moedas. {_sp_} Mas você excedeu o limite de {almacen[1]}"}, } languages = ['Spanish', 'Portuguese', 'English'] if lang not in languages: lang = 'English' @@ -611,15 +613,18 @@ def _bomb_init(self, bomb_scale: float = 1.0, source_player: bs.Player = None, owner: bs.Node = None): + self.bm_type = bomb_type - new_bomb_type = bomb_type - bombs = ['ice_bubble', 'impairment', 'fire', 'fly'] + new_bomb_type = 'ice' if bomb_type in ['ice_bubble', 'impairment', 'fire', 'fly'] else bomb_type - if bomb_type in bombs: - new_bomb_type = 'ice' - - self._pm_old_bomb(position, velocity, new_bomb_type, blast_radius, - bomb_scale, source_player, owner) + # Call original __init__ + self._pm_old_bomb(position=position, + velocity=velocity, + bomb_type=new_bomb_type, + blast_radius=blast_radius, + bomb_scale=bomb_scale, + source_player=source_player, + owner=owner) tex = self.node.color_texture @@ -627,21 +632,21 @@ def _bomb_init(self, self.bomb_type = self.bm_type self.node.mesh = None self.shield_ice = bs.newnode('shield', owner=self.node, - attrs={'color': (0.5, 1.0, 7.0), - 'radius': 0.6}) + attrs={'color': (0.5, 1.0, 7.0), 'radius': 0.6}) self.node.connectattr('position', self.shield_ice, 'position') + elif self.bm_type == 'fire': self.bomb_type = self.bm_type self.node.mesh = None self.shield_fire = bs.newnode('shield', owner=self.node, - attrs={'color': (6.5, 6.5, 2.0), - 'radius': 0.6}) + attrs={'color': (6.5, 6.5, 2.0), 'radius': 0.6}) self.node.connectattr('position', self.shield_fire, 'position') - self.fire_effect_time = bs.Timer(0.1, babase.Call(fire_effect, self), - repeat=True) + self.fire_effect_time = bs.Timer(0.1, babase.Call(fire_effect, self), repeat=True) + elif self.bm_type == 'impairment': self.bomb_type = self.bm_type tex = bs.gettexture('eggTex3') + elif self.bm_type == 'fly': self.bomb_type = self.bm_type tex = bs.gettexture('eggTex1') @@ -655,6 +660,8 @@ def _bomb_init(self, self.blast_radius *= 2.2 + + def bomb_handlemessage(self, msg: Any) -> Any: assert not self.expired @@ -814,7 +821,7 @@ def _pbx_(self, position: Sequence[float] = (0.0, 1.0, 0.0), 0.6: (0, 1, 0), 0.8: (0, 1, 1), 1.0: (1, 0, 1), - 1.2: (1, 0, 0)}, True) + 1.2: (1, 0, 0)}) def update_time(time): if self.texts['Time'].exists(): diff --git a/dist/ba_root/mods/port.py b/dist/ba_root/mods/port.py deleted file mode 100644 index 83e0f4e..0000000 --- a/dist/ba_root/mods/port.py +++ /dev/null @@ -1,167 +0,0 @@ -# Usage: port_7_to_8.py - -import os -import re - - -def port(file_path): - with open(file_path, "rb") as fin: - print("Porting " + os.path.basename(file_path)) - content = fin.read().decode("utf-8") - if "# ba_meta require api 8" in content: - return - content = content.replace("# ba_meta require api 7", - "# ba_meta require api 8") - content = content.replace("# ba_meta export game", - "# ba_meta export bascenev1.GameActivity") - - content = content.replace("user_agent_string", "legacy_user_agent_string") - content = content.replace("_ba.", "_babase.") - content = content.replace("_ba.", "_babase.") - content = content.replace("ba.", "babase.") - content = content.replace("import _ba\n", "import _babase") - content = re.sub(r'\bimport _ba\b', "import _babase", content) - content = re.sub(r'\bimport ba(\b|\.(\w+))', - "import babase\nimport bauiv1 as bui\nimport bascenev1 as bs", - content) - content = content.replace("babase.app.ui", "bui.app.ui_v1") - content = content.replace("babase.app.accounts_v1", - "bui.app.classic.accounts") - - ################################################################################### - # Comment out one of these as per your requirements, depending whether to - # stay local or if it'll also be needed to transmitted to the clients. - - ## For local: - if bool(False): - content = content.replace("_babase.screenmessage", "bui.screenmessage") - content = content.replace("babase.screenmessage", "bui.screenmessage") - content = content.replace("babase.getsound", "bui.getsound") - content = content.replace("babase.gettexture", "bui.gettexture") - content = content.replace("babase.getmesh", "bui.getmesh") - content = content.replace("babase.getcollisionmesh", - "bui.getcollisionmesh") - else: - ## For transmission: - content = content.replace("babase.screenmessage", "bs.broadcastmessage") - content = content.replace("babase.getsound", "bs.getsound") - content = content.replace("babase.getmesh", "bs.getmesh") - content = content.replace("babase.getcollisionmesh", - "bs.getcollisionmesh") - ################################################################################### - content = content.replace("babase.open_url", "bui.open_url") - content = content.replace("babase.IntSetting", "bs.IntSetting") - content = content.replace("babase.IntChoiceSetting", "bs.IntChoiceSetting") - content = content.replace("babase.FloatChoiceSetting", - "bs.FloatChoiceSetting") - content = content.replace("babase.BoolSetting", "bs.BoolSetting") - content = content.replace("babase.Actor", "bs.Actor") - content = content.replace("babase.Player", "bs.Player") - content = content.replace("babase.PlayerDiedMessage", - "bs.PlayerDiedMessage") - content = content.replace("babase.time", "bs.time") - content = content.replace("babase.Timer", "bs.Timer") - content = content.replace("babase.newnode", "bs.newnode") - content = content.replace("babase.Node", "bs.Node") - content = content.replace("babase.emitfx", "bs.emitfx") - content = content.replace("babase.animate", "bs.animate") - content = content.replace("babase.FreeForAllSession", - "bs.FreeForAllSession") - content = content.replace("babase.DualTeamSession", "bs.DualTeamSession") - content = content.replace("babase.MultiTeamSession", "bs.MultiTeamSession") - content = content.replace("babase.TeamGameActivity", "bs.TeamGameActivity") - content = content.replace("babase.Team", "bs.Team") - content = content.replace("babase.Session", "bs.Session") - content = content.replace("babase.Material", "bs.Material") - content = content.replace("babase.WeakCall", "bs.WeakCall") - content = content.replace("babase.DieMessage", "bs.DieMessage") - content = content.replace("babase.OutOfBoundsMessage", - "bs.OutOfBoundsMessage") - content = content.replace("babase.DroppedMessage", "bs.DroppedMessage") - content = content.replace("babase.HitMessage", "bs.HitMessage") - content = content.replace("babase.NotFoundError", "bs.NotFoundError") - content = content.replace("babase.getcollision", "bs.getcollision") - content = content.replace("babase.app.lang", "bs.app.lang") - content = content.replace("babase.MusicType", "bs.MusicType") - content = content.replace("babase.gettexture", "bs.gettexture") - content = content.replace("babase.getactivity", "bs.getactivity") - content = content.replace("babase.getactivity", "bs.getactivity") - content = content.replace("babase.CelebrateMessage", "bs.CelebrateMessage") - content = content.replace("babase.ScoreConfig", "bs.ScoreConfig") - content = content.replace("babase.ScoreType", "bs.ScoreType") - content = content.replace("babase.GameResults", "bs.GameResults") - content = content.replace("babase.getmaps", "bs.app.classic.getmaps") - content = content.replace("babase.cameraflash", "bs.cameraflash") - content = content.replace("babase.getmodel", "bs.getmesh") - content = content.replace("model", "mesh") - - content = content.replace("babase.Window", "bui.Window") - content = content.replace("babase.Widget", "bui.Widget") - content = content.replace("babase.widget", "bui.widget") - content = content.replace("babase.containerwidget", "bui.containerwidget") - content = content.replace("babase.scrollwidget", "bui.scrollwidget") - content = content.replace("babase.buttonwidget", "bui.buttonwidget") - content = content.replace("babase.textwidget", "bui.textwidget") - content = content.replace("babase.checkboxwidget", "bui.checkboxwidget") - content = content.replace("babase.imagewidget", "bui.imagewidget") - content = content.replace("_bui", "bui") - # Converting `ba.playsound(abc)` to `abc.play()` is tricky. - # Do it manually in case regex substitution fails. - content = re.sub( - r'babase\.playsound\(\s*([^,\n]+),\s*([^,\n]+),\s*position=([^,\n]+)\)', - r'\1.play(\2, position=\3)', - content, - flags=re.MULTILINE - ) - content = re.sub("babase\.playsound\((.+?), (.+?), (.+?)\)", - "\\1.play(\\2, \\3)", content) - content = re.sub( - r'babase\.playsound\(([^,\n]+),\s*position=([^,\n]+)\)', - r'\1.play(position=\2)', - content - ) - content = re.sub("babase\.playsound\((.*)\)", "\\1.play()", content) - - content = content.replace("babase.internal.add_transaction", - "bui.app.plus.add_v1_account_transaction") - content = content.replace("babase.internal.run_transaction", - "bui.app.plus.run_v1_account_transaction") - content = content.replace("_babase.add_transaction", - "bui.app.plus.add_v1_account_transaction") - content = content.replace("_babase.run_transactions", - "bui.app.plus.run_v1_account_transactions") - content = content.replace("_babase.InputType", "babase.InputType") - content = content.replace("bastd.ui", "bauiv1lib") - content = content.replace("bastd", "bascenev1lib") - content = content.replace("timetype=", "") - content = content.replace("babase.columnwidget", "bui.columnwidget") - content = content.replace("_babase.get_chat_messages", - "bs.get_chat_messages") - content = content.replace("_babase.get_foreground_host_session", - "bs.get_foreground_host_session") - content = re.sub(r'bs\.Timer\(([^)]*)\bTimeType\.REAL\b([^)]*)\)', - r'babase.AppTimer(\1\2)', content) - print("Done porting to API 8 " + os.path.basename(file_path)) - with open(file_path, "w") as f: - f.write(content) - - -def list_python_files(directory='.'): - python_files = [] - - for dirpath, dirnames, filenames in os.walk(directory): - for filename in filenames: - if filename.endswith('.py'): - python_files.append(os.path.join(dirpath, filename)) - - return python_files - - -def start(): - current_directory = os.getcwd() - py_files = list_python_files(current_directory) - for file in py_files: - port(file) - - -start() diff --git a/dist/ba_root/mods/serverdata/Chat Logs.log b/dist/ba_root/mods/serverdata/Chat Logs.log deleted file mode 100644 index bbf0fe0..0000000 --- a/dist/ba_root/mods/serverdata/Chat Logs.log +++ /dev/null @@ -1,3872 +0,0 @@ -2023-06-04 14:09:15.702859 + : Host msg: | Only 1 player per IP allowed, disconnecting this device. -2023-06-04 14:21:23.153191 + : pb-IF43UGkpIw== | Gratefu472 | Flynn | ** -2023-06-04 14:23:17.267534 + : Host msg: | BCS new server arrived -2023-06-04 14:23:17.267662 + : Host msg: | '3 Team walla server' -2023-06-04 14:23:17.267687 + : Host msg: | must try, and give us your feedbacks -2023-06-04 14:33:32.042827 + : Host msg: | Only 1 player per IP allowed, disconnecting this device. -2023-06-04 15:08:33.260160 + : Host msg: | Only 1 player per IP allowed, disconnecting this device. -2023-06-04 15:22:42.256823 + : Host msg: | Monkey D L... started a kick vote for Android650... -2023-06-04 15:22:45.924978 + : Host msg: | Kicked "Android650..." -2023-06-04 15:23:48.205613 + : Host msg: | Monkey D L... started a kick vote for fazalVenge -2023-06-04 15:23:51.143930 + : Host msg: | Kicked "fazalVenge" -2023-06-04 15:28:17.272209 + : Host msg: | BCS new server arrived -2023-06-04 15:28:17.272370 + : Host msg: | '3 Team walla server' -2023-06-04 15:28:17.272391 + : Host msg: | must try, and give us your feedbacks -2023-06-04 15:41:33.866354 + : pb-IF4MUlYtUQ== | RANDOMIZER | 1🤜🧍‍♂️ | end -2023-06-04 15:41:33.866614 + : Host msg: | end vote started -2023-06-04 15:41:33.866917 + : Host msg: | end vote succeed -2023-06-04 15:41:47.125409 + : pb-IF4MUlYtUQ== | RANDOMIZER | 1🤜🧍‍♂️ | end -2023-06-04 16:03:11.172001 + : Host msg: | Server will restart on next opportunity. (series end) -2023-06-04 16:03:50.925098 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | hey nameless -2023-06-04 16:04:22.078813 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | y no one joining now in bcs teams -2023-06-04 16:04:27.346478 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | wow har -2023-06-04 16:07:12.987225 + : Host msg: | BCS new server arrived -2023-06-04 16:07:12.987282 + : Host msg: | '3 Team walla server' -2023-06-04 16:07:12.987470 + : Host msg: | must try, and give us your feedbacks -2023-06-04 16:07:26.827874 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Chunk | bombsqua -2023-06-04 16:07:32.195386 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | what -2023-06-04 16:07:40.107845 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Chunk | come to sahilp -2023-06-04 16:07:43.605075 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | ok -2023-06-04 16:31:22.704286 + : pb-IF4sUGMeVA== | SSundee | YES!! | uhh sir bcs can you join please -2023-06-04 16:45:54.939646 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | ? -2023-06-04 16:47:20.105288 + : pb-IF4VU3laVA== | Android63074779 | krooran | -2023-06-04 16:47:49.953252 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | ༆ɪƬs ᴍᴇ༆ go in blue -2023-06-04 16:47:54.350816 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | k -2023-06-04 16:48:39.029584 + : pb-IF4jUBMiCg== | GovindV755 | GovindV755 | /end -2023-06-04 16:49:32.064972 + : pb-IF4jUBMiCg== | GovindV755 | GovindV755 | yeeeeee -2023-06-04 16:50:51.986833 + : Host msg: | lolan✨ started a kick vote for ATTACKER -2023-06-04 17:00:15.272947 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-04 17:05:15.054941 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-04 17:05:15.294783 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-04 17:05:15.438452 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-04 17:06:36.350276 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | /me -2023-06-04 17:06:36.372778 + : Host msg: | Score:77679 -2023-06-04 17:06:36.372826 + : Host msg: | Games:1540 -2023-06-04 17:06:36.373065 + : Host msg: | Kills:4248 -2023-06-04 17:06:36.373246 + : Host msg: | Deaths:3350 -2023-06-04 17:06:36.373262 + : Host msg: | Avg.:50.44 -2023-06-04 17:12:04.975481 + : Host msg: | BCS new server arrived -2023-06-04 17:12:04.975548 + : Host msg: | '3 Team walla server' -2023-06-04 17:12:04.976123 + : Host msg: | must try, and give us your feedbacks -2023-06-04 17:18:38.422819 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | gg🥹 -2023-06-04 17:22:39.765281 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | laule -2023-06-04 17:22:49.123209 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | are thunder waa -2023-06-04 17:22:58.540505 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | #3 pe pahcuh gye -2023-06-04 17:23:03.533685 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | 🥲 -2023-06-04 17:23:10.681940 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | ha khela nhi ek hafta so -2023-06-04 17:23:25.425407 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | Abe khela nhi to itna aggressive ho hye -2023-06-04 17:23:55.230969 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | Haa hath Beth nhi rha be😂 -2023-06-04 17:24:02.879846 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | 😂 -2023-06-04 17:24:09.785213 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | aao pelta hu tumhe🌚 -2023-06-04 17:24:44.577600 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | Haa pel le bhai -2023-06-04 17:24:50.004986 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | 🥲 -2023-06-04 17:25:51.612625 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | spam kr rahe kya💀💀💀 -2023-06-04 17:26:24.531222 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | ruk 2 min.. cl chalu hai -2023-06-04 17:26:29.994049 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | ok -2023-06-04 17:26:51.985625 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | 😂 -2023-06-04 17:26:52.132387 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 17:28:29.976964 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | dekha.. can't play🥹 -2023-06-04 17:28:36.077666 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | 🥲 -2023-06-04 17:28:42.206126 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | mujhse to sahi khel rahe -2023-06-04 17:29:21.056112 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | bç -2023-06-04 17:29:43.357707 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | 🥹😂 -2023-06-04 17:30:38.462946 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | -2023-06-04 17:30:38.593043 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | -2023-06-04 17:30:42.006353 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | Abe yar -2023-06-04 17:31:11.849121 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | -2023-06-04 17:31:11.966878 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | -2023-06-04 17:31:37.502299 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | -2023-06-04 17:31:49.551755 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | -2023-06-04 17:31:54.717904 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | fight Beth hi nhi rhi -2023-06-04 17:32:46.836416 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | 🥹🥹 -2023-06-04 17:33:04.304685 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | kide pde tuze thunder😂 -2023-06-04 17:33:20.880696 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | 🥲🥲🥲🐰 -2023-06-04 17:35:21.355581 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | 🙂 -2023-06-04 17:35:40.593393 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | bç -2023-06-04 17:35:55.009507 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | Abe ruk jaaa -2023-06-04 17:36:29.584818 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | bhak be -2023-06-04 17:36:32.771351 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | 🥲 -2023-06-04 17:36:48.564376 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | 🥹😂 -2023-06-04 17:36:49.028517 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | -2023-06-04 17:38:10.346289 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | 🥹 -2023-06-04 17:38:11.445072 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | 🤣🤣🤣 -2023-06-04 17:38:21.293932 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | kismat me hi l@ude likhe h -2023-06-04 17:38:33.436420 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Ainesh0001 -2023-06-04 17:38:33.583747 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | hm....😂 -2023-06-04 17:38:34.091099 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | 😂😂 -2023-06-04 17:38:42.994915 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | sorry Athena -2023-06-04 17:38:48.979790 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | 🥲ni bolunga ab -2023-06-04 17:39:03.737200 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | bhai gandhe words mat bol.. 🥲 -2023-06-04 17:39:09.666779 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | 🥲🥲ha bhai -2023-06-04 17:39:17.683491 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | hm gud boy -2023-06-04 17:39:43.933586 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | Bhai kya kharab kismat h -2023-06-04 17:41:00.856011 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | 🥹 -2023-06-04 17:41:26.959511 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | abeeee -2023-06-04 17:43:44.999214 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | kaisa feka be tuze😂 -2023-06-04 17:44:27.444487 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | arr -2023-06-04 17:46:00.917304 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | thunder rheta kha hai tu -2023-06-04 17:46:03.834124 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | wo to maine thodi daya dikha di🥹🥹 -2023-06-04 17:46:13.466126 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | Mai apne Ghar pe rehta hu -2023-06-04 17:46:18.805890 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | 😃 -2023-06-04 17:46:21.653201 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | are bisi😒 -2023-06-04 17:46:28.727283 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | city bol -2023-06-04 17:46:33.903745 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | kanpur -2023-06-04 17:47:00.913539 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | are pan khake khi bhi thukna mna hai bisi😂 -2023-06-04 17:47:07.041051 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | ab kya city udwa doge kya🥹 -2023-06-04 17:47:14.451551 + : pb-IF4cUktZNg== | Ainesh0001 | waltuh white | 😂😂😂 -2023-06-04 17:49:37.041423 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 17:51:02.634461 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 17:51:07.520817 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | end -2023-06-04 17:51:07.521044 + : Host msg: | end vote started -2023-06-04 17:51:14.165104 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | end -2023-06-04 17:51:20.692839 + : pb-IF4VUlcBVQ== | YashRenoun | Mrͥsiͣnͫgђ | end -2023-06-04 17:51:20.692983 + : Host msg: | end vote succeed -2023-06-04 17:51:25.073090 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | 🥹 -2023-06-04 17:52:06.579697 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 17:52:07.614022 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 17:52:32.804656 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 17:52:41.973854 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | bç ruko apna asli roop lane do -2023-06-04 17:53:00.029997 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | nvm -2023-06-04 17:53:31.708912 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | Abe oye🗿 -2023-06-04 17:54:04.828608 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | asli Mai hu🗿🔫 -2023-06-04 17:54:18.611088 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | me hu -2023-06-04 17:54:22.375812 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | me hu -2023-06-04 17:54:47.862052 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | dekha🗿 -2023-06-04 17:54:51.699780 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | 👌 -2023-06-04 17:54:55.494117 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | bhai ye attacker khali bomb fekne ata hai -2023-06-04 17:55:00.346980 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | 🤣🤣🤣 -2023-06-04 17:56:55.307797 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 17:57:30.653274 + : pb-IF4rV3cFEg== | Cinnamon | Boomer | -2023-06-04 17:57:31.882591 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | 😂😂 -2023-06-04 17:58:24.201909 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 17:59:41.292501 + : Host msg: | Only 1 player per IP allowed, disconnecting this device. -2023-06-04 18:01:15.299939 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 18:01:30.628935 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | attacker ka bhai aa gya -2023-06-04 18:03:02.890447 + : pb-IF4rV3cFEg== | Cinnamon | Boomer | -2023-06-04 18:03:24.290518 + : pb-IF4rV3cFEg== | Cinnamon | Boomer | -2023-06-04 18:03:58.094398 + : Host msg: | BurlyBron2 started a kick vote for 🥶snow man ... -2023-06-04 18:04:02.522360 + : pb-IF4rV3cFEg== | Cinnamon | Boomer | u guys gonna play seriously or what -2023-06-04 18:04:04.048141 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | wait -2023-06-04 18:04:10.122597 + : pb-IF4PU2Y6VQ== | BurlyBron2 | BurlyBron2 | guess ye vote kisk liye hai -2023-06-04 18:07:43.589870 + : pb-IF4rV3cFEg== | Cinnamon | Thunder | -2023-06-04 18:07:50.032955 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | -2023-06-04 18:08:01.407084 + : pb-IF4rV3cFEg== | Cinnamon | Thunder | so weak -2023-06-04 18:08:38.949308 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | ye kya huwa🥲 -2023-06-04 18:08:47.575029 + : pb-IF4rV3cFEg== | Cinnamon | Thunder | so weak -2023-06-04 18:09:38.089184 + : pb-IF4rV3cFEg== | Cinnamon | Thunder | so weak -2023-06-04 18:09:58.586674 + : Host msg: | Only 1 player per IP allowed, disconnecting this device. -2023-06-04 18:10:47.193605 + : pb-IF4rV3cFEg== | Cinnamon | Thunder | so weak u fell down the balcony -2023-06-04 18:11:39.649577 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | Acha Shana ban rha hai kya tu.. ruk abhi🥲😂 -2023-06-04 18:11:53.883970 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | 😂 -2023-06-04 18:13:20.531922 + : pb-IF4TUxEoKg== | TUJABAAP00 | TUJABAAP00 | -2023-06-04 18:13:32.963492 + : pb-IF4rV3cFEg== | Cinnamon | Thunder | so weakness -2023-06-04 18:15:45.546624 + : pb-IF4rV3cFEg== | Cinnamon | Thunder | so weakk -2023-06-04 18:17:04.968543 + : Host msg: | BCS new server arrived -2023-06-04 18:17:04.968605 + : Host msg: | '3 Team walla server' -2023-06-04 18:17:04.969309 + : Host msg: | must try, and give us your feedbacks -2023-06-04 18:17:40.531252 + : pb-IF4rV3cFEg== | Cinnamon | Thunder | so weak -2023-06-04 18:23:07.141149 + : pb-IF4jF1NY | Hoemie | Hoemlander | ek blue me jaao -2023-06-04 18:29:18.090069 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-04 18:29:23.139687 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | yo guys -2023-06-04 18:30:18.271963 + : Host msg: | Sense¡ started a kick vote for Tera baap -2023-06-04 18:30:50.591247 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | athena do u banned clearcusto? -2023-06-04 18:31:03.488414 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | no -2023-06-04 18:31:47.006668 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-04 18:32:12.490139 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | wth bro -2023-06-04 18:32:17.627948 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | i mean sis -2023-06-04 18:32:34.138590 + : pb-IF4AUGhcMQ== | sushant99g | sushant99g | bhaag -2023-06-04 18:35:35.362190 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | ah boring -2023-06-04 18:35:44.290878 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | athena u r Indian ? -2023-06-04 18:35:49.813916 + : pb-IF4WUGczMQ== | StockyFram | StockyFram | faizan lomde -2023-06-04 18:35:51.485020 + : pb-IF4jF1NY | Hoemie | Hoemlander | greek -2023-06-04 18:35:59.559791 + : pb-IF4jF1NY | Hoemie | Hoemlander | kaun hai? -2023-06-04 18:36:33.374579 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | 𝑨𝒕𝒉𝒆𝒏𝒂 -2023-06-04 18:36:43.409216 + : pb-IF4WUGczMQ== | StockyFram | StockyFram | acid bhai -2023-06-04 18:36:55.095200 + : pb-IF4jF1NY | Hoemie | Hoemlander | oh -2023-06-04 18:36:59.295126 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | sry my bed -2023-06-04 18:37:45.754661 + : pb-IF4jF1NY | Hoemie | Hoemlander | name reveal mat kr -2023-06-04 18:40:57.365604 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | finnaly -2023-06-04 18:42:32.031123 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-04 18:43:04.533318 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | Abe bombers -2023-06-04 18:43:20.250238 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | athena no use -2023-06-04 18:43:27.725120 + : pb-IF4LU0wKIw== | Omiii15 | Arthur | -2023-06-04 18:43:27.884315 + : pb-IF4LU0wKIw== | Omiii15 | Arthur | -2023-06-04 18:43:37.007987 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | /end -2023-06-04 18:44:00.124915 + : pb-IF4jF1NY | Hoemie | Hoemlander | -2023-06-04 18:44:00.277073 + : pb-IF4jF1NY | Hoemie | Hoemlander | -2023-06-04 18:45:18.724742 + : pb-IF4LU0wKIw== | Omiii15 | Arthur | -2023-06-04 18:45:18.884460 + : pb-IF4LU0wKIw== | Omiii15 | Arthur | -2023-06-04 18:45:19.217832 + : pb-IF4cUBYfCg== | Hrithiksng | noob master 69 | -2023-06-04 18:45:19.378930 + : pb-IF4cUBYfCg== | Hrithiksng | noob master 69 | -2023-06-04 18:45:41.021345 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-04 18:46:43.762293 + : pb-IF4WUGczMQ== | StockyFram | StockyFram | -2023-06-04 18:46:43.908762 + : pb-IF4WUGczMQ== | StockyFram | StockyFram | -2023-06-04 18:46:49.779299 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | athena which country? -2023-06-04 18:48:01.298368 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-04 18:48:09.740639 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | I'm from India -2023-06-04 18:48:19.525720 + : pb-IF4jF1NY | Hoemie | Hoemlander | -2023-06-04 18:48:40.578424 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | my sis -2023-06-04 18:49:00.684212 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | me also india -2023-06-04 18:49:13.564744 + : pb-IF4LU0wKIw== | Omiii15 | Arthur | Namaste -2023-06-04 18:49:43.967259 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | namaste -2023-06-04 18:50:01.865214 + : pb-IF4TV3RbDA== | HypnoticA4 | ATTACKER | anthena sorry yr -2023-06-04 18:50:30.067158 + : pb-IF4jF1NY | Hoemie | Hoemlander | you made her angry -2023-06-04 18:51:07.015366 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | we will lose definitely -2023-06-04 18:51:10.904758 + : pb-IF4cUBYfCg== | Hrithiksng | noob master 69 | -2023-06-04 18:51:19.577743 + : Host msg: | Hoemlander started a kick vote for ‎ -2023-06-04 18:51:22.784430 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | 0 -2023-06-04 18:51:23.044512 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | -2023-06-04 18:51:29.897202 + : pb-IF4jF1NY | Hoemie | Hoemlander | don't need any negativity -2023-06-04 18:51:40.729668 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-04 18:51:43.768115 + : pb-IF4TV3RbDA== | HypnoticA4 | ATTACKER | anthena go on blueee -2023-06-04 18:51:49.484966 + : pb-IF4OUBAqNQ== | Intracel63 | infernous | .yes -2023-06-04 18:51:54.746856 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | sry athena -2023-06-04 18:52:02.066385 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | /remove 230 -2023-06-04 18:52:03.665364 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | 0 -2023-06-04 18:52:12.725467 + : pb-IF4TV3RbDA== | HypnoticA4 | ATTACKER | how did that happen -2023-06-04 18:52:20.413337 + : pb-IF4TV3RbDA== | HypnoticA4 | ATTACKER | how did I left -2023-06-04 18:52:41.812230 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-04 18:52:50.779349 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | maardo 2 bache h -2023-06-04 18:53:13.329832 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | 1v1 -2023-06-04 18:53:14.259679 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | wow -2023-06-04 18:53:18.919557 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | we are very close -2023-06-04 18:53:27.830066 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | same here -2023-06-04 18:53:33.459794 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | 😂😆 -2023-06-04 18:53:33.563805 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | let's go -2023-06-04 18:53:34.577652 + : pb-IF4jF1NY | Hoemie | Hoemlander | mwah -2023-06-04 18:53:35.911787 + : pb-IF4WUGczMQ== | StockyFram | StockyFram | abeyyyyyyyyy -2023-06-04 18:53:40.655938 + : pb-IF4WUGczMQ== | StockyFram | StockyFram | bhakkk -2023-06-04 18:53:40.979811 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | i know this will be the result -2023-06-04 18:53:51.116977 + : pb-IF4jF1NY | Hoemie | Hoemlander | only because he said we will lose -2023-06-04 18:54:04.079595 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-04 18:54:08.886385 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | so dont doubt in his skills -2023-06-04 18:54:29.047875 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | noob bombers -2023-06-04 18:55:00.812753 + : Host msg: | STEVE ROGE... started a kick vote for Tera baap -2023-06-04 18:55:17.939733 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | i don't mind -2023-06-04 18:56:06.727089 + : pb-IF4jF1NY | Hoemie | Hoemlander | :( -2023-06-04 18:56:47.546652 + : pb-IF4jF1NY | Hoemie | Hoemlander | -2023-06-04 18:56:49.682462 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | sry -2023-06-04 18:57:08.154492 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-04 18:58:24.780025 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | end -2023-06-04 18:58:24.780094 + : Host msg: | end vote started -2023-06-04 18:58:24.937177 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | sry -2023-06-04 18:58:37.419463 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | press end to live a happy life -2023-06-04 18:58:40.617042 + : Host msg: | Hoemlander started a kick vote for ‎ -2023-06-04 18:58:45.469354 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | 0 -2023-06-04 18:58:51.838647 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | 0 -2023-06-04 18:59:05.196741 + : pb-IF4jF1NY | Hoemie | Hoemlander | I'd gpay anyone who'll kickvofe -2023-06-04 18:59:07.119397 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | hoemlander what is ur problem actually whenever i join u immediately start kick vote -2023-06-04 18:59:17.645390 + : pb-IF4jF1NY | Hoemie | Hoemlander | your nature mwah -2023-06-04 18:59:23.559584 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | i will complaint if u do it again -2023-06-04 18:59:24.798070 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | wow but how me? -2023-06-04 18:59:31.319534 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | u know the rules -2023-06-04 18:59:52.059400 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | dont kick anybody unnecessarily -2023-06-04 19:01:23.137477 + : pb-IF4jF1NY | Hoemie | Hoemlander | :( -2023-06-04 19:01:24.639413 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | hoemlander noob -2023-06-04 19:01:54.887260 + : pb-IF4jF1NY | Hoemie | Hoemlander | good riddance -2023-06-04 19:02:47.386860 + : pb-IF4jF1NY | Hoemie | Hoemlander | wait -2023-06-04 19:03:15.435825 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | wth -2023-06-04 19:03:19.666753 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | lag -2023-06-04 19:04:30.824612 + : pb-IF4jF1NY | Hoemie | Hoemlander | end -2023-06-04 19:04:35.762280 + : pb-IF4PU2Y6VQ== | BurlyBron2 | BurlyBron2 | end -2023-06-04 19:04:57.986610 + : pb-IF4jF1NY | Hoemie | Hoemlander | end -2023-06-04 19:04:57.986657 + : Host msg: | end vote started -2023-06-04 19:04:57.987040 + : Host msg: | 3 more end votes required -2023-06-04 19:05:18.546666 + : pb-IF4jF1NY | Hoemie | Hoemlander | bartan dhone gayi lagta -2023-06-04 19:05:31.606205 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | end -2023-06-04 19:05:31.606252 + : Host msg: | end vote started -2023-06-04 19:12:25.872815 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | /end -2023-06-04 19:22:04.945880 + : Host msg: | BCS new server arrived -2023-06-04 19:22:04.945919 + : Host msg: | '3 Team walla server' -2023-06-04 19:22:04.945938 + : Host msg: | must try, and give us your feedbacks -2023-06-04 20:27:04.946766 + : Host msg: | BCS new server arrived -2023-06-04 20:27:04.946905 + : Host msg: | '3 Team walla server' -2023-06-04 20:27:04.947028 + : Host msg: | must try, and give us your feedbacks -2023-06-04 20:49:05.967213 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | /me -2023-06-04 20:49:05.987936 + : Host msg: | Score:50429 -2023-06-04 20:49:05.988333 + : Host msg: | Games:1210 -2023-06-04 20:49:05.988350 + : Host msg: | Kills:3269 -2023-06-04 20:49:05.988362 + : Host msg: | Deaths:2646 -2023-06-04 20:49:05.988373 + : Host msg: | Avg.:41.676 -2023-06-04 20:50:58.770736 + : pb-IF43A0ZS | N0Mercy4Y0 | N0Mercy4Y0 | 2AIT -2023-06-04 20:51:01.900759 + : pb-IF43A0ZS | N0Mercy4Y0 | | -2023-06-04 20:51:02.000861 + : pb-IF43A0ZS | N0Mercy4Y0 | | -2023-06-04 20:51:02.140679 + : pb-IF43A0ZS | N0Mercy4Y0 | | -2023-06-04 20:52:07.825785 + : pb-IF43A0ZS | N0Mercy4Y0 | ᴵᵗˢMerçy | -2023-06-04 20:57:10.038583 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | I'll go in dc -2023-06-04 20:59:05.747993 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | 🥲 -2023-06-04 21:00:17.804151 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | -2023-06-04 21:00:19.968783 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | bisi -2023-06-04 21:01:02.740850 + : pb-IF4VUlcBVQ== | YashRenoun | Mrͥsiͣnͫgђ | ez pz -2023-06-04 21:02:59.796493 + : Host msg: | Android639... started a kick vote for ShubhangRa -2023-06-04 21:03:06.116109 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | kick kr -2023-06-04 21:03:08.787873 + : Host msg: | Kicked "ShubhangRa" -2023-06-04 21:04:49.372146 + : Host msg: | Android639... started a kick vote for Elmer -2023-06-04 21:04:58.464218 + : Host msg: | Kicked "Elmer" -2023-06-04 21:07:59.472764 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | kya gunda bnega re tu -2023-06-04 21:08:42.894363 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | 🥲 -2023-06-04 21:16:42.253106 + : pb-IF4TUGEIDQ== | fazalVenge | fazalVenge | lolan come -2023-06-04 21:17:37.279210 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-04 21:17:42.002189 + : pb-IF4TUGEIDQ== | fazalVenge | fazalVenge | -2023-06-04 21:17:42.221717 + : pb-IF4TUGEIDQ== | fazalVenge | fazalVenge | -2023-06-04 21:18:34.001921 + : pb-IF4TUGEIDQ== | fazalVenge | fazalVenge | lolan come -2023-06-04 21:22:20.942360 + : pb-IF4TUGEIDQ== | fazalVenge | fazalVenge | cool -2023-06-04 21:22:57.702322 + : pb-IF4TUGEIDQ== | fazalVenge | fazalVenge | glich -2023-06-04 21:23:04.297799 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-04 21:23:06.332408 + : pb-IF4TUGEIDQ== | fazalVenge | fazalVenge | -2023-06-04 21:32:04.930516 + : Host msg: | BCS new server arrived -2023-06-04 21:32:04.930575 + : Host msg: | '3 Team walla server' -2023-06-04 21:32:04.930597 + : Host msg: | must try, and give us your feedbacks -2023-06-04 22:12:20.264456 + : Host msg: | BCS new server arrived -2023-06-04 22:12:20.264511 + : Host msg: | '3 Team walla server' -2023-06-04 22:12:20.264552 + : Host msg: | must try, and give us your feedbacks -2023-06-04 22:15:23.965908 + : pb-IF4VUlcBVQ== | YashRenoun | Mrͥsiͣnͫgђ | run fast -2023-06-04 22:15:31.127722 + : pb-IF4VUlcBVQ== | YashRenoun | Mrͥsiͣnͫgђ | bring me the wood -2023-06-04 22:22:28.992457 + : Host msg: | € started a kick vote for infernous -2023-06-04 22:23:46.832778 + : pb-IF4VUlcBVQ== | YashRenoun | Mrͥsiͣnͫgђ | -2023-06-04 22:23:46.962815 + : pb-IF4VUlcBVQ== | YashRenoun | Mrͥsiͣnͫgђ | -2023-06-04 22:23:47.102845 + : pb-IF4VUlcBVQ== | YashRenoun | Mrͥsiͣnͫgђ | -2023-06-04 22:25:39.175654 + : Host msg: | Name Client ID Player ID -2023-06-04 22:25:39.175683 + : Host msg: | ______________________________ -2023-06-04 22:25:39.176165 + : Host msg: | Mrͥsiͣnͫgђ 114 0 -2023-06-04 22:25:39.176183 + : Host msg: | ghost man ... 113 1 -2023-06-04 22:25:39.176191 + : Host msg: | -2023-06-04 22:33:49.607822 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | Abe usse maar nahi pae tum -2023-06-04 22:34:14.584893 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 22:34:14.719387 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 22:35:16.566514 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 22:35:16.712836 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 22:35:16.832370 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 22:35:53.191222 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | fk bç -2023-06-04 22:35:57.146679 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | 🥹 -2023-06-04 22:36:56.871251 + : pb-IF4WUGcuIA== | Kukdi | Kukdi | -2023-06-04 22:37:22.440978 + : pb-IF4HVHpcFQ== | EliteSage2 | EliteSage2 | sry -2023-06-04 22:37:31.473109 + : pb-IF4WUGcuIA== | Kukdi | Kukdi | -2023-06-04 22:38:25.670351 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 22:38:25.829748 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 22:38:28.411773 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | tf -2023-06-04 22:38:48.141702 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 22:39:34.258649 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | ok -2023-06-04 22:41:24.685161 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | shit -2023-06-04 22:42:15.122066 + : pb-IF4WUGcuIA== | Kukdi | Kukdi | -2023-06-04 22:42:16.755276 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 22:42:19.542627 + : pb-IF4WUGcuIA== | Kukdi | Kukdi | lol -2023-06-04 22:44:41.975921 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 22:44:42.106477 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 22:44:42.231648 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 22:44:42.361068 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-04 22:48:32.722137 + : pb-IF4WUGcuIA== | Kukdi | Kukdi | -2023-06-04 22:48:32.882555 + : pb-IF4WUGcuIA== | Kukdi | Kukdi | -2023-06-04 22:49:29.799762 + : pb-IF4WUGcuIA== | Kukdi | Kukdi | -2023-06-04 22:49:29.942095 + : pb-IF4WUGcuIA== | Kukdi | Kukdi | -2023-06-04 22:49:30.142236 + : pb-IF4WUGcuIA== | Kukdi | Kukdi | -2023-06-04 23:08:31.171569 + : Host msg: | Only 1 player per IP allowed, disconnecting this device. -2023-06-04 23:17:12.264317 + : Host msg: | BCS new server arrived -2023-06-04 23:17:12.264359 + : Host msg: | '3 Team walla server' -2023-06-04 23:17:12.264375 + : Host msg: | must try, and give us your feedbacks -2023-06-04 23:37:35.513598 + : pb-IF5cUkwjDA== | DragonGhou | Willy | Thnks, meri samadhi todne ke liye -2023-06-04 23:42:15.400389 + : Host msg: | Name Client ID Player ID -2023-06-04 23:42:15.400418 + : Host msg: | ______________________________ -2023-06-04 23:42:15.400428 + : Host msg: | -2023-06-04 23:46:47.354987 + : pb-IF4iU0QaEw== | BCS | | /playlist 425837 -2023-06-04 23:46:47.903449 + : Host msg: | Fetched playlist:oye bale bale -2023-06-04 23:46:55.073015 + : pb-IF4iU0QaEw== | BCS | | /end -2023-06-04 23:50:17.246091 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | i can't turn -2023-06-04 23:52:36.359229 + : Host msg: | BCS new server arrived -2023-06-04 23:52:36.359269 + : Host msg: | '3 Team walla server' -2023-06-04 23:52:36.359315 + : Host msg: | must try, and give us your feedbacks -2023-06-04 23:55:02.928622 + : Host msg: | Name Client ID Player ID -2023-06-04 23:55:02.928650 + : Host msg: | ______________________________ -2023-06-04 23:55:02.928659 + : Host msg: | -2023-06-04 23:59:25.658310 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | /end -2023-06-05 00:08:50.296993 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-05 00:09:11.771178 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | /end -2023-06-05 00:09:15.866739 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-05 00:11:07.912688 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | . -2023-06-05 00:11:20.837078 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | hi -2023-06-05 00:11:25.223202 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | hello 👋 -2023-06-05 00:11:28.267319 + : pb-IF49VFdbEQ== | iamtex0001 | ❥₮𝙴χ᭄⁰⁷ | hi -2023-06-05 00:11:37.297538 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | welcom sukuna baby -2023-06-05 00:11:47.313446 + : pb-IF40UBNeFg== | Materia104 | sukuna | hello everyone -2023-06-05 00:11:55.603128 + : pb-IF40UBNeFg== | Materia104 | sukuna | hello aikuros bhaiya -2023-06-05 00:11:59.987260 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | ello -2023-06-05 00:12:20.925251 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | bunny i added new characters -2023-06-05 00:12:29.186636 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-05 00:12:33.246996 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | opsi -2023-06-05 00:12:38.382643 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | 🥹 -2023-06-05 00:12:55.551069 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | will check -2023-06-05 00:13:51.165556 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | wait i ping Smoothy he was -2023-06-05 00:13:51.166206 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | trying new games on this server -2023-06-05 00:14:09.063117 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | ok -2023-06-05 00:15:04.318012 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | Ainesh0001 -2023-06-05 00:15:17.206529 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | ha bolo bhai -2023-06-05 00:15:23.738092 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-05 00:15:28.584218 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | hey kids -2023-06-05 00:15:34.156287 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | let's try again -2023-06-05 00:15:38.497074 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | new games ? -2023-06-05 00:15:39.468109 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | I fixed drone -2023-06-05 00:15:39.557280 + : pb-IF49VFdbEQ== | iamtex0001 | ❥₮𝙴χ᭄⁰⁷ | .Smoothy hello sir -2023-06-05 00:15:45.485037 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | ok -2023-06-05 00:15:55.023132 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | maybe it will work -2023-06-05 00:16:07.566902 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | I will do screen recording -2023-06-05 00:16:26.215381 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | sry tex -2023-06-05 00:16:30.198849 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | so don't enter any OTP in chat -2023-06-05 00:16:38.037900 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | 7464774 -2023-06-05 00:16:46.917228 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | ok -2023-06-05 00:17:15.177633 + : pb-IF49VFdbEQ== | iamtex0001 | ❥₮𝙴χ᭄⁰⁷ | woh lag -2023-06-05 00:17:54.018276 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-05 00:17:54.237038 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | great -2023-06-05 00:18:39.647464 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-05 00:18:46.815982 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | waiting for some kids -2023-06-05 00:18:54.194942 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | for what -2023-06-05 00:19:04.687009 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | mast -2023-06-05 00:19:37.661564 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | are u kid ariyan ? -2023-06-05 00:19:56.042276 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | seems no one joining -2023-06-05 00:20:11.256039 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | /playlist 425837 -2023-06-05 00:20:11.954707 + : Host msg: | Fetched playlist:oye bale bale -2023-06-05 00:20:16.337293 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | lol -2023-06-05 00:20:18.732961 + : pb-IF49VFdbEQ== | iamtex0001 | ❥₮𝙴χ᭄⁰⁷ | lol -2023-06-05 00:20:21.419353 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | 😂 -2023-06-05 00:20:22.617318 + : pb-IF49VFdbEQ== | iamtex0001 | ❥₮𝙴χ᭄⁰⁷ | 🤣 -2023-06-05 00:20:26.047778 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | what -2023-06-05 00:20:29.267027 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | name -2023-06-05 00:20:33.334505 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | oye bale bale -2023-06-05 00:20:35.076964 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | xd -2023-06-05 00:20:39.597158 + : pb-IF49VFdbEQ== | iamtex0001 | ❥₮𝙴χ᭄⁰⁷ | nice name -2023-06-05 00:21:06.467522 + : Host msg: | Dr boom started a kick vote for .Smoothy -2023-06-05 00:21:16.112045 + : pb-IF4LVW5cMQ== | xblood98x | | hiii -2023-06-05 00:21:24.781293 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | bro u literally started kick vote for the owner 💀 -2023-06-05 00:21:28.758034 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | really -2023-06-05 00:22:07.373545 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | what is thissss -2023-06-05 00:22:09.154905 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | smoooty -2023-06-05 00:22:09.647148 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | sed i dint get chance to play -2023-06-05 00:22:17.700928 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | us bro us -2023-06-05 00:22:26.674936 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | Ping: 188.779 -2023-06-05 00:22:27.789249 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | Ping: 189.160 -2023-06-05 00:22:28.790964 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | Ping: 191.172 -2023-06-05 00:23:03.693135 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | athenaaa same teamm -2023-06-05 00:23:14.150365 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | nvm -2023-06-05 00:23:34.636821 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | disable rank in this all are killing me -2023-06-05 00:24:12.590488 + : Host msg: | enemy amoung us -2023-06-05 00:25:27.727102 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | suspence map -2023-06-05 00:25:40.040408 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | hehe -2023-06-05 00:25:40.260654 + : pb-IF49VFdbEQ== | iamtex0001 | ❥₮𝙴χ᭄⁰⁷ | ah -2023-06-05 00:25:48.740832 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | lmao -2023-06-05 00:25:50.348467 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | what a name -2023-06-05 00:26:22.535353 + : Host msg: | she is my queen , only i will Fck -2023-06-05 00:26:26.482378 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | ayoo -2023-06-05 00:27:17.017102 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | poor pixie -2023-06-05 00:27:52.598614 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | uh -2023-06-05 00:28:08.198670 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | help -2023-06-05 00:28:13.119200 + : Host msg: | kil left peoples -2023-06-05 00:28:13.337206 + : pb-IF49VFdbEQ== | iamtex0001 | ❥₮𝙴χ᭄⁰⁷ | lol -2023-06-05 00:28:38.518851 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | bcs server is talking 😨 -2023-06-05 00:28:39.178272 + : pb-IF49VFdbEQ== | iamtex0001 | ❥₮𝙴χ᭄⁰⁷ | peace -2023-06-05 00:28:47.807321 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | lol -2023-06-05 00:28:48.980318 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | xd -2023-06-05 00:28:52.455205 + : Host msg: | Name Client ID Player ID -2023-06-05 00:28:52.455233 + : Host msg: | ______________________________ -2023-06-05 00:28:52.455246 + : Host msg: | ❥₮𝙴χ᭄⁰⁷ 123 0 -2023-06-05 00:28:52.455255 + : Host msg: | Dr boom 124 1 -2023-06-05 00:28:52.455263 + : Host msg: | Thunder 125 2 -2023-06-05 00:28:52.455272 + : Host msg: | Aikuros🦋 128 3 -2023-06-05 00:28:52.455281 + : Host msg: | .Smoothy 130 4 -2023-06-05 00:29:52.682121 + : Host msg: | BCS new server arrived -2023-06-05 00:29:52.682179 + : Host msg: | '3 Team walla server' -2023-06-05 00:29:52.682203 + : Host msg: | must try, and give us your feedbacks -2023-06-05 00:30:08.318642 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | end -2023-06-05 00:30:40.782559 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | nanda -2023-06-05 00:30:53.488769 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | 😪 -2023-06-05 00:31:09.090016 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | osrry -2023-06-05 00:31:10.415397 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | sorry -2023-06-05 00:31:33.249219 + : Host msg: | who crashed me 😡 -2023-06-05 00:31:37.687174 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | me -2023-06-05 00:31:38.587180 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | not me -2023-06-05 00:31:51.887869 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | oo -2023-06-05 00:31:54.648049 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | is that shrutii -2023-06-05 00:32:00.474804 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | 😅 -2023-06-05 00:32:46.304663 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | smoooty -2023-06-05 00:32:51.182442 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | where game mods -2023-06-05 00:33:08.477128 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | right side -2023-06-05 00:33:10.330301 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | bcs is talking with miror ??? -2023-06-05 00:33:29.723286 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | nauur -2023-06-05 00:33:32.649935 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | i meant new games -2023-06-05 00:33:35.258384 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | :pleading: -2023-06-05 00:33:51.919665 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | tyep so fast OG -2023-06-05 00:33:56.432516 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | /playlist 425837 -2023-06-05 00:33:59.337923 + : Host msg: | Fetched playlist:oye bale bale -2023-06-05 00:34:03.916153 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | u mean this ? -2023-06-05 00:34:20.959205 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | yesss -2023-06-05 00:34:23.062348 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | end -2023-06-05 00:34:23.062578 + : Host msg: | end vote started -2023-06-05 00:34:23.062953 + : Host msg: | 3 more end votes required -2023-06-05 00:34:26.571266 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | end -2023-06-05 00:34:32.505452 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | end -2023-06-05 00:34:33.743849 + : pb-IF41U2scIg== | SHRUTIsom | 𝐹𝒶𝒾𝓉𝒽 | end -2023-06-05 00:34:33.743975 + : Host msg: | end vote succeed -2023-06-05 00:34:34.707387 + : pb-IF49VFdbEQ== | iamtex0001 | ⁱᵃᵐ᭄Եҽx | end -2023-06-05 00:34:34.707519 + : Host msg: | end vote succeed -2023-06-05 00:34:36.637217 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | wnd -2023-06-05 00:34:40.033789 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | mwehehe -2023-06-05 00:34:40.057069 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | end -2023-06-05 00:34:42.311443 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | lez gooo -2023-06-05 00:35:04.977550 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | come with meeee -2023-06-05 00:35:10.483697 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | 😂😂 -2023-06-05 00:35:10.784897 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | hoho -2023-06-05 00:35:24.124122 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | wtf -2023-06-05 00:35:25.046654 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | smooty -2023-06-05 00:35:26.467209 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | for this game -2023-06-05 00:35:28.996701 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | i have a suggestion -2023-06-05 00:35:29.322099 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | 😑 -2023-06-05 00:35:32.167781 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | breh i got a warn -2023-06-05 00:37:17.834725 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | server will crash after drone war -2023-06-05 00:37:24.616282 + : pb-IF49VFdbEQ== | iamtex0001 | ⁱᵃᵐ᭄Եҽx | yes -2023-06-05 00:37:25.651932 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | omg -2023-06-05 00:37:26.947236 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | next map -2023-06-05 00:37:35.993879 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | why it will crash -2023-06-05 00:37:37.772816 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | just end it -2023-06-05 00:38:33.931279 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | why queen can't go outside -2023-06-05 00:38:44.388872 + : Host msg: | her private xx room -2023-06-05 00:39:01.250830 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | end -2023-06-05 00:39:03.133880 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | 11 -2023-06-05 00:39:14.224409 + : Host msg: | Name Client ID Player ID -2023-06-05 00:39:14.224436 + : Host msg: | ______________________________ -2023-06-05 00:39:14.224448 + : Host msg: | ⁱᵃᵐ᭄Եҽx 116 0 -2023-06-05 00:39:14.224458 + : Host msg: | "The OG 115 1 -2023-06-05 00:39:14.224467 + : Host msg: | Piro. 118 2 -2023-06-05 00:39:14.224478 + : Host msg: | Aikuros🦋 114 3 -2023-06-05 00:39:14.224487 + : Host msg: | .Smoothy 120 4 -2023-06-05 00:39:14.224497 + : Host msg: | 𝐹𝒶𝒾𝓉𝒽 121 5 -2023-06-05 00:40:04.064543 + : Host msg: | BCS new server arrived -2023-06-05 00:40:04.064590 + : Host msg: | '3 Team walla server' -2023-06-05 00:40:04.064633 + : Host msg: | must try, and give us your feedbacks -2023-06-05 00:40:13.109355 + : pb-IF4LVW5cMQ== | xblood98x | | oh well -2023-06-05 00:40:17.752912 + : pb-IF4LVW5cMQ== | xblood98x | | seems that game buggy -2023-06-05 00:40:28.848858 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | come in game -2023-06-05 00:42:21.095529 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | gg -2023-06-05 00:42:24.001062 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | aww -2023-06-05 00:42:25.885043 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | yare yare -2023-06-05 00:42:25.977010 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | shit -2023-06-05 00:42:26.452917 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | me with shruti -2023-06-05 00:42:27.443866 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | hehe -2023-06-05 00:42:37.747833 + : pb-IF41U2scIg== | SHRUTIsom | 𝐏rincess 𝐏each | \"The OG who are you -2023-06-05 00:43:09.056996 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | U_U -2023-06-05 00:43:29.824346 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | gotcha -2023-06-05 00:43:35.296525 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | im ur fan -2023-06-05 00:43:36.399364 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | hehe -2023-06-05 00:43:36.834823 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | huh 😒 -2023-06-05 00:43:46.537251 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | i know who is it -2023-06-05 00:43:47.310005 + : pb-IF41U2scIg== | SHRUTIsom | 𝐏rincess 𝐏each | /sm -2023-06-05 00:43:48.267010 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | xd -2023-06-05 00:44:29.854703 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | sorru Piro -2023-06-05 00:44:30.223772 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | wtf -2023-06-05 00:44:30.440985 + : pb-IF41U2scIg== | SHRUTIsom | 𝐏rincess 𝐏each | MJ? -2023-06-05 00:44:34.274160 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | nahh -2023-06-05 00:44:37.279027 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | im a big mystery -2023-06-05 00:44:41.855847 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | aa -2023-06-05 00:45:18.277159 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | well -2023-06-05 00:45:20.086609 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | im Doffy -2023-06-05 00:45:21.388834 + : pb-IF41U2scIg== | SHRUTIsom | 𝐏rincess 𝐏each | /info 116 -2023-06-05 00:45:21.389109 + : Host msg: | Accounts:xblood98x MrBoss398 Aaliyah -2023-06-05 00:45:21.389159 + : Host msg: | other accounts xblood98x MrBoss398 Aaliyah -2023-06-05 00:45:21.389174 + : Host msg: | created on 2020-12-14 01:19:41 -2023-06-05 00:45:23.614168 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | nice to meet ya -2023-06-05 00:45:46.323367 + : pb-IF41U2scIg== | SHRUTIsom | 𝐏rincess 𝐏each | who is Aaliyah -2023-06-05 00:45:47.916967 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | u dont play much like befor -2023-06-05 00:45:49.702400 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | nanda -2023-06-05 00:45:54.368967 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | how did you know about her -2023-06-05 00:46:13.499621 + : pb-IF41U2scIg== | SHRUTIsom | 𝐏rincess 𝐏each | because i know mystery -2023-06-05 00:46:16.411315 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | xd -2023-06-05 00:46:37.356947 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | my bad -2023-06-05 00:46:42.154234 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | aa -2023-06-05 00:46:44.359770 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | sorry -2023-06-05 00:46:53.167007 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | ;0 -2023-06-05 00:46:55.004525 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | oo -2023-06-05 00:47:14.865683 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | ahh -2023-06-05 00:47:37.150726 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | gg -2023-06-05 00:47:40.794998 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | O_o -2023-06-05 00:47:46.714054 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | rip ping -2023-06-05 00:47:48.434870 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | hah 😂😆 -2023-06-05 00:47:48.802095 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | Ping: 189.322 -2023-06-05 00:47:57.826113 + : pb-IF41U2scIg== | SHRUTIsom | 𝐏rincess 𝐏each | /ping all -2023-06-05 00:47:57.826246 + : Host msg: | Name Ping (ms) ms -2023-06-05 00:47:57.826285 + : Host msg: | ______________________________ -2023-06-05 00:47:57.826301 + : Host msg: | Piro. 35 ms -2023-06-05 00:47:57.826727 + : Host msg: | "The OG 191 ms -2023-06-05 00:47:57.826755 + : Host msg: | 𝐏rincess 𝐏... 15 ms -2023-06-05 00:47:57.826770 + : Host msg: | Aikuros🦋 91 ms -2023-06-05 00:47:57.826780 + : Host msg: | -2023-06-05 00:48:15.806945 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | /ping all -2023-06-05 00:48:15.807091 + : Host msg: | Name Ping (ms) ms -2023-06-05 00:48:15.807122 + : Host msg: | ______________________________ -2023-06-05 00:48:15.807135 + : Host msg: | Piro. 41 ms -2023-06-05 00:48:15.807147 + : Host msg: | "The OG 190 ms -2023-06-05 00:48:15.807158 + : Host msg: | 𝐏rincess 𝐏... 18 ms -2023-06-05 00:48:15.807170 + : Host msg: | Aikuros🦋 85 ms -2023-06-05 00:48:15.807611 + : Host msg: | -2023-06-05 00:48:59.150271 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | aikuros -2023-06-05 00:49:00.563140 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | u good? -2023-06-05 00:49:04.437057 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | yes -2023-06-05 00:49:08.373500 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | u too silent -2023-06-05 00:49:08.967028 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | wdym -2023-06-05 00:49:09.037649 + : pb-IF4LVW5cMQ== | xblood98x | "The OG | sus -2023-06-05 00:49:21.316866 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | alright bye gn -2023-06-05 00:49:37.807056 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | bye bunny -2023-06-05 00:49:44.782571 + : pb-IF41U2scIg== | SHRUTIsom | 𝐏rincess 𝐏each | ok bye -2023-06-05 00:57:44.597608 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | lol -2023-06-05 01:17:44.985963 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | BCS -2023-06-05 01:44:56.046353 + : Host msg: | BCS new server arrived -2023-06-05 01:44:56.046549 + : Host msg: | '3 Team walla server' -2023-06-05 01:44:56.046569 + : Host msg: | must try, and give us your feedbacks -2023-06-05 02:49:56.029639 + : Host msg: | BCS new server arrived -2023-06-05 02:49:56.029833 + : Host msg: | '3 Team walla server' -2023-06-05 02:49:56.029848 + : Host msg: | must try, and give us your feedbacks -2023-06-05 03:54:56.033592 + : Host msg: | BCS new server arrived -2023-06-05 03:54:56.033791 + : Host msg: | '3 Team walla server' -2023-06-05 03:54:56.033807 + : Host msg: | must try, and give us your feedbacks -2023-06-05 04:04:57.584171 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | /me -2023-06-05 04:04:57.605293 + : Host msg: | Score:65 -2023-06-05 04:04:57.605335 + : Host msg: | Games:6 -2023-06-05 04:04:57.605348 + : Host msg: | Kills:8 -2023-06-05 04:04:57.605362 + : Host msg: | Deaths:9 -2023-06-05 04:04:57.605464 + : Host msg: | Avg.:10.833 -2023-06-05 04:05:09.532462 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | we be friends -2023-06-05 04:05:13.253566 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | yea -2023-06-05 04:05:35.489311 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | we friends🤝 -2023-06-05 04:05:42.478383 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | look this -2023-06-05 04:06:01.340268 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | I like looking at than are charecer -2023-06-05 04:06:13.533551 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | see -2023-06-05 04:06:38.502564 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | wait -2023-06-05 04:07:01.052371 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | 2ait -2023-06-05 04:07:57.879640 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | see -2023-06-05 04:08:13.408408 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | -2023-06-05 04:08:41.438194 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | hoW -2023-06-05 04:08:47.187808 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | magic -2023-06-05 04:09:13.890579 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | reminds me of bomb jumping -2023-06-05 04:09:24.757844 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | lol -2023-06-05 04:09:33.917155 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | -2023-06-05 04:10:06.121851 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | -2023-06-05 04:12:41.720953 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | where u from -2023-06-05 04:12:51.898413 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | amrica -2023-06-05 04:12:56.789081 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | really -2023-06-05 04:13:07.588430 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | where in america -2023-06-05 04:13:19.242174 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | ark -2023-06-05 04:13:24.985120 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | ark? -2023-06-05 04:13:36.436614 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | ark short for -2023-06-05 04:13:41.755527 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | /ping all -2023-06-05 04:13:41.755672 + : Host msg: | Name Ping (ms) ms -2023-06-05 04:13:41.755713 + : Host msg: | ______________________________ -2023-06-05 04:13:41.755727 + : Host msg: | Fred 273 ms -2023-06-05 04:13:41.755736 + : Host msg: | JJ 44 ms -2023-06-05 04:13:41.756434 + : Host msg: | -2023-06-05 04:13:53.744559 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | ooh,.u have 273.ms -2023-06-05 04:14:02.586996 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | ark short form of? -2023-06-05 04:14:07.596779 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | no -2023-06-05 04:14:10.760172 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | yes -2023-06-05 04:14:14.571103 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | /ping all -2023-06-05 04:14:14.571246 + : Host msg: | Name Ping (ms) ms -2023-06-05 04:14:14.571282 + : Host msg: | ______________________________ -2023-06-05 04:14:14.571297 + : Host msg: | Fred 276 ms -2023-06-05 04:14:14.571310 + : Host msg: | JJ 45 ms -2023-06-05 04:14:14.571320 + : Host msg: | -2023-06-05 04:14:16.488046 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | Arkansas -2023-06-05 04:14:39.950952 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | yea, i see -2023-06-05 04:14:44.644854 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | a us state -2023-06-05 04:15:36.394547 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | whu -2023-06-05 04:15:43.613418 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | me india -2023-06-05 04:15:53.037695 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | Arkansas is a southern U.S. state bordering the Mississippi -2023-06-05 04:15:53.040593 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | River. It's known for its abundant park and wilderness areas, -2023-06-05 04:16:23.956038 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | did you google -2023-06-05 04:16:27.205376 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | yep -2023-06-05 04:16:31.176819 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | its copy paste -2023-06-05 04:16:42.850303 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | 😳 -2023-06-05 04:16:54.949190 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | hehe😄 -2023-06-05 04:17:07.337349 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | bruh Momment -2023-06-05 04:17:12.664640 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | how old r u -2023-06-05 04:17:26.531241 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | half of 20 -2023-06-05 04:18:17.129174 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | 10😧 -2023-06-05 04:18:38.094735 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | 😳😳 -2023-06-05 04:18:48.473343 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | how long you play game -2023-06-05 04:18:57.658121 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | 5 or 6 years -2023-06-05 04:19:06.234450 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | wht abt u -2023-06-05 04:19:39.779446 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | if I am better than you I've only been plays my for 2 -2023-06-05 04:19:52.255949 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | 2 days? -2023-06-05 04:20:00.140722 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | year -2023-06-05 04:20:01.921120 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | u r not better than me -2023-06-05 04:20:06.068914 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | im better -2023-06-05 04:20:08.161234 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | ok -2023-06-05 04:20:19.920596 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | fight -2023-06-05 04:20:23.414647 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | ok -2023-06-05 04:21:40.999643 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | see -2023-06-05 04:21:46.045846 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | /ping all -2023-06-05 04:21:46.046160 + : Host msg: | Name Ping (ms) ms -2023-06-05 04:21:46.046205 + : Host msg: | ______________________________ -2023-06-05 04:21:46.046219 + : Host msg: | Fred 279 ms -2023-06-05 04:21:46.046627 + : Host msg: | JJ 44 ms -2023-06-05 04:21:46.046736 + : Host msg: | -2023-06-05 04:21:48.323061 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | -2023-06-05 04:21:49.003545 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | -2023-06-05 04:22:23.413047 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | how many hour a day -2023-06-05 04:22:27.873479 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | ? -2023-06-05 04:22:43.898992 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | plying time?. -2023-06-05 04:22:43.961612 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | hours of game -2023-06-05 04:23:01.044490 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | idk, less than hour, ig -2023-06-05 04:25:41.165364 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | uh -2023-06-05 04:25:49.360937 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | just win -2023-06-05 04:25:56.539854 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | how u found this server? -2023-06-05 04:26:19.597242 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | scrolling and just clicking -2023-06-05 04:26:30.285227 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | ohk, coz u have high ping -2023-06-05 04:26:47.633957 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | what I ping -2023-06-05 04:27:01.565622 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | u using latest bombsquad version? -2023-06-05 04:28:20.355236 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | -2023-06-05 04:29:49.568602 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | -2023-06-05 04:30:21.955285 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | I wish you could hive me lessons to get better -2023-06-05 04:30:35.815442 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | give I meant -2023-06-05 04:30:42.387171 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | u have high ping, u can google -2023-06-05 04:30:42.387496 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | if u dont know what is ping -2023-06-05 04:31:02.854114 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | what is a ping -2023-06-05 04:31:29.192167 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | the network latency between a player's computer (or the -2023-06-05 04:31:29.192714 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | client), and either another client (peer) or the game's server -2023-06-05 04:32:01.625214 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | u have delay , right? -2023-06-05 04:32:26.375175 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | can you bomb jump -2023-06-05 04:32:30.934777 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | yup -2023-06-05 04:32:38.735911 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | i can do it in non epic too -2023-06-05 04:32:43.145503 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | do it -2023-06-05 04:32:53.807364 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | no but you dot -2023-06-05 04:34:12.161465 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | can you just host a game -2023-06-05 04:34:26.959760 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | private server? -2023-06-05 04:34:29.796718 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | why? -2023-06-05 04:34:49.069730 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | for private Lessons -2023-06-05 04:34:56.026383 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | oo -2023-06-05 04:35:07.428764 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | pls -2023-06-05 04:35:30.647509 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | i dont give lesson, i dont know how to do -2023-06-05 04:36:08.615168 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | just watch me play and tell me how to do better plz -2023-06-05 04:36:21.326755 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | whats the time now? -2023-06-05 04:36:34.621943 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | 607 -2023-06-05 04:36:45.855232 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | u cant play very well here probably bcoz of lag -2023-06-05 04:36:53.767370 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | 607? -2023-06-05 04:37:11.934638 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | 6:07 -2023-06-05 04:37:17.144989 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | am or pm? -2023-06-05 04:37:35.232870 + : pb-IF4TUmcFEQ== | Android55478779 | Fred | pm -2023-06-05 04:37:39.835452 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | k -2023-06-05 04:38:39.886372 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | byee -2023-06-05 04:38:48.735515 + : pb-IF4pU1U8VQ== | Android64197238 | JJ | cya -2023-06-05 04:59:56.032816 + : Host msg: | BCS new server arrived -2023-06-05 04:59:56.032857 + : Host msg: | '3 Team walla server' -2023-06-05 04:59:56.032873 + : Host msg: | must try, and give us your feedbacks -2023-06-05 06:04:56.033437 + : Host msg: | BCS new server arrived -2023-06-05 06:04:56.033645 + : Host msg: | '3 Team walla server' -2023-06-05 06:04:56.033662 + : Host msg: | must try, and give us your feedbacks -2023-06-05 07:40:06.684256 + : Host msg: | BCS new server arrived -2023-06-05 07:40:06.684297 + : Host msg: | '3 Team walla server' -2023-06-05 07:40:06.684336 + : Host msg: | must try, and give us your feedbacks -2023-06-05 08:44:58.684575 + : Host msg: | BCS new server arrived -2023-06-05 08:44:58.684775 + : Host msg: | '3 Team walla server' -2023-06-05 08:44:58.684792 + : Host msg: | must try, and give us your feedbacks -2023-06-05 09:40:58.212182 + : pb-IF4OPhMg | Nakumrahul | DEDDY | bhai muje blue me jane de -2023-06-05 09:41:04.632115 + : pb-IF4OPhMg | Nakumrahul | DEDDY | or tu red me aaja na -2023-06-05 09:41:17.581843 + : pb-IF4OPhMg | Nakumrahul | DEDDY | muje red me nai jamta khelna nai Ata red me -2023-06-05 09:41:31.602060 + : pb-IF4OPhMg | Nakumrahul | DEDDY | pls -2023-06-05 09:47:51.046652 + : pb-IF4cUBYfCg== | Hrithiksng | noob master 69 | -2023-06-05 09:49:58.683162 + : Host msg: | BCS new server arrived -2023-06-05 09:49:58.683452 + : Host msg: | '3 Team walla server' -2023-06-05 09:49:58.683480 + : Host msg: | must try, and give us your feedbacks -2023-06-05 09:59:02.033076 + : Host msg: | DEDDY started a kick vote for OM189 -2023-06-05 10:00:38.461865 + : pb-IF4OUBAqNQ== | Intracel63 | infernous | .sry -2023-06-05 10:06:05.453559 + : Host msg: | DEDDY started a kick vote for OM189 -2023-06-05 10:54:58.681282 + : Host msg: | BCS new server arrived -2023-06-05 10:54:58.681477 + : Host msg: | '3 Team walla server' -2023-06-05 10:54:58.681492 + : Host msg: | must try, and give us your feedbacks -2023-06-05 11:07:27.157225 + : Host msg: | Moon🌛 started a kick vote for OM189 -2023-06-05 11:12:09.250637 + : pb-IF4hVVVeHQ== | Abhisake69 | Abhisake69 | -2023-06-05 11:12:09.401908 + : pb-IF4hVVVeHQ== | Abhisake69 | Abhisake69 | -2023-06-05 11:12:12.009702 + : Host msg: | Abhisake69 started a kick vote for TUJABAAP00 -2023-06-05 11:13:43.427926 + : Host msg: | sofya started a kick vote for kaifu op -2023-06-05 11:15:42.165902 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | -2023-06-05 11:15:43.839160 + : pb-IF4hVVVeHQ== | Abhisake69 | Abhisake69 | me -2023-06-05 11:16:37.557833 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | -2023-06-05 11:17:26.726750 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | -2023-06-05 11:21:40.652609 + : pb-IF4nUnZfJg== | Loiteri140 | sofya | ********* Ishita -2023-06-05 11:21:50.392737 + : pb-IF4nUnZfJg== | Loiteri140 | sofya | game rame x -2023-06-05 11:28:01.894203 + : Host msg: | Moon🌛 started a kick vote for MeanestRe2 -2023-06-05 11:28:13.494484 + : pb-IF4mU3IFMw== | MeanestRe2 | MeanestRe2 | **** moon -2023-06-05 11:28:45.930978 + : pb-IF4mU3IFMw== | MeanestRe2 | MeanestRe2 | kick moon -2023-06-05 11:28:52.042865 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | why -2023-06-05 11:29:02.052616 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | terimaa cho. d dunga -2023-06-05 11:29:13.841295 + : pb-IF4mU3IFMw== | MeanestRe2 | MeanestRe2 | i will kill u mf -2023-06-05 11:29:32.811125 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | let's see mf sf rf tf yf if of lf -2023-06-05 11:30:09.424751 + : pb-IF4jF1NY | Hoemie | Hoemlander | play -2023-06-05 11:30:29.419947 + : Host msg: | Hoemlander started a kick vote for MeanestRe2 -2023-06-05 11:30:46.744571 + : pb-IF4jF1NY | Hoemie | Hoemlander | vote -2023-06-05 11:31:00.230488 + : pb-IF4jF1NY | Hoemie | Hoemlander | Ishita -2023-06-05 11:32:27.944630 + : pb-IF4jF1NY | Hoemie | Hoemlander | -2023-06-05 11:32:46.283997 + : Host msg: | Moon🌛 started a kick vote for MeanestRe2 -2023-06-05 11:33:17.284729 + : pb-IF4jF1NY | Hoemie | Hoemlander | -2023-06-05 11:34:49.364828 + : pb-IF4jF1NY | Hoemie | Hoemlander | :( -2023-06-05 11:34:50.219378 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | n8ce -2023-06-05 11:37:11.173831 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | home come -2023-06-05 11:37:21.810674 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | noob -2023-06-05 11:37:28.700741 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | 🤣 -2023-06-05 11:37:32.339617 + : pb-IF4jF1NY | Hoemie | Hoemlander | ? -2023-06-05 11:37:37.389941 + : pb-IF4jF1NY | Hoemie | Hoemlander | behave -2023-06-05 11:37:46.944748 + : pb-IF4jF1NY | Hoemie | Hoemlander | ban karwa duga -2023-06-05 11:39:08.919854 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | sahilp is empty aa -2023-06-05 11:39:09.045328 + : Host msg: | Hoemlander started a kick vote for Benji -2023-06-05 11:40:04.974808 + : pb-IF4jF1NY | Hoemie | Hoemlander | noob -2023-06-05 11:40:24.220259 + : pb-IF4jF1NY | Hoemie | Hoemlander | -2023-06-05 11:40:24.374638 + : pb-IF4jF1NY | Hoemie | Hoemlander | -2023-06-05 11:40:33.544465 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | bsd k , ud mt aram s -2023-06-05 11:40:43.359578 + : pb-IF4jF1NY | Hoemie | Hoemlander | kisko bola? -2023-06-05 11:40:49.969136 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | ibomb -2023-06-05 11:40:50.378123 + : pb-IF4mVGZaCw== | iBombsquad | iBombsquad | call pe -2023-06-05 11:40:51.578266 + : pb-IF4mVGZaCw== | iBombsquad | iBombsquad | hu -2023-06-05 11:40:53.493256 + : pb-IF4mVGZaCw== | iBombsquad | iBombsquad | galti se -2023-06-05 11:42:04.147605 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | -2023-06-05 11:43:39.299574 + : pb-IF4jF1NY | Hoemie | Hoemlander | -2023-06-05 11:43:39.455146 + : pb-IF4jF1NY | Hoemie | Hoemlander | -2023-06-05 11:43:40.629645 + : Host msg: | Hoemlander started a kick vote for unx nk -2023-06-05 11:44:17.823144 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | -2023-06-05 11:44:33.919849 + : pb-IF4jF1NY | Hoemie | Hoemlander | -2023-06-05 11:46:06.625244 + : pb-IF4jF1NY | Hoemie | Hoemlander | moon khel -2023-06-05 11:46:58.494655 + : pb-IF4jF1NY | Hoemie | Hoemlander | -2023-06-05 11:46:58.624781 + : pb-IF4jF1NY | Hoemie | Hoemlander | -2023-06-05 11:47:26.250244 + : pb-IF4jF1NY | Hoemie | Hoemlander | -2023-06-05 11:48:10.366844 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | -2023-06-05 11:48:49.299955 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | -2023-06-05 11:51:44.201518 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | lauu. de niche kya mummy h teri uper aa -2023-06-05 11:57:17.176710 + : pb-IF5RUGxdLA== | Android65184544 | Cowboy | /em hi -2023-06-05 11:59:58.679517 + : Host msg: | BCS new server arrived -2023-06-05 11:59:58.679596 + : Host msg: | '3 Team walla server' -2023-06-05 11:59:58.679615 + : Host msg: | must try, and give us your feedbacks -2023-06-05 12:15:36.347213 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | wait -2023-06-05 12:21:43.537233 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | s3d -2023-06-05 12:22:39.008498 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | 🥲 -2023-06-05 12:25:01.026446 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | 😂 -2023-06-05 12:26:08.208652 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | n8ce -2023-06-05 12:28:36.703654 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | wht hopn -2023-06-05 12:28:46.181475 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | play -2023-06-05 12:34:01.240365 + : pb-IF4WLEsf | Thunderbir | BOT/tag B.O.T | . test -2023-06-05 12:39:00.429903 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | bye -2023-06-05 12:58:01.625879 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | i am going blue team -2023-06-05 12:58:10.846372 + : pb-IF4cVGMHLA== | masoom1980 | | wait -2023-06-05 12:59:48.331390 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | wtf -2023-06-05 13:00:46.957404 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | 🥲🥲 -2023-06-05 13:00:47.527044 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | noooo -2023-06-05 13:00:49.299052 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | sed -2023-06-05 13:00:58.147046 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | r u sed ??? -2023-06-05 13:01:11.118359 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | sed fo uh -2023-06-05 13:01:48.716856 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | u r soo pro -2023-06-05 13:03:47.517138 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | 😒 -2023-06-05 13:04:33.040555 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | 😅 -2023-06-05 13:04:58.685394 + : Host msg: | BCS new server arrived -2023-06-05 13:04:58.685451 + : Host msg: | '3 Team walla server' -2023-06-05 13:04:58.685471 + : Host msg: | must try, and give us your feedbacks -2023-06-05 13:05:30.706583 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | shitt -2023-06-05 13:06:08.942618 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | 😂 -2023-06-05 13:06:22.300411 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | 😡 -2023-06-05 13:07:09.717682 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | plz anyone come in my team -2023-06-05 13:08:03.881077 + : pb-IF4LUGYKPw== | BrinyLunat | Maximus | sorry -2023-06-05 13:08:10.266588 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | -2023-06-05 13:08:11.040340 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | yes -2023-06-05 13:08:52.793659 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | end -2023-06-05 13:08:52.793890 + : Host msg: | end vote started -2023-06-05 13:09:00.553697 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | Piro end -2023-06-05 13:09:01.558041 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | end -2023-06-05 13:09:05.256613 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | end -2023-06-05 13:09:05.256732 + : Host msg: | end vote succeed -2023-06-05 13:10:54.437884 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | u can do it bunny -2023-06-05 13:11:18.823682 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | -2023-06-05 13:11:19.817277 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | yeeesssss -2023-06-05 13:12:27.661781 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | lol -2023-06-05 13:12:28.637673 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | shit -2023-06-05 13:12:44.391464 + : pb-IF4LUGYKPw== | BrinyLunat | Crom | whi -2023-06-05 13:13:17.843874 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | Piro 😂. -2023-06-05 13:14:20.627248 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | 😡😡😡 -2023-06-05 13:15:12.827012 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | i hate this match -2023-06-05 13:15:26.376838 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | and i don't know how to play -2023-06-05 13:17:02.096272 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | -2023-06-05 13:17:07.546045 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | 😅 -2023-06-05 13:17:48.648801 + : Host msg: | Benji started a kick vote for Piro. -2023-06-05 13:17:57.296803 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | no y -2023-06-05 13:19:35.976707 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | lol -2023-06-05 13:21:55.878490 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | come to sahilp -2023-06-05 13:22:21.590084 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | come to sahilp teams -2023-06-05 13:39:52.466819 + : Host msg: | Server will restart on next opportunity. (series end) -2023-06-05 13:57:33.591624 + : Host msg: | TresslessP... started a kick vote for darkness -2023-06-05 13:57:58.936472 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | sala betray mat kar -2023-06-05 13:59:48.075622 + : Host msg: | DEDDY started a kick vote for darkness -2023-06-05 13:59:51.665500 + : pb-IF4OPhMg | Nakumrahul | DEDDY | kik -2023-06-05 14:00:37.124903 + : pb-IF4OPhMg | Nakumrahul | DEDDY | kik karo sab -2023-06-05 14:00:43.997761 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | kisko -2023-06-05 14:00:45.615393 + : pb-IF4OPhMg | Nakumrahul | DEDDY | darkness ko -2023-06-05 14:00:52.691830 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | Q -2023-06-05 14:01:11.932837 + : pb-IF4cVGMHLA== | masoom1980 | | huh -2023-06-05 14:01:13.484415 + : Host msg: | BCS new server arrived -2023-06-05 14:01:13.484473 + : Host msg: | '3 Team walla server' -2023-06-05 14:01:13.484515 + : Host msg: | must try, and give us your feedbacks -2023-06-05 14:01:59.141923 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | kutta -2023-06-05 14:02:31.057121 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | 😂 -2023-06-05 14:03:05.571864 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | op -2023-06-05 14:03:34.797978 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | deddy come in my team -2023-06-05 14:03:43.446488 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | no way -2023-06-05 14:03:48.911705 + : Host msg: | Piro. started a kick vote for BrinyLunat -2023-06-05 14:03:50.898644 + : pb-IF4OPhMg | Nakumrahul | DEDDY | mere ko red me nai jamta -2023-06-05 14:04:18.611656 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | colour se kuchh nahi hota -2023-06-05 14:04:44.236928 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | aana -2023-06-05 14:06:17.087256 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | yea -2023-06-05 14:06:26.307146 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | aana dedy -2023-06-05 14:06:26.579363 + : pb-IF4OPhMg | Nakumrahul | DEDDY | are colour ki bat nai h -2023-06-05 14:06:34.067344 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | to kya -2023-06-05 14:06:39.269193 + : pb-IF4OPhMg | Nakumrahul | DEDDY | muje red me khelna hi nai jamta -2023-06-05 14:06:50.159507 + : pb-IF4OPhMg | Nakumrahul | DEDDY | galat side hoti he muje red -2023-06-05 14:06:52.729074 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | ha kya red me -2023-06-05 14:07:02.709031 + : pb-IF4OPhMg | Nakumrahul | DEDDY | me pehle s hi blue me hi khelta hu -2023-06-05 14:07:20.506682 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | ma aau kya tere team me -2023-06-05 14:07:40.909055 + : pb-IF4OPhMg | Nakumrahul | DEDDY | aaja muje koi problem nai h -2023-06-05 14:08:15.340744 + : pb-IF4cVGMHLA== | masoom1980 | | nahi AA pa Rahi hu -2023-06-05 14:08:19.447098 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | no you can't come -2023-06-05 14:08:33.126898 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | nikhil go in red -2023-06-05 14:08:58.126966 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | end -2023-06-05 14:08:58.127016 + : Host msg: | end vote started -2023-06-05 14:10:11.315607 + : Host msg: | Crom started a kick vote for Piro. -2023-06-05 14:15:50.028152 + : Host msg: | TresslessP... started a kick vote for Anaconda i... -2023-06-05 14:19:17.708686 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | 😂 -2023-06-05 14:26:47.871823 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | -2023-06-05 14:28:37.049511 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | LOL MOON -2023-06-05 14:28:49.457985 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | -2023-06-05 14:29:32.068758 + : Host msg: | sad ,your account is flagged contact server owner for unban -2023-06-05 14:32:52.708519 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | mast teammate hai mera -2023-06-05 14:32:58.572218 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | sry -2023-06-05 14:33:00.415248 + : pb-IF4LU0wKIw== | Omiii15 | Chunk | 😄 -2023-06-05 14:34:18.364311 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | kya jnt sa khel rhe h -2023-06-05 14:34:21.247500 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | bhai ne legs paakd liye mere lol -2023-06-05 14:34:44.982374 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | 😂 -2023-06-05 14:34:45.927553 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | bhai ne neck pakad le mere lol -2023-06-05 14:36:08.595264 + : pb-IF4LU0wKIw== | Omiii15 | Chunk | -2023-06-05 14:36:08.735624 + : pb-IF4LU0wKIw== | Omiii15 | Chunk | -2023-06-05 14:36:10.031573 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | -2023-06-05 14:36:10.342358 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | -2023-06-05 14:36:12.800316 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | best team -2023-06-05 14:37:39.252584 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | hi bombsqua. -2023-06-05 14:38:11.165537 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | hi -2023-06-05 14:38:15.220876 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | hi -2023-06-05 14:38:15.391665 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | -2023-06-05 14:38:16.355432 + : pb-IF4LU0wKIw== | Omiii15 | Chunk | ping -2023-06-05 14:38:40.176593 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | gg -2023-06-05 14:38:44.744646 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | 😲 -2023-06-05 14:38:47.643461 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | good guys -2023-06-05 14:39:08.947465 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | waah bro moon -2023-06-05 14:39:17.567443 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | waah benji bro -2023-06-05 14:39:27.380282 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | c ho kya -2023-06-05 14:40:01.927402 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | welcome bhai MOon -2023-06-05 14:40:07.564837 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | tnx -2023-06-05 14:40:38.865408 + : Host msg: | Benji started a kick vote for Are Vedya😁 -2023-06-05 14:40:45.825397 + : pb-IF4LU0wKIw== | Omiii15 | Chunk | 1 -2023-06-05 14:41:47.356113 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | lag -2023-06-05 14:42:22.591512 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | 2v4 -2023-06-05 14:42:31.887448 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | toh kya hua bhai -2023-06-05 14:42:33.191622 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | India red -2023-06-05 14:42:56.001514 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | unfair -2023-06-05 14:43:09.873648 + : pb-IF4LU0wKIw== | Omiii15 | Chunk | lagging -2023-06-05 14:43:12.804132 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | abe -2023-06-05 14:43:23.704733 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | -2023-06-05 14:43:39.324436 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | what -2023-06-05 14:44:29.341096 + : Host msg: | Moon🌛 started a kick vote for BrassCongr -2023-06-05 14:44:41.852571 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | vote -2023-06-05 14:44:42.820875 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | India vote -2023-06-05 14:44:50.445558 + : Host msg: | Kicked "BrassCongr" -2023-06-05 14:44:56.063842 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | boted bro -2023-06-05 14:46:30.107580 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | mast goal kiya moon -2023-06-05 14:47:09.273785 + : Host msg: | Chunk started a kick vote for Benji -2023-06-05 14:47:37.136858 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | benji, gnd tod dunga dng s -2023-06-05 14:47:39.415567 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | clutched -2023-06-05 14:48:23.779445 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | hi lolan -2023-06-05 14:48:33.091456 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 14:50:11.347026 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | best team -2023-06-05 14:50:45.999071 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | moon sent flying to the moon space -2023-06-05 14:50:59.643327 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | 🤣 -2023-06-05 14:51:09.179218 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | best team -2023-06-05 14:51:15.908014 + : pb-IF4jU2gAEg== | Lucklesspe | ᴅᴏʀᴇᴍᴏɴ | oo -2023-06-05 14:51:33.687501 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | mere team me bus me he hu -2023-06-05 14:52:05.215185 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | nice lolan -2023-06-05 14:52:13.006481 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 14:52:59.955990 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | yeh dhek lo isse -2023-06-05 14:53:09.356001 + : Host msg: | India started a kick vote for NighBluepr -2023-06-05 14:53:36.508085 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | madad karne aaya tha me toh moon -2023-06-05 14:53:53.174128 + : pb-IF4jU2gAEg== | Lucklesspe | ᴅᴏʀᴇᴍᴏɴ | oooo -2023-06-05 14:54:25.506649 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | lag -2023-06-05 14:54:29.656236 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | yes -2023-06-05 14:55:14.476892 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | mere team kaha hai -2023-06-05 14:55:37.687329 + : pb-IF4jU2gAEg== | Lucklesspe | ᴅᴏʀᴇᴍᴏɴ | oooo -2023-06-05 14:55:51.036153 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | yyy -2023-06-05 14:56:10.276387 + : pb-IF4jU2gAEg== | Lucklesspe | ᴅᴏʀᴇᴍᴏɴ | sry -2023-06-05 14:56:19.520201 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | no sry give me 10 pushups -2023-06-05 14:56:32.834993 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 14:58:18.312610 + : pb-IF4jU2gAEg== | Lucklesspe | ᴅᴏʀᴇᴍᴏɴ | ooo -2023-06-05 14:58:20.762366 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | don't betray -2023-06-05 14:58:22.095339 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | worst strategy -2023-06-05 14:58:39.250415 + : pb-IF4jU2gAEg== | Lucklesspe | ᴅᴏʀᴇᴍᴏɴ | ok -2023-06-05 14:59:01.339071 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | Dr boom r u here -2023-06-05 14:59:14.851202 + : pb-IF4jU2gAEg== | Lucklesspe | ᴅᴏʀᴇᴍᴏɴ | one sec ill back to game -2023-06-05 14:59:59.542717 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | n3rueuahsjddai -2023-06-05 15:00:52.020732 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | ahhahahahahah -2023-06-05 15:00:58.360902 + : pb-IF4jU2gAEg== | Lucklesspe | ᴅᴏʀᴇᴍᴏɴ | I'm back -2023-06-05 15:01:01.708831 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | aur doremon -2023-06-05 15:01:06.954785 + : pb-IF4jU2gAEg== | Lucklesspe | ᴅᴏʀᴇᴍᴏɴ | ha -2023-06-05 15:01:08.752738 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | kaha se aaye ho aap -2023-06-05 15:01:18.324888 + : pb-IF4jU2gAEg== | Lucklesspe | ᴅᴏʀᴇᴍᴏɴ | who are u -2023-06-05 15:01:21.785405 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | abhi 1 sec kha gaye the -2023-06-05 15:02:10.898055 + : Host msg: | India started a kick vote for Mudasser14 -2023-06-05 15:03:47.110821 + : pb-IF4jU2gAEg== | Lucklesspe | ᴅᴏʀᴇᴍᴏɴ | lol sry -2023-06-05 15:03:49.723882 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | India tried his best -2023-06-05 15:03:55.132600 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | no -2023-06-05 15:05:31.005864 + : pb-IF4jU2gAEg== | Lucklesspe | ᴅᴏʀᴇᴍᴏɴ | end -2023-06-05 15:05:31.006346 + : Host msg: | end vote started -2023-06-05 15:05:31.006909 + : Host msg: | 3 more end votes required -2023-06-05 15:05:40.689927 + : pb-IF41U0YxAw== | SkullmasTe | Dr boom | end -2023-06-05 15:05:51.864227 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | aabe pagal hai kya end kar raha hai -2023-06-05 15:05:58.065202 + : pb-IF4jU2gAEg== | Lucklesspe | ᴅᴏʀᴇᴍᴏɴ | end -2023-06-05 15:06:05.464431 + : Host msg: | BCS new server arrived -2023-06-05 15:06:05.464497 + : Host msg: | '3 Team walla server' -2023-06-05 15:06:05.465202 + : Host msg: | must try, and give us your feedbacks -2023-06-05 15:06:49.003548 + : Host msg: | ᴅᴏʀᴇᴍᴏɴ started a kick vote for BOB. -2023-06-05 15:08:12.635569 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | gg -2023-06-05 15:08:17.143794 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | ha bhai -2023-06-05 15:08:18.703579 + : pb-IF4jU2gAEg== | Lucklesspe | ᴅᴏʀᴇᴍᴏɴ | kik bob -2023-06-05 15:08:33.899847 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | b00b the builder -2023-06-05 15:08:34.522202 + : pb-IF5TUlkMVg== | Unyieldi20 | BOB. | ******e *********d -2023-06-05 15:08:44.615693 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | 0 -2023-06-05 15:08:44.787695 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | -2023-06-05 15:08:55.611916 + : pb-IF5TUlkMVg== | Unyieldi20 | BOB. | baap ko kick karega saaaaal3eee -2023-06-05 15:08:57.196612 + : pb-IF41U0YxAw== | SkullmasTe | Dr boom | noob -2023-06-05 15:09:00.883648 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | 0 -2023-06-05 15:09:03.958454 + : pb-IF4jU2gAEg== | Lucklesspe | ᴅᴏʀᴇᴍᴏɴ | tu Noob yaar -2023-06-05 15:09:11.104702 + : pb-IF4jU2gAEg== | Lucklesspe | ᴅᴏʀᴇᴍᴏɴ | betrayed -2023-06-05 15:09:23.842561 + : pb-IF5TUlkMVg== | Unyieldi20 | BOB. | baap baap hota hai bete -2023-06-05 15:09:31.919877 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | this is what i wanted to see, no name nice -2023-06-05 15:09:34.602112 + : pb-IF5TUlkMVg== | Unyieldi20 | BOB. | &I m ur baap -2023-06-05 15:09:37.810700 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | tq india -2023-06-05 15:09:50.700165 + : pb-IF4jU2gAEg== | Lucklesspe | ᴅᴏʀᴇᴍᴏɴ | OK come to bcs snash -2023-06-05 15:09:56.856554 + : pb-IF4jU2gAEg== | Lucklesspe | ᴅᴏʀᴇᴍᴏɴ | smash -2023-06-05 15:10:05.955600 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | this is best pros only play this -2023-06-05 15:10:15.620377 + : pb-IF4tVGtfDQ== | Mudasser14 | Mudasser14 | lol -2023-06-05 15:11:02.165637 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | gg -2023-06-05 15:11:02.939844 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | nice -2023-06-05 15:11:06.785482 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | tq -2023-06-05 15:11:18.711653 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | thank you toh pura bol lo bhai -2023-06-05 15:12:10.236140 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | aur nashta kar liya? bole toh lunch -2023-06-05 15:13:02.464207 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | ram 16 gb -2023-06-05 15:13:10.505538 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | s -2023-06-05 15:14:40.587786 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | yeh boi -2023-06-05 15:15:03.347780 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | sabash -2023-06-05 15:15:08.165736 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | tanq -2023-06-05 15:15:11.520141 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | garv hai tum par -2023-06-05 15:15:53.925655 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | tq -2023-06-05 15:16:10.116629 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | rip -2023-06-05 15:17:02.531141 + : pb-IF41U0YxAw== | SkullmasTe | Dr boom | rip india -2023-06-05 15:18:14.419436 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | nice bhai -2023-06-05 15:18:51.527383 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | aur kon kon se game khelte ho aap dono? -2023-06-05 15:19:45.763179 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | bhag ja na -2023-06-05 15:19:58.035181 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | kya milega maar kar -2023-06-05 15:20:52.215311 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | kaisa laga jeet kar -2023-06-05 15:22:27.044464 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | loser -2023-06-05 15:22:54.287199 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | bye dr, boom -2023-06-05 15:23:12.303179 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | bye toh bol de sasure -2023-06-05 15:24:37.099247 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | gg -2023-06-05 15:24:40.348169 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | bye -2023-06-05 15:24:41.328339 + : pb-IF5SUmgtCA== | Android55311626 | 7A | smart -2023-06-05 15:27:47.698542 + : pb-IF5SUmgtCA== | Android55311626 | 7A | tg -2023-06-05 15:57:07.701579 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | 😚 -2023-06-05 15:57:48.609494 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | 😅 -2023-06-05 15:57:58.681656 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | hi piro -2023-06-05 15:58:13.959152 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | hello -2023-06-05 15:58:21.706139 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | who r u -2023-06-05 15:58:44.101632 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | sameer -2023-06-05 15:58:48.602011 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | i m new -2023-06-05 15:59:03.432047 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | or tm? -2023-06-05 15:59:05.815184 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | oh i am asma -2023-06-05 15:59:22.011584 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | ladki h tu 😃 -2023-06-05 15:59:28.277145 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | ha -2023-06-05 15:59:40.221709 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | oh yeah -2023-06-05 15:59:44.041751 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | 😂 -2023-06-05 15:59:52.718924 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | tu ladka ha ?? -2023-06-05 16:00:00.211749 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | ha koi sak -2023-06-05 16:01:16.725347 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | tu chaka ha ??? -2023-06-05 16:01:33.601033 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | 😶 -2023-06-05 16:01:40.110955 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | khelll -2023-06-05 16:01:52.160563 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | 😡🤬 -2023-06-05 16:02:00.500707 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | meko nhi khelna -2023-06-05 16:02:27.197242 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | piro kise se bi baat mat Kara kar -2023-06-05 16:02:27.759114 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | accha ha left ho gaya chaka -2023-06-05 16:03:16.668828 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | nooooo -2023-06-05 16:03:17.582239 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | silver betray mat kar -2023-06-05 16:03:45.915197 + : Host msg: | TresslessP... started a kick vote for MrSilver -2023-06-05 16:04:14.880946 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | abe -2023-06-05 16:04:16.377078 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | 1 -2023-06-05 16:06:16.222728 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | ku -2023-06-05 16:06:59.994772 + : Host msg: | Only 1 player per IP allowed, disconnecting this device. -2023-06-05 16:08:35.392913 + : Host msg: | Piro. started a kick vote for TresslessP... -2023-06-05 16:08:59.478823 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | .............hmmmm.......😡😡😡 -2023-06-05 16:09:35.090308 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | . -2023-06-05 16:09:42.350171 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | ... -2023-06-05 16:09:47.664221 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | whay -2023-06-05 16:10:25.781805 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | fast -2023-06-05 16:10:27.806547 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | u can do it -2023-06-05 16:10:37.172636 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | lol noob levi -2023-06-05 16:10:53.115980 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | 🤟🤟🤟🖖🤟🤟 -2023-06-05 16:11:05.601207 + : Host msg: | BCS new server arrived -2023-06-05 16:11:05.601260 + : Host msg: | '3 Team walla server' -2023-06-05 16:11:05.601282 + : Host msg: | must try, and give us your feedbacks -2023-06-05 17:16:05.596112 + : Host msg: | BCS new server arrived -2023-06-05 17:16:05.596302 + : Host msg: | '3 Team walla server' -2023-06-05 17:16:05.596320 + : Host msg: | must try, and give us your feedbacks -2023-06-05 17:47:27.802816 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | /remove 218 -2023-06-05 17:49:49.350025 + : pb-IF43F2ku | Rambunct61 | Michel | -2023-06-05 17:50:00.955196 + : Host msg: | lodhipro17 started a kick vote for [SALMAN] -2023-06-05 17:56:23.757458 + : pb-IF4cUBYfCg== | Hrithiksng | noob master 69 | -2023-06-05 17:56:23.897320 + : pb-IF4cUBYfCg== | Hrithiksng | noob master 69 | -2023-06-05 17:57:01.407406 + : pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA | tooworst | tooworst | sry -2023-06-05 18:03:56.850024 + : pb-IF43F2ku | Rambunct61 | Michel | -2023-06-05 18:03:57.010022 + : pb-IF43F2ku | Rambunct61 | Michel | -2023-06-05 18:13:31.106816 + : Host msg: | infernous started a kick vote for MPF -2023-06-05 18:16:11.386676 + : pb-IF4MU08lCQ== | lodhipro17 | lodhipro17 | you guys 1 v 1 i am noob -2023-06-05 18:18:37.406265 + : pb-IF4MU08lCQ== | lodhipro17 | lodhipro17 | wow -2023-06-05 18:21:05.570344 + : Host msg: | BCS new server arrived -2023-06-05 18:21:05.570403 + : Host msg: | '3 Team walla server' -2023-06-05 18:21:05.570426 + : Host msg: | must try, and give us your feedbacks -2023-06-05 18:21:59.623049 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 18:23:42.333748 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | -2023-06-05 18:23:42.469793 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | -2023-06-05 18:27:37.505975 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | kya lolan bhai -2023-06-05 18:28:38.889073 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 18:28:39.975573 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | -2023-06-05 18:28:42.258431 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 18:28:51.136560 + : pb-IF4rLkwp | MPF | MPF | ggs -2023-06-05 18:28:58.286499 + : pb-IF4TUxEoKg== | TUJABAAP00 | TUJABAAP00 | sorry mf -2023-06-05 18:29:19.419759 + : pb-IF4rLkwp | MPF | MPF | no need to apologize, it's fine -2023-06-05 18:30:04.575201 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 18:30:28.244097 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 18:30:40.289029 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | -2023-06-05 18:32:48.641121 + : pb-IF4rLkwp | MPF | MPF | aa -2023-06-05 18:32:59.108944 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 18:33:01.967300 + : pb-IF4rLkwp | MPF | MPF | yo -2023-06-05 18:33:07.508574 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | SmoothyBro | ho -2023-06-05 18:34:25.039108 + : pb-IF49VFdbEQ== | iamtex0001 | | SmoothyBro hello sir -2023-06-05 18:34:35.445381 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | SmoothyBro | good evening -2023-06-05 18:34:51.842093 + : pb-IF49VFdbEQ== | iamtex0001 | ❥₮𝙴χ᭄⁰⁷ | good Evening -2023-06-05 18:35:32.174087 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 18:35:32.427989 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 18:35:48.161114 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 18:35:59.169800 + : pb-IF4rLkwp | MPF | MPF | weeeee -2023-06-05 18:37:01.146858 + : pb-IF4rLkwp | MPF | MPF | gg -2023-06-05 18:38:13.801038 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | YO mpf finnally -2023-06-05 18:38:18.512026 + : pb-IF4rLkwp | MPF | MPF | yoo -2023-06-05 18:39:03.323029 + : Host msg: | Tera baap started a kick vote for lodhipro17 -2023-06-05 18:41:05.611150 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 18:41:05.792752 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 18:41:05.859721 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 18:41:17.267152 + : pb-IF4MU08lCQ== | lodhipro17 | lodhipro17 | -2023-06-05 18:41:17.377249 + : pb-IF4MU08lCQ== | lodhipro17 | lodhipro17 | -2023-06-05 18:41:17.496169 + : pb-IF4MU08lCQ== | lodhipro17 | lodhipro17 | -2023-06-05 18:41:17.717238 + : pb-IF4MU08lCQ== | lodhipro17 | lodhipro17 | -2023-06-05 18:42:16.526834 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 18:43:59.430929 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-05 18:44:37.965109 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 18:44:39.906221 + : pb-IF4MU08lCQ== | lodhipro17 | lodhipro17 | -2023-06-05 18:45:04.019928 + : pb-IF4rLkwp | MPF | MPF | Android63983659 u there? -2023-06-05 18:45:14.344594 + : pb-IF4QUm8kEw== | CrayCrayPe | ➳ᴹᴿ✿࿐𝑷𝑼𝑩𝑮 𝑲 | Dr boom you are girl -2023-06-05 18:46:37.020443 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | aa -2023-06-05 18:46:47.111801 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 18:47:04.783571 + : pb-IF4rLkwp | MPF | MPF | can someone go to blue -2023-06-05 18:47:12.706140 + : pb-IF4MU08lCQ== | lodhipro17 | lodhipro17 | yes iam -2023-06-05 18:49:24.357983 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | y I'm noob -2023-06-05 18:50:19.699626 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | MPF can u do bombjump? -2023-06-05 18:50:35.848760 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-05 18:50:36.016100 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-05 18:50:36.151692 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-05 18:51:01.354744 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | I'm the noobest in red -2023-06-05 18:51:10.115790 + : pb-IF4rLkwp | MPF | MPF | I can try but I keep missing buttons today o.o -2023-06-05 18:51:27.191074 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | i will also -2023-06-05 18:51:52.967878 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | ah missing swipe -2023-06-05 18:52:12.986209 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 18:52:41.530297 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | u didn't taught me that jumps -2023-06-05 18:53:11.323523 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | yo -2023-06-05 18:53:11.638381 + : pb-IF4rLkwp | MPF | MPF | eh? I did, it's the same combo, but the timing is more precise ig -2023-06-05 18:53:15.684404 + : pb-IF4rLkwp | MPF | MPF | yo -2023-06-05 18:54:17.292983 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-05 18:54:47.922940 + : pb-IF4LU0wKIw== | Omiii15 | Duck | bomb mat daal L -2023-06-05 18:55:12.039685 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | I'm missing swipe -2023-06-05 18:56:24.606955 + : pb-IF4MU08lCQ== | lodhipro17 | lodhipro17 | team -2023-06-05 18:56:26.998642 + : pb-IF4rLkwp | MPF | MPF | gg -2023-06-05 18:56:34.904199 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | wait I'll try now -2023-06-05 18:57:03.716549 + : pb-IF4MU08lCQ== | lodhipro17 | lodhipro17 | fk -2023-06-05 18:57:34.455795 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | lol what happened -2023-06-05 18:57:40.770910 + : Host msg: | Tera baap started a kick vote for Rose -2023-06-05 18:59:11.803302 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | ee -2023-06-05 18:59:34.738855 + : pb-IF4LU0wKIw== | Omiii15 | Duck | abbe bomb mat dalo -2023-06-05 18:59:48.077491 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | op -2023-06-05 19:01:08.170107 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-05 19:01:25.454048 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | my hands are freezed -2023-06-05 19:01:37.735876 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 19:01:42.702301 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | lol -2023-06-05 19:02:30.831989 + : Host msg: | Dizzy started a kick vote for lodhipro17 -2023-06-05 19:02:43.036866 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | I'm not able to kill freezing -2023-06-05 19:02:57.619449 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | lol -2023-06-05 19:03:14.297591 + : pb-IF4LU0wKIw== | Omiii15 | Duck | 😆 -2023-06-05 19:03:16.599537 + : pb-IF4rLkwp | MPF | MPF | xd -2023-06-05 19:03:32.931203 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 19:03:36.267824 + : pb-IF4LU0wKIw== | Omiii15 | Duck | gg master -2023-06-05 19:03:55.967019 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-05 19:04:27.735724 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | wth -2023-06-05 19:05:23.316539 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | so crowd -2023-06-05 19:05:26.465518 + : pb-IF4cUBYfCg== | Hrithiksng | noob master 69 | -2023-06-05 19:05:28.822380 + : pb-IF4rLkwp | MPF | MPF | yis -2023-06-05 19:06:22.206012 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-05 19:07:47.602018 + : pb-IF4TUxEoKg== | TUJABAAP00 | TUJABAAP00 | -2023-06-05 19:07:47.731796 + : pb-IF4TUxEoKg== | TUJABAAP00 | TUJABAAP00 | -2023-06-05 19:07:53.990006 + : pb-IF4rLkwp | MPF | MPF | ggs -2023-06-05 19:07:55.490310 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | OP -2023-06-05 19:07:57.625626 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | nc -2023-06-05 19:08:14.128323 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | pill -2023-06-05 19:10:47.887323 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | this is new trick? -2023-06-05 19:10:56.014193 + : pb-IF4LU0wKIw== | Omiii15 | Duck | gg -2023-06-05 19:11:00.816916 + : pb-IF4rLkwp | MPF | MPF | gg -2023-06-05 19:11:03.801222 + : pb-IF4rLkwp | MPF | MPF | which -2023-06-05 19:12:06.096586 + : pb-IF4MU08lCQ== | lodhipro17 | lodhipro17 | come in blue -2023-06-05 19:12:16.359898 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-05 19:12:16.525721 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-05 19:12:16.737296 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-05 19:12:16.835890 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-05 19:13:02.297416 + : pb-IF4rLkwp | MPF | MPF | demn -2023-06-05 19:13:06.082148 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | xd -2023-06-05 19:13:08.827993 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | that punch bomb -2023-06-05 19:13:19.157866 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | yeah this one -2023-06-05 19:13:46.068489 + : pb-IF4rLkwp | MPF | MPF | aaaa -2023-06-05 19:13:50.289948 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | aaa -2023-06-05 19:14:07.136979 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-05 19:14:14.769880 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | i like my enemise -2023-06-05 19:14:26.421227 + : pb-IF4MU08lCQ== | lodhipro17 | lodhipro17 | no 1 vs no 2 -2023-06-05 19:15:08.888005 + : Host msg: | lodhipro17 started a kick vote for MPF -2023-06-05 19:15:14.253735 + : pb-IF4LU0wKIw== | Omiii15 | Duck | 0 -2023-06-05 19:15:20.614723 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | 0000 -2023-06-05 19:15:22.837048 + : pb-IF4MU08lCQ== | lodhipro17 | lodhipro17 | sry -2023-06-05 19:15:25.267014 + : pb-IF4MU08lCQ== | lodhipro17 | lodhipro17 | 00 -2023-06-05 19:15:39.787145 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | 00 -2023-06-05 19:16:11.622764 + : pb-IF4rLkwp | MPF | MPF | ow -2023-06-05 19:16:38.937161 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-05 19:17:18.251141 + : pb-IF4MU08lCQ== | lodhipro17 | lodhipro17 | close -2023-06-05 19:17:55.604386 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | MPF try here -2023-06-05 19:18:08.638110 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | it's more fun -2023-06-05 19:18:11.405539 + : pb-IF4rLkwp | MPF | MPF | still missing buttons xd -2023-06-05 19:18:15.267113 + : pb-IF4rLkwp | MPF | MPF | but ye -2023-06-05 19:18:38.759223 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-05 19:18:40.558972 + : pb-IF4rLkwp | MPF | MPF | weeeeeeee -2023-06-05 19:19:08.303561 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | weeeee -2023-06-05 19:19:14.757051 + : pb-IF4MU08lCQ== | lodhipro17 | lodhipro17 | draw -2023-06-05 19:19:20.158084 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | red won -2023-06-05 19:19:24.501950 + : pb-IF4TUxEoKg== | TUJABAAP00 | TUJABAAP00 | -2023-06-05 19:19:24.641955 + : pb-IF4TUxEoKg== | TUJABAAP00 | TUJABAAP00 | -2023-06-05 19:19:24.742013 + : pb-IF4TUxEoKg== | TUJABAAP00 | TUJABAAP00 | -2023-06-05 19:19:26.406664 + : pb-IF4MU08lCQ== | lodhipro17 | lodhipro17 | 😐 -2023-06-05 19:20:13.121962 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-05 19:20:32.553381 + : pb-IF4rLkwp | MPF | MPF | gtg after this round -2023-06-05 19:20:44.140683 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | bye -2023-06-05 19:20:46.013231 + : pb-IF4rLkwp | MPF | MPF | gg wp cya -2023-06-05 19:21:35.308914 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | bye guys -2023-06-05 19:21:53.353624 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | bye to bolo -2023-06-05 19:22:07.356124 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | bolo -2023-06-05 19:22:33.107627 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | bye bolo n -2023-06-05 19:22:36.640003 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | bolo na -2023-06-05 19:22:40.801092 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | by -2023-06-05 19:22:54.607449 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | baaki? -2023-06-05 19:22:55.855886 + : pb-IF41U2scIg== | SHRUTIsom | 𝐏rincess 𝐏each | bye -2023-06-05 19:22:59.016843 + : pb-IF4MU08lCQ== | lodhipro17 | lodhipro17 | bye -2023-06-05 19:22:59.408227 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | bye -2023-06-05 19:23:00.728314 + : pb-IF49VFdbEQ== | iamtex0001 | ⁱᵃᵐ᭄Եҽx | bye -2023-06-05 19:24:07.547095 + : pb-IF41U2scIg== | SHRUTIsom | 𝐏rincess 𝐏each | last game -2023-06-05 19:24:11.647226 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | ok -2023-06-05 19:24:31.619439 + : Host msg: | Name Client ID Player ID -2023-06-05 19:24:31.619466 + : Host msg: | ______________________________ -2023-06-05 19:24:31.619476 + : Host msg: | TUJABAAP00 237 0 -2023-06-05 19:24:31.619484 + : Host msg: | lodhipro17 251 1 -2023-06-05 19:24:31.619491 + : Host msg: | Dr boom 252 2 -2023-06-05 19:24:31.619502 + : Host msg: | Aikuros🦋 4 3 -2023-06-05 19:24:31.619511 + : Host msg: | ⁱᵃᵐ᭄Եҽx 16 4 -2023-06-05 19:24:31.619521 + : Host msg: | 𝐏rincess 𝐏... 18 5 -2023-06-05 19:24:31.619529 + : Host msg: | Dadya 23 6 -2023-06-05 19:24:31.619538 + : Host msg: | smellyfart 24 7 -2023-06-05 19:24:31.619546 + : Host msg: | -2023-06-05 19:24:54.176661 + : Host msg: | Last game -2023-06-05 19:25:03.455031 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | yes -2023-06-05 19:25:12.664290 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | tell her not to go -2023-06-05 19:25:25.227637 + : Host msg: | Don't leave me -2023-06-05 19:25:27.914933 + : pb-IF41U2scIg== | SHRUTIsom | 𝐏rincess 𝐏each | lol -2023-06-05 19:25:28.751321 + : Host msg: | Shruti -2023-06-05 19:25:36.222679 + : Host msg: | I am good server -2023-06-05 19:25:36.865079 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | 😂😂😂 -2023-06-05 19:26:00.624154 + : pb-IF41U2scIg== | SHRUTIsom | 𝐏rincess 𝐏each | 😂 -2023-06-05 19:26:05.539134 + : Host msg: | BCS new server arrived -2023-06-05 19:26:05.539206 + : Host msg: | '3 Team walla server' -2023-06-05 19:26:05.540458 + : Host msg: | must try, and give us your feedbacks -2023-06-05 19:26:20.099074 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | wats server name ? -2023-06-05 19:26:33.801492 + : pb-IF41U2scIg== | SHRUTIsom | 𝐏rincess 𝐏each | 3 teams -2023-06-05 19:26:45.145129 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | 3 teams ? -2023-06-05 19:26:50.262910 + : pb-IF41U2scIg== | SHRUTIsom | 𝐏rincess 𝐏each | but most of the time it's empty now -2023-06-05 19:26:53.291074 + : pb-IF41U2scIg== | SHRUTIsom | 𝐏rincess 𝐏each | yes -2023-06-05 19:27:20.921491 + : pb-IF49VFQlPA== | Aikuros | Aikuros🦋 | kk bye -2023-06-05 19:27:26.584791 + : pb-IF41U2scIg== | SHRUTIsom | 𝐏rincess 𝐏each | bye -2023-06-05 19:29:41.441909 + : pb-IF4TUxEoKg== | TUJABAAP00 | TUJABAAP00 | -2023-06-05 19:29:47.782953 + : Host msg: | TUJABAAP00 started a kick vote for smellyfart -2023-06-05 19:29:56.256547 + : Host msg: | Kicked "smellyfart" -2023-06-05 19:33:27.274546 + : Host msg: | Moon🌛 started a kick vote for Dr boom -2023-06-05 19:34:09.108632 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | -2023-06-05 19:36:31.062011 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | hello Moon -2023-06-05 19:36:37.911108 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | hi bhai -2023-06-05 19:37:28.369372 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | lag -2023-06-05 19:37:32.341649 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | yes sir -2023-06-05 19:37:47.516500 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | -2023-06-05 19:38:21.650165 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | founding titan -2023-06-05 19:39:10.391671 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | -2023-06-05 19:39:18.431272 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | ym h hm -2023-06-05 19:40:27.467582 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | -2023-06-05 19:43:05.343745 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | end -2023-06-05 19:43:05.343971 + : Host msg: | end vote started -2023-06-05 19:43:15.653319 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | type end -2023-06-05 19:43:23.075168 + : pb-IF4cUBYfCg== | Hrithiksng | noob master 69 | end -2023-06-05 19:43:26.403519 + : pb-IF49I04z | SingingTac | Darrnaku | end -2023-06-05 19:43:26.403644 + : Host msg: | end vote succeed -2023-06-05 19:43:26.583520 + : pb-IF49I04z | SingingTac | Darrnaku | -2023-06-05 19:49:08.905452 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | /me -2023-06-05 19:49:08.927299 + : Host msg: | Score:14094 -2023-06-05 19:49:08.927359 + : Host msg: | Games:332 -2023-06-05 19:49:08.927377 + : Host msg: | Kills:618 -2023-06-05 19:49:08.927711 + : Host msg: | Deaths:869 -2023-06-05 19:49:08.927773 + : Host msg: | Avg.:42.451 -2023-06-05 19:51:47.445315 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | brah -2023-06-05 19:51:53.763477 + : pb-IF4hUGcPIg== | Android65150871 | € | 😂 -2023-06-05 19:52:14.534737 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | aur kaise hai bhai -2023-06-05 19:52:29.747877 + : pb-IF4hUGcPIg== | Android65150871 | € | idk hindi 😅 -2023-06-05 19:52:30.153097 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | konsi class me ho aap? -2023-06-05 19:52:36.938213 + : pb-IF4hUGcPIg== | Android65150871 | € | idk hindi 😅 -2023-06-05 19:52:49.069172 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | you study in which standard? -2023-06-05 19:52:56.220868 + : pb-IF4hUGcPIg== | Android65150871 | € | y u ask -2023-06-05 19:53:16.653468 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | just to get to know, how big brain the enemy has! -2023-06-05 19:53:31.818189 + : pb-IF4hUGcPIg== | Android65150871 | € | 😂 im 6-7 -2023-06-05 19:53:41.989460 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | damn so young -2023-06-05 19:53:42.057648 + : pb-IF4hUGcPIg== | Android65150871 | € | but ima real hacker -2023-06-05 19:53:58.621770 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | me college passout -2023-06-05 19:54:37.954219 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | fight -2023-06-05 19:55:21.882686 + : pb-IF4hUGcPIg== | Android65150871 | € | im now wat game im playing -2023-06-05 19:55:31.744452 + : pb-IF4hUGcPIg== | Android65150871 | € | ur old right -2023-06-05 19:55:31.773025 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | what -2023-06-05 19:55:46.413692 + : pb-IF4hUGcPIg== | Android65150871 | € | ur old right tell the answer by guess -2023-06-05 19:55:47.297224 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | i cant see -2023-06-05 19:56:04.417009 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | coming in 1 minute -2023-06-05 19:56:22.312984 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | what happened to game -2023-06-05 19:56:26.554421 + : pb-IF4hUGcPIg== | Android65150871 | € | ur old right tell the answer by guess -2023-06-05 19:56:34.185090 + : pb-IF4hUGcPIg== | Android65150871 | € | im now wat game im playing -2023-06-05 19:56:36.340979 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | my camera angle isfixed -2023-06-05 19:56:45.145013 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | what is your language -2023-06-05 19:56:50.074703 + : pb-IF4hUGcPIg== | Android65150871 | € | tamil -2023-06-05 19:56:54.116891 + : pb-IF4hUGcPIg== | Android65150871 | € | im now wat game im playing -2023-06-05 20:00:59.164762 + : Host msg: | Server will restart on next opportunity. (series end) -2023-06-05 20:01:19.402904 + : pb-IF4hUGcPIg== | Android65150871 | € | BCS: hahahahhaa -2023-06-05 20:01:43.512784 + : pb-IF4hUGcPIg== | Android65150871 | € | BCS: server ganna restart -2023-06-05 20:01:53.547511 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | hello no name -2023-06-05 20:02:09.364814 + : pb-IF4hUGcPIg== | Android65150871 | € | HELLO India -2023-06-05 20:02:19.379350 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | my in game's camera is fixed how to change it -2023-06-05 20:02:28.923478 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | can't see much map areas -2023-06-05 20:02:49.164057 + : pb-IF4hUGcPIg== | Android65150871 | € | use manual camera mod -2023-06-05 20:03:43.810572 + : pb-IF4KUGU4Ag== | PC915062 | PC915062 | SORRY -2023-06-05 20:04:03.523747 + : Host msg: | € started a kick vote for Android650... -2023-06-05 20:08:39.414134 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | game had the error lol, restarted the emulator, now seems fine af -2023-06-05 20:09:14.631056 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | nice punch -2023-06-05 20:09:21.572831 + : pb-IF4hUGcPIg== | Android65150871 | € | lol ima pro -2023-06-05 20:09:34.789979 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | how to become pro -2023-06-05 20:09:58.178912 + : pb-IF4hUGcPIg== | Android65150871 | € | bro u pased colege right? 😂 -2023-06-05 20:10:47.105181 + : Host msg: | BCS new server arrived -2023-06-05 20:10:47.105230 + : Host msg: | '3 Team walla server' -2023-06-05 20:10:47.105271 + : Host msg: | must try, and give us your feedbacks -2023-06-05 20:11:14.137648 + : pb-IF4hUGcPIg== | Android65150871 | ‍ | i ask u which game am i playing u cant get this correct -2023-06-05 20:11:17.125996 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | me toh ready nahe tha -2023-06-05 20:11:26.454471 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | i dont know -2023-06-05 20:11:32.415566 + : pb-IF4hUGcPIg== | Android65150871 | ‍ | 😂 -2023-06-05 20:11:54.450941 + : pb-IF4hUGcPIg== | Android65150871 | ‍ | because everyone dont know this answer -2023-06-05 20:12:01.295809 + : pb-IF4hUGcPIg== | Android65150871 | | hahaha -2023-06-05 20:12:09.910002 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | tell answer at least -2023-06-05 20:12:22.396363 + : pb-IF4hUGcPIg== | Android65150871 | ‍ | explodinary -2023-06-05 20:13:14.584679 + : pb-IF4hUGcPIg== | Android65150871 | ‍ | /ping all -2023-06-05 20:13:14.584806 + : Host msg: | Name Ping (ms) ms -2023-06-05 20:13:14.584850 + : Host msg: | ______________________________ -2023-06-05 20:13:14.584864 + : Host msg: | PC915062 33 ms -2023-06-05 20:13:14.584874 + : Host msg: | India 51 ms -2023-06-05 20:13:14.584886 + : Host msg: | lolan✨ 43 ms -2023-06-05 20:13:14.584896 + : Host msg: | ‍ 24 ms -2023-06-05 20:13:14.584905 + : Host msg: | -2023-06-05 20:13:34.695209 + : pb-IF4KUGU4Ag== | PC915062 | PC915062 | LOL -2023-06-05 20:14:01.627434 + : pb-IF4KUGU4Ag== | PC915062 | PC915062 | F**K -2023-06-05 20:14:12.604566 + : pb-IF4KUGU4Ag== | PC915062 | PC915062 | SORRY -2023-06-05 20:14:16.579114 + : pb-IF4hUGcPIg== | Android65150871 | ‍ | FÚÇK -2023-06-05 20:14:42.809522 + : pb-IF4KUGU4Ag== | PC915062 | PC915062 | CHEATER -2023-06-05 20:16:17.104141 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 20:16:17.250155 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-05 20:16:23.274572 + : pb-IF4hUGcPIg== | Android65150871 | ‍ | what -2023-06-05 20:16:30.365864 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | lol -2023-06-05 20:16:40.667522 + : pb-IF4KUGU4Ag== | PC915062 | PC915062 | F**K LOLAN -2023-06-05 20:16:49.567595 + : pb-IF4KUGU4Ag== | PC915062 | PC915062 | Y UDID -2023-06-05 20:16:59.391579 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | the glitch is so big, my game crashed -2023-06-05 20:17:09.075454 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | end -2023-06-05 20:17:09.075740 + : Host msg: | end vote started -2023-06-05 20:17:20.787300 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | type end simply -2023-06-05 20:17:55.817183 + : pb-IF4hUGcPIg== | Android65150871 | ‍ | yeeeeeessssss -2023-06-05 20:18:51.053223 + : Host msg: | ‍ started a kick vote for CrispyArc9 -2023-06-05 20:19:15.731561 + : pb-IF4hUGcPIg== | Android65150871 | ‍ | FÚÇK -2023-06-05 20:19:25.201073 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | what is the word -2023-06-05 20:19:30.857230 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | i cant read it -2023-06-05 20:20:08.941741 + : pb-IF4KUGU4Ag== | PC915062 | PC915062 | LET MARVEL WIN THIS IS BORING -2023-06-05 20:20:17.502236 + : pb-IF4KUGU4Ag== | PC915062 | PC915062 | F**K -2023-06-05 20:20:32.517934 + : pb-IF4KUGU4Ag== | PC915062 | PC915062 | BRO LET IT -2023-06-05 20:21:31.152915 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | really -2023-06-05 20:21:35.566414 + : pb-IF4hUGcPIg== | Android65150871 | ‍ | sry -2023-06-05 20:22:19.494787 + : pb-IF4IUGExHw== | Rocksol681 | infernous | . do it -2023-06-05 20:23:14.022647 + : pb-IF4hUGcPIg== | Android65150871 | ‍ | ima back -2023-06-05 20:23:23.499762 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | wwelcome back -2023-06-05 20:25:02.327159 + : pb-IF4hUGcPIg== | Android65150871 | ‍ | they now dead -2023-06-05 20:25:14.759956 + : pb-IF4hUGcPIg== | Android65150871 | ‍ | lol -2023-06-05 20:25:31.575509 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | my condolensenses -2023-06-05 20:27:03.816225 + : pb-IF4hUGcPIg== | Android65150871 | ‍ | 😂 -2023-06-05 20:27:07.395070 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | lol -2023-06-05 20:27:43.269116 + : pb-IF4hUGcPIg== | Android65150871 | ‍ | shit. m -2023-06-05 20:29:40.523137 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-05 20:29:40.657249 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-05 20:29:47.132096 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-05 20:30:22.029178 + : pb-IF4hUGcPIg== | Android65150871 | ‍ | 😂 -2023-06-05 20:30:26.286220 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | :) -2023-06-05 20:30:44.181629 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | fabulous -2023-06-05 20:30:54.157628 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | tereffic -2023-06-05 20:31:00.576617 + : pb-IF4hUGcPIg== | Android65150871 | ‍ | thanks for boost -2023-06-05 20:31:25.379916 + : pb-IF4hUGcPIg== | Android65150871 | | wit -2023-06-05 20:32:07.492676 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-05 20:32:23.520702 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-05 20:32:23.658428 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-05 20:33:06.310612 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-05 20:33:30.789744 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | nice bj -2023-06-05 20:35:16.068242 + : pb-IF4hUGcPIg== | Android65150871 | € | 😂 -2023-06-05 20:35:24.244713 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | yo wait -2023-06-05 20:35:41.766080 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-05 20:35:50.299298 + : pb-IF4hUGcPIg== | Android65150871 | € | lol 😂 -2023-06-05 20:39:50.085384 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | bbroooooooooooooooooj -2023-06-05 20:40:25.629263 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | broooooooooooooooooooooooooooooooooooooooooo -2023-06-05 20:40:26.166598 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | easy win -2023-06-05 20:40:30.882377 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | with lag -2023-06-05 20:42:41.352635 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | haha easy -2023-06-05 20:42:48.296158 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | why easy -2023-06-05 20:42:57.303330 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | becoz ur noob -2023-06-05 20:43:26.204594 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | likewise -2023-06-05 20:44:55.182760 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | oh no -2023-06-05 20:46:11.702773 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | wtf is happening -2023-06-05 20:47:24.248734 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | cute teammate mine -2023-06-05 20:54:45.090900 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | oops -2023-06-05 20:57:36.701356 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | seexxxyyy -2023-06-05 20:59:17.248097 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | ha bolo -2023-06-05 20:59:35.916129 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | haddi singh -2023-06-05 20:59:57.283160 + : pb-IF4VUlcBVQ== | YashRenoun | Mrͥsiͣnͫgђ | haan bhai -2023-06-05 21:00:04.207669 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | kaisa hai bhai -2023-06-05 21:00:15.340201 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | konse class ya college me hogaya bhai -2023-06-05 21:00:33.556073 + : pb-IF4VUlcBVQ== | YashRenoun | Mrͥsiͣnͫgђ | mst h bhai tm btao -2023-06-05 21:00:38.190337 + : pb-IF4VUlcBVQ== | YashRenoun | Mrͥsiͣnͫgђ | college m hai -2023-06-05 21:00:52.743757 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | mera toh college peche mahine pura hua -2023-06-05 21:01:05.411427 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | aap konse semester me ho? -2023-06-05 21:01:10.062986 + : pb-IF4VUlcBVQ== | YashRenoun | Mrͥsiͣnͫgђ | 3 -2023-06-05 21:01:51.673054 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | mr singh pls die soon lets start next match -2023-06-05 21:02:00.993014 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | gg singh -2023-06-05 21:02:05.838083 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | lol -2023-06-05 21:02:22.214676 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | hai rank 5 sab thik kar ke aagaye ap -2023-06-05 21:02:32.365703 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | ab toh kuch lag nahe ho raha na bhai -2023-06-05 21:02:59.263164 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | singh dont do that -2023-06-05 21:03:10.892654 + : Host msg: | Only 1 player per IP allowed, disconnecting this device. -2023-06-05 21:04:09.682995 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | gg -2023-06-05 21:04:15.094181 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | good girl -2023-06-05 21:05:24.052797 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | gg -2023-06-05 21:05:29.959682 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | good guy -2023-06-05 21:05:50.522730 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | haha -2023-06-05 21:06:10.352601 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | what haha, its evil laughter HAHAHAH continues -2023-06-05 21:06:17.922792 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | 😆 -2023-06-05 21:06:23.464805 + : pb-IF5UU0M7Lw== | Doreamon15 | Aayushhh | -2023-06-05 21:06:23.604809 + : pb-IF5UU0M7Lw== | Doreamon15 | Aayushhh | -2023-06-05 21:06:33.122795 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | ur very funny -2023-06-05 21:07:08.312749 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | wtf lever ayush soap -2023-06-05 21:07:11.444029 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | in the name of god, i give you a happy night -2023-06-05 21:07:46.423132 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | aayushh noob -2023-06-05 21:07:51.022819 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | do something -2023-06-05 21:08:10.904923 + : pb-IF5UU0M7Lw== | Doreamon15 | Aayushhh | aai zavadya -2023-06-05 21:08:46.123687 + : Host msg: | ‎ started a kick vote for Aayushhh -2023-06-05 21:08:48.712679 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | kick pls -2023-06-05 21:08:48.972779 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | -2023-06-05 21:08:58.815537 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | i lick ice cream -2023-06-05 21:09:17.850616 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | how did you do that bro -2023-06-05 21:09:23.658581 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | guide me -2023-06-05 21:09:40.315787 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | how to bomb while lookin in different direction -2023-06-05 21:09:41.315012 + : pb-IF5UU0M7Lw== | Doreamon15 | Aayush | teri **** marata hu ab ruk -2023-06-05 21:09:46.915828 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | lol -2023-06-05 21:09:52.591619 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | ayush op -2023-06-05 21:09:52.922982 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | aayush dont abise -2023-06-05 21:10:02.972662 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | pls kick him guys u guys are looking he is abusing -2023-06-05 21:10:14.751315 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | he is she -2023-06-05 21:11:42.031104 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | ayush aap doremon ho? -2023-06-05 21:11:52.364826 + : pb-IF5UU0M7Lw== | Doreamon15 | Aayush | yesss bhaii -2023-06-05 21:12:17.874909 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | very nice bhai -2023-06-05 21:14:18.359232 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | andha ho kya aap chunk dost -2023-06-05 21:14:24.460776 + : Host msg: | Teri ** maarta hu Kiya mtlb tha bro -2023-06-05 21:14:29.712735 + : Host msg: | Samajh nahi aaya meko -2023-06-05 21:14:46.484152 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | BCS kon hai? -2023-06-05 21:15:39.092592 + : Host msg: | BCS new server arrived -2023-06-05 21:15:39.092692 + : Host msg: | '3 Team walla server' -2023-06-05 21:15:39.092778 + : Host msg: | must try, and give us your feedbacks -2023-06-05 21:16:18.737887 + : Host msg: | Name Client ID Player ID -2023-06-05 21:16:18.737914 + : Host msg: | ______________________________ -2023-06-05 21:16:18.737923 + : Host msg: | India 121 0 -2023-06-05 21:16:18.737931 + : Host msg: | MrSilver 155 1 -2023-06-05 21:16:18.738330 + : Host msg: | -2023-06-05 21:16:19.745979 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | aur batato aap kaise ho MrSilver dost -2023-06-05 21:17:59.730210 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | you live your live up there bro -2023-06-05 21:18:22.377880 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | aap kitne sal ke ho dosto -2023-06-05 21:19:25.468698 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | oh no -2023-06-05 21:19:35.996639 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | me toh iske sath pakdam pakdia khel raha tha -2023-06-05 21:20:13.702534 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | ab mai tere sath khela 😂😆 -2023-06-05 21:20:23.692480 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | hasna tha -2023-06-05 21:20:33.492466 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | haan tu noob banhua -2023-06-05 21:20:34.628156 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | aacha joke toh marte aap bro -2023-06-05 21:20:49.322393 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | tu noob hai muje hasa atha hai -2023-06-05 21:20:57.020430 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | me toh ramayan me ravan ji the vaise hasta hu -2023-06-05 21:21:21.522363 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | i dont these ramayana Mahabharata -2023-06-05 21:21:29.102470 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | bullshit books -2023-06-05 21:21:37.542392 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | i dont read -2023-06-05 21:21:46.642871 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | i dont belive in god -2023-06-05 21:21:47.625180 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | bhai kiske ke samne mat bolna bus -2023-06-05 21:21:54.842402 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | ok -2023-06-05 21:21:56.636037 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | real life me kise ke samnemat bolna -2023-06-05 21:22:07.482478 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | i dont believe god bro -2023-06-05 21:22:09.592020 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | mob ikkati ho jayegi aapko marne ke liyeh -2023-06-05 21:22:25.368437 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | ha voh baat thik hai aap nastik ho -2023-06-05 21:22:28.282387 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | soon u peoples will know the fact -2023-06-05 21:22:39.682460 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | god does not exist -2023-06-05 21:22:45.082493 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | that was created by human -2023-06-05 21:22:54.522759 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | believe only science -2023-06-05 21:23:08.351570 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | well i haven;t seen God either, but some miracles happened in my life -2023-06-05 21:23:22.152477 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | so if u only pray to god and write exam will u get pass mark -2023-06-05 21:23:24.823438 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | so i believe god exist but can't prove it -2023-06-05 21:23:43.342506 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | so share that incident -2023-06-05 21:23:52.642396 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | miracle -2023-06-05 21:23:55.467473 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | okay -2023-06-05 21:24:09.663818 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | i was in 5th semester in college exam -2023-06-05 21:24:14.482318 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | ok -2023-06-05 21:24:21.547657 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | time was in between 2-5 pm -2023-06-05 21:24:27.142720 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | ok -2023-06-05 21:24:41.227740 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | i took iPhone6s with me to cheat in exam -2023-06-05 21:24:47.032521 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | fine -2023-06-05 21:25:17.007640 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | then when exam started i was sitting in exam and after 2:10 or something time i took out phone -2023-06-05 21:25:24.755566 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | and just looked at time -2023-06-05 21:25:35.951098 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | but teacher somehow got suspicious -2023-06-05 21:25:54.781599 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | and i was sitting in 3rd row 7th bench -2023-06-05 21:25:59.962553 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | k -2023-06-05 21:26:07.657594 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | and she came there and i was caught -2023-06-05 21:26:24.902348 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | oh so sad -2023-06-05 21:26:26.932865 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | but i haven't written a single word in exam -2023-06-05 21:26:32.602412 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | ok -2023-06-05 21:27:02.402394 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | but u got passed ? -2023-06-05 21:27:03.520050 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | but she knew it was exploitation of rules and regulations -2023-06-05 21:27:11.956337 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | and took my answer sheet -2023-06-05 21:27:14.682504 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | yes -2023-06-05 21:27:22.762434 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | ok -2023-06-05 21:27:28.720136 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | and said to me get out, i am not giving you sheet -2023-06-05 21:27:33.122688 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | ok -2023-06-05 21:27:43.168021 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | i didn't went just sat on my seat -2023-06-05 21:27:59.824606 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | while the rest of students laughed and some gave me bad looks -2023-06-05 21:28:13.342387 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | yeah that would be embarassing -2023-06-05 21:28:16.048134 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | i was hopeless and just sat down on my seat and slept -2023-06-05 21:28:33.424287 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | after 1 and half hour, the signature sheet came -2023-06-05 21:28:53.850625 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | we have to sign the that sheet as a proof that the student is present -2023-06-05 21:29:08.852553 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | yes -2023-06-05 21:29:09.182312 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | -2023-06-05 21:29:21.526608 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | and in that 1 and half hour i prayed my god please do something to get me passed -2023-06-05 21:29:32.717574 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | then -2023-06-05 21:29:46.366716 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | then that teacher came to me to tell that sign this signarture sheet -2023-06-05 21:29:51.910547 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | i refused to sign -2023-06-05 21:30:03.837516 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | come to the point -2023-06-05 21:30:29.824739 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | she gave me the sheet and i signed the paper but -2023-06-05 21:30:52.104283 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | it was already 4:20 pm only 40 minutes left -2023-06-05 21:30:58.577218 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | kk -2023-06-05 21:31:02.308044 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | and i didnt studied -2023-06-05 21:31:24.224057 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | so i just sat on my seat and wrote anything that came in my mind -2023-06-05 21:31:44.941591 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | exam subject name was OOPs (object oriented programming) -2023-06-05 21:31:57.597446 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | u got passed -2023-06-05 21:32:04.569785 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | and after filling 16 sheets out of 36 sheets time got over -2023-06-05 21:32:20.061101 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | i knew that i have written everything bull sh!t -2023-06-05 21:32:37.197466 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | oops full form is object oriented programming and data structures -2023-06-05 21:32:38.433751 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | but still got passed thats how i regained my trust in god -2023-06-05 21:33:00.497446 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | no bro i think that exam questions are out of syllabus -2023-06-05 21:33:07.141635 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | yes but Data Structure was in 4th semester -2023-06-05 21:33:15.717391 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | no other way to get pass marks in that -2023-06-05 21:33:28.141542 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | bro i fking passed -2023-06-05 21:33:50.297510 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | yes but u passed becoz ur question was out of syllabus and u attended that -2023-06-05 21:33:56.617564 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | i got 42 marks out of 75 -2023-06-05 21:34:10.349682 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | hahahahahaha wtf logic you made lol -2023-06-05 21:34:24.117286 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | u have attended 16mark questions 2 out of syllabus -2023-06-05 21:34:42.647443 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | and u would have filled that addition program -2023-06-05 21:34:51.090092 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | there are 9 questions and we have to attend 5 questions and question 1 is compulsory -2023-06-05 21:34:59.457850 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | which college u were pursuing at that time -2023-06-05 21:35:00.346216 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | each question is of 15 marks -2023-06-05 21:35:43.097423 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | even i have attended exams like this and got pass marks but i didnt pray any god -2023-06-05 21:36:00.633876 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | i have written everything properly and prayed to god to score more marks -2023-06-05 21:36:04.905944 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | i only prayed one time -2023-06-05 21:36:06.139824 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | but i have failed in thta exam -2023-06-05 21:36:24.813023 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | rest of the exams, i had my phone -2023-06-05 21:36:48.797378 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | so ur a cheating person how come ur god help u a cheating person -2023-06-05 21:36:54.460565 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | lol -2023-06-05 21:37:14.940516 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | idk may be i called him/her from my bottom of heart -2023-06-05 21:37:25.137617 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | so if i pray to god and kill someone can i do it and escape from police -2023-06-05 21:37:38.657372 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | by praying to god -2023-06-05 21:37:40.541048 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | you don't need god for that -2023-06-05 21:37:58.968631 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | you can still escape if you have political power and some money -2023-06-05 21:38:14.917465 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | listen bro u try something with confidence and succed -2023-06-05 21:38:18.837518 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | no god nothing -2023-06-05 21:38:29.837268 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | be practical -2023-06-05 21:38:34.077597 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | dont be fooled -2023-06-05 21:38:46.977394 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | all those gods were created by humans -2023-06-05 21:38:49.200315 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | yeah my confidence is myself is 10/10 without a doubt -2023-06-05 21:39:00.477663 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | then why do u go to god -2023-06-05 21:39:24.357351 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | god is just humans created -2023-06-05 21:39:33.897446 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | eye wash -2023-06-05 21:39:33.981929 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | i didnt went i just thought may be i can get help from him if he exist then i will be helped -2023-06-05 21:39:52.257396 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | no way be practical ur in 21st century bro -2023-06-05 21:40:02.797541 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | still believing in god and ghosts -2023-06-05 21:40:09.837233 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | all are stories -2023-06-05 21:40:16.673781 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | you were born in 21st century? -2023-06-05 21:40:25.677271 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | yes -2023-06-05 21:40:53.397944 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | what does 21st century starts? -2023-06-05 21:41:01.033781 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | when -2023-06-05 21:41:03.117248 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | what? -2023-06-05 21:41:13.005770 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | which year -2023-06-05 21:41:30.457698 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | 2000 -2023-06-05 21:41:37.833692 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | nice -2023-06-05 21:41:55.827439 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | i was born in 20th century -2023-06-05 21:42:07.117418 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | which year u born -2023-06-05 21:43:13.797519 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | sry which year u born -2023-06-05 21:43:14.417803 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | i am doing dinner -2023-06-05 21:43:32.437852 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | carry on -2023-06-05 21:43:36.997464 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | which year -2023-06-05 21:43:45.025852 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | 1999 -2023-06-05 21:43:49.557281 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | month -2023-06-05 21:44:02.745766 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | why are you asking? -2023-06-05 21:44:05.237190 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | 2001 is 21st century -2023-06-05 21:44:17.587177 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | i am also 20ty century born -2023-06-05 21:44:26.037409 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | just like that asking -2023-06-05 21:44:27.701854 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | before 2000 is 20th century -2023-06-05 21:44:46.657619 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | 2001 is 21st century -2023-06-05 21:45:03.127874 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | okay -2023-06-05 21:46:40.968645 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | hi joker, hi ayush -2023-06-05 21:51:39.097416 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | me dinner kar raha hhu bhai -2023-06-05 21:52:28.069311 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | aapki girl friend hai? -2023-06-05 21:52:38.464081 + : pb-IF5UVRgMKA== | NoNameC3950568 | 🎭🃏Jókér🃏🎭 | Haan bohot hai -2023-06-05 21:52:53.241205 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | hi 007 -2023-06-05 21:58:43.117621 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | song name "Hey Ya!" -2023-06-05 21:59:35.175936 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | master !bation karte ho? -2023-06-05 22:01:22.011859 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | :( -2023-06-05 22:01:31.292918 + : pb-IF5UVRgMKA== | NoNameC3950568 | 🎭🃏Jókér🃏🎭 | 😊 -2023-06-05 22:02:44.644032 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | :( -2023-06-05 22:02:53.582982 + : pb-IF5UVRgMKA== | NoNameC3950568 | 🎭🃏Jókér🃏🎭 | 😏 -2023-06-05 22:03:04.036091 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | hahahaha -2023-06-05 22:05:12.180343 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | i am a girl -2023-06-05 22:05:23.301205 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | MrSilver | MrSilver | ,🤣🤣🤣 -2023-06-05 22:06:18.923220 + : pb-IF5UVRgMKA== | NoNameC3950568 | 🎭🃏Jókér🃏🎭 | 😪😪 -2023-06-05 22:08:06.131441 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | MrSilver | MrSilver | lol -2023-06-05 22:08:15.730446 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | MrSilver | MrSilver | how ull respawn -2023-06-05 22:08:28.705101 + : pb-IF5UVRgMKA== | NoNameC3950568 | 🎭🃏Jókér🃏🎭 | yea....where is my girl -2023-06-05 22:08:35.772314 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | i hate you all i wanna say now -2023-06-05 22:08:43.774495 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | MrSilver | MrSilver | 🤣🤣🤣 -2023-06-05 22:08:49.643511 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | MrSilver | MrSilver | you want to know -2023-06-05 22:08:54.760057 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | MrSilver | MrSilver | who i am -2023-06-05 22:09:12.052392 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | my next boyfriend? -2023-06-05 22:09:17.383775 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | MrSilver | MrSilver | no -2023-06-05 22:09:19.612962 + : pb-IF5UVRgMKA== | NoNameC3950568 | 🎭🃏Jókér🃏🎭 | me -2023-06-05 22:09:23.420280 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | MrSilver | MrSilver | let me show you -2023-06-05 22:09:58.941836 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | MrSilver | Jadugar | tadaaa -2023-06-05 22:09:59.352804 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | who are you -2023-06-05 22:10:21.742960 + : pb-IF5UVRgMKA== | NoNameC3950568 | 🥋Ñíñjá Báñáñá🍌 | hey.....where am I......cause I'm with my girl in heaven -2023-06-05 22:10:25.759639 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | MrSilver | Jadugar | 🌚 -2023-06-05 22:10:36.414501 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | jadugar -2023-06-05 22:10:46.792976 + : pb-IF5UVRgMKA== | NoNameC3950568 | 🥋Ñíñjá Báñáñá🍌 | nah....ninja banana -2023-06-05 22:10:50.410638 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | make rabbit come out of your hat -2023-06-05 22:11:03.672900 + : pb-IF5UVRgMKA== | NoNameC3950568 | 🥋Ñíñjá Báñáñá🍌 | nooooooooo -2023-06-05 22:11:03.690322 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | MrSilver | Jadugar | i am with ur girl -2023-06-05 22:11:30.654693 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | MrSilver | Jadugar | look at us🌚 -2023-06-05 22:11:47.473872 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | India | eww dont look at us -2023-06-05 22:12:49.104256 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB | OpposingB3 | Yashasvi | hi friends -2023-06-05 22:13:09.694024 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | | yashavsi -2023-06-05 22:13:17.230425 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | | come to sahilp -2023-06-05 22:14:29.727378 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | MrSilver | Jadugar | where is ur gf -2023-06-05 22:14:48.162925 + : pb-IF5UVRgMKA== | NoNameC3950568 | 🥋Ñíñjá Báñáñá🍌 | she left me🤨 -2023-06-05 22:14:57.463469 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | MrSilver | Jadugar | so early -2023-06-05 22:15:07.799814 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | MrSilver | Jadugar | that's bad -2023-06-05 22:15:17.412975 + : pb-IF5UVRgMKA== | NoNameC3950568 | 🥋Ñíñjá Báñáñá🍌 | tnt is my new partner -2023-06-05 22:19:27.662855 + : pb-IF5UVRgMKA== | NoNameC3950568 | 🥋Ñíñjá Báñáñá🍌 | 😏 -2023-06-05 22:20:39.092977 + : Host msg: | BCS new server arrived -2023-06-05 22:20:39.093042 + : Host msg: | '3 Team walla server' -2023-06-05 22:20:39.093062 + : Host msg: | must try, and give us your feedbacks -2023-06-05 22:36:50.050975 + : pb-IF4uUk4vMg== | FuriousPhy | ‎ | end -2023-06-05 22:36:50.051205 + : Host msg: | end vote started -2023-06-05 22:36:57.686218 + : pb-IF4-Uk4mEA== | GroaningGl | ‍ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ | enf -2023-06-05 22:37:00.886464 + : pb-IF4-Uk4mEA== | GroaningGl | ‍ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ | enf -2023-06-05 22:37:04.053153 + : pb-IF4-Uk4mEA== | GroaningGl | ‍ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ | end -2023-06-05 22:37:14.637762 + : pb-IF4-Uk4mEA== | GroaningGl | ‍ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ | end -2023-06-05 22:37:14.638145 + : Host msg: | end vote succeed -2023-06-05 23:00:25.885364 + : pb-IF4lUxMSHw== | hekker | | ill back -2023-06-05 23:01:27.388434 + : Host msg: | Only 1 player per IP allowed, disconnecting this device. -2023-06-05 23:25:39.071823 + : Host msg: | BCS new server arrived -2023-06-05 23:25:39.071860 + : Host msg: | '3 Team walla server' -2023-06-05 23:25:39.072221 + : Host msg: | must try, and give us your feedbacks -2023-06-05 23:45:45.238877 + : pb-IF4nUkteVA== | WirelessNe | WirelessNe | lag -2023-06-05 23:49:51.393199 + : pb-IF4cUktZNg== | Ainesh0001 | Thunder | -2023-06-05 23:49:54.473283 + : pb-IF5dUGcMFg== | Xd1932 | Xd1932 | -2023-06-05 23:49:54.677572 + : pb-IF5dUGcMFg== | Xd1932 | Xd1932 | -2023-06-05 23:49:54.781358 + : pb-IF5dUGcMFg== | Xd1932 | Xd1932 | -2023-06-05 23:49:54.950162 + : pb-IF5dUGcMFg== | Xd1932 | Xd1932 | -2023-06-06 00:30:39.078105 + : Host msg: | BCS new server arrived -2023-06-06 00:30:39.078139 + : Host msg: | '3 Team walla server' -2023-06-06 00:30:39.078157 + : Host msg: | must try, and give us your feedbacks -2023-06-06 00:32:03.087837 + : Host msg: | Name Client ID Player ID -2023-06-06 03:11:18.669859 + : Host msg: | BCS new server arrived -2023-06-06 03:11:18.669897 + : Host msg: | '3 Team walla server' -2023-06-06 03:11:18.669936 + : Host msg: | must try, and give us your feedbacks -2023-06-06 04:16:10.642542 + : Host msg: | BCS new server arrived -2023-06-06 04:16:10.642582 + : Host msg: | '3 Team walla server' -2023-06-06 04:16:10.642598 + : Host msg: | must try, and give us your feedbacks -2023-06-06 05:21:10.648527 + : Host msg: | BCS new server arrived -2023-06-06 05:21:10.648561 + : Host msg: | '3 Team walla server' -2023-06-06 05:21:10.648576 + : Host msg: | must try, and give us your feedbacks -2023-06-06 06:26:10.648364 + : Host msg: | BCS new server arrived -2023-06-06 06:26:10.648399 + : Host msg: | '3 Team walla server' -2023-06-06 06:26:10.648862 + : Host msg: | must try, and give us your feedbacks -2023-06-06 07:31:10.653268 + : Host msg: | BCS new server arrived -2023-06-06 07:31:10.653306 + : Host msg: | '3 Team walla server' -2023-06-06 07:31:10.653321 + : Host msg: | must try, and give us your feedbacks -2023-06-06 08:36:10.654831 + : Host msg: | BCS new server arrived -2023-06-06 08:36:10.654887 + : Host msg: | '3 Team walla server' -2023-06-06 08:36:10.654908 + : Host msg: | must try, and give us your feedbacks -2023-06-06 09:11:04.255917 + : Host msg: | Server will restart on next opportunity. (series end) -2023-06-06 09:32:19.291832 + : Host msg: | Only 1 player per IP allowed, disconnecting this device. -2023-06-06 09:41:10.658232 + : Host msg: | BCS new server arrived -2023-06-06 09:41:10.658273 + : Host msg: | '3 Team walla server' -2023-06-06 10:11:41.329591 + : Host msg: | BCS new server arrived -2023-06-06 10:11:41.329628 + : Host msg: | '3 Team walla server' -2023-06-06 10:11:41.329667 + : Host msg: | must try, and give us your feedbacks -2023-06-06 10:27:05.580100 + : pb-IF4eU0s9Pw== | FearlessC4 | | hey bcs -2023-06-06 10:29:23.045752 + : pb-IF4eU0s9Pw== | FearlessC4 | | -2023-06-06 10:29:23.253158 + : pb-IF4eU0s9Pw== | FearlessC4 | | -2023-06-06 10:29:23.329323 + : pb-IF4eU0s9Pw== | FearlessC4 | | -2023-06-06 10:29:23.549982 + : pb-IF4eU0s9Pw== | FearlessC4 | | -2023-06-06 10:29:49.023965 + : pb-IF4eU0s9Pw== | FearlessC4 | | bcssss -2023-06-06 10:36:38.780206 + : pb-IF4eU0s9Pw== | FearlessC4 | | -2023-06-06 10:47:45.788705 + : Host msg: | sad ,your account is flagged contact server owner for unban -2023-06-06 10:57:02.788297 + : Host msg: | Only 1 player per IP allowed, disconnecting this device. -2023-06-06 11:08:56.699866 + : pb-IF4TUGEIDQ== | fazalVenge | fazalVenge | lag -2023-06-06 11:10:22.468381 + : pb-IF4TUGEIDQ== | fazalVenge | fazalVenge | well played -2023-06-06 11:16:33.324028 + : Host msg: | BCS new server arrived -2023-06-06 11:16:33.324111 + : Host msg: | '3 Team walla server' -2023-06-06 11:16:33.324137 + : Host msg: | must try, and give us your feedbacks -2023-06-06 12:21:33.329200 + : Host msg: | BCS new server arrived -2023-06-06 12:21:33.329407 + : Host msg: | '3 Team walla server' -2023-06-06 12:21:33.329423 + : Host msg: | must try, and give us your feedbacks -2023-06-06 12:55:18.715804 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | end -2023-06-06 12:57:22.902710 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | end -2023-06-06 12:57:22.903496 + : Host msg: | end vote started -2023-06-06 12:57:22.903651 + : Host msg: | end vote succeed -2023-06-06 12:59:04.887245 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | end -2023-06-06 12:59:04.887293 + : Host msg: | end vote started -2023-06-06 12:59:04.887635 + : Host msg: | end vote succeed -2023-06-06 13:09:06.542420 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | end -2023-06-06 13:09:06.542617 + : Host msg: | end vote started -2023-06-06 13:09:06.542767 + : Host msg: | end vote succeed -2023-06-06 13:14:43.327318 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | end -2023-06-06 13:14:43.327369 + : Host msg: | end vote started -2023-06-06 13:14:43.327669 + : Host msg: | end vote succeed -2023-06-06 13:20:28.444513 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-06 13:26:33.333008 + : Host msg: | BCS new server arrived -2023-06-06 13:26:33.333043 + : Host msg: | '3 Team walla server' -2023-06-06 13:26:33.333057 + : Host msg: | must try, and give us your feedbacks -2023-06-06 14:00:26.144540 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | noob -2023-06-06 14:04:59.138780 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | -2023-06-06 14:07:28.146233 + : pb-IF4FUxMtPQ== | SavvyOutl2 | SavvyOutl2 | . -2023-06-06 14:12:25.846766 + : pb-IF4FUxMtPQ== | SavvyOutl2 | SavvyOutl2 | hacked -2023-06-06 14:30:03.866023 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | noob -2023-06-06 14:30:38.545975 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | noob -2023-06-06 14:30:50.840114 + : pb-IF41U0YxAw== | SkullmasTe | Dr boom | tera bap -2023-06-06 14:31:01.431116 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | yes its me -2023-06-06 14:31:04.346105 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | ur bap -2023-06-06 14:31:24.740790 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | /ping -2023-06-06 14:31:24.740879 + : Host msg: | Your ping 58ms -2023-06-06 14:31:33.333748 + : Host msg: | BCS new server arrived -2023-06-06 14:31:33.333797 + : Host msg: | '3 Team walla server' -2023-06-06 14:31:33.333977 + : Host msg: | must try, and give us your feedbacks -2023-06-06 14:31:39.825738 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | lag for me -2023-06-06 14:32:24.086634 + : pb-IF5dVUk5MA== | devilrk768 | devilrk768 | nikal noob -2023-06-06 15:36:33.336875 + : Host msg: | BCS new server arrived -2023-06-06 15:36:33.336912 + : Host msg: | '3 Team walla server' -2023-06-06 17:11:44.415120 + : Host msg: | BCS new server arrived -2023-06-06 17:11:44.415161 + : Host msg: | '3 Team walla server' -2023-06-06 17:11:44.415203 + : Host msg: | must try, and give us your feedbacks -2023-06-06 17:17:06.823687 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | go there -2023-06-06 17:18:22.326371 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-06 17:23:57.811595 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-06 17:25:02.430081 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-06 17:27:45.910514 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | noob -2023-06-06 17:30:36.691557 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | ggs -2023-06-06 17:31:54.327825 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | iht -2023-06-06 17:33:13.861652 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-06 17:33:34.377606 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | gg -2023-06-06 17:35:12.410505 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-06 17:36:13.938004 + : Host msg: | Tera baap started a kick vote for Mahi -2023-06-06 17:36:21.014250 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | vote kro betrayer -2023-06-06 17:36:27.013509 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | kro -2023-06-06 17:38:57.345119 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | mahi ko kick kro yar -2023-06-06 17:39:03.579142 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | gg -2023-06-06 17:39:55.066487 + : Host msg: | Tera baap started a kick vote for RED HULK 💪 -2023-06-06 17:40:13.165923 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | sabh noobde meri team m kyu -2023-06-06 17:46:43.894400 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | go to red -2023-06-06 17:48:11.655233 + : Host msg: | Moon🌛 started a kick vote for RED HULK 💪 -2023-06-06 17:51:21.339494 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | tu red hulk nhi red gnd h bsd. k -2023-06-06 17:53:05.330207 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | abe -2023-06-06 17:53:13.402853 + : pb-IF4HUmRfKw== | IAMGROOTUS | RED HULK 💪 | sorry -2023-06-06 17:55:40.702184 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | nice try -2023-06-06 17:58:11.046995 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | go to blue -2023-06-06 17:58:30.800828 + : pb-IF4HUmRfKw== | IAMGROOTUS | RED HULK 💪 | done -2023-06-06 17:59:13.912702 + : pb-IF4HUmRfKw== | IAMGROOTUS | RED HULK 💪 | hope -2023-06-06 18:00:25.214960 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | run -2023-06-06 18:02:22.785945 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | -2023-06-06 18:02:29.122745 + : pb-IF4HUmRfKw== | IAMGROOTUS | RED HULK 💪 | done -2023-06-06 18:03:03.358311 + : Host msg: | KiskiBaji started a kick vote for Egocent107 -2023-06-06 18:07:37.322913 + : pb-IF4HUmRfKw== | IAMGROOTUS | RED HULK 💪 | done -2023-06-06 18:16:36.412507 + : Host msg: | BCS new server arrived -2023-06-06 18:16:36.412685 + : Host msg: | '3 Team walla server' -2023-06-06 18:16:36.412702 + : Host msg: | must try, and give us your feedbacks -2023-06-06 18:55:57.895531 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-06 19:01:26.348639 + : pb-IF4wU1MPEg== | Android64127677 | | /me -2023-06-06 19:01:26.370757 + : Host msg: | Score:52768 -2023-06-06 19:01:26.370808 + : Host msg: | Games:1333 -2023-06-06 19:01:26.370825 + : Host msg: | Kills:3750 -2023-06-06 19:01:26.370836 + : Host msg: | Deaths:3996 -2023-06-06 19:01:26.370848 + : Host msg: | Avg.:39.585 -2023-06-06 19:21:36.409984 + : Host msg: | BCS new server arrived -2023-06-06 19:21:36.410050 + : Host msg: | '3 Team walla server' -2023-06-06 19:21:36.410071 + : Host msg: | must try, and give us your feedbacks -2023-06-06 19:23:57.917273 + : pb-IF40UncaLg== | TiredShift | Aarya | /me -2023-06-06 19:23:57.939343 + : Host msg: | Score:15004 -2023-06-06 19:23:57.939394 + : Host msg: | Games:334 -2023-06-06 19:23:57.939410 + : Host msg: | Kills:878 -2023-06-06 19:23:57.939420 + : Host msg: | Deaths:811 -2023-06-06 19:23:57.939429 + : Host msg: | Avg.:44.922 -2023-06-06 19:27:07.148529 + : pb-IF5QVVAuJA== | SameerInga | 🔥CAPTAIN 🔥 | -2023-06-06 19:27:07.286435 + : pb-IF5QVVAuJA== | SameerInga | 🔥CAPTAIN 🔥 | -2023-06-06 20:02:17.181163 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | Lolan remember me?? -2023-06-06 20:02:21.398173 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-06 20:05:00.498262 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-06 20:05:00.717675 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-06 20:05:29.330603 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | -2023-06-06 20:06:27.150613 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | -2023-06-06 20:06:27.300703 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | -2023-06-06 20:06:27.440991 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | -2023-06-06 20:06:27.570950 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | -2023-06-06 20:06:29.576352 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-06 20:10:49.316603 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-06 20:10:49.451424 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-06 20:10:52.440655 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | ohh -2023-06-06 20:11:35.630687 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | -2023-06-06 20:11:35.780632 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | -2023-06-06 20:11:35.900721 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | -2023-06-06 20:11:36.051045 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | -2023-06-06 20:11:37.283035 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-06 20:12:04.380717 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | -2023-06-06 20:12:04.680907 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | -2023-06-06 20:13:42.135762 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | -2023-06-06 20:13:42.300603 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | -2023-06-06 20:13:42.450907 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | -2023-06-06 20:13:43.667370 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-06 20:14:41.602126 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-06 20:14:41.782641 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-06 20:14:46.650965 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | sry Lolan -2023-06-06 20:15:01.255552 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-06 20:24:24.330167 + : pb-IF5dUBkzVg== | AquaticTor | veerji da dhabba | veer ji da dhabba -2023-06-06 20:26:36.405773 + : Host msg: | BCS new server arrived -2023-06-06 20:26:36.405823 + : Host msg: | '3 Team walla server' -2023-06-06 20:26:36.405843 + : Host msg: | must try, and give us your feedbacks -2023-06-06 20:27:35.776933 + : pb-IF5dUBkzVg== | AquaticTor | veerji da dhabba | veer ji da dhabbha -2023-06-06 20:32:52.005345 + : Host msg: | RAO SHAB 💪 started a kick vote for HurtPunch1... -2023-06-06 20:32:56.125471 + : Host msg: | Kicked "HurtPunch1..." -2023-06-06 20:33:20.414029 + : Host msg: | RAO SHAB 💪 started a kick vote for ‎ -2023-06-06 20:33:26.622015 + : Host msg: | Kicked "‎" -2023-06-06 20:35:32.532191 + : pb-IF41U2scIg== | SHRUTIsom | | /kick 186 -2023-06-06 20:36:09.682770 + : pb-IF41U2scIg== | SHRUTIsom | | if i ever see both of you -2023-06-06 20:36:09.683302 + : pb-IF41U2scIg== | SHRUTIsom | | kicking anyone Unnecessarily you will be banned -2023-06-06 20:36:11.543391 + : pb-IF41U2scIg== | SHRUTIsom | | /kick 187 -2023-06-06 20:53:51.927173 + : Host msg: | vishalgame started a kick vote for ༆ɪƬs ᴍᴇ༆ -2023-06-06 20:54:52.795449 + : pb-IF4PU00xDw== | vishalgame | vishalgame | -2023-06-06 20:55:46.261787 + : Host msg: | vishalgame started a kick vote for DEDDY -2023-06-06 21:04:18.606843 + : Host msg: | Baymax started a kick vote for lynx-op -2023-06-06 21:20:05.518547 + : pb-IF5XVEQFFw== | ImmenseExp | LIN | wait -2023-06-06 21:28:21.876340 + : pb-IF4zUBUlNg== | Android64653674 | Cowboy | My ping = 8ms -2023-06-06 21:31:36.401041 + : Host msg: | BCS new server arrived -2023-06-06 21:31:36.401903 + : Host msg: | '3 Team walla server' -2023-06-06 21:31:36.401934 + : Host msg: | must try, and give us your feedbacks -2023-06-06 21:35:10.765784 + : pb-IF4iVWlTBg== | Thirtee255 | Thirtee255 | bye -2023-06-06 21:35:22.365843 + : pb-IF4iVWlTBg== | Thirtee255 | Thirtee255 | bye -2023-06-06 21:35:27.443724 + : pb-IF4iVWlTBg== | Thirtee255 | Thirtee255 | bye -2023-06-06 21:52:49.843071 + : pb-IF4VUlcBVQ== | YashRenoun | Mrͥsiͣnͫgђ | /ping -2023-06-06 21:52:49.843326 + : Host msg: | Your ping 103ms -2023-06-06 22:05:12.209170 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | -2023-06-06 22:05:12.388900 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | -2023-06-06 22:15:02.996762 + : pb-IF5WU0gIUQ== | LegendaryD | Cowboy | -2023-06-06 22:36:36.403998 + : Host msg: | BCS new server arrived -2023-06-06 22:36:36.404210 + : Host msg: | '3 Team walla server' -2023-06-06 22:36:36.404235 + : Host msg: | must try, and give us your feedbacks -2023-06-06 22:58:04.311769 + : pb-IF40U2cGMw== | BruceLee7 | BruceLee7 | -2023-06-06 23:11:30.193968 + : Host msg: | Server will restart on next opportunity. (series end) -2023-06-06 23:41:36.406227 + : Host msg: | BCS new server arrived -2023-06-06 23:41:36.406273 + : Host msg: | '3 Team walla server' -2023-06-06 23:41:36.406288 + : Host msg: | must try, and give us your feedbacks -2023-06-07 00:03:42.065043 + : Host msg: | BCS new server arrived -2023-06-07 00:03:42.065097 + : Host msg: | '3 Team walla server' -2023-06-07 00:03:42.065136 + : Host msg: | must try, and give us your feedbacks -2023-06-07 00:26:39.062449 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | noob -2023-06-07 00:35:10.387884 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | end -2023-06-07 00:35:10.388098 + : Host msg: | end vote started -2023-06-07 00:36:26.367719 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | pagal -2023-06-07 01:08:34.064582 + : Host msg: | BCS new server arrived -2023-06-07 01:08:34.064641 + : Host msg: | '3 Team walla server' -2023-06-07 01:08:34.064663 + : Host msg: | must try, and give us your feedbacks -2023-06-07 02:13:34.057806 + : Host msg: | BCS new server arrived -2023-06-07 02:13:34.058165 + : Host msg: | '3 Team walla server' -2023-06-07 02:13:34.058194 + : Host msg: | must try, and give us your feedbacks -2023-06-07 03:18:34.061603 + : Host msg: | BCS new server arrived -2023-06-07 03:18:34.061800 + : Host msg: | '3 Team walla server' -2023-06-07 03:18:34.061815 + : Host msg: | must try, and give us your feedbacks -2023-06-07 04:23:34.069158 + : Host msg: | BCS new server arrived -2023-06-07 04:23:34.069204 + : Host msg: | '3 Team walla server' -2023-06-07 04:23:34.069225 + : Host msg: | must try, and give us your feedbacks -2023-06-07 05:28:34.067697 + : Host msg: | BCS new server arrived -2023-06-07 05:28:34.067896 + : Host msg: | '3 Team walla server' -2023-06-07 05:28:34.067910 + : Host msg: | must try, and give us your feedbacks -2023-06-07 07:04:12.490762 + : Host msg: | BCS new server arrived -2023-06-07 07:04:12.490802 + : Host msg: | '3 Team walla server' -2023-06-07 07:04:12.490844 + : Host msg: | must try, and give us your feedbacks -2023-06-07 08:00:26.779438 + : pb-IF40UGciNw== | Android65115869 | Firestar349 | BCS -2023-06-07 08:02:26.249194 + : pb-IF40UGciNw== | Android65115869 | Firestar349 | Firestar349 -2023-06-07 08:02:41.089264 + : pb-IF40UGciNw== | Android65115869 | Firestar349 | Firestar349 -2023-06-07 08:02:54.400970 + : pb-IF40UGciNw== | Android65115869 | Firestar349 | -2023-06-07 08:02:58.381867 + : pb-IF40UGciNw== | Android65115869 | Firestar349 | Firestar349 -2023-06-07 08:09:04.492603 + : Host msg: | BCS new server arrived -2023-06-07 08:09:04.492638 + : Host msg: | '3 Team walla server' -2023-06-07 08:09:04.492652 + : Host msg: | must try, and give us your feedbacks -2023-06-07 09:12:58.867268 + : pb-IF4vU2UDBA== | lilpyro100 | 검동이 | lmao -2023-06-07 09:13:01.097291 + : pb-IF4vU2UDBA== | lilpyro100 | 검동이 | nice -2023-06-07 09:14:04.496318 + : Host msg: | BCS new server arrived -2023-06-07 09:14:04.496378 + : Host msg: | '3 Team walla server' -2023-06-07 09:14:04.496400 + : Host msg: | must try, and give us your feedbacks -2023-06-07 09:14:09.343220 + : Host msg: | बगदादी started a kick vote for infernous -2023-06-07 09:14:14.225429 + : pb-IF4vU2UDBA== | lilpyro100 | 검동이 | 0 -2023-06-07 09:19:06.722443 + : pb-IF4cUlhdVg== | HeroicCric | बगदादी | 😂😂 -2023-06-07 09:21:38.502116 + : pb-IF4cUlhdVg== | HeroicCric | बगदादी | -2023-06-07 09:22:31.922290 + : pb-IF4cUlhdVg== | HeroicCric | बगदादी | noob 😂 -2023-06-07 09:23:39.282678 + : pb-IF4cUlhdVg== | HeroicCric | बगदादी | noob -2023-06-07 09:23:56.587205 + : pb-IF4OUBAqNQ== | Intracel63 | infernous | .now see -2023-06-07 09:23:56.626958 + : pb-IF4OUBAqNQ== | Intracel63 | infernous | -2023-06-07 09:27:42.789718 + : pb-IF4UVVIiLg== | Adjndb1 | ‍  ‍ ‍ ‍ | -2023-06-07 09:27:42.939611 + : pb-IF4UVVIiLg== | Adjndb1 | ‍  ‍ ‍ ‍ | -2023-06-07 09:30:32.074196 + : pb-IF4UVVIiLg== | Adjndb1 | ‍  ‍ ‍ ‍ | -2023-06-07 09:30:32.233225 + : pb-IF4UVVIiLg== | Adjndb1 | ‍  ‍ ‍ ‍ | -2023-06-07 09:30:32.369133 + : pb-IF4UVVIiLg== | Adjndb1 | ‍  ‍ ‍ ‍ | -2023-06-07 09:55:03.373044 + : pb-IF4eU0s9Pw== | FearlessC4 | | BCSSSSSSSSSSSSSSSS!!!!!!!!!!!!! -2023-06-07 09:55:27.496767 + : pb-IF4eU0s9Pw== | FearlessC4 | | BCSSSSSSSSSSSSSSSS!!!!!!!!!!!!!!!! -2023-06-07 09:55:46.923559 + : pb-IF4eU0s9Pw== | FearlessC4 | | BCSSSSSSSSSSSSSSSS!!!!!!!!!!!!!!!!!!!!!!!!!!! -2023-06-07 09:56:45.883207 + : pb-IF4eU0s9Pw== | FearlessC4 | | BCSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS!!!!!!!!!!!!!!!!!! -2023-06-07 09:57:34.036449 + : pb-IF4eU0s9Pw== | FearlessC4 | | BCSSSSSSSSSSSSSSSSSSSSSSSSS!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -2023-06-07 09:58:33.162009 + : pb-IF4eU0s9Pw== | FearlessC4 | | BCSSSSSSSSSSSSSSSS!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -2023-06-07 10:00:06.294400 + : pb-IF4eU0s9Pw== | FearlessC4 | | BCSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS!!!!!!!! -2023-06-07 10:01:24.847142 + : pb-IF4eU0s9Pw== | FearlessC4 | | BCSSSSSSSSSSSSSS!!!!!!!!!😡😡😡😡😡😡😡 -2023-06-07 10:03:05.131118 + : pb-IF4eU0s9Pw== | FearlessC4 | | BCSSSSSSSSSSSSSSSS!!!!!!!!! -2023-06-07 10:03:34.226107 + : pb-IF4eU0s9Pw== | FearlessC4 | | TALK TO ME😡😡😡😡😡😡😡 -2023-06-07 10:04:31.585169 + : pb-IF4eU0s9Pw== | FearlessC4 | | TALKKKKKKK!!!!!!!!!!! -2023-06-07 10:04:54.223295 + : pb-IF4eU0s9Pw== | FearlessC4 | | JUST TALKKKKK!!!!!!!!! -2023-06-07 10:05:20.455431 + : pb-IF4eU0s9Pw== | FearlessC4 | | BCSSSSSSSSSSSSSSSS TALKKKKKKKKKKKKKKKKKKKKK!!!!!!!!!! -2023-06-07 10:05:39.943176 + : pb-IF4eU0s9Pw== | FearlessC4 | | TALKKKKKKKKKKKKKKKKKKKKKKKKKK!!!!!!!!!!!!!!!!!!! -2023-06-07 10:06:05.984557 + : pb-IF4eU0s9Pw== | FearlessC4 | | JUSTTTTTTT TALK!!!!😡😡😡😡😡😡😡😡😡 -2023-06-07 10:06:33.127906 + : pb-IF4eU0s9Pw== | FearlessC4 | | TALKKKKKKKKKKKKKKKKKKKKKKKKKK!!!!!!!!!!!!!!!!!!!!!!!! -2023-06-07 10:07:22.205382 + : pb-IF4eU0s9Pw== | FearlessC4 | | TALKKKKKKKKKKKKKKKKKKKKKKKKKK!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -2023-06-07 10:07:52.637345 + : pb-IF4eU0s9Pw== | FearlessC4 | | TALKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK😡😡😡😡 -2023-06-07 10:08:35.643330 + : pb-IF4eU0s9Pw== | FearlessC4 | | TALKKKKKKKKKKKKKKKKK!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -2023-06-07 10:09:18.764445 + : pb-IF4eU0s9Pw== | FearlessC4 | | TALKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK!!!!!!!!!!!!!!!!!!!!!!! -2023-06-07 10:10:47.823320 + : pb-IF4eU0s9Pw== | FearlessC4 | | t -2023-06-07 10:10:51.691597 + : pb-IF4eU0s9Pw== | FearlessC4 | | a -2023-06-07 10:10:55.026345 + : pb-IF4eU0s9Pw== | FearlessC4 | | l -2023-06-07 10:11:06.126991 + : pb-IF4eU0s9Pw== | FearlessC4 | | KKKKKKKKKKKKKK!!!!!! -2023-06-07 10:11:36.228719 + : pb-IF4eU0s9Pw== | FearlessC4 | | TALKKKKKKKKKKKKKKKKK!!!!!!!!BCSS!!!!!😡 -2023-06-07 10:19:04.495342 + : Host msg: | BCS new server arrived -2023-06-07 10:19:04.495746 + : Host msg: | '3 Team walla server' -2023-06-07 10:19:04.495771 + : Host msg: | must try, and give us your feedbacks -2023-06-07 10:19:51.239779 + : pb-IF4eU0s9Pw== | FearlessC4 | | BCSSSSSSSSSSSSSSS!!!!!!!!!!! -2023-06-07 10:50:41.024023 + : pb-IF4mVGZaCw== | iBombsquad | Socrates | FearlessC4 -2023-06-07 10:50:41.384018 + : pb-IF4mVGZaCw== | iBombsquad | Socrates | -2023-06-07 11:24:04.497301 + : Host msg: | BCS new server arrived -2023-06-07 11:24:04.497341 + : Host msg: | '3 Team walla server' -2023-06-07 11:24:04.497356 + : Host msg: | must try, and give us your feedbacks -2023-06-07 11:50:09.186418 + : Host msg: | Benji started a kick vote for UnitaryImm -2023-06-07 11:51:21.495069 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | -2023-06-07 11:51:21.604169 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | -2023-06-07 11:51:26.351727 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | bhai ye kya kr rha hai -2023-06-07 11:51:51.052018 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | sry I don't know hindi -2023-06-07 11:54:02.517581 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | abe saala -2023-06-07 11:55:51.161463 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | am Goin in red -2023-06-07 12:02:28.903462 + : Host msg: | Thunder started a kick vote for ItchyDrea2 -2023-06-07 12:04:21.241618 + : Host msg: | DEDDY started a kick vote for ItchyDrea2 -2023-06-07 12:29:04.486277 + : Host msg: | BCS new server arrived -2023-06-07 12:29:04.486318 + : Host msg: | '3 Team walla server' -2023-06-07 12:29:04.486335 + : Host msg: | must try, and give us your feedbacks -2023-06-07 12:35:51.147016 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | ez -2023-06-07 12:36:28.366654 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | -2023-06-07 12:36:29.838013 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | haha -2023-06-07 12:36:32.752125 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | wtf -2023-06-07 12:36:45.946819 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | end -2023-06-07 12:37:10.926799 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | end this lol -2023-06-07 12:37:33.747369 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | end -2023-06-07 12:37:33.747628 + : Host msg: | end vote started -2023-06-07 12:37:36.738039 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | end -2023-06-07 12:37:36.738085 + : Host msg: | end vote started -2023-06-07 12:37:43.766992 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | end -2023-06-07 12:37:43.767158 + : Host msg: | end vote succeed -2023-06-07 12:37:48.198084 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | wtf noob -2023-06-07 13:35:38.926635 + : Host msg: | BCS new server arrived -2023-06-07 13:35:38.926672 + : Host msg: | '3 Team walla server' -2023-06-07 13:35:38.926711 + : Host msg: | must try, and give us your feedbacks -2023-06-07 13:45:45.747591 + : pb-IF4eU0s9Pw== | FearlessC4 | | back -2023-06-07 13:49:04.685155 + : pb-IF4eU0s9Pw== | FearlessC4 | | never join -2023-06-07 13:51:12.110625 + : pb-IF4eU0s9Pw== | FearlessC4 | | hey deddy why u kicked -2023-06-07 13:51:20.702141 + : pb-IF4eU0s9Pw== | FearlessC4 | | me -2023-06-07 13:51:58.582817 + : pb-IF4eU0s9Pw== | FearlessC4 | | deddy i'm sorry -2023-06-07 13:52:30.341489 + : Host msg: | DEDDY started a kick vote for yadavmembe -2023-06-07 13:55:43.213748 + : pb-IF4eU0s9Pw== | FearlessC4 | | bcs? -2023-06-07 13:58:51.744486 + : pb-IF4OUBAqNQ== | Intracel63 | infernous | end -2023-06-07 13:58:51.744799 + : Host msg: | end vote started -2023-06-07 13:59:23.062207 + : Host msg: | SavvyOutl2 started a kick vote for Thunder -2023-06-07 13:59:50.291301 + : Host msg: | Kicked "Thunder" -2023-06-07 14:00:23.840327 + : Host msg: | DEDDY started a kick vote for FearlessC4 -2023-06-07 14:00:43.095254 + : pb-IF4eU0s9Pw== | FearlessC4 | | nooo -2023-06-07 14:00:49.468412 + : pb-IF4eU0s9Pw== | FearlessC4 | | im sry -2023-06-07 14:00:59.161107 + : pb-IF4OPhMg | Nakumrahul | DEDDY | nai khelna to kik karo bro -2023-06-07 14:01:04.272261 + : pb-IF4OUBAqNQ== | Intracel63 | infernous | .tu jaa red me -2023-06-07 14:01:07.961042 + : pb-IF4OPhMg | Nakumrahul | DEDDY | infernos -2023-06-07 14:01:24.589431 + : pb-IF4eU0s9Pw== | FearlessC4 | | l'm sorry deddy -2023-06-07 14:03:57.860656 + : Host msg: | DEDDY started a kick vote for FearlessC4 -2023-06-07 14:04:00.910622 + : pb-IF4OPhMg | Nakumrahul | DEDDY | kik -2023-06-07 14:04:05.689283 + : pb-IF4eU0s9Pw== | FearlessC4 | | noo -2023-06-07 14:05:37.751319 + : pb-IF4OUBAqNQ== | Intracel63 | infernous | bro -2023-06-07 14:05:38.305118 + : pb-IF4eU0s9Pw== | FearlessC4 | | hahahaha😂😂😂 -2023-06-07 14:06:22.247417 + : pb-IF4eU0s9Pw== | FearlessC4 | FearlessC4 | yes -2023-06-07 14:09:14.281401 + : pb-IF4eU0s9Pw== | FearlessC4 | | /anti kick -2023-06-07 14:10:55.576617 + : Host msg: | FearlessC4 started a kick vote for lolan✨ -2023-06-07 14:10:57.532697 + : pb-IF4eU0s9Pw== | FearlessC4 | | lolan✨ how old are you -2023-06-07 14:12:18.820312 + : pb-IF4eU0s9Pw== | FearlessC4 | | HOW OLD ARE YOU LOIAN -2023-06-07 14:12:36.733803 + : Host msg: | infernous started a kick vote for Thunder -2023-06-07 14:13:32.077551 + : pb-IF4eU0s9Pw== | FearlessC4 | | -2023-06-07 14:14:39.303582 + : Host msg: | FearlessC4 started a kick vote for BoMbEr💣 -2023-06-07 14:14:43.448792 + : pb-IF4eU0s9Pw== | FearlessC4 | | ops -2023-06-07 14:16:23.219053 + : Host msg: | FearlessC4 started a kick vote for Thunder -2023-06-07 14:16:28.877925 + : pb-IF4eU0s9Pw== | FearlessC4 | | ops -2023-06-07 14:17:16.993488 + : pb-IF4eU0s9Pw== | FearlessC4 | | Don't abuse -2023-06-07 14:23:39.451477 + : pb-IF4xUhUoLQ== | Derivati12 | noooobbb | -2023-06-07 14:23:39.596311 + : pb-IF4xUhUoLQ== | Derivati12 | noooobbb | -2023-06-07 14:23:56.590570 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | -2023-06-07 14:25:31.927889 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | aiyoo baap bhava -2023-06-07 14:25:32.472351 + : Host msg: | noooobbb started a kick vote for 🚓बाप🚓 -2023-06-07 14:26:07.344318 + : pb-IF4vVUNfEA== | sagar88822 | 🚓बाप🚓 | kyu kik -2023-06-07 14:26:20.074067 + : pb-IF4vVUNfEA== | sagar88822 | 🚓बाप🚓 | tu khelo -2023-06-07 14:26:27.911420 + : pb-IF4xUhUoLQ== | Derivati12 | | ruk -2023-06-07 14:27:06.271455 + : pb-IF4xUhUoLQ== | Derivati12 | noooobbb | -2023-06-07 14:27:25.245270 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | ayy baap -2023-06-07 14:27:56.455434 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | baap -2023-06-07 14:27:59.232503 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | lvdya -2023-06-07 14:28:13.554295 + : pb-IF4vVUNfEA== | sagar88822 | 🚓बाप🚓 | gup lavdya -2023-06-07 14:28:18.724217 + : pb-IF4vVUNfEA== | sagar88822 | 🚓बाप🚓 | -2023-06-07 14:28:24.595050 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | are 🍉 -2023-06-07 14:28:32.604326 + : pb-IF4vVUNfEA== | sagar88822 | 🚓बाप🚓 | 🍌🍌🍌 -2023-06-07 14:28:46.034359 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | are lvdu me फडणवीस 🍉😂 -2023-06-07 14:28:49.064364 + : pb-IF4vVUNfEA== | sagar88822 | 🚓बाप🚓 | tujya gandit bulla -2023-06-07 14:29:05.534021 + : pb-IF4vVUNfEA== | sagar88822 | 🚓बाप🚓 | tarbus lavdya -2023-06-07 14:29:10.130482 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | haa -2023-06-07 14:29:14.258952 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | 😂 -2023-06-07 14:30:21.814190 + : pb-IF4vVUNfEA== | sagar88822 | 🚓बाप🚓 | nit khel ki -2023-06-07 14:30:36.122078 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | are me nhi khelt.. maz acc dusryala dilay -2023-06-07 14:30:42.970284 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | Lai divsani aloy me -2023-06-07 14:31:07.224415 + : pb-IF4vVUNfEA== | sagar88822 | 🚓बाप🚓 | ha mipan -2023-06-07 14:31:39.714155 + : pb-IF4vVUNfEA== | sagar88822 | 🚓बाप🚓 | ye thamb -2023-06-07 14:32:02.214121 + : pb-IF4vVUNfEA== | sagar88822 | 🚓बाप🚓 | mala try karude jara -2023-06-07 14:32:10.294192 + : pb-IF4vVUNfEA== | sagar88822 | 🚓बाप🚓 | bomb punch -2023-06-07 14:32:17.411817 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | ok -2023-06-07 14:32:30.929585 + : pb-IF4vVUNfEA== | sagar88822 | 🚓बाप🚓 | tula yetay ka -2023-06-07 14:32:33.886386 + : pb-IF4vVVczDg== | MRGAMINGTH | MRGAMINGTH | wtah -2023-06-07 14:33:38.101314 + : pb-IF4cUBYfCg== | Hrithiksng | noob master 69 | end -2023-06-07 14:33:38.101535 + : Host msg: | end vote started -2023-06-07 14:33:38.102032 + : Host msg: | 3 more end votes required -2023-06-07 14:33:45.152900 + : pb-IF49I04z | SingingTac | Darrnaku | end -2023-06-07 14:33:48.864497 + : pb-IF4vVUNfEA== | sagar88822 | 🚓बाप🚓 | bye lavdya -2023-06-07 14:33:49.927014 + : pb-IF5dVW4SPA== | NoviceChoi | Sub2WaanXo ;) 😆 | end -2023-06-07 14:33:54.393676 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | jvn krun yeto.. lai bhuk lagli a -2023-06-07 14:33:56.227174 + : pb-IF4sU04IFA== | ShariaR | FK | kill him -2023-06-07 14:33:56.821678 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | bye -2023-06-07 14:33:59.503794 + : pb-IF4vVUNfEA== | sagar88822 | 🚓बाप🚓 | rummy chalu jali -2023-06-07 14:34:08.077697 + : Host msg: | Sub2WaanXo... started a kick vote for 🚓बाप🚓 -2023-06-07 14:34:18.434215 + : pb-IF4vVUNfEA== | sagar88822 | 🚓बाप🚓 | 9 vajta ye lavdya🤣🤣 -2023-06-07 14:40:30.921244 + : Host msg: | BCS new server arrived -2023-06-07 14:40:30.921285 + : Host msg: | '3 Team walla server' -2023-06-07 14:40:30.921300 + : Host msg: | must try, and give us your feedbacks -2023-06-07 14:46:21.647661 + : Host msg: | sad ,your account is flagged contact server owner for unban -2023-06-07 15:45:30.928036 + : Host msg: | BCS new server arrived -2023-06-07 15:45:30.928091 + : Host msg: | '3 Team walla server' -2023-06-07 15:45:30.928109 + : Host msg: | must try, and give us your feedbacks -2023-06-07 16:50:30.933352 + : Host msg: | BCS new server arrived -2023-06-07 16:50:30.933685 + : Host msg: | '3 Team walla server' -2023-06-07 16:50:30.933702 + : Host msg: | must try, and give us your feedbacks -2023-06-07 17:01:20.494480 + : pb-IF4OPhMg | Nakumrahul | | tu red me aaja bro muje red me nai khelna aata -2023-06-07 17:01:21.941577 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | aaja bhai -2023-06-07 17:01:44.476226 + : pb-IF4OPhMg | Nakumrahul | | are bhai red ne nai aata kheln -2023-06-07 17:01:49.326332 + : pb-IF4OPhMg | Nakumrahul | | tu red me ja na -2023-06-07 17:01:52.686538 + : pb-IF4OPhMg | Nakumrahul | | pls -2023-06-07 17:01:53.045801 + : pb-IF4OPhMg | Nakumrahul | | -2023-06-07 17:01:53.073878 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | ok -2023-06-07 17:02:28.308613 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-07 17:03:01.574600 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-07 17:03:40.011080 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | time waste -2023-06-07 17:03:49.877972 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | good to die -2023-06-07 17:05:10.095180 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | don't spam bro -2023-06-07 17:05:10.846369 + : pb-IF4OPhMg | Nakumrahul | DEDDY | kha. se he bro -2023-06-07 17:05:34.460513 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | india -2023-06-07 17:05:38.761010 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | delhi -2023-06-07 17:05:39.226051 + : pb-IF4OPhMg | Nakumrahul | DEDDY | me bhi -2023-06-07 17:05:46.035710 + : pb-IF4OPhMg | Nakumrahul | DEDDY | me morbi -2023-06-07 17:06:07.185678 + : pb-IF4OPhMg | Nakumrahul | DEDDY | Hindi ho. a -2023-06-07 17:06:27.713835 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | ya hindu -2023-06-07 17:06:43.075961 + : pb-IF4OPhMg | Nakumrahul | DEDDY | matlab hindi bolte ho na -2023-06-07 17:06:48.113314 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | ha bhai -2023-06-07 17:06:56.485816 + : pb-IF4OPhMg | Nakumrahul | DEDDY | me gujrati hu -2023-06-07 17:07:02.956095 + : pb-IF4OPhMg | Nakumrahul | DEDDY | gujrat se -2023-06-07 17:07:03.475943 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | oh -2023-06-07 17:07:42.180387 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-07 17:07:45.743893 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | 1v2 -2023-06-07 17:08:24.996956 + : pb-IF4OPhMg | Nakumrahul | DEDDY | don red .e chala ja -2023-06-07 17:09:59.962060 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | huh -2023-06-07 17:10:11.400720 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | end this race please guys -2023-06-07 17:10:17.021018 + : pb-IF49I04z | SingingTac | Darrnaku | end -2023-06-07 17:10:34.867613 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-07 17:11:00.113005 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | end -2023-06-07 17:11:00.113224 + : Host msg: | end vote started -2023-06-07 17:11:05.212447 + : pb-IF49I04z | SingingTac | Darrnaku | end -2023-06-07 17:11:05.999110 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | en dkrdo guys -2023-06-07 17:11:20.627689 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | krdo -2023-06-07 17:11:27.465500 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | 1 -2023-06-07 17:11:32.652050 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | type end -2023-06-07 17:11:38.595307 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | end -2023-06-07 17:11:38.595352 + : Host msg: | end vote started -2023-06-07 17:11:51.267151 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | end -2023-06-07 17:11:55.278011 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | one more -2023-06-07 17:13:23.544442 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | hh -2023-06-07 17:13:25.354625 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | koi nhi ab dekhk -2023-06-07 17:13:36.558870 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | thunder red -2023-06-07 17:14:31.096352 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | op -2023-06-07 17:14:33.847683 + : Host msg: | Moon🌛 started a kick vote for don chandu -2023-06-07 17:14:48.686598 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | huhs -2023-06-07 17:15:28.876649 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | y me -2023-06-07 17:16:06.112524 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | huhsh -2023-06-07 17:16:18.652244 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | -2023-06-07 17:16:18.801199 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | -2023-06-07 17:16:20.747104 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | sry -2023-06-07 17:16:35.617027 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | I'm noob -2023-06-07 17:18:14.777457 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | kya bro -2023-06-07 17:18:45.662774 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | whth -2023-06-07 17:19:23.573877 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | end -2023-06-07 17:19:23.573925 + : Host msg: | end vote started -2023-06-07 17:19:27.363288 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | end -2023-06-07 17:19:33.652507 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | end -2023-06-07 17:19:33.652783 + : Host msg: | end vote succeed -2023-06-07 17:19:42.067876 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | pat se headshot -2023-06-07 17:22:11.734659 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-07 17:22:11.880926 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-07 17:22:12.030878 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-07 17:22:44.950700 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-07 17:23:16.056272 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | -2023-06-07 17:23:21.714818 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | sry guys i am noob -2023-06-07 17:23:42.420293 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | idk how i got #2 -2023-06-07 17:24:43.653168 + : Host msg: | Moon🌛 started a kick vote for DEDDY -2023-06-07 17:24:52.784389 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | -2023-06-07 17:25:05.263759 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | sry -2023-06-07 17:25:28.230779 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | y i am noob this much -2023-06-07 17:26:54.399138 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | bye -2023-06-07 17:28:50.602686 + : Host msg: | Moon🌛 started a kick vote for R_ose -2023-06-07 17:28:56.657194 + : Host msg: | Kicked "R_ose" -2023-06-07 17:29:34.398516 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | -2023-06-07 17:33:53.750608 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-07 17:34:40.017007 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-07 17:34:40.183832 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-07 17:34:40.350868 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-07 17:34:40.482980 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-07 17:34:49.578668 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | end -2023-06-07 17:34:49.578719 + : Host msg: | end vote started -2023-06-07 17:36:54.460291 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | -2023-06-07 17:37:56.670146 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | -2023-06-07 17:38:11.750102 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | -2023-06-07 17:39:26.156345 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | lol -2023-06-07 17:39:32.404933 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | lags -2023-06-07 17:42:36.217541 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | aait -2023-06-07 17:42:41.915766 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | wait -2023-06-07 17:43:59.485634 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | n8ce try -2023-06-07 17:44:11.117962 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | bye -2023-06-07 17:44:22.244377 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | bye -2023-06-07 17:44:24.846068 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | i dont want to lose u again -2023-06-07 17:44:41.950700 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | haha -2023-06-07 17:44:50.444862 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | ha ha -2023-06-07 17:44:54.594092 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | 🤣 -2023-06-07 17:45:06.717474 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | thereis some issue in my touch -2023-06-07 17:45:08.194494 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | am sure uh cant -2023-06-07 17:45:22.385751 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | by the way i am vivek -2023-06-07 17:45:27.437788 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | 😁😁 -2023-06-07 17:45:36.474974 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | arr ****w -2023-06-07 17:45:39.356502 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | toch nhi chl rha *** -2023-06-07 17:45:41.125254 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | bs dka -2023-06-07 17:45:46.134271 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | 🤣🤣 -2023-06-07 17:46:01.189426 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | yr shurti n dimaag khrab kr dia -2023-06-07 17:46:09.079088 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | mute hota hai so naam bdlke aaya kya😂 -2023-06-07 17:46:15.523017 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | 🤣🤣 -2023-06-07 17:46:21.238441 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | haha -2023-06-07 17:46:21.771819 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | id hi bdl dilm -2023-06-07 17:46:33.654749 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | jbse hraya h one on one m -2023-06-07 17:46:43.813708 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | chid gyi muzse -2023-06-07 17:46:51.277890 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | 😂😂 -2023-06-07 17:47:04.947491 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | cheating p aa gyi thi -2023-06-07 17:47:08.890691 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | 🤣🤣🤣 -2023-06-07 17:47:19.369241 + : pb-IF4XU0gNJg== | NoName14481 | Moon🌛 | chl bye bhai -2023-06-07 17:47:30.813502 + : pb-IF5VU1JZMw== | Android63983659 | Thunder | bye -2023-06-07 17:47:41.106171 + : pb-IF4VUlcBVQ== | YashRenoun | Mrͥsiͣnͫgђ | -2023-06-07 17:55:30.925693 + : Host msg: | BCS new server arrived -2023-06-07 17:55:30.925734 + : Host msg: | '3 Team walla server' -2023-06-07 17:55:30.925750 + : Host msg: | must try, and give us your feedbacks -2023-06-07 18:30:37.576322 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | end -2023-06-07 19:00:30.922117 + : Host msg: | BCS new server arrived -2023-06-07 19:00:30.922306 + : Host msg: | '3 Team walla server' -2023-06-07 19:00:30.922323 + : Host msg: | must try, and give us your feedbacks -2023-06-07 19:35:24.738680 + : Host msg: | Server will restart on next opportunity. (series end) -2023-06-07 20:05:30.925431 + : Host msg: | BCS new server arrived -2023-06-07 20:05:30.925468 + : Host msg: | '3 Team walla server' -2023-06-07 20:35:41.789479 + : Host msg: | BCS new server arrived -2023-06-07 20:35:41.789528 + : Host msg: | '3 Team walla server' -2023-06-07 20:35:41.789572 + : Host msg: | must try, and give us your feedbacks -2023-06-07 21:38:20.332443 + : Host msg: | Only 1 player per IP allowed, disconnecting this device. -2023-06-07 21:40:33.784768 + : Host msg: | BCS new server arrived -2023-06-07 21:40:33.784824 + : Host msg: | '3 Team walla server' -2023-06-07 21:40:33.784845 + : Host msg: | must try, and give us your feedbacks -2023-06-07 21:42:15.948220 + : pb-IF4OPhMg | Nakumrahul | | bhai red me aaja. -2023-06-07 21:42:24.928984 + : pb-IF4OPhMg | Nakumrahul | | muje Blue me khelne de na -2023-06-07 21:42:36.748161 + : pb-IF4OPhMg | Nakumrahul | | red me nai khelna aata mujko -2023-06-07 21:42:44.422166 + : pb-IF4sVVgTAg== | WonderfulH | virichu adi | poolunga la vanga da -2023-06-07 21:42:54.969486 + : pb-IF4OPhMg | Nakumrahul | | kya -2023-06-07 21:43:01.008618 + : pb-IF4OPhMg | Nakumrahul | | bol Raha he.. -2023-06-07 21:43:02.718297 + : pb-IF4sVVgTAg== | WonderfulH | virichu adi | Un kuthi -2023-06-07 21:43:11.510381 + : pb-IF4sVVgTAg== | WonderfulH | virichu adi | ma **** -2023-06-07 21:43:34.941993 + : pb-IF4sVVgTAg== | WonderfulH | virichu adi | boosaxi -2023-06-07 21:43:43.492393 + : pb-IF4sVVgTAg== | WonderfulH | virichu adi | **** -2023-06-07 22:45:33.786707 + : Host msg: | BCS new server arrived -2023-06-07 22:45:33.787068 + : Host msg: | '3 Team walla server' -2023-06-07 22:45:33.787085 + : Host msg: | must try, and give us your feedbacks -2023-06-07 22:56:06.357081 + : pb-IF4uUk4vMg== | FuriousPhy | ‎ | I fu move ur gay -2023-06-07 23:19:56.909098 + : Host msg: | Only 1 player per IP allowed, disconnecting this device. -2023-06-07 23:50:33.788986 + : Host msg: | BCS new server arrived -2023-06-07 23:50:33.789024 + : Host msg: | '3 Team walla server' -2023-06-07 23:50:33.789037 + : Host msg: | must try, and give us your feedbacks -2023-06-08 00:55:33.783491 + : Host msg: | BCS new server arrived -2023-06-08 00:55:33.783686 + : Host msg: | '3 Team walla server' -2023-06-08 00:55:33.783702 + : Host msg: | must try, and give us your feedbacks -2023-06-08 00:57:02.961765 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | end -2023-06-08 00:57:02.961813 + : Host msg: | end vote started -2023-06-08 00:57:05.706090 + : pb-IF4cVGMHLA== | masoom1980 | Piro. | end -2023-06-08 00:57:05.706216 + : Host msg: | end vote succeed -2023-06-08 00:58:33.552156 + : pb-IF4IUGVTMQ== | niloferkha | TresslessPr | haha -2023-06-08 03:36:08.657052 + : Host msg: | BCS new server arrived -2023-06-08 03:36:08.657090 + : Host msg: | '3 Team walla server' -2023-06-08 03:36:08.657129 + : Host msg: | must try, and give us your feedbacks -2023-06-08 04:41:00.659891 + : Host msg: | BCS new server arrived -2023-06-08 04:41:00.660253 + : Host msg: | '3 Team walla server' -2023-06-08 04:41:00.660277 + : Host msg: | must try, and give us your feedbacks -2023-06-08 05:46:00.660117 + : Host msg: | BCS new server arrived -2023-06-08 05:46:00.660508 + : Host msg: | '3 Team walla server' -2023-06-08 05:46:00.660527 + : Host msg: | must try, and give us your feedbacks -2023-06-08 06:51:00.665450 + : Host msg: | BCS new server arrived -2023-06-08 06:51:00.665797 + : Host msg: | '3 Team walla server' -2023-06-08 06:51:00.666308 + : Host msg: | must try, and give us your feedbacks -2023-06-08 07:56:00.669453 + : Host msg: | BCS new server arrived -2023-06-08 07:56:00.669651 + : Host msg: | '3 Team walla server' -2023-06-08 07:56:00.669668 + : Host msg: | must try, and give us your feedbacks -2023-06-08 09:01:00.671824 + : Host msg: | BCS new server arrived -2023-06-08 09:01:00.672015 + : Host msg: | '3 Team walla server' -2023-06-08 09:01:00.672029 + : Host msg: | must try, and give us your feedbacks -2023-06-08 09:20:24.697633 + : pb-IF41UBQPXA== | TinyProfit | boonehtru | lol -2023-06-08 09:20:45.670623 + : pb-IF4qU0wPPQ== | AJMALDUDE7 | AJMALDUDE7 | hehe -2023-06-08 09:25:46.842810 + : pb-IF4qU0wPPQ== | AJMALDUDE7 | AJMALDUDE7 | I gtg -2023-06-08 09:25:52.490575 + : pb-IF4qU0wPPQ== | AJMALDUDE7 | AJMALDUDE7 | school -2023-06-08 10:12:22.995618 + : Host msg: | BCS new server arrived -2023-06-08 10:12:22.995690 + : Host msg: | '3 Team walla server' -2023-06-08 10:12:22.995729 + : Host msg: | must try, and give us your feedbacks -2023-06-08 10:23:43.221796 + : pb-IF4qUxBfAw== | Android61525964 | | come bcs epic -2023-06-08 10:29:55.153739 + : pb-IF4uUk4vMg== | FuriousPhy | ‎ | gali mat do -2023-06-08 10:29:56.384172 + : pb-IF5XU1kzXA== | Cat1ock | Thunder | -2023-06-08 10:30:17.240376 + : Host msg: | DEDDY started a kick vote for Thunder -2023-06-08 10:32:43.719506 + : Host msg: | DEDDY started a kick vote for Gilgamesh -2023-06-08 10:32:59.676898 + : Host msg: | Kicked "Gilgamesh" -2023-06-08 10:33:35.091336 + : Host msg: | ... started a kick vote for DEDDY -2023-06-08 10:33:40.791087 + : Host msg: | Kicked "DEDDY" -2023-06-08 10:42:35.251794 + : Host msg: | ... started a kick vote for Moon🌛 -2023-06-08 10:42:50.993854 + : pb-IF4XU0gNJg== | NoName14481 | | abe fanda -2023-06-08 10:42:57.407460 + : pb-IF4XU0gNJg== | NoName14481 | | sudrega nhi -2023-06-08 10:43:08.145158 + : Host msg: | ‎ started a kick vote for Moon🌛 -2023-06-08 10:43:22.143184 + : Host msg: | ‎ started a kick vote for NoName14481 -2023-06-08 10:43:22.865453 + : Host msg: | Kicked "NoName14481" -2023-06-08 10:48:20.364619 + : pb-IF4uUk4vMg== | FuriousPhy | ‎ | ** -2023-06-08 10:55:18.651748 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | /end -2023-06-08 11:02:59.372247 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-08 11:02:59.605829 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-08 11:02:59.775023 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-08 11:03:30.714891 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | /ping -2023-06-08 11:03:30.715141 + : Host msg: | Your ping 17ms -2023-06-08 11:04:53.057453 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-08 11:04:53.222039 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-08 11:04:53.307127 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-08 11:04:53.441897 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-08 11:08:11.892516 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-08 11:08:12.022077 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-08 11:09:53.492357 + : Host msg: | lolan✨ started a kick vote for Lancelot -2023-06-08 11:10:48.723664 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-08 11:11:00.382504 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | /me -2023-06-08 11:11:00.384251 + : Host msg: | Score:452 -2023-06-08 11:11:00.384280 + : Host msg: | Games:9 -2023-06-08 11:11:00.384292 + : Host msg: | Kills:18 -2023-06-08 11:11:00.384304 + : Host msg: | Deaths:11 -2023-06-08 11:11:00.384313 + : Host msg: | Avg.:50.222 -2023-06-08 11:14:10.324917 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-08 11:14:10.512445 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-08 11:14:10.724355 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-08 11:14:10.847132 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-08 11:14:25.022758 + : Host msg: | Beowulf started a kick vote for lolan✨ -2023-06-08 11:14:54.060872 + : pb-IF4eU0s9Pw== | FearlessC4 | | how old are you lolan -2023-06-08 11:15:09.954544 + : pb-IF4eU0s9Pw== | FearlessC4 | | you are 7 -2023-06-08 11:15:13.112050 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | why you kick me -2023-06-08 11:15:13.853079 + : pb-IF5XU1kzXA== | Cat1ock | Beowulf | what kind of question is thaat -2023-06-08 11:15:19.371849 + : pb-IF4eU0s9Pw== | FearlessC4 | | lolan -2023-06-08 11:16:02.993801 + : pb-IF4eU0s9Pw== | FearlessC4 | | lolan!!! -2023-06-08 11:16:11.159240 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-08 11:16:41.176483 + : pb-IF4eU0s9Pw== | FearlessC4 | | lolan how old are you -2023-06-08 11:16:58.163344 + : Host msg: | Pan started a kick vote for geme play -2023-06-08 11:17:14.997513 + : Host msg: | BCS new server arrived -2023-06-08 11:17:14.997580 + : Host msg: | '3 Team walla server' -2023-06-08 11:17:14.997779 + : Host msg: | must try, and give us your feedbacks -2023-06-08 11:17:16.148162 + : pb-IF4JUmwqLQ== | Android55928477 | VIVEK🌪️ | -2023-06-08 11:18:09.705564 + : pb-IF4JUBkxKw== | SharpKnowI | Pan | kick geme Play he is betrayer -2023-06-08 11:18:10.183690 + : pb-IF5XU1kzXA== | Cat1ock | Beowulf | how old r u -2023-06-08 11:18:28.322764 + : Host msg: | FearlessC4 started a kick vote for lolan✨ -2023-06-08 11:19:11.922720 + : pb-IF4JUmwqLQ== | Android55928477 | VIVEK🌪️ | nice -2023-06-08 11:19:12.810116 + : pb-IF4eU0s9Pw== | FearlessC4 | | ***!!!! -2023-06-08 11:19:15.514002 + : pb-IF5XU1kzXA== | Cat1ock | Beowulf | -2023-06-08 11:19:32.098940 + : pb-IF4eU0s9Pw== | FearlessC4 | | LOIAN!!!!!!!!! -2023-06-08 11:20:34.512625 + : pb-IF5XU1kzXA== | Cat1ock | Beowulf | thx -2023-06-08 11:20:48.016836 + : pb-IF4eU0s9Pw== | FearlessC4 | | HOW OLD ARE YOUUUUUUUU LOIAN!!!!!!!!!😡😡😡😡😡 -2023-06-08 11:20:58.197211 + : pb-IF4eU0s9Pw== | FearlessC4 | | please -2023-06-08 11:21:03.736370 + : pb-IF5XU1kzXA== | Cat1ock | Beowulf | what about u? -2023-06-08 11:21:19.217092 + : pb-IF4eU0s9Pw== | FearlessC4 | | HE LEFT!! -2023-06-08 11:21:20.959006 + : pb-IF5XU1kzXA== | Cat1ock | Beowulf | y u keep aaking -2023-06-08 11:21:23.302621 + : Host msg: | Lancelot started a kick vote for FearlessC4 -2023-06-08 11:21:31.795899 + : pb-IF5XU1kzXA== | Cat1ock | Beowulf | asking -2023-06-08 11:21:36.050903 + : pb-IF4eU0s9Pw== | FearlessC4 | | *******!!!! -2023-06-08 11:23:22.951771 + : pb-IF4JUmwqLQ== | Android55928477 | VIVEK🌪️ | mirror dang s khel le -2023-06-08 11:23:48.642061 + : pb-IF4eU0s9Pw== | FearlessC4 | | Athena U KICKED ME FCK -2023-06-08 11:24:31.407931 + : pb-IF5XU1kzXA== | Cat1ock | Socrates | how old is everyone -2023-06-08 11:29:00.754572 + : pb-IF5XU1kzXA== | Cat1ock | Socrates | -2023-06-08 11:29:57.889722 + : pb-IF4JUBkxKw== | SharpKnowI | Pan | yayayyaY -2023-06-08 11:34:38.701967 + : pb-IF4zUBUlNg== | Android64653674 | Lancelot | 😂 -2023-06-08 11:34:41.800312 + : pb-IF4jF1NY | Hoemie | Hoemlander | xD -2023-06-08 11:36:09.476856 + : pb-IF4JUmwqLQ== | Android55928477 | VIVEK🌪️ | -2023-06-08 11:37:37.935213 + : pb-IF4jF1NY | Hoemie | Hoemlander | sorry sutta maar raha -2023-06-08 11:38:53.880943 + : pb-IF4jF1NY | Hoemie | Hoemlander | xD -2023-06-08 11:39:00.411789 + : pb-IF4zUBUlNg== | Android64653674 | Lancelot | 😑 -2023-06-08 11:39:15.320666 + : pb-IF4jF1NY | Hoemie | Hoemlander | :( -2023-06-08 11:39:19.391807 + : pb-IF4zUBUlNg== | Android64653674 | Lancelot | sry -2023-06-08 11:40:24.905851 + : pb-IF4jF1NY | Hoemie | Hoemlander | bhaag gaya -2023-06-08 11:40:44.763825 + : pb-IF4JUmwqLQ== | Android55928477 | VIVEK🌪️ | -2023-06-08 11:40:49.453430 + : pb-IF5dVUk5MA== | devilrk768 | devilrk768 | Teri tarah noob Hena isiliye -2023-06-08 11:41:56.931323 + : pb-IF4jF1NY | Hoemie | Hoemlander | tere kaun pucha 😂 -2023-06-08 11:41:57.670173 + : pb-IF4JUmwqLQ== | Android55928477 | VIVEK🌪️ | -2023-06-08 11:41:58.274113 + : pb-IF5dVUk5MA== | devilrk768 | devilrk768 | looooossseeeerrrrsss 🤣 -2023-06-08 11:42:13.389387 + : pb-IF4eU0s9Pw== | FearlessC4 | | hey -2023-06-08 11:42:43.975789 + : pb-IF4jF1NY | Hoemie | Hoemlander | noo -2023-06-08 11:42:50.365722 + : pb-IF4jF1NY | Hoemie | Hoemlander | vivekk -2023-06-08 11:42:55.420995 + : pb-IF4JUmwqLQ== | Android55928477 | VIVEK🌪️ | ha bhai -2023-06-08 11:45:38.000450 + : Host msg: | FearlessC4 started a kick vote for Intract291 -2023-06-08 11:45:54.521279 + : pb-IF4eU0s9Pw== | FearlessC4 | | ops -2023-06-08 11:47:15.406255 + : pb-IF4JUmwqLQ== | Android55928477 | VIVEK🌪️ | -2023-06-08 11:48:36.506718 + : pb-IF4JUmwqLQ== | Android55928477 | VIVEK🌪️ | hi fear -2023-06-08 12:20:01.998736 + : pb-IF4cUBYfCg== | Hrithiksng | noob master 69 | -2023-06-08 12:20:02.218621 + : pb-IF4cUBYfCg== | Hrithiksng | noob master 69 | -2023-06-08 12:22:14.991637 + : Host msg: | BCS new server arrived -2023-06-08 12:22:14.991699 + : Host msg: | '3 Team walla server' -2023-06-08 12:22:14.991722 + : Host msg: | must try, and give us your feedbacks -2023-06-08 12:22:15.318691 + : pb-IF4cUBYfCg== | Hrithiksng | noob master 69 | -2023-06-08 12:22:15.468926 + : pb-IF4cUBYfCg== | Hrithiksng | noob master 69 | -2023-06-08 12:22:46.059519 + : pb-IF5TUGo6VQ== | Android65141946 | Android65141946 | damn playing on phone is hard -2023-06-08 12:41:29.131708 + : Host msg: | FearlessC4 started a kick vote for Zeus -2023-06-08 12:41:51.096349 + : Host msg: | Only 1 player per IP allowed, disconnecting this device. -2023-06-08 12:41:58.431708 + : Host msg: | vengeance started a kick vote for Himank -2023-06-08 13:08:30.466087 + : Host msg: | Pan started a kick vote for ✐elwazasan... -2023-06-08 13:27:14.997462 + : Host msg: | BCS new server arrived -2023-06-08 13:27:14.997836 + : Host msg: | '3 Team walla server' -2023-06-08 13:27:14.997853 + : Host msg: | must try, and give us your feedbacks -2023-06-08 14:07:37.585141 + : Host msg: | MEL GOD started a kick vote for noob maste... -2023-06-08 14:32:14.987306 + : Host msg: | BCS new server arrived -2023-06-08 14:32:14.987349 + : Host msg: | '3 Team walla server' -2023-06-08 14:32:14.987368 + : Host msg: | must try, and give us your feedbacks -2023-06-08 14:53:10.939973 + : pb-IF4vU0MENg== | harshal | | /me -2023-06-08 14:53:10.941007 + : Host msg: | Not played any match yet. -2023-06-08 14:53:25.043627 + : pb-IF4vU0MENg== | harshal | harshal | /me -2023-06-08 16:19:24.999369 + : Host msg: | BCS new server arrived -2023-06-08 16:19:24.999413 + : Host msg: | '3 Team walla server' -2023-06-08 16:19:24.999451 + : Host msg: | must try, and give us your feedbacks -2023-06-08 16:33:02.826435 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | mu rank -2023-06-08 16:36:29.487216 + : pb-IF4TUGkAMQ== | LushMateri | Ayush 😇😇 | hi my name is Ayush -2023-06-08 16:36:39.370409 + : pb-IF4TUGkAMQ== | LushMateri | Ayush 😇😇 | you are my friend -2023-06-08 16:37:54.870640 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | @BCS -2023-06-08 16:38:33.739676 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | BCs -2023-06-08 16:39:23.354187 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | pro idhar -2023-06-08 16:39:26.271763 + : pb-IF4TUGkAMQ== | LushMateri | Ayush 😇😇 | you are my friend -2023-06-08 16:40:05.125463 + : pb-IF4TUGkAMQ== | LushMateri | Ayush 😇😇 | you are my friend -2023-06-08 16:41:37.071469 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-08 16:41:44.476835 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | noob don't run -2023-06-08 16:57:31.594685 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | /gm -2023-06-08 16:57:41.859356 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | nice try -2023-06-08 16:58:25.610002 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | /fly -2023-06-08 16:58:34.789523 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | /fly -2023-06-08 16:58:39.449315 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | /fly 1 -2023-06-08 16:58:52.354037 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | 😂 -2023-06-08 16:59:16.663597 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | 😭😂😂 -2023-06-08 17:00:39.438874 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | sad -2023-06-08 17:00:46.644806 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Add demolition -2023-06-08 17:00:57.383837 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | here -2023-06-08 17:04:06.056966 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | come bgmi -2023-06-08 17:05:04.636774 + : pb-IF49I04z | SingingTac | Darrnaku | sorry -2023-06-08 17:05:33.642208 + : pb-IF49I04z | SingingTac | Darrnaku | -2023-06-08 17:05:33.770969 + : pb-IF49I04z | SingingTac | Darrnaku | -2023-06-08 17:05:58.916717 + : pb-IF4tUGMBCg== | Znab | Zainab | lag -2023-06-08 17:07:41.086762 + : pb-IF4tUGMBCg== | Znab | Zainab | not able to play -2023-06-08 17:07:42.647461 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | lag -2023-06-08 17:07:46.377389 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | /ping -2023-06-08 17:07:46.377851 + : Host msg: | Your ping 56ms -2023-06-08 17:07:48.498130 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | yes -2023-06-08 17:07:55.228794 + : pb-IF4tUGMBCg== | Znab | Zainab | bye -2023-06-08 17:08:25.561638 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | /ping all -2023-06-08 17:08:25.562221 + : Host msg: | Name Ping (ms) ms -2023-06-08 17:08:25.562248 + : Host msg: | ______________________________ -2023-06-08 17:08:25.562264 + : Host msg: | 𝑨𝒕𝒉𝒆𝒏𝒂 15 ms -2023-06-08 17:08:25.562277 + : Host msg: | .Smoothy 41 ms -2023-06-08 17:08:25.562308 + : Host msg: | Darrnaku 62 ms -2023-06-08 17:08:25.562324 + : Host msg: | ‎ 86 ms -2023-06-08 17:08:25.562338 + : Host msg: | MaD MaN 58 ms -2023-06-08 17:08:25.562347 + : Host msg: | -2023-06-08 17:08:33.686894 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | /me -2023-06-08 17:08:33.688926 + : Host msg: | Score:1447 -2023-06-08 17:08:33.688956 + : Host msg: | Games:24 -2023-06-08 17:08:33.689030 + : Host msg: | Kills:76 -2023-06-08 17:08:33.689075 + : Host msg: | Deaths:55 -2023-06-08 17:08:33.689122 + : Host msg: | Avg.:60.291 -2023-06-08 17:09:22.583048 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | .Smoothy | /hug 0 1 -2023-06-08 17:12:19.910101 + : pb-IF49I04z | SingingTac | Darrnaku | -2023-06-08 17:12:20.025180 + : pb-IF49I04z | SingingTac | Darrnaku | -2023-06-08 17:14:01.017684 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | /ping -2023-06-08 17:14:01.018096 + : Host msg: | Your ping 60ms -2023-06-08 17:14:28.537428 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | 😂😆 -2023-06-08 17:19:24.173557 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | lag shit -2023-06-08 17:19:26.833247 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | /ping -2023-06-08 17:19:26.833349 + : Host msg: | Your ping 82ms -2023-06-08 17:21:22.324387 + : Host msg: | EliteSage2 started a kick vote for deebuckcol -2023-06-08 17:23:45.628536 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | 1 -2023-06-08 17:24:17.003688 + : Host msg: | BCS new server arrived -2023-06-08 17:24:17.003800 + : Host msg: | '3 Team walla server' -2023-06-08 17:24:17.003827 + : Host msg: | must try, and give us your feedbacks -2023-06-08 17:24:58.632495 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | stuoid noob -2023-06-08 17:25:30.177622 + : Host msg: | EliteSage2 started a kick vote for deebuckcol -2023-06-08 17:31:43.773500 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | /remove 153 -2023-06-08 17:35:18.272925 + : Host msg: | 🦋 started a kick vote for HypnoticA4 -2023-06-08 18:29:17.005706 + : Host msg: | BCS new server arrived -2023-06-08 18:29:17.005746 + : Host msg: | '3 Team walla server' -2023-06-08 18:29:17.005763 + : Host msg: | must try, and give us your feedbacks -2023-06-08 18:52:51.923529 + : Host msg: | sad ,your account is flagged contact server owner for unban -2023-06-08 19:34:17.006370 + : Host msg: | BCS new server arrived -2023-06-08 19:34:17.006427 + : Host msg: | '3 Team walla server' -2023-06-08 19:34:17.006450 + : Host msg: | must try, and give us your feedbacks -2023-06-08 20:39:17.009767 + : Host msg: | BCS new server arrived -2023-06-08 20:39:17.009807 + : Host msg: | '3 Team walla server' -2023-06-08 20:39:17.009830 + : Host msg: | must try, and give us your feedbacks -2023-06-08 23:10:10.280282 + : Host msg: | BCS new server arrived -2023-06-08 23:10:10.280394 + : Host msg: | '3 Team walla server' -2023-06-08 23:10:10.280587 + : Host msg: | must try, and give us your feedbacks -2023-06-08 23:12:04.377325 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | 😫 -2023-06-08 23:12:33.548097 + : Host msg: | stoinic started a kick vote for Miraculo17 -2023-06-08 23:13:36.932868 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | i m lala rouf lala -2023-06-08 23:13:50.247353 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | oh ok -2023-06-08 23:14:48.512255 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | hy sahil -2023-06-08 23:15:13.643171 + : pb-IF5UU3YxEA== | Miraculo17 | | heyy -2023-06-08 23:15:36.054627 + : pb-IF5UU3YxEA== | Miraculo17 | | new user's ko allow nai karte ky? -2023-06-08 23:15:46.292901 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | aana bhai tu -2023-06-08 23:16:16.178603 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | shreya tu😱 -2023-06-08 23:16:31.187536 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | stoinic kon -2023-06-08 23:16:42.022319 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | nai malum -2023-06-08 23:16:44.551349 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | lala h🤣🤣 -2023-06-08 23:16:51.952813 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | hoga koi chumtiya🤣🤣 -2023-06-08 23:16:52.624836 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | op Kartikey ko allow nai karre -2023-06-08 23:16:55.353535 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | itne dino baad -2023-06-08 23:17:07.076728 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | who you? -2023-06-08 23:17:12.353814 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | kaha thi itne dino -2023-06-08 23:17:23.594521 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | tu phele bata toh sahi -2023-06-08 23:17:28.433830 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | kon hai tu -2023-06-08 23:17:45.821304 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | kartikey ne abhi abhi download kra h kya ?🐷☠️ -2023-06-08 23:17:49.208684 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | nhi btaunga -2023-06-08 23:17:50.192320 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | itna mat puch wo bhav khayegaa -2023-06-08 23:18:02.553728 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | 😂 -2023-06-08 23:18:07.349046 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | yeahh -2023-06-08 23:18:08.932276 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | 😅🤣 -2023-06-08 23:18:10.541236 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | ye stonic bisi ckd h🤣🤣 -2023-06-08 23:18:23.592679 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | **🤣🤣🤣🤣🤣 -2023-06-08 23:18:24.407687 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | sahi mai -2023-06-08 23:18:31.412331 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | uski maka🤣🤣🤣🤣 -2023-06-08 23:18:32.745616 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | 🫣 -2023-06-08 23:18:34.181189 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | ek lala hai -2023-06-08 23:18:34.272297 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | slaaaa -2023-06-08 23:18:34.533639 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | ha😔 -2023-06-08 23:18:45.510113 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | kartikey ka kuch bol ab -2023-06-08 23:18:51.337735 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | nai hoga ky -2023-06-08 23:19:02.046311 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | kya pata try krne bol usko aane ka -2023-06-08 23:19:10.259143 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | wait -2023-06-08 23:19:12.892371 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | ckd bhadve what a surprise. -2023-06-08 23:19:21.286536 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | 🤣🤣🤣 -2023-06-08 23:19:32.493849 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | abe ye lala🤔 -2023-06-08 23:19:41.552303 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | haa be -2023-06-08 23:19:52.701875 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | stoinic kon hai Bhai tu?☠️☠️ -2023-06-08 23:19:56.521527 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | 🐒🐒 -2023-06-08 23:20:00.417678 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | i guess abhi -2023-06-08 23:20:03.434911 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | hai -2023-06-08 23:20:08.556678 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | haa shyd -2023-06-08 23:20:16.312384 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | pro ban gayaa -2023-06-08 23:20:18.493661 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | kon abhi -2023-06-08 23:20:20.122464 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | bhai wo -2023-06-08 23:20:33.299499 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | bcz maine abhi ko nahi bataya tha ki shreya b aarhi🤣🤣 -2023-06-08 23:20:44.834280 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | sahil check kar whoz he -2023-06-08 23:20:54.405741 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | ooohh -2023-06-08 23:20:58.537942 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | 😂😂🤣 -2023-06-08 23:21:02.174445 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | i can't merepe abhi mod nhi h -2023-06-08 23:21:03.853668 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | abe tm sb aaye to sath me hi aaye -2023-06-08 23:21:19.712337 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | we r one🤣🤣😅😅😎😎 -2023-06-08 23:21:32.499951 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | exactly -2023-06-08 23:21:37.621472 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | lol stoinic -2023-06-08 23:21:38.693373 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | 🔥🔥🔥🥵🥵🥵 -2023-06-08 23:21:42.398683 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | or mai zero -2023-06-08 23:21:45.706527 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | abhi bhaddwe -2023-06-08 23:22:11.361286 + : pb-IF4zU2MgJw== | SharpEnemy | Master | shreya madam namaste -2023-06-08 23:22:18.729646 + : pb-IF4zU2MgJw== | SharpEnemy | Master | long time no see -2023-06-08 23:22:30.561443 + : pb-IF4zU2MgJw== | SharpEnemy | Master | sahil ****e jinda hai tu -2023-06-08 23:22:33.148612 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | ab yeh master kon -2023-06-08 23:22:34.772508 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | or ek😅😅😅😅 -2023-06-08 23:22:53.533049 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | shreya tu jaa bhai🤣🤣 -2023-06-08 23:23:01.194308 + : pb-IF4zU2MgJw== | SharpEnemy | Master | shreya -2023-06-08 23:23:02.312881 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | 😂😂😂 -2023-06-08 23:23:06.065338 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | kaha -2023-06-08 23:23:16.135583 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | haan bol master -2023-06-08 23:23:16.514511 + : pb-IF4zU2MgJw== | SharpEnemy | Master | sooja bol rha -2023-06-08 23:23:17.882085 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | ab ye master kon h bisi -2023-06-08 23:23:24.645114 + : pb-IF4zU2MgJw== | SharpEnemy | Master | drew kaha hai -2023-06-08 23:23:25.371743 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | ky pata -2023-06-08 23:23:34.232652 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | abhi he -2023-06-08 23:23:35.390200 + : pb-IF4zU2MgJw== | SharpEnemy | Master | sahil ka papa hu -2023-06-08 23:23:37.232350 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | sayad -2023-06-08 23:23:41.626676 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | bdsk master -2023-06-08 23:23:43.692479 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | ckd -2023-06-08 23:23:49.529572 + : pb-IF4zU2MgJw== | SharpEnemy | Master | ckd ****a -2023-06-08 23:23:49.849911 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | ckd pakka hai his either master or that stoinic -2023-06-08 23:23:51.323621 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | ab daily aana h tm logo ko -2023-06-08 23:24:00.872403 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | nai be -2023-06-08 23:24:05.302791 + : pb-IF4zU2MgJw== | SharpEnemy | Master | stionic kon hai aab -2023-06-08 23:24:10.708466 + : pb-IF4zU2MgJw== | SharpEnemy | Master | nai nai dosti -2023-06-08 23:24:11.984199 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | Tera baap -2023-06-08 23:24:13.651690 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | stoinic pehle ye bata tu kaun h? -2023-06-08 23:24:13.692681 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rouaflala | rouaflala | ye bhadve ne bulaya sahil darling ne -2023-06-08 23:24:24.716427 + : pb-IF4zU2MgJw== | SharpEnemy | Master | shreya dm bhi dekh lia kar -2023-06-08 23:24:30.454292 + : pb-IF4zU2MgJw== | SharpEnemy | Master | 😞😞😞 -2023-06-08 23:24:35.656739 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | ye master abhi h ****aaa🤣🤣 -2023-06-08 23:24:37.045282 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | 🫣 -2023-06-08 23:24:44.980383 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | nai re -2023-06-08 23:24:51.659800 + : pb-IF4zU2MgJw== | SharpEnemy | Master | noi re -2023-06-08 23:24:59.312732 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | usne mereko dm karra hi ni -2023-06-08 23:25:01.627288 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | Guyss ye kya Saiyan Dil mei aana re gaana chal rha jo hum gaate the saath -2023-06-08 23:25:03.624738 + : pb-IF4zU2MgJw== | SharpEnemy | Master | mai drew hu -2023-06-08 23:25:16.082140 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | achha😍💩 -2023-06-08 23:25:17.097050 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | drew saale reply nahi kra insta pe ☠️☠️ -2023-06-08 23:25:20.921907 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | WELCOMEBACK -2023-06-08 23:25:31.006965 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | . -2023-06-08 23:25:33.626391 + : pb-IF4zU2MgJw== | SharpEnemy | Master | shreya is still noob -2023-06-08 23:25:39.031915 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | ignoring -2023-06-08 23:25:47.106528 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | drew shreya teri gend maar degi☠️🤣🤣 -2023-06-08 23:25:52.820857 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | kyu bey -2023-06-08 23:26:06.326558 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | Abe shreya kya kri bey🤣🤣🤣 -2023-06-08 23:26:33.457225 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | ky ki mai -2023-06-08 23:26:40.946553 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | shreya mereko maari kyu tu 🙂 -2023-06-08 23:26:49.286501 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | mereko mukka maari toh fir gya mai -2023-06-08 23:26:50.534528 + : pb-IF4qUxBfAw== | Android61525964 | MAFIA☠️ | abe🫨🫨🫨 -2023-06-08 23:26:59.176632 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | aagya ckd bopdiwala -2023-06-08 23:27:04.516635 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | 🤣🤣🤣🤣 -2023-06-08 23:27:05.051498 + : pb-IF4zU2MgJw== | SharpEnemy | Master | omg -2023-06-08 23:27:13.136515 + : pb-IF4zU2MgJw== | SharpEnemy | Master | kaha hai ckd? -2023-06-08 23:27:19.271599 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | mafia hi ckd h🤣🤣 -2023-06-08 23:27:24.533636 + : pb-IF4qUxBfAw== | Android61525964 | MAFIA☠️ | 🤣 -2023-06-08 23:27:30.170185 + : pb-IF4zU2MgJw== | SharpEnemy | Master | shaadi hui bhai -2023-06-08 23:27:35.871911 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | chewtiya itna attitude dikhata h☠️ ckd -2023-06-08 23:27:42.053632 + : pb-IF4qUxBfAw== | Android61525964 | MAFIA☠️ | ha ho gyi -2023-06-08 23:27:46.773158 + : pb-IF4zU2MgJw== | SharpEnemy | Master | ki nhi de rhi koi 😂😂 -2023-06-08 23:27:53.295892 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | yayy -2023-06-08 23:27:55.871903 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | agar uski shaadi hui hoti toh mai aur shreya jrur jaate ☠️🤣 -2023-06-08 23:27:59.273813 + : pb-IF4qUxBfAw== | Android61525964 | MAFIA☠️ | ho gyi saale -2023-06-08 23:27:59.636942 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | ab bol dhruv -2023-06-08 23:28:08.443467 + : pb-IF4zU2MgJw== | SharpEnemy | Master | sahil rhene de tu -2023-06-08 23:28:18.218562 + : pb-IF4zU2MgJw== | SharpEnemy | Master | tujhe nhi bulaa rha -2023-06-08 23:28:27.821917 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | dhruv bdsk tu toh aaya nahi kolhapur milne ☠️ jab mai aya thaa -2023-06-08 23:28:35.694078 + : pb-IF4qUxBfAw== | Android61525964 | MAFIA☠️ | bye l0du log -2023-06-08 23:28:44.627655 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | ckd noo -2023-06-08 23:28:46.693531 + : pb-IF4zU2MgJw== | SharpEnemy | Master | Rukh jaa -2023-06-08 23:28:50.531643 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | kyu ckd ☠️☠️ -2023-06-08 23:28:56.733880 + : pb-IF4qUxBfAw== | Android61525964 | MAFIA☠️ | kya re😒 -2023-06-08 23:29:02.358942 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | lala kaha hai -2023-06-08 23:29:10.990909 + : pb-IF4zU2MgJw== | SharpEnemy | Master | 2vs2 khelte ek game -2023-06-08 23:29:15.861844 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | kya pata kaha h☠️ lala abh -2023-06-08 23:29:23.706135 + : pb-IF4zU2MgJw== | SharpEnemy | Master | noob vs pro -2023-06-08 23:29:45.533589 + : pb-IF4qUxBfAw== | Android61525964 | MAFIA☠️ | guys sry bt mai ckd nhi hu -2023-06-08 23:29:48.579718 + : pb-IF4zU2MgJw== | SharpEnemy | Master | lala sahil ke chaddi mai hai -2023-06-08 23:29:58.301723 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | 😂😂 -2023-06-08 23:29:58.941427 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | saale master 🤣🤣 -2023-06-08 23:30:08.071829 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | to kon h mafia tu?☠️ -2023-06-08 23:30:37.253933 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | shit -2023-06-08 23:30:44.063654 + : pb-IF4qUxBfAw== | Android61525964 | MAFIA☠️ | agar bol dunga apna naam to tm kaho ge ye chu.tiyq h -2023-06-08 23:30:46.706637 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | 🐷 -2023-06-08 23:30:55.586649 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | bol kon hai?? -2023-06-08 23:31:12.113580 + : pb-IF4qUxBfAw== | Android61525964 | MAFIA☠️ | enjoy -2023-06-08 23:31:26.334664 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | ****a ckd hi tha ☠️☠️ -2023-06-08 23:31:29.269954 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | heheheh -2023-06-08 23:31:39.288590 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | vo ckd hi thaa ☠️☠️ -2023-06-08 23:31:43.494735 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | kaise pata laga -2023-06-08 23:31:49.646567 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | i know re -2023-06-08 23:31:53.360883 + : pb-IF4zU2MgJw== | SharpEnemy | Master | ??? -2023-06-08 23:31:58.653926 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | hw -2023-06-08 23:32:05.550449 + : pb-IF4zU2MgJw== | SharpEnemy | Master | kon ruko be baat karoo game kon khel rha ** -2023-06-08 23:32:12.127665 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | usne hi kaha taa -2023-06-08 23:32:31.178100 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | ky bolke -2023-06-08 23:32:50.156808 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | bataunga wp pe abhi game khel -2023-06-08 23:33:09.913925 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | master -2023-06-08 23:33:18.214544 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | avi wt f -2023-06-08 23:33:34.127062 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | tu vohi avi h na khushi wala?? -2023-06-08 23:34:04.333674 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | no bro -2023-06-08 23:34:52.356976 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | lagg -2023-06-08 23:35:29.447047 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | gang kaha gya -2023-06-08 23:35:35.936423 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | kya pata -2023-06-08 23:35:42.127087 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | avi ko kick mil gaya -2023-06-08 23:36:45.701971 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | lol -2023-06-08 23:37:39.086577 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | agya abhi -2023-06-08 23:38:26.857520 + : pb-IF4zU2MgJw== | SharpEnemy | Master | hii shreya -2023-06-08 23:38:35.579443 + : pb-IF4zU2MgJw== | SharpEnemy | Master | hii ***** sahil -2023-06-08 23:38:45.856561 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | waah 🤣🤣 -2023-06-08 23:38:57.766473 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | firse kick -2023-06-08 23:39:00.517082 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | 😂🤣 -2023-06-08 23:39:03.532775 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | haha -2023-06-08 23:39:07.893448 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | his abusing so -2023-06-08 23:39:13.133343 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | 😂🤣🤣 -2023-06-08 23:39:28.086562 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | Abe 🤣🤣 -2023-06-08 23:39:29.412156 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | ruk -2023-06-08 23:39:36.066264 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | 2 mins -2023-06-08 23:40:12.394752 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | kya huaa -2023-06-08 23:41:06.011617 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | net ☠️☠️ -2023-06-08 23:41:33.781652 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | delete kr de game phir se😂 -2023-06-08 23:41:34.691804 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | Abe yrr net ni chL dha -2023-06-08 23:41:49.358267 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | kyu -2023-06-08 23:41:59.281827 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | baarish Hui h hamare yaha soo -2023-06-08 23:42:00.631636 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | ky huva ab phir se -2023-06-08 23:42:05.282116 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | oohh -2023-06-08 23:42:22.721797 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | where is isha -2023-06-08 23:42:58.295582 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | avi who are you?? first tell us -2023-06-08 23:43:20.466188 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | ckd -2023-06-08 23:43:24.473022 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | hai voh -2023-06-08 23:43:32.115508 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | ☠️ ye ckd bisi humko pagal bana rha h -2023-06-08 23:44:07.851509 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | abe gn.du tu phle se pgl hai -2023-06-08 23:44:19.351161 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | Tyson bad words matt de -2023-06-08 23:44:24.541060 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | kick hojayega -2023-06-08 23:44:26.269441 + : pb-IF4zU2MgJw== | SharpEnemy | Tyson | haa -2023-06-08 23:44:27.991086 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | phir se -2023-06-08 23:44:30.769017 + : pb-IF4zU2MgJw== | SharpEnemy | Tyson | hoo gya -2023-06-08 23:44:51.432535 + : pb-IF4zU2MgJw== | SharpEnemy | Tyson | aur bata shreya ki haal chaal -2023-06-08 23:45:28.780946 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | bs badiya tu bata kaisa hai -2023-06-08 23:45:44.102537 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | 🥱 -2023-06-08 23:47:09.145639 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | waah bisi Tyson☠️ -2023-06-08 23:48:23.680850 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | Tyson betray karra -2023-06-08 23:48:32.336554 + : pb-IF4zU2MgJw== | SharpEnemy | Tyson | nhi -2023-06-08 23:48:39.148842 + : pb-IF4zU2MgJw== | SharpEnemy | Tyson | kab kia -2023-06-08 23:48:46.398555 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | mereko -2023-06-08 23:49:29.812314 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | am damn sure avi is🦧 -2023-06-08 23:49:40.165574 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | haa mereko b lag rha -2023-06-08 23:49:59.466515 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | his playing skills -2023-06-08 23:50:06.125739 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | yuss 🤣☠️ -2023-06-08 23:50:16.951553 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | 😒 -2023-06-08 23:50:20.305865 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | 😍kitne achhe se jante hum -2023-06-08 23:50:35.816877 + : pb-IF4zU2MgJw== | SharpEnemy | Tyson | kon? -2023-06-08 23:50:38.815564 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | dekh abh kuch aur bNke ayeg ☠️🤣🤣🤣 -2023-06-08 23:50:39.464346 + : pb-IF4zU2MgJw== | SharpEnemy | Tyson | bisi -2023-06-08 23:51:01.461535 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | 😂 -2023-06-08 23:51:03.465504 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | waah shreya ☠️🤣🤣 -2023-06-08 23:51:29.909712 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | -2023-06-08 23:51:38.542055 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | ideal beech mai kyu aaya -2023-06-08 23:52:13.619689 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | -2023-06-08 23:52:19.865683 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | avi ko maaro -2023-06-08 23:52:20.551610 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | abe -2023-06-08 23:52:28.745506 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | 🤣🤣🤣 -2023-06-08 23:52:29.389559 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | lagg -2023-06-08 23:52:37.491607 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | ek ek ao -2023-06-08 23:52:54.814031 + : pb-IF4zU2MgJw== | SharpEnemy | Tyson | aaja -2023-06-08 23:53:03.705873 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | avi tereko Isha ke baare mei kaise pata ?? -2023-06-08 23:53:07.973485 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | 🐒🐒 -2023-06-08 23:53:08.493786 + : pb-IF4zU2MgJw== | SharpEnemy | Tyson | -2023-06-08 23:53:08.682953 + : pb-IF4zU2MgJw== | SharpEnemy | Tyson | -2023-06-08 23:53:08.857433 + : pb-IF4zU2MgJw== | SharpEnemy | Tyson | -2023-06-08 23:53:09.023787 + : pb-IF4zU2MgJw== | SharpEnemy | Tyson | -2023-06-08 23:53:09.141086 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | avi ke paas marne keliye gyi thi😂lol -2023-06-08 23:53:18.621884 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | 🙂 -2023-06-08 23:53:42.585729 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | waah shreya🐷☠️ -2023-06-08 23:53:47.898171 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | ex jo thi -2023-06-08 23:53:49.931553 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | mujhe pta h -2023-06-08 23:53:55.682859 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | wahh ** -2023-06-08 23:53:56.991573 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | 😮‍💨 -2023-06-08 23:54:06.355505 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | pakka ye ckd h saala☠️🤣🤣 -2023-06-08 23:54:11.215627 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | pata lag gya le ckd -2023-06-08 23:54:14.855618 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | gaamdu -2023-06-08 23:54:20.868465 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | 😂😂😂 -2023-06-08 23:54:25.601630 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | mujhe lga tm log ke sath wo v aai hai? -2023-06-08 23:54:47.995586 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | shreya lol🤣🤣🤣 -2023-06-08 23:55:15.689566 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | abe ideal -2023-06-08 23:55:37.491455 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | noobs🤣 -2023-06-08 23:55:54.647389 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | tu kar ja -2023-06-08 23:55:58.463610 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | kya bola avi? noobs?? -2023-06-08 23:56:19.439565 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | nhi pro bola -2023-06-08 23:56:54.013238 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | lag -2023-06-08 23:57:44.291601 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | shreya tu top 5 me -2023-06-08 23:57:52.201069 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | hoo? -2023-06-08 23:57:59.514927 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | deki ni -2023-06-08 23:58:27.065866 + : pb-IF4vVRUFVA== | Ghost0001 | ÂVỊ | are le jao re flag -2023-06-08 23:58:40.495886 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | lol shreya🤣🤣 -2023-06-08 23:58:56.643295 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | -2023-06-08 23:58:56.795547 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | -2023-06-08 23:58:57.022648 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | -2023-06-08 23:59:00.894318 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | hahahha -2023-06-08 23:59:28.353761 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | -2023-06-08 23:59:34.847236 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | Tyson kaha jake aara -2023-06-08 23:59:42.277498 + : pb-IF4zU2MgJw== | SharpEnemy | Master | bahot bekar kardia bcs -2023-06-08 23:59:43.826557 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | ladki ka chakkar lagra meko -2023-06-08 23:59:48.280189 + : pb-IF4zU2MgJw== | SharpEnemy | Master | har baar bahar -2023-06-08 23:59:52.425546 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | 🤣🤣 -2023-06-08 23:59:58.919051 + : pb-IF4zU2MgJw== | SharpEnemy | Master | kiska? -2023-06-09 00:00:06.398002 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | Tyson ka -2023-06-09 00:00:20.831369 + : pb-IF4zU2MgJw== | SharpEnemy | Master | kya kia usne -2023-06-09 00:00:37.165823 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | arre akaza broo -2023-06-09 00:00:40.005934 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | kaise hoo -2023-06-09 00:00:46.078923 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | hello -2023-06-09 00:00:50.965465 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | badia tum kesa ho -2023-06-09 00:00:51.990722 + : pb-IF4zU2MgJw== | SharpEnemy | Master | sahil ke sab log dost hai -2023-06-09 00:00:54.625666 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | Tyson psdk khel b le -2023-06-09 00:01:00.020722 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | op tu toh sabko janta hai yaha -2023-06-09 00:01:05.113608 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | mereko pehchane akaza bro ;) -2023-06-09 00:01:10.634870 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | yes -2023-06-09 00:01:14.361731 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | yuss shreya -2023-06-09 00:01:33.660565 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | fekh de shreya 🤣🤣 -2023-06-09 00:01:48.662400 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | akaz ke bomb ke vajah se -2023-06-09 00:01:51.073590 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | waah shreya bolne se pehle fekh di☠️🤣 -2023-06-09 00:01:54.265595 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | 🤣 -2023-06-09 00:04:54.745700 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | ckd saale bus kr🤣 -2023-06-09 00:05:01.903579 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | 🦧😂🤣 -2023-06-09 00:05:08.612955 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | miss karra karne de -2023-06-09 00:05:17.958232 + : pb-IF4zU2MgJw== | SharpEnemy | Master | Isha baby -2023-06-09 00:05:18.215704 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | haa🤣🤣 -2023-06-09 00:05:27.015525 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | dekh avi chala gya abh 🤣🤣 -2023-06-09 00:06:15.807204 + : pb-IF4vVRUFVA== | Ghost0001 | isha 🌸 | 🙄 -2023-06-09 00:06:19.556691 + : pb-IF4vVRUFVA== | Ghost0001 | isha 🌸 | hi -2023-06-09 00:06:19.718715 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | vahi nna -2023-06-09 00:06:28.285531 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | saale Isha ki acting mat kr 🤣🤣 -2023-06-09 00:06:43.274753 + : pb-IF4vVRUFVA== | Ghost0001 | isha 🌸 | kya bol rhe ho -2023-06-09 00:06:54.741636 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | ckd ho na aap🤣! -2023-06-09 00:07:16.376282 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | /list -2023-06-09 00:07:16.376728 + : Host msg: | Name Client ID Player ID -2023-06-09 00:07:16.376756 + : Host msg: | ______________________________ -2023-06-09 00:07:16.376768 + : Host msg: | ShReYa 119 0 -2023-06-09 00:07:16.376778 + : Host msg: | Sahil Op 130 1 -2023-06-09 00:07:16.376787 + : Host msg: | IdealPacka 136 2 -2023-06-09 00:07:16.376796 + : Host msg: | Master 145 3 -2023-06-09 00:07:16.376808 + : Host msg: | Akaza.❄ 146 4 -2023-06-09 00:07:16.376821 + : Host msg: | isha 🌸 148 5 -2023-06-09 00:07:16.376831 + : Host msg: | TRON 149 6 -2023-06-09 00:07:16.377022 + : Host msg: | -2023-06-09 00:07:16.690718 + : pb-IF4vVRUFVA== | Ghost0001 | isha 🌸 | plz uska naam mt lo -2023-06-09 00:07:21.401728 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | /gp 5 -2023-06-09 00:07:21.401895 + : Host msg: | 1)- ÂVỊ -2023-06-09 00:07:21.401920 + : Host msg: | 2)- SIDDHI. -2023-06-09 00:07:21.401938 + : Host msg: | 3)- __account__ -2023-06-09 00:07:21.401955 + : Host msg: | 4)- Àvï -2023-06-09 00:07:21.401975 + : Host msg: | 5)- isha 🌸 -2023-06-09 00:07:25.515393 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | akaz Bhai control thoda -2023-06-09 00:07:25.854067 + : pb-IF4zU2MgJw== | SharpEnemy | Master | ckd -2023-06-09 00:07:33.305608 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | Isha agar aap ho toh snap pe msg kro mereko abhi ke abhi -2023-06-09 00:07:34.072286 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | /gp 0 -2023-06-09 00:07:34.072446 + : Host msg: | 1)- shreyau👁️‍🗨️ -2023-06-09 00:07:34.072483 + : Host msg: | 2)- theudagatti💠 -2023-06-09 00:07:34.072502 + : Host msg: | 3)- __account__ -2023-06-09 00:07:34.072518 + : Host msg: | 4)- ShReYa -2023-06-09 00:07:34.072535 + : Host msg: | 5)- Dikshh🌼 -2023-06-09 00:07:46.403630 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | login Krke karo download nhU h toh download Krke karo -2023-06-09 00:08:13.663181 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | Tyson wt a jump -2023-06-09 00:08:14.765516 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | kro Isha snap pe msg -2023-06-09 00:08:17.772934 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | 🤣 -2023-06-09 00:08:23.225894 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | ☠️ -2023-06-09 00:08:36.706650 + : pb-IF4vVRUFVA== | Ghost0001 | isha 🌸 | mai snap nhi use krti gnde ladke -2023-06-09 00:08:37.619118 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | wow -2023-06-09 00:08:47.416228 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | Abe ckd ☠️🤣🤣🤣 -2023-06-09 00:08:48.804004 + : pb-IF4zU2MgJw== | SharpEnemy | Master | Isha uttrakhand -2023-06-09 00:08:50.748376 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | gnde ladke 🤣🤣🤣 -2023-06-09 00:08:59.450885 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | hahahaha ishaa 🤣 tuhi ckd h -2023-06-09 00:09:14.621294 + : pb-JiNJARFZVEJCXVtDF09RU1NBGUVYQVBG | TRON | TRON | kuv u shreya -2023-06-09 00:09:24.514673 + : pb-IF4vVRUFVA== | Ghost0001 | isha 🌸 | mere ko nind aa rha -2023-06-09 00:09:29.637187 + : pb-IF4vVRUFVA== | Ghost0001 | isha 🌸 | rhi* -2023-06-09 00:09:33.867451 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | tron? -2023-06-09 00:09:38.654605 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | 🤣🤣 abh kya banke ayega cld? -2023-06-09 00:09:42.535723 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | ckd? -2023-06-09 00:09:47.432252 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | matt ja Isha ckd ke badle khele -2023-06-09 00:09:49.346751 + : pb-IF4vVRUFVA== | Ghost0001 | isha 🌸 | bye -2023-06-09 00:10:04.578508 + : pb-IF4zU2MgJw== | SharpEnemy | Master | Isha aap ladka hoo naa -2023-06-09 00:10:11.025895 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | kala🤣banke aayega -2023-06-09 00:10:18.883775 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | haa shyd 🤣🤣🤣 -2023-06-09 00:10:50.336488 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | isha toh itna badiya ni khelti thi -2023-06-09 00:10:56.391334 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | haina op -2023-06-09 00:11:00.875844 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | haa -2023-06-09 00:11:22.299103 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | -2023-06-09 00:11:30.326945 + : pb-IF4vVRUFVA== | Ghost0001 | isha 🌸 | yr khelte khelte game thoda improve to ho hi jaata h -2023-06-09 00:11:39.665582 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | ckd 🤣🤣 bopdike -2023-06-09 00:11:47.708737 + : pb-JiNJARFZVEJCXVtDF09RU1NBGUVYQVBG | TRON | TRON | Shreya luv u -2023-06-09 00:11:52.198576 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | tu toh gayab huvi thi achanak se tapak padi -2023-06-09 00:11:59.686759 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | tron teri gend maaru mai?? -2023-06-09 00:12:06.583867 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | 😂 -2023-06-09 00:12:08.552743 + : pb-IF4vVRUFVA== | Ghost0001 | isha 🌸 | op mai tera bna dungk topi -2023-06-09 00:12:14.879728 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | sahil gali mat de -2023-06-09 00:12:19.067436 + : pb-IF4vVRUFVA== | Ghost0001 | isha 🌸 | plz ckd ka naam nhi lo -2023-06-09 00:12:19.213952 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | warning -2023-06-09 00:12:31.965600 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | akaza bhai sorry but tron ko dekho koi b ladki se simp kr rha -2023-06-09 00:12:43.931687 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | simp nahi directly I luv u bol rha -2023-06-09 00:12:47.972701 + : pb-JiNJARFZVEJCXVtDF09RU1NBGUVYQVBG | TRON | TRON | isha love me bby -2023-06-09 00:12:55.127300 + : pb-IF4zU2MgJw== | SharpEnemy | Master | nhi degi -2023-06-09 00:12:58.253602 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | dekho tron ko -2023-06-09 00:13:02.798105 + : Host msg: | isha 🌸 started a kick vote for TRON -2023-06-09 00:13:04.875478 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | 🤣🤣 lol abhi -2023-06-09 00:13:14.914471 + : Host msg: | Kicked "TRON" -2023-06-09 00:13:25.230926 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | fine now -2023-06-09 00:14:06.443058 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | isha chali gyi -2023-06-09 00:14:25.845563 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | abh ckd kuch aur bNke ayega ☠️🤣 -2023-06-09 00:15:00.607757 + : pb-IF4zU2MgJw== | SharpEnemy | Master | Isha noob -2023-06-09 00:15:02.272639 + : Host msg: | BCS new server arrived -2023-06-09 00:15:02.273507 + : Host msg: | '3 Team walla server' -2023-06-09 00:15:02.273704 + : Host msg: | must try, and give us your feedbacks -2023-06-09 00:15:30.105682 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | lol shreya 🤪 -2023-06-09 00:15:33.990949 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | akaz smart -2023-06-09 00:15:51.745500 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | akaza is proo -2023-06-09 00:16:04.605741 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | ckd beta Shruti banke aya h🤪🤣🤣🤣 -2023-06-09 00:17:10.572829 + : pb-IF4zU2MgJw== | SharpEnemy | Master | yeh konsi Shruti hai -2023-06-09 00:17:17.268990 + : pb-IF4zU2MgJw== | SharpEnemy | Master | Shruti malviyaa -2023-06-09 00:17:18.335854 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | ckd hai ye 🤣🤣 -2023-06-09 00:17:44.487150 + : pb-IF4vVRUFVA== | Ghost0001 | SHRUTI | last waring Op sahil -2023-06-09 00:17:56.705541 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | maine kya kra ?? -2023-06-09 00:18:07.492919 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | ;0 -2023-06-09 00:18:10.495304 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | op😂🤣 -2023-06-09 00:18:16.866710 + : pb-IF4vVRUFVA== | Ghost0001 | SHRUTI | tu kuch kr hi to nhi rha -2023-06-09 00:18:20.967219 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | Shruti se mar khayega ab -2023-06-09 00:18:22.895849 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | /list -2023-06-09 00:18:22.896012 + : Host msg: | Name Client ID Player ID -2023-06-09 00:18:22.896053 + : Host msg: | ______________________________ -2023-06-09 00:18:22.896087 + : Host msg: | ShReYa 119 0 -2023-06-09 00:18:22.896511 + : Host msg: | Sahil Op 130 1 -2023-06-09 00:18:22.896526 + : Host msg: | IdealPacka 136 2 -2023-06-09 00:18:22.896536 + : Host msg: | Master 145 3 -2023-06-09 00:18:22.896865 + : Host msg: | Akaza.❄ 146 4 -2023-06-09 00:18:22.897020 + : Host msg: | Chunk 154 5 -2023-06-09 00:18:22.897032 + : Host msg: | SHRUTI 156 6 -2023-06-09 00:18:22.897044 + : Host msg: | -2023-06-09 00:18:29.639009 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | /gp 6 -2023-06-09 00:18:29.639168 + : Host msg: | 1)- Àvï -2023-06-09 00:18:29.639223 + : Host msg: | 2)- ÂVỊ -2023-06-09 00:18:29.639424 + : Host msg: | 3)- SIDDHI. -2023-06-09 00:18:29.639487 + : Host msg: | 4)- SHRUTI -2023-06-09 00:18:29.639595 + : Host msg: | 5)- __account__ -2023-06-09 00:18:34.718980 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | avi -2023-06-09 00:19:12.529244 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | hw -2023-06-09 00:19:21.051760 + : pb-IF4zU2MgJw== | SharpEnemy | Master | lol -2023-06-09 00:19:27.724973 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | master fault -2023-06-09 00:19:46.175412 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | -2023-06-09 00:19:46.325560 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | -2023-06-09 00:20:08.781100 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | -2023-06-09 00:21:09.803581 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | -2023-06-09 00:21:20.955624 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | shreya hamare aane se raunak aagyi 🤣🤣🤪 -2023-06-09 00:21:29.287146 + : pb-IF4qUxBfAw== | Android61525964 | editor | bhai mai to ban tha iss server me -2023-06-09 00:21:43.661542 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | hum Ms n miss Roshan jo hai 🤣 -2023-06-09 00:21:57.212375 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | *mr -2023-06-09 00:22:04.565761 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | hahahhaha 🤣🤣 -2023-06-09 00:22:29.425728 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | shreya last series fir sone jaunga -2023-06-09 00:22:33.962271 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | yeahh -2023-06-09 00:22:38.715527 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | solo? -2023-06-09 00:22:39.215580 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | haa :) -2023-06-09 00:22:46.245536 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | kya solo?? -2023-06-09 00:24:10.313639 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | solo aane de -2023-06-09 00:24:45.035482 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | arre -2023-06-09 00:24:53.333674 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | vo aayegi hi nahi nikal di h zhyd -2023-06-09 00:24:55.455561 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | shyd -2023-06-09 00:25:39.133120 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | -2023-06-09 00:25:39.290885 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | -2023-06-09 00:26:49.026194 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | Abe 🤣🤣 -2023-06-09 00:26:49.099523 + : pb-IF4qUxBfAw== | Android61525964 | editor | bye editor -2023-06-09 00:26:57.531605 + : pb-IF4qUxBfAw== | Android61525964 | editor | take care -2023-06-09 00:27:04.536363 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | yee -2023-06-09 00:27:13.848559 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | le agya -2023-06-09 00:27:31.234178 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | yeahh thank god -2023-06-09 00:28:10.242855 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | -2023-06-09 00:28:41.140340 + : pb-IF4zU2MgJw== | SharpEnemy | Master | motu -2023-06-09 00:28:47.677845 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | 🤣 -2023-06-09 00:28:48.278877 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | noobs fight -2023-06-09 00:29:06.556424 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | wah waah -2023-06-09 00:29:10.910955 + : pb-IF4zU2MgJw== | SharpEnemy | Master | kachaa limbu fight -2023-06-09 00:29:14.857694 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | bhagam bhag -2023-06-09 00:29:16.070899 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | karma -2023-06-09 00:29:19.301911 + : pb-IF4qUxBfAw== | Android61525964 | editor | haha -2023-06-09 00:29:23.805544 + : pb-IF4gU0Y7AQ== | Independ55 | Sahil Op | Bhaii🤣🤣🤣 -2023-06-09 00:29:32.690022 + : pb-IF4qUxBfAw== | Android61525964 | editor | motu ptla ho gya -2023-06-09 00:30:43.645527 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | 🦧🔥 -2023-06-09 00:30:50.121813 + : pb-IF4qUxBfAw== | Android61525964 | editor | luck -2023-06-09 00:31:10.445569 + : pb-IF4gU0Y7AQ== | Independ55 | | Tata shreya bbie gudd jytt -2023-06-09 00:31:13.343563 + : pb-IF4gU0Y7AQ== | Independ55 | | Nytt -2023-06-09 00:31:19.619538 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | op? -2023-06-09 00:31:47.273573 + : pb-IF4zU2MgJw== | SharpEnemy | Master | kaha gay -2023-06-09 00:31:51.892142 + : pb-IF4zU2MgJw== | SharpEnemy | Master | gaya -2023-06-09 00:31:53.555212 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | /end -2023-06-09 00:32:00.827301 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | chalo chale -2023-06-09 00:32:06.958213 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | good night guy's -2023-06-09 00:32:13.386492 + : pb-IF5UU3YxEA== | Miraculo17 | ShReYa | Good night abhi -2023-06-09 00:32:13.519620 + : pb-IF4zU2MgJw== | SharpEnemy | Master | chal -2023-06-09 00:32:21.827779 + : pb-IF4zU2MgJw== | SharpEnemy | Master | good ningt -2023-06-09 01:20:02.275630 + : Host msg: | BCS new server arrived -2023-06-09 01:20:02.275865 + : Host msg: | '3 Team walla server' -2023-06-09 01:20:02.276290 + : Host msg: | must try, and give us your feedbacks -2023-06-09 02:25:02.279486 + : Host msg: | BCS new server arrived -2023-06-09 02:25:02.279711 + : Host msg: | '3 Team walla server' -2023-06-09 02:25:02.279727 + : Host msg: | must try, and give us your feedbacks -2023-06-09 03:30:02.285593 + : Host msg: | BCS new server arrived -2023-06-09 03:30:02.285787 + : Host msg: | '3 Team walla server' -2023-06-09 03:30:02.285803 + : Host msg: | must try, and give us your feedbacks -2023-06-09 04:35:02.288794 + : Host msg: | BCS new server arrived -2023-06-09 04:35:02.289001 + : Host msg: | '3 Team walla server' -2023-06-09 04:35:02.289025 + : Host msg: | must try, and give us your feedbacks -2023-06-09 05:09:56.029227 + : Host msg: | Server will restart on next opportunity. (series end) -2023-06-09 06:10:13.451897 + : Host msg: | BCS new server arrived -2023-06-09 06:10:13.451936 + : Host msg: | '3 Team walla server' -2023-06-09 06:10:13.451975 + : Host msg: | must try, and give us your feedbacks -2023-06-09 07:15:05.457862 + : Host msg: | BCS new server arrived -2023-06-09 07:15:05.458054 + : Host msg: | '3 Team walla server' -2023-06-09 07:15:05.458069 + : Host msg: | must try, and give us your feedbacks -2023-06-09 08:20:05.456844 + : Host msg: | BCS new server arrived -2023-06-09 08:20:05.456899 + : Host msg: | '3 Team walla server' -2023-06-09 08:20:05.456919 + : Host msg: | must try, and give us your feedbacks -2023-06-09 09:25:05.457647 + : Host msg: | BCS new server arrived -2023-06-09 09:25:05.457685 + : Host msg: | '3 Team walla server' -2023-06-09 09:25:05.457986 + : Host msg: | must try, and give us your feedbacks -2023-06-09 10:20:23.092201 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | bhai ranks shurffel ho gyi kya -2023-06-09 10:20:56.781426 + : pb-IF4OUBAqNQ== | Intracel63 | infernous | .haa -2023-06-09 10:21:13.973766 + : pb-IF4OUBAqNQ== | Intracel63 | infernous | haa -2023-06-09 10:21:17.623851 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | ok -2023-06-09 10:22:16.307208 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | ,bye -2023-06-09 10:22:21.708599 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | ,bye -2023-06-09 10:22:42.236549 + : pb-IF4OUBAqNQ== | Intracel63 | infernous | tum to -2023-06-09 10:22:52.925064 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | #2 pr tha -2023-06-09 10:23:06.782275 + : pb-IF4OUBAqNQ== | Intracel63 | infernous | rank ke hona -2023-06-09 10:23:15.116456 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | chal bye -2023-06-09 10:23:22.096466 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | bye -2023-06-09 10:23:27.649476 + : pb-IF4OUBAqNQ== | Intracel63 | infernous | ok -2023-06-09 10:30:05.456713 + : Host msg: | BCS new server arrived -2023-06-09 10:30:05.456774 + : Host msg: | '3 Team walla server' -2023-06-09 10:30:05.456791 + : Host msg: | must try, and give us your feedbacks -2023-06-09 10:35:26.088425 + : pb-IF4OPhMg | Nakumrahul | DEDDY | 🤣🤣 -2023-06-09 10:37:03.892807 + : pb-IF4OUBAqNQ== | Intracel63 | | tum red me jao -2023-06-09 10:37:33.278195 + : pb-IF4OPhMg | Nakumrahul | DEDDY | muje red me nai khelna aata -2023-06-09 11:35:05.463233 + : Host msg: | BCS new server arrived -2023-06-09 11:35:05.463565 + : Host msg: | '3 Team walla server' -2023-06-09 11:35:05.463725 + : Host msg: | must try, and give us your feedbacks -2023-06-09 12:15:40.660023 + : Host msg: | BCS new server arrived -2023-06-09 12:15:40.660113 + : Host msg: | '3 Team walla server' -2023-06-09 12:15:40.660300 + : Host msg: | must try, and give us your feedbacks -2023-06-09 12:45:47.484961 + : pb-IF4jF1NY | Hoemie | Hoemlander | gg -2023-06-09 12:46:19.745686 + : pb-IF4CKhYn | vishiihsiv | Dude | yo homiee -2023-06-09 12:46:38.005064 + : pb-IF4jF1NY | Hoemie | Hoemlander | yo -2023-06-09 12:46:39.886755 + : pb-IF4NVxAZDg== | TherockJK1 | Am Bot🙂 | hey homey -2023-06-09 12:46:44.210265 + : pb-IF4jF1NY | Hoemie | Hoemlander | hello -2023-06-09 12:47:16.658744 + : pb-IF4NVxAZDg== | TherockJK1 | Am Bot🙂 | Ricuuuu -2023-06-09 12:47:22.670667 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | How's surprise -2023-06-09 12:47:28.333916 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | 🐟🐟🐟 hieelo -2023-06-09 12:47:37.020237 + : pb-IF4jF1NY | Hoemie | Hoemlander | -2023-06-09 12:47:42.564479 + : pb-IF4NVxAZDg== | TherockJK1 | Am Bot🙂 | 😋 -2023-06-09 12:47:57.328366 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Hello Homie -2023-06-09 12:48:06.210392 + : pb-IF4jF1NY | Hoemie | Hoemlander | hello -2023-06-09 12:48:21.665709 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | It's my main Character Home -2023-06-09 12:48:33.385604 + : pb-IF4jF1NY | Hoemie | Hoemlander | whose? -2023-06-09 12:48:37.300148 + : pb-IF4jF1NY | Hoemie | Hoemlander | what character -2023-06-09 12:48:54.461401 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | the one who calls u Homie -2023-06-09 12:49:23.898208 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Do you know Chandoolka? -2023-06-09 12:49:29.705060 + : pb-IF4jF1NY | Hoemie | Hoemlander | haaa -2023-06-09 12:49:37.980797 + : pb-IF4jF1NY | Hoemie | Hoemlander | tum ho? -2023-06-09 12:49:44.915941 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Yes, that's me. -2023-06-09 12:51:18.680362 + : pb-IF4jF1NY | Hoemie | Hoemlander | rank reset hua -2023-06-09 12:51:28.050951 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | dk -2023-06-09 12:51:47.380038 + : pb-IF4jF1NY | Hoemie | Hoemlander | -2023-06-09 12:52:02.354988 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Jay, today here? -2023-06-09 12:52:05.075286 + : pb-IF4jF1NY | Hoemie | Hoemlander | koi private server ka details hai? -2023-06-09 12:52:15.345132 + : pb-IF4jF1NY | Hoemie | Hoemlander | where do you all play? -2023-06-09 12:52:17.260375 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Perhaps Jay having -2023-06-09 12:52:36.807293 + : pb-IF4NVxAZDg== | TherockJK1 | Am Bot🙂 | Sahilp Teams -2023-06-09 12:53:09.875083 + : pb-IF4jF1NY | Hoemie | Hoemlander | I'm banned there -2023-06-09 12:53:15.971552 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Oh why? -2023-06-09 12:53:33.475059 + : pb-IF4jF1NY | Hoemie | Hoemlander | I don't even know -2023-06-09 12:53:43.763833 + : pb-IF4NVxAZDg== | TherockJK1 | Am Bot🙂 | who did? -2023-06-09 12:53:47.342007 + : pb-IF4NVxAZDg== | TherockJK1 | Am Bot🙂 | nyaa? -2023-06-09 12:54:13.570526 + : pb-IF4jF1NY | Hoemie | Hoemlander | I have no idea honestly why or who -2023-06-09 12:54:19.930746 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Jay, has Prasad unbanned yet? -2023-06-09 12:54:38.219054 + : pb-IF4NVxAZDg== | TherockJK1 | Am Bot🙂 | What do u think?😆 -2023-06-09 12:54:51.882269 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | I think he is immortal -2023-06-09 12:57:04.538174 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | c ya -2023-06-09 13:04:35.598642 + : pb-IF4NVxAZDg== | TherockJK1 | Am Bot🙂 | xd -2023-06-09 13:18:12.421909 + : pb-IF4wVVk8Jg== | Homulilly | Homulilly | 😠 -2023-06-09 13:19:47.177420 + : Host msg: | lodhipro17 started a kick vote for Homulilly -2023-06-09 13:20:32.664710 + : Host msg: | BCS new server arrived -2023-06-09 13:20:32.664763 + : Host msg: | '3 Team walla server' -2023-06-09 13:20:32.664786 + : Host msg: | must try, and give us your feedbacks -2023-06-09 13:24:57.716306 + : Host msg: | lodhipro17 started a kick vote for SmoothyBro -2023-06-09 13:25:58.425747 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | SmoothyBro | SmoothyBro | kick lodhipro17 -2023-06-09 13:27:56.246580 + : pb-IF4wUlIYCg== | zM116FDdu | Jony | , -2023-06-09 13:28:57.425832 + : pb-IF4wUlIYCg== | zM116FDdu | Jony | who -2023-06-09 13:39:20.091947 + : pb-IF4MU08lCQ== | lodhipro17 | lodhipro17 | -2023-06-09 14:05:55.165229 + : pb-IF4jF1NY | Hoemie | Hoemlander | bhalu go in red -2023-06-09 14:05:59.419572 + : pb-IF4sCXI9 | IndigoOnio | 𝘽𝙝𝙖𝙡𝙪 | why -2023-06-09 14:06:04.524532 + : pb-IF4sCXI9 | IndigoOnio | 𝘽𝙝𝙖𝙡𝙪 | they r 2 -2023-06-09 14:06:06.185385 + : pb-IF4jF1NY | Hoemie | Hoemlander | John hai na tu? -2023-06-09 14:06:16.599603 + : pb-IF4sCXI9 | IndigoOnio | 𝘽𝙝𝙖𝙡𝙪 | n -2023-06-09 14:06:51.974850 + : pb-IF4sCXI9 | IndigoOnio | 𝘽𝙝𝙖𝙡𝙪 | why u leave -2023-06-09 14:06:55.339504 + : pb-IF4sCXI9 | IndigoOnio | 𝘽𝙝𝙖𝙡𝙪 | u both -2023-06-09 14:10:44.485085 + : pb-IF4jF1NY | Hoemie | Hoemlander | sparky go in red -2023-06-09 14:14:22.870123 + : pb-IF4jF1NY | Hoemie | Hoemlander | good -2023-06-09 14:18:29.794951 + : pb-IF4jF1NY | Hoemie | Hoemlander | noob -2023-06-09 14:22:55.845279 + : pb-IF4jF1NY | Hoemie | Hoemlander | go in blue -2023-06-09 14:24:05.190183 + : pb-IF4jF1NY | Hoemie | Hoemlander | bhai go in blue -2023-06-09 14:25:32.649786 + : Host msg: | BCS new server arrived -2023-06-09 14:25:32.649850 + : Host msg: | '3 Team walla server' -2023-06-09 14:25:32.650514 + : Host msg: | must try, and give us your feedbacks -2023-06-09 14:28:51.834160 + : pb-IF4NVxAZDg== | TherockJK1 | Am Bot🙂 | go blue -2023-06-09 14:45:50.240914 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | -2023-06-09 14:48:52.530508 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | -2023-06-09 14:48:52.710825 + : pb-IF5WU0gIUQ== | LegendaryD | ༆ɪƬs ᴍᴇ༆ | -2023-06-09 15:02:13.779456 + : pb-IF4LUGYKPw== | BrinyLunat | "NINJA" | hi guys -2023-06-09 15:30:32.630022 + : Host msg: | BCS new server arrived -2023-06-09 15:30:32.630065 + : Host msg: | '3 Team walla server' -2023-06-09 15:30:32.630083 + : Host msg: | must try, and give us your feedbacks -2023-06-09 16:26:48.209743 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | gg -2023-06-09 16:30:55.039927 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | haha -2023-06-09 16:31:45.168329 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | haha -2023-06-09 16:31:50.224728 + : pb-IF4SUxkOXQ== | GamingTrea | GamingTrea | -2023-06-09 16:31:50.413316 + : pb-IF4SUxkOXQ== | GamingTrea | GamingTrea | -2023-06-09 16:31:50.584593 + : pb-IF4SUxkOXQ== | GamingTrea | GamingTrea | -2023-06-09 16:31:50.790978 + : pb-IF4SUxkOXQ== | GamingTrea | GamingTrea | -2023-06-09 16:32:24.193262 + : pb-IF4SUxkOXQ== | GamingTrea | GamingTrea | srry -2023-06-09 16:32:41.084214 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | no gg -2023-06-09 16:32:43.476282 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | np -2023-06-09 16:33:38.527922 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | haha -2023-06-09 16:35:32.631959 + : Host msg: | BCS new server arrived -2023-06-09 16:35:32.632052 + : Host msg: | '3 Team walla server' -2023-06-09 16:35:32.632810 + : Host msg: | must try, and give us your feedbacks -2023-06-09 16:45:20.661080 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-09 16:45:27.031128 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | sabh ki rank gyi -2023-06-09 16:46:56.394402 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | sry -2023-06-09 16:47:37.966174 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | sry -2023-06-09 16:47:41.713797 + : pb-IF4IUGQlNw== | steelshotz | steelshotz | -2023-06-09 16:47:41.865721 + : pb-IF4IUGQlNw== | steelshotz | steelshotz | -2023-06-09 16:48:37.360425 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-09 16:48:43.093214 + : pb-IF4IUGQlNw== | steelshotz | steelshotz | tha babo to bool -2023-06-09 16:49:19.344189 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | OP guys -2023-06-09 16:50:06.902094 + : pb-IF4IUGQlNw== | steelshotz | steelshotz | no bro -2023-06-09 16:50:39.945172 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-09 16:50:46.584900 + : pb-IF4IUGQlNw== | steelshotz | steelshotz | -2023-06-09 16:50:46.727538 + : pb-IF4IUGQlNw== | steelshotz | steelshotz | -2023-06-09 16:50:50.630957 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | good -2023-06-09 16:50:58.064057 + : pb-IF4IUGQlNw== | steelshotz | steelshotz | gg dude -2023-06-09 16:52:24.762144 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | gg -2023-06-09 16:52:27.591661 + : pb-IF4IUGQlNw== | steelshotz | steelshotz | -2023-06-09 16:52:27.721766 + : pb-IF4IUGQlNw== | steelshotz | steelshotz | -2023-06-09 16:52:39.989699 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | -2023-06-09 16:53:44.932366 + : pb-IF4IUGQlNw== | steelshotz | steelshotz | laggg -2023-06-09 16:53:46.814437 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | ggd -2023-06-09 16:55:55.711101 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-09 16:56:14.210966 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-09 16:57:22.061721 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-09 16:57:22.216049 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-09 16:58:37.012851 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-09 16:59:42.479679 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | gg -2023-06-09 17:00:09.565884 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | time wasye -2023-06-09 17:00:14.941855 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | waste -2023-06-09 17:00:51.737155 + : pb-IF4yVEspVg== | BROWNBEARL | 🔱♡Łəəň♡🔱 | 😭😭😭 -2023-06-09 17:00:53.657369 + : pb-IF4yVEspVg== | BROWNBEARL | 🔱♡Łəəň♡🔱 | Dr boom -2023-06-09 17:01:05.431350 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | wth -2023-06-09 17:01:11.567548 + : pb-IF4yVEspVg== | BROWNBEARL | 🔱♡Łəəň♡🔱 | 🥲🥲🥲 -2023-06-09 17:01:14.356411 + : pb-IF4yVEspVg== | BROWNBEARL | 🔱♡Łəəň♡🔱 | sad lyf -2023-06-09 17:01:14.396858 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | how to mention any one? -2023-06-09 17:02:47.563706 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | this server is worst -2023-06-09 17:02:54.067006 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | Sach me😂 -2023-06-09 17:03:00.857408 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | moi nhi khelta -2023-06-09 17:03:09.298973 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | me too -2023-06-09 17:03:16.921499 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | koi nhi dikhta aab yaha -2023-06-09 17:03:23.507491 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | sab sahil pe khelte hai -2023-06-09 17:03:23.690021 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | sach m -2023-06-09 17:03:44.124727 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | most of ban hi hai -2023-06-09 17:03:56.962807 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | shruti very rud -2023-06-09 17:04:04.226251 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | shruti ne smoothy ka dhandha bnd kr diya😂😂 -2023-06-09 17:04:32.367136 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | server se earn bhi krte h? -2023-06-09 17:04:42.132178 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | haa -2023-06-09 17:04:57.914014 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | oh chalo m jata abh -2023-06-09 17:05:07.641738 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | bye -2023-06-09 17:05:09.406668 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | ok -2023-06-09 17:05:10.031516 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | cya -2023-06-09 17:05:11.998237 + : pb-IF5VU1JZMw== | Android63983659 | Android63983659 | bye -2023-06-09 17:21:04.388199 + : pb-IF5dVWwqKw== | REPNOGAMER | ༺ROCKY༻ | /end -2023-06-09 17:21:07.958648 + : pb-IF5dVWwqKw== | REPNOGAMER | ༺ROCKY༻ | yo -2023-06-09 17:26:30.537121 + : pb-IF5UUGwvJA== | vijaybarol | VIVEK | 🙄 -2023-06-09 17:26:41.997008 + : pb-IF5UUGwvJA== | vijaybarol | VIVEK | ab dekh -2023-06-09 17:26:43.069729 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | dar gya tha -2023-06-09 17:26:45.606109 + : pb-IF4vVUNfEA== | sagar88822 | Jack | 😂😂😂😂 -2023-06-09 17:26:53.994013 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | yo guys -2023-06-09 17:27:21.019849 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | -2023-06-09 17:27:46.019087 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | aaaa -2023-06-09 17:27:58.722856 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | bhai sahil team join krne ke liya kya Krna padta h -2023-06-09 17:29:02.810705 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | btao -2023-06-09 17:29:40.003500 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | batao na -2023-06-09 17:29:59.189823 + : pb-IF5UUGwvJA== | vijaybarol | VIVEK | -2023-06-09 17:29:59.370087 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | bata bhi do -2023-06-09 17:29:59.874590 + : pb-IF5UUGwvJA== | vijaybarol | VIVEK | -2023-06-09 17:30:00.024567 + : pb-IF5UUGwvJA== | vijaybarol | VIVEK | -2023-06-09 17:30:00.193874 + : pb-IF5UUGwvJA== | vijaybarol | VIVEK | -2023-06-09 17:30:56.271612 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | bata bhi do -2023-06-09 17:30:58.505236 + : pb-IF5UUGwvJA== | vijaybarol | VIVEK | -2023-06-09 17:30:58.721186 + : pb-IF5UUGwvJA== | vijaybarol | VIVEK | -2023-06-09 17:32:01.690110 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | wow -2023-06-09 17:32:52.403991 + : Host msg: | Only 1 player per IP allowed, disconnecting this device. -2023-06-09 17:32:53.426861 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | bata rhe ho? -2023-06-09 17:32:57.563537 + : pb-IF4wU1MPEg== | Android64127677 | Tera baap | nhi to m jau -2023-06-09 17:40:32.625564 + : Host msg: | BCS new server arrived -2023-06-09 17:40:32.625627 + : Host msg: | '3 Team walla server' -2023-06-09 17:40:32.625648 + : Host msg: | must try, and give us your feedbacks -2023-06-09 17:49:15.543532 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-09 17:49:15.705302 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-09 17:53:21.357016 + : pb-IF4UVRRfNw== | IdealGourm | ‍ | -2023-06-09 17:53:21.462019 + : pb-IF4UVRRfNw== | IdealGourm | ‍ | -2023-06-09 17:53:21.690030 + : pb-IF4UVRRfNw== | IdealGourm | ‍ | -2023-06-09 17:53:21.761726 + : pb-IF4UVRRfNw== | IdealGourm | ‍ | -2023-06-09 17:54:35.006917 + : pb-IF4VU3laVA== | Android63074779 | lolan✨ | -2023-06-09 17:54:41.491444 + : pb-IF4UVRRfNw== | IdealGourm | ‍ | 1bs1 no bomb -2023-06-09 20:29:22.565990 + : Host msg: | BCS new server arrived -2023-06-09 20:29:22.566026 + : Host msg: | '3 Team walla server' -2023-06-09 20:29:22.566062 + : Host msg: | must try, and give us your feedbacks -2023-06-09 21:34:14.569318 + : Host msg: | BCS new server arrived -2023-06-09 21:34:14.569356 + : Host msg: | '3 Team walla server' -2023-06-09 21:34:14.569371 + : Host msg: | must try, and give us your feedbacks -2023-06-09 22:36:36.276127 + : Host msg: | Name Client ID Player ID -2023-06-09 22:36:36.276154 + : Host msg: | ______________________________ -2023-06-09 22:36:36.276164 + : Host msg: | Magua 138 0 -2023-06-09 22:36:36.276174 + : Host msg: | Wânda 139 1 -2023-06-09 22:36:36.276182 + : Host msg: | -2023-06-09 22:39:14.570464 + : Host msg: | BCS new server arrived -2023-06-09 22:39:14.570503 + : Host msg: | '3 Team walla server' -2023-06-09 22:39:14.570522 + : Host msg: | must try, and give us your feedbacks -2023-06-09 23:17:41.146716 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | Athena hello -2023-06-09 23:18:16.533217 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | hello guys listen -2023-06-09 23:18:21.067303 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | hello 👋 -2023-06-09 23:18:38.147704 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | can u both go in advanced and send here the code? -2023-06-09 23:18:48.979511 + : pb-IF4WU1I7DQ== | Certifie23 | | tell -2023-06-09 23:19:01.064251 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | tell -2023-06-09 23:19:03.924589 + : pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB | Nyaa! :3 | Ginger | mine's used up -2023-06-09 23:19:09.582000 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | what code? -2023-06-09 23:19:41.097073 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | in settings advanced u can create a code when shared u and the person gets money in game money -2023-06-09 23:19:55.114771 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | wait -2023-06-09 23:20:16.546822 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | not in advanced -2023-06-09 23:20:57.355710 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | 41167767 -2023-06-09 23:21:10.803126 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | sry go in gathers and invite frnd there is the code -2023-06-09 23:21:15.916008 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | ok a min -2023-06-09 23:21:52.479043 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | ur new account? -2023-06-09 23:22:04.968353 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | no -2023-06-09 23:22:24.184222 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | ok ig that only works for new -2023-06-09 23:22:36.754798 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | | Athena what happened to bcs teams -2023-06-09 23:22:42.620400 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | ya -2023-06-09 23:22:51.630152 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | very less active -2023-06-09 23:22:58.253845 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | what happened? -2023-06-09 23:23:01.100559 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | | hey Shruthi tell ma -2023-06-09 23:23:12.814775 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | very less active people -2023-06-09 23:23:20.024997 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | I'm asking what happened? -2023-06-09 23:23:26.514808 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | | no one is joining in bcs -2023-06-09 23:23:28.083769 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | this only happened -2023-06-09 23:23:57.539043 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | maybe empty because you can't see anyone playing -2023-06-09 23:24:00.952943 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | they r rejecting -2023-06-09 23:24:11.916740 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | rejecting? -2023-06-09 23:24:29.733373 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | ya i asked many of them they said we won't join -2023-06-09 23:24:39.099245 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | many who? -2023-06-09 23:24:55.214727 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | tera baap come to sahilp -2023-06-09 23:24:58.202404 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | like white , Obito , and many more they play in sahill team -2023-06-09 23:25:02.151059 + : pb-IF5RUBkiKA== | Accredi385 | Accredi385 | ok -2023-06-09 23:25:13.976843 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | Athena come to sahilp -2023-06-09 23:25:22.327245 + : pb-IF5RUBkiKA== | Accredi385 | Accredi385 | can i come -2023-06-09 23:25:28.717477 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | white banned by Smoothy -2023-06-09 23:25:29.352675 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | ya obviasly -2023-06-09 23:25:32.321874 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | everyone come -2023-06-09 23:25:33.392813 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | y? -2023-06-09 23:25:42.229785 + : pb-IF5RUBkiKA== | Accredi385 | Accredi385 | ok come -2023-06-09 23:25:48.756041 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | who is obito i still don't know -2023-06-09 23:25:54.748254 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | huh? -2023-06-09 23:26:00.763995 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | he was abusing him on discord -2023-06-09 23:26:06.724372 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | nameless come to sahilp new maps and new game modes are available now in sahilp -2023-06-09 23:26:07.655330 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | white is a good player I learnt to play from him only -2023-06-09 23:26:14.831947 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | kk -2023-06-09 23:26:15.987041 + : pb-IF5RUBkiKA== | Accredi385 | Accredi385 | ok come -2023-06-09 23:26:25.222565 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | sahill is stealing playérs from here -2023-06-09 23:26:27.474074 + : pb-IF5RUBkiKA== | Accredi385 | | come -2023-06-09 23:26:30.551911 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | let's go to sahlip teams -2023-06-09 23:26:36.371823 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | ok -2023-06-09 23:26:38.863370 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | but you are telling this to wrong -2023-06-09 23:26:38.863616 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | person he was banned by owner -2023-06-09 23:26:44.815320 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | not by me -2023-06-09 23:26:56.067260 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | i genetly told u -2023-06-09 23:27:40.446160 + : pb-IF4XUmwOKw== | Android55956875 | Cicero | abe mar n yede -2023-06-09 23:27:54.616415 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | I'm also telling that i didn't banned them🤐 -2023-06-09 23:27:59.266093 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | ya -2023-06-09 23:28:15.049409 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | idk y all r going to sahilp -2023-06-09 23:28:17.131916 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | can u unban balooni id please -2023-06-09 23:28:21.204239 + : pb-IF4XUmwOKw== | Android55956875 | Cicero | Tera baap l. a. v. d. a h kya bisi -2023-06-09 23:28:45.890086 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | smoothy ise ban nhi kregi vo bas acche logo ko ban krti h -2023-06-09 23:28:47.830543 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Cicero stop abusing -2023-06-09 23:28:55.571675 + : pb-IF4XUmwOKw== | Android55956875 | Cicero | hut bisi -2023-06-09 23:29:13.167418 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | vo bas acche logo ko krti ban -2023-06-09 23:29:28.841449 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | who banned whom? -2023-06-09 23:29:40.715657 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | she banned white and more -2023-06-09 23:29:42.328164 + : pb-IF4XUmwOKw== | Android55956875 | Cicero | i banned ur mom's p. u. s. s. y -2023-06-09 23:29:46.336099 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | /kick 169 -2023-06-09 23:29:49.841974 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | 😂😆 -2023-06-09 23:29:52.088868 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | but not banning who abuses -2023-06-09 23:30:03.229871 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Smoothy is Boy -2023-06-09 23:30:09.160344 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | oh idk -2023-06-09 23:30:12.161909 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | shruthi is girl? -2023-06-09 23:30:22.052591 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | Athena is shruti -2023-06-09 23:30:26.101926 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | oh -2023-06-09 23:30:27.510405 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | and he owns all the BCS server -2023-06-09 23:30:28.351795 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | kk -2023-06-09 23:30:44.617757 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | ya -2023-06-09 23:30:48.021918 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | shruthi can u unban balooni id -2023-06-09 23:30:51.142254 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | if you abuse owner what can you expect -2023-06-09 23:31:05.370651 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | BOMBSQUA32 i can't ban anyone -2023-06-09 23:31:07.319071 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | bro but they didn't abusive owner -2023-06-09 23:31:17.699810 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | oh kk -2023-06-09 23:31:24.101563 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | it will automatically be unbanned when -2023-06-09 23:31:24.101950 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | server is going to update -2023-06-09 23:31:33.832323 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | oh kk -2023-06-09 23:31:44.081878 + : pb-IF5dU3UiAw== | BOMBSQUA32 | ‎ | so when will the server update -2023-06-09 23:31:54.721611 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | who told you? and who are they? -2023-06-09 23:32:07.487230 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | maybe in some days -2023-06-09 23:32:14.791060 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | bro idk y they dont want to come in bcs -2023-06-09 23:32:37.638387 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | white was my good frnd -2023-06-09 23:32:42.610183 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | I'm still asking who are they? -2023-06-09 23:32:54.533904 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | u know white? -2023-06-09 23:33:10.181287 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | yes banned -2023-06-09 23:33:19.023747 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | y? -2023-06-09 23:33:33.147621 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | abusive language -2023-06-09 23:33:39.633958 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | oh -2023-06-09 23:34:12.317440 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | first he was banned by MPF then got unban -2023-06-09 23:34:12.317645 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | but he started that abusing again so permanent ban -2023-06-09 23:34:25.261093 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | MPF also my frnd -2023-06-09 23:34:31.436399 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | good -2023-06-09 23:34:38.531070 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | ask him why banned -2023-06-09 23:34:52.483615 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | ok? -2023-06-09 23:35:53.421755 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | there will be always be who wanted -2023-06-09 23:35:53.422172 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | to go, and we should not stop them -2023-06-09 23:36:21.346446 + : Host msg: | Only 1 player per IP allowed, disconnecting this device. -2023-06-09 23:36:29.934229 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | u remmember when bcs were filled with players -2023-06-09 23:37:06.496993 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Hello TeraBaap -2023-06-09 23:37:40.024292 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Hello Shruti -2023-06-09 23:37:42.007130 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | hello -2023-06-09 23:37:55.460130 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Rico Un™©® ? -2023-06-09 23:38:04.446025 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Hello -2023-06-09 23:38:11.611191 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | hello 👋 -2023-06-09 23:39:21.154168 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | but who are you vishiihsiv -2023-06-09 23:39:34.771997 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | ye same ques -2023-06-09 23:39:46.749547 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Remember Chandoolka? -2023-06-09 23:40:30.652202 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | ok -2023-06-09 23:40:45.294123 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | hey Athena -2023-06-09 23:41:13.838625 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | hello 👋 -2023-06-09 23:41:25.564259 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | where r u from -2023-06-09 23:41:33.662200 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | TeraBaap played with Wizard character -2023-06-09 23:41:46.550329 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Poland -2023-06-09 23:42:00.405125 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | india -2023-06-09 23:42:09.850348 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Mars -2023-06-09 23:42:21.864369 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | wow I love Poland -2023-06-09 23:42:23.455494 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | jupiter -2023-06-09 23:42:27.882792 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | lol -2023-06-09 23:42:48.094197 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | what nice country -2023-06-09 23:43:17.507743 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | And my Mars? -2023-06-09 23:43:45.144223 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | so Athena what do u do for living -2023-06-09 23:43:59.038504 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | My Mars got rejected :( -2023-06-09 23:44:14.567658 + : Host msg: | BCS new server arrived -2023-06-09 23:44:14.567715 + : Host msg: | '3 Team walla server' -2023-06-09 23:44:14.567741 + : Host msg: | must try, and give us your feedbacks -2023-06-09 23:44:23.139594 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | daboochliya -2023-06-09 23:44:50.538590 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | I'm getting salary for maintaining various servers -2023-06-09 23:44:57.796045 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | how much? -2023-06-09 23:45:09.980699 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | 60k -2023-06-09 23:45:14.087026 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | myg -2023-06-09 23:45:16.444260 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | oh nice -2023-06-09 23:45:20.522282 + : pb-IF4WU1I7DQ== | Certifie23 | Tera Baap | bye -2023-06-09 23:45:35.680418 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Y going? -2023-06-09 23:46:40.544716 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | so do u still studying Athena -2023-06-09 23:46:53.090248 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Can you explain me about your work Shruti? -2023-06-09 23:47:09.805415 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | I'm graduate -2023-06-09 23:47:19.124509 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | what study? -2023-06-09 23:47:29.384534 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | ok -2023-06-09 23:48:22.074413 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | which City do u love in Athena -2023-06-09 23:48:33.773162 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Athena, explain your work -2023-06-09 23:49:00.098946 + : Host msg: | MrSilver started a kick vote for Cicero -2023-06-09 23:49:28.337039 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | my work is to kick abusers -2023-06-09 23:49:40.648358 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Capital of Poland -2023-06-09 23:49:53.126432 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Wow, courageous work. X Factor. -2023-06-09 23:49:56.104386 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | oh -2023-06-09 23:50:27.195179 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Warsaw -2023-06-09 23:50:37.165364 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Nope, Warlord -2023-06-09 23:50:59.284821 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Warsaw is the capital of Poland -2023-06-09 23:51:09.554782 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | yeah -2023-06-09 23:51:15.773918 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Warlord is your second name 😴 -2023-06-09 23:51:44.861053 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | hi -2023-06-09 23:51:58.417898 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Hello 👋 -2023-06-09 23:52:43.164440 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | what r ur hobbies Athena of u don't mind u can tell me -2023-06-09 23:52:46.617464 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | I'm hua Mulan -2023-06-09 23:53:06.021230 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | playing Bombsquad -2023-06-09 23:53:06.414751 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Oh, Hua Hua, ye kya hua -2023-06-09 23:53:16.254891 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | 😅😅 -2023-06-09 23:53:20.553202 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | sports art science -2023-06-09 23:53:38.614311 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | other then bomb squad -2023-06-09 23:53:50.735329 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Hua Mulan was the general in Chinese Kingdom -2023-06-09 23:53:57.767515 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Laurent, pls feel free to humor me -2023-06-09 23:54:13.155126 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | well yea i like gaming -2023-06-09 23:54:43.103038 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | san ricardo -2023-06-09 23:55:28.674399 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | can I get your insta Athena if you don't mind -2023-06-09 23:55:46.606485 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Athena, Say him to marry Chairman Mao. -2023-06-09 23:55:50.963955 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | i dont have one -2023-06-09 23:56:13.462823 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | you can but you have to search it yourself -2023-06-09 23:56:24.424748 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | yeah sure -2023-06-09 23:56:34.744240 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | you can search with my name -2023-06-09 23:56:36.754352 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | tell me something -2023-06-09 23:56:37.583615 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | i have discord -2023-06-09 23:56:59.194166 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Athena wait for a moment -2023-06-09 23:57:25.378174 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Ciciero, c I kidnapped Athena -2023-06-09 23:57:44.225010 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | Athena I'm waiting! -2023-06-09 23:57:52.899346 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | hehe😮‍💨 -2023-06-09 23:58:01.721775 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | You don't know my name? -2023-06-09 23:58:08.383606 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | whos athena -2023-06-09 23:58:23.979619 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | shurti naam h iska -2023-06-09 23:58:24.334265 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | no -2023-06-09 23:58:50.885236 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Laurent😎😵😄 you playing from pc? -2023-06-09 23:58:52.455901 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Shshh, movie is going on. Do not spoil alert -2023-06-09 23:58:59.864155 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | tv -2023-06-09 23:59:30.700236 + : pb-IF4zU2MgJw== | SharpEnemy | Master | Cicero tu fir aaa gya -2023-06-09 23:59:37.064397 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | still want -2023-06-09 23:59:38.129692 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Laurent, I tood u to humor, not to do lame -_- -2023-06-09 23:59:38.262245 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | my name is in font so you can't see it -2023-06-09 23:59:56.589006 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | your athena -2023-06-10 00:00:12.408955 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | no joke -2023-06-10 00:00:18.629930 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Athena, pls hv Mercy on him and tell him d truth. -2023-06-10 00:00:21.292968 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | im on tv -2023-06-10 00:00:55.199551 + : pb-IF4zU2MgJw== | SharpEnemy | Master | -2023-06-10 00:00:55.385239 + : pb-IF4zU2MgJw== | SharpEnemy | Master | -2023-06-10 00:00:55.566341 + : pb-IF4zU2MgJw== | SharpEnemy | Master | -2023-06-10 00:00:55.723217 + : pb-IF4zU2MgJw== | SharpEnemy | Master | -2023-06-10 00:01:00.355602 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | MrSilver | MrSilver | i am laughing 🤣 -2023-06-10 00:01:03.672148 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | nevermind, keep going the love story -2023-06-10 00:01:07.284488 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | so I have to only search for Athena -2023-06-10 00:01:27.124476 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | there is so much Athena in this world -2023-06-10 00:01:37.704495 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | so can I find u -2023-06-10 00:02:56.573375 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Cicero tell me your discord name -2023-06-10 00:03:01.546206 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | MrSilver | MrSilver | people here really think that girls play here ? -2023-06-10 00:03:11.284937 + : pb-IF4zU2MgJw== | SharpEnemy | Master | yes -2023-06-10 00:03:21.083979 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | ofc -2023-06-10 00:03:24.484688 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | what is discord name -2023-06-10 00:03:33.158422 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | sry -2023-06-10 00:03:33.201483 + : pb-IF4zU2MgJw== | SharpEnemy | Master | I have girls from bs -2023-06-10 00:03:44.858157 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | MrSilver | MrSilver | grest -2023-06-10 00:03:50.395091 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | yes your discord name? -2023-06-10 00:04:01.394394 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | I don't know -2023-06-10 00:04:44.759515 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | how old are you? -2023-06-10 00:04:55.614371 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | 19 -2023-06-10 00:04:56.869283 + : Host msg: | MrSilver started a kick vote for Cicero -2023-06-10 00:05:13.314373 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | and u -2023-06-10 00:05:17.903504 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Cicero, bad manners, only talking to Athena, not us all. -2023-06-10 00:05:29.044231 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | sorry bro -2023-06-10 00:05:40.809822 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | I'm 14 -2023-06-10 00:05:59.019807 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | jhuth bol rhi 😂 -2023-06-10 00:05:59.538814 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | sry -2023-06-10 00:06:12.422809 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Cicero whr u frm? -2023-06-10 00:06:19.254425 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | but what should I do ,,I don't have any female friend since I was born -2023-06-10 00:06:32.501159 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | And Laurent r u Korean now, after this all? -2023-06-10 00:06:34.489926 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | HOW -2023-06-10 00:06:38.394377 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | so I'm making friends here -2023-06-10 00:06:45.986834 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | why do you need female friends? -2023-06-10 00:06:51.349841 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | im hatian -2023-06-10 00:07:09.287975 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | and if you really want you -2023-06-10 00:07:09.288347 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | can only get it in real life -2023-06-10 00:07:16.287363 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | not in a game -2023-06-10 00:07:30.409275 + : pb-IF4qUxBfAw== | Android61525964 | stoinic | right shru -2023-06-10 00:07:32.684309 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | people says it's cool to have friends -2023-06-10 00:07:39.158031 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Laurent, Hatian? Country of hates? -2023-06-10 00:07:59.455157 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | it could be a 88 year old guy -2023-06-10 00:08:03.004158 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | it's cool, depends on your circle -2023-06-10 00:08:11.366291 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | haiti -2023-06-10 00:08:30.244352 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | what kind of circle -2023-06-10 00:08:33.709456 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Silence, now camera has been focused on Laurent. -2023-06-10 00:08:52.305676 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Cicero which country? -2023-06-10 00:09:06.984455 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | oh I'm from India -2023-06-10 00:09:20.418467 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | which state? -2023-06-10 00:09:26.244689 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | Himachal Pradesh -2023-06-10 00:09:57.686335 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | i was born in america but from haitian parents -2023-06-10 00:10:15.055845 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | I was born at Mars. -2023-06-10 00:10:32.329818 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | impossible -2023-06-10 00:10:43.754890 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | nice Lorentz bro,, but what is Haitian -2023-06-10 00:10:45.811602 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Laurent😎😵😄 French? -2023-06-10 00:11:05.139046 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Why? When Shruti can b Athena, then y I can't born at Mars? -2023-06-10 00:11:15.525791 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | bonjour como vatiure -2023-06-10 00:11:15.734854 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | so Athena tell me something about u if u don't mind -2023-06-10 00:11:36.938570 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | what do you want to know exactly -2023-06-10 00:11:52.999591 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | I'm asking are you French Laurent😎😵😄 -2023-06-10 00:11:54.398004 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | MrSilver | MrSilver | as far as I know you never spoke so much -2023-06-10 00:12:02.378624 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | haiti people -2023-06-10 00:12:07.854339 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | about u for just being good friends -2023-06-10 00:12:09.938504 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | -_- -2023-06-10 00:12:15.426421 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | no -2023-06-10 00:12:28.986468 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | haitian -2023-06-10 00:12:37.322574 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | so what is Haitian? -2023-06-10 00:12:56.154607 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | HAITI PEOPLE -2023-06-10 00:12:58.004535 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | yeah I also don't know -2023-06-10 00:13:16.728743 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | PEOPLE FROM HAITI -2023-06-10 00:13:21.982944 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | What's it's origin? -2023-06-10 00:13:33.461457 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | its sad -2023-06-10 00:13:53.375746 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | they are french right? -2023-06-10 00:14:00.142577 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | yea -2023-06-10 00:14:17.871803 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | creole -2023-06-10 00:14:30.290840 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | that's what I'm saying -2023-06-10 00:15:05.554349 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | now what is creole -2023-06-10 00:15:36.200566 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Quicksilver -2023-06-10 00:15:40.652560 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | america took EVERYTHING FROM HAITI -2023-06-10 00:15:43.137805 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | language -2023-06-10 00:15:50.714462 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | oh -2023-06-10 00:16:23.401275 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | has french words but not french -2023-06-10 00:16:41.483892 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | yes -2023-06-10 00:16:51.059269 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Laurent, what is "Mardi" in English? -2023-06-10 00:16:53.488538 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | are u ala from Poland bro -2023-06-10 00:17:16.946803 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | what is mardi -2023-06-10 00:17:24.799865 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Tell -2023-06-10 00:17:31.741234 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | U must know it -2023-06-10 00:17:52.362598 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | now where are you currently Laurent😎😵😄 -2023-06-10 00:18:15.442378 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Wait, let him answer my question, if he knows french -2023-06-10 00:18:24.126446 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | i was at haiti when i was a baby -2023-06-10 00:18:29.734724 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | ok guys bye I should have to go now -2023-06-10 00:18:35.941024 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | georgia -2023-06-10 00:18:36.899220 + : Host msg: | MrSilver started a kick vote for Cicero -2023-06-10 00:18:40.454541 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | bye Athena -2023-06-10 00:18:42.172378 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Bye -2023-06-10 00:18:47.003510 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | bye -2023-06-10 00:18:55.843396 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Bye Cicero -2023-06-10 00:19:09.330972 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Laurent, what is Mardi? -2023-06-10 00:19:26.165809 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | idk -2023-06-10 00:19:35.494655 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | why r u kicking me bro me silver what I have Don wrong with u -2023-06-10 00:19:53.091636 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | It's just u guys pronunce, Mardi, to some word -2023-06-10 00:19:54.344975 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | MrSilver | MrSilver | if you want to chat go in lobby -2023-06-10 00:20:06.411076 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | MrSilver | MrSilver | don't waste time others want to play -2023-06-10 00:20:14.635574 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | But my quiz? -2023-06-10 00:21:18.325916 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Laurent, Mardi means the "Tuesday" in french -2023-06-10 00:21:28.357038 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | oh -2023-06-10 00:21:39.637284 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | I captured on hen -2023-06-10 00:21:52.435434 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | john pork -2023-06-10 00:22:02.433600 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Georgia Country? -2023-06-10 00:22:03.972555 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Laurent u r korean I know -2023-06-10 00:22:10.196568 + : Host msg: | MrSilver started a kick vote for Cicero -2023-06-10 00:22:13.182208 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | NO -2023-06-10 00:22:19.480622 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | state -2023-06-10 00:22:23.043333 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | no -2023-06-10 00:22:26.544404 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | oh I'm sorry bro I don't want to waste anyone's time iam s I am really sorry bro -2023-06-10 00:22:43.864853 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | iam leaving u don't have to worry -2023-06-10 00:22:47.825801 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Cicero, chill. Why so serious? -2023-06-10 00:22:54.903180 + : pb-IF4mUGkfUw== | Android65216424 | John | sowie -2023-06-10 00:22:59.224488 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 00:22:59.344057 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 00:23:37.956780 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | hey rico im not korean -2023-06-10 00:23:44.824231 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | wth, c John's character 😂 -2023-06-10 00:24:17.824323 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | I m back guys -2023-06-10 00:24:20.249344 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Okay. Then? -2023-06-10 00:24:28.457380 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Then if not Korean? -2023-06-10 00:24:31.854278 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | and now I'm not even playing -2023-06-10 00:24:55.319873 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | what -2023-06-10 00:24:55.474297 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | so I'm not wasting any one time right me solver -2023-06-10 00:26:05.874333 + : pb-IF4qU2JZVA== | JauntyCens | Cicero | hey Athena -2023-06-10 00:26:22.370985 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | /ping all -2023-06-10 00:26:22.371123 + : Host msg: | Name Ping (ms) ms -2023-06-10 00:26:22.371165 + : Host msg: | ______________________________ -2023-06-10 00:26:22.371318 + : Host msg: | 𝑨𝒕𝒉𝒆𝒏𝒂 16 ms -2023-06-10 00:26:22.371345 + : Host msg: | Rico Un™©® 40 ms -2023-06-10 00:26:22.371398 + : Host msg: | MrSilver 69 ms -2023-06-10 00:26:22.371443 + : Host msg: | Laurent😎😵😄 274 ms -2023-06-10 00:26:22.371766 + : Host msg: | Cicero 75 ms -2023-06-10 00:26:22.371874 + : Host msg: | -2023-06-10 00:26:25.007221 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | anyone wanna join private -2023-06-10 00:27:16.006098 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | why are you playing on Indian server -2023-06-10 00:27:24.955045 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | even your ping is high -2023-06-10 00:27:25.049273 + : pb-IF4wVRkMAQ== | Android58474907 | | huh -2023-06-10 00:27:32.098003 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 00:27:51.285070 + : pb-IF4qU2JZVA== | JauntyCens | | sorry Athena I think I'm disturbing u iam sorry bue -2023-06-10 00:28:07.146116 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Laurent where u frm? -2023-06-10 00:28:07.674433 + : pb-IF4qU2JZVA== | JauntyCens | | good night to all my friends -2023-06-10 00:28:19.874187 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | haiti -2023-06-10 00:28:26.514928 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Good night -2023-06-10 00:28:38.022808 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 00:28:38.208578 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 00:28:38.335555 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 00:28:38.521546 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 00:28:46.997962 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | -_- now u became my dopelganger -2023-06-10 00:29:19.834527 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 00:29:19.997023 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 00:29:20.163870 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 00:29:20.349360 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 00:29:40.940659 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | /ping all -2023-06-10 00:29:40.941095 + : Host msg: | Name Ping (ms) ms -2023-06-10 00:29:40.941133 + : Host msg: | ______________________________ -2023-06-10 00:29:40.941150 + : Host msg: | 𝑨𝒕𝒉𝒆𝒏𝒂 17 ms -2023-06-10 00:29:40.941163 + : Host msg: | Rico Un™©® 45 ms -2023-06-10 00:29:40.941181 + : Host msg: | John 17 ms -2023-06-10 00:29:40.941190 + : Host msg: | Flopsy 36 ms -2023-06-10 00:29:40.941199 + : Host msg: | Laurent😎😵😄 261 ms -2023-06-10 00:29:40.941211 + : Host msg: | -2023-06-10 00:30:03.260318 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | 261 -2023-06-10 00:30:40.535417 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 00:31:07.412857 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Do people play bombsquad in Georgia? -2023-06-10 00:31:18.300815 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | idk -2023-06-10 00:31:29.363247 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Athena, I hv to say you something -2023-06-10 00:31:32.244433 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | but i do -2023-06-10 00:31:33.338088 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | no local servers? -2023-06-10 00:31:47.481578 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | no -2023-06-10 00:32:13.994674 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | what -2023-06-10 00:32:36.346382 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | no neighbors i know in the city -2023-06-10 00:32:53.474406 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Congratulations to Rank 1, and .... -2023-06-10 00:33:00.966866 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | why? -2023-06-10 00:33:12.313754 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | if u r a boy, then u deserves golden globe award -2023-06-10 00:33:28.088358 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | huh -2023-06-10 00:33:50.664200 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | vishiihsiv why? -2023-06-10 00:34:14.292456 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | If you're a boy, then your acting is on super level. -2023-06-10 00:34:26.948890 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | yea -2023-06-10 00:34:35.104468 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | then give me award -2023-06-10 00:34:48.182955 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | 🏆 -2023-06-10 00:35:04.973727 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | 👍 -2023-06-10 00:35:35.397066 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Ok, now play all -2023-06-10 00:35:41.472464 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | get fire stick tv -2023-06-10 00:36:15.369395 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | and I'm always #1 -2023-06-10 00:36:47.440703 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 00:37:08.383331 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | athena wanna join private -2023-06-10 00:37:42.813966 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | why not play here -2023-06-10 00:38:18.341791 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | idk -2023-06-10 00:38:43.704513 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 00:38:57.871376 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | brb -2023-06-10 00:39:06.606282 + : pb-IF4wVRkMAQ== | Android58474907 | | still -2023-06-10 00:41:06.301072 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | john why playing with so many different IDs? -2023-06-10 00:41:22.022712 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 00:41:22.196910 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 00:41:22.353489 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 00:41:25.537277 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 00:41:58.876607 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Rico Un™©® what's your name on discord? -2023-06-10 00:42:22.055220 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | It was, till Last year. -2023-06-10 00:42:36.429012 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | I don't use any social medias -2023-06-10 00:42:38.883603 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | ? -2023-06-10 00:42:50.441471 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | why? -2023-06-10 00:43:13.541114 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Just, its all time wasting, and full of fakeness. -2023-06-10 00:43:38.157440 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Lemme join blue -2023-06-10 00:43:44.024484 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Good observation but bad take -2023-06-10 00:44:08.297324 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Feel free to explain me about bad take -2023-06-10 00:44:35.109299 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | what fakeness did you feel? -2023-06-10 00:45:00.757432 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Am not all against social media. of course it benefiti me -2023-06-10 00:45:17.003195 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | But, it was uneconomical -2023-06-10 00:45:20.648701 + : pb-IF4wVRkMAQ== | Android58474907 | | back -2023-06-10 00:45:48.249466 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | uneconomical it what terms? -2023-06-10 00:46:00.416913 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Our Terminator is back -2023-06-10 00:46:15.905897 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | me? -2023-06-10 00:46:22.805285 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Time wasting, is prime reason. -2023-06-10 00:46:38.755249 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Then, lots of fake peoplez -2023-06-10 00:46:54.325609 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | even this game is wasting the time -2023-06-10 00:47:13.891207 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | you need to learn how to manage it -2023-06-10 00:47:16.708699 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | i barely use discord ✛ twitter -2023-06-10 00:47:22.265295 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Yes, only when u have planned to play -2023-06-10 00:47:42.427998 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | sry -2023-06-10 00:47:57.081540 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | no i never plan anything -2023-06-10 00:48:07.709538 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | I understand -2023-06-10 00:48:11.062849 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | here u are -2023-06-10 00:48:19.671167 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | if you like private life it's -2023-06-10 00:48:19.671393 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | ok, we all are private anyways -2023-06-10 00:48:26.513749 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | what -2023-06-10 00:48:37.534461 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Akaza.❄ what happened -2023-06-10 00:48:45.374648 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | are u ok -2023-06-10 00:48:52.053501 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Arrow Right on the aim, Shruti XD -2023-06-10 00:48:52.505908 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | what were u saying now -2023-06-10 00:49:12.191803 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | seems like motivation speech -2023-06-10 00:49:13.548622 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | talking philosophy with Rico Un™©® -2023-06-10 00:49:14.566736 + : Host msg: | BCS new server arrived -2023-06-10 00:49:14.566797 + : Host msg: | '3 Team walla server' -2023-06-10 00:49:14.566821 + : Host msg: | must try, and give us your feedbacks -2023-06-10 00:49:20.818313 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | 😂 -2023-06-10 00:49:21.274809 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | oh -2023-06-10 00:49:26.753943 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | rico -2023-06-10 00:49:41.123259 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | i try to motivate everyone -2023-06-10 00:49:42.710285 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | I'd like to heartily include Pro-mode -2023-06-10 00:49:52.068458 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | yeah u copy my things -2023-06-10 00:49:53.438988 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | lot -2023-06-10 00:50:20.194117 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | when did you motivate anyone? -2023-06-10 00:50:46.527262 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | that's how grapes look like -2023-06-10 00:50:47.176787 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | i motivate everybody daily -2023-06-10 00:50:57.783983 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | seems like u r blind -2023-06-10 00:51:19.274708 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | /disco -2023-06-10 00:51:35.034424 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | damn -2023-06-10 00:51:38.938986 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | bunny i want to add disco cmd in server -2023-06-10 00:51:43.996896 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | what did you add in server? -2023-06-10 00:51:50.795800 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | do u know how it works -2023-06-10 00:52:01.468196 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | that plugin doesn't work don't know why -2023-06-10 00:52:04.075550 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | rico long time no see -2023-06-10 00:52:16.874780 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | which plugin -2023-06-10 00:52:19.684549 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | laurentboy2 ???? -2023-06-10 00:52:24.065963 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | disco -2023-06-10 00:52:41.626033 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | did u asked smoothy about it -2023-06-10 00:52:53.716739 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | No -2023-06-10 00:53:07.879602 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Smoothy didn't make it -2023-06-10 00:53:11.504648 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | u should ask him he might reply u -2023-06-10 00:53:18.874659 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | oh -2023-06-10 00:53:48.188630 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | athena do you know brose -2023-06-10 00:54:03.516708 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | No -2023-06-10 00:54:14.267897 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | lag -2023-06-10 00:54:14.449737 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | ok -2023-06-10 00:54:18.234360 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | now commands working? -2023-06-10 00:54:55.641045 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | Akaza.❄ -2023-06-10 00:54:58.834796 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | yes -2023-06-10 00:55:05.184715 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | its working now -2023-06-10 00:55:19.152750 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | i dont know what to add in server now -2023-06-10 00:55:23.100472 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | a server -2023-06-10 00:55:32.384385 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | lol -2023-06-10 00:55:34.273836 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | my head hurts lots confusion -2023-06-10 00:55:55.156835 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | just do whatever you want -2023-06-10 00:56:09.381832 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | yeah i will progress slowly -2023-06-10 00:56:09.953108 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | and we changed the name of our server -2023-06-10 00:56:24.898856 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Pramod, u admin here? -2023-06-10 00:56:29.656272 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | yes -2023-06-10 00:56:41.634865 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | why ? -2023-06-10 00:56:44.995902 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | wait wa -2023-06-10 00:56:55.852468 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | it's now AHS WONDERLAND TEAMS -2023-06-10 00:56:57.253456 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Just asking, of course seeing your convo. -2023-06-10 00:57:23.616348 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | can i come -2023-06-10 00:57:30.141832 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | oh really i never thought u guys come up with wonderland -2023-06-10 00:57:33.063741 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | not bad -2023-06-10 00:57:35.441127 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | yes -2023-06-10 00:57:41.581485 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | ok -2023-06-10 00:57:50.894184 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | because it's really wonderland -2023-06-10 00:57:55.478561 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Alice (Athena) the Wonderland -2023-06-10 00:57:55.777710 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | yes -2023-06-10 00:58:07.165225 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | with variety of different games and maps -2023-06-10 00:58:13.136789 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | how about nostalgia -2023-06-10 00:58:29.838130 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | nvm -2023-06-10 00:58:33.880731 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | yea -2023-06-10 00:58:42.583282 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Wonder Galaxy -2023-06-10 00:59:17.424608 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | ive been playing bombsquad for 3yrs -2023-06-10 00:59:23.696671 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | laurent who -2023-06-10 00:59:25.508916 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | /list -2023-06-10 00:59:25.509045 + : Host msg: | Name Client ID Player ID -2023-06-10 00:59:25.509285 + : Host msg: | ______________________________ -2023-06-10 00:59:25.509446 + : Host msg: | 𝑨𝒕𝒉𝒆𝒏𝒂 164 0 -2023-06-10 00:59:25.509593 + : Host msg: | Rico Un™©® 180 1 -2023-06-10 00:59:25.509719 + : Host msg: | Akaza.❄ 204 2 -2023-06-10 00:59:25.509850 + : Host msg: | Laurent😎😵😄 188 3 -2023-06-10 00:59:25.509984 + : Host msg: | -2023-06-10 00:59:28.414653 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | /gp 3 -2023-06-10 00:59:28.414789 + : Host msg: | 1)- laurentman -2023-06-10 00:59:28.414813 + : Host msg: | 2)- __account__ -2023-06-10 00:59:28.415042 + : Host msg: | 3)- Laurent😎😵😄 -2023-06-10 00:59:36.051271 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | the name is decided and done it's AHS WONDERLAND TEAMS -2023-06-10 00:59:36.901829 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | me -2023-06-10 00:59:36.976658 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | laurentman -2023-06-10 00:59:48.187652 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | nice -2023-06-10 00:59:54.156947 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | AHS? Mean? -2023-06-10 01:00:18.505390 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | Laurent😎😖😃 -2023-06-10 01:00:20.841366 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | it's State secret -2023-06-10 01:00:35.628514 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | ✌️ -2023-06-10 01:00:51.590803 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | its Apple hunts shruti -2023-06-10 01:00:52.676032 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | /unfreeze all -2023-06-10 01:01:08.495296 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | yes -2023-06-10 01:01:25.007176 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | lag -2023-06-10 01:01:59.655988 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Pramod, not in sahilP? -2023-06-10 01:02:15.870703 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | i was there but it was started lagin -2023-06-10 01:02:19.454168 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | My ping = 6ms -2023-06-10 01:03:14.097651 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | now we just need to make some changes in playlist -2023-06-10 01:03:31.320181 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | who will do that ? -2023-06-10 01:03:33.224775 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | u -2023-06-10 01:03:39.427796 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | or zainab -2023-06-10 01:03:39.763972 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 01:03:42.344714 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | no -2023-06-10 01:03:49.690856 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | i don't have playlist -2023-06-10 01:03:56.261742 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | she will do it -2023-06-10 01:04:01.338318 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | i see -2023-06-10 01:04:05.315322 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Pramod, How to become an admin or moderator in any server? -2023-06-10 01:04:17.314929 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | does it need to clear any exam? -2023-06-10 01:04:24.193004 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | no lol -2023-06-10 01:04:28.721397 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | wanna go in bcs smash -2023-06-10 01:04:30.671031 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | then? -2023-06-10 01:04:37.344691 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | in which server do you want moderator? -2023-06-10 01:04:47.099581 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | No just curious. -2023-06-10 01:05:00.078312 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | there is no need to clear any exam -2023-06-10 01:05:19.199498 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | every server has own policy -2023-06-10 01:05:25.008524 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | different servers have different criteria -2023-06-10 01:05:26.139128 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | u just mantain it -2023-06-10 01:05:48.997888 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | or else make ur own server -2023-06-10 01:06:02.260627 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | i cant -2023-06-10 01:06:04.715670 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | yes, and how the guy/girl for this post is choosen? -2023-06-10 01:06:07.536067 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | rico send me a text in dc -2023-06-10 01:06:12.904521 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | or most of the servers give Admin to #1 -2023-06-10 01:06:47.358642 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Pramod, with heavy heart, (u know it too), I deleted all social medias -2023-06-10 01:07:01.099586 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | oh i forgot nvm -2023-06-10 01:07:10.110882 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | /list -2023-06-10 01:07:10.111296 + : Host msg: | Name Client ID Player ID -2023-06-10 01:07:10.111334 + : Host msg: | ______________________________ -2023-06-10 01:07:10.111352 + : Host msg: | 𝑨𝒕𝒉𝒆𝒏𝒂 164 0 -2023-06-10 01:07:10.111366 + : Host msg: | Rico Un™©® 180 1 -2023-06-10 01:07:10.111378 + : Host msg: | Akaza.❄ 204 2 -2023-06-10 01:07:10.111389 + : Host msg: | Laurent😎😵😄 188 3 -2023-06-10 01:07:10.111398 + : Host msg: | John 205 4 -2023-06-10 01:07:10.111406 + : Host msg: | ATTACKER 207 5 -2023-06-10 01:07:10.111440 + : Host msg: | Darrnaku 208 6 -2023-06-10 01:07:10.111451 + : Host msg: | -2023-06-10 01:07:14.943069 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | /gp 1 -2023-06-10 01:07:14.943465 + : Host msg: | 1)- Munch™©® -2023-06-10 01:07:14.943522 + : Host msg: | 2)- Pikaboo™©® -2023-06-10 01:07:14.943545 + : Host msg: | 3)- Vishi™©® -2023-06-10 01:07:14.943776 + : Host msg: | 4)- Sentinel™©® -2023-06-10 01:07:14.943834 + : Host msg: | 5)- Tux™©® -2023-06-10 01:07:14.943892 + : Host msg: | 6)- Teddy™©® -2023-06-10 01:07:14.943950 + : Host msg: | 7)- Starfire™©® -2023-06-10 01:07:14.944007 + : Host msg: | 8)- Carrots™©® -2023-06-10 01:07:14.944058 + : Host msg: | 9)- Zobrett™©® -2023-06-10 01:07:14.944123 + : Host msg: | 10)- Poby™©® -2023-06-10 01:07:14.944185 + : Host msg: | 11)- __account__ -2023-06-10 01:07:14.944439 + : Host msg: | 12)- Prometheus™©® -2023-06-10 01:07:14.944469 + : Host msg: | 13)- Kai™©® -2023-06-10 01:07:14.944488 + : Host msg: | 14)- Nemesis Prime™©® -2023-06-10 01:07:14.944505 + : Host msg: | 15)- Trizard™©® -2023-06-10 01:07:14.944568 + : Host msg: | 16)- Starboost™©® -2023-06-10 01:07:14.944594 + : Host msg: | 17)- Optimus Prime™©® -2023-06-10 01:07:14.944621 + : Host msg: | 18)- Courage™©® -2023-06-10 01:07:14.944638 + : Host msg: | 19)- Rico Un™©® -2023-06-10 01:07:14.944672 + : Host msg: | 20)- V-Prime™©® -2023-06-10 01:07:14.944702 + : Host msg: | 21)- Stardust™©® -2023-06-10 01:07:14.944720 + : Host msg: | 22)- Jack Krauser™©® -2023-06-10 01:07:14.945460 + : Host msg: | 23)- Boo™©® -2023-06-10 01:07:14.945547 + : Host msg: | 24)- Gillette™©® -2023-06-10 01:07:14.945604 + : Host msg: | 25)- Whistler™©® -2023-06-10 01:07:14.945659 + : Host msg: | 26)- Pom-Pom™©® -2023-06-10 01:07:14.945712 + : Host msg: | 27)- Ninzy™©® -2023-06-10 01:08:02.184054 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | And, that's what all about d philosophy going on while u joined XD -2023-06-10 01:08:13.539777 + : pb-IF41U2scIg== | SHRUTIsom | 𝑨𝒕𝒉𝒆𝒏𝒂 | back in a minute -2023-06-10 01:08:25.719885 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | ok -2023-06-10 01:08:31.593572 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | wdym -2023-06-10 01:09:37.035457 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | sry -2023-06-10 01:09:54.252714 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Wh n u entered here, u said what happened -2023-06-10 01:10:14.266379 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | discussion wss going on about social media -2023-06-10 01:10:29.660657 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | oh thats bcz of athena spitted out some dialogue 😂😂 -2023-06-10 01:10:36.264878 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | motivate dailouge -2023-06-10 01:10:39.428822 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | yes, 👍 -2023-06-10 01:10:56.776808 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | how old are u rico -2023-06-10 01:11:10.440383 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | 29 -2023-06-10 01:11:21.230786 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | oh my elder -2023-06-10 01:11:38.428915 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 01:11:43.254403 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Dosti mein kya bada chota dekhna -2023-06-10 01:11:48.880347 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | john talk -2023-06-10 01:11:52.852628 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 01:11:54.302676 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 01:11:54.470204 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 01:11:54.646549 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 01:11:59.814637 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | han u got a spirit -2023-06-10 01:12:09.596995 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 01:12:09.755714 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 01:12:09.945163 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 01:12:28.287359 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | oh no then call some aghory to clean my spirit off -2023-06-10 01:12:37.342370 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | athena -2023-06-10 01:12:43.244052 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | Just kidding, u got it too 😄 -2023-06-10 01:13:03.424695 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | aghory they wont clean ur spirit -2023-06-10 01:13:17.720172 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | But I'm fan of your arts -2023-06-10 01:14:08.464714 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | oh really thanks :) -2023-06-10 01:14:15.392745 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | those were really old ones -2023-06-10 01:14:17.899636 + : pb-IF41U2scIg== | SHRUTIsom | 𝐏rincess 𝐏each | come in AHS we will see the new games -2023-06-10 01:14:24.359179 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | forgot, liquid arts! -2023-06-10 01:14:24.752718 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | yes -2023-06-10 01:14:30.312200 + : pb-IF4wVRkMAQ== | Android58474907 | Laurent😎😵😄 | all -2023-06-10 01:14:32.856745 + : pb-IF49VFQlPA== | Aikuros | Akaza.❄ | come rico -2023-06-10 01:14:37.368924 + : pb-IF4CKhYn | vishiihsiv | Rico Un™©® | ok -2023-06-10 01:14:38.478921 + : pb-IF41U2scIg== | SHRUTIsom | 𝐏rincess 𝐏each | ok let's go -2023-06-10 01:54:14.569938 + : Host msg: | BCS new server arrived -2023-06-10 11:43:42.124783 + : pb-IF4mUGkfUw== | Android65216424 | John | /me -2023-06-10 11:43:42.126387 + : Host msg: | Score:922 -2023-06-10 11:43:42.126423 + : Host msg: | Games:19 -2023-06-10 11:43:42.126438 + : Host msg: | Kills:49 -2023-06-10 11:43:42.126450 + : Host msg: | Deaths:49 -2023-06-10 11:43:42.126538 + : Host msg: | Avg.:48.526 -2023-06-10 11:51:10.028373 + : pb-IF4mUGkfUw== | Android65216424 | John | -2023-06-10 12:27:03.825183 + : pb-IF4CKhYn | vishiihsiv | | My ping = 0ms -2023-06-10 13:01:53.902063 + : pb-IF42U2wGFw== | chugambara | Duck | lmao -2023-06-10 13:04:20.129058 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | Benji | duck 🦆 -2023-06-10 13:04:50.822249 + : pb-IF42U2wGFw== | chugambara | Duck | what? -2023-06-10 13:05:14.199971 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | | fk u -2023-06-10 13:05:25.423115 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | | **** -2023-06-10 13:05:28.782038 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | | **** -2023-06-10 13:05:32.175481 + : pb-IF4VVG8gNQ== | IAMTHEDON1 | | **** -2023-06-10 14:26:41.680417 + : pb-IF49I04z | SingingTac | Darrnaku | -2023-06-10 14:26:41.820443 + : pb-IF49I04z | SingingTac | Darrnaku | -2023-06-10 14:26:45.938270 + : pb-IF41U1ZZNg== | Inconsta73 | Inconsta73 | -2023-06-10 14:26:49.481119 + : pb-IF41U1ZZNg== | Inconsta73 | Inconsta73 | haker -2023-06-10 14:26:49.615967 + : pb-IF41U1ZZNg== | Inconsta73 | Inconsta73 | -2023-06-10 14:26:56.711454 + : Host msg: | Only 1 player per IP allowed, disconnecting this device. -2023-06-10 16:30:09.579924 + : Host msg: | Server will restart on next opportunity. (series end) diff --git a/dist/ba_root/mods/serverdata/Chat Logs.log2022-12-07 11%3A38%3A04.373620 b/dist/ba_root/mods/serverdata/Chat Logs.log2022-12-07 11%3A38%3A04.373620 deleted file mode 100644 index 1e7c963..0000000 --- a/dist/ba_root/mods/serverdata/Chat Logs.log2022-12-07 11%3A38%3A04.373620 +++ /dev/null @@ -1,9669 +0,0 @@ -2022-12-04 10:11:21.238752 + : pb-IF4uU3gNKQ== | CKD360|| chal bye bru -2022-12-04 10:11:27.778907 + : pb-IF4IV04ZKw== | paratròóper|| ya bye -2022-12-04 10:12:02.697703 + : pb-IF4IV04ZKw== | paratròóper|️| kya cutiyapa h ye -2022-12-04 10:12:11.520258 + : pb-IF4RU3QoXQ== | Android62576681|AR| -2022-12-04 10:12:15.395824 + : pb-IF4IV04ZKw== | paratròóper|️| ******* kr dia server -2022-12-04 10:12:22.173781 + : pb-IF4IV04ZKw== | paratròóper|️| l0du server bisi -2022-12-04 10:12:23.600199 + : pb-IF4RU3QoXQ== | Android62576681|AR| ye kya server hai? -2022-12-04 10:12:27.542949 + : pb-IF4IV04ZKw== | paratròóper|️| vahi to yr -2022-12-04 10:12:54.555741 + : pb-IF4RU3QoXQ== | Android62576681|AR| come to teams inda -2022-12-04 10:13:00.416119 + : pb-IF4IV04ZKw== | paratròóper|️| k -2022-12-04 10:14:53.843633 + : pb-IF4uU3gNKQ== | CKD360|| reset -2022-12-04 10:15:08.204025 + : pb-IF4uU3gNKQ== | CKD360|| end -2022-12-04 10:15:15.060278 + : pb-IF41U2scIg== | SHRUTIsom|𝑺𝒉𝒓𝒖𝒕𝒊| end -2022-12-04 10:15:21.542846 + : pb-IF4nA28F | pilot12856|Petronas AMG| such nonsense -2022-12-04 10:15:29.390469 + : pb-IF4nA28F | pilot12856|Petronas AMG| has this thing become -2022-12-04 10:16:04.579610 + : pb-IF41U2scIg== | SHRUTIsom|𝑺𝒉𝒓𝒖𝒕𝒊| older version was good enough -2022-12-04 10:16:13.309278 + : pb-IF4uU3gNKQ== | CKD360|| yes.. -2022-12-04 10:16:15.008948 + : pb-IF4yVVA8Bg== | BABURAOAPTE54|BABURAOAPTE54| -2022-12-04 10:16:39.188543 + : pb-IF4uU3gNKQ== | CKD360|| we hv to request to rollback previous version -2022-12-04 10:16:56.052612 + : pb-IF41U2scIg== | SHRUTIsom|𝑺𝒉𝒓𝒖𝒕𝒊| yes -2022-12-04 10:18:40.836390 + : pb-IF41U2scIg== | SHRUTIsom|𝑺𝒉𝒓𝒖𝒕𝒊| will be back when the glitch is fixed -2022-12-04 10:21:15.890171 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| kya hai ye bhai -2022-12-04 10:31:47.600876 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| -2022-12-04 10:31:47.780405 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| -2022-12-04 10:31:47.920373 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| -2022-12-04 10:32:48.832146 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| -2022-12-04 10:33:47.020355 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| 🤣🤣🤣🍌 -2022-12-04 10:34:19.081188 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| f -2022-12-04 10:34:26.521122 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| chunk -2022-12-04 10:34:32.441191 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| chunku -2022-12-04 10:34:51.791099 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| nobula -2022-12-04 10:35:03.031047 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| no shild -2022-12-04 10:35:09.280421 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| kik -2022-12-04 10:35:12.781370 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| use shild -2022-12-04 10:35:20.280447 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| 🍌 -2022-12-04 10:35:25.780960 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| no shild -2022-12-04 10:36:06.661240 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| tera kela to use keya ouva hay -2022-12-04 10:36:32.861579 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| Sparky ko de -2022-12-04 10:36:59.661053 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| don't spma -2022-12-04 10:37:04.222314 + : pb-IF4uU3gNKQ== | CKD360|CKD| info -2022-12-04 10:37:06.121202 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| red -2022-12-04 10:37:18.580986 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| what's info -2022-12-04 10:37:36.482421 + : pb-IF4uU3gNKQ== | CKD360|CKD| checking some commands -2022-12-04 10:37:57.491026 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| checking condoms -2022-12-04 10:38:04.251176 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| sorry -2022-12-04 10:38:18.766261 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| bhalu aa gaya -2022-12-04 10:39:36.991405 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| no bomb -2022-12-04 10:39:46.045976 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| babu -2022-12-04 10:39:55.591586 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| no shild -2022-12-04 10:40:02.931083 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| darpok -2022-12-04 10:41:21.970929 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| 🥺 -2022-12-04 10:41:28.733347 + : pb-IF49U0MCCA== | LevelAccep|भोलू| iceman -2022-12-04 10:41:28.878105 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 10:41:36.442352 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-04 10:41:36.632510 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-04 10:41:36.782481 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-04 10:41:36.982507 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-04 10:41:54.071143 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| iceman -2022-12-04 10:42:21.076166 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| host spam -2022-12-04 10:42:24.501603 + : pb-IF49U0MCCA== | LevelAccep|भोलू| common -2022-12-04 10:42:43.878532 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 10:42:46.382458 + : pb-IF5SVBJTIQ== | vj1481|NOBU| -2022-12-04 10:42:46.516897 + : pb-IF5SVBJTIQ== | vj1481|NOBU| -2022-12-04 10:42:46.676002 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| -2022-12-04 10:42:55.092708 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-04 10:42:55.172860 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-04 10:44:11.921308 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| shruti -2022-12-04 10:44:37.030534 + : pb-IF41U2scIg== | SHRUTIsom|𝑺𝒉𝒓𝒖𝒕𝒊| ? -2022-12-04 10:45:22.801144 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| 🦌🦖 -2022-12-04 10:46:04.738272 + : pb-IF4uU3gNKQ== | CKD360|CKD| hy siso game badl gaya🥲 -2022-12-04 10:46:39.305185 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| m bh vhi dekh rhi hu yeh ky hogya -2022-12-04 10:47:00.917643 + : pb-IF4uU3gNKQ== | CKD360|CKD| acha nahi lg rha new maps bhi add hue😅 -2022-12-04 10:47:20.797510 + : pb-IF4uU3gNKQ== | CKD360|CKD| apna purana wala sahi tha -2022-12-04 10:47:27.780226 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| han -2022-12-04 10:47:40.195127 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| apne name edit kia h ky? -2022-12-04 10:47:49.012268 + : pb-IF4uU3gNKQ== | CKD360|CKD| han fonts change kiya -2022-12-04 10:47:56.980120 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| okk -2022-12-04 10:48:16.550065 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| muje lga koi fake h -2022-12-04 10:48:23.550608 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| m kick krne vli thi😂 -2022-12-04 10:48:34.797218 + : pb-IF4uU3gNKQ== | CKD360|CKD| nahi😅 me he hun -2022-12-04 10:48:38.735416 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| okk -2022-12-04 10:48:54.207567 + : pb-IF4wUlIYCg== | NearCandy4|Aliya bhatt🎳| hi ckd -2022-12-04 10:49:07.006447 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 10:49:12.258920 + : pb-IF4uU3gNKQ== | CKD360|CKD| hy mafia -2022-12-04 10:49:23.010085 + : pb-IF4wUlIYCg== | NearCandy4|Aliya bhatt🎳| 😩😩😩😩 -2022-12-04 10:49:30.919996 + : pb-IF4uU3gNKQ== | CKD360|CKD| 🤣 -2022-12-04 10:50:08.069724 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 10:50:58.478357 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 😓😓😓😓 -2022-12-04 10:51:03.687030 + : pb-IF4uU3gNKQ== | CKD360|CKD| 😁😁 -2022-12-04 10:51:31.199954 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| hie mafia(aliya bhatt)😎 -2022-12-04 10:51:44.044071 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| hi😥😥😥😥 -2022-12-04 10:51:49.209713 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| 😂😂 -2022-12-04 10:54:00.721164 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 10:54:54.176431 + : pb-IF5VU0cyFg== | sOFF1C1AL|sOFF1C1AL| -2022-12-04 10:54:54.296302 + : pb-IF5VU0cyFg== | sOFF1C1AL|sOFF1C1AL| -2022-12-04 10:58:04.677052 + : pb-IF49U0MCCA== | LevelAccep|भोलू| oh no -2022-12-04 10:58:50.492137 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| hi tannu -2022-12-04 10:59:13.339970 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| hie mafia -2022-12-04 10:59:27.367423 + : pb-IF49VFQlPA== | PC688281|| wow mvp cute -2022-12-04 10:59:30.814888 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| kuch laya hu tumare liye -2022-12-04 10:59:36.219842 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| ky? -2022-12-04 10:59:36.586862 + : pb-IF4uU3gNKQ== | CKD360|CKD| mvp boring -2022-12-04 10:59:39.787242 + : pb-IF49VFQlPA== | PC688281|Rose| smoothy is that u -2022-12-04 11:00:29.708208 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 🌹 ye lelo -2022-12-04 11:00:39.723876 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| 😂😂lao dedo -2022-12-04 11:00:49.036884 + : pb-IF4uU3gNKQ== | CKD360|CKD| mere sis line nhi mr -2022-12-04 11:00:54.036881 + : pb-IF4uU3gNKQ== | CKD360|CKD| sis ko -2022-12-04 11:01:37.672045 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 😁😁 -2022-12-04 11:01:50.047006 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| jeeja bangya ckd me -2022-12-04 11:02:03.218314 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| meko black rose psnd h mafia pr😕 red nhh -2022-12-04 11:02:03.662026 + : pb-IF4uU3gNKQ== | CKD360|CKD| hone nhi dega me -2022-12-04 11:02:10.461682 + : pb-IF4uU3gNKQ== | CKD360|CKD| 🤣 -2022-12-04 11:02:13.112571 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 😩😩😩 -2022-12-04 11:02:21.867231 + : pb-IF49VFQlPA== | PC688281|🕷🅿🕷| ye flag upar ni leke jara -2022-12-04 11:02:24.013427 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| 😖😖ky kru ab m -2022-12-04 11:02:31.987031 + : pb-IF49VFQlPA== | PC688281|🕷🅿🕷| gravity jada hogaya -2022-12-04 11:02:42.757269 + : pb-IF4uU3gNKQ== | CKD360|CKD| glitch hai solve nahi hua hai -2022-12-04 11:02:50.017025 + : pb-IF4uU3gNKQ== | CKD360|CKD| end -2022-12-04 11:02:54.737096 + : pb-IF4uU3gNKQ== | CKD360|CKD| type end -2022-12-04 11:02:56.312999 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| end -2022-12-04 11:02:59.258895 + : pb-IF41U2scIg== | SHRUTIsom|𝑺𝒉𝒓𝒖𝒕𝒊| end -2022-12-04 11:03:01.887129 + : pb-IF49VFQlPA== | PC688281|🕷🅿🕷| end -2022-12-04 11:03:16.646780 + : pb-IF4uU3gNKQ== | CKD360|CKD| iske baad wala game toh sabse bada glitch -2022-12-04 11:03:34.169597 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| black rose tannu😥😥😥 -2022-12-04 11:03:52.379465 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| white skin girl girl, girl heart black😩😩😥😥 -2022-12-04 11:04:06.341684 + : pb-IF4uU3gNKQ== | CKD360|CKD| chal siso baad me aya..byee -2022-12-04 11:05:25.255154 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-04 11:05:25.378066 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-04 11:05:25.517297 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-04 11:05:27.455926 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-04 11:05:56.542889 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| -2022-12-04 11:06:00.828414 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-04 11:06:00.990253 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-04 11:07:00.948779 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| hope everything working fine now -2022-12-04 11:07:14.587340 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| um yeah -2022-12-04 11:07:33.751803 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 11:07:33.978578 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 11:07:56.057623 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 11:08:03.349933 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| just note down the I'd of creepy peoples -2022-12-04 11:08:12.040859 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| and report to me -2022-12-04 11:08:29.606840 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| don't need to listen anything from anyone -2022-12-04 11:08:59.553230 + : pb-IF41U2scIg== | SHRUTIsom|𝑺𝒉𝒓𝒖𝒕𝒊| 👍 -2022-12-04 11:10:51.599262 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 11:14:15.521151 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 11:14:48.896608 + : pb-IF49U0MCCA== | LevelAccep|भोलू| 😂 -2022-12-04 11:14:49.130216 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 11:19:13.666247 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|| end -2022-12-04 11:19:19.104117 + : pb-IF49U0MCCA== | LevelAccep|भोलू| end -2022-12-04 11:19:24.267218 + : pb-IF4SU00JHw== | Jayrajsinh1202|boboX| end -2022-12-04 11:19:28.700986 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| end -2022-12-04 11:19:31.150849 + : pb-IF49UnYRLQ== | ChargingBear93648|Benji| abe ***** thuje bacha rha tha -2022-12-04 11:19:41.987036 + : pb-IF49VFQlPA== | PC688281|Ogre| smoothy sir namaste -2022-12-04 11:19:50.487466 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| namaste -2022-12-04 11:20:08.493343 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| oh pamu -2022-12-04 11:20:11.176978 + : pb-IF49VFQlPA== | PC688281|Ogre| yes -2022-12-04 11:22:09.622555 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 11:24:41.436983 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| pamu kick if some abuse .. -2022-12-04 11:24:41.437433 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| u have access to commands -2022-12-04 11:24:51.735245 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 11:24:51.916901 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 11:24:58.537089 + : pb-IF49VFQlPA== | PC688281|Ogre| are cmds kya he -2022-12-04 11:25:10.186032 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| wahi /kick 113 -2022-12-04 11:25:13.807073 + : pb-IF49VFQlPA== | PC688281|Ogre| ok -2022-12-04 11:25:22.307128 + : pb-IF49VFQlPA== | PC688281|Ogre| done -2022-12-04 11:25:29.608331 + : pb-IF49VFQlPA== | PC688281|Ogre| thanks -2022-12-04 11:27:15.640416 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 11:27:19.894750 + : pb-JiNJARFTVEVHXFZFE09ZVFNGE0ZXRlRA | CherryBruiser84898|CherryBruiser84898| -2022-12-04 11:29:24.367209 + : pb-IF49VFQlPA== | PC688281|Ogre| -2022-12-04 11:30:31.025058 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 11:30:31.241696 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 11:30:32.977182 + : pb-IF49VFQlPA== | PC688281|Ogre| -2022-12-04 11:31:51.788988 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 11:31:54.888515 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| blue noobz -2022-12-04 11:31:58.657678 + : pb-IF49U0MCCA== | LevelAccep|भोलू| benji -2022-12-04 11:33:41.712203 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| -2022-12-04 11:33:54.387832 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| aj bunny -2022-12-04 11:34:05.013020 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| yes -2022-12-04 11:34:34.117285 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| i think i know u -2022-12-04 11:34:44.989801 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| u play in sahilp ? some year ago ? -2022-12-04 11:34:45.796086 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| ? -2022-12-04 11:34:52.038400 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| yep -2022-12-04 11:35:08.715718 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| ur other name? -2022-12-04 11:35:15.067288 + : pb-IF49VFQlPA== | PC688281|Ogre| idar bohut log ate honge sahilp wale -2022-12-04 11:35:15.971814 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| Mr.Smoothy -2022-12-04 11:35:18.230739 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| Benji ko kick kro -2022-12-04 11:35:29.894299 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| u used agent a lot? -2022-12-04 11:35:33.183292 + : pb-IF49U0MCCA== | LevelAccep|भोलू| 😂 -2022-12-04 11:35:35.468648 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| Sala sirf freeze bomb fekta hai aur wo bhi achce se nnhi -2022-12-04 11:35:37.821988 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| no, bunny -2022-12-04 11:35:48.976747 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| i remember ur name -2022-12-04 11:35:53.383827 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| ;D -2022-12-04 11:35:58.694362 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| sad -2022-12-04 11:35:59.975722 + : pb-IF49VFQlPA== | PC688281|Ogre| he used take cute bunny flirt with girls xd -2022-12-04 11:37:30.277551 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 11:37:32.622936 + : pb-JiNJARFTVEVHXFZFE09ZVFNGE0ZXRlRA | CherryBruiser84898|CherryBruiser84898| -2022-12-04 11:37:54.392441 + : pb-IF49U0MCCA== | LevelAccep|भोलू| 😁 -2022-12-04 11:39:56.658087 + : pb-IF49VFQlPA== | PC688281|Ogre| -2022-12-04 11:40:09.057088 + : pb-IF49VFQlPA== | PC688281|Ogre| are wa -2022-12-04 11:40:17.543677 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| what is this ..lol -2022-12-04 11:40:23.457060 + : pb-IF49VFQlPA== | PC688281|Ogre| bohut tej -2022-12-04 11:41:12.592663 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| XD -2022-12-04 11:41:22.337840 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 11:41:25.475687 + : pb-JiNJARFTVEVHXFZFE09ZVFNGE0ZXRlRA | CherryBruiser84898|CherryBruiser84898| -2022-12-04 11:41:36.469267 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| don't know how and why it happened , but funny -2022-12-04 11:41:53.252064 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| rip sahilp server ;-; -2022-12-04 11:41:58.667147 + : pb-IF49VFQlPA== | PC688281|Ogre| sab ida udar bhagre -2022-12-04 11:42:29.586969 + : pb-IF49VFQlPA== | PC688281|Ogre| sahilp abi bi zinda he -2022-12-04 11:42:37.116824 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| ? -2022-12-04 11:42:37.861358 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| why rip ? -2022-12-04 11:42:45.187012 + : pb-IF49VFQlPA== | PC688281|Ogre| han wohito -2022-12-04 11:42:51.910687 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| wo 64 player wala abhi bhi hai? -2022-12-04 11:43:11.407337 + : pb-IF49VFQlPA== | PC688281|Ogre| 64 players ? -2022-12-04 11:43:17.208766 + : pb-IF49VFQlPA== | PC688281|Ogre| wo pata ni -2022-12-04 11:43:20.414658 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| 64 ? umm peaky Blinder bunny server ? -2022-12-04 11:43:31.726672 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| exactly few years ago there was a server with 64 cap -2022-12-04 11:43:43.772641 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| sahilp -2022-12-04 11:43:59.251071 + : pb-IF49VFQlPA== | PC688281|Ogre| sahilp 64 players mene deka hi nai -2022-12-04 11:44:00.989936 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| u met me there right smoothy? -2022-12-04 11:44:21.632421 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| ogre when did u start playing? -2022-12-04 11:44:26.688044 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| don't remember tbh -2022-12-04 11:44:35.829419 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|| -2022-12-04 11:44:49.366953 + : pb-IF49VFQlPA== | PC688281|Ogre| shayad 2019 -2022-12-04 11:44:51.908460 + : pb-IF49VFQlPA== | PC688281|Ogre| yaad ni -2022-12-04 11:44:55.007311 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| i just know your name AJ bunny , -2022-12-04 11:45:07.731005 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| -2022-12-04 11:45:17.742697 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| i played from 2015-2018 then back today :D -2022-12-04 11:45:23.523578 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| felt nostalgic -2022-12-04 11:45:29.187011 + : pb-IF49VFQlPA== | PC688281|Ogre| wow -2022-12-04 11:45:42.243302 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| that was gem of a server -2022-12-04 11:45:46.817154 + : pb-IF49VFQlPA== | PC688281|Ogre| tum kabse kelraho smoothy -2022-12-04 11:45:57.749782 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| idk -2022-12-04 11:45:59.321535 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| bhai MVP wala vohi laao naa pichle wala -2022-12-04 11:46:06.118196 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| 2016 sayad -2022-12-04 11:46:10.668104 + : pb-IF49VFQlPA== | PC688281|Ogre| accha -2022-12-04 11:46:22.102778 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| ha then we met there only smoothy -2022-12-04 11:46:28.177251 + : pb-IF49VFQlPA== | PC688281|Ogre| aap log to seniors ho -2022-12-04 11:46:31.414409 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| it was famous back then -2022-12-04 11:46:45.439257 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| **** -2022-12-04 11:46:45.633228 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| u know atti ka bunny , Sonu !? -2022-12-04 11:46:49.215060 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| that time i played as stu now i m emp 💀 -2022-12-04 11:46:55.166980 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| yes smoothy -2022-12-04 11:47:03.225115 + : pb-IF49VFQlPA== | PC688281|Ogre| i know them too -2022-12-04 11:47:10.501211 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| agar warns 3 baar mil gaye -2022-12-04 11:47:10.501634 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| toh kitni baar join nahi kar paunga? -2022-12-04 11:47:17.457026 + : pb-IF49VFQlPA== | PC688281|Ogre| they used to play back then -2022-12-04 11:47:25.683927 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| atti spelt everything backwards XD -2022-12-04 11:47:35.581125 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| kitni der* -2022-12-04 11:47:50.883695 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| mellow bunny? -2022-12-04 11:48:07.084795 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| server crashed or just me ? -2022-12-04 11:48:12.427073 + : pb-IF49VFQlPA== | PC688281|Ogre| just u -2022-12-04 11:48:16.225273 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| just u XD -2022-12-04 11:48:18.355080 + : pb-IF5dVWgRBg== | Android47745010|『Ꭰᥲᴅᴅʏ』| ops -2022-12-04 11:48:20.054449 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| sad -2022-12-04 11:48:29.238983 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| 😂😂 -2022-12-04 11:48:30.667023 + : pb-IF49VFQlPA== | PC688281|Ogre| how come u got crashed lol -2022-12-04 11:48:36.874123 + : pb-IF5dVWgRBg== | Android47745010|『Ꭰᥲᴅᴅʏ』| sorry -2022-12-04 11:48:37.899088 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| i was asking u know atti ka bunny ,Sonu ... -2022-12-04 11:48:49.624351 + : pb-IF5dVWgRBg== | Android47745010|『Ꭰᥲᴅᴅʏ』| yeah -2022-12-04 11:48:52.277026 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| most probably net issue -2022-12-04 11:48:53.871019 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| end -2022-12-04 11:48:59.844317 + : pb-IF5dVWgRBg== | Android47745010|『Ꭰᥲᴅᴅʏ』| end -2022-12-04 11:49:38.586059 + : pb-IF49VFQlPA== | PC688281|Ogre| han puchrete -2022-12-04 11:49:46.403262 + : pb-IF4UU00MKQ== | Underwate6|Underwate6| one more blue -2022-12-04 11:50:51.418087 + : pb-IF49VFQlPA== | PC688281|Ogre| plz -2022-12-04 11:50:53.748097 + : pb-IF49VFQlPA== | PC688281|Ogre| lol -2022-12-04 11:51:04.039023 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| 😂😂 lol oreo -2022-12-04 11:51:14.372610 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| XD -2022-12-04 11:51:31.501288 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| Oreo tu ladki h 😂 -2022-12-04 11:52:43.394295 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| smooty 🙂 -2022-12-04 11:52:59.599081 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| 🙂🙂 -2022-12-04 11:53:03.261982 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| smoothy🙂 -2022-12-04 11:53:07.411154 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| 🙂🙂🙂🙂🙂🙂 -2022-12-04 11:53:12.083776 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| smoothly* XD -2022-12-04 11:53:20.762919 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| i think it was Swat teams server with 64 players -2022-12-04 11:53:23.948772 + : pb-JiNJARFcV0RFWV1AF0VRVVxKFURWQFBD | InfiniteVa|InfiniteVa| too much crowded -2022-12-04 11:53:37.854387 + : pb-IF4UU00MKQ== | Underwate6|Underwate6| hahaha died cxd -2022-12-04 11:53:42.633121 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| yes it was also there but sahilp teams also hd 64 -2022-12-04 11:53:48.628534 + : pb-IF5dVWgRBg== | Android47745010|『Ꭰᥲᴅᴅʏ』| eyah -2022-12-04 11:54:34.496434 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| F -2022-12-04 11:55:07.821869 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| thnx for the lift -2022-12-04 11:55:13.085932 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| 😂😂 -2022-12-04 11:55:22.364106 + : pb-IF5dVWgRBg== | Android47745010|『Ꭰᥲᴅᴅʏ』| ogre o -2022-12-04 11:55:45.461261 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| ogre😂 -2022-12-04 11:55:57.566819 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| this is buggy -2022-12-04 11:56:05.174771 + : pb-IF4uU3gNKQ== | CKD360|CKD| glitch -2022-12-04 11:56:14.210895 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| lol glitch -2022-12-04 11:56:25.964828 + : pb-IF4uU3gNKQ== | CKD360|CKD| end -2022-12-04 11:56:30.427749 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| end -2022-12-04 11:56:32.421371 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| end -2022-12-04 11:56:58.570767 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| :O -2022-12-04 11:57:10.847272 + : pb-IF49VFQlPA== | PC688281|Ogre| badme ata me -2022-12-04 11:57:22.541284 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| it wasnt this cool ig that time :o -2022-12-04 11:57:48.917475 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| to see coolness , join bcs fun games server -2022-12-04 11:57:56.988655 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| yes i saw that -2022-12-04 11:58:06.987577 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| cant believe what i saw XD -2022-12-04 11:58:20.281226 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| eric froemlimg himself would be ashamed XD -2022-12-04 11:58:46.801106 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| he made game comple open-source , and -2022-12-04 11:58:46.801604 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| so we can do super modding now -2022-12-04 11:59:06.903476 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| wanna se more fun -2022-12-04 11:59:09.993079 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| checkout -2022-12-04 11:59:11.506322 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| sure -2022-12-04 11:59:13.759677 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| noo -2022-12-04 11:59:22.149920 + : pb-IF4uU3gNKQ== | CKD360|CKD| 😁🤣🤣 -2022-12-04 11:59:25.129756 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| lmao -2022-12-04 11:59:32.008521 + : pb-IF4VVWsGIA== | PseudoAttendance18|꧁RBG☬ӁLUCKY ࿐| wtf -2022-12-04 11:59:39.734666 + : pb-IF4uU3gNKQ== | CKD360|CKD| suru hone se oehle khatm kardiyq🤣 -2022-12-04 12:00:08.044233 + : pb-IF4uU3gNKQ== | CKD360|CKD| fly kara sabko smoothy -2022-12-04 12:00:38.910208 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| ok guys i have to fix that flag issue -2022-12-04 12:00:42.785105 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| see ya -2022-12-04 12:00:47.480014 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| byee -2022-12-04 12:00:55.230405 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| :O -2022-12-04 12:00:58.152842 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| dev? -2022-12-04 12:01:01.226774 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| try sahilp server , maybe u find more friends fhere -2022-12-04 12:01:01.841384 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| -2022-12-04 12:01:05.525385 + : pb-IF4uU3gNKQ== | CKD360|CKD| purana mvp wapas lao -2022-12-04 12:01:07.667745 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| AJ -2022-12-04 12:01:21.357028 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| ok it has how many olayers now? 14? -2022-12-04 12:01:28.593242 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| yes 14 -2022-12-04 12:01:32.650469 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| okk -2022-12-04 12:01:42.665045 + : pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH | UKnowMeAJ|AJ| finally met someone i know glad for that -2022-12-04 12:01:59.759518 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| smoothy 😂 firse fast krdo.isme -2022-12-04 12:02:04.638877 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| itna hi fast😂😂 -2022-12-04 12:02:33.131126 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| smoothy😂😂 -2022-12-04 12:02:52.286484 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| ckd😑 -2022-12-04 12:03:03.172163 + : pb-IF4uU3gNKQ== | CKD360|CKD| 😑 -2022-12-04 12:04:22.402815 + : pb-IF4lU0c9Hw== | Android63669053|Budhdha| -2022-12-04 12:04:22.582716 + : pb-IF4lU0c9Hw== | Android63669053|Budhdha| -2022-12-04 12:04:56.347021 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| :) -2022-12-04 12:04:59.564191 + : pb-IF4uU3gNKQ== | CKD360|CKD| 😑 -2022-12-04 12:05:08.530977 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| ckd noob🙂 -2022-12-04 12:05:49.851142 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 😂 -2022-12-04 12:05:56.291871 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| 🙃 -2022-12-04 12:06:25.982293 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 😃 -2022-12-04 12:07:11.977817 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-04 12:07:34.959825 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 🥲 -2022-12-04 12:07:40.529945 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| -2022-12-04 12:07:49.892349 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| hii sisso -2022-12-04 12:08:12.055101 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| hie bruhh -2022-12-04 12:08:39.602101 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| 🤡 how are u -2022-12-04 12:08:40.041389 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| end -2022-12-04 12:08:42.341112 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| end -2022-12-04 12:08:49.854321 + : pb-IF4uU3gNKQ== | CKD360|CKD| fck -2022-12-04 12:08:51.824994 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| fck -2022-12-04 12:08:56.251214 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| 🙃😂 -2022-12-04 12:09:08.723414 + : pb-IF4uU3gNKQ== | CKD360|CKD| end -2022-12-04 12:09:10.730874 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| end -2022-12-04 12:09:12.143628 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| end -2022-12-04 12:09:16.300336 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| I am gud -2022-12-04 12:09:19.265603 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| wbu? -2022-12-04 12:09:35.051332 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| bus Mai bhi badiya 🙃❤️🤡 -2022-12-04 12:10:11.011346 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-04 12:11:15.782648 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| end -2022-12-04 12:11:25.383132 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| end type kro sab fas fas -2022-12-04 12:11:33.931251 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| hi -2022-12-04 12:11:37.014374 + : pb-IF4uU3gNKQ== | CKD360|CKD| end -2022-12-04 12:11:46.086753 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| end -2022-12-04 12:12:39.092766 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| ckd ky hua -2022-12-04 12:13:08.104389 + : pb-IF4uU3gNKQ== | CKD360|CKD| kuch nhi reh commands check kr rha -2022-12-04 12:13:16.983269 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| acha -2022-12-04 12:14:35.831310 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| Sagar tujhe kuch dikh raha ?? -2022-12-04 12:14:42.744521 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| mere msgs to ckd -2022-12-04 12:14:45.495722 + : pb-IF4vVUNfEA== | sagar88822|🚩SAGARBHAU🚩| kya re -2022-12-04 12:15:01.325726 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| nahi bhai -2022-12-04 12:15:02.536153 + : pb-IF4vVUNfEA== | sagar88822|🚩SAGARBHAU🚩| ha tere msg dikh rahehe -2022-12-04 12:15:13.001233 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| konse dikhe ?? -2022-12-04 12:15:21.542119 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| abhi dek firse likh raha -2022-12-04 12:15:22.885825 + : pb-IF4vVUNfEA== | sagar88822|🚩SAGARBHAU🚩| xxx wale -2022-12-04 12:15:27.551181 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| dikh rha kya bol -2022-12-04 12:15:44.853483 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| nahi -2022-12-04 12:15:51.037375 + : pb-IF4uU3gNKQ== | CKD360|CKD| sagar blue me hai? -2022-12-04 12:15:51.808107 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| hi -2022-12-04 12:15:57.172716 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| abhi kuch dikha kya maine ckd ko likha kuch -2022-12-04 12:15:57.640982 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| nahi red -2022-12-04 12:16:00.397308 + : pb-IF4uU3gNKQ== | CKD360|CKD| sagar bhau -2022-12-04 12:16:03.145922 + : pb-IF4vVUNfEA== | sagar88822|🚩SAGARBHAU🚩| ha re kase kiya -2022-12-04 12:16:10.161173 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| wtf -2022-12-04 12:16:19.483781 + : pb-IF4uU3gNKQ== | CKD360|CKD| sagar rathire tujhe dikha? -2022-12-04 12:16:23.763379 + : pb-IF4uU3gNKQ== | CKD360|CKD| rathore -2022-12-04 12:16:31.801849 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| nahi -2022-12-04 12:16:53.391356 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| rose sunn -2022-12-04 12:16:56.751531 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| oyee -2022-12-04 12:17:00.678373 + : pb-IF4uU3gNKQ== | CKD360|CKD| ok..ye only teamates ko dikh rha -2022-12-04 12:17:29.506139 + : pb-IF4vVUNfEA== | sagar88822|🚩SAGARBHAU🚩| abe kase kiya tune -2022-12-04 12:17:45.481258 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| hii -2022-12-04 12:17:55.045936 + : pb-IF4vVUNfEA== | sagar88822|🚩SAGARBHAU🚩| me बाप हू -2022-12-04 12:18:05.072971 + : pb-IF4lU0c9Hw== | Android63669053|Budhdha| -2022-12-04 12:18:05.252681 + : pb-IF4lU0c9Hw== | Android63669053|Budhdha| -2022-12-04 12:18:11.331269 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| dikha Sagar ?? -2022-12-04 12:18:37.930028 + : pb-IF40UncaLg== | TiredShift|🄰🄶🄴🄽🅃 🄷🅄| 0 -2022-12-04 12:18:51.391284 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| १ -2022-12-04 12:19:41.452535 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| nahi -2022-12-04 12:19:59.201793 + : pb-IF4uU3gNKQ== | CKD360|CKD| gay sala -2022-12-04 12:20:04.951445 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| 🤡🤡 -2022-12-04 12:20:10.157736 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| ckd mene tere ko kuch lika diaka kya tere ko -2022-12-04 12:20:48.217305 + : pb-IF4uU3gNKQ== | CKD360|CKD| nahi dikha sagr -2022-12-04 12:20:53.726281 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| acha -2022-12-04 12:20:56.047630 + : pb-IF4SEHAl | bisht4189|Rose| abe choootoya -2022-12-04 12:21:18.077322 + : pb-IF4uU3gNKQ== | CKD360|CKD| tu red me hai na..toh sayd red team ko he dikhega -2022-12-04 12:21:28.638763 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| ha bhai -2022-12-04 12:22:05.592300 + : pb-IF4uU3gNKQ== | CKD360|CKD| speed control sirf admin kr skta -2022-12-04 12:22:13.678257 + : pb-IF4VVWsGIA== | PseudoAttendance18|Captain J D/S| oh -2022-12-04 12:22:21.720370 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| acha -2022-12-04 12:22:52.506822 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| rose bhai betray kyu kr rahe ho -2022-12-04 12:23:36.623393 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| ***** fate toh fate kala **** ki nawabi naa hatte -2022-12-04 12:24:03.922892 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| kala kon ha -2022-12-04 12:24:34.641532 + : pb-IF4jU04xLQ== | SahilRisingStar0920|Chunk| teri Amma chodi thi uss din **** Jo tu -2022-12-04 12:24:34.642130 + : pb-IF4jU04xLQ== | SahilRisingStar0920|Chunk| paida hogya protection use kr lena chaiye thaa -2022-12-04 12:24:39.747278 + : pb-IF4uU3gNKQ== | CKD360|CKD| kala ko almost ban hogya -2022-12-04 12:25:01.995316 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| ha ckd -2022-12-04 12:26:14.013455 + : pb-IF4jU04xLQ== | SahilRisingStar0920|Chunk| chaar chavani gode pe nugget mere l pe -2022-12-04 12:26:49.079206 + : pb-IF4jU04xLQ== | SahilRisingStar0920|Chunk| chodi chodi krunga 😂 -2022-12-04 12:27:36.888810 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| are chunk me ye puch ra tha ki kala l abhi yaha pe konse name se khel.ra h -2022-12-04 12:27:51.692526 + : pb-IF4jU04xLQ== | SahilRisingStar0920|Chunk| broo tu apni maa mat ****** yaha aake nahi -2022-12-04 12:27:51.696369 + : pb-IF4jU04xLQ== | SahilRisingStar0920|Chunk| toh sab teri maa kke choot pe boni lagayenge -2022-12-04 12:28:18.252877 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| chunk to nada nahi bol ra -2022-12-04 12:28:35.721201 + : pb-IF4jU04xLQ== | SahilRisingStar0920|Chunk| 🤡🙂 -2022-12-04 12:29:25.619273 + : pb-IF4jU04xLQ== | SahilRisingStar0920|Chunk| -2022-12-04 12:29:29.180943 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| chunk betray mt kr -2022-12-04 12:29:32.853205 + : pb-IF4jU04xLQ== | SahilRisingStar0920|Chunk| -2022-12-04 12:29:52.436990 + : pb-IF5SVBJTIQ== | vj1481|| kick -2022-12-04 12:29:58.812132 + : pb-IF5SVBJTIQ== | vj1481|| press 1 -2022-12-04 12:31:16.346101 + : pb-IF4vVUNfEA== | sagar88822|🚩SAGARBHAU🚩| -2022-12-04 12:31:16.535994 + : pb-IF4vVUNfEA== | sagar88822|🚩SAGARBHAU🚩| -2022-12-04 12:31:16.706138 + : pb-IF4vVUNfEA== | sagar88822|🚩SAGARBHAU🚩| -2022-12-04 12:31:16.845907 + : pb-IF4vVUNfEA== | sagar88822|🚩SAGARBHAU🚩| -2022-12-04 12:32:27.038094 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| red team chunk betray kr rah h isko kick kro nhi to m bhi karunga -2022-12-04 12:32:42.219335 + : pb-IF4jU04xLQ== | SahilRisingStar0920|Chunk| 0 -2022-12-04 12:32:54.044610 + : pb-IF4jU04xLQ== | SahilRisingStar0920|Chunk| kr kr Sagar kr -2022-12-04 12:35:08.588685 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| 0 -2022-12-04 12:35:22.856447 + : pb-IF4uU3gNKQ== | CKD360|CKD| ₩Ⱨł₮Ɇ kya re🥲 -2022-12-04 12:35:31.731225 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| mar gaya hai kya -2022-12-04 12:35:37.349006 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| kuch kar -2022-12-04 12:35:38.974324 + : pb-IF4uU3gNKQ== | CKD360|CKD| 😁 -2022-12-04 12:35:58.338231 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| bhaio red team please kick chunk -2022-12-04 12:36:08.087187 + : pb-IF4jU04xLQ== | SahilRisingStar0920|Chunk| -2022-12-04 12:37:34.042064 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 12:37:35.066165 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 12:37:36.163981 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 12:37:39.644525 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| 1 -2022-12-04 12:40:43.291209 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| bruh -2022-12-04 12:42:01.511897 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| mujhe uper feko -2022-12-04 12:43:50.171399 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| bhai ye kya hai🥺 -2022-12-04 12:44:01.798173 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| ultra fast soccer -2022-12-04 12:44:38.604536 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 12:45:06.183655 + : pb-IF4IV04ZKw== | paratròóper|Baabla| aj simmy ni aayi ?! 😂🤣 -2022-12-04 12:45:07.896641 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| kisne vote start Kiya wo bhi smjta hai aab😂😂 -2022-12-04 12:45:13.146797 + : pb-IF4uU3gNKQ== | CKD360|CKD| 🤣🤣 -2022-12-04 12:45:14.876713 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| ha😂 -2022-12-04 12:45:22.119087 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| haa🙂😂😂 -2022-12-04 12:45:24.184364 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| l lag gaye -2022-12-04 12:45:36.089576 + : pb-IF4IV04ZKw== | paratròóper|Baabla| op -2022-12-04 12:45:44.498311 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| sahil ye character kha se liye?? -2022-12-04 12:45:45.227161 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| are ye bcs teams hai ??? mujhe laga bcs fun games bruhhh🤣 -2022-12-04 12:45:58.067064 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| lol😂😂 -2022-12-04 12:45:59.840268 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 💀 -2022-12-04 12:46:00.807664 + : pb-IF4uU3gNKQ== | CKD360|CKD| char sb unlock b -2022-12-04 12:46:20.566527 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| thunder Easter per available rehta hai limited time me liye -2022-12-04 12:46:30.755329 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| limited -2022-12-04 12:46:31.936129 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| bhai me Kab aaya Kab mra🤨 -2022-12-04 12:46:33.577040 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| ** -2022-12-04 12:46:43.111093 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| nahi sorry Easter per to bunny milta hai -2022-12-04 12:46:47.922882 + : pb-IF5SVBJTIQ== | vj1481|buddha| jab tu bcs fun ke baare mein soch rha tha -2022-12-04 12:46:48.208073 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| :') -2022-12-04 12:46:50.186495 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| cristmas per santa -2022-12-04 12:46:51.175467 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| koi Gali mat Dena.. sidha nikal deta hai ye -2022-12-04 12:47:00.531562 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| ha 🥲🥲 -2022-12-04 12:47:00.753400 + : pb-IF4IV04ZKw== | paratròóper|Baabla| maine bhi abhi khareeda.. to easter -2022-12-04 12:47:00.753920 + : pb-IF4IV04ZKw== | paratròóper|Baabla| se thoda pehle milta i gues -2022-12-04 12:47:02.257521 + : pb-IF40UncaLg== | TiredShift|TiredShift| bruh -2022-12-04 12:47:06.918317 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| omk white -2022-12-04 12:47:07.601080 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| bhai tu bomb se koi b -2022-12-04 12:47:07.602389 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| character le skta abh 😂 thunder -2022-12-04 12:47:32.737700 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| thik thik -2022-12-04 12:47:33.147408 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| muze nikal diya tha bisi🥺 -2022-12-04 12:47:39.443668 + : pb-IF4SEHAl | bisht4189|Rose| bruh -2022-12-04 12:47:40.064772 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| ticket hi ni he🥲 -2022-12-04 12:47:43.156395 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| chilling time!!😎 -2022-12-04 12:47:45.479079 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| bichara fadanvis ,😂😂 -2022-12-04 12:47:53.070487 + : pb-IF4uU3gNKQ== | CKD360|CKD| arey server upgrade hogya -2022-12-04 12:47:55.488261 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| fadvis tum harami ho isiliye🙂 -2022-12-04 12:47:57.571410 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| thunder bija ticket k le skta 🙂 -2022-12-04 12:48:03.853927 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| have a good day.. goodbye kiya mereko😂 -2022-12-04 12:48:05.478014 + : pb-IF4uU3gNKQ== | CKD360|CKD| bomb button press kr join karte waqt -2022-12-04 12:48:08.581114 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| Abe btaaa kha pe hee -2022-12-04 12:48:15.356551 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| jaldi btao jaldi -2022-12-04 12:48:15.511269 + : pb-IF4IV04ZKw== | paratròóper|Baabla| funrvees gaali to de skte h.. ye dekh.. chadarmod.. -2022-12-04 12:48:15.511548 + : pb-IF4IV04ZKw== | paratròóper|Baabla| lan ka boda.. feker.. seck my kick ! 😂🤣 -2022-12-04 12:48:17.391096 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| Bhaii left krr thunder -2022-12-04 12:48:18.572213 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| I'm dumdum -2022-12-04 12:48:21.892368 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| ha fir -2022-12-04 12:48:25.788780 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| Haa bisi -2022-12-04 12:48:31.416797 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| chumtiya -2022-12-04 12:48:32.247083 + : pb-IF4uU3gNKQ== | CKD360|CKD| join krte waqt charc choose jb krega bomb button press krna -2022-12-04 12:48:45.051189 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| fir uske baad character select krta naa bomb se vo krr -2022-12-04 12:48:45.745762 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| are acha mtlab permanent nhi he🥲 -2022-12-04 12:48:55.686753 + : pb-IF4uU3gNKQ== | CKD360|CKD| nahi..only 4 dis server -2022-12-04 12:49:01.555487 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 🥲🥲 -2022-12-04 12:49:01.899200 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| nahi😂😂 only for this server -2022-12-04 12:50:05.986503 + : pb-IF40UncaLg== | TiredShift|TiredShift| hi fadu -2022-12-04 12:50:26.689477 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| are fadvis😂 -2022-12-04 12:50:35.388628 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| fun🤣 -2022-12-04 12:50:36.101058 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| baabla Teri baabli kaha hai -2022-12-04 12:50:42.130097 + : pb-IF4DVW4HFA== | Android48907943|ishA ki chut| -2022-12-04 12:50:42.310765 + : pb-IF4DVW4HFA== | Android48907943|ishA ki chut| -2022-12-04 12:50:43.375618 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| j baat -2022-12-04 12:50:50.640892 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| free me chat lo -2022-12-04 12:51:04.164331 + : pb-IF40UncaLg== | TiredShift|TiredShift| hifadu -2022-12-04 12:51:05.277431 + : pb-IF4IV04ZKw== | paratròóper|Baabla| meri zip mein -2022-12-04 12:51:16.108953 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| hii aaru -2022-12-04 12:51:29.523424 + : pb-IF40UncaLg== | TiredShift|TiredShift| 😘😘 -2022-12-04 12:51:33.496790 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| demn -2022-12-04 12:51:37.180205 + : pb-IF4DVW4HFA== | Android48907943|ishA ki chut| -2022-12-04 12:51:37.369682 + : pb-IF4DVW4HFA== | Android48907943|ishA ki chut| -2022-12-04 12:51:43.677984 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 12:51:57.808571 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| kala tum ban nahi hua abhi tak? -2022-12-04 12:52:11.305449 + : pb-IF4DVW4HFA== | Android48907943|ishA ki chut| kon kala? -2022-12-04 12:52:14.045542 + : pb-IF4IV04ZKw== | paratròóper|Baabla| nc -2022-12-04 12:52:14.725509 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| 💀 -2022-12-04 12:52:41.808481 + : pb-IF40UncaLg== | TiredShift|TiredShift| isha ** -2022-12-04 12:52:56.385476 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|| kitna besharm insaan hai re ye -2022-12-04 12:53:03.747211 + : pb-IF40UncaLg== | TiredShift|TiredShift| isha -2022-12-04 12:53:16.055431 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| kon -2022-12-04 12:53:18.244875 + : pb-IF4DVW4HFA== | Android48907943|ishA ki chut| isha to lwdi h meri 🥲 -2022-12-04 12:53:29.846990 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|| kyu aajata baar baar , kick -2022-12-04 12:53:29.847500 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|| hone k baad bhi sharm nahi -2022-12-04 12:53:39.779235 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| smoothy? -2022-12-04 12:53:41.120029 + : pb-IF4DVW4HFA== | Android48907943|ishA ki chut| Mera server lwde -2022-12-04 12:53:44.618091 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| is that u.. -2022-12-04 12:53:47.760239 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|| tera ? -2022-12-04 12:53:53.920902 + : pb-IF4DVW4HFA== | Android48907943|ishA ki chut| to ? -2022-12-04 12:54:03.813890 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|| ye tera server hai ? -2022-12-04 12:54:11.513176 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|| majak bhi kerna lga -2022-12-04 12:54:14.317980 + : pb-IF4DVW4HFA== | Android48907943|ishA ki chut| mader**** kick to formalities h smjha 🥲 -2022-12-04 12:54:28.422687 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|| ban hi hoke mAngea -2022-12-04 12:54:35.626918 + : pb-IF40UncaLg== | TiredShift|TiredShift| speed badha fir -2022-12-04 12:54:41.232497 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 12:54:41.540963 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 12:54:49.596578 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| are bisi -2022-12-04 12:55:54.937278 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 12:55:55.203042 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 12:55:57.032695 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| Mera banda kud hi ni rha -2022-12-04 12:56:36.152883 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 12:56:36.191552 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| abe -2022-12-04 12:56:39.368589 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| hah -2022-12-04 12:57:04.008617 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 12:57:04.156364 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 12:57:04.323647 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 12:57:26.074261 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 12:57:42.858937 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| saalaa -2022-12-04 12:57:44.447768 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 12:57:44.634901 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 12:57:58.875396 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 🥲 -2022-12-04 12:58:05.238176 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 12:58:48.541007 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 12:58:49.641441 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-04 12:58:49.783673 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-04 12:58:51.391427 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| fk -2022-12-04 12:58:51.886728 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| -2022-12-04 12:58:52.042681 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| -2022-12-04 12:59:01.443858 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-04 12:59:02.829001 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 12:59:12.061523 + : pb-IF4IV04ZKw== | paratròóper|Baabla| MIKEJV007 where did u get this dresss frm -2022-12-04 13:00:36.710210 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 13:00:42.671972 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| my teammates are dumb -2022-12-04 13:00:55.235339 + : pb-IF4TU0oFAQ== | FamousImprovement43|SPY🔎| -2022-12-04 13:00:56.232605 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 13:01:08.780872 + : pb-IF4IV04ZKw== | paratròóper|Baabla| i m also dumb.. thnks -2022-12-04 13:01:19.025270 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 13:02:59.724988 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| *** -2022-12-04 13:03:10.723685 + : pb-IF4IV04ZKw== | paratròóper|Baabla| nc -2022-12-04 13:03:14.645769 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| -2022-12-04 13:03:14.830961 + : pb-IF4TU0oFAQ== | FamousImprovement43|SPY🔎| -2022-12-04 13:03:14.842693 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| -2022-12-04 13:03:14.987162 + : pb-IF4TU0oFAQ== | FamousImprovement43|SPY🔎| -2022-12-04 13:03:15.176966 + : pb-IF4TU0oFAQ== | FamousImprovement43|SPY🔎| -2022-12-04 13:03:15.296438 + : pb-IF4TU0oFAQ== | FamousImprovement43|SPY🔎| -2022-12-04 13:03:15.598157 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| hc -2022-12-04 13:03:17.149421 + : pb-IF5QKnNb | LoadedMart|BONGYA| -2022-12-04 13:03:17.351402 + : pb-IF5QKnNb | LoadedMart|BONGYA| -2022-12-04 13:03:17.508998 + : pb-IF5QKnNb | LoadedMart|BONGYA| -2022-12-04 13:03:17.648683 + : pb-IF5QKnNb | LoadedMart|BONGYA| -2022-12-04 13:03:20.096927 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| kick -2022-12-04 13:03:22.791112 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| type 1 -2022-12-04 13:03:44.577780 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| hah -2022-12-04 13:04:11.367778 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| 😅 -2022-12-04 13:05:13.932166 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| fk u shield guy -2022-12-04 13:05:32.397218 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| ha saaale saara shield lele -2022-12-04 13:06:05.305109 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| mf jio -2022-12-04 13:06:06.325707 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| stop -2022-12-04 13:06:13.616728 + : pb-IF4IV04ZKw== | paratròóper|Baabla| he is fundvees.. he plays well even widout sh3ild -2022-12-04 13:06:36.437141 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| no stop solo elimination round so boring -2022-12-04 13:06:52.379303 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| idts -2022-12-04 13:06:58.168791 + : pb-IF5QKnNb | LoadedMart|Rico| -2022-12-04 13:06:58.326977 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| end -2022-12-04 13:07:03.625901 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| end -2022-12-04 13:07:08.986600 + : pb-IF4BVUw-Dg== | ashikroyal|GTR_crookZ_| end -2022-12-04 13:07:24.201833 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| end -2022-12-04 13:07:45.531047 + : pb-IF4IV04ZKw== | paratròóper|Baabla| there he flies -2022-12-04 13:08:01.679143 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| fun play -2022-12-04 13:08:23.960816 + : pb-IF4MVU4vLw== | QuixoticEmpire16345|Benji| ******* -2022-12-04 13:08:35.076925 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| noob -2022-12-04 13:08:54.753873 + : pb-IF4IV04ZKw== | paratròóper|Baabla| jb maar pdti h to sb -2022-12-04 13:08:54.754121 + : pb-IF4IV04ZKw== | paratròóper|Baabla| noob hi lagte h baaki k -2022-12-04 13:08:55.315899 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| lol -2022-12-04 13:09:12.003570 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| lmao -2022-12-04 13:09:34.524417 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| bruh -2022-12-04 13:09:48.795539 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| even i am noob😂😂 -2022-12-04 13:10:02.238414 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| who is bcs? -2022-12-04 13:10:27.301838 + : pb-IF4BVUw-Dg== | ashikroyal|GTR_crookZ_| end -2022-12-04 13:10:34.561575 + : pb-IF4pVHAlKw== | UndtedSirw|꧁༒☠RockyBhai☠︎༒꧂| end -2022-12-04 13:10:36.701281 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| babla op -2022-12-04 13:11:12.035625 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| 🍉play -2022-12-04 13:11:56.134413 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| wow -2022-12-04 13:11:57.780377 + : pb-IF4IV04ZKw== | paratròóper|Baabla| lag lllol -2022-12-04 13:12:11.379821 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| 😂 -2022-12-04 13:12:14.833145 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| 😅 -2022-12-04 13:12:21.449472 + : pb-IF4IV04ZKw== | paratròóper|Baabla| white thnks -2022-12-04 13:12:41.208762 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| guys type something with , in prefix -2022-12-04 13:12:45.621540 + : pb-IF4IV04ZKw== | paratròóper|Baabla| rico cud be dangerous wid shield.. kill him asap -2022-12-04 13:13:05.542166 + : pb-IF4BVUw-Dg== | ashikroyal|GTR_crookZ_| end -2022-12-04 13:13:07.559996 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-04 13:13:07.727161 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-04 13:13:19.448719 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| -2022-12-04 13:13:19.677418 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| -2022-12-04 13:13:35.341208 + : pb-IF4IV04ZKw== | paratròóper|Baabla| i typed. it doesnt appesr in chat -2022-12-04 13:13:49.569514 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| yea but it appeared to me -2022-12-04 13:13:53.174654 + : pb-IF4IV04ZKw== | paratròóper|Baabla| did u get my 'hello" msg -2022-12-04 13:13:57.062070 + : pb-IF4IV04ZKw== | paratròóper|Baabla| ohh ok -2022-12-04 13:13:58.688181 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| yes i did -2022-12-04 13:13:59.465486 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| end -2022-12-04 13:14:02.025011 + : pb-IF4IV04ZKw== | paratròóper|Baabla| wow -2022-12-04 13:14:07.898290 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| bro this glitch map -2022-12-04 13:14:08.158517 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| end press kari -2022-12-04 13:14:12.147218 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| end -2022-12-04 13:14:13.645024 + : pb-IF4IV04ZKw== | paratròóper|Baabla| nw u send something -2022-12-04 13:14:14.408800 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| end -2022-12-04 13:14:15.629722 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| end -2022-12-04 13:14:20.965839 + : pb-IF49Umo-Fg== | PATLU517|PATLU517| end -2022-12-04 13:14:29.736477 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| ye Zande ki Maa ka bhosda -2022-12-04 13:14:38.679825 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| sare samajdar log end press kare -2022-12-04 13:14:50.696547 + : pb-IF4IV04ZKw== | paratròóper|Baabla| -2022-12-04 13:14:51.162530 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| enddddddddd -2022-12-04 13:14:55.639097 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| end -2022-12-04 13:15:03.775218 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| did u get my msg -2022-12-04 13:15:07.501883 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| ? -2022-12-04 13:15:22.014082 + : pb-IF4IV04ZKw== | paratròóper|Baabla| no -2022-12-04 13:15:32.090830 + : pb-IF4pVHAlKw== | UndtedSirw|꧁༒☠RockyBhai☠︎༒꧂| mein flag nahi uta pa rha -2022-12-04 13:15:36.144109 + : pb-IF4IV04ZKw== | paratròóper|Baabla| ur last msg was 'end' -2022-12-04 13:15:43.897577 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| end -2022-12-04 13:15:47.210819 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| end -2022-12-04 13:15:50.844695 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| end -2022-12-04 13:15:51.224397 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| end -2022-12-04 13:15:55.275057 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| end press kr phir uth jayga flag -2022-12-04 13:15:56.888190 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| end -2022-12-04 13:15:58.183411 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| end -2022-12-04 13:16:11.769439 + : pb-IF4IV04ZKw== | paratròóper|Baabla| cmon blu -2022-12-04 13:16:31.516554 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 13:16:34.825102 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| are yaar -2022-12-04 13:16:35.170836 + : pb-IF4pVHAlKw== | UndtedSirw|꧁༒☠RockyBhai☠︎༒꧂| abhi rocky bhai aa gya na...blue jeetega -2022-12-04 13:16:45.084811 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| babla phir se msg karo -2022-12-04 13:16:55.482597 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| tumhara aaraha hai but Mera nahi jaa raha -2022-12-04 13:17:16.464584 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| tumhare screen per popup hoga chat mai nahi -2022-12-04 13:17:25.462788 + : pb-IF4IV04ZKw== | paratròóper|Baabla| fir krna ek bar -2022-12-04 13:17:37.760373 + : pb-IF4IV04ZKw== | paratròóper|Baabla| ya green mein aya -2022-12-04 13:19:18.204670 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| 😂😂 -2022-12-04 13:19:26.301448 + : pb-IF4OU2QjMQ== | DEVTA9|Arvind Kejriwal| BCS -2022-12-04 13:19:35.469750 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| -2022-12-04 13:19:35.620002 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| -2022-12-04 13:19:43.988509 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 13:19:44.199597 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 13:19:48.170550 + : pb-IF4IV04ZKw== | paratròóper|Baabla| ghnta go haha -2022-12-04 13:20:41.406141 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| 🍉🤣🤣 -2022-12-04 13:20:54.388069 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 13:21:22.581817 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| ook -2022-12-04 13:21:28.031452 + : pb-IF4pVHAlKw== | UndtedSirw|꧁༒☠RockyBhai☠︎༒꧂| -2022-12-04 13:21:33.886105 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| kitna bhagta hai -2022-12-04 13:21:34.480581 + : pb-IF4IV04ZKw== | paratròóper|Baabla| gud fite agent -2022-12-04 13:22:13.289793 + : pb-IF4IV04ZKw== | paratròóper|Baabla| sry rocky -2022-12-04 13:22:25.484711 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| yes -2022-12-04 13:22:34.021485 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| your site never works -2022-12-04 13:22:42.493778 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| and UNBAN MY FKIN ID -2022-12-04 13:22:49.135281 + : pb-IF4RU3QoXQ== | Android62576681|AR| -2022-12-04 13:23:06.404922 + : pb-IF4RU3QoXQ== | Android62576681|AR| -2022-12-04 13:23:07.435022 + : pb-IF4RU3QoXQ== | Android62576681|AR| -2022-12-04 13:23:10.076908 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| -2022-12-04 13:23:10.274719 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| -2022-12-04 13:23:10.426686 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| -2022-12-04 13:23:10.612147 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| -2022-12-04 13:23:10.830409 + : pb-IF4NU0cpFw== | ModalHandle23|ModalHandle23| wtf? -2022-12-04 13:23:14.495054 + : pb-IF4RU3QoXQ== | Android62576681|AR| -2022-12-04 13:23:15.584103 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| in some game u has increased speed more -2022-12-04 13:23:20.044941 + : pb-IF4RU3QoXQ== | Android62576681|AR| kick bcs -2022-12-04 13:23:29.618049 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| bcs fun games "stats" one -2022-12-04 13:23:45.274855 + : pb-IF4RU3QoXQ== | Android62576681|AR| make this server as it was -2022-12-04 13:23:51.867245 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| end -2022-12-04 13:23:52.505132 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| lol -2022-12-04 13:23:53.045048 + : pb-IF4RU3QoXQ== | Android62576681|AR| we don't like this. ew avataar -2022-12-04 13:23:55.148028 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| end -2022-12-04 13:23:58.523031 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| end -2022-12-04 13:23:59.795179 + : pb-IF4RU3QoXQ== | Android62576681|AR| end -2022-12-04 13:24:03.153594 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| end -2022-12-04 13:24:25.222858 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| team fight will be fun -2022-12-04 13:24:28.907773 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| end -2022-12-04 13:24:32.878059 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| end -2022-12-04 13:24:35.115767 + : pb-IF4IV04ZKw== | paratròóper|Baabla| BCS 1st peove dat u r admin -2022-12-04 13:24:39.393850 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| end -2022-12-04 13:24:42.376317 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| stable the speed as it was earlier -2022-12-04 13:24:44.116811 + : pb-IF4IV04ZKw== | paratròóper|Baabla| den ask for feedbck -2022-12-04 13:24:46.265269 + : pb-IF4RU3QoXQ== | Android62576681|AR| bcs **** off -2022-12-04 13:24:54.945473 + : pb-IF4RU3QoXQ== | Android62576681|AR| bhen ke ***** -2022-12-04 13:24:56.201210 + : pb-IF4IV04ZKw== | paratròóper|Baabla| prove dat u r admin -2022-12-04 13:25:17.209089 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| smoothy bruh read my msg -2022-12-04 13:25:51.075349 + : pb-IF4IV04ZKw== | paratròóper|Baabla| bcs.. r u admin ? -2022-12-04 13:26:16.561051 + : pb-IF4IV04ZKw== | paratròóper|Baabla| ok. pls prove.. with all due respect -2022-12-04 13:26:26.422002 + : pb-IF4IV04ZKw== | paratròóper|Baabla| den we wil share feedbck and bugs -2022-12-04 13:26:31.128722 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| yess bcs -2022-12-04 13:26:58.580794 + : pb-IF4IV04ZKw== | paratròóper|Baabla| even i cn do that.. by changin name -2022-12-04 13:27:18.125801 + : pb-IF4IV04ZKw== | paratròóper|Baabla| pls provide more evidence. pls -2022-12-04 13:27:40.409317 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| abe keju+#+₹+₹-+₹(# -2022-12-04 13:28:08.490658 + : pb-IF4NU0cpFw== | ModalHandle23|ModalHandle23| he is the admin guys no doubt -2022-12-04 13:28:22.550891 + : pb-IF4pVHAlKw== | UndtedSirw|꧁༒☠RockyBhai☠︎༒꧂| -2022-12-04 13:28:22.840895 + : pb-IF4pVHAlKw== | UndtedSirw|꧁༒☠RockyBhai☠︎༒꧂| -2022-12-04 13:28:32.429910 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| yess admin this mode intresting -2022-12-04 13:28:42.425630 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 13:28:42.637232 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 13:28:52.224141 + : pb-IF4IV04ZKw== | paratròóper|Baabla| turn again.. pls i did nt see -2022-12-04 13:29:04.061510 + : pb-IF4OU2QjMQ== | DEVTA9|Arvind Kejriwal| BCS please make it as it was -2022-12-04 13:29:05.431762 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| sagar **** -2022-12-04 13:29:07.874602 + : pb-IF4IV04ZKw== | paratròóper|Baabla| cz shrutisom also came wid same icon -2022-12-04 13:29:22.680278 + : pb-IF4IV04ZKw== | paratròóper|Baabla| GinormousD see.. him also -2022-12-04 13:29:24.207614 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 13:29:46.538940 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 13:29:53.762405 + : pb-IF4OU2QjMQ== | DEVTA9|Arvind Kejriwal| u have changed the whole server -2022-12-04 13:29:56.570614 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| white😅🤣 -2022-12-04 13:30:06.462489 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| 😎 -2022-12-04 13:30:08.652604 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| -2022-12-04 13:30:08.835651 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| -2022-12-04 13:30:08.985059 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| -2022-12-04 13:30:09.175729 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| -2022-12-04 13:30:17.810054 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 13:30:18.203821 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 13:30:38.580496 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| fk -2022-12-04 13:30:50.532026 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| bcs all game are intresting. only speed problem -2022-12-04 13:30:59.363148 + : pb-IF4IV04ZKw== | paratròóper|Baabla| id u r realy admin.. then u must knw. that -2022-12-04 13:30:59.363626 + : pb-IF4IV04ZKw== | paratròóper|Baabla| whole server has turned to sh1t nw... pls rollbck the changes -2022-12-04 13:31:13.713587 + : pb-IF4IV04ZKw== | paratròóper|Baabla| if u r* -2022-12-04 13:31:24.381440 + : pb-IF4OU2QjMQ== | DEVTA9|Arvind Kejriwal| yes -2022-12-04 13:31:35.012291 + : pb-IF4IV04ZKw== | paratròóper|Baabla| we used to love d "before" server -2022-12-04 13:31:35.481575 + : pb-IF4OU2QjMQ== | DEVTA9|Arvind Kejriwal| please make it to the old one -2022-12-04 13:32:03.509166 + : pb-IF4IV04ZKw== | paratròóper|Baabla| to begin wid.. remove dat penalty shootouts -2022-12-04 13:32:12.595249 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| abe saaale keju -2022-12-04 13:32:31.281864 + : pb-IF4OU2QjMQ== | DEVTA9|Arvind Kejriwal| yes -2022-12-04 13:33:00.146526 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 13:33:00.329510 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 13:33:00.506007 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 13:33:21.846994 + : pb-IF4IV04ZKw== | paratròóper|Baabla| remove d abuse filter.. so that players -2022-12-04 13:33:21.847563 + : pb-IF4IV04ZKw== | paratròóper|Baabla| can atleast vent tout on whosoever is betraying -2022-12-04 13:33:33.119908 + : pb-IF4IV04ZKw== | paratròóper|Baabla| mvp screen is fine -2022-12-04 13:34:15.742485 + : pb-IF4IV04ZKw== | paratròóper|Baabla| ok. shootouts fixed.. ok thnks -2022-12-04 13:34:26.453308 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 13:34:26.615434 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 13:34:26.807619 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 13:34:27.561876 + : pb-IF4OU2QjMQ== | DEVTA9|Arvind Kejriwal| yeah right -2022-12-04 13:34:35.048485 + : pb-IF4IV04ZKw== | paratròóper|Baabla| every1 tel.. that abuse filter shud -2022-12-04 13:34:35.048981 + : pb-IF4IV04ZKw== | paratròóper|Baabla| turn off.. we r fine wid it -2022-12-04 13:34:38.972895 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| f -2022-12-04 13:34:56.853872 + : pb-IF4nUxE4Nw== | Android60071137|john wick| white😂 -2022-12-04 13:35:01.525314 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| type 1 for a free cookie -2022-12-04 13:35:01.594775 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| 0 -2022-12-04 13:35:05.897113 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| end -2022-12-04 13:35:12.206861 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| end -2022-12-04 13:35:16.373501 + : pb-IF4IV04ZKw== | paratròóper|Baabla| yr.. fir mzA kha rehta.. abuse na ho to -2022-12-04 13:35:16.728403 + : pb-IF4nUxE4Nw== | Android60071137|john wick| 1 -2022-12-04 13:35:18.116130 + : pb-IF43VEQYAw== | DeadlyFly63846|SURENDRA| end -2022-12-04 13:35:18.246864 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| TYPE 1 FOR A FREE COOKIE 🍪 -2022-12-04 13:35:19.285545 + : pb-IF4nUxE4Nw== | Android60071137|john wick| end -2022-12-04 13:35:24.034136 + : pb-IF4IV04ZKw== | paratròóper|Baabla| 2 -2022-12-04 13:35:28.693883 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| y'all are just kids -2022-12-04 13:35:36.967924 + : pb-IF4IV04ZKw== | paratròóper|Baabla| i want 2 free cookies 😂🤣 -2022-12-04 13:35:40.645364 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| except those who actually typed -2022-12-04 13:35:45.990469 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-04 13:35:49.496875 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| ho jaayega😏 -2022-12-04 13:36:07.001310 + : pb-IF4OU2QjMQ== | DEVTA9|Arvind Kejriwal| lol -2022-12-04 13:36:11.859790 + : pb-IF4nUxE4Nw== | Android60071137|john wick| he is not the one -2022-12-04 13:36:13.715923 + : pb-IF4IV04ZKw== | paratròóper|Baabla| wteva man.. dont ask for feedbcks.. dat u dont wana take -2022-12-04 13:36:24.908001 + : pb-IF4SF0Em | MuddyJoker56571|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-04 13:36:25.142770 + : pb-IF4SF0Em | MuddyJoker56571|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-04 13:36:25.556199 + : pb-IF4NU0cpFw== | ModalHandle23|ModalHandle23| type 1 for white ki mkc -2022-12-04 13:36:26.365966 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 13:36:26.646792 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-04 13:36:32.327270 + : pb-IF4IV04ZKw== | paratròóper|Baabla| white.. nw we cn happily kik bcs -2022-12-04 13:36:36.449141 + : pb-IF4IV04ZKw== | paratròóper|Baabla| 1 -2022-12-04 13:36:38.641214 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| Teri rendi maa choddeni hai -2022-12-04 13:36:41.184855 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| **** -2022-12-04 13:36:50.899204 + : pb-IF4IV04ZKw== | paratròóper|Baabla| white.. kik bcs. il pres 1 -2022-12-04 13:37:13.195325 + : pb-IF4IV04ZKw== | paratròóper|Baabla| nw every1 is comin wid dat bulllshit purple scum icon -2022-12-04 13:37:50.481345 + : pb-IF4IV04ZKw== | paratròóper|Baabla| abuse is just part of d language that we speak.. -2022-12-04 13:37:50.484644 + : pb-IF4IV04ZKw== | paratròóper|Baabla| deal wid it like adults.. if u r not a kid -2022-12-04 13:38:40.751384 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| kaha gaya wo bcm -2022-12-04 13:39:00.807028 + : pb-IF4IV04ZKw== | paratròóper|Baabla| il **** those small girls to the end -2022-12-04 13:39:00.810929 + : pb-IF4IV04ZKw== | paratròóper|Baabla| of their tight tight pink warm wet pussies -2022-12-04 13:39:01.381808 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| wo idhar hi ha tu kick hogaya😅 -2022-12-04 13:39:15.984551 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| are ye abuse filter na bekar hai -2022-12-04 13:39:30.657767 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| kon tha waise wo -2022-12-04 13:39:37.966862 + : pb-IF4IV04ZKw== | paratròóper|Baabla| yahi h l0daa -2022-12-04 13:39:40.066279 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| mujhe aur gaali dena tha -2022-12-04 13:39:54.434283 + : pb-IF4IV04ZKw== | paratròóper|Baabla| baap ban'ne ki koshish kr ra -2022-12-04 13:40:10.346034 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| babla kon? -2022-12-04 13:40:19.936026 + : pb-IF4IV04ZKw== | paratròóper|Baabla| main yr tera dost.. -2022-12-04 13:40:24.555175 + : pb-IF41VXk5PQ== | AgentShubh|AgentShubh| sry -2022-12-04 13:40:35.509167 + : pb-IF4nUxE4Nw== | Android60071137|john wick| ye v2 kyu aaraha hai -2022-12-04 13:40:52.343686 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| update your game you will also get v2 -2022-12-04 13:40:56.640331 + : pb-IF4IV04ZKw== | paratròóper|Baabla| bcs il gv u my all -2022-12-04 13:40:56.640615 + : pb-IF4IV04ZKw== | paratròóper|Baabla| no.s.. if u tel me ur name -2022-12-04 13:41:29.682023 + : pb-IF4nUxE4Nw== | Android60071137|john wick| kya **** mardi ye server ki -2022-12-04 13:41:57.815358 + : pb-IF4IV04ZKw== | paratròóper|Baabla| bta ab apna naam -2022-12-04 13:42:56.348888 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| are yaar -2022-12-04 13:43:22.562686 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| 0 -2022-12-04 13:43:23.660710 + : pb-IF4nUxE4Nw== | Android60071137|john wick| bcs -2022-12-04 13:43:58.923910 + : pb-IF4nUxE4Nw== | Android60071137|john wick| bcs are you a friend of mafia -2022-12-04 13:44:01.020855 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| no reason ye ese hi kick krenge bhai -2022-12-04 13:44:28.028275 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| abe oo smoothy rank kab daalega -2022-12-04 13:45:00.527006 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| wtf -2022-12-04 13:45:30.683030 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| -2022-12-04 13:45:30.875134 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| -2022-12-04 13:45:31.037553 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| -2022-12-04 13:45:31.574319 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| -2022-12-04 13:46:33.699366 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| 0 -2022-12-04 13:46:36.323276 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| 1 -2022-12-04 13:46:48.678130 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| sry vro -2022-12-04 13:47:46.204955 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| that was quick😂 -2022-12-04 13:47:50.452042 + : pb-IF4IV04ZKw== | paratròóper|Baabla| indeed -2022-12-04 13:48:18.332518 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| rank me.kya hoga bcs -2022-12-04 13:48:25.976919 + : pb-IF4IV04ZKw== | paratròóper|Baabla| change krna hi h.. to pooch -2022-12-04 13:48:25.977527 + : pb-IF4IV04ZKw== | paratròóper|Baabla| k ma kyu ****∆ ra h -2022-12-04 13:48:26.733282 + : pb-IF4JU3MxCQ== | AdvancedExpomnent45m|😈i am king😈| -2022-12-04 13:48:33.318481 + : pb-IF4IV04ZKw== | paratròóper|Baabla| kr le na change -2022-12-04 13:48:38.818929 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| hi chomu -2022-12-04 13:48:45.231855 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| abe mere ko unban karga ya nahi? y or n -2022-12-04 13:49:20.244789 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| fun games mai -2022-12-04 13:49:22.975994 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| lllll DC -2022-12-04 13:49:37.372120 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| -2022-12-04 13:49:51.346755 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| nice -2022-12-04 13:50:13.986609 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| end -2022-12-04 13:50:17.660724 + : pb-IF4OU2QjMQ== | DEVTA9|Arvind Kejriwal| end -2022-12-04 13:50:22.176340 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| end -2022-12-04 13:50:26.582002 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| damn -2022-12-04 13:50:28.695932 + : pb-IF41U2scIg== | SHRUTIsom|𝑺𝒉𝒓𝒖𝒕𝒊| end -2022-12-04 13:50:29.812167 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| cursed mode -2022-12-04 13:50:31.709568 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| end -2022-12-04 13:50:40.527858 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| end -2022-12-04 13:50:43.165232 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| end -2022-12-04 13:50:48.061083 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| end -2022-12-04 13:50:49.017383 + : pb-IF5RUmMsFg== | karanshetty6|ChunK| end -2022-12-04 13:51:03.729679 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| arre rabbit -2022-12-04 13:51:11.400052 + : pb-IF4OU2QjMQ== | DEVTA9|Arvind Kejriwal| end -2022-12-04 13:51:15.100261 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| end -2022-12-04 13:51:15.563203 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| end -2022-12-04 13:51:19.679772 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| type end guys -2022-12-04 13:51:20.017624 + : pb-IF5RUmMsFg== | karanshetty6|ChunK| end -2022-12-04 13:51:20.599357 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| end -2022-12-04 13:51:26.336453 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| end -2022-12-04 13:51:32.669212 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| end -2022-12-04 13:51:36.660177 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| phew -2022-12-04 13:51:38.124931 + : pb-IF4IV04ZKw== | paratròóper|Baabla| kr restart -2022-12-04 13:51:40.263001 + : pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL | YeWest2024|YeWest2024| thanks bcs -2022-12-04 13:52:18.301339 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| ******** **** -2022-12-04 13:52:49.384339 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| pls.restart -2022-12-04 13:52:54.449947 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| end -2022-12-04 13:53:01.198867 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| end -2022-12-04 13:53:04.722409 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| end -2022-12-04 13:53:15.145291 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| gg -2022-12-04 13:53:17.481502 + : pb-IF4IV04ZKw== | paratròóper|Baabla| gg white -2022-12-04 13:53:22.288576 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| i believe I can fly -2022-12-04 13:53:28.250250 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| gg babla -2022-12-04 13:54:28.674583 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| lol -2022-12-04 13:54:42.622261 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| bye y'all -2022-12-04 13:54:43.017777 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| white be lik admi c ha kuch bhi chwta h -2022-12-04 13:54:52.505420 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| bye bro -2022-12-04 13:54:55.954258 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| 😂 -2022-12-04 13:55:09.181442 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| wahi to admin hoga apne ghar ka -2022-12-04 13:55:26.619201 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-04 13:55:28.333132 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| ******* game -2022-12-04 13:55:31.443673 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| respect srif usi ko dena chahiye jo khud bhi respect de -2022-12-04 13:56:02.988411 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| bhai white admin kaha tere irrespect kari -2022-12-04 13:56:25.089646 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| bohot baar bolta hu saaala ignore karta hai -2022-12-04 13:56:52.290084 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| wtf was that -2022-12-04 13:56:55.502841 + : pb-IF5UUxgjIA== | sagarrathore481|| tune kya bolA -2022-12-04 13:57:22.186343 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| are Mera #2 wala I'd banned hai fun games mia -2022-12-04 13:57:34.108063 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| bro that's too much work -2022-12-04 13:57:47.247474 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| wait -2022-12-04 13:57:48.756134 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| no one is banned? tf -2022-12-04 13:57:58.684995 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| then why can't i join -2022-12-04 13:58:13.721024 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| hi bcs -2022-12-04 13:58:17.400236 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| did not see u -2022-12-04 13:58:19.315966 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| :D -2022-12-04 13:58:28.524207 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| lol -2022-12-04 13:58:52.542898 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| this is the one I'm talking about -2022-12-04 13:58:56.016465 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| this id -2022-12-04 13:59:01.930198 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| hootingdragon -2022-12-04 13:59:30.042978 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-04 13:59:49.809391 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| ahh **** -2022-12-04 13:59:50.533018 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| 🤣🤣 -2022-12-04 13:59:56.016028 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| fcuk -2022-12-04 14:00:39.912010 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| nice -2022-12-04 14:00:45.773370 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| एफसीयूके -2022-12-04 14:01:03.021270 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| no shield -2022-12-04 14:01:09.531544 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| oh god -2022-12-04 14:01:15.642120 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| एफयूसीके -2022-12-04 14:01:22.818132 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| fu** you -2022-12-04 14:01:27.929088 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| bcs kik bhakya -2022-12-04 14:01:43.277149 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| bhenchot bhakya -2022-12-04 14:01:45.141025 + : pb-IF49VFQlPA== | PC688281|Medusa| dont abuse -2022-12-04 14:01:51.932599 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| 👁️👄👁️ -2022-12-04 14:01:55.087091 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| 🤣🤣🤣 -2022-12-04 14:01:58.903933 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| guys chill -2022-12-04 14:02:03.363548 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| 🗿 -2022-12-04 14:02:06.741626 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| why all using shield -2022-12-04 14:02:13.461152 + : pb-IF49VFQlPA== | PC688281|Medusa| u can use it too -2022-12-04 14:02:17.514547 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| but -2022-12-04 14:02:20.471143 + : pb-IF49VFQlPA== | PC688281|Medusa| its part of game -2022-12-04 14:02:22.041867 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| its solo elimination -2022-12-04 14:02:29.368758 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| dammit man -2022-12-04 14:02:31.121548 + : pb-IF49VFQlPA== | PC688281|Medusa| use brain to kill him -2022-12-04 14:02:36.105804 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| yea guys it's a rule -2022-12-04 14:02:37.345015 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| bruh -2022-12-04 14:02:50.428671 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| no shield or glove in solo elimination -2022-12-04 14:04:26.808449 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| गांडdu -2022-12-04 14:04:51.853283 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| yey i can abuse in Hindi🗿 -2022-12-04 14:05:10.646601 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| no one can stop me!!💪 -2022-12-04 14:05:26.237065 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-04 14:05:27.097440 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| -2022-12-04 14:06:20.330555 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| lol -2022-12-04 14:06:53.627974 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-04 14:06:54.130004 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| lol -2022-12-04 14:07:45.129523 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-04 14:07:47.256774 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-04 14:07:47.420901 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-04 14:07:47.567478 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-04 14:08:12.175200 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| omg I'm so dumb -2022-12-04 14:08:39.778419 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-04 14:08:39.951740 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-04 14:08:40.134330 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-04 14:08:40.417466 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-04 14:08:47.962414 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-04 14:08:48.105379 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-04 14:08:48.401506 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-04 14:08:49.928599 + : pb-IF4eU0wpKg== | Unrelenti4|aditya| -2022-12-04 14:08:50.094577 + : pb-IF4eU0wpKg== | Unrelenti4|aditya| -2022-12-04 14:08:50.246648 + : pb-IF4eU0wpKg== | Unrelenti4|aditya| -2022-12-04 14:08:50.378676 + : pb-IF4eU0wpKg== | Unrelenti4|aditya| -2022-12-04 14:08:52.273293 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| smoothy you here? -2022-12-04 14:09:29.349127 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-04 14:09:32.967487 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| Medusa ? -2022-12-04 14:09:33.491640 + : pb-IF4eU0wpKg== | Unrelenti4|aditya| -2022-12-04 14:10:02.605043 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| 🗿 -2022-12-04 14:10:23.545983 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| chalo bye yall -2022-12-04 14:10:28.318219 + : pb-IF49VFQlPA== | PC688281|Medusa| bye -2022-12-04 14:10:33.539517 + : pb-IF5TAHQO | HootingDra|₩Ⱨł₮Ɇ| see ya -2022-12-04 14:10:36.898492 + : pb-IF4eU0wpKg== | Unrelenti4|aditya| tata -2022-12-04 14:12:32.153238 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-04 14:12:32.323059 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-04 14:14:18.513095 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-04 14:14:18.682530 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-04 14:14:18.813456 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-04 14:14:29.136294 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-04 14:16:49.401129 + : pb-IF4eU0wpKg== | Unrelenti4|aditya| -2022-12-04 14:16:49.568983 + : pb-IF4eU0wpKg== | Unrelenti4|aditya| -2022-12-04 14:22:58.253713 + : pb-IF4TV2w6Bw== | Balajiblaze123|| tk to thi -2022-12-04 14:23:20.350505 + : pb-IF4dUmU5Fg== | S2sharpsho|Pan| madar choot parton -2022-12-04 14:27:39.385307 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 14:27:39.535408 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 14:27:39.736105 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 14:27:39.920515 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 14:27:50.859779 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| bholu -2022-12-04 14:29:03.108539 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 14:30:10.081920 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 14:31:31.901296 + : pb-IF4wV24HBw== | GiantRobot|| Bhakya bhadvee -2022-12-04 14:31:36.096755 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 😡😡 -2022-12-04 14:31:37.468789 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| lol -2022-12-04 14:31:43.485196 + : pb-IF4wV24HBw== | GiantRobot|| style copy krti hai -2022-12-04 14:31:45.432112 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| hi gain ***** -2022-12-04 14:32:36.134731 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| hi gaint -2022-12-04 14:33:15.022516 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| bholu -2022-12-04 14:33:23.530790 + : pb-IF49U0MCCA== | LevelAccep|भोलू| hm -2022-12-04 14:33:33.765233 + : pb-IF4wV24HBw== | GiantRobot|| Medusa chainsaw man 🔥 -2022-12-04 14:33:51.038154 + : pb-IF49VFQlPA== | PC688281|Medusa| oh hello how are u :) -2022-12-04 14:34:04.808489 + : pb-IF49VFQlPA== | PC688281|Medusa| yeah chiansaw man -2022-12-04 14:34:32.561395 + : pb-IF49VFQlPA== | PC688281|Medusa| join giant -2022-12-04 14:34:46.518237 + : pb-IF49VFQlPA== | PC688281|Medusa| did u watch recent episode -2022-12-04 14:34:48.437079 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| what? -2022-12-04 14:35:41.134992 + : pb-IF4wV24HBw== | GiantRobot|| yup -2022-12-04 14:35:54.449811 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rajmewada12|Räj M.| chup -2022-12-04 14:36:16.762445 + : pb-IF5TEHhY | rvrvrvrvrv|r@v!!!| cleN bold -2022-12-04 14:36:24.300194 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rajmewada12|Räj M.| **** lele -2022-12-04 14:36:34.114895 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 14:36:34.313785 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 14:36:34.545919 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 14:36:34.833038 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 14:36:44.639934 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rajmewada12|Räj M.| lo**da lele -2022-12-04 14:37:00.448195 + : pb-IF49VFQlPA== | PC688281|Medusa| dont abuse here -2022-12-04 14:37:06.850752 + : pb-IF5TEHhY | rvrvrvrvrv|r@v!!!| tu ne to liy mer -2022-12-04 14:37:08.949294 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ya -2022-12-04 14:37:15.078964 + : pb-IF49VFQlPA== | PC688281|Medusa| warning -2022-12-04 14:37:19.050258 + : pb-IF49VFQlPA== | PC688281|Medusa| dont abuse here -2022-12-04 14:37:21.599657 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rajmewada12|Räj M.| 🖕 -2022-12-04 14:37:23.917665 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| choti galli badi nuksan hogi -2022-12-04 14:37:52.159841 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rajmewada12|Räj M.| medusa f**k -2022-12-04 14:38:04.177688 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ban him -2022-12-04 14:38:25.159968 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rajmewada12|Räj M.| bcs change ho gayaa re waH -2022-12-04 14:38:43.521863 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rajmewada12|Räj M.| phele gali ke siva baat nai hoti aaj warning aa rahi -2022-12-04 14:38:55.239824 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rajmewada12|Räj M.| chalo achha huaa -2022-12-04 14:39:06.799903 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| haha chhha hua -2022-12-04 14:39:13.380043 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rajmewada12|Räj M.| wahi na -2022-12-04 14:39:21.319849 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rajmewada12|Räj M.| kala kitna gali deta sabko -2022-12-04 14:39:28.020098 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rajmewada12|Räj M.| ab sab bandh😄 -2022-12-04 14:40:20.359812 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | rajmewada12|Räj M.| ye change kese hu be😅 -2022-12-04 14:40:39.907619 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ye uss din sab complete kia ta na server wale ko -2022-12-04 14:41:12.279718 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| sab gali dete he copy banke ate he isliye -2022-12-04 14:42:03.568302 + : pb-IF49VFQlPA== | PC688281|Medusa| abi ni hoga ise -2022-12-04 14:42:10.208138 + : pb-IF49VFQlPA== | PC688281|Medusa| chinta mat kar -2022-12-04 14:42:45.934199 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| okk -2022-12-04 14:42:51.847023 + : pb-IF4wV24HBw== | GiantRobot|| anyone watching bleach or one piece? -2022-12-04 14:42:57.790664 + : pb-IF49VFQlPA== | PC688281|Medusa| hi giant it was sad epide himono died :( -2022-12-04 14:43:08.569023 + : pb-IF49VFQlPA== | PC688281|Medusa| im watching bleach -2022-12-04 14:43:15.688175 + : pb-IF4wV24HBw== | GiantRobot|| that too a dog's death -2022-12-04 14:43:17.920179 + : pb-IF49VFQlPA== | PC688281|Medusa| thousand year bllod war -2022-12-04 14:43:25.322469 + : pb-IF5RUmMsFg== | karanshetty6|ChunK| watching shinshan -2022-12-04 14:44:49.172948 + : pb-IF4wV24HBw== | GiantRobot|| OSTs not used at all from previous bleach,only two of them -2022-12-04 14:45:15.089154 + : pb-IF49VFQlPA== | PC688281|Medusa| but still its op :) -2022-12-04 14:45:28.288652 + : pb-IF49VFQlPA== | PC688281|Medusa| new animation are better much better -2022-12-04 14:46:05.591367 + : pb-IF4wV24HBw== | GiantRobot|| yeah it's op animated but still can't help but miss the osts😭 -2022-12-04 14:46:26.430316 + : pb-IF49VFQlPA== | PC688281|Medusa| i think they goin to use next maybe not -2022-12-04 14:46:42.243134 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 14:46:42.544868 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 14:46:45.141617 + : pb-IF49U0MCCA== | LevelAccep|भोलू| 😂 -2022-12-04 14:46:51.360943 + : pb-IF49VFQlPA== | PC688281|Medusa| oh no we lost -2022-12-04 14:49:08.701451 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| chalo guys jaan ke achha lagaa -2022-12-04 14:49:19.300699 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ki ab koi gali nahi bol payenga -2022-12-04 14:49:28.462901 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-04 14:49:38.238180 + : pb-IF49VFQlPA== | PC688281|Medusa| hana -2022-12-04 14:49:46.160746 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| tnx to server owner -2022-12-04 14:49:49.799181 + : pb-IF49VFQlPA== | PC688281|Medusa| yes -2022-12-04 14:50:10.980596 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| for this greater job -2022-12-04 14:50:47.660802 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| rocky koi problem? -2022-12-04 14:50:58.773552 + : pb-IF4-U3gdFw== | Android63053623|Thunder| partha🤣 -2022-12-04 14:51:08.801342 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| hy bhai😅😅😆😆 -2022-12-04 14:51:13.913422 + : pb-IF4-U3gdFw== | Android63053623|Thunder| lolol -2022-12-04 14:51:22.995697 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| 😂 -2022-12-04 14:51:31.075647 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| medus is owner i think -2022-12-04 14:51:50.368415 + : pb-IF49VFQlPA== | PC688281|Medusa| im not -2022-12-04 14:51:55.435926 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ohk -2022-12-04 14:51:59.846391 + : pb-IF49VFQlPA== | PC688281|Medusa| its smoothy -2022-12-04 14:52:25.315627 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| aapne koi coad dala or me kick ho gayaa tha 😅 -2022-12-04 14:52:32.056595 + : pb-IF4-U3gdFw== | Android63053623|Thunder| medusa me teko itne dino se ldki smjhta tha -2022-12-04 14:52:38.596377 + : pb-IF4-U3gdFw== | Android63053623|Thunder| lekin tu toh🤣 -2022-12-04 14:52:47.311442 + : pb-IF49VFQlPA== | PC688281|Medusa| 🤣🤣😂 -2022-12-04 14:52:57.606359 + : pb-IF4-U3gdFw== | Android63053623|Thunder| boht bada dhoka -2022-12-04 14:53:02.495361 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| sab muje cick me lage he😂😂 -2022-12-04 14:53:19.438163 + : pb-IF49VFQlPA== | PC688281|Medusa| me medusa fan -2022-12-04 14:53:32.666442 + : pb-IF4-U3gdFw== | Android63053623|Thunder| 😂👍 -2022-12-04 14:53:50.594714 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-04 14:53:50.753738 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-04 14:53:52.362419 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| Rocky kya problem hai -2022-12-04 14:54:08.155515 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| kick -2022-12-04 14:54:33.489127 + : pb-IF4pVHAlKw== | UndtedSirw|꧁༒☠RockyBhai☠︎༒꧂| tu muje punch krega...aur mein kuch nahi karunga kya -2022-12-04 14:54:41.408681 + : pb-IF4pVHAlKw== | UndtedSirw|꧁༒☠RockyBhai☠︎༒꧂| panga mat lena abse -2022-12-04 14:54:46.413878 + : pb-IF4pVHAlKw== | UndtedSirw|꧁༒☠RockyBhai☠︎༒꧂| last warning -2022-12-04 14:54:54.173866 + : pb-IF4pVHAlKw== | UndtedSirw|꧁༒☠RockyBhai☠︎༒꧂| last warning -2022-12-04 14:55:07.501895 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| 😂abe bacha hai kya galti se lag gaya hoga 😂 -2022-12-04 14:55:15.585405 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| 😅😂 -2022-12-04 14:55:21.715952 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| thunder **** -2022-12-04 14:55:23.973861 + : pb-IF4pVHAlKw== | UndtedSirw|꧁༒☠RockyBhai☠︎༒꧂| tu mera ho sakta hai bacha shayad -2022-12-04 14:55:35.089442 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| abe Gali di so warning mili😂 -2022-12-04 14:55:42.162066 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| 😂😂 school ja -2022-12-04 14:55:48.275813 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ab bcs change ho gayaa he bhai -2022-12-04 14:55:56.515723 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| sanskari bcs -2022-12-04 14:56:00.659050 + : pb-IF4pVHAlKw== | UndtedSirw|꧁༒☠RockyBhai☠︎༒꧂| papa school nahi jate bete -2022-12-04 14:56:07.875529 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| fadan kick b ho jayega bina woting ke 🤣😂 -2022-12-04 14:56:11.608661 + : pb-IF4pVHAlKw== | UndtedSirw|꧁༒☠RockyBhai☠︎༒꧂| papa ko sry bolo -2022-12-04 14:57:00.470315 + : pb-IF49VFQlPA== | PC688281|Medusa| shit sory -2022-12-04 14:57:21.040115 + : pb-IF5XVWcCJA== | PaanApitit|ShaanBhai| hold on broda -2022-12-04 14:57:31.585416 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| baroda bus stand -2022-12-04 14:57:32.517963 + : pb-IF5XVWcCJA== | PaanApitit|ShaanBhai| wut da heeeeeeeeeeeeelll -2022-12-04 14:57:42.130368 + : pb-IF5XVWcCJA== | PaanApitit|ShaanBhai| ooooohhhhmmaaaaagaaaad -2022-12-04 14:57:58.618554 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| ye bunny ki Maa ka bhosda -2022-12-04 14:58:06.325853 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| khelte nhi aa rha -2022-12-04 14:58:15.355400 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| 😂😂 -2022-12-04 14:58:15.556657 + : pb-IF5XVWcCJA== | PaanApitit|ShaanBhai| noooowaeee -2022-12-04 14:58:19.190081 + : pb-IF49VFQlPA== | PC688281|Medusa| no abuse -2022-12-04 14:58:32.895761 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| fadan mat bol kick ho jayega -2022-12-04 15:06:33.882619 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| rider don't bomb -2022-12-04 15:08:42.305269 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| bade robot -2022-12-04 15:09:22.969011 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| Pokemon kahan se aaya -2022-12-04 15:10:41.106362 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| al -2022-12-04 15:11:26.396798 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| aha -2022-12-04 15:12:27.838756 + : pb-IF4-U3gdFw== | Android63053623|Donny| MVP is back🙏 -2022-12-04 15:12:29.041597 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| ye kon hai jo dikha rha hai ungli -2022-12-04 15:15:35.253179 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| 😭 -2022-12-04 15:16:09.100561 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| bhumit is pro -2022-12-04 15:17:17.079275 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| Medusa Pokemon mar gya -2022-12-04 15:17:32.611424 + : pb-IF49VFQlPA== | PC688281|Medusa| pokemon ? -2022-12-04 15:17:36.993305 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| yes -2022-12-04 15:17:43.283090 + : pb-IF49VFQlPA== | PC688281|Medusa| kha -2022-12-04 15:17:57.391368 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| you are a Pokemon -2022-12-04 15:18:00.967791 + : pb-IF4xU00iHA== | BleakForce44|BleakForce44| -2022-12-04 15:18:07.480453 + : pb-IF49VFQlPA== | PC688281|Medusa| -2022-12-04 15:18:11.597449 + : pb-IF4xU00iHA== | BleakForce44|BleakForce44| *** -2022-12-04 15:18:23.603637 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| eat Pokemon food💩 -2022-12-04 15:18:31.282142 + : pb-IF49VFQlPA== | PC688281|Medusa| ok -2022-12-04 15:19:35.975287 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| mere saath hi kyu 😭😭 -2022-12-04 15:19:56.759948 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| Medusa use thunder -2022-12-04 15:20:11.288534 + : pb-IF4xU00iHA== | BleakForce44|BleakForce44| fc girl -2022-12-04 15:20:13.941961 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| sorry -2022-12-04 15:20:18.576495 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| ye toh boomb attack tha😊 -2022-12-04 15:20:23.627322 + : pb-IF4xU00iHA== | BleakForce44|BleakForce44| yur dad -2022-12-04 15:20:34.937489 + : pb-IF4xU00iHA== | BleakForce44|BleakForce44| sry -2022-12-04 15:20:40.367378 + : pb-IF4MU0UlCg== | WatDocument29|Donny| nice 👍🙂 -2022-12-04 15:26:22.428008 + : pb-IF4HU3YGEQ== | raiyyan095|Zomato| -2022-12-04 15:28:38.100490 + : pb-IF40UkQYJg== | Navestien666|मोटू भालू| -2022-12-04 15:29:39.905002 + : pb-IF4hVREELg== | EternalChi|One Eye| nice jump -2022-12-04 15:29:44.320100 + : pb-IF49VFQlPA== | PC688281|Medusa| lol -2022-12-04 15:30:17.540441 + : pb-IF40UkQYJg== | Navestien666|मोटू भालू| -2022-12-04 15:30:57.441428 + : pb-IF40UkQYJg== | Navestien666|मोटू भालू| -2022-12-04 15:32:10.021027 + : pb-IF4hVREELg== | EternalChi|One Eye| damn close call -2022-12-04 15:32:34.137014 + : pb-IF4hVREELg== | EternalChi|One Eye| another dies in vain -2022-12-04 15:32:40.340553 + : pb-IF4xV2oPHA== | JealousCry|CHANDRU| -2022-12-04 15:32:40.500615 + : pb-IF4xV2oPHA== | JealousCry|CHANDRU| -2022-12-04 15:32:40.640650 + : pb-IF4xV2oPHA== | JealousCry|CHANDRU| -2022-12-04 15:32:40.681086 + : pb-IF4hVREELg== | EternalChi|One Eye| no Nv please -2022-12-04 15:32:40.761385 + : pb-IF4xV2oPHA== | JealousCry|CHANDRU| -2022-12-04 15:32:47.837196 + : pb-IF4hVREELg== | EternalChi|One Eye| I have one eye only -2022-12-04 15:33:01.564286 + : pb-IF49VFQlPA== | PC688281|Medusa| its not working sorry -2022-12-04 15:33:04.937847 + : pb-IF4hVREELg== | EternalChi|One Eye| damn I can't see -2022-12-04 15:33:09.325615 + : pb-IF4BU0wpDw== | harshadkarale007|Neech| 🤣 -2022-12-04 15:33:13.553308 + : pb-IF49VFQlPA== | PC688281|Medusa| increase brightness -2022-12-04 15:33:21.162466 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| can't see anything -2022-12-04 15:33:33.073578 + : pb-IF4hVREELg== | EternalChi|One Eye| Medusa you did it on purpose? -2022-12-04 15:33:35.472417 + : pb-IF49VFQlPA== | PC688281|Medusa| sory -2022-12-04 15:33:37.515233 + : pb-IF49VFQlPA== | PC688281|Medusa| no -2022-12-04 15:33:46.901162 + : pb-IF4hVREELg== | EternalChi|One Eye| okay sir thanks -2022-12-04 15:35:12.509648 + : pb-IF40UkQYJg== | Navestien666|मोटू भालू| -2022-12-04 15:35:12.670172 + : pb-IF40UkQYJg== | Navestien666|मोटू भालू| -2022-12-04 15:37:19.018486 + : pb-IF4hVREELg== | EternalChi|One Eye| Thunder are you Guess my name Thunder? -2022-12-04 15:37:35.594000 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| umm -2022-12-04 15:37:55.750942 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| i couldn't get it ..what u said -2022-12-04 15:38:09.594309 + : pb-IF49VFQlPA== | PC688281|Medusa| can i speed it -2022-12-04 15:38:15.170391 + : pb-IF4hVREELg== | EternalChi|One Eye| was your name "Guess my name"? -2022-12-04 15:38:18.258100 + : pb-IF4hVREELg== | EternalChi|One Eye| no -2022-12-04 15:38:18.275319 + : pb-IF4DU3AABw== | YogeYogesh14|YogeYogesh14| no -2022-12-04 15:38:21.619396 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| no -2022-12-04 15:38:22.734153 + : pb-IF49VFQlPA== | PC688281|Medusa| ok -2022-12-04 15:38:25.422153 + : pb-IF4hVREELg== | EternalChi|One Eye| no Medusa sir -2022-12-04 15:38:35.650256 + : pb-IF49VFQlPA== | PC688281|Medusa| ok one eyed king -2022-12-04 15:38:48.634114 + : pb-IF4hVREELg== | EternalChi|One Eye| andho ka kana raja me lol -2022-12-04 15:39:05.567416 + : pb-IF49VFQlPA== | PC688281|Medusa| what is kana -2022-12-04 15:39:19.522497 + : pb-IF4hVREELg== | EternalChi|One Eye| who has one eye working only -2022-12-04 15:39:25.009169 + : pb-IF49VFQlPA== | PC688281|Medusa| ok -2022-12-04 15:40:15.034097 + : pb-IF4IU0waNQ== | kartikm52|kartikm52| super -2022-12-04 15:40:29.426122 + : pb-IF4hVREELg== | EternalChi|One Eye| super -2022-12-04 15:40:34.210089 + : pb-IF49VFQlPA== | PC688281|Medusa| -2022-12-04 15:40:48.196412 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| demn -2022-12-04 15:41:16.514098 + : pb-IF4hVREELg== | EternalChi|One Eye| I am learning from this guys now -2022-12-04 15:43:13.798178 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| ****kkkk -2022-12-04 15:43:20.792156 + : pb-IF49VFQlPA== | PC688281|Medusa| -2022-12-04 15:44:13.297053 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| Medusa it's time -2022-12-04 15:44:19.055054 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 1v4 -2022-12-04 15:44:23.431463 + : pb-IF49VFQlPA== | PC688281|Medusa| ok -2022-12-04 15:44:28.082524 + : pb-IF4hVREELg== | EternalChi|One Eye| no way -2022-12-04 15:44:40.290180 + : pb-IF4hVREELg== | EternalChi|One Eye| shit -2022-12-04 15:44:54.762166 + : pb-IF4hVREELg== | EternalChi|One Eye| damn I wish I shouldn't typed -2022-12-04 15:45:05.846622 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| lol -2022-12-04 15:45:28.798024 + : pb-IF4hVREELg== | EternalChi|One Eye| no hope -2022-12-04 15:45:39.449803 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| yeaah -2022-12-04 15:45:44.142118 + : pb-IF4hVREELg== | EternalChi|One Eye| good work Medusa -2022-12-04 15:45:46.022600 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| cool -2022-12-04 15:45:46.950447 + : pb-IF49VFQlPA== | PC688281|Medusa| haha -2022-12-04 15:48:33.333467 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-04 15:48:33.482764 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-04 15:48:45.697646 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| shit -2022-12-04 15:49:54.246619 + : pb-IF4hVREELg== | EternalChi|One Eye| I have my excuses but I am shuting my mouth 🙃🙏 -2022-12-04 15:55:06.251639 + : pb-IF4hVREELg== | EternalChi|One Eye| १ -2022-12-04 15:59:14.615650 + : pb-JiNJVxFfXUpEW1xCEEZSUlBGEUNaR1BE | vishnu234|Thunder| how he got another life -2022-12-04 15:59:22.903953 + : pb-IF4hVREELg== | EternalChi|One Eye| old player -2022-12-04 16:01:00.323672 + : pb-IF4hVREELg== | EternalChi|One Eye| sed -2022-12-04 16:02:04.523608 + : pb-IF4hVREELg== | EternalChi|One Eye| I am lucky yoo -2022-12-04 16:02:46.580143 + : pb-IF4hVREELg== | EternalChi|One Eye| I am worst player too -2022-12-04 16:03:43.592981 + : pb-IF49VFQlPA== | PC688281|Medusa| -2022-12-04 16:08:26.316253 + : pb-IF4XVVEuAA== | Android54203722|✨DAMO✨| -2022-12-04 16:08:26.454879 + : pb-IF4XVVEuAA== | Android54203722|✨DAMO✨| -2022-12-04 16:08:28.289115 + : pb-IF4XVVEuAA== | Android54203722|✨DAMO✨| -2022-12-04 16:08:28.413835 + : pb-IF4XVVEuAA== | Android54203722|✨DAMO✨| -2022-12-04 16:08:28.931098 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:08:29.047083 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:08:29.234790 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:08:29.515980 + : pb-IF40UncaLg== | TiredShift|🄰🄶🄴🄽🅃 🄷🅄| gg -2022-12-04 16:08:29.516798 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:09:31.552536 + : pb-IF4XVVEuAA== | Android54203722|✨DAMO✨| -2022-12-04 16:09:31.698036 + : pb-IF4XVVEuAA== | Android54203722|✨DAMO✨| -2022-12-04 16:12:03.595807 + : pb-IF4XVVEuAA== | Android54203722|✨DAMO✨| gg -2022-12-04 16:12:47.141778 + : pb-IF4xU04OMg== | PC772976|~PC~| pika p -2022-12-04 16:12:54.560547 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| pikachu -2022-12-04 16:12:58.253845 + : pb-IF4xU04OMg== | PC772976|~PC~| lol -2022-12-04 16:13:08.157402 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| pc games -2022-12-04 16:13:16.726143 + : pb-IF4xU04OMg== | PC772976|~PC~| i am one eye -2022-12-04 16:13:31.453807 + : pb-IF4xU04OMg== | PC772976|~PC~| was on dad's phone earlier -2022-12-04 16:13:56.656259 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| 💦 -2022-12-04 16:14:03.487691 + : pb-IF4XVVEuAA== | Android54203722|✨DAMO✨| -2022-12-04 16:14:03.644358 + : pb-IF4XVVEuAA== | Android54203722|✨DAMO✨| -2022-12-04 16:14:05.983186 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:14:06.230666 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:14:06.381902 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:14:09.202741 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| -2022-12-04 16:14:09.420749 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| -2022-12-04 16:14:12.618616 + : pb-IF4XVVEuAA== | Android54203722|✨DAMO✨| -2022-12-04 16:14:12.759414 + : pb-IF4XVVEuAA== | Android54203722|✨DAMO✨| -2022-12-04 16:14:17.978150 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| 🔥💦💥 -2022-12-04 16:16:13.481306 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| 🧛 -2022-12-04 16:18:03.882204 + : pb-IF4xU04OMg== | PC772976|~PC~| naruto wtf -2022-12-04 16:18:08.788944 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-04 16:18:11.323427 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:18:11.449722 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:18:11.615139 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:18:11.846764 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:18:15.192903 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| what happened pc -2022-12-04 16:19:11.129088 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:19:11.246431 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:19:11.379660 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:19:11.545892 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:19:44.002463 + : pb-IF4wV24HBw== | GiantRobot|GiantRobot| fadnvis -2022-12-04 16:19:52.956772 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| bade robot -2022-12-04 16:19:53.370454 + : pb-IF4xU04OMg== | PC772976|~PC~| kon hai -2022-12-04 16:20:16.528987 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| maar diya ura diya -2022-12-04 16:22:01.724049 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 16:22:01.954531 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 16:22:02.153747 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 16:22:02.213951 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| 🧟 -2022-12-04 16:22:03.363668 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:22:03.880527 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:22:26.252169 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| maro mat -2022-12-04 16:23:07.115673 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| NOOB -2022-12-04 16:23:07.979796 + : pb-IF4xU04OMg== | PC772976|~PC~| aareh bunny op -2022-12-04 16:23:15.952322 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| wtf -2022-12-04 16:23:17.807422 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:23:25.344122 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| 11 -2022-12-04 16:23:33.982634 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| dono spider man kaise bane -2022-12-04 16:23:35.328558 + : pb-IF4xU04OMg== | PC772976|~PC~| 0p team w0rk -2022-12-04 16:24:42.104725 + : pb-IF4xU04OMg== | PC772976|~PC~| ahahahaha -2022-12-04 16:25:12.049480 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-04 16:25:12.209833 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-04 16:25:19.885243 + : pb-IF4xU04OMg== | PC772976|~PC~| bunny kya karne gaya tha? -2022-12-04 16:25:27.347833 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| 💦💦 -2022-12-04 16:25:43.358361 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-04 16:26:04.773639 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 16:26:04.953591 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 16:26:07.080310 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:26:07.615713 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:26:40.244422 + : pb-IF4xU04OMg== | PC772976|~PC~| waah sed life -2022-12-04 16:27:14.898891 + : pb-IF4xU04OMg== | PC772976|~PC~| ahhahahahahah -2022-12-04 16:27:18.670975 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| HAHA -2022-12-04 16:27:24.509799 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| pc games -2022-12-04 16:27:32.649376 + : pb-IF4xU04OMg== | PC772976|~PC~| naruto rains -2022-12-04 16:27:42.568982 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| pains hi paina -2022-12-04 16:27:42.737019 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| -2022-12-04 16:27:46.077417 + : pb-IF4xU04OMg== | PC772976|~PC~| or Naruto Reigns -2022-12-04 16:27:59.810497 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| gains hi gaons -2022-12-04 16:28:10.603323 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| 👹👹 -2022-12-04 16:28:41.352745 + : pb-IF4xU04OMg== | PC772976|~PC~| baahahhahababba -2022-12-04 16:28:47.213495 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| pika -2022-12-04 16:29:45.593845 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:29:45.860979 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-04 16:29:50.413793 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 16:29:50.633705 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 16:29:50.813926 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 16:29:50.994951 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 16:29:54.098529 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| mein Jeet gya -2022-12-04 16:31:40.730237 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| SRY -2022-12-04 16:32:15.824216 + : pb-IF4xU04OMg== | PC772976|~PC~| naruto badmash -2022-12-04 16:32:18.894653 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| kick bren -2022-12-04 16:32:34.666539 + : pb-IF40U3MyVQ== | CautiousPr|Naruto| 💦💦 -2022-12-04 16:34:03.415644 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| kick -2022-12-04 16:34:05.977243 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| 1 -2022-12-04 16:34:06.215066 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| bren -2022-12-04 16:34:09.314463 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| traitor -2022-12-04 16:34:11.894774 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 16:34:14.068994 + : pb-IF4xU04OMg== | PC772976|~PC~| kick batawasoki -2022-12-04 16:34:22.604579 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| 111 -2022-12-04 16:34:30.933587 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| i will start killing -2022-12-04 16:34:33.074874 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| own -2022-12-04 16:38:03.049965 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| no fun -2022-12-04 16:38:06.682681 + : pb-IF4xU04OMg== | PC772976|~PC~| yeh -2022-12-04 16:38:11.884469 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| kick -2022-12-04 16:38:53.976314 + : pb-IF4xU04OMg== | PC772976|~PC~| lol -2022-12-04 16:39:22.262570 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| zomato guy i want one hot coffe -2022-12-04 16:41:36.130667 + : pb-IF4xU04OMg== | PC772976|~PC~| nice no name -2022-12-04 16:41:44.413597 + : pb-IF4jU0MoPA== | Android63397175|Ice boy| dude?? -2022-12-04 16:42:39.914477 + : pb-IF4xU04OMg== | PC772976|~PC~| go corona go -2022-12-04 16:43:04.147796 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| END -2022-12-04 16:43:08.797999 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| end -2022-12-04 16:43:15.955932 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| hate solo -2022-12-04 16:43:28.542655 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| Phalgun~ oh -2022-12-04 16:43:32.930766 + : pb-IF4xU04OMg== | PC772976|~PC~| nice fight no name -2022-12-04 16:43:39.194696 + : pb-IF4xU04OMg== | PC772976|~PC~| respect -2022-12-04 16:43:51.298123 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| respect level? -2022-12-04 16:43:54.870586 + : pb-IF4xU04OMg== | PC772976|~PC~| 4 -2022-12-04 16:44:10.897291 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| ak69 -2022-12-04 16:44:15.030733 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| end -2022-12-04 16:44:32.603187 + : pb-IF5QUncABw== | SpontaneousTexture21|Don Quixote| 1 -2022-12-04 16:44:38.893361 + : pb-IF5QUncABw== | SpontaneousTexture21|Don Quixote| end -2022-12-04 16:44:50.587386 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| doflamingo -2022-12-04 16:45:02.488918 + : pb-IF4xU04OMg== | PC772976|~PC~| bnny voice like chinese martial artist crying n punching -2022-12-04 16:45:17.488775 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| akaza upper rank 3 -2022-12-04 16:45:28.224865 + : pb-IF4xU04OMg== | PC772976|~PC~| how to know rank -2022-12-04 16:46:10.401792 + : pb-IF4xU04OMg== | PC772976|~PC~| lol -2022-12-04 16:46:17.596475 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| ahem -2022-12-04 16:46:17.705300 + : pb-IF4xU04OMg== | PC772976|~PC~| tell the trick bomn -2022-12-04 16:46:33.863400 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| raoji yea -2022-12-04 16:46:46.048883 + : pb-IF4xU04OMg== | PC772976|~PC~| i was dancin like we alreay won -2022-12-04 16:47:56.877238 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| -2022-12-04 16:47:59.950191 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| noo -2022-12-04 16:48:01.591624 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| haha -2022-12-04 16:48:06.548871 + : pb-IF4xU04OMg== | PC772976|~PC~| sed -2022-12-04 16:52:02.778577 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 16:52:03.009812 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 16:52:04.889616 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| gg -2022-12-04 16:52:59.279674 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 16:52:59.479968 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 16:53:06.977210 + : pb-IF4xU04OMg== | PC772976|~PC~| wtf -2022-12-04 16:53:10.326112 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| hehe -2022-12-04 16:53:12.028754 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| sry -2022-12-04 16:53:14.933925 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| light em up -2022-12-04 16:53:30.014411 + : pb-IF49U0QJDw== | PC605729|| end -2022-12-04 16:53:35.024843 + : pb-IF4xU04OMg== | PC772976|~PC~| how to know rank? -2022-12-04 16:53:35.637525 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| ok doesnt work lol -2022-12-04 16:54:24.738454 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| who wants end and who doent want end -2022-12-04 16:54:30.792240 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| end -2022-12-04 16:54:31.359787 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| no -2022-12-04 16:54:35.110919 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| end -2022-12-04 16:54:45.648665 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| play -2022-12-04 16:54:54.618787 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| show ur game -2022-12-04 16:54:59.263873 + : pb-JiNJARFYXEtAWVlAFERRXFRFF0VfQVND | royiam|stormkiller| end -2022-12-04 16:55:00.940676 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| not as fun as team -2022-12-04 16:55:01.507156 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| lol -2022-12-04 16:55:01.999912 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| shit -2022-12-04 16:55:43.037208 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| only one person tellin to end it -2022-12-04 16:55:59.827122 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| what about others -2022-12-04 16:56:03.644946 + : pb-IF4xU04OMg== | PC772976|~PC~| no -2022-12-04 16:56:33.197105 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| come on ice boy u can do it -2022-12-04 16:56:42.189975 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| he cant -2022-12-04 16:56:47.797161 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| great -2022-12-04 16:56:51.943505 + : pb-IF4xU04OMg== | PC772976|~PC~| ice boy op -2022-12-04 16:57:02.060770 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| fire hai tu -2022-12-04 16:57:10.055496 + : pb-IF4xU04OMg== | PC772976|~PC~| flower hu me toh -2022-12-04 16:57:16.259316 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| which flower -2022-12-04 16:57:22.447502 + : pb-IF4xU04OMg== | PC772976|~PC~| sun flower -2022-12-04 16:57:24.469717 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| coly -2022-12-04 16:57:39.857335 + : pb-IF4xU04OMg== | PC772976|~PC~| best 1 vs 1 yeh -2022-12-04 16:57:44.717364 + : pb-IF4xU04OMg== | PC772976|~PC~| winner is -2022-12-04 16:57:45.258821 + : pb-IF5WVXkpVQ== | Android50225790|Amy💖| r u mine -2022-12-04 16:57:53.179623 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| lol -2022-12-04 16:57:55.429532 + : pb-IF4xU04OMg== | PC772976|~PC~| him -2022-12-04 16:57:59.310986 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| what was that -2022-12-04 16:58:11.525359 + : pb-IF4xU04OMg== | PC772976|~PC~| although i saw it comming but punch didn;t worked -2022-12-04 16:58:12.402501 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| what the hell it became draw -_- -2022-12-04 16:58:14.551057 + : pb-IF5WVXkpVQ== | Android50225790|Amy💖| run run run -2022-12-04 16:58:18.361362 + : pb-IF4xU04OMg== | PC772976|~PC~| becuase of his momentum -2022-12-04 16:58:30.602452 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| noi -2022-12-04 16:58:32.855430 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| -2022-12-04 16:58:56.634264 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol blue attack blue -2022-12-04 17:00:39.303210 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| lol -2022-12-04 17:00:53.877800 + : pb-IF4xU04OMg== | PC772976|~PC~| the moment you blasted i grabbed my bomb lol sed -2022-12-04 17:01:50.738466 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| damm -2022-12-04 17:01:51.458186 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-04 17:01:51.584778 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-04 17:01:52.311138 + : pb-IF40UkQYJg== | Navestien666|मोटू भालू| -2022-12-04 17:01:52.651262 + : pb-IF40UkQYJg== | Navestien666|मोटू भालू| -2022-12-04 17:01:54.700152 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| who was that -2022-12-04 17:01:54.949700 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 17:01:58.151571 + : pb-IF4BU0s8BA== | Android63830734|Android63830734| -2022-12-04 17:01:58.320953 + : pb-IF4BU0s8BA== | Android63830734|Android63830734| -2022-12-04 17:01:58.490930 + : pb-IF4BU0s8BA== | Android63830734|Android63830734| -2022-12-04 17:01:58.660826 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| op -2022-12-04 17:01:58.661427 + : pb-IF4BU0s8BA== | Android63830734|Android63830734| -2022-12-04 17:01:59.833449 + : pb-IF4xU04OMg== | PC772976|~PC~| i copied your trick -2022-12-04 17:02:01.693663 + : pb-IF4xU04OMg== | PC772976|~PC~| lol -2022-12-04 17:02:03.881471 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| teams good -2022-12-04 17:02:04.583207 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| lol -2022-12-04 17:02:04.697379 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol -2022-12-04 17:02:34.133095 + : pb-IF4xU04OMg== | PC772976|~PC~| show more tricks i can copy lol -2022-12-04 17:02:41.406175 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| ur cheater -2022-12-04 17:02:57.241023 + : pb-IF4xU04OMg== | PC772976|~PC~| damn you calledme cheater lmao -2022-12-04 17:03:01.010555 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| haha -2022-12-04 17:03:14.858561 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| bcz u copy my trick -2022-12-04 17:03:35.771922 + : pb-IF40UkQYJg== | Navestien666|मोटू भालू| -2022-12-04 17:03:36.012007 + : pb-IF40UkQYJg== | Navestien666|मोटू भालू| -2022-12-04 17:03:37.419743 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 17:03:37.670174 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 17:03:37.860695 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 17:03:40.408583 + : pb-IF4PVFRZMA== | delrowe012|Socrates| -2022-12-04 17:03:40.582979 + : pb-IF4PVFRZMA== | delrowe012|Socrates| -2022-12-04 17:03:40.758889 + : pb-IF4PVFRZMA== | delrowe012|Socrates| -2022-12-04 17:03:40.881767 + : pb-IF4PVFRZMA== | delrowe012|Socrates| -2022-12-04 17:03:45.154662 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| end -2022-12-04 17:03:49.942439 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| one vote -2022-12-04 17:03:55.921243 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| what about others -2022-12-04 17:03:56.621198 + : pb-IF4xU04OMg== | PC772976|~PC~| no -2022-12-04 17:03:58.188854 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-04 17:03:58.422466 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-04 17:03:58.683643 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-04 17:03:58.926208 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-04 17:03:59.544341 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| want to end ? -2022-12-04 17:04:07.195307 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| see someone eve left because of solo -2022-12-04 17:04:15.019748 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| suicide u -2022-12-04 17:04:19.949636 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| noob -2022-12-04 17:04:23.766220 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| yeah bit i want to ask others -2022-12-04 17:04:32.143201 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| someone wants to play too right -2022-12-04 17:04:37.356475 + : pb-IF4xU04OMg== | PC772976|~PC~| epic alliance would be good -2022-12-04 17:05:01.832231 + : pb-IF4xU04OMg== | PC772976|~PC~| woah -2022-12-04 17:05:03.058109 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| bruh -2022-12-04 17:05:08.460415 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol donno what i pressed -2022-12-04 17:05:09.582365 + : pb-IF4lVVQoFg== | CaffeineAs|CaffeineAs| wow -2022-12-04 17:05:10.130342 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| ur dangerous -2022-12-04 17:05:21.916367 + : pb-IF4xU04OMg== | PC772976|~PC~| pant snatching punch -2022-12-04 17:05:29.509113 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| haha -2022-12-04 17:05:37.024655 + : pb-IF4xU04OMg== | PC772976|~PC~| i will try it now -2022-12-04 17:05:39.133406 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-04 17:05:51.425830 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| not on girls, respect :) -2022-12-04 17:05:52.782586 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| ice boy be prepared to kill red team -2022-12-04 17:06:04.664732 + : pb-IF4lVVQoFg== | CaffeineAs|CaffeineAs| nice -2022-12-04 17:06:06.303400 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| im counting on u -2022-12-04 17:06:13.736336 + : pb-IF4xU04OMg== | PC772976|~PC~| girls lmao -2022-12-04 17:06:54.806280 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| hey everyone can i turn lights off -2022-12-04 17:06:58.764923 + : pb-IF4xU04OMg== | PC772976|~PC~| no -2022-12-04 17:07:03.840526 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| ok -2022-12-04 17:07:04.189716 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| good -2022-12-04 17:07:08.041579 + : pb-IF4lVVQoFg== | CaffeineAs|CaffeineAs| wow pc -2022-12-04 17:07:14.729582 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| didt expect -2022-12-04 17:08:07.172741 + : pb-IF4xU04OMg== | PC772976|~PC~| damn i got greedy -2022-12-04 17:08:24.216671 + : pb-IF4xU04OMg== | PC772976|~PC~| should have taken the impact bombs -2022-12-04 17:08:46.675798 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| end -2022-12-04 17:08:48.348405 + : pb-IF4xU04OMg== | PC772976|~PC~| but i was going to try pant snitching punch -2022-12-04 17:09:04.330150 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| oh my -2022-12-04 17:09:24.449745 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 17:09:56.845321 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| end -2022-12-04 17:10:05.414755 + : pb-IF4xU04OMg== | PC772976|~PC~| my catch lol -2022-12-04 17:10:06.451275 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| want to end ? -2022-12-04 17:10:10.210881 + : pb-IF4xU04OMg== | PC772976|~PC~| no -2022-12-04 17:10:13.219544 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| thats noice catch -2022-12-04 17:10:45.451318 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| my ice boy tryin hard -2022-12-04 17:11:44.568454 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| yaeaaaaaaaaa -2022-12-04 17:11:46.880428 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| lol -2022-12-04 17:13:10.366460 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| gg -2022-12-04 17:13:26.302590 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| -2022-12-04 17:14:05.797360 + : pb-IF4xU04OMg== | PC772976|~PC~| lol -2022-12-04 17:15:01.328226 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| bruh -2022-12-04 17:15:04.680155 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| why -2022-12-04 17:15:08.520402 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| end -2022-12-04 17:15:08.654627 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| thanks dude -2022-12-04 17:15:13.920673 + : pb-IF4xU04OMg== | PC772976|~PC~| woah that escalated quickly -2022-12-04 17:15:14.100383 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| end bro -2022-12-04 17:15:17.240631 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| boring -2022-12-04 17:15:25.743223 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| ask everyone to end -2022-12-04 17:15:35.571441 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| well its over now -2022-12-04 17:15:41.553211 + : pb-IF4xU04OMg== | PC772976|~PC~| guy named Everyone: bruh -2022-12-04 17:15:42.389720 + : pb-IF4lVVQoFg== | CaffeineAs|CaffeineAs| yea -2022-12-04 17:15:51.693464 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| -_- -2022-12-04 17:16:01.100817 + : pb-IF4xU04OMg== | PC772976|~PC~| ice boy caught me off gaurd nice -2022-12-04 17:16:55.687681 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| these two -2022-12-04 17:17:21.667943 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| looose -2022-12-04 17:17:26.610140 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| er -2022-12-04 17:18:02.540836 + : pb-IF4xU04OMg== | PC772976|~PC~| welp i tried -2022-12-04 17:18:44.137432 + : pb-IF4xU04OMg== | PC772976|~PC~| sorry red -2022-12-04 17:19:28.529158 + : pb-IF4xU04OMg== | PC772976|~PC~| nnoooooooooooooooooooOOO -2022-12-04 17:19:32.961286 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| xd -2022-12-04 17:19:35.379807 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 17:19:35.580630 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 17:19:36.953619 + : pb-IF4xU04OMg== | PC772976|~PC~| DAMN -2022-12-04 17:19:40.389063 + : pb-IF43U0sjUQ== | ReliableDi|legend| -2022-12-04 17:19:40.812637 + : pb-IF43U0sjUQ== | ReliableDi|legend| -2022-12-04 17:19:41.121675 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| yea ice boy u did it -2022-12-04 17:19:41.346312 + : pb-IF43U0sjUQ== | ReliableDi|legend| -2022-12-04 17:19:41.599555 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 17:19:41.934224 + : pb-IF43U0sjUQ== | ReliableDi|legend| -2022-12-04 17:19:48.481080 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| congo -2022-12-04 17:20:05.571148 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| legend dont plz -2022-12-04 17:20:05.579901 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| crzyyyyyy -2022-12-04 17:20:05.915232 + : pb-IF43U0sjUQ== | ReliableDi|legend| sry. -2022-12-04 17:20:13.831170 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| ok -2022-12-04 17:21:04.281146 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| oh no -2022-12-04 17:21:34.341117 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| its all upt u now ice boy -2022-12-04 17:21:49.900872 + : pb-IF4xU04OMg== | PC772976|~PC~| fffk -2022-12-04 17:22:20.691186 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| -2022-12-04 17:22:43.809666 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| lol two story -2022-12-04 17:22:46.261178 + : pb-IF4xU04OMg== | PC772976|~PC~| did anyone saw my mine throw lol -2022-12-04 17:23:06.525041 + : pb-IF4xU04OMg== | PC772976|~PC~| lol -2022-12-04 17:23:55.313184 + : pb-IF4xU04OMg== | PC772976|~PC~| lol -2022-12-04 17:23:56.991295 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| ops -2022-12-04 17:23:58.581183 + : pb-IF4xU04OMg== | PC772976|~PC~| hhahahah -2022-12-04 17:23:59.631375 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| my bad -2022-12-04 17:24:01.431271 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| lol -2022-12-04 17:24:08.054646 + : pb-IF4xU04OMg== | PC772976|~PC~| wtf -2022-12-04 17:24:37.861421 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| shit -2022-12-04 17:24:39.533836 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| gg -2022-12-04 17:24:43.726677 + : pb-IF4xU04OMg== | PC772976|~PC~| back up Mafia op -2022-12-04 17:25:32.531352 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| -2022-12-04 17:25:49.842712 + : pb-IF4xU04OMg== | PC772976|~PC~| yyyoooo -2022-12-04 17:25:59.261540 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| i just at curse -2022-12-04 17:26:10.491369 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| poor boy -2022-12-04 17:26:15.762856 + : pb-IF4xU04OMg== | PC772976|~PC~| atta boy -2022-12-04 17:26:16.051947 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| lets win this one' -2022-12-04 17:28:03.861437 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| damm -2022-12-04 17:28:09.452315 + : pb-IF4hVFQJPA== | sheriff007gamer|BORN TO BETRAY| -2022-12-04 17:28:10.301370 + : pb-IF4xU04OMg== | PC772976|~PC~| i saw it coming -2022-12-04 17:28:15.702140 + : pb-IF4hVFQJPA== | sheriff007gamer|BORN TO BETRAY| -2022-12-04 17:28:17.761240 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| sharp eye -2022-12-04 17:28:21.292490 + : pb-IF4hVFQJPA== | sheriff007gamer|BORN TO BETRAY| -2022-12-04 17:28:24.800644 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| finally -2022-12-04 17:28:54.561334 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| sheriff007gamer BORN TO BETRAY stop it or else i will kik -2022-12-04 17:29:05.632437 + : pb-IF4hVFQJPA== | sheriff007gamer|BORN TO BETRAY| why -2022-12-04 17:29:06.319818 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| noob team -2022-12-04 17:29:09.512923 + : pb-IF4hVFQJPA== | sheriff007gamer|BORN TO BETRAY| what i did -2022-12-04 17:29:12.613727 + : pb-IF4xU04OMg== | PC772976|~PC~| my teams players fighting lol -2022-12-04 17:29:13.172352 + : pb-IF4jU0MoPA== | Android63397175|Ice boy| gg y'all -2022-12-04 17:29:14.591551 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| betray -2022-12-04 17:29:38.001655 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| wtf betray? -2022-12-04 17:29:43.761215 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| yea -2022-12-04 17:29:47.851499 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| he was phsycho -2022-12-04 17:30:02.973232 + : pb-IF4xU04OMg== | PC772976|~PC~| i died yey -2022-12-04 17:30:19.487684 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ban hoga tu -2022-12-04 17:30:25.390552 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| born to -2022-12-04 17:30:43.499634 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| move red -2022-12-04 17:30:48.724168 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| nede some help down -2022-12-04 17:30:54.521269 + : pb-IF4xU04OMg== | PC772976|~PC~| sure -2022-12-04 17:31:22.749283 + : pb-IF4xU04OMg== | PC772976|~PC~| lol -2022-12-04 17:31:46.920676 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 17:31:46.962098 + : pb-IF4xU04OMg== | PC772976|~PC~| we won yey -2022-12-04 17:31:47.120732 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 17:31:48.261594 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| yea won -2022-12-04 17:31:49.248527 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| what jappened red? -2022-12-04 17:32:53.339079 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| kick pls -2022-12-04 17:32:57.811226 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| who -2022-12-04 17:33:10.939915 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 17:33:12.949524 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 17:33:13.140264 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| -2022-12-04 17:33:14.051027 + : pb-IF4QU0s_Eg== | RedeemingTariff52|rudra Pratap,🔥| how to change character -2022-12-04 17:33:16.151872 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| yea -2022-12-04 17:33:16.533529 + : pb-IF4xU04OMg== | PC772976|~PC~| no name sus -2022-12-04 17:33:21.189778 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| 4-0 -2022-12-04 17:33:31.855364 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| andreoid red betrayed -2022-12-04 17:33:42.668791 + : pb-IF4QU0s_Eg== | RedeemingTariff52|rudra Pratap,🔥| ?? -2022-12-04 17:33:43.401495 + : pb-IF4xU04OMg== | PC772976|~PC~| how tf you got senses so fast -2022-12-04 17:33:51.990060 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| hacker -2022-12-04 17:33:59.709425 + : pb-IF4QU0s_Eg== | RedeemingTariff52|rudra Pratap,🔥| ?? -2022-12-04 17:34:11.262068 + : pb-IF4QU0s_Eg== | RedeemingTariff52|rudra Pratap,🔥| how to change character -2022-12-04 17:34:23.765442 + : pb-IF4xU04OMg== | PC772976|~PC~| i am going to pee, pee pee time 3 minutes aka susu karne -2022-12-04 17:34:39.981241 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| change it in lobby -2022-12-04 17:34:54.891236 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| great -2022-12-04 17:34:56.399711 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|😈| 😂😂 -2022-12-04 17:35:03.116074 + : pb-IF5VU3lYDA== | AlienPersonnel44|Akash| 👍 -2022-12-04 17:35:03.813143 + : pb-IF4xU04OMg== | PC772976|~PC~| ahh kill me if i am afk -2022-12-04 17:35:12.591692 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| u go pee first -2022-12-04 17:35:32.031875 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| killl him -2022-12-04 18:52:32.811892 + : pb-IF4xU04OMg== | PC772976|~PC~| nice bombing baabla -2022-12-04 18:52:49.374957 + : pb-IF4IV04ZKw== | paratròóper|Baabla| thnks -2022-12-04 18:52:54.326193 + : pb-IF4IV04ZKw== | paratròóper|Baabla| tukka tha -2022-12-04 18:53:53.073778 + : pb-IF4IV04ZKw== | paratròóper|Baabla| abey sry -2022-12-04 18:54:12.941114 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| np -2022-12-04 18:54:29.346203 + : pb-IF4IV04ZKw== | paratròóper|Baabla| main bomber.. and hi -2022-12-04 18:54:46.713765 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| aree hi bhai -2022-12-04 18:54:57.866117 + : pb-IF4IV04ZKw== | paratròóper|Baabla| sry lol -2022-12-04 18:55:01.423832 + : pb-IF4xU04OMg== | PC772976|~PC~| speed -2022-12-04 18:55:04.299831 + : pb-IF4xU04OMg== | PC772976|~PC~| run -2022-12-04 18:55:04.779004 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| np -2022-12-04 18:55:06.859908 + : pb-IF4xU04OMg== | PC772976|~PC~| no punch -2022-12-04 18:55:11.108011 + : pb-IF4xU04OMg== | PC772976|~PC~| fair run -2022-12-04 18:56:54.548849 + : pb-IF4rLkwp | MPF|MPFernando| yo -2022-12-04 18:57:02.610295 + : pb-IF4IV04ZKw== | paratròóper|Baabla| hi yo mp.. -2022-12-04 18:57:15.188588 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| hi -2022-12-04 18:58:43.122378 + : pb-IF4iVxJYAA== | BeamingMos|sapna| -2022-12-04 18:58:43.302976 + : pb-IF4iVxJYAA== | BeamingMos|sapna| -2022-12-04 18:58:43.457757 + : pb-IF4iVxJYAA== | BeamingMos|sapna| -2022-12-04 18:58:43.625873 + : pb-IF4iVxJYAA== | BeamingMos|sapna| -2022-12-04 18:59:09.837657 + : pb-IF4rLkwp | MPF|MPFernando| aaaa -2022-12-04 18:59:17.696387 + : pb-IF4IV04ZKw== | paratròóper|Baabla| lol -2022-12-04 18:59:19.226304 + : pb-IF4xU04OMg== | PC772976|~PC~| sapna -2022-12-04 18:59:20.413840 + : pb-IF4IV04ZKw== | paratròóper|Baabla| weeeeee -2022-12-04 18:59:20.896635 + : pb-IF4rLkwp | MPF|MPFernando| yoo -2022-12-04 18:59:25.801952 + : pb-IF4rLkwp | MPF|MPFernando| HeySmooth2 xd -2022-12-04 18:59:30.826365 + : pb-IF4xU04OMg== | PC772976|~PC~| tik ke khada ho jao -2022-12-04 18:59:35.419425 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| 🙁 -2022-12-04 18:59:44.903001 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| Hi EggP -2022-12-04 18:59:56.342888 + : pb-IF4rLkwp | MPF|MPFernando| is it named like that cause you've already made a V2 account called heysmoothy? -2022-12-04 19:00:03.064042 + : pb-IF4iVxJYAA== | BeamingMos|sapna| -2022-12-04 19:00:03.554206 + : pb-IF4xU04OMg== | PC772976|~PC~| bye -2022-12-04 19:00:04.730303 + : pb-IF4xU04OMg== | PC772976|~PC~| all -2022-12-04 19:00:09.441516 + : pb-IF4rLkwp | MPF|MPFernando| cya, and gg -2022-12-04 19:00:10.249066 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| bye bro -2022-12-04 19:00:12.876987 + : pb-IF4iVxJYAA== | BeamingMos|sapna| -2022-12-04 19:00:14.478441 + : pb-IF4xU04OMg== | PC772976|~PC~| have a aweosme game play -2022-12-04 19:00:33.662579 + : pb-IF4IV04ZKw== | paratròóper|Baabla| mp urs also shows as v2 -2022-12-04 19:00:35.482154 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| yup HeySmoothy reserved in another account -2022-12-04 19:00:37.892886 + : pb-IF4rLkwp | MPF|MPFernando| yee -2022-12-04 19:00:46.134238 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| this gplay changes to 2 ... -2022-12-04 19:00:53.214577 + : pb-IF4IV04ZKw== | paratròóper|Baabla| hw -2022-12-04 19:00:54.132380 + : pb-IF4rLkwp | MPF|MPFernando| I changed the name, cause I mine said mpfernand2 -2022-12-04 19:00:55.929394 + : pb-IF4rLkwp | MPF|MPFernando| xd -2022-12-04 19:00:58.681068 + : pb-IF4rLkwp | MPF|MPFernando| ah -2022-12-04 19:01:04.075902 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| lol -2022-12-04 19:01:25.202252 + : pb-IF4rLkwp | MPF|MPFernando| I thought it's cause I already had a V2 account called mpfernando -2022-12-04 19:01:57.002388 + : pb-IF4iVxJYAA== | BeamingMos|sapna| -2022-12-04 19:01:57.169673 + : pb-IF4iVxJYAA== | BeamingMos|sapna| -2022-12-04 19:02:01.334752 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| waiting for eric to link gplay with custom V2 account -2022-12-04 19:02:08.856404 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| he working on it -2022-12-04 19:02:13.930625 + : pb-IF4rLkwp | MPF|MPFernando| noice -2022-12-04 19:02:25.032386 + : pb-IF4IV04ZKw== | paratròóper|Baabla| custom v2 account .. whats that -2022-12-04 19:03:04.676994 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| right now gplay is linked with auto generated v2 -2022-12-04 19:03:12.364325 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| later we can change -2022-12-04 19:03:31.203448 + : pb-IF4vVRUFVA== | BoomBaam11|| sapna v h -2022-12-04 19:03:34.289434 + : pb-IF4uU3gNKQ== | CKD360|CKD| why server ws down -2022-12-04 19:03:46.068321 + : pb-IF4uU3gNKQ== | CKD360|CKD| hy bomber -2022-12-04 19:03:57.874676 + : pb-IF4IV04ZKw== | paratròóper|Baabla| hi -2022-12-04 19:04:33.014667 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| 31 ms ..nice -2022-12-04 19:04:47.130759 + : pb-IF4rLkwp | MPF|MPFernando| xd -2022-12-04 19:04:50.535574 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| Lanka not that far from Mumbai hmm -2022-12-04 19:05:02.177022 + : pb-IF4rLkwp | MPF|MPFernando| yee -2022-12-04 19:06:08.083595 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| haha -2022-12-04 19:06:12.777419 + : pb-IF4iVxJYAA== | BeamingMos|sapna| ****** -2022-12-04 19:06:12.947984 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| see flag -2022-12-04 19:06:13.338393 + : pb-IF4rLkwp | MPF|MPFernando| bruuh -2022-12-04 19:06:13.829927 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| you playing here since when ? MPFernando -2022-12-04 19:06:14.993859 + : pb-IF4rLkwp | MPF|MPFernando| xd -2022-12-04 19:06:22.031936 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| hack🤣 -2022-12-04 19:06:22.804829 + : pb-IF4vVRUFVA== | BoomBaam11|☬༒AGENT☠︎☬| kha h -2022-12-04 19:06:29.251160 + : pb-IF4IV04ZKw== | paratròóper|Baabla| hahaa -2022-12-04 19:06:37.243761 + : pb-IF4rLkwp | MPF|MPFernando| eh today? I got here less than 30mins ago I think -2022-12-04 19:08:53.584749 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| what's this. -2022-12-04 19:09:00.851427 + : pb-IF4IV04ZKw== | paratròóper|Baabla| thnks -2022-12-04 19:09:02.647921 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| don't hack server -2022-12-04 19:09:11.042828 + : pb-IF4-U0wpMQ== | UbeTaTtA69|UbeTaTtA69| -2022-12-04 19:09:11.240870 + : pb-IF4-U0wpMQ== | UbeTaTtA69|UbeTaTtA69| -2022-12-04 19:09:12.384514 + : pb-IF4-U0wpMQ== | UbeTaTtA69|UbeTaTtA69| -2022-12-04 19:09:13.411596 + : pb-IF4yV2ERXQ== | matinnosra|matinnosra| ok -2022-12-04 19:09:14.565368 + : pb-IF4-U0wpMQ== | UbeTaTtA69|UbeTaTtA69| -2022-12-04 19:09:15.606070 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| -2022-12-04 19:09:16.522792 + : pb-IF4rLkwp | MPF|MPFernando| xd -2022-12-04 19:09:19.402094 + : pb-IF4IV04ZKw== | paratròóper|Baabla| lol -2022-12-04 19:09:29.704688 + : pb-IF4rLkwp | MPF|MPFernando| oops sorry -2022-12-04 19:11:09.508762 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-04 19:11:09.768723 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-04 19:11:10.270696 + : pb-IF4rLkwp | MPF|MPFernando| aaa -2022-12-04 19:11:13.571318 + : pb-IF4IV04ZKw== | paratròóper|Baabla| ok -2022-12-04 19:11:30.203639 + : pb-IF4IV04ZKw== | paratròóper|Baabla| sry realy -2022-12-04 19:12:27.486027 + : pb-IF4IV04ZKw== | paratròóper|Baabla| -2022-12-04 19:12:27.637074 + : pb-IF4IV04ZKw== | paratròóper|Baabla| -2022-12-04 19:12:35.091662 + : pb-IF4rLkwp | MPF|MPFernando| gg -2022-12-04 19:14:37.351062 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|| ckd soya ni -2022-12-04 19:14:41.430825 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|| 😐 -2022-12-04 19:14:42.479285 + : pb-IF4uU3gNKQ== | CKD360|CKD| nhi -2022-12-04 19:14:48.379101 + : pb-IF4uU3gNKQ== | CKD360|CKD| jaunga thodi der me -2022-12-04 19:14:49.620868 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|| soo jaa hopdike -2022-12-04 19:14:58.428599 + : pb-IF4rLkwp | MPF|MPFernando| sorry xd -2022-12-04 19:14:58.498734 + : pb-IF4uU3gNKQ== | CKD360|CKD| 🥲 -2022-12-04 19:15:04.241174 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|| Mai toh jaa rha sone kal clg h -2022-12-04 19:15:52.079021 + : pb-IF4uU3gNKQ== | CKD360|CKD| han chal -2022-12-04 19:16:50.634146 + : pb-IF4IV04ZKw== | paratròóper|Baabla| -2022-12-04 19:16:50.776221 + : pb-IF4IV04ZKw== | paratròóper|Baabla| -2022-12-04 19:16:57.502179 + : pb-IF4rLkwp | MPF|MPFernando| gg -2022-12-04 19:17:01.090768 + : pb-IF4IV04ZKw== | paratròóper|Baabla| u2 -2022-12-04 19:17:42.323197 + : pb-IF4IV04ZKw== | paratròóper|Baabla| bahot lag -2022-12-04 19:17:47.578661 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| is soccer and flag working fine now ? -2022-12-04 19:18:30.724238 + : pb-IF4rLkwp | MPF|MPFernando| dunno o.o -2022-12-04 19:19:15.048448 + : pb-IF4IV04ZKw== | paratròóper|Baabla| damn -2022-12-04 19:19:32.044859 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| Shruti pro -2022-12-04 19:19:33.612580 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| ahh shit -2022-12-04 19:19:40.754201 + : pb-IF4IV04ZKw== | paratròóper|Baabla| woaah -2022-12-04 19:19:43.338438 + : pb-IF4uU3gNKQ== | CKD360|CKD| pro max -2022-12-04 19:19:54.246441 + : pb-IF4IV04ZKw== | paratròóper|Baabla| yup he is ultimate god -2022-12-04 19:20:15.692691 + : pb-IF41U2scIg== | SHRUTIsom|𝑺𝒉𝒓𝒖𝒕𝒊| 😂 Good night 💤 -2022-12-04 19:20:18.966211 + : pb-IF4rLkwp | MPF|MPFernando| weeee -2022-12-04 19:20:22.114391 + : pb-IF4rLkwp | MPF|MPFernando| xd gn -2022-12-04 19:20:51.607453 + : pb-IF4IV04ZKw== | paratròóper|Baabla| nw u shud go -2022-12-04 19:20:59.295613 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| sad -2022-12-04 19:21:01.644522 + : pb-IF4IV04ZKw== | paratròóper|Baabla| told ya -2022-12-04 19:21:07.451544 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| bunny heavy -2022-12-04 19:21:09.338629 + : pb-IF4uU3gNKQ== | CKD360|CKD| i wil leave -2022-12-04 19:21:28.317234 + : pb-IF4IV04ZKw== | paratròóper|Baabla| oops sry -2022-12-04 19:21:32.698685 + : pb-IF4uU3gNKQ== | CKD360|CKD| smoothy akele bachayega red ko -2022-12-04 19:21:36.888284 + : pb-IF4rLkwp | MPF|MPFernando| np -2022-12-04 19:22:16.242440 + : pb-IF4IV04ZKw== | paratròóper|Baabla| nc nc -2022-12-04 19:23:19.699534 + : pb-IF4IV04ZKw== | paratròóper|Baabla| ohh gg tho -2022-12-04 19:23:27.578298 + : pb-IF4uU3gNKQ== | CKD360|CKD| 🥲 -2022-12-04 19:23:56.541143 + : pb-IF4IV04ZKw== | paratròóper|Baabla| wow -2022-12-04 19:23:59.765517 + : pb-IF4-U0wpMQ== | UbeTaTtA69|UbeTaTtA69| -2022-12-04 19:23:59.973095 + : pb-IF4-U0wpMQ== | UbeTaTtA69|UbeTaTtA69| -2022-12-04 19:24:00.181451 + : pb-IF4-U0wpMQ== | UbeTaTtA69|UbeTaTtA69| -2022-12-04 19:24:00.361198 + : pb-IF4-U0wpMQ== | UbeTaTtA69|UbeTaTtA69| -2022-12-04 19:24:01.332208 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| kill ok , no bully -2022-12-04 19:24:05.000076 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| 😿 -2022-12-04 19:24:07.713352 + : pb-IF4rLkwp | MPF|MPFernando| ow -2022-12-04 19:24:14.251866 + : pb-IF4rLkwp | MPF|MPFernando| xd -2022-12-04 19:24:25.459225 + : pb-IF4IV04ZKw== | paratròóper|Baabla| lol mike tywon beaten at own game -2022-12-04 19:25:11.799251 + : pb-IF4-U0wpMQ== | UbeTaTtA69|UbeTaTtA69| bos -2022-12-04 19:27:02.352089 + : pb-IF4IV04ZKw== | paratròóper|Baabla| lol -2022-12-04 19:27:07.328376 + : pb-IF4uU3gNKQ== | CKD360|CKD| chal bye bomber gudnt -2022-12-04 19:27:12.528577 + : pb-IF4uU3gNKQ== | CKD360|CKD| bye smoothy gn -2022-12-04 19:27:14.048444 + : pb-IF4rLkwp | MPF|MPFernando| gn -2022-12-04 19:27:15.598836 + : pb-IF4IV04ZKw== | paratròóper|Baabla| smoothy went down smoothly -2022-12-04 19:27:20.776082 + : pb-IF4rLkwp | MPF|MPFernando| xd -2022-12-04 19:27:45.159694 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| vivek bro -2022-12-04 19:27:53.150811 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| hiii bhai -2022-12-04 19:28:06.144638 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| hi -2022-12-04 19:28:25.487260 + : pb-IF4rLkwp | MPF|MPFernando| gg -2022-12-04 19:28:34.721679 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| pengland gonna lose today 😂 -2022-12-04 19:28:53.419921 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| england vs which team -2022-12-04 19:29:23.501006 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| Senegal -2022-12-04 19:29:42.145840 + : pb-IF4nUxE4Nw== | Android60071137|john wick| Cameron 💯 -2022-12-04 19:29:54.598781 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| noo England will win -2022-12-04 19:29:55.177845 + : pb-IF4IV04ZKw== | paratròóper|Baabla| let mp go -2022-12-04 19:30:00.674464 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| tough team -2022-12-04 19:30:00.790166 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| man it's Senegal 😂 -2022-12-04 19:30:41.251097 + : pb-IF4IV04ZKw== | paratròóper|Baabla| damn -2022-12-04 19:30:49.923698 + : pb-IF4nUxE4Nw== | Android60071137|john wick| brazil and Cameroon -2022-12-04 19:31:15.695456 + : pb-IF4rLkwp | MPF|MPFernando| lag o.o -2022-12-04 19:31:23.553934 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| yeh Cameroon won -2022-12-04 19:31:26.596742 + : pb-IF4rLkwp | MPF|| lagged out 8( -2022-12-04 19:31:51.286595 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| don't lie we can see your ping ..xd -2022-12-04 19:32:09.698833 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| 😂 -2022-12-04 19:32:12.065963 + : pb-IF4rLkwp | MPF|MPFernando| my ping is good, it just started lagging for a bit o.o -2022-12-04 19:32:28.047458 + : pb-IF4IV04ZKw== | paratròóper|Baabla| mp n3ver lies -2022-12-04 19:32:35.209163 + : pb-IF4rLkwp | MPF|MPFernando| ehh -2022-12-04 19:32:39.410187 + : pb-IF4nUxE4Nw== | Android60071137|john wick| mr smoothy -2022-12-04 19:34:12.984282 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-04 19:34:13.312369 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-04 19:34:13.801896 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-04 19:37:25.905771 + : pb-IF4rLkwp | MPF|MPFernando| buh -2022-12-04 19:39:43.253699 + : pb-IF4rLkwp | MPF|MPFernando| ow -2022-12-04 19:39:45.483239 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| xd -2022-12-04 19:39:48.455837 + : pb-IF4rLkwp | MPF|MPFernando| xd -2022-12-04 19:42:47.818857 + : pb-IF4rLkwp | MPF|MPFernando| gg -2022-12-04 19:42:50.319060 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| good night -2022-12-04 19:42:54.049465 + : pb-IF4rLkwp | MPF|MPFernando| good night -2022-12-04 19:47:01.245504 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| Good night -2022-12-04 19:51:02.459459 + : pb-IF5RU2IPJg== | harishsola|harishsola| make a slow-moving -2022-12-04 19:56:12.603786 + : pb-IF4rVUcbVQ== | Fancydinne|Fancydinne| snger srry -2022-12-04 19:56:22.958845 + : pb-IF4DV2ItCQ== | CrushedWolf82537|anger| k -2022-12-04 19:57:30.457127 + : pb-IF4rVUcbVQ== | Fancydinne|Fancydinne| simple -2022-12-04 19:57:32.281854 + : pb-IF40U0ZaPw== | Android63614116|| -2022-12-04 19:57:32.426492 + : pb-IF40U0ZaPw== | Android63614116|| -2022-12-04 19:57:32.547026 + : pb-IF40U0ZaPw== | Android63614116|| -2022-12-04 19:57:32.665537 + : pb-IF40U0ZaPw== | Android63614116|| -2022-12-04 19:57:35.753655 + : pb-IF4DV2ItCQ== | CrushedWolf82537|anger| 😂 -2022-12-04 19:58:19.017137 + : pb-IF4rVUcbVQ== | Fancydinne|Fancydinne| give me a chance anger -2022-12-04 19:58:26.145663 + : pb-IF4DV2ItCQ== | CrushedWolf82537|anger| srry -2022-12-04 19:58:40.667841 + : pb-IF4rVUcbVQ== | Fancydinne|Fancydinne| shtt -2022-12-04 19:59:06.372071 + : pb-IF4rVUcbVQ== | Fancydinne|Fancydinne| lol -2022-12-04 20:02:55.559657 + : pb-IF4DV2ItCQ== | CrushedWolf82537|anger| seen poli -2022-12-04 20:02:59.934031 + : pb-IF4DV2ItCQ== | CrushedWolf82537|anger| mass -2022-12-04 20:03:54.378985 + : pb-IF4rVUcbVQ== | Fancydinne|Fancydinne| shtt bro -2022-12-04 20:05:15.532373 + : pb-IF4BPFRY | dhairyabhavya|Sparkyyyyy| yeah -2022-12-04 20:05:24.952235 + : pb-IF4BPFRY | dhairyabhavya|Sparkyyyyy| -2022-12-04 20:08:44.334561 + : pb-IF5RU2IPJg== | harishsola|Boomer| i am noob -2022-12-04 20:13:44.162056 + : pb-IF4rLkwp | MPF|MPF| bruh -2022-12-04 20:14:54.362721 + : pb-IF4BPFRY | dhairyabhavya|Sparkyyyyy| lol -2022-12-04 20:15:02.603860 + : pb-IF4rLkwp | MPF|MPF| xd -2022-12-04 20:16:12.374582 + : pb-IF5RU2IPJg== | harishsola|Sunshine| tain -2022-12-04 20:16:32.602419 + : pb-IF4BPFRY | dhairyabhavya|Sparkyyyyy| bruh woah -2022-12-04 20:16:36.092571 + : pb-IF4rLkwp | MPF|MPF| xd -2022-12-04 20:17:31.232467 + : pb-IF4BPFRY | dhairyabhavya|Sparkyyyyy| die -2022-12-04 20:17:35.605423 + : pb-IF4rLkwp | MPF|MPF| ee -2022-12-04 20:23:28.127113 + : pb-IF4rLkwp | MPF|MPF| ow -2022-12-04 20:23:29.853266 + : pb-IF4BPFRY | dhairyabhavya|Sparkyyyyy| lol -2022-12-04 20:23:32.398559 + : pb-IF4rLkwp | MPF|MPF| xd -2022-12-04 20:23:33.705117 + : pb-IF5RU2IPJg== | harishsola|Charlie| i am dc super man -2022-12-04 20:23:47.554627 + : pb-IF5RU2IPJg== | harishsola|Charlie| hahahahah -2022-12-04 20:24:13.004741 + : pb-IF5RU2IPJg== | harishsola|Charlie| i have 1000 mother box -2022-12-04 20:24:33.192503 + : pb-IF4BPFRY | dhairyabhavya|Sparkyyyyy| noo -2022-12-04 20:25:38.427391 + : pb-IF4rLkwp | MPF|MPF| gg -2022-12-04 20:28:37.290653 + : pb-IF4BPFRY | dhairyabhavya|Sparkyyyyy| yeah -2022-12-04 20:30:24.289951 + : pb-IF4IIUU6 | davidson6466|davidson6466| -2022-12-04 20:30:24.459998 + : pb-IF4IIUU6 | davidson6466|davidson6466| -2022-12-04 20:30:24.620236 + : pb-IF4IIUU6 | davidson6466|davidson6466| -2022-12-04 20:30:24.760151 + : pb-IF4IIUU6 | davidson6466|davidson6466| -2022-12-04 20:31:57.894260 + : pb-IF4rLkwp | MPF|MPF| gg -2022-12-04 20:32:48.271139 + : pb-IF4rLkwp | MPF|MPF| xd -2022-12-04 20:37:24.749390 + : pb-IF4rLkwp | MPF|MPF| gg -2022-12-04 20:42:17.619261 + : pb-IF4vU2lbDw== | StoicTurbulence18|SINGAM| hacker hey kya -2022-12-04 20:42:55.614663 + : pb-IF4rLkwp | MPF|MPF| you not knowing how the game works, is not me hacking -2022-12-04 20:43:02.241869 + : pb-IF4rLkwp | MPF|MPF| just get better and stop complaining -2022-12-04 20:43:18.503349 + : pb-IF4FUksNDg== | capnStranger|Minnal⚡Strange| bruh -2022-12-04 20:46:17.633542 + : pb-IF4FUksNDg== | capnStranger|| 2 mpf? -2022-12-04 20:46:28.050722 + : pb-IF4rLkwp | MPF|MPF| xd -2022-12-04 20:46:53.674981 + : pb-IF4FUksNDg== | capnStranger|| one can join here ur team is too op -2022-12-04 20:47:02.277663 + : pb-IF4rLkwp | MPF|| oki -2022-12-04 20:49:09.646459 + : pb-IF4FUksNDg== | capnStranger|Str∆nge| wut -2022-12-04 20:53:04.797209 + : pb-IF4rLkwp | MPF|MPFernando| gg -2022-12-04 20:53:16.954894 + : pb-IF4FUksNDg== | capnStranger|Str∆nge| where da slowmo match -2022-12-04 20:53:20.761717 + : pb-IF4rLkwp | MPF|MPFernando| xd -2022-12-04 20:53:54.408548 + : pb-IF4FUksNDg== | capnStranger|Str∆nge| dis what im talkin -2022-12-04 20:53:54.956842 + : pb-IF4rLkwp | MPF|MPFernando| u can see the next map on the bottom right, if u didn't know -2022-12-04 20:57:59.487576 + : pb-IF4rLkwp | MPF|MPFernando| bruuh -2022-12-04 20:58:38.004281 + : pb-IF4rLkwp | MPF|MPFernando| 1% battery 8( -2022-12-04 20:58:43.119377 + : pb-IF4rLkwp | MPF|MPFernando| bye in advance -2022-12-04 20:58:51.159425 + : pb-IF4FUksNDg== | capnStranger|Str∆nge| bruh -2022-12-04 20:59:22.043285 + : pb-IF4rLkwp | MPF|MPFernando| wtt it says 0% -2022-12-04 20:59:46.139377 + : pb-IF4FUksNDg== | capnStranger|Str∆nge| plug it -2022-12-04 21:05:42.251169 + : pb-IF4FUksNDg== | capnStranger|Str∆nge| u back? -2022-12-04 21:11:51.397776 + : pb-IF4FUksNDg== | capnStranger|Str∆nge| what the hell is goin on -2022-12-04 21:17:05.792072 + : pb-IF4-UEgO | kishordevl|StArK| we will win nxt -2022-12-04 21:17:15.834802 + : pb-IF4FUksNDg== | capnStranger|Str∆nge| sure -2022-12-04 21:18:28.742690 + : pb-IF4HU3YGBw== | CompanionableRag46|Lancelot| wth -2022-12-04 21:22:34.870039 + : pb-IF4-UEgO | kishordevl|StArK| 😎 -2022-12-04 21:30:28.545358 + : pb-IF4-UEgO | kishordevl|StArK| 😎 -2022-12-04 21:37:44.726962 + : pb-IF4IV04ZKw== | paratròóper|Baabla| -2022-12-04 21:37:44.891335 + : pb-IF4IV04ZKw== | paratròóper|Baabla| -2022-12-04 21:37:50.813174 + : pb-IF4IV04ZKw== | paratròóper|Baabla| shit -2022-12-04 21:59:08.310980 + : pb-IF4IV04ZKw== | paratròóper|Baabla| ******* team -2022-12-04 22:01:58.609777 + : pb-IF5SVxkfLw== | SapphireM2|Nas10| -2022-12-04 22:01:58.764479 + : pb-IF5SVxkfLw== | SapphireM2|Nas10| -2022-12-04 22:01:58.934118 + : pb-IF5SVxkfLw== | SapphireM2|Nas10| -2022-12-04 22:02:44.444825 + : pb-IF5SVxkfLw== | SapphireM2|Nas10| -2022-12-04 22:03:02.996576 + : pb-IF5SVxkfLw== | SapphireM2|Nas10| no bomb -2022-12-04 22:03:58.576956 + : pb-IF4IV04ZKw== | paratròóper|Baabla| fx u nas10 -2022-12-04 22:04:04.113574 + : pb-IF5SVxkfLw== | SapphireM2|Nas10| shut up -2022-12-04 22:04:08.024851 + : pb-IF4IV04ZKw== | paratròóper|Baabla| i wil use bomb wen3va i like -2022-12-04 22:04:15.520026 + : pb-IF5SVxkfLw== | SapphireM2|Nas10| no bomb in solo eliminatiom -2022-12-04 22:04:25.436396 + : pb-IF4IV04ZKw== | paratròóper|Baabla| as i said.. fx u -2022-12-04 22:04:30.644902 + : pb-IF5SVxkfLw== | SapphireM2|Nas10| fck ur mom -2022-12-04 22:04:46.365160 + : pb-IF4IV04ZKw== | paratròóper|Baabla| i wil stil use bomb -2022-12-04 22:04:57.749109 + : pb-IF5SVxkfLw== | SapphireM2|Nas10| ok i -2022-12-04 22:09:28.340165 + : pb-IF4IV04ZKw== | paratròóper|Baabla| ok -2022-12-04 22:09:30.439082 + : pb-IF4IV04ZKw== | paratròóper|Baabla| lol -2022-12-04 22:09:30.477381 + : pb-IF5SVxkfLw== | SapphireM2|THE HAMMER 👍| -2022-12-04 22:23:03.616584 + : pb-IF4IV04ZKw== | paratròóper|Baabla| lol -2022-12-04 22:24:17.417553 + : pb-IF4IV04ZKw== | paratròóper|Baabla| lol -2022-12-04 22:25:25.434428 + : pb-IF4IV04ZKw== | paratròóper|Baabla| hahahahaa -2022-12-04 22:28:39.154157 + : pb-IF4IV04ZKw== | paratròóper|Baabla| i def. -2022-12-04 22:29:45.392215 + : pb-IF4IV04ZKw== | paratròóper|Baabla| haha -2022-12-04 22:32:47.261956 + : pb-IF4IV04ZKw== | paratròóper|Baabla| gg haha -2022-12-04 22:33:55.225689 + : pb-IF4IV04ZKw== | paratròóper|Baabla| sry -2022-12-04 22:41:33.849374 + : pb-IF4IV04ZKw== | paratròóper|Baabla| nc -2022-12-04 22:44:19.131338 + : pb-IF4yVGIYPQ== | CozyProkil|34.34.56.23| wow -2022-12-04 22:46:50.901471 + : pb-IF4sUhAOXA== | NiuNiu0808|Nani!?!?!?| -2022-12-04 22:49:26.976228 + : pb-IF4IV04ZKw== | paratròóper|Baabla| lol -2022-12-04 22:49:29.805564 + : pb-IF4sUhAOXA== | NiuNiu0808|Nani!?!?!?| -2022-12-04 22:51:01.421591 + : pb-IF4IV04ZKw== | paratròóper|Baabla| lol -2022-12-04 22:51:04.241923 + : pb-IF4sUhAOXA== | NiuNiu0808|Nani!?!?!?| -2022-12-04 22:51:04.464557 + : pb-IF4sUhAOXA== | NiuNiu0808|Nani!?!?!?| -2022-12-04 23:01:03.551071 + : pb-IF4IV04ZKw== | paratròóper|Baabla| bye bro -2022-12-05 00:57:05.751508 + : pb-IF4pUmQcPA== | PC363206|APR| beast ****s chunk -2022-12-05 01:14:57.944013 + : pb-IF4gUk8RCw== | IGNOBLETRASLATION65|ÇRÎSTĮĀŃØ R7 ¢R7| -2022-12-05 01:14:58.073455 + : pb-IF4gUk8RCw== | IGNOBLETRASLATION65|ÇRÎSTĮĀŃØ R7 ¢R7| -2022-12-05 01:30:32.408732 + : pb-IF4pUmQcPA== | PC363206|APR| now-a-days, marvel sucks -2022-12-05 02:55:10.149420 + : pb-IF4wV24HBw== | GiantRobot|GiantRobot| -2022-12-05 03:04:37.652910 + : pb-IF4zU3chAg== | DaringQuotation17|Only Gods - *_*| unga amma -2022-12-05 03:04:59.531496 + : pb-IF4zU3chAg== | DaringQuotation17|Only Gods - *_*| the vidiya payalae -2022-12-05 03:06:22.589958 + : pb-IF4JU0gtLA== | TiredBrai2|Killer| only god is hacker -2022-12-05 03:06:34.686953 + : pb-IF4pUxUDDQ== | CulturalJa|CulturalJa| hacker killer -2022-12-05 03:06:46.500529 + : pb-IF4JU0gtLA== | TiredBrai2|Killer| noo -2022-12-05 03:06:50.000644 + : pb-IF4JU0gtLA== | TiredBrai2|Killer| noo -2022-12-05 03:06:57.177327 + : pb-IF4JU0gtLA== | TiredBrai2|Killer| i am pro -2022-12-05 03:07:15.936891 + : pb-IF4JU0gtLA== | TiredBrai2|Killer| see -2022-12-05 03:51:09.389553 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| u two me one -2022-12-05 03:51:15.332001 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| team change -2022-12-05 03:51:40.852174 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| awesome go to red -2022-12-05 03:56:16.830432 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| amg betrayer -2022-12-05 03:57:06.077347 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| kick amg -2022-12-05 03:57:13.252079 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| he betray every round -2022-12-05 03:57:23.366538 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| from long time betraying -2022-12-05 03:57:28.336023 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| type 1 -2022-12-05 03:59:11.292533 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| amg betrayer -2022-12-05 04:06:33.546061 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| cowboy -2022-12-05 04:07:49.821877 + : pb-IF4TU0oFAQ== | FamousImprovement43|Cowboy| -2022-12-05 04:07:50.061773 + : pb-IF4TU0oFAQ== | FamousImprovement43|Cowboy| -2022-12-05 04:07:50.302206 + : pb-IF4TU0oFAQ== | FamousImprovement43|Cowboy| -2022-12-05 04:07:50.471942 + : pb-IF4TU0oFAQ== | FamousImprovement43|Cowboy| -2022-12-05 04:08:20.091300 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| chunk ko mara -2022-12-05 04:08:31.551291 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| vino ne -2022-12-05 04:10:11.184727 + : pb-IF4xU04OMg== | PC772976|~PC~| Namaskar dosto -2022-12-05 04:10:38.150874 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| hii namaskar -2022-12-05 04:10:44.370956 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| ram ram -2022-12-05 04:10:50.799971 + : pb-IF4xU04OMg== | PC772976|~PC~| THANKS -2022-12-05 04:11:00.156515 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| come to bcs fun gameplay -2022-12-05 04:11:01.971862 + : pb-IF4TU0oFAQ== | FamousImprovement43|Cowboy| harii omm -2022-12-05 04:11:04.223861 + : pb-IF4xU04OMg== | PC772976|~PC~| i remember you -2022-12-05 04:11:10.651040 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| pari hou may -2022-12-05 04:11:15.202581 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| lets -2022-12-05 04:11:18.451030 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| muja na chuna -2022-12-05 04:11:25.943582 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| bcs fun gameplay germany -2022-12-05 04:11:46.256548 + : pb-IF4xU04OMg== | PC772976|~PC~| i was recognised earlier as a Player named India or KiNG -2022-12-05 04:11:54.546897 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| im bcs fun gameplay germany no 1 -2022-12-05 04:12:14.975999 + : pb-IF4xU04OMg== | PC772976|~PC~| Turkish our battle will be good -2022-12-05 04:12:25.751737 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| half -2022-12-05 04:12:40.287060 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| im recor %194 -2022-12-05 04:12:43.670608 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| damage -2022-12-05 04:12:44.091012 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| half girlfriend -2022-12-05 04:13:50.168074 + : pb-IF4xU04OMg== | PC772976|~PC~| half gf half enjoyment chetan bhagat -2022-12-05 04:14:00.293044 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| im not have girlfriend 😔 -2022-12-05 04:14:19.226144 + : pb-IF5RUmMsFg== | karanshetty6|ChunK| why not u not have -2022-12-05 04:14:21.051032 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| ok boyfriend -2022-12-05 04:14:43.814609 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| be. i am overweight -2022-12-05 04:14:48.143921 + : pb-IF4xU04OMg== | PC772976|~PC~| me too -2022-12-05 04:14:53.808342 + : pb-IF4xU04OMg== | PC772976|~PC~| just by 2kg -2022-12-05 04:14:59.691981 + : pb-IF4xU04OMg== | PC772976|~PC~| my weight is 81 kg -2022-12-05 04:15:32.761425 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| my boy 163 kg 75 -2022-12-05 04:15:42.331088 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| wooo -2022-12-05 04:15:46.631057 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| ooo -2022-12-05 04:15:51.068346 + : pb-IF4xU04OMg== | PC772976|~PC~| what -2022-12-05 04:16:01.208930 + : pb-IF4xU04OMg== | PC772976|~PC~| 163 cm height? -2022-12-05 04:16:15.260911 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 04:16:20.051114 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| age -2022-12-05 04:16:21.867437 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| come to bcs fun gameplay germany -2022-12-05 04:16:34.360426 + : pb-IF4xU04OMg== | PC772976|~PC~| my height is 188cm 81 kg weight -2022-12-05 04:16:45.087451 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| oh -2022-12-05 04:16:50.250870 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| 190 -2022-12-05 04:17:00.196542 + : pb-IF4xU04OMg== | PC772976|~PC~| almost 190 if i wear shoes -2022-12-05 04:17:30.671048 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| ping -2022-12-05 04:17:45.296894 + : pb-IF4xU04OMg== | PC772976|~PC~| ich bin frum detschland -2022-12-05 04:18:19.517881 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| not emci -2022-12-05 04:18:32.851115 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| not pinck 🤪 -2022-12-05 04:18:45.320376 + : pb-IF4xU04OMg== | PC772976|~PC~| wtf german -2022-12-05 04:18:49.390978 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| sorry -2022-12-05 04:18:52.271502 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| im turkish -2022-12-05 04:19:01.806273 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| your through flag -2022-12-05 04:19:13.208452 + : pb-IF4xU04OMg== | PC772976|~PC~| turkish nice -2022-12-05 04:19:17.540751 + : pb-IF4xU04OMg== | PC772976|~PC~| I am Indian -2022-12-05 04:19:32.141953 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| im troll gaming -2022-12-05 04:19:43.516388 + : pb-IF4xU04OMg== | PC772976|~PC~| i am gonna smach your a$$ -2022-12-05 04:19:44.631071 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| roll games -2022-12-05 04:20:23.588790 + : pb-IF4xU04OMg== | PC772976|~PC~| sorry god -2022-12-05 04:20:38.571236 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| ok boy -2022-12-05 04:21:01.636767 + : pb-IF4xU04OMg== | PC772976|~PC~| turkish guy prepare for fight -2022-12-05 04:21:02.890941 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| god bless 🙏 you -2022-12-05 04:21:27.308773 + : pb-IF4xU04OMg== | PC772976|~PC~| bahaabhahaababahaha -2022-12-05 04:21:36.595085 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| im come to a//// -2022-12-05 04:21:41.164399 + : pb-IF4xU04OMg== | PC772976|~PC~| sure -2022-12-05 04:21:43.732899 + : pb-IF4xU04OMg== | PC772976|~PC~| welcome -2022-12-05 04:21:51.346836 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| thanks -2022-12-05 04:21:57.048679 + : pb-IF4xU04OMg== | PC772976|~PC~| fight fairly -2022-12-05 04:21:57.112939 + : pb-IF4xU04OMg== | PC772976|~PC~| -2022-12-05 04:22:09.800004 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| ok come bcs fun gameplay -2022-12-05 04:22:16.976621 + : pb-IF4xU04OMg== | PC772976|~PC~| no -2022-12-05 04:22:20.030993 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| turkeybspam -2022-12-05 04:22:22.051094 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| why -2022-12-05 04:22:22.480697 + : pb-IF4xU04OMg== | PC772976|~PC~| i like it here -2022-12-05 04:22:36.470288 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| bcs fun gameplay in mod -2022-12-05 04:22:37.091105 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| sorry -2022-12-05 04:22:49.491213 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| toke -2022-12-05 04:23:51.248290 + : pb-IF4xU04OMg== | PC772976|~PC~| pari rip -2022-12-05 04:24:16.354970 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| -2022-12-05 04:24:16.545760 + : pb-IF5UVWk7Aw== | ShamInformation21|Türkiş the light| -2022-12-05 04:24:28.841301 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| turkey is Bird -2022-12-05 04:24:33.949465 + : pb-IF4xU04OMg== | PC772976|~PC~| oh -2022-12-05 04:27:24.999605 + : pb-IF4xU04OMg== | PC772976|~PC~| wtf -2022-12-05 04:28:43.401614 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| chunky Pandey -2022-12-05 04:28:49.461025 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| nice -2022-12-05 04:29:02.688079 + : pb-IF4xU04OMg== | PC772976|~PC~| lol -2022-12-05 04:29:08.501095 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| 3 vs 1 -2022-12-05 04:29:13.135731 + : pb-IF4xU04OMg== | PC772976|~PC~| no -2022-12-05 04:29:23.156209 + : pb-IF4xU04OMg== | PC772976|~PC~| it was equal in sttart -2022-12-05 04:30:35.441220 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| ** -2022-12-05 04:30:42.141044 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| PC -2022-12-05 04:30:54.187510 + : pb-IF4xU04OMg== | PC772976|~PC~| emperor sir what? -2022-12-05 04:31:11.536126 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| mistake -2022-12-05 04:31:15.439809 + : pb-IF4xU04OMg== | PC772976|~PC~| when -2022-12-05 04:31:21.516094 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| B -2022-12-05 04:31:24.996052 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| C -2022-12-05 04:32:39.256321 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| sorry -2022-12-05 04:32:44.923460 + : pb-IF4xU04OMg== | PC772976|~PC~| sorry rejected -2022-12-05 04:33:49.616172 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| waa ky Sean aby -2022-12-05 04:34:38.556091 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| -2022-12-05 04:35:21.543773 + : pb-IF4xU04OMg== | PC772976|~PC~| what are you eating in breakfast? -2022-12-05 04:35:33.256527 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| **** -2022-12-05 04:35:47.125059 + : pb-IF4TU0oFAQ== | FamousImprovement43|Wedge| -2022-12-05 04:35:47.375000 + : pb-IF4TU0oFAQ== | FamousImprovement43|Wedge| -2022-12-05 04:35:47.844997 + : pb-IF4TU0oFAQ== | FamousImprovement43|Wedge| -2022-12-05 04:35:48.205403 + : pb-IF4TU0oFAQ== | FamousImprovement43|Wedge| -2022-12-05 04:35:59.695674 + : pb-IF4xU04OMg== | PC772976|~PC~| damn you got spam warning sed -2022-12-05 04:36:28.936235 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| **** -2022-12-05 04:37:10.816188 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| *** -2022-12-05 04:37:16.486095 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| **** -2022-12-05 04:37:39.976290 + : pb-IF4xU04OMg== | PC772976|~PC~| type space and dot . in between words -2022-12-05 04:37:50.854986 + : pb-IF4TU0oFAQ== | FamousImprovement43|Wedge| -2022-12-05 04:37:56.100619 + : pb-IF4xU04OMg== | PC772976|~PC~| token magic yeh -2022-12-05 04:38:01.076744 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-05 04:38:01.233125 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-05 04:38:01.381067 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-05 04:38:12.196118 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| checkmate just typing star ***** -2022-12-05 04:38:29.140599 + : pb-IF4xU04OMg== | PC772976|~PC~| negan nice -2022-12-05 04:38:36.009740 + : pb-IF40UhdaNA== | HÊRÇÚLÉS|Nêgãn| 👍 -2022-12-05 04:39:16.112562 + : pb-IF4xU04OMg== | PC772976|~PC~| breakfast me kya kha rahe ho? -2022-12-05 04:40:26.816772 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| poha -2022-12-05 04:40:39.436093 + : pb-IF4xU04OMg== | PC772976|~PC~| with yoghurt/dahi -2022-12-05 04:41:44.100284 + : pb-IF4xU04OMg== | PC772976|~PC~| hahahhah -2022-12-05 04:42:28.596130 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| sorry -2022-12-05 04:42:31.621669 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| finger slipped -2022-12-05 04:44:02.822990 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 04:44:18.796505 + : pb-IF4xU04OMg== | PC772976|~PC~| ie you rank 1 player from bcs fun games -2022-12-05 04:44:29.040063 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| me? -2022-12-05 04:44:29.101892 + : pb-IF40UhdaNA== | HÊRÇÚLÉS|Nêgãn| yes -2022-12-05 04:44:39.106486 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| who -2022-12-05 04:45:04.351977 + : pb-IF40UhdaNA== | HÊRÇÚLÉS|Nêgãn| uncas you fvcking dumbbass -2022-12-05 04:45:08.292476 + : pb-IF4xU04OMg== | PC772976|~PC~| negan i tried to save you but couldn't sorry dude -2022-12-05 04:45:21.756510 + : pb-IF4xU04OMg== | PC772976|~PC~| okay fight now -2022-12-05 04:45:23.149402 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| pc ... -2022-12-05 04:45:29.601070 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| fk -2022-12-05 04:45:29.656957 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 04:45:29.842033 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 04:45:59.646806 + : pb-IF40UhdaNA== | HÊRÇÚLÉS|Nêgãn| np -2022-12-05 04:46:36.996292 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| just kidding -2022-12-05 04:46:39.216759 + : pb-IF4xU04OMg== | PC772976|~PC~| emperor -2022-12-05 04:46:40.416303 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| 0 -2022-12-05 04:46:43.208629 + : pb-IF4xU04OMg== | PC772976|~PC~| really -2022-12-05 04:46:44.272102 + : pb-IF4xU04OMg== | PC772976|~PC~| 0 -2022-12-05 04:46:49.916409 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| yaaa -2022-12-05 04:47:02.396138 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| 🤪🤪🤪 -2022-12-05 04:47:02.516973 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 04:47:02.707114 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 04:47:07.223098 + : pb-IF40UhdaNA== | HÊRÇÚLÉS|Nêgãn| GG -2022-12-05 04:47:08.525027 + : pb-IF4xU04OMg== | PC772976|~PC~| prepare to fight -2022-12-05 04:47:21.315620 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| defend -2022-12-05 04:48:59.681502 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 04:49:13.888650 + : pb-IF4xU04OMg== | PC772976|~PC~| yey -2022-12-05 04:49:16.032095 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| 🗿 -2022-12-05 04:49:17.056982 + : pb-IF40UhdaNA== | HÊRÇÚLÉS|Nêgãn| shiiii5 -2022-12-05 04:49:19.296702 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| yey -2022-12-05 04:49:20.330802 + : pb-IF40UhdaNA== | HÊRÇÚLÉS|Nêgãn| 🗿 -2022-12-05 04:49:28.654812 + : pb-IF40UhdaNA== | HÊRÇÚLÉS|Nêgãn| well played -2022-12-05 04:49:29.001531 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| bye -2022-12-05 04:49:30.876063 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| hii pc -2022-12-05 04:49:32.300388 + : pb-IF4xU04OMg== | PC772976|~PC~| i am eating aloo parantha with curd -2022-12-05 04:49:37.379651 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| #1 after all😁 -2022-12-05 04:49:44.956512 + : pb-IF4xU04OMg== | PC772976|~PC~| magic joker i know you are emperor god -2022-12-05 04:50:02.296442 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| no thisis my brother play -2022-12-05 04:50:24.872269 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| pc mujhe bhi do😢 -2022-12-05 04:50:28.716425 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| big brother use emperor god and I am use magic joker -2022-12-05 04:50:35.112741 + : pb-IF40UhdaNA== | HÊRÇÚLÉS|Nêgãn| kick this betrayer -2022-12-05 04:50:36.705263 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 04:50:36.895119 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 04:50:54.616431 + : pb-IF4xU04OMg== | PC772976|~PC~| aloo parantha lelo bhai -2022-12-05 04:51:04.365345 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 04:51:08.896610 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| c.h.ut dedo -2022-12-05 04:51:14.240022 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| 💀 -2022-12-05 04:51:15.940374 + : pb-IF4xU04OMg== | PC772976|~PC~| lelo -2022-12-05 04:51:29.424770 + : pb-IF40UhdaNA== | HÊRÇÚLÉS|Nêgãn| uncas are you dumb? -2022-12-05 04:51:37.015708 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 04:51:44.520425 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| pc got ****? -2022-12-05 04:51:46.800344 + : pb-IF4xU04OMg== | PC772976|~PC~| okay i am going afk -2022-12-05 04:51:49.592504 + : pb-IF4xU04OMg== | PC772976|~PC~| sorry IE -2022-12-05 04:51:55.039461 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| phussy? -2022-12-05 04:51:59.025053 + : pb-IF4xU04OMg== | PC772976|~PC~| no -2022-12-05 04:52:00.516964 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 04:52:00.717082 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 04:52:05.698528 + : pb-IF4DU0g6EQ== | GreenishHoplite57|.....| sorry IE -2022-12-05 04:52:09.906531 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| sed -2022-12-05 04:52:11.968953 + : pb-IF4DU0g6EQ== | GreenishHoplite57|.....| kick this betrayer -2022-12-05 04:52:16.148094 + : pb-IF4xU04OMg== | PC772976|~PC~| licked -2022-12-05 04:52:58.574873 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 04:52:58.735858 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 04:52:59.867098 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 04:53:00.056923 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 04:53:01.808153 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| bro..m -2022-12-05 04:53:02.557773 + : pb-IF40UhdaNA== | HÊRÇÚLÉS|Nêgãn| 🗿 -2022-12-05 04:53:21.236058 + : pb-IF4xU04OMg== | PC772976|~PC~| i am afk sorry all -2022-12-05 04:53:25.289690 + : pb-IF40UhdaNA== | HÊRÇÚLÉS|Nêgãn| this guyss -2022-12-05 04:53:34.865307 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 04:53:35.045390 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 04:53:35.221088 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 04:54:04.486999 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| kick karo sab uncas ko -2022-12-05 04:54:05.082731 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 04:54:13.745637 + : pb-IF48U3FaNQ== | DilatoryHo|Uncas| 0 -2022-12-05 04:54:32.592414 + : pb-IF4xU04OMg== | PC772976|~PC~| i saved IE with one fingure -2022-12-05 04:54:42.201571 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| nevermind -2022-12-05 04:54:48.379089 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| t fk does that mean -2022-12-05 04:54:51.806389 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| I'm WHITE -2022-12-05 04:54:55.822869 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| not ie -2022-12-05 04:55:03.629845 + : pb-IF5RUmMsFg== | karanshetty6|ChunK| racist -2022-12-05 04:55:04.348387 + : pb-IF4xU04OMg== | PC772976|~PC~| white i remember you bro -2022-12-05 04:55:17.630829 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| rapist -2022-12-05 04:55:21.379240 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| WHT your phone doesnot support my font -2022-12-05 04:55:23.516945 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 04:55:23.621671 + : pb-IF40UhdaNA== | HÊRÇÚLÉS|Nêgãn| 🗿 -2022-12-05 04:55:31.012848 + : pb-IF4xU04OMg== | PC772976|~PC~| laptop -2022-12-05 04:55:40.517787 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| bro it's racist not rapist💀 -2022-12-05 04:55:47.976890 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| ohh yeah ok -2022-12-05 04:55:51.630324 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| it's me white 🤍 -2022-12-05 04:55:58.496112 + : pb-IF4xU04OMg== | PC772976|~PC~| psyciotherapist -2022-12-05 04:55:59.681474 + : pb-IF5RUmMsFg== | karanshetty6|ChunK| ho bhi sakta hey -2022-12-05 04:56:00.023026 + : pb-IF40UhdaNA== | HÊRÇÚLÉS|Nêgãn| guys pls kick -2022-12-05 04:56:05.512641 + : pb-IF4xU04OMg== | PC772976|~PC~| kicked -2022-12-05 04:56:09.929904 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| zavadya tu marathi ahe ka -2022-12-05 04:56:28.477749 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| ho na bhai -2022-12-05 04:56:31.977092 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| bs ka bhai -2022-12-05 04:56:32.544106 + : pb-IF4xU04OMg== | PC772976|~PC~| nahi -2022-12-05 04:57:16.934038 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| sdy -2022-12-05 04:57:19.086285 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| sry -2022-12-05 04:57:31.756190 + : pb-IF4xU04OMg== | PC772976|~PC~| no sry give moneey -2022-12-05 04:57:39.428564 + : pb-IF48U3FaNQ== | DilatoryHo|Uncas| -2022-12-05 04:57:39.516981 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 04:57:39.697368 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 04:57:39.786182 + : pb-IF48U3FaNQ== | DilatoryHo|Uncas| -2022-12-05 04:57:39.975787 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 04:57:40.626472 + : pb-IF48U3FaNQ== | DilatoryHo|Uncas| -2022-12-05 04:57:41.199738 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 04:57:41.214718 + : pb-IF40UhdaNA== | HÊRÇÚLÉS|Nêgãn| 🗿 -2022-12-05 04:57:41.380178 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 04:57:41.679873 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 04:57:41.824893 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 04:57:42.027119 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| vry nois -2022-12-05 04:57:42.506512 + : pb-IF48U3FaNQ== | DilatoryHo|Uncas| -2022-12-05 04:57:50.888435 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| 🙂👍 -2022-12-05 04:57:51.081463 + : pb-IF5RUmMsFg== | karanshetty6|ChunK| noisre -2022-12-05 04:57:54.575500 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| udas uncas -2022-12-05 04:57:58.659994 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| kuthla ahe tu -2022-12-05 04:58:06.191147 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| sambhaji nagar -2022-12-05 04:58:12.632232 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| umm... -2022-12-05 04:58:18.106246 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| 1 -2022-12-05 04:58:18.880065 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| nao ky a tuzha -2022-12-05 04:58:30.346629 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| naaginnnnnnn -2022-12-05 04:58:39.718429 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 04:58:39.875135 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 04:58:40.017117 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 04:58:40.164003 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 04:58:41.699584 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 04:58:41.879966 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 04:58:42.039870 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 04:58:42.199905 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 04:58:43.540234 + : pb-IF4xU04OMg== | PC772976|~PC~| enjoying aloo paranthes -2022-12-05 04:58:54.123455 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| i like to be anonymous -2022-12-05 04:59:06.260147 + : pb-IF4xU04OMg== | PC772976|~PC~| access granted -2022-12-05 04:59:15.056769 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 04:59:15.244120 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 04:59:17.079893 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 04:59:17.399866 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 04:59:17.699997 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 04:59:18.034942 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 04:59:18.101701 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| bruh -2022-12-05 04:59:32.892767 + : pb-IF4xU04OMg== | PC772976|~PC~| sed -2022-12-05 04:59:52.200029 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| op -2022-12-05 05:00:03.568584 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| lele -2022-12-05 05:00:24.100874 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 05:00:33.340176 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| over -2022-12-05 05:00:34.716944 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:00:34.906990 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:00:37.698216 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| chlo bye gays -2022-12-05 05:00:39.019947 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 05:00:39.189988 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 05:00:39.215357 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 05:00:42.132091 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| guys** -2022-12-05 05:00:44.180223 + : pb-IF4xU04OMg== | PC772976|~PC~| bye -2022-12-05 05:00:48.652503 + : pb-IF5RUmMsFg== | karanshetty6|ChunK| rukk -2022-12-05 05:00:56.081622 + : pb-IF5RUmMsFg== | karanshetty6|ChunK| chai bola hey -2022-12-05 05:01:11.381901 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| kab Tak aayega☕ -2022-12-05 05:01:17.420162 + : pb-IF4xU04OMg== | PC772976|~PC~| kon -2022-12-05 05:01:27.088170 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| ☕👩 -2022-12-05 05:01:51.580665 + : pb-IF4xU04OMg== | PC772976|~PC~| protect me lol -2022-12-05 05:01:54.721386 + : pb-IF5RUmMsFg== | karanshetty6|ChunK| eeesssssshhh☕ -2022-12-05 05:02:16.667841 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 05:02:17.031654 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 05:02:32.082929 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| dedbody go brrrrrr -2022-12-05 05:02:38.008187 + : pb-IF4xU04OMg== | PC772976|~PC~| you died protecting me Respect -2022-12-05 05:02:45.507235 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:02:45.527147 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:02:48.779805 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| that's what men do -2022-12-05 05:02:57.416715 + : pb-IF40UhdaNA== | HÊRÇÚLÉS|Nêgãn| 👏 -2022-12-05 05:03:27.896983 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:03:28.076932 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:03:28.237026 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:03:29.757434 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:03:31.689115 + : pb-IF40UhdaNA== | HÊRÇÚLÉS|Nêgãn| lag 🗿 -2022-12-05 05:03:43.646540 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| bye y'all -2022-12-05 05:03:48.728790 + : pb-IF4xU04OMg== | PC772976|~PC~| bye -2022-12-05 05:03:53.951645 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| ab to chai bhi piliya -2022-12-05 05:04:06.751357 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| 👋🗿 -2022-12-05 05:04:23.246757 + : pb-IF40UhdaNA== | HÊRÇÚLÉS|Nêgãn| 👋 -2022-12-05 05:04:27.732180 + : pb-IF5RUmMsFg== | karanshetty6|ChunK| khana bhi khakar jao -2022-12-05 05:04:36.149185 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| update your phone ~PC~ -2022-12-05 05:04:36.872574 + : pb-IF4xU04OMg== | PC772976|~PC~| kha raha hu -2022-12-05 05:04:43.435495 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| it doesn't have wht -2022-12-05 05:04:48.108485 + : pb-IF4xU04OMg== | PC772976|~PC~| white me pc player hu -2022-12-05 05:04:57.430230 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| are Maine abhi breakfast tak nahi kiya h -2022-12-05 05:05:00.537280 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:05:00.716928 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:05:08.460290 + : pb-IF4xU04OMg== | PC772976|~PC~| lenovo ideapad gaming 3 laptop name -2022-12-05 05:05:08.604503 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| then update your fkin window -2022-12-05 05:05:13.002621 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| windows* -2022-12-05 05:05:26.456955 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| hey my brother also have the same -2022-12-05 05:05:36.748964 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| i5 1650ti -2022-12-05 05:05:38.784169 + : pb-IF4xU04OMg== | PC772976|~PC~| i am your brother -2022-12-05 05:05:47.055403 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| bro🗿🗿🗿 -2022-12-05 05:05:56.188523 + : pb-IF4xU04OMg== | PC772976|~PC~| na AMD Ryzen 7 1650 ti -2022-12-05 05:06:09.256322 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| yours a bit different -2022-12-05 05:06:13.646237 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| koi na byeeee -2022-12-05 05:06:20.316102 + : pb-IF4xU04OMg== | PC772976|~PC~| advanced llol bye -2022-12-05 05:06:23.123398 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| snapdragon 888 -2022-12-05 05:06:26.727058 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:06:26.887002 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:06:35.204123 + : pb-IF4xU04OMg== | PC772976|~PC~| a13 bionic chip -2022-12-05 05:06:37.199785 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| ayyy zavadya -2022-12-05 05:07:47.879940 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 05:07:48.088598 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 05:07:48.200237 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 05:07:48.360700 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 05:07:49.627059 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:07:49.826938 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:09:12.971309 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| blu wale noobdo jao khade khade **** mat chokho -2022-12-05 05:09:24.037318 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:09:24.206952 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:09:28.355875 + : pb-IF4xU04OMg== | PC772976|~PC~| bhai aloo paranthe kha raha hu -2022-12-05 05:09:35.600214 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| blue wale jao ** -2022-12-05 05:10:38.877639 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:10:39.067060 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:10:39.851193 + : pb-IF4hBFgH | MrDevil|MrDevil| nice -2022-12-05 05:10:46.408298 + : pb-IF4xU04OMg== | PC772976|~PC~| thanks -2022-12-05 05:12:46.426951 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:12:46.596848 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:12:48.509571 + : pb-IF4hBFgH | MrDevil|MrDevil| abey -2022-12-05 05:12:57.053816 + : pb-IF4xU04OMg== | PC772976|~PC~| haha devil -2022-12-05 05:13:08.883669 + : pb-IF4xU04OMg== | PC772976|~PC~| i defeated u with one fingure -2022-12-05 05:13:16.605271 + : pb-IF4hBFgH | MrDevil|MrDevil| yeah i know -2022-12-05 05:13:39.261318 + : pb-IF4hBFgH | MrDevil|MrDevil| my mates are ultra useless -2022-12-05 05:13:51.095800 + : pb-IF4xU04OMg== | PC772976|~PC~| well mines are awesome -2022-12-05 05:14:40.004971 + : pb-IF4hBFgH | MrDevil|MrDevil| see -2022-12-05 05:14:40.756969 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:14:40.936987 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| -2022-12-05 05:14:44.960040 + : pb-IF4xU04OMg== | PC772976|~PC~| i am eating 5th aloo arantha -2022-12-05 05:14:49.487481 + : pb-IF4TU0oFAQ== | FamousImprovement43|Luke| ******* player h team m -2022-12-05 05:16:35.560001 + : pb-IF4xU04OMg== | PC772976|~PC~| fayankaran hi -2022-12-05 05:16:44.431195 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| hi -2022-12-05 05:17:46.776459 + : pb-IF4hBFgH | MrDevil|MrDevil| My ping = 0ms -2022-12-05 05:17:59.903316 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| pc khel le bhai -2022-12-05 05:18:27.518376 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| 1 -2022-12-05 05:18:55.027699 + : pb-IF4hBFgH | MrDevil|MrDevil| Abey yaar -2022-12-05 05:18:58.711200 + : pb-IF4hBFgH | MrDevil|MrDevil| net hagra -2022-12-05 05:19:30.195899 + : pb-IF4xU04OMg== | PC772976|~PC~| hath dhone gaya tha -2022-12-05 05:19:54.010932 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| tab tak mene tume dho diya😁 -2022-12-05 05:20:02.855231 + : pb-IF4xU04OMg== | PC772976|~PC~| aacha kiya -2022-12-05 05:20:18.843366 + : pb-IF4xU04OMg== | PC772976|~PC~| kitnao bactria saf kar diya apne -2022-12-05 05:20:29.286381 + : pb-IF4hBFgH | MrDevil|MrDevil| yaaaaar -2022-12-05 05:20:33.893443 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| noise -2022-12-05 05:20:34.485782 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 4😁😁 -2022-12-05 05:20:36.235681 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| bois -2022-12-05 05:20:38.479836 + : pb-IF4xU04OMg== | PC772976|~PC~| mrdevil aacha khela bhe -2022-12-05 05:20:45.228225 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| ha -2022-12-05 05:21:25.062479 + : pb-IF4hBFgH | MrDevil|MrDevil| bisi meri naseeb hi futi hai -2022-12-05 05:23:57.211157 + : pb-IF4xU04OMg== | PC772976|~PC~| mafia lol -2022-12-05 05:24:50.046472 + : pb-IF4hBFgH | MrDevil|MrDevil| My ping = 0ms -2022-12-05 05:24:58.679901 + : pb-IF4xU04OMg== | PC772976|~PC~| my ping 124 ms -2022-12-05 05:25:14.871842 + : pb-IF4xU04OMg== | PC772976|~PC~| popat noob -2022-12-05 05:25:19.980993 + : pb-IF4xU04OMg== | PC772976|~PC~| throw -2022-12-05 05:26:22.176851 + : pb-IF4xU04OMg== | PC772976|~PC~| 11 -2022-12-05 05:26:36.543612 + : pb-IF4xU04OMg== | PC772976|~PC~| jake sabssh -2022-12-05 05:27:38.787685 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| amg ke wajase red harega😡 -2022-12-05 05:27:48.711960 + : pb-IF4xU04OMg== | PC772976|~PC~| mafia ke bajeh se -2022-12-05 05:28:05.972588 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| bomb dhal raha he hamere upar -2022-12-05 05:28:17.006036 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ban hoge amg -2022-12-05 05:28:21.955993 + : pb-IF4xU04OMg== | PC772976|~PC~| op thorw -2022-12-05 05:28:24.087688 + : pb-IF4xU04OMg== | PC772976|~PC~| throw -2022-12-05 05:28:27.088774 + : pb-IF4RU0EbUA== | Android63276533|Jake| yeah -2022-12-05 05:28:49.389408 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 05:28:49.574023 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 05:28:49.740180 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 05:28:49.941243 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 05:29:09.783954 + : pb-IF4xU04OMg== | PC772976|~PC~| go corona go -2022-12-05 05:30:09.146881 + : pb-IF4hBFgH | MrDevil|MrDevil| srry -2022-12-05 05:30:13.781139 + : pb-IF4hBFgH | MrDevil|MrDevil| My ping = 0ms -2022-12-05 05:30:32.126940 + : pb-IF4hBFgH | MrDevil|MrDevil| net fkd -2022-12-05 05:30:42.399287 + : pb-IF4xU04OMg== | PC772976|~PC~| mine net 100mb/s -2022-12-05 05:31:00.171547 + : pb-IF4xU04OMg== | PC772976|~PC~| 200mb/s -2022-12-05 05:31:26.353600 + : pb-IF4TUxEoKg== | TUJABAAP005|TUJABAAP005| devil lavdya -2022-12-05 05:31:40.263941 + : pb-IF4xU04OMg== | PC772976|~PC~| tujabaap aacha khela bhe -2022-12-05 05:31:48.065829 + : pb-IF4hBFgH | MrDevil|MrDevil| tujha baap lavdya -2022-12-05 05:32:26.276798 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| lag -2022-12-05 05:32:34.872128 + : pb-IF4xU04OMg== | PC772976|~PC~| lag full form? -2022-12-05 05:32:42.158287 + : pb-IF4hBFgH | MrDevil|MrDevil| dk -2022-12-05 05:32:49.313355 + : pb-IF4WU04ENQ== | HourlyTreaty30|Kanu 😇😇| -2022-12-05 05:32:49.473926 + : pb-IF4WU04ENQ== | HourlyTreaty30|Kanu 😇😇| -2022-12-05 05:32:49.683797 + : pb-IF4WU04ENQ== | HourlyTreaty30|Kanu 😇😇| -2022-12-05 05:32:57.587236 + : pb-IF4xU04OMg== | PC772976|~PC~| search on internet -2022-12-05 05:33:02.138248 + : pb-IF4hBFgH | MrDevil|MrDevil| learning ability genuinely -2022-12-05 05:33:06.316045 + : pb-IF4hBFgH | MrDevil|MrDevil| 🤣 -2022-12-05 05:33:11.519992 + : pb-IF4xU04OMg== | PC772976|~PC~| aacha -2022-12-05 05:33:20.164772 + : pb-IF4hBFgH | MrDevil|MrDevil| nahi bhai kuch aur hoga -2022-12-05 05:33:36.011146 + : pb-IF4xU04OMg== | PC772976|~PC~| note kar leta hu kahi interview me aajaye -2022-12-05 05:33:42.621261 + : pb-IF4hBFgH | MrDevil|MrDevil| hehe -2022-12-05 05:33:56.411606 + : pb-IF4xU04OMg== | PC772976|~PC~| fahim bhatt -2022-12-05 05:34:02.971980 + : pb-IF4RU0EbUA== | Android63276533|Jake| ayo why kick em -2022-12-05 05:34:07.406398 + : pb-IF4hBFgH | MrDevil|MrDevil| don't start kick vote for no reason -2022-12-05 05:34:15.815435 + : pb-IF4xU04OMg== | PC772976|~PC~| hello vivek -2022-12-05 05:34:34.298652 + : pb-IF4WU04ENQ== | HourlyTreaty30|Kanu 😇😇| fight with punch dont use bomb -2022-12-05 05:34:46.489086 + : pb-IF4WU04ENQ== | HourlyTreaty30|Kanu 😇😇| op -2022-12-05 05:34:50.225715 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| hii yeh kaisa system h -2022-12-05 05:35:08.453965 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| hii div -2022-12-05 05:35:16.999280 + : pb-IF4hBFgH | MrDevil|MrDevil| noice -2022-12-05 05:35:30.168671 + : pb-IF4nU3IxEw== | divs2104|| 😁hii ye kaise khelna h -2022-12-05 05:35:33.697564 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| hiii div -2022-12-05 05:35:42.524744 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😚agle match m -2022-12-05 05:35:45.328637 + : pb-IF4nU3IxEw== | divs2104|| hii jaan -2022-12-05 05:35:51.327633 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😁😁😚 -2022-12-05 05:35:54.916345 + : pb-IF4hBFgH | MrDevil|MrDevil| alliance khelna hai 1v1 -2022-12-05 05:36:03.148852 + : pb-IF4nU3IxEw== | divs2104|| 😚😚 -2022-12-05 05:36:11.444707 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| mood ho rhi h🥵😚😁 -2022-12-05 05:36:21.869021 + : pb-IF4nU3IxEw== | divs2104|| 🙈🙈 -2022-12-05 05:36:34.304172 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😚😚 -2022-12-05 05:36:47.198066 + : pb-IF4xU04OMg== | PC772976|~PC~| blue team very pro -2022-12-05 05:37:09.228698 + : pb-IF4nU3IxEw== | divs2104|| woh game baad m khelenge pehle ye game khel le😁😁 -2022-12-05 05:37:22.905474 + : pb-IF4xU04OMg== | PC772976|~PC~| vivek sab kuch badal gaya -2022-12-05 05:37:23.222372 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| us game m kya krte h😁 -2022-12-05 05:37:23.859540 + : pb-IF4hBFgH | MrDevil|MrDevil| yaar -2022-12-05 05:37:28.816075 + : pb-IF4hBFgH | MrDevil|MrDevil| net bawaal hai -2022-12-05 05:37:32.867499 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| pc. kya kya bdla -2022-12-05 05:37:41.077452 + : pb-IF4xU04OMg== | PC772976|~PC~| shield gloves -2022-12-05 05:37:49.949340 + : pb-IF4hBFgH | MrDevil|MrDevil| aur chat filter -2022-12-05 05:37:50.608185 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| mtlb -2022-12-05 05:37:54.588985 + : pb-IF4nU3IxEw== | divs2104|| tujhe ni pta 😁😚❤️ -2022-12-05 05:38:04.877331 + : pb-IF4xU04OMg== | PC772976|~PC~| only puranae players kan understand -2022-12-05 05:38:23.542410 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| mai toh ldki bn gya🤣 -2022-12-05 05:38:31.345207 + : pb-IF4xU04OMg== | PC772976|~PC~| aachi baat hai -2022-12-05 05:38:33.365629 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| kon lena mt meri,🤣 -2022-12-05 05:38:39.045459 + : pb-IF4xU04OMg== | PC772976|~PC~| flirt karo -2022-12-05 05:38:45.273615 + : pb-IF4nU3IxEw== | divs2104|divs2104| hawww -2022-12-05 05:39:03.308352 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| divya join roh kr -2022-12-05 05:39:07.445241 + : pb-IF4xU04OMg== | PC772976|~PC~| aaaw ya haaav -2022-12-05 05:39:23.396329 + : pb-IF4hBFgH | MrDevil|MrDevil| tum kya mast kaam karte ho maksud bhai -2022-12-05 05:39:25.495184 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| pc kya kya change hua bts toh -2022-12-05 05:39:44.002156 + : pb-IF4hBFgH | MrDevil|MrDevil| chat filter added script changed -2022-12-05 05:39:46.573254 + : pb-IF4xU04OMg== | PC772976|~PC~| bahut kuch -2022-12-05 05:39:54.496130 + : pb-IF4hBFgH | MrDevil|MrDevil| chat logs added -2022-12-05 05:40:14.134574 + : pb-IF4hBFgH | MrDevil|MrDevil| shield and punch powerups removed -2022-12-05 05:40:16.501396 + : pb-IF4xU04OMg== | PC772976|~PC~| my old name was KiNG and India -2022-12-05 05:40:25.364668 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| oh -2022-12-05 05:40:39.797281 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| i k9.u😁 -2022-12-05 05:41:39.565396 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| divya khel -2022-12-05 05:41:50.593906 + : pb-IF4nU3IxEw== | divs2104|divs2104| 🤭🤭🤭 -2022-12-05 05:41:59.113415 + : pb-IF4xU04OMg== | PC772976|~PC~| divya joti prajavvalti hogayi mann me -2022-12-05 05:41:59.264746 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| **** maar de blue ki -2022-12-05 05:43:00.415339 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| dum hai toh fight kr -2022-12-05 05:43:02.490306 + : pb-IF4DU3AABw== | YogeYogesh14|YogeYogesh14| go fight -2022-12-05 05:43:24.007530 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| akhir kar bomb se hi kaara noob PC -2022-12-05 05:43:43.527340 + : pb-IF4hBFgH | MrDevil|MrDevil| chill bro it's a game play for fun -2022-12-05 05:43:43.850201 + : pb-IF4DU3AABw== | YogeYogesh14|YogeYogesh14| nice -2022-12-05 05:44:21.475862 + : pb-IF4xU04OMg== | PC772976|~PC~| attacker good game bro -2022-12-05 05:44:37.387484 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| don't use bomb bro -2022-12-05 05:44:46.591986 + : pb-IF4xU04OMg== | PC772976|~PC~| i will try for sure -2022-12-05 05:45:13.259827 + : pb-IF4xU04OMg== | PC772976|~PC~| attacker good luck -2022-12-05 05:45:24.951236 + : pb-IF4hBFgH | MrDevil|MrDevil| ek punch k baad kaam khatam -2022-12-05 05:45:46.083767 + : pb-IF4RU0EbUA== | Android63276533|Jake| whats with people hatin using bombs the games called bombsquad -2022-12-05 05:46:02.977508 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| gg -2022-12-05 05:47:27.028523 + : pb-IF4xU04OMg== | PC772976|~PC~| attacker do you know fandvaees, kala land, India -2022-12-05 05:48:03.252823 + : pb-IF4hBFgH | MrDevil|MrDevil| My ping = 0ms -2022-12-05 05:48:13.955952 + : pb-IF4xU04OMg== | PC772976|~PC~| attacker bta toh de bhe -2022-12-05 05:50:23.912074 + : pb-IF4hBFgH | MrDevil|MrDevil| Abey -2022-12-05 05:50:28.315682 + : pb-IF4hBFgH | MrDevil|MrDevil| bomber -2022-12-05 05:50:38.298026 + : pb-IF4hBFgH | MrDevil|MrDevil| ATTACKER dono baar maara tune -2022-12-05 05:50:45.592038 + : pb-IF4xU04OMg== | PC772976|~PC~| kick -2022-12-05 05:50:47.131964 + : pb-IF4xU04OMg== | PC772976|~PC~| karo -2022-12-05 05:50:50.263799 + : pb-IF4xU04OMg== | PC772976|~PC~| lol -2022-12-05 05:51:34.572038 + : pb-IF4xU04OMg== | PC772976|~PC~| vimal pan masala -2022-12-05 05:52:26.649166 + : pb-IF4xU04OMg== | PC772976|~PC~| lol -2022-12-05 05:53:34.877802 + : pb-IF4hBFgH | MrDevil|MrDevil| sahi team hai -2022-12-05 05:54:32.646820 + : pb-IF4hBFgH | MrDevil|MrDevil| nice team mates ✌️ -2022-12-05 05:54:44.740949 + : pb-IF4xU04OMg== | PC772976|~PC~| vivek op -2022-12-05 05:54:44.820496 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| ae oc -2022-12-05 05:54:45.755303 + : pb-IF4hBFgH | MrDevil|MrDevil| yeh dekho -2022-12-05 05:54:54.394084 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😁 -2022-12-05 05:58:40.121493 + : pb-IF4hBFgH | MrDevil|MrDevil| love day ka team -2022-12-05 05:58:43.073009 + : pb-IF4nUnEHVg== | HacktasticCadet89388|KILLER| -2022-12-05 05:58:43.222621 + : pb-IF4nUnEHVg== | HacktasticCadet89388|KILLER| -2022-12-05 05:58:47.689514 + : pb-IF4xU04OMg== | PC772976|~PC~| yey love days -2022-12-05 06:01:34.840655 + : pb-IF4hBFgH | MrDevil|MrDevil| sandaas -2022-12-05 06:01:41.360692 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| maar b☺️😁 -2022-12-05 06:02:04.363787 + : pb-IF4nU3IxEw== | divs2104|divs2104| nhi aa rhi h🤣 -2022-12-05 06:02:06.662371 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| kya nkli he ye -2022-12-05 06:02:11.047000 + : pb-IF4hBFgH | MrDevil|MrDevil| corona killer dono k naam unique -2022-12-05 06:02:14.762899 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| maar nhi toh , m maar dunga teri -2022-12-05 06:02:18.116244 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😚 -2022-12-05 06:02:20.369238 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 06:02:20.648855 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 06:02:27.623649 + : pb-IF4nU3IxEw== | divs2104|divs2104| 🙈🙈 -2022-12-05 06:03:05.286385 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😁😚 -2022-12-05 06:03:09.957168 + : pb-IF4hBFgH | MrDevil|MrDevil| mein hi kyu re -2022-12-05 06:03:12.680844 + : pb-IF5VUlYjNw== | Immeasura8|Hamish| hey div -2022-12-05 06:03:13.654381 + : pb-IF4nU3IxEw== | divs2104|divs2104| 😔😔 -2022-12-05 06:03:15.625780 + : pb-IF4xU04OMg== | PC772976|~PC~| heheehhehe -2022-12-05 06:03:20.258634 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| kya hua -2022-12-05 06:03:37.757890 + : pb-IF4hBFgH | MrDevil|MrDevil| yeh Chinese corona virus laayega -2022-12-05 06:03:47.332943 + : pb-IF5VUlYjNw== | Immeasura8|Hamish| han firse arha h -2022-12-05 06:03:48.813840 + : pb-IF4nU3IxEw== | divs2104|divs2104| khud gyi m -2022-12-05 06:03:54.974535 + : pb-IF5VUlYjNw== | Immeasura8|Hamish| booster lgwalo sb -2022-12-05 06:04:00.257866 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| mere uper 😁 -2022-12-05 06:04:27.067951 + : pb-IF4hBFgH | MrDevil|MrDevil| haddi chaddi tod do dus rupay donate krrunga -2022-12-05 06:04:30.363903 + : pb-IF4nU3IxEw== | divs2104|divs2104| 😁😁😁utha na mujhe -2022-12-05 06:04:30.965958 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| hutiye -2022-12-05 06:04:32.842189 + : pb-IF4hBFgH | MrDevil|MrDevil| yaar -2022-12-05 06:04:34.194566 + : pb-IF4gU048KQ== | lolisoh640|전설 문학| fk spamming -2022-12-05 06:04:35.084584 + : pb-IF4xU04OMg== | PC772976|~PC~| mujhe laga yeh haddi apne team me hai -2022-12-05 06:04:59.821210 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| kah utau😁 -2022-12-05 06:05:00.481070 + : pb-IF4xU04OMg== | PC772976|~PC~| speed -2022-12-05 06:05:41.923591 + : pb-IF4nU3IxEw== | divs2104|divs2104| yhi p -2022-12-05 06:05:53.525286 + : pb-IF4hBFgH | MrDevil|MrDevil| chii bhai -2022-12-05 06:05:56.764024 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😁acha -2022-12-05 06:05:57.848055 + : pb-IF4nUnEHVg== | HacktasticCadet89388|KILLER| -2022-12-05 06:05:57.990452 + : pb-IF4nUnEHVg== | HacktasticCadet89388|KILLER| -2022-12-05 06:06:38.288742 + : pb-IF4xU04OMg== | PC772976|~PC~| capture the flag hai ayr bombing kar rahe hai -2022-12-05 06:07:07.643270 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| kah jaa rhi h darindo k bic😁 -2022-12-05 06:07:23.833608 + : pb-IF4nU3IxEw== | divs2104|divs2104| tu aa na bachaane -2022-12-05 06:07:29.981214 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😁😚😚😚 -2022-12-05 06:07:34.031864 + : pb-IF4PV24yPA== | Agzx2244|AŁP々Uday| -2022-12-05 06:07:34.998901 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 06:07:35.188759 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 06:07:37.691933 + : pb-IF4hBFgH | MrDevil|MrDevil| haddi mere buddy -2022-12-05 06:08:33.701232 + : pb-IF4PV24yPA== | Agzx2244|AŁP々Uday| -2022-12-05 06:08:33.792200 + : pb-IF4hBFgH | MrDevil|MrDevil| haddi mere buddy -2022-12-05 06:08:42.453730 + : pb-IF4nU3IxEw== | divs2104|divs2104| 😁😁😁😁 -2022-12-05 06:08:51.969100 + : pb-IF4hBFgH | MrDevil|MrDevil| My ping = 9ms -2022-12-05 06:08:58.385127 + : pb-IF4xU04OMg== | PC772976|~PC~| alpUday are you Alpa Merci? -2022-12-05 06:09:47.992886 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| dono me gye😔 -2022-12-05 06:09:57.173604 + : pb-IF4nU3IxEw== | divs2104|divs2104| 🥺🥺🥺 -2022-12-05 06:10:09.141120 + : pb-IF4PV24yPA== | Agzx2244|AŁP々Uday| -2022-12-05 06:10:10.186726 + : pb-IF4gU048KQ== | lolisoh640|전설 문학| noob -2022-12-05 06:10:12.368238 + : pb-IF4hBFgH | MrDevil|MrDevil| kaisa laga mera mazaak -2022-12-05 06:10:12.652838 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😁ab swarg m rahege -2022-12-05 06:10:20.262041 + : pb-IF4PV24yPA== | Agzx2244|AŁP々Uday| alpha uday~PC~ -2022-12-05 06:10:22.303608 + : pb-IF4nU3IxEw== | divs2104|divs2104| 😁😁 -2022-12-05 06:10:48.933615 + : pb-IF4nU3IxEw== | divs2104|divs2104| mt utha😚😚 -2022-12-05 06:10:57.380506 + : pb-IF4xU04OMg== | PC772976|~PC~| wtf i read that -2022-12-05 06:11:06.329772 + : pb-IF4xU04OMg== | PC772976|~PC~| very sus -2022-12-05 06:11:19.122378 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| vivek hole piche goal bhul gaya😂 -2022-12-05 06:11:28.513513 + : pb-IF4hBFgH | MrDevil|MrDevil| haddi mere buddy -2022-12-05 06:11:33.626716 + : pb-IF4PV24yPA== | Agzx2244|AŁP々Uday| -2022-12-05 06:11:37.004411 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| fandsvis🤣🤣🤣 -2022-12-05 06:11:45.676986 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| hutiye😂 -2022-12-05 06:11:50.566107 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| game khel ** -2022-12-05 06:11:54.505047 + : pb-IF4PV24yPA== | Agzx2244|AŁP々Uday| फडणवीस🍉 tu sandwhich h mya -2022-12-05 06:11:57.712679 + : pb-IF4PV24yPA== | Agzx2244|AŁP々Uday| kya -2022-12-05 06:13:08.958542 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| gir gyi😩 -2022-12-05 06:14:00.710972 + : pb-IF4PV24yPA== | Agzx2244|AŁP々Uday| -2022-12-05 06:14:02.260554 + : pb-IF4hBFgH | MrDevil|MrDevil| 🤣🤣 -2022-12-05 06:14:06.576145 + : pb-IF4hBFgH | MrDevil|MrDevil| kaisa laga bhai -2022-12-05 06:14:17.513854 + : pb-IF4nU3IxEw== | divs2104|divs2104| tu mujhe ku gira rha h -2022-12-05 06:14:27.014520 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| sandwich? -2022-12-05 06:14:40.371144 + : pb-IF4PV24yPA== | Agzx2244|AŁP々Uday| -2022-12-05 06:14:42.603346 + : pb-IF4xU04OMg== | PC772976|~PC~| bahut bura laga -2022-12-05 06:14:46.210342 + : pb-IF4hBFgH | MrDevil|MrDevil| pyaar mein dard aur kya milta hai ? -2022-12-05 06:14:55.173319 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| kuki tujme abhi gira nhi skta😚🥵 -2022-12-05 06:15:08.183771 + : pb-IF4nU3IxEw== | divs2104|divs2104| achAA -2022-12-05 06:15:57.327113 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| divya ko mt maaro🥲🥲🥲 -2022-12-05 06:15:57.360246 + : pb-IF4hBFgH | MrDevil|MrDevil| tujhme rab dikhta hai yaara mein kya krru -2022-12-05 06:16:18.199929 + : pb-IF4xU04OMg== | PC772976|~PC~| divya joti ji beech me khadi the yaar me aage he nahe -2022-12-05 06:16:20.795866 + : pb-IF4xU04OMg== | PC772976|~PC~| nikal paya -2022-12-05 06:16:46.654751 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| divya ki sirf m maruga😚😚😚 -2022-12-05 06:16:48.131523 + : pb-IF4xU04OMg== | PC772976|~PC~| preksha payal magua sagar papa lol -2022-12-05 06:16:54.020846 + : pb-IF4hBFgH | MrDevil|MrDevil| yeh ladki k naam rakhne wale ek taraf hi swag hota Inka -2022-12-05 06:17:50.503840 + : pb-IF4nU3IxEw== | divs2104|divs2104| m ldki hi hu yr -2022-12-05 06:18:02.539241 + : pb-IF4xU04OMg== | PC772976|~PC~| chhoti baachi -2022-12-05 06:18:08.319673 + : pb-IF4hBFgH | MrDevil|MrDevil| arre -2022-12-05 06:18:09.658859 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| sb ko bta de🤣 -2022-12-05 06:18:19.083658 + : pb-IF4nU3IxEw== | divs2104|divs2104| kya bataun -2022-12-05 06:18:27.480901 + : pb-IF4xU04OMg== | PC772976|~PC~| me apni jaan detu is baat par? -2022-12-05 06:18:28.874247 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| ki ladki ho😒 -2022-12-05 06:18:43.840268 + : pb-IF4xU04OMg== | PC772976|~PC~| lo dede -2022-12-05 06:18:45.354106 + : pb-IF4nU3IxEw== | divs2104|divs2104| are😚😚😚 -2022-12-05 06:18:47.228716 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| vivek -2022-12-05 06:18:51.277676 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| ha bhia -2022-12-05 06:18:57.004446 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| aaj bhi tu noob hai mere samne😂 -2022-12-05 06:19:09.270593 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| gian ki goti -2022-12-05 06:19:15.388512 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| lag kr rha h k6 dino s nahi do pta h tujhe b🤣 -2022-12-05 06:19:17.577812 + : pb-IF4PV24yPA== | Agzx2244|AŁP々Uday| -2022-12-05 06:19:24.345964 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| pc😅 -2022-12-05 06:19:25.545134 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| rhende -2022-12-05 06:19:34.838888 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| bhot baar **** fadi hai -2022-12-05 06:19:37.191435 + : pb-IF4xU04OMg== | PC772976|~PC~| fearlesscamel credit card bechne vale -2022-12-05 06:19:49.396365 + : pb-IF4PV24yPA== | Agzx2244|AŁP々Uday| kick -2022-12-05 06:19:53.127236 + : pb-IF4xU04OMg== | PC772976|~PC~| sare vote karo -2022-12-05 06:19:54.367321 + : pb-IF4xU04OMg== | PC772976|~PC~| 1111 -2022-12-05 06:20:51.323832 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| 1 -2022-12-05 06:20:52.196178 + : pb-IF4PV24yPA== | Agzx2244|AŁP々Uday| -2022-12-05 06:20:53.516090 + : pb-IF4xU04OMg== | PC772976|~PC~| 111 -2022-12-05 06:20:53.566333 + : pb-IF4TU0oFAQ== | FamousImprovement43|SPY🔎| -2022-12-05 06:20:53.676000 + : pb-IF4TU0oFAQ== | FamousImprovement43|SPY🔎| -2022-12-05 06:21:01.833736 + : pb-IF4nU3IxEw== | divs2104|divs2104| ohhhoo my hero -2022-12-05 06:21:05.556160 + : pb-IF4PV24yPA== | Agzx2244|AŁP々Uday| 111 nai 1 -2022-12-05 06:21:07.716787 + : pb-IF4PV24yPA== | Agzx2244|AŁP々Uday| re -2022-12-05 06:21:12.374824 + : pb-IF4xU04OMg== | PC772976|~PC~| 1 kar dia bhe -2022-12-05 06:21:22.515182 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| bol aab -2022-12-05 06:21:24.762857 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| uta de ek baar -2022-12-05 06:21:26.090912 + : pb-IF4xU04OMg== | PC772976|~PC~| 111111 -2022-12-05 06:21:32.906189 + : pb-IF4PV24yPA== | Agzx2244|AŁP々Uday| kro 1 sab -2022-12-05 06:21:40.395132 + : pb-IF4xU04OMg== | PC772976|~PC~| 1 type karo bidu logo -2022-12-05 06:21:52.206097 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| india wale ek dabao -2022-12-05 06:21:56.841416 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 1 -2022-12-05 06:21:59.116029 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| 1 -2022-12-05 06:22:26.916510 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| fandavis sach m lg kr rha h -2022-12-05 06:22:41.711805 + : pb-IF4xU04OMg== | PC772976|~PC~| mehnga internet lo -2022-12-05 06:22:44.759598 + : pb-IF4xU04OMg== | PC772976|~PC~| 1 -2022-12-05 06:22:49.924080 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 0h9ne lg kr rha h -2022-12-05 06:22:57.183768 + : pb-IF4xU04OMg== | PC772976|~PC~| vote 1 -2022-12-05 06:23:03.798622 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| fearless papa.bolo papa -2022-12-05 06:23:05.539670 + : pb-IF4xU04OMg== | PC772976|~PC~| vote 1 kijeye -2022-12-05 06:23:50.427173 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| iski ma ka🤣 -2022-12-05 06:23:53.439909 + : pb-IF4xU04OMg== | PC772976|~PC~| divya joti come on -2022-12-05 06:24:01.553294 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 🤣 -2022-12-05 06:24:17.293777 + : pb-IF4nU3IxEw== | divs2104|divs2104| are joti nhi hu -2022-12-05 06:24:26.875656 + : pb-IF4xU04OMg== | PC772976|~PC~| toh kya ho aap -2022-12-05 06:24:28.738391 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| are moti G -2022-12-05 06:24:31.308666 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| 2 baar vivek😂 -2022-12-05 06:24:38.792174 + : pb-IF4xU04OMg== | PC772976|~PC~| 1111111111111111111111111111 -2022-12-05 06:24:47.611821 + : pb-IF4xU04OMg== | PC772976|~PC~| 1 vote kijiye -2022-12-05 06:24:50.913701 + : pb-IF4nU3IxEw== | divs2104|divs2104| sirf divya -2022-12-05 06:24:56.851595 + : pb-IF4xU04OMg== | PC772976|~PC~| aur free me mucj paye -2022-12-05 06:25:00.175954 + : pb-IF4xU04OMg== | PC772976|~PC~| kuch -2022-12-05 06:25:06.443848 + : pb-IF4nU3IxEw== | divs2104|divs2104| ye uthake fekte kaise h🤣 -2022-12-05 06:25:31.155947 + : pb-IF4xU04OMg== | PC772976|~PC~| youtube par jayiye divye joti ji Bombsquad tricks -2022-12-05 06:25:31.233660 + : pb-IF4nU3IxEw== | divs2104|divs2104| kya -2022-12-05 06:25:31.506055 + : pb-IF4TU0oFAQ== | FamousImprovement43|SPY🔎| -2022-12-05 06:25:31.645907 + : pb-IF4TU0oFAQ== | FamousImprovement43|SPY🔎| -2022-12-05 06:25:31.805864 + : pb-IF4TU0oFAQ== | FamousImprovement43|SPY🔎| -2022-12-05 06:25:58.414129 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| ohooo nice,divya -2022-12-05 06:26:02.437837 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 🤣😚😚😚 -2022-12-05 06:26:14.633849 + : pb-IF4nU3IxEw== | divs2104|divs2104| 🤭😁😚😚😚 -2022-12-05 06:26:15.944366 + : pb-IF4nU3IxEw== | divs2104|divs2104| -2022-12-05 06:26:33.097499 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| mujhe toh uta k lena sikna h😚😁 -2022-12-05 06:26:41.553716 + : pb-IF4nU3IxEw== | divs2104|| 😚😚😁😁 -2022-12-05 06:26:43.391770 + : pb-IF4xU04OMg== | PC772976|~PC~| mujhe pata hai -2022-12-05 06:26:44.180747 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| sagar😂 -2022-12-05 06:26:51.911839 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| 😅 -2022-12-05 06:26:57.541903 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| sikhaogi na divya -2022-12-05 06:26:59.003688 + : pb-IF4nU3IxEw== | divs2104|| sikh lega -2022-12-05 06:27:00.475539 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| niche se ******* pkd or utha vivek -2022-12-05 06:27:04.983651 + : pb-IF4xU04OMg== | PC772976|~PC~| lol -2022-12-05 06:27:15.744572 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| abe yr 3 warning mili muze😂 -2022-12-05 06:27:25.507778 + : pb-IF4xU04OMg== | PC772976|~PC~| redtube je jaan se jeetne ke joshish jhme -2022-12-05 06:27:33.949520 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| acha gaali m b daali lia inho warning -2022-12-05 06:27:42.940484 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| g.an d faad dungs -2022-12-05 06:27:46.143980 + : pb-IF4xU04OMg== | PC772976|~PC~| warning 2/3 -2022-12-05 06:27:48.990779 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| ese de gaali😁 -2022-12-05 06:27:56.095385 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| 😅 -2022-12-05 06:28:42.252251 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| sry -2022-12-05 06:30:11.846554 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 06:30:11.996863 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 06:30:12.095850 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 06:30:12.262729 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 06:30:14.532422 + : pb-IF4-U3gdFw== | Android63053623|| -2022-12-05 06:30:15.012377 + : pb-IF4-U3gdFw== | Android63053623|| -2022-12-05 06:30:15.232297 + : pb-IF4-U3gdFw== | Android63053623|| -2022-12-05 06:30:15.492599 + : pb-IF4-U3gdFw== | Android63053623|| -2022-12-05 06:30:17.927397 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| sry -2022-12-05 06:30:21.843591 + : pb-IF4xU04OMg== | PC772976|~PC~| srry -2022-12-05 06:30:45.838100 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| redtube bisi😂 -2022-12-05 06:30:56.622288 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| 🤣🤣 -2022-12-05 06:31:19.022556 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| abe😂 -2022-12-05 06:31:33.892961 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| 🤣 -2022-12-05 06:32:48.729379 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 06:32:48.880345 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 06:32:49.048886 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 06:32:49.181632 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 06:34:30.180174 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| sry -2022-12-05 06:35:33.845635 + : pb-IF4xU04OMg== | PC772976|~PC~| lol -2022-12-05 06:36:15.564733 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 06:36:15.713699 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 06:36:18.277474 + : pb-IF4xU04OMg== | PC772976|~PC~| yaar side do slide -2022-12-05 06:36:58.641927 + : pb-IF4xU04OMg== | PC772976|~PC~| sparky wyf -2022-12-05 06:37:28.506075 + : pb-IF4xU04OMg== | PC772976|~PC~| ruk ja -2022-12-05 06:37:48.749505 + : pb-IF4xU04OMg== | PC772976|~PC~| ye cpature the flag abhi toh aaya tha -2022-12-05 06:37:51.369352 + : pb-IF4xU04OMg== | PC772976|~PC~| skip -2022-12-05 06:38:01.412424 + : pb-IF4-U3gdFw== | Android63053623|Spiky😈ಮೂಳೆ| sory bro -2022-12-05 06:38:09.588242 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 06:38:40.558090 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-05 06:38:40.693096 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-05 06:38:42.098842 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 06:38:42.568699 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 06:38:43.165752 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 06:38:43.409843 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| haha -2022-12-05 06:38:43.816220 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 06:38:51.906606 + : pb-IF4xU04OMg== | PC772976|~PC~| hur hur muhurdev -2022-12-05 06:38:58.609175 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| 😏😏 -2022-12-05 06:39:03.497716 + : pb-IF4xU04OMg== | PC772976|~PC~| yeh hai badhiya map and match -2022-12-05 06:39:06.315444 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| it's har har mahadev -2022-12-05 06:39:08.937653 + : pb-IF4xU04OMg== | PC772976|~PC~| epic alliance -2022-12-05 06:40:31.141358 + : pb-IF4xU04OMg== | PC772976|~PC~| 1 hp hai captain america -2022-12-05 06:40:37.205649 + : pb-IF4xU04OMg== | PC772976|~PC~| gaya lol -2022-12-05 06:41:14.421426 + : pb-IF4xU04OMg== | PC772976|~PC~| chance do -2022-12-05 06:41:16.293509 + : pb-IF4xU04OMg== | PC772976|~PC~| lol -2022-12-05 06:43:17.243545 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| kyo kiya duck -2022-12-05 06:43:49.908574 + : pb-IF4xU04OMg== | PC772976|~PC~| fayank op -2022-12-05 06:44:27.319269 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 06:44:27.552355 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 06:44:31.741169 + : pb-IF4xU04OMg== | PC772976|~PC~| lol -2022-12-05 06:44:31.837269 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| nice -2022-12-05 06:44:45.043767 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| ***** hai pc itni baar bola bombs ya mine ka use mat karo -2022-12-05 06:44:52.913485 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| phir bhi krna hi h -2022-12-05 06:45:03.216448 + : pb-IF4xU04OMg== | PC772976|~PC~| baambh squad hai bidu -2022-12-05 06:45:30.571440 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| its not fair if I don't use bomb and u do -2022-12-05 06:46:28.550040 + : pb-IF4xU04OMg== | PC772976|~PC~| attacker noob using boombs -2022-12-05 06:49:02.383437 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| phir bomb -2022-12-05 06:49:46.275603 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| everything fixed now on server ? -2022-12-05 06:49:51.169446 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| -2022-12-05 06:49:59.357181 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| any other issue ? -2022-12-05 06:50:04.532438 + : pb-IF4-U3gdFw== | Android63053623|Spiky😈ಮೂಳೆ| yup looks gud -2022-12-05 06:50:08.904619 + : pb-IF4xU04OMg== | PC772976|~PC~| yes -2022-12-05 06:50:23.040982 + : pb-IF5WVG4yCA== | 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰|M͠Ɽ.₦ᏫᏫ฿ ꐇᵖᵍʳᵃᵈᵉ| -2022-12-05 06:50:23.572432 + : pb-IF4-U3gdFw== | Android63053623|Spiky😈ಮೂಳೆ| warning should be more -2022-12-05 06:50:32.132766 + : pb-IF4-U3gdFw== | Android63053623|Spiky😈ಮೂಳೆ| warning count -2022-12-05 06:50:38.132608 + : pb-IF4-U3gdFw== | Android63053623|Spiky😈ಮೂಳೆ| -2022-12-05 06:50:38.272337 + : pb-IF4-U3gdFw== | Android63053623|Spiky😈ಮೂಳೆ| -2022-12-05 06:50:38.552726 + : pb-IF4-U3gdFw== | Android63053623|Spiky😈ಮೂಳೆ| -2022-12-05 06:50:38.552956 + : pb-IF4-U3gdFw== | Android63053623|Spiky😈ಮೂಳೆ| -2022-12-05 06:50:38.998961 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| you mean more then 3 ? -2022-12-05 06:50:40.642341 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDG0D| bro are you also owner of BCS Fun games -2022-12-05 06:50:53.695029 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| yes , owner of all BCS -2022-12-05 06:50:54.752498 + : pb-IF4-U3gdFw== | Android63053623|Spiky😈ಮೂಳೆ| yes more than 3 -2022-12-05 06:51:17.266745 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDG0D| there was flag issue in bcs fun games -2022-12-05 06:51:17.426325 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| fight -2022-12-05 06:51:29.007551 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|Mr.Smoothy☠️| hmm -2022-12-05 06:51:49.733276 + : pb-IF4xU04OMg== | PC772976|~PC~| we won -2022-12-05 06:51:54.690808 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| yes -2022-12-05 06:52:08.780567 + : pb-IF4xU04OMg== | PC772976|~PC~| mr.smoothy brom ben 10? -2022-12-05 06:52:10.533005 + : pb-IF4-U3gdFw== | Android63053623|Spiky😈ಮೂಳೆ| nd can you hide the name person who started d kick?😁 -2022-12-05 06:52:22.372929 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| wo.to hamare player ne sucide kr li -2022-12-05 06:55:40.143227 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| dnt kick jst checking -2022-12-05 06:56:33.234811 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| -2022-12-05 06:56:33.393428 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| -2022-12-05 06:57:04.273261 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 06:57:04.423312 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 06:57:04.563309 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 06:57:04.714007 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 06:57:12.955866 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 06:57:13.123617 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 06:57:13.421809 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 06:57:13.877290 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 06:57:28.355513 + : pb-IF5WVG4yCA== | 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰|M͠Ɽ.₦ᏫᏫ฿ ꐇᵖᵍʳᵃᵈᵉ| Sagar jump -2022-12-05 06:58:33.720335 + : pb-IF4xU04OMg== | PC772976|~PC~| willow and me died same way lol -2022-12-05 06:59:13.193419 + : pb-IF4xU04OMg== | PC772976|~PC~| 1 vs 5 -2022-12-05 06:59:14.612716 + : pb-IF4xU04OMg== | PC772976|~PC~| yey -2022-12-05 07:00:26.238718 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 07:00:26.423150 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 07:00:26.571393 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 07:00:31.731199 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| bhai atomic character agaya kese? -2022-12-05 07:00:43.373867 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| sab hai char -2022-12-05 07:00:54.085298 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| mere pas ye nahi ta -2022-12-05 07:01:03.770543 + : pb-IF5WVG4yCA== | 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰|M͠Ɽ.₦ᏫᏫ฿ ꐇᵖᵍʳᵃᵈᵉ| -2022-12-05 07:01:07.254022 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| only bcs me server me hoga -2022-12-05 07:01:28.124511 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| sab badal gya bcs😁 -2022-12-05 07:01:34.163419 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| acha hai na -2022-12-05 07:01:36.863454 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| ya nahi -2022-12-05 07:01:53.072969 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ha .. gali bi nahi de saktha koi -2022-12-05 07:01:58.923851 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| 😂😂 -2022-12-05 07:02:05.049334 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| accha he😁 -2022-12-05 07:02:13.463274 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| tu toh deta tha -2022-12-05 07:02:40.291754 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| muje koi gali deta to.. reaction deta ha😁 -2022-12-05 07:02:46.544029 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| 🤣 -2022-12-05 07:03:36.538891 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| fadnavis -2022-12-05 07:03:51.099237 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| -2022-12-05 07:03:51.297719 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| -2022-12-05 07:06:48.822577 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| -2022-12-05 07:06:48.982312 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| -2022-12-05 07:08:49.282722 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-05 07:08:49.427226 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-05 07:08:49.560686 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-05 07:11:13.657453 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 07:11:13.824058 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 07:11:13.957836 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 07:11:14.106978 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 07:11:23.988791 + : pb-IF4sU0sDDw== | ThunderBlu|ThunderBlu| nice job -2022-12-05 07:17:01.892487 + : pb-IF5WVG4yCA== | 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰|M͠Ɽ.₦ᏫᏫ฿ ꐇᵖᵍʳᵃᵈᵉ| -2022-12-05 07:17:02.111779 + : pb-IF5WVG4yCA== | 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰|M͠Ɽ.₦ᏫᏫ฿ ꐇᵖᵍʳᵃᵈᵉ| -2022-12-05 07:17:02.231712 + : pb-IF5WVG4yCA== | 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰|M͠Ɽ.₦ᏫᏫ฿ ꐇᵖᵍʳᵃᵈᵉ| -2022-12-05 07:23:42.616782 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| hi siddhi -2022-12-05 07:23:52.462575 + : pb-IF4DVVgZJA== | Android52470937|SIDDHI| Hi -2022-12-05 07:24:07.953666 + : pb-IF5WVG4yCA== | 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰|M͠Ɽ.₦ᏫᏫ฿ ꐇᵖᵍʳᵃᵈᵉ| shu -2022-12-05 07:24:14.072478 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| why fun games server is empty ? -2022-12-05 07:24:22.865635 + : pb-IF5WVG4yCA== | 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰|M͠Ɽ.₦ᏫᏫ฿ ꐇᵖᵍʳᵃᵈᵉ| siddhi pro max is here😂 -2022-12-05 07:25:43.814734 + : pb-IF4DVVgZJA== | Android52470937|SIDDHI| Smooth let's go in Fun Games -2022-12-05 07:25:58.336931 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| ok -2022-12-05 07:26:18.132410 + : pb-IF4sU0sDDw== | ThunderBlu|ThunderBlu| Vivek is strong -2022-12-05 07:27:15.195689 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| my ......... is also strong😁😁 -2022-12-05 07:32:33.865702 + : pb-IF4vVUNfEA== | sagar88822|🚩SAGARBHAU🚩| सागरभाऊ सबकी बजायेंगा🪔⚔️⚔️ -2022-12-05 07:33:28.374731 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| pan c h kya -2022-12-05 07:34:36.336187 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 07:41:25.068078 + : pb-IF4NUxcqNA== | TurboFamil|TurboFamil| -2022-12-05 07:41:26.308011 + : pb-IF4vVUNfEA== | sagar88822|🚩SAGARBHAU🚩| सागरभाऊ सबकी बजायेंगा🪔⚔️⚔️ -2022-12-05 07:41:33.327203 + : pb-IF4vVUNfEA== | sagar88822|🚩SAGARBHAU🚩| सागरभाऊ सबकी बजायेंगा🪔⚔️⚔️ -2022-12-05 07:43:36.066988 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| thx -2022-12-05 07:43:42.688395 + : pb-IF4wUlIYCg== | NearCandy4|Nippy| 🤣🤣🤣 -2022-12-05 07:43:43.775042 + : pb-IF4SEHAl | bisht4189|Pan| wlcm -2022-12-05 07:43:58.187934 + : pb-IF4wUlIYCg== | NearCandy4|Nippy| white characters sab naya he na -2022-12-05 07:44:31.400410 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| han bcs teams mai kal hi add hua -2022-12-05 07:46:35.529189 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 07:46:35.734374 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 07:47:46.781610 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| 🗿 -2022-12-05 07:49:46.875061 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 07:50:40.513871 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 07:50:40.696081 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 07:50:59.674543 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| abe saaaaale -2022-12-05 07:51:24.014807 + : pb-IF4xU04OMg== | PC772976|India| dude nice ssafe -2022-12-05 07:53:01.713692 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-05 07:53:05.994352 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 07:53:06.154298 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 07:54:14.133704 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-05 07:54:16.109199 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 07:54:16.369376 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 07:56:07.293726 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| ** -2022-12-05 07:56:20.463863 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| are ye abuse detection kaise off kre -2022-12-05 07:56:35.847830 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| sala.gali bhi ni de sakte -2022-12-05 07:56:37.813761 + : pb-IF4SEHAl | bisht4189|Pan| m@@ ki ch00t -2022-12-05 07:56:43.129084 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| ohh noise -2022-12-05 07:56:51.130567 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| 😂😂 -2022-12-05 07:56:55.174296 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 07:56:55.574221 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 07:56:59.010866 + : pb-IF4xU04OMg== | PC772976|India| pata nahe bhau -2022-12-05 07:57:07.165550 + : pb-IF5TV2MzCA== | RoyalProph|RoyalProph| 😂😂 -2022-12-05 07:57:40.094295 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 07:57:40.249962 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 07:57:41.013625 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-05 07:57:42.896993 + : pb-IF5TV2MzCA== | RoyalProph|RoyalProph| -2022-12-05 07:57:43.067065 + : pb-IF5TV2MzCA== | RoyalProph|RoyalProph| -2022-12-05 07:57:43.228349 + : pb-IF5TV2MzCA== | RoyalProph|RoyalProph| -2022-12-05 07:57:43.380044 + : pb-IF5TV2MzCA== | RoyalProph|RoyalProph| -2022-12-05 07:57:44.909205 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 07:57:45.049462 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 07:58:00.729478 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 07:58:00.864391 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 07:58:01.494391 + : pb-IF4xU04OMg== | PC772976|India| kulfi -2022-12-05 07:58:13.863333 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| kick -2022-12-05 07:58:32.527156 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| spammer hai na ye -2022-12-05 07:58:34.532412 + : pb-IF49U0MCCA== | LevelAccep|भोलू| sunshine came in blue -2022-12-05 07:58:39.166486 + : pb-IF4xU04OMg== | PC772976|India| kon -2022-12-05 07:59:05.784324 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 07:59:05.884093 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 07:59:11.969044 + : pb-IF49U0MCCA== | LevelAccep|भोलू| blue aa jao -2022-12-05 08:00:20.547951 + : pb-IF4vVUNfEA== | sagar88822|🚩SAGARBHAU🚩| 2 tike anry🐧🐧 -2022-12-05 08:00:41.246535 + : pb-IF4xU04OMg== | PC772976|India| matlab -2022-12-05 08:00:42.485859 + : pb-IF4vVUNfEA== | sagar88822|🚩SAGARBHAU🚩| सागरभाऊ सबकी बजायेंगा🪔⚔️⚔️ -2022-12-05 08:00:49.475828 + : pb-IF4vVUNfEA== | sagar88822|🚩SAGARBHAU🚩| सागरभाऊ सबकी बजायेंगा🪔⚔️⚔️ -2022-12-05 08:01:37.175178 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| sagarbhau kha se ho -2022-12-05 08:01:40.704519 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 08:01:40.929280 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 08:01:56.319214 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| tapatap -2022-12-05 08:02:16.253964 + : pb-IF4xU04OMg== | PC772976|India| medical morde -2022-12-05 08:03:51.173602 + : pb-IF4xU04OMg== | PC772976|India| lol -2022-12-05 08:04:05.486269 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-05 08:04:09.325468 + : pb-IF4xU04OMg== | PC772976|India| yeh sm -2022-12-05 08:04:14.225285 + : pb-IF4xU04OMg== | PC772976|India| but bad idea -2022-12-05 08:04:20.657091 + : pb-IF4xU04OMg== | PC772976|India| time wasting op -2022-12-05 08:04:28.515254 + : pb-IF49VFQlPA== | PAMU628|Pan| just checking -2022-12-05 08:04:32.968964 + : pb-IF4xU04OMg== | PC772976|India| ah sure -2022-12-05 08:04:43.081110 + : pb-IF4xU04OMg== | PC772976|India| pan nice tail -2022-12-05 08:04:48.008164 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| koi red me betray kro -2022-12-05 08:04:53.416930 + : pb-IF4xU04OMg== | PC772976|India| kyu -2022-12-05 08:05:03.566763 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| 😂😂 -2022-12-05 08:05:04.322222 + : pb-IF5RUmMsFg== | karanshetty6|ChunK| bolu saale -2022-12-05 08:05:32.129122 + : pb-IF4xU04OMg== | PC772976|India| pan lol -2022-12-05 08:05:33.056338 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| chunk ********e miadaechidod -2022-12-05 08:05:36.754208 + : pb-IF49VFQlPA== | PAMU628|Pan| 🤣 -2022-12-05 08:05:37.764043 + : pb-IF49U0QJDw== | PC605729|| -2022-12-05 08:05:38.091616 + : pb-IF49U0QJDw== | PC605729|| -2022-12-05 08:05:38.398554 + : pb-IF49U0QJDw== | PC605729|| -2022-12-05 08:05:38.677012 + : pb-IF49U0QJDw== | PC605729|| -2022-12-05 08:05:58.649561 + : pb-IF49U0QJDw== | PC605729|| ** -2022-12-05 08:06:09.964367 + : pb-IF49VFQlPA== | PAMU628|Pan| oi abuse ni karna -2022-12-05 08:06:15.293094 + : pb-IF4xU04OMg== | PC772976|India| ha -2022-12-05 08:06:28.428262 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-05 08:06:56.751769 + : pb-IF4PVU49EQ== | SashaGoPewpew|(눈‸눈)| sorry chunk -2022-12-05 08:07:37.464872 + : pb-IF49U0MCCA== | LevelAccep|भोलू| lag -2022-12-05 08:07:40.074296 + : pb-IF49VFQlPA== | PAMU628|Pan| karanshetty6 -2022-12-05 08:07:41.671450 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| chinese -2022-12-05 08:07:43.416422 + : pb-IF4xU04OMg== | PC772976|India| lag full form/ -2022-12-05 08:07:51.194071 + : pb-IF49VFQlPA== | PAMU628|Pan| ellinda nivu -2022-12-05 08:09:52.387687 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-05 08:09:54.350423 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| noise bhaku -2022-12-05 08:09:54.451559 + : pb-IF49U0MCCA== | LevelAccep|भोलू| 😂 -2022-12-05 08:10:15.023983 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|| everything good , any new abuser ? -2022-12-05 08:10:30.214368 + : pb-IF49VFQlPA== | PAMU628|Pan| everything good -2022-12-05 08:10:43.764910 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|| pamu go do work -2022-12-05 08:10:45.677222 + : pb-IF4PVU49EQ== | SashaGoPewpew|(눈‸눈)| it's all good ig -2022-12-05 08:10:56.934321 + : pb-IF49VFQlPA== | PAMU628|Pan| hospital me hu -2022-12-05 08:11:02.564175 + : pb-IF4xU04OMg== | PC772976|India| kya hua bhe -2022-12-05 08:11:06.906895 + : pb-IF4xU04OMg== | PC772976|India| hospital me ho -2022-12-05 08:11:18.326481 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|| hospital mein game ..fir to kuch acha kaam hoga -2022-12-05 08:11:19.865822 + : pb-IF4LVXpYNg== | UnimpededHorseback4|munnA bhaiya| -2022-12-05 08:11:36.194203 + : pb-IF49VFQlPA== | PAMU628|Pan| grandma eye operation -2022-12-05 08:11:56.834247 + : pb-IF49VFQlPA== | PAMU628|Pan| kya karu idar akela beta hun -2022-12-05 08:12:53.184235 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 08:12:53.329187 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 08:15:01.109869 + : pb-IF4LVXpYNg== | UnimpededHorseback4|munnA bhaiya| -2022-12-05 08:17:26.755437 + : pb-IF5WVG4yCA== | 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰|| -2022-12-05 08:20:59.472480 + : pb-IF4xU04OMg== | PC772976|India| vivek op -2022-12-05 08:24:14.650875 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| -2022-12-05 08:24:14.850122 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| -2022-12-05 08:24:15.076495 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| -2022-12-05 08:24:16.360209 + : pb-IF4xU04OMg== | PC772976|India| nice -2022-12-05 08:24:18.433348 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| noise -2022-12-05 08:26:34.230086 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| -2022-12-05 08:26:34.410071 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| -2022-12-05 08:26:37.925791 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| very nois bois -2022-12-05 08:26:44.464998 + : pb-IF4xU04OMg== | PC772976|India| yeah -2022-12-05 08:26:52.721381 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| patil bewakuf -2022-12-05 08:27:08.995062 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| mafia teri jali na😂😂 -2022-12-05 08:27:23.663366 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| kyu -2022-12-05 08:28:39.364910 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| noise -2022-12-05 08:29:00.350450 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| kya noice patil -2022-12-05 08:29:32.544993 + : pb-IF4xU04OMg== | PC772976|India| hey -2022-12-05 08:29:37.590791 + : pb-IF4KU3AnHQ== | Android62253416|Pan| sry -2022-12-05 08:30:53.539499 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| noise -2022-12-05 08:30:55.494444 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 08:32:23.339276 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 08:32:23.479236 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 08:32:58.736671 + : pb-IF4xU04OMg== | PC772976|India| aaah -2022-12-05 08:34:50.540684 + : pb-IF4xU04OMg== | PC772976|India| 0 -2022-12-05 08:37:56.474346 + : pb-IF4-U3gdFw== | Android63053623|| -2022-12-05 08:37:56.684706 + : pb-IF4-U3gdFw== | Android63053623|| -2022-12-05 08:37:56.804828 + : pb-IF4-U3gdFw== | Android63053623|| -2022-12-05 08:37:57.005012 + : pb-IF4-U3gdFw== | Android63053623|| -2022-12-05 08:38:03.925075 + : pb-IF4xU04OMg== | PC772976|India| kya be lol -2022-12-05 08:38:09.710278 + : pb-IF4-U3gdFw== | Android63053623|🦏Rhino🦏| -2022-12-05 08:38:35.155507 + : pb-IF5WVG4yCA== | 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰|M͠Ɽ.₦ᏫᏫ฿ ꐇᵖᵍʳᵃᵈᵉ| jump -2022-12-05 08:38:49.944696 + : pb-IF4-U3gdFw== | Android63053623|🦏Rhino🦏| -2022-12-05 08:38:50.205036 + : pb-IF4-U3gdFw== | Android63053623|🦏Rhino🦏| -2022-12-05 08:38:50.324697 + : pb-IF4-U3gdFw== | Android63053623|🦏Rhino🦏| -2022-12-05 08:38:50.494488 + : pb-IF4-U3gdFw== | Android63053623|🦏Rhino🦏| -2022-12-05 08:38:54.821362 + : pb-IF4NUxcqNA== | TurboFamil|TurboFamil| -2022-12-05 08:38:55.277470 + : pb-IF4xU04OMg== | PC772976|India| i jumped 3 times -2022-12-05 08:38:58.032930 + : pb-IF4NUxcqNA== | TurboFamil|TurboFamil| -2022-12-05 08:38:58.393113 + : pb-IF4NUxcqNA== | TurboFamil|TurboFamil| -2022-12-05 08:38:58.819550 + : pb-IF4NUxcqNA== | TurboFamil|TurboFamil| -2022-12-05 08:39:23.519484 + : pb-IF4DU3AABw== | YogeYogesh14|YogeYogesh14| 1 -2022-12-05 08:39:26.737797 + : pb-IF5WVG4yCA== | 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰|M͠Ɽ.₦ᏫᏫ฿ ꐇᵖᵍʳᵃᵈᵉ| ghasti ki basti bro -2022-12-05 08:39:37.498273 + : pb-IF5WVG4yCA== | 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰|M͠Ɽ.₦ᏫᏫ฿ ꐇᵖᵍʳᵃᵈᵉ| 😂 -2022-12-05 08:40:05.559409 + : pb-IF4DU3AABw== | YogeYogesh14|YogeYogesh14| 😂 -2022-12-05 08:40:24.269352 + : pb-IF4xU04OMg== | PC772976|India| me doing lunch -2022-12-05 08:40:33.800712 + : pb-IF4xU04OMg== | PC772976|India| so i will be afk dont kick me -2022-12-05 08:40:51.558047 + : pb-IF5WVG4yCA== | 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰|M͠Ɽ.₦ᏫᏫ฿ ꐇᵖᵍʳᵃᵈᵉ| ghasti ki basti bro -2022-12-05 08:40:52.319040 + : pb-IF4KU3AnHQ== | Android62253416|Pan| -2022-12-05 08:40:52.689049 + : pb-IF4KU3AnHQ== | Android62253416|Pan| -2022-12-05 08:40:53.049067 + : pb-IF4KU3AnHQ== | Android62253416|Pan| -2022-12-05 08:41:00.137755 + : pb-IF5WVG4yCA== | 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰|M͠Ɽ.₦ᏫᏫ฿ ꐇᵖᵍʳᵃᵈᵉ| -2022-12-05 08:43:38.436960 + : pb-IF4xU04OMg== | PC772976|India| me bach gaya bidu -2022-12-05 08:43:50.474478 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 08:43:50.614289 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 08:43:59.928803 + : pb-IF4xU04OMg== | PC772976|India| sunshine and me good partners -2022-12-05 08:45:42.029247 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 08:45:42.194319 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 08:47:47.100109 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 08:47:47.260280 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| -2022-12-05 08:47:56.260178 + : pb-IF4lU0c9Hw== | Android63669053|Sunshine| ok -2022-12-05 08:50:37.568885 + : pb-IF4xU04OMg== | PC772976|India| let me -2022-12-05 08:53:29.974744 + : pb-IF49VFQlPA== | PAMU628|Aapy| -2022-12-05 08:54:33.296995 + : pb-IF4xU04OMg== | PC772976|India| **** -2022-12-05 08:55:50.989498 + : pb-IF4xU04OMg== | PC772976|India| benji noob -2022-12-05 08:58:27.047022 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| Abe chapri stan betray kyu kar raha hai -2022-12-05 08:59:43.095149 + : pb-IF49VFQlPA== | PAMU628|Aapy| yea -2022-12-05 08:59:46.905033 + : pb-IF4xU04OMg== | PC772976|India| nice -2022-12-05 09:01:55.050294 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-05 09:01:55.242487 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-05 09:03:25.101110 + : pb-IF4xU04OMg== | PC772976|India| MAFIA goood luck -2022-12-05 09:03:32.202705 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| why -2022-12-05 09:04:32.686640 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 🤣🤣 -2022-12-05 09:04:33.416894 + : pb-IF4xU04OMg== | PC772976|India| yeah -2022-12-05 09:04:53.324725 + : pb-IF49VFQlPA== | PAMU628|Aapy| 😒 -2022-12-05 09:05:06.667056 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| badluck -2022-12-05 09:07:43.184663 + : pb-IF49VFQlPA== | PAMU628|Aapy| lol -2022-12-05 09:08:29.165028 + : pb-IF49VFQlPA== | PAMU628|Aapy| can I make it slow ? -2022-12-05 09:08:32.709524 + : pb-IF4xU04OMg== | PC772976|India| sure -2022-12-05 09:08:43.424780 + : pb-IF49VFQlPA== | PAMU628|Aapy| everyone -2022-12-05 09:08:48.301748 + : pb-IF4xU04OMg== | PC772976|India| access granted -2022-12-05 09:09:04.524715 + : pb-IF49VFQlPA== | PAMU628|Aapy| what about everyone -2022-12-05 09:09:12.186099 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| sure -2022-12-05 09:09:18.845624 + : pb-IF4xU04OMg== | PC772976|India| they are with me -2022-12-05 09:09:20.083705 + : pb-IF4DV24sDQ== | DarkKnigh3|KINGINI| sure -2022-12-05 09:10:08.369905 + : pb-IF4xU04OMg== | PC772976|India| although i am afk eating lunch yum yum -2022-12-05 09:10:23.549622 + : pb-IF49VFQlPA== | PAMU628|Aapy| 😋 -2022-12-05 09:10:43.701960 + : pb-IF4xU04OMg== | PC772976|India| appy fizz -2022-12-05 09:11:05.810191 + : pb-IF4xU04OMg== | PC772976|India| ice boy lagging sed -2022-12-05 09:12:08.488689 + : pb-IF4-U3gdFw== | Android63053623|🦏Rhino🦏| -2022-12-05 09:12:08.869007 + : pb-IF4-U3gdFw== | Android63053623|🦏Rhino🦏| -2022-12-05 09:12:09.038616 + : pb-IF4-U3gdFw== | Android63053623|🦏Rhino🦏| -2022-12-05 09:12:09.429146 + : pb-IF4-U3gdFw== | Android63053623|🦏Rhino🦏| -2022-12-05 09:13:48.865541 + : pb-IF4xU04OMg== | PC772976|India| hi -2022-12-05 09:14:32.754726 + : pb-IF49VFQlPA== | PAMU628|Aapy| u can do it -2022-12-05 09:14:37.239808 + : pb-IF49VFQlPA== | PAMU628|Aapy| -2022-12-05 09:14:41.617842 + : pb-IF5VU0kBBA== | VOILENTFIGHTER12|sameer| motherfcker -2022-12-05 09:16:23.767664 + : pb-IF5VU0kBBA== | VOILENTFIGHTER12|sameer| one and only ****er -2022-12-05 09:16:29.973708 + : pb-IF5VU0kBBA== | VOILENTFIGHTER12|sameer| mother***er -2022-12-05 09:16:35.076535 + : pb-IF5VU0kBBA== | VOILENTFIGHTER12|sameer| bkl -2022-12-05 09:16:35.949619 + : pb-IF4xU04OMg== | PC772976|India| ooh -2022-12-05 09:16:39.720522 + : pb-IF49VFQlPA== | PAMU628|Aapy| Stop it sameer -2022-12-05 09:16:47.389099 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| **** -2022-12-05 09:16:51.165701 + : pb-IF4xU04OMg== | PC772976|India| i was playing with one fingure -2022-12-05 09:16:59.041694 + : pb-IF4xU04OMg== | PC772976|India| i am doing lunch -2022-12-05 09:17:06.598795 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| 🍌🧍‍♂️ -2022-12-05 09:17:08.443237 + : pb-IF5VU0kBBA== | VOILENTFIGHTER12|sameer| he would wipe himslf only -2022-12-05 09:17:20.590743 + : pb-IF49VFQlPA== | PAMU628|Aapy| -2022-12-05 09:17:46.725660 + : pb-IF4xU04OMg== | PC772976|India| khushi dheko leonidas ke -2022-12-05 09:19:39.031344 + : pb-IF49VFQlPA== | PAMU628|Aapy| lag -2022-12-05 09:19:46.903059 + : pb-IF4xU04OMg== | PC772976|India| lag means? -2022-12-05 09:20:32.714761 + : pb-IF4xU04OMg== | PC772976|India| yooooo -2022-12-05 09:20:39.958695 + : pb-IF4xU04OMg== | PC772976|India| i won with one fingure -2022-12-05 09:23:07.861846 + : pb-IF4xU04OMg== | PC772976|India| hey aapy -2022-12-05 09:23:17.233858 + : pb-IF4xU04OMg== | PC772976|India| nice 8 pack abs -2022-12-05 09:23:27.250700 + : pb-IF49VFQlPA== | PAMU628|Aapy| lol 🤣 -2022-12-05 09:24:35.616688 + : pb-IF4xU04OMg== | PC772976|India| woagh -2022-12-05 09:25:59.149080 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| kick crom betraying for no reason -2022-12-05 09:26:02.932084 + : pb-IF4xU04OMg== | PC772976|India| i am going to wash my hands -2022-12-05 09:28:27.337111 + : pb-IF4xU04OMg== | PC772976|India| ooh -2022-12-05 09:28:59.259904 + : pb-IF49VFQlPA== | PAMU628|Maximus| ಶುಂಠಿ 😜 aiyo -2022-12-05 09:29:08.763948 + : pb-IF4xU04OMg== | PC772976|India| aayyooo vein check -2022-12-05 09:30:43.319951 + : pb-IF49VFQlPA== | PAMU628|Maximus| ellinda pa nivu -2022-12-05 09:30:48.934788 + : pb-IF49VFQlPA== | PAMU628|Maximus| kannadapora -2022-12-05 09:31:02.116671 + : pb-IF4xU04OMg== | PC772976|India| crazy cat nice -2022-12-05 09:31:25.238359 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| haha -2022-12-05 09:31:27.876726 + : pb-IF4xU04OMg== | PC772976|India| hehhehe -2022-12-05 09:32:02.746283 + : pb-IF4xU04OMg== | PC772976|India| aaaaw -2022-12-05 09:34:00.655480 + : pb-IF4xU04OMg== | PC772976|India| no name give side or play or leave or chat -2022-12-05 09:35:43.714860 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 09:35:43.874781 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 09:35:43.995013 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 09:40:26.873232 + : pb-IF4lVxkZUQ== | hothareesh100|Uther| -2022-12-05 09:40:27.970936 + : pb-IF4lVxkZUQ== | hothareesh100|Uther| -2022-12-05 09:40:29.070989 + : pb-IF4lVxkZUQ== | hothareesh100|Uther| -2022-12-05 09:40:29.714694 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 09:40:29.854962 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 09:41:58.731769 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| kick Uther -2022-12-05 09:42:07.790068 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| 😅 -2022-12-05 09:42:56.666876 + : pb-IF4lVxkZUQ== | hothareesh100|Uther| kill corona pls -2022-12-05 09:43:00.137623 + : pb-IF49U0MCCA== | LevelAccep|भोलू| too much sound -2022-12-05 09:43:15.764320 + : pb-IF4lVxkZUQ== | hothareesh100|Uther| go corona go corona -2022-12-05 09:43:19.544178 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 09:43:22.711527 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| 😅😅😅 -2022-12-05 09:43:22.945091 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| -2022-12-05 09:43:25.395671 + : pb-IF4xU04OMg== | PC772976|India| margaya bhai voh -2022-12-05 09:43:54.451155 + : pb-IF4xU04OMg== | PC772976|India| crazy cat = dangi billi -2022-12-05 09:44:28.870356 + : pb-IF49VFQlPA== | PAMU628|Elmer| shunti nanmagane reply madu😁 -2022-12-05 09:44:36.379096 + : pb-IF4xU04OMg== | PC772976|India| no tamil -2022-12-05 09:44:51.895728 + : pb-IF4xU04OMg== | PC772976|India| uno reverse card -2022-12-05 09:45:07.445357 + : pb-IF4lVxkZUQ== | hothareesh100|Uther| why no tamil -2022-12-05 09:45:23.815425 + : pb-IF4xU04OMg== | PC772976|India| because tamil very far away from my home -2022-12-05 09:45:27.532514 + : pb-IF4lVxkZUQ== | hothareesh100|Uther| u are india but Tamil not allowed? -2022-12-05 09:45:37.753268 + : pb-IF4lVxkZUQ== | hothareesh100|Uther| same country -2022-12-05 09:45:46.475581 + : pb-IF4xU04OMg== | PC772976|India| i mean i dont know Tamil -2022-12-05 09:45:49.994291 + : pb-IF4lVxkZUQ== | hothareesh100|Uther| ok -2022-12-05 09:45:54.679645 + : pb-IF4xU04OMg== | PC772976|India| didn;t said Tamil is not allowed lol -2022-12-05 09:47:46.189758 + : pb-IF49VFQlPA== | PAMU628|Elmer| aiyo nanu kannada pora mathadri 😒 -2022-12-05 09:49:32.919224 + : pb-IF4lVxkZUQ== | hothareesh100|Uther| -2022-12-05 09:49:38.863635 + : pb-IF4xU04OMg== | PC772976|India| khilao -2022-12-05 09:49:39.246197 + : pb-IF5XVEI_Kg== | Genos909|momos khao| boys -2022-12-05 09:49:45.072760 + : pb-IF5XVEI_Kg== | Genos909|momos khao| wanna hear a joke on construction -2022-12-05 09:49:49.479170 + : pb-IF4xU04OMg== | PC772976|India| yes -2022-12-05 09:49:55.408676 + : pb-IF5XVEI_Kg== | Genos909|momos khao| iam still working on it 🤣 -2022-12-05 09:50:02.243724 + : pb-IF4xU04OMg== | PC772976|India| waiting -2022-12-05 09:50:08.128027 + : pb-IF5XVEI_Kg== | Genos909|momos khao| bro -2022-12-05 09:50:15.057057 + : pb-IF5XVEI_Kg== | Genos909|momos khao| that's the joke -2022-12-05 09:50:25.016027 + : pb-IF4xU04OMg== | PC772976|India| i know it was your punch line -2022-12-05 09:50:27.376705 + : pb-IF5XVEI_Kg== | Genos909|momos khao| "working on it" -2022-12-05 09:50:35.455648 + : pb-IF4xU04OMg== | PC772976|India| but i took it as a straight face -2022-12-05 09:51:02.355453 + : pb-IF5XVEI_Kg== | Genos909|momos khao| i bet u can't take this one lightly -2022-12-05 09:51:08.491099 + : pb-IF4xU04OMg== | PC772976|India| sure -2022-12-05 09:51:12.338975 + : pb-IF5XVEI_Kg== | Genos909|momos khao| what do you call a bee that lives in America -2022-12-05 09:51:33.251177 + : pb-IF4xU04OMg== | PC772976|India| bumble bee -2022-12-05 09:51:39.716792 + : pb-IF5XVEI_Kg== | Genos909|momos khao| USB😂🤣🤣 -2022-12-05 09:52:29.139811 + : pb-IF4lVxkZUQ== | hothareesh100|Uther| corona ko maaro bhai -2022-12-05 09:52:44.875129 + : pb-IF4xU04OMg== | PC772976|India| us in america? -2022-12-05 09:53:11.233294 + : pb-IF5XVEI_Kg== | Genos909|momos khao| u laughed 😂 i know -2022-12-05 09:53:18.775126 + : pb-IF4xU04OMg== | PC772976|India| no i got angry -2022-12-05 09:53:23.431202 + : pb-IF4xU04OMg== | PC772976|India| frustated -2022-12-05 09:53:33.531165 + : pb-IF4xU04OMg== | PC772976|India| shouted with no voice -2022-12-05 09:53:38.528038 + : pb-IF5XVEI_Kg== | Genos909|momos khao| here's one more -2022-12-05 09:53:48.248676 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| gg -2022-12-05 09:53:56.548030 + : pb-IF4xU04OMg== | PC772976|India| gadbad gadbad -2022-12-05 09:53:56.935912 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| why hug me? -2022-12-05 09:54:06.354834 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 09:54:06.494970 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 09:54:06.664945 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 09:54:06.835087 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 09:54:08.519395 + : pb-IF4xU04OMg== | PC772976|India| i was throwing you not hug -2022-12-05 09:54:41.088601 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 09:54:41.499350 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 09:54:43.182723 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| y uther -2022-12-05 09:54:43.188882 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| kikc uther -2022-12-05 09:54:46.860010 + : pb-IF4xU04OMg== | PC772976|India| time to go -2022-12-05 09:54:50.102956 + : pb-IF5XVEI_Kg== | Genos909|momos khao| why did the scarecrow win an award -2022-12-05 09:55:30.275041 + : pb-IF4xU04OMg== | PC772976|India| thinking -2022-12-05 09:56:02.531903 + : pb-IF4xU04OMg== | PC772976|India| what is hindi of scarecrow -2022-12-05 09:56:04.052451 + : pb-IF5XVEI_Kg== | Genos909|momos khao| ready to laugh -2022-12-05 09:56:07.783466 + : pb-IF4xU04OMg== | PC772976|India| no -2022-12-05 09:56:16.322315 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol -2022-12-05 09:56:16.714482 + : pb-IF5XVEI_Kg== | Genos909|momos khao| scarecrow is like a -2022-12-05 09:56:21.664234 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| 😁 -2022-12-05 09:56:22.667228 + : pb-IF4xU04OMg== | PC772976|India| kala kaua -2022-12-05 09:56:27.045772 + : pb-IF5XVEI_Kg== | Genos909|momos khao| fake person -2022-12-05 09:56:27.232039 + : pb-IF4xU04OMg== | PC772976|India| hahhahha -2022-12-05 09:56:42.223718 + : pb-IF5XVEI_Kg== | Genos909|momos khao| used to sacre crows in field -2022-12-05 09:56:48.332149 + : pb-IF4xU04OMg== | PC772976|India| i didn't get your puzzle bro -2022-12-05 09:56:50.071662 + : pb-IF4xU04OMg== | PC772976|India| sorry -2022-12-05 09:57:13.753366 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lolz -2022-12-05 09:57:16.287058 + : pb-IF5XVEI_Kg== | Genos909|momos khao| what's Orange and sounds like a parrot -2022-12-05 09:57:21.363160 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 09:57:21.542194 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 09:57:34.808296 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 09:58:03.180857 + : pb-IF4xU04OMg== | PC772976|India| thinking -2022-12-05 09:58:24.733087 + : pb-IF4xU04OMg== | PC772976|India| ahh idk -2022-12-05 09:58:32.140364 + : pb-IF5XVEI_Kg== | Genos909|momos khao| a carrot 🤣 -2022-12-05 09:58:56.337082 + : pb-IF4xU04OMg== | PC772976|India| i will try it while eating carrot -2022-12-05 09:59:05.728163 + : pb-IF4sUhk4JA== | UselessGuy|UselessGuy| -2022-12-05 09:59:05.865840 + : pb-IF4sUhk4JA== | UselessGuy|UselessGuy| -2022-12-05 09:59:06.011209 + : pb-IF4sUhk4JA== | UselessGuy|UselessGuy| -2022-12-05 09:59:06.136396 + : pb-IF4sUhk4JA== | UselessGuy|UselessGuy| -2022-12-05 09:59:27.461058 + : pb-IF4xU04OMg== | PC772976|India| time to go study -2022-12-05 09:59:27.525315 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| haha -2022-12-05 09:59:33.969277 + : pb-IF4xU04OMg== | PC772976|India| have an awesome game play -2022-12-05 09:59:35.275563 + : pb-IF4lVxkZUQ== | hothareesh100|Uther| what do u study -2022-12-05 09:59:42.063218 + : pb-IF5XVEI_Kg== | Genos909|momos khao| why do couples don't to the gym -2022-12-05 09:59:43.265233 + : pb-IF4xU04OMg== | PC772976|India| B.Tech CS -2022-12-05 09:59:51.118956 + : pb-IF4lVxkZUQ== | hothareesh100|Uther| ok good -2022-12-05 10:00:02.878873 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| who studies in btech -2022-12-05 10:00:06.973331 + : pb-IF4xU04OMg== | PC772976|India| they do secx -2022-12-05 10:00:12.541336 + : pb-IF4xU04OMg== | PC772976|India| me -2022-12-05 10:00:19.518933 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| only girl will think abt study -2022-12-05 10:00:30.037421 + : pb-IF5XVEI_Kg== | Genos909|momos khao| bcs some relationships don't work out -2022-12-05 10:00:30.073412 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 10:00:30.226528 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 10:00:30.242731 + : pb-IF4lVxkZUQ== | hothareesh100|Uther| secx? -2022-12-05 10:00:30.371751 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 10:00:30.512957 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 10:00:31.915792 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| oops -2022-12-05 10:00:35.074883 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 10:00:35.255063 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 10:00:56.912701 + : pb-IF4xU04OMg== | PC772976|India| wtf -2022-12-05 10:01:02.219122 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 10:01:02.399161 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 10:01:03.792013 + : pb-IF5XVEI_Kg== | Genos909|momos khao| -2022-12-05 10:01:23.980336 + : pb-IF5XVEI_Kg== | Genos909|momos khao| why did the astronaut left the earth? -2022-12-05 10:01:32.261265 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-05 10:01:40.119566 + : pb-IF49VFQlPA== | PAMU628|Hamish| bcs he went to pee -2022-12-05 10:01:44.154878 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| da mairu -2022-12-05 10:01:48.328170 + : pb-IF4xU04OMg== | PC772976|India| thinking -2022-12-05 10:01:52.025318 + : pb-IF5XVEI_Kg== | Genos909|momos khao| bcs he. needed some space 😂😂 -2022-12-05 10:01:56.528837 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 10:01:57.168770 + : pb-IF4xU04OMg== | PC772976|India| wwwwttf -2022-12-05 10:02:07.224213 + : pb-IF4xU04OMg== | PC772976|India| i want to abuse now -2022-12-05 10:02:08.559046 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| spam filter hatao re bina mtlb k kick ho rhaa -2022-12-05 10:02:46.625456 + : pb-IF5XVEI_Kg== | Genos909|momos khao| bye -2022-12-05 10:03:04.960321 + : pb-IF4xU04OMg== | PC772976|India| lol -2022-12-05 10:03:22.475779 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| utter tum ban hoge -2022-12-05 10:03:25.196923 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 10:03:25.439953 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 10:03:26.913274 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| warning -2022-12-05 10:03:28.203266 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| all vote -2022-12-05 10:03:34.971201 + : pb-IF49VFQlPA== | PAMU628|Hamish| hothareesh100 stop betraying boy -2022-12-05 10:03:45.476416 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 10:03:45.654989 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 10:03:45.825557 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 10:04:17.818874 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| MAFIA☠️😂🤣 -2022-12-05 10:04:21.971610 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 😁😁 -2022-12-05 10:05:06.040101 + : pb-IF4gU048KQ== | lolisoh640|전설 문학| give me -2022-12-05 10:05:31.000199 + : pb-IF4xU04OMg== | PC772976|India| why do people watch p0rn? -2022-12-05 10:06:05.601881 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 10:06:05.781765 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 10:06:07.826945 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 10:06:08.266693 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 10:06:09.134954 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| haha -2022-12-05 10:06:09.154062 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 10:06:09.354091 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 10:06:09.575232 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-05 10:06:09.859497 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-05 10:06:10.074492 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-05 10:06:10.299546 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-05 10:06:14.446547 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 10:06:19.726533 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| uther joined back -2022-12-05 10:06:25.393342 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| be careful RED -2022-12-05 10:06:28.071305 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| who -2022-12-05 10:06:48.999000 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| me dr gaya -2022-12-05 10:06:56.258382 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| haha -2022-12-05 10:06:57.414251 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| me bi dar gaya🤣🤣 -2022-12-05 10:07:31.639470 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| crazy cat are u ***** cat? -2022-12-05 10:07:51.030067 + : pb-IF49VFQlPA== | PAMU628|Hamish| MAFIA☠️ wat did u say -2022-12-05 10:08:17.427749 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| miyowww cat -2022-12-05 10:08:30.450643 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| evry one **** corona mom -2022-12-05 10:08:37.804530 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| spell mistake -2022-12-05 10:08:42.039955 + : pb-IF4TU0oFAQ== | FamousImpr|SPY🔎| -2022-12-05 10:08:43.159912 + : pb-IF4TU0oFAQ== | FamousImpr|SPY🔎| -2022-12-05 10:10:52.066287 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 😷 corona -2022-12-05 10:11:25.906190 + : pb-IF4cU00cCQ== | EasyComple|EasyComple| 0 -2022-12-05 10:11:35.931637 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 10:11:36.081879 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 10:11:40.168931 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| 😹😹😹 -2022-12-05 10:11:43.024060 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 10:11:43.333925 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 10:11:50.231013 + : pb-IF4cU00cCQ== | EasyComple|EasyComple| -2022-12-05 10:11:50.386070 + : pb-IF4cU00cCQ== | EasyComple|EasyComple| -2022-12-05 10:11:50.565973 + : pb-IF4cU00cCQ== | EasyComple|EasyComple| -2022-12-05 10:11:50.746184 + : pb-IF4cU00cCQ== | EasyComple|EasyComple| -2022-12-05 10:11:51.823751 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 10:11:51.973784 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 10:11:54.464128 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| 😁 -2022-12-05 10:12:40.221339 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 10:12:40.457046 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 10:12:40.589636 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 10:12:40.689209 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 10:12:42.725990 + : pb-IF4cU00cCQ== | EasyComple|EasyComple| -2022-12-05 10:12:42.885903 + : pb-IF4cU00cCQ== | EasyComple|EasyComple| -2022-12-05 10:12:43.066015 + : pb-IF4cU00cCQ== | EasyComple|EasyComple| -2022-12-05 10:12:43.286152 + : pb-IF4cU00cCQ== | EasyComple|EasyComple| -2022-12-05 10:12:45.998685 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 10:12:46.148680 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 10:12:46.278363 + : pb-IF4TU0oFAQ== | FamousImpr|SPY🔎| -2022-12-05 10:12:46.478543 + : pb-IF4TU0oFAQ== | FamousImpr|SPY🔎| -2022-12-05 10:12:46.688503 + : pb-IF4TU0oFAQ== | FamousImpr|SPY🔎| -2022-12-05 10:12:47.788583 + : pb-IF4TU0oFAQ== | FamousImpr|SPY🔎| -2022-12-05 10:12:48.388941 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 10:12:48.901723 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 10:12:49.091816 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 10:12:58.211865 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 10:12:58.419777 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 10:12:58.602348 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 10:12:58.801685 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-05 10:13:01.943960 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 10:13:02.242615 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 10:13:02.543975 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 10:13:02.759166 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 10:13:03.172729 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 10:13:03.292904 + : pb-IF4gU048KQ== | lolisoh640|전설 문학| -2022-12-05 10:13:03.439143 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 10:13:03.904289 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 10:14:26.058306 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| muje bu upar lelo -2022-12-05 10:15:36.544510 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 😌😌 -2022-12-05 10:15:38.288607 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| aja mafia -2022-12-05 10:16:01.280115 + : pb-IF4TU0oFAQ== | FamousImpr|SPY🔎| -2022-12-05 10:16:01.499932 + : pb-IF4TU0oFAQ== | FamousImpr|SPY🔎| -2022-12-05 10:16:01.619794 + : pb-IF4TU0oFAQ== | FamousImpr|SPY🔎| -2022-12-05 10:17:39.510323 + : pb-IF4TU0oFAQ== | FamousImpr|SPY🔎| -2022-12-05 10:17:39.670319 + : pb-IF4TU0oFAQ== | FamousImpr|SPY🔎| -2022-12-05 10:17:40.930493 + : pb-IF4TU0oFAQ== | FamousImpr|SPY🔎| -2022-12-05 10:17:49.711247 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| bomb buffet -2022-12-05 10:18:27.566244 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 🤣🤣 -2022-12-05 10:19:09.827101 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| wowow -2022-12-05 10:19:41.269670 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 😳😳😳 -2022-12-05 10:19:58.539095 + : pb-IF4nU3IxEw== | divs2104|divs2104| mummy h -2022-12-05 10:20:07.989814 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😚😚 -2022-12-05 10:20:10.297503 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| kk -2022-12-05 10:20:16.068903 + : pb-IF4nU3IxEw== | divs2104|divs2104| zyada bat Mt kr -2022-12-05 10:20:19.449165 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 10:20:19.638674 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 10:20:19.728701 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 10:20:19.818539 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 10:20:20.883700 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| okk -2022-12-05 10:20:24.002612 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😁 -2022-12-05 10:20:30.218719 + : pb-IF4nU3IxEw== | divs2104|divs2104| 😚 -2022-12-05 10:20:34.431988 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| kyu divs -2022-12-05 10:20:43.118567 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| ye sala khud ka accnt la -2022-12-05 10:20:43.128581 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| me khud se baat kar rha hai -2022-12-05 10:21:17.704556 + : pb-IF4nU3IxEw== | divs2104|divs2104| kch bhii -2022-12-05 10:21:27.458777 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| bohut kuch -2022-12-05 10:21:32.554843 + : pb-IF4nU3IxEw== | divs2104|divs2104| kya kyu -2022-12-05 10:21:45.448113 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| div mood ho rhi h😁😚 -2022-12-05 10:21:46.728959 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| vivek ko chorh do -2022-12-05 10:22:04.324630 + : pb-IF4DU00TEw== | Android63902876|prasanth| hi -2022-12-05 10:22:07.211048 + : pb-IF4TU0oFAQ== | FamousImpr|SPY🔎| -2022-12-05 10:22:07.410303 + : pb-IF4TU0oFAQ== | FamousImpr|SPY🔎| -2022-12-05 10:22:07.550392 + : pb-IF4TU0oFAQ== | FamousImpr|SPY🔎| -2022-12-05 10:22:11.854723 + : pb-IF4nU3IxEw== | divs2104|| -2022-12-05 10:22:13.374535 + : pb-IF4nU3IxEw== | divs2104|| -2022-12-05 10:22:14.594712 + : pb-IF4nU3IxEw== | divs2104|| -2022-12-05 10:22:14.854564 + : pb-IF4nU3IxEw== | divs2104|| -2022-12-05 10:23:26.658823 + : pb-IF4nU3IxEw== | divs2104|divs2104| hii -2022-12-05 10:23:43.528940 + : pb-IF4nU3IxEw== | divs2104|divs2104| vivuu faad de😁 -2022-12-05 10:23:52.046648 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| kiski😁 -2022-12-05 10:23:59.968976 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| boht nataunki ho rha🥲 -2022-12-05 10:25:50.567818 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| cursed level -2022-12-05 10:27:54.819097 + : pb-IF4nU3IxEw== | divs2104|divs2104| kaun kr rha h nautankii -2022-12-05 10:28:38.418920 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| 😂 -2022-12-05 10:28:44.987111 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lolz -2022-12-05 10:29:09.638776 + : pb-IF4nU3IxEw== | divs2104|divs2104| aur ap ku sad ho😂 -2022-12-05 10:29:24.223297 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| done! -2022-12-05 10:29:24.558714 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| kon sad? -2022-12-05 10:29:26.047545 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| usko nhi mil rhi 😁 -2022-12-05 10:29:42.779392 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| ko bye guys -2022-12-05 10:29:46.718771 + : pb-IF4nU3IxEw== | divs2104|divs2104| chal chalte h 4 bJ gya -2022-12-05 10:29:52.529121 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😚 -2022-12-05 10:30:01.738886 + : pb-IF4nU3IxEw== | divs2104|divs2104| hmmmm -2022-12-05 10:31:03.372190 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| why only betray left in blue? -2022-12-05 10:31:47.610889 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| hahaha -2022-12-05 10:32:23.686042 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| kikc all -2022-12-05 10:33:30.426622 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| i will betray red unless u kick hamish -2022-12-05 10:35:25.899502 + : pb-IF4-U04OIw== | KimchiWawa2769|Lizzy~}ImGirl♡Me| We are twin hamish☺☺ -2022-12-05 10:36:20.614723 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| my team wins lol -2022-12-05 10:36:39.226083 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| crazy why your betraying me -2022-12-05 10:36:50.640884 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| because hamish betraying blue and u dont kick him -2022-12-05 10:36:51.655646 + : pb-IF4-U04OIw== | KimchiWawa2769|Lizzy~}ImGirl♡Me| Im lagg -2022-12-05 10:37:00.547178 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| I'm kicking him -2022-12-05 10:37:11.998319 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| I type 1 -2022-12-05 10:37:51.038099 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| what abt AGENT? -2022-12-05 10:37:53.520887 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| is he dumb? -2022-12-05 10:37:57.043521 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| kick -2022-12-05 10:37:57.850859 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| idk -2022-12-05 10:38:07.702153 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| can you give him a math question? -2022-12-05 10:38:32.909463 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| you betray me -2022-12-05 10:38:44.220505 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| gg nice -2022-12-05 10:39:59.420838 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| gg my team wins again -2022-12-05 10:40:05.472042 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| yes -2022-12-05 10:40:16.047452 + : pb-IF42VW5aNA== | Android47379546|Android47379546| yes -2022-12-05 10:40:22.192487 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| I was on a blue team -2022-12-05 10:40:45.984594 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol players cant kick hamish yet -2022-12-05 10:40:54.108483 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| 0 -2022-12-05 10:41:57.041906 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol team of betrayers -2022-12-05 10:41:57.141806 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| -_- -2022-12-05 10:42:30.250603 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| shame that we cant yet kikc Hamish -2022-12-05 10:42:44.061757 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| why you betray me cat crazy -2022-12-05 10:42:47.307366 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| die with shame poeple "pros" -2022-12-05 10:43:44.198489 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| play 4 ur team -2022-12-05 10:43:45.465121 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| -2022-12-05 10:43:55.618219 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| that is what I am telling Agent dummy -2022-12-05 10:44:04.983249 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol Agent brain empty? -2022-12-05 10:44:06.718947 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| u r in red -2022-12-05 10:44:24.827326 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| that agents brain must be learn? -2022-12-05 10:45:25.433829 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 10:45:25.733703 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 10:45:38.723776 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| please kick hamish -2022-12-05 10:45:42.498428 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| ok -2022-12-05 10:45:45.305128 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| yes pls do that -2022-12-05 10:45:48.326765 + : pb-IF42VW5aNA== | Android47379546|Android47379546| no -2022-12-05 10:45:51.572197 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| yes -2022-12-05 10:45:57.481922 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| Hamish Teri Maa ki hut -2022-12-05 10:46:01.728045 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| all vote -2022-12-05 10:46:06.728478 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| pls vote -2022-12-05 10:47:32.536201 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| ALL VOTE -2022-12-05 10:48:18.153072 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| OK HOPELESS, I AM LEAVING -2022-12-05 10:48:23.399216 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| 1 -2022-12-05 10:49:28.745114 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| didu😚 -2022-12-05 10:50:19.894071 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|DiVa🌼| hy tani ❤️ -2022-12-05 10:50:43.585913 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| kese ho? -2022-12-05 10:50:52.166170 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| noob hamish😂🤣🤣 -2022-12-05 10:50:58.307971 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|DiVa🌼| mai theek...ap btao ☺️ -2022-12-05 10:51:06.675169 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| m bh thik -2022-12-05 10:51:31.219876 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| hamish mt kr betray -2022-12-05 10:51:50.536439 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-05 10:52:51.211877 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| 1 -2022-12-05 10:53:03.745428 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|DiVa🌼| Hamish Stop betraying for 5min -2022-12-05 10:53:14.596188 + : pb-IF48U3FaNQ== | DilatoryHo|Hamish| ok -2022-12-05 10:53:32.449996 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| srie bobox -2022-12-05 10:53:35.729989 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|DiVa🌼| I'll leave after that 👊 -2022-12-05 10:54:19.303942 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| kick him😡 -2022-12-05 10:56:06.106044 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|DiVa🌼| hawww -2022-12-05 10:56:46.693860 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| end -2022-12-05 10:56:51.504194 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| end -2022-12-05 10:57:40.233530 + : pb-IF4TU0oFAQ== | FamousImpr|Nippy| -2022-12-05 10:57:40.403652 + : pb-IF4TU0oFAQ== | FamousImpr|Nippy| -2022-12-05 10:58:45.183621 + : pb-IF4TU0oFAQ== | FamousImpr|Nippy| -2022-12-05 10:59:17.957064 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|DiVa🌼| sry -2022-12-05 10:59:34.422733 + : pb-IF4TU0oFAQ== | FamousImpr|Nippy| -2022-12-05 10:59:34.582675 + : pb-IF4TU0oFAQ== | FamousImpr|Nippy| -2022-12-05 10:59:35.062903 + : pb-IF4TU0oFAQ== | FamousImpr|Nippy| -2022-12-05 11:00:35.304454 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|DiVa🌼| Hamish please -2022-12-05 11:00:36.153803 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| chaos -2022-12-05 11:00:49.382937 + : pb-IF4UVGg8KQ== | LionAlpha7998|Iron man| betray qu kar ra -2022-12-05 11:00:55.713044 + : pb-IF4UVGg8KQ== | LionAlpha7998|Iron man| vote hamish -2022-12-05 11:01:27.334985 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| didu play -2022-12-05 11:02:25.303310 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|DiVa🌼| 😁 -2022-12-05 11:02:52.082241 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| oy faddu bhalu bangya -2022-12-05 11:03:06.820229 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-05 11:03:09.193272 + : pb-IF4SU00JHw== | Jayrajsinh1202|boboX| -2022-12-05 11:05:06.377658 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| hamish😡😡 -2022-12-05 11:05:11.790970 + : pb-IF48U3FaNQ== | DilatoryHo|Hamish| -2022-12-05 11:05:11.934809 + : pb-IF48U3FaNQ== | DilatoryHo|Hamish| -2022-12-05 11:05:12.102599 + : pb-IF4TU0oFAQ== | FamousImpr|Nippy| -2022-12-05 11:05:12.303316 + : pb-IF4TU0oFAQ== | FamousImpr|Nippy| -2022-12-05 11:05:12.823923 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 11:05:30.306748 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| waring betray math karo -2022-12-05 11:05:55.169118 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| last warning -2022-12-05 11:06:05.095858 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| nahi to ban hojaoge -2022-12-05 11:06:06.541984 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|DiVa🌼| I'm on tea break -2022-12-05 11:06:14.299569 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|DiVa🌼| please let me enjoy it -2022-12-05 11:06:23.340642 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|DiVa🌼| Mr. Hamish -2022-12-05 11:07:25.853906 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| mafia🤣 -2022-12-05 11:08:52.497990 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-05 11:08:52.648980 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-05 11:09:55.671049 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|DiVa🌼| -2022-12-05 11:12:50.064388 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-05 11:12:56.280003 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| hot kdhi kdhi -2022-12-05 11:13:18.499096 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| lol🤣 -2022-12-05 11:13:26.069860 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| ;) -2022-12-05 11:14:03.292556 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| mafia piroo -2022-12-05 11:14:19.836230 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| faddu tu bhalu bangya -2022-12-05 11:14:30.163632 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| Haa free hai so😂 -2022-12-05 11:15:37.950130 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|DiVa🌼| sea green hair ko girao -2022-12-05 11:15:41.965786 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-05 11:15:46.917104 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|DiVa🌼| -2022-12-05 11:15:47.968886 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| xd -2022-12-05 11:16:59.383940 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-05 11:16:59.524957 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-05 11:18:48.114133 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-05 11:20:22.134490 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| sowie -2022-12-05 11:21:26.472825 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-05 11:21:29.028918 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|DiVa🌼| -2022-12-05 11:21:45.919362 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| oops -2022-12-05 11:23:27.665993 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 🤣🤣 -2022-12-05 11:23:27.719189 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|DiVa🌼| -2022-12-05 11:23:28.916703 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| mah tea time now 😹 -2022-12-05 11:23:32.496456 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| red noob -2022-12-05 11:23:38.767852 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| is it -2022-12-05 11:24:11.319760 + : pb-IF48UlAAFA== | JocularVigor9|Jay Shree Ram🚩| Bhagwa 🚩🚩🚩 -2022-12-05 11:24:20.340878 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-05 11:24:21.914276 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|DiVa🌼| -2022-12-05 11:25:40.821024 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| 😂 -2022-12-05 11:27:36.623499 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|DiVa🌼| -2022-12-05 11:27:42.839863 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|DiVa🌼| 🐢 -2022-12-05 11:27:51.087927 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| 🧍‍♂️🍌 -2022-12-05 11:27:55.000321 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 😹. -2022-12-05 11:28:00.356340 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| wth -2022-12-05 11:28:01.438562 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| 👉👌 -2022-12-05 11:28:05.856318 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|DiVa🌼| 0 -2022-12-05 11:28:17.352474 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| 🤤👉👌 -2022-12-05 11:28:24.392636 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| no end -2022-12-05 11:28:40.724030 + : pb-IF4UVGg8KQ== | LionAlpha7998|Iron man| op -2022-12-05 11:28:57.978614 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-05 11:29:25.023827 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| gtr Kyo fat gayi kya😂 -2022-12-05 11:29:29.944019 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| vote daal diya -2022-12-05 11:29:56.914161 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| noice -2022-12-05 11:30:32.720167 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| 😂😂 -2022-12-05 11:30:36.469283 + : pb-IF4QVGYMKg== | shrey19654|captain America| op -2022-12-05 11:30:38.880745 + : pb-IF48UlAAFA== | JocularVigor9|Jay Shree Ram🚩| WTF -2022-12-05 11:30:39.179311 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 🤣🤣 -2022-12-05 11:30:39.498332 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| 🤣👉👌 -2022-12-05 11:30:40.566664 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| having tea brewh -2022-12-05 11:31:17.920012 + : pb-IF48UlAAFA== | JocularVigor9|Jay Shree Ram🚩| 0 -2022-12-05 11:31:51.923435 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| VascularDeficiency37 started to kick vote for Spiky😈 -2022-12-05 11:32:00.989823 + : pb-IF4-U3gdFw== | Android63053623|Spiky😈ಮೂಳೆ| 🙂 -2022-12-05 11:32:09.210409 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| 🤣 -2022-12-05 11:32:34.910127 + : pb-IF5RUmMsFg== | karanshetty6|ChunK| nibbi -2022-12-05 11:33:44.739546 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| started a kick vote for Iron man -2022-12-05 11:38:20.913764 + : pb-IF4wUlIYCg== | NearCandy4|Allha hu Akbar| -2022-12-05 11:38:32.741063 + : pb-IF48UlAAFA== | JocularVigor9|Jay Shree Ram🚩| -2022-12-05 11:38:34.241311 + : pb-IF48UlAAFA== | JocularVigor9|Jay Shree Ram🚩| -2022-12-05 11:38:41.401318 + : pb-IF48UlAAFA== | JocularVigor9|Jay Shree Ram🚩| Alla ki **** me bulla -2022-12-05 11:38:46.572859 + : pb-IF48UlAAFA== | JocularVigor9|Jay Shree Ram🚩| Jay Shree Ram -2022-12-05 11:42:22.659366 + : pb-IF5dVWgRBg== | Android47745010|♡TANU♡| ok -2022-12-05 11:42:22.710800 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| 0 -2022-12-05 11:46:13.490775 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| darpok -2022-12-05 11:48:10.046189 + : pb-IF49U21YDQ== | Android59843406|⚜♾Limuin_Life♾⚜| -2022-12-05 11:48:10.187219 + : pb-IF49U21YDQ== | Android59843406|⚜♾Limuin_Life♾⚜| -2022-12-05 11:48:10.411034 + : pb-IF49U21YDQ== | Android59843406|⚜♾Limuin_Life♾⚜| -2022-12-05 11:48:10.580318 + : pb-IF49U21YDQ== | Android59843406|⚜♾Limuin_Life♾⚜| -2022-12-05 11:48:17.810641 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| -2022-12-05 11:48:18.010775 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| -2022-12-05 11:48:18.150770 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| -2022-12-05 11:48:23.727624 + : pb-IF4PU0UlAw== | MunicipalJ|pranav| -2022-12-05 11:48:23.878983 + : pb-IF4PU0UlAw== | MunicipalJ|pranav| -2022-12-05 11:48:24.018082 + : pb-IF4PU0UlAw== | MunicipalJ|pranav| -2022-12-05 11:48:24.157759 + : pb-IF4PU0UlAw== | MunicipalJ|pranav| -2022-12-05 11:49:40.566457 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| tanun I love you -2022-12-05 11:49:59.404531 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| tanu is mine -2022-12-05 11:50:17.080822 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| Tanu sarna -2022-12-05 11:50:29.083033 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| tanu sardines🤣 -2022-12-05 11:50:29.400866 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| Tanu pa.... -2022-12-05 11:51:51.418811 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| started a kick vote for allahualbar -2022-12-05 12:01:35.863651 + : pb-IF4dCnou | RohanK|RohanK| What the hell? -2022-12-05 12:09:35.389842 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| haha -2022-12-05 12:09:46.673397 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| OMG -2022-12-05 12:09:53.247749 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| Its a Marathon -2022-12-05 12:11:23.301432 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| go John wick -2022-12-05 12:11:51.516340 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-05 12:12:20.822162 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| sad -2022-12-05 12:12:23.348547 + : pb-IF4HU0IIEQ== | BabyboyBro|BabyboyBro| why -2022-12-05 12:12:39.562243 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| babybroboyb -2022-12-05 12:12:52.027289 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| lol -2022-12-05 12:13:17.724754 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| akaza you killed haring renggoku -2022-12-05 12:13:48.547481 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| i was loser -2022-12-05 12:13:56.006180 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| 0 -2022-12-05 12:13:59.239696 + : pb-IF4nUxE4Nw== | Android60071137|john wick| 0 -2022-12-05 12:14:15.938219 + : pb-IF4PU0UlAw== | MunicipalJ|pranav| 0 -2022-12-05 12:14:23.101325 + : pb-IF4nUxE4Nw== | Android60071137|john wick| thanks vascular -2022-12-05 12:14:29.306045 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| :) -2022-12-05 12:16:53.322856 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| Akaza bro you sre pro -2022-12-05 12:17:02.021159 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| thanks -2022-12-05 12:17:16.864018 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| sry -2022-12-05 12:18:06.777867 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| red guys lets gang attack -2022-12-05 12:18:18.183031 + : pb-IF41UxkjMg== | Android60845640|Android60845640| -2022-12-05 12:18:18.358300 + : pb-IF41UxkjMg== | Android60845640|Android60845640| -2022-12-05 12:18:18.522646 + : pb-IF41UxkjMg== | Android60845640|Android60845640| -2022-12-05 12:18:18.699362 + : pb-IF41UxkjMg== | Android60845640|Android60845640| -2022-12-05 12:18:19.338469 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| *** -2022-12-05 12:19:53.978366 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| yoo😎😎😎😅 -2022-12-05 12:20:31.379093 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| why bro -2022-12-05 12:21:41.046209 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| great -2022-12-05 12:22:02.861321 + : pb-IF41UxkjMg== | Android60845640|Android60845640| -2022-12-05 12:22:03.059141 + : pb-IF41UxkjMg== | Android60845640|Android60845640| -2022-12-05 12:22:03.202139 + : pb-IF41UxkjMg== | Android60845640|Android60845640| -2022-12-05 12:22:05.194070 + : pb-IF4PU0UlAw== | MunicipalJ|pranav| -2022-12-05 12:22:05.237687 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| -2022-12-05 12:22:05.358996 + : pb-IF4PU0UlAw== | MunicipalJ|pranav| -2022-12-05 12:22:05.397731 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| -2022-12-05 12:22:05.522791 + : pb-IF4PU0UlAw== | MunicipalJ|pranav| -2022-12-05 12:22:05.639635 + : pb-IF4PU0UlAw== | MunicipalJ|pranav| -2022-12-05 12:22:07.758721 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| -2022-12-05 12:22:07.918291 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| -2022-12-05 12:23:53.484108 + : pb-IF4tVXIbMQ== | Aryannnnnヅ|✰✨彡[ΔRYΔƝ]彡✨✰| ✨Mʏ ᴏᴘ ᴘɪɴɢ ɪs... = 0ᴍs ! -2022-12-05 12:24:10.316822 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| I don't asked about me -2022-12-05 12:24:52.380543 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| Ayushayy -2022-12-05 12:25:15.875772 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| Ayushayy dont betrau -2022-12-05 12:25:20.548519 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| betray -2022-12-05 12:25:28.535591 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| akaza -2022-12-05 12:25:34.254934 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| what -2022-12-05 12:25:54.025467 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| papatio👁️👄👁️ -2022-12-05 12:26:20.767750 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| akaza do u know muzan -2022-12-05 12:26:35.638055 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| akaza killed rengoku -2022-12-05 12:26:38.077377 + : pb-IF41UxkjMg== | Android60845640|Android60845640| -2022-12-05 12:26:38.077659 + : pb-IF41UxkjMg== | Android60845640|Android60845640| -2022-12-05 12:26:38.481161 + : pb-IF41UxkjMg== | Android60845640|Android60845640| -2022-12-05 12:26:38.482856 + : pb-IF41UxkjMg== | Android60845640|Android60845640| -2022-12-05 12:26:40.260928 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| yes -2022-12-05 12:26:40.494217 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| lol -2022-12-05 12:26:44.256744 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| i am zenitsu -2022-12-05 12:26:45.004025 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| donut -2022-12-05 12:26:49.275556 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| lmao -2022-12-05 12:26:52.118733 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| kaminari no kokyi -2022-12-05 12:26:56.025425 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| ichi no kata -2022-12-05 12:26:59.268743 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| nagi -2022-12-05 12:27:00.054258 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| rengoku ka donut bna diya -2022-12-05 12:27:12.159837 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| hekirekisen shizuka -2022-12-05 12:27:45.204105 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 12:27:45.365245 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 12:27:45.523873 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 12:27:45.764313 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 12:27:51.396338 + : pb-IF41UxkjMg== | Android60845640|Android60845640| lol -2022-12-05 12:27:53.620105 + : pb-IF4PVFRZMA== | delrowe012|Socrates| -2022-12-05 12:27:53.768937 + : pb-IF4PVFRZMA== | delrowe012|Socrates| -2022-12-05 12:27:54.031373 + : pb-IF4PVFRZMA== | delrowe012|Socrates| -2022-12-05 12:28:23.738777 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| damm -2022-12-05 12:28:51.845117 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| akaza well meet in infinity castle arc -2022-12-05 12:29:08.716068 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| im gonna massacre everyone xd -2022-12-05 12:29:11.668775 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| lets see -2022-12-05 12:29:11.677124 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 12:29:17.460577 + : pb-IF4PVFRZMA== | delrowe012|Socrates| -2022-12-05 12:29:17.547614 + : pb-IF4PVFRZMA== | delrowe012|Socrates| -2022-12-05 12:29:23.265820 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| ohh i know all your secrets -2022-12-05 12:29:38.668330 + : pb-IF4rUk0bPQ== | VascularDeficiency37|| -2022-12-05 12:29:38.836694 + : pb-IF4rUk0bPQ== | VascularDeficiency37|| -2022-12-05 12:29:40.857767 + : pb-IF4rUk0bPQ== | VascularDeficiency37|| -2022-12-05 12:29:41.007398 + : pb-IF4rUk0bPQ== | VascularDeficiency37|| -2022-12-05 12:30:19.427619 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| what the hell -2022-12-05 12:30:29.181232 + : pb-IF41UxkjMg== | Android60845640|Android60845640| 🤣 -2022-12-05 12:30:48.213304 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| t fk -2022-12-05 12:30:53.889842 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| bich -2022-12-05 12:30:58.767125 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 12:31:02.588224 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| wut -2022-12-05 12:31:10.927314 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| I'm nakime -2022-12-05 12:31:21.910029 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| I'm yorichii -2022-12-05 12:31:42.567192 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| shruti leone how dare u -2022-12-05 12:32:01.700876 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| oh my -2022-12-05 12:32:08.988561 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| who is nakime -2022-12-05 12:32:11.827185 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 12:32:12.247229 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 12:32:12.647526 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 12:32:16.647310 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| me -2022-12-05 12:32:24.037748 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| nakime the guatar demon -2022-12-05 12:32:25.267500 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| that one eyed cute girl xd -2022-12-05 12:32:37.939063 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| cute? -2022-12-05 12:32:44.471615 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| my brother said nakime is a boy...... -2022-12-05 12:32:56.582096 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| ur brother is wrong -2022-12-05 12:33:06.207360 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| she is a female demon -2022-12-05 12:33:11.978431 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| nakime is a transgender -2022-12-05 12:33:12.503148 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| yeah I said him too much nakime is a girl -2022-12-05 12:33:15.937333 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| who killed her husband and customer -2022-12-05 12:33:20.602971 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| me -2022-12-05 12:33:43.944781 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 12:33:57.504282 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| lol -2022-12-05 12:34:30.714253 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| noise i will kill all hashiras -2022-12-05 12:34:31.463789 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| yeah boiii -2022-12-05 12:34:41.594922 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| my uncle told me the demon slayer at bathroom -2022-12-05 12:35:04.824949 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| lol team -2022-12-05 12:35:07.829385 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| ur uncle only like bathroom not demon slayer -2022-12-05 12:35:09.354056 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| shruti leone -2022-12-05 12:35:23.825140 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| wut -2022-12-05 12:35:26.233241 + : pb-IF4PVFRZMA== | delrowe012|Socrates| -2022-12-05 12:35:26.382748 + : pb-IF4PVFRZMA== | delrowe012|Socrates| -2022-12-05 12:35:27.353359 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| I said my uncle told me this at bathroom -2022-12-05 12:35:27.704905 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| 🤣 -2022-12-05 12:35:28.437971 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| shruti follow sunny leone on insta -2022-12-05 12:35:42.804713 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 12:35:42.964683 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 12:35:43.051379 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| ok now make it sense -2022-12-05 12:35:44.218921 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| why do u follow sunny leoni shruti -2022-12-05 12:35:51.253290 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| ohhh man -2022-12-05 12:35:57.602559 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| he said a secret for me -2022-12-05 12:35:57.762938 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| 😂😅😅😓 -2022-12-05 12:35:59.687406 + : pb-IF4NU0cpFw== | ModalHandle23|ModalHandle23| Shruti ki maa dunny leone -2022-12-05 12:36:02.291775 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| kris darpokh -2022-12-05 12:36:11.944344 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| hey stop insulting -2022-12-05 12:36:17.474614 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| agent k name PR kalank -2022-12-05 12:36:18.334230 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| ok -2022-12-05 12:36:19.657381 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| dani daniels and shruti gud girls -2022-12-05 12:36:24.083737 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| noise gurls -2022-12-05 12:36:35.405176 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| Dan woh ladka h negan -2022-12-05 12:36:35.411678 + : pb-IF4NU0cpFw== | ModalHandle23|ModalHandle23| Shruti koi nhi wo ladka ha ** -2022-12-05 12:36:41.824610 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| or else imm kik -2022-12-05 12:36:45.006893 + : pb-IF4NU0cpFw== | ModalHandle23|ModalHandle23| ladka hai shruti -2022-12-05 12:36:47.491571 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| damm -2022-12-05 12:36:50.453096 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| half -2022-12-05 12:37:00.102881 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| Guys she is like your sister.....🙎😹 -2022-12-05 12:37:06.652512 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| shruti in afvao ko khatam kro ladki ho bol do sabko -2022-12-05 12:37:16.313172 + : pb-IF4PVFRZMA== | delrowe012|Socrates| -2022-12-05 12:37:16.564771 + : pb-IF4PVFRZMA== | delrowe012|Socrates| -2022-12-05 12:37:17.045951 + : pb-IF4PVFRZMA== | delrowe012|Socrates| -2022-12-05 12:37:22.743273 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| wait -2022-12-05 12:37:27.234236 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| manchu -2022-12-05 12:37:32.384289 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| play -2022-12-05 12:37:43.245530 + : pb-IF4cUlIHFQ== | TusharRawa|Midoriya| 1 -2022-12-05 12:37:44.945484 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| hey guys my friend teach me this👉👌 -2022-12-05 12:37:47.268838 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| 1 -2022-12-05 12:37:51.061503 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| how did i die -2022-12-05 12:37:53.371567 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| play fast -2022-12-05 12:37:57.424695 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| kill -2022-12-05 12:37:59.756134 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| how t f did i die -2022-12-05 12:38:05.277261 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| script -2022-12-05 12:38:06.041464 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 12:38:11.914312 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| demon art kill all lmao -2022-12-05 12:38:14.655101 + : pb-IF4rVUkdFA== | Giteshpro|Giteshpro| phat sa head -2022-12-05 12:38:16.290749 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| kon hacker hai ********* -2022-12-05 12:38:19.745481 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| commands don't work her -2022-12-05 12:38:24.362993 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| tera bap -2022-12-05 12:38:24.885666 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| this is bcs -2022-12-05 12:38:31.832985 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| blacky women -2022-12-05 12:38:32.954888 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| old bcs dead -2022-12-05 12:38:37.736736 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| shit up -2022-12-05 12:38:41.968236 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| ohh bcs kicks idle p[layers? -2022-12-05 12:38:49.154698 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| so becareful play fairly dont abuse here -2022-12-05 12:38:54.180624 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| Hey bro my name is Black Man -2022-12-05 12:38:58.045472 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| omg ninja pingu -2022-12-05 12:38:59.212108 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| old BTS dead -2022-12-05 12:38:59.371804 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| okk man -2022-12-05 12:39:14.918711 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| come one vacsular u dead!! -2022-12-05 12:39:24.765709 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| mera name bhi ninja bear kr lu kya -2022-12-05 12:39:26.988045 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| midoriya ***y gurl -2022-12-05 12:39:38.349759 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| sorry for chatting this Gago chat -2022-12-05 12:39:48.845799 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| akaza ka Shani bhari h -2022-12-05 12:40:38.545656 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 12:40:39.675715 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 12:40:44.465937 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 12:40:51.802916 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| -2022-12-05 12:40:54.543001 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| -2022-12-05 12:41:00.966394 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 12:41:02.333083 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| 😂😂😂😂 -2022-12-05 12:41:08.459188 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| wait -2022-12-05 12:41:09.043246 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| 😂 -2022-12-05 12:41:12.381865 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| no wait -2022-12-05 12:41:13.640471 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| not fair -2022-12-05 12:41:14.532872 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| chef vs chef now -2022-12-05 12:41:17.389461 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| hey man -2022-12-05 12:41:23.112103 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| yes -2022-12-05 12:41:28.765875 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| mera warn count 3 pass ho gya -2022-12-05 12:41:30.429883 + : pb-IF4iU04PKA== | Android63956151|Lucky;) 12345| -2022-12-05 12:41:33.532270 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| vascular malnutricioncy badla le -2022-12-05 12:41:39.051335 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| wt dude!! -2022-12-05 12:41:40.165964 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| lol -2022-12-05 12:41:40.881313 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| haha -2022-12-05 12:41:41.712914 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| sit at ehakdufuehrifurjek -2022-12-05 12:41:56.272684 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| only akaza -2022-12-05 12:42:00.243867 + : pb-IF4qUhZcEA== | AssortedSy|ninja penguin| do you know ligma -2022-12-05 12:42:00.565717 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 12:42:02.771358 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| great -2022-12-05 12:42:04.586850 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| can solo -2022-12-05 12:42:05.922539 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| moon breathing -2022-12-05 12:42:07.973538 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| Akaza all game is depend on you bro -2022-12-05 12:42:11.208349 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| t fk was that -2022-12-05 12:42:11.795939 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| sun breathing -2022-12-05 12:42:25.892454 + : pb-IF4qUhZcEA== | AssortedSy|ninja penguin| lick my balls -2022-12-05 12:42:29.755715 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| akaza is the only demon who do martial arts -2022-12-05 12:42:32.933458 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| u mean ***** -2022-12-05 12:42:54.661862 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| balls kaise block ni hota word -2022-12-05 12:42:54.671143 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| upper moon vs upper sun🤣 -2022-12-05 12:43:12.824573 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| hahaha -2022-12-05 12:43:29.455689 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| kisiko thore pta chlega ki ye football h ya Tera ball -2022-12-05 12:43:47.509319 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 12:43:50.839570 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| gandit kele -2022-12-05 12:44:00.140214 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| marathi gali not block😂😂 -2022-12-05 12:44:06.938452 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| noice -2022-12-05 12:44:17.628742 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| gigilu gondorong -2022-12-05 12:44:52.268581 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 12:44:57.422597 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| yoy✌✌✌ -2022-12-05 12:44:59.808619 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| why midoria -2022-12-05 12:45:15.973815 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| mid-oriya -2022-12-05 12:45:25.789245 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| bakugou -2022-12-05 12:45:39.769362 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| ******* betrayer -2022-12-05 12:47:15.507951 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| Patil jhinkava match -2022-12-05 12:47:28.733148 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| nhi bhai -2022-12-05 12:47:50.163272 + : pb-IF41UxkjMg== | Android60845640|Android60845640| -2022-12-05 12:47:50.306927 + : pb-IF41UxkjMg== | Android60845640|Android60845640| -2022-12-05 12:47:50.458512 + : pb-IF41UxkjMg== | Android60845640|Android60845640| -2022-12-05 12:47:50.598875 + : pb-IF41UxkjMg== | Android60845640|Android60845640| -2022-12-05 12:47:51.205740 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| ksla bomb fekte shruti -2022-12-05 12:47:53.794068 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| Gavcha patil hay tumhi mara samdhi -2022-12-05 12:47:58.098672 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| hawa me direction change kri -2022-12-05 12:50:08.372976 + : pb-IF41VUYgLw== | OptimusPrime1517|BlackyMan...| ***** sai marnar majhyakadun -2022-12-05 12:50:57.674400 + : pb-IF41UxkjMg== | Android60845640|Android60845640| -2022-12-05 12:50:57.814848 + : pb-IF41UxkjMg== | Android60845640|Android60845640| -2022-12-05 12:50:57.954379 + : pb-IF41UxkjMg== | Android60845640|Android60845640| -2022-12-05 12:50:58.063050 + : pb-IF41UxkjMg== | Android60845640|Android60845640| -2022-12-05 12:56:35.267123 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| lol -2022-12-05 12:56:35.788496 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol -2022-12-05 12:56:38.093943 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| :) -2022-12-05 12:56:47.476533 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| musical bomb game -2022-12-05 12:56:52.846733 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| like musical chairs -2022-12-05 12:58:57.814269 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| oh my my -2022-12-05 12:59:56.011149 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| lol -2022-12-05 12:59:56.151230 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| wtf -2022-12-05 13:00:12.904064 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| ops my bad -2022-12-05 13:01:07.571234 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| lagy -2022-12-05 13:01:32.822399 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| akaza💞 -2022-12-05 13:01:38.011209 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| yes -2022-12-05 13:03:12.046957 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| gg -2022-12-05 13:03:17.491103 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| gg -2022-12-05 13:03:46.931039 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| come on red team we can do it -2022-12-05 13:03:52.554458 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| kill em all -2022-12-05 13:04:31.904028 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| yea -2022-12-05 13:04:41.698151 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| -2022-12-05 13:05:33.938093 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| wtf -2022-12-05 13:05:43.108490 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| hacke -2022-12-05 13:05:48.208499 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| hacker hacker hacke -2022-12-05 13:05:51.169531 + : pb-IF49Umo-Fg== | PATLU517|PATLU517| akaza mod user -2022-12-05 13:05:55.543810 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| i am pretty sure he is hacking -2022-12-05 13:06:00.477944 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| soeedhack kind off -2022-12-05 13:06:03.457182 + : pb-IF49Umo-Fg== | PATLU517|PATLU517| hacker -2022-12-05 13:06:05.351949 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| speedhack -2022-12-05 13:06:09.637752 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| remote -2022-12-05 13:06:11.608018 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| speedhack -2022-12-05 13:06:15.457841 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| either remote or pc -2022-12-05 13:06:18.182079 + : pb-IF4DU0IEJg== | CHAINSAW|•ChainsawMan•| you can kick him then -2022-12-05 13:06:24.678021 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| not a mobile for sure -2022-12-05 13:06:29.626126 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| speedhack kind off -2022-12-05 13:06:54.944329 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| im hacking -2022-12-05 13:06:57.384069 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| not -2022-12-05 13:07:01.428300 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| shru😁 -2022-12-05 13:07:13.451182 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| u guys are noob -2022-12-05 13:07:23.307887 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| -2022-12-05 13:07:25.049746 + : pb-IF4MVXQdNw== | HipRooster87595|AAWARAPAN| jaldi karo -2022-12-05 13:07:29.495816 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| akza i m pro😡 -2022-12-05 13:07:33.147099 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| we are mobile thumb players -2022-12-05 13:07:34.784119 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| noice -2022-12-05 13:07:47.011207 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| me pc player -2022-12-05 13:07:53.086791 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| yes -2022-12-05 13:07:53.315925 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| I am PC aas well dude -2022-12-05 13:08:02.331926 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| me ** players -2022-12-05 13:08:04.549537 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| but still cant move as fast as you -2022-12-05 13:08:30.427495 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| -2022-12-05 13:08:30.636844 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| -2022-12-05 13:08:35.522960 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| dada🤣 -2022-12-05 13:08:36.036571 + : pb-IF4xU2EbKg== | AbhishekAjay744|Rowdy| -2022-12-05 13:08:36.185988 + : pb-IF4xU2EbKg== | AbhishekAjay744|Rowdy| -2022-12-05 13:08:36.331217 + : pb-IF4xU2EbKg== | AbhishekAjay744|Rowdy| -2022-12-05 13:08:36.467368 + : pb-IF4xU2EbKg== | AbhishekAjay744|Rowdy| -2022-12-05 13:08:36.733640 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| bhai😶🥺🥺 -2022-12-05 13:08:36.874208 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| lol -2022-12-05 13:08:50.034022 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| see i too die -2022-12-05 13:08:57.091683 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| im playing from long time -2022-12-05 13:09:34.891184 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| I am playing BS from atleast 7 years, on PC -2022-12-05 13:10:11.031086 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| CrazyCat@ which button u use to run -2022-12-05 13:10:25.304942 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| HOLD ANY BUTTON, U RUN -2022-12-05 13:10:28.990528 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| I HOLD SHIFT -2022-12-05 13:10:45.777951 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| i hold L button -2022-12-05 13:10:53.305308 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| J for pucnh -2022-12-05 13:10:54.153446 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-05 13:10:54.303523 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-05 13:11:03.347558 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| shit -2022-12-05 13:11:07.259018 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| i for grab -2022-12-05 13:11:10.930983 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| O for bomb -2022-12-05 13:12:45.253264 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| wasonce -2022-12-05 13:12:50.632665 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| ;) -2022-12-05 13:12:50.801261 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| ye -2022-12-05 13:13:23.983254 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| wasonce -2022-12-05 13:13:30.667418 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| ye icon -2022-12-05 13:13:35.493320 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| kise lagne ka -2022-12-05 13:14:00.747579 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| told uh last time brewh -2022-12-05 13:14:15.899483 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| go to account> profiles> edit -2022-12-05 13:14:26.553586 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| account is on left most side when game opens -2022-12-05 13:14:37.779723 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| first buy that icon then edit on whichever profile u want -2022-12-05 13:14:44.664309 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| tu marathi ahe ka -2022-12-05 13:15:29.283238 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| wasonce marthi -2022-12-05 13:15:31.565850 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 😹 aahe but zsq account laura cha sahred aahe so tila yet nhi me he eng use krto -2022-12-05 13:15:59.284917 + : pb-IF4iVFBbDA== | djankit857|Cutee pie| 1 -2022-12-05 13:16:05.833175 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| tuza no dena bhai -2022-12-05 13:16:34.123322 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| mm insta deu ka? -2022-12-05 13:16:42.013910 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| ha dena -2022-12-05 13:16:45.591126 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| number itha publicly nko -2022-12-05 13:16:53.034645 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| ha dena -2022-12-05 13:16:57.979113 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| ig@anura_g_ -2022-12-05 13:17:12.539957 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| no posts ani majha swtacha pfp asel bgh -2022-12-05 13:17:21.233309 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| aik na tu mala takto ka request -2022-12-05 13:17:43.627982 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| around 500/700 followers/ following wala account hi taak sangto icon ch detail mdhe -2022-12-05 13:17:49.987151 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| hm -2022-12-05 13:18:09.523308 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| sanket_dabade_ -2022-12-05 13:18:17.053922 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| bagh tak account -2022-12-05 13:20:39.204009 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| dada -2022-12-05 13:20:45.333326 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| bol -2022-12-05 13:20:57.225295 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| anthi kya kandala -2022-12-05 13:21:39.623109 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| ayy request tak -2022-12-05 13:22:30.174736 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| wasonce -2022-12-05 13:22:50.709405 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| ha kondge -2022-12-05 13:23:00.403172 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| tak na request -2022-12-05 13:23:02.623500 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| att -2022-12-05 13:23:44.701947 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| aree ig dusrya dev wr aahe ...ughdto nntr 👍🏻 -2022-12-05 13:24:06.509820 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| aadhich brkwr kheltoy 😹 -2022-12-05 13:27:46.532499 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 13:27:46.613134 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-05 13:27:46.708217 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 13:27:46.909093 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 13:27:47.060674 + : pb-IF4pVVQBEA== | ᴵᴬᴹズRaoJi|ᴵᴬᴹズRaoJi| -2022-12-05 13:27:51.217666 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:27:51.387585 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:28:12.622833 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| who is that moron -2022-12-05 13:28:33.445882 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-05 13:29:50.472932 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-05 13:29:51.467699 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:29:51.647987 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:29:51.787766 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:33:20.613233 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-05 13:33:25.493317 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| 😂😂😂😹 -2022-12-05 13:37:04.792962 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| dont rhow -2022-12-05 13:37:26.558917 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| dont throw -2022-12-05 13:40:07.475932 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-05 13:40:07.633445 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-05 13:40:07.803650 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-05 13:40:09.467930 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:40:09.687929 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:40:09.828064 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:40:12.698551 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol -2022-12-05 13:40:29.744552 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| lol -2022-12-05 13:41:09.622273 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| bunny? any help for me? -2022-12-05 13:41:30.225333 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| hi water -2022-12-05 13:41:35.194241 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| -2022-12-05 13:42:14.288263 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:42:14.487953 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:42:15.368659 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:42:18.943774 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-05 13:42:19.113506 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-05 13:43:51.313543 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| akaza -2022-12-05 13:43:54.874128 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| what -2022-12-05 13:43:58.773251 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| -2022-12-05 13:44:05.131276 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| move side -2022-12-05 13:44:11.943462 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| ye bomb jump -2022-12-05 13:44:24.275357 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| yeah u can try it to -2022-12-05 13:44:24.424118 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| -2022-12-05 13:44:32.043459 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| yaa -2022-12-05 13:44:32.074679 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| practis -2022-12-05 13:44:36.873576 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| yaa -2022-12-05 13:44:45.013529 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| what button -2022-12-05 13:44:55.091229 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| watch in youtube -2022-12-05 13:44:58.464222 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| tuto\ -2022-12-05 13:45:11.314341 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| chaanel link -2022-12-05 13:45:11.651196 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| lol -2022-12-05 13:45:22.474225 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| just search bombjump -2022-12-05 13:45:29.913745 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| ok boss -2022-12-05 13:45:36.114284 + : pb-IF4LU20cEw== | Android62093703|दादा कोंडके 🤓| op. game play -2022-12-05 13:45:46.576510 + : pb-IF4SUng4Vw== | Android57231442|Willy| Hi bro -2022-12-05 13:46:20.504365 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| damm -2022-12-05 13:46:40.891283 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| sory -2022-12-05 13:46:54.086390 + : pb-IF4SUng4Vw== | Android57231442|Willy| sorry -2022-12-05 13:47:09.891369 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| oh my my -2022-12-05 13:48:27.024494 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| -2022-12-05 13:49:40.709694 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| chaw saw -2022-12-05 13:49:54.011453 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| great -2022-12-05 13:49:54.365172 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| gg finally -2022-12-05 13:49:55.408452 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:49:55.588230 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:49:57.509543 + : pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL | YeWest2024|YeWest2024| -2022-12-05 13:50:07.445168 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| death note for demon -2022-12-05 13:50:40.171218 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| -2022-12-05 13:50:44.609016 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:50:44.769577 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:50:47.264068 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 13:50:47.414084 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 13:50:47.564174 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 13:50:51.551182 + : pb-IF4UU05eLw== | NoName48451a|thịnh bú cặc chó| nice -2022-12-05 13:51:45.849786 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| anime lover anyone -2022-12-05 13:51:50.971277 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| here im -2022-12-05 13:51:53.805505 + : pb-IF4UU05eLw== | NoName48451a|thịnh bú cặc chó| gawngbang haha -2022-12-05 13:51:56.548227 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:51:56.738106 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:52:07.055788 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| which one you are watching now -2022-12-05 13:52:22.976041 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| yours fav -2022-12-05 13:52:33.154329 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| currentl watching to your eaternity and chainsaw man -2022-12-05 13:52:37.496742 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| i started watching anime because of her -2022-12-05 13:52:43.834385 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| shit -2022-12-05 13:52:54.414962 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| she had watched -2022-12-05 13:52:56.274901 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| because of her who ? -2022-12-05 13:53:00.476130 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| many means many -2022-12-05 13:53:01.938864 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| sleeping akZA? -2022-12-05 13:53:07.244376 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| crush -2022-12-05 13:53:10.794270 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| no -2022-12-05 13:53:27.824020 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| literally -2022-12-05 13:53:35.249550 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| i just watched only one -2022-12-05 13:53:40.115253 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| death note -2022-12-05 13:53:44.298467 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| my fav i cant choose i just love to watch anime -2022-12-05 13:53:52.498188 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| which one should I watch next -2022-12-05 13:53:55.435441 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| every anime deserves love -2022-12-05 13:54:06.144677 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| your name -2022-12-05 13:54:16.331307 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| why -2022-12-05 13:54:19.332463 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| akaza lol -2022-12-05 13:54:32.248567 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| yar khelo plz -2022-12-05 13:54:33.034760 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| your name is webseries -2022-12-05 13:54:33.704437 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| play tysen -2022-12-05 13:54:38.304466 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| tyson -2022-12-05 13:54:45.086762 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| akaza -2022-12-05 13:54:49.729397 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| insta bro? -2022-12-05 13:54:58.234350 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| -2022-12-05 13:55:03.131398 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| tell urs -2022-12-05 13:55:04.624470 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| id -2022-12-05 13:55:25.757452 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| abhisheksk_02 -2022-12-05 13:55:35.130979 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| message me hii -2022-12-05 13:55:38.582452 + : pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL | YeWest2024|YeWest2024| -2022-12-05 13:55:38.807166 + : pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL | YeWest2024|YeWest2024| -2022-12-05 13:55:39.042326 + : pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL | YeWest2024|YeWest2024| -2022-12-05 13:55:39.235452 + : pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL | YeWest2024|YeWest2024| -2022-12-05 13:55:40.608188 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:55:40.749295 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:55:40.888212 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:55:41.048346 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:55:46.224221 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| got it i will send req later -2022-12-05 13:55:53.337630 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| u watch anime in sub or dub -2022-12-05 13:55:58.531406 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| sub -2022-12-05 13:55:59.585688 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| send nudes -2022-12-05 13:56:06.752008 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| which one is best -2022-12-05 13:56:07.704739 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| tokenmagic stop it -2022-12-05 13:56:10.981858 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| sub or dub -2022-12-05 13:56:14.905537 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| sub -2022-12-05 13:56:28.794360 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| stop talking n play -2022-12-05 13:56:34.035516 + : pb-IF4zU2MgJw== | SharpEnemy92311|Tyson| but I don't know Japanese -2022-12-05 13:56:49.784376 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| first play tyson we can talk in insta -2022-12-05 13:57:54.188371 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:57:54.332995 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:57:54.468592 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 13:58:03.000565 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| har gaye -2022-12-05 13:58:11.984611 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| well try -2022-12-05 13:58:14.070423 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| cos of ur talk -2022-12-05 13:58:20.354306 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| bruh -2022-12-05 13:59:30.346274 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| bruh🙂 -2022-12-05 13:59:35.228354 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| cuu team -2022-12-05 13:59:45.250124 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol thats my landmine hidden -2022-12-05 14:00:37.081214 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 14:00:37.280217 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 14:00:42.864550 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| protect the flag -2022-12-05 14:01:09.031688 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| iss dhanya ka ******* banao -2022-12-05 14:01:20.188404 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 14:01:20.368140 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 14:01:20.468309 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 14:01:22.307809 + : pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL | YeWest2024|YeWest2024| -2022-12-05 14:01:22.607966 + : pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL | YeWest2024|YeWest2024| -2022-12-05 14:01:22.872621 + : pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL | YeWest2024|YeWest2024| -2022-12-05 14:01:30.024518 + : pb-IF4jU046Fg== | peskiller11|peskiller11| yaay -2022-12-05 14:01:32.642243 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 14:02:48.068593 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 14:02:48.248431 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 14:02:51.324592 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 14:03:27.292037 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| doesnt work lol -2022-12-05 14:03:27.929795 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|Gilgamesh| ye kya -2022-12-05 14:04:50.275947 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| corona😷 -2022-12-05 14:05:31.048181 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| wait bro wait -2022-12-05 14:05:38.730837 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| token magic -2022-12-05 14:05:41.428411 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| i will take revenge -2022-12-05 14:05:50.896668 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| what did i do? -2022-12-05 14:05:59.390964 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| magic dikaho -2022-12-05 14:06:12.586604 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| 😶😶 -2022-12-05 14:06:23.912998 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 👏👏👏 -2022-12-05 14:06:38.261941 + : pb-JiNJVxFTV0JDVV9BGE5YV11DFEleR1hA | ThirstyNin|Huy&Anh| 😢 -2022-12-05 14:06:40.134724 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| are u a teenager? -2022-12-05 14:06:50.105682 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| no -2022-12-05 14:07:03.202636 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| jaldi kro plz -2022-12-05 14:07:17.681375 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| messi or ronaldo? -2022-12-05 14:07:33.710429 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ronaldo -2022-12-05 14:07:50.355310 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| akaza how long since u started playing? -2022-12-05 14:07:50.673725 + : pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL | YeWest2024|YeWest2024| go akaza go -2022-12-05 14:07:55.871651 + : pb-JiNJVxFTV0JDVV9BGE5YV11DFEleR1hA | ThirstyNin|Huy&Anh| ? -2022-12-05 14:07:56.134569 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| 😶 -2022-12-05 14:08:00.934960 + : pb-IF4jU046Fg== | peskiller11|peskiller11| rono -2022-12-05 14:08:03.669870 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| Mafia how long u started? -2022-12-05 14:08:07.012097 + : pb-JiNJVxFTV0JDVV9BGE5YV11DFEleR1hA | ThirstyNin|Huy&Anh| maraton? -2022-12-05 14:08:21.524640 + : pb-IF4jU046Fg== | peskiller11|peskiller11| peskiller played well -2022-12-05 14:08:24.479863 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 8 yesrs -2022-12-05 14:08:25.340740 + : pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL | YeWest2024|YeWest2024| destrou shruti -2022-12-05 14:08:36.968573 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| -2022-12-05 14:08:37.136792 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| -2022-12-05 14:08:37.322671 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| -2022-12-05 14:08:37.694474 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| -2022-12-05 14:08:44.895147 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| 😶😶that's way too long -2022-12-05 14:08:45.157626 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| but beech me choda ta 1 year se continue kar raha hu -2022-12-05 14:08:45.404619 + : pb-IF4jU046Fg== | peskiller11|peskiller11| love ahaana -2022-12-05 14:08:54.908079 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 14:08:55.108047 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 14:08:55.288134 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 14:08:55.432287 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| great -2022-12-05 14:09:01.209147 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| finally 😂 -2022-12-05 14:09:02.099828 + : pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL | YeWest2024|YeWest2024| wtf -2022-12-05 14:09:04.592365 + : pb-JiNJVxFTV0JDVV9BGE5YV11DFEleR1hA | ThirstyNin|Huy&Anh| who win? -2022-12-05 14:09:09.253152 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| this guy was runing like marathon -2022-12-05 14:09:11.334933 + : pb-IF4jU046Fg== | peskiller11|peskiller11| wth -2022-12-05 14:09:11.571299 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| race -2022-12-05 14:09:11.684329 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 14:09:11.874254 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 14:09:12.054225 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 14:10:45.120142 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| Maria u used to be bones? -2022-12-05 14:10:46.355064 + : pb-IF4jU046Fg== | peskiller11|peskiller11| chyth -2022-12-05 14:10:49.222371 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| *mafia -2022-12-05 14:10:56.401573 + : pb-JiNJVxFTV0JDVV9BGE5YV11DFEleR1hA | ThirstyNin|Huy&Anh| ? -2022-12-05 14:11:00.737231 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ya -2022-12-05 14:11:08.571368 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| damm -2022-12-05 14:11:13.943281 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| but abb nahi bone😁 -2022-12-05 14:11:15.305124 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| good job -2022-12-05 14:11:23.550830 + : pb-IF4jUlRTHw== | thalekalle|Gilgamesh| my **** has bone -2022-12-05 14:11:39.907938 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 14:11:40.032686 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 14:11:40.168316 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 14:11:46.559937 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| kick -2022-12-05 14:11:50.141681 + : pb-IF49U04vXA== | LoathsomeReaction46|LoathsomeReaction46| -2022-12-05 14:11:50.306854 + : pb-IF49U04vXA== | LoathsomeReaction46|LoathsomeReaction46| -2022-12-05 14:11:50.441862 + : pb-IF49U04vXA== | LoathsomeReaction46|LoathsomeReaction46| -2022-12-05 14:11:50.626922 + : pb-IF49U04vXA== | LoathsomeReaction46|LoathsomeReaction46| -2022-12-05 14:11:52.775931 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| betrayer -2022-12-05 14:11:53.205826 + : pb-IF4jUlRTHw== | thalekalle|Gilgamesh| no -2022-12-05 14:11:54.297066 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ahana 🤨🤨🤨 -2022-12-05 14:11:59.875276 + : pb-IF4jUlRTHw== | thalekalle|Gilgamesh| we are frds -2022-12-05 14:12:02.166668 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| i am old player -2022-12-05 14:12:05.228440 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| shut up -2022-12-05 14:12:06.701902 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| u remember me? -2022-12-05 14:12:06.914634 + : pb-IF4jU046Fg== | peskiller11|peskiller11| arey waah -2022-12-05 14:12:07.903781 + : pb-IF4jUlRTHw== | thalekalle|Gilgamesh| frds dont kick -2022-12-05 14:12:09.550883 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| old name🤨🤨 -2022-12-05 14:12:15.292273 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| yahi tha -2022-12-05 14:12:19.204664 + : pb-IF4jU046Fg== | peskiller11|peskiller11| kya baat hein yaar -2022-12-05 14:12:20.455048 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| migu -2022-12-05 14:12:24.974120 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 🤨🤨🤨🤨 -2022-12-05 14:12:30.665816 + : pb-IF4jUlRTHw== | thalekalle|Gilgamesh| yes i remember u -2022-12-05 14:12:30.854242 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| basanti fadanvis -2022-12-05 14:12:36.263764 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| -2022-12-05 14:12:36.372949 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| oooooo -2022-12-05 14:12:44.865206 + : pb-IF4jU046Fg== | peskiller11|peskiller11| yeah remember now -2022-12-05 14:12:52.044516 + : pb-IF4jU046Fg== | peskiller11|peskiller11| long time no see -2022-12-05 14:12:52.682031 + : pb-IF4jUlRTHw== | thalekalle|Gilgamesh| yes🗿 -2022-12-05 14:12:56.077869 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| tum basanti ho? -2022-12-05 14:12:57.978491 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| aur the but i am not able to recall -2022-12-05 14:13:04.085296 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| nope -2022-12-05 14:13:15.248399 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| roses are red but i m in blue -2022-12-05 14:13:15.414183 + : pb-IF4jUlRTHw== | thalekalle|Gilgamesh| basathi laxmi ho -2022-12-05 14:13:17.024798 + : pb-IF4jU046Fg== | peskiller11|peskiller11| i am able to recall -2022-12-05 14:13:17.863629 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| basnati name nahi he ab.. but fadnavis he -2022-12-05 14:13:24.823508 + : pb-IF4jUlRTHw== | thalekalle|Gilgamesh| pina nedaoanum -2022-12-05 14:13:26.033328 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| roses are blue too -2022-12-05 14:13:27.583462 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| :) -2022-12-05 14:13:30.621364 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| ha u r one -2022-12-05 14:13:33.638047 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ye sab new menbers he😓 -2022-12-05 14:13:34.013487 + : pb-IF49U04vXA== | LoathsomeReaction46|LoathsomeReaction46| -2022-12-05 14:13:34.168484 + : pb-IF49U04vXA== | LoathsomeReaction46|LoathsomeReaction46| -2022-12-05 14:13:34.328408 + : pb-IF49U04vXA== | LoathsomeReaction46|LoathsomeReaction46| -2022-12-05 14:13:34.456191 + : pb-IF49U04vXA== | LoathsomeReaction46|LoathsomeReaction46| -2022-12-05 14:13:37.324624 + : pb-IF4jU046Fg== | peskiller11|peskiller11| thanks ahaana -2022-12-05 14:13:38.175207 + : pb-IF4jUlRTHw== | thalekalle|Gilgamesh| ha i am -2022-12-05 14:13:40.018027 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| but my roses is red always -2022-12-05 14:13:42.874423 + : pb-IF4jU046Fg== | peskiller11|peskiller11| love you -2022-12-05 14:13:43.743543 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| wht for -2022-12-05 14:13:45.933276 + : pb-IF4jUlRTHw== | thalekalle|Gilgamesh| welcomes -2022-12-05 14:13:51.406994 + : pb-IF4jUlRTHw== | thalekalle|Gilgamesh| obrigado -2022-12-05 14:13:59.985395 + : pb-IF4jU046Fg== | peskiller11|peskiller11| just for fun -2022-12-05 14:14:06.406431 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| thanks for fun -2022-12-05 14:14:15.174395 + : pb-IF49U04vXA== | LoathsomeReaction46|LoathsomeReaction46| -2022-12-05 14:14:15.307553 + : pb-IF49U04vXA== | LoathsomeReaction46|LoathsomeReaction46| -2022-12-05 14:14:15.455744 + : pb-IF49U04vXA== | LoathsomeReaction46|LoathsomeReaction46| -2022-12-05 14:14:15.616538 + : pb-IF49U04vXA== | LoathsomeReaction46|LoathsomeReaction46| -2022-12-05 14:14:21.065147 + : pb-IF4jU046Fg== | peskiller11|peskiller11| let's chat privately for fun? -2022-12-05 14:14:22.292928 + : pb-IF4jUlRTHw== | thalekalle|Gilgamesh| its alright -2022-12-05 14:14:25.298215 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| uk07se -2022-12-05 14:14:26.263548 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| lol -2022-12-05 14:14:31.863515 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| whr -2022-12-05 14:14:40.264576 + : pb-IF4jU046Fg== | peskiller11|peskiller11| WhatsApp -2022-12-05 14:14:45.602266 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ahana -2022-12-05 14:14:50.938702 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| can we beg for gf here? -2022-12-05 14:14:51.590402 + : pb-IF4jUlRTHw== | thalekalle|Gilgamesh| how big is your titis -2022-12-05 14:14:52.944869 + : pb-IF4jU046Fg== | peskiller11|peskiller11| 🤣🤣🤣 -2022-12-05 14:14:54.759695 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| 123456789 -2022-12-05 14:15:00.250293 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| my no 😂 -2022-12-05 14:15:15.964496 + : pb-IF4jU046Fg== | peskiller11|peskiller11| no only gay stuff allowed -2022-12-05 14:15:16.379359 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| sry -2022-12-05 14:15:24.583301 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| get lost -2022-12-05 14:15:54.674221 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| calm down 👎 -2022-12-05 14:16:01.893920 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ahana -2022-12-05 14:16:09.514320 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| bolo -2022-12-05 14:16:38.151402 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| dusra nam he kya tumara -2022-12-05 14:16:53.548071 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 14:16:53.708013 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 14:16:53.888592 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 14:16:54.982605 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| nhi h -2022-12-05 14:16:58.815496 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| only this one -2022-12-05 14:17:03.114655 + : pb-IF4jU046Fg== | peskiller11|peskiller11| babe don't kill me -2022-12-05 14:17:06.759718 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| okkk -2022-12-05 14:17:59.611326 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| -2022-12-05 14:18:00.468334 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 14:18:00.648225 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 14:18:00.788206 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 14:18:01.596350 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| -2022-12-05 14:18:02.237360 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| uffffff -2022-12-05 14:18:04.168867 + : pb-IF4gUlkcDA== | Android59895610|Athena| -2022-12-05 14:18:04.301100 + : pb-IF4gUlkcDA== | Android59895610|Athena| -2022-12-05 14:18:04.472417 + : pb-IF4gUlkcDA== | Android59895610|Athena| -2022-12-05 14:18:04.599698 + : pb-IF4gUlkcDA== | Android59895610|Athena| -2022-12-05 14:18:12.829270 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| Athena ahana -2022-12-05 14:18:16.660604 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| akaza are u admin? -2022-12-05 14:20:08.262302 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| -2022-12-05 14:20:31.667955 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 14:20:31.848029 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 14:20:32.018132 + : pb-IF4TU0oFAQ== | FamousImpr|Rose| -2022-12-05 14:20:34.403878 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 14:20:34.553845 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 14:20:34.723822 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 14:21:22.126937 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 14:21:22.310151 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 14:21:22.460452 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 14:21:56.250516 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| -2022-12-05 14:22:23.217544 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| -2022-12-05 14:22:28.794397 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| sorry -2022-12-05 14:22:52.186283 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| -2022-12-05 14:24:29.714348 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| -2022-12-05 14:24:34.194020 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| ahana don't play rough -2022-12-05 14:24:39.604149 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| ok -2022-12-05 14:25:08.091022 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| damm -2022-12-05 14:25:39.103732 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| u guys have fun but dont abuse here -2022-12-05 14:26:05.301587 + : pb-IF4NU0cpFw== | ModalHandle23|ModalHandle23| admin please decrease sppeed -2022-12-05 14:26:33.116509 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| Hii -2022-12-05 14:26:41.143249 + : pb-IF49VFQlPA== | PC688281|Akaza.❄| it is noraml -2022-12-05 14:27:08.878261 + : pb-IF4cU00cCQ== | EasyComple|EasyComple| sorry brother i think i save you -2022-12-05 14:27:29.816320 + : pb-IF4NU0cpFw== | ModalHandle23|ModalHandle23| -2022-12-05 14:27:31.180617 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 14:30:08.866613 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 14:30:09.028096 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 14:30:27.966284 + : pb-IF4cU00cCQ== | EasyComple|EasyComple| 0 -2022-12-05 14:31:04.016369 + : pb-IF4NU0cpFw== | ModalHandle23|Skippy| i am modalhand -2022-12-05 14:31:14.801035 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| so? -2022-12-05 14:32:38.917321 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| sruti? -2022-12-05 14:32:41.718904 + : pb-IF4NU0cpFw== | ModalHandle23|Skippy| l shruti😂 -2022-12-05 14:33:15.386941 + : pb-IF4cU00cCQ== | EasyComple|EasyComple| 4p4m2 -2022-12-05 14:34:39.645063 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| 😂 -2022-12-05 14:35:01.914852 + : pb-IF4cU00cCQ== | EasyComple|EasyComple| 0 -2022-12-05 14:35:03.838881 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| shruti noob -2022-12-05 14:35:37.266454 + : pb-IF4NU0cpFw== | ModalHandle23|Skippy| Shruti ***** -2022-12-05 14:35:50.134361 + : pb-IF4NU0cpFw== | ModalHandle23|Skippy| shruti is ladka -2022-12-05 14:36:34.526478 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| abe Chu.. -2022-12-05 14:38:07.852513 + : pb-IF4cU00cCQ== | EasyComple|EasyComple| -2022-12-05 14:38:12.792823 + : pb-IF4zUxYJEw== | FrostedLor|| anyone here anime lover -2022-12-05 14:38:19.273136 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| 0 -2022-12-05 14:38:25.546405 + : pb-IF4NU0cpFw== | ModalHandle23|Skippy| cartoon? -2022-12-05 14:38:30.837589 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| are u a spam -2022-12-05 14:38:56.040816 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| white -2022-12-05 14:39:00.870784 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| sry Rocky -2022-12-05 14:39:08.701148 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| what? -2022-12-05 14:39:18.223856 + : pb-IF4zUxYJEw== | FrostedLor|FrostedLor| ****e cartoon nhi hai vooh -2022-12-05 14:39:25.507258 + : pb-IF4zUxYJEw== | FrostedLor|FrostedLor| bska -2022-12-05 14:40:54.690327 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| white come on -2022-12-05 14:41:00.638432 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| -2022-12-05 14:41:00.790470 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| -2022-12-05 14:41:01.293763 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 14:41:01.638599 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-05 14:41:01.825270 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-05 14:41:01.962914 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-05 14:41:02.126688 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-05 14:42:43.789156 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| gg team -2022-12-05 14:43:40.684443 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| kick -2022-12-05 14:44:43.513220 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| -2022-12-05 14:44:43.673248 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| -2022-12-05 14:44:56.387309 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| the amount of braincells my teammates have is concerning -2022-12-05 14:48:51.923918 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 14:49:11.265880 + : pb-IF5UU05aHQ== | VoidPort2|joy| -2022-12-05 14:49:30.841608 + : pb-IF4NU0cpFw== | ModalHandle23|Skippy| -2022-12-05 14:49:38.052002 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| noob -2022-12-05 14:50:23.667061 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| noob -2022-12-05 14:50:44.325590 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| nooooob -2022-12-05 14:51:38.411454 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| maar yaar white 😑 -2022-12-05 14:51:40.111009 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| white king -2022-12-05 14:52:50.142830 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| sorry -2022-12-05 14:53:43.918903 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| phone mai issue hai bich Mai touch kaam karna band kar deta h -2022-12-05 14:54:04.834324 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 😵😵 -2022-12-05 14:54:04.982266 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| -2022-12-05 14:54:05.128770 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| -2022-12-05 14:54:05.230414 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| -2022-12-05 14:54:08.744316 + : pb-IF4pUxUDDQ== | CulturalJa|CulturalJa| -2022-12-05 14:54:09.052006 + : pb-IF4pUxUDDQ== | CulturalJa|CulturalJa| -2022-12-05 14:54:09.052570 + : pb-IF4pUxUDDQ== | CulturalJa|CulturalJa| -2022-12-05 14:54:09.053743 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 14:54:09.167191 + : pb-IF4pUxUDDQ== | CulturalJa|CulturalJa| -2022-12-05 14:54:09.214194 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 14:54:20.225444 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| white😍 -2022-12-05 14:54:21.188316 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| sruti ki finger tez chlti hai -2022-12-05 14:55:02.052315 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-05 14:56:31.607135 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 14:56:36.153735 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-05 14:57:01.956848 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| nice -2022-12-05 14:58:18.292722 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| -2022-12-05 14:58:19.507036 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| mf -2022-12-05 14:58:20.099878 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 14:58:20.749860 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 14:58:20.919418 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 14:59:01.855398 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| bye -2022-12-05 15:00:16.793525 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| gg -2022-12-05 15:02:47.057378 + : pb-IF4NU0cpFw== | ModalHandle23|Skippy| kick chunk -2022-12-05 15:02:51.441009 + : pb-IF4NU0cpFw== | ModalHandle23|Skippy| 1 -2022-12-05 15:02:52.263342 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| k -2022-12-05 15:02:54.583323 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| ok -2022-12-05 15:03:05.073483 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| all 1 -2022-12-05 15:03:08.494328 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| please -2022-12-05 15:03:22.833551 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| stop game and type 1 -2022-12-05 15:03:28.172346 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| dont play -2022-12-05 15:03:45.226314 + : pb-IF4wVFcZPw== | CivilizedT|spidy| ohhk -2022-12-05 15:05:07.118550 + : pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB | aslammalik|Afla toon| lol -2022-12-05 15:05:12.299606 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| 🤣 -2022-12-05 15:05:38.493371 + : pb-IF4NU0cpFw== | ModalHandle23|Skippy| -2022-12-05 15:06:31.887872 + : pb-IF48U3FaNQ== | DilatoryHo|Chunk| -2022-12-05 15:06:32.317956 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| copy paste khrbujee -2022-12-05 15:06:32.799911 + : pb-IF48U3FaNQ== | DilatoryHo|Chunk| -2022-12-05 15:06:33.879468 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| emsi chunk -2022-12-05 15:06:34.174081 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 15:06:34.342228 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 15:06:34.507707 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 15:06:34.657306 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 15:06:38.961704 + : pb-IF48U3FaNQ== | DilatoryHo|Chunk| -2022-12-05 15:06:45.600847 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| muft ka character 😂🥹 -2022-12-05 15:07:07.308105 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| chilla chilla k sbko bata de -2022-12-05 15:07:29.550543 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| 😂 -2022-12-05 15:07:34.709036 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| free free free -2022-12-05 15:08:46.959335 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| DilatoryHo fek u -2022-12-05 15:10:03.359587 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| lol -2022-12-05 15:13:39.249844 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| end -2022-12-05 15:13:45.528144 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| end -2022-12-05 15:14:14.424892 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 15:14:14.690413 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 15:14:14.783251 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| yeye -2022-12-05 15:14:15.222278 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-05 15:15:17.690944 + : pb-IF48U3FaNQ== | DilatoryHo|Chunk| -2022-12-05 15:15:17.840110 + : pb-IF48U3FaNQ== | DilatoryHo|Chunk| -2022-12-05 15:16:51.725158 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| kick -2022-12-05 15:16:57.568143 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| huihuihuihuihui -2022-12-05 15:18:56.323156 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| VOTE -2022-12-05 15:19:04.213818 + : pb-IF4nA28F | pilot12856|■///AMG| 0 -2022-12-05 15:22:23.119670 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| crazy chunk chalangya aja -2022-12-05 15:22:49.419469 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| say bye toCHAINSAW -2022-12-05 15:22:54.813853 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| i am throwing -2022-12-05 15:25:41.814259 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:25:41.962104 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:25:42.095502 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:26:13.982518 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:26:14.148165 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:26:17.469682 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| bechara suii ban ka mara -2022-12-05 15:26:22.484986 + : pb-IF4KUnEmVg== | DowncastCruise28|HEROBRINE| lol -2022-12-05 15:27:17.319308 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-05 15:27:17.504748 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-05 15:27:17.812895 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-05 15:27:32.268632 + : pb-IF4wV24HBw== | GiantRobot|GiantRobot| tarbooze -2022-12-05 15:27:34.560188 + : pb-IF4hVFkHKg== | RhythmicCrown18|Avi__| iski maa ki **** type k -2022-12-05 15:27:59.039611 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:28:01.939655 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 15:28:02.100130 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 15:28:04.384958 + : pb-IF4KUnEmVg== | DowncastCruise28|NUII| -2022-12-05 15:28:04.533172 + : pb-IF4KUnEmVg== | DowncastCruise28|NUII| -2022-12-05 15:28:04.692885 + : pb-IF4KUnEmVg== | DowncastCruise28|NUII| -2022-12-05 15:28:04.819836 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| blue nubs -2022-12-05 15:28:04.834993 + : pb-IF4KUnEmVg== | DowncastCruise28|NUII| -2022-12-05 15:28:14.449558 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| banned chainsw nub -2022-12-05 15:28:32.041536 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| haha lol -2022-12-05 15:30:02.089601 + : pb-IF4-U3gdFw== | Android63053623|☬༒AGENT☠︎☬| -2022-12-05 15:31:07.040541 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-05 15:31:08.662430 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| blue nub -2022-12-05 15:31:14.123959 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| yooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -2022-12-05 15:31:33.877938 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| giant robo got offended -2022-12-05 15:31:35.363848 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| are u .chainsaw -2022-12-05 15:31:36.955758 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| wait -2022-12-05 15:31:44.978826 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| 1 -2022-12-05 15:31:50.472451 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| wait giant -2022-12-05 15:32:05.075149 + : pb-IF4KUnEmVg== | DowncastCruise28|NUII| fight -2022-12-05 15:32:11.902190 + : pb-IF4TU0oFAQ== | FamousImpr|SPY🔎| -2022-12-05 15:32:12.001916 + : pb-IF4TU0oFAQ== | FamousImpr|SPY🔎| -2022-12-05 15:32:12.122005 + : pb-IF4TU0oFAQ== | FamousImpr|SPY🔎| -2022-12-05 15:32:14.124897 + : pb-IF4KUnEmVg== | DowncastCruise28|NUII| -2022-12-05 15:32:14.285065 + : pb-IF4KUnEmVg== | DowncastCruise28|NUII| -2022-12-05 15:32:14.472928 + : pb-IF4KUnEmVg== | DowncastCruise28|NUII| -2022-12-05 15:32:14.635073 + : pb-IF4KUnEmVg== | DowncastCruise28|NUII| -2022-12-05 15:32:15.487125 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:32:16.102422 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:32:16.153236 + : pb-IF4mUkwhAA== | WinningJogger46419|WinningJogger46419| wtf -2022-12-05 15:32:16.347005 + : pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF | PoeticFire35261|KRISH🔥| fight guys -2022-12-05 15:32:16.726882 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:32:17.457763 + : pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF | PoeticFire35261|KRISH🔥| -2022-12-05 15:32:17.566350 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| ? -2022-12-05 15:32:17.585712 + : pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF | PoeticFire35261|KRISH🔥| -2022-12-05 15:32:17.745744 + : pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF | PoeticFire35261|KRISH🔥| -2022-12-05 15:32:20.402037 + : pb-IF4TU0oFAQ== | FamousImpr|SPY🔎| -2022-12-05 15:32:20.581906 + : pb-IF4TU0oFAQ== | FamousImpr|SPY🔎| -2022-12-05 15:32:31.119330 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| play -2022-12-05 15:32:35.405212 + : pb-IF4KUnEmVg== | DowncastCruise28|NUII| fight -2022-12-05 15:32:37.932015 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| WE ARE ALREADY BORED WITH SOLO MATCH -2022-12-05 15:32:37.983688 + : pb-IF4mUkwhAA== | WinningJogger46419|WinningJogger46419| *****eee -2022-12-05 15:32:50.986724 + : pb-IF4wV24HBw== | GiantRobot|GiantRobot| aree wa -2022-12-05 15:32:55.256645 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| magic joker🛐 -2022-12-05 15:33:02.529309 + : pb-IF4wV24HBw== | GiantRobot|GiantRobot| chainsaw who ru -2022-12-05 15:33:13.510121 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| I'm chainsawman aka Siuu -2022-12-05 15:33:25.403970 + : pb-IF4wV24HBw== | GiantRobot|GiantRobot| yaa gotta -2022-12-05 15:33:31.036068 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| hmm -2022-12-05 15:33:40.262069 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| giant 😂 -2022-12-05 15:33:55.571753 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:33:55.782090 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:33:55.918149 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:34:21.600109 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| Sagar hutiye -2022-12-05 15:34:36.518660 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| kya hare matire🍉 -2022-12-05 15:34:47.830067 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| kon hara -2022-12-05 15:34:52.310697 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| noob -2022-12-05 15:35:07.290533 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| chansaw -2022-12-05 15:35:45.778731 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:35:46.396757 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:35:46.980722 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:35:52.270797 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| yesszz -2022-12-05 15:36:48.458951 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| nuii x suiii -2022-12-05 15:36:59.101191 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| hahaa loll -2022-12-05 15:37:30.893954 + : pb-IF4mUkwhAA== | WinningJogger46419|WinningJogger46419| hu hu huuuuuuuu -2022-12-05 15:37:38.065394 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-05 15:37:43.298612 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| tf -2022-12-05 15:37:50.590611 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:37:54.800036 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| blue nub -2022-12-05 15:39:45.790676 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-05 15:39:45.951240 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-05 15:39:59.165845 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| nub -2022-12-05 15:40:38.365116 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| nub -2022-12-05 15:40:59.125216 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| ahhh most boring level -2022-12-05 15:41:51.560572 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| chainsaw u r dumb -2022-12-05 15:42:00.143814 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| like ur mom? -2022-12-05 15:42:25.006419 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| ur lucky because red team get pro player but 1 chainsaw noob -2022-12-05 15:42:26.690112 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| nub -2022-12-05 15:42:39.075998 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol noob? -2022-12-05 15:43:24.601681 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| 3 vs 1 ****...u -2022-12-05 15:43:32.702409 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:43:36.017911 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| nuuub -2022-12-05 15:43:47.530683 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-05 15:43:47.690763 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-05 15:44:41.353349 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:44:41.517756 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:45:03.190206 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| gg -2022-12-05 15:45:03.946846 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:45:07.434785 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| noobs -2022-12-05 15:45:34.150544 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| 2 vs 1 noob -2022-12-05 15:45:51.411271 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| noobs -2022-12-05 15:46:45.373396 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:46:48.719387 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| noobs -2022-12-05 15:46:56.143033 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 🗿 -2022-12-05 15:48:04.767675 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 🥲 -2022-12-05 15:48:21.490607 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| blue team kis kamm ki nahi hai -2022-12-05 15:48:30.572509 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| ❤️ -2022-12-05 15:48:34.361954 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| baat to sahi ke rhaa -2022-12-05 15:48:34.752770 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-05 15:48:34.887808 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-05 15:48:35.636271 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| blue team come onnn -2022-12-05 15:48:38.238081 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 🥲🥲 -2022-12-05 15:48:45.591950 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| Garth ko htao -2022-12-05 15:48:51.741123 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| betray kr rha he -2022-12-05 15:48:57.375667 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| ha -2022-12-05 15:49:01.163921 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| thunder baby -2022-12-05 15:49:04.603339 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| noobs -2022-12-05 15:49:11.198947 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 15:49:19.712853 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| mere hote hue ek aur -2022-12-05 15:49:47.496834 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| are munchu my love🥹 -2022-12-05 15:50:13.385875 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| nooo bs -2022-12-05 15:50:16.945764 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| bhak yaar -2022-12-05 15:51:15.324927 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:51:15.455223 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-05 15:51:15.834144 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:51:16.333400 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:51:17.937640 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| sry -2022-12-05 15:51:54.864461 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-05 15:52:14.694000 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| lggy -2022-12-05 15:52:59.242570 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 15:52:59.342418 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 15:52:59.492848 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 15:52:59.652778 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 15:53:07.440093 + : pb-IF4jVEwxDw== | surajnikam266|Sagar| -2022-12-05 15:53:18.471981 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| bhdiya -2022-12-05 15:53:21.763493 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| pelo sale ko -2022-12-05 15:53:27.293503 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| 🥹😂 -2022-12-05 15:53:40.492556 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 😂 -2022-12-05 15:53:52.212874 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| ** -2022-12-05 15:53:55.684227 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 🥲 -2022-12-05 15:54:04.412602 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 15:54:12.849100 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| usny pel diya -2022-12-05 15:54:14.044581 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| kisko pelna hai -2022-12-05 15:54:16.722577 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| I'm just a islow bhalu❤️ -2022-12-05 15:54:33.959919 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| fadvis tujhe hi 🔫🔫 -2022-12-05 15:55:03.160558 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| Abe yaarrr -2022-12-05 15:55:14.408040 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| impact bisi -2022-12-05 15:55:47.475146 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| Garth 🗿 -2022-12-05 15:55:48.941213 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDG0D| red sab offline -2022-12-05 15:56:10.201751 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-05 15:56:10.303077 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| chhod de -2022-12-05 15:56:10.354995 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-05 15:56:10.510502 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-05 15:56:13.702074 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| :') -2022-12-05 15:56:13.762573 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 15:56:36.492773 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 15:56:37.290321 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| thunder this is fo uh -2022-12-05 15:56:47.437849 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| :') -2022-12-05 15:56:55.183051 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| mera ban nhi hta -2022-12-05 15:56:57.994750 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| bye babes -2022-12-05 15:57:04.852639 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| bye🍉❤️ -2022-12-05 15:57:05.003601 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| cyaa babe🥰 -2022-12-05 15:57:40.839223 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-05 15:57:41.002320 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-05 15:57:46.036096 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| lag -2022-12-05 15:57:51.132512 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| ha -2022-12-05 15:58:48.438383 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| i am back -2022-12-05 15:58:57.215698 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| fu..cknu -2022-12-05 15:59:21.542597 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 15:59:21.732616 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-05 15:59:48.583101 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:59:48.650488 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-05 15:59:48.814012 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 15:59:48.825400 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-05 16:00:53.770518 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-05 16:00:53.935421 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-05 16:02:38.561651 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 16:02:39.015041 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 16:02:39.516730 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 16:03:29.013305 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 16:03:29.377079 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 16:04:02.184918 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| sorry void🤣🤣 -2022-12-05 16:05:00.170438 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-05 16:05:00.310394 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-05 16:05:14.915404 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| ***** cat -2022-12-05 16:05:20.338693 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 16:05:20.769730 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 16:07:11.778437 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 16:07:12.065841 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 16:07:12.952440 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 16:10:02.048292 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 16:10:02.189910 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 16:10:02.294771 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 16:10:03.015334 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lolz -2022-12-05 16:10:04.266249 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 16:12:52.030489 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-05 16:12:52.170614 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-05 16:12:56.267294 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| lag -2022-12-05 16:15:24.956716 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 16:15:25.106927 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-05 16:15:26.743485 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| -2022-12-05 16:15:26.871478 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| -2022-12-05 16:15:27.070455 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| -2022-12-05 16:15:27.256508 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| -2022-12-05 16:17:25.346145 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| end -2022-12-05 16:19:01.355604 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| stupit -2022-12-05 16:25:41.303498 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| dont give upp -2022-12-05 16:27:47.599869 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-05 16:28:50.648714 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| hahahah -2022-12-05 16:29:40.846826 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| Hhahaha -2022-12-05 16:31:41.404376 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| by mistk started kickvote -2022-12-05 16:35:07.467212 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| yaay! -2022-12-05 16:35:27.736375 + : pb-IF4NUm4IFA== | noselessmo|malvik ka baap| sry -2022-12-05 16:39:51.650695 + : pb-IF4hVFkHKg== | RhythmicCrown18|Avi__| hahha -2022-12-05 16:40:25.360279 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| sry -2022-12-05 16:40:31.179201 + : pb-IF4iVFBbDA== | djankit857|Cutee pie| ahh -2022-12-05 16:42:19.824145 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| gg -2022-12-05 16:46:06.338277 + : pb-IF4JU3MxCQ== | AdvancedExpomnent45m|😈i am king😈| -2022-12-05 16:46:06.887426 + : pb-IF4JU3MxCQ== | AdvancedExpomnent45m|😈i am king😈| -2022-12-05 16:52:21.221634 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-05 16:53:45.307345 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| get down and help noob RED -2022-12-05 16:53:46.493974 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| wtf -2022-12-05 16:54:50.408691 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| sumanth/ -2022-12-05 16:54:51.325151 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| ? -2022-12-05 16:54:57.165934 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| move ur butt dummy -2022-12-05 16:58:40.052374 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| gg -2022-12-05 16:58:42.695077 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| nice play -2022-12-05 17:02:09.222750 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-05 17:02:35.830947 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| hi mates -2022-12-05 17:04:07.886750 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol -2022-12-05 17:06:13.764735 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| sorry -2022-12-05 17:07:10.233864 + : pb-IF4QU0s_Eg== | RedeemingTariff52|rudra Pratap,🔥| -2022-12-05 17:07:10.493039 + : pb-IF4QU0s_Eg== | RedeemingTariff52|rudra Pratap,🔥| -2022-12-05 17:07:10.682365 + : pb-IF4QU0s_Eg== | RedeemingTariff52|rudra Pratap,🔥| -2022-12-05 17:07:59.266808 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| so sorry am laggy -2022-12-05 17:10:01.792385 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| woah crazy cat being crazy 💀 -2022-12-05 17:10:16.791985 + : pb-IF4QU0s_Eg== | RedeemingTariff52|rudra Pratap,🔥| am i the only one who's lagging -2022-12-05 17:10:24.783450 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| um yeah -2022-12-05 17:10:43.444729 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| i had lag too -2022-12-05 17:12:27.681298 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 😑 -2022-12-05 17:13:14.893265 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| demn -2022-12-05 17:14:04.075846 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| ****kk -2022-12-05 17:15:56.088751 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol thunder uselss? -2022-12-05 17:16:02.845987 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 🐹 -2022-12-05 17:16:31.704963 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| um yea -2022-12-05 17:16:33.725603 + : pb-IF4NU04dKQ== | Android63983749|Android63983749| lol -2022-12-05 17:16:47.034649 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| dunno what's wrong with me -2022-12-05 17:17:37.113160 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-05 17:19:50.908514 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-05 17:20:06.508617 + : pb-IF4JU3MxCQ== | AdvancedExpomnent45m|😈i am king😈| end -2022-12-05 17:20:27.997841 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| wtf is wrong with u Thunder -2022-12-05 17:20:41.517602 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| bro u already lost it -2022-12-05 17:20:45.426203 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| I mean we -2022-12-05 17:21:45.188605 + : pb-JiNJARFfXEZAW1dDGUBQU11GE0FXQFZC | ElectricYodeler26380|MAFIA☠| fake mafia -2022-12-05 17:21:53.364845 + : pb-JiNJARFfXEZAW1dDGUBQU11GE0FXQFZC | ElectricYodeler26380|MAFIA☠| fir aa gaya tu -2022-12-05 17:21:55.263181 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| hi copy mafia -2022-12-05 17:22:04.070524 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| hehe lol -2022-12-05 17:22:18.110406 + : pb-JiNJARFfXEZAW1dDGUBQU11GE0FXQFZC | ElectricYodeler26380|MAFIA☠| -2022-12-05 17:22:21.988984 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| sab ko pata he 🤣 abi left hua mers nam rakhe aagya -2022-12-05 17:22:46.482237 + : pb-JiNJARFfXEZAW1dDGUBQU11GE0FXQFZC | ElectricYodeler26380|MAFIA☠| kya hua bhai wallace -2022-12-05 17:22:54.732316 + : pb-JiNJARFfXEZAW1dDGUBQU11GE0FXQFZC | ElectricYodeler26380|MAFIA☠| kyu kick karna hai mujhe -2022-12-05 17:23:04.734296 + : pb-IF4SEHAl | bisht4189|Wallace| ese hi -2022-12-05 17:23:12.390880 + : pb-JiNJARFfXEZAW1dDGUBQU11GE0FXQFZC | ElectricYodeler26380|MAFIA☠| 😂 -2022-12-05 17:23:19.471919 + : pb-JiNJARFfXEZAW1dDGUBQU11GE0FXQFZC | ElectricYodeler26380|MAFIA☠| thik hai -2022-12-05 17:23:41.768988 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol this idiot keeps leaving if getting killed -2022-12-05 17:24:03.331706 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|| huh? am rejoining with usual character nab stfu -2022-12-05 17:24:31.891307 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| thunder baby -2022-12-05 17:24:41.678004 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| me wait kr hi rha tha😂 -2022-12-05 17:24:46.970531 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| 😂 -2022-12-05 17:24:59.814630 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| faddu me bi wait kar raha ta😁 -2022-12-05 17:25:02.466084 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| kya lagta he kon jeetega wc -2022-12-05 17:25:15.190695 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| player on mobile data. so hagne wala hu -2022-12-05 17:25:20.740853 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| then why leave ffs? -2022-12-05 17:25:23.280768 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| mafia piroo darling -2022-12-05 17:25:29.031010 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| govindpur jeetega -2022-12-05 17:25:30.185965 + : pb-IF4SEHAl | bisht4189|Wallace| wese bhi hagega -2022-12-05 17:25:43.157986 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 17:25:43.713238 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 17:25:44.196766 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 17:25:50.170706 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| to tu chat lena wallance😂 -2022-12-05 17:25:52.484845 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| understand changing character? need to rejoin forit -2022-12-05 17:25:55.044685 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| are Mera wifi do kamre chhod ke laga he -2022-12-05 17:25:58.776425 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| bhut dur he -2022-12-05 17:26:18.058891 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| Wallace 🤨 -2022-12-05 17:26:28.100985 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| muje lagta he hum dono pehle bi mile he -2022-12-05 17:26:46.770557 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| deja vu ho rha bhai ko -2022-12-05 17:27:02.978816 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| kya yaar😑 -2022-12-05 17:27:03.000576 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| 0 -2022-12-05 17:27:17.830186 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 17:27:18.175728 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 17:27:43.107468 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| sorry thunder miss hogay tuje nahi -2022-12-05 17:27:55.082361 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| sry thunder -2022-12-05 17:27:55.804554 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| ohmk -2022-12-05 17:28:00.764130 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| np -2022-12-05 17:29:11.695117 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 17:29:12.030815 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 17:29:27.979249 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| most violeted🥲 -2022-12-05 17:29:59.769950 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| jezz -2022-12-05 17:30:33.337226 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| wasgut😂 -2022-12-05 17:31:20.904640 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| chat was muted 😹 -2022-12-05 17:32:52.363471 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 17:32:52.807282 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 17:32:53.870616 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-05 17:33:20.120183 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|| zsq -2022-12-05 17:34:19.581317 + : pb-JiNJARFfXEZAW1dDGUBQU11GE0FXQFZC | ElectricYodeler26380|MAFIA☠| lul -2022-12-05 17:34:22.416372 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| smoothy kya hum baat kr skte h discord pe ? -2022-12-05 17:34:26.762029 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| lmao -2022-12-05 17:34:29.761785 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| wow -2022-12-05 17:34:32.499966 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| 😂😂 Shruti🤡 -2022-12-05 17:34:37.935843 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| gali do muje -2022-12-05 17:34:44.553949 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 17:34:44.739718 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 17:34:47.011186 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| sahilkhat? -2022-12-05 17:34:47.577873 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| ptani , modi ji se puchna padhega -2022-12-05 17:34:50.200137 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| bisi mafia 💀😂 -2022-12-05 17:35:24.540951 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| bhai 😂 modiji aapke life ke decisions lete kya😂 -2022-12-05 17:35:44.980936 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| sahil khatri my chat wa muted -2022-12-05 17:36:02.282457 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| koi random mujhe discord pe msg kere -2022-12-05 17:36:02.283123 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| , ye life ka decision to nahi -2022-12-05 17:36:15.059850 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| lol zsq 😂😂 -2022-12-05 17:36:20.980079 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| acha smoothy💀 -2022-12-05 17:36:31.816351 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| oh it's uh...hie -2022-12-05 17:36:42.300153 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| 💀🤡 zsq -2022-12-05 17:36:54.255290 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 🎃 -2022-12-05 17:37:01.008633 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| saste nshe Krna band kre Bhaii😂😂 -2022-12-05 17:37:43.743868 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 17:38:01.829884 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| ckd ni aaya Aaj 💀 -2022-12-05 17:38:02.024557 + : pb-IF4wUlIYCg== | NearCandy4|BCS OWNER| who betrayed? -2022-12-05 17:38:14.072090 + : pb-IF4wUlIYCg== | NearCandy4|BCS OWNER| i wll ban that person -2022-12-05 17:38:21.458022 + : pb-IF4wUlIYCg== | NearCandy4|BCS OWNER| permanent -2022-12-05 17:38:41.080645 + : pb-IF4wUlIYCg== | NearCandy4|BCS OWNER| fake mafia -2022-12-05 17:38:55.181645 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| thanks owner bro -2022-12-05 17:38:58.884005 + : pb-IF4wUlIYCg== | NearCandy4|BCS OWNER| fake mafia you got many complaint -2022-12-05 17:39:09.389857 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| beast💀😂😂 -2022-12-05 17:39:19.107392 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| CKD' absent ..yeh haven't seen him around -2022-12-05 17:39:20.110226 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| kisine dekha toh nahi😂💀 -2022-12-05 17:39:39.480018 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| ohh lol💀 uska attendence mei mat daalna😂😂 naam -2022-12-05 17:39:50.780620 + : pb-IF4SEHAl | bisht4189|Wallace| ckd le raa channe ke jhaad m -2022-12-05 17:39:51.502835 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 🎃 -2022-12-05 17:40:45.825464 + : pb-IF4SEHAl | bisht4189|Wallace| lag -2022-12-05 17:40:52.547103 + : pb-IF4mVEoyVQ== | Android42718925|Willy| -2022-12-05 17:41:33.402947 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| wow -2022-12-05 17:41:52.490122 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| chalo abh hum b jaate hai sone byee zsq💀🤡 -2022-12-05 17:41:55.130140 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 17:41:58.408075 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| beyee ;) -2022-12-05 17:42:46.918145 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| 💀💀 -2022-12-05 17:43:06.203717 + : pb-IF4wUlIYCg== | NearCandy4|Hrithik Roshan| hailaaaaa -2022-12-05 17:43:08.205397 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 17:43:10.650385 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| agya John💀 shubam -2022-12-05 17:43:15.186864 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-05 17:43:16.471021 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-05 17:43:17.951084 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| -2022-12-05 17:43:20.814454 + : pb-IF4nUxE4Nw== | Android60071137|john wick| nai -2022-12-05 17:43:22.238591 + : pb-IF4wUlIYCg== | NearCandy4|Hrithik Roshan| jadhu he kya koi -2022-12-05 17:43:27.378464 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| Mai Jaa rha lekin good night guys😂💀 -2022-12-05 17:43:35.166002 + : pb-IF4nUxE4Nw== | Android60071137|john wick| abe -2022-12-05 17:43:36.733866 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-05 17:43:42.180140 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| toh Tera bhoot aya kya shubam😂😂 -2022-12-05 17:43:51.842887 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-05 17:43:57.457935 + : pb-IF4nUxE4Nw== | Android60071137|john wick| ye server ko kya hogaya -2022-12-05 17:44:14.140138 + : pb-IF4vVRUFVA== | BoomBaam11|BoomBaam11| Abe willy gaaannd na mra -2022-12-05 17:44:22.710111 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| maine hatwa diya tha 💀 iss server ko hack krke -2022-12-05 17:44:34.205647 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| lel -2022-12-05 17:44:36.040394 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| srry💀 -2022-12-05 17:44:39.419848 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| sed np -2022-12-05 17:44:54.409954 + : pb-IF4nUxE4Nw== | Android60071137|john wick| such me ki chu*** bana rah hai -2022-12-05 17:44:55.409862 + : pb-IF4-U3gdFw== | Android63053623|ᥨᕰᏣፗҒʓⴽ‎| mafia gd masti nahi -2022-12-05 17:45:16.946706 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| hi -2022-12-05 17:45:19.617752 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| *** -2022-12-05 17:45:22.260053 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| byee💀 -2022-12-05 17:45:28.110175 + : pb-IF4nUxE4Nw== | Android60071137|john wick| bye -2022-12-05 17:45:33.230026 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| sacchi John💀😂 -2022-12-05 17:45:33.852963 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| bye -2022-12-05 17:45:44.929957 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| maine hack kr liya tha zsq se puch -2022-12-05 17:45:53.233089 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| kya -2022-12-05 17:45:59.463055 + : pb-IF4nUxE4Nw== | Android60071137|john wick| 😂 ha samjha me -2022-12-05 17:46:06.515377 + : pb-IF4vVRUFVA== | BoomBaam11|BoomBaam11| zesus ******* -2022-12-05 17:46:15.301052 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| bisi willy😂😂 -2022-12-05 17:46:18.149516 + : pb-IF4mVEoyVQ== | Android42718925|Willy| sahil🤣 -2022-12-05 17:46:36.750056 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| 💀💀 john -2022-12-05 17:46:40.739981 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| nat maan 💀 -2022-12-05 17:46:57.435613 + : pb-IF4nUxE4Nw== | Android60071137|john wick| are man liya bro😂 -2022-12-05 17:47:56.885205 + : pb-IF4nUxE4Nw== | Android60071137|john wick| tere pe andha vishwas hai😂 -2022-12-05 17:48:13.743376 + : pb-IF4wUlIYCg== | NearCandy4|Suvar🐗| meri zarurat he kisi ko? -2022-12-05 17:48:31.499859 + : pb-IF4-U3gdFw== | Android63053623|ᥨᕰᏣፗҒʓⴽ‎| mafia ho ko hai -2022-12-05 17:48:33.334747 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol SHruti lost health over impact bomb -2022-12-05 17:48:43.712916 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| was ez win ;-; -2022-12-05 17:48:44.184658 + : pb-IF4mVEoyVQ== | Android42718925|Willy| john 💩 -2022-12-05 17:48:52.343910 + : pb-IF4wUlIYCg== | NearCandy4|Suvar🐗| lucifar🤨🤨🤨 -2022-12-05 17:49:03.800454 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| ishh -2022-12-05 17:49:06.353386 + : pb-IF4wUlIYCg== | NearCandy4|Suvar🐗| accha nam he lucifar muje pasand aaya -2022-12-05 17:49:28.828836 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-05 17:49:29.178079 + : pb-IF4vVRUFVA== | BoomBaam11|BoomBaam11| -2022-12-05 17:50:13.999872 + : pb-IF4-U3gdFw== | Android63053623|ᥨᕰᏣፗҒʓⴽ‎| 1 -2022-12-05 17:50:17.350216 + : pb-IF4vVRUFVA== | BoomBaam11|☬༒AGENT☠︎☬| 1 -2022-12-05 17:50:32.788427 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| Willy how did you get that dress -2022-12-05 17:50:56.979287 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ishhu ithna character kese aaya tere ko paas😳😳😳 -2022-12-05 17:51:14.598096 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| you can also change it -2022-12-05 17:51:22.044363 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| it's free now -2022-12-05 17:51:32.193354 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| nahi horha wait chek kartha hu -2022-12-05 17:51:58.068858 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| swipe -2022-12-05 17:52:03.540219 + : pb-IF4-U3gdFw== | Android63053623|ᥨᕰᏣፗҒʓⴽ‎| mafia use bomb button -2022-12-05 17:52:08.862555 + : pb-IF4vVRUFVA== | BoomBaam11|☬༒AGENT☠︎☬| Abe jhaaat -2022-12-05 17:52:30.499446 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| thank u lucifar -2022-12-05 17:52:49.590449 + : pb-IF4vUkRaEg== | ĐÃŘĶxŠÎĞMĀ|| anyone come to bcs epic smash? -2022-12-05 17:52:58.722959 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| i want smoothy's character -2022-12-05 17:53:16.483546 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| muje hanesha se rabbit me khena chahata ta😥 -2022-12-05 17:53:42.594938 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| ps- i don't know how to throw flag -2022-12-05 17:57:18.809661 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| Willy why the hell are you betraying -2022-12-05 17:57:38.992610 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 17:57:39.173764 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 17:57:49.995440 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-05 17:57:52.762941 + : pb-IF5UUxheIg== | DollarHere69|A G E N T| -2022-12-05 17:59:19.072290 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| i think lucifar C-D?? -2022-12-05 17:59:50.856609 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| ohh hy ZSq 🐢 -2022-12-05 17:59:53.727513 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| push willy -2022-12-05 17:59:58.891783 + : pb-IF4HUlcgUQ== | AdrenalCha|احمد| -2022-12-05 17:59:59.045348 + : pb-IF4HUlcgUQ== | AdrenalCha|احمد| -2022-12-05 17:59:59.207313 + : pb-IF4HUlcgUQ== | AdrenalCha|احمد| -2022-12-05 17:59:59.353388 + : pb-IF4HUlcgUQ== | AdrenalCha|احمد| -2022-12-05 18:00:02.207768 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-05 18:00:02.379420 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-05 18:00:02.540803 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-05 18:00:02.727088 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-05 18:00:03.359505 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:00:05.531976 + : pb-IF5UUxheIg== | DollarHere69|A G E N T| -2022-12-05 18:00:05.712600 + : pb-IF5UUxheIg== | DollarHere69|A G E N T| -2022-12-05 18:00:05.862123 + : pb-IF5UUxheIg== | DollarHere69|A G E N T| -2022-12-05 18:00:06.022288 + : pb-IF5UUxheIg== | DollarHere69|A G E N T| -2022-12-05 18:00:09.125045 + : pb-IF4mVEoyVQ== | Android42718925|Willy| -2022-12-05 18:00:09.282059 + : pb-IF4mVEoyVQ== | Android42718925|Willy| -2022-12-05 18:00:09.449053 + : pb-IF4mVEoyVQ== | Android42718925|Willy| -2022-12-05 18:00:09.609063 + : pb-IF4mVEoyVQ== | Android42718925|Willy| -2022-12-05 18:00:12.570653 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-05 18:00:12.694567 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-05 18:00:12.966607 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-05 18:00:13.106694 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-05 18:00:19.917430 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| 🐢 -2022-12-05 18:01:28.302342 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| 🥺 -2022-12-05 18:02:00.245009 + : pb-IF4-U3gdFw== | Android63053623|ᥨᕰᏣፗҒʓⴽ‎| -2022-12-05 18:02:01.952842 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-05 18:02:10.564382 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:02:10.745205 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:02:10.913221 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| hie ._. -2022-12-05 18:02:25.058159 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| 👁️👄👁️ -2022-12-05 18:02:50.613419 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ye symbol mene kahi dekha he -2022-12-05 18:03:04.563566 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| youTube coment me -2022-12-05 18:03:15.029586 + : pb-IF4vVRUFVA== | BoomBaam11|‍| willy tere ******* me dnda -2022-12-05 18:03:17.828751 + : pb-IF4mVEoyVQ== | Android42718925|Willy| 💩 -2022-12-05 18:03:30.153223 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 1 -2022-12-05 18:03:42.356216 + : pb-IF4vVRUFVA== | BoomBaam11|‍| one more -2022-12-05 18:04:01.416648 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:04:31.361648 + : pb-IF4vVRUFVA== | BoomBaam11|‍| mai ready nhi tha akash -2022-12-05 18:04:41.484847 + : pb-IF4-U3gdFw== | Android63053623|ᥨᕰᏣፗҒʓⴽ‎| -2022-12-05 18:05:21.078491 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| nice shot 👍 -2022-12-05 18:05:21.399322 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| hy isha -2022-12-05 18:05:56.905796 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| hy parth -2022-12-05 18:06:01.360731 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| thanks for kicking Willy -2022-12-05 18:06:04.752587 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| after so long -2022-12-05 18:06:21.299415 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| yup😁 -2022-12-05 18:06:42.956822 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:06:43.389503 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:06:44.312912 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:07:35.078509 + : pb-IF4vVRUFVA== | BoomBaam11|AVII💀| -2022-12-05 18:07:52.593090 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol -2022-12-05 18:07:52.916706 + : pb-IF4vVRUFVA== | BoomBaam11|AVII💀| -2022-12-05 18:07:54.056897 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| -2022-12-05 18:07:54.279297 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| -2022-12-05 18:07:56.921893 + : pb-IF5UUxheIg== | DollarHere69|A G E N T| -2022-12-05 18:07:57.082016 + : pb-IF5UUxheIg== | DollarHere69|A G E N T| -2022-12-05 18:07:57.262061 + : pb-IF5UUxheIg== | DollarHere69|A G E N T| -2022-12-05 18:08:06.001713 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| aot fan? -2022-12-05 18:08:06.123664 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:08:11.806430 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| i see.. -2022-12-05 18:08:45.994991 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| sorry -2022-12-05 18:10:38.874050 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| I'm playing like sht today -2022-12-05 18:10:52.336250 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| hii Isha 👋 -2022-12-05 18:11:03.688753 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| hy yash -2022-12-05 18:11:16.206401 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| give me some power!! -2022-12-05 18:11:16.670087 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol -2022-12-05 18:11:39.622655 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:11:46.201830 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| end -2022-12-05 18:11:59.396444 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| let them end -2022-12-05 18:12:04.786149 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| end -2022-12-05 18:12:09.076631 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| end -2022-12-05 18:12:10.848200 + : pb-IF4vVRUFVA== | BoomBaam11|‍| end -2022-12-05 18:12:14.849666 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| end -2022-12-05 18:12:16.341219 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| guys vote -2022-12-05 18:12:21.882744 + : pb-IF5VU3lYDA== | AlienPersonnel44|Akash| end -2022-12-05 18:12:24.699815 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| thanks ishu -2022-12-05 18:12:38.472124 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:13:16.911862 + : pb-IF4vVRUFVA== | BoomBaam11|‍| end -2022-12-05 18:13:20.110910 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| end -2022-12-05 18:13:27.263828 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| end -2022-12-05 18:13:36.579282 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| end means?? -2022-12-05 18:13:49.479227 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ye kya sab type kar rahe ho -2022-12-05 18:14:00.145030 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| end means annt -2022-12-05 18:14:04.153671 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| arey change hogya yaha -2022-12-05 18:14:09.572451 + : pb-IF5TU24NKA== | ProGamer|pita ji| sry -2022-12-05 18:14:12.879433 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| malum he -2022-12-05 18:14:29.761952 + : pb-IF5UUxheIg== | DollarHere69|Uncas| BHEN KE LAND -2022-12-05 18:14:33.827543 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| brabar che -2022-12-05 18:14:33.859260 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| lekin end kyu type kar rahe ho wo batalo -2022-12-05 18:14:49.159340 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| isha gujrati😅😆 -2022-12-05 18:15:32.949705 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| parth i hope you aren't trying to simp -2022-12-05 18:15:36.299247 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| end kyu type kar rahe ho -2022-12-05 18:15:54.516998 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| taki round khtm ho jaye -2022-12-05 18:16:01.552253 + : pb-IF4vVRUFVA== | BoomBaam11|‍| end -2022-12-05 18:16:02.009387 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ohh😅👍👍 -2022-12-05 18:16:09.554858 + : pb-IF5TU24NKA== | ProGamer|pita ji| gg -2022-12-05 18:16:37.675362 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| woah -2022-12-05 18:16:40.124811 + : pb-IF4dUxRaIw== | Aaryan9957|EREN YEAGER| hi -2022-12-05 18:16:45.160744 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| hello -2022-12-05 18:16:54.480346 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| end -2022-12-05 18:16:55.691194 + : pb-IF4eVGc7Cw== | LIONHUNTER|| hii -2022-12-05 18:16:59.596391 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| end -2022-12-05 18:17:00.374760 + : pb-IF4vVRUFVA== | BoomBaam11|‍| end -2022-12-05 18:17:07.271539 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:17:12.579043 + : pb-IF4dUxRaIw== | Aaryan9957|EREN YEAGER| end -2022-12-05 18:17:18.166247 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| end -2022-12-05 18:17:22.079968 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ok ab samaj gaya -2022-12-05 18:18:26.406107 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:18:55.066320 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:19:48.702282 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:19:55.111116 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| btf bruh -2022-12-05 18:19:58.967518 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| wtf* -2022-12-05 18:20:02.326899 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| haha ler them get bottom flag -2022-12-05 18:20:18.754137 + : pb-IF4dUxRaIw== | Aaryan9957|EREN YEAGER| op -2022-12-05 18:20:57.451751 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| gg -2022-12-05 18:20:58.115843 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| gg -2022-12-05 18:21:03.271351 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| 😏 -2022-12-05 18:21:06.715906 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| 👊👊👊 -2022-12-05 18:21:10.402269 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| you played well -2022-12-05 18:22:01.062314 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| w. t. f -2022-12-05 18:22:05.171960 + : pb-IF4dUxRaIw== | Aaryan9957|EREN YEAGER| f -2022-12-05 18:22:10.756180 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| kill him -2022-12-05 18:22:12.749449 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| cigar him -2022-12-05 18:22:20.015484 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| non epics mere bass ka nahi hai -2022-12-05 18:22:23.635732 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| bs mai hi dikhri hu 😂😂 -2022-12-05 18:22:32.960020 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| 😅😆😆😆 -2022-12-05 18:22:52.377251 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| STOP SIMPING TO HER BRUH -2022-12-05 18:23:02.179171 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| oh -2022-12-05 18:23:13.319274 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| simping means? -2022-12-05 18:23:20.965079 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| 💀 -2022-12-05 18:23:27.575198 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| 😂 -2022-12-05 18:23:36.080798 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| tu sikha muje -2022-12-05 18:23:45.764246 + : pb-IF5TU24NKA== | ProGamer|pita ji| move aside mf -2022-12-05 18:23:47.317499 + : pb-IF4uU3gNKQ== | CKD360|| lala asli ya nakli -2022-12-05 18:23:53.729308 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| asli -2022-12-05 18:24:02.223376 + : pb-IF4uU3gNKQ== | CKD360|CKD| hy lala n isha -2022-12-05 18:24:03.744806 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lolz -2022-12-05 18:24:06.519428 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ckd ye white muje kuch bataa rahaa he -2022-12-05 18:24:12.033397 + : pb-IF4uU3gNKQ== | CKD360|CKD| kya? -2022-12-05 18:24:24.319480 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| muje bolta he isha se dur re😅😅😅 -2022-12-05 18:24:33.939995 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| simping😅😅😂😂 -2022-12-05 18:24:39.993370 + : pb-IF4uU3gNKQ== | CKD360|CKD| 😂🤣 -2022-12-05 18:24:53.759434 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ab usko kya bolu 😅😅 -2022-12-05 18:24:56.853302 + : pb-IF4uU3gNKQ== | CKD360|CKD| sabse bada simp wohi h🎃 -2022-12-05 18:25:13.259333 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| isha ye kya tha be😂😆 -2022-12-05 18:25:13.838361 + : pb-IF4uU3gNKQ== | CKD360|CKD| hy akash -2022-12-05 18:25:16.993647 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| I'm the least simper here😏 -2022-12-05 18:25:24.607185 + : pb-IF5VU3lYDA== | AlienPersonnel44|Akash| hy -2022-12-05 18:25:33.278410 + : pb-IF4vVRUFVA== | BoomBaam11|‍| hello akash -2022-12-05 18:25:33.319296 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ohk white tu jeet gayaa -2022-12-05 18:25:33.709641 + : pb-IF5TU24NKA== | ProGamer|pita ji| join my anti simp squad guys -2022-12-05 18:25:39.374513 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| chal jutha white😝 -2022-12-05 18:25:41.836500 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| wtf is hy? -2022-12-05 18:25:56.490375 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| atleast insert a e between that -2022-12-05 18:25:56.885858 + : pb-IF4vVRUFVA== | BoomBaam11|‍| hi akash -2022-12-05 18:26:02.723717 + : pb-IF4wVFcZPw== | CivilizedT|spidy| -2022-12-05 18:26:19.439434 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| tu juada padha likha he lagta he😅😅 -2022-12-05 18:26:38.884348 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| wut? -2022-12-05 18:26:39.276578 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| well done -2022-12-05 18:26:45.278330 + : pb-IF4uU3gNKQ== | CKD360|CKD| white admin ko simp krta hai -2022-12-05 18:26:46.259294 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| sry😁 -2022-12-05 18:26:48.664588 + : pb-IF4UVGg8KQ== | LionAlpha7998|Iron man| vah parth lala -2022-12-05 18:27:00.359223 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| by mistek iron man -2022-12-05 18:27:10.919507 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| hawaa mai udke kesa lga 😂😂 -2022-12-05 18:27:16.524806 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| savage -2022-12-05 18:27:16.581573 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| redtube tune kab simping karte dekh liya -2022-12-05 18:27:20.452568 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| 💀 -2022-12-05 18:27:21.799803 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| bahot achha😂😂👍 -2022-12-05 18:28:30.823378 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| sb dekha h meen🤣 -2022-12-05 18:28:58.838868 + : pb-IF4uU3gNKQ== | CKD360|CKD| I G N O R E -2022-12-05 18:29:39.881221 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| mixer mai aagayi bruh -2022-12-05 18:29:42.518404 + : pb-IF4vVRUFVA== | BoomBaam11|‍| end -2022-12-05 18:29:57.733544 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:29:57.927868 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:29:58.241544 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:32:17.561838 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:32:17.724094 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:32:17.917978 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:32:18.087436 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:32:20.087064 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| hahahahaha -2022-12-05 18:32:20.243029 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| -2022-12-05 18:32:20.567499 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| -2022-12-05 18:32:21.196167 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| -2022-12-05 18:32:21.369186 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| -2022-12-05 18:32:21.536468 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| -2022-12-05 18:32:21.697370 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| -2022-12-05 18:32:22.259707 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| OMG -2022-12-05 18:32:36.042896 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| end -2022-12-05 18:33:12.306085 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:33:39.938932 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| end -2022-12-05 18:33:45.150992 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| guys vote -2022-12-05 18:33:47.941603 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| 1 -2022-12-05 18:33:52.994013 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| end -2022-12-05 18:33:55.386406 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| type end -2022-12-05 18:34:02.099339 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| end -2022-12-05 18:34:18.908306 + : pb-IF4uU3gNKQ== | CKD360|CKD| khelna kya end kr rha -2022-12-05 18:34:19.801990 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| end this -2022-12-05 18:34:31.098283 + : pb-IF4uU3gNKQ== | CKD360|CKD| mujhe khelna hai😡 -2022-12-05 18:34:39.113184 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| -2022-12-05 18:34:42.108819 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| khelo -2022-12-05 18:35:20.262769 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| 👟 -2022-12-05 18:35:31.079813 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lolz -2022-12-05 18:36:50.818555 + : pb-IF4uU3gNKQ== | CKD360|CKD| sucide bomb bhar bhar k de diya isme -2022-12-05 18:36:59.030057 + : pb-IF4wVFcZPw== | CivilizedT|spidy| bana bhai -2022-12-05 18:37:26.456929 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| yash Play -2022-12-05 18:37:37.219434 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lag? -2022-12-05 18:37:49.442957 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| khelo na -2022-12-05 18:37:49.903616 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| 1 -2022-12-05 18:38:18.770982 + : pb-IF4vVRUFVA== | BoomBaam11|| abe -2022-12-05 18:38:22.923474 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:38:27.445920 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| my new slippers are really slippery -2022-12-05 18:38:42.929030 + : pb-IF4vVRUFVA== | BoomBaam11|| akash -2022-12-05 18:38:52.144640 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| BOOMBACK -2022-12-05 18:39:00.062304 + : pb-IF5VU3lYDA== | AlienPersonnel44|Akash| ja coding kr -2022-12-05 18:39:42.674827 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| wtf -2022-12-05 18:39:45.049084 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| hey isha didi 😁 -2022-12-05 18:39:54.704227 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| hy vansh -2022-12-05 18:40:15.106164 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:40:15.284630 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:40:15.445511 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:40:20.982687 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| kesi ho aap 😁 -2022-12-05 18:41:03.620651 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| heheh -2022-12-05 18:41:09.733633 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| op🤣 -2022-12-05 18:41:13.994207 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| I'm good -2022-12-05 18:41:14.387462 + : pb-IF4UVGg8KQ== | LionAlpha7998|Iron man| epic bomb -2022-12-05 18:41:19.099311 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| wbu? -2022-12-05 18:41:30.085793 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| I'm also😁 -2022-12-05 18:41:32.222055 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lolz -2022-12-05 18:41:34.326812 + : pb-IF4UVGg8KQ== | LionAlpha7998|Iron man| lol -2022-12-05 18:41:34.989764 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| 🤣🤣 -2022-12-05 18:41:37.589295 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| chilling time😌 -2022-12-05 18:41:39.338034 + : pb-IF5TU24NKA== | ProGamer|pita ji| wow -2022-12-05 18:41:53.766953 + : pb-IF4PU0UlAw== | MunicipalJ|pranav| 🤣🤣🤣 -2022-12-05 18:41:57.633606 + : pb-IF4jU0MoPA== | Android63397175|Android63397175| do y'all know each other irl? -2022-12-05 18:42:21.220317 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| played with some many that I dont even remember -2022-12-05 18:42:31.169254 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| lo -2022-12-05 18:42:38.888482 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| -2022-12-05 18:42:46.406301 + : pb-IF4wVFcZPw== | CivilizedT|spidy| -2022-12-05 18:42:48.527546 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:42:51.078318 + : pb-IF4wVFcZPw== | CivilizedT|spidy| -2022-12-05 18:42:53.168365 + : pb-IF4jU0MoPA== | Android63397175|Android63397175| drop your IGs I'll follow -2022-12-05 18:43:07.452384 + : pb-IF4wVFcZPw== | CivilizedT|spidy| really ?? -2022-12-05 18:43:51.919766 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| finally someone kind enough to blast that landmine -2022-12-05 18:43:56.564954 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| ⬜⚪◻️ -2022-12-05 18:43:57.506391 + : pb-IF4wVFcZPw== | CivilizedT|spidy| ds___69 -2022-12-05 18:45:03.844704 + : pb-IF4uU3gNKQ== | CKD360|CKD| simping -2022-12-05 18:45:04.398599 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| 0 -2022-12-05 18:45:09.598897 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| simping -2022-12-05 18:45:09.826916 + : pb-IF4PU0UlAw== | MunicipalJ|pranav| 0 -2022-12-05 18:45:15.567663 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| hah i ain't no simp -2022-12-05 18:45:18.198435 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| let's play -2022-12-05 18:45:48.285845 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| 🗿 -2022-12-05 18:46:00.782445 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| you are too Piro for me -2022-12-05 18:46:08.890469 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| the classic hand of buddha -2022-12-05 18:46:44.477789 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| 😅😅 -2022-12-05 18:47:03.632624 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| pranav good or god? -2022-12-05 18:47:09.837231 + : pb-IF4UVGg8KQ== | LionAlpha7998|Iron man| gu -2022-12-05 18:47:11.513136 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| God -2022-12-05 18:47:13.218065 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| God🤣 -2022-12-05 18:47:20.707936 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| gu?💀 -2022-12-05 18:47:20.988760 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| pranav killed so many .. -2022-12-05 18:47:22.421405 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:47:22.603898 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:47:24.621978 + : pb-IF4PU0UlAw== | MunicipalJ|pranav| 😅😅😅 -2022-12-05 18:47:24.756271 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| mf -2022-12-05 18:47:36.253729 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| oppp -2022-12-05 18:47:42.150932 + : pb-IF4wVFcZPw== | CivilizedT|spidy| wtf -2022-12-05 18:47:42.757700 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| NVM sorry -2022-12-05 18:47:44.401807 + : pb-IF5TU24NKA== | ProGamer|pita ji| mkc server ki saala aaj ghusa maaro kal lagta h -2022-12-05 18:47:44.445592 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| vansh 🎊 -2022-12-05 18:47:49.862715 + : pb-IF4PU0UlAw== | MunicipalJ|pranav| thank u🤗😍 -2022-12-05 18:48:11.008599 + : pb-IF5TU24NKA== | ProGamer|pita ji| bhencho mai nhi khelra bye guys enjoy -2022-12-05 18:49:17.579600 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| i hate non epics soooooooooooooo muchhhhhhhhhhh -2022-12-05 18:50:53.370088 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| i lagged for 3 ms there🙂 -2022-12-05 18:51:57.553642 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| 😶 -2022-12-05 18:52:20.030691 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| dumb gays -2022-12-05 18:52:22.896382 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| guys* -2022-12-05 18:53:50.308650 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| waah -2022-12-05 18:53:55.407540 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| -2022-12-05 18:53:56.390085 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| op -2022-12-05 18:53:56.452353 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| -2022-12-05 18:53:57.670987 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| -2022-12-05 18:53:58.484079 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| too much going -2022-12-05 18:53:59.961598 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| -2022-12-05 18:54:03.131376 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| nice -2022-12-05 18:54:09.277846 + : pb-IF4PU0UlAw== | MunicipalJ|pranav| good -2022-12-05 18:54:09.773317 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| GGz -2022-12-05 18:54:10.392291 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| white🤣 -2022-12-05 18:54:38.767714 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| tu to bol mat sale score nahi karne diya -2022-12-05 18:55:01.154830 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| hah -2022-12-05 18:55:02.978170 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| 🤣🤣 -2022-12-05 18:55:21.220309 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:55:21.394204 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:56:21.088426 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| 😂 -2022-12-05 18:57:16.069778 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-05 18:57:17.090768 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| 🤣 -2022-12-05 18:57:41.636773 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| abe Chu ho kya ekdamn se? -2022-12-05 18:58:10.124163 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| dikh raha hai Shanti se ghum Raha hu tab bhi bomb pe bomb phek kare ho -2022-12-05 18:58:11.847137 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| 🤣 -2022-12-05 18:58:24.158364 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| rahe* -2022-12-05 18:58:36.712696 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| vaaah didi vaaah🤣 -2022-12-05 18:58:45.921140 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| mardo didi -2022-12-05 18:58:51.847626 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| musical landmines -2022-12-05 18:58:52.176909 + : pb-IF4UVGg8KQ== | LionAlpha7998|Iron man| shaadi sampann -2022-12-05 18:59:09.059938 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| saath phere ho gaye shaadi sampann🤣 -2022-12-05 18:59:23.655340 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| bye y'all -2022-12-05 18:59:30.745498 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| bye -2022-12-05 19:01:37.628248 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| abee pagal hai ky -2022-12-05 19:01:43.656507 + : pb-IF4jVUctHQ== | vimal2680|Willy| ckd pk aaya -2022-12-05 19:01:54.151130 + : pb-IF4uU3gNKQ== | CKD360|🇨​🇰​🇩​| ?? -2022-12-05 19:01:55.684760 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| grab kyu kiya mujhe -2022-12-05 19:02:09.333281 + : pb-IF4AU2s9Uw== | Pretentio2|Pretentio2| sorry -2022-12-05 19:02:14.430812 + : pb-IF4uU3gNKQ== | CKD360|🇨​🇰​🇩​| adat chooth gya -2022-12-05 19:02:15.304633 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| okk -2022-12-05 19:07:57.707062 + : pb-IF4uU3gNKQ== | CKD360|🇨​🇰​🇩​| good night.. -2022-12-05 19:08:05.915674 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| gn -2022-12-05 19:08:10.282183 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| gn -2022-12-05 19:08:14.153245 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-05 19:09:54.064062 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| bs bs 😂😂😂 -2022-12-05 19:10:17.805996 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| never give up🤣 -2022-12-05 19:10:18.216818 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| ni hora 😂 -2022-12-05 19:10:41.146965 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| aree voh previous character se hota tha -2022-12-05 19:10:51.082268 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| ye agent hai na -2022-12-05 19:11:12.420378 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| hnn uske hands mai iron hota h -2022-12-05 19:12:58.838149 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| ha kya ye nhi pta tha mujhe 🤣🤣 -2022-12-05 19:15:25.469760 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| I'm sorry -2022-12-05 19:15:35.635942 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| why -2022-12-05 19:15:59.570300 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| i killed that cat guy by mistake -2022-12-05 19:15:59.940580 + : pb-IF4TUkkYBw== | Mushroom|Mushroom| hello everyone -2022-12-05 19:16:18.056052 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| oh -2022-12-05 19:16:19.181641 + : pb-IF4KV04FIg== | ItzMeRoman|ItzMeRoman| hey 🍄 -2022-12-05 19:16:22.182923 + : pb-IF4TUkkYBw== | Mushroom|Mushroom| magyar? -2022-12-05 19:18:18.395007 + : pb-IF4TUkkYBw== | Mushroom|Mushroom| sry -2022-12-05 19:18:21.228418 + : pb-IF4TUkkYBw== | Mushroom|Mushroom| mate -2022-12-05 19:18:33.782153 + : pb-IF4KV04FIg== | ItzMeRoman|ItzMeRoman| -2022-12-05 19:19:54.735570 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| red tube?? -2022-12-05 19:20:06.182924 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| kya? -2022-12-05 19:20:25.796350 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| merko kyu maar rahe -2022-12-05 19:21:20.038540 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| marka hota tho kb ka mar deta -2022-12-05 19:21:21.408902 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| mushroom that's not the way you kill me 🤣 -2022-12-05 19:21:57.581023 + : pb-IF4KV04FIg== | ItzMeRoman|ItzMeRoman| -2022-12-05 19:21:58.167635 + : pb-IF4KV04FIg== | ItzMeRoman|ItzMeRoman| -2022-12-05 19:24:04.299172 + : pb-IF42U3YILQ== | ColderFore|ColderFore| -2022-12-05 19:24:06.744152 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-05 19:25:06.929134 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| bros drunk😆 -2022-12-05 19:25:15.146847 + : pb-IF4KV04FIg== | ItzMeRoman|ItzMeRoman| -2022-12-05 19:25:15.324598 + : pb-IF4KV04FIg== | ItzMeRoman|ItzMeRoman| -2022-12-05 19:25:15.490093 + : pb-IF4KV04FIg== | ItzMeRoman|ItzMeRoman| -2022-12-05 19:25:15.654882 + : pb-IF4KV04FIg== | ItzMeRoman|ItzMeRoman| -2022-12-05 19:25:27.005372 + : pb-IF4KV04FIg== | ItzMeRoman|ItzMeRoman| f -2022-12-05 19:25:51.000357 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| goodnight 😊 -2022-12-05 19:25:56.577772 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| vansh -2022-12-05 19:26:00.925125 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| goodnight didi -2022-12-05 19:26:09.113036 + : pb-IF41V0UyDg== | Wikirex2001|Wikirex2001| gn babe -2022-12-05 19:26:22.669509 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-05 19:26:49.950530 + : pb-IF4KV04FIg== | ItzMeRoman|ItzMeRoman| GN gays -2022-12-05 19:27:19.450943 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| sry -2022-12-05 19:27:57.109089 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| sry -2022-12-05 19:30:02.684526 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lolz -2022-12-05 19:30:36.298857 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| abe -2022-12-05 19:31:13.615427 + : pb-IF4IUmhYLw== | Android55528459|Android55528459| -2022-12-05 19:32:29.511848 + : pb-IF42U0VSCA== | Bulletproofdon|Bulletproofdon| -2022-12-05 19:32:29.711726 + : pb-IF42U0VSCA== | Bulletproofdon|Bulletproofdon| -2022-12-05 19:33:31.686390 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| tf bombing me? -2022-12-05 19:34:40.584408 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-05 19:34:40.743999 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-05 19:39:34.008166 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| end -2022-12-05 19:39:52.585708 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| end -2022-12-05 19:39:58.621153 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| end -2022-12-05 19:40:01.639025 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| 1 -2022-12-05 19:40:09.158086 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| type end -2022-12-05 19:40:12.307291 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| end -2022-12-05 19:40:21.066559 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| type end -2022-12-05 19:40:30.169149 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| carti -2022-12-05 19:40:33.509445 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| end -2022-12-05 19:40:38.858207 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| end -2022-12-05 19:40:43.899307 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| end -2022-12-05 19:40:47.167031 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| cat -2022-12-05 19:40:52.081401 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| voted -2022-12-05 19:40:54.457199 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| end -2022-12-05 19:44:28.409130 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| theek se khel na deveshm -2022-12-05 19:45:41.591292 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| oops -2022-12-05 19:45:47.008995 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-05 19:45:47.178932 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-05 19:46:42.147626 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| bye -2022-12-05 20:11:10.354070 + : pb-IF4hBFgH | MrDevil|MrDevil| bulati hai magar jaane ka nahi -2022-12-05 20:12:39.401500 + : pb-IF4hBFgH | MrDevil|MrDevil| bulati hai magar jaane ka nahi -2022-12-05 20:13:07.819010 + : pb-IF4hBFgH | MrDevil|MrDevil| Gangadhar hi shaktimaan hai -2022-12-05 20:14:38.276025 + : pb-IF4hBFgH | MrDevil|MrDevil| tum kya mast kaam karte ho maksud bhai -2022-12-05 20:15:20.029142 + : pb-IF4hBFgH | MrDevil|MrDevil| waise mein shakt launda hu par yaha mein pigal gaya -2022-12-05 20:16:33.304121 + : pb-IF4hBFgH | MrDevil|MrDevil| sabka badla legare tera Faizal baap ka dada ka bhai ka -2022-12-05 20:19:37.594546 + : pb-IF4hBFgH | MrDevil|MrDevil| tum kya mast kaam karte ho maksud bhai -2022-12-05 20:19:40.020435 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|VALDUS'n| 0 -2022-12-05 20:23:08.775850 + : pb-IF4hBFgH | MrDevil|MrDevil| noice -2022-12-05 20:24:12.022742 + : pb-IF4hBFgH | MrDevil|MrDevil| shit -2022-12-05 20:24:26.111537 + : pb-IF4hBFgH | MrDevil|MrDevil| macchar op -2022-12-05 20:50:20.186124 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|| ReptilianL. can you please change your name -2022-12-05 20:50:51.798833 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|| ReptilianLgand faad -2022-12-05 20:51:07.255046 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|| hey -2022-12-05 20:51:14.973486 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|| ignoring ? -2022-12-05 20:51:26.539268 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|| change your name -2022-12-05 20:51:48.609575 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|| fine , get lost then -2022-12-05 20:58:55.769403 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| do u knw the mine trick bro ? -2022-12-05 20:59:05.344475 + : pb-JiNJARFeXEVGX1hEFE5XXFFDE0lZT1VD | HageMaaroo|HageMaaroo| noooo -2022-12-05 20:59:10.786929 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| wana see ? -2022-12-05 20:59:17.720095 + : pb-JiNJARFeXEVGX1hEFE5XXFFDE0lZT1VD | HageMaaroo|HageMaaroo| sureeee -2022-12-05 20:59:36.194514 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| k.. i will place some mines.. u can -2022-12-05 20:59:36.195017 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| jump on em.. nt rmmbr nt to pick em -2022-12-05 20:59:43.664537 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| bt rmmbr* -2022-12-05 20:59:59.348371 + : pb-JiNJARFeXEVGX1hEFE5XXFFDE0lZT1VD | HageMaaroo|HageMaaroo| okay -2022-12-05 21:00:12.693303 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| see -2022-12-05 21:00:19.745159 + : pb-JiNJARFeXEVGX1hEFE5XXFFDE0lZT1VD | HageMaaroo|HageMaaroo| should i jump on them -2022-12-05 21:00:25.775699 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| only dis 1 -2022-12-05 21:01:13.085914 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| here -2022-12-05 21:02:47.474380 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| wana learn ? -2022-12-05 21:02:55.455223 + : pb-JiNJARFeXEVGX1hEFE5XXFFDE0lZT1VD | HageMaaroo|HageMaaroo| yeaaahhh -2022-12-05 21:03:39.797234 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| k.. take mines.. go near flag.. swipe -2022-12-05 21:03:39.797474 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| grab to punch quickly until a mine drops on floor -2022-12-05 21:04:02.375593 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| sry.. swipe grab to bomb -2022-12-05 21:04:46.619411 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| u understud .. right ? -2022-12-05 21:06:20.787244 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| atacker sry. just hvin fu -2022-12-05 21:06:23.241336 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| fun -2022-12-05 21:06:41.336068 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| y did u do that ☹ -2022-12-05 21:06:54.758183 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| i m ur frnd.. so had fun -2022-12-05 21:06:58.653172 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| i m bomber -2022-12-05 21:07:03.522816 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| u knw me right ? -2022-12-05 21:07:11.696288 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| who ? -2022-12-05 21:07:18.018632 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| bomberman -2022-12-05 21:07:30.622098 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| I guess -2022-12-05 21:07:36.085296 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| k -2022-12-05 21:07:36.382237 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| in bcs only? -2022-12-05 21:07:41.168082 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| ya ya -2022-12-05 21:07:59.716280 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| r u a girl -2022-12-05 21:08:03.031841 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| no -2022-12-05 21:08:20.261759 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| then y r u in girls charecter -2022-12-05 21:08:30.213540 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| haha just like dat -2022-12-05 21:09:07.337663 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| I have exam tmrw I am going -2022-12-05 21:09:11.297444 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| byeee -2022-12-05 21:09:14.329734 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| k bro gud luck -2022-12-05 21:09:17.386135 + : pb-IF4IV04ZKw== | paratròóper|SтιZ🔥पूपman| bye -2022-12-05 21:09:19.927166 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| tq -2022-12-06 02:49:44.094874 + : pb-IF4LUk0FCQ== | VidhyanFal|Flamingvj7| -2022-12-06 02:53:53.914878 + : pb-IF4LUk0FCQ== | VidhyanFal|Flamingvj7| -2022-12-06 03:21:17.387485 + : pb-IF4FU01cHw== | ᴀᴍᴀɴ7|ᴀᴍᴀɴ7| -2022-12-06 03:21:17.657252 + : pb-IF4FU01cHw== | ᴀᴍᴀɴ7|ᴀᴍᴀɴ7| -2022-12-06 03:31:59.383620 + : pb-IF5WUxQlEw== | Linux52467|100WCharge| hi linux -2022-12-06 04:27:59.887009 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😁😁 -2022-12-06 04:28:13.184555 + : pb-IF4nU3IxEw== | divs2104|divs2104| 🤣🤣 -2022-12-06 04:28:17.699728 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😚 -2022-12-06 04:28:31.954746 + : pb-IF4nU3IxEw== | divs2104|divs2104| achaa😁 -2022-12-06 04:28:33.095105 + : pb-IF4IU04pBA== | InnateSinner19|InnateSinner19| lol -2022-12-06 04:29:04.349120 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😑 -2022-12-06 04:29:45.289558 + : pb-IF4lU0xTVQ== | RattlingKestrel49176|RIYA| 😂 -2022-12-06 04:30:10.826093 + : pb-IF4IU04pBA== | InnateSinner19|InnateSinner19| sucide squad -2022-12-06 04:30:49.124719 + : pb-IF4nU3IxEw== | divs2104|divs2104| ohhooo😚😚 -2022-12-06 04:31:10.880243 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| app nhi install hota tb dekti😁 -2022-12-06 04:31:40.504800 + : pb-IF4nU3IxEw== | divs2104|divs2104| clear data kr de thodi der -2022-12-06 04:33:57.209452 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| **** dekh k -2022-12-06 04:34:49.811334 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| sty -2022-12-06 04:37:24.611499 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| lene do na😁 -2022-12-06 04:37:35.959576 + : pb-IF4nU3IxEw== | divs2104|divs2104| 😁😁ni -2022-12-06 04:37:50.425455 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| ku😑 -2022-12-06 04:37:59.819662 + : pb-IF4nU3IxEw== | divs2104|divs2104| 😚lele -2022-12-06 04:38:09.627181 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| kya😁 -2022-12-06 04:38:20.429697 + : pb-IF4nU3IxEw== | divs2104|divs2104| whi🙈 -2022-12-06 04:38:28.004159 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😚naam -2022-12-06 04:38:37.589843 + : pb-IF4nU3IxEw== | divs2104|divs2104| chup kr -2022-12-06 04:38:48.020138 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😁 -2022-12-06 04:39:02.599618 + : pb-IF4nU3IxEw== | divs2104|divs2104| ohhoo most violent -2022-12-06 04:39:13.339587 + : pb-IF4nU3IxEw== | divs2104|divs2104| 😚😚 -2022-12-06 04:39:25.381831 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😁yes also in bed -2022-12-06 04:39:35.340270 + : pb-IF4nU3IxEw== | divs2104|divs2104| 😁😚 -2022-12-06 04:39:40.233042 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😁😁😁 -2022-12-06 04:40:17.584958 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| pros -2022-12-06 04:40:52.259358 + : pb-IF4lU0xTVQ== | RattlingKestrel49176|RIYA| hahah -2022-12-06 04:40:54.939800 + : pb-IF4nU3IxEw== | divs2104|divs2104| ohhoo faad de -2022-12-06 04:41:39.199580 + : pb-IF4nU3IxEw== | divs2104|divs2104| chaaa gya -2022-12-06 04:42:08.299635 + : pb-IF4nU3IxEw== | divs2104|divs2104| ohhooo😚😚😚 -2022-12-06 04:42:15.232995 + : pb-IF4XU0E5AQ== | UngainlyAluminum35|suii| nude -2022-12-06 04:42:20.750405 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😁😁😚😚😚 -2022-12-06 04:42:28.921425 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| tere pyaar ki ttakt😁 -2022-12-06 04:42:50.799779 + : pb-IF4nU3IxEw== | divs2104|divs2104| dikha fir thoda mujhp bhi😁 -2022-12-06 04:43:33.849208 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| acha😁😁😁 -2022-12-06 04:43:40.933161 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| bed m dikhauga 😁 -2022-12-06 04:44:07.130729 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| chu.....tie -2022-12-06 04:45:15.281092 + : pb-IF4XU0E5AQ== | UngainlyAluminum35|suii| ***y girl -2022-12-06 04:45:35.384862 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| kh na -2022-12-06 04:46:48.916323 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 🤣 -2022-12-06 04:47:00.639791 + : pb-IF4nU3IxEw== | divs2104|divs2104| 😔 -2022-12-06 04:47:14.613208 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| sry -2022-12-06 04:47:16.119544 + : pb-IF4nU3IxEw== | divs2104|divs2104| 🤣🤣 -2022-12-06 04:47:16.479658 + : pb-IF4nU3IxEw== | divs2104|divs2104| -2022-12-06 04:47:29.855651 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| mujhe maar k k8tna khush ho rhi h -2022-12-06 04:47:44.094951 + : pb-IF5TU20EMg== | Symmetric9|Willy| fk off red bitsh -2022-12-06 04:48:13.244674 + : pb-IF5TU20EMg== | Symmetric9|Willy| -2022-12-06 04:48:13.385312 + : pb-IF5TU20EMg== | Symmetric9|Willy| -2022-12-06 04:52:00.058063 + : pb-IF5TU20EMg== | Symmetric9|Willy| -2022-12-06 04:52:00.187257 + : pb-IF5TU20EMg== | Symmetric9|Willy| -2022-12-06 04:53:26.484145 + : pb-IF5TU20EMg== | Symmetric9|Willy| stupid team -2022-12-06 04:53:31.909543 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| wtf -2022-12-06 04:53:40.261273 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| why so high jump -2022-12-06 04:53:42.173080 + : pb-IF5TU20EMg== | Symmetric9|Willy| stfu -2022-12-06 04:54:49.839460 + : pb-IF4nU3IxEw== | divs2104|divs2104| 😒😒😒😒😒😒😒😒😒😒 -2022-12-06 04:55:11.869172 + : pb-IF4XU0E5AQ== | UngainlyAluminum35|suii| sorry -2022-12-06 04:55:26.161452 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| ok -2022-12-06 04:55:39.824596 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| div dede😁😚 -2022-12-06 04:56:42.600707 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 🤣mirgi -2022-12-06 04:56:58.779359 + : pb-IF4nU3IxEw== | divs2104|divs2104| 😏😏 -2022-12-06 05:00:09.630793 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| div 1 press kr -2022-12-06 05:04:22.655348 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| -2022-12-06 05:04:29.351835 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| sui -2022-12-06 05:04:35.719539 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| suiii -2022-12-06 05:04:39.982528 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| penaldo -2022-12-06 05:04:41.739088 + : pb-IF4XU0E5AQ== | UngainlyAluminum35|suii| yep -2022-12-06 05:04:43.594996 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| siuuuu -2022-12-06 05:05:44.495007 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| sry willow in the prev round -2022-12-06 05:06:48.565109 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| i want more football round -2022-12-06 05:07:29.093074 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| div😁 -2022-12-06 05:07:38.049221 + : pb-IF5WUxQlEw== | Linux52467|Suzanne| hi -2022-12-06 05:07:42.542345 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| hi -2022-12-06 05:08:12.790991 + : pb-IF4nU3IxEw== | divs2104|divs2104| 😁jaan -2022-12-06 05:08:23.139827 + : pb-IF5WUxQlEw== | Linux52467|Suzanne| i will come in a moment -2022-12-06 05:08:26.985992 + : pb-IF4XU0E5AQ== | UngainlyAluminum35|suii| sry vivek -2022-12-06 05:08:27.221430 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| chu....tia h kya -2022-12-06 05:08:36.130746 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| bahut baar kr lia -2022-12-06 05:10:37.457711 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| -2022-12-06 05:10:38.349747 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| -2022-12-06 05:10:43.815011 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| bangos -2022-12-06 05:10:58.019298 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| Vivek siuuu -2022-12-06 05:11:05.296710 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| Blue noobs -2022-12-06 05:11:05.618071 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| haaa bol -2022-12-06 05:11:10.285102 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| Vivek noob -2022-12-06 05:11:17.766115 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| ok🤣 -2022-12-06 05:11:21.345297 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| Vivek noob -2022-12-06 05:11:36.166668 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| hi my bro token -2022-12-06 05:11:43.823321 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| blue noobs -2022-12-06 05:11:45.704361 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| siuuu -2022-12-06 05:12:33.950641 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-06 05:12:34.147060 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-06 05:12:34.311483 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-06 05:12:34.618107 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-06 05:12:35.506086 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| lol khud noob hai -2022-12-06 05:12:52.397142 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| blue noobs -2022-12-06 05:13:28.143675 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-06 05:13:37.307667 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| lol -2022-12-06 05:13:55.426385 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| fti gan....d -2022-12-06 05:15:06.435436 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| fekh du😁 -2022-12-06 05:15:16.074026 + : pb-IF4nU3IxEw== | divs2104|divs2104| jaaaan😒 -2022-12-06 05:15:30.193986 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| sry😚 -2022-12-06 05:16:02.574044 + : pb-IF4nU3IxEw== | divs2104|divs2104| tu jaan h ki jaan ki dushman -2022-12-06 05:16:25.546313 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| jaan😁 -2022-12-06 05:16:53.928538 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| -2022-12-06 05:16:54.138339 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| -2022-12-06 05:16:58.764663 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| blue noob da -2022-12-06 05:17:29.575413 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| popat noob da -2022-12-06 05:18:53.299731 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| blue very booby -2022-12-06 05:19:06.242038 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| blue noobs -2022-12-06 05:19:21.409835 + : pb-IF4lU0xTVQ== | RattlingKestrel49176|RIYA| *** -2022-12-06 05:19:30.667013 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| popat biggest noob -2022-12-06 05:19:37.033135 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| don ur boob noob -2022-12-06 05:19:49.941554 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| i killed u -2022-12-06 05:19:52.843413 + : pb-IF4NUmY5Nw== | Stochasti4|radhi| uff nooboli -2022-12-06 05:19:53.706587 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| I fk u -2022-12-06 05:19:58.590213 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| popat noob da -2022-12-06 05:20:04.677678 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| most valuable player lol -2022-12-06 05:20:59.069768 + : pb-IF4lU0xTVQ== | RattlingKestrel49176|RIYA| poda *** t -2022-12-06 05:21:17.796929 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| Riya noob -2022-12-06 05:21:31.428236 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| -2022-12-06 05:21:54.897724 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| Riya lol -2022-12-06 05:22:24.238760 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| noobs -2022-12-06 05:22:25.118728 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-06 05:22:25.376955 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-06 05:22:32.769464 + : pb-IF4lU0xTVQ== | RattlingKestrel49176|RIYA| 🔥 -2022-12-06 05:23:56.952157 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| -2022-12-06 05:25:21.586782 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| -2022-12-06 05:25:21.762291 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| -2022-12-06 05:25:27.634990 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| popat noobda -2022-12-06 05:25:32.196072 + : pb-IF4lVxkZUQ== | hothareesh|Don Quixote| Riya noobdaaa -2022-12-06 05:26:16.233229 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| -2022-12-06 05:26:43.202598 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| noobs -2022-12-06 05:27:31.833947 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| lol -2022-12-06 05:27:39.029762 + : pb-IF4lU0xTVQ== | RattlingKestrel49176|RIYA| noops -2022-12-06 05:27:53.919686 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| -2022-12-06 05:27:57.640133 + : pb-IF4DU3AABw== | YogeYogesh14|YogeYogesh14| go -2022-12-06 05:28:10.930634 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| attacker noob -2022-12-06 05:28:36.729883 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| now u gone noob attacker -2022-12-06 05:29:01.172645 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| mazak ko mqjqk ki Tarah lo bhai -2022-12-06 05:29:06.982806 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| sorry -2022-12-06 05:29:07.373346 + : pb-IF4hVWspFw== | VIPINmMAIP|꧁𓊈𒆜 രാവണൻ| -2022-12-06 05:29:07.473110 + : pb-IF4hVWspFw== | VIPINmMAIP|꧁𓊈𒆜 രാവണൻ| -2022-12-06 05:29:07.653331 + : pb-IF4hVWspFw== | VIPINmMAIP|꧁𓊈𒆜 രാവണൻ| -2022-12-06 05:29:07.913779 + : pb-IF4hVWspFw== | VIPINmMAIP|꧁𓊈𒆜 രാവണൻ| -2022-12-06 05:29:09.106308 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| lv de mar kaise rha tu -2022-12-06 05:30:55.573843 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| -2022-12-06 05:53:21.195104 + : pb-IF5WUxQlEw== | Linux52467|Anamika| hii -2022-12-06 05:53:27.488490 + : pb-IF5WUxQlEw== | Linux52467|Anamika| :( -2022-12-06 05:53:35.072050 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 05:53:50.810824 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-06 05:53:50.958361 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-06 05:53:53.664117 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| siuu -2022-12-06 05:54:03.986359 + : pb-IF5WUxQlEw== | Linux52467|Anamika| christo ronaldo suiiiiii -2022-12-06 05:54:04.054190 + : pb-IF5WUxQlEw== | Linux52467|Anamika| -2022-12-06 05:54:13.908700 + : pb-IF5WUxQlEw== | Linux52467|Anamika| why u kill me chainsaw -2022-12-06 05:54:42.749594 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| by mistake -2022-12-06 05:54:48.869572 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| anamika -2022-12-06 05:54:55.686009 + : pb-IF5WUxQlEw== | Linux52467|Anamika| yess -2022-12-06 05:55:19.603404 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ye lelo rare 🌹 -2022-12-06 05:55:33.864413 + : pb-IF5WUxQlEw== | Linux52467|Anamika| rae kya hai? -2022-12-06 05:55:40.340654 + : pb-IF5WUxQlEw== | Linux52467|Anamika| rare kya hai mafia? -2022-12-06 05:56:04.603295 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| bcs ye regiztan me ughta he duniya ka ek last flower -2022-12-06 05:56:09.508400 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 😁 -2022-12-06 05:56:13.858682 + : pb-IF5WUxQlEw== | Linux52467|Anamika| wow -2022-12-06 05:57:28.450362 + : pb-IF5WUxQlEw== | Linux52467|Anamika| yay -2022-12-06 05:59:36.594671 + : pb-IF5WUxQlEw== | Linux52467|Anamika| :(( -2022-12-06 05:59:56.655674 + : pb-IF4hBFgH | MrDevil|MrDevil| Khiladi bhaiya Khiladi bhaiya Khiladi -2022-12-06 06:00:19.467712 + : pb-IF5WUxQlEw== | Linux52467|Anamika| mafia bhaiya mafia bhaiya :D -2022-12-06 06:00:26.928417 + : pb-IF4hBFgH | MrDevil|MrDevil| captain America amrica ka dalal -2022-12-06 06:00:42.563119 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 🥀🥀 -2022-12-06 06:00:46.644690 + : pb-IF5WUxQlEw== | Linux52467|Anamika| devil teri tohh -2022-12-06 06:01:27.234627 + : pb-IF4hBFgH | MrDevil|MrDevil| itta pyaar hai mujhse -2022-12-06 06:01:37.358053 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 💔 -2022-12-06 06:01:52.294891 + : pb-IF5WUxQlEw== | Linux52467|Anamika| bada funny hai tu devil :D -2022-12-06 06:02:32.643503 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| anamika 🤨 devil🤨🤨 -2022-12-06 06:02:50.141218 + : pb-IF4hBFgH | MrDevil|MrDevil| Mere baarein mein itna mat sochna Dil mein aata hoon samajh mein nahi -2022-12-06 06:02:59.478703 + : pb-IF5WUxQlEw== | Linux52467|Anamika| ooh -2022-12-06 06:03:14.366320 + : pb-IF5WUxQlEw== | Linux52467|Anamika| lagta hai tum acche shayar ho -2022-12-06 06:03:32.279750 + : pb-IF4hBFgH | MrDevil|MrDevil| ji haan main hu Khalnayak -2022-12-06 06:03:36.044191 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| anamika me bi hu😏 -2022-12-06 06:03:39.692675 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| lun mera -2022-12-06 06:03:49.180336 + : pb-IF5WUxQlEw== | Linux52467|Anamika| are mafia sorry -2022-12-06 06:04:02.150575 + : pb-IF5WUxQlEw== | Linux52467|Anamika| tum dono cute ho -2022-12-06 06:04:02.465730 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| mebi shayar hu😏 -2022-12-06 06:04:11.426051 + : pb-IF5WUxQlEw== | Linux52467|Anamika| toh sunao -2022-12-06 06:04:13.907425 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| bolu? -2022-12-06 06:04:27.836599 + : pb-IF4hBFgH | MrDevil|MrDevil| bina dekhe kisiko cute kehne wale boht natkhat hote hai -2022-12-06 06:04:28.298646 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| RED PLAY OR ELSE KICK -2022-12-06 06:05:05.210022 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| sky is blue, blood is red, my heart khaali for u -2022-12-06 06:05:06.191181 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| kick -2022-12-06 06:05:17.976785 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 😁 -2022-12-06 06:05:23.213284 + : pb-IF4hBFgH | MrDevil|MrDevil| nice naughty -2022-12-06 06:06:41.028406 + : pb-IF4hBFgH | MrDevil|MrDevil| chitti -2022-12-06 06:07:31.500421 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| sry -2022-12-06 06:07:51.259123 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| sorry -2022-12-06 06:07:59.932736 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| 😁 -2022-12-06 06:08:03.747375 + : pb-IF4uU3gNKQ== | CKD360|CKD| alallala -2022-12-06 06:08:16.173997 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ooops sorry -2022-12-06 06:08:25.160486 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| thik he mafia -2022-12-06 06:09:35.190303 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| yeah mron -2022-12-06 06:09:42.540301 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| i hit you once, dont turn this uglky -2022-12-06 06:09:54.010488 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| tej?? -2022-12-06 06:10:09.307017 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| sorry -2022-12-06 06:10:26.013604 + : pb-IF4hBFgH | MrDevil|MrDevil| meri mehbuba kaha gyi -2022-12-06 06:10:42.758846 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| nigga -2022-12-06 06:11:18.780514 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| mera rare flower leke gai😏 -2022-12-06 06:11:36.617340 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| fk red -2022-12-06 06:11:36.971461 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| sorry😂😂😂😂 -2022-12-06 06:11:57.380554 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| sorry -2022-12-06 06:12:40.307479 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 06:12:40.407561 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 06:12:40.558590 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 06:12:40.737383 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 06:12:45.930207 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| ohh god -2022-12-06 06:12:55.130909 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| mafia?? -2022-12-06 06:13:49.062397 + : pb-IF4hBFgH | MrDevil|MrDevil| My ping = 0ms -2022-12-06 06:13:52.531358 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ckd😁😂😘 -2022-12-06 06:14:05.300501 + : pb-IF4hBFgH | MrDevil|MrDevil| amrica ka dalal -2022-12-06 06:14:07.637648 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| BLUE WILL NEVER WIN AGAIN -2022-12-06 06:14:08.227862 + : pb-IF4uU3gNKQ== | CKD360|CKD| 🤣🤣 -2022-12-06 06:14:16.174138 + : pb-IF4tCRgv | captshivi|Hitman 🤬| red team is full of noobe -2022-12-06 06:14:31.130462 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| tu b kuch kar le -2022-12-06 06:15:04.814137 + : pb-IF4hBFgH | MrDevil|MrDevil| amrica ka dalal -2022-12-06 06:15:53.964633 + : pb-IF4hBFgH | MrDevil|MrDevil| amrica ka dalal -2022-12-06 06:17:03.671336 + : pb-IF4tCRgv | captshivi|Hitman 🤬| -2022-12-06 06:17:03.853272 + : pb-IF4tCRgv | captshivi|Hitman 🤬| -2022-12-06 06:17:04.011929 + : pb-IF4tCRgv | captshivi|Hitman 🤬| -2022-12-06 06:17:04.143843 + : pb-IF4tCRgv | captshivi|Hitman 🤬| -2022-12-06 06:17:08.256524 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| maybe kikc partha first -2022-12-06 06:17:59.298408 + : pb-IF4hBFgH | MrDevil|MrDevil| haraam jaada -2022-12-06 06:18:14.290847 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| abbu tera -2022-12-06 06:18:17.677304 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| parth lulu -2022-12-06 06:18:26.731540 + : pb-IF4hBFgH | MrDevil|MrDevil| parth lulli k shakal k -2022-12-06 06:18:34.490575 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| thank u -2022-12-06 06:19:08.882630 + : pb-IF4hBFgH | MrDevil|MrDevil| nice team work guys -2022-12-06 06:19:24.531039 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| tu apni team me dhyan de -2022-12-06 06:19:26.669342 + : pb-IF4hBFgH | MrDevil|MrDevil| iron man kya sajjan ho tum -2022-12-06 06:19:56.487264 + : pb-IF4uU3gNKQ== | CKD360|CKD| 0 -2022-12-06 06:20:14.927111 + : pb-IF4hBFgH | MrDevil|MrDevil| 0 -2022-12-06 06:20:19.950669 + : pb-IF4tCRgv | captshivi|Hitman 🤬| ******* red team -2022-12-06 06:21:35.786197 + : pb-IF4hBFgH | MrDevil|MrDevil| chitti the robo boy -2022-12-06 06:21:39.368554 + : pb-IF4uU3gNKQ== | CKD360|CKD| hai himmat koi blue kk hara sake -2022-12-06 06:21:49.180660 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| 😂😂👍 -2022-12-06 06:21:58.268064 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| maybe we will atleast win this -2022-12-06 06:22:03.186547 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| no violence -2022-12-06 06:22:15.497772 + : pb-IF4uU3gNKQ== | CKD360|CKD| no violence only kick🤣 -2022-12-06 06:22:18.928365 + : pb-IF4hBFgH | MrDevil|MrDevil| can I come in red ? -2022-12-06 06:22:23.820795 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| yes😂 -2022-12-06 06:22:33.224151 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| and partha lala goto blue -2022-12-06 06:22:38.680582 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ohk -2022-12-06 06:22:40.597977 + : pb-IF4UVGg8KQ== | LionAlpha7|Iron man| come on red -2022-12-06 06:22:45.412385 + : pb-IF4uU3gNKQ== | CKD360|CKD| partha aja -2022-12-06 06:22:47.310313 + : pb-IF4hBFgH | MrDevil|| red only need team work -2022-12-06 06:23:02.588408 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ab majaa aayega bidu -2022-12-06 06:23:10.032749 + : pb-IF4hBFgH | MrDevil|MrDevil| play for fun 🤪 haar jeet toh hote rehti -2022-12-06 06:23:29.991706 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| yeah we won one round!!! -2022-12-06 06:23:31.060978 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| crezy ko jyada charbi he win hone ki -2022-12-06 06:23:47.792781 + : pb-IF4uU3gNKQ== | CKD360|CKD| 🤣 -2022-12-06 06:23:51.827210 + : pb-IF4hBFgH | MrDevil|MrDevil| red mein ek bawasir hai bss -2022-12-06 06:24:13.116238 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| wow anotjher win -2022-12-06 06:24:16.002843 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| tera baap bwasir -2022-12-06 06:24:21.445706 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| 😂😂 -2022-12-06 06:24:28.829648 + : pb-IF4hBFgH | MrDevil|MrDevil| chainsaw tere baap ko bawasir I know -2022-12-06 06:24:38.282396 + : pb-IF4uU3gNKQ== | CKD360|CKD| khuni bawasir -2022-12-06 06:24:39.995714 + : pb-IF4gV1gCMQ== | EliteWallaby35692|CHITTI| insta I'd :atharvapawaskar_000 -2022-12-06 06:24:47.288525 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| 😂😂 -2022-12-06 06:24:53.053433 + : pb-IF4hBFgH | MrDevil|MrDevil| isko ban pakka karwaaunga abb 😹 -2022-12-06 06:25:04.302433 + : pb-IF4hBFgH | MrDevil|MrDevil| krwaau chainsaw ? -2022-12-06 06:25:06.261048 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ckd wt?? -2022-12-06 06:25:08.562819 + : pb-IF4uU3gNKQ== | CKD360|CKD| sry -2022-12-06 06:25:34.460485 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| wo kya tha be -2022-12-06 06:25:37.962485 + : pb-IF4uU3gNKQ== | CKD360|CKD| ye ban ho chuka uska dusri id hai🤣 -2022-12-06 06:25:46.612916 + : pb-IF4uU3gNKQ== | CKD360|CKD| ice bomb partha? -2022-12-06 06:25:47.387261 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| jingal bell jingal bell -2022-12-06 06:26:01.402000 + : pb-IF4hBFgH | MrDevil|MrDevil| My ping = 0ms -2022-12-06 06:26:06.553146 + : pb-IF4hBFgH | MrDevil|MrDevil| bisi net n -2022-12-06 06:26:12.111844 + : pb-IF4hBFgH | MrDevil|MrDevil| yaaaaaar -2022-12-06 06:26:29.004470 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| bears☕ -2022-12-06 06:26:31.136610 + : pb-IF4hBFgH | MrDevil|MrDevil| yeh chainsaw ki lulli dekh li net atak gya -2022-12-06 06:26:40.428645 + : pb-IF4SU00JHw== | Jayrajsinh1202|boboX| l -2022-12-06 06:26:41.738066 + : pb-IF4UVGg8KQ== | LionAlpha7|Iron man| vote -2022-12-06 06:27:18.520450 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| -2022-12-06 06:27:18.685627 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| -2022-12-06 06:27:48.603065 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 06:27:48.792425 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 06:27:48.942429 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 06:27:52.829247 + : pb-IF4hBFgH | MrDevil|MrDevil| nice abb khelo -2022-12-06 06:29:02.503453 + : pb-IF4hBFgH | MrDevil|MrDevil| koi nhi -2022-12-06 06:29:28.752699 + : pb-IF4hBFgH | MrDevil|MrDevil| arre re -2022-12-06 06:29:29.252540 + : pb-IF4uU3gNKQ== | CKD360|CKD| lol -2022-12-06 06:29:38.829472 + : pb-IF4hBFgH | MrDevil|MrDevil| yeh bosri wale -2022-12-06 06:30:30.200294 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| -2022-12-06 06:30:30.360355 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| -2022-12-06 06:30:31.036169 + : pb-IF4uU3gNKQ== | CKD360|CKD| chai saw ** ban kardunga phir se -2022-12-06 06:30:33.428997 + : pb-IF4hBFgH | MrDevil|MrDevil| bhai kitna bhi krle red mein bohot kamaal huti log hai -2022-12-06 06:30:56.730954 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| crezy ki chul nikal ni he harwaake -2022-12-06 06:31:34.000317 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| -2022-12-06 06:31:34.160604 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| -2022-12-06 06:31:35.803783 + : pb-IF4hBFgH | MrDevil|MrDevil| yaar -2022-12-06 06:32:04.388067 + : pb-IF4hBFgH | MrDevil|MrDevil| red mein team work kam log hi krre -2022-12-06 06:33:20.942133 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| 🕶😎 -2022-12-06 06:33:36.084039 + : pb-IF4DU0IEJg== | CHAINSAW|CKD LODA| -2022-12-06 06:33:36.501465 + : pb-IF4DU0IEJg== | CHAINSAW|CKD LODA| -2022-12-06 06:33:37.060856 + : pb-IF4DU0IEJg== | CHAINSAW|CKD LODA| -2022-12-06 06:33:52.602397 + : pb-IF4uU3gNKQ== | CKD360|CKD| chainsaw🏳️‍🌈🧚‍♀️ -2022-12-06 06:34:16.432951 + : pb-IF4DU0IEJg== | CHAINSAW|CKD LODA| ckd🫂🐕‍🦺 -2022-12-06 06:34:30.000473 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| 😎 -2022-12-06 06:34:46.060498 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| crezy?? -2022-12-06 06:36:09.368819 + : pb-IF4hBFgH | MrDevil|MrDevil| My ping = 1ms -2022-12-06 06:36:11.382397 + : pb-IF4uU3gNKQ== | CKD360|CKD| chumtiya mad dog -2022-12-06 06:36:21.062389 + : pb-IF4uU3gNKQ== | CKD360|CKD| amg -2022-12-06 06:36:22.120737 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| uska baap b chumtiya -2022-12-06 06:36:49.690365 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|| aaya kuch der mei bajane -2022-12-06 06:36:51.405572 + : pb-IF4hBFgH | MrDevil|MrDevil| waah -2022-12-06 06:37:58.838651 + : pb-IF4hBFgH | MrDevil|MrDevil| land bombers -2022-12-06 06:38:17.860338 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| -2022-12-06 06:38:18.010461 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| -2022-12-06 06:38:18.066505 + : pb-IF4DU0IEJg== | CHAINSAW|CKD LODA| -2022-12-06 06:38:18.445730 + : pb-IF4DU0IEJg== | CHAINSAW|CKD LODA| -2022-12-06 06:38:18.947718 + : pb-IF4DU0IEJg== | CHAINSAW|CKD LODA| -2022-12-06 06:39:42.778353 + : pb-IF4DU0IEJg== | CHAINSAW|CKD LODA| -2022-12-06 06:39:43.904018 + : pb-IF4DU0IEJg== | CHAINSAW|CKD LODA| -2022-12-06 06:39:44.212463 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 06:39:44.808137 + : pb-IF4DU0IEJg== | CHAINSAW|CKD LODA| -2022-12-06 06:40:00.970383 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| bahot chul machi he? -2022-12-06 06:40:05.815865 + : pb-IF4hBFgH | MrDevil|MrDevil| shit -2022-12-06 06:40:09.692338 + : pb-IF4uU3gNKQ== | CKD360|CKD| 😂 -2022-12-06 06:40:16.717830 + : pb-IF4hBFgH | MrDevil|MrDevil| bhai bomb sar par -2022-12-06 06:40:19.466581 + : pb-IF4hBFgH | MrDevil|MrDevil| sed -2022-12-06 06:40:23.477360 + : pb-IF4UVGg8KQ== | LionAlpha7|Iron man| lol -2022-12-06 06:40:50.585312 + : pb-IF4hBFgH | MrDevil|MrDevil| 3 v 7 -2022-12-06 06:41:04.662575 + : pb-IF4uU3gNKQ== | CKD360|CKD| maddog balance kr rha hai na😂 -2022-12-06 06:41:10.760606 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| haa -2022-12-06 06:41:33.701305 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| do or di b esa he -2022-12-06 06:42:06.400455 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| aaj ghar pe kisine khana nai diya lagta -2022-12-06 06:42:19.470393 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| berojgar ki aulaad -2022-12-06 06:42:38.109321 + : pb-IF4hBFgH | MrDevil|MrDevil| sed -2022-12-06 06:42:52.934051 + : pb-IF4hBFgH | MrDevil|MrDevil| bhai kyu apna muh ganda krte ho -2022-12-06 06:43:00.657308 + : pb-IF4hBFgH | MrDevil|MrDevil| kisiko itni value mat do -2022-12-06 06:43:15.470533 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| pareshan kar rahaa he wo -2022-12-06 06:43:57.184045 + : pb-IF4hBFgH | MrDevil|MrDevil| koi toh aaya red mein -2022-12-06 06:44:15.400172 + : pb-IF4hBFgH | MrDevil|MrDevil| ItzMeRoman tu vohi hai na Jo gaali Diya tha -2022-12-06 06:44:23.042993 + : pb-IF4hBFgH | MrDevil|MrDevil| roman -2022-12-06 06:44:28.202538 + : pb-IF4uU3gNKQ== | CKD360|CKD| bcs -2022-12-06 06:44:30.460499 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| white is piro but still attention seekar -2022-12-06 06:44:37.117623 + : pb-IF4UVGg8KQ== | LionAlpha7|Iron man| white career bana le esi me -2022-12-06 06:44:38.791264 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| 🗿 -2022-12-06 06:44:43.125693 + : pb-IF4hBFgH | MrDevil|MrDevil| 😹😹 -2022-12-06 06:44:48.034540 + : pb-IF4hBFgH | MrDevil|MrDevil| khelo bhai -2022-12-06 06:44:48.280913 + : pb-IF4QUmRTFQ== | KINGTN50|GФD ҜILLΞЯ| no piro its pro -2022-12-06 06:44:48.452683 + : pb-IF4uU3gNKQ== | CKD360|CKD| god of simp -2022-12-06 06:44:51.239021 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| lalalalalal -2022-12-06 06:45:03.128820 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| Abe saley -2022-12-06 06:45:09.280380 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| hy hakuna -2022-12-06 06:45:09.861132 + : pb-IF4QUmRTFQ== | KINGTN50|GФD ҜILLΞЯ| I am so nooby -2022-12-06 06:45:10.489610 + : pb-IF4hBFgH | MrDevil|MrDevil| yaha ek baat buri hai admin nahi milta kisiko -2022-12-06 06:45:18.439169 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| holaa lalalal -2022-12-06 06:45:25.967680 + : pb-IF4UVGg8KQ== | LionAlpha7|Iron man| kya *******i hai, khelo -2022-12-06 06:45:33.450555 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| holla hello -2022-12-06 06:45:34.661321 + : pb-IF4QUmRTFQ== | KINGTN50|GФD ҜILLΞЯ| fight -2022-12-06 06:45:39.900328 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| end -2022-12-06 06:45:44.482618 + : pb-IF4uU3gNKQ== | CKD360|CKD| end -2022-12-06 06:45:47.475013 + : pb-IF4hBFgH | MrDevil|MrDevil| end -2022-12-06 06:45:48.217368 + : pb-IF4UVGg8KQ== | LionAlpha7|Iron man| 1 -2022-12-06 06:45:53.049724 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| are koi gali de rha h.. ********* bol rha h -2022-12-06 06:45:59.606501 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| maine 8kisko gaali deya bruh -2022-12-06 06:46:21.978894 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| sala is server me bhi ban kr dia gali ko -2022-12-06 06:46:30.468856 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| ee kab bua -2022-12-06 06:46:36.115330 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-06 06:46:36.479618 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-06 06:46:41.757342 + : pb-IF4uU3gNKQ== | CKD360|CKD| tujhe bhi toh hona tha🤣 -2022-12-06 06:47:21.878211 + : pb-IF4hBFgH | MrDevil|MrDevil| ghuss k maare -2022-12-06 06:47:38.554198 + : pb-IF4QUmRTFQ== | KINGTN50|GФD ҜILLΞЯ| white give chance to kill all -2022-12-06 06:47:42.071152 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| y'all dumb💀 -2022-12-06 06:47:50.304937 + : pb-IF4hBFgH | MrDevil|MrDevil| bhai server mein abuser not allowed -2022-12-06 06:48:00.398837 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| ye kyu hua pr -2022-12-06 06:48:04.152211 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| to kick karde mujhe -2022-12-06 06:48:13.726313 + : pb-IF4hBFgH | MrDevil|MrDevil| bacche baap bann rhe the issiliye -2022-12-06 06:48:19.657120 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| Hinglish mai de sakte ho -2022-12-06 06:48:19.848998 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| kitna acha toxic server tha yar -2022-12-06 06:48:33.694730 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| चुटिया -2022-12-06 06:48:37.932421 + : pb-IF4uU3gNKQ== | CKD360|CKD| mene krvaya🙂 -2022-12-06 06:48:44.148917 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| Abe sale -2022-12-06 06:48:47.616897 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| एम सी -2022-12-06 06:48:52.544486 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| 😌 -2022-12-06 06:49:07.212489 + : pb-IF4uU3gNKQ== | CKD360|CKD| aur ban kala k sathi😏 -2022-12-06 06:49:08.258868 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| love da lele -2022-12-06 06:49:11.876570 + : pb-IF4hBFgH | MrDevil|MrDevil| abb lagta hai hindi mein bhi chatfilter add krna padega 😹 -2022-12-06 06:49:26.609578 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| Han ye krlo tum -2022-12-06 06:49:27.434928 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| tab mai Japanese mai dunga -2022-12-06 06:49:34.440219 + : pb-IF4QUmRTFQ== | KINGTN50|GФD ҜILLΞЯ| mr devil chance -2022-12-06 06:49:35.697221 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| gaali nahi rukega -2022-12-06 06:49:36.559076 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| Sara maza bigad dia server ka -2022-12-06 06:49:49.027403 + : pb-IF4uU3gNKQ== | CKD360|CKD| 🎃 -2022-12-06 06:49:51.317702 + : pb-IF4QUmRTFQ== | KINGTN50|GФD ҜILLΞЯ| bro chance -2022-12-06 06:50:32.716128 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| mujhe Pro bolte bolte khud hi Piro ban gaya🗿 -2022-12-06 06:50:44.309128 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| akhand love da -2022-12-06 06:51:11.345509 + : pb-IF4QUmRTFQ== | KINGTN50|GФD ҜILLΞЯ| bro chance -2022-12-06 06:51:13.999014 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| chi chi chi ckd -2022-12-06 06:51:14.430867 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| bye gays -2022-12-06 06:51:18.828856 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| guys* -2022-12-06 06:51:20.308584 + : pb-IF4uU3gNKQ== | CKD360|CKD| 😏😏 -2022-12-06 06:51:21.309726 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| red ne koi aana chahta he -2022-12-06 06:51:24.253999 + : pb-IF4hBFgH | MrDevil|MrDevil| srry chat nahi dekha tha -2022-12-06 06:51:31.138960 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| byeee white lulli -2022-12-06 06:51:44.769468 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| hakuna ghana divaso pachi? -2022-12-06 06:51:50.062130 + : pb-IF4hBFgH | MrDevil|MrDevil| srry god killer -2022-12-06 06:51:52.827762 + : pb-IF4QUmRTFQ== | KINGTN50|GФD ҜILLΞЯ| ahh fk -2022-12-06 06:51:54.269593 + : pb-IF4hBFgH | MrDevil|MrDevil| mene dekha nahi chat -2022-12-06 06:52:01.159722 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| hau new state ramu chu aajkal -2022-12-06 06:52:12.987329 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| 👁️👄👁️ -2022-12-06 06:52:16.517198 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| whutt -2022-12-06 06:52:18.249271 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ohk -2022-12-06 06:52:25.402852 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| tata everyone -2022-12-06 06:52:33.928819 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| tata lulli -2022-12-06 06:54:29.649263 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| OMGGGG -2022-12-06 06:54:32.869250 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| lul -2022-12-06 06:54:33.495698 + : pb-IF4hBFgH | MrDevil|MrDevil| tum kya mast kaam karte ho maksud bhai -2022-12-06 06:54:34.900766 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| lol -2022-12-06 06:54:35.037462 + : pb-IF4QUmRTFQ== | KINGTN50|GФD ҜILLΞЯ| gg -2022-12-06 06:54:37.446739 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| LOL -2022-12-06 06:54:38.157774 + : pb-IF4QUmRTFQ== | KINGTN50|GФD ҜILLΞЯ| gg -2022-12-06 06:54:48.775044 + : pb-IF4QUmRTFQ== | KINGTN50|GФD ҜILLΞЯ| -2022-12-06 06:55:36.169774 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| u are dead partha -2022-12-06 06:55:49.962256 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| race me muje kyu mara? -2022-12-06 06:55:59.543358 + : pb-IF4hBFgH | MrDevil|MrDevil| nice -2022-12-06 06:56:06.253938 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| so u killed me 4 times? -2022-12-06 06:56:18.372076 + : pb-IF4hBFgH | MrDevil|MrDevil| panic mat ho bhai araam se khelo -2022-12-06 06:56:38.015788 + : pb-IF4hBFgH | MrDevil|MrDevil| kisne cat mene ? -2022-12-06 06:56:49.557842 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| 1 -2022-12-06 06:56:50.192724 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| muje bol rahaa wo -2022-12-06 06:56:57.936162 + : pb-IF4QUmRTFQ== | KINGTN50|GФD ҜILLΞЯ| i am noob see -2022-12-06 06:57:00.342235 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| pehle khud ka dekh cate -2022-12-06 06:57:06.061231 + : pb-IF4hBFgH | MrDevil|MrDevil| sed -2022-12-06 06:57:27.069842 + : pb-IF4hBFgH | MrDevil|MrDevil| play for fun guys -2022-12-06 06:57:46.869167 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| fun to Oyo me hota h idhr to rage niklta h -2022-12-06 06:58:08.732163 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| cat ko chul machi he -2022-12-06 06:58:20.732237 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| 0 -2022-12-06 06:58:21.017387 + : pb-IF4uU3gNKQ== | CKD360|CKD| 1111 -2022-12-06 06:58:54.958984 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| mar gya Babu chorr -2022-12-06 06:59:01.333150 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| 😂 -2022-12-06 06:59:11.030527 + : pb-IF4QUmRTFQ== | KINGTN50|GФD ҜILLΞЯ| gg -2022-12-06 06:59:11.496105 + : pb-IF4hBFgH | MrDevil|MrDevil| gg -2022-12-06 06:59:44.133115 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| chal cat ab hum fight karenge thik he -2022-12-06 06:59:48.909724 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| kala lulli pila lulli band hogya is server me ab -2022-12-06 07:00:31.495077 + : pb-IF4hBFgH | MrDevil|MrDevil| My ping = 0ms -2022-12-06 07:00:52.522490 + : pb-IF4hBFgH | MrDevil|MrDevil| nice team work man -2022-12-06 07:01:07.668944 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| oka byee -2022-12-06 07:02:15.923701 + : pb-IF4hBFgH | MrDevil|MrDevil| maar lo -2022-12-06 07:02:24.832103 + : pb-IF4hBFgH | MrDevil|MrDevil| je baat -2022-12-06 07:02:26.033543 + : pb-IF4uU3gNKQ== | CKD360|CKD| bye -2022-12-06 07:02:33.113493 + : pb-IF4hBFgH | MrDevil|MrDevil| bye bhai -2022-12-06 07:02:46.221889 + : pb-IF4hBFgH | MrDevil|MrDevil| me nub in this -2022-12-06 07:02:52.617536 + : pb-IF4uU3gNKQ== | CKD360|CKD| ye khel leta hun -2022-12-06 07:02:59.172270 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| mar gayaa chadar mod -2022-12-06 07:03:03.382797 + : pb-IF4hBFgH | MrDevil|MrDevil| me nub 🥺🥺 -2022-12-06 07:03:42.739625 + : pb-IF4hBFgH | MrDevil|MrDevil| pati fauj mein biwi mauj mein -2022-12-06 07:03:49.932597 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| 😂 -2022-12-06 07:04:12.563334 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| mar gayaa chadar mod -2022-12-06 07:04:18.899486 + : pb-IF4hBFgH | MrDevil|MrDevil| dekhe -2022-12-06 07:04:29.107485 + : pb-IF4hBFgH | MrDevil|MrDevil| mekko yeh map mein jagah badi chaiye -2022-12-06 07:04:40.257591 + : pb-IF4hBFgH | MrDevil|MrDevil| afk killer -2022-12-06 07:04:59.190866 + : pb-IF4rUmcIUg== | Android55446423|Shine| -2022-12-06 07:04:59.350396 + : pb-IF4rUmcIUg== | Android55446423|Shine| -2022-12-06 07:05:21.580553 + : pb-IF4hBFgH | MrDevil|MrDevil| My ping = 0ms -2022-12-06 07:05:37.890369 + : pb-IF4rUmcIUg== | Android55446423|Shine| ping means -2022-12-06 07:05:46.681274 + : pb-IF4hBFgH | MrDevil|MrDevil| internet speed samjh lo -2022-12-06 07:06:13.410408 + : pb-IF4rUmcIUg== | Android55446423|Shine| 0 hoga toh chalega bhi nahi -2022-12-06 07:06:34.277300 + : pb-IF4hBFgH | MrDevil|MrDevil| ping jitna Kam hoga utna smooth chalega game -2022-12-06 07:06:48.941532 + : pb-IF4hBFgH | MrDevil|MrDevil| jitna high ping hoga utna hagega lagg hoga -2022-12-06 07:07:41.215657 + : pb-IF4hBFgH | MrDevil|MrDevil| yaar -2022-12-06 07:07:45.275365 + : pb-IF4hBFgH | MrDevil|MrDevil| mene haga -2022-12-06 07:07:47.370289 + : pb-IF4rUmcIUg== | Android55446423|Shine| ha -2022-12-06 07:07:50.351673 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| nois -2022-12-06 07:07:52.293298 + : pb-IF4hBFgH | MrDevil|MrDevil| chalo bye guys -2022-12-06 07:08:41.046285 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-06 07:08:43.216752 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| veri nois -2022-12-06 07:08:47.483796 + : pb-IF4nUxE4Nw== | Android60071137|john wick| noice -2022-12-06 07:09:05.846307 + : pb-IF4nUxE4Nw== | Android60071137|john wick| abey bhalu -2022-12-06 07:09:39.430411 + : pb-IF4rUmcIUg== | Android55446423|Shine| -2022-12-06 07:09:39.590408 + : pb-IF4rUmcIUg== | Android55446423|Shine| -2022-12-06 07:10:35.130435 + : pb-IF4rUmcIUg== | Android55446423|Shine| hello huya all of proper indian -2022-12-06 07:11:00.650621 + : pb-IF4rUmcIUg== | Android55446423|Shine| *guys -2022-12-06 07:11:46.756844 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-06 07:14:32.664118 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-06 07:14:32.853926 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-06 07:14:58.134101 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| hehe -2022-12-06 07:15:01.042719 + : pb-IF4nUxE4Nw== | Android60071137|john wick| sru -2022-12-06 07:15:04.514274 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-06 07:15:04.664066 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-06 07:16:09.536710 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-06 07:16:09.931665 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-06 07:16:10.349490 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-06 07:16:11.035422 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| noise -2022-12-06 07:16:36.445978 + : pb-IF40UkQYJg== | Navestien6|मोटू भालू| -2022-12-06 07:16:54.529378 + : pb-IF4nUxE4Nw== | Android60071137|john wick| thanks pati -2022-12-06 07:16:59.076952 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| bhai -2022-12-06 07:17:01.036036 + : pb-IF40UkQYJg== | Navestien6|मोटू भालू| nice bomb -2022-12-06 07:17:45.281323 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| move closer corona -2022-12-06 07:17:54.347362 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| tf u bombing from home -2022-12-06 07:18:49.226026 + : pb-IF4rUmcIUg== | Android55446423|Shine| ***.k...off.... -2022-12-06 07:19:13.716633 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| Abe jagdu upar se ja -2022-12-06 07:20:23.929883 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| noise -2022-12-06 07:20:34.177321 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| vote fast -2022-12-06 07:21:13.092248 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| krish noobde ******e -2022-12-06 07:21:17.363470 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| sorry -2022-12-06 07:22:30.183702 + : pb-IF4rUmcIUg== | Android55446423|Shine| sorry -2022-12-06 07:22:40.166152 + : pb-IF40UkQYJg== | Navestien6|मोटू भालू| -2022-12-06 07:24:00.230774 + : pb-IF4rUmcIUg== | Android55446423|Shine| -2022-12-06 07:24:00.370739 + : pb-IF4rUmcIUg== | Android55446423|Shine| -2022-12-06 07:25:39.934847 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| vote -2022-12-06 07:25:43.087297 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-06 07:25:43.860576 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-06 07:25:44.942379 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-06 07:25:46.183103 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-06 07:25:51.552006 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| VOTE -2022-12-06 07:25:53.489184 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-06 07:25:54.543965 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-06 07:25:56.747725 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-06 07:26:06.603543 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-06 07:26:07.526127 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| vote -2022-12-06 07:26:13.694888 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| 0 -2022-12-06 07:27:09.894720 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-06 07:27:10.196280 + : pb-IF40UkQYJg== | Navestien6|मोटू भालू| teamwork -2022-12-06 07:27:12.348398 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| crazycat noobde -2022-12-06 07:27:16.189173 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| women🗿☕ -2022-12-06 07:27:16.365707 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| blue me.kyu aya -2022-12-06 07:27:17.609081 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-06 07:27:18.589167 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-06 07:27:19.096440 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| hehe -2022-12-06 07:27:29.600069 + : pb-IF4NU04dKQ== | Android63983749|Android63983749| shine stop hurt me -2022-12-06 07:28:52.814398 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-06 07:29:00.199674 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| crazy cat madarch00000d -2022-12-06 07:31:48.994202 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| crazy good sry -2022-12-06 07:31:54.506041 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| np -2022-12-06 07:32:34.537860 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| when someone votes 0 for a betrayer -2022-12-06 07:32:42.687205 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| they get owned -2022-12-06 07:33:00.556066 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| crazy cat ka ma ch0d diya -2022-12-06 07:33:05.721314 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| simple -2022-12-06 07:33:06.480371 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| ☕ -2022-12-06 07:33:14.587378 + : pb-IF4NU04dKQ== | Android63983749|Android63983749| i hate shine she punch me and im her team -2022-12-06 07:33:54.936592 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| yahooo -2022-12-06 07:36:17.545645 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| abe sale chainsaw -2022-12-06 07:36:39.068087 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| gaali Diya report karta h -2022-12-06 07:36:51.913789 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| kar -2022-12-06 07:37:36.747063 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| haha -2022-12-06 07:37:42.803785 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| pls don't take curse -2022-12-06 07:37:51.933489 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| very noise -2022-12-06 07:38:24.469084 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| noobde crazy cat -2022-12-06 07:38:46.774705 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| crazy car ********** -2022-12-06 07:39:44.679531 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| g -2022-12-06 07:39:45.030157 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| haha -2022-12-06 07:39:48.822654 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| gg -2022-12-06 07:39:49.585199 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| 1 -2022-12-06 07:39:54.614669 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| gg crazy -2022-12-06 07:40:03.419563 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| soo confusing whome to hit -2022-12-06 07:40:40.019928 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| chainsaw Kya problem hai -2022-12-06 07:42:06.819228 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| hehehe -2022-12-06 07:42:47.367182 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| yahooooooo -2022-12-06 07:43:27.940275 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| wait I will report chainsaw id on discord -2022-12-06 07:43:36.567515 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| nice pls do that -2022-12-06 07:43:59.682761 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| if chainsaw is gone, I will not betray -2022-12-06 07:47:25.799494 + : pb-IF4gU0wxBw== | VOIDG0D|| Reported -2022-12-06 07:47:38.287976 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| PEACE WITH ME -2022-12-06 07:48:58.580800 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| petronas kyu yar😂 -2022-12-06 07:49:15.288256 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| red ki gmd mar -2022-12-06 07:50:13.725757 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| VERY SRY -2022-12-06 07:51:37.628000 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| noise -2022-12-06 07:51:59.424079 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| LOL violated by noise -2022-12-06 07:52:59.497165 + : pb-IF42U2wGFw== | chugambaran|CHUGAMBBARAN💦| -2022-12-06 07:54:32.002196 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lolz -2022-12-06 07:54:37.516425 + : pb-IF42U2wGFw== | chugambaran|CHUGAMBBARAN💦| mthr fkr -2022-12-06 07:56:39.184451 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| ? -2022-12-06 07:56:54.036873 + : pb-IF42U2wGFw== | chugambaran|CHUGAMBBARAN💦| gg corona -2022-12-06 07:56:58.976477 + : pb-IF42U2wGFw== | chugambaran|CHUGAMBBARAN💦| I appreciate that -2022-12-06 07:57:01.422050 + : pb-IF4DU0IEJg== | CHAINSAW|denji| by mistake -2022-12-06 07:57:05.932651 + : pb-IF4DU0IEJg== | CHAINSAW|denji| sry -2022-12-06 07:57:47.304568 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| 1 -2022-12-06 07:57:54.162160 + : pb-IF5dU0JePQ== | HopelessActor28|Mad Dog| 1 -2022-12-06 07:58:00.154495 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील -२| 1 -2022-12-06 07:58:07.724634 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| vote ended -2022-12-06 07:58:15.833603 + : pb-IF4DU0IEJg== | CHAINSAW|denji| -2022-12-06 07:58:16.687135 + : pb-IF4DU0IEJg== | CHAINSAW|denji| -2022-12-06 07:59:28.803221 + : pb-IF4DU0IEJg== | CHAINSAW|denji| end -2022-12-06 08:00:30.100600 + : pb-IF49VFQlPA== | PC688281|🕷| lol -2022-12-06 08:01:25.920883 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| willy? -2022-12-06 08:02:14.811596 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| wtf blue? -2022-12-06 08:02:19.190317 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| any help? -2022-12-06 08:02:51.679240 + : pb-IF49VFQlPA== | PC688281|🕷| -2022-12-06 08:02:55.057270 + : pb-IF42U2wGFw== | chugambaran|CHUGAMBBARAN💦| worst team ever -2022-12-06 08:05:07.424850 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-06 08:05:07.594488 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-06 08:05:07.754814 + : pb-IF4BV2gDEA== | TrippyJest|corona🖕| -2022-12-06 08:06:26.229369 + : pb-IF49VFQlPA== | PC688281|🕷| sory -2022-12-06 08:09:55.786814 + : pb-IF42U2wGFw== | chugambaran|CHUGAMBBARAN💦| gg avi -2022-12-06 08:09:59.071502 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| avi noobde😡 -2022-12-06 08:10:46.135361 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| gg red killing red -2022-12-06 08:10:51.132054 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| i did nothing here -2022-12-06 08:10:51.575232 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| xodv😂 -2022-12-06 08:11:24.916479 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| haha -2022-12-06 08:11:28.762909 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| nice bomb pie -2022-12-06 08:12:24.762473 + : pb-IF49VFQlPA== | PC688281|🕷| -2022-12-06 08:12:25.692965 + : pb-IF49VFQlPA== | PC688281|🕷| -2022-12-06 08:13:10.450771 + : pb-IF49VFQlPA== | PC688281|🕷| sory -2022-12-06 08:13:27.098074 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| it sok -2022-12-06 08:13:36.799531 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| g -2022-12-06 08:13:40.793278 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| ello pamu -2022-12-06 08:13:47.602416 + : pb-IF49VFQlPA== | PC688281|🕷| hi anurag -2022-12-06 08:17:06.564452 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| ga*ja is it uh? -2022-12-06 08:23:12.999402 + : pb-IF4hVFkHKg== | RhythmicCr|| koi h? -2022-12-06 08:27:10.817570 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| ni? -2022-12-06 08:29:21.248473 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| ez -2022-12-06 08:29:29.314234 + : pb-IF49U04vXA== | LoathsomeReaction46|LoathsomeReaction46| -2022-12-06 08:29:29.501331 + : pb-IF49U04vXA== | LoathsomeReaction46|LoathsomeReaction46| -2022-12-06 08:29:29.658307 + : pb-IF49U04vXA== | LoathsomeReaction46|LoathsomeReaction46| -2022-12-06 08:29:29.815523 + : pb-IF49U04vXA== | LoathsomeReaction46|LoathsomeReaction46| -2022-12-06 08:29:30.676308 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-06 08:29:30.892704 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-06 08:29:31.084735 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-06 08:29:31.266678 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-06 08:30:04.301259 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-06 08:30:05.667297 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 08:30:20.436698 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| hey chain -2022-12-06 08:30:26.832480 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| hello white -2022-12-06 08:31:24.103077 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-06 08:31:56.492208 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| wifi is slow cause there is snow outside -2022-12-06 08:32:58.247252 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| snow? where do you live -2022-12-06 08:33:18.307572 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| haha -2022-12-06 08:33:44.240884 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-06 08:33:44.416380 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| -2022-12-06 08:33:48.527691 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| haha -2022-12-06 08:33:49.385294 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| f -2022-12-06 08:33:53.823770 + : pb-IF4DU1BaNA== | RagingPred|purple splash| hello -2022-12-06 08:34:05.050465 + : pb-IF49VFQlPA== | PC688281|Asta X Noell| sory -2022-12-06 08:34:41.856324 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 08:34:45.927059 + : pb-IF4oUxAGPQ== | TejGamerNt|TejGaM3R| chainsaw -2022-12-06 08:34:57.974490 + : pb-IF4oUxAGPQ== | TejGamerNt|TejGaM3R| wanna come in bcs epic super smash -2022-12-06 08:35:08.832489 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| ok -2022-12-06 08:35:14.810452 + : pb-IF4oUxAGPQ== | TejGamerNt|TejGaM3R| come -2022-12-06 08:35:15.628614 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-06 08:35:16.021987 + : pb-IF4KV04FIg== | ItzMeRoman|₩Ⱨł₮Ɇ| -2022-12-06 08:36:28.459872 + : pb-IF4oUxAGPQ== | TejGamerNt|| wht hpn -2022-12-06 08:39:08.327092 + : pb-IF4pUmQcPA== | PC363206|APR| dc suckkkkkkks -2022-12-06 08:39:11.371875 + : pb-IF4pUmQcPA== | PC363206|APR| -2022-12-06 08:39:59.813207 + : pb-IF4wV24HBw== | GiantRobot|GiantRobot| -2022-12-06 08:42:05.646246 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| gaint -2022-12-06 08:42:10.682392 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| 1 -2022-12-06 08:42:35.887666 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 08:42:36.182974 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 08:43:36.675617 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 08:43:36.824038 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 08:43:57.203102 + : pb-IF4wV24HBw== | GiantRobot|GiantRobot| -2022-12-06 08:44:21.071212 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-06 08:44:21.210873 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-06 08:44:25.829053 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| bruh -2022-12-06 08:44:42.223800 + : pb-IF4wV24HBw== | GiantRobot|GiantRobot| guh -2022-12-06 08:45:06.179057 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| gaint dum he to muje maro -2022-12-06 08:45:18.927759 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 08:45:19.228090 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 08:45:21.886476 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| wtf -2022-12-06 08:45:31.594810 + : pb-IF5SUk8fAA== | Android58748298|Android58748298| -2022-12-06 08:45:32.609310 + : pb-IF5SUk8fAA== | Android58748298|Android58748298| -2022-12-06 08:45:45.654003 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 08:45:46.328389 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 08:45:47.076754 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 08:46:21.850456 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😚😚 -2022-12-06 08:46:36.380155 + : pb-IF4nU3IxEw== | divs2104|divs2104| 😔😏 -2022-12-06 08:46:43.612048 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| ky hua meri jaan ko -2022-12-06 08:46:51.860082 + : pb-IF4nU3IxEw== | divs2104|divs2104| 😔😔 -2022-12-06 08:46:59.367291 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| bolo b😁 -2022-12-06 08:47:13.860048 + : pb-IF4nU3IxEw== | divs2104|divs2104| kissi do😔 -2022-12-06 08:47:21.248239 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| raat m -2022-12-06 08:47:24.858096 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😚 -2022-12-06 08:47:28.561361 + : pb-IF4oUxAGPQ== | TejGamerNt|TejGaM3R| -2022-12-06 08:47:29.010034 + : pb-IF4nU3IxEw== | divs2104|divs2104| nhi abhi -2022-12-06 08:47:30.213315 + : pb-IF4wV24HBw== | GiantRobot|GiantRobot| -2022-12-06 08:47:34.204063 + : pb-IF4wV24HBw== | GiantRobot|GiantRobot| waah -2022-12-06 08:47:37.701846 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| thanks -2022-12-06 08:49:22.432421 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| gaint mujse darke kick karra he🤣 -2022-12-06 08:49:38.682024 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 08:49:39.565174 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 08:49:43.864695 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| haila -2022-12-06 08:49:47.252947 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| welcome xd -2022-12-06 08:49:48.922996 + : pb-IF4uU3gNKQ== | CKD360|CKD| iTzAnuragP🤣 -2022-12-06 08:49:53.776913 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 😹😹🫂 -2022-12-06 08:50:06.774271 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| koi upar dhalo muje -2022-12-06 08:50:18.644893 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| whut?💀 -2022-12-06 08:50:48.096490 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| white? -2022-12-06 08:50:59.910984 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| mujhe score karna tha 🙂 -2022-12-06 08:51:21.917404 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| thank u -2022-12-06 08:51:24.323735 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 08:51:26.802078 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 08:51:30.215282 + : pb-IF4wV24HBw== | GiantRobot|GiantRobot| -2022-12-06 08:51:31.514915 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| np -2022-12-06 08:51:54.357890 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| lag fk -2022-12-06 08:52:06.150237 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 08:52:33.867939 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| 1 -2022-12-06 08:53:02.233553 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 08:53:02.415680 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 08:53:02.583034 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 08:53:55.871122 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 08:53:56.309247 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 08:54:07.614727 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 08:54:07.738705 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 08:54:08.637860 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 08:54:08.805391 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 08:54:12.051025 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 😹 -2022-12-06 08:54:18.346739 + : pb-IF4uU3gNKQ== | CKD360|CKD| 😅 -2022-12-06 08:54:23.072416 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| I'm not MVP... sed -2022-12-06 08:54:37.597261 + : pb-IF4uU3gNKQ== | CKD360|CKD| kal raat ko game pe nhi aya -2022-12-06 08:54:55.921144 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| depression mai tha -2022-12-06 08:55:28.910513 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| aree workload tha kuch preparation ek alag position pr apply krra -2022-12-06 08:56:00.046657 + : pb-IF4uU3gNKQ== | CKD360|CKD| oh.. -2022-12-06 08:56:08.536154 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 08:56:21.416707 + : pb-IF4uU3gNKQ== | CKD360|CKD| sshh miss kr rhi teko -2022-12-06 08:56:40.646100 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| shhh 🥲 -2022-12-06 08:56:46.260036 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| 1 -2022-12-06 08:56:52.076070 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 08:56:52.552862 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 08:56:52.720409 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 08:56:52.882469 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 08:57:10.168798 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 08:57:26.366472 + : pb-IF4uU3gNKQ== | CKD360|CKD| dophar ko tum dono ek dusre pkd -2022-12-06 08:57:26.376571 + : pb-IF4uU3gNKQ== | CKD360|CKD| k chakar chakr khel reh the..mene dekha🎃😂 -2022-12-06 08:57:30.027640 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| doesn't talks when am there so kuch farak ni lgta jyada while absent 🥲😹 -2022-12-06 08:58:09.858413 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 08:58:19.331577 + : pb-IF4uU3gNKQ== | CKD360|CKD| feeling is more important 😉 baat toh alg bat -2022-12-06 08:58:32.274943 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 🦍😹 -2022-12-06 08:58:53.246322 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| idhr most violent aane alag feeling hn 🎃😹 -2022-12-06 08:59:03.581454 + : pb-IF4uU3gNKQ== | CKD360|CKD| sry -2022-12-06 08:59:14.422076 + : pb-IF4uU3gNKQ== | CKD360|CKD| 😂 -2022-12-06 08:59:17.660990 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| this is pamu 😹😹 -2022-12-06 08:59:19.483752 + : pb-LV4TA0FSAEsWCVxdGE9YVUhGFhJZWlkWV1QNDlIRRlwJExNFWVNV | J0kerr666|🐣AANDA🐣| ok cjd version 0 -2022-12-06 08:59:32.133099 + : pb-IF49VFQlPA== | PC688281|Medusa| -2022-12-06 08:59:41.961829 + : pb-IF4uU3gNKQ== | CKD360|CKD| version 0?😅 -2022-12-06 08:59:46.382053 + : pb-LV4TA0FSAEsWCVxdGE9YVUhGFhJZWlkWV1QNDlIRRlwJExNFWVNV | J0kerr666|🐣AANDA🐣| -2022-12-06 09:00:03.361653 + : pb-IF4uU3gNKQ== | CKD360|CKD| whr is pamu -2022-12-06 09:00:34.899549 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| demn -2022-12-06 09:00:53.922310 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| sticky gave a damn abt meh so sticked to me 🥲 -2022-12-06 09:01:25.942143 + : pb-LV4TA0FSAEsWCVxdGE9YVUhGFhJZWlkWV1QNDlIRRlwJExNFWVNV | J0kerr666|🐣AANDA🐣| -2022-12-06 09:02:12.162922 + : pb-IF49VFQlPA== | PC688281|Medusa| -2022-12-06 09:02:35.596778 + : pb-LV4TA0FSAEsWCVxdGE9YVUhGFhJZWlkWV1QNDlIRRlwJExNFWVNV | J0kerr666|🐣AANDA🐣| where is mota valu and kala **** they don't play? -2022-12-06 09:02:46.441319 + : pb-IF4uU3gNKQ== | CKD360|CKD| kala got banned -2022-12-06 09:02:49.741595 + : pb-IF4uU3gNKQ== | CKD360|CKD| 🤣🤣 -2022-12-06 09:02:51.476893 + : pb-LV4TA0FSAEsWCVxdGE9YVUhGFhJZWlkWV1QNDlIRRlwJExNFWVNV | J0kerr666|🐣AANDA🐣| oh -2022-12-06 09:03:26.981322 + : pb-IF4uU3gNKQ== | CKD360|CKD| idk which kala u talking abt -2022-12-06 09:03:34.809027 + : pb-IF4DU0IEJg== | CHAINSAW|Uncas| kala lun -2022-12-06 09:03:40.103370 + : pb-LV4TA0FSAEsWCVxdGE9YVUhGFhJZWlkWV1QNDlIRRlwJExNFWVNV | J0kerr666|🐣AANDA🐣| abusive one -2022-12-06 09:03:41.861247 + : pb-IF4uU3gNKQ== | CKD360|CKD| idk abt hindi kala version -2022-12-06 09:03:44.123315 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| sh -2022-12-06 09:03:55.931379 + : pb-IF4uU3gNKQ== | CKD360|CKD| abuse one got banned i think -2022-12-06 09:04:05.951589 + : pb-IF4uU3gNKQ== | CKD360|CKD| sh -2022-12-06 09:04:07.205640 + : pb-LV4TA0FSAEsWCVxdGE9YVUhGFhJZWlkWV1QNDlIRRlwJExNFWVNV | J0kerr666|🐣AANDA🐣| I played with ckd 2 or 1 -2022-12-06 09:04:31.461287 + : pb-IF4uU3gNKQ== | CKD360|CKD| wat anda? -2022-12-06 09:04:44.725440 + : pb-LV4TA0FSAEsWCVxdGE9YVUhGFhJZWlkWV1QNDlIRRlwJExNFWVNV | J0kerr666|🐣AANDA🐣| u have version too 😄 -2022-12-06 09:04:46.371560 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|Nymph🧚‍♀️| 🐢 -2022-12-06 09:04:50.826402 + : pb-IF4DU0IEJg== | CHAINSAW|Uncas| 🤣🤣🤣🤣 -2022-12-06 09:05:18.191401 + : pb-IF4uU3gNKQ== | CKD360|CKD| m real bruh -2022-12-06 09:05:35.450253 + : pb-LV4TA0FSAEsWCVxdGE9YVUhGFhJZWlkWV1QNDlIRRlwJExNFWVNV | J0kerr666|🐣AANDA🐣| u real slim shady -2022-12-06 09:05:36.497225 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 🐢🦍 -2022-12-06 09:06:02.585637 + : pb-LV4TA0FSAEsWCVxdGE9YVUhGFhJZWlkWV1QNDlIRRlwJExNFWVNV | J0kerr666|🐣AANDA🐣| uncas y u angry at me -2022-12-06 09:06:09.618773 + : pb-IF4tVXIbMQ== | Aryannnnnヅ|✨✞Iᴬᴹ᭄★ลяýลи✞✨=亗| uncas y u angry at me -2022-12-06 09:06:10.027256 + : pb-IF4tVXIbMQ== | Aryannnnnヅ|✨✞Iᴬᴹ᭄★ลяýลи✞✨=亗| uncas y u angry at me -2022-12-06 09:06:15.150996 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|Nymph🧚‍♀️| 🐢🧚‍♀️ -2022-12-06 09:06:16.621244 + : pb-IF4DU0IEJg== | CHAINSAW|Uncas| u are talking too much -2022-12-06 09:06:24.370455 + : pb-LV4TA0FSAEsWCVxdGE9YVUhGFhJZWlkWV1QNDlIRRlwJExNFWVNV | J0kerr666|🐣AANDA🐣| ok -2022-12-06 09:06:44.376311 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 09:06:52.304831 + : pb-LV4TA0FSAEsWCVxdGE9YVUhGFhJZWlkWV1QNDlIRRlwJExNFWVNV | J0kerr666|🐣AANDA🐣| lagg -2022-12-06 09:08:04.741101 + : pb-IF49VFQlPA== | PC688281|Medusa| -2022-12-06 09:08:10.811433 + : pb-IF4uU3gNKQ== | CKD360|CKD| medusa is a scam -2022-12-06 09:08:30.639656 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 🐢🧚‍♀️>🌚😹 -2022-12-06 09:08:52.666560 + : pb-IF4DU0IEJg== | CHAINSAW|Uncas| Medusa be trippin -2022-12-06 09:09:39.360313 + : pb-IF4DU0IEJg== | CHAINSAW|Uncas| ok g -2022-12-06 09:10:26.977373 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 09:10:28.060000 + : pb-IF49VFQlPA== | PC688281|Medusa| -2022-12-06 09:10:30.485600 + : pb-IF4DU0IEJg== | CHAINSAW|Uncas| draw -2022-12-06 09:10:30.495615 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-06 09:10:30.696760 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-06 09:10:30.815518 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-06 09:10:31.661433 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 09:10:31.811231 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 09:10:31.991295 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 09:10:32.161335 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 09:10:35.167758 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|Nymph🧚‍♀️| -2022-12-06 09:10:54.466823 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 09:12:38.027239 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|Nymph🧚‍♀️| -2022-12-06 09:12:44.151565 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-06 09:12:44.306964 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-06 09:12:44.504639 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| -2022-12-06 09:12:44.891316 + : pb-IF4uU3gNKQ== | CKD360|CKD| bye cya -2022-12-06 09:14:47.300287 + : pb-IF49VFQlPA== | PC688281|Medusa| sory -2022-12-06 09:16:46.439593 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| sh_+ -2022-12-06 09:17:34.953206 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 09:17:48.052643 + : pb-IF49VFQlPA== | PC688281|Medusa| ADI61834 -2022-12-06 09:19:03.202161 + : pb-IF4jIEEY | DarthKille|Duck| medusa leone -2022-12-06 09:19:23.587129 + : pb-IF4jIEEY | DarthKille|Duck| was once ch00tmarike -2022-12-06 09:20:02.142623 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| stfu betrayer -2022-12-06 09:20:45.139240 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| Medusa please kick duck he is betraying -2022-12-06 09:20:53.008868 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 1 -2022-12-06 09:21:21.237077 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| thanks -2022-12-06 09:21:23.027534 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| lmao -2022-12-06 09:22:18.111288 + : pb-IF4nU08BVg== | kingbcs|🎄💀 𝕂ᶤηg 🐉♗| -2022-12-06 09:22:57.430890 + : pb-IF4nU08BVg== | kingbcs|🎄💀 𝕂ᶤηg 🐉♗| akzha who gave u power😂 -2022-12-06 09:23:21.707531 + : pb-IF49VFQlPA== | PC688281|Medusa| 《Gadbot》 dont betray -2022-12-06 09:23:54.481005 + : pb-IF4nU08BVg== | kingbcs|🎄💀 𝕂ᶤηg 🐉♗| shaktiyon ka galat istemaal mat karo -2022-12-06 09:24:06.189378 + : pb-IF49VFQlPA== | PC688281|Medusa| chupse kel -2022-12-06 09:24:17.541509 + : pb-IF4nU08BVg== | kingbcs|🎄💀 𝕂ᶤηg 🐉♗| jitna mila utna chinnh bhi sakta hun -2022-12-06 09:24:51.591207 + : pb-IF4nU08BVg== | kingbcs|🎄💀 𝕂ᶤηg 🐉♗| so use wisely -2022-12-06 09:26:45.036062 + : pb-IF4nU08BVg== | kingbcs|🎄💀 𝕂ᶤηg 🐉♗| pamu -2022-12-06 09:27:33.897442 + : pb-IF4GU0gbVQ== | DependableChip25|DependableChip25| lord -2022-12-06 09:28:24.976496 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| void 😹 -2022-12-06 09:28:34.313491 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| lag -2022-12-06 09:30:15.639776 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| I'm New player -2022-12-06 09:30:53.012612 + : pb-IF49VFQlPA== | PC688281|Medusa| -2022-12-06 09:33:06.870462 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| messiah -2022-12-06 09:33:08.525007 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 09:35:00.326846 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| popat -2022-12-06 09:35:02.860026 + : pb-IF5VUmEnJg== | Android54523561|FuRRyGaMer| yeah -2022-12-06 09:36:02.422620 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| gg -2022-12-06 09:37:27.205022 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| kill him -2022-12-06 09:38:21.295799 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| -2022-12-06 09:39:58.912796 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| -2022-12-06 09:40:10.150594 + : pb-IF5VUmEnJg== | Android54523561|FuRRyGaMer| oh yeah -2022-12-06 09:41:26.008242 + : pb-IF5RU3UzJA== | RabidFight|불법적인| hi popat me illegal come in bcs epic -2022-12-06 09:41:32.575640 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| yes -2022-12-06 09:41:48.233333 + : pb-IF4jIEEY | DarthKille|Beowulf| randy -2022-12-06 09:41:48.826659 + : pb-IF5RU3UzJA== | RabidFight|불법적인| popat come in bcs epic -2022-12-06 09:41:58.035655 + : pb-IF4jIEEY | DarthKille|Beowulf| chinees shit ul -2022-12-06 09:41:59.726005 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| lol -2022-12-06 09:42:11.273811 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| wait play here -2022-12-06 09:43:28.848938 + : pb-IF4jIEEY | DarthKille|Beowulf| bhakya randy -2022-12-06 09:43:44.579754 + : pb-IF5VUmEnJg== | Android54523561|FuRRyGaMer| hahaha -2022-12-06 09:44:13.229280 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| noob -2022-12-06 09:45:35.239975 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| -2022-12-06 09:45:40.051098 + : pb-IF4jIEEY | DarthKille|Beowulf| 1 -2022-12-06 09:46:56.674792 + : pb-IF4jIEEY | DarthKille|Beowulf| sory -2022-12-06 09:47:07.588569 + : pb-IF4jIEEY | DarthKille|Beowulf| galti se punch lag gya🥹 -2022-12-06 09:47:13.670088 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| lol -2022-12-06 09:47:24.157814 + : pb-IF5VUmEnJg== | Android54523561|FuRRyGaMer| booyeah -2022-12-06 09:47:26.979523 + : pb-IF4DU0IEJg== | CHAINSAW|| pucha kisine -2022-12-06 09:47:27.180912 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| gg furry -2022-12-06 09:47:47.370794 + : pb-IF4jIEEY | DarthKille|Beowulf| epic siexual.assualt -2022-12-06 09:47:58.108134 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| -2022-12-06 09:49:59.526820 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| lol -2022-12-06 09:50:00.643049 + : pb-IF4jIEEY | DarthKille|Beowulf| ohh shite -2022-12-06 09:50:07.261736 + : pb-IF5RU2wCXQ== | IrremediableWraith22|IrremediableWraith22| bavasir kya kar raha hai -2022-12-06 09:51:56.488079 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| hi guts -2022-12-06 09:52:01.829859 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| hi popat -2022-12-06 09:53:44.160512 + : pb-IF5VUmEnJg== | Android54523561|FuRRyGaMer| gg -2022-12-06 09:53:47.881904 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| g -2022-12-06 09:53:54.170688 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| end -2022-12-06 09:54:17.210047 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| start -2022-12-06 09:54:32.090336 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| methu -2022-12-06 09:54:35.650449 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| popat -2022-12-06 09:54:42.855434 + : pb-IF4SEHAl | bisht4189|Beowulf| baba ji -2022-12-06 09:54:44.140162 + : pb-IF5VUmEnJg== | Android54523561|FuRRyGaMer| gg popat -2022-12-06 09:54:49.150321 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| *** -2022-12-06 09:54:51.222031 + : pb-IF4SEHAl | bisht4189|Beowulf| bangali baba -2022-12-06 09:54:54.216855 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| haha -2022-12-06 09:54:57.130800 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| ***** -2022-12-06 09:55:03.085361 + : pb-IF4SEHAl | bisht4189|Beowulf| mere wifi na naam.he yeh -2022-12-06 09:55:04.038775 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| thnk u furry -2022-12-06 09:55:14.970377 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| ******* -2022-12-06 09:55:19.711959 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| to kys me naachu? -2022-12-06 09:55:21.510611 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| ***** -2022-12-06 09:55:28.834988 + : pb-IF4SEHAl | bisht4189|Beowulf| yes -2022-12-06 09:55:42.117900 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| guts no bomb fight -2022-12-06 09:55:50.097093 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 🕺🕺🕺🕺🕺 -2022-12-06 09:56:02.412309 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| 🤣🤣 -2022-12-06 09:56:09.248749 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| no bomb 😹 .i read now chat was muted -2022-12-06 09:56:27.490351 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| wooo -2022-12-06 09:56:47.437904 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| no bomb, no gloves, no sheild, no fight.. to bhai khelna kya he hame -2022-12-06 09:57:03.564282 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| ok now I will come with my original character then show -2022-12-06 09:57:30.070532 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| 🤪🤪🤪🤣 -2022-12-06 09:57:35.595360 + : pb-IF4PU0UlAw== | MunicipalJ|pranav| whatever -2022-12-06 09:57:49.287660 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| nice guts -2022-12-06 09:58:26.155440 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| uncas -2022-12-06 09:58:27.726121 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| guts end fas -2022-12-06 09:58:31.076785 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| fast -2022-12-06 09:58:44.070723 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| sorry lag -2022-12-06 10:00:49.953096 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| -2022-12-06 10:01:08.433836 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| -2022-12-06 10:01:15.486557 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| -2022-12-06 10:01:16.871930 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 10:01:19.690789 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 😂😂 -2022-12-06 10:01:33.774735 + : pb-IF4PU0UlAw== | MunicipalJ|pranav| what happened popat -2022-12-06 10:01:34.942305 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| popat kya hua darke kick karte ho -2022-12-06 10:01:47.053208 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| are bro by mistake sorry -2022-12-06 10:01:55.950349 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| popat ka popat ban gaya -2022-12-06 10:02:03.173406 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 🤣 -2022-12-06 10:02:04.515331 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| lol -2022-12-06 10:02:23.914928 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| popat bol raha ta original character me ake dikhaunga🤣🤣 -2022-12-06 10:02:32.717211 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| to lv de aya na -2022-12-06 10:02:43.395766 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| kya faidha hua🤣🤣 -2022-12-06 10:02:55.665519 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| teri maa chd di main -2022-12-06 10:03:03.681379 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| kaha mili🤣🤣 -2022-12-06 10:03:06.010086 + : pb-IF5VUmEnJg== | Android54523561|FuRRyGaMer| yeah -2022-12-06 10:03:10.517429 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| bajar me -2022-12-06 10:03:13.310652 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| popat ko ghusa aya -2022-12-06 10:03:16.780839 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 10:03:18.151223 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| tere ma ke sath🤣🤣 -2022-12-06 10:03:25.558260 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| nikl lv de -2022-12-06 10:03:39.190430 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| but tu to lala nahi hoaga nela he rahega -2022-12-06 10:04:56.230572 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| popat -2022-12-06 10:05:07.868977 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 😁😁😁 -2022-12-06 10:05:40.130609 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| popat ne Jan danlde blue tema me -2022-12-06 10:05:47.652709 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| arre mistake hogay🤣🤣 -2022-12-06 10:06:05.490881 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| was one skart -2022-12-06 10:06:10.500569 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| nice -2022-12-06 10:06:14.196664 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| ;) -2022-12-06 10:06:18.279634 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| I will in defence -2022-12-06 10:06:43.506609 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| hi ckd bro -2022-12-06 10:06:59.152035 + : pb-IF4uU3gNKQ== | CKD360|CKD| hi bruh -2022-12-06 10:07:32.286261 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| **** skippy -2022-12-06 10:07:43.940739 + : pb-IF4jIEEY | DarthKille|Skippy| 0 -2022-12-06 10:09:07.704172 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| lol -2022-12-06 10:09:18.334286 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| 0 -2022-12-06 10:09:18.460120 + : pb-IF4jIEEY | DarthKille|Skippy| bhakya baby -2022-12-06 10:10:17.575697 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| popat ko kat daluga -2022-12-06 10:10:17.845862 + : pb-IF4jIEEY | DarthKille|Skippy| cum on bhakya -2022-12-06 10:10:20.106338 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| noob bhakya -2022-12-06 10:10:26.873566 + : pb-IF4jIEEY | DarthKille|Skippy| cum harder -2022-12-06 10:10:46.695608 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| m**** -2022-12-06 10:10:49.192091 + : pb-IF4uU3gNKQ== | CKD360|CKD| lol -2022-12-06 10:10:50.695436 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| 0 -2022-12-06 10:10:51.395443 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 10:10:55.380754 + : pb-IF4jIEEY | DarthKille|Skippy| 0 -2022-12-06 10:11:01.185507 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| lot of love -2022-12-06 10:11:04.535663 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| B**** -2022-12-06 10:11:27.609607 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| lol -2022-12-06 10:11:54.755627 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| Skippy B**** -2022-12-06 10:12:05.875669 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| killl skippy -2022-12-06 10:12:19.117708 + : pb-IF4jIEEY | DarthKille|Skippy| shite -2022-12-06 10:12:28.289060 + : pb-IF4jIEEY | DarthKille|Skippy| 0 -2022-12-06 10:12:40.968891 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| 0 -2022-12-06 10:12:47.355820 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| jo bhe kick nahi kare ou B*** hay -2022-12-06 10:12:48.879939 + : pb-IF4jIEEY | DarthKille|Darkness| **** fat gyi red ki -2022-12-06 10:12:55.105223 + : pb-IF4jIEEY | DarthKille|Darkness| gmd fat gyi -2022-12-06 10:13:03.677631 + : pb-IF4jIEEY | DarthKille|Darkness| ab aur fategi -2022-12-06 10:13:12.649353 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| lol -2022-12-06 10:13:14.241365 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 10:13:20.144830 + : pb-IF4hU0QyUA== | BionicClown95756|Uncas| -2022-12-06 10:13:20.322269 + : pb-IF4hU0QyUA== | BionicClown95756|Uncas| -2022-12-06 10:13:20.451592 + : pb-IF4hU0QyUA== | BionicClown95756|Uncas| -2022-12-06 10:13:20.605474 + : pb-IF4hU0QyUA== | BionicClown95756|Uncas| -2022-12-06 10:13:23.449459 + : pb-IF4jIEEY | DarthKille|Darkness| emperor randy ke -2022-12-06 10:13:24.189097 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| -2022-12-06 10:13:28.107639 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| blue walone ek ***** ko agent banka ke bheja he red me🤣🤣 -2022-12-06 10:13:30.690258 + : pb-IF4jIEEY | DarthKille|Darkness| ruk ru -2022-12-06 10:13:46.786192 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| mafia kon agent? -2022-12-06 10:13:47.955115 + : pb-IF4jIEEY | DarthKille|Darkness| tohar maiya ch0d deb ab -2022-12-06 10:13:59.043296 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| skippy -2022-12-06 10:14:02.373363 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| lol ckd what u playing -2022-12-06 10:14:05.889610 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| ok -2022-12-06 10:14:15.870519 + : pb-IF4jIEEY | DarthKille|Darkness| ckd ultra noob🤣🤣 -2022-12-06 10:14:17.015746 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| blue vale ke girlfriend hay ky skippy -2022-12-06 10:14:26.482296 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| 🤣😂 -2022-12-06 10:14:27.186711 + : pb-IF4jIEEY | DarthKille|Darkness| i am skippy -2022-12-06 10:14:34.185077 + : pb-IF4jIEEY | DarthKille|Darkness| daddy is back -2022-12-06 10:14:34.453438 + : pb-IF4uU3gNKQ== | CKD360|CKD| idk😅 -2022-12-06 10:14:51.263472 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| 0 -2022-12-06 10:15:10.340044 + : pb-IF4jIEEY | DarthKille|Darkness| motherch0d -2022-12-06 10:15:10.445611 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| mafiaraj king -2022-12-06 10:15:14.689682 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| lol -2022-12-06 10:15:23.985207 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 😁😁 -2022-12-06 10:15:26.483872 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| lag -2022-12-06 10:15:33.897967 + : pb-IF4jIEEY | DarthKille|Darkness| gmd me dal le.lag -2022-12-06 10:15:54.563663 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| darkness tere gnd bhargaya kya🤣🤣 -2022-12-06 10:16:06.991255 + : pb-IF4jIEEY | DarthKille|Darkness| mera ***** kha hai kya tuze -2022-12-06 10:16:13.040071 + : pb-IF4jIEEY | DarthKille|Darkness| totti -2022-12-06 10:16:27.538339 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| badi gnd wala🤣 -2022-12-06 10:16:28.241695 + : pb-IF4jIEEY | DarthKille|Darkness| sala toatti thodi gali hai -2022-12-06 10:16:30.115782 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| darkness ki g*** fate hay ky -2022-12-06 10:16:30.625466 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| lolol -2022-12-06 10:16:38.363604 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| guts I will play -2022-12-06 10:16:42.529503 + : pb-IF4jIEEY | DarthKille|Darkness| bde liund wale hai hum -2022-12-06 10:16:49.960848 + : pb-IF4jIEEY | DarthKille|Darkness| teri hogi ch00t -2022-12-06 10:16:54.900995 + : pb-IF49VFQlPA== | PC688281|Skippy| hey dont abuse -2022-12-06 10:17:05.177875 + : pb-IF4hU0QyUA== | BionicClown95756|Uncas| -2022-12-06 10:17:05.494849 + : pb-IF4hU0QyUA== | BionicClown95756|Uncas| -2022-12-06 10:17:05.792658 + : pb-IF4hU0QyUA== | BionicClown95756|Uncas| -2022-12-06 10:17:06.640325 + : pb-IF4jIEEY | DarthKille|Darkness| skippy imposter ******* -2022-12-06 10:17:13.025739 + : pb-IF4rUmcIUg== | Android55446423|EmperorGod| darkness bena lu*** ka -2022-12-06 10:17:15.868752 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 🤣 -2022-12-06 10:17:21.209008 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 😹 -2022-12-06 10:18:07.321824 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| suna he badi lmd walonko ladke gmd pasand he🤣🤣 -2022-12-06 10:18:35.300854 + : pb-IF49VFQlPA== | PC688281|Skippy| ab koi abuse kiya kik karunga -2022-12-06 10:18:42.197257 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ha -2022-12-06 10:18:42.962062 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 10:18:43.114105 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 10:18:43.329241 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 10:18:43.519189 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 10:18:43.601613 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| -2022-12-06 10:18:52.493663 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| wonlog bina waje gali dete he -2022-12-06 10:19:35.292792 + : pb-IF49VFQlPA== | PC688281|Skippy| pilot12856 kik karna tuje -2022-12-06 10:19:57.957688 + : pb-IF4nA28F | pilot12856|Petronas AMG| kick/36 -2022-12-06 10:20:07.510259 + : pb-IF4uU3gNKQ== | CKD360|CKD| arey moderator hai wo -2022-12-06 10:22:41.060930 + : pb-IF49VFQlPA== | PC688281|Skippy| hi ice boy -2022-12-06 10:23:52.851372 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| y messing 😹 -2022-12-06 10:24:48.158976 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 10:24:48.193337 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 10:24:48.593165 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 10:27:09.259367 + : pb-IF49VFQlPA== | PC688281|Skippy| go ice boy u can do it -2022-12-06 10:27:34.859458 + : pb-IF49VFQlPA== | PC688281|Skippy| haha -2022-12-06 10:27:46.233060 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 10:27:48.973234 + : pb-IF4uU3gNKQ== | CKD360|CKD| lagg -2022-12-06 10:29:14.258212 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 10:29:14.527913 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 10:29:14.711178 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 10:29:14.929789 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 10:30:07.659565 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 10:30:07.826471 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 10:30:07.960306 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 10:30:08.134532 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-06 10:30:08.144275 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 10:30:08.304375 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-06 10:30:08.474424 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-06 10:30:08.654607 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-06 10:30:48.657816 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 10:30:54.427224 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| sry -2022-12-06 10:31:00.503203 + : pb-IF4uU3gNKQ== | CKD360|CKD| konsa wala dhruv -2022-12-06 10:31:02.224378 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| mm -2022-12-06 10:31:14.283457 + : pb-IF4qVFcnBg== | mihirsavat|Dhruv| savat wala dhruv -2022-12-06 10:32:00.084721 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| sry -2022-12-06 10:32:03.914446 + : pb-IF4xU04OMg== | PC772976|India| sry -2022-12-06 10:33:11.824347 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-06 10:33:14.565374 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-06 10:33:17.274472 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-06 10:33:18.963284 + : pb-IF4uU3gNKQ== | CKD360|CKD| india kitni id badlega -2022-12-06 10:33:20.335065 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-06 10:36:48.266591 + : pb-IF4xU04OMg== | PC772976|India| lol -2022-12-06 10:36:54.722657 + : pb-IF4xU04OMg== | PC772976|India| vascular ji nice revenge -2022-12-06 10:37:02.645708 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| 😅 -2022-12-06 10:43:54.864620 + : pb-IF4xU04OMg== | PC772976|India| sanju dimag me keede hai tere -2022-12-06 10:45:23.779787 + : pb-IF4NU3onCg== | subashchan|SUBASH🎵🎶🎧🎤| -2022-12-06 10:45:24.059515 + : pb-IF4NU3onCg== | subashchan|SUBASH🎵🎶🎧🎤| -2022-12-06 10:47:35.122133 + : pb-IF4xU04OMg== | PC772976|India| 2 goku lol -2022-12-06 10:48:09.834625 + : pb-IF4xU04OMg== | PC772976|India| jai shriram lol -2022-12-06 10:48:43.852093 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 10:48:43.976481 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 10:49:00.416579 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 10:49:09.570412 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| ok -2022-12-06 10:49:24.524098 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 10:49:50.361042 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 10:50:37.237041 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 10:50:57.769372 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 10:51:08.175711 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 10:51:21.365183 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 10:51:45.082633 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 10:51:45.083445 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 10:52:32.175863 + : pb-IF5VVEEANg== | Demodog02|Demodog02| my teammates noob -2022-12-06 10:52:42.106329 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 10:54:18.119898 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 10:54:18.260054 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 10:55:06.812480 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| 9 -2022-12-06 10:55:30.695050 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| 8 -2022-12-06 10:55:48.379426 + : pb-IF5VVEEANg== | Demodog02|Demodog02| -2022-12-06 10:56:39.909375 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| vascular sowie -2022-12-06 10:56:50.663387 + : pb-IF5VVEEANg== | Demodog02|Demodog02| -2022-12-06 10:57:19.311101 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| lol -2022-12-06 10:57:23.610463 + : pb-IF4xU04OMg== | PC772976|India| lol -2022-12-06 10:57:36.068699 + : pb-IF4xU04OMg== | PC772976|India| the moment i laughed karma hit me back -2022-12-06 10:58:15.849532 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| 11111 -2022-12-06 10:58:27.293317 + : pb-IF4QAFAT | WiseCarpen|Goku| no -2022-12-06 10:58:29.211122 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| 12345678910 -2022-12-06 10:58:35.811490 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| 01 -2022-12-06 10:58:43.032329 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| 111111111111 -2022-12-06 10:58:51.763463 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| 000 -2022-12-06 10:59:01.178631 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| :0 -2022-12-06 10:59:14.339533 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| :0=Ö -2022-12-06 10:59:49.385602 + : pb-IF5VVEEANg== | Demodog02|Demodog02| lol very fast -2022-12-06 10:59:54.256335 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|| iTzAnuragP -2022-12-06 11:00:00.353563 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| must be pc player -2022-12-06 11:00:07.273140 + : pb-IF5VVEEANg== | Demodog02|Demodog02| yes -2022-12-06 11:00:13.115647 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| bro is Speedrunning for 1 minute🤣 -2022-12-06 11:00:22.827384 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| am android -2022-12-06 11:00:28.163290 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| Ashu hie brewh -2022-12-06 11:00:31.791364 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| long time!! -2022-12-06 11:00:33.516416 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|| hemlooo -2022-12-06 11:00:41.883942 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| hemloo ;) -2022-12-06 11:00:44.020466 + : pb-IF4xU04OMg== | PC772976|India| long time no see -2022-12-06 11:00:51.174747 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| long like decades yeh -2022-12-06 11:00:55.232749 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| i am -2022-12-06 11:00:59.332279 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| lagging -2022-12-06 11:01:06.194847 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| rasgulle xd -2022-12-06 11:01:08.076149 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|❀ⓡaşᎶยℓℓα❀| phirse install Kiya kya -2022-12-06 11:01:09.612233 + : pb-IF4xU04OMg== | PC772976|India| hello lagging -2022-12-06 11:01:14.629880 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| no -2022-12-06 11:01:17.727719 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 😹😹 yeah after years reinstalled -2022-12-06 11:01:23.076766 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| plying on mobile network -2022-12-06 11:01:28.345007 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|❀ⓡaşᎶยℓℓα❀| nice -2022-12-06 11:01:39.351118 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| playing on calculator network -2022-12-06 11:01:47.936341 + : pb-IF4xU04OMg== | PC772976|India| how come remembered this game years later? -2022-12-06 11:01:48.811514 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| glad uh remember me -2022-12-06 11:01:52.359299 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| vascular 😹😹 -2022-12-06 11:02:12.949010 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|❀ⓡaşᎶยℓℓα❀| vo apna zsq tho daily dikta h ..idhar udhar -2022-12-06 11:02:24.335859 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| aree India ...old players don't forget bs am old like 10-14 years on bs(bombsquad) -2022-12-06 11:02:46.899691 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| I've playing this game since I was 7 -2022-12-06 11:02:47.792852 + : pb-IF4xU04OMg== | PC772976|India| yeh baat toh hai -2022-12-06 11:02:55.686929 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| zsq ...ahh Laura aree.she free lately untill rejoining id shared hn -2022-12-06 11:02:56.349163 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|❀ⓡaşᎶยℓℓα❀| PC772976 kon -2022-12-06 11:03:03.749852 + : pb-IF4xU04OMg== | PC772976|India| jab bombsquad aaya tha tab me 11th me tha -2022-12-06 11:03:24.509016 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|❀ⓡaşᎶยℓℓα❀| WasOnceGuts! acha -2022-12-06 11:04:01.624138 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| she tells me when notes old stiz frnds aakr naam batati then i say yh ikikik 😹 -2022-12-06 11:04:04.606106 + : pb-IF4xU04OMg== | PC772976|India| jumping practice -2022-12-06 11:04:18.914581 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| stiz still disbanded na? -2022-12-06 11:04:19.519413 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|❀ⓡaşᎶยℓℓα❀| acha lol -2022-12-06 11:04:23.297647 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|❀ⓡaşᎶยℓℓα❀| haa -2022-12-06 11:04:35.613094 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| atleast I didn't forgot the bombsquad -2022-12-06 11:04:35.817589 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|❀ⓡaşᎶยℓℓα❀| prvt lobby banate h ye kabi kabi -2022-12-06 11:04:38.645065 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| sed -2022-12-06 11:04:45.772822 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|❀ⓡaşᎶยℓℓα❀| server ni..bas temperory vala -2022-12-06 11:04:49.254520 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| oh gg -2022-12-06 11:05:18.079691 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| grp apna stiz pr msg krke banate ya fir ? -2022-12-06 11:05:30.058989 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| btw tum ho na whtsp stiz pr? -2022-12-06 11:05:30.613219 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|❀ⓡaşᎶยℓℓα❀| discord md -2022-12-06 11:05:42.530413 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| oh disc ...achha check krta mei serv phir -2022-12-06 11:05:45.920494 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|❀ⓡaşᎶยℓℓα❀| me ni.hu..muje thunder WhatsApp karta h -2022-12-06 11:05:51.562696 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|❀ⓡaşᎶยℓℓα❀| code -2022-12-06 11:05:57.382176 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| yokyookyoykyoykyoykyoykyok -2022-12-06 11:05:57.386333 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| activ on disc but stiz serv dekha he nhi 😹 -2022-12-06 11:06:03.190201 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|❀ⓡaşᎶยℓℓα❀| lul -2022-12-06 11:06:11.950433 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| thunder kon -2022-12-06 11:06:22.763770 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|❀ⓡaşᎶยℓℓα❀| purana player.. Kushagra -2022-12-06 11:06:30.330931 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| kushagra bolna 😹 -2022-12-06 11:06:33.443311 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|❀ⓡaşᎶยℓℓα❀| shivam termi k time ka -2022-12-06 11:06:37.543265 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|❀ⓡaşᎶยℓℓα❀| ha xd -2022-12-06 11:06:48.027317 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| started a kick vote for DANI DANIE... -2022-12-06 11:07:17.134962 + : pb-IF4xU04OMg== | PC772976|India| vascular nice stomach fat -2022-12-06 11:07:32.943918 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|❀ⓡaşᎶยℓℓα❀| pamu? -2022-12-06 11:07:36.319893 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| I'm skinny like skin walker -2022-12-06 11:07:37.022398 + : pb-IF49VFQlPA== | PC688281|Draken.| what u doin here -2022-12-06 11:07:40.451382 + : pb-IF49VFQlPA== | PC688281|Draken.| han -2022-12-06 11:07:40.514793 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|❀ⓡaşᎶยℓℓα❀| lol -2022-12-06 11:07:48.283310 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|❀ⓡaşᎶยℓℓα❀| sahilp no one -2022-12-06 11:07:51.611379 + : pb-IF49VFQlPA== | PC688281|Draken.| oh -2022-12-06 11:08:13.679256 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| aree pamu is active...met him times Today -2022-12-06 11:08:16.632165 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| oh u mean my be avatar is fat? -2022-12-06 11:08:24.418217 + : pb-IF4xU04OMg== | PC772976|India| yeah lol -2022-12-06 11:08:28.631907 + : pb-IF49VFQlPA== | PC688281|Draken.| me and anu play alwasyshere lol -2022-12-06 11:08:34.158331 + : pb-IF4xU04OMg== | PC772976|India| how tf i know your body in real life -2022-12-06 11:08:37.323908 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|❀ⓡaşᎶยℓℓα❀| oh acha -2022-12-06 11:08:46.028362 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| it's real😭 -2022-12-06 11:08:50.241479 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| I'm fat too -2022-12-06 11:08:53.558857 + : pb-IF5VVEEANg== | Demodog02|Demodog02| lie -2022-12-06 11:08:53.821526 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| -2022-12-06 11:08:54.064614 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| is draken pamu rn? sorry don't have id revealer 😹😹 -2022-12-06 11:08:56.023042 + : pb-IF4xU04OMg== | PC772976|India| weight? -2022-12-06 11:08:59.801887 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| how tf you know I'm fat😭 -2022-12-06 11:09:02.105931 + : pb-IF4xU04OMg== | PC772976|India| i am also fat -2022-12-06 11:09:02.447518 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| fat fat fat -2022-12-06 11:09:04.051355 + : pb-IF49VFQlPA== | PC688281|Draken.| yes me lol -2022-12-06 11:09:08.194036 + : pb-IF4xU04OMg== | PC772976|India| weight is 80 kg -2022-12-06 11:09:08.396544 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 😹😹😹okiee -2022-12-06 11:09:19.720121 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| I'm oregnant -2022-12-06 11:09:26.631373 + : pb-IF5VVEEANg== | Demodog02|Demodog02| wtf -2022-12-06 11:09:29.105374 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| I mean pregnant -2022-12-06 11:09:29.191472 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| vascular wht stupid 😹 -2022-12-06 11:09:33.075376 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| eating sleeping and playing games only -2022-12-06 11:09:53.414025 + : pb-IF5VVEEANg== | Demodog02|Demodog02| school.or clg or job? -2022-12-06 11:09:58.634509 + : pb-IF4xU04OMg== | PC772976|India| all -2022-12-06 11:10:00.824664 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| the time when. fat kid ignore the bully🔥 -2022-12-06 11:10:03.219025 + : pb-IF4xU04OMg== | PC772976|India| jk -2022-12-06 11:10:08.061418 + : pb-IF49VFQlPA== | PC688281|Draken.| -2022-12-06 11:10:15.651410 + : pb-IF49VFQlPA== | PC688281|Draken.| ok time for scor -2022-12-06 11:10:22.887500 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 11:10:26.194293 + : pb-IF4xU04OMg== | PC772976|India| the time fat kid conforts bully -2022-12-06 11:10:29.891519 + : pb-IF49VFQlPA== | PC688281|Draken.| bruh -2022-12-06 11:10:36.262607 + : pb-IF5VVEEANg== | Demodog02|Demodog02| sus -2022-12-06 11:10:37.011134 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| ok then time for defense 😹 -2022-12-06 11:10:49.071314 + : pb-IF49VFQlPA== | PC688281|Draken.| lol -2022-12-06 11:10:52.863129 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| ahana bullying me for being a fat atleast I play too much game and still got 100% on test -2022-12-06 11:11:05.542693 + : pb-IF4xU04OMg== | PC772976|India| wtf -2022-12-06 11:11:08.010415 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| u r fat -2022-12-06 11:11:14.338784 + : pb-IF4xU04OMg== | PC772976|India| how you getting 100% -2022-12-06 11:11:20.321659 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 11:11:38.303457 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| go gym eat healthy -2022-12-06 11:11:43.075560 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| look matters -2022-12-06 11:11:52.226921 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| I got 12/20 on test and I my total score was 99 -2022-12-06 11:12:07.519116 + : pb-IF5VVEEANg== | Demodog02|Demodog02| -2022-12-06 11:12:07.686322 + : pb-IF5VVEEANg== | Demodog02|Demodog02| -2022-12-06 11:12:07.730379 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| it's not possible -2022-12-06 11:12:07.840465 + : pb-IF5VVEEANg== | Demodog02|Demodog02| -2022-12-06 11:12:12.203645 + : pb-IF5VVEEANg== | Demodog02|Demodog02| fck -2022-12-06 11:12:12.766397 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| math 89 -2022-12-06 11:12:13.935317 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| do maths -2022-12-06 11:12:14.160889 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 11:12:14.252525 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 11:12:16.923024 + : pb-IF4xU04OMg== | PC772976|India| i think you are drunk -2022-12-06 11:12:19.212050 + : pb-IF49VFQlPA== | PC688281|Draken.| do yoga -2022-12-06 11:12:20.791232 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| team afk -2022-12-06 11:12:30.067463 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| 👁️👄👁️drunk? -2022-12-06 11:12:34.931431 + : pb-IF49VFQlPA== | PC688281|Draken.| do meditation -2022-12-06 11:12:46.014032 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| my grammar is made in china -2022-12-06 11:12:52.111402 + : pb-IF49VFQlPA== | PC688281|Draken.| lol -2022-12-06 11:13:17.799801 + : pb-IF5VVEEANg== | Demodog02|Demodog02| bruh -2022-12-06 11:13:50.644690 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| when I say fat they bully me but -2022-12-06 11:14:28.764049 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| I'm a smart fat kid -2022-12-06 11:14:44.498681 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 11:14:46.822634 + : pb-IF4xU04OMg== | PC772976|India| wtf -2022-12-06 11:14:52.596458 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| nvm -2022-12-06 11:14:53.763862 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| team focus -2022-12-06 11:14:57.073158 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 😹 -2022-12-06 11:15:11.392148 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| idk how to be a good at speaking english -2022-12-06 11:15:30.491300 + : pb-IF49VFQlPA== | PC688281|Draken.| lol -2022-12-06 11:15:38.150365 + : pb-IF4xU04OMg== | PC772976|India| lots of love -2022-12-06 11:15:44.051592 + : pb-IF49VFQlPA== | PC688281|Draken.| sweet love -2022-12-06 11:16:01.046792 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| void. i know that was pain😹 -2022-12-06 11:16:16.546603 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| 😂 -2022-12-06 11:16:23.285194 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| ahana do u know Candice? -2022-12-06 11:16:31.671483 + : pb-IF49VFQlPA== | PC688281|Draken.| -2022-12-06 11:17:01.848482 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| nope -2022-12-06 11:17:04.392119 + : pb-IF49VFQlPA== | PC688281|Draken.| sed -2022-12-06 11:17:13.792420 + : pb-IF4xU04OMg== | PC772976|India| we won -2022-12-06 11:17:16.501400 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| candice nuts fit in your mouth? -2022-12-06 11:17:28.331218 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 11:17:54.550375 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| what's. that exactly -2022-12-06 11:18:15.014593 + : pb-IF4xU04OMg== | PC772976|India| tanishka nice grip strength -2022-12-06 11:18:23.571484 + : pb-IF49VFQlPA== | PC688281|Draken.| bruh finish it annoying -2022-12-06 11:18:29.635461 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| yes -2022-12-06 11:18:34.572291 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| it.is.😹 imean is.it -2022-12-06 11:18:34.625325 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| thnx india -2022-12-06 11:19:31.227289 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| ahana what's 100x100? -2022-12-06 11:19:46.894134 + : pb-IF4rU0o9KQ== | Android63770342|.| 1000 -2022-12-06 11:19:54.152949 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| nope -2022-12-06 11:19:56.689443 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 😹😹 -2022-12-06 11:19:59.701448 + : pb-IF49VFQlPA== | PC688281|Draken.| -2022-12-06 11:20:05.121810 + : pb-IF4rU0o9KQ== | Android63770342|.| 1000 -2022-12-06 11:20:09.614415 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| it's 10,000 -2022-12-06 11:20:13.501473 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| 10,000 -2022-12-06 11:20:38.579945 + : pb-IF4xU04OMg== | PC772976|India| yeh -2022-12-06 11:20:40.492037 + : pb-IF49VFQlPA== | PC688281|Draken.| :) -2022-12-06 11:20:48.244758 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| how about 64÷64x50÷0 -2022-12-06 11:20:50.643752 + : pb-IF4xU04OMg== | PC772976|India| we won just as i predicted -2022-12-06 11:20:54.830148 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| math 🤦🏼‍♀️ -2022-12-06 11:21:07.821679 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| exactly -2022-12-06 11:21:13.738674 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| can answer it -2022-12-06 11:21:14.767605 + : pb-IF4xU04OMg== | PC772976|India| mathematics veryy awesome -2022-12-06 11:21:25.269268 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| can't answer -2022-12-06 11:21:28.215911 + : pb-IF4xU04OMg== | PC772976|India| best subject -2022-12-06 11:21:38.931695 + : pb-IF4xU04OMg== | PC772976|India| ah -2022-12-06 11:21:41.927830 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| I'm stict asian -2022-12-06 11:21:43.982098 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| ouch haha -2022-12-06 11:21:52.038657 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| CHITCHATTING group sahilp is empty btw ..go when😹 -2022-12-06 11:21:54.591792 + : pb-IF4xU04OMg== | PC772976|India| prepare for battle -2022-12-06 11:22:14.751215 + : pb-IF49VFQlPA== | PC688281|Draken.| sahilp folks busy with life -2022-12-06 11:22:17.757048 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| I think chitchatchitchatchatchit is fun -2022-12-06 11:22:26.277652 + : pb-IF49VFQlPA== | PC688281|Draken.| its not like old days -2022-12-06 11:22:27.060824 + : pb-IF4xU04OMg== | PC772976|India| yeah sometimes -2022-12-06 11:22:31.965313 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| har gaye 😐 -2022-12-06 11:22:36.320225 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| that's ques ans is 0 -2022-12-06 11:22:41.021411 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| ah ? one side u also say prepare for battle then -2022-12-06 11:22:41.400692 + : pb-IF49VFQlPA== | PC688281|Draken.| lol -2022-12-06 11:22:42.457577 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| correct -2022-12-06 11:22:48.855792 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| can't divided by 0 -2022-12-06 11:23:03.331449 + : pb-IF49VFQlPA== | PC688281|Draken.| what u talkin about -2022-12-06 11:23:13.296083 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| the math😐 -2022-12-06 11:23:15.075010 + : pb-IF4xU04OMg== | PC772976|India| wasOnceGut i was climbing up and ahana took me out -2022-12-06 11:23:17.602972 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| that was for vascular 😹 -2022-12-06 11:23:24.679522 + : pb-IF49VFQlPA== | PC688281|Draken.| ok -2022-12-06 11:23:24.698873 + : pb-IF4xU04OMg== | PC772976|India| then i said prepare for battle -2022-12-06 11:23:29.626279 + : pb-IF49VFQlPA== | PC688281|Draken.| now make sense -2022-12-06 11:23:42.181299 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| ik they busy ..but they shld take a moment like i did these days u see me at bs, shouldn't they? -2022-12-06 11:23:48.019367 + : pb-IF4xU04OMg== | PC772976|India| aah shit -2022-12-06 11:23:55.510534 + : pb-IF4xU04OMg== | PC772976|India| i just got dejavu -2022-12-06 11:23:59.371374 + : pb-IF4xU04OMg== | PC772976|India| not gonna lie -2022-12-06 11:24:05.734276 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| everyone what's ur favorite school subject? gaming or scone & english -2022-12-06 11:24:07.780409 + : pb-IF4xU04OMg== | PC772976|India| it has happened to me before -2022-12-06 11:24:08.189465 + : pb-IF49VFQlPA== | PC688281|Draken.| me gonna annoy red team :) -2022-12-06 11:24:13.451463 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 11:24:24.555197 + : pb-IF4xU04OMg== | PC772976|India| everything was same just like this -2022-12-06 11:24:30.396300 + : pb-IF4xU04OMg== | PC772976|India| damn -2022-12-06 11:25:02.721360 + : pb-IF49VFQlPA== | PC688281|Draken.| dont hold my pants -2022-12-06 11:25:08.048907 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 😹 -2022-12-06 11:25:17.759238 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| ok I will hold your t-shirt -2022-12-06 11:25:21.629424 + : pb-IF49VFQlPA== | PC688281|Draken.| sure -2022-12-06 11:25:27.247980 + : pb-IF4xU04OMg== | PC772976|India| yeah -2022-12-06 11:25:44.322407 + : pb-IF49VFQlPA== | PC688281|Draken.| -2022-12-06 11:25:57.177403 + : pb-IF4xU04OMg== | PC772976|India| spidy dont throw me there buddy -2022-12-06 11:26:00.640301 + : pb-IF49VFQlPA== | PC688281|Draken.| spidy no -2022-12-06 11:26:08.571364 + : pb-IF4wVFcZPw== | CivilizedT|spidy| ohhk -2022-12-06 11:26:21.051207 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| my science teacher is teaching my classmate about balls💀 -2022-12-06 11:26:30.141414 + : pb-IF49VFQlPA== | PC688281|Draken.| u mean nuts -2022-12-06 11:26:33.586890 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 11:26:33.730778 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 11:27:01.890136 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| lol 40 -2022-12-06 11:27:08.289323 + : pb-IF4xU04OMg== | PC772976|India| ice boy legend -2022-12-06 11:27:09.759116 + : pb-IF4xU04OMg== | PC772976|India| lol -2022-12-06 11:27:15.690403 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| stole my 10 -2022-12-06 11:27:18.965470 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| -2022-12-06 11:27:27.919302 + : pb-IF49VFQlPA== | PC688281|Draken.| my ice boy go -2022-12-06 11:27:56.309120 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| ice boi is blue but why his bomb is not ice? -2022-12-06 11:28:06.830014 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| ok -2022-12-06 11:28:08.361061 + : pb-IF49VFQlPA== | PC688281|Draken.| he play nice -2022-12-06 11:28:09.012333 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| i am in wrong team -2022-12-06 11:28:20.285364 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| when u team with ohio -2022-12-06 11:28:51.430825 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| lamo target -2022-12-06 11:29:03.715505 + : pb-IF49VFQlPA== | PC688281|Draken.| great -2022-12-06 11:29:12.601355 + : pb-IF49VFQlPA== | PC688281|Draken.| ice boy u ded too -2022-12-06 11:29:16.867289 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| have some self respect 🤦🏼‍♀️ -2022-12-06 11:29:18.921428 + : pb-IF4xU04OMg== | PC772976|India| 2 v 2 -2022-12-06 11:29:20.184522 + : pb-IF49VFQlPA== | PC688281|Draken.| thats bad -2022-12-06 11:29:24.738102 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| kitna haroge 😂 -2022-12-06 11:29:34.391073 + : pb-IF41V0UyDg== | Wikirex2001|Wikirex2001| 😂😂😂 -2022-12-06 11:29:38.945256 + : pb-IF4xU04OMg== | PC772976|India| 1 vs 1 -2022-12-06 11:29:41.401485 + : pb-IF49VFQlPA== | PC688281|Draken.| whom u talkin -2022-12-06 11:29:48.721241 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| my team -2022-12-06 11:29:52.082513 + : pb-IF49VFQlPA== | PC688281|Draken.| ok -2022-12-06 11:30:03.882045 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| tum to jit rhe ho n -2022-12-06 11:30:06.782483 + : pb-IF49VFQlPA== | PC688281|Draken.| ur the only one tryin hard lol -2022-12-06 11:30:15.702463 + : pb-IF49VFQlPA== | PC688281|Draken.| and others too -2022-12-06 11:30:23.422759 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| thanks -2022-12-06 11:30:28.667459 + : pb-IF49VFQlPA== | PC688281|Draken.| anu come on u can do it -2022-12-06 11:30:29.907914 + : pb-IF4xU04OMg== | PC772976|India| take game super seriously and get brain damage lmao -2022-12-06 11:30:36.877520 + : pb-IF49VFQlPA== | PC688281|Draken.| chill -2022-12-06 11:30:53.223683 + : pb-IF4xU04OMg== | PC772976|India| if you win you fet 7 crore rupees -2022-12-06 11:31:00.328389 + : pb-IF4xU04OMg== | PC772976|India| hahahah -2022-12-06 11:31:04.448610 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| ahana why your so rude -2022-12-06 11:31:10.835448 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| i am not -2022-12-06 11:31:11.424512 + : pb-IF49VFQlPA== | PC688281|Draken.| finaly u did it anu -2022-12-06 11:31:13.092250 + : pb-IF4xU04OMg== | PC772976|India| just kidding -2022-12-06 11:31:29.331506 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| ahana u size I'm fat that's sounds rude -2022-12-06 11:31:29.890521 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| -2022-12-06 11:31:36.466215 + : pb-IF49VFQlPA== | PC688281|Draken.| come on ice boy lets win this one -2022-12-06 11:31:42.174081 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| hana -2022-12-06 11:31:55.255451 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| u said u r fat na -2022-12-06 11:32:02.918243 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| hana -2022-12-06 11:32:12.226335 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| chat was muted and why implementing "finally" 😹😹😹 -2022-12-06 11:32:14.541784 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| woman☕ -2022-12-06 11:32:24.155412 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| boys ☕ -2022-12-06 11:32:28.218265 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ahana -2022-12-06 11:32:37.160900 + : pb-IF49VFQlPA== | PC688281|Draken.| ur chated muted ? -2022-12-06 11:32:39.051324 + : pb-IF4xU04OMg== | PC772976|India| na na THE BOYS -2022-12-06 11:32:45.070638 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| was* -2022-12-06 11:32:47.035488 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| Mafia -2022-12-06 11:32:52.883916 + : pb-IF49VFQlPA== | PC688281|Draken.| ok -_- -2022-12-06 11:32:54.989287 + : pb-IF4xU04OMg== | PC772976|India| MAF KIYA -2022-12-06 11:32:55.572377 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| btw r uh in stiz disc? -2022-12-06 11:32:55.593149 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| tume kuch laya hu -2022-12-06 11:33:03.481026 + : pb-IF49VFQlPA== | PC688281|Draken.| no anu -2022-12-06 11:33:28.430031 + : pb-IF49VFQlPA== | PC688281|Draken.| -2022-12-06 11:33:38.923532 + : pb-IF49VFQlPA== | PC688281|Draken.| ice boy go -2022-12-06 11:33:43.423637 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| 🍌🧍‍♂️ -2022-12-06 11:33:45.628594 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 11:33:55.908621 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| i was ded but sm1 came wid suicide rage 😹 -2022-12-06 11:33:57.606430 + : pb-IF4wVFcZPw== | CivilizedT|spidy| voidgod mr -2022-12-06 11:34:13.441365 + : pb-IF4xU04OMg== | PC772976|India| GOOD -2022-12-06 11:34:25.773813 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| sorry -2022-12-06 11:34:28.934465 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| End It! -2022-12-06 11:35:50.980498 + : pb-IF4VU3laVA== | Android63074779|tholvi💪| -2022-12-06 11:35:51.107190 + : pb-IF4VU3laVA== | Android63074779|tholvi💪| -2022-12-06 11:35:56.695855 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| breh 🎃 spems -2022-12-06 11:36:03.750337 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ya ya -2022-12-06 11:36:04.680795 + : pb-IF49VFQlPA== | PC688281|Draken.| not spems -2022-12-06 11:36:06.789088 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| gg -2022-12-06 11:36:07.082262 + : pb-IF4xU04OMg== | PC772976|India| na na -2022-12-06 11:36:10.024648 + : pb-IF49VFQlPA== | PC688281|Draken.| its spam -2022-12-06 11:36:15.144863 + : pb-IF4wVFcZPw== | CivilizedT|spidy| by by -2022-12-06 11:36:18.833641 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| that's the bot -2022-12-06 11:36:22.000020 + : pb-IF49VFQlPA== | PC688281|Draken.| lol -2022-12-06 11:36:22.975054 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| spem used purposely 😹 -2022-12-06 11:36:25.030123 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ya ya -2022-12-06 11:36:32.461349 + : pb-IF49VFQlPA== | PC688281|Draken.| its habbit -2022-12-06 11:37:00.110368 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| so u r amg -2022-12-06 11:37:05.525499 + : pb-IF4xU04OMg== | PC772976|India| this football, capture the flag,return the flag are very bad matches -2022-12-06 11:37:11.039085 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 11:37:11.138668 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 11:37:14.535412 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| now u will take revenge -2022-12-06 11:37:18.436160 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| oh my god or ah my dog? -2022-12-06 11:37:19.054704 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 11:37:23.744389 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ahna -2022-12-06 11:37:36.803735 + : pb-IF4xU04OMg== | PC772976|India| tholvi see and learn -2022-12-06 11:37:51.323344 + : pb-IF4VU3laVA== | Android63074779|tholvi💪| wow -2022-12-06 11:38:04.719560 + : pb-IF49VFQlPA== | PC688281|Draken.| oh my -2022-12-06 11:38:06.292759 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| petro hie -2022-12-06 11:38:06.763257 + : pb-IF4nA28F | pilot12856|■///AMG| does that makes any sense? -2022-12-06 11:38:10.874640 + : pb-IF4nA28F | pilot12856|■///AMG| hi -2022-12-06 11:38:12.639778 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 😹😹 -2022-12-06 11:38:22.632583 + : pb-IF4VU3laVA== | Android63074779|tholvi💪| -2022-12-06 11:38:22.872911 + : pb-IF4VU3laVA== | Android63074779|tholvi💪| -2022-12-06 11:38:24.092363 + : pb-IF4nA28F | pilot12856|■///AMG| no not to u guts -2022-12-06 11:38:24.915398 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| idk but maybe a gesture of hi hello -2022-12-06 11:38:33.943723 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| ok -2022-12-06 11:38:35.805681 + : pb-IF4xU04OMg== | PC772976|India| GUYS ASSAULT -2022-12-06 11:38:39.637732 + : pb-IF4xU04OMg== | PC772976|India| BRR BRRRR BRRRRR -2022-12-06 11:38:44.961422 + : pb-IF49VFQlPA== | PC688281|Draken.| sory ice boy -2022-12-06 11:38:48.545506 + : pb-IF49VFQlPA== | PC688281|Draken.| my bad -2022-12-06 11:39:03.356985 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| tannu -2022-12-06 11:39:08.789695 + : pb-IF4xU04OMg== | PC772976|India| nice try -2022-12-06 11:39:33.360787 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| han mafia -2022-12-06 11:39:59.685762 + : pb-IF49VFQlPA== | PC688281|Draken.| arra -2022-12-06 11:40:01.477670 + : pb-IF4xU04OMg== | PC772976|India| ahana hahahah -2022-12-06 11:40:01.714057 + : pb-IF4nA28F | pilot12856|■///AMG| revenge? -2022-12-06 11:40:11.303781 + : pb-IF4nA28F | pilot12856|■///AMG| i don't believe in revenge -2022-12-06 11:40:19.489199 + : pb-IF4xU04OMg== | PC772976|India| good -2022-12-06 11:40:20.849554 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ahana😡😡😡😡😡 -2022-12-06 11:40:24.633806 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| or bidu kaise ho -2022-12-06 11:40:34.717094 + : pb-IF4xU04OMg== | PC772976|India| badhiya bidu log -2022-12-06 11:40:36.752690 + : pb-IF49VFQlPA== | PC688281|Draken.| go -2022-12-06 11:40:38.931375 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| wht haha 🙄 -2022-12-06 11:40:45.577857 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 11:40:47.785455 + : pb-IF49VFQlPA== | PC688281|Draken.| damm -2022-12-06 11:41:01.926565 + : pb-IF4xU04OMg== | PC772976|India| draken op save -2022-12-06 11:41:05.513484 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| pappi ni milra to me khelni rha🥲 -2022-12-06 11:41:06.273396 + : pb-IF4rUk0bPQ== | VascularDeficiency37|| spammers are having bad habit😏 -2022-12-06 11:41:22.078532 + : pb-IF4xU04OMg== | PC772976|India| kulfi -2022-12-06 11:41:43.446678 + : pb-IF49VFQlPA== | PC688281|Draken.| go -2022-12-06 11:41:48.142533 + : pb-IF49VFQlPA== | PC688281|Draken.| dont just stand there -2022-12-06 11:41:51.861623 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| you mean kuffe☕? -2022-12-06 11:42:09.925001 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| -2022-12-06 11:42:16.028999 + : pb-IF4xU04OMg== | PC772976|India| no i mean it kulfi means ice cream, get frozed -2022-12-06 11:42:28.868551 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| kulfi muje dedo -2022-12-06 11:42:35.482605 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| lulli lele -2022-12-06 11:42:41.218801 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| koolfe😭 -2022-12-06 11:42:55.269074 + : pb-IF4xU04OMg== | PC772976|India| jaljeera ice cream -2022-12-06 11:43:04.313013 + : pb-IF4xU04OMg== | PC772976|India| 5 rupay vali -2022-12-06 11:43:08.527766 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| nunu ice cream😭 -2022-12-06 11:43:15.675448 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| India jaljira ice cream really😂😂 -2022-12-06 11:43:25.494077 + : pb-IF4xU04OMg== | PC772976|India| yes i have eaten a lot -2022-12-06 11:43:35.407095 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| 😂😂 -2022-12-06 11:43:38.424075 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| real ice scream😢 -2022-12-06 11:43:45.301051 + : pb-IF4xU04OMg== | PC772976|India| about 11-12 years ago -2022-12-06 11:43:47.723115 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| mafia sowie -2022-12-06 11:43:56.107379 + : pb-IF4xU04OMg== | PC772976|India| used to eat a lot jaljeera ice cream -2022-12-06 11:43:58.903398 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| sali sutti aagyi -2022-12-06 11:44:15.323096 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| I've eating multi for 138 years -2022-12-06 11:44:19.109376 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| noob blue -2022-12-06 11:44:23.536132 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 11:44:25.240648 + : pb-IF49VFQlPA== | PC688281|Draken.| great -2022-12-06 11:44:31.779987 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| get draken man -2022-12-06 11:44:32.660690 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| -2022-12-06 11:44:32.915189 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| -2022-12-06 11:44:33.145260 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| -2022-12-06 11:44:33.355360 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| -2022-12-06 11:44:35.380172 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 😹😹 -2022-12-06 11:44:37.511747 + : pb-IF49VFQlPA== | PC688281|Draken.| no -2022-12-06 11:44:39.214828 + : pb-IF4nA28F | pilot12856|■///AMG| immortal players -2022-12-06 11:44:43.352711 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| india nd shutti op players. -2022-12-06 11:44:43.828106 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| duhhhhh -2022-12-06 11:45:08.542646 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| gila dia madaltod -2022-12-06 11:45:11.729293 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| me also op player -2022-12-06 11:45:13.530297 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| my team 🙂 -2022-12-06 11:45:33.842686 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| mai noobboobb -2022-12-06 11:45:54.292984 + : pb-IF4xU04OMg== | PC772976|India| maaro bhe maaaro isse -2022-12-06 11:45:58.951275 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| India replace drake's d with b and replace his a with o -2022-12-06 11:46:21.036152 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| bui -2022-12-06 11:46:27.315060 + : pb-IF4xU04OMg== | PC772976|India| broke -2022-12-06 11:46:35.214064 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| broken emo😭😢 -2022-12-06 11:46:37.435165 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| bye guys -2022-12-06 11:46:43.372219 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| beye -2022-12-06 11:46:48.832625 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| byee tanu🥲 -2022-12-06 11:46:51.469158 + : pb-IF4xU04OMg== | PC772976|India| tanishka abhi toh aayi the -2022-12-06 11:47:05.506930 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| tannu tum jao -2022-12-06 11:47:08.944185 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| helmp ckd -2022-12-06 11:47:11.217616 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| jaaaa -2022-12-06 11:47:12.546293 + : pb-IF4nA28F | pilot12856|■///AMG| gut -2022-12-06 11:47:16.963945 + : pb-IF4nA28F | pilot12856|■///AMG| guts? -2022-12-06 11:47:17.646766 + : pb-IF4uU3gNKQ== | CKD360|CKD| kya hua -2022-12-06 11:47:25.831994 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 🥲 helmp me win xd -2022-12-06 11:47:30.719500 + : pb-IF49VFQlPA== | PC688281|Draken.| can i speed it -2022-12-06 11:47:31.391748 + : pb-IF4nA28F | pilot12856|■///AMG| where to get mods -2022-12-06 11:47:33.748047 + : pb-IF4uU3gNKQ== | CKD360|CKD| lol m noob -2022-12-06 11:47:34.271839 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| draken - d + b - a + o = Broken😭😭😭😭😭😭😭😭😭😭😭 -2022-12-06 11:47:53.746924 + : pb-IF4uU3gNKQ== | CKD360|CKD| u r in red? -2022-12-06 11:47:53.864360 + : pb-IF49VFQlPA== | PC688281|Draken.| lmao that doesnt make any sense y im brokedn -2022-12-06 11:48:02.436707 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parthk1265| wait me aaya blue me -2022-12-06 11:48:02.933509 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| yeh😹 -2022-12-06 11:48:05.274034 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| it's -2022-12-06 11:48:06.900964 + : pb-IF4nA28F | pilot12856|■///AMG| where to get mods? -2022-12-06 11:48:12.850159 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| bye bhaiyu😊 -2022-12-06 11:48:14.473154 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| nahh just don't mind it -2022-12-06 11:48:35.406974 + : pb-IF4uU3gNKQ== | CKD360|CKD| siso tu kisme hai? -2022-12-06 11:48:39.663465 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| are kale kaisnba -2022-12-06 11:48:40.280985 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| blue -2022-12-06 11:48:45.595209 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| but abhi jari hu -2022-12-06 11:48:50.452529 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| ye waps aagyi -2022-12-06 11:48:51.936886 + : pb-IF4uU3gNKQ== | CKD360|CKD| okie..me blue me rahunga😂🙂 -2022-12-06 11:48:54.753499 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| kalmuhi -2022-12-06 11:48:55.367349 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 11:48:56.285297 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| okk -2022-12-06 11:48:57.486830 + : pb-IF4uU3gNKQ== | CKD360|CKD| lol -2022-12-06 11:48:58.960918 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| ;-; -2022-12-06 11:49:22.276940 + : pb-IF4uU3gNKQ== | CKD360|| red full -2022-12-06 11:49:23.684072 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 11:49:26.846783 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| okie -2022-12-06 11:49:30.185287 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| ruko bruh space khali krri hu blue m -2022-12-06 11:49:39.149765 + : pb-IF49VFQlPA== | PC688281|Draken.| :) -2022-12-06 11:49:42.885361 + : pb-IF4xU04OMg== | PC772976|India| lol -2022-12-06 11:49:43.957728 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| frosty 🤦🏼‍♀️ -2022-12-06 11:49:45.788121 + : pb-IF4uU3gNKQ== | CKD360|CKD| blue me hun -2022-12-06 11:49:50.440495 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| okk -2022-12-06 11:49:52.971173 + : pb-IF4nA28F | pilot12856|■///AMG| guts..? -2022-12-06 11:49:58.320874 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| bye ❤ -2022-12-06 11:50:03.987856 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| muje bi jagh milega kya blue me -2022-12-06 11:50:06.286887 + : pb-IF4uU3gNKQ== | CKD360|CKD| red me try kr rha tha -2022-12-06 11:50:11.946884 + : pb-IF4uU3gNKQ== | CKD360|CKD| mafia aja me jata -2022-12-06 11:50:18.470417 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| m bh jati -2022-12-06 11:50:22.001304 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| lag -2022-12-06 11:50:26.305853 + : pb-IF41UlkcIA== | Android59873080|Beowulf| ewww I don't want a fairy -2022-12-06 11:50:27.410369 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| blue m aja mafia -2022-12-06 11:50:29.352869 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ahna jhoot -2022-12-06 11:50:30.022743 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| kya aawan jaawan laga rakha h -2022-12-06 11:50:30.106791 + : pb-IF4uU3gNKQ== | CKD360|CKD| mat ja🥲 -2022-12-06 11:50:34.844713 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| nahi aunga -2022-12-06 11:50:35.212503 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| are ha -2022-12-06 11:50:38.036572 + : pb-IF4xU04OMg== | PC772976|India| hahahhahahahah -2022-12-06 11:50:38.275294 + : pb-IF41UlkcIA== | Android59873080|Beowulf| who ruined this server -2022-12-06 11:50:38.840489 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| betachor -2022-12-06 11:50:41.820481 + : pb-IF4xU04OMg== | PC772976|India| hakuna op -2022-12-06 11:50:44.916883 + : pb-IF4uU3gNKQ== | CKD360|CKD| mat aa -2022-12-06 11:50:49.810089 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| aunga -2022-12-06 11:50:58.012476 + : pb-IF4xU04OMg== | PC772976|India| bhai me itne tej hasaa abhi aavan jaavan par -2022-12-06 11:51:01.851084 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| wifi is the best -2022-12-06 11:51:09.382405 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| khikhikhikhikhi 💀 -2022-12-06 11:51:12.867200 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 11:51:18.571204 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| hakunamatata -2022-12-06 11:51:25.821169 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| lol -2022-12-06 11:51:26.850453 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| nice -2022-12-06 11:51:27.664275 + : pb-IF4xU04OMg== | PC772976|India| ahahhahahahaha -2022-12-06 11:51:29.652758 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| Abe saleyy -2022-12-06 11:51:30.980491 + : pb-IF41UlkcIA== | Android59873080|Beowulf| who ruined this server -2022-12-06 11:51:35.823209 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| me -2022-12-06 11:51:40.230056 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| its me -2022-12-06 11:51:43.401059 + : pb-IF4xU04OMg== | PC772976|India| smoothy -2022-12-06 11:51:47.211003 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| darkenss kese karte ho aisa trik hame bi bolo -2022-12-06 11:51:47.717336 + : pb-IF5UU3AyNw== | Android62113852|meranaamhabula💯| -2022-12-06 11:51:50.326298 + : pb-IF41UlkcIA== | Android59873080|Beowulf| i Don't want a fairy character -2022-12-06 11:51:52.132622 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| gali de skte totle hoke -2022-12-06 11:51:58.122610 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| eeeyy madaltod -2022-12-06 11:52:07.444890 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| hakunamatata same to u -2022-12-06 11:52:14.442694 + : pb-IF4xU04OMg== | PC772976|India| hakuna op -2022-12-06 11:52:17.722495 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| ok bai -2022-12-06 11:52:23.037781 + : pb-IF49VFQlPA== | PC688281|Draken.| aur gali de tu exit hoga -2022-12-06 11:52:25.605079 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| benstokes -2022-12-06 11:52:35.440435 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| hakunamata tu hai benstokes -2022-12-06 11:52:37.507109 + : pb-IF4xU04OMg== | PC772976|India| ben10strokes -2022-12-06 11:52:38.592985 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| koi bat ni me khelne ni ata love day -2022-12-06 11:52:44.630622 + : pb-IF49VFQlPA== | PC688281|Draken.| server changed -2022-12-06 11:52:48.306275 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| yes -2022-12-06 11:52:48.630699 + : pb-IF41UlkcIA== | Android59873080|Beowulf| mera naam hain bulla rakhta hu main khulla 🤡 -2022-12-06 11:53:06.870951 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| lulli ka server ho gya pehle kya akhand toxic tha yar -2022-12-06 11:53:17.399559 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| haaan very toxic -2022-12-06 11:53:22.862419 + : pb-IF41UlkcIA== | Android59873080|Beowulf| accha hain yaa bura 😂 -2022-12-06 11:53:23.208156 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| is bar jit gaye -2022-12-06 11:53:28.058310 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| tonic ? -2022-12-06 11:53:30.584302 + : pb-IF49VFQlPA== | PC688281|Draken.| abi achaa hua he pehle bar -2022-12-06 11:53:30.586420 + : pb-IF49VFQlPA== | PC688281|Draken.| bar gande gali sunkar dimag karab hotata -2022-12-06 11:53:40.905810 + : pb-IF41UlkcIA== | Android59873080|Beowulf| simply mute karne ka -2022-12-06 11:53:44.608820 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 11:54:00.904385 + : pb-IF49VFQlPA== | PC688281|Draken.| kese mute kare freinds se rehte -2022-12-06 11:54:02.701024 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| draken -2022-12-06 11:54:03.857040 + : pb-IF4uU3gNKQ== | CKD360|CKD| kala k chela aya hai -2022-12-06 11:54:06.990480 + : pb-IF49VFQlPA== | PC688281|Draken.| yes ahana -2022-12-06 11:54:10.581258 + : pb-IF41UlkcIA== | Android59873080|Beowulf| ignorant banana sikho life main. it's worth -2022-12-06 11:54:16.921855 + : pb-IF4xU04OMg== | PC772976|India| ha -2022-12-06 11:54:18.408297 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 11:54:20.859424 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| khelo n -2022-12-06 11:54:27.633982 + : pb-IF4xU04OMg== | PC772976|India| ignore parents and play games -2022-12-06 11:54:28.833115 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 11:54:30.626591 + : pb-IF49VFQlPA== | PC688281|Draken.| ok mam :) -2022-12-06 11:54:32.427848 + : pb-IF4xU04OMg== | PC772976|India| hahahahahahaha -2022-12-06 11:54:33.800896 + : pb-IF41UlkcIA== | Android59873080|Beowulf| CKD ka ***** me 14 **** isha ki maa ***** -2022-12-06 11:54:34.586520 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| nice -2022-12-06 11:54:36.562925 + : pb-IF49VFQlPA== | PC688281|Draken.| are harigye -2022-12-06 11:54:37.257254 + : pb-IF4uU3gNKQ== | CKD360|CKD| tera kala ko ghaseet laat mat -2022-12-06 11:54:37.281907 + : pb-IF4uU3gNKQ== | CKD360|CKD| k bcs se bahar kr diya😂🤣 -2022-12-06 11:54:37.363942 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| yes -2022-12-06 11:54:47.841132 + : pb-IF4uU3gNKQ== | CKD360|CKD| tera kya hoga ab -2022-12-06 11:54:57.266745 + : pb-IF4uU3gNKQ== | CKD360|CKD| well done -2022-12-06 11:54:57.342966 + : pb-IF49VFQlPA== | PC688281|Draken.| ab isko nikalna padega -2022-12-06 11:55:03.923119 + : pb-IF5UU3AyNw== | Android62113852|meranaamhabula💯| -2022-12-06 11:55:10.428731 + : pb-IF4xU04OMg== | PC772976|India| hahaahhahh baammo ke barrish baarese -2022-12-06 11:55:17.626860 + : pb-IF4uU3gNKQ== | CKD360|CKD| abey mod ko kick kon kr rha😂 -2022-12-06 11:55:23.816638 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| wow very pro -2022-12-06 11:55:24.024782 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| darkness kon he? -2022-12-06 11:55:30.744949 + : pb-IF4xU04OMg== | PC772976|India| me toh abhi aaya hu susu kar ke -2022-12-06 11:56:08.009291 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| drkness kon he? -2022-12-06 11:56:16.352011 + : pb-IF4uU3gNKQ== | CKD360|CKD| kaha hai darkness? -2022-12-06 11:56:23.112524 + : pb-IF4uU3gNKQ== | CKD360|CKD| itna ujala hai -2022-12-06 11:56:27.086019 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 11:56:30.644419 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| ye name change kr yar hawas bhari moaning jesa h aahna -2022-12-06 11:56:36.718482 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| draken -2022-12-06 11:56:39.597916 + : pb-IF49VFQlPA== | PC688281|Draken.| kya -2022-12-06 11:56:44.012250 + : pb-IF4uU3gNKQ== | CKD360|CKD| moderator -2022-12-06 11:56:45.036041 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| opponents very pro -2022-12-06 11:56:49.500873 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| draken kon he? -2022-12-06 11:56:51.317131 + : pb-IF4xU04OMg== | PC772976|India| draken sorry -2022-12-06 11:56:55.455304 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| ice ballson -2022-12-06 11:56:56.716024 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| ye sali shutii putti -2022-12-06 11:57:06.680113 + : pb-IF49VFQlPA== | PC688281|Draken.| kyu -2022-12-06 11:57:29.546087 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| ye kela totla saga kon aaya le -2022-12-06 11:57:40.771543 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 11:57:44.078292 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| kick direct karr rahe hona kese? -2022-12-06 11:57:58.965609 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 11:58:01.129296 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| kese possible -2022-12-06 11:58:02.482071 + : pb-IF4uU3gNKQ== | CKD360|CKD| kar sakta hai wo -2022-12-06 11:58:09.874811 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| wahi kese? -2022-12-06 11:58:16.692774 + : pb-IF4xU04OMg== | PC772976|India| matlab -2022-12-06 11:58:21.777454 + : pb-IF4uU3gNKQ== | CKD360|CKD| bcs ka mod hai -2022-12-06 11:58:23.952258 + : pb-IF49VFQlPA== | PC688281|Draken.| acche se kelo kik karpawoge -2022-12-06 11:58:26.296902 + : pb-IF4xU04OMg== | PC772976|India| aacha hai -2022-12-06 11:58:40.804038 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| bhai pls play properly -2022-12-06 11:58:41.342629 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ham dhal nahi sakte he mod ko? -2022-12-06 11:58:53.922493 + : pb-IF49VFQlPA== | PC688281|Draken.| smoothy ko pucho -2022-12-06 11:59:04.196920 + : pb-IF4uU3gNKQ== | CKD360|CKD| smoothy only trusted ko dega na..ese kisko kyu dega🤣 -2022-12-06 11:59:10.638394 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| kick direct or ban? -2022-12-06 11:59:13.242766 + : pb-IF49VFQlPA== | PC688281|Draken.| han wohi to -2022-12-06 11:59:24.937089 + : pb-IF4uU3gNKQ== | CKD360|CKD| draken ban power hai tere pas? -2022-12-06 11:59:25.694383 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| noob t3ammates -2022-12-06 11:59:32.541471 + : pb-IF4xU04OMg== | PC772976|India| hahhaah -2022-12-06 11:59:38.551171 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 11:59:40.264747 + : pb-IF4xU04OMg== | PC772976|India| balooni aaacha player hai -2022-12-06 11:59:53.574628 + : pb-IF4xU04OMg== | PC772976|India| bahut badhyya defend kiya flag -2022-12-06 12:00:10.790675 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| draken ka old name kya tha? -2022-12-06 12:00:24.757719 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 12:00:27.961718 + : pb-IF4xU04OMg== | PC772976|India| aaare sasure -2022-12-06 12:00:36.267862 + : pb-IF4uU3gNKQ== | CKD360|CKD| wo nhi batana chahta me kyu btaun -2022-12-06 12:00:40.178147 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| tq india -2022-12-06 12:00:50.998182 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| same to u -2022-12-06 12:00:52.463391 + : pb-IF49VFQlPA== | PC688281|Draken.| mera naaam leke kya karoge kelo na -2022-12-06 12:00:54.773126 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| u also best player -2022-12-06 12:01:05.883378 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| white ho shayd 😁😁😁 -2022-12-06 12:01:35.525639 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| ye sale pc wale -2022-12-06 12:01:41.369397 + : pb-IF4xU04OMg== | PC772976|India| robot character me se koi sound aati hai -2022-12-06 12:01:44.843471 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| no all mobile only bro here -2022-12-06 12:01:50.936951 + : pb-IF4uU3gNKQ== | CKD360|CKD| not white -2022-12-06 12:01:57.236973 + : pb-IF4xU04OMg== | PC772976|India| jaise penguin, bunny me se sound -2022-12-06 12:01:59.737562 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| hhhebe -2022-12-06 12:02:10.526661 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| yes robo character sound is trung trung -2022-12-06 12:02:12.944746 + : pb-IF4xU04OMg== | PC772976|India| kon hai pc player -2022-12-06 12:02:16.068935 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| bro my copy -2022-12-06 12:02:20.365349 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| lightning fast betachor -2022-12-06 12:02:39.702352 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 12:02:52.081158 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| balooni -2022-12-06 12:02:56.031394 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| draken is very powerful -2022-12-06 12:03:03.913005 + : pb-IF4xU04OMg== | PC772976|India| pc players apni keyboard par fingures use karte hue ke -2022-12-06 12:03:09.586249 + : pb-IF4xU04OMg== | PC772976|India| video dhiknana lol -2022-12-06 12:03:12.854785 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ha wahi -2022-12-06 12:03:21.240537 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| hum nahi kar sakte -2022-12-06 12:03:21.837460 + : pb-IF4uU3gNKQ== | CKD360|CKD| skills hai..pc ho ya mobile -2022-12-06 12:03:32.397204 + : pb-IF4xU04OMg== | PC772976|India| skills nahe -2022-12-06 12:03:37.058901 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| pc player kaun h -2022-12-06 12:03:38.872841 + : pb-IF4xU04OMg== | PC772976|India| Muscle Memory -2022-12-06 12:03:45.274237 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| moment toda esy he bus pc me -2022-12-06 12:03:49.121359 + : pb-IF49VFQlPA== | PC688281|Draken.| Carti namaste -2022-12-06 12:03:53.373655 + : pb-IF4xU04OMg== | PC772976|India| ha -2022-12-06 12:03:59.025280 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| ashu? -2022-12-06 12:04:11.125354 + : pb-IF4hBFgH | MrDevil|MrDevil| Ashu sogya -2022-12-06 12:04:12.497280 + : pb-IF4xU04OMg== | PC772976|India| pc me bombjump nahe hoti -2022-12-06 12:04:18.763349 + : pb-IF49VFQlPA== | PC688281|Draken.| MrDevil oho -2022-12-06 12:04:19.545902 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| Drake kon ho -2022-12-06 12:04:20.532407 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| here mostly only pro players will play -2022-12-06 12:04:23.855477 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| Draken -2022-12-06 12:04:24.982387 + : pb-IF49VFQlPA== | PC688281|Draken.| aap bi yaha -2022-12-06 12:04:28.921450 + : pb-IF4xU04OMg== | PC772976|India| aur na he arrow marker aata hai -2022-12-06 12:04:32.890101 + : pb-IF4hBFgH | MrDevil|MrDevil| tum kya mast kaam karte ho maksud bhai -2022-12-06 12:04:35.505364 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| kon ho vo to batao -2022-12-06 12:04:35.635782 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| -2022-12-06 12:04:45.126714 + : pb-IF49VFQlPA== | PC688281|Draken.| tum kya mast kaam karte ho maksud bhai -2022-12-06 12:04:49.897740 + : pb-IF4hBFgH | MrDevil|MrDevil| bulati hai magar jaane ka nahi -2022-12-06 12:04:50.310549 + : pb-IF49VFQlPA== | PC688281|Draken.| its me maddy -2022-12-06 12:04:58.075490 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| who me -2022-12-06 12:05:02.708820 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| hakunamatata will make usnwin -2022-12-06 12:05:04.105558 + : pb-IF49VFQlPA== | PC688281|Draken.| bulati hai magar jaane ka nahi -2022-12-06 12:05:09.813424 + : pb-IF4hBFgH | MrDevil|MrDevil| pati fauj mein biwi mauj mein -2022-12-06 12:05:16.515679 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| devil got no chill -2022-12-06 12:05:23.359136 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| waah -2022-12-06 12:05:26.681311 + : pb-IF49VFQlPA== | PC688281|Draken.| abb harmonium khaate he -2022-12-06 12:05:27.527353 + : pb-IF4hBFgH | MrDevil|MrDevil| 😹 -2022-12-06 12:05:31.313730 + : pb-IF4hBFgH | MrDevil|MrDevil| Abba harmonium khaate the -2022-12-06 12:05:43.985311 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| betichor -2022-12-06 12:05:47.402000 + : pb-IF4hVFQJPA== | sheriff007gamer|BALOONI| wow draken -2022-12-06 12:05:57.365518 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| بروه أتساءل -2022-12-06 12:05:58.821461 + : pb-IF4hBFgH | MrDevil|MrDevil| waise mein shakt launda hu par yaha mein pigal gaya -2022-12-06 12:06:00.589440 + : pb-IF49VFQlPA== | PC688281|Draken.| devil merko hindi seekarhahe -2022-12-06 12:06:13.796067 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| iam Arab sheikh -2022-12-06 12:06:16.592459 + : pb-IF4hBFgH | MrDevil|MrDevil| 🥲 -2022-12-06 12:06:16.802689 + : pb-IF49VFQlPA== | PC688281|Draken.| waise mein shakt launda hu par yaha mein pigal gaya -2022-12-06 12:06:26.383070 + : pb-IF4hBFgH | MrDevil|MrDevil| tum husn pari tum Jane jaha tum sabse haseen tum sabse nihaar -2022-12-06 12:06:31.457093 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| op khelta lulli -2022-12-06 12:06:42.440650 + : pb-IF4xU04OMg== | PC772976|India| aarahe bhai shahab voh ad -2022-12-06 12:06:43.985122 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| merko dhoya🥲 -2022-12-06 12:07:00.069726 + : pb-IF49VFQlPA== | PC688281|Draken.| abb harmonium khate he -2022-12-06 12:07:11.902715 + : pb-IF4xU04OMg== | PC772976|India| kya nam tha sabun ka -2022-12-06 12:07:18.842913 + : pb-IF4hBFgH | MrDevil|MrDevil| Mere baarein mein itna mat sochna Dil mein aata hoon samajh mein nahi -2022-12-06 12:07:29.625740 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| shhtiiiiii -2022-12-06 12:07:42.803364 + : pb-IF49VFQlPA== | PC688281|Draken.| Mere baarein mein itna mat sochna -2022-12-06 12:07:42.804271 + : pb-IF49VFQlPA== | PC688281|Draken.| Dil mein aata hoon samahg mein nahi -2022-12-06 12:07:57.121271 + : pb-IF49VFQlPA== | PC688281|Draken.| gya lol -2022-12-06 12:08:14.799235 + : pb-IF49VFQlPA== | PC688281|Draken.| ab merko pagal samjt he -2022-12-06 12:08:18.785999 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-06 12:08:18.966023 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-06 12:08:19.185594 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-06 12:09:44.340405 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-06 12:09:44.481158 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-06 12:09:45.770362 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-06 12:09:56.725234 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| londia pappi do -2022-12-06 12:10:12.101260 + : pb-IF4xU04OMg== | PC772976|India| sare ke sare edges par chaad jao phir screenshot lege -2022-12-06 12:10:26.536954 + : pb-IF4uU3gNKQ== | CKD360|CKD| selfie lenge -2022-12-06 12:10:39.865316 + : pb-IF49VFQlPA== | PC688281|Draken.| lelo jaldi -2022-12-06 12:10:44.112819 + : pb-IF4xU04OMg== | PC772976|India| meanwhile bombs we dont do that here -2022-12-06 12:12:04.969016 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| naruto ka naam badnm mat karo re -2022-12-06 12:12:11.825159 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| sali shutii -2022-12-06 12:12:24.028004 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-06 12:12:24.165626 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-06 12:12:24.295344 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-06 12:12:50.446800 + : pb-IF4uU3gNKQ== | CKD360|CKD| 😒 -2022-12-06 12:12:55.655230 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| lol ckd -2022-12-06 12:13:06.015118 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| ye shutti -2022-12-06 12:14:09.741066 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| 4 defense -2022-12-06 12:14:31.300703 + : pb-IF4xU04OMg== | PC772976|India| lol -2022-12-06 12:14:40.397369 + : pb-IF4xU04OMg== | PC772976|India| i threw Ronak above da wall -2022-12-06 12:14:40.461626 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| end -2022-12-06 12:14:50.170281 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| end -2022-12-06 12:14:54.060657 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ckd -2022-12-06 12:14:54.115740 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| shrutu -2022-12-06 12:14:55.269401 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| end -2022-12-06 12:15:06.741985 + : pb-IF4uU3gNKQ== | CKD360|CKD| mafiq? -2022-12-06 12:15:10.105255 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| gila dia madaltod -2022-12-06 12:15:10.201472 + : pb-IF49VFQlPA== | PC688281|Draken.| hi ice boy -2022-12-06 12:15:21.498098 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| tum pc player ya mobile -2022-12-06 12:15:26.301623 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| end -2022-12-06 12:15:26.431977 + : pb-IF4uU3gNKQ== | CKD360|CKD| mobile -2022-12-06 12:15:29.999929 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| okk -2022-12-06 12:15:31.472405 + : pb-IF49VFQlPA== | PC688281|Draken.| 1 -2022-12-06 12:15:31.518816 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| end -2022-12-06 12:15:34.731986 + : pb-IF4uU3gNKQ== | CKD360|CKD| me pc se nhi khel pata -2022-12-06 12:15:36.020870 + : pb-IF4xU04OMg== | PC772976|India| end -2022-12-06 12:15:41.281562 + : pb-IF49VFQlPA== | PC688281|Draken.| end -2022-12-06 12:15:44.314770 + : pb-IF4jU0MoPA== | Android63397175|Ice boy| end -2022-12-06 12:15:46.342184 + : pb-IF4uU3gNKQ== | CKD360|CKD| end mt kro -2022-12-06 12:15:51.967999 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| kyu -2022-12-06 12:15:52.179227 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| end -2022-12-06 12:15:56.252861 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| end -2022-12-06 12:15:57.904480 + : pb-IF4dCnou | RohanK|RohanK| end -2022-12-06 12:15:59.271806 + : pb-IF4uU3gNKQ== | CKD360|CKD| khelenge😂 -2022-12-06 12:16:07.651979 + : pb-IF4uU3gNKQ== | CKD360|CKD| end -2022-12-06 12:16:08.029965 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| kaun -2022-12-06 12:16:13.367354 + : pb-IF41U2scIg== | SHRUTIsom|𝑺𝒉𝒓𝒖𝒕𝒊| end -2022-12-06 12:16:15.121832 + : pb-IF4uU3gNKQ== | CKD360|CKD| krdonend -2022-12-06 12:16:17.835539 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| memo mar khani h Abu ruku -2022-12-06 12:16:22.032641 + : pb-IF49VFQlPA== | PC688281|Draken.| how old are u ice boy -2022-12-06 12:16:22.198042 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| type end -2022-12-06 12:16:30.524555 + : pb-IF4jU0MoPA== | Android63397175|Ice boy| 22 -2022-12-06 12:16:36.190867 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| end -2022-12-06 12:16:39.962058 + : pb-IF4uU3gNKQ== | CKD360|CKD| end -2022-12-06 12:16:41.647175 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| end -2022-12-06 12:16:42.068511 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| end -2022-12-06 12:16:45.388019 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| end -2022-12-06 12:16:50.088389 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| 7 ppl moe -2022-12-06 12:16:50.493993 + : pb-IF4jU0MoPA== | Android63397175|Ice boy| end -2022-12-06 12:16:52.965231 + : pb-IF49VFQlPA== | PC688281|Draken.| oh ur big boy -2022-12-06 12:16:54.480362 + : pb-IF49VFQlPA== | PC688281|Draken.| end -2022-12-06 12:16:55.357993 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| type 'end' -2022-12-06 12:16:58.965425 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| 7 bhot hai -2022-12-06 12:17:05.974037 + : pb-IF41U2scIg== | SHRUTIsom|𝑺𝒉𝒓𝒖𝒕𝒊| end -2022-12-06 12:17:06.845342 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| chalo khelte hai -2022-12-06 12:17:11.842436 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| end -2022-12-06 12:17:22.401491 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| start -2022-12-06 12:17:27.280476 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| start -2022-12-06 12:17:29.785541 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| 😭😭😭 -2022-12-06 12:17:37.875519 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| endende dend Ed endnndnend dn -2022-12-06 12:17:37.973926 + : pb-IF4dCnou | RohanK|RohanK| chalo khatam karo -2022-12-06 12:17:42.611112 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| r u serious rn bruu -2022-12-06 12:17:45.975418 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| end behn end -2022-12-06 12:17:47.272089 + : pb-IF4uU3gNKQ== | CKD360|CKD| mafia teri khusi nhi dikha rhi -2022-12-06 12:17:48.179099 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| end -2022-12-06 12:17:53.123067 + : pb-IF4xU04OMg== | PC772976|India| end -2022-12-06 12:17:54.604059 + : pb-IF4jU0MoPA== | Android63397175|Ice boy| end -2022-12-06 12:17:54.775375 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| end -2022-12-06 12:17:58.900132 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 😓😓😓 -2022-12-06 12:18:01.208370 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| 9 more votesto ends -2022-12-06 12:18:04.470605 + : pb-IF4xU04OMg== | PC772976|India| 5 more vote lol -2022-12-06 12:18:14.564231 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| kushi 3din se nahi dekha ckd -2022-12-06 12:18:15.900936 + : pb-IF40VG4yUA== | sonugavale|Hehe.. boi...| end -2022-12-06 12:18:17.725396 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| khtm ho jaye itne me -2022-12-06 12:18:24.482836 + : pb-IF4xU04OMg== | PC772976|India| ab toh sasura match bhe khatam hone vala hai -2022-12-06 12:18:30.648580 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| jeetne do bhi -2022-12-06 12:18:32.102215 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| meri ankhe tars rahi he👁👁 -2022-12-06 12:18:38.611813 + : pb-IF4uU3gNKQ== | CKD360|CKD| 😂 -2022-12-06 12:18:40.165189 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| 🌝 -2022-12-06 12:18:40.858844 + : pb-IF4xU04OMg== | PC772976|India| TARS -2022-12-06 12:18:41.962207 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-06 12:18:42.482176 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-06 12:18:43.292311 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-06 12:18:48.031342 + : pb-IF4xU04OMg== | PC772976|India| from interstellar -2022-12-06 12:18:54.709784 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| who can bark -2022-12-06 12:18:58.544153 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| munchikn -2022-12-06 12:19:07.802563 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| yes? -2022-12-06 12:19:21.033667 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| tera ban hat gaya kya -2022-12-06 12:19:28.767206 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| pta nhi -2022-12-06 12:19:37.422333 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| udhar gya h nhi -2022-12-06 12:19:38.706784 + : pb-IF4xU04OMg== | PC772976|India| yeh bta ta hu kon bol raha hai -2022-12-06 12:19:44.763342 + : pb-IF4xU04OMg== | PC772976|India| bta ta hu -2022-12-06 12:19:49.630323 + : pb-IF4xU04OMg== | PC772976|India| sound -2022-12-06 12:19:51.426628 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| chilla rahte mera ban hatao hatao -2022-12-06 12:20:08.662705 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| hataya kya? -2022-12-06 12:20:20.075531 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| indiaaaaaaaa -2022-12-06 12:20:24.482543 + : pb-IF4xU04OMg== | PC772976|India| bhai -2022-12-06 12:20:33.035385 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| salo kia biwi milke marre ho -2022-12-06 12:21:21.680491 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| shrutui ko maaro -2022-12-06 12:21:32.875427 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| uu sali bhot Marti h -2022-12-06 12:21:37.978497 + : pb-IF4xU04OMg== | PC772976|India| shruti kon hai -2022-12-06 12:21:52.555518 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| shrui wo jo meri khaas dosth he -2022-12-06 12:22:04.657317 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| aji lnd mera -2022-12-06 12:22:07.205462 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| benifit 🌝 -2022-12-06 12:22:14.962112 + : pb-IF4uU3gNKQ== | CKD360|CKD| smoothy mod bn ne k liye kya karna padta hai😬 -2022-12-06 12:22:15.846309 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 😁 -2022-12-06 12:22:17.302285 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-06 12:22:34.334886 + : pb-IF4xU04OMg== | PC772976|India| code copy paste karna padta hai bus -2022-12-06 12:22:42.432320 + : pb-IF4uU3gNKQ== | CKD360|CKD| 🤣 -2022-12-06 12:22:43.658499 + : pb-IF4xU04OMg== | PC772976|India| 1 minute ka kaam ha -2022-12-06 12:23:09.562371 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-06 12:23:09.782937 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-06 12:23:21.442359 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-06 12:23:25.150799 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| Abe penguin saale -2022-12-06 12:23:25.484112 + : pb-IF40UkQYJg== | Navestien6|मोटू भालू| -2022-12-06 12:23:30.283272 + : pb-IF4xU04OMg== | PC772976|India| me punched the no.1 guy to win lol -2022-12-06 12:23:56.080725 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| Abe penguin saale -2022-12-06 12:24:03.872293 + : pb-IF4xU04OMg== | PC772976|India| aur bhalu kaise hai bidu -2022-12-06 12:24:13.515547 + : pb-IF40UkQYJg== | Navestien6|मोटू भालू| badhiaaaaaa -2022-12-06 12:24:13.902317 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| 🫂❤️mast -2022-12-06 12:24:21.870653 + : pb-IF4xU04OMg== | PC772976|India| aacha naacha bhai -2022-12-06 12:24:26.872627 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| 0 -2022-12-06 12:24:27.197436 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| uff emotional damage mereko nhi pucha -2022-12-06 12:25:02.025381 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| dono bhalu to muje kya karre ho -2022-12-06 12:25:43.523201 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|HeySmooth2| grab me -2022-12-06 12:25:49.126865 + : pb-IF4xU04OMg== | PC772976|India| grabbed -2022-12-06 12:25:57.280470 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| smoothy -2022-12-06 12:26:05.663135 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| 🤣🤣🤣 -2022-12-06 12:26:07.063233 + : pb-IF4VVWsGIA== | PseudoAttendance18|꧁RBG☬ӁLUCKY ࿐| what -2022-12-06 12:26:08.509613 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| kyaaa thaaa wo -2022-12-06 12:26:14.352271 + : pb-IF4uU3gNKQ== | CKD360|CKD| ye kya hai -2022-12-06 12:26:15.360939 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| lmfao -2022-12-06 12:26:15.460403 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| do that again -2022-12-06 12:26:16.354851 + : pb-IF4xU04OMg== | PC772976|India| router -2022-12-06 12:26:16.474673 + : pb-IF40UkQYJg== | Navestien6|मोटू भालू| ye kaise aya -2022-12-06 12:26:19.502218 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| haye smoothy -2022-12-06 12:26:21.092238 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| grab thing -2022-12-06 12:26:26.571037 + : pb-IF4xU04OMg== | PC772976|India| ab nikao floater -2022-12-06 12:26:38.292032 + : pb-IF4uU3gNKQ== | CKD360|CKD| lift do idhar -2022-12-06 12:26:49.865702 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| tataa -2022-12-06 12:26:49.943121 + : pb-IF4xU04OMg== | PC772976|India| hahahahaha haukna -2022-12-06 12:26:56.995336 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| byee bye gaya -2022-12-06 12:27:08.259516 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| aisa lagta he gau me alian aagye 🤣🤣 bcs badak gay -2022-12-06 12:27:09.914518 + : pb-IF4xU04OMg== | PC772976|India| sssala me daar gaya itne speed se aaraha hai -2022-12-06 12:27:12.622632 + : pb-IF4xU04OMg== | PC772976|India| maar dega -2022-12-06 12:27:21.295356 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| lol😂😂 -2022-12-06 12:27:55.322817 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-06 12:27:55.462299 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-06 12:27:59.224834 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| kick/155 -2022-12-06 12:28:04.832308 + : pb-IF4uU3gNKQ== | CKD360|CKD| 😂 -2022-12-06 12:28:26.553337 + : pb-IF4uU3gNKQ== | CKD360|CKD| 🤣🤣🤣 -2022-12-06 12:28:28.355419 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| ye sali shuttii Marti rehti -2022-12-06 12:28:33.323109 + : pb-IF4VVWsGIA== | PseudoAttendance18|꧁RBG☬ӁLUCKY ࿐| access denied -2022-12-06 12:28:39.196523 + : pb-LV4FBBRcUBESWV4RFBVUV1NBRA== | mBAROT|HAKUNA MATATA| ok bye -2022-12-06 12:28:43.373201 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| ha -2022-12-06 12:28:48.752022 + : pb-IF4uU3gNKQ== | CKD360|CKD| kick smoothy🤣 -2022-12-06 12:29:11.246591 + : pb-IF4hBFgH | MrDevil|MrDevil| atlast -2022-12-06 12:29:14.105054 + : pb-IF4VVWsGIA== | PseudoAttendance18|꧁RBG☬ӁLUCKY ࿐| -2022-12-06 12:29:14.172341 + : pb-IF4uU3gNKQ== | CKD360|CKD| abey😬 -2022-12-06 12:29:18.573974 + : pb-IF4dCnou | RohanK|RohanK| end -2022-12-06 12:29:32.268499 + : pb-IF4hBFgH | MrDevil|MrDevil| mere aane ki khushi mein smoothy left -2022-12-06 12:29:33.910213 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| end -2022-12-06 12:29:46.522185 + : pb-IF4uU3gNKQ== | CKD360|CKD| apne ap ko kick kiya -2022-12-06 12:29:52.310876 + : pb-IF4hBFgH | MrDevil|MrDevil| ohh -2022-12-06 12:30:07.650634 + : pb-IF4xU04OMg== | PC772976|India| bunny side -2022-12-06 12:30:12.242145 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| kick/215 -2022-12-06 12:30:34.277607 + : pb-IF4hBFgH | MrDevil|MrDevil| Gangadhar hi shaktimaan hai -2022-12-06 12:30:52.355901 + : pb-IF4hBFgH | MrDevil|MrDevil| titli jal ki raani hai jeevan uska nalli nihari hai -2022-12-06 12:31:18.968421 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| oyy samaj aaaya ab -2022-12-06 12:31:26.278066 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| raaz isime he -2022-12-06 12:31:27.346121 + : pb-IF4hBFgH | MrDevil|MrDevil| rail gaadi chhuk chhuk jhuk jhuk -2022-12-06 12:31:30.113596 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| codes me -2022-12-06 12:31:38.371048 + : pb-IF4xU04OMg== | PC772976|India| i am coming -2022-12-06 12:31:50.199896 + : pb-IF4RU3QoXQ== | Android62576681|AR| -2022-12-06 12:31:57.074245 + : pb-IF4hBFgH | MrDevil|MrDevil| tum kya mast kaam karte ho maksud bhai -2022-12-06 12:32:08.126915 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| suiiiiiiiiiiiiiiiiiiiiiii -2022-12-06 12:32:08.330868 + : pb-IF4xU04OMg== | PC772976|India| chhada samjao isse -2022-12-06 12:32:18.583291 + : pb-IF4VVWsGIA== | PseudoAttendance18|꧁RBG☬ӁLUCKY ࿐| WTF for every command access denied -2022-12-06 12:32:27.466748 + : pb-IF4xU04OMg== | PC772976|India| paise dena padega -2022-12-06 12:32:28.819959 + : pb-IF4RU3QoXQ== | Android62576681|AR| -2022-12-06 12:32:35.874550 + : pb-IF4xU04OMg== | PC772976|India| aaise thhodi na access -2022-12-06 12:32:51.659868 + : pb-IF4RU3QoXQ== | Android62576681|AR| -2022-12-06 12:33:15.149937 + : pb-IF4RU3QoXQ== | Android62576681|AR| ashiq hu mein dil ka mujhe hilana mat sikha -2022-12-06 12:33:24.600204 + : pb-IF4RU3QoXQ== | Android62576681|AR| -2022-12-06 12:33:24.756250 + : pb-IF4RU3QoXQ== | Android62576681|AR| -2022-12-06 12:33:28.870333 + : pb-IF4RU3QoXQ== | Android62576681|AR| ********* -2022-12-06 12:33:49.757901 + : pb-IF4uU3gNKQ== | CKD360|CKD| india😒 -2022-12-06 12:33:58.034501 + : pb-IF4xU04OMg== | PC772976|India| score chor hu me -2022-12-06 12:34:04.896847 + : pb-IF4uU3gNKQ== | CKD360|CKD| 🤣 -2022-12-06 12:34:37.220039 + : pb-IF4RU3QoXQ== | Android62576681|AR| -2022-12-06 12:34:37.359912 + : pb-IF4RU3QoXQ== | Android62576681|AR| -2022-12-06 12:34:43.508521 + : pb-IF4xU04OMg== | PC772976|India| end -2022-12-06 12:35:01.440291 + : pb-IF4RU3QoXQ== | Android62576681|AR| -2022-12-06 12:35:28.035374 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| zara kya **** admi ho -2022-12-06 12:35:37.542959 + : pb-IF4xU04OMg== | PC772976|India| aareh yeh flag vale matches -2022-12-06 12:35:52.400078 + : pb-IF4RU3QoXQ== | Android62576681|AR| new graphics are pathaetic -2022-12-06 12:35:53.494211 + : pb-IF4xU04OMg== | PC772976|India| kisiko wall par chadna hai toh batao -2022-12-06 12:36:51.930056 + : pb-IF4RU3QoXQ== | Android62576681|AR| -2022-12-06 12:36:55.517403 + : pb-IF4qUxYvIA== | quicksnipe|quicksnipe| -2022-12-06 12:36:56.255710 + : pb-IF4qUxYvIA== | quicksnipe|quicksnipe| -2022-12-06 12:36:56.256288 + : pb-IF4qUxYvIA== | quicksnipe|quicksnipe| -2022-12-06 12:37:03.611955 + : pb-IF4uU3gNKQ== | CKD360|CKD| india kese fekta hai wall pe -2022-12-06 12:38:01.566298 + : pb-IF4xU04OMg== | PC772976|India| why we have less lives -2022-12-06 12:38:17.205275 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| pucho owner se -2022-12-06 12:38:48.263170 + : pb-IF4VVWsGIA== | PseudoAttendance18|꧁RBG☬ӁLUCKY ࿐| -2022-12-06 12:38:48.403105 + : pb-IF4VVWsGIA== | PseudoAttendance18|꧁RBG☬ӁLUCKY ࿐| -2022-12-06 12:39:06.254762 + : pb-IF40U00CCg== | VagueInfus|VagueInfus| -2022-12-06 12:39:11.002850 + : pb-IF4xU04OMg== | PC772976|India| 1 vs 3 now yeah -2022-12-06 12:39:16.763094 + : pb-IF4VVWsGIA== | PseudoAttendance18|꧁RBG☬ӁLUCKY ࿐| -2022-12-06 12:39:16.963233 + : pb-IF4VVWsGIA== | PseudoAttendance18|꧁RBG☬ӁLUCKY ࿐| -2022-12-06 12:39:17.163143 + : pb-IF4VVWsGIA== | PseudoAttendance18|꧁RBG☬ӁLUCKY ࿐| -2022-12-06 12:39:17.615253 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| hamish lodish.l -2022-12-06 12:40:23.374166 + : pb-IF4dCnou | RohanK|RohanK| should have kept mines -2022-12-06 12:40:45.497411 + : pb-IF4uU3gNKQ== | CKD360|CKD| mera shikar tha😑 -2022-12-06 12:40:52.496193 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| chtiya -2022-12-06 12:40:56.254813 + : pb-IF4xU04OMg== | PC772976|India| lol -2022-12-06 12:42:35.910367 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| no punching -2022-12-06 12:42:40.980118 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| only grabing okay? -2022-12-06 12:42:43.918764 + : pb-IF4xU04OMg== | PC772976|India| sure -2022-12-06 12:42:49.234334 + : pb-IF4xU04OMg== | PC772976|India| finally someone -2022-12-06 12:42:51.336237 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| no bombs too -2022-12-06 12:42:54.622249 + : pb-IF4xU04OMg== | PC772976|India| thining like me -2022-12-06 12:43:27.945929 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| gju penguin -2022-12-06 12:44:02.849635 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| end -2022-12-06 12:44:40.949876 + : pb-IF4xU04OMg== | PC772976|India| kick karo betrayer -2022-12-06 12:44:46.689907 + : pb-IF4xU04OMg== | PC772976|India| Darkness betraying -2022-12-06 12:44:51.317486 + : pb-IF4xU04OMg== | PC772976|India| kick him friends -2022-12-06 12:45:09.373357 + : pb-IF4xU04OMg== | PC772976|India| rn help -2022-12-06 12:45:22.964783 + : pb-IF4sUhk4JA== | UselessGuy|UselessGuy| lag -2022-12-06 12:45:34.711691 + : pb-IF4rU0o9KQ== | Android63770342|(⁠⌐⁠■⁠-⁠■⁠)| -2022-12-06 12:45:34.797030 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 12:45:34.892979 + : pb-IF4rU0o9KQ== | Android63770342|(⁠⌐⁠■⁠-⁠■⁠)| -2022-12-06 12:45:35.080343 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| bruh u guys are ruthless -2022-12-06 12:47:55.340633 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| darkness? nofe -2022-12-06 12:47:55.987081 + : pb-IF4uU3gNKQ== | CKD360|CKD| amg -2022-12-06 12:48:06.094588 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| ckd🤣 -2022-12-06 12:49:19.564792 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| sry bro -2022-12-06 12:50:34.845193 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| ckd ky kr -2022-12-06 12:50:42.112023 + : pb-IF4uU3gNKQ== | CKD360|CKD| 😒 -2022-12-06 12:51:29.792000 + : pb-IF4uU3gNKQ== | CKD360|CKD| chainsaw😑 -2022-12-06 12:51:36.892537 + : pb-IF4uU3gNKQ== | CKD360|CKD| 🏳️‍🌈 -2022-12-06 12:51:46.012783 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| play -2022-12-06 12:51:54.103439 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| 🤣 -2022-12-06 12:52:02.807683 + : pb-IF4lVG8eBA== | LogicalDuck1803|BILLGATE| 0 -2022-12-06 12:52:18.327725 + : pb-IF4DU0IEJg== | CHAINSAW|denji| chainsaw man is anime -2022-12-06 12:52:29.132054 + : pb-IF4uU3gNKQ== | CKD360|CKD| chainsaw is chumtiya -2022-12-06 12:52:38.849472 + : pb-IF4DU0IEJg== | CHAINSAW|denji| like ur dad? -2022-12-06 12:52:43.532129 + : pb-IF4uU3gNKQ== | CKD360|CKD| like my son -2022-12-06 12:52:49.026835 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|Magoogan| gud -2022-12-06 12:52:51.702532 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| like my grand son -2022-12-06 12:52:55.094221 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😁 -2022-12-06 12:52:59.266036 + : pb-IF4xU04OMg== | PC772976|India| like my -2022-12-06 12:53:04.372688 + : pb-IF4uU3gNKQ== | CKD360|CKD| 🤣 -2022-12-06 12:53:09.144165 + : pb-IF4DU0IEJg== | CHAINSAW|denji| genetically son inherits genes from father hene you chumtiya -2022-12-06 12:53:36.347195 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| **** health leta -2022-12-06 12:53:40.670001 + : pb-IF4xU04OMg== | PC772976|India| denji noobada -2022-12-06 12:54:29.280263 + : pb-IF4tV0YpCg== | FuschiaChicken22885|ICE AGENT| -2022-12-06 12:54:29.479370 + : pb-IF4tV0YpCg== | FuschiaChicken22885|ICE AGENT| -2022-12-06 12:54:29.639643 + : pb-IF4tV0YpCg== | FuschiaChicken22885|ICE AGENT| -2022-12-06 12:54:29.799494 + : pb-IF4tV0YpCg== | FuschiaChicken22885|ICE AGENT| -2022-12-06 12:54:34.892904 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| 0 -2022-12-06 12:54:37.396376 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|Magoogan| gud -2022-12-06 12:55:09.499516 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| betaa kisko taklif ha apne paappa se -2022-12-06 12:55:18.099686 + : pb-IF4DU0IEJg== | CHAINSAW|denji| tere papa ko -2022-12-06 12:55:21.128364 + : pb-IF4xU04OMg== | PC772976|India| danji ko -2022-12-06 12:55:35.377234 + : pb-IF4DU0IEJg== | CHAINSAW|denji| mene kick nhi kiya vivek ni kiya lowde -2022-12-06 12:55:39.012687 + : pb-IF4uU3gNKQ== | CKD360|CKD| denji kha khogaya👀 -2022-12-06 12:55:46.908276 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 😁😁 -2022-12-06 12:55:49.767089 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| tera papa to me hoo baap.se **********hi -2022-12-06 12:55:58.423127 + : pb-IF4DU0IEJg== | CHAINSAW|denji| lun mera -2022-12-06 12:56:16.812460 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|Magoogan| gud -2022-12-06 12:56:17.936355 + : pb-IF4DU0IEJg== | CHAINSAW|denji| India noob -2022-12-06 12:56:27.120804 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| wo muje pata ha denji bro -2022-12-06 12:56:29.548944 + : pb-IF4xU04OMg== | PC772976|India| your mothe nice voobs -2022-12-06 12:56:38.963870 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| kuch hote c type -2022-12-06 12:56:47.036989 + : pb-IF4DU0IEJg== | CHAINSAW|denji| point hai -2022-12-06 12:56:49.011261 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| chu...tia -2022-12-06 12:56:52.497732 + : pb-IF4uU3gNKQ== | CKD360|CKD| fk filters🤣 -2022-12-06 12:56:54.110998 + : pb-IF41U0Y5PA== | Rajjadhav9|Rajjadhav9| 😂😂😂 -2022-12-06 12:56:58.407949 + : pb-IF4xU04OMg== | PC772976|India| tereko he bol rahe hai voh -2022-12-06 12:57:05.100838 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| tu ha muje pata h -2022-12-06 12:58:09.079964 + : pb-IF4xU04OMg== | PC772976|India| lol -2022-12-06 12:58:38.817818 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 12:58:38.983219 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 12:58:39.112239 + : pb-IF4xU04OMg== | PC772976|India| hahahah -2022-12-06 12:58:39.149150 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 12:58:44.720102 + : pb-IF4xU04OMg== | PC772976|India| sagar op -2022-12-06 12:58:44.880865 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|Magoogan| lol -2022-12-06 12:58:46.787407 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| chu...tia -2022-12-06 12:58:49.586453 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| lol -2022-12-06 12:58:59.547975 + : pb-IF4xU04OMg== | PC772976|India| mujhe mvp -2022-12-06 12:59:05.577535 + : pb-IF4xU04OMg== | PC772976|India| maine kuch kiya he nahe lol -2022-12-06 12:59:21.827004 + : pb-IF4uU3gNKQ== | CKD360|CKD| 🤣tu chori kya tha -2022-12-06 12:59:29.158879 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-06 12:59:31.335998 + : pb-IF4xU04OMg== | PC772976|India| ha ab yaad aaya -2022-12-06 13:00:10.815015 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| 😹 -2022-12-06 13:00:12.356928 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 13:00:20.666890 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| itni tadap kisiko pitne ki xd -2022-12-06 13:00:26.547841 + : pb-IF4xU04OMg== | PC772976|India| haaahaha -2022-12-06 13:00:32.986901 + : pb-IF4uU3gNKQ== | CKD360|CKD| 😂 -2022-12-06 13:00:38.320557 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| am out 😹 -2022-12-06 13:01:07.415206 + : pb-IF4xU04OMg== | PC772976|India| bill gate nahe suicide gate hai yeh -2022-12-06 13:01:21.909945 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| bs.dk -2022-12-06 13:01:26.829035 + : pb-IF4DU0IEJg== | CHAINSAW|denji| sorry vivek -2022-12-06 13:02:11.686632 + : pb-IF4xU04OMg== | PC772976|India| red me chale dosto? -2022-12-06 13:02:19.066805 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| 2 vs 6 -2022-12-06 13:02:51.201844 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 13:02:59.015639 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|Magoogan| lol -2022-12-06 13:03:08.932467 + : pb-IF4uU3gNKQ== | CKD360|CKD| red me jao koi -2022-12-06 13:03:15.903004 + : pb-IF4xU04OMg== | PC772976|India| lol -2022-12-06 13:04:26.479062 + : pb-IF4DU0IEJg== | CHAINSAW|Rico| SIUU -2022-12-06 13:06:01.488979 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|Magoogan| well played -2022-12-06 13:06:11.924500 + : pb-IF4xU04OMg== | PC772976|India| tukka -2022-12-06 13:06:15.051387 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 13:06:22.056942 + : pb-IF4uU3gNKQ== | CKD360|CKD| 😂 -2022-12-06 13:06:27.337137 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|Magoogan| ha😂 -2022-12-06 13:06:37.879205 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|Magoogan| bolne de dard hua hai bichare ko -2022-12-06 13:06:41.747042 + : pb-IF4xU04OMg== | PC772976|India| ha -2022-12-06 13:07:45.277618 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-06 13:07:46.935039 + : pb-IF4xU04OMg== | PC772976|India| lol -2022-12-06 13:08:14.578205 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 13:08:31.061334 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| ckd tu bhi gaya ky🤣 -2022-12-06 13:08:42.127099 + : pb-IF4uU3gNKQ== | CKD360|CKD| me toh gir gaya niche 2 bar😂 -2022-12-06 13:08:49.617180 + : pb-IF4uU3gNKQ== | CKD360|CKD| upar chadh rha tha -2022-12-06 13:08:51.140779 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| 😅 -2022-12-06 13:08:58.724017 + : pb-IF4xU04OMg== | PC772976|India| very depressing -2022-12-06 13:09:10.376987 + : pb-IF4uU3gNKQ== | CKD360|CKD| 🥲 -2022-12-06 13:09:10.711733 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|Magoogan| sahilp server me kon khelta hai kya -2022-12-06 13:09:22.708026 + : pb-IF4xU04OMg== | PC772976|India| voh voh -2022-12-06 13:10:16.858342 + : pb-IF4uU3gNKQ== | CKD360|CKD| sagar jump kese kiya -2022-12-06 13:10:49.049845 + : pb-IF49U0MCCA== | LevelAccep|भोलू| rico -2022-12-06 13:11:02.735346 + : pb-IF4OU04GBg== | MRKHINDIGA|MRKHINDIGA| hello ******* -2022-12-06 13:11:03.792921 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|Magoogan| lol -2022-12-06 13:11:08.831864 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| hai -2022-12-06 13:11:19.634452 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|Magoogan| lag -2022-12-06 13:11:29.977405 + : pb-IF49U0MCCA== | LevelAccep|भोलू| -2022-12-06 13:11:36.241044 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| dolu -2022-12-06 13:11:45.517312 + : pb-IF4uU3gNKQ== | CKD360|CKD| lag -2022-12-06 13:11:49.653905 + : pb-IF49U0MCCA== | LevelAccep|भोलू| now bholu is here -2022-12-06 13:11:52.717647 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| same here -2022-12-06 13:12:00.214645 + : pb-IF49U0MCCA== | LevelAccep|भोलू| be scare -2022-12-06 13:13:13.809845 + : pb-IF5UUxgjIA== | sagarrathore481|sagar689| ckd konsi team -2022-12-06 13:13:14.331187 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| bollluuu -2022-12-06 13:13:23.942250 + : pb-IF4uU3gNKQ== | CKD360|| left hogya lag se -2022-12-06 13:13:32.179349 + : pb-IF4xU04OMg== | PC772976|India| veery very depressing -2022-12-06 13:13:33.042067 + : pb-IF4uU3gNKQ== | CKD360|| ab bhi lag ho rha me ja rha hun -2022-12-06 13:13:43.941217 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| oh bolu -2022-12-06 13:13:44.221904 + : pb-IF4uU3gNKQ== | CKD360|| very depressing -2022-12-06 13:13:48.531340 + : pb-IF49U0MCCA== | LevelAccep|भोलू| come in soon -2022-12-06 13:13:57.081488 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| 😂 -2022-12-06 13:14:10.066741 + : pb-IF4xU04OMg== | PC772976|India| gym kon kon jata hai -2022-12-06 13:15:19.833667 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| india hates dani -2022-12-06 13:15:27.467245 + : pb-IF4xU04OMg== | PC772976|India| kuch bhe bhen -2022-12-06 13:15:34.646525 + : pb-IF4xU04OMg== | PC772976|India| itne baar madad kari hai -2022-12-06 13:15:49.754352 + : pb-IF4xU04OMg== | PC772976|India| aur tum mujhe dusre surver me bhe toh mile the -2022-12-06 13:16:05.310524 + : pb-IF4xU04OMg== | PC772976|India| patani aise kaise dost hai yaad bhe nahe rakhte -2022-12-06 13:16:24.048445 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-06 13:16:26.111935 + : pb-IF4qVFcnBg== | mihirsavat|mihirsavat| -2022-12-06 13:16:27.891502 + : pb-IF4qVFcnBg== | mihirsavat|mihirsavat| -2022-12-06 13:18:11.409506 + : pb-IF4xU04OMg== | PC772976|India| khus ke pelo -2022-12-06 13:18:12.551533 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-06 13:18:12.671503 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-06 13:18:27.687050 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-06 13:18:31.493877 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 13:18:31.860805 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 13:18:32.375646 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 13:19:10.640832 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|Magoogan| gud -2022-12-06 13:19:16.481171 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| fayankaran what name is it -2022-12-06 13:19:35.245650 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| hawankaran xD -2022-12-06 13:19:49.438370 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 13:20:03.407813 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|Magoogan| lol -2022-12-06 13:20:07.481715 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| meaning ofur name -2022-12-06 13:20:12.486337 + : pb-IF4xU04OMg== | PC772976|India| didnt saw it coming -2022-12-06 13:20:23.109504 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| but we all did 😹 -2022-12-06 13:20:47.148890 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|Magoogan| lol -2022-12-06 13:20:49.820864 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| fayankaran -2022-12-06 13:21:00.061493 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| ;-; -2022-12-06 13:21:02.205610 + : pb-IF4xU04OMg== | PC772976|India| portugal vs switzerland -2022-12-06 13:21:11.381819 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| portugal -2022-12-06 13:21:20.011407 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| cr7 -2022-12-06 13:21:22.853309 + : pb-IF4rU1BdLw== | SheikRieng|Rico| suiiiii -2022-12-06 13:21:27.181224 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| siuuuuu -2022-12-06 13:21:27.811455 + : pb-IF4nUxE4Nw== | Android60071137|john wick| 💪 -2022-12-06 13:21:42.861842 + : pb-IF4xU04OMg== | PC772976|India| ssusususuiiusususu -2022-12-06 13:22:13.526823 + : pb-IF4xU04OMg== | PC772976|India| i don't like grab swing and attack -2022-12-06 13:22:21.681452 + : pb-IF4xU04OMg== | PC772976|India| just go run and punch -2022-12-06 13:22:23.700810 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| brazil will win -2022-12-06 13:22:25.481817 + : pb-IF4xU04OMg== | PC772976|India| lol -2022-12-06 13:22:37.841479 + : pb-IF4xU04OMg== | PC772976|India| brazil vs germany in world cup -2022-12-06 13:22:47.397588 + : pb-IF4xU04OMg== | PC772976|India| sadly germany is no more -2022-12-06 13:22:55.281135 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| 😂 -2022-12-06 13:23:12.566676 + : pb-IF4xU04OMg== | PC772976|India| bhai konsi team the voh 7 goal kare the kal -2022-12-06 13:24:56.239619 + : pb-IF4xU04OMg== | PC772976|India| noname side dediya karo bhai -2022-12-06 13:25:11.728594 + : pb-IF4xU04OMg== | PC772976|India| yaaryeh lod -2022-12-06 13:25:16.703514 + : pb-IF4xU04OMg== | PC772976|India| u -2022-12-06 13:26:32.269932 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|Magoogan| gud -2022-12-06 13:26:51.042639 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|Magoogan| kya krra dude -2022-12-06 13:27:04.233425 + : pb-IF4xU04OMg== | PC772976|India| bhen co catch kar lete -2022-12-06 13:27:11.542634 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|Magoogan| Kick dude -2022-12-06 13:27:16.303953 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|Magoogan| betray krra -2022-12-06 13:27:17.653519 + : pb-IF4xU04OMg== | PC772976|India| lol -2022-12-06 13:27:32.380416 + : pb-IF4xU04OMg== | PC772976|India| lol -2022-12-06 13:28:04.211637 + : pb-IF4xU04OMg== | PC772976|India| sed -2022-12-06 13:28:25.009080 + : pb-IF4xU04OMg== | PC772976|India| hheehehe -2022-12-06 13:28:25.644970 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|Magoogan| lol -2022-12-06 13:28:50.372696 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|Magoogan| character bdl ke aya ye dude -2022-12-06 13:28:58.490510 + : pb-IF4xU04OMg== | PC772976|India| hahahaha -2022-12-06 13:29:14.055621 + : pb-IF4xU04OMg== | PC772976|India| yaar maine use maar diya voh team change kar ke chala gaya -2022-12-06 13:29:53.465749 + : pb-IF4xU04OMg== | PC772976|India| wtf sed -2022-12-06 13:30:09.157992 + : pb-IF4xU04OMg== | PC772976|India| 7 baj gaye -2022-12-06 13:30:13.469132 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|Magoogan| teri team acchhi nh I he bro -2022-12-06 13:30:31.252622 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 13:30:31.385508 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 13:30:31.551597 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 13:30:31.834011 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 13:31:07.826813 + : pb-IF4xU04OMg== | PC772976|India| bam mat ohek bhai -2022-12-06 13:31:19.137326 + : pb-IF4xU04OMg== | PC772976|India| yeWest -2022-12-06 13:32:23.202694 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| help -2022-12-06 13:32:39.728776 + : pb-IF4xU04OMg== | PC772976|India| me 1 minute me aaya -2022-12-06 13:32:40.864714 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|| tatabyebyeguys, -2022-12-06 13:32:49.722408 + : pb-IF4AVHQ9NQ== | ExogenousBudget8|| sahilp me aao re koi -2022-12-06 13:32:59.229479 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-06 13:33:35.865576 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-06 13:33:36.118497 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-06 13:33:39.174153 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 13:33:39.317049 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 13:33:39.467702 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-06 13:33:39.582481 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| pakdo be 4 bar feka mene -2022-12-06 13:34:02.611785 + : pb-IF4xU04OMg== | PC772976|India| maine gina toh nahe lekin bahut baar pheka -2022-12-06 13:34:07.952600 + : pb-IF4nUxE4Nw== | Android60071137|john wick| noic -2022-12-06 13:34:14.491055 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-06 13:34:14.862997 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-06 13:34:16.834325 + : pb-IF4dUFk_ | Devil77181908|Laila💋💋| -2022-12-06 13:34:17.028919 + : pb-IF4dUFk_ | Devil77181908|Laila💋💋| -2022-12-06 13:34:17.223612 + : pb-IF4dUFk_ | Devil77181908|Laila💋💋| -2022-12-06 13:34:17.368500 + : pb-IF4dUFk_ | Devil77181908|Laila💋💋| -2022-12-06 13:34:17.548197 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| kya fekaa -2022-12-06 13:35:32.884712 + : pb-IF4xU04OMg== | PC772976|India| yeh hai badhiya match alliance epic -2022-12-06 13:35:34.600954 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-06 13:35:34.769289 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-06 13:35:49.687405 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| kisko nahi chodunga -2022-12-06 13:35:55.109661 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| mar marke rakhunga -2022-12-06 13:36:08.632679 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| lel confused -2022-12-06 13:36:08.781012 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-06 13:37:01.350743 + : pb-IF4xU04OMg== | PC772976|India| yaar -2022-12-06 13:37:05.486151 + : pb-IF4xU04OMg== | PC772976|India| aate he maar gaya -2022-12-06 13:37:23.800992 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| agli bar nahi chodunga😡 -2022-12-06 13:37:32.789308 + : pb-IF4xU04OMg== | PC772976|India| mat chodiyo bhai -2022-12-06 13:37:33.717770 + : pb-IF4nUxE4Nw== | Android60071137|john wick| agli bar😂 -2022-12-06 13:37:38.190645 + : pb-IF4xU04OMg== | PC772976|India| ek glass pani pe le -2022-12-06 13:37:56.341827 + : pb-IF4nUxE4Nw== | Android60071137|john wick| 4 baar lambi sasa lele -2022-12-06 13:37:59.175187 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| muje jante nahi tum log mafia bolte mereko -2022-12-06 13:38:06.825789 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| dekho abbb race -2022-12-06 13:38:07.290582 + : pb-IF4xU04OMg== | PC772976|India| 20 par palak chabka -2022-12-06 13:38:50.899411 + : pb-IF4xU04OMg== | PC772976|India| hahahaha -2022-12-06 13:39:37.566995 + : pb-IF4JU0U_Ug== | EdwinSajiJ|EdwinSajiJ| -2022-12-06 13:39:38.336051 + : pb-IF4JU0U_Ug== | EdwinSajiJ|EdwinSajiJ| -2022-12-06 13:39:39.236016 + : pb-IF4JU0U_Ug== | EdwinSajiJ|EdwinSajiJ| -2022-12-06 13:39:39.986075 + : pb-IF4JU0U_Ug== | EdwinSajiJ|EdwinSajiJ| -2022-12-06 13:39:56.729271 + : pb-IF4xU04OMg== | PC772976|India| sorry bhau -2022-12-06 13:40:13.748486 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 😡😡 -2022-12-06 13:41:01.781640 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| lag he mera -2022-12-06 13:41:03.783116 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| itzokiebhau -2022-12-06 13:41:46.969468 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| wahh thank u india -2022-12-06 13:42:02.605688 + : pb-IF4xU04OMg== | PC772976|India| i know you are innocent -2022-12-06 13:42:09.558818 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 😁😁😁 -2022-12-06 13:42:11.347561 + : pb-IF4xU04OMg== | PC772976|India| thats why at that moment i helped you -2022-12-06 13:42:18.277730 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ha ise hi mazak karte rahta hu😁 -2022-12-06 13:42:33.863630 + : pb-IF4nUxE4Nw== | Android60071137|john wick| fu** -2022-12-06 13:42:39.831137 + : pb-IF4xU04OMg== | PC772976|India| this means your brain is good -2022-12-06 13:42:40.402031 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ha bu ab nahi abb marungaa jeetunga😡😡 -2022-12-06 13:43:33.550189 + : pb-IF4nUxE4Nw== | Android60071137|john wick| joystick sala -2022-12-06 13:43:38.061160 + : pb-IF4xU04OMg== | PC772976|India| kon -2022-12-06 13:43:55.283702 + : pb-IF4xU04OMg== | PC772976|India| kitne ke le -2022-12-06 13:44:26.318057 + : pb-IF4nUxE4Nw== | Android60071137|john wick| aree phone ki😂 -2022-12-06 13:44:32.329524 + : pb-IF4xU04OMg== | PC772976|India| ha -2022-12-06 13:44:44.494621 + : pb-IF4xU04OMg== | PC772976|India| bahut baar ruk jati hai beech me aaise kuch? -2022-12-06 13:44:54.115437 + : pb-IF4nUxE4Nw== | Android60071137|john wick| ha -2022-12-06 13:45:08.374890 + : pb-IF4xU04OMg== | PC772976|India| bhen cho mere papa ke phone me bhe same dhikkat hai -2022-12-06 13:45:15.966913 + : pb-IF4xU04OMg== | PC772976|India| yeh joystick rukne vali -2022-12-06 13:46:15.730090 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-06 13:46:16.055051 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-06 13:46:41.685983 + : pb-IF4nUxE4Nw== | Android60071137|john wick| ye west betray kyu kar raha hai -2022-12-06 13:46:48.055520 + : pb-IF4xU04OMg== | PC772976|India| aacha -2022-12-06 13:46:52.395027 + : pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL | YeWest2024|YeWest2024| sorry mistake -2022-12-06 13:47:22.462077 + : pb-IF4xU04OMg== | PC772976|India| jjajajajjaja -2022-12-06 13:47:24.639481 + : pb-IF4nUxE4Nw== | Android60071137|john wick| are sry -2022-12-06 13:47:27.433805 + : pb-IF4xU04OMg== | PC772976|India| hahahhaah -2022-12-06 13:47:40.189292 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 13:48:15.050038 + : pb-IF4xU04OMg== | PC772976|India| aareh xrazy cat kaisa hai bidu -2022-12-06 13:48:22.168535 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol -2022-12-06 13:48:29.614973 + : pb-IF4xU04OMg== | PC772976|India| dhhika he nahe -2022-12-06 13:48:42.884524 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| good bro -2022-12-06 13:48:58.315261 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| ** -2022-12-06 13:49:00.363579 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| mf -2022-12-06 13:49:09.003214 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| kick -2022-12-06 13:49:19.348209 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| vote all -2022-12-06 13:49:23.757729 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| no tolerance for betray -2022-12-06 13:49:23.816745 + : pb-IF4xU04OMg== | PC772976|India| 111 -2022-12-06 13:49:26.033443 + : pb-IF4xU04OMg== | PC772976|India| 111111 -2022-12-06 13:49:28.313320 + : pb-IF4xU04OMg== | PC772976|India| 1111 -2022-12-06 13:49:36.879972 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 13:49:52.520987 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| bruh -2022-12-06 13:50:12.084072 + : pb-IF4xU04OMg== | PC772976|India| maine abhi tak do baar vote diya hai -2022-12-06 13:50:28.486249 + : pb-IF4xU04OMg== | PC772976|India| jab 18 ka hua tha kismat the election bhe tabhi hue the -2022-12-06 13:50:36.101849 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 13:51:11.570308 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 13:51:13.082830 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 13:51:15.501190 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 13:53:59.248846 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| india -2022-12-06 13:54:03.651051 + : pb-IF4xU04OMg== | PC772976|India| mafia -2022-12-06 13:54:05.523712 + : pb-IF4xU04OMg== | PC772976|India| dost -2022-12-06 13:54:05.536414 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| kesa laga mera maar -2022-12-06 13:54:12.302771 + : pb-IF4xU04OMg== | PC772976|India| kab maarna aapne -2022-12-06 13:54:15.711406 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| kesa laga mera majak😁 -2022-12-06 13:55:02.704545 + : pb-IF5WU3YtDg== | kingofdragonwar10|Thakkali| -2022-12-06 13:55:02.705036 + : pb-IF5WU3YtDg== | kingofdragonwar10|Thakkali| -2022-12-06 13:55:03.184145 + : pb-IF5WU3YtDg== | kingofdragonwar10|Thakkali| -2022-12-06 13:55:03.754455 + : pb-IF5WU3YtDg== | kingofdragonwar10|Thakkali| -2022-12-06 13:55:58.377212 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| sorry Beowulf miss hogaya -2022-12-06 13:56:26.674706 + : pb-IF4xU04OMg== | PC772976|India| aareh -2022-12-06 13:56:42.523034 + : pb-IF4cU00cCQ== | EasyComple|Hamish| -2022-12-06 13:56:42.760141 + : pb-IF4cU00cCQ== | EasyComple|Hamish| -2022-12-06 13:56:42.961071 + : pb-IF4cU00cCQ== | EasyComple|Hamish| -2022-12-06 13:56:43.232579 + : pb-IF4cU00cCQ== | EasyComple|Hamish| -2022-12-06 13:57:03.714741 + : pb-IF4xU04OMg== | PC772976|India| ghus ke maarro -2022-12-06 14:02:27.196571 + : pb-IF4xU04OMg== | PC772976|India| okay bye friends -2022-12-06 14:02:29.420153 + : pb-IF4xU04OMg== | PC772976|India| 1 -2022-12-06 14:02:31.093357 + : pb-IF4xU04OMg== | PC772976|India| 2 -2022-12-06 14:02:35.829842 + : pb-IF4xU04OMg== | PC772976|India| 3 -2022-12-06 14:02:46.687531 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| um... -2022-12-06 14:02:55.452343 + : pb-IF4xU04OMg== | PC772976|India| guess my name Thunder -2022-12-06 14:03:06.757303 + : pb-IF4xU04OMg== | PC772976|India| wasOnceGuts -2022-12-06 14:03:07.574567 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| sahil?? -2022-12-06 14:03:08.921411 + : pb-IF4xU04OMg== | PC772976|India| welcome -2022-12-06 14:03:16.978975 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| thanks buddy ..good evening -2022-12-06 14:03:26.137441 + : pb-IF4xU04OMg== | PC772976|India| bhai me tab se khel raha hu -2022-12-06 14:03:37.133267 + : pb-IF4xU04OMg== | PC772976|India| jab tum phele aaaye the usse phele se -2022-12-06 14:03:45.453586 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| lel hrs -2022-12-06 14:03:51.869363 + : pb-IF4xU04OMg== | PC772976|India| 7 hours -2022-12-06 14:03:57.323681 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| demn -2022-12-06 14:04:07.697229 + : pb-IF4xU04OMg== | PC772976|India| itna study kar lu toh -2022-12-06 14:04:15.680068 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 😂 -2022-12-06 14:04:26.500749 + : pb-IF4xU04OMg== | PC772976|India| study karta hu challange accepted bye bro -2022-12-06 14:04:34.344526 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| byee -2022-12-06 14:04:36.746461 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 14:04:51.838919 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-06 14:05:25.994970 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-06 14:05:48.543238 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| bye -2022-12-06 14:05:50.943280 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| india -2022-12-06 14:05:53.669591 + : pb-IF5UU05aHQ== | VoidPort2|walter| why -2022-12-06 14:05:59.501586 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| bro he left already 💀 -2022-12-06 14:06:05.378657 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| lel saw late -2022-12-06 14:06:19.136887 + : pb-IF4cU00cCQ== | EasyComple|Hamish| we are losing because oir player are offline -2022-12-06 14:06:20.431498 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| demn -2022-12-06 14:06:25.586645 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| oops -2022-12-06 14:07:27.490122 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| man ****kmm -2022-12-06 14:08:00.724384 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| demn half of the teammates are offline -2022-12-06 14:08:14.451340 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| yup -2022-12-06 14:08:53.110294 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| 1 -2022-12-06 14:09:30.576031 + : pb-IF4DU0IEJg== | CHAINSAW|Leonidas| women🗿☕ -2022-12-06 14:09:57.232979 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 🥲 -2022-12-06 14:10:58.561369 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| noooo -2022-12-06 14:10:59.581687 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| come on dude! -2022-12-06 14:11:34.406924 + : pb-IF4DU0IEJg== | CHAINSAW|Leonidas| cum on -2022-12-06 14:11:43.450541 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 🗿 -2022-12-06 14:11:50.513333 + : pb-IF4DU0IEJg== | CHAINSAW|Leonidas| 🗿🗿 -2022-12-06 14:12:08.707821 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| pain 😹 -2022-12-06 14:12:18.311412 + : pb-IF4DU0IEJg== | CHAINSAW|Leonidas| I'm in a meeting with sigmas -2022-12-06 14:12:27.523528 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| bruh -2022-12-06 14:12:39.116493 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| why the **** I grabbed that -2022-12-06 14:15:16.377035 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| gg -2022-12-06 14:15:19.171895 + : pb-IF4DU0IEJg== | CHAINSAW|Leonidas| I'm from blue -2022-12-06 14:15:47.024971 + : pb-IF4lU0c9Hw== | Android63669053|Budhdha| -2022-12-06 14:15:47.185045 + : pb-IF4lU0c9Hw== | Android63669053|Budhdha| -2022-12-06 14:15:58.653630 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| stop betraying or be reported on discord -2022-12-06 14:16:25.725154 + : pb-IF4DU0IEJg== | CHAINSAW|Leonidas| i am not betray -2022-12-06 14:16:48.243411 + : pb-IF5TU24NKA== | RichLegacy|RichLegacy| sry -2022-12-06 14:17:33.958424 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| grey hair mel and green hair mel -2022-12-06 14:17:34.297257 + : pb-IF4DU0IEJg== | CHAINSAW|Leonidas| void I am killing those who are betraying -2022-12-06 14:17:46.628939 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| ok -2022-12-06 14:18:01.924134 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| stop kidding me Leonidas -2022-12-06 14:19:03.452905 + : pb-IF4DU0IEJg== | CHAINSAW|Leonidas| -2022-12-06 14:19:03.578031 + : pb-IF4DU0IEJg== | CHAINSAW|Leonidas| -2022-12-06 14:19:04.781943 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 14:19:05.490307 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 14:19:48.855618 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 14:24:49.346886 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 14:24:50.567795 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 14:25:17.961797 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 14:36:07.841234 + : pb-IF4DU0IEJg== | CHAINSAW|denji| kick -2022-12-06 14:46:35.474751 + : pb-IF4jIEEY | DarthKille|Dolph| noob -2022-12-06 14:49:38.021203 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-06 14:50:55.638477 + : pb-IF4jIEEY | DarthKille|Dolph| irremedible ******e -2022-12-06 14:50:58.224035 + : pb-IF4jIEEY | DarthKille|Dolph| ja na -2022-12-06 14:52:15.872294 + : pb-IF4jIEEY | DarthKille|Dolph| noise -2022-12-06 14:53:02.532430 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| ahhhhhhhh -2022-12-06 14:54:20.653442 + : pb-IF4jIEEY | DarthKille|Dolph| john noob -2022-12-06 14:54:27.244914 + : pb-IF4jIEEY | DarthKille|Dolph| noise -2022-12-06 14:54:42.859324 + : pb-IF4nUxE4Nw== | Android60071137|john wick| wait -2022-12-06 14:55:41.675478 + : pb-IF4jIEEY | DarthKille|Dolph| noise -2022-12-06 14:55:42.991149 + : pb-IF41VWEHFA== | Tejaswalkoli2411|रत्ना👅| -2022-12-06 14:55:48.821608 + : pb-IF4jIEEY | DarthKille|Dolph| ratna baby -2022-12-06 14:56:53.081496 + : pb-IF4SEHAl | bisht4189|Conan| मा की छूट -2022-12-06 14:57:07.312177 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol blue team -2022-12-06 14:57:32.399649 + : pb-IF4SEHAl | bisht4189|Conan| ब्लू टीम तुम गांड मराओ -2022-12-06 14:57:39.800462 + : pb-IF4SEHAl | bisht4189|Conan| 0 -2022-12-06 14:57:42.996911 + : pb-IF41VWEHFA== | Tejaswalkoli2411|रत्ना👅| -2022-12-06 14:57:48.028901 + : pb-IF5RU2wCXQ== | IrremediableWraith22|IrremediableWraith22| q tum marvate ho kya -2022-12-06 14:57:49.333444 + : pb-IF4nUxE4Nw== | Android60071137|john wick| dolph noob😂 -2022-12-06 14:57:49.936090 + : pb-IF4jIEEY | DarthKille|Dolph| sory ratna baby -2022-12-06 14:57:56.116040 + : pb-IF4jIEEY | DarthKille|Dolph| u siemxy -2022-12-06 14:58:45.125393 + : pb-IF4SEHAl | bisht4189|Conan| रत्ना बेबी नही रंडी है -2022-12-06 14:58:58.754009 + : pb-IF4jIEEY | DarthKille|Dolph| ***** ko hi baby bolte hai -2022-12-06 14:59:09.748489 + : pb-IF4jIEEY | DarthKille|Dolph| rawandi ko hi baby bolte hai -2022-12-06 14:59:36.365205 + : pb-IF4jIEEY | DarthKille|Dolph| 1 ghante ka kitne leti hai ratna -2022-12-06 15:00:26.497523 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-06 15:00:26.681044 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-06 15:00:28.287204 + : pb-IF4qVFcnBg== | mihirsavat|Dhruv| -2022-12-06 15:00:28.387224 + : pb-IF4qVFcnBg== | mihirsavat|Dhruv| -2022-12-06 15:00:28.507242 + : pb-IF4qVFcnBg== | mihirsavat|Dhruv| -2022-12-06 15:00:28.597635 + : pb-IF4qVFcnBg== | mihirsavat|Dhruv| -2022-12-06 15:00:28.952878 + : pb-IF41VWEHFA== | Tejaswalkoli2411|रत्ना👅| -2022-12-06 15:00:34.935751 + : pb-IF4jIEEY | DarthKille|Dolph| 1 ruoay ki peosy rantna baby siemxy -2022-12-06 15:00:40.273073 + : pb-IF4SEHAl | bisht4189|Conan| नीस जॉब रतन्द -2022-12-06 15:00:55.034015 + : pb-IF4jIEEY | DarthKille|Dolph| cum harder ratna -2022-12-06 15:00:59.801614 + : pb-IF4nUxE4Nw== | Android60071137|john wick| sala joystick -2022-12-06 15:01:09.195676 + : pb-IF4jIEEY | DarthKille|Dolph| gmd me dal le joystick -2022-12-06 15:01:39.519672 + : pb-IF4nUxE4Nw== | Android60071137|john wick| tere **** jal rahi hai na dolph -2022-12-06 15:02:11.832606 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| gg -2022-12-06 15:02:13.443723 + : pb-IF41VWEHFA== | Tejaswalkoli2411|रत्ना👅| -2022-12-06 15:02:18.022533 + : pb-IF4jIEEY | DarthKille|Dolph| dolph red me bhi hai use bol rha hi kya -2022-12-06 15:02:46.711794 + : pb-IF4nUxE4Nw== | Android60071137|john wick| tuje -2022-12-06 15:03:18.485025 + : pb-IF4jIEEY | DarthKille|Dolph| john noob -2022-12-06 15:03:29.182644 + : pb-IF41VWEHFA== | Tejaswalkoli2411|रत्ना👅| on geng bra -2022-12-06 15:03:31.713738 + : pb-IF4nUxE4Nw== | Android60071137|john wick| ha thik hai -2022-12-06 15:03:33.744480 + : pb-IF4SEHAl | bisht4189|Conan| रत्ना रांड जीत गयी -2022-12-06 15:03:51.265972 + : pb-IF41VWEHFA== | Tejaswalkoli2411|रत्ना👅| ratna ko lageli bhuk -2022-12-06 15:04:05.802985 + : pb-IF4jIEEY | DarthKille|Dolph| mera lmnud khayegi kya -2022-12-06 15:05:03.270300 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| wow -2022-12-06 15:05:15.075124 + : pb-IF4jIEEY | DarthKille|Dolph| ratna ne john ko cihod diya -2022-12-06 15:05:32.128423 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|| DarthKille tamiz mein hoja -2022-12-06 15:05:38.776202 + : pb-IF4SEHAl | bisht4189|Conan| जॉन वीक रत्न का आशिक़ -2022-12-06 15:05:45.902079 + : pb-IF4jIEEY | DarthKille|Dolph| mirchi lagie -2022-12-06 15:05:57.339988 + : pb-IF4jIEEY | DarthKille|Dolph| smoothie ko -2022-12-06 15:06:07.932413 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|| khus ? -2022-12-06 15:06:21.100462 + : pb-IF41VWEHFA== | Tejaswalkoli2411|रत्ना👅| -2022-12-06 15:06:22.157267 + : pb-IF4jIEEY | DarthKille|Dolph| mast -2022-12-06 15:06:26.213385 + : pb-IF4nUxE4Nw== | Android60071137|john wick| dolph sunn -2022-12-06 15:06:39.113897 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE | HeySmooth2|| ab bol na jaio kuch idhar , .. -2022-12-06 15:07:10.834862 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| sry dolph -2022-12-06 15:07:10.837792 + : pb-IF4nUxE4Nw== | Android60071137|john wick| smooth -2022-12-06 15:07:17.122062 + : pb-IF4jIEEY | DarthKille|Dolph| its ok bro -2022-12-06 15:07:31.978806 + : pb-IF4nUxE4Nw== | Android60071137|john wick| tu ye server ka owner hai? -2022-12-06 15:07:38.010167 + : pb-IF4jIEEY | DarthKille|Dolph| yes -2022-12-06 15:07:48.935425 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| heheh -2022-12-06 15:07:50.072566 + : pb-IF4jIEEY | DarthKille|Dolph| ohh yeas -2022-12-06 15:08:07.382503 + : pb-IF4jIEEY | DarthKille|Dolph| ban kr dunga tuze -2022-12-06 15:08:32.301799 + : pb-IF4nUxE4Nw== | Android60071137|john wick| ha karde -2022-12-06 15:09:35.292910 + : pb-IF4nUxE4Nw== | Android60071137|john wick| sale voulid -2022-12-06 15:09:47.429899 + : pb-IF4jIEEY | DarthKille|Dolph| thanks dude -2022-12-06 15:10:06.445106 + : pb-IF4nUxE4Nw== | Android60071137|john wick| -2022-12-06 15:10:17.308310 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| noob team he hamari -2022-12-06 15:11:12.512256 + : pb-IF4jIEEY | DarthKille|Dolph| isha zaga navin ghetla -2022-12-06 15:11:26.478524 + : pb-IF4lU00PEA== | Android62190140|isHa| ? -2022-12-06 15:11:30.780857 + : pb-IF4gU0wxBw== | VOIDG0D|| atharv1326 report hona hai? -2022-12-06 15:11:37.548258 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| oops -2022-12-06 15:12:01.570271 + : pb-IF49U0oCKQ== | NoName44250c|NoName44250c| -2022-12-06 15:12:02.470291 + : pb-IF49U0oCKQ== | NoName44250c|NoName44250c| -2022-12-06 15:12:02.685978 + : pb-IF49U0oCKQ== | NoName44250c|NoName44250c| -2022-12-06 15:12:02.830867 + : pb-IF49U0oCKQ== | NoName44250c|NoName44250c| -2022-12-06 15:12:06.939556 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| betrayer in red -2022-12-06 15:12:45.404140 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| naash i think u noob -2022-12-06 15:13:01.054101 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| vote -2022-12-06 15:13:16.287613 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| all vote -2022-12-06 15:13:27.210488 + : pb-IF49U0oCKQ== | NoName44250c|NoName44250c| 1 -2022-12-06 15:13:31.999856 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| 1 -2022-12-06 15:13:35.733536 + : pb-IF4jIEEY | DarthKille|Dolph| 1 -2022-12-06 15:13:43.635853 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| y now -2022-12-06 15:13:50.558132 + : pb-IF4jIEEY | DarthKille|Dolph| dani -2022-12-06 15:13:55.331294 + : pb-IF4jIEEY | DarthKille|Dolph| r u ratna -2022-12-06 15:14:08.711828 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| whos ratna -2022-12-06 15:14:18.229479 + : pb-IF4jIEEY | DarthKille|Dolph| a smxy gurl -2022-12-06 15:14:53.977203 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| wait I will report his I'd atharv1326 on discord -2022-12-06 15:15:00.609027 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-06 15:15:00.784562 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-06 15:15:22.128464 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| wraith -2022-12-06 15:15:40.657675 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| nash are u girl? -2022-12-06 15:15:54.456220 + : pb-IF4AU0IoCA== | WeakerResonance54|nash| yeah -2022-12-06 15:16:50.948762 + : pb-IF4lU00PEA== | Android62190140|isHa| hi nash -2022-12-06 15:17:00.561688 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-06 15:17:00.795813 + : pb-IF4AU0IoCA== | WeakerResonance54|nash| hi -2022-12-06 15:18:04.332143 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| nash is my girlfriend -2022-12-06 15:22:39.038948 + : pb-IF4oUxAGPQ== | TejGamerNt|TejGaM3R| mpf -2022-12-06 15:22:57.270101 + : pb-IF4oUxAGPQ== | TejGamerNt|TejGaM3R| wanna do 1v1 ?? -2022-12-06 15:23:32.235063 + : pb-IF4oUxAGPQ== | TejGamerNt|TejGaM3R| mpf wanna do1v1 ?? in bcs epic super smash -2022-12-06 15:23:46.350337 + : pb-IF4rLkwp | MPF|MPF| ehh I don't like super smash servers -2022-12-06 15:23:53.468809 + : pb-IF4oUxAGPQ== | TejGamerNt|TejGaM3R| why bruh -2022-12-06 15:24:02.548017 + : pb-IF4rLkwp | MPF|MPF| too many punch spammers o.o -2022-12-06 15:24:09.395919 + : pb-IF4oUxAGPQ== | TejGamerNt|TejGaM3R| ohh -2022-12-06 15:24:17.114214 + : pb-IF4oUxAGPQ== | TejGamerNt|TejGaM3R| but its fun u know -2022-12-06 15:24:19.867194 + : pb-IF4rLkwp | MPF|MPF| and crazy unpredictable blast radius and freezing -2022-12-06 15:24:23.126663 + : pb-IF4rLkwp | MPF|MPF| true -2022-12-06 15:24:43.427903 + : pb-IF4oUxAGPQ== | TejGamerNt|TejGaM3R| i think ur a good player -2022-12-06 15:24:45.263581 + : pb-IF4lU00PEA== | Android62190140|isHa| true -2022-12-06 15:24:57.906003 + : pb-IF5RU2wCXQ== | IrremediableWraith22|IrremediableWraith22| -2022-12-06 15:24:58.135960 + : pb-IF5RU2wCXQ== | IrremediableWraith22|IrremediableWraith22| -2022-12-06 15:24:58.297604 + : pb-IF5RU2wCXQ== | IrremediableWraith22|IrremediableWraith22| -2022-12-06 15:24:58.477096 + : pb-IF5RU2wCXQ== | IrremediableWraith22|IrremediableWraith22| -2022-12-06 15:25:01.600576 + : pb-IF4rLkwp | MPF|MPF| thanks you too o.o -2022-12-06 15:25:03.369233 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| soo mnay froazen lol -2022-12-06 15:25:37.200971 + : pb-IF4oUxAGPQ== | TejGamerNt|TejGaM3R| gg😅 -2022-12-06 15:25:41.025970 + : pb-IF4rLkwp | MPF|MPF| xd -2022-12-06 15:25:54.068702 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| me ab gusse me hu red team ki kheir nahi😡 -2022-12-06 15:25:58.210674 + : pb-IF4rLkwp | MPF|MPF| aaa -2022-12-06 15:26:11.542045 + : pb-IF4oUxAGPQ== | TejGamerNt|TejGaM3R| -2022-12-06 15:26:11.685910 + : pb-IF4oUxAGPQ== | TejGamerNt|TejGaM3R| -2022-12-06 15:26:13.298322 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| blue? -2022-12-06 15:28:58.435495 + : pb-IF4oUxAGPQ== | TejGamerNt|TejGaM3R| -2022-12-06 15:29:41.437392 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-06 15:29:41.588088 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-06 15:30:00.601304 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-06 15:30:00.736562 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-06 15:30:15.414436 + : pb-IF4oUxAGPQ== | TejGamerNt|TejGaM3R| xe -2022-12-06 15:30:17.071553 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 15:30:17.576008 + : pb-IF4oUxAGPQ== | TejGamerNt|TejGaM3R| xd -2022-12-06 15:30:40.673554 + : pb-IF4rLkwp | MPF|MPF| xd ow -2022-12-06 15:30:41.255957 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| goat -2022-12-06 15:30:48.204919 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| tum bakri ho ya bakra -2022-12-06 15:31:08.021119 + : pb-IF4QUlgKAA== | Whimsical8|Gøãt| ? -2022-12-06 15:31:20.510898 + : pb-IF4oUxAGPQ== | TejGamerNt|TejGaM3R| -2022-12-06 15:31:20.681056 + : pb-IF4oUxAGPQ== | TejGamerNt|TejGaM3R| -2022-12-06 15:31:36.354079 + : pb-IF4oUxAGPQ== | TejGamerNt|TejGaM3R| he goatya -2022-12-06 15:31:51.434960 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 15:31:54.266655 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| ohh -2022-12-06 15:32:29.991913 + : pb-IF4rLkwp | MPF|MPF| nooo -2022-12-06 15:32:33.999573 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| yesss -2022-12-06 15:32:38.612277 + : pb-IF4lU00PEA== | Android62190140|isHa| lol -2022-12-06 15:32:46.732535 + : pb-IF4rLkwp | MPF|MPF| xd -2022-12-06 15:32:47.871192 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| hehe no kill -2022-12-06 15:33:22.613373 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 😁😁😁 -2022-12-06 15:34:41.827557 + : pb-IF4FVFUxVw== | MysteriousVehicle16|HACKER?| are tej bcs super smash me khel. -2022-12-06 15:34:48.401063 + : pb-IF4oUxAGPQ== | TejGamerNt|TejGaM3R| ok aja -2022-12-06 15:35:40.077345 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| parthiv -2022-12-06 15:36:18.530893 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| parthiv sharir -2022-12-06 15:38:39.159720 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| 😏😏😏 -2022-12-06 15:38:48.586755 + : pb-IF4qU2gzMA== | amanpro1|amanpro1| 😎 -2022-12-06 15:39:24.381768 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| 😏😏😏 -2022-12-06 15:39:32.350400 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| 💀 -2022-12-06 15:40:26.136408 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 15:40:26.354585 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 15:41:00.911229 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| mf -2022-12-06 15:41:55.257493 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| एम सी -2022-12-06 15:42:03.510582 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| kick clasher -2022-12-06 15:43:29.157252 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 15:43:29.337177 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 15:44:13.565611 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| sorry -2022-12-06 15:46:37.474933 + : pb-IF5XU00EDA== | ElectiveEa|...| end -2022-12-06 15:46:52.540565 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| end -2022-12-06 15:47:01.307152 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| end -2022-12-06 15:48:20.726567 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 15:49:51.608097 + : pb-IF4JU3MxCQ== | AdvancedExpomnent45m|😈i am king😈| -2022-12-06 15:49:52.162974 + : pb-IF4JU3MxCQ== | AdvancedExpomnent45m|😈i am king😈| -2022-12-06 15:50:14.295440 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 15:50:15.515721 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| sorry -2022-12-06 15:50:21.403245 + : pb-IF4QUlgKAA== | Whimsical8|Gøãt| eeh I'm joining marvel -2022-12-06 15:50:21.654276 + : pb-IF4QUlgKAA== | Whimsical8|Gøãt| -2022-12-06 15:50:31.973233 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 15:50:32.122233 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 15:50:32.303179 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 15:50:32.466496 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 15:52:24.310499 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| oops -2022-12-06 15:55:31.345577 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-06 15:55:31.505521 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-06 15:55:36.505458 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| haaaaa -2022-12-06 15:55:59.626682 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| duck goat -2022-12-06 15:56:55.331636 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| -2022-12-06 15:59:37.474833 + : pb-IF4-U3gdFw== | Android63053623|ᥨᕰᏣፗҒʓⴽ‎| bomb ese fekte h -2022-12-06 16:00:45.654966 + : pb-IF4-U3gdFw== | Android63053623|ᥨᕰᏣፗҒʓⴽ‎| -2022-12-06 16:00:45.834780 + : pb-IF4-U3gdFw== | Android63053623|ᥨᕰᏣፗҒʓⴽ‎| -2022-12-06 16:00:45.974848 + : pb-IF4-U3gdFw== | Android63053623|ᥨᕰᏣፗҒʓⴽ‎| -2022-12-06 16:00:46.094869 + : pb-IF4-U3gdFw== | Android63053623|ᥨᕰᏣፗҒʓⴽ‎| -2022-12-06 16:01:03.249641 + : pb-IF4-U3gdFw== | Android63053623|ᥨᕰᏣፗҒʓⴽ‎| partha? -2022-12-06 16:03:31.756862 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| -2022-12-06 16:03:31.888716 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| -2022-12-06 16:03:50.517568 + : pb-IF4PU0YSXA== | CreepySamurai688|Uther| -2022-12-06 16:03:50.988101 + : pb-IF4PU0YSXA== | CreepySamurai688|Uther| -2022-12-06 16:18:59.508117 + : pb-IF4DU0IEJg== | CHAINSAW|denji| W men☕ -2022-12-06 16:20:19.480005 + : pb-IF4DU0IEJg== | CHAINSAW|denji| women☕ -2022-12-06 16:22:59.355931 + : pb-IF4DU0IEJg== | CHAINSAW|denji| -2022-12-06 16:22:59.685147 + : pb-IF4DU0IEJg== | CHAINSAW|denji| -2022-12-06 16:23:00.080569 + : pb-IF4DU0IEJg== | CHAINSAW|denji| -2022-12-06 16:26:40.531437 + : pb-IF4yD3Qc | SpaceShutt|bunny| watch out denji -2022-12-06 16:26:42.483556 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| 0 -2022-12-06 16:26:48.641720 + : pb-IF4yD3Qc | SpaceShutt|bunny| oo denji die -2022-12-06 16:26:48.856371 + : pb-IF4DU0IEJg== | CHAINSAW|denji| why -2022-12-06 16:27:07.492048 + : pb-IF4yD3Qc | SpaceShutt|bunny| i was talking about that incoming bomb -2022-12-06 16:27:16.532644 + : pb-IF4DU0IEJg== | CHAINSAW|denji| yeah fk -2022-12-06 16:27:33.267834 + : pb-IF5UUkMkVw== | Instructi6|SIGMA MALE| gg -2022-12-06 16:27:34.001520 + : pb-IF4yD3Qc | SpaceShutt|bunny| wht is full form of fk? -2022-12-06 16:27:37.562014 + : pb-IF4DU0IEJg== | CHAINSAW|denji| RED WILL NEVER WIN AGAIN -2022-12-06 16:27:57.743132 + : pb-IF4DU0IEJg== | CHAINSAW|denji| fk = for karma -2022-12-06 16:28:01.357361 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| oohhh -2022-12-06 16:28:03.377271 + : pb-IF4yD3Qc | SpaceShutt|bunny| ok -2022-12-06 16:28:25.484355 + : pb-IF4rLkwp | MPF|MPF| sorry teammate o.o -2022-12-06 16:32:14.977540 + : pb-IF4rLkwp | MPF|MPF| maintain distance between teammates guys -2022-12-06 16:35:30.725026 + : pb-IF4rLkwp | MPF|MPF| dude xd -2022-12-06 16:35:43.014548 + : pb-IF4DU0IEJg== | CHAINSAW|denji| asked? -2022-12-06 16:36:32.819097 + : pb-IF4rLkwp | MPF|MPF| so many team kills 8( -2022-12-06 16:37:37.430335 + : pb-IF5RU2wCXQ== | IrremediableWraith22|IrremediableWraith22| -2022-12-06 16:37:37.651239 + : pb-IF5RU2wCXQ== | IrremediableWraith22|IrremediableWraith22| -2022-12-06 16:38:13.883384 + : pb-IF4DU0IEJg== | CHAINSAW|denji| he'd be trippin 💀 -2022-12-06 16:39:25.147269 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| 0 -2022-12-06 16:39:43.513157 + : pb-IF4DU0IEJg== | CHAINSAW|denji| take curse -2022-12-06 16:39:57.919830 + : pb-IF4VUhAKEg== | InhumaneDa|InhumaneDa| -2022-12-06 16:39:58.084557 + : pb-IF4VUhAKEg== | InhumaneDa|InhumaneDa| -2022-12-06 16:39:58.261032 + : pb-IF4VUhAKEg== | InhumaneDa|InhumaneDa| -2022-12-06 16:39:58.418836 + : pb-IF4VUhAKEg== | InhumaneDa|InhumaneDa| -2022-12-06 16:40:43.995950 + : pb-IF4rLkwp | MPF|MPF| breh -2022-12-06 16:40:50.334054 + : pb-IF4VUhAKEg== | InhumaneDa|InhumaneDa| -2022-12-06 16:40:50.501070 + : pb-IF4VUhAKEg== | InhumaneDa|InhumaneDa| -2022-12-06 16:40:50.667962 + : pb-IF4VUhAKEg== | InhumaneDa|InhumaneDa| -2022-12-06 16:40:50.832913 + : pb-IF4VUhAKEg== | InhumaneDa|InhumaneDa| -2022-12-06 16:40:51.769288 + : pb-IF4DU0IEJg== | CHAINSAW|denji| rabbits these days💀☕ -2022-12-06 16:41:01.557927 + : pb-IF4VUhAKEg== | InhumaneDa|InhumaneDa| -2022-12-06 16:41:03.390662 + : pb-IF4VUhAKEg== | InhumaneDa|InhumaneDa| -2022-12-06 16:41:03.590260 + : pb-IF4VUhAKEg== | InhumaneDa|InhumaneDa| -2022-12-06 16:41:03.798528 + : pb-IF4VUhAKEg== | InhumaneDa|InhumaneDa| -2022-12-06 16:41:08.254533 + : pb-IF49VRABPA== | Tinymonk32|Roronaro Zoro ⚔️| -2022-12-06 16:41:08.422577 + : pb-IF49VRABPA== | Tinymonk32|Roronaro Zoro ⚔️| -2022-12-06 16:41:08.574505 + : pb-IF49VRABPA== | Tinymonk32|Roronaro Zoro ⚔️| -2022-12-06 16:41:08.724690 + : pb-IF49VRABPA== | Tinymonk32|Roronaro Zoro ⚔️| -2022-12-06 16:41:22.463629 + : pb-IF49VRABPA== | Tinymonk32|Roronaro Zoro ⚔️| -2022-12-06 16:41:22.621253 + : pb-IF49VRABPA== | Tinymonk32|Roronaro Zoro ⚔️| -2022-12-06 16:41:22.774574 + : pb-IF49VRABPA== | Tinymonk32|Roronaro Zoro ⚔️| -2022-12-06 16:41:22.924593 + : pb-IF49VRABPA== | Tinymonk32|Roronaro Zoro ⚔️| -2022-12-06 16:41:33.970754 + : pb-IF4rLkwp | MPF|MPF| at least I'm not butthurt and starting kick votes, unlike unxd -2022-12-06 16:41:50.547056 + : pb-IF4DU0IEJg== | CHAINSAW|denji| yeah✅🗿 -2022-12-06 16:41:56.162663 + : pb-IF49VRABPA== | Tinymonk32|Roronaro Zoro ⚔️| -2022-12-06 16:41:56.484257 + : pb-IF49VRABPA== | Tinymonk32|Roronaro Zoro ⚔️| -2022-12-06 16:42:00.733626 + : pb-IF49VRABPA== | Tinymonk32|Roronaro Zoro ⚔️| -2022-12-06 16:42:00.884724 + : pb-IF49VRABPA== | Tinymonk32|Roronaro Zoro ⚔️| -2022-12-06 16:42:15.076045 + : pb-IF4DU0IEJg== | CHAINSAW|denji| not scared like you !🗿 -2022-12-06 16:42:15.437237 + : pb-IF4rLkwp | MPF|MPF| ouchid -2022-12-06 16:42:22.401746 + : pb-IF4rLkwp | MPF|MPF| lul -2022-12-06 16:43:04.135645 + : pb-IF4DU0IEJg== | CHAINSAW|denji| haha red🗿✅☕ -2022-12-06 16:43:22.412481 + : pb-IF4rLkwp | MPF|MPF| y'all run I'll defend -2022-12-06 16:44:13.454899 + : pb-IF4DU0IEJg== | CHAINSAW|denji| -2022-12-06 16:45:51.850031 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-06 16:47:10.771089 + : pb-IF4VU3EjBg== | viru199554|viru199554| 1 -2022-12-06 16:47:16.800865 + : pb-IF4VU3EjBg== | viru199554|viru199554| 0 -2022-12-06 16:47:35.366524 + : pb-IF4VU3EjBg== | viru199554|viru199554| yes -2022-12-06 16:48:12.709853 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-06 16:49:07.925323 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-06 16:49:34.559781 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| petroo -2022-12-06 16:50:01.731062 + : pb-IF4eU0wpKg== | Unrelenti4|Conan| -2022-12-06 16:50:01.883157 + : pb-IF4eU0wpKg== | Unrelenti4|Conan| -2022-12-06 16:50:02.013918 + : pb-IF4eU0wpKg== | Unrelenti4|Conan| -2022-12-06 16:52:16.630001 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| wow -2022-12-06 16:52:58.289806 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-06 16:52:58.449894 + : pb-IF4SF0Em | MuddyJoker|𝖆𝖓𝖓𝖎𝖞𝖆𝖓| -2022-12-06 16:53:01.114834 + : pb-IF4rLkwp | MPF|MPF| ahhh sorry -2022-12-06 16:54:41.203282 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| -2022-12-06 16:54:41.338947 + : pb-IF5XVGQoFA== | albyresto7|DANI DANIEL| -2022-12-06 16:54:42.341342 + : pb-IF4rLkwp | MPF|MPF| damn xd -2022-12-06 16:57:25.747077 + : pb-IF4rLkwp | MPF|MPF| oo it works -2022-12-06 17:06:52.476981 + : pb-IF4rLkwp | MPF|MPF| dude -2022-12-06 17:06:57.508579 + : pb-IF4UU0YbEQ== | Moldyblade|Kanav&Hreyansh| oops -2022-12-06 17:10:00.445756 + : pb-IF4-U2suMg== | Anthropolo|Murphy| *****s -2022-12-06 17:16:13.249206 + : pb-IF4rLkwp | MPF|MPF| xd -2022-12-06 17:16:15.720143 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 17:17:22.504236 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 17:18:03.328132 + : pb-IF4UU0YbEQ== | Moldyblade|Kanav&Hreyansh| bruh -2022-12-06 17:18:06.106877 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 17:18:50.822962 + : pb-IF4FU0waDw== | RubyRingBe|RubyRingBe| -2022-12-06 17:18:51.007821 + : pb-IF4FU0waDw== | RubyRingBe|RubyRingBe| -2022-12-06 17:18:51.227278 + : pb-IF4FU0waDw== | RubyRingBe|RubyRingBe| -2022-12-06 17:18:51.407613 + : pb-IF4FU0waDw== | RubyRingBe|RubyRingBe| -2022-12-06 17:20:16.684320 + : pb-IF4rLkwp | MPF|MPF| weee -2022-12-06 17:21:48.200992 + : pb-IF4rLkwp | MPF|MPF| aa -2022-12-06 17:24:19.090674 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-06 17:26:45.302784 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 17:26:49.872564 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| -2022-12-06 17:27:19.647236 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 1 -2022-12-06 17:27:23.147473 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| kick -2022-12-06 17:27:30.214217 + : pb-IF4XNWsZ | Hmm183|rash| stfu -2022-12-06 17:27:34.664760 + : pb-IF4XNWsZ | Hmm183|rash| u my ***** -2022-12-06 17:27:43.764789 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| next round onwards.. i bet your survival -2022-12-06 17:27:53.621410 + : pb-IF4XNWsZ | Hmm183|rash| suck my di_ck -2022-12-06 17:28:01.246940 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|| hold ya getting blue to beat ya *** legally -2022-12-06 17:28:05.114489 + : pb-IF4rLkwp | MPF|MPF| team killing o.o -2022-12-06 17:28:11.656274 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| akhiya nikal ke gotiya khelunga -2022-12-06 17:28:15.712523 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| 👁👁 -2022-12-06 17:28:15.722701 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|| kick ..vote mates -2022-12-06 17:29:29.031327 + : pb-IF4rLkwp | MPF|MPF| lemme throw someone there -2022-12-06 17:29:41.428377 + : pb-IF4rLkwp | MPF|MPF| oops -2022-12-06 17:29:49.140675 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-06 17:29:49.300575 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-06 17:29:49.529511 + : pb-IF4rLkwp | MPF|MPF| lol he left -2022-12-06 17:29:55.326881 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| gg -2022-12-06 17:29:56.098403 + : pb-IF4XNWsZ | Hmm183|rash| i am back -2022-12-06 17:30:01.473332 + : pb-IF4XNWsZ | Hmm183|rash| too much lag -2022-12-06 17:30:03.294532 + : pb-IF4rLkwp | MPF|MPF| oh hell no -2022-12-06 17:30:15.785871 + : pb-IF4xMkpd | ValiantThu|Dude| rash ki maa ko mene itna pela ki uske gamd mey rash hogaya -2022-12-06 17:31:26.095248 + : pb-IF4XNWsZ | Hmm183|rash| i am just going to leave -2022-12-06 17:31:33.303844 + : pb-IF4XNWsZ | Hmm183|rash| there is too much lag -2022-12-06 17:31:38.103742 + : pb-IF4xMkpd | ValiantThu|Dude| rash kaha gaya tha, apni mummy ko dawai lagane -2022-12-06 17:31:38.380703 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-06 17:31:38.394160 + : pb-IF4XNWsZ | Hmm183|rash| bye -2022-12-06 17:31:38.520920 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-06 17:31:49.413866 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| magi joker -2022-12-06 17:32:18.883230 + : pb-IF4rLkwp | MPF|MPF| wp -2022-12-06 17:32:19.164197 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| magic joker -2022-12-06 17:32:45.350569 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| oyy sun rahe ho magic joker -2022-12-06 17:33:18.044638 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| kya me hasuuu? -2022-12-06 17:35:05.389410 + : pb-IF4rLkwp | MPF|MPF| BRUH -2022-12-06 17:35:07.211422 + : pb-IF4rLkwp | MPF|MPF| xd -2022-12-06 17:35:07.995214 + : pb-IF4xMkpd | ValiantThu|Dude| :( -2022-12-06 17:36:19.624991 + : pb-IF4xMkpd | ValiantThu|Dude| sorry bhalu -2022-12-06 17:41:21.470998 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| guts I passed u😑 -2022-12-06 17:41:26.716179 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| demn -2022-12-06 17:41:52.147076 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| shit -2022-12-06 17:43:34.180683 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-06 17:43:34.340574 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-06 17:44:01.119078 + : pb-IF4vVRUFVA== | BoomBaam11|AVII💀| end this -2022-12-06 17:44:04.505476 + : pb-IF4vVRUFVA== | BoomBaam11|AVII💀| end -2022-12-06 17:44:08.507144 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| end -2022-12-06 17:44:16.825366 + : pb-IF4vVRUFVA== | BoomBaam11|AVII💀| type end -2022-12-06 17:46:03.430949 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| ****kk -2022-12-06 17:46:03.611096 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| not again -2022-12-06 17:46:03.837430 + : pb-IF4rLkwp | MPF|MPF| oh no not again -2022-12-06 17:46:07.613923 + : pb-IF4rLkwp | MPF|MPF| lol -2022-12-06 17:46:10.457008 + : pb-IF4vVRUFVA== | BoomBaam11|AVII💀| end -2022-12-06 17:46:15.186862 + : pb-IF4rU2EZEw== | Android60974634|Android60974634| end -2022-12-06 17:46:16.146570 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| let someone win -2022-12-06 17:46:19.304448 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| yeah -2022-12-06 17:46:22.018916 + : pb-IF4cU2UJCA== | Raghav2655|Raghav2655| end -2022-12-06 17:46:27.315547 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| finish it fast -2022-12-06 17:46:28.959033 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| let red win plz -2022-12-06 17:46:30.361705 + : pb-IF4rU2EZEw== | Android60974634|Android60974634| end this shit of piece -2022-12-06 17:46:30.791640 + : pb-IF4vVRUFVA== | BoomBaam11|AVII💀| hi ahana -2022-12-06 17:46:30.941351 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| end -2022-12-06 17:46:33.901690 + : pb-IF4rLkwp | MPF|MPF| we can end vote -2022-12-06 17:46:36.250479 + : pb-IF4rLkwp | MPF|MPF| end -2022-12-06 17:46:37.510941 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| oh hii -2022-12-06 17:46:38.402412 + : pb-IF4vVRUFVA== | BoomBaam11|AVII💀| end -2022-12-06 17:46:44.035299 + : pb-IF4cU2UJCA== | Raghav2655|Raghav2655| end -2022-12-06 17:46:48.598387 + : pb-IF4vVRUFVA== | BoomBaam11|AVII💀| u know me -2022-12-06 17:46:54.767151 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| ur name? -2022-12-06 17:46:57.046059 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| umm ahana u really girl💀 -2022-12-06 17:47:05.230871 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| yes -2022-12-06 17:47:10.212066 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| ohk -2022-12-06 17:47:11.615184 + : pb-IF4rLkwp | MPF|MPF| Conan stop killing me -2022-12-06 17:47:20.164829 + : pb-IF4vVRUFVA== | BoomBaam11|AVII💀| avi -2022-12-06 17:47:23.827223 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| let red win plz -2022-12-06 17:47:28.519214 + : pb-IF4cU2UJCA== | Raghav2655|Raghav2655| end -2022-12-06 17:47:29.839111 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| avi? -2022-12-06 17:47:33.285052 + : pb-IF4vVRUFVA== | BoomBaam11|AVII💀| end -2022-12-06 17:47:33.540963 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| end -2022-12-06 17:47:39.548206 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| i ain't doin anything -2022-12-06 17:47:39.628012 + : pb-IF4xMkpd | ValiantThu|Dude| end -2022-12-06 17:47:55.826612 + : pb-IF4vVRUFVA== | BoomBaam11|AVII💀| question mark nhi sirf avi -2022-12-06 17:48:07.721867 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| i dont know u -2022-12-06 17:48:25.850630 + : pb-IF4vVRUFVA== | BoomBaam11|AVII💀| bhul gyi -2022-12-06 17:48:38.925424 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ohk -2022-12-06 17:48:38.968059 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| ha 🙄 -2022-12-06 17:48:50.556736 + : pb-IF4rLkwp | MPF|MPF| 0 -2022-12-06 17:48:56.160487 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| 0 -2022-12-06 17:48:57.731129 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| thik se batao -2022-12-06 17:48:59.899575 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| mpf😑😑😑 -2022-12-06 17:49:02.570875 + : pb-IF4rLkwp | MPF|MPF| xd -2022-12-06 17:49:03.911955 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| insta pe ho? -2022-12-06 17:49:10.564508 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| haabhu -2022-12-06 17:49:13.854702 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ha hu -2022-12-06 17:49:29.418048 + : pb-IF4rLkwp | MPF|MPF| brief silence -2022-12-06 17:49:32.148577 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| name? -2022-12-06 17:49:37.504365 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| parth -2022-12-06 17:49:44.963221 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| are -2022-12-06 17:49:53.369426 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| kya -2022-12-06 17:49:55.567403 + : pb-IF4vVRUFVA== | BoomBaam11|AVII💀| are mjk kr rha tha chod n -2022-12-06 17:50:10.283736 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| oh ok -2022-12-06 17:50:29.775205 + : pb-IF4xMkpd | ValiantThu|Dude| bah -2022-12-06 17:50:38.250720 + : pb-IF4rLkwp | MPF|MPF| buh -2022-12-06 17:50:49.354296 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| kya palti mara -2022-12-06 17:50:57.688715 + : pb-IF4-U3gdFw== | Android63053623|🎄💀 𝕂ᶤηg 🐉♗| me har jagah hun🙂 -2022-12-06 17:51:05.044760 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| chenbod -2022-12-06 17:51:12.017804 + : pb-IF4rLkwp | MPF|MPF| ow -2022-12-06 17:51:13.004179 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 😂 -2022-12-06 17:52:27.452417 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| yo gut lemme get a chance -2022-12-06 17:52:44.504754 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| end -2022-12-06 17:52:49.593437 + : pb-IF4rLkwp | MPF|MPF| breh -2022-12-06 17:52:51.240063 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| end -2022-12-06 17:52:51.384289 + : pb-IF4vVRUFVA== | BoomBaam11|AVII💀| waise kaha se ho ahana -2022-12-06 17:53:00.344340 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ghar ze -2022-12-06 17:53:01.053491 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| ghar se😑 -2022-12-06 17:53:02.304718 + : pb-IF4vVRUFVA== | BoomBaam11|AVII💀| khelo re -2022-12-06 17:53:10.800723 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| 😂 -2022-12-06 17:53:12.053829 + : pb-IF4-U3gdFw== | Android63053623|🎄💀 𝕂ᶤηg 🐉♗| mere dil se -2022-12-06 17:53:15.604441 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| thunder👍😅😂 -2022-12-06 17:53:22.134883 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| am watching a serie sideby so obvio ull get one thunder 😹 -2022-12-06 17:53:22.136851 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| vaah gg -2022-12-06 17:53:26.546839 + : pb-IF4vVRUFVA== | BoomBaam11|AVII💀| tere ghr se bhai 😃 -2022-12-06 17:53:33.420095 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| sense of humour -2022-12-06 17:53:33.494229 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| not totally focused uk -2022-12-06 17:53:34.492956 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| jeez -2022-12-06 17:53:38.645302 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| king is op sahil -2022-12-06 17:53:49.813787 + : pb-IF4-U3gdFw== | Android63053623|🎄💀 𝕂ᶤηg 🐉♗| 😏 -2022-12-06 17:53:55.123712 + : pb-IF4-U3gdFw== | Android63053623|🎄💀 𝕂ᶤηg 🐉♗| ghanta -2022-12-06 17:54:06.173824 + : pb-IF4-U3gdFw== | Android63053623|🎄💀 𝕂ᶤηg 🐉♗| op sahil is noob -2022-12-06 17:54:14.129017 + : pb-IF4-U3gdFw== | Android63053623|🎄💀 𝕂ᶤηg 🐉♗| undrstand partha -2022-12-06 17:54:25.485413 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| vaise i am from mumbai -2022-12-06 17:54:25.790564 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-06 17:54:25.940622 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-06 17:54:27.467765 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| gut ur moves🫡🫡 -2022-12-06 17:54:33.664393 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| oh bade bhai👍👍 -2022-12-06 17:54:49.773735 + : pb-IF4-U3gdFw== | Android63053623|🎄💀 𝕂ᶤηg 🐉♗| 🤫 -2022-12-06 17:54:55.785673 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ohk bro -2022-12-06 17:55:04.650055 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 17:55:10.154059 + : pb-IF4-U3gdFw== | Android63053623|🎄💀 𝕂ᶤηg 🐉♗| mumbai my favrt place -2022-12-06 17:55:18.039301 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| wow -2022-12-06 17:55:22.639964 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| u? -2022-12-06 17:55:25.601529 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| sorry -2022-12-06 17:55:31.398809 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| so sorrryyy -2022-12-06 17:55:35.425090 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| bandra se -2022-12-06 17:55:37.401381 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| np np -2022-12-06 17:56:03.303603 + : pb-IF4-U3gdFw== | Android63053623|🎄💀 𝕂ᶤηg 🐉♗| cant reveal dis is nt my orignal id🤣 -2022-12-06 17:56:17.984986 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| 😅 -2022-12-06 17:56:20.611106 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| dude wth is wrong with me💀💀 -2022-12-06 17:56:29.754549 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| Pune ;) -2022-12-06 17:56:31.348953 + : pb-IF4vVRUFVA== | BoomBaam11|AVII💀| -2022-12-06 17:56:38.640582 + : pb-IF4wVFcZPw== | CivilizedT|spidy| Mumbai -2022-12-06 17:56:39.394310 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| kick fm -2022-12-06 17:56:44.937455 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| up🗿 -2022-12-06 17:56:46.229933 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| Pune la rahtat ka tumhi -2022-12-06 17:56:56.540641 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| tu marathi aahes? 😹 -2022-12-06 17:56:58.949576 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| aamchi gujrati -2022-12-06 17:56:59.895082 + : pb-IF4vVRUFVA== | BoomBaam11|AVII💀| UP se kon kon h -2022-12-06 17:57:02.820578 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| nhi -2022-12-06 17:57:06.389426 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| me -2022-12-06 17:57:08.964184 + : pb-IF4-U3gdFw== | Android63053623|🎄💀 𝕂ᶤηg 🐉♗| galat disha me chale gaye log -2022-12-06 17:57:11.317186 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| achha -2022-12-06 17:57:16.596326 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| pn me bolte marathi -2022-12-06 17:57:22.884266 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| 👍😅😅 -2022-12-06 17:57:23.807014 + : pb-IF4wVFcZPw== | CivilizedT|spidy| up gav hai -2022-12-06 17:57:25.925708 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| chhan -2022-12-06 17:57:30.874564 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| me likhta marathi -2022-12-06 17:57:36.821191 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| ho. punyat asto me. -2022-12-06 17:57:43.973673 + : pb-IF4vVRUFVA== | BoomBaam11|AVII💀| UP ko gav bol rha🤣🤣 -2022-12-06 17:57:52.668969 + : pb-IF4-U3gdFw== | Android63053623|🎄💀 𝕂ᶤηg 🐉♗| mujhe marathi sikhne padegi..biht competition ho rha idhr😑 -2022-12-06 17:59:02.659997 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| -2022-12-06 17:59:11.110366 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| Man Spain is out of world cup🤯 -2022-12-06 17:59:14.970420 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-06 17:59:25.611489 + : pb-IF4vVRUFVA== | BoomBaam11|AVII💀| gg -2022-12-06 17:59:28.020332 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| mala vachav koni -2022-12-06 17:59:38.294555 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| aamchi aamchi -2022-12-06 17:59:46.523934 + : pb-IF4-U3gdFw== | Android63053623|🎄💀 𝕂ᶤηg 🐉♗| m king someone be my queen❤️ -2022-12-06 17:59:51.703946 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| mere ko to kuch bhi smaj ni aa rhA🗿 -2022-12-06 18:00:20.400908 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| lag -2022-12-06 18:00:21.264420 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| thunder samaj b maat👍😅😂 -2022-12-06 18:00:23.097222 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| mala vachav mhntes😹 tuch pudhe pudhe amhi sgle mage -2022-12-06 18:00:32.735097 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| :') ok parth -2022-12-06 18:00:36.504313 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| kay bakto laav kar -2022-12-06 18:00:53.404229 + : pb-IF4wVFcZPw== | CivilizedT|spidy| koi Mumbai s e? -2022-12-06 18:00:55.960061 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| Chan chan -2022-12-06 18:00:56.304866 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| thunder same here😉 -2022-12-06 18:01:01.880217 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| me -2022-12-06 18:01:09.525567 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 🫂 -2022-12-06 18:01:28.385045 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| manje laav kar re -2022-12-06 18:01:50.176344 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 🐢 -2022-12-06 18:01:59.774835 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|Nymph🧚‍♀️| 🐢🐢🐢 -2022-12-06 18:02:10.999898 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| lavkar ye ? -2022-12-06 18:02:18.758728 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| kuthe -2022-12-06 18:02:30.764976 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| uthe -2022-12-06 18:02:38.490540 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -_- -2022-12-06 18:02:46.760310 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| to manto hai -2022-12-06 18:02:50.235153 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| ahe n -2022-12-06 18:02:58.213541 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| icic -2022-12-06 18:03:04.313713 + : pb-IF4-U3gdFw== | Android63053623|🎄💀 𝕂ᶤηg 🐉♗| janto hai -2022-12-06 18:03:13.304239 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| 😂😂😂😂 -2022-12-06 18:03:20.024573 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| king b....... c -2022-12-06 18:03:44.900138 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| sorry -2022-12-06 18:03:52.100039 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| maf kaara mala -2022-12-06 18:04:08.133721 + : pb-IF4-U3gdFw== | Android63053623|🎄💀 𝕂ᶤηg 🐉♗| maf accepted -2022-12-06 18:04:09.304244 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| manje nai karaa mala tula -2022-12-06 18:04:14.740589 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| sumbadit ja -2022-12-06 18:04:23.956512 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| tu nahis re -2022-12-06 18:04:29.565234 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ohk -2022-12-06 18:04:30.759319 + : pb-IF4-U3gdFw== | Android63053623|🎄💀 𝕂ᶤηg 🐉♗| tu very nice -2022-12-06 18:04:35.876426 + : pb-IF4rLkwp | MPF|MPF| wp -2022-12-06 18:04:36.210305 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| wasonce la mhante ahe me -2022-12-06 18:04:37.824653 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| king😂😂😂😂 -2022-12-06 18:04:57.678779 + : pb-IF4-U3gdFw== | Android63053623|🎄💀 𝕂ᶤηg 🐉♗| tata ahana -2022-12-06 18:05:01.156488 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| i am getting rely good at it -2022-12-06 18:05:04.280960 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-06 18:05:04.420719 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-06 18:05:39.590477 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| aah majha chat muted hota -2022-12-06 18:05:46.450870 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| -2022-12-06 18:05:57.803347 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| maaf kr ka mhntes 😹 -2022-12-06 18:06:06.704174 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| karaa karaa -2022-12-06 18:06:09.807437 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| ho -2022-12-06 18:06:24.104307 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| king -2022-12-06 18:06:34.698877 + : pb-IF4-U3gdFw== | Android63053623|🎄💀 𝕂ᶤηg 🐉♗| kal mil as -2022-12-06 18:06:44.925537 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ok as -2022-12-06 18:06:45.079008 + : pb-IF4-U3gdFw== | Android63053623|🎄💀 𝕂ᶤηg 🐉♗| 🤫 -2022-12-06 18:06:54.630066 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| 😳 -2022-12-06 18:06:58.840210 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| ka re -2022-12-06 18:06:59.838734 + : pb-IF4-U3gdFw== | Android63053623|🎄💀 𝕂ᶤηg 🐉♗| ❤️ -2022-12-06 18:07:00.532684 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| Mumbai la.ky krtes ..ki adhi pasun tithch? -2022-12-06 18:07:10.980835 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-06 18:07:11.100702 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-06 18:07:45.200300 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| education la ahe me -2022-12-06 18:07:53.640725 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-06 18:07:53.820652 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-06 18:08:34.157608 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| mhmm -2022-12-06 18:08:38.831735 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|Nymph🧚‍♀️| 😂😂 -2022-12-06 18:08:42.274940 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 😹 -2022-12-06 18:08:50.869870 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|Nymph🧚‍♀️| chakkar agye -2022-12-06 18:08:52.838784 + : pb-IF4sU2sqHQ== | Android61865080|Rohan☢️☢️☢️☢️☢️| kill MPF -2022-12-06 18:08:56.251781 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| -2022-12-06 18:08:56.434216 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| -2022-12-06 18:10:03.959218 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| hi -2022-12-06 18:10:35.474947 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| noo -2022-12-06 18:10:39.322138 + : pb-IF4rLkwp | MPF|MPF| aaaa -2022-12-06 18:10:45.460415 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| ase kase zale -2022-12-06 18:11:10.126122 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|Nymph🧚‍♀️| 🥺 -2022-12-06 18:11:17.005439 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| ;-; -2022-12-06 18:11:32.210007 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| tujhi marathi 😹 bhari -2022-12-06 18:11:48.503007 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| -2022-12-06 18:11:48.680872 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| -2022-12-06 18:12:13.473792 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|Nymph🧚‍♀️| -2022-12-06 18:12:48.479019 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| ka re kahi chukles ka maze? -2022-12-06 18:13:11.268781 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| nah ...but disty ki tu try krti aahes 🎃 -2022-12-06 18:13:21.533872 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| barobar chally khi nhi chukla xd -2022-12-06 18:13:41.959102 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| ha ab vo to hoga hi n -2022-12-06 18:13:47.412807 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 😹 -2022-12-06 18:13:54.414736 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| sry void -2022-12-06 18:15:23.890361 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 18:15:24.243677 + : pb-IF4uU3gNKQ== | CKD360|CKD360| adhi khela maga bola -2022-12-06 18:15:29.719572 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 😹😹😹 -2022-12-06 18:15:36.618849 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| ha ha thik h -2022-12-06 18:15:45.885959 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| muzhe bas marathi sikni h -2022-12-06 18:15:55.923796 + : pb-IF4uU3gNKQ== | CKD360|CKD360| 🤣 -2022-12-06 18:15:57.959953 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| nhi amhala khup HAUS aali aahe bolychi attach😹😹 -2022-12-06 18:16:25.506048 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| mere dost h marathi -2022-12-06 18:16:37.652147 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| muzhe acha lagega if i know marathi -2022-12-06 18:16:41.961620 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| Tyanna bolav na khelyla bs wr -2022-12-06 18:16:59.746336 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| ho mahiti mhnuntr boltoy marathi mdhe -2022-12-06 18:17:11.849966 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| Tyanna ahe mahit game -2022-12-06 18:17:18.073803 + : pb-IF4uU3gNKQ== | CKD360|CKD360| tu kesa ashesa -2022-12-06 18:17:24.892315 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| ashesha😹 -2022-12-06 18:17:35.742511 + : pb-IF4lU0pZLA== | Northerly5|ALOK_⎈| sabne name change kr lia kya ? -2022-12-06 18:17:39.863087 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| mahiti aahe game tr kuthe aahe atta..kheltat ka ti regular? -2022-12-06 18:18:01.694095 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|Nymph🧚‍♀️| I'm golu molu now 😁😁 -2022-12-06 18:18:02.018880 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| nahi n -2022-12-06 18:18:36.988218 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 😹😹 golu molu ugh -2022-12-06 18:18:37.460051 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|Nymph🧚‍♀️| nobody can lift me -2022-12-06 18:19:16.028703 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|Nymph🧚‍♀️| 😂😂😂😂🐢🐢🐢 -2022-12-06 18:19:17.775142 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| shits heavy 😹😹😹🎃 -2022-12-06 18:19:20.894448 + : pb-IF4lU0pZLA== | Northerly5|ALOK_⎈| -2022-12-06 18:19:21.095381 + : pb-IF4lU0pZLA== | Northerly5|ALOK_⎈| -2022-12-06 18:19:21.267537 + : pb-IF4lU0pZLA== | Northerly5|ALOK_⎈| -2022-12-06 18:19:21.434981 + : pb-IF4lU0pZLA== | Northerly5|ALOK_⎈| -2022-12-06 18:19:35.619167 + : pb-IF4rLkwp | MPF|MPF| xd -2022-12-06 18:20:22.569070 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| finish the round -2022-12-06 18:20:26.796025 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| lol -2022-12-06 18:20:28.170776 + : pb-IF4uU3gNKQ== | CKD360|CKD360| end -2022-12-06 18:20:32.128353 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| annoying -2022-12-06 18:20:34.700803 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| end -2022-12-06 18:20:38.555570 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|Nymph🧚‍♀️| end -2022-12-06 18:20:41.954124 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| -2022-12-06 18:20:56.313134 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 18:20:57.924874 + : pb-IF4uU3gNKQ== | CKD360|CKD360| 🤣 -2022-12-06 18:21:00.182797 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 18:21:36.515491 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| lmao -2022-12-06 18:21:47.971544 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|Nymph🧚‍♀️| what was that 🐢😂 -2022-12-06 18:22:09.563736 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| this round -_- -2022-12-06 18:22:23.132542 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| -2022-12-06 18:22:23.316563 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| -2022-12-06 18:22:23.483497 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| -2022-12-06 18:22:26.133929 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|Nymph🧚‍♀️| -2022-12-06 18:22:26.249887 + : pb-IF4uU3gNKQ== | CKD360|CKD360| -2022-12-06 18:22:26.369936 + : pb-IF4uU3gNKQ== | CKD360|CKD360| -2022-12-06 18:22:27.248628 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 18:23:24.418968 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 18:23:27.139507 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| demn -2022-12-06 18:23:34.469954 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| harlo ahe apn -2022-12-06 18:23:38.927616 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| bye bye -2022-12-06 18:23:44.835040 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| me bolat bsloyna 🎃 -2022-12-06 18:23:50.099135 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| shubhratri sarvanna -2022-12-06 18:23:57.940424 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| shubhratri!! -2022-12-06 18:24:07.498837 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| udya bolu apan -2022-12-06 18:24:12.347966 + : pb-IF5SV2VbAQ== | PerfidiousStress40|Ahana ❤️| bye -2022-12-06 18:24:17.643492 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| okie -2022-12-06 18:24:19.511321 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| beye -2022-12-06 18:24:47.372805 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|Nymph🧚‍♀️| aaaaloook -2022-12-06 18:25:02.112963 + : pb-IF4rLkwp | MPF|MPF| animal cruelty -2022-12-06 18:25:18.187119 + : pb-IF4lU0pZLA== | Northerly5|ALOK_⎈| hi -2022-12-06 18:25:51.661566 + : pb-IF4rLkwp | MPF|MPF| oop sorry -2022-12-06 18:27:39.110778 + : pb-IF4lU0pZLA== | Northerly5|ALOK_⎈| -2022-12-06 18:28:25.422547 + : pb-IF4rLkwp | MPF|MPF| dude xd -2022-12-06 18:28:40.041065 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|Nymph🧚‍♀️| sry 😬 -2022-12-06 18:28:44.705372 + : pb-IF4rLkwp | MPF|MPF| np -2022-12-06 18:29:02.992484 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|Nymph🧚‍♀️| -2022-12-06 18:29:49.232422 + : pb-IF4rLkwp | MPF|MPF| ee -2022-12-06 18:31:07.438068 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| hi white -2022-12-06 18:31:15.542027 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| hello tube -2022-12-06 18:31:45.614709 + : pb-IF4uU3gNKQ== | CKD360|CKD360| -2022-12-06 18:31:45.714791 + : pb-IF4uU3gNKQ== | CKD360|CKD360| -2022-12-06 18:31:45.814779 + : pb-IF4uU3gNKQ== | CKD360|CKD360| -2022-12-06 18:31:45.944775 + : pb-IF4uU3gNKQ== | CKD360|CKD360| -2022-12-06 18:32:28.834822 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 18:33:01.996553 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 18:33:15.541724 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 18:33:15.818958 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 18:34:39.640217 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| -2022-12-06 18:34:40.422256 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 18:34:52.742436 + : pb-IF4rLkwp | MPF|MPF| gg peeps, gtg low battery -2022-12-06 18:35:01.394650 + : pb-IF4uU3gNKQ== | CKD360|CKD| run -2022-12-06 18:35:01.484033 + : pb-IF4rLkwp | MPF|MPF| well after this -2022-12-06 18:35:18.177964 + : pb-IF4rLkwp | MPF|MPF| ow -2022-12-06 18:36:10.914820 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 18:37:10.051947 + : pb-IF4rLkwp | MPF|MPF| alright gn cya o.o -2022-12-06 18:37:25.731811 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 18:37:37.677039 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| white😏 -2022-12-06 18:37:44.162974 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| 🙄 -2022-12-06 18:38:15.599061 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| u. r. smart.. -2022-12-06 18:38:28.677555 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| so r u🤣 -2022-12-06 18:38:47.117189 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| 😂 -2022-12-06 18:39:43.111441 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 18:39:43.290815 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 18:39:43.876332 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| 🎃🎃🎃😹😹😹 -2022-12-06 18:39:58.970834 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| barabar Nazar jati re Teri xd -2022-12-06 18:40:18.291777 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 18:40:50.277428 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| I'm in love with my new dress 😂 -2022-12-06 18:40:57.384553 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 18:41:08.992840 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 18:41:14.702830 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| dress👀lolub -2022-12-06 18:41:40.242836 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| red tube 👍 -2022-12-06 18:41:41.870866 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| u got many lately ic -2022-12-06 18:42:49.713670 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 18:42:49.854057 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 18:42:49.973708 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 18:42:50.073925 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 18:42:56.013933 + : pb-IF4uU3gNKQ== | CKD360|CKD| end -2022-12-06 18:42:58.388719 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| share me files so i wear matching when -2022-12-06 18:43:02.977917 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 18:43:19.565938 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| -2022-12-06 18:43:20.884711 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-06 18:43:24.422716 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| files? -2022-12-06 18:43:25.223947 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| that's how its done -2022-12-06 18:44:11.224256 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| i thought uh added .bs files in patch for more dresses -2022-12-06 18:44:28.832193 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| nope...its available here -2022-12-06 18:44:36.937817 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| bruh -2022-12-06 18:45:30.688753 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| uh alone ded now 😹 -2022-12-06 18:45:38.700666 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| join blue when -2022-12-06 18:45:46.288215 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| wolfs 🐺🐺🐺 -2022-12-06 18:45:50.737654 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| okie I'll check dress availability at next joining -2022-12-06 18:45:54.858380 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| 🙃🙃 -2022-12-06 18:46:04.088063 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| or i might join red xd -2022-12-06 18:46:14.726048 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| alright... we'll twin -2022-12-06 18:46:47.876154 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| not available -2022-12-06 18:46:54.090270 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 18:47:05.558630 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| its spaz wizard i guess -2022-12-06 18:48:02.632315 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| hey red tf -2022-12-06 18:50:00.138581 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| white? -2022-12-06 18:50:06.188389 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| hey isha didi 😁 -2022-12-06 18:50:15.616476 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| yeah whut -2022-12-06 18:50:16.772776 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| hy vansh -2022-12-06 18:50:24.482938 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| kese ho aap 😁 -2022-12-06 18:50:35.318846 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| meko laga tune kuch bola🤣 -2022-12-06 18:50:48.491209 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| ha tu maar raha tha -2022-12-06 18:51:25.475926 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| galti se🙂 -2022-12-06 18:51:25.551781 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| I'm good wbu -2022-12-06 18:51:32.961869 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 18:51:36.942499 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| I'm also good -2022-12-06 18:52:11.662843 + : pb-IF4UVGg8KQ== | LionAlpha7|Iron man| Abe upar Amma hai kya -2022-12-06 18:52:14.772556 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| end -2022-12-06 18:52:18.242601 + : pb-IF4UVGg8KQ== | LionAlpha7|Iron man| boomboom -2022-12-06 18:52:38.816424 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| play fast -2022-12-06 18:54:15.505955 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 18:54:31.807451 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| i hate physics of this game fr -2022-12-06 18:54:40.400832 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| -2022-12-06 18:54:40.750045 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| -2022-12-06 18:54:41.007413 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| 🤣🤣 -2022-12-06 18:54:48.620130 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| bahane😝 -2022-12-06 18:54:52.418393 + : pb-IF4PU0UlAw== | MunicipalJ|pranav| lucky -2022-12-06 18:55:23.838724 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| mai kyu banane banau mai toh Piro hu🗿 -2022-12-06 18:55:37.719508 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| Haan sahi bat h -2022-12-06 18:56:25.885062 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| f lag -2022-12-06 18:56:48.096573 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| -2022-12-06 18:57:58.565759 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| where are MY TEAMMATES -2022-12-06 18:58:28.496624 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| -2022-12-06 18:58:29.617505 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-06 19:00:35.271687 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| kya pagalpan h -2022-12-06 19:01:03.076015 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| end -2022-12-06 19:01:09.326665 + : pb-IF4uU3gNKQ== | CKD360|CKD| end -2022-12-06 19:01:24.352139 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| lag -2022-12-06 19:01:25.173302 + : pb-IF5VU3lYDA== | AlienPersonnel44|Akash| end -2022-12-06 19:01:30.086824 + : pb-IF4uU3gNKQ== | CKD360|CKD| end -2022-12-06 19:01:31.250663 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| end -2022-12-06 19:01:31.918403 + : pb-IF4vVRUFVA== | BoomBaam11|BOOMBAAM| end -2022-12-06 19:01:39.061037 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| end -2022-12-06 19:01:39.617923 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| end -2022-12-06 19:01:41.627397 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| EVERYONE VOTE -2022-12-06 19:01:49.541269 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| end -2022-12-06 19:02:35.206918 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 19:02:35.346654 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 19:02:35.466843 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 19:02:35.578179 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 19:02:51.399777 + : pb-IF4TU3EfNw== | LaxCurb126|LaxCurb126| sry -2022-12-06 19:03:08.055062 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| don't kill me I'm lagging like sheet -2022-12-06 19:03:39.424491 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| mf -2022-12-06 19:04:15.313132 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| kon si gaali du🧐 -2022-12-06 19:04:58.586673 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| ** -2022-12-06 19:05:01.309787 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| एमसीएस -2022-12-06 19:05:26.960551 + : pb-IF4TU3EfNw== | LaxCurb126|LaxCurb126| lol -2022-12-06 19:05:30.006070 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| बीसी -2022-12-06 19:05:30.100657 + : pb-IF4TU3EfNw== | LaxCurb126|LaxCurb126| 🤣🤣 -2022-12-06 19:05:33.113290 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| 🤣 -2022-12-06 19:05:41.655476 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| 🤬 -2022-12-06 19:06:29.920560 + : pb-IF4TU3EfNw== | LaxCurb126|LaxCurb126| बी सी -2022-12-06 19:06:58.261798 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| क्या कर रहा है रेडट्यूब हो -2022-12-06 19:07:13.449327 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| yaar ckd ko mar raha tha😅 -2022-12-06 19:07:29.778646 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| mere pas hi aana tha kya -2022-12-06 19:07:37.756641 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| 🤣🤣 -2022-12-06 19:07:42.620678 + : pb-IF4TU3EfNw== | LaxCurb126|LaxCurb126| 🤣🤣 -2022-12-06 19:07:51.937593 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| tune hi to health liya tha -2022-12-06 19:08:05.465691 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| to 1st priority mai tu hi tha jaane ke -2022-12-06 19:08:22.776099 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| targeting me only -2022-12-06 19:08:32.610561 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| look who's talking -2022-12-06 19:08:50.039376 + : pb-IF4vUkRaEg== | ĐÃŘĶxŠÎĞMĀ|ᵘᶜʰᶦʰᵃ᭄ɪᴛᴀᴄʜɪ★彡| EZ -2022-12-06 19:09:05.159497 + : pb-IF4vUkRaEg== | ĐÃŘĶxŠÎĞMĀ|ᵘᶜʰᶦʰᵃ᭄ɪᴛᴀᴄʜɪ★彡| abe ckd -2022-12-06 19:09:08.565372 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| 🙂 -2022-12-06 19:09:08.767156 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-06 19:09:21.502097 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| I'm enough for myself -2022-12-06 19:09:43.926953 + : pb-IF4gU0Y7AQ== | IndependentBoard34|KhUsHi 🌹| -2022-12-06 19:09:46.399360 + : pb-IF4vUkRaEg== | ĐÃŘĶxŠÎĞMĀ|ᵘᶜʰᶦʰᵃ᭄ɪᴛᴀᴄʜɪ★彡| -2022-12-06 19:09:52.935825 + : pb-IF41U2scIg== | SHRUTIsom|𝑺𝒉𝒓𝒖𝒕𝒊| 😶 -2022-12-06 19:10:00.819774 + : pb-IF4vUkRaEg== | ĐÃŘĶxŠÎĞMĀ|ᵘᶜʰᶦʰᵃ᭄ɪᴛᴀᴄʜɪ★彡| ☕ -2022-12-06 19:10:03.426594 + : pb-IF4uU3gNKQ== | CKD360|CKD| gungi -2022-12-06 19:10:10.911582 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| vansh bhai jitna h -2022-12-06 19:11:05.179466 + : pb-IF4vUkRaEg== | ĐÃŘĶxŠÎĞMĀ|ᵘᶜʰᶦʰᵃ᭄ɪᴛᴀᴄʜɪ★彡| -2022-12-06 19:11:05.349670 + : pb-IF4vUkRaEg== | ĐÃŘĶxŠÎĞMĀ|ᵘᶜʰᶦʰᵃ᭄ɪᴛᴀᴄʜɪ★彡| -2022-12-06 19:11:05.499522 + : pb-IF4vUkRaEg== | ĐÃŘĶxŠÎĞMĀ|ᵘᶜʰᶦʰᵃ᭄ɪᴛᴀᴄʜɪ★彡| -2022-12-06 19:11:09.980159 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| opp -2022-12-06 19:11:10.019144 + : pb-IF4UVGg8KQ== | LionAlpha7|Iron man| oppppp -2022-12-06 19:11:14.821396 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| i hate jio बीसी -2022-12-06 19:11:15.153989 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| वंश 🔥 -2022-12-06 19:11:15.639978 + : pb-IF4vUkRaEg== | ĐÃŘĶxŠÎĞMĀ|ᵘᶜʰᶦʰᵃ᭄ɪᴛᴀᴄʜɪ★彡| VANSH KILLER MODE ON -2022-12-06 19:12:30.518192 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| redtube shaanti nhi mil rahi -2022-12-06 19:12:31.490111 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| tumara bhai hai na kaahe Tension le rahe ho😁 -2022-12-06 19:12:52.253181 + : pb-IF4eVGc7Cw== | LIONHUNTER|redtube😍| naah -2022-12-06 19:12:56.982688 + : pb-IF4gU0Y7AQ== | IndependentBoard34|KhUsHi 🌹| tq ckd 💀 -2022-12-06 19:13:05.207084 + : pb-IF4uU3gNKQ== | CKD360|CKD| chl bye -2022-12-06 19:13:17.828085 + : pb-IF4uU3gNKQ== | CKD360|CKD| itna kate kesd be -2022-12-06 19:13:34.942038 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| choro yaar bye jio khelne nahi de raha😢 -2022-12-06 19:13:35.387850 + : pb-IF4uU3gNKQ== | CKD360|CKD| late -2022-12-06 19:13:50.153110 + : pb-IF4gU0Y7AQ== | IndependentBoard34|KhUsHi 🌹| kisko bol raha ?💀 -2022-12-06 19:13:56.827514 + : pb-IF4uU3gNKQ== | CKD360|CKD| tujhe -2022-12-06 19:14:13.012551 + : pb-IF4gU0Y7AQ== | IndependentBoard34|KhUsHi 🌹| haa hogyi late kya karu 🙂 -2022-12-06 19:14:13.358553 + : pb-IF4uU3gNKQ== | CKD360|CKD| chorh me jata -2022-12-06 19:14:16.601065 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| nice -2022-12-06 19:14:18.172376 + : pb-IF4uU3gNKQ== | CKD360|CKD| gud night -2022-12-06 19:14:23.788218 + : pb-IF4gU0Y7AQ== | IndependentBoard34|KhUsHi 🌹| achaa good night 🌃 -2022-12-06 19:14:35.001817 + : pb-IF4gU0Y7AQ== | IndependentBoard34|KhUsHi 🌹| Isha aap b jaa rhi hoo? -2022-12-06 19:14:45.809296 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| nhi mai kyu jau -2022-12-06 19:15:08.921892 + : pb-IF4gU0Y7AQ== | IndependentBoard34|KhUsHi 🌹| ni I thought aap 12 30 jaati hoo naa soo -2022-12-06 19:15:26.407265 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| nhi 😁 -2022-12-06 19:15:30.846704 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| tum jao ckd ke sath -2022-12-06 19:15:40.628047 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| khusi jayegi -2022-12-06 19:15:53.435310 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| ha usko hi bola -2022-12-06 19:16:00.182102 + : pb-IF4gU0Y7AQ== | IndependentBoard34|KhUsHi 🌹| ckd is my lub 😍😍❤️ -2022-12-06 19:16:09.141998 + : pb-IF4gU0Y7AQ== | IndependentBoard34|KhUsHi 🌹| vo mera pati h💀 -2022-12-06 19:16:13.440525 + : pb-IF4PU0UlAw== | MunicipalJ|pranav| ghe vadun mang -2022-12-06 19:16:44.462386 + : pb-IF4gU0Y7AQ== | IndependentBoard34|KhUsHi 🌹| Mai bhi jaa rahi sone💀 -2022-12-06 19:16:49.768220 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| ja -2022-12-06 19:17:15.792260 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| -2022-12-06 19:17:24.021655 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| end -2022-12-06 19:17:28.262301 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| end -2022-12-06 19:17:38.485922 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| sab chale gaye -2022-12-06 19:17:38.824171 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| laggy -2022-12-06 19:17:44.422672 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| khushi chali gayi ?😹😹 -2022-12-06 19:17:55.698011 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| tu hi tha na khushi -2022-12-06 19:17:58.002142 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| ckd ke paas 😹 aleleellele -2022-12-06 19:18:08.151900 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| nahi bey 🙂 hatt😹 -2022-12-06 19:18:15.790016 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| dono khuchiko 😁😁😂😂 -2022-12-06 19:18:37.379028 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| bedroom game ☠️☠️ -2022-12-06 19:18:56.912159 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| krne doo dono ko💀 gullu gullu 😹 -2022-12-06 19:19:09.608127 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| 😂😂😂 -2022-12-06 19:19:37.672044 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| 💀😹 -2022-12-06 19:20:03.525622 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| ckd ka baccha mera kon hoga relationship me -2022-12-06 19:21:20.661801 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| vansh😹😹 -2022-12-06 19:22:20.492570 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| Abe chalo guys mai b jaa -2022-12-06 19:22:20.502007 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| raha sone neend aa rhi tez si💀 -2022-12-06 19:22:23.285577 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| CKD attitude king -2022-12-06 19:22:30.351946 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| good night Isha and vansh💀 -2022-12-06 19:22:31.612868 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| kyu jara sone -2022-12-06 19:22:40.541803 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| Mai aur attitude king?😹 -2022-12-06 19:22:43.709740 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| bye goodnight -2022-12-06 19:22:49.862001 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| acha ckd,😹😹 -2022-12-06 19:23:03.415988 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| are sahil toh bhola hai -2022-12-06 19:23:03.811826 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| Abe yrr trip pe gaya hua -2022-12-06 19:23:03.831805 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| tha aaj 😍 maja Krke aaya mastt -2022-12-06 19:23:16.921625 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| kaha gaya tha -2022-12-06 19:23:22.335262 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| America ?? -2022-12-06 19:23:28.669622 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| London -2022-12-06 19:23:28.693769 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| insta pe batata kal -2022-12-06 19:23:35.734664 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| yaa fir stories aajayegi -2022-12-06 19:23:43.546932 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| acha thik hai -2022-12-06 19:24:01.072658 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| soja -2022-12-06 19:24:02.909115 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| लोमड़ी -2022-12-06 19:24:05.671857 + : pb-IF4nU08BVg== | kingbcs|꧁RBG☬ӁLUCK| end -2022-12-06 19:24:07.574913 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| end -2022-12-06 19:24:11.158100 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| end -2022-12-06 19:24:15.154495 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| end -2022-12-06 19:24:53.544467 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| chalo byee 😹 -2022-12-06 19:24:59.044087 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| kal aata 11 baje -2022-12-06 19:24:59.905391 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| ha bye -2022-12-06 19:25:05.825444 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| tu op ya ckdr -2022-12-06 19:25:06.426158 + : pb-IF4TVGIONQ== | ViciousFon|Agent Lomdu| end kro -2022-12-06 19:25:14.426365 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| nhi ayega toh bhi chalega -2022-12-06 19:25:21.625108 + : pb-IF4TVGIONQ== | ViciousFon|Agent Lomdu| end karo -2022-12-06 19:25:24.354095 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| kya ? op ya ckd -2022-12-06 19:25:28.580038 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| bol -2022-12-06 19:25:36.452183 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| who are you -2022-12-06 19:25:45.039063 + : pb-IF4TVGIONQ== | ViciousFon|Agent Lomdu| Abey end karo -2022-12-06 19:25:53.374171 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| sahil hu💀😹 -2022-12-06 19:26:02.109522 + : pb-IF4TVGIONQ== | ViciousFon|Agent Lomdu| ********o -2022-12-06 19:26:02.541710 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| CKD attitude h -2022-12-06 19:26:13.481861 + : pb-IF4TVGIONQ== | ViciousFon|Agent Lomdu| Abey lomdo -2022-12-06 19:26:19.974299 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| ckd toh idar hai hi nahi😹😹 -2022-12-06 19:26:33.390488 + : pb-IF4TVGIONQ== | ViciousFon|Agent Lomdu| lomdikiyo ckd kya hai -2022-12-06 19:26:42.533418 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| acha hua gya attitude se bhra hua balloon -2022-12-06 19:27:01.464188 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| achaa 😹 -2022-12-06 19:27:26.124241 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| chalo mai b jaa raha neend -2022-12-06 19:27:26.141841 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| aa rhi thaka hua hu byee 😹😹 -2022-12-06 19:27:26.613108 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| 🤣 -2022-12-06 19:27:41.122949 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| bye soja -2022-12-06 19:27:59.964123 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| hnn🌃 -2022-12-06 19:28:22.258735 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| वंश ye kon tha -2022-12-06 19:28:48.971741 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| i think sahil hi thaa -2022-12-06 19:28:59.817422 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| i think CKD -2022-12-06 19:29:11.863092 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| uski story dekha insta pe toh kahi ghumne wali story thi -2022-12-06 19:29:16.418369 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| trip -2022-12-06 19:29:25.628413 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| kiski -2022-12-06 19:29:30.655423 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| sahil ki -2022-12-06 19:29:40.458751 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| usne bola na insta pe batata krke -2022-12-06 19:29:50.152903 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| sahil insta pe hai ...ckd nhi hai -2022-12-06 19:30:09.003073 + : pb-IF4TVGIONQ== | ViciousFon|Agent Lomdu| run boys -2022-12-06 19:30:11.663618 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| achaa acha -2022-12-06 19:32:48.985595 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| sahil ka bolne ka style smj me aata hai -2022-12-06 19:33:18.116720 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| yash 😂😂😂 -2022-12-06 19:33:30.183586 + : pb-IF4nU2ssKg== | PaternalisticEmu11|vansh| kon yash -2022-12-06 19:33:34.796997 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| 🙂 -2022-12-06 19:34:12.571838 + : pb-IF4nU08BVg== | kingbcs|꧁RBG☬ӁLUCK| -2022-12-06 19:34:20.190180 + : pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK | IdenticalShock57|ishA🏵️| 😂 -2022-12-06 19:39:37.261497 + : pb-IF4nU08BVg== | kingbcs|꧁RBG☬ӁLUCK| red play -2022-12-06 19:40:10.552058 + : pb-IF4nU08BVg== | kingbcs|꧁RBG☬ӁLUCK| vansh -2022-12-06 19:50:39.146318 + : pb-IF4lU0pZLA== | Northerly5|HAT JA BE| -2022-12-06 19:52:33.349529 + : pb-IF4TUnIzNQ== | Engrossin3|Engrossin3| ******* chintu -2022-12-06 19:53:06.361005 + : pb-IF4lU0pZLA== | Northerly5|HAT JA BE| 🤔 -2022-12-06 19:53:13.910713 + : pb-IF4nU2ssKg== | PaternalisticEmu11|Uther| cope playing in bcs fun games -2022-12-06 19:53:19.234558 + : pb-IF4nU2ssKg== | PaternalisticEmu11|Uther| before -2022-12-06 19:53:24.278722 + : pb-IF5cU2haHA== | ASSASSINBA|cope| yes -2022-12-06 19:54:20.077495 + : pb-IF4nU2ssKg== | PaternalisticEmu11|Uther| alok -2022-12-06 19:54:59.128890 + : pb-IF4nU2ssKg== | PaternalisticEmu11|Uther| zsq -2022-12-06 19:55:05.460093 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-06 19:55:12.940027 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| mm -2022-12-06 19:55:41.524737 + : pb-IF4nU2ssKg== | PaternalisticEmu11|Uther| hi -2022-12-06 19:56:02.458265 + : pb-IF5SVXIHMA== | Arnob007|Garth| -2022-12-06 19:56:02.556864 + : pb-IF5SVXIHMA== | Arnob007|Garth| -2022-12-06 19:56:03.232165 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| hie -2022-12-06 19:57:03.602780 + : pb-IF4uU3gNKQ== | CKD360|CKD360| Uther vansh -2022-12-06 19:57:17.070690 + : pb-IF4nU2ssKg== | PaternalisticEmu11|Uther| ha -2022-12-06 19:57:18.950260 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| xd -2022-12-06 19:57:29.362610 + : pb-IF4uU3gNKQ== | CKD360|CKD360| us din k liye sorry agar bura lga ho toh -2022-12-06 19:57:53.782729 + : pb-IF4nU2ssKg== | PaternalisticEmu11|Uther| konsa din -2022-12-06 19:58:07.052822 + : pb-IF4uU3gNKQ== | CKD360|CKD360| 2 din pehle jb gali di men -2022-12-06 19:58:32.790304 + : pb-IF4nU2ssKg== | PaternalisticEmu11|Uther| koi na mai dil pe nhi leta hu -2022-12-06 19:58:46.282648 + : pb-IF4uU3gNKQ== | CKD360|CKD360| chal koi bat nhi..ek baat bata -2022-12-06 19:59:06.022814 + : pb-IF4uU3gNKQ== | CKD360|CKD360| mere bare me zeher kyu gholta hai -2022-12-06 19:59:49.343698 + : pb-IF5cU2haHA== | ASSASSINBA|cope| khelna hai ya sirf bat karke spawn time bhadana hai? -2022-12-06 20:00:00.404951 + : pb-IF4nU2ssKg== | PaternalisticEmu11|Uther| konsa zeher -2022-12-06 20:00:45.162651 + : pb-IF4uU3gNKQ== | CKD360|CKD360| meri tujhse kbhi baat nhi hui..aur tu udhr bolta -2022-12-06 20:00:45.172736 + : pb-IF4uU3gNKQ== | CKD360|CKD360| hai ckd teko ladka bolta hai nd kya kya -2022-12-06 20:02:07.612776 + : pb-IF4uU3gNKQ== | CKD360|CKD360| koi baat nahi..kar ache se ab -2022-12-06 20:02:07.632647 + : pb-IF4uU3gNKQ== | CKD360|CKD360| mujhe koi farq nhi pdta wese -2022-12-06 20:02:20.802711 + : pb-IF4uU3gNKQ== | CKD360|CKD360| jitna story banana hai bana -2022-12-06 20:02:22.009565 + : pb-IF4lU0pZLA== | Northerly5|AANA_AB| ******** lag -2022-12-06 20:02:28.138743 + : pb-IF4nU2ssKg== | PaternalisticEmu11|Uther| mai kya kru -2022-12-06 20:05:47.030180 + : pb-IF4lU0pZLA== | Northerly5|AANA_AB| ?? -2022-12-06 20:05:50.674751 + : pb-IF5cU2haHA== | ASSASSINBA|cope| -2022-12-06 20:05:53.044587 + : pb-IF5cU2haHA== | ASSASSINBA|cope| cope -2022-12-06 20:06:00.961528 + : pb-IF4lU0pZLA== | Northerly5|AANA_AB| uther kisko bola ? -2022-12-06 20:07:17.901569 + : pb-IF4nUxE4Nw== | Android60071137|john wick| noon dolph -2022-12-06 20:09:07.789411 + : pb-IF4lU0pZLA== | Northerly5|AANA_AB| -2022-12-06 20:09:09.234386 + : pb-IF4nUxE4Nw== | Android60071137|john wick| ahhhh -2022-12-06 20:09:10.139197 + : pb-IF5cU2haHA== | ASSASSINBA|cope| -2022-12-06 20:11:18.229195 + : pb-IF5cU2haHA== | ASSASSINBA|cope| -2022-12-06 20:13:13.329656 + : pb-IF4lU0pZLA== | Northerly5|AANA_AB| -2022-12-06 20:13:14.334537 + : pb-IF5cU2haHA== | ASSASSINBA|cope| -2022-12-06 20:15:40.364225 + : pb-IF4zC1Ap | HypnoticAlliance6502|Vikram| gg -2022-12-06 20:17:03.252698 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| haha -2022-12-06 20:17:38.345780 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| -2022-12-06 20:17:38.507021 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| -2022-12-06 20:17:38.668703 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| -2022-12-06 20:17:38.817221 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| -2022-12-06 20:17:42.088529 + : pb-IF5cU2haHA== | ASSASSINBA|cope| -2022-12-06 20:17:42.453565 + : pb-IF5cU2haHA== | ASSASSINBA|cope| -2022-12-06 20:17:42.643313 + : pb-IF5cU2haHA== | ASSASSINBA|cope| -2022-12-06 20:17:48.482141 + : pb-IF4lU0pZLA== | Northerly5|AANA_AB| 🌚 -2022-12-06 20:19:05.173256 + : pb-IF5UU0QiUQ== | ApKaAbuu|😈ABU😈| lag -2022-12-06 20:19:08.357314 + : pb-IF5UU0QiUQ== | ApKaAbuu|😈ABU😈| p_V2-tZ5nV-7V5XDrqw==_126252_140.238.162.79_43211 -2022-12-06 20:19:14.389063 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| -2022-12-06 20:19:14.660608 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| -2022-12-06 20:19:15.103438 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| -2022-12-06 20:19:15.551439 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| -2022-12-06 20:19:19.200667 + : pb-IF5UU0QiUQ== | ApKaAbuu|😈ABU😈| InnateSinner19 -2022-12-06 20:19:22.610339 + : pb-IF5UU0QiUQ== | ApKaAbuu|😈ABU😈| AANA_AB -2022-12-06 20:19:38.390200 + : pb-IF4lU0pZLA== | Northerly5|AANA_AB| kya -2022-12-06 20:20:20.808352 + : pb-IF5cU2haHA== | ASSASSINBA|cope| one join red -2022-12-06 20:20:27.407560 + : pb-IF5UU0QiUQ== | ApKaAbuu|😈ABU😈| no -2022-12-06 20:21:04.036348 + : pb-IF5UU0QiUQ== | ApKaAbuu|😈ABU😈| 😈ABU😈 -2022-12-06 20:25:44.001807 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| -2022-12-06 20:25:59.113333 + : pb-IF4IU04pBA== | InnateSinner19|Hamish| we need more man power -2022-12-06 20:26:03.415559 + : pb-IF5UU0QiUQ== | ApKaAbuu|😈ABU😈| HypnoticAlliance6502 -2022-12-06 20:28:39.255024 + : pb-IF5UU0QiUQ== | ApKaAbuu|😈ABU😈| **** lo sary -2022-12-06 20:29:07.994002 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| -2022-12-06 20:29:08.196015 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| -2022-12-06 20:29:08.323782 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| -2022-12-06 20:29:13.786670 + : pb-IF5UU0QiUQ== | ApKaAbuu|😈ABU😈| **** -2022-12-06 20:31:59.228507 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| wow -2022-12-06 20:32:10.416378 + : pb-IF5UU0QiUQ== | ApKaAbuu|😈ABU😈| lag f -2022-12-06 20:32:38.405029 + : pb-IF5UU0QiUQ== | ApKaAbuu|😈ABU😈| **** -2022-12-06 20:32:41.493670 + : pb-IF4IU04pBA== | InnateSinner19|Hamish| yaay -2022-12-06 20:32:43.342859 + : pb-IF5UU0QiUQ== | ApKaAbuu|😈ABU😈| f -2022-12-06 20:32:44.334106 + : pb-IF5cU2haHA== | ASSASSINBA|cope| -2022-12-06 20:33:29.846395 + : pb-IF5UU0QiUQ== | ApKaAbuu|😈ABU😈| lag f -2022-12-06 20:33:45.954216 + : pb-IF5cU2haHA== | ASSASSINBA|cope| -2022-12-06 20:33:46.115142 + : pb-IF5cU2haHA== | ASSASSINBA|cope| -2022-12-06 20:36:31.229209 + : pb-IF5cU2haHA== | ASSASSINBA|cope| -2022-12-06 20:36:49.699756 + : pb-IF5cU2haHA== | ASSASSINBA|cope| -2022-12-06 20:36:49.879254 + : pb-IF5cU2haHA== | ASSASSINBA|cope| -2022-12-06 20:36:50.059695 + : pb-IF5cU2haHA== | ASSASSINBA|cope| -2022-12-06 20:36:50.204414 + : pb-IF5cU2haHA== | ASSASSINBA|cope| -2022-12-06 20:39:17.622605 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| hello nisha -2022-12-06 20:39:28.413875 + : pb-IF5SU0hTEw== | VeteranGuy|Níshá| hi -2022-12-06 20:40:09.288973 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| haha -2022-12-06 20:40:09.943377 + : pb-IF5cU2haHA== | ASSASSINBA|cope| -2022-12-06 20:40:10.202566 + : pb-IF4IU04pBA== | InnateSinner19|Hamish| ool -2022-12-06 20:40:24.753382 + : pb-IF5cU2haHA== | ASSASSINBA|cope| -2022-12-06 20:40:26.085411 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| lol -2022-12-06 20:40:34.323569 + : pb-IF4IU04pBA== | InnateSinner19|Hamish| well that sad -2022-12-06 20:40:56.775895 + : pb-IF5cU2haHA== | ASSASSINBA|cope| hmm -2022-12-06 20:41:24.763911 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| where are you from? -2022-12-06 20:41:45.141502 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| haha -2022-12-06 20:41:53.640798 + : pb-IF5cU2haHA== | ASSASSINBA|cope| -2022-12-06 20:41:54.352634 + : pb-IF4IU04pBA== | InnateSinner19|Hamish| sri lanka -2022-12-06 20:43:56.506159 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| ghanta claus -2022-12-06 20:43:59.363188 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| beta -2022-12-06 20:44:43.333857 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| haha -2022-12-06 20:44:53.893217 + : pb-IF4CVUwbLw== | Android52260302|ghanta claus| end pls -2022-12-06 20:45:09.188734 + : pb-IF5cU2haHA== | ASSASSINBA|cope| what -2022-12-06 20:45:45.690626 + : pb-IF5SVXIHMA== | Arnob007|Arnob007| -2022-12-06 20:45:45.833646 + : pb-IF5SVXIHMA== | Arnob007|Arnob007| -2022-12-06 20:45:45.947316 + : pb-IF5SVXIHMA== | Arnob007|Arnob007| -2022-12-06 20:47:33.198652 + : pb-IF5cU2haHA== | ASSASSINBA|cope| -2022-12-06 20:49:17.068983 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| pro nisha -2022-12-06 20:49:58.453967 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| lol -2022-12-06 20:56:43.321245 + : pb-IF5SVXIHMA== | Arnob007|arnob2500| go up -2022-12-06 20:57:46.746437 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| haha -2022-12-06 20:59:40.188787 + : pb-IF4TVUZbEA== | LeggedAchi|PEAKYBlinder| what was that -2022-12-06 21:00:34.754271 + : pb-IF4IV04ZKw== | paratròóper|Baabla| hello guys -2022-12-06 21:00:37.764246 + : pb-IF4IV04ZKw== | paratròóper|Baabla| kaise ho -2022-12-06 21:01:09.262907 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| wow -2022-12-06 21:01:14.213802 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| am good baabla -2022-12-06 21:01:21.562257 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| thanks for asking -2022-12-06 21:02:11.064514 + : pb-IF4IV04ZKw== | paratròóper|Baabla| gr8 bro -2022-12-06 21:02:43.584264 + : pb-IF4IV04ZKw== | paratròóper|Baabla| lol -2022-12-06 21:03:31.025800 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| avi is nothing without bomb -2022-12-06 21:04:06.976948 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| well sir that's part of the game -2022-12-06 21:04:13.548594 + : pb-IF4TVUZbEA== | LeggedAchi|PEAKYBlinder| gg -2022-12-06 21:04:16.204647 + : pb-IF4IV04ZKw== | paratròóper|Baabla| agreed avi -2022-12-06 21:04:35.376238 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| gg -2022-12-06 21:04:41.265375 + : pb-IF4IV04ZKw== | paratròóper|Baabla| we cn use powerups and bomb and wteva the game offers.. -2022-12-06 21:06:52.905364 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| opps -2022-12-06 21:06:58.508731 + : pb-IF4TVUZbEA== | LeggedAchi|PEAKYBlinder| bhai kya kar raha hai avi -2022-12-06 21:06:59.202254 + : pb-IF4IV04ZKw== | paratròóper|Baabla| gg -2022-12-06 21:07:07.885930 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| haha -2022-12-06 21:08:01.472741 + : pb-IF4IV04ZKw== | paratròóper|Baabla| wtf -2022-12-06 21:08:44.728496 + : pb-IF4IV04ZKw== | paratròóper|Baabla| arre hahabbdhiya -2022-12-06 21:09:23.850346 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| baabla your Instagram? -2022-12-06 21:09:39.232258 + : pb-IF4IV04ZKw== | paratròóper|Baabla| bhai main hu ni ig pe -2022-12-06 21:10:15.351355 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| ladki wala name kyu rakha h bhai -2022-12-06 21:10:40.260525 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| muje laga koi ***y chick h -2022-12-06 21:10:55.130668 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| *****yyy sii -2022-12-06 21:11:04.371868 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| seksy -2022-12-06 21:11:09.112715 + : pb-IF4IV04ZKw== | paratròóper|Baabla| ladki vala naam ni h.. i -2022-12-06 21:11:09.113088 + : pb-IF4IV04ZKw== | paratròóper|Baabla| think tujhe mtlb ni pta baabla ka -2022-12-06 21:11:25.787156 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| baabla aur barbara -2022-12-06 21:11:31.645199 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| ek jaisa h -2022-12-06 21:11:41.025948 + : pb-IF4hVFkHKg== | RhythmicCr|Avi__| oo smj gya babla mtlab pagal -2022-12-06 21:11:50.552248 + : pb-IF4IV04ZKw== | paratròóper|Baabla| baabla is that doll used by ventriloquist.. hope u knw -2022-12-06 21:12:51.840269 + : pb-IF4sD1cb | Rambuncti7|noob| hi -2022-12-06 21:17:21.102355 + : pb-IF4IV04ZKw== | paratròóper|Baabla| bad jump lol -2022-12-06 21:18:51.323519 + : pb-IF4TVUZbEA== | LeggedAchi|PEAKYBlinder| gg -2022-12-06 21:19:00.082298 + : pb-IF4IV04ZKw== | paratròóper|Baabla| u2 -2022-12-06 21:19:29.963741 + : pb-IF4IV04ZKw== | paratròóper|Baabla| u guys play nw.. i wana watch ur world cup lol -2022-12-06 21:19:55.590381 + : pb-IF5SVXIHMA== | Arnob007|Arnob007| worldcup match is over -2022-12-06 21:20:06.702397 + : pb-IF5SVXIHMA== | Arnob007|Arnob007| portugal won 5-1 -2022-12-06 21:20:06.992309 + : pb-IF4IV04ZKw== | paratròóper|Baabla| ur wrld cup lol -2022-12-06 21:20:13.252261 + : pb-IF4IV04ZKw== | paratròóper|Baabla| i knw abt that match -2022-12-06 21:25:58.962456 + : pb-IF4IV04ZKw== | paratròóper|Baabla| l0lu -2022-12-06 21:26:06.186687 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| hahha -2022-12-06 21:26:20.742485 + : pb-IF4IV04ZKw== | paratròóper|Baabla| lol bch gya tu haha gaali khaane se -2022-12-06 21:27:12.152645 + : pb-IF4IV04ZKw== | paratròóper|Baabla| ma****** ab -2022-12-06 21:27:19.652442 + : pb-IF4IV04ZKw== | paratròóper|Baabla| bh3n ka l0da attacker -2022-12-06 21:27:34.846396 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| hhahahhahahh lol sorry -2022-12-06 21:28:10.702321 + : pb-IF4IV04ZKw== | paratròóper|Baabla| gud 1 -2022-12-06 21:28:17.617978 + : pb-IF4OU0UINQ== | arijjojo|𝒫𝓇𝒾𝓃𝒸𝑒𝓈♔︎| -2022-12-06 21:28:17.625744 + : pb-IF4OU0UINQ== | arijjojo|𝒫𝓇𝒾𝓃𝒸𝑒𝓈♔︎| -2022-12-06 21:28:20.902600 + : pb-IF4IV04ZKw== | paratròóper|Baabla| ab mt krio attacker pls -2022-12-06 21:29:02.722302 + : pb-IF4IV04ZKw== | paratròóper|Baabla| nhi hatna mtlb ?? -2022-12-06 21:29:31.532998 + : pb-IF4OU0UINQ== | arijjojo|𝒫𝓇𝒾𝓃𝒸𝑒𝓈♔︎| -2022-12-06 21:29:31.683545 + : pb-IF4OU0UINQ== | arijjojo|𝒫𝓇𝒾𝓃𝒸𝑒𝓈♔︎| -2022-12-06 21:29:35.011959 + : pb-IF4OU0UINQ== | arijjojo|𝒫𝓇𝒾𝓃𝒸𝑒𝓈♔︎| -2022-12-06 21:29:38.377662 + : pb-IF4OU0UINQ== | arijjojo|𝒫𝓇𝒾𝓃𝒸𝑒𝓈♔︎| -2022-12-06 21:29:38.582679 + : pb-IF4OU0UINQ== | arijjojo|𝒫𝓇𝒾𝓃𝒸𝑒𝓈♔︎| -2022-12-06 21:29:38.705826 + : pb-IF4OU0UINQ== | arijjojo|𝒫𝓇𝒾𝓃𝒸𝑒𝓈♔︎| -2022-12-06 21:29:55.502445 + : pb-IF4IV04ZKw== | paratròóper|Baabla| hat ja.. tujhe pehli baar betray krte dekh ra hu -2022-12-06 21:30:05.162315 + : pb-IF4IV04ZKw== | paratròóper|Baabla| tu aisa ni h. pls dont loose my trust -2022-12-06 21:30:27.038113 + : pb-IF4OU0UINQ== | arijjojo|𝒫𝓇𝒾𝓃𝒸𝑒𝓈♔︎| -2022-12-06 21:30:33.106717 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| are majak hai yrr ye sab tu bhi masti kr -2022-12-06 21:30:42.712408 + : pb-IF4IV04ZKw== | paratròóper|Baabla| ok fir theek h -2022-12-06 21:34:40.522362 + : pb-IF4IV04ZKw== | paratròóper|Baabla| ok -2022-12-06 21:34:42.532502 + : pb-IF4IV04ZKw== | paratròóper|Baabla| lol -2022-12-06 21:37:55.232972 + : pb-IF4IV04ZKw== | paratròóper|Baabla| gg -2022-12-06 21:40:43.969396 + : pb-IF5SVXIHMA== | Arnob007|Arnob007| -2022-12-06 21:40:44.112393 + : pb-IF5SVXIHMA== | Arnob007|Arnob007| -2022-12-06 21:43:26.812305 + : pb-IF4IV04ZKw== | paratròóper|Baabla| lol -2022-12-06 21:44:01.422633 + : pb-IF4IV04ZKw== | paratròóper|Baabla| gg -2022-12-06 21:44:45.483443 + : pb-IF5SVXIHMA== | Arnob007|Arnob007| -2022-12-06 21:44:45.637100 + : pb-IF5SVXIHMA== | Arnob007|Arnob007| -2022-12-06 21:44:45.767661 + : pb-IF5SVXIHMA== | Arnob007|Arnob007| -2022-12-06 21:44:45.895940 + : pb-IF5SVXIHMA== | Arnob007|Arnob007| -2022-12-06 21:46:03.532681 + : pb-IF4IV04ZKw== | paratròóper|Baabla| gg both -2022-12-06 21:47:17.082289 + : pb-IF4IV04ZKw== | paratròóper|Baabla| lol -2022-12-06 21:48:59.864111 + : pb-IF5SVXIHMA== | Arnob007|Arnob007| -2022-12-06 21:49:00.756964 + : pb-IF5SVXIHMA== | Arnob007|Arnob007| -2022-12-06 21:49:00.903006 + : pb-IF5SVXIHMA== | Arnob007|Arnob007| -2022-12-06 21:49:01.040552 + : pb-IF5SVXIHMA== | Arnob007|Arnob007| -2022-12-06 21:49:48.802419 + : pb-IF4IV04ZKw== | paratròóper|Baabla| lol -2022-12-06 21:49:56.622642 + : pb-IF4IV04ZKw== | paratròóper|Baabla| gud blast -2022-12-06 21:50:41.809962 + : pb-IF5SVXIHMA== | Arnob007|Arnob007| my ping high -2022-12-06 21:50:46.972605 + : pb-IF4IV04ZKw== | paratròóper|Baabla| Nyaa! :3 awsm -2022-12-06 21:52:07.222425 + : pb-IF4IV04ZKw== | paratròóper|Baabla| i def. -2022-12-06 21:54:52.922396 + : pb-IF4IV04ZKw== | paratròóper|Baabla| lol -2022-12-06 21:57:07.732374 + : pb-IF4IV04ZKw== | paratròóper|Baabla| wow aloy -2022-12-06 21:59:06.152334 + : pb-IF4IV04ZKw== | paratròóper|Baabla| sry -2022-12-06 22:03:07.822480 + : pb-IF4IV04ZKw== | paratròóper|Baabla| bye bro -2022-12-06 22:03:24.029985 + : pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB | Nyaa! :3|Aloy| bye -2022-12-07 01:40:48.836916 + : pb-IF49U21YDQ== | Android59843406|⚜♾Limuin_Life♾⚜| end -2022-12-07 01:45:07.360411 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 01:45:07.556745 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 01:45:07.703832 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 01:45:07.846893 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 02:11:08.975085 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 02:11:09.165925 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 02:12:03.641744 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 02:13:03.670134 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 02:14:41.454860 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 02:14:41.670038 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 02:51:29.708509 + : pb-IF49U0QkIA== | CrispyPugi|CrispyPugi| -2022-12-07 02:51:29.768512 + : pb-IF49U0QkIA== | CrispyPugi|CrispyPugi| -2022-12-07 02:55:10.588338 + : pb-IF49U0QkIA== | CrispyPugi|CrispyPugi| 0 -2022-12-07 02:58:39.276145 + : pb-IF5WU2MoIA== | ClearerGlory17|| join 🔥dbz -2022-12-07 03:01:01.017836 + : pb-IF49U0QkIA== | CrispyPugi|| -2022-12-07 03:02:36.047786 + : pb-IF49U0QkIA== | CrispyPugi|🥂ललूराम☄| -2022-12-07 03:02:36.247603 + : pb-IF49U0QkIA== | CrispyPugi|🥂ललूराम☄| -2022-12-07 03:46:00.371816 + : pb-IF4PVRI5Pw== | jaypawar8155|chindya| gg -2022-12-07 04:07:38.377382 + : pb-IF4wV24HBw== | GiantRobot|GiantRobot| -2022-12-07 04:08:40.619167 + : pb-IF4wV24HBw== | GiantRobot|GiantRobot| -2022-12-07 04:38:07.741352 + : pb-IF4WU0QRIA== | BushyInstr|BushyInstr| sddg -2022-12-07 04:41:50.037119 + : pb-IF4UVUclXA== | AvanKathir|Kathir| super br -2022-12-07 04:42:07.596337 + : pb-IF41VGo9MA== | InsideMani|InsideMani| vera level -2022-12-07 04:42:33.037229 + : pb-IF4UVUclXA== | AvanKathir|Kathir| mani bro.. neenga entha ooru -2022-12-07 04:42:48.836352 + : pb-IF41VGo9MA== | InsideMani|InsideMani| tirunelveli -2022-12-07 04:54:04.954644 + : pb-IF5RJ2sR | ShootingBu|💋💋 চাচা🙈🙈| jaldi kar bhi -2022-12-07 04:58:37.566208 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-07 04:58:37.811608 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-07 04:58:38.004273 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-07 05:08:53.064749 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-07 05:08:53.205400 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-07 05:08:53.400327 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-07 05:08:53.850613 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-07 05:12:43.302570 + : pb-IF4VU3laVA== | Android63074779|fayankaran🦾| -2022-12-07 05:16:12.021270 + : pb-IF4hU04ADw== | FierySorce|FierySorce| -2022-12-07 05:16:18.389367 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-07 05:17:36.674735 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| hey just take the flag -2022-12-07 05:17:41.830957 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| and finish this shit -2022-12-07 05:23:05.305905 + : pb-IF4-U3gdFw== | Android63053623|Arvind Kejriwal| tarun g me gheel dal l plo -2022-12-07 05:23:41.420781 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|ashu42v| My ping :54.16 ms -2022-12-07 05:24:21.273757 + : pb-IF4FU0YcVQ== | FauziAlhis|FauziAlhis| good work -2022-12-07 05:24:52.680555 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|ashu42v| rawoofraw -2022-12-07 05:24:57.030695 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|ashu42v| haha kya leja rha h -2022-12-07 05:24:59.840815 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|ashu42v| vaha -2022-12-07 05:29:24.613761 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| buri najar -2022-12-07 05:30:39.188241 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| -2022-12-07 05:30:39.355702 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| -2022-12-07 05:30:39.518907 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| -2022-12-07 05:31:38.918832 + : pb-JiNJARFTVEREXV1CEkVQV1VKE0dfR1JD | wishkt123|Papa ji| hahahah -2022-12-07 05:33:48.335591 + : pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF | ashu42v|ashu42v| -2022-12-07 05:37:53.788667 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 05:37:54.197306 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 05:38:36.467323 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 05:41:29.967054 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 05:41:30.127615 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 05:41:30.287250 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 05:43:30.412039 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| munchkin yrrr -2022-12-07 05:44:10.125798 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| sorry attacker miss hogay -2022-12-07 05:44:37.237845 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| itni badi badi aakhe h phir bhi miss ho gya -2022-12-07 05:44:48.534408 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| yrrr Jintao yr -2022-12-07 05:45:01.011940 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| ankhe nikal ke gotiya khelunga -2022-12-07 05:45:16.557628 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| apne username se* -2022-12-07 05:45:36.457069 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 05:45:50.449692 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| munchikn moongdal -2022-12-07 05:45:53.542371 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 05:46:12.502131 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| thore🤌🫂 -2022-12-07 05:46:25.968118 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| are u noob -2022-12-07 05:46:36.267121 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| yes -2022-12-07 05:47:01.630808 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| hahahahahba lol -2022-12-07 05:47:09.932247 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| i m pro see how to play ok -2022-12-07 05:47:10.947279 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| pro* -2022-12-07 05:47:39.227154 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 05:47:39.367292 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 05:47:39.467200 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 05:47:39.597394 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 05:47:59.267179 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| ye curse mere time or h kyu ata h -2022-12-07 05:48:38.976890 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| akhiya nikal le gotiya kehlunga -2022-12-07 05:48:50.267160 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| kha se -2022-12-07 05:49:05.547079 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| apne balls nikal k khel -2022-12-07 05:49:20.887011 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| 👁👁 sambal ke buri nazar hu me -2022-12-07 05:49:35.925272 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| sry att -2022-12-07 05:49:37.166959 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| pro* -2022-12-07 05:50:16.765223 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| sorry miss hogya -2022-12-07 05:50:48.532531 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| 😅 -2022-12-07 05:51:06.513543 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| kyo yr -2022-12-07 05:51:15.746924 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| sry -2022-12-07 05:51:17.261813 + : pb-IF49U0QJDw== | NOMERCY|🇲 🇦 🇫 🇮 🇦| 👁👁 -2022-12-07 05:51:24.546896 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| lag -2022-12-07 05:51:31.697088 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| mera ban -2022-12-07 05:51:35.686216 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| kyu yarrr -2022-12-07 05:51:38.586992 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| hatao -2022-12-07 05:52:01.224284 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| kyu yarr attt -2022-12-07 05:52:07.286889 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| betray kr kr -2022-12-07 05:52:08.361820 + : pb-IF49U0QJDw== | NOMERCY|🇲 🇦 🇫 🇮 🇦| smoothy will be there at evening or night around 11-12pm -2022-12-07 05:52:16.196938 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 05:52:17.771802 + : pb-IF49U0QJDw== | NOMERCY|🇲 🇦 🇫 🇮 🇦| ask him -2022-12-07 05:52:24.366935 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| he was here -2022-12-07 05:52:29.376923 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| yesterday -2022-12-07 05:52:35.310758 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| munchikn 7 din bad atomic hatt jayega ban -2022-12-07 05:52:37.963418 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| eye u were betraying -2022-12-07 05:52:47.090156 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-07 05:52:47.230044 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-07 05:52:48.066854 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| ok -2022-12-07 05:52:53.703848 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| yyeeeeeeeeeppppieeee -2022-12-07 05:52:56.619481 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| -2022-12-07 05:52:58.306509 + : pb-IF4wUlIYCg== | NearCandy4|👁👁| i m buri nazar -2022-12-07 05:53:01.327613 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| 🫂👀🕊️🦋❤️✨🌙 -2022-12-07 05:53:39.319154 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 05:55:01.352008 + : pb-IF49U0QJDw== | NOMERCY|🇲 🇦 🇫 🇮 🇦| -2022-12-07 05:55:03.312576 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-07 05:55:43.440109 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-07 05:55:43.550262 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-07 05:55:50.066764 + : pb-IF49U0QJDw== | NOMERCY|🇲 🇦 🇫 🇮 🇦| -2022-12-07 05:56:25.822391 + : pb-IF49U0QJDw== | NOMERCY|🇲 🇦 🇫 🇮 🇦| mujhe naam pasand agaya☺️ -2022-12-07 05:56:35.470318 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| mafia vs mafia -2022-12-07 05:56:48.269038 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| magic joker me kya karu ab? -2022-12-07 05:57:16.096750 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| magic joker haso na muje -2022-12-07 05:57:53.047110 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| I need smoothy s number right now -2022-12-07 05:57:59.157157 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| 🤣 -2022-12-07 05:57:59.222085 + : pb-IF49U0QJDw== | NOMERCY|🇲 🇦 🇫 🇮 🇦| 🤣 -2022-12-07 05:58:03.223226 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| hi daki -2022-12-07 05:58:07.447073 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| hi -2022-12-07 05:58:18.887648 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| hats nahi abtak ban? -2022-12-07 05:58:26.972230 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| nhi -2022-12-07 05:59:07.191325 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| mere pas he smooty ka no. -2022-12-07 05:59:07.530323 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-07 05:59:07.690287 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-07 05:59:14.088149 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 05:59:14.547181 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 05:59:17.530636 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-07 05:59:25.667139 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| popat are u chicken -2022-12-07 05:59:44.842684 + : pb-IF49U0QJDw== | NOMERCY|🇲 🇦 🇫 🇮 🇦| mere pass uska ghar ka address hai -2022-12-07 05:59:51.287300 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| dedo -2022-12-07 06:00:00.667483 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| wo ldka h ya ldki -2022-12-07 06:00:04.593670 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| o mera cousin he -2022-12-07 06:00:09.796534 + : pb-JiNJARBfVEZIXV9JEkRQVVZDF0leT1ZD | Android50745211|Zeus| lod -2022-12-07 06:00:16.403367 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| noob attacker -2022-12-07 06:00:16.602050 + : pb-IF49U0QJDw== | NOMERCY|🇲 🇦 🇫 🇮 🇦| londa hai -2022-12-07 06:00:22.433443 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| yes daji I m chicken -2022-12-07 06:00:22.997051 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| mera gharke pass rahta he -2022-12-07 06:00:23.813530 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| kyo bhai -2022-12-07 06:00:24.497317 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| oho -2022-12-07 06:00:25.493402 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| daki -2022-12-07 06:00:29.157576 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| hi -2022-12-07 06:00:29.443732 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| I m proooo -2022-12-07 06:00:35.352059 + : pb-IF49U0QJDw== | NOMERCY|🇲 🇦 🇫 🇮 🇦| mere ghar me rehta hai -2022-12-07 06:00:36.413465 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| attacker u noob -2022-12-07 06:00:46.633641 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| first time here? -2022-12-07 06:01:04.619609 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| ye pehli baar aya h🤣🤣 -2022-12-07 06:01:08.333715 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| how to see rank in this server? -2022-12-07 06:01:12.247154 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| oh u r chicken ❤️✨ -2022-12-07 06:01:40.027215 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| wah yha ata h ab -2022-12-07 06:01:46.682081 + : pb-IF49U0QJDw== | NOMERCY|🇲 🇦 🇫 🇮 🇦| mafia naya naya use kar rha hai -2022-12-07 06:01:54.433238 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| fk -2022-12-07 06:02:01.630419 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| ha lakin sirf tu hi dekh sakta ha hai -2022-12-07 06:02:05.454289 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| toh lekin rank nhi hqi score aur kills wagera hia -2022-12-07 06:02:13.550428 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| ha -2022-12-07 06:02:26.565890 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| joker me hasu? -2022-12-07 06:03:06.152127 + : pb-IF49U0QJDw== | NOMERCY|🇲 🇦 🇫 🇮 🇦| fork -2022-12-07 06:03:36.751988 + : pb-IF49U0QJDw== | NOMERCY|🇲 🇦 🇫 🇮 🇦| -2022-12-07 06:03:36.932015 + : pb-IF49U0QJDw== | NOMERCY|🇲 🇦 🇫 🇮 🇦| -2022-12-07 06:03:37.052243 + : pb-IF49U0QJDw== | NOMERCY|🇲 🇦 🇫 🇮 🇦| -2022-12-07 06:03:37.316840 + : pb-IF49U0QJDw== | NOMERCY|🇲 🇦 🇫 🇮 🇦| -2022-12-07 06:03:39.311991 + : pb-IF4iVGwqHQ== | Dhivakar04|Mamakutyyyy| -2022-12-07 06:03:39.528816 + : pb-IF4iVGwqHQ== | Dhivakar04|Mamakutyyyy| -2022-12-07 06:03:47.803579 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| gg -2022-12-07 06:04:07.691674 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-07 06:04:07.830348 + : pb-IF4rUmcIUg== | Android55446423|Magic Joker| -2022-12-07 06:07:16.202474 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| MOST BOOORING SOLO -2022-12-07 06:09:57.985210 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| -2022-12-07 06:09:58.243329 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| -2022-12-07 06:10:05.648465 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| ? -2022-12-07 06:10:06.143547 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| 😅😅🤣🤣 -2022-12-07 06:10:14.750995 + : pb-IF4wBUUK | RAEEEEEEEEEEEEEEEEES|RAEEEEEEEEEEEEEEEEES| khelo **** -2022-12-07 06:10:37.010763 + : pb-IF4wBUUK | RAEEEEEEEEEEEEEEEEES|RAEEEEEEEEEEEEEEEEES| 0 -2022-12-07 06:11:08.143799 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| vote -2022-12-07 06:11:11.934161 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| kick -2022-12-07 06:11:15.965782 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| why? -2022-12-07 06:11:38.018966 + : pb-IF5UUxgjIA== | sagarrathore481|sagarrathore481| kick -2022-12-07 06:15:54.267719 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| -2022-12-07 06:15:54.957720 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| -2022-12-07 06:15:55.748000 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| -2022-12-07 06:20:55.571321 + : pb-IF4dLmUO | WheeledArr|Deez-Nutz| -2022-12-07 06:21:45.300548 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| gg -2022-12-07 06:27:01.342676 + : pb-IF4jVUcBDw== | SidewaysCo|tushar| DEATH ***** -2022-12-07 06:27:26.793260 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| syr -2022-12-07 06:29:42.941731 + : pb-IF4DU0IEJg== | CHAINSAW|Gilgamesh| kids☕ -2022-12-07 06:31:50.700209 + : pb-IF4DU0IEJg== | CHAINSAW|Gilgamesh| koi red me jao -2022-12-07 06:32:08.158071 + : pb-IF4vVUNfEA== | sagar88822|| 3 vs 1 -2022-12-07 06:34:22.108424 + : pb-IF4DU0IEJg== | CHAINSAW|Gilgamesh| -2022-12-07 06:34:22.544082 + : pb-IF4DU0IEJg== | CHAINSAW|Gilgamesh| -2022-12-07 06:34:22.856089 + : pb-IF4DU0IEJg== | CHAINSAW|Gilgamesh| -2022-12-07 06:34:29.568268 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| ab red win -2022-12-07 06:42:44.226070 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| thorw ball iidot -2022-12-07 06:44:23.975354 + : pb-IF4HV2FcNA== | ThisisMitu|| ayee gilga bhadwe -2022-12-07 06:44:32.947038 + : pb-IF4HV2FcNA== | ThisisMitu|| side mein jaake maa ****** apni, mere paas mat leke aa -2022-12-07 06:44:57.608251 + : pb-IF4DU0IEJg== | CHAINSAW|Gilgamesh| 🤣🤣🤣 -2022-12-07 06:45:57.511453 + : pb-IF4DU0IEJg== | CHAINSAW|Gilgamesh| -2022-12-07 06:46:44.571305 + : pb-IF4DU0IEJg== | CHAINSAW|Gilgamesh| 🤣🤣🤣🤣 -2022-12-07 06:48:19.138028 + : pb-IF4DU0IEJg== | CHAINSAW|Gilgamesh| ihack ka baap rand -2022-12-07 06:48:24.261408 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol -2022-12-07 06:48:28.736741 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| abe -2022-12-07 06:57:08.208903 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| teri maa ki **** benchoe nikal ***** -2022-12-07 06:57:20.043760 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| gilgamesh madar00ch0000d -2022-12-07 06:57:21.369244 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| kik -2022-12-07 06:57:25.439119 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| kik -2022-12-07 06:57:35.190506 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| 1 -2022-12-07 06:58:58.934858 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| 0 -2022-12-07 06:59:03.168781 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| noobde -2022-12-07 06:59:20.421695 + : pb-IF4DU0IEJg== | CHAINSAW|Gilgamesh| tera baap ***** -2022-12-07 07:00:18.238576 + : pb-IF4DU0IEJg== | CHAINSAW|Gilgamesh| noob -2022-12-07 07:00:25.179432 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| ja be ***** -2022-12-07 07:00:32.917222 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| lnd chus -2022-12-07 07:00:45.994150 + : pb-IF4DU0IEJg== | CHAINSAW|Gilgamesh| red noob -2022-12-07 07:00:56.359588 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| aagli game dekha ***** laal teri -2022-12-07 07:03:26.724855 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| noise -2022-12-07 07:03:28.172677 + : pb-IF4DU0IEJg== | CHAINSAW|Gilgamesh| noobs -2022-12-07 07:03:31.378814 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| 🤣🤣🤣🤣 -2022-12-07 07:03:36.226751 + : pb-IF4DU0IEJg== | CHAINSAW|Gilgamesh| 🤣🤣🤣🤣 -2022-12-07 07:04:03.936525 + : pb-IF4DU0IEJg== | CHAINSAW|Gilgamesh| noob🤣🤣🤣🤣🤣🤣🤣 -2022-12-07 07:04:26.776666 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| kasi hogyi laal -2022-12-07 07:04:30.965056 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| crazy billi -2022-12-07 07:04:34.318773 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| choos mera -2022-12-07 07:04:42.850990 + : pb-IF4DU0IEJg== | CHAINSAW|Gilgamesh| mene Kari teri mumi ki **** lala -2022-12-07 07:04:54.109065 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| ghanta -2022-12-07 07:05:03.025721 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| warning / -2022-12-07 07:05:06.644195 + : pb-IF4DU0IEJg== | CHAINSAW|Gilgamesh| teri maa ke andar hi ghusaya -2022-12-07 07:05:13.621095 + : pb-IF4DU0IEJg== | CHAINSAW|Gilgamesh| sorry 🛐 -2022-12-07 07:05:13.908614 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| teri gnd me nahi dum -2022-12-07 07:05:14.056990 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| toxic server -2022-12-07 07:05:18.486667 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| gilga ki ma ki gmd me gilka -2022-12-07 07:07:10.557058 + : pb-IF4DU0IEJg== | CHAINSAW|Gilgamesh| noobs -2022-12-07 07:07:45.059709 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| madaltod -2022-12-07 07:09:01.443796 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| wtf gilgamesh? -2022-12-07 07:09:10.743180 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| wanna get kciked from blue> -2022-12-07 07:09:11.867641 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| ? -2022-12-07 07:09:43.343673 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| vote for ***ing gilgamesh -2022-12-07 07:09:59.889248 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| noob loss game hahah -2022-12-07 07:10:14.264972 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| tothla banke gali do -2022-12-07 07:10:20.942278 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| the usless gilgamesh back with differnnt charracter -2022-12-07 07:10:28.399802 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| madaltod -2022-12-07 07:12:09.165390 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| MULLET IS GILGAMESH -2022-12-07 07:12:10.958634 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| kyo nugget -2022-12-07 07:12:14.768151 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| kiyq aisa -2022-12-07 07:12:19.358134 + : pb-IF4TV3RbDA== | HypnoticAttacker6749|ATTACKER| mat kr bhai -2022-12-07 07:12:37.824652 + : pb-IF4DU0IEJg== | CHAINSAW|nugget| yar me blue button use karta hu sprint ke liye -2022-12-07 07:12:39.990125 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| KICK MULLET -2022-12-07 07:14:20.138137 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| -2022-12-07 07:14:20.336288 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| -2022-12-07 07:14:20.458164 + : pb-IF4vVUNfEA== | sagar88822|🚓बाप🚓| -2022-12-07 07:15:56.792466 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| noise -2022-12-07 07:18:35.752597 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| noise -2022-12-07 07:19:31.650925 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| veri noise -2022-12-07 07:19:32.402870 + : pb-IF4OU04GBg== | MRKHINDIGA|MRKHINDIGA| -2022-12-07 07:21:02.190149 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| noise -2022-12-07 07:21:14.306785 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| HD -2022-12-07 07:21:18.580075 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| IMAX -2022-12-07 07:21:19.788175 + : pb-IF4MU3hdIw== | Excommunic|radhi| QD -2022-12-07 07:21:22.441999 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| 3D -2022-12-07 07:21:27.528151 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| 4K -2022-12-07 07:21:41.601593 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| 5GBPS -2022-12-07 07:21:44.238796 + : pb-IF4MU3hdIw== | Excommunic|radhi| 8K -2022-12-07 07:24:40.977692 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| noise -2022-12-07 07:24:52.863510 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| radndi kha ki ho tum -2022-12-07 07:28:01.161460 + : pb-IF4RU0ctKQ== | Puneetlord|| hi patil -2022-12-07 07:28:50.228548 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| LOLZ -2022-12-07 07:28:55.369167 + : pb-IF4RU0ctKQ== | Puneetlord|Puneetlord| patl -2022-12-07 07:29:00.634462 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 07:29:00.834393 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 07:29:00.942208 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| crazy billi -2022-12-07 07:29:04.517309 + : pb-IF4RU0ctKQ== | Puneetlord|Puneetlord| -2022-12-07 07:29:08.027468 + : pb-IF4RU0ctKQ== | Puneetlord|Puneetlord| patil -2022-12-07 07:29:38.300330 + : pb-IF4RU0ctKQ== | Puneetlord|Puneetlord| patil lavdya -2022-12-07 07:32:47.485166 + : pb-IF4hBFgH | MrDevil|MrDevil| bloody bombers -2022-12-07 07:32:56.648686 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| gg -2022-12-07 07:33:00.594606 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| mrdebil from sahilp?. -2022-12-07 07:33:04.842797 + : pb-IF4hBFgH | MrDevil|MrDevil| yup -2022-12-07 07:33:10.484236 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| shayari sunao -2022-12-07 07:35:20.069219 + : pb-IF4hBFgH | MrDevil|MrDevil| My ping = 5ms -2022-12-07 07:35:36.586628 + : pb-IF4hBFgH | MrDevil|MrDevil| My ping = 0ms -2022-12-07 07:35:47.894244 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 07:35:48.454288 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 07:35:50.611271 + : pb-IF4hBFgH | MrDevil|MrDevil| Mere baarein mein itna mat sochna Dil mein aata hoon samajh mein nahi -2022-12-07 07:35:53.824307 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| my ping non existent -2022-12-07 07:35:54.294459 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| bhavsar -2022-12-07 07:37:36.674556 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| Abe devil -2022-12-07 07:37:39.874819 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| 😠 -2022-12-07 07:37:42.028485 + : pb-IF4hBFgH | MrDevil|MrDevil| 😹 -2022-12-07 07:38:26.653034 + : pb-IF4hBFgH | MrDevil|MrDevil| kya susu team mates hai -2022-12-07 07:38:34.614412 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| 🤣 -2022-12-07 07:38:40.702344 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| 🤣🤣 -2022-12-07 07:38:45.804482 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| afk he is -2022-12-07 07:39:06.463856 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| afk man -2022-12-07 07:39:15.313076 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| sorry -2022-12-07 07:39:15.424581 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| zavadya patil -2022-12-07 07:39:16.420844 + : pb-IF4hBFgH | MrDevil|MrDevil| khelo -2022-12-07 07:39:23.824225 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| 🤣 -2022-12-07 07:39:26.264581 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| crazy cat ko kick krna tha -2022-12-07 07:39:37.164310 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| ok -2022-12-07 07:40:57.613255 + : pb-IF4hBFgH | MrDevil|MrDevil| mene halke mein liya i guess -2022-12-07 07:41:09.024906 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| where u love devil -2022-12-07 07:41:12.674299 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| live* -2022-12-07 07:41:17.517942 + : pb-IF4hBFgH | MrDevil|MrDevil| mumbai -2022-12-07 07:41:17.976818 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| devil u just too noob -2022-12-07 07:41:25.344418 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| where in mumbai? -2022-12-07 07:41:30.013229 + : pb-IF4hBFgH | MrDevil|MrDevil| yes token me nub -2022-12-07 07:41:34.405532 + : pb-IF4hBFgH | MrDevil|MrDevil| vashi -2022-12-07 07:41:37.604443 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| where u live token -2022-12-07 07:41:42.344635 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| ok vashi -2022-12-07 07:41:46.703061 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| india -2022-12-07 07:41:51.719409 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| where in india -2022-12-07 07:41:51.750306 + : pb-IF4hBFgH | MrDevil|MrDevil| e sasura -2022-12-07 07:42:10.664392 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| patil ek tr kill de -2022-12-07 07:42:19.577310 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| ghe bhai -2022-12-07 07:42:30.079902 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| carti don't kill -2022-12-07 07:42:30.584515 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| bruh -2022-12-07 07:42:36.404412 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| 🥲 -2022-12-07 07:42:43.529684 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| aisa bolke sab mar mat jana -2022-12-07 07:42:48.864464 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| where in India token -2022-12-07 07:42:53.533658 + : pb-IF4hBFgH | MrDevil|MrDevil| yeh dekho -2022-12-07 07:43:03.053638 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 07:43:03.223594 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 07:43:03.353665 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 07:43:10.208795 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 07:43:13.344335 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| munchkin where u live in India -2022-12-07 07:43:22.855591 + : pb-IF4hBFgH | MrDevil|MrDevil| bisi -2022-12-07 07:43:32.943601 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| North east india -2022-12-07 07:43:42.835313 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| East india -2022-12-07 07:43:52.275219 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| north east -2022-12-07 07:44:03.403811 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 07:44:09.481310 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| munchu -2022-12-07 07:44:17.384878 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| Pandey,❤️ -2022-12-07 07:44:25.071037 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| opps wrong person -2022-12-07 07:44:29.931147 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| patil❤️ -2022-12-07 07:44:32.754390 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| wher u live patil -2022-12-07 07:44:33.786385 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 😡😡 -2022-12-07 07:44:38.971642 + : pb-IF4hBFgH | MrDevil|MrDevil| bulati hai magar jaane ka nahi -2022-12-07 07:44:40.475411 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 👁👁 -2022-12-07 07:44:41.774631 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| where u live in India mafia -2022-12-07 07:44:45.662246 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| auranganad MH -2022-12-07 07:44:50.164512 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| oh -2022-12-07 07:45:10.718891 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| how long u playing this game -2022-12-07 07:45:12.707040 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 07:45:15.344835 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| where u live crazy cat -2022-12-07 07:45:19.547153 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| india -2022-12-07 07:45:23.011402 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 07:45:25.204598 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| actually i m from Russian -2022-12-07 07:45:31.411087 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| wut -2022-12-07 07:45:35.868468 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| ohh how it going with Putin? -2022-12-07 07:45:44.741926 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| he cool? -2022-12-07 07:46:00.031066 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 07:46:01.128408 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| i m Russian mafia -2022-12-07 07:46:05.450940 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| lol patil -2022-12-07 07:46:12.906211 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| lolz -2022-12-07 07:46:45.004497 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| ik that crazy cat where in india -2022-12-07 07:46:51.601212 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| my frnd munchikn -2022-12-07 07:47:03.990906 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| mu frnd mafu -2022-12-07 07:47:31.101680 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-07 07:47:32.091363 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol -2022-12-07 07:47:41.700607 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| soo many bombers in blue -2022-12-07 07:47:51.884824 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| crayzcat -2022-12-07 07:48:13.910969 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 07:48:14.141980 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 07:48:20.526760 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| dhoka diyaaa -2022-12-07 07:48:31.631081 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| nhi -2022-12-07 07:48:42.928308 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| chura dhala peet me -2022-12-07 07:49:05.981727 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| sorry toke -2022-12-07 07:49:10.713570 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 👁👁 buri nazar ko bulao -2022-12-07 07:51:13.224515 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| pandya donng -2022-12-07 07:51:50.863320 + : pb-IF4QU0s_Eg== | RedeemingTariff52|Donny| **** -2022-12-07 07:52:03.613505 + : pb-IF4QU0s_Eg== | RedeemingTariff52|Donny| b h o s d k -2022-12-07 07:52:14.187287 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| madaltod -2022-12-07 07:52:23.653918 + : pb-IF4QU0s_Eg== | RedeemingTariff52|Donny| c h u ti ya -2022-12-07 07:52:33.697898 + : pb-IF4QU0s_Eg== | RedeemingTariff52|Donny| l o d a le le -2022-12-07 07:52:46.946100 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| BLUE - TEAM OF BOMBERS -2022-12-07 07:53:05.118383 + : pb-IF4hBFgH | MrDevil|MrDevil| tum kya mast kaam karte ho maksud bhai -2022-12-07 07:53:17.002743 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| russian mafia got bombed in as s -2022-12-07 07:53:24.675200 + : pb-IF4QU0s_Eg== | RedeemingTariff52|Donny| cARti RA n d -2022-12-07 07:53:25.240707 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| kya kam💦💦💦 -2022-12-07 07:53:49.626614 + : pb-IF4hBFgH | MrDevil|MrDevil| band krro Bhai band krro khulle mein hagna band krro -2022-12-07 07:53:52.091134 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| crazy billi😡😡 -2022-12-07 07:54:04.857070 + : pb-IF4QU0s_Eg== | RedeemingTariff52|Donny| G a nd dedo -2022-12-07 07:54:13.855040 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| kick donny -2022-12-07 07:54:23.584828 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| 1 -2022-12-07 07:55:40.453201 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| mafia -2022-12-07 07:55:48.139985 + : pb-IF4QU0s_Eg== | RedeemingTariff52|Donny| G ANd -2022-12-07 07:55:50.885237 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| token magic -2022-12-07 07:55:55.614947 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| magic dikha -2022-12-07 07:56:01.353929 + : pb-IF4QU0s_Eg== | RedeemingTariff52|Donny| lo da lele -2022-12-07 07:56:15.420811 + : pb-IF4QU0s_Eg== | RedeemingTariff52|Donny| jo vote krra hai -2022-12-07 07:56:28.025130 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| are gltinse -2022-12-07 07:56:30.934698 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| sanket -2022-12-07 07:56:48.084859 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| donny konkr rha tha -2022-12-07 07:57:45.523704 + : pb-IF4hBFgH | MrDevil|MrDevil| tum kya mast kaam karte ho maksud bhai -2022-12-07 07:57:53.823599 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| kya kaam💦💦💦 -2022-12-07 07:58:26.457431 + : pb-IF4QU0s_Eg== | RedeemingTariff52|Donny| jo vote krega -2022-12-07 07:58:31.474127 + : pb-IF4QU0s_Eg== | RedeemingTariff52|Donny| uski maa ka -2022-12-07 07:58:40.998957 + : pb-IF4QU0s_Eg== | RedeemingTariff52|Donny| bh os da -2022-12-07 07:59:03.980150 + : pb-IF4hBFgH | MrDevil|MrDevil| red ka defence dekh rhe ho -2022-12-07 07:59:08.881446 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| jo vote nahi karge wo h i ja da -2022-12-07 07:59:48.835852 + : pb-IF4QU0s_Eg== | RedeemingTariff52|Donny| tu ga nd marwa mafia -2022-12-07 08:00:08.604614 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 08:00:08.764649 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 08:00:24.324447 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| kick press 1 -2022-12-07 08:00:53.634022 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| bombing band karo -2022-12-07 08:01:05.183322 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| jo bi donyy ko vote karega use 100 rs send karunga -2022-12-07 08:01:19.665333 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| mai free mai vote krunga -2022-12-07 08:01:49.466874 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| fadnavis jo bi team jata he wo hartha he😂😂 -2022-12-07 08:01:54.888366 + : pb-IF4hBFgH | MrDevil|MrDevil| mein gond par bomb futa do baar -2022-12-07 08:01:58.942738 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| aisa nhi he -2022-12-07 08:01:59.915683 + : pb-IF4QU0s_Eg== | RedeemingTariff52|Donny| dono ran di ke bache -2022-12-07 08:02:03.849750 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| me abhi aya hu😒 -2022-12-07 08:02:26.005174 + : pb-IF4hBFgH | MrDevil|MrDevil| Abey token -2022-12-07 08:02:30.494487 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| sry galti se hua -2022-12-07 08:03:30.819352 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 08:03:30.969310 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 08:03:31.119300 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 08:03:31.784997 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| noise -2022-12-07 08:03:38.043650 + : pb-IF4QU0s_Eg== | RedeemingTariff52|Donny| 🖕 -2022-12-07 08:04:10.639541 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| kill me token -2022-12-07 08:04:13.639402 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| choke me -2022-12-07 08:04:18.131782 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| crazy cat come in red -2022-12-07 08:04:19.199329 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| jk -2022-12-07 08:04:36.514596 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| 😏😏😏 -2022-12-07 08:04:39.619474 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| what the hell -2022-12-07 08:04:42.605559 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| lolz -2022-12-07 08:04:43.272923 + : pb-IF4hBFgH | MrDevil|MrDevil| Jane kyu log pyaar krte hai jaane kyu roz subha hagte hai -2022-12-07 08:04:49.759407 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| 🤭😋 -2022-12-07 08:05:02.169581 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| kikc and get 1000 tickets free -2022-12-07 08:05:06.775149 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| tuje dekhh karrr -2022-12-07 08:05:13.301299 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| kya kiya donny ne -2022-12-07 08:05:13.589930 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| press 1 and be blessed for 100 years -2022-12-07 08:05:15.035632 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 1 -2022-12-07 08:05:15.827579 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol freeee -2022-12-07 08:05:23.219256 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| gaali de rha -2022-12-07 08:05:52.399423 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| 21 can u do some for me -2022-12-07 08:06:02.859367 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| can u hit a rich flex for me -2022-12-07 08:06:09.022140 + : pb-IF4hBFgH | MrDevil|MrDevil| waise mein shakt launda hu par yaha mein pigal gaya -2022-12-07 08:06:10.939335 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| can u talk to the ops next for me -2022-12-07 08:06:17.549395 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| 21 -2022-12-07 08:06:24.939467 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| do ya thang 22 do ya thang -2022-12-07 08:06:26.886830 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| reels ki zindagi -2022-12-07 08:06:37.959421 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| twerks vigorously -2022-12-07 08:06:42.367396 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| mr devil khabrsant me rahte ho tum -2022-12-07 08:07:08.309498 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| yellow diamond on my watch this shi cost a lot -2022-12-07 08:07:33.645887 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| lol -2022-12-07 08:07:34.759436 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| imma savage smack her booty in magic -2022-12-07 08:07:37.623401 + : pb-IF4hBFgH | MrDevil|MrDevil| yaar -2022-12-07 08:07:44.757812 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| me ne kaha tha devil noob he -2022-12-07 08:07:58.349315 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| kay karto phadvanis -2022-12-07 08:07:58.363022 + : pb-IF4hBFgH | MrDevil|MrDevil| mein kabar se Zinda hua tha fir khabar mein aagya -2022-12-07 08:07:59.625913 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| abe phn aa gaya😫 -2022-12-07 08:08:08.399407 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| eknath ka phone -2022-12-07 08:08:11.126111 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| shit -2022-12-07 08:08:18.110850 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| ha -2022-12-07 08:08:28.083871 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| faddu sab aatha he mera mar kahane se😂😂 -2022-12-07 08:08:29.130379 + : pb-IF4hBFgH | MrDevil|MrDevil| token aao meri noob panti dekhoge 1v1 mein ? -2022-12-07 08:08:49.579555 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| fkk devil i read that as something else🤣🤣🤣🥲 -2022-12-07 08:08:59.763055 + : pb-IF4hBFgH | MrDevil|MrDevil| 😹 -2022-12-07 08:09:11.547467 + : pb-IF4uU3gNKQ== | CKD360|CKD| gangadhar he chumtiya hai -2022-12-07 08:09:40.976859 + : pb-IF4hBFgH | MrDevil|MrDevil| net bisi -2022-12-07 08:10:05.663080 + : pb-IF4hBFgH | MrDevil|MrDevil| noice -2022-12-07 08:10:06.233244 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| me iske baad gaya -2022-12-07 08:10:17.432833 + : pb-IF4uU3gNKQ== | CKD360|CKD| zuzu -2022-12-07 08:10:28.584407 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| nani -2022-12-07 08:10:29.890414 + : pb-IF4wUlIYCg== | NearCandy4|Shradda kapoor| hi guys -2022-12-07 08:10:31.412714 + : pb-IF4hBFgH | MrDevil|MrDevil| PAPA maini to kon bay -2022-12-07 08:10:39.552663 + : pb-IF4uU3gNKQ== | CKD360|CKD| hi mafia😘 -2022-12-07 08:10:40.588697 + : pb-IF4hBFgH | MrDevil|MrDevil| dono k naam dekho -2022-12-07 08:10:41.479790 + : pb-IF5VUlYjNw== | Immeasura8|Darkness| game lag horha h -2022-12-07 08:10:45.731059 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| fire -2022-12-07 08:10:45.943039 + : pb-IF4wUlIYCg== | NearCandy4|Shradda kapoor| who mafia -2022-12-07 08:10:56.428641 + : pb-IF4wUlIYCg== | NearCandy4|Shradda kapoor| i m bollywood star -2022-12-07 08:11:02.653552 + : pb-IF4uU3gNKQ== | CKD360|CKD| 🤣🤣 -2022-12-07 08:11:07.864303 + : pb-IF4hBFgH | MrDevil|MrDevil| toh mein kya krru job chor du -2022-12-07 08:11:14.418975 + : pb-IF5VUlYjNw== | Immeasura8|Darkness| ckd 360?? -2022-12-07 08:11:16.359712 + : pb-IF4uU3gNKQ== | CKD360|CKD| mard ka aurat jaag rha -2022-12-07 08:11:16.447357 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lolz -2022-12-07 08:11:17.963298 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| lol -2022-12-07 08:11:18.204619 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 08:11:27.473096 + : pb-IF4uU3gNKQ== | CKD360|CKD| yup bruh ckd 360 -2022-12-07 08:11:37.299591 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| shraddha kapoor -2022-12-07 08:11:40.506864 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| smxy -2022-12-07 08:11:40.806048 + : pb-IF5VUlYjNw== | Immeasura8|Darkness| ye server update hokr bekar hogya h -2022-12-07 08:11:42.142742 + : pb-IF4uU3gNKQ== | CKD360|CKD| naved? -2022-12-07 08:11:59.288107 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| landmines killed our team -2022-12-07 08:12:09.213005 + : pb-IF4uU3gNKQ== | CKD360|CKD| server pe bas filter add hua baki sane hai bruh -2022-12-07 08:12:25.900053 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| don't fr -2022-12-07 08:12:31.050860 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| imma rachet -2022-12-07 08:12:54.719349 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| black leather glove no sequence -2022-12-07 08:13:19.005496 + : pb-IF4hBFgH | MrDevil|MrDevil| bulati hai magar jaane ka nahi -2022-12-07 08:14:01.790190 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 08:14:01.816319 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| noise -2022-12-07 08:14:01.939566 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 08:14:07.096935 + : pb-IF4hBFgH | MrDevil|MrDevil| waah majnu waah -2022-12-07 08:14:13.064735 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| kon tha ye -2022-12-07 08:15:11.794321 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| darkness drip -2022-12-07 08:15:25.034431 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| 🥲 -2022-12-07 08:15:34.132689 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| carti me us taraf ja raha tha -2022-12-07 08:15:45.945188 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| mai bhi udhar ja rhi thi -2022-12-07 08:16:06.417683 + : pb-IF4uU3gNKQ== | CKD360|CKD| ja rahi hun?ladki hai tu -2022-12-07 08:16:07.071928 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| darkness rmndi -2022-12-07 08:16:19.276270 + : pb-IF4jIEEY | DarthKille|झवाड्या पाटील| kbse upag rhi hai shette -2022-12-07 08:16:36.768022 + : pb-IF4hBFgH | MrDevil|MrDevil| Gangadhar hi shaktimaan hai -2022-12-07 08:16:39.894425 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| ha -2022-12-07 08:16:54.017769 + : pb-IF4uU3gNKQ== | CKD360|CKD| omg scam ho gya😂 -2022-12-07 08:18:51.116506 + : pb-IF4DU0IEJg== | CHAINSAW|Maximus| DARKNESS HI SHRUTI HAI💀💀 -2022-12-07 08:19:27.922733 + : pb-IF4uU3gNKQ== | CKD360|CKD| shruti gungi hai..darkness bobt bolta hai😂 -2022-12-07 08:19:46.703795 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| devil noob nei khel -2022-12-07 08:19:52.738848 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| Pro ho na thora -2022-12-07 08:20:11.419335 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| vote do -2022-12-07 08:20:26.873249 + : pb-IF4DU0IEJg== | CHAINSAW|Maximus| AAJA **** DU -2022-12-07 08:20:28.533541 + : pb-IF4hBFgH | MrDevil|MrDevil| papa ki pari -2022-12-07 08:20:37.550940 + : pb-IF4hBFgH | MrDevil|MrDevil| 1 -2022-12-07 08:20:43.262600 + : pb-IF4uU3gNKQ== | CKD360|CKD| chwinsaw😑 -2022-12-07 08:21:25.104459 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 08:21:25.264565 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 08:21:26.613335 + : pb-IF4hBFgH | MrDevil|MrDevil| tum kya mast kaam karte ho maksud bhai -2022-12-07 08:22:15.361252 + : pb-IF4hBFgH | MrDevil|MrDevil| mekko pika Chu chahiye -2022-12-07 08:22:28.868423 + : pb-IF4DU0IEJg== | CHAINSAW|Maximus| tere ko maa ki chu deta -2022-12-07 08:22:43.912880 + : pb-IF4hBFgH | MrDevil|MrDevil| dede teri maa ki chu chahiye fir 😹 -2022-12-07 08:22:46.907802 + : pb-IF4uU3gNKQ== | CKD360|CKD| suii mt de be gali kick hojayega -2022-12-07 08:23:01.334001 + : pb-IF4DU0IEJg== | CHAINSAW|Maximus| ckd🫂 -2022-12-07 08:23:15.030810 + : pb-IF4hBFgH | MrDevil|MrDevil| ban hona hai kisiko ? -2022-12-07 08:23:53.124459 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| 1 -2022-12-07 08:24:05.442109 + : pb-IF4DU0IEJg== | CHAINSAW|Maximus| expo -2022-12-07 08:24:10.837610 + : pb-IF4uU3gNKQ== | CKD360|CKD| 😑 -2022-12-07 08:24:11.369171 + : pb-IF4hBFgH | MrDevil|MrDevil| 1 -2022-12-07 08:24:14.224716 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| 1 -2022-12-07 08:24:21.702151 + : pb-IF4hBFgH | MrDevil|MrDevil| 1 -2022-12-07 08:24:26.384893 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| 1 -2022-12-07 08:24:30.145317 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| 1 -2022-12-07 08:25:06.927714 + : pb-IF4DU0IEJg== | CHAINSAW|Maximus| crazy cat se meri dushmani hai 💀 -2022-12-07 08:25:19.604759 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| kyu bhai tujhe dogs pasand hai? -2022-12-07 08:25:34.923492 + : pb-IF4DU0IEJg== | CHAINSAW|Maximus| hm rasicm ho rha -2022-12-07 08:26:52.325048 + : pb-IF4DU0IEJg== | CHAINSAW|Maximus| siu -2022-12-07 08:27:19.408648 + : pb-IF4DU0IEJg== | CHAINSAW|Maximus| Carti karma🤣🤣 -2022-12-07 08:27:57.746795 + : pb-IF4hBFgH | MrDevil|MrDevil| Hamish maare kyu mein thodi kuch krra tha -2022-12-07 08:28:42.804938 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 08:28:42.954448 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 08:28:49.912433 + : pb-IF4DU0IEJg== | CHAINSAW|Maximus| Shruti ka gang bang hogya -2022-12-07 08:29:52.419611 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| Shruti wildin' -2022-12-07 08:30:19.487627 + : pb-IF4DU0IEJg== | CHAINSAW|Maximus| -2022-12-07 08:30:19.969500 + : pb-IF4DU0IEJg== | CHAINSAW|Maximus| -2022-12-07 08:30:20.527519 + : pb-IF4DU0IEJg== | CHAINSAW|Maximus| -2022-12-07 08:30:21.132084 + : pb-IF4DU0IEJg== | CHAINSAW|Maximus| -2022-12-07 08:30:21.690700 + : pb-IF49UnYRLQ== | ChargingBe|Meri Maa| ogree betray mt kr -2022-12-07 08:30:26.845553 + : pb-IF4DU0IEJg== | CHAINSAW|Maximus| o -2022-12-07 08:31:48.442618 + : pb-IF4uU3gNKQ== | CKD360|CKD| akeli sab ko maregi .. -2022-12-07 08:32:02.064719 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| marega -2022-12-07 08:32:23.029483 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| or is it -2022-12-07 08:32:29.587630 + : pb-IF4uU3gNKQ== | CKD360|CKD| 🤣 -2022-12-07 08:33:05.625215 + : pb-IF4DU0lfEw== | Android63733059|Mullet| i love ur mums -2022-12-07 08:33:41.299394 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 08:34:58.492190 + : pb-IF4DU0lfEw== | Android63733059|Mullet| -2022-12-07 08:34:59.018437 + : pb-IF4DU0lfEw== | Android63733059|Mullet| -2022-12-07 08:35:00.154029 + : pb-IF4DU0lfEw== | Android63733059|Mullet| -2022-12-07 08:35:03.805423 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| VOTE -2022-12-07 08:37:20.504546 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 08:37:20.624373 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 08:37:35.027868 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| 🤣🤣 -2022-12-07 08:38:13.026081 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| SIUUU -2022-12-07 08:38:20.214496 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| are ye toh zinda hai -2022-12-07 08:38:27.208627 + : pb-IF49UnYRLQ== | ChargingBe|Meri Maa| shruti fight u have one chance -2022-12-07 08:38:29.587648 + : pb-IF4uU3gNKQ== | CKD360|CKD| lol -2022-12-07 08:40:52.368009 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-07 08:40:56.184485 + : pb-IF48U3IcHw== | Android62472760|Hamish| y so easy -2022-12-07 08:40:57.189921 + : pb-IF4QU0s_Eg== | RedeemingTariff52|rudra Pratap,🔥| 🖕 -2022-12-07 08:41:44.580089 + : pb-IF4QU0s_Eg== | RedeemingTariff52|rudra Pratap,🔥| carti ran di -2022-12-07 08:43:14.524498 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| sry🤣 -2022-12-07 08:43:23.592875 + : pb-IF4uU3gNKQ== | CKD360|CKD| chumtiya log kese bmb fek rhe ho -2022-12-07 08:43:28.544708 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| 🥲 -2022-12-07 08:43:34.112524 + : pb-IF4uU3gNKQ== | CKD360|CKD| 😂 -2022-12-07 08:43:49.724804 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 08:46:43.554733 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| where u live ckd -2022-12-07 08:46:55.672549 + : pb-IF4uU3gNKQ== | CKD360|CKD| frm Odisha -2022-12-07 08:47:00.324476 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| oh nice -2022-12-07 08:47:02.152706 + : pb-IF4uU3gNKQ== | CKD360|CKD| wbu -2022-12-07 08:47:30.674612 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| mumbai -2022-12-07 08:47:44.448245 + : pb-IF4uU3gNKQ== | CKD360|CKD| cool -2022-12-07 08:47:58.096825 + : pb-IF49UnYRLQ== | ChargingBe|Meri Maa| nice try arthur -2022-12-07 08:48:04.249577 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| crazy cat be like if I'm oing doen imma take everyone down -2022-12-07 08:48:18.808586 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| hahaha exactly carti -2022-12-07 08:52:34.725907 + : pb-IF4QU0s_Eg== | RedeemingTariff52|rudra Pratap,🔥| khelo re -2022-12-07 08:52:40.128249 + : pb-IF4uU3gNKQ== | CKD360|CKD| byye cya -2022-12-07 08:53:33.909490 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| if nobody got me ,ik crazy cat got me -2022-12-07 08:53:42.240365 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| heh -2022-12-07 08:53:56.253006 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| always for the team -2022-12-07 08:54:08.891812 + : pb-IF49VFQlPA== | PC688281|Arthur| i also got u -2022-12-07 08:54:21.399404 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| 💀 -2022-12-07 09:00:31.124723 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 09:00:31.294386 + : pb-LV4FUkUPAxNEVV8RRk5WBVVEEA== | MadBOY5523|Carti| -2022-12-07 09:02:50.510571 + : pb-IF4hBFgH | MrDevil|MrDevil| tu Kay KÅRTÕS -2022-12-07 09:03:34.975637 + : pb-IF4hBFgH | MrDevil|MrDevil| mann mein laddu futa do rupay mein do laddu -2022-12-07 09:03:51.653354 + : pb-IF49VFQlPA== | PC688281|Arthur| mann mein laddu futa do rupay mein do laddu -2022-12-07 09:04:01.262168 + : pb-IF42U0kbEg== | RustyUnicorn27009|digo| ajj kund -2022-12-07 09:05:57.526986 + : pb-IF4hBFgH | MrDevil|MrDevil| Jungle Jungle baat chali hai pata chala hai Arre chaddi pehen ke phool khila -2022-12-07 09:08:14.285263 + : pb-IF49VFQlPA== | PC688281|Arthur| meri maa muje mardiya -2022-12-07 09:08:37.281284 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| devil uselss moron -2022-12-07 09:08:53.556940 + : pb-IF49VFQlPA== | PC688281|Arthur| he is my friend -2022-12-07 09:08:58.955533 + : pb-IF49VFQlPA== | PC688281|Arthur| dont call him moron -2022-12-07 09:09:00.356683 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| ohhh i see -2022-12-07 09:09:03.767252 + : pb-IF4hBFgH | MrDevil|MrDevil| 😹 -2022-12-07 09:09:08.428506 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| end -2022-12-07 09:09:10.660770 + : pb-IF4hBFgH | MrDevil|MrDevil| ek life thi bhai bachna tha -2022-12-07 09:09:13.875057 + : pb-IF49VFQlPA== | PC688281|Arthur| or else he will eat u -2022-12-07 09:09:15.802090 + : pb-IF49VFQlPA== | PC688281|Arthur| :) -2022-12-07 09:09:16.938959 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| end -2022-12-07 09:09:22.812972 + : pb-IF4hBFgH | MrDevil|MrDevil| waise mein shakt launda hu par yaha mein pigal gaya -2022-12-07 09:09:23.828326 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| end -2022-12-07 09:09:28.996899 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| no end? -2022-12-07 09:09:38.995812 + : pb-IF49VFQlPA== | PC688281|Arthur| waise mein shakt launda hu par yaha mein pigal gaya -2022-12-07 09:09:59.538378 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| end -2022-12-07 09:10:04.038701 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| end -2022-12-07 09:10:09.525006 + : pb-IF49VFQlPA== | PC688281|Arthur| no end -2022-12-07 09:10:09.718143 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| type 'end' -2022-12-07 09:10:14.932210 + : pb-IF4hBFgH | MrDevil|MrDevil| end -2022-12-07 09:10:16.561905 + : pb-IF49VFQlPA== | PC688281|Arthur| xd -2022-12-07 09:10:18.235920 + : pb-IF4hBFgH | MrDevil|MrDevil| me nub -2022-12-07 09:10:23.825590 + : pb-IF5QU0cfHA== | NoName53045c|Jhonny Sins| j -2022-12-07 09:10:27.146450 + : pb-IF5QU0cfHA== | NoName53045c|Jhonny Sins| o -2022-12-07 09:10:31.439574 + : pb-IF5QU0cfHA== | NoName53045c|Jhonny Sins| k -2022-12-07 09:10:35.433098 + : pb-IF5QU0cfHA== | NoName53045c|Jhonny Sins| e -2022-12-07 09:10:47.468991 + : pb-IF4hBFgH | MrDevil|MrDevil| tum aaye toh aaya bahaaar gali mein aaj Chand nikla -2022-12-07 09:10:57.118689 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| end -2022-12-07 09:11:25.778001 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| bro end -2022-12-07 09:11:41.986274 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| there is a turbo button on jaystick -2022-12-07 09:11:46.370297 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| joystick* -2022-12-07 09:11:57.018212 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| stfu -2022-12-07 09:12:03.153537 + : pb-IF4hBFgH | MrDevil|MrDevil| bhai yeh dukh kAhe khatam nahi hota -2022-12-07 09:14:13.160071 + : pb-IF4hBFgH | MrDevil|MrDevil| deddy is really daddy -2022-12-07 09:14:52.900171 + : pb-IF4hBFgH | MrDevil|MrDevil| 3 time deddy -2022-12-07 09:15:04.513312 + : pb-IF4hBFgH | MrDevil|MrDevil| 4 time -2022-12-07 09:17:58.298351 + : pb-IF4hBFgH | MrDevil|MrDevil| apne mein hi ladh lo -2022-12-07 09:18:31.884469 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| me ne kaha tha na devil tu noob hai🙃 -2022-12-07 09:18:34.283763 + : pb-IF4hBFgH | MrDevil|MrDevil| token i love you too -2022-12-07 09:20:09.813412 + : pb-IF4oElIy | NoName54913f|U̴̡̢̱̳̳͓̗͔̮̔͜͜͜z| bsdi -2022-12-07 09:20:18.337791 + : pb-IF4hBFgH | MrDevil|MrDevil| love you too token -2022-12-07 09:23:21.994217 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| throw to me -2022-12-07 09:25:07.150345 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| 👁️👄👁️ -2022-12-07 09:25:09.185489 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-07 09:25:33.704358 + : pb-IF4oElIy | NoName54913f|U̴̡̢̱̳̳͓̗͔̮̔͜͜͜z| lemme throw -2022-12-07 09:25:34.516781 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| i did that move🙂 -2022-12-07 09:25:37.073262 + : pb-IF4oElIy | NoName54913f|U̴̡̢̱̳̳͓̗͔̮̔͜͜͜z| dilummies -2022-12-07 09:25:38.078420 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| you are so dumb💀 -2022-12-07 09:26:01.967349 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| mf teammates -2022-12-07 09:26:43.470137 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| kill me -2022-12-07 09:27:08.066283 + : pb-IF4hBFgH | MrDevil|MrDevil| tum kya mast kaam karte ho maksud bhai -2022-12-07 09:27:09.713522 + : pb-IF4oElIy | NoName54913f|U̴̡̢̱̳̳͓̗͔̮̔͜͜͜z| dummies -2022-12-07 09:27:10.652734 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| my brain hurts -2022-12-07 09:27:18.058311 + : pb-IF4hBFgH | MrDevil|MrDevil| sed -2022-12-07 09:27:36.224463 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| the amount of braincells they have is countable -2022-12-07 09:27:40.906492 + : pb-IF4iVHMbAg== | ramshaktis|🐮गायतोंडे🐮| srry dady -2022-12-07 09:28:04.109678 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| are* -2022-12-07 09:28:12.403110 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-07 09:28:13.087386 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-07 09:28:13.784580 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-07 09:28:14.544357 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-07 09:29:58.076476 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-07 09:30:04.026845 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| physics op -2022-12-07 09:30:27.805037 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| 👌👌 -2022-12-07 09:30:37.481875 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| where is physics -2022-12-07 09:31:33.916345 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-07 09:31:34.076936 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-07 09:31:35.466835 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-07 09:31:36.599400 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-07 09:32:42.930888 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-07 09:32:49.966816 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| ****ign moron DEDDDy -2022-12-07 09:33:53.899867 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-07 09:34:43.384106 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-07 09:34:43.604115 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-07 09:34:44.973528 + : pb-IF4oElIy | NoName54913f|U̴̡̢̱̳̳͓̗͔̮̔͜͜͜z| az -2022-12-07 09:34:45.416364 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-07 09:34:45.778845 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-07 09:34:48.205241 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-07 09:34:49.794298 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-07 09:34:52.923229 + : pb-IF4oElIy | NoName54913f|U̴̡̢̱̳̳͓̗͔̮̔͜͜͜z| azzmatez -2022-12-07 09:34:53.746197 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| I'm so bad today -2022-12-07 09:34:58.517667 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-07 09:34:58.667552 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-07 09:34:58.822915 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-07 09:35:01.003055 + : pb-IF4oElIy | NoName54913f|U̴̡̢̱̳̳͓̗͔̮̔͜͜͜z| sry -2022-12-07 09:36:37.693103 + : pb-IF4oElIy | NoName54913f|U̴̡̢̱̳̳͓̗͔̮̔͜͜͜z| fkr -2022-12-07 09:36:43.253328 + : pb-IF4oElIy | NoName54913f|U̴̡̢̱̳̳͓̗͔̮̔͜͜͜z| 1. -2022-12-07 09:36:49.199557 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| 1 -2022-12-07 09:36:50.873173 + : pb-IF4oElIy | NoName54913f|U̴̡̢̱̳̳͓̗͔̮̔͜͜͜z| i will run -2022-12-07 09:37:45.056053 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| -2022-12-07 09:37:51.829175 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| bye y'all -2022-12-07 09:38:04.066486 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| yo -2022-12-07 09:38:07.318953 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| hi -2022-12-07 09:38:08.632316 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| get the flag -2022-12-07 09:38:20.700759 + : pb-IF4KV04FIg== | ItzMeRoman|WHITE| bye bruh😂 -2022-12-07 09:38:24.180268 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| byee -2022-12-07 09:38:54.983352 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| awesome Thunder -2022-12-07 09:38:58.638086 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 🫡 -2022-12-07 09:40:04.886615 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| demn -2022-12-07 09:41:27.803075 + : pb-IF4oElIy | NoName54913f|U̴̡̢̱̳̳͓̗͔̮̔͜͜͜z| khargosh -2022-12-07 09:41:34.173442 + : pb-IF4oElIy | NoName54913f|U̴̡̢̱̳̳͓̗͔̮̔͜͜͜z| bddi -2022-12-07 09:41:38.944372 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-07 09:41:39.054210 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-07 09:41:39.184172 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-07 09:41:39.334906 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-07 09:42:23.243766 + : pb-IF4oElIy | NoName54913f|U̴̡̢̱̳̳͓̗͔̮̔͜͜͜z| sry santa -2022-12-07 09:42:28.934710 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-07 09:42:29.214062 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-07 09:42:30.015985 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| -2022-12-07 09:42:35.994203 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| 😏😏 -2022-12-07 09:42:44.633046 + : pb-IF4oElIy | NoName54913f|U̴̡̢̱̳̳͓̗͔̮̔͜͜͜z| 👍🏼 -2022-12-07 09:42:59.863131 + : pb-IF4oElIy | NoName54913f|U̴̡̢̱̳̳͓̗͔̮̔͜͜͜z| press 1 for free burger -2022-12-07 09:43:11.355722 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 😋😋 -2022-12-07 09:43:15.585124 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 1 -2022-12-07 09:43:19.215954 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| gemme now -2022-12-07 09:43:19.662163 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| bots? -2022-12-07 09:43:32.833185 + : pb-IF4oElIy | NoName54913f|U̴̡̢̱̳̳͓̗͔̮̔͜͜͜z| more 5 ppl need to press -2022-12-07 09:43:36.577776 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| 1 -2022-12-07 09:43:48.469205 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| yo yo yo wth it's one guy -2022-12-07 09:43:59.002734 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| we have 2 bots here -2022-12-07 09:44:04.914487 + : pb-IF4oElIy | NoName54913f|U̴̡̢̱̳̳͓̗͔̮̔͜͜͜z| yes sir -2022-12-07 09:44:11.164875 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| guess ginger is one of em -2022-12-07 09:44:13.234150 + : pb-IF4oElIy | NoName54913f|U̴̡̢̱̳̳͓̗͔̮̔͜͜͜z| end -2022-12-07 09:44:18.867106 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| end -2022-12-07 09:44:20.572841 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| end -2022-12-07 09:44:33.653369 + : pb-IF4oElIy | NoName54913f|U̴̡̢̱̳̳͓̗͔̮̔͜͜͜z| type 'end' -2022-12-07 09:44:38.921679 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| dude💀 -2022-12-07 09:44:47.841176 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| what jus happened -2022-12-07 09:46:26.123432 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| chainsaw mf -2022-12-07 09:46:33.593059 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| dumbazz -2022-12-07 09:46:45.232362 + : pb-IF4uU3gNKQ== | CKD360|CKD| lag -2022-12-07 09:47:55.019124 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-07 09:47:55.218588 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-07 09:47:55.368954 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-07 09:47:55.724029 + : pb-IF49VFQlPA== | PC688281|Ginger| come on bhakya u can do it -2022-12-07 09:48:01.134069 + : pb-IF49VFQlPA== | PC688281|Ginger| never mind -2022-12-07 09:48:03.653224 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| o reaaly? -2022-12-07 09:48:03.805092 + : pb-IF49VFQlPA== | PC688281|Ginger| lol -2022-12-07 09:48:07.704811 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 🗿 -2022-12-07 09:48:15.278309 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-07 09:48:20.171108 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| nubedaa -2022-12-07 09:48:22.596434 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| pelo pelo pelo xd -2022-12-07 09:48:24.330979 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| women☕ -2022-12-07 09:48:29.890535 + : pb-IF4cUktZNg== | Ainesh0001|Thunder| 😂 -2022-12-07 09:48:34.733123 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| gay🔫 -2022-12-07 09:49:54.891110 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| less goo reds -2022-12-07 09:50:01.481926 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| lun -2022-12-07 09:50:05.570813 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| attaci -2022-12-07 09:50:08.427737 + : pb-IF4hBFgH | MrDevil|MrDevil| ginger garlic paste mileg -2022-12-07 09:50:10.402964 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| link 🔗 -2022-12-07 09:50:18.264083 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lag -2022-12-07 09:50:28.198437 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| nhi... khali ginger hee milega -2022-12-07 09:50:28.455483 + : pb-IF4hBFgH | MrDevil|MrDevil| mera bhai ginger -2022-12-07 09:50:32.350555 + : pb-IF4uU3gNKQ== | CKD360|CKD| vivek div nhi ayi😚 -2022-12-07 09:50:33.206697 + : pb-IF49VFQlPA== | PC688281|Ginger| :) -2022-12-07 09:50:45.280863 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 🤣🤣nhi -2022-12-07 09:50:49.038447 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| gussa -2022-12-07 09:50:51.661829 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| h -2022-12-07 09:50:51.908137 + : pb-IF49VFQlPA== | PC688281|Ginger| chinsaw warning -2022-12-07 09:51:02.959063 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| y? -2022-12-07 09:51:19.849667 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| kl vc nhi ki na maine 😁 -2022-12-07 09:51:28.147953 + : pb-IF5RU2wCXQ== | IrremediableWraith22|IrremediableWraith22| -2022-12-07 09:51:28.364995 + : pb-IF5RU2wCXQ== | IrremediableWraith22|IrremediableWraith22| -2022-12-07 09:51:28.565078 + : pb-IF5RU2wCXQ== | IrremediableWraith22|IrremediableWraith22| -2022-12-07 09:51:28.762575 + : pb-IF5RU2wCXQ== | IrremediableWraith22|IrremediableWraith22| -2022-12-07 09:51:29.728384 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| pucha kisine -2022-12-07 09:51:30.304651 + : pb-IF4uU3gNKQ== | CKD360|CKD| saley😂 -2022-12-07 09:51:36.828195 + : pb-IF4hBFgH | MrDevil|MrDevil| tum kya mast kaam karte ho maksud bhai -2022-12-07 09:51:40.013102 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| end kro -2022-12-07 09:51:52.286421 + : pb-IF4hBFgH | MrDevil|MrDevil| end -2022-12-07 09:51:52.775766 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| DKH RHA BINOD -2022-12-07 09:51:52.997379 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| end -2022-12-07 09:52:02.697085 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| end -2022-12-07 09:52:04.878178 + : pb-IF4iVHMbAg== | ramshaktis|🐮गायतोंडे🐮| end -2022-12-07 09:52:05.973494 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| end -2022-12-07 09:52:07.723376 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| end -2022-12-07 09:52:12.824519 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| end -2022-12-07 09:52:16.324507 + : pb-IF4uU3gNKQ== | CKD360|CKD| 🙄 -2022-12-07 09:52:16.761711 + : pb-IF4hBFgH | MrDevil|MrDevil| end -2022-12-07 09:52:17.763115 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| type end -2022-12-07 09:52:19.804577 + : pb-IF4uU3gNKQ== | CKD360|CKD| end.. -2022-12-07 09:52:24.324888 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| end -2022-12-07 09:52:28.701733 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| vote mates -2022-12-07 09:52:32.504766 + : pb-IF4uU3gNKQ== | CKD360|CKD| end -2022-12-07 09:52:43.543162 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| its boring watching others play -2022-12-07 09:52:45.858149 + : pb-IF4iVHMbAg== | ramshaktis|🐮गायतोंडे🐮| andi mandi sandi jo end ni likha -2022-12-07 09:52:47.179079 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| end -2022-12-07 09:52:53.429874 + : pb-IF4hBFgH | MrDevil|MrDevil| Sonam Gupta bewafa hai -2022-12-07 09:52:54.984605 + : pb-IF4uU3gNKQ== | CKD360|CKD| sahil khusi nhi ayi😬 -2022-12-07 09:52:55.134321 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| end -2022-12-07 09:52:55.203395 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| end -2022-12-07 09:52:55.573013 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| end -2022-12-07 09:52:56.060646 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| pamya😂😂😂 -2022-12-07 09:53:01.949783 + : pb-IF49VFQlPA== | PC688281|Ginger| le -_- -2022-12-07 09:53:53.837394 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| women☕ -2022-12-07 09:54:19.414505 + : pb-IF4hBFgH | MrDevil|MrDevil| waise mein shakt launda hu par yaha mein pigal gaya -2022-12-07 09:54:19.792378 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| -2022-12-07 09:54:20.141885 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| -2022-12-07 09:54:49.017120 + : pb-IF49VFQlPA== | PC688281|Ginger| hat jaa raste se -2022-12-07 09:55:21.411179 + : pb-IF49VFQlPA== | PC688281|Ginger| waise mein shakt launda hu par yaha mein pigal gaya -2022-12-07 09:55:51.094778 + : pb-IF4uU3gNKQ== | CKD360|CKD| bhakya k pankh ud gaye🤣 -2022-12-07 09:56:40.213619 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| waah -2022-12-07 09:57:16.096955 + : pb-IF4hBFgH | MrDevil|MrDevil| tum kya mast kaam karte ho maksud bhai -2022-12-07 09:57:16.663210 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| hahahaa -2022-12-07 09:58:12.074891 + : pb-IF4hBFgH | MrDevil|MrDevil| noice -2022-12-07 09:58:17.963376 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| thx -2022-12-07 09:58:28.637105 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| thx -2022-12-07 09:59:17.131740 + : pb-IF4hBFgH | MrDevil|MrDevil| thnx -2022-12-07 09:59:35.985419 + : pb-IF4uU3gNKQ== | CKD360|CKD| end -2022-12-07 09:59:47.574211 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-07 09:59:47.774604 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-07 09:59:47.934196 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-07 09:59:49.919129 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| wooooo -2022-12-07 09:59:52.185176 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-07 09:59:52.344702 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-07 09:59:52.364108 + : pb-IF4lU0kkUA== | PanickyResurgence23|MERA BAAP..| -2022-12-07 09:59:52.445079 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-07 09:59:52.464266 + : pb-IF4lU0kkUA== | PanickyResurgence23|MERA BAAP..| -2022-12-07 09:59:52.544863 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-07 09:59:52.594000 + : pb-IF4lU0kkUA== | PanickyResurgence23|MERA BAAP..| -2022-12-07 09:59:52.704138 + : pb-IF4lU0kkUA== | PanickyResurgence23|MERA BAAP..| -2022-12-07 09:59:54.161523 + : pb-IF49VFQlPA== | PC688281|Ginger| kelne aye to kelo end end mat karo -2022-12-07 09:59:59.626462 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| tum kya kamm karte h jjaatu -2022-12-07 10:00:00.381599 + : pb-IF4hBFgH | MrDevil|MrDevil| waise mein shakt launda hu par yaha mein pigal gaya -2022-12-07 10:00:26.584538 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| u r ded bro. -2022-12-07 10:00:35.784443 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| sry -2022-12-07 10:01:14.011193 + : pb-IF49VFQlPA== | PC688281|Ginger| abb haromium khaaate hai -2022-12-07 10:01:19.867040 + : pb-IF4hBFgH | MrDevil|MrDevil| bulati hai magar jaane ka nahi -2022-12-07 10:01:20.600504 + : pb-IF4DU0IEJg== | CHAINSAW|CHAINSAW| sahil lomse -2022-12-07 10:01:30.175117 + : pb-IF49VFQlPA== | PC688281|Ginger| bulati hai magar jane ka nai -2022-12-07 10:01:45.003140 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| less go -2022-12-07 10:01:45.561199 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| betray mt kro -2022-12-07 10:02:22.803313 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| 4 ppl defence -2022-12-07 10:03:00.084144 + : pb-IF49VFQlPA== | PC688281|Ginger| oh my my -2022-12-07 10:03:02.668142 + : pb-IF4hBFgH | MrDevil|MrDevil| tum kya mast kaam karte ho maksud bhai -2022-12-07 10:03:07.765406 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| blue noob gang -2022-12-07 10:03:19.493479 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| draven teri maa cho..d dunga -2022-12-07 10:04:09.989485 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| naam acchi tarah se bol pehle totle -2022-12-07 10:04:24.564432 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| aya maza -2022-12-07 10:04:30.402264 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| tera naam hi h hutio wala -2022-12-07 10:04:47.725100 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| vivekia**** -2022-12-07 10:04:57.174838 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| 0 -2022-12-07 10:04:59.645399 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| end -2022-12-07 10:05:00.529554 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 🤣🤣chu.tia -2022-12-07 10:05:09.633422 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| end -2022-12-07 10:05:11.263944 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| lo.du -2022-12-07 10:05:18.962098 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| wtf -2022-12-07 10:06:31.004064 + : pb-IF49VFQlPA== | PC688281|Ginger| go go -2022-12-07 10:06:44.999363 + : pb-IF4hBFgH | MrDevil|MrDevil| corona go go corona -2022-12-07 10:07:07.578910 + : pb-IF4hBFgH | MrDevil|MrDevil| My ping = 8ms -2022-12-07 10:07:24.544632 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| -2022-12-07 10:07:24.681809 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| -2022-12-07 10:07:51.126253 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| punjabi power -2022-12-07 10:08:11.378924 + : pb-IF49VFQlPA== | PC688281|Ginger| :) -2022-12-07 10:08:13.372253 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| -2022-12-07 10:08:15.186669 + : pb-IF4oElIy | NoName54913f|ᴅʀᴀᴋᴇɴ 🐉| 🤣 -2022-12-07 10:08:15.326944 + : pb-IF4hBFgH | MrDevil|MrDevil| muh mein rajnigandha kadmo mein duniya -2022-12-07 10:08:15.825237 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-07 10:08:53.814963 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| sry -2022-12-07 10:09:00.044640 + : pb-IF4uU3gNKQ== | CKD360|CKD| np🤣 -2022-12-07 10:09:45.211108 + : pb-IF49VFQlPA== | PC688281|Ginger| great -2022-12-07 10:10:34.219094 + : pb-IF49VFQlPA== | PC688281|Ginger| oh my -2022-12-07 10:11:02.171113 + : pb-IF49VFQlPA== | PC688281|Ginger| -2022-12-07 10:11:30.894211 + : pb-IF4hBFgH | MrDevil|MrDevil| defend krro koi -2022-12-07 10:12:09.004593 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-07 10:12:09.164566 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-07 10:12:10.033492 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-07 10:12:13.686509 + : pb-IF4hBFgH | MrDevil|MrDevil| tum kya mast kaam karte ho maksud bhai -2022-12-07 10:12:16.206336 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| enought -2022-12-07 10:12:19.782951 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| enough -2022-12-07 10:12:25.201321 + : pb-IF4hBFgH | MrDevil|MrDevil| t is silent -2022-12-07 10:12:27.181670 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| mujhe maarke koi fayda ni bro -2022-12-07 10:12:27.199580 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| apna flag jaake bacha leta 💀 -2022-12-07 10:12:28.601634 + : pb-IF49VFQlPA== | PC688281|Ginger| abb harmonium khaate hai -2022-12-07 10:12:36.385515 + : pb-IF4hBFgH | MrDevil|MrDevil| Abba harmonium khaate the -2022-12-07 10:12:40.780626 + : pb-IF49VFQlPA== | PC688281|Ginger| lol -2022-12-07 10:14:21.344988 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| hy sahil ckd😎 -2022-12-07 10:14:27.124980 + : pb-IF4uU3gNKQ== | CKD360|CKD| hy partha -2022-12-07 10:14:47.172151 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| hi lala -2022-12-07 10:14:48.001999 + : pb-IF49VFQlPA== | PC688281|Ginger| oh my my -2022-12-07 10:14:54.845030 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| sahil jeet ke dikha -2022-12-07 10:15:42.834982 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| -2022-12-07 10:15:42.933825 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|WasOnceGuts!| -2022-12-07 10:15:45.165167 + : pb-IF4uU3gNKQ== | CKD360|CKD| -2022-12-07 10:15:46.490348 + : pb-IF4hBFgH | MrDevil|MrDevil| noice -2022-12-07 10:15:46.896638 + : pb-IF49VFQlPA== | PC688281|Ginger| what the hell -2022-12-07 10:15:50.281974 + : pb-IF4hBFgH | MrDevil|MrDevil| well played -2022-12-07 10:15:55.940561 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| bisi 💀 mere team mate ne mereko hi maar diya💀 -2022-12-07 10:16:06.644938 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| 🤣🤣 -2022-12-07 10:16:30.805205 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| a ** d -2022-12-07 10:16:37.165002 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| 🤣🤣 -2022-12-07 10:16:42.304466 + : pb-IF4uU3gNKQ== | CKD360|CKD| abccs -2022-12-07 10:16:43.729907 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| abcd -2022-12-07 10:16:47.244717 + : pb-IF4uU3gNKQ== | CKD360|CKD| abcd -2022-12-07 10:16:58.811931 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| -2022-12-07 10:17:01.612229 + : pb-IF4hBFgH | MrDevil|MrDevil| tum kya mast kaam karte ho maksud bhai -2022-12-07 10:17:20.764988 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ye sanjay datt ka fan kagta meko -2022-12-07 10:17:54.142250 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| -2022-12-07 10:17:59.964644 + : pb-IF4hBFgH | MrDevil|MrDevil| meri mundi Tut gyi mamu -2022-12-07 10:18:15.501837 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| gan.d b tutegi -2022-12-07 10:18:19.054950 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| end -2022-12-07 10:18:25.498000 + : pb-IF4hBFgH | MrDevil|MrDevil| tod de -2022-12-07 10:18:32.029087 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| or r a n d b -2022-12-07 10:18:32.175623 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| acha😁 -2022-12-07 10:18:49.846031 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| ** -2022-12-07 10:18:53.425515 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| end -2022-12-07 10:18:55.441059 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| lond -2022-12-07 10:18:56.169873 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| iski maa ki ch.jf -2022-12-07 10:18:57.898088 + : pb-IF4hBFgH | MrDevil|MrDevil| end -2022-12-07 10:18:59.177290 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| end -2022-12-07 10:19:04.412058 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| end -2022-12-07 10:19:20.339187 + : pb-IF49VFQlPA== | PC688281|Ginger| ViVeK gali mat de -2022-12-07 10:19:22.340317 + : pb-IF49VFQlPA== | PC688281|Ginger| warning -2022-12-07 10:19:27.698803 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| kaam mt kr khane k -2022-12-07 10:19:37.810722 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol -2022-12-07 10:19:55.940908 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ukhad fek sale ko -2022-12-07 10:19:56.964695 + : pb-IF4hBFgH | MrDevil|MrDevil| Vivek gond jali toh kya bola tune hajmola ??? -2022-12-07 10:20:09.481158 + : pb-IF49VFQlPA== | PC688281|Ginger| uska fatta hai -2022-12-07 10:20:14.554316 + : pb-IF4hBFgH | MrDevil|MrDevil| 😹 -2022-12-07 10:20:23.736811 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| rosa gulla -2022-12-07 10:20:35.778398 + : pb-IF49VFQlPA== | PC688281|Ginger| ham aramse kelte hai -2022-12-07 10:20:35.988620 + : pb-IF4hBFgH | MrDevil|MrDevil| chup chaap khelne ka toh gaali deke apne aap ko mahaan samjhte -2022-12-07 10:20:48.041140 + : pb-IF49VFQlPA== | PC688281|Ginger| han yar -2022-12-07 10:21:07.562210 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| ** -2022-12-07 10:21:08.841288 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| end -2022-12-07 10:21:09.790981 + : pb-IF4hBFgH | MrDevil|MrDevil| Patt s headshot -2022-12-07 10:21:19.714409 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| end -2022-12-07 10:21:24.050974 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| end -2022-12-07 10:21:28.279061 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| end -2022-12-07 10:21:31.289223 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| end -2022-12-07 10:21:34.391337 + : pb-IF49VFQlPA== | PC688281|Ginger| lol -2022-12-07 10:21:35.023195 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| lnd -2022-12-07 10:21:39.799006 + : pb-IF4hBFgH | MrDevil|MrDevil| 😹😹 -2022-12-07 10:21:54.790471 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol is this bomb or rocket booster -2022-12-07 10:21:55.650956 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| sahil🤣🤣🤣 -2022-12-07 10:22:11.921113 + : pb-IF49VFQlPA== | PC688281|Ginger| its kinda both -2022-12-07 10:22:44.504627 + : pb-IF4hBFgH | MrDevil|MrDevil| mera naam hai bulla rakhta hu khulla -2022-12-07 10:22:50.591176 + : pb-IF49VFQlPA== | PC688281|Ginger| -2022-12-07 10:22:58.046602 + : pb-IF5UU3AyNw== | Android62113852|meranaamhabula💯| yes -2022-12-07 10:23:01.006514 + : pb-IF4hBFgH | MrDevil|MrDevil| movie ka dialogue hai bhai -2022-12-07 10:23:07.041640 + : pb-IF5UU3AyNw== | Android62113852|meranaamhabula💯| yes -2022-12-07 10:23:08.161288 + : pb-IF49VFQlPA== | PC688281|Ginger| konsa movie -2022-12-07 10:23:09.670904 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| vivek ne nayaa phone le liaa -2022-12-07 10:23:19.905779 + : pb-IF4hBFgH | MrDevil|MrDevil| yt par search krro dekho aayega -2022-12-07 10:23:27.488002 + : pb-IF5UU3AyNw== | Android62113852|meranaamhabula💯| don no 1 -2022-12-07 10:23:30.561207 + : pb-IF49VFQlPA== | PC688281|Ginger| accha -2022-12-07 10:23:35.708474 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| devil noob -2022-12-07 10:23:37.371866 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| vivek? -2022-12-07 10:23:38.043623 + : pb-IF5UU3AyNw== | Android62113852|meranaamhabula💯| movie name -2022-12-07 10:23:46.150536 + : pb-IF4qU3pTMg== | TokenMagic|TokenMagic| Vivek noob too -2022-12-07 10:24:02.748652 + : pb-IF49VFQlPA== | PC688281|Ginger| come on vivek u can do i -2022-12-07 10:24:05.227282 + : pb-IF49VFQlPA== | PC688281|Ginger| it -2022-12-07 10:24:06.940111 + : pb-IF4hBFgH | MrDevil|MrDevil| token i love you too meri Jaan -2022-12-07 10:24:11.516717 + : pb-IF5RVWIRIw== | Imtiyazsay|Imtiyazsay| olp -2022-12-07 10:24:23.445519 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| omg Vivek on FIRE!!!! -2022-12-07 10:24:31.430994 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| cat🤣🤣 -2022-12-07 10:24:31.658436 + : pb-IF49VFQlPA== | PC688281|Ginger| yes yes -2022-12-07 10:24:38.350532 + : pb-IF4hBFgH | MrDevil|MrDevil| Vivek ko aag lagi kaha ? -2022-12-07 10:24:41.435238 + : pb-IF4hBFgH | MrDevil|MrDevil| 😹 -2022-12-07 10:24:43.774299 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| come on tholvi -2022-12-07 10:24:46.052354 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| 🤣 -2022-12-07 10:24:48.992771 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| bs.dk -2022-12-07 10:24:54.740700 + : pb-IF4hBFgH | MrDevil|MrDevil| 😹😹 -2022-12-07 10:24:54.794202 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| 🤣🤣 -2022-12-07 10:24:58.687911 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| phone lag kr rha h yr -2022-12-07 10:25:17.110843 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| ab b nahi liya🤣🤣 -2022-12-07 10:25:17.416918 + : pb-IF4hBFgH | MrDevil|MrDevil| phone nahi Vivek tera bhi sabun slow hai tu bunty hai mere tarha 😹 -2022-12-07 10:25:46.009890 + : pb-IF49VFQlPA== | PC688281|Ginger| crazycat play good too -2022-12-07 10:25:49.775004 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| dila de😁 -2022-12-07 10:25:50.040799 + : pb-IF4hBFgH | MrDevil|MrDevil| bhai yeh toh shuru hote hi khatam hogya -2022-12-07 10:25:54.370855 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| 😅👍 -2022-12-07 10:25:55.010034 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| I go with mood -2022-12-07 10:26:02.459823 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| sometimes I am plain noob -2022-12-07 10:26:02.639096 + : pb-IF49VFQlPA== | PC688281|Ginger| same here -2022-12-07 10:26:07.160886 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| car jeet ka bhukha he -2022-12-07 10:26:21.220939 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| usko har bar jeet ne ka rahta he -2022-12-07 10:26:27.401095 + : pb-LV4FVxEOBxcUVQxERkNWUFFA | parthk1265|parth lala| cat* -2022-12-07 10:26:28.513449 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| play partha -2022-12-07 10:26:33.496110 + : pb-IF49VFQlPA== | PC688281|Ginger| kisine gali diya to mood kharab hota mera -2022-12-07 10:26:56.912169 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 😡😡😡 -2022-12-07 10:27:03.438630 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| r u mad -2022-12-07 10:27:05.103438 + : pb-IF4uU3gNKQ== | CKD360|| 😁😁 -2022-12-07 10:27:12.406742 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| no he is ur dad -2022-12-07 10:27:26.911017 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| and i am you dadu -2022-12-07 10:27:30.289383 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| oy bhai sambhal ke -2022-12-07 10:27:42.529782 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| kya sambhalu😁 -2022-12-07 10:27:46.691832 + : pb-IF4hBFgH | MrDevil|MrDevil| kisine yaad kiya mujhe ? -2022-12-07 10:27:54.834102 + : pb-IF4uU3gNKQ== | CKD360|| 😂 -2022-12-07 10:28:43.000256 + : pb-IF4hBFgH | MrDevil|MrDevil| tum kya mast kaam karte ho maksud bhai -2022-12-07 10:29:07.512471 + : pb-IF5cU0MIAw== | AbdominalH|Thông| hello -2022-12-07 10:29:11.830432 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| maaro yr jldi -2022-12-07 10:29:13.547678 + : pb-IF4hBFgH | MrDevil|MrDevil| mujhe shaktimaan pasand hai -2022-12-07 10:29:32.369065 + : pb-IF49VFQlPA== | PC688281|Ginger| bulati hai magar jaane ka nai -2022-12-07 10:29:36.160959 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| mr ja lau.de -2022-12-07 10:29:51.389377 + : pb-IF49VFQlPA== | PC688281|Ginger| vivek -2022-12-07 10:30:13.189101 + : pb-IF49VFQlPA== | PC688281|Ginger| bahar jaroge firse bole to -2022-12-07 10:30:15.608043 + : pb-IF4XU0gNJg== | NoName14481|ViVeK| bol lau.de -2022-12-07 10:31:18.304326 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-07 10:31:18.494178 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-07 10:31:19.371819 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| -2022-12-07 10:31:19.532607 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| -2022-12-07 10:31:19.691790 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| -2022-12-07 10:31:19.859781 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| -2022-12-07 10:33:39.568274 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| -2022-12-07 10:37:18.995988 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-07 10:37:19.112214 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-07 10:37:26.014219 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-07 10:37:26.194424 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-07 10:37:26.356496 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-07 10:37:27.192905 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| tolvi💀🤣 -2022-12-07 10:37:32.682900 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| 😂😂 -2022-12-07 10:37:33.834096 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| 😂😂😂 -2022-12-07 10:38:03.158116 + : pb-IF49VFQlPA== | PC688281|Ginger| xd -2022-12-07 10:38:35.379225 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| end -2022-12-07 10:38:49.541528 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| floater -2022-12-07 10:39:07.274636 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| 😂 -2022-12-07 10:39:10.091752 + : pb-IF4DU0IEJg== | CHAINSAW|Beowulf| can you hear the silence? -2022-12-07 10:39:21.318453 + : pb-IF4DU0IEJg== | CHAINSAW|Beowulf| can you see the dark? -2022-12-07 10:39:29.940134 + : pb-IF4DU0IEJg== | CHAINSAW|Beowulf| can you fix the broken -2022-12-07 10:39:36.371380 + : pb-IF4DU0IEJg== | CHAINSAW|Beowulf| can you feel -2022-12-07 10:39:41.569057 + : pb-IF49VFQlPA== | PC688281|Ginger| can you play now -2022-12-07 10:39:45.575738 + : pb-IF4DU0IEJg== | CHAINSAW|Beowulf| can you feel my heart -2022-12-07 10:39:56.515333 + : pb-IF4DU0IEJg== | CHAINSAW|Beowulf| aaaa aaaa 🗿🗿🗿🗿 -2022-12-07 10:40:32.528179 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| wht is this happening? -2022-12-07 10:41:49.676874 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| -2022-12-07 10:42:43.303775 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| -2022-12-07 10:42:46.450621 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-07 10:43:00.688555 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| very laggy? -2022-12-07 10:43:04.239319 + : pb-IF49VFQlPA== | PC688281|Ginger| no -2022-12-07 10:43:11.488557 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| i cant even move -2022-12-07 10:43:15.352018 + : pb-IF49VFQlPA== | PC688281|Ginger| myn is gud -2022-12-07 10:43:30.968410 + : pb-IF49VFQlPA== | PC688281|Ginger| come here -2022-12-07 10:43:35.394599 + : pb-IF4rU2EZEw== | Android60974634|Android60974634| laggy in ur dream🌝 -2022-12-07 10:43:58.334221 + : pb-IF4DU0IEJg== | CHAINSAW|Beowulf| pls give access for floater -2022-12-07 10:44:28.464355 + : pb-IF4rU2EZEw== | Android60974634|Android60974634| ok I will give u ...... -2022-12-07 10:44:56.678054 + : pb-IF49VFQlPA== | PC688281|Ginger| its not workin well -2022-12-07 10:45:00.557997 + : pb-IF49VFQlPA== | PC688281|Ginger| lets try it again -2022-12-07 10:45:31.878018 + : pb-IF49VFQlPA== | PC688281|Ginger| lol -2022-12-07 10:45:41.086407 + : pb-IF49VFQlPA== | PC688281|Ginger| hurry jump jum -2022-12-07 10:45:48.581511 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| 🤣🤣 -2022-12-07 10:45:58.523987 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-07 10:45:58.724167 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| -2022-12-07 10:45:59.283000 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| lol -2022-12-07 10:45:59.295047 + : pb-IF49VFQlPA== | PC688281|Ginger| its not moving lol -2022-12-07 10:46:10.983942 + : pb-IF4DU0IEJg== | CHAINSAW|Beowulf| let's try again -2022-12-07 10:46:11.953247 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| nice to meet u guys -2022-12-07 10:46:14.891641 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| end -2022-12-07 10:46:16.088223 + : pb-IF49VFQlPA== | PC688281|Ginger| :) -2022-12-07 10:46:25.318099 + : pb-IF49VFQlPA== | PC688281|Ginger| i have to go bye -2022-12-07 10:46:25.853034 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| how it will move there were too many people😂😂 -2022-12-07 10:46:27.448527 + : pb-IF4DU0IEJg== | CHAINSAW|Beowulf| very fun🛐🛐 -2022-12-07 10:46:36.005198 + : pb-IF4DU0IEJg== | CHAINSAW|Beowulf| end -2022-12-07 10:46:39.451093 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| end -2022-12-07 10:46:40.528344 + : pb-IF49VFQlPA== | PC688281|Ginger| haha too much wait -2022-12-07 10:46:44.966427 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| sorry guys I m noob -2022-12-07 10:46:57.000614 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| oh I missed all fun becasue of lag -2022-12-07 10:47:22.128428 + : pb-IF4DU0IEJg== | CHAINSAW|Beowulf| who have the access to floater? -2022-12-07 10:47:26.833084 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| -2022-12-07 10:47:29.731769 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| -2022-12-07 10:47:41.533433 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| PoPat and me are twins -2022-12-07 10:47:56.344780 + : pb-IF4rU2EZEw== | Android60974634|Android60974634| boy or girl -2022-12-07 10:48:03.550352 + : pb-IF4DU0IEJg== | CHAINSAW|Beowulf| type end maybe? -2022-12-07 10:48:06.602927 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| how to use floater? -2022-12-07 10:48:09.074105 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| end -2022-12-07 10:48:14.093498 + : pb-IF4DU0IEJg== | CHAINSAW|Beowulf| end -2022-12-07 10:48:14.530867 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| end -2022-12-07 10:48:21.208382 + : pb-IF4-V3IdPA== | CharredFly|CharredFly| end -2022-12-07 10:48:27.204882 + : pb-IF4rU2EZEw== | Android60974634|Android60974634| end -2022-12-07 10:48:28.259124 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| end -2022-12-07 10:48:36.034432 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| end -2022-12-07 10:48:43.928903 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| ginger how to access floater? -2022-12-07 10:48:50.783954 + : pb-IF4DU0IEJg== | CHAINSAW|Beowulf| cum on just 4 more -2022-12-07 10:48:56.092237 + : pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL | sahilkhatri343593|sahil op| end -2022-12-07 10:49:02.814337 + : pb-IF4rU2EZEw== | Android60974634|Android60974634| end -2022-12-07 10:49:06.517174 + : pb-IF4-V3IdPA== | CharredFly|CharredFly| end kro yaar -2022-12-07 10:49:08.084639 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| end -2022-12-07 10:49:09.571089 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| end -2022-12-07 10:49:10.159104 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| end -2022-12-07 10:49:10.269889 + : pb-IF4DU0IEJg== | CHAINSAW|Beowulf| end -2022-12-07 10:49:13.844746 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| pol -2022-12-07 10:49:15.967142 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| end -2022-12-07 10:49:19.576199 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| 😂 -2022-12-07 10:49:20.234723 + : pb-IF40UhVdVA== | Deepak11De|🎅 mr. Santa 🎅| end -2022-12-07 10:49:24.993574 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| end -2022-12-07 10:49:27.218085 + : pb-IF4gU0wxBw== | VOIDG0D|VOIDGOD| end -2022-12-07 10:49:29.505733 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| lol -2022-12-07 10:49:32.556137 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| end -2022-12-07 10:49:38.730628 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| when he dies he says end 🔚 untill then he's playing happily 😂 -2022-12-07 10:49:41.435419 + : pb-IF4-V3IdPA== | CharredFly|CharredFly| are maar jake usko -2022-12-07 10:50:00.456446 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| noob -2022-12-07 10:50:06.245076 + : pb-IF4DU0IEJg== | CHAINSAW|Beowulf| sins -2022-12-07 10:50:13.854893 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| lol dont vote -2022-12-07 10:50:18.227312 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| by mistake -2022-12-07 10:50:47.342012 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| noob in red -2022-12-07 10:51:00.810180 + : pb-IF4DU0IEJg== | CHAINSAW|Beowulf| women☕ -2022-12-07 10:51:06.890026 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| 🤣 -2022-12-07 10:51:27.357055 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| lol fear -2022-12-07 10:51:33.629097 + : pb-IF4rU2EZEw== | Android60974634|Android60974634| shit this floor -2022-12-07 10:51:44.730439 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| the floor is slippery -2022-12-07 10:51:50.904539 + : pb-IF4rU2EZEw== | Android60974634|Android60974634| yay -2022-12-07 10:52:02.487035 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| lool mistske -2022-12-07 10:52:41.711420 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| fk one second late -2022-12-07 10:52:47.035344 + : pb-LV4FBUYOVRRBCl4UEkVRB1EWGA== | Phalgun~|CrazyCat@| greatest poo slinger -2022-12-07 10:52:59.157984 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| lol -2022-12-07 10:53:23.244221 + : pb-IF4rU2EZEw== | Android60974634|Android60974634| nice -2022-12-07 10:53:41.774572 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| noobest -2022-12-07 10:53:49.117752 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| 🤣🤣 -2022-12-07 10:53:50.342857 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| -2022-12-07 10:53:55.299317 + : pb-IF4rU2EZEw== | Android60974634|Android60974634| well played -2022-12-07 10:54:01.031113 + : pb-IF4-V3IdPA== | CharredFly|CharredFly| terese hi seekhahai -2022-12-07 10:55:32.487924 + : pb-IF4rUk0bPQ== | VascularDeficiency37|VascularDeficiency37| 11111 -2022-12-07 10:55:43.088977 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-07 10:55:53.860667 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| noob charredfly warn u -2022-12-07 10:57:06.998099 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| -2022-12-07 10:57:16.575804 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| all noob in blue -2022-12-07 10:57:18.018041 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| popat draken -2022-12-07 10:57:51.739581 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| tannuuu😁 -2022-12-07 10:57:58.302890 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| mafiaaaaa -2022-12-07 10:58:08.422952 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| chickennnnnn broooooooooo -2022-12-07 10:58:15.124924 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| hi daki -2022-12-07 10:58:16.159077 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| mene tannu ko bulaya😏 -2022-12-07 10:58:31.292886 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 10:58:31.692839 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 10:58:32.083304 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 10:58:33.266299 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| noobs in blue fk -2022-12-07 10:58:43.956296 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| arree cath cath khel rahe ho mere se -2022-12-07 10:59:14.827067 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-07 10:59:14.895030 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-07 10:59:15.047225 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-07 10:59:15.197234 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| -2022-12-07 10:59:25.017916 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| han mafu😁 -2022-12-07 10:59:32.412930 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 10:59:32.642840 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 10:59:54.189095 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| yar -2022-12-07 10:59:54.632210 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 11:00:12.294098 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| lol -2022-12-07 11:00:27.766227 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| popat hi -2022-12-07 11:00:32.941021 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| hi bro -2022-12-07 11:00:47.168361 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| draken tum hi hona -2022-12-07 11:00:51.488933 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| no -2022-12-07 11:00:54.727402 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ok -2022-12-07 11:01:01.015207 + : pb-IF4AV1QqEQ== | CHICKENBOO|PoPaT| I k chicken -2022-12-07 11:01:16.222721 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| oookkk -2022-12-07 11:01:41.807852 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| -2022-12-07 11:01:53.605324 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ping 200 -2022-12-07 11:02:03.950890 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 11:02:04.191057 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 11:02:30.482971 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| Shruti ji -2022-12-07 11:02:35.283969 + : pb-IF4AV1QqEQ== | CHICKENBOO|√^CHICKENBOOME^√| fk noobs -2022-12-07 11:02:52.949816 + : pb-IF42Uk8uLQ== | PC432163|| chick -2022-12-07 11:02:56.436378 + : pb-IF42Uk8uLQ== | PC432163|| come to super smash -2022-12-07 11:02:58.447588 + : pb-IF42Uk8uLQ== | PC432163|| im lynx -2022-12-07 11:03:15.956981 + : pb-IF4AV1QqEQ== | CHICKENBOO|√^CHICKENBOOME^√| hi lynx -2022-12-07 11:03:21.956412 + : pb-IF42Uk8uLQ== | PC432163|LynxDark$| come to bcs -2022-12-07 11:04:24.980348 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 11:04:25.480233 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 11:04:27.059853 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| sorry miss hogya -2022-12-07 11:04:32.403985 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| munchikn -2022-12-07 11:05:00.990075 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| bhai bhai na rha😶 -2022-12-07 11:05:10.962887 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| 😂 -2022-12-07 11:05:38.370067 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 11:05:50.165170 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 11:06:01.314945 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| my love -2022-12-07 11:06:12.276238 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| whooo -2022-12-07 11:06:16.805697 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 11:06:41.474944 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 11:06:46.284302 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| sorry miss hogya -2022-12-07 11:06:54.305004 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-07 11:07:19.449070 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| shruthi kal tume caffe me dekha mene -2022-12-07 11:08:24.480478 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| my love why didn't you reply -2022-12-07 11:08:50.159676 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| love u too munchikn -2022-12-07 11:08:50.744952 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 11:08:55.062907 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| 😂😂 -2022-12-07 11:09:18.605125 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| mne fundwis ko bola🍉🦫 -2022-12-07 11:09:29.864910 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 11:09:53.024232 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| tannu mene kuch laya he tumare liye -2022-12-07 11:09:55.877924 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| mafia khelo -2022-12-07 11:10:23.478016 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| ky lae ho? -2022-12-07 11:10:27.527045 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 11:10:52.557834 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| oye vote mt kro -2022-12-07 11:10:55.295396 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| 🌹 ye lelo rare flower -2022-12-07 11:10:59.609793 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 11:11:16.407984 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| muje black flower psnd h -2022-12-07 11:11:23.298228 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| ye sirf registan me World ka ladt flower he -2022-12-07 11:11:25.790063 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| mujhe yellow -2022-12-07 11:12:19.875217 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| rabit muje khaa liya😳😳 -2022-12-07 11:12:50.387790 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| 😂😂 -2022-12-07 11:12:57.297966 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| mafia hosh m toh ho -2022-12-07 11:13:58.098208 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| rabbit ne apko nh apne rabbit ko kha lia hoga esa bolo😂😂 -2022-12-07 11:14:31.069930 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 11:14:42.280275 + : pb-IF5SUno-Ug== | ihateu234|Munchkin| -2022-12-07 11:15:28.088089 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| bhaiyu😚 -2022-12-07 11:15:55.821845 + : pb-IF4uU3gNKQ== | CKD360|CKD360| hie siso😚 -2022-12-07 11:16:41.737778 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| m jane wali hoti hu tbhi ap ate ho😒 -2022-12-07 11:16:52.691780 + : pb-IF4uU3gNKQ== | CKD360|CKD360| 😁😂 -2022-12-07 11:17:06.581812 + : pb-IF4uU3gNKQ== | CKD360|CKD360| tu he late me ati -2022-12-07 11:17:25.065845 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| fadnavis tu ithna pro kese bangya -2022-12-07 11:17:59.256700 + : pb-IF4dUkxeLQ== | Sumit11727|फडणवीस🍉| 🙇‍♂️🙂 -2022-12-07 11:18:16.742022 + : pb-IF4uU3gNKQ== | CKD360|CKD360| -2022-12-07 11:18:23.697852 + : pb-IF4cU00cCQ== | EasyComple|Flynn| -2022-12-07 11:18:23.890893 + : pb-IF4cU00cCQ== | EasyComple|Flynn| -2022-12-07 11:18:24.206763 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| bhaiyusiso mei kidhr fss gya mei 😹 -2022-12-07 11:18:24.732815 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| dam he to muje maro -2022-12-07 11:18:28.021883 + : pb-IF4cU00cCQ== | EasyComple|Flynn| -2022-12-07 11:18:28.222113 + : pb-IF4cU00cCQ== | EasyComple|Flynn| -2022-12-07 11:18:29.941814 + : pb-IF4uU3gNKQ== | CKD360|CKD360| didu ayi thi? -2022-12-07 11:18:35.397823 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| nhh yr -2022-12-07 11:18:43.513464 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| anurag kyu? -2022-12-07 11:18:59.642624 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| tannu nule muje maara -2022-12-07 11:19:16.068766 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| ol malungi😂😂 -2022-12-07 11:19:16.562343 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| kya hua -2022-12-07 11:19:54.397923 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| ap hi toh bole bhaiyu siso m kidhr fss gya -2022-12-07 11:20:08.661865 + : pb-IF4uU3gNKQ== | CKD360|CKD360| kya hua🤣 -2022-12-07 11:20:26.373335 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| mei tum dono bich aakr Mr gya so said😹 -2022-12-07 11:20:44.061743 + : pb-IF4uU3gNKQ== | CKD360|CKD360| 😂 -2022-12-07 11:20:49.045441 + : pb-IF4cU00cCQ== | EasyComple|Flynn| -2022-12-07 11:20:49.590521 + : pb-IF4cU00cCQ== | EasyComple|Flynn| -2022-12-07 11:20:49.756680 + : pb-IF4cU00cCQ== | EasyComple|Flynn| -2022-12-07 11:20:49.908609 + : pb-IF4cU00cCQ== | EasyComple|Flynn| -2022-12-07 11:21:04.394075 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| waise mei jyadatr didu ke sath khelta hun na bhaiyu siso ki aadat nhi ckd knows 🎃 -2022-12-07 11:21:27.171961 + : pb-IF4uU3gNKQ== | CKD360|CKD360| ye banda didu ko line mrta hai..🥲 -2022-12-07 11:21:58.208634 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| reiner blue -2022-12-07 11:22:05.161856 + : pb-IF49VFQlPA== | PC688281|Reiner Braun| -2022-12-07 11:22:15.921967 + : pb-IF49VFQlPA== | PC688281|Reiner Braun| ur wish granted -2022-12-07 11:22:23.717312 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-07 11:22:24.528103 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| thnx😊 -2022-12-07 11:22:28.641918 + : pb-IF49VFQlPA== | PC688281|Reiner Braun| -2022-12-07 11:22:28.655171 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-07 11:22:28.802119 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-07 11:22:30.663166 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| ckd 😹chupp -2022-12-07 11:22:42.558142 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| he knws ky ki m didu kisko bolti hu -2022-12-07 11:22:56.717756 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| sshhhh -2022-12-07 11:22:58.881639 + : pb-IF4uU3gNKQ== | CKD360|CKD360| han sayd -2022-12-07 11:23:02.611782 + : pb-IF4uU3gNKQ== | CKD360|CKD360| han janta h -2022-12-07 11:23:04.085240 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| wy won't i know -2022-12-07 11:23:12.262884 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| anurag something something😁😁 -2022-12-07 11:23:12.942458 + : pb-IF4uU3gNKQ== | CKD360|CKD360| 😅 -2022-12-07 11:23:16.013863 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| 🤣 -2022-12-07 11:23:22.129547 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| yaar chup -2022-12-07 11:23:25.042091 + : pb-IF49VFQlPA== | PC688281|Reiner Braun| anu something somthing -2022-12-07 11:23:30.390943 + : pb-IF49VFQlPA== | PC688281|Reiner Braun| whats that lol -2022-12-07 11:23:33.809328 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| 😹 -2022-12-07 11:23:37.261419 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| idk -2022-12-07 11:23:37.442026 + : pb-IF49VFQlPA== | PC688281|Reiner Braun| tell me too -2022-12-07 11:23:42.230943 + : pb-IF49VFQlPA== | PC688281|Reiner Braun| dont be shy -2022-12-07 11:23:53.207064 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-07 11:23:53.298507 + : pb-IF4wUlIYCg== | NearCandy4|MAFIA☠️| -2022-12-07 11:23:55.182049 + : pb-IF4uU3gNKQ== | CKD360|CKD360| didu mujhse ghusa hogyi baat bhi nhi krti..iska line clear😁 -2022-12-07 11:24:08.092769 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| 🥲 -2022-12-07 11:24:20.696862 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| didu my turu -2022-12-07 11:24:22.177473 + : pb-IF5SUkwMAg== | RAGExLUINO|A N A C O N D A| -2022-12-07 11:24:22.373366 + : pb-IF5SUkwMAg== | RAGExLUINO|A N A C O N D A| -2022-12-07 11:24:23.828384 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| frnd imean -2022-12-07 11:24:27.096312 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| 😹 -2022-12-07 11:24:30.187276 + : pb-IF4cU00cCQ== | EasyComple|Flynn| my mistake sorry -2022-12-07 11:24:33.181771 + : pb-IF4uU3gNKQ== | CKD360|CKD360| turu wat🥲 -2022-12-07 11:24:40.201625 + : pb-IF4uU3gNKQ== | CKD360|CKD360| oh🥲 -2022-12-07 11:24:42.375004 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-07 11:24:44.110614 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| lel -2022-12-07 11:24:49.762321 + : pb-IF49VFQlPA== | PC688281|Reiner Braun| who wants floater -2022-12-07 11:24:55.224496 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| bhaiyu will ttyl -2022-12-07 11:25:00.047936 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| me -2022-12-07 11:25:06.032571 + : pb-IF4uU3gNKQ== | CKD360|CKD360| ok siso..byee cya..tc❤️ -2022-12-07 11:25:11.622847 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| uh too -2022-12-07 11:25:15.551492 + : pb-IF49VFQlPA== | PC688281|Reiner Braun| no one lol -2022-12-07 11:25:17.042977 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| bye guys -2022-12-07 11:25:20.426562 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| beyyee -2022-12-07 11:25:23.338554 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| lol reiner -2022-12-07 11:25:27.822683 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-07 11:25:27.950420 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-07 11:25:28.086217 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-07 11:25:29.812513 + : pb-IF49VFQlPA== | PC688281|Reiner Braun| sed -2022-12-07 11:25:35.810685 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| pain? 😹😹😹😹 -2022-12-07 11:25:41.011843 + : pb-IF49VFQlPA== | PC688281|Reiner Braun| no -2022-12-07 11:25:51.232863 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| i hae write na i want -2022-12-07 11:25:52.598902 + : pb-IF49VFQlPA== | PC688281|Reiner Braun| pain in the head -_- -2022-12-07 11:25:53.326111 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| this smthn smthn is pain😹 -2022-12-07 11:26:08.539168 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| too much pain anu -2022-12-07 11:26:18.425409 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-07 11:26:22.183079 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| will talk to uh later anu -2022-12-07 11:26:26.711400 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| oye tanu shhhh -2022-12-07 11:26:32.564811 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| Anu? 😹 -2022-12-07 11:26:42.444068 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| reiner has said -2022-12-07 11:26:44.778009 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| 😂😂 -2022-12-07 11:26:49.042150 + : pb-IF49VFQlPA== | PC688281|Reiner Braun| what is it -2022-12-07 11:26:49.831954 + : pb-IF4uU3gNKQ== | CKD360|CKD360| tum dono k beech kuch chal rha kya👀 -2022-12-07 11:26:51.097827 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| thats why i also -2022-12-07 11:27:03.441084 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| kek;-; -2022-12-07 11:27:08.352083 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| ckd 😹 -2022-12-07 11:27:10.641388 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| 🦍 -2022-12-07 11:27:22.132993 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| bhaiyu 2 din m nhi aaungi game m -2022-12-07 11:27:27.828480 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| shadi m jaari hu -2022-12-07 11:27:28.331695 + : pb-IF4uU3gNKQ== | CKD360|CKD360| exams? -2022-12-07 11:27:33.691798 + : pb-IF4uU3gNKQ== | CKD360|CKD360| oh kisko shadi -2022-12-07 11:27:45.662811 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| bhua k ldkiyo ki -2022-12-07 11:27:48.916623 + : pb-IF49VFQlPA== | PC688281|Reiner Braun| anyone need lift -2022-12-07 11:27:51.662539 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-07 11:28:12.190841 + : pb-IF49VFQlPA== | PC688281|Reiner Braun| why this not moves -2022-12-07 11:28:12.557912 + : pb-IF4vUxkKDg== | TremendousCreek8|tanishka| bye guys -2022-12-07 11:28:15.661611 + : pb-IF4uU3gNKQ== | CKD360|CKD360| nice nice..njoy.. -2022-12-07 11:28:18.676403 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| beye -2022-12-07 11:28:25.481764 + : pb-IF49VFQlPA== | PC688281|Reiner Braun| lol -2022-12-07 11:28:30.671708 + : pb-IF4uU3gNKQ== | CKD360|CKD360| bubyee -2022-12-07 11:29:34.509526 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-07 11:29:34.589618 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| -2022-12-07 11:29:55.081810 + : pb-IF49VFQlPA== | PC688281|Reiner Braun| bruh -2022-12-07 11:29:57.115158 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | iTzAnuragP|iTzAnuragP| diff --git a/dist/ba_root/mods/serverdata/joining.log b/dist/ba_root/mods/serverdata/joining.log deleted file mode 100644 index c5519e5..0000000 --- a/dist/ba_root/mods/serverdata/joining.log +++ /dev/null @@ -1,3896 +0,0 @@ -2023-05-31 21:03:38.674394 + : RentedDemi||pb-IF4mVUc-Lw==|| joined server -2023-05-31 21:04:09.796221 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2023-05-31 21:04:52.979618 + : Android65169175||pb-IF4hUGhcCw==|| joined server -2023-05-31 21:06:21.273775 + : Android64172014||pb-IF4-U1QlMA==|| joined server -2023-05-31 21:08:02.856674 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-05-31 21:14:34.270345 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2023-05-31 21:17:56.994202 + : Slipper427||pb-IF4vUmMbLg==|| joined server -2023-05-31 21:27:34.049032 + : AbruptPara||pb-IF4oUGMtKA==|| joined server -2023-05-31 21:28:04.446228 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-05-31 21:34:57.073110 + : BB||pb-IF5QU1EMXA==|| joined server -2023-05-31 21:40:13.430824 + : jashangodp||pb-IF4yUGYGAw==|| joined server -2023-05-31 21:41:18.671416 + : Incurab339||pb-IF4VUGgoUg==|| joined server -2023-05-31 21:42:51.981746 + : BB||pb-IF5QU1EMXA==|| joined server -2023-05-31 21:43:45.267269 + : WhatsApp||pb-IF4IV04ZKw==|| joined server -2023-05-31 21:45:21.859286 + : K717||pb-IF40U1InIQ==|| joined server -2023-05-31 21:50:03.061206 + : Warrior27||pb-IF4sAGcj|| joined server -2023-05-31 21:51:04.266236 + : dpvaghasiy||pb-IF40PkMh|| joined server -2023-05-31 21:52:33.738461 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-05-31 21:54:22.470697 + : uvcan122||pb-IF4iVHhSKA==|| joined server -2023-05-31 21:56:04.119181 + : Rectang284||pb-IF4PUmg8Mg==|| joined server -2023-05-31 22:02:06.511595 + : Concili217||pb-IF4zUGcTFA==|| joined server -2023-05-31 22:02:34.620967 + : Concili217||pb-IF4zUGcTFA==|| joined server -2023-05-31 22:03:05.745467 + : Concili217||pb-IF4zUGcTFA==|| joined server -2023-05-31 22:03:20.793446 + : capnStrang||pb-IF4FUksNDg==|| joined server -2023-05-31 22:11:54.145163 + : Gosportdel||pb-IF4tNxUh|| joined server -2023-05-31 22:17:19.307199 + : Keval2402||pb-IF4wU1oHMw==|| joined server -2023-05-31 22:20:27.317084 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-05-31 22:20:51.387118 + : venkatviji||pb-IF4dUnIZVw==|| joined server -2023-05-31 22:21:01.414012 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-05-31 22:22:29.676170 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-05-31 22:24:36.088099 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-05-31 22:25:04.202884 + : Android62764913||pb-IF4sU3VSMg==|| joined server -2023-05-31 22:26:45.580195 + : GallingTo2||pb-IF4IUGUJEg==|| joined server -2023-05-31 22:31:05.172229 + : MasterFore||pb-IF4TU0QCXQ==|| joined server -2023-05-31 22:31:06.173954 + : TUJABAAP00||pb-IF4TUxEoKg==|| joined server -2023-05-31 22:31:59.604250 + : sachinsiv2||pb-IF40Mmsn|| joined server -2023-05-31 22:32:10.649033 + : sachinsiv2||pb-IF40Mmsn|| joined server -2023-05-31 22:32:33.708107 + : Android64992544||pb-IF4qUGQ7Eg==|| joined server -2023-05-31 22:34:17.101326 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-05-31 22:36:28.743007 + : Hoemie||pb-IF4jF1NY|| joined server -2023-05-31 22:36:35.769426 + : footballfi||pb-IF4dVUwMKQ==|| joined server -2023-05-31 22:37:02.852839 + : RegularJo7||pb-IF49VWEADg==|| joined server -2023-05-31 22:38:39.283915 + : rajkekings||pb-IF4yU0hYEw==|| joined server -2023-05-31 22:40:11.633735 + : Android65155086||pb-IF4vUGgSJw==|| joined server -2023-05-31 22:41:39.931365 + : Android64714932||pb-IF4KUBYdPQ==|| joined server -2023-05-31 22:41:48.960834 + : AceYodele3||pb-IF4NUGRcFQ==|| joined server -2023-05-31 22:45:04.722519 + : tooworst||pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA|| joined server -2023-05-31 22:45:06.730259 + : Accredi385||pb-IF5RUBkiKA==|| joined server -2023-05-31 22:45:36.847770 + : Denish||pb-IF4SVEwZFw==|| joined server -2023-05-31 22:45:44.875953 + : DevilXGhos||pb-IF4TD1cf|| joined server -2023-05-31 22:45:47.890806 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-05-31 22:52:47.886776 + : DARSHANDev||pb-IF40U0URIw==|| joined server -2023-05-31 22:53:07.964786 + : DARSHANDev||pb-IF40U0URIw==|| joined server -2023-05-31 22:53:42.088785 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-05-31 22:55:58.649272 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-05-31 22:57:41.005665 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-05-31 22:58:39.516632 + : Android46355117||pb-IF4vVRYNMQ==|| joined server -2023-05-31 22:58:52.567958 + : Android46355117||pb-IF4vVRYNMQ==|| joined server -2023-05-31 22:59:15.661454 + : inom1712||pb-IF4FD1c8|| joined server -2023-05-31 22:59:52.811767 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-05-31 23:02:11.304958 + : sudheesh33||pb-IF4HUncmMg==|| joined server -2023-05-31 23:06:10.427152 + : Android63294581||pb-IF4BU0EsIg==|| joined server -2023-05-31 23:07:08.601329 + : Android63294581||pb-IF4BU0EsIg==|| joined server -2023-05-31 23:10:04.882305 + : Android63294581||pb-IF4BU0EsIg==|| joined server -2023-05-31 23:10:25.963793 + : BurlyBron2||pb-IF4PU2Y6VQ==|| joined server -2023-05-31 23:11:00.078137 + : Android63294581||pb-IF4BU0EsIg==|| joined server -2023-05-31 23:13:52.708739 + : Deeps2163||pb-IF5VUxYCUg==|| joined server -2023-05-31 23:15:05.992130 + : FLASHOP201||pb-IF4oUnciKw==|| joined server -2023-05-31 23:15:37.100829 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-05-31 23:16:31.268937 + : captshivi||pb-IF4tCRgv|| joined server -2023-05-31 23:18:54.821458 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-05-31 23:19:16.885513 + : BurlyBron2||pb-IF4PU2Y6VQ==|| joined server -2023-05-31 23:19:28.930876 + : Deeps2163||pb-IF5VUxYCUg==|| joined server -2023-05-31 23:23:01.428479 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-05-31 23:25:04.156635 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-05-31 23:25:06.162964 + : Institut53||pb-IF4HVVVeCQ==|| joined server -2023-05-31 23:25:12.601572 + : Deeps2163||pb-IF5VUxYCUg==|| joined server -2023-05-31 23:27:53.826525 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-05-31 23:28:49.052253 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-05-31 23:30:01.598329 + : Aikuros||pb-IF49VFQlPA==|| joined server -2023-05-31 23:42:29.357489 + : calmdev||pb-IF4FUBlYUA==|| joined server -2023-06-01 00:00:21.532185 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-01 00:03:59.405961 + : vaibhavkap||pb-IF5XUnooJw==|| joined server -2023-06-01 00:04:19.477831 + : ArtlessNoi||pb-IF5TUGpfAQ==|| joined server -2023-06-01 00:04:21.480949 + : Loiteri140||pb-IF4nUnZfJg==|| joined server -2023-06-01 00:13:57.902827 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-01 00:17:39.776739 + : Lusciou425||pb-IF4zUmMgAw==|| joined server -2023-06-01 00:24:20.256288 + : OutEttin51||pb-IF4JUGIKJw==|| joined server -2023-06-01 00:30:26.638768 + : Android64197238||pb-IF4pU1U8VQ==|| joined server -2023-06-01 00:32:33.104194 + : sachin0000||pb-IF5TUGsuBA==|| joined server -2023-06-01 00:38:47.544555 + : MPF||pb-IF4rLkwp|| joined server -2023-06-01 00:39:01.922933 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2023-06-01 00:42:26.659211 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2023-06-01 00:53:13.952845 + : HypnoticA4||pb-IF4TV3RbDA==|| joined server -2023-06-01 00:53:52.100818 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-01 00:56:27.718895 + : uvcan122||pb-IF4iVHhSKA==|| joined server -2023-06-01 00:56:58.829703 + : AMIR13XM89||pb-IF4iU1EpHw==|| joined server -2023-06-01 01:12:16.078178 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 01:25:22.996448 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 01:34:22.950845 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 01:39:18.068111 + : wildfiresr||pb-JiNJARFdUUNDXl5FEk5UV11AFEdbTlJD|| joined server -2023-06-01 01:46:27.587927 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 01:48:43.090231 + : SharpEnemy||pb-IF4zU2MgJw==|| joined server -2023-06-01 02:33:16.988266 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 02:39:30.498990 + : HypnoticA4||pb-IF4TV3RbDA==|| joined server -2023-06-01 02:48:43.854254 + : ahmed365||pb-IF4XUBEqVA==|| joined server -2023-06-01 02:53:22.954896 + : Khalif||pb-IF4eU1lSMQ==|| joined server -2023-06-01 02:54:10.154171 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 03:35:59.476881 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 04:17:11.787858 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 04:59:06.499113 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 05:19:35.938069 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 05:40:58.589173 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 05:41:13.640804 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 06:02:15.285151 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 06:24:26.113777 + : imadooGame||pb-IF5dUGEvNA==|| joined server -2023-06-01 06:27:04.735420 + : WirelessNe||pb-IF4nUkteVA==|| joined server -2023-06-01 06:44:22.618879 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 07:05:12.384595 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 07:08:51.252213 + : EpicQuail4||pb-IF4UUlQyEA==|| joined server -2023-06-01 07:47:19.520567 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 08:14:33.539776 + : Android59498871||pb-IF4oUkYfAg==|| joined server -2023-06-01 08:29:11.779219 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 08:49:04.160599 + : GoodlySavi||pb-IF40UBISLQ==|| joined server -2023-06-01 09:08:38.521168 + : Android57983704||pb-IF4qUkYqUQ==|| joined server -2023-06-01 09:09:40.753897 + : GoodlySavi||pb-IF40UBISLQ==|| joined server -2023-06-01 09:11:30.145920 + : ClearCusto||pb-IF4NUxFfEg==|| joined server -2023-06-01 09:29:01.933080 + : BionicHam3||pb-IF4HUBQOHw==|| joined server -2023-06-01 09:34:39.177880 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 09:37:04.739858 + : I124qdeesn||pb-IF40UGNSPA==|| joined server -2023-06-01 09:42:27.885275 + : logi97887||pb-IF4hVRcaAA==|| joined server -2023-06-01 09:47:55.077932 + : AnnualCoug||pb-IF4iUlBfKQ==|| joined server -2023-06-01 09:51:45.894234 + : Importa106||pb-JiNJARBcUUJBXV5BEEVSXFVKEUlbR1BA|| joined server -2023-06-01 09:55:20.597214 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 10:08:06.377370 + : NoNameA3864008||pb-IF4OVEEtVQ==|| joined server -2023-06-01 10:16:07.258409 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 10:17:03.462415 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-01 10:21:39.625224 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-01 10:35:20.718707 + : Android65135188||pb-IF5VUGo7FA==|| joined server -2023-06-01 10:50:07.991203 + : DragonGhou||pb-IF5cUkwjDA==|| joined server -2023-06-01 10:50:16.012882 + : Player disconnected, reached max players per IP address || pb-IF5cUkwjDA== -2023-06-01 10:52:59.657082 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-01 10:56:02.419014 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-01 10:57:31.794280 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 11:02:49.967508 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-01 11:03:26.083297 + : bBoyy1||pb-IF5XU0YhKg==|| joined server -2023-06-01 11:03:29.097633 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-01 11:06:40.831330 + : IcyCodger9||pb-IF4HU2pTMQ==|| joined server -2023-06-01 11:06:43.850597 + : Thakkudus||pb-JiNJARFdXUdGW1pEE0JZV1JCEUVdQVdA|| joined server -2023-06-01 11:06:51.873201 + : Thakkudus||pb-JiNJARFdXUdGW1pEE0JZV1JCEUVdQVdA|| joined server -2023-06-01 11:17:43.735833 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-01 11:19:33.191823 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-01 11:24:48.367472 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 11:28:17.164296 + : NoNameB3584649||pb-IF4rUGctLw==|| joined server -2023-06-01 11:47:05.396061 + : IvoryMobil||pb-IF4QUBQoBw==|| joined server -2023-06-01 11:47:30.455114 + : IvoryMobil||pb-IF4QUBQoBw==|| joined server -2023-06-01 11:47:46.510555 + : ClearCusto||pb-IF4NUxFfEg==|| joined server -2023-06-01 11:56:43.386661 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-01 12:06:37.619504 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-01 12:08:44.215809 + : VISHUUU||pb-IF5cVXEyAA==|| joined server -2023-06-01 12:09:32.394798 + : VISHUUU||pb-IF5cVXEyAA==|| joined server -2023-06-01 12:10:12.668676 + : Android64980432||pb-IF4nUGQlJw==|| joined server -2023-06-01 12:10:26.995123 + : DiurnalLoo||pb-IF4SUGIfHQ==|| joined server -2023-06-01 12:11:03.109307 + : OombalaBoo||pb-IF4UVVRbKQ==|| joined server -2023-06-01 12:11:50.305145 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-01 12:13:46.736217 + : Flamingvj7||pb-IF4LUk0FCQ==|| joined server -2023-06-01 12:16:55.452293 + : Dissati204||pb-IF48UGcDNA==|| joined server -2023-06-01 12:17:10.540526 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-01 12:17:43.671967 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-01 12:19:07.971415 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-01 12:19:28.057333 + : Android43754128||pb-IF4qVFEmHA==|| joined server -2023-06-01 12:20:21.274540 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-01 12:22:55.273979 + : Warrior27||pb-IF4sAGcj|| joined server -2023-06-01 12:24:18.629296 + : TSHAH2ADAa||pb-IF4DU1U8KQ==|| joined server -2023-06-01 12:24:25.657537 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 12:30:56.614413 + : sadiqu||pb-IF42U1UiKA==|| joined server -2023-06-01 12:31:05.641632 + : TSHAH2ADAa||pb-IF4DU1U8KQ==|| joined server -2023-06-01 12:31:05.642265 + : Player disconnected, reached max players per IP address || pb-IF42U1UiKA== -2023-06-01 12:31:06.644581 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 12:31:45.777854 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-01 12:31:47.782820 + : RubyBear71||pb-IF4cUlM-XQ==|| joined server -2023-06-01 12:33:08.321827 + : QualifiedM||pb-IF4UU3kcKg==|| joined server -2023-06-01 12:33:16.350980 + : QualifiedM||pb-IF4UU3kcKg==|| joined server -2023-06-01 12:38:18.709717 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 12:38:36.774270 + : Android61793805||pb-IF5UU1BeIQ==|| joined server -2023-06-01 12:39:05.887051 + : GovindV755||pb-IF4jUBMiCg==|| joined server -2023-06-01 12:39:26.992751 + : Unpopul135||pb-IF5VU1ckXQ==|| joined server -2023-06-01 12:41:06.317817 + : Android64928611||pb-IF4cUGIBDQ==|| joined server -2023-06-01 12:41:28.400674 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 12:41:51.484675 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-01 12:42:06.543297 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-01 12:42:58.743306 + : QualifiedM||pb-IF4UU3kcKg==|| joined server -2023-06-01 12:43:49.912459 + : Sandip3760||pb-IF5XUmRZXA==|| joined server -2023-06-01 12:44:49.148967 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-01 12:46:50.578147 + : xoxoanonym||pb-IF4nUmMRCw==|| joined server -2023-06-01 12:47:52.934268 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-01 12:48:31.061275 + : harshal||pb-IF4vU0MENg==|| joined server -2023-06-01 12:48:50.114360 + : WirelessNe||pb-IF4nUkteVA==|| joined server -2023-06-01 12:50:09.392047 + : noobshahed||pb-IF49EBk7|| joined server -2023-06-01 12:50:25.437526 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-01 12:54:13.316862 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-01 12:56:53.913826 + : CrushedWol||pb-IF4DV2ItCQ==|| joined server -2023-06-01 12:57:30.396417 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-01 12:58:00.493151 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-06-01 13:00:23.305579 + : tooworst||pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA|| joined server -2023-06-01 13:07:46.535935 + : SpunkyMano||pb-IF4VVEIIAQ==|| joined server -2023-06-01 13:08:52.070781 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2023-06-01 13:09:04.103719 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2023-06-01 13:09:55.405245 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-01 13:12:28.308885 + : Android61022597||pb-IF4oU2EbKg==|| joined server -2023-06-01 13:14:40.802356 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 13:21:54.737637 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-01 13:22:22.836295 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-01 13:23:47.128814 + : Agzx2244||pb-IF4PV24yPA==|| joined server -2023-06-01 13:28:12.072835 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-01 13:28:57.268102 + : ksproducti||pb-IF48UGY4Bw==|| joined server -2023-06-01 13:30:40.702433 + : ksproducti||pb-IF48UGY4Bw==|| joined server -2023-06-01 13:33:59.483199 + : ghostofsp3||pb-IF4gUngkXQ==|| joined server -2023-06-01 13:37:54.403844 + : impu123||pb-IEZJNk4=|| joined server -2023-06-01 13:38:22.538972 + : BOSSGAMING||pb-IF4hVUccIQ==|| joined server -2023-06-01 13:38:26.564448 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 13:40:40.131559 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 13:53:24.075977 + : SmoothyBro||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2023-06-01 13:53:59.188981 + : impu123||pb-IEZJNk4=|| joined server -2023-06-01 13:54:21.261230 + : SmoothyBro||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2023-06-01 13:54:47.370196 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-01 13:57:04.897506 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 13:58:36.216744 + : Karthik272||pb-IF4hVWojKQ==|| joined server -2023-06-01 13:59:21.442034 + : LongClaw02||pb-IF4rUBIeNQ==|| joined server -2023-06-01 13:59:52.554409 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-01 14:00:56.808547 + : Digesti327||pb-IF4lUGQtXQ==|| joined server -2023-06-01 14:03:14.890666 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 14:06:48.030483 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-01 14:08:50.489650 + : Ashikfr||pb-IF5cU1EPJA==|| joined server -2023-06-01 14:10:26.848560 + : Ashikfr||pb-IF5cU1EPJA==|| joined server -2023-06-01 14:10:50.930007 + : WindedFarc||pb-IF4PUnhdAw==|| joined server -2023-06-01 14:15:38.987464 + : HypnoticA4||pb-IF4TV3RbDA==|| joined server -2023-06-01 14:17:52.448399 + : SingingTac||pb-IF49I04z|| joined server -2023-06-01 14:19:10.709279 + : FierceCha3||pb-IF4eUBdSIg==|| joined server -2023-06-01 14:19:53.872025 + : sachinsiv2||pb-IF40Mmsn|| joined server -2023-06-01 14:22:53.465217 + : Concomita8||pb-IF4VUlJYFg==|| joined server -2023-06-01 14:24:22.792661 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 14:25:04.924408 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-01 14:27:21.401765 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-01 14:31:06.234016 + : PAMU628||pb-IF49VFQlPA==|| joined server -2023-06-01 14:38:04.739384 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 14:38:28.812276 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 14:40:22.219885 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 14:40:45.287013 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-01 14:42:27.663576 + : HypnoticA4||pb-IF4TV3RbDA==|| joined server -2023-06-01 14:47:10.726955 + : RealJellyf||pb-IF4MUGUlEQ==|| joined server -2023-06-01 14:53:41.225510 + : Warrior27||pb-IF4sAGcj|| joined server -2023-06-01 14:56:18.804944 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-01 14:57:19.013691 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-01 15:02:52.252996 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 15:10:44.108527 + : AK1313blac||pb-IF4zUm0mVQ==|| joined server -2023-06-01 15:11:40.306469 + : BusyTour49||pb-IF4BUBAqFQ==|| joined server -2023-06-01 15:14:49.975269 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-01 15:21:37.447685 + : NorthEmplo||pb-IF4iUkUSLA==|| joined server -2023-06-01 15:21:41.464803 + : Voracio735||pb-IF5XN1oK|| joined server -2023-06-01 15:21:51.501253 + : Sohamnaik9||pb-IF4jNGJb|| joined server -2023-06-01 15:23:23.850450 + : AmiableFir||pb-IF4oU3MvAQ==|| joined server -2023-06-01 15:24:05.997966 + : GREYNINJA1||pb-IF4-UGcSKg==|| joined server -2023-06-01 15:24:35.095018 + : pranitsoma||pb-IF4oUGYGNA==|| joined server -2023-06-01 15:26:35.580751 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-01 15:26:49.634337 + : KiNgShashi||pb-IF4WUkMYDw==|| joined server -2023-06-01 15:28:09.933491 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-01 15:29:23.165950 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-01 15:30:29.662525 + : DARWISH307||pb-IF5UUGtYVA==|| joined server -2023-06-01 15:31:38.922401 + : ruchi1522||pb-IF42UGgAFg==|| joined server -2023-06-01 15:32:40.189709 + : Android63294581||pb-IF4BU0EsIg==|| joined server -2023-06-01 15:34:27.601022 + : Android65095971||pb-IF4vUGdTVg==|| joined server -2023-06-01 15:37:34.318592 + : RiddenVill||pb-IF4cVXlaDQ==|| joined server -2023-06-01 15:37:42.348343 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 15:38:42.564569 + : Rosewood||pb-IF4TUXMJ|| joined server -2023-06-01 15:38:53.612560 + : Martinluth||pb-IF5WUno7PQ==|| joined server -2023-06-01 15:41:49.314845 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-01 15:43:29.701606 + : RiddenVill||pb-IF4cVXlaDQ==|| joined server -2023-06-01 15:44:34.914171 + : inferblaze||pb-IF4RU1kZIQ==|| joined server -2023-06-01 15:45:58.216904 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-01 15:46:49.392850 + : Whimsic542||pb-IF4MVWY8Jw==|| joined server -2023-06-01 15:48:43.776705 + : SixtyNine||pb-IF4RUkVeDw==|| joined server -2023-06-01 15:52:54.737514 + : AerialMark||pb-IF5XUkoGDw==|| joined server -2023-06-01 15:53:47.096730 + : TorpidStat||pb-IF4OU1AYBg==|| joined server -2023-06-01 15:55:24.443260 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-01 15:55:31.476990 + : Android43671493||pb-IF5QVFMCUg==|| joined server -2023-06-01 15:58:29.128818 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-01 16:01:23.761840 + : Android60355853||pb-IF5UUxgjIA==|| joined server -2023-06-01 16:02:24.986408 + : Gosportdel||pb-IF4tNxUh|| joined server -2023-06-01 16:03:41.244891 + : Android60355853||pb-IF5UUxgjIA==|| joined server -2023-06-01 16:04:01.330128 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-01 16:04:33.445789 + : Whimsic542||pb-IF4MVWY8Jw==|| joined server -2023-06-01 16:04:40.471468 + : UniqueBana||pb-IF5RJW5d|| joined server -2023-06-01 16:05:59.728904 + : AcademicAr||pb-IF5VVUQkXQ==|| joined server -2023-06-01 16:07:27.018703 + : Player disconnected, reached max players per IP address || pb-IF5VVUQkXQ== -2023-06-01 16:07:28.021861 + : AcademicAr||pb-IF5VVUQkXQ==|| joined server -2023-06-01 16:07:41.056909 + : HypnoticA4||pb-IF4TV3RbDA==|| joined server -2023-06-01 16:09:29.471740 + : Warrior27||pb-IF4sAGcj|| joined server -2023-06-01 16:10:41.694177 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 16:10:47.715650 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 16:12:36.106208 + : demoniojho||pb-IF4LU1gBKA==|| joined server -2023-06-01 16:12:50.151782 + : RoastInfus||pb-IF4rVUoqVA==|| joined server -2023-06-01 16:13:46.398709 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 16:14:07.473247 + : Android60355853||pb-IF5UUxgjIA==|| joined server -2023-06-01 16:14:32.553498 + : Android60355853||pb-IF5UUxgjIA==|| joined server -2023-06-01 16:14:46.591461 + : Android60355853||pb-IF5UUxgjIA==|| joined server -2023-06-01 16:16:37.981653 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-01 16:17:27.183369 + : MrSilver||pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG|| joined server -2023-06-01 16:20:32.807684 + : Android60355853||pb-IF5UUxgjIA==|| joined server -2023-06-01 16:20:57.887353 + : Android60355853||pb-IF5UUxgjIA==|| joined server -2023-06-01 16:21:20.963888 + : Android60355853||pb-IF5UUxgjIA==|| joined server -2023-06-01 16:24:31.748791 + : ClearCusto||pb-IF4NUxFfEg==|| joined server -2023-06-01 16:24:41.791962 + : AbysmalAge||pb-IF4hUxkfAQ==|| joined server -2023-06-01 16:27:24.398542 + : Aadithya||pb-IF4-UBgEPQ==|| joined server -2023-06-01 16:28:08.589507 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-01 16:28:18.614202 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-01 16:31:45.572360 + : Android60355853||pb-IF5UUxgjIA==|| joined server -2023-06-01 16:32:40.768490 + : Warrior27||pb-IF4sAGcj|| joined server -2023-06-01 16:33:22.915926 + : AmazingSh7||pb-IF4rUGddCA==|| joined server -2023-06-01 16:35:14.409305 + : ClearCusto||pb-IF4NUxFfEg==|| joined server -2023-06-01 16:36:21.674079 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-01 16:37:12.878102 + : Enchantres||pb-IF4gU0wxBw==|| joined server -2023-06-01 16:39:02.255870 + : legend1036||pb-IF40VEgIIQ==|| joined server -2023-06-01 16:41:48.855554 + : Hygieni159||pb-IF4UUGkjHA==|| joined server -2023-06-01 16:42:33.006639 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-01 16:44:33.443348 + : MrSilver||pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG|| joined server -2023-06-01 16:49:24.845968 + : BOSSGAMING||pb-IF4hVUccIQ==|| joined server -2023-06-01 16:50:22.061073 + : Goldest||pb-IF5dUGglAw==|| joined server -2023-06-01 16:50:53.181595 + : NoNameB3075676||pb-JiNJARBZVkVJXVxGFEZZVFNKEUBdQFJH|| joined server -2023-06-01 16:51:16.271216 + : SolventAut||pb-IF4pU1MJIw==|| joined server -2023-06-01 16:52:30.546462 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-01 16:58:18.443585 + : Selfles166||pb-IF4KVVQgPw==|| joined server -2023-06-01 16:59:07.638304 + : DOLLAR||pb-IF5UUxheIg==|| joined server -2023-06-01 17:03:40.002917 + : Observa500||pb-IF4gUGNdUg==|| joined server -2023-06-01 17:05:36.534616 + : Innermo299||pb-IF4UUGUpMg==|| joined server -2023-06-01 17:06:06.640555 + : UneasyThe2||pb-IF4OUBY-HA==|| joined server -2023-06-01 17:06:13.668816 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-01 17:06:38.756635 + : MAXTURN778||pb-IF4uVUwnAQ==|| joined server -2023-06-01 17:10:15.606605 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-06-01 17:13:51.634280 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 17:14:40.812032 + : Abishekvj0||pb-IF4AVVcAIA==|| joined server -2023-06-01 17:19:30.043863 + : Android60355853||pb-IF5UUxgjIA==|| joined server -2023-06-01 17:22:19.695377 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-01 17:23:51.046628 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-01 17:27:04.004425 + : Android64840495||pb-IF4qUBkYDg==|| joined server -2023-06-01 17:27:35.125217 + : FoolishMar||pb-IF4MUk0CEg==|| joined server -2023-06-01 17:31:04.001649 + : jashangodp||pb-IF4yUGYGAw==|| joined server -2023-06-01 17:31:20.053024 + : Hardwor262||pb-IF4DUGkyNQ==|| joined server -2023-06-01 17:31:43.128999 + : Android64840495||pb-IF4qUBkYDg==|| joined server -2023-06-01 17:35:43.962979 + : ColumnarMy||pb-IF4nUGY8Ug==|| joined server -2023-06-01 17:41:57.539383 + : MrSilver||pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG|| joined server -2023-06-01 17:44:33.064175 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-01 17:44:59.158716 + : VISHUUU||pb-IF5cVXEyAA==|| joined server -2023-06-01 17:45:34.309932 + : ClearCusto||pb-IF4NUxFfEg==|| joined server -2023-06-01 17:46:40.553727 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-01 17:48:35.371255 + : ClearCusto||pb-IF4NUxFfEg==|| joined server -2023-06-01 17:48:47.407163 + : Cinnamon||pb-IF4rV3cFEg==|| joined server -2023-06-01 17:51:38.006869 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-01 17:51:52.050027 + : Android63294581||pb-IF4BU0EsIg==|| joined server -2023-06-01 17:52:15.136528 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-01 17:52:47.282769 + : Android63294581||pb-IF4BU0EsIg==|| joined server -2023-06-01 17:56:56.243529 + : Munky||pb-IF4FUGdaPw==|| joined server -2023-06-01 17:59:34.845833 + : harshal||pb-IF4vU0MENg==|| joined server -2023-06-01 17:59:43.884346 + : anaanand57||pb-IF5UVWEBPw==|| joined server -2023-06-01 18:04:15.024738 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-01 18:05:53.383995 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-01 18:06:02.417452 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-01 18:12:57.980885 + : CivicWork6||pb-IF4OU1IqUA==|| joined server -2023-06-01 18:13:17.058430 + : CivicWork6||pb-IF4OU1IqUA==|| joined server -2023-06-01 18:14:55.452137 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-01 18:15:46.641628 + : StockyFram||pb-IF4WUGczMQ==|| joined server -2023-06-01 18:18:34.254235 + : Happy26||pb-IF4mVU0oUw==|| joined server -2023-06-01 18:27:18.587367 + : knigth2454||pb-IF5QUngkKg==|| joined server -2023-06-01 18:27:59.774224 + : Faiyaz3535||pb-IF4cUnYoJw==|| joined server -2023-06-01 18:27:59.774692 + : Player disconnected, reached max players per IP address || pb-IF5QUngkKg== -2023-06-01 18:28:13.805230 + : Android62371853||pb-IF4OU3E4NA==|| joined server -2023-06-01 18:28:23.838795 + : Android62371853||pb-IF4OU3E4NA==|| joined server -2023-06-01 18:28:28.860818 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 18:31:08.413389 + : violent1||pb-IF4lUxMSHw==|| joined server -2023-06-01 18:32:56.824296 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-01 18:37:14.428755 + : ClearCusto||pb-IF4NUxFfEg==|| joined server -2023-06-01 18:40:42.708450 + : BurlyBron2||pb-IF4PU2Y6VQ==|| joined server -2023-06-01 18:41:06.794654 + : Omiii15||pb-IF4LU0wKIw==|| joined server -2023-06-01 18:41:44.930765 + : Android64954149||pb-IF4HUGMPHQ==|| joined server -2023-06-01 18:42:27.079539 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-01 18:44:21.506708 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-01 18:46:28.874075 + : Warrior27||pb-IF4sAGcj|| joined server -2023-06-01 18:49:07.758531 + : gurunaray2||pb-IF4IU28qPA==|| joined server -2023-06-01 18:56:28.111884 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 19:02:55.571287 + : paramveerm||pb-IF4rU2NcKQ==|| joined server -2023-06-01 19:03:55.777827 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-01 19:04:11.841920 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 19:04:42.952868 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2023-06-01 19:06:05.555880 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2023-06-01 19:06:36.978516 + : ForkedDraw||pb-IF4WVUkRLw==|| joined server -2023-06-01 19:07:50.229999 + : Rosewood||pb-IF4TUXMJ|| joined server -2023-06-01 19:08:31.403619 + : FloralPre3||pb-IF4oUlE_Vg==|| joined server -2023-06-01 19:13:43.487659 + : Omiii15||pb-IF4LU0wKIw==|| joined server -2023-06-01 19:13:46.503740 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-01 19:15:40.226506 + : StockyFram||pb-IF4WUGczMQ==|| joined server -2023-06-01 19:15:55.315673 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-01 19:16:09.360781 + : gurunaray2||pb-IF4IU28qPA==|| joined server -2023-06-01 19:20:05.193149 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-01 19:20:20.250513 + : SingingTac||pb-IF49I04z|| joined server -2023-06-01 19:20:34.286694 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-01 19:21:31.515208 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-01 19:21:32.520256 + : WhatsApp||pb-IF4IV04ZKw==|| joined server -2023-06-01 19:22:43.804382 + : DoubleExor||pb-IF4jU1NTNQ==|| joined server -2023-06-01 19:23:37.006786 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-01 19:23:58.099232 + : Lucklesspe||pb-IF4jU2gAEg==|| joined server -2023-06-01 19:24:32.224515 + : CLUSTERDUD||pb-IF4AVRkFCQ==|| joined server -2023-06-01 19:27:00.730624 + : Submerge53||pb-IF4gV1gyDw==|| joined server -2023-06-01 19:28:34.103405 + : RipeBear48||pb-IF5UUGoPAA==|| joined server -2023-06-01 19:29:38.333439 + : ArduinoPi1||pb-IF5WU2EINA==|| joined server -2023-06-01 19:29:43.353423 + : Android45360388||pb-IF4uVRA_UA==|| joined server -2023-06-01 19:31:11.685459 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-01 19:35:25.167145 + : theif2023||pb-IF4vUGksXA==|| joined server -2023-06-01 19:36:09.324334 + : dogee||pb-IF4lUxMSHw==|| joined server -2023-06-01 19:36:09.325348 + : Player disconnected, reached max players per IP address || pb-IF4VU3laVA== -2023-06-01 19:38:51.935638 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-01 19:39:49.146799 + : Submerge53||pb-IF4gV1gyDw==|| joined server -2023-06-01 19:43:22.507563 + : Noticea285||pb-IF4DUGUuVg==|| joined server -2023-06-01 19:45:08.877107 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-01 19:47:08.273827 + : viru199554||pb-IF4VU3EjBg==|| joined server -2023-06-01 19:48:49.276599 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-01 19:53:54.395430 + : Experie282||pb-IF4CUBQFJA==|| joined server -2023-06-01 19:54:03.429198 + : Gosportdel||pb-IF4tNxUh|| joined server -2023-06-01 19:54:49.673222 + : AceticDose||pb-IF4LU00BBw==|| joined server -2023-06-01 19:56:24.026032 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-01 19:57:45.328957 + : Aikuros||pb-IF49VFQlPA==|| joined server -2023-06-01 19:58:24.564453 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-01 19:59:22.228282 + : AceticDose||pb-IF4LU00BBw==|| joined server -2023-06-01 20:01:11.666390 + : Android64929969||pb-IF4XUGMiVQ==|| joined server -2023-06-01 20:01:22.707327 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-01 20:01:39.774150 + : UpbeatCeme||pb-IF4SUmwlVA==|| joined server -2023-06-01 20:04:01.282911 + : GoodlySavi||pb-IF40UBISLQ==|| joined server -2023-06-01 20:04:28.375976 + : SingingTac||pb-IF49I04z|| joined server -2023-06-01 20:05:03.486790 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-01 20:07:07.664957 + : shyam13460||pb-IF4KUGkkBg==|| joined server -2023-06-01 20:09:54.422890 + : Hemdjrimix||pb-IF4KU0YOUw==|| joined server -2023-06-01 20:11:52.211558 + : GoodlySavi||pb-IF40UBISLQ==|| joined server -2023-06-01 20:11:52.212266 + : Android51368484||pb-IF4rVUUjMg==|| joined server -2023-06-01 20:11:53.218865 + : Excelle514||pb-IF4KUklYNg==|| joined server -2023-06-01 20:11:53.219232 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-01 20:12:20.303666 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2023-06-01 20:13:15.528217 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-01 20:17:08.342617 + : Hackneye37||pb-IF4dU1IOKQ==|| joined server -2023-06-01 20:18:38.655050 + : COMMANDER5||pb-IF5VUksPFw==|| joined server -2023-06-01 20:19:57.914535 + : Luxurio552||pb-IF4JUkMNKw==|| joined server -2023-06-01 20:20:20.995240 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2023-06-01 20:22:03.334801 + : Matchle158||pb-IF4JUBEGVw==|| joined server -2023-06-01 20:22:16.375503 + : Warrior27||pb-IF4sAGcj|| joined server -2023-06-01 20:22:19.394031 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2023-06-01 20:23:37.748019 + : Android51368484||pb-IF4rVUUjMg==|| joined server -2023-06-01 20:24:12.860634 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-06-01 20:25:36.183160 + : RoastInfus||pb-IF4rVUoqVA==|| joined server -2023-06-01 20:26:15.313117 + : NoNameB2525719||pb-IF4vUkRaEg==|| joined server -2023-06-01 20:26:24.351961 + : footballfi||pb-IF4dVUwMKQ==|| joined server -2023-06-01 20:30:44.253633 + : PlusPredec||pb-IF4uU0YhHA==|| joined server -2023-06-01 20:30:49.271485 + : tooworst||pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA|| joined server -2023-06-01 20:31:54.496088 + : Aikuros||pb-IF49VFQlPA==|| joined server -2023-06-01 20:32:56.744406 + : BB||pb-IF5QU1EMXA==|| joined server -2023-06-01 20:35:24.264875 + : Gauravfauz||pb-IF5WU0cpKA==|| joined server -2023-06-01 20:36:04.381622 + : MinusDimen||pb-IF4rUGkiNw==|| joined server -2023-06-01 20:36:31.475172 + : TwoBrevity||pb-IF4zUGQEMg==|| joined server -2023-06-01 20:37:56.754239 + : AdeptVigil||pb-IF4qUGkkCw==|| joined server -2023-06-01 20:43:58.955551 + : Android65120586||pb-IF4XUGhSXQ==|| joined server -2023-06-01 20:44:14.021169 + : BB||pb-IF5QU1EMXA==|| joined server -2023-06-01 20:51:01.661370 + : Warrior27||pb-IF4sAGcj|| joined server -2023-06-01 20:53:17.316570 + : SSundee||pb-IF4sUGMeVA==|| joined server -2023-06-01 20:57:51.317352 + : dogee||pb-IF4lUxMSHw==|| joined server -2023-06-01 20:58:19.455560 + : BrinyLunat||pb-IF4LUGYKPw==|| joined server -2023-06-01 21:01:39.217372 + : PC605729||pb-IF49U0QJDw==|| joined server -2023-06-01 21:03:21.577897 + : Wanderi750||pb-IF48UnhcVw==|| joined server -2023-06-01 21:04:10.757113 + : Thorfinn0||pb-IF4OU2QjMQ==|| joined server -2023-06-01 21:05:01.925273 + : Thorfinn0||pb-IF4OU2QjMQ==|| joined server -2023-06-01 21:05:23.014792 + : Viren1325||pb-IF4qU04jUw==|| joined server -2023-06-01 21:06:17.216524 + : Goldest||pb-IF5dUGglAw==|| joined server -2023-06-01 21:07:23.519264 + : viru199554||pb-IF4VU3EjBg==|| joined server -2023-06-01 21:09:40.094568 + : Goldest||pb-IF5dUGglAw==|| joined server -2023-06-01 21:10:52.374573 + : Sidcool171||pb-IF42UhQqXA==|| joined server -2023-06-01 21:13:18.024747 + : PortableT8||pb-IF49UBEhJA==|| joined server -2023-06-01 21:16:42.888265 + : Goldest||pb-IF5dUGglAw==|| joined server -2023-06-01 21:22:27.261870 + : NoNameB3338320||pb-IF5SUGYeMw==|| joined server -2023-06-01 21:23:28.490455 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-01 21:23:42.538115 + : Harhsalgho||pb-IF41VWJcLA==|| joined server -2023-06-01 21:29:23.795737 + : masterayaa||pb-IF4tU08MFQ==|| joined server -2023-06-01 21:29:45.872383 + : Harhsalgho||pb-IF41VWJcLA==|| joined server -2023-06-01 21:29:48.885622 + : Android64201985||pb-IF4XU1UBAg==|| joined server -2023-06-01 21:32:45.550802 + : Android65117705||pb-IF5SUGkxUQ==|| joined server -2023-06-01 21:32:55.584395 + : OpposingB3||pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB|| joined server -2023-06-01 21:32:57.593012 + : TUJABAAP00||pb-IF4TUxEoKg==|| joined server -2023-06-01 21:33:05.634992 + : NoNameB3338320||pb-IF5SUGYeMw==|| joined server -2023-06-01 21:33:19.684504 + : PortableT8||pb-IF49UBEhJA==|| joined server -2023-06-01 21:36:36.371315 + : BuffBeef14||pb-IF4-UxNTNA==|| joined server -2023-06-01 21:38:14.746151 + : gurunaray2||pb-IF4IU28qPA==|| joined server -2023-06-01 21:39:54.124685 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-01 21:41:34.473128 + : vivekpate2||pb-IF4LU0QODA==|| joined server -2023-06-01 21:42:35.841457 + : Akram||pb-IF4qUlNfEQ==|| joined server -2023-06-01 21:42:36.848047 + : yubai9965||pb-IF4JU0oMKQ==|| joined server -2023-06-01 21:42:36.849024 + : Player disconnected, reached max players per IP address || pb-IF4qUlNfEQ== -2023-06-01 21:42:47.890860 + : VerdantCir||pb-IF4AVVAIUg==|| joined server -2023-06-01 21:44:34.620565 + : devildiana||pb-IF4mVXQvBA==|| joined server -2023-06-01 21:44:53.695107 + : UneasyThe2||pb-IF4OUBY-HA==|| joined server -2023-06-01 21:45:49.912557 + : FoolishMar||pb-IF4MUk0CEg==|| joined server -2023-06-01 21:46:24.054392 + : FoolishMar||pb-IF4MUk0CEg==|| joined server -2023-06-01 21:46:45.120909 + : VerdantCir||pb-IF4AVVAIUg==|| joined server -2023-06-01 21:47:35.295006 + : Omiii15||pb-IF4LU0wKIw==|| joined server -2023-06-01 21:48:23.489047 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-01 21:49:13.841841 + : FoolishMar||pb-IF4MUk0CEg==|| joined server -2023-06-01 21:49:26.889978 + : FoolishMar||pb-IF4MUk0CEg==|| joined server -2023-06-01 21:52:18.560102 + : PMMODI||pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL|| joined server -2023-06-01 21:53:25.808690 + : Unbreaka80||pb-IF5WU1QJFA==|| joined server -2023-06-01 21:57:05.603111 + : Unbreaka80||pb-IF5WU1QJFA==|| joined server -2023-06-01 21:57:16.632248 + : LeoDanishS||pb-LV4FBEJZARZDVAtARUYDAl0WFw==|| joined server -2023-06-01 21:57:34.677149 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2023-06-01 21:58:17.828185 + : Rishigame2||pb-IF4gU0hYMA==|| joined server -2023-06-01 21:58:59.949968 + : dpvaghasiy||pb-IF40PkMh|| joined server -2023-06-01 22:02:49.780825 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2023-06-01 22:06:40.718429 + : HistoricLo||pb-IF5WU0oEVA==|| joined server -2023-06-01 22:06:58.764153 + : HistoricLo||pb-IF5WU0oEVA==|| joined server -2023-06-01 22:07:07.791002 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-01 22:07:15.812920 + : HistoricLo||pb-IF5WU0oEVA==|| joined server -2023-06-01 22:07:42.912300 + : Rocksol541||pb-IF4HUkwY|| joined server -2023-06-01 22:09:12.256199 + : subha1290||pb-IF4gUksyMQ==|| joined server -2023-06-01 22:10:27.559127 + : BouncyLaw2||pb-IF40UGEgBw==|| joined server -2023-06-01 22:12:12.916559 + : Unbreaka80||pb-IF5WU1QJFA==|| joined server -2023-06-01 22:13:48.233554 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-01 22:14:04.276539 + : Unbreaka80||pb-IF5WU1QJFA==|| joined server -2023-06-01 22:16:59.933431 + : theblackda||pb-IF4jUnQzVA==|| joined server -2023-06-01 22:17:08.966727 + : KPR005||pb-IF5VU2cmHA==|| joined server -2023-06-01 22:18:29.323652 + : dpvaghasiy||pb-IF40PkMh|| joined server -2023-06-01 22:18:32.334619 + : Behavior60||pb-IF4nVG0IXQ==|| joined server -2023-06-01 22:19:16.479915 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2023-06-01 22:20:05.625741 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-01 22:22:29.092227 + : inom1712||pb-IF4FD1c8|| joined server -2023-06-01 22:25:18.782893 + : Aikuros||pb-IF49VFQlPA==|| joined server -2023-06-01 22:28:02.478965 + : Android60400527||pb-IF4hUxMGUQ==|| joined server -2023-06-01 22:28:35.664708 + : BB||pb-IF5QU1EMXA==|| joined server -2023-06-01 22:36:04.076623 + : subha1290||pb-IF4gUksyMQ==|| joined server -2023-06-01 22:37:13.327050 + : GreyCadet2||pb-IF41VEhZEw==|| joined server -2023-06-01 22:40:20.414828 + : GenuineI13||pb-IF4WUGQyPA==|| joined server -2023-06-01 22:40:22.420296 + : tooworst||pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA|| joined server -2023-06-01 22:42:04.770355 + : viru199554||pb-IF4VU3EjBg==|| joined server -2023-06-01 22:44:09.416913 + : GenuineI13||pb-IF4WUGQyPA==|| joined server -2023-06-01 22:49:29.589569 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-01 22:52:51.455537 + : demoniojho||pb-IF4LU1gBKA==|| joined server -2023-06-01 22:54:11.705577 + : NoNameB3075676||pb-JiNJARBZVkVJXVxGFEZZVFNKEUBdQFJH|| joined server -2023-06-01 22:56:21.156916 + : SouthEa427||pb-IF4OUGU5LA==|| joined server -2023-06-01 22:57:00.292412 + : WilyWhip63||pb-IF4VUGlSXA==|| joined server -2023-06-01 22:57:01.295482 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-01 23:01:34.322108 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-01 23:03:27.713980 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2023-06-01 23:09:20.535992 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-01 23:10:31.891481 + : Vivaciou93||pb-IF4oU1MvPw==|| joined server -2023-06-01 23:12:45.372630 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-01 23:15:41.172046 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-01 23:16:21.316707 + : SlowestPa8||pb-IF5cUloqXQ==|| joined server -2023-06-01 23:16:29.347903 + : EliteSage2||pb-IF4HVHpcFQ==|| joined server -2023-06-01 23:16:36.370434 + : BurlyBron2||pb-IF4PU2Y6VQ==|| joined server -2023-06-01 23:21:21.823354 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-01 23:21:59.951017 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-01 23:22:30.079666 + : Ghost0001||pb-IF4vVRUFVA==|| joined server -2023-06-01 23:22:40.115834 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-01 23:25:11.671499 + : SteadierSl||pb-IF4iU285Vg==|| joined server -2023-06-01 23:25:57.828368 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-01 23:29:53.718242 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-01 23:33:17.485075 + : Unhealt327||pb-IF4SUGUPFw==|| joined server -2023-06-01 23:33:59.619224 + : lodhipro17||pb-IF4MU08lCQ==|| joined server -2023-06-01 23:34:00.621341 + : SoftCours2||pb-IF40VUtbLw==|| joined server -2023-06-01 23:41:10.989270 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-01 23:42:54.703176 + : NoNameD3078665||pb-IF4gUGIyAQ==|| joined server -2023-06-01 23:45:52.351454 + : AmberGlee7||pb-IF4KUm0NMg==|| joined server -2023-06-01 23:49:29.229550 + : FancyPa647||pb-IF4RV2pfIg==|| joined server -2023-06-01 23:49:33.237339 + : Compone291||pb-IF4rUxU7Cg==|| joined server -2023-06-01 23:53:38.158972 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-01 23:54:38.374873 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-01 23:57:01.250670 + : OkayPainti||pb-IF4QU0IbNg==|| joined server -2023-06-02 00:00:06.892836 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 00:02:23.338667 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 00:03:50.528362 + : OnwardScop||pb-IF4JUGEhIg==|| joined server -2023-06-02 00:07:21.271557 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 00:08:02.436388 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-02 00:10:46.036348 + : Chiragdhil||pb-IF4xUnQNVA==|| joined server -2023-06-02 00:12:39.428679 + : vijayvj206||pb-JiNJARFbVUtDWFlIFE9UUFFGF0JWQFhD|| joined server -2023-06-02 00:15:45.198862 + : Avoidab320||pb-IF4IUGQ_JA==|| joined server -2023-06-02 00:22:19.125784 + : OnwardScop||pb-IF4JUGEhIg==|| joined server -2023-06-02 00:23:29.428333 + : theanonym2||pb-JiNJARBeV0BIXVdCFUVZUldDFEZeRVFK|| joined server -2023-06-02 00:23:33.452389 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2023-06-02 00:24:32.334410 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2023-06-02 00:25:47.597445 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2023-06-02 00:30:06.740514 + : OnwardScop||pb-IF4JUGEhIg==|| joined server -2023-06-02 00:30:55.388338 + : Android53848512||pb-IF4AUhEHAA==|| joined server -2023-06-02 00:34:44.436529 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-02 00:42:52.632531 + : MOHDINSHAL||pb-IF4OUmwZFg==|| joined server -2023-06-02 00:47:59.298641 + : Wisedust||pb-IF5QUBZcDA==|| joined server -2023-06-02 00:53:13.398598 + : VenousTorm||pb-IF4HUGEHDg==|| joined server -2023-06-02 00:56:47.624481 + : Aikuros||pb-IF49VFQlPA==|| joined server -2023-06-02 00:57:43.806024 + : demoniojho||pb-IF4LU1gBKA==|| joined server -2023-06-02 00:58:17.931028 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-02 00:59:32.183351 + : Happy26||pb-IF4mVU0oUw==|| joined server -2023-06-02 01:04:31.219236 + : StoneDemig||pb-IF5cPGsk|| joined server -2023-06-02 01:08:47.570702 + : VenousTorm||pb-IF4HUGEHDg==|| joined server -2023-06-02 01:11:39.313438 + : mansoorman||pb-IF4WU2ctKA==|| joined server -2023-06-02 01:14:25.277545 + : demoniojho||pb-IF4LU1gBKA==|| joined server -2023-06-02 01:14:47.365216 + : rengpi||pb-IF41UkxTNg==|| joined server -2023-06-02 01:25:16.499569 + : Player disconnected, reached max players per device || None -2023-06-02 01:29:33.433366 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2023-06-02 04:28:35.926836 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 04:49:46.844032 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 05:09:37.478287 + : Sagittari9||pb-IF4AUxAAJA==|| joined server -2023-06-02 05:10:42.704645 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 05:31:53.650542 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 05:35:02.340830 + : PoeticBra6||pb-IF4TUGMsUg==|| joined server -2023-06-02 06:35:42.800384 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 07:38:28.546659 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 07:55:48.514259 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2023-06-02 08:10:27.885607 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-02 08:16:01.704520 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-02 08:26:29.178136 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-02 08:36:46.442744 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-02 08:39:04.936983 + : BurlyBron2||pb-IF4PU2Y6VQ==|| joined server -2023-06-02 08:40:29.213836 + : BurlyBron2||pb-IF4PU2Y6VQ==|| joined server -2023-06-02 08:43:47.983805 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-02 08:44:21.119187 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-02 08:46:53.638525 + : Ap00||pb-IF4HKlBe|| joined server -2023-06-02 08:48:36.999663 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 08:55:13.402200 + : ASHER3X||pb-IF4VUGUCVw==|| joined server -2023-06-02 09:02:01.933106 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 09:03:53.397540 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-02 09:10:51.949824 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 09:22:45.698739 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 09:34:02.261278 + : SWAYRAV||pb-IF4GVXItMw==|| joined server -2023-06-02 09:45:15.893569 + : Android65177688||pb-IF4jUGkeBg==|| joined server -2023-06-02 09:49:38.856364 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 09:54:03.857433 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-02 10:17:50.332024 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-02 10:23:39.708296 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 10:36:54.512978 + : Android52676999||pb-IF5RVVMMIw==|| joined server -2023-06-02 10:42:40.685999 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 10:43:27.832798 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 10:43:58.954266 + : Ghost0001||pb-IF4vVRUFVA==|| joined server -2023-06-02 10:44:17.022620 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 10:45:23.274542 + : Thorfinn0||pb-IF4OU2QjMQ==|| joined server -2023-06-02 10:49:03.070408 + : PortableT8||pb-IF49UBEhJA==|| joined server -2023-06-02 10:52:26.948689 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 10:52:34.971261 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 10:55:58.795398 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-02 10:56:30.883290 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-02 10:56:32.885690 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 10:57:08.056560 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 11:00:34.865286 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 11:00:53.931878 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-02 11:02:46.338943 + : MrSilver||pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG|| joined server -2023-06-02 11:04:46.796510 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 11:09:27.904379 + : dangerdev2||pb-IF4mVGUuKQ==|| joined server -2023-06-02 11:10:29.128856 + : TyphoidGra||pb-IF4LU1RdUg==|| joined server -2023-06-02 11:13:52.857542 + : K717||pb-IF40U1InIQ==|| joined server -2023-06-02 11:15:04.132408 + : Goldest||pb-IF5dUGglAw==|| joined server -2023-06-02 11:16:37.450649 + : Incongr137||pb-IF43U04tFg==|| joined server -2023-06-02 11:24:44.377260 + : Devilheart||pb-IF4qUGk_PA==|| joined server -2023-06-02 11:29:52.610284 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 11:34:27.594201 + : HypnoticA4||pb-IF4TV3RbDA==|| joined server -2023-06-02 11:35:26.766183 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 11:35:31.790674 + : GoodlySavi||pb-IF40UBISLQ==|| joined server -2023-06-02 11:36:34.066422 + : GoodlySavi||pb-IF40UBISLQ==|| joined server -2023-06-02 11:37:51.355337 + : Noticea285||pb-IF4DUGUuVg==|| joined server -2023-06-02 11:38:21.483390 + : Thyshb||pb-JiNJVxBYVkNGWl1IEERVUlBAE0ZYR1dA|| joined server -2023-06-02 11:40:08.843491 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-02 11:40:22.894415 + : Yoyo2410||pb-IF4vU1A9EA==|| joined server -2023-06-02 11:40:51.002641 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-02 11:41:19.106335 + : SmArTyBOYY||pb-IF4sU2JSFA==|| joined server -2023-06-02 11:41:48.202866 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 11:42:17.296958 + : Ghost0001||pb-IF4vVRUFVA==|| joined server -2023-06-02 11:43:00.438042 + : SmArTyBOYY||pb-IF4sU2JSFA==|| joined server -2023-06-02 11:45:10.909819 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 11:45:18.933170 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-02 11:46:17.144874 + : Practic316||pb-IF4RVVggMQ==|| joined server -2023-06-02 11:47:24.396250 + : Baljeet||pb-IF5TUxFfMA==|| joined server -2023-06-02 11:47:49.494784 + : Ghost0001||pb-IF4vVRUFVA==|| joined server -2023-06-02 11:50:04.023780 + : Supervis35||pb-IF4QUkwbKw==|| joined server -2023-06-02 11:52:13.530689 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-02 11:53:31.865854 + : Ghost0001||pb-IF4vVRUFVA==|| joined server -2023-06-02 11:54:07.007271 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-02 11:54:59.183279 + : mansoorman||pb-IF4WU2ctKA==|| joined server -2023-06-02 11:55:08.203174 + : iBombsquad||pb-IF4mVGZaCw==|| joined server -2023-06-02 11:57:13.625204 + : Thorfinn0||pb-IF4OU2QjMQ==|| joined server -2023-06-02 11:57:26.681540 + : Hackneye37||pb-IF4dU1IOKQ==|| joined server -2023-06-02 11:59:42.247379 + : Agzx2244||pb-IF4PV24yPA==|| joined server -2023-06-02 12:00:04.327381 + : Hackneye37||pb-IF4dU1IOKQ==|| joined server -2023-06-02 12:01:15.590086 + : Thorfinn0||pb-IF4OU2QjMQ==|| joined server -2023-06-02 12:04:16.258627 + : ShyRemuner||pb-IF4zV1U4Bw==|| joined server -2023-06-02 12:04:44.389205 + : ShyRemuner||pb-IF4zV1U4Bw==|| joined server -2023-06-02 12:06:03.663591 + : Thorfinn0||pb-IF4OU2QjMQ==|| joined server -2023-06-02 12:12:12.123708 + : Android50140634||pb-IF4tVVIRPQ==|| joined server -2023-06-02 12:13:04.337202 + : JoyousAdmi||pb-IF4JUloHJA==|| joined server -2023-06-02 12:13:20.393744 + : BEASTPB11||pb-IF4KVVM7Dg==|| joined server -2023-06-02 12:17:21.324243 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 12:17:37.386095 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-02 12:21:00.132498 + : AerialMark||pb-IF5XUkoGDw==|| joined server -2023-06-02 12:27:32.966626 + : Saurabhtha||pb-IF4hVHg7CA==|| joined server -2023-06-02 12:32:53.296611 + : Android65135188||pb-IF5VUGo7FA==|| joined server -2023-06-02 12:33:06.463099 + : GoldAquar2||pb-JiNJARFaXUZJVV5CE05RXFJLF0laT1ZB|| joined server -2023-06-02 12:39:31.879559 + : WindedFarc||pb-IF4PUnhdAw==|| joined server -2023-06-02 12:40:05.014800 + : AerialMark||pb-IF5XUkoGDw==|| joined server -2023-06-02 12:40:31.111349 + : AerialMark||pb-IF5XUkoGDw==|| joined server -2023-06-02 12:46:36.452497 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 12:51:24.539307 + : AerialMark||pb-IF5XUkoGDw==|| joined server -2023-06-02 12:51:30.569879 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-02 12:52:23.770382 + : MindfulRe3||pb-IF4QUlcOEw==|| joined server -2023-06-02 12:54:39.217012 + : MindfulRe3||pb-IF4QUlcOEw==|| joined server -2023-06-02 12:54:55.349818 + : OnlineCou2||pb-IF4mUGgTEA==|| joined server -2023-06-02 12:55:18.428003 + : MindfulRe3||pb-IF4QUlcOEw==|| joined server -2023-06-02 12:55:42.499165 + : VividMysti||pb-IF4MUBMHKA==|| joined server -2023-06-02 12:57:29.854894 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-02 12:59:14.182385 + : HoarseFibe||pb-IF4WVW4jHA==|| joined server -2023-06-02 13:00:05.445880 + : Android65135188||pb-IF5VUGo7FA==|| joined server -2023-06-02 13:00:25.516653 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 13:01:34.753301 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 13:02:40.995018 + : NoName71928f||pb-IF4eV1IeDw==|| joined server -2023-06-02 13:03:48.294978 + : r4ndomhob0||pb-IF4VUBIzMg==|| joined server -2023-06-02 13:11:15.337674 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 13:11:25.369450 + : Znab||pb-IF4tUGMBCg==|| joined server -2023-06-02 13:11:53.468129 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-02 13:12:55.946067 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 13:13:24.318080 + : theonlyjay||pb-IF4CUGJeEw==|| joined server -2023-06-02 13:17:07.472620 + : Android52649422||pb-IF4vVVACVg==|| joined server -2023-06-02 13:19:57.288846 + : SaurabhPau||pb-IF4tVGsbKw==|| joined server -2023-06-02 13:20:14.337308 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 13:23:46.293778 + : subha1290||pb-IF4gUksyMQ==|| joined server -2023-06-02 13:24:19.418176 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-02 13:25:34.736843 + : NoNameD2439961||pb-IF4-Um4_Lw==|| joined server -2023-06-02 13:26:00.808616 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-06-02 13:30:15.773506 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2023-06-02 13:32:48.346540 + : subha1290||pb-IF4gUksyMQ==|| joined server -2023-06-02 13:37:05.329324 + : Mevil14y||pb-IF4CUGUhIw==|| joined server -2023-06-02 13:37:06.336138 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 13:37:13.356627 + : TherockJK1||pb-IF4NVxAZDg==|| joined server -2023-06-02 13:37:23.389910 + : ImmortalxS||pb-IF4hUBU_HQ==|| joined server -2023-06-02 13:42:19.922938 + : Luckybhai||pb-IF4nUnBdNg==|| joined server -2023-06-02 13:43:58.434702 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 13:44:07.476845 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 13:44:50.595691 + : Android64289705||pb-IF4FU1daUA==|| joined server -2023-06-02 13:46:00.828285 + : Toilsom125||pb-IF4pUGZYMg==|| joined server -2023-06-02 13:47:14.092156 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-02 13:48:01.254161 + : Superhu383||pb-IF4XUGkYCQ==|| joined server -2023-06-02 13:50:06.686652 + : MrSilver||pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG|| joined server -2023-06-02 13:53:07.785567 + : BLACKSPID4||pb-IF4yV20uUQ==|| joined server -2023-06-02 13:53:52.962255 + : RowdyAviAb||pb-IF4nUGcsDg==|| joined server -2023-06-02 13:54:36.113026 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-02 13:55:07.230618 + : Android61577322||pb-IF4UU2k7FQ==|| joined server -2023-06-02 13:59:56.448970 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-02 14:01:48.936819 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 14:03:27.293358 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-02 14:04:06.434440 + : Android58579325||pb-IF42UksTJA==|| joined server -2023-06-02 14:04:07.441075 + : HypnoticA4||pb-IF4TV3RbDA==|| joined server -2023-06-02 14:04:20.481304 + : Android61599520||pb-IF4PUlFTKg==|| joined server -2023-06-02 14:06:00.857518 + : Astronomyl||pb-IF4rUGkGXA==|| joined server -2023-06-02 14:06:10.889398 + : SingingTac||pb-IF49I04z|| joined server -2023-06-02 14:06:13.902385 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 14:06:24.949797 + : MrH1206||pb-IF4HUnkMPA==|| joined server -2023-06-02 14:06:57.066267 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-02 14:07:13.131669 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-02 14:08:10.327228 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-02 14:08:13.333355 + : Goldest||pb-IF5dUGglAw==|| joined server -2023-06-02 14:08:22.366161 + : Eggless||pb-IF4JUBcsAQ==|| joined server -2023-06-02 14:08:48.448331 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-02 14:11:04.949715 + : HypnoticA4||pb-IF4TV3RbDA==|| joined server -2023-06-02 14:14:27.687202 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-02 14:14:51.769088 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-02 14:16:37.117276 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-02 14:20:09.961433 + : CrushedWol||pb-IF4DV2ItCQ==|| joined server -2023-06-02 14:22:14.406105 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-02 14:22:33.456719 + : Android64391560||pb-IF4BU1k4Bg==|| joined server -2023-06-02 14:23:41.699185 + : Android64289705||pb-IF4FU1daUA==|| joined server -2023-06-02 14:25:27.182493 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-02 14:25:50.253206 + : Android64391560||pb-IF4BU1k4Bg==|| joined server -2023-06-02 14:26:00.329897 + : Android64391560||pb-IF4BU1k4Bg==|| joined server -2023-06-02 14:26:06.353676 + : MrSilver||pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG|| joined server -2023-06-02 14:27:22.858063 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-02 14:28:42.138274 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-02 14:30:02.430295 + : NasalTelle||pb-IF5QU04oEw==|| joined server -2023-06-02 14:30:38.553442 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-02 14:31:55.848141 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-02 14:35:43.825577 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-02 14:38:38.582280 + : SingingTac||pb-IF49I04z|| joined server -2023-06-02 14:38:52.633456 + : PortableT8||pb-IF49UBEhJA==|| joined server -2023-06-02 14:43:14.570316 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-02 14:43:54.697370 + : DeepakRaj2||pb-IF5SUGs7MQ==|| joined server -2023-06-02 14:44:42.844706 + : LoftyLemmi||pb-IF4IU04PCw==|| joined server -2023-06-02 14:47:10.591924 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-06-02 14:48:04.815301 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 14:48:15.860050 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-02 14:51:35.950893 + : theonlyjay||pb-IF4CUGJeEw==|| joined server -2023-06-02 14:51:42.972582 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-02 14:55:33.870096 + : BLAZEXGAMI||pb-IF4hUBddUA==|| joined server -2023-06-02 14:58:02.438436 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 14:59:44.847211 + : CrushedWol||pb-IF4DV2ItCQ==|| joined server -2023-06-02 15:01:04.169860 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-06-02 15:06:56.232215 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-02 15:08:00.507958 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-02 15:09:57.991871 + : Dishones16||pb-IF4PUhUoIA==|| joined server -2023-06-02 15:11:00.210661 + : Android61599520||pb-IF4PUlFTKg==|| joined server -2023-06-02 15:11:08.251565 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-02 15:11:36.371917 + : insanekil3||pb-JiNJARFaVUNCVF9DF0JTV1VGGEJbRVBD|| joined server -2023-06-02 15:16:18.480153 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-02 15:16:31.516761 + : WhatsApp||pb-IF4IV04ZKw==|| joined server -2023-06-02 15:16:40.552661 + : PoliticPa2||pb-IF4-UxkjPQ==|| joined server -2023-06-02 15:16:44.566800 + : MEETBHAVS2||pb-IF4mVXcRDw==|| joined server -2023-06-02 15:16:44.567702 + : Player disconnected, reached max players per IP address || pb-IF4-UxkjPQ== -2023-06-02 15:17:17.681725 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-02 15:17:20.695853 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-02 15:17:59.091815 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-02 15:18:47.292224 + : quicksilv7||pb-IF5RU2oJUA==|| joined server -2023-06-02 15:20:07.571929 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2023-06-02 15:20:47.132041 + : viru199554||pb-IF4VU3EjBg==|| joined server -2023-06-02 15:24:52.601067 + : Egocent107||pb-IF5RU1lfAQ==|| joined server -2023-06-02 15:27:22.556622 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-02 15:30:06.401126 + : footballfi||pb-IF4dVUwMKQ==|| joined server -2023-06-02 15:33:08.399330 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-02 15:33:46.531635 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-02 15:34:27.676672 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-02 15:35:28.009290 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-02 15:36:15.891785 + : KindestBoo||pb-IF4sUGYjUw==|| joined server -2023-06-02 15:38:59.476976 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-02 15:43:15.376166 + : PDPVARUN||pb-IF4MU2QALQ==|| joined server -2023-06-02 15:46:03.001597 + : itzADARSH0||pb-IF5dUGYuHw==|| joined server -2023-06-02 15:54:11.507645 + : LiveGuise3||pb-IF4wUGccFA==|| joined server -2023-06-02 15:54:23.554131 + : ReadableD9||pb-IF5cVRYTCQ==|| joined server -2023-06-02 15:56:19.015804 + : ReadableD9||pb-IF5cVRYTCQ==|| joined server -2023-06-02 15:57:18.287880 + : Android64621502||pb-IF48UBQeHw==|| joined server -2023-06-02 15:59:23.095852 + : LiveGuise3||pb-IF4wUGccFA==|| joined server -2023-06-02 16:01:57.952253 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2023-06-02 16:02:07.988116 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-02 16:04:56.621228 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-02 16:08:37.438206 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-02 16:10:18.845591 + : PortlyStil||pb-IF40UGUbAw==|| joined server -2023-06-02 16:10:25.867100 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-02 16:10:47.929780 + : CaptivePa5||pb-IF5SUGskDA==|| joined server -2023-06-02 16:12:33.337688 + : NoNameB3867219||pb-IF4WUGkJMg==|| joined server -2023-06-02 16:16:18.341744 + : ClearCusto||pb-IF4NUxFfEg==|| joined server -2023-06-02 16:24:57.248555 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-02 16:27:35.842818 + : sisikosisi||pb-IF48UGJYXQ==|| joined server -2023-06-02 16:28:03.919041 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-02 16:30:44.893872 + : ClearCusto||pb-IF4NUxFfEg==|| joined server -2023-06-02 16:42:24.569802 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 16:44:30.054124 + : Traditi220||pb-IF4LUGQ5Fw==|| joined server -2023-06-02 16:46:14.496209 + : GroaningGl||pb-IF4-Uk4mEA==|| joined server -2023-06-02 16:48:04.970984 + : Thakkudus||pb-JiNJARFdXUdGW1pEE0JZV1JCEUVdQVdA|| joined server -2023-06-02 16:48:26.050890 + : Thakkudus||pb-JiNJARFdXUdGW1pEE0JZV1JCEUVdQVdA|| joined server -2023-06-02 16:48:45.118121 + : Noticea285||pb-IF4DUGUuVg==|| joined server -2023-06-02 16:48:57.150191 + : Noticea285||pb-IF4DUGUuVg==|| joined server -2023-06-02 16:48:58.149274 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-02 16:51:18.651656 + : Android61577322||pb-IF4UU2k7FQ==|| joined server -2023-06-02 16:54:24.376900 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2023-06-02 16:54:46.477400 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-02 16:59:31.608374 + : kaushikp00||pb-IF4TUlA9HA==|| joined server -2023-06-02 17:03:38.956919 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 17:05:23.345215 + : GroaningGl||pb-IF4-Uk4mEA==|| joined server -2023-06-02 17:05:32.378700 + : FuriousPhy||pb-IF4uUk4vMg==|| joined server -2023-06-02 17:11:08.273065 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-02 17:11:08.273381 + : GroaningGl||pb-IF4-Uk4mEA==|| joined server -2023-06-02 17:11:08.273566 + : FuriousPhy||pb-IF4uUk4vMg==|| joined server -2023-06-02 17:12:43.605814 + : Disconn242||pb-IF4cUGgNVg==|| joined server -2023-06-02 17:12:46.618565 + : martinop31||pb-IF4wVWssBg==|| joined server -2023-06-02 17:12:50.637920 + : DHMN123||pb-IF4qVEkNLQ==|| joined server -2023-06-02 17:12:52.644501 + : KT9880||pb-JiNJARBSUkNEX11DGU5RUVFFFEFbT1dF|| joined server -2023-06-02 17:12:52.644982 + : Player disconnected, reached max players per IP address || pb-IF4cUGgNVg== -2023-06-02 17:14:12.927334 + : Percept236||pb-IF4gU1g4HQ==|| joined server -2023-06-02 17:15:23.160329 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-02 17:16:15.351500 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-02 17:17:26.577589 + : EternalPar||pb-IF5XVBEdUg==|| joined server -2023-06-02 17:17:59.724852 + : Harmles193||pb-IF4GUGgEUQ==|| joined server -2023-06-02 17:21:27.457771 + : Mirzaclegs||pb-IF4AUxYpIw==|| joined server -2023-06-02 17:28:22.034765 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-02 17:29:32.337917 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2023-06-02 17:59:15.059464 + : Balajiblaz||pb-IF4TV2w6Bw==|| joined server -2023-06-02 18:00:22.312470 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-02 18:03:07.911068 + : GaneshV22||pb-IF4jUnMIDg==|| joined server -2023-06-02 18:03:36.004189 + : Android54986389||pb-IF4dUmISIg==|| joined server -2023-06-02 18:04:01.102427 + : Aikuros||pb-IF49VFQlPA==|| joined server -2023-06-02 18:06:35.687101 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 18:08:53.194591 + : Circums159||pb-IF4FUBEACg==|| joined server -2023-06-02 18:11:59.874271 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 18:16:26.946452 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 18:19:09.520885 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-02 18:23:39.573565 + : DrabLap53||pb-IF4zUBc8UQ==|| joined server -2023-06-02 18:24:33.800002 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-06-02 18:25:04.008056 + : SoleShirt3||pb-IF42UncsJw==|| joined server -2023-06-02 18:26:57.424138 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-02 18:27:49.647604 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 18:35:01.319536 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-02 18:35:07.345868 + : BackwardB2||pb-IF4XVUZfFA==|| joined server -2023-06-02 18:39:05.211962 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-02 18:40:14.456146 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 18:42:31.954218 + : AbundantBi||pb-IF4WU0ItKg==|| joined server -2023-06-02 18:46:38.912776 + : Unwonte139||pb-IF4XUGYaFQ==|| joined server -2023-06-02 18:46:39.913782 + : Znab||pb-IF4tUGMBCg==|| joined server -2023-06-02 18:47:08.040715 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 18:48:48.475158 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 18:51:23.075918 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-02 18:53:59.643133 + : Android51559140||pb-IF4yVVEzDw==|| joined server -2023-06-02 18:54:54.851450 + : HypnoticA4||pb-IF4TV3RbDA==|| joined server -2023-06-02 18:57:16.430157 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 18:59:08.831762 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-02 19:01:44.385782 + : CautiousP6||pb-IF5VUmMAKg==|| joined server -2023-06-02 19:08:24.013099 + : ScrawnyBuf||pb-IF4AUBEpCQ==|| joined server -2023-06-02 19:08:41.082063 + : DeviantSum||pb-IF4wUxkNHA==|| joined server -2023-06-02 19:09:25.216501 + : Znab||pb-IF4tUGMBCg==|| joined server -2023-06-02 19:15:03.406333 + : gurunaray2||pb-IF4IU28qPA==|| joined server -2023-06-02 19:22:38.124142 + : Balajiblaz||pb-IF4TV2w6Bw==|| joined server -2023-06-02 19:23:40.408095 + : Rectang286||pb-IF4DUGk6Iw==|| joined server -2023-06-02 19:24:25.560891 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 19:28:59.748459 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 19:30:48.200656 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 19:30:54.222777 + : Rectang286||pb-IF4DUGk6Iw==|| joined server -2023-06-02 19:31:25.341385 + : Rectang286||pb-IF4DUGk6Iw==|| joined server -2023-06-02 19:31:54.430735 + : mrpainless||pb-IF4PIFQ9|| joined server -2023-06-02 19:34:02.896681 + : Android65000346||pb-IF4TUGQ5Ng==|| joined server -2023-06-02 19:34:04.902685 + : gurunaray2||pb-IF4IU28qPA==|| joined server -2023-06-02 19:34:38.118297 + : HypnoticA4||pb-IF4TV3RbDA==|| joined server -2023-06-02 19:34:39.119445 + : mrpainless||pb-IF4PIFQ9|| joined server -2023-06-02 19:36:15.507897 + : xsbf09||pb-IF4KUGkvEg==|| joined server -2023-06-02 19:36:31.580865 + : Balajiblaz||pb-IF4TV2w6Bw==|| joined server -2023-06-02 19:37:38.840579 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-02 19:38:10.942364 + : PC605822||pb-IF4HU0VcCA==|| joined server -2023-06-02 19:39:28.253839 + : MPF||pb-IF4rLkwp|| joined server -2023-06-02 19:40:38.476896 + : mrpainless||pb-IF4PIFQ9|| joined server -2023-06-02 19:43:07.031277 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-02 19:43:37.159432 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-06-02 19:43:43.175802 + : FoolishMar||pb-IF4MUk0CEg==|| joined server -2023-06-02 19:44:05.266355 + : GoodlySavi||pb-IF40UBISLQ==|| joined server -2023-06-02 19:46:58.390645 + : prasanthar||pb-JiNJARFbXERIVVlDF0NQVlVEGEFcQ1VA|| joined server -2023-06-02 19:47:23.460672 + : Balajiblaz||pb-IF4TV2w6Bw==|| joined server -2023-06-02 19:49:36.918515 + : Pratts1312||pb-IF4iUmkICg==|| joined server -2023-06-02 19:51:45.499913 + : PC605729||pb-IF49U0QJDw==|| joined server -2023-06-02 19:52:53.732554 + : Znab||pb-IF4tUGMBCg==|| joined server -2023-06-02 19:53:00.757559 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-02 19:54:32.165627 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-06-02 19:56:00.474060 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-02 19:56:16.515441 + : mkComplica||pb-IF5QUGsCIA==|| joined server -2023-06-02 19:56:35.585298 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 19:57:10.708490 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 20:00:13.356879 + : GoodlySavi||pb-IF40UBISLQ==|| joined server -2023-06-02 20:00:38.436224 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-02 20:04:43.421474 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 20:04:49.450255 + : TeflonSin2||pb-IF5dU2kTBg==|| joined server -2023-06-02 20:07:49.091285 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-02 20:08:55.329559 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 20:12:48.467388 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-02 20:12:59.509067 + : SilentMen2||pb-IF4CVWkpBA==|| joined server -2023-06-02 20:16:21.202419 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 20:16:25.222478 + : ViciousFon||pb-IF4TVGIONQ==|| joined server -2023-06-02 20:20:14.411394 + : TeflonSin2||pb-IF5dU2kTBg==|| joined server -2023-06-02 20:23:44.142735 + : TeflonSin2||pb-IF5dU2kTBg==|| joined server -2023-06-02 20:32:41.428131 + : MPF||pb-IF4rLkwp|| joined server -2023-06-02 20:33:35.615281 + : GoodlySavi||pb-IF40UBISLQ==|| joined server -2023-06-02 20:35:55.146500 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 20:36:16.222201 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 20:41:04.383206 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-02 20:41:05.387166 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 20:41:40.524504 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2023-06-02 20:43:25.939659 + : NoNameD3078665||pb-IF4gUGIyAQ==|| joined server -2023-06-02 20:43:42.023321 + : Prateek000||pb-IF4sUxNbNA==|| joined server -2023-06-02 20:43:46.035112 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 20:46:23.624774 + : Navestien6||pb-IF40UkQYJg==|| joined server -2023-06-02 20:46:48.804658 + : Navestien6||pb-IF40UkQYJg==|| joined server -2023-06-02 20:48:08.091098 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-02 20:50:32.626173 + : Android64935331||pb-IF5TUGQTIg==|| joined server -2023-06-02 20:50:45.685858 + : LghtingThu||pb-IF4WU1UEUw==|| joined server -2023-06-02 20:52:10.106214 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-02 20:53:06.320737 + : Android50140634||pb-IF4tVVIRPQ==|| joined server -2023-06-02 20:55:07.755761 + : AppallingU||pb-IF4gVFdbJA==|| joined server -2023-06-02 20:57:12.218665 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2023-06-02 20:59:05.640129 + : MPF||pb-IF4rLkwp|| joined server -2023-06-02 21:00:18.849333 + : LghtingThu||pb-IF4WU1UEUw==|| joined server -2023-06-02 21:00:52.966135 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 21:01:21.078075 + : masoom1980||pb-IF4cVGMHLA==|| joined server -2023-06-02 21:01:23.086910 + : Player disconnected, reached max players per IP address || pb-IF4cVGMHLA== -2023-06-02 21:01:24.093229 + : niloferkha||pb-IF4IUGVTMQ==|| joined server -2023-06-02 21:02:29.331773 + : niloferkha||pb-IF4IUGVTMQ==|| joined server -2023-06-02 21:02:37.362824 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-02 21:08:12.495087 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2023-06-02 21:12:18.425979 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-02 21:15:34.683288 + : NoName265731||pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB|| joined server -2023-06-02 21:20:23.971329 + : SpringMan2||pb-IF4jU0MyVg==|| joined server -2023-06-02 21:20:59.094805 + : Laxmankuma||pb-IF4nUBcpNA==|| joined server -2023-06-02 21:21:29.881334 + : HumdrumWil||pb-IF4RUGkfAQ==|| joined server -2023-06-02 21:21:56.999348 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-02 21:22:09.047981 + : Gosportdel||pb-IF4tNxUh|| joined server -2023-06-02 21:22:57.386150 + : Restric466||pb-IF4FUGEAMQ==|| joined server -2023-06-02 21:23:31.528413 + : Unbreaka80||pb-IF5WU1QJFA==|| joined server -2023-06-02 21:23:40.558688 + : subha1290||pb-IF4gUksyMQ==|| joined server -2023-06-02 21:25:54.174179 + : Homulilly||pb-IF4wVVk8Jg==|| joined server -2023-06-02 21:27:11.654933 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 21:27:57.813918 + : Android65090966||pb-IF4CUGdaAw==|| joined server -2023-06-02 21:28:51.961249 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 21:34:24.576630 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 21:34:24.577005 + : lodhipro17||pb-IF4MU08lCQ==|| joined server -2023-06-02 21:34:33.613046 + : UneasyThe2||pb-IF4OUBY-HA==|| joined server -2023-06-02 21:35:28.789035 + : UneasyThe2||pb-IF4OUBY-HA==|| joined server -2023-06-02 21:36:48.084273 + : Unbreaka80||pb-IF5WU1QJFA==|| joined server -2023-06-02 21:38:02.345040 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 21:44:53.907690 + : Unbreaka80||pb-IF5WU1QJFA==|| joined server -2023-06-02 21:47:45.607249 + : SpringMan2||pb-IF4jU0MyVg==|| joined server -2023-06-02 21:59:25.253225 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-02 21:59:59.382564 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-02 22:00:17.438836 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-02 22:00:48.565367 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 22:09:17.534825 + : Gamerninj7||pb-IF4WVU4cNQ==|| joined server -2023-06-02 22:10:32.852908 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-02 22:21:41.338450 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 22:22:32.533335 + : GroaningGl||pb-IF4-Uk4mEA==|| joined server -2023-06-02 22:24:54.485223 + : FuriousPhy||pb-IF4uUk4vMg==|| joined server -2023-06-02 22:27:00.946022 + : DragonGhou||pb-IF5cUkwjDA==|| joined server -2023-06-02 22:35:28.855458 + : kaushikp00||pb-IF4TUlA9HA==|| joined server -2023-06-02 22:36:49.212232 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-02 22:37:22.348831 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-02 22:38:17.684394 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 22:50:09.272352 + : spidey9589||pb-IF49U0sRBw==|| joined server -2023-06-02 22:54:49.298810 + : SSundee||pb-IF4sUGMeVA==|| joined server -2023-06-02 22:55:51.492936 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2023-06-02 22:59:23.771849 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 23:00:32.030630 + : Aikuros||pb-IF49VFQlPA==|| joined server -2023-06-02 23:03:14.658300 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-02 23:07:30.883151 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-02 23:10:10.461221 + : ImproperA6||pb-IF4eUmc6XA==|| joined server -2023-06-02 23:11:38.819054 + : VR227839||pb-IF4oVXc_Vw==|| joined server -2023-06-02 23:17:11.081004 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-02 23:17:22.350461 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 23:19:12.769293 + : inom1712||pb-IF4FD1c8|| joined server -2023-06-02 23:26:08.367466 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 23:27:17.642750 + : NovelGrou2||pb-IF40UGIREg==|| joined server -2023-06-02 23:41:26.937327 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-02 23:43:31.710830 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 23:45:10.102542 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 23:47:28.642626 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-02 23:47:43.709557 + : Nyaa! :3||pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB|| joined server -2023-06-02 23:55:25.502168 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-02 23:55:51.586212 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-03 00:12:28.787694 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-03 00:14:59.360982 + : BLAZEXGAMI||pb-IF4hUBddUA==|| joined server -2023-06-03 00:27:25.084365 + : demoniojho||pb-IF4LU1gBKA==|| joined server -2023-06-03 00:28:05.240240 + : demoniojho||pb-IF4LU1gBKA==|| joined server -2023-06-03 00:30:59.862113 + : Android65115869||pb-IF40UGciNw==|| joined server -2023-06-03 00:38:19.365659 + : Android65115869||pb-IF40UGciNw==|| joined server -2023-06-03 00:40:01.801251 + : Android65115869||pb-IF40UGciNw==|| joined server -2023-06-03 00:42:03.236218 + : WhatsApp||pb-IF4IV04ZKw==|| joined server -2023-06-03 00:45:58.118429 + : SingingTac||pb-IF49I04z|| joined server -2023-06-03 01:03:14.730771 + : Android64719038||pb-IF4eUBdYDQ==|| joined server -2023-06-03 01:09:45.177523 + : Classica67||pb-IF41U1U9BA==|| joined server -2023-06-03 01:13:38.992533 + : Android53209611||pb-IF4PUkYeCg==|| joined server -2023-06-03 01:34:19.496449 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 01:55:03.819949 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 02:16:17.296535 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 02:34:15.094104 + : HypnoticA4||pb-IF4TV3RbDA==|| joined server -2023-06-03 02:58:54.218840 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 03:36:12.409395 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 03:40:35.411919 + : Android65115869||pb-IF40UGciNw==|| joined server -2023-06-03 04:32:33.814336 + : Android65115869||pb-IF40UGciNw==|| joined server -2023-06-03 04:33:00.910391 + : Android65115869||pb-IF40UGciNw==|| joined server -2023-06-03 04:33:09.950250 + : Android65115869||pb-IF40UGciNw==|| joined server -2023-06-03 05:03:57.872253 + : Android64210421||pb-IF4GU1UdNQ==|| joined server -2023-06-03 05:14:26.074259 + : Particu262||pb-IF49U0c-XA==|| joined server -2023-06-03 05:22:58.049518 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 05:44:33.905598 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 06:05:15.544533 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 06:26:17.191764 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 06:47:55.249033 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 07:03:24.806175 + : Android65115869||pb-IF40UGciNw==|| joined server -2023-06-03 07:03:47.893665 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-03 07:04:43.065336 + : BackwardB2||pb-IF4XVUZfFA==|| joined server -2023-06-03 07:08:41.084907 + : Android65115869||pb-IF40UGciNw==|| joined server -2023-06-03 07:10:55.613084 + : Colloqui29||pb-IF41U0kfIw==|| joined server -2023-06-03 07:11:08.651235 + : Realiza260||pb-IF4VUGEOPQ==|| joined server -2023-06-03 07:12:10.880100 + : Android65115869||pb-IF40UGciNw==|| joined server -2023-06-03 07:17:41.058202 + : Android65115869||pb-IF40UGciNw==|| joined server -2023-06-03 07:20:53.765250 + : Android65115869||pb-IF40UGciNw==|| joined server -2023-06-03 07:25:56.877356 + : BurlyBron2||pb-IF4PU2Y6VQ==|| joined server -2023-06-03 07:26:50.076626 + : Voraciou15||pb-IF4uU28fVQ==|| joined server -2023-06-03 07:27:27.221755 + : BurlyBron2||pb-IF4PU2Y6VQ==|| joined server -2023-06-03 07:30:22.883434 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 07:34:49.936017 + : Android65115869||pb-IF40UGciNw==|| joined server -2023-06-03 07:41:53.430969 + : Android65115869||pb-IF40UGciNw==|| joined server -2023-06-03 07:44:27.028217 + : fredrickpl||pb-IF5cUxIdPw==|| joined server -2023-06-03 07:46:18.436311 + : Realiza260||pb-IF4VUGEOPQ==|| joined server -2023-06-03 07:49:43.191435 + : bBoyy1||pb-IF5XU0YhKg==|| joined server -2023-06-03 07:59:04.083329 + : bBoyy1||pb-IF5XU0YhKg==|| joined server -2023-06-03 08:12:42.135814 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 08:33:26.414856 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 08:42:17.307466 + : Abby||pb-IF49UnYRLQ==|| joined server -2023-06-03 08:45:24.917193 + : sahniharsh||pb-IF4LV20GMw==|| joined server -2023-06-03 08:47:27.348098 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-03 08:47:46.426022 + : Android64048679||pb-IF4zU1EhAQ==|| joined server -2023-06-03 08:48:15.524509 + : FancyPa647||pb-IF4RV2pfIg==|| joined server -2023-06-03 09:15:36.282679 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 09:25:28.446820 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2023-06-03 09:26:18.631274 + : Chiragdhil||pb-IF4xUnQNVA==|| joined server -2023-06-03 09:33:11.174903 + : PosteriorU||pb-IF4uU2hTLQ==|| joined server -2023-06-03 09:36:16.834504 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 09:51:27.372788 + : FinalHair1||pb-IF4TU0o8Hw==|| joined server -2023-06-03 09:59:04.125348 + : Alvis017||pb-IF4gUBNSMg==|| joined server -2023-06-03 10:04:41.398148 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-03 10:16:53.138857 + : Chiragdhil||pb-IF4xUnQNVA==|| joined server -2023-06-03 10:18:08.414445 + : Matchle158||pb-IF4JUBEGVw==|| joined server -2023-06-03 10:20:06.846419 + : Accredi385||pb-IF5RUBkiKA==|| joined server -2023-06-03 10:20:48.020366 + : Accredi385||pb-IF5RUBkiKA==|| joined server -2023-06-03 10:23:54.754182 + : Accredi385||pb-IF5RUBkiKA==|| joined server -2023-06-03 10:24:35.891975 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-03 10:25:34.085798 + : GoldDwarf7||pb-IF4nUGgyFA==|| joined server -2023-06-03 10:26:52.374119 + : RelatedCr3||pb-IF43UGY9Eg==|| joined server -2023-06-03 10:27:01.404964 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-03 10:28:57.783327 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-03 10:29:26.873492 + : avigupta34||pb-IF4MUBVeMQ==|| joined server -2023-06-03 10:30:30.134832 + : Invisible6||pb-IF4MU085LA==|| joined server -2023-06-03 10:30:31.140437 + : avigupta34||pb-IF4MUBVeMQ==|| joined server -2023-06-03 10:32:42.666500 + : ManifestPe||pb-IF4AUBgdFg==|| joined server -2023-06-03 10:34:22.001119 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-03 10:48:26.140667 + : Sistakala||pb-IF5TVEsdEA==|| joined server -2023-06-03 10:50:56.665638 + : tooworst||pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA|| joined server -2023-06-03 10:52:05.953288 + : PROGAM1NGL||pb-IF4qUGcgVA==|| joined server -2023-06-03 10:55:29.716204 + : JasminePro||pb-IF4lUBEuJg==|| joined server -2023-06-03 10:56:11.870197 + : bBoyy1||pb-IF5XU0YhKg==|| joined server -2023-06-03 10:57:58.226011 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-03 11:01:20.985195 + : PC605822||pb-IF4HU0VcCA==|| joined server -2023-06-03 11:01:58.123066 + : IcyCodger9||pb-IF4HU2pTMQ==|| joined server -2023-06-03 11:02:06.145908 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-03 11:03:07.388001 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-06-03 11:05:59.065126 + : Bachi||pb-IF4OU1IZVg==|| joined server -2023-06-03 11:06:08.091502 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-06-03 11:06:35.197963 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-03 11:06:47.238586 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-06-03 11:08:17.566240 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-03 11:08:52.688241 + : StealthyH9||pb-IF4JUBICXA==|| joined server -2023-06-03 11:11:17.232344 + : Android65128653||pb-IF4AUGhaVQ==|| joined server -2023-06-03 11:11:32.288711 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-03 11:12:50.561393 + : pujan12346||pb-IF4jV1U5Aw==|| joined server -2023-06-03 11:16:40.341285 + : RiddenVill||pb-IF4cVXlaDQ==|| joined server -2023-06-03 11:18:14.654330 + : Accredi385||pb-IF5RUBkiKA==|| joined server -2023-06-03 11:20:51.239974 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-03 11:22:01.537937 + : HELL502LOR||pb-IF4JVFA6LQ==|| joined server -2023-06-03 11:22:03.546243 + : BuffBeef14||pb-IF4-UxNTNA==|| joined server -2023-06-03 11:22:09.571413 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-03 11:22:49.714799 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-03 11:23:11.797774 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-03 11:24:16.055936 + : HornedMast||pb-IF4jUlUhMQ==|| joined server -2023-06-03 11:25:09.224510 + : ProCaprico||pb-IF43UkRZVQ==|| joined server -2023-06-03 11:32:08.830043 + : TejasPati3||pb-IF4yU0QRUg==|| joined server -2023-06-03 11:32:46.974471 + : SharpKnowI||pb-IF4JUBkxKw==|| joined server -2023-06-03 11:34:17.275297 + : Balajiblaz||pb-IF4TV2w6Bw==|| joined server -2023-06-03 11:36:17.706182 + : ProCaprico||pb-IF43UkRZVQ==|| joined server -2023-06-03 11:41:50.889392 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-03 11:41:57.925007 + : tooworst||pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA|| joined server -2023-06-03 11:47:08.069104 + : ProCaprico||pb-IF43UkRZVQ==|| joined server -2023-06-03 11:47:16.137872 + : ReddishDer||pb-IF4nUGgiMg==|| joined server -2023-06-03 11:49:31.612009 + : Danvendra2||pb-IF5RUGYFPA==|| joined server -2023-06-03 11:56:25.153929 + : niloferkha||pb-IF4IUGVTMQ==|| joined server -2023-06-03 11:56:26.161380 + : Player disconnected, reached max players per IP address || pb-IF4IUGVTMQ== -2023-06-03 11:56:27.166764 + : Veterin296||pb-IF4BUGYpXQ==|| joined server -2023-06-03 11:56:35.204012 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-03 12:00:34.127736 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-03 12:01:35.320605 + : ksproducti||pb-IF48UGY4Bw==|| joined server -2023-06-03 12:05:05.087227 + : SensoryRe9||pb-IF4qU0cFIw==|| joined server -2023-06-03 12:05:15.127094 + : Android60128258||pb-IF4QUxEhPw==|| joined server -2023-06-03 12:06:49.476322 + : Agzx2244||pb-IF4PV24yPA==|| joined server -2023-06-03 12:08:06.754065 + : pujan12346||pb-IF4jV1U5Aw==|| joined server -2023-06-03 12:08:44.880750 + : Android63294581||pb-IF4BU0EsIg==|| joined server -2023-06-03 12:09:03.957743 + : Android63294581||pb-IF4BU0EsIg==|| joined server -2023-06-03 12:09:53.136523 + : pujan12346||pb-IF4jV1U5Aw==|| joined server -2023-06-03 12:18:55.277288 + : Sporadi142||pb-IF4jUGk-Mg==|| joined server -2023-06-03 12:19:47.481628 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-03 12:20:27.659102 + : cskdhonifa||pb-IF4QUk1SUg==|| joined server -2023-06-03 12:22:12.093519 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-03 12:22:27.139027 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-03 12:23:39.368901 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-03 12:25:26.715854 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-03 12:26:01.833098 + : Kaejo575||pb-IF4uU3VdIg==|| joined server -2023-06-03 12:26:46.971334 + : Akshatshah||pb-JiNJARFdXUBIW1tHEEJVXFJEEUFdQlVE|| joined server -2023-06-03 12:27:02.033116 + : Rewardi117||pb-IF4hU1c7BA==|| joined server -2023-06-03 12:28:19.271160 + : rodanrjn||pb-IF4rUGcENA==|| joined server -2023-06-03 12:29:58.650232 + : EastVentil||pb-IF4PUxM7Mg==|| joined server -2023-06-03 12:31:32.985940 + : itzADARSH0||pb-IF5dUGYuHw==|| joined server -2023-06-03 12:32:11.134030 + : HIMANSHUS9||pb-IF4DUBlZUg==|| joined server -2023-06-03 12:34:06.552722 + : Goldest||pb-IF5dUGglAw==|| joined server -2023-06-03 12:38:36.488028 + : Sporadi142||pb-IF4jUGk-Mg==|| joined server -2023-06-03 12:39:57.789280 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-03 12:43:25.601777 + : Sporadi142||pb-IF4jUGk-Mg==|| joined server -2023-06-03 12:49:27.993658 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-03 12:52:22.712332 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-03 13:03:55.413914 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-03 13:04:13.484389 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-03 13:05:59.950536 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-03 13:06:41.083183 + : SocialRanc||pb-IF4XVFkNDg==|| joined server -2023-06-03 13:10:29.959106 + : ExcitedPar||pb-IF49UxEpJg==|| joined server -2023-06-03 13:14:40.952924 + : ARYANN||pb-IF4DUGkyHA==|| joined server -2023-06-03 13:20:23.239563 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-03 13:27:46.036407 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2023-06-03 13:31:23.902428 + : Avengersg2||pb-IF4DVVcZMg==|| joined server -2023-06-03 13:35:36.853528 + : Veterin296||pb-IF4BUGYpXQ==|| joined server -2023-06-03 13:37:04.191313 + : DarkAppren||pb-IF4NUGgJMw==|| joined server -2023-06-03 13:40:25.001273 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-03 13:46:35.373225 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-03 13:46:39.384284 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-03 13:50:12.316923 + : Mirzaclegs||pb-IF4AUxYpIw==|| joined server -2023-06-03 13:54:48.374284 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-03 13:56:19.725898 + : Veterin296||pb-IF4BUGYpXQ==|| joined server -2023-06-03 13:56:23.737989 + : Player disconnected, reached max players per IP address || pb-IF4BUGYpXQ== -2023-06-03 13:56:24.739626 + : niloferkha||pb-IF4IUGVTMQ==|| joined server -2023-06-03 14:02:47.771104 + : Veterin296||pb-IF4BUGYpXQ==|| joined server -2023-06-03 14:02:47.771491 + : Player disconnected, reached max players per IP address || pb-IF4IUGVTMQ== -2023-06-03 14:27:10.360153 + : Thirtee357||pb-IF4HUGUDPw==|| joined server -2023-06-03 14:29:17.842231 + : FlyingGuac||pb-IF48Xmgz|| joined server -2023-06-03 14:33:45.969772 + : Persiste29||pb-IF4xVVcoUw==|| joined server -2023-06-03 14:42:43.028729 + : Android64140305||pb-IF4eU1MHNQ==|| joined server -2023-06-03 14:42:50.056000 + : Android64140305||pb-IF4eU1MHNQ==|| joined server -2023-06-03 15:02:43.637175 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 15:09:24.131117 + : OFFENSIVE1||pb-IF4lU3cFFw==|| joined server -2023-06-03 15:14:44.345438 + : GenuineI13||pb-IF4WUGQyPA==|| joined server -2023-06-03 15:15:56.632747 + : NoNameA3760866||pb-IF4iVUUMPQ==|| joined server -2023-06-03 15:16:29.723881 + : THEDARKPOL||pb-IF4nVW0_LQ==|| joined server -2023-06-03 15:16:36.749751 + : THEDARKPOL||pb-IF4nVW0_LQ==|| joined server -2023-06-03 15:16:37.753864 + : NoNameA3760866||pb-IF4iVUUMPQ==|| joined server -2023-06-03 15:16:42.767461 + : TinyProfit||pb-IF41UBQPXA==|| joined server -2023-06-03 15:18:24.162792 + : CoastalToa||pb-IF4BVWIzDg==|| joined server -2023-06-03 15:20:39.656384 + : StockyFram||pb-IF4WUGczMQ==|| joined server -2023-06-03 15:22:54.152914 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2023-06-03 15:26:26.931963 + : FoundingTi||pb-IF4MUGRfDQ==|| joined server -2023-06-03 15:29:05.529865 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-03 15:29:54.709773 + : StockyFram||pb-IF4WUGczMQ==|| joined server -2023-06-03 15:31:14.023413 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-03 15:34:51.820776 + : FIGHTERMAN||pb-IF40VXMlBA==|| joined server -2023-06-03 15:35:55.027763 + : FIGHTERMAN||pb-IF40VXMlBA==|| joined server -2023-06-03 15:41:21.188360 + : NoNameD3604049||pb-IF4TU0UlXQ==|| joined server -2023-06-03 15:44:23.902045 + : GenuineI13||pb-IF4WUGQyPA==|| joined server -2023-06-03 15:45:54.259344 + : Accredi385||pb-IF5RUBkiKA==|| joined server -2023-06-03 15:47:10.542720 + : GenuineI13||pb-IF4WUGQyPA==|| joined server -2023-06-03 15:49:05.958196 + : Android49832847||pb-IF5XVXddBw==|| joined server -2023-06-03 15:54:01.065416 + : Android64840495||pb-IF4qUBkYDg==|| joined server -2023-06-03 15:57:07.779043 + : Non6772u||pb-IF4IU1c6Ug==|| joined server -2023-06-03 15:58:40.078922 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2023-06-03 16:01:11.660422 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-03 16:02:43.987479 + : PortableT8||pb-IF49UBEhJA==|| joined server -2023-06-03 16:03:38.202100 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2023-06-03 16:05:01.475556 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 16:06:24.784823 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-03 16:07:46.107932 + : Accredi385||pb-IF5RUBkiKA==|| joined server -2023-06-03 16:09:39.510668 + : Princel134||pb-IF42UGgDCw==|| joined server -2023-06-03 16:21:37.235308 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-03 16:22:40.465935 + : xynn||pb-IF5SUBQcKw==|| joined server -2023-06-03 16:25:36.113037 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 16:27:24.476051 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-03 16:28:17.661244 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-03 16:32:38.648327 + : Explicab96||pb-IF4jU00KPw==|| joined server -2023-06-03 16:36:40.650680 + : Tattya||pb-IF4dUGU4KQ==|| joined server -2023-06-03 16:37:08.733702 + : tooworst||pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA|| joined server -2023-06-03 16:39:59.390656 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-03 16:51:42.036209 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-03 17:03:21.793931 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-03 17:09:25.284919 + : AbundantBi||pb-IF4WU0ItKg==|| joined server -2023-06-03 17:09:55.398659 + : Android61349985||pb-IF4QU2ZeAw==|| joined server -2023-06-03 17:10:25.505966 + : MPF||pb-IF4rLkwp|| joined server -2023-06-03 17:16:35.933500 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-03 17:19:29.537038 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-03 17:21:28.029876 + : InsaneAgen||pb-IF4pU1NSUg==|| joined server -2023-06-03 17:22:43.338284 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-03 17:22:51.375040 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-03 17:28:38.688766 + : MPF||pb-IF4rLkwp|| joined server -2023-06-03 17:33:26.810830 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-03 17:34:47.125522 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-03 17:35:31.284245 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 17:37:42.835752 + : Gosportdel||pb-IF4tNxUh|| joined server -2023-06-03 17:38:54.095173 + : MPF||pb-IF4rLkwp|| joined server -2023-06-03 17:41:44.682305 + : VirajBoY31||pb-IF40U1dYUg==|| joined server -2023-06-03 17:42:57.933370 + : MPF||pb-IF4rLkwp|| joined server -2023-06-03 17:43:16.012050 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2023-06-03 17:48:47.279259 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-03 17:49:35.476780 + : Android52676999||pb-IF5RVVMMIw==|| joined server -2023-06-03 17:54:14.583417 + : Accredi385||pb-IF5RUBkiKA==|| joined server -2023-06-03 17:56:09.050373 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 17:58:14.547319 + : Irreduc159||pb-IF4uUBVTEA==|| joined server -2023-06-03 17:58:53.745307 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-06-03 17:59:18.855690 + : Android64884598||pb-IF48UGIvXQ==|| joined server -2023-06-03 18:04:39.093264 + : Android51952192||pb-IF4VVUk-CA==|| joined server -2023-06-03 18:07:55.907998 + : ItsDNA003||pb-IF5QUGtfEg==|| joined server -2023-06-03 18:08:41.127682 + : Android51952192||pb-IF4VVUk-CA==|| joined server -2023-06-03 18:12:44.175934 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-03 18:13:35.387992 + : Thakkudus||pb-JiNJARFdXUdGW1pEE0JZV1JCEUVdQVdA|| joined server -2023-06-03 18:16:29.077767 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 18:17:26.292381 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2023-06-03 18:17:28.298450 + : ClearCusto||pb-IF4NUxFfEg==|| joined server -2023-06-03 18:24:03.837657 + : deiisyyyy||pb-IF4KUmoYFw==|| joined server -2023-06-03 18:25:31.154514 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-03 18:26:08.301622 + : ClearCusto||pb-IF4NUxFfEg==|| joined server -2023-06-03 18:34:31.148480 + : Warrior27||pb-IF4sAGcj|| joined server -2023-06-03 18:35:10.300036 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-03 18:37:27.811405 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 18:38:12.984753 + : sahniharsh||pb-IF4LV20GMw==|| joined server -2023-06-03 18:54:11.459854 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-03 19:09:43.016729 + : Android53159530||pb-IF4BVVU_BA==|| joined server -2023-06-03 19:13:40.977540 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-03 19:14:06.064224 + : Znab||pb-IF4tUGMBCg==|| joined server -2023-06-03 19:14:15.094868 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-03 19:14:57.241994 + : SingingTac||pb-IF49I04z|| joined server -2023-06-03 19:19:54.298059 + : redmo79||pb-IF41UGcPNQ==|| joined server -2023-06-03 19:20:10.349830 + : gurunaray2||pb-IF4IU28qPA==|| joined server -2023-06-03 19:31:12.979798 + : SalientPu2||pb-IF4mUGEYKQ==|| joined server -2023-06-03 19:39:18.964037 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-03 20:01:17.777589 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 20:01:25.808125 + : gurunaray2||pb-IF4IU28qPA==|| joined server -2023-06-03 20:04:13.405681 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-03 20:12:18.126340 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-03 20:12:44.205852 + : MPF||pb-IF4rLkwp|| joined server -2023-06-03 20:21:16.145745 + : BackwardB2||pb-IF4XVUZfFA==|| joined server -2023-06-03 20:22:19.375963 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 20:30:15.103682 + : Android63464104||pb-IF43U0o7Aw==|| joined server -2023-06-03 20:37:34.898489 + : MPF||pb-IF4rLkwp|| joined server -2023-06-03 20:46:23.000712 + : Digitalsar||pb-IF4DU1QhBg==|| joined server -2023-06-03 20:46:41.050567 + : Appropr296||pb-IF4hUGgzBw==|| joined server -2023-06-03 20:59:12.930738 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-03 21:00:04.152476 + : Detesta328||pb-IF43UGcgDg==|| joined server -2023-06-03 21:04:26.632397 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 21:06:02.993943 + : Unbreaka80||pb-IF5WU1QJFA==|| joined server -2023-06-03 21:10:47.099845 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-03 21:11:02.147065 + : UniqueBana||pb-IF5RJW5d|| joined server -2023-06-03 21:13:01.579473 + : Unbreaka80||pb-IF5WU1QJFA==|| joined server -2023-06-03 21:16:53.444209 + : innocentk6||pb-IF4pU2wEDg==|| joined server -2023-06-03 21:23:56.080799 + : Fourteent7||pb-IF4QUhcJVg==|| joined server -2023-06-03 21:24:59.303097 + : HydroClose||pb-IF4UUGEkPA==|| joined server -2023-06-03 21:25:13.365515 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 21:29:41.404605 + : Android58901320||pb-IF4KUk8MAQ==|| joined server -2023-06-03 21:30:03.468699 + : joythegrea||pb-IF4HVVMKEQ==|| joined server -2023-06-03 21:33:20.213563 + : Unbreaka80||pb-IF5WU1QJFA==|| joined server -2023-06-03 21:36:26.924246 + : RAEEEEEEEE||pb-IF4wBUUK|| joined server -2023-06-03 21:37:49.248856 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-03 21:43:08.573843 + : lodhipro17||pb-IF4MU08lCQ==|| joined server -2023-06-03 21:45:42.236974 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 21:46:20.400658 + : dpvaghasiy||pb-IF40PkMh|| joined server -2023-06-03 21:48:43.898444 + : RogueRadia||pb-IF48UmoZBg==|| joined server -2023-06-03 21:50:49.376779 + : GenuineI13||pb-IF4WUGQyPA==|| joined server -2023-06-03 21:51:08.454933 + : Hemdjrimix||pb-IF4KU0YOUw==|| joined server -2023-06-03 21:51:51.631216 + : Hemdjrimix||pb-IF4KU0YOUw==|| joined server -2023-06-03 21:52:12.703456 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-03 21:53:53.032557 + : Hemdjrimix||pb-IF4KU0YOUw==|| joined server -2023-06-03 21:54:10.079145 + : Hemdjrimix||pb-IF4KU0YOUw==|| joined server -2023-06-03 21:59:05.128669 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-03 22:01:47.710888 + : Znab||pb-IF4tUGMBCg==|| joined server -2023-06-03 22:07:29.978978 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 22:14:35.637704 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-03 22:16:12.939513 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-03 22:16:31.001414 + : Unbreaka80||pb-IF5WU1QJFA==|| joined server -2023-06-03 22:16:47.055770 + : Unbreaka80||pb-IF5WU1QJFA==|| joined server -2023-06-03 22:28:31.714360 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 22:30:24.101399 + : redmo79||pb-IF41UGcPNQ==|| joined server -2023-06-03 22:31:45.382799 + : NoNameC3133807||pb-IF4HUGMOLQ==|| joined server -2023-06-03 22:31:53.440120 + : inom1712||pb-IF4FD1c8|| joined server -2023-06-03 22:38:27.810317 + : Android64658055||pb-IF5SUBcsFQ==|| joined server -2023-06-03 22:38:48.896538 + : Android64658055||pb-IF5SUBcsFQ==|| joined server -2023-06-03 22:41:29.481378 + : Android64658055||pb-IF5SUBcsFQ==|| joined server -2023-06-03 22:42:24.666387 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-03 22:42:41.711991 + : javnov123||pb-IF5dUGojXQ==|| joined server -2023-06-03 22:42:41.712878 + : Player disconnected, reached max players per IP address || pb-IF4OUBAqNQ== -2023-06-03 22:47:44.915286 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-03 22:48:37.128741 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-03 22:49:03.250482 + : Player disconnected, reached max players per IP address || pb-IF4OUBAqNQ== -2023-06-03 22:49:04.257340 + : javnov123||pb-IF5dUGojXQ==|| joined server -2023-06-03 22:50:47.613432 + : DragonGhou||pb-IF5cUkwjDA==|| joined server -2023-06-03 23:07:30.599170 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-03 23:07:43.638013 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-03 23:10:09.132425 + : Petrifie71||pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC|| joined server -2023-06-03 23:10:20.168141 + : Petrifie71||pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC|| joined server -2023-06-03 23:18:04.877292 + : Nikhil18||pb-IF4vU2ISBg==|| joined server -2023-06-03 23:24:27.377309 + : SquareLor3||pb-IF4uV3omUw==|| joined server -2023-06-03 23:29:46.572995 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-03 23:36:47.139607 + : Android65115869||pb-IF40UGciNw==|| joined server -2023-06-03 23:52:24.559104 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-03 23:57:45.808953 + : Petrifie71||pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC|| joined server -2023-06-04 00:10:54.779196 + : Rewardi117||pb-IF4hU1c7BA==|| joined server -2023-06-04 00:13:08.292485 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-04 00:41:12.578351 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-04 00:53:39.511619 + : Harhsalgho||pb-IF41VWJcLA==|| joined server -2023-06-04 01:08:34.852222 + : wisnufirst||pb-IF4mVFMTHw==|| joined server -2023-06-04 01:14:26.180817 + : Android64424230||pb-IF4uU1o-Pw==|| joined server -2023-06-04 01:15:08.343785 + : DevilXGhos||pb-IF4TD1cf|| joined server -2023-06-04 01:17:20.859951 + : ZentoSama||pb-IF4NVVg4Lw==|| joined server -2023-06-04 01:58:51.491301 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-04 02:02:40.365910 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-04 02:37:50.341700 + : HypnoticA4||pb-IF4TV3RbDA==|| joined server -2023-06-04 02:44:59.917525 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-04 04:10:27.308959 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-04 04:52:31.886815 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-04 06:59:16.332840 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-04 07:08:59.483139 + : gurunaray2||pb-IF4IU28qPA==|| joined server -2023-06-04 07:28:19.673992 + : carloshrdz||pb-IF5QV00KNA==|| joined server -2023-06-04 07:48:50.177950 + : Spectra217||pb-IF5UUGslNA==|| joined server -2023-06-04 08:18:20.519973 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-04 08:23:13.646700 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-04 08:25:04.950423 + : thewhateth||pb-IF5SUGoTJw==|| joined server -2023-06-04 08:27:16.413397 + : AceBear802||pb-IF4PXkIR|| joined server -2023-06-04 08:27:44.517560 + : BackwardB2||pb-IF4XVUZfFA==|| joined server -2023-06-04 08:28:37.716808 + : BackwardB2||pb-IF4XVUZfFA==|| joined server -2023-06-04 08:28:47.747897 + : BackwardB2||pb-IF4XVUZfFA==|| joined server -2023-06-04 08:28:56.779507 + : gurunaray2||pb-IF4IU28qPA==|| joined server -2023-06-04 08:28:56.779815 + : SurrealBur||pb-IF5SUGsDMQ==|| joined server -2023-06-04 08:42:06.645128 + : HonkingAdv||pb-IF4zAUcy|| joined server -2023-06-04 08:45:25.303254 + : CookieNINJ||pb-IF4TUGJSMg==|| joined server -2023-06-04 08:45:36.438745 + : HonkingAdv||pb-IF4zAUcy|| joined server -2023-06-04 08:46:57.722512 + : Pavidude47||pb-IF4VU2c_Ig==|| joined server -2023-06-04 08:48:56.174724 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-04 08:50:15.429852 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-04 08:50:35.514332 + : AceBear802||pb-IF4PXkIR|| joined server -2023-06-04 08:54:46.450861 + : CookieNINJ||pb-IF4TUGJSMg==|| joined server -2023-06-04 08:55:30.601527 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-04 09:00:35.710519 + : CookieNINJ||pb-IF4TUGJSMg==|| joined server -2023-06-04 09:01:39.931614 + : BackwardB2||pb-IF4XVUZfFA==|| joined server -2023-06-04 09:07:37.227704 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-04 09:08:50.499224 + : Nonsens393||pb-IF4IV1YBLQ==|| joined server -2023-06-04 09:09:45.701659 + : naifrigor5||pb-IF5UU1cNUA==|| joined server -2023-06-04 09:12:31.354870 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-04 09:13:10.497027 + : Unforgiv64||pb-IF4QU1IlIA==|| joined server -2023-06-04 09:17:03.410574 + : tooworst||pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA|| joined server -2023-06-04 09:18:36.732324 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-04 09:19:21.895166 + : JauntyCens||pb-IF4qU2JZVA==|| joined server -2023-06-04 09:20:54.267866 + : BoldestLak||pb-IF4mUGg8Hw==|| joined server -2023-06-04 09:22:01.492107 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-04 09:22:55.689948 + : WeirdMonst||pb-IF4OUBJaPw==|| joined server -2023-06-04 09:33:08.960907 + : TerseMuscl||pb-IF5QU0waKw==|| joined server -2023-06-04 09:33:10.962677 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2023-06-04 09:33:40.073228 + : TerseMuscl||pb-IF5QU0waKw==|| joined server -2023-06-04 09:35:55.517920 + : BackwardB2||pb-IF4XVUZfFA==|| joined server -2023-06-04 09:36:34.679191 + : Dominat145||pb-IF4-U2IPEg==|| joined server -2023-06-04 09:37:19.846480 + : UB4LIFE||pb-IF4yVXVYIw==|| joined server -2023-06-04 09:38:07.066087 + : SomberPlun||pb-IF4uUBIvFA==|| joined server -2023-06-04 09:40:05.508634 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2023-06-04 09:40:28.611058 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-04 09:40:40.662862 + : zbAju||pb-JiNJARFcUUZBWV9DEU5SUlxFFEZbRlNG|| joined server -2023-06-04 09:41:28.838921 + : UB4LIFE||pb-IF4yVXVYIw==|| joined server -2023-06-04 09:44:54.619767 + : BakedPerso||pb-IF4tU3olKg==|| joined server -2023-06-04 09:45:11.676714 + : Android64391184||pb-IF4xUBcPAg==|| joined server -2023-06-04 09:46:04.897931 + : JauntyCens||pb-IF4qU2JZVA==|| joined server -2023-06-04 09:46:19.934116 + : BackwardB2||pb-IF4XVUZfFA==|| joined server -2023-06-04 09:47:22.151716 + : Android65100259||pb-IF4XUGcKJA==|| joined server -2023-06-04 09:51:12.980848 + : Transce200||pb-IF4UUxASAg==|| joined server -2023-06-04 09:51:15.991223 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-04 09:55:11.947884 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-04 09:55:38.060114 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-04 09:58:13.741437 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-04 09:59:38.086654 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-04 10:01:22.439985 + : VividMysti||pb-IF4MUBMHKA==|| joined server -2023-06-04 10:04:09.479175 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-04 10:07:35.229363 + : Babytani||pb-IF5VUGsSUg==|| joined server -2023-06-04 10:09:54.764814 + : ARYAN7777||pb-IF4mUGY5Cg==|| joined server -2023-06-04 10:21:38.687559 + : SomberPlun||pb-IF4uUBIvFA==|| joined server -2023-06-04 10:23:01.037661 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-04 10:24:38.431970 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-04 10:26:40.928347 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-04 10:36:28.162706 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-04 10:37:16.324521 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-04 10:37:26.350248 + : DK63963773||pb-IF4SVVEgJw==|| joined server -2023-06-04 10:46:05.495344 + : N0Mercy4Y0||pb-IF43A0ZS|| joined server -2023-06-04 10:47:00.699785 + : TopL||pb-IF4lUxMSHw==|| joined server -2023-06-04 10:48:26.961728 + : Pulove||pb-IF4XVHBdIQ==|| joined server -2023-06-04 11:00:27.631981 + : RAMYAQUEEN||pb-IF4FUGUcVQ==|| joined server -2023-06-04 11:01:00.759180 + : Pulove||pb-IF4XVHBdIQ==|| joined server -2023-06-04 11:01:03.769805 + : Pulove||pb-IF4XVHBdIQ==|| joined server -2023-06-04 11:01:17.815984 + : Android65108497||pb-IF48UGcGLQ==|| joined server -2023-06-04 11:03:31.352464 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-04 11:05:03.648840 + : Metabol369||pb-IF40Um4tUw==|| joined server -2023-06-04 11:09:41.737436 + : Thorfinn0||pb-IF4OU2QjMQ==|| joined server -2023-06-04 11:14:16.733422 + : SucculentK||pb-IF4JU24bFQ==|| joined server -2023-06-04 11:16:43.261130 + : Android53825487||pb-IF48UhEiEg==|| joined server -2023-06-04 11:18:02.533180 + : Stochasti4||pb-IF4NUmY5Nw==|| joined server -2023-06-04 11:21:01.170837 + : SSundee||pb-IF4sUGMeVA==|| joined server -2023-06-04 11:28:28.811647 + : Android62335425||pb-IF4nU3E-Jw==|| joined server -2023-06-04 11:29:30.026135 + : GoodlySavi||pb-IF40UBISLQ==|| joined server -2023-06-04 11:31:00.393129 + : gurunaray2||pb-IF4IU28qPA==|| joined server -2023-06-04 11:31:05.415009 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-04 11:33:07.903302 + : BionicShou||pb-IF5TUxhbCg==|| joined server -2023-06-04 11:33:24.968473 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-04 11:34:40.291961 + : Piitaajii||pb-IF5VP0cq|| joined server -2023-06-04 11:37:29.854077 + : TejGamerNt||pb-IF4oUxAGPQ==|| joined server -2023-06-04 11:41:25.718077 + : Abhisake69||pb-IF4hVVVeHQ==|| joined server -2023-06-04 11:41:34.742936 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-04 11:41:45.790159 + : Abhisake69||pb-IF4hVVVeHQ==|| joined server -2023-06-04 11:44:39.392241 + : Lucklesspe||pb-IF4jU2gAEg==|| joined server -2023-06-04 11:45:55.680915 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-04 11:47:20.961173 + : Explain269||pb-IF5TUGgHHQ==|| joined server -2023-06-04 11:50:45.829711 + : Egocent107||pb-IF5RU1lfAQ==|| joined server -2023-06-04 11:56:09.985200 + : SweetLaugh||pb-IF4hUGYACg==|| joined server -2023-06-04 11:57:42.347553 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-04 12:02:44.544773 + : Egocent107||pb-IF5RU1lfAQ==|| joined server -2023-06-04 12:03:08.632948 + : Egocent107||pb-IF5RU1lfAQ==|| joined server -2023-06-04 12:07:26.593468 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-04 12:07:54.663035 + : THEDRAGONH||pb-IF4dVUNTFw==|| joined server -2023-06-04 12:08:25.748665 + : Android64210421||pb-IF4GU1UdNQ==|| joined server -2023-06-04 12:11:24.483524 + : THEDRAGONH||pb-IF4dVUNTFw==|| joined server -2023-06-04 12:14:30.223210 + : Chargea256||pb-IF4IUhMeFg==|| joined server -2023-06-04 12:15:36.457695 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-04 12:18:42.118879 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-04 12:18:54.163042 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-04 12:18:54.163294 + : gurunaray2||pb-IF4IU28qPA==|| joined server -2023-06-04 12:19:44.345830 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-04 12:19:50.358297 + : MeguminBak||pb-IF4QU0gCJg==|| joined server -2023-06-04 12:22:21.874636 + : Karna||pb-IF5VUkQmXA==|| joined server -2023-06-04 12:22:34.912952 + : PottedSaga||pb-IF4wUBMOVg==|| joined server -2023-06-04 12:24:32.349758 + : Chargea256||pb-IF4IUhMeFg==|| joined server -2023-06-04 12:29:48.598960 + : Martinluth||pb-IF5WUno7PQ==|| joined server -2023-06-04 12:30:57.862657 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-04 12:31:21.930504 + : Hackneye37||pb-IF4dU1IOKQ==|| joined server -2023-06-04 12:31:56.090233 + : Android63464104||pb-IF43U0o7Aw==|| joined server -2023-06-04 12:32:32.218495 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-04 12:33:38.469827 + : Android52820777||pb-IF4PVVI4Dg==|| joined server -2023-06-04 12:34:13.717138 + : PithyAdver||pb-IF4tU2wbNg==|| joined server -2023-06-04 12:36:29.206959 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-04 12:37:20.388322 + : Balajiblaz||pb-IF4TV2w6Bw==|| joined server -2023-06-04 12:37:34.419378 + : DecisiveO3||pb-IF4qUGkgEw==|| joined server -2023-06-04 12:37:46.468504 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-04 12:38:23.585475 + : vickydivab||pb-IF4JCUFS|| joined server -2023-06-04 12:38:29.611489 + : mrpainless||pb-IF4PIFQ9|| joined server -2023-06-04 12:39:08.774374 + : Notorio207||pb-IF4IUlkMNg==|| joined server -2023-06-04 12:39:25.826981 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-04 12:40:32.040504 + : Balajiblaz||pb-IF4TV2w6Bw==|| joined server -2023-06-04 12:41:49.312530 + : Balajiblaz||pb-IF4TV2w6Bw==|| joined server -2023-06-04 12:45:48.172917 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-04 12:46:16.282113 + : Balajiblaz||pb-IF4TV2w6Bw==|| joined server -2023-06-04 12:46:44.403875 + : FloralPre3||pb-IF4oUlE_Vg==|| joined server -2023-06-04 12:50:30.239600 + : Melox||pb-IF4SUGdYCQ==|| joined server -2023-06-04 12:53:19.846628 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-04 12:53:50.973862 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-04 12:54:27.101161 + : jashangodp||pb-IF4yUGYGAw==|| joined server -2023-06-04 12:57:53.904445 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-04 12:58:45.078704 + : Discred118||pb-IF4qUBlTJg==|| joined server -2023-06-04 13:02:52.016408 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-04 13:03:47.235434 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-04 13:05:36.608361 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-04 13:05:55.670159 + : RapidMaest||pb-IF5TIRVe|| joined server -2023-06-04 13:10:10.603962 + : xTayxENo||pb-IF4CVWQGKQ==|| joined server -2023-06-04 13:12:30.112949 + : subha1290||pb-IF4gUksyMQ==|| joined server -2023-06-04 13:15:01.732914 + : subha1290||pb-IF4gUksyMQ==|| joined server -2023-06-04 13:16:39.087127 + : OcularFact||pb-IF5QUGsiIw==|| joined server -2023-06-04 13:17:38.299654 + : iINTELLIGE||pb-IF4eVFRTKQ==|| joined server -2023-06-04 13:18:53.667401 + : ClearCusto||pb-IF4NUxFfEg==|| joined server -2023-06-04 13:19:45.830368 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-04 13:21:53.252926 + : pubgGAMEIN||pb-IF42VVIgHA==|| joined server -2023-06-04 13:23:02.503468 + : SmoothyBro||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2023-06-04 13:23:07.512413 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-04 13:24:14.757047 + : CR7SIUU||pb-IF4DU0IEJg==|| joined server -2023-06-04 13:24:55.939456 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-04 13:25:03.964002 + : JAMESBOND2||pb-JiNJARBTV0JFXlxFEkRZXFRFEkVZR1RD|| joined server -2023-06-04 13:28:25.729366 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-04 13:28:39.770657 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-04 13:30:50.249626 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-04 13:40:55.414465 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-04 13:43:11.910259 + : JODLEVELGA||pb-IF4iUGE9UA==|| joined server -2023-06-04 13:43:19.948399 + : SingingTac||pb-IF49I04z|| joined server -2023-06-04 13:45:56.534665 + : WeakerRes2||pb-IF4AU0IoCA==|| joined server -2023-06-04 13:49:12.187171 + : Inexcusa31||pb-IF4FU0UkVw==|| joined server -2023-06-04 13:50:39.496665 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-04 13:51:14.615937 + : Inexcusa31||pb-IF4FU0UkVw==|| joined server -2023-06-04 13:56:01.655894 + : UneasyThe2||pb-IF4OUBY-HA==|| joined server -2023-06-04 13:57:09.905314 + : WeakerRes2||pb-IF4AU0IoCA==|| joined server -2023-06-04 13:57:59.103034 + : ArilenaThe||pb-IF4dUBkTLA==|| joined server -2023-06-04 14:00:01.588543 + : SingingTac||pb-IF49I04z|| joined server -2023-06-04 14:06:31.167028 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-04 14:06:43.192106 + : Thousand53||pb-IF4GUBc7AA==|| joined server -2023-06-04 14:09:15.703233 + : Player disconnected, reached max players per device || pb-IF4tVXQiIQ== -2023-06-04 14:09:36.778493 + : messigame8||pb-IF4RUGkREQ==|| joined server -2023-06-04 14:10:34.994030 + : THEpacemak||pb-IF4pU0syFw==|| joined server -2023-06-04 14:13:36.571981 + : Gamergirl||pb-IF4sU28eAg==|| joined server -2023-06-04 14:17:54.466412 + : Gratefu472||pb-IF43UGkpIw==|| joined server -2023-06-04 14:19:58.883849 + : gurunaray2||pb-IF4IU28qPA==|| joined server -2023-06-04 14:20:00.891688 + : CladMarsh4||pb-IF4HUGkSVw==|| joined server -2023-06-04 14:23:12.622043 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-04 14:33:06.927068 + : TDMBOSS||pb-IF49UBEzDQ==|| joined server -2023-06-04 14:33:14.965430 + : Yuthran30||pb-IF4CUmEDNQ==|| joined server -2023-06-04 14:33:32.042886 + : Player disconnected, reached max players per IP address || pb-IF4CUmEDNQ== -2023-06-04 14:33:33.046411 + : SingingTac||pb-IF49I04z|| joined server -2023-06-04 14:35:29.527263 + : Allergic70||pb-IF4VUBkoNw==|| joined server -2023-06-04 14:41:10.979297 + : Unselfi274||pb-IF49UGI9Dg==|| joined server -2023-06-04 14:42:25.279433 + : Inexcusa31||pb-IF4FU0UkVw==|| joined server -2023-06-04 14:45:05.818123 + : GenuineI13||pb-IF4WUGQyPA==|| joined server -2023-06-04 14:46:25.112571 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-04 14:49:40.904538 + : CaramelArc||pb-IF40UlUhJA==|| joined server -2023-06-04 14:51:01.190536 + : Saurabhtha||pb-IF4hVHg7CA==|| joined server -2023-06-04 14:51:23.256459 + : jishnulm10||pb-IF5SU0oKLA==|| joined server -2023-06-04 14:51:30.289181 + : jishnulm10||pb-IF5SU0oKLA==|| joined server -2023-06-04 14:52:05.445863 + : jishnulm10||pb-IF5SU0oKLA==|| joined server -2023-06-04 14:52:16.508551 + : Android51559140||pb-IF4yVVEzDw==|| joined server -2023-06-04 14:52:22.524178 + : CheeryQue3||pb-IF4UUGdTJw==|| joined server -2023-06-04 14:52:51.651724 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-04 14:53:01.690064 + : CheeryQue3||pb-IF4UUGdTJw==|| joined server -2023-06-04 14:53:45.829215 + : Android63891667||pb-IF4IU01dMQ==|| joined server -2023-06-04 14:59:11.009530 + : Embryon256||pb-IF4QUGJaPQ==|| joined server -2023-06-04 14:59:30.124417 + : AshuAmbros||pb-LV4FURgIUhBIWg4VRBQDV1IRQg==|| joined server -2023-06-04 14:59:51.275982 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-04 15:08:30.254977 + : Hackneye37||pb-IF4dU1IOKQ==|| joined server -2023-06-04 15:08:33.260210 + : Player disconnected, reached max players per IP address || pb-IF4dU1IOKQ== -2023-06-04 15:10:22.636426 + : Untrain337||pb-IF4GUGpSVg==|| joined server -2023-06-04 15:11:17.820110 + : Adityashin||pb-IF4cU20KEw==|| joined server -2023-06-04 15:11:41.922838 + : Adityashin||pb-IF4cU20KEw==|| joined server -2023-06-04 15:12:55.168389 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-04 15:13:23.263939 + : Adityashin||pb-IF4cU20KEw==|| joined server -2023-06-04 15:15:29.806772 + : Adityashin||pb-IF4cU20KEw==|| joined server -2023-06-04 15:17:33.214874 + : Adityashin||pb-IF4cU20KEw==|| joined server -2023-06-04 15:17:50.264414 + : MissingPap||pb-IF48UBgBCg==|| joined server -2023-06-04 15:18:10.339806 + : MissingPap||pb-IF48UBgBCg==|| joined server -2023-06-04 15:19:01.544784 + : Adityashin||pb-IF4cU20KEw==|| joined server -2023-06-04 15:19:34.653825 + : Reasonab55||pb-IF4yU28dPQ==|| joined server -2023-06-04 15:20:43.925967 + : Android65049704||pb-IF4lUGUCFw==|| joined server -2023-06-04 15:22:04.236369 + : Android65049704||pb-IF4lUGUCFw==|| joined server -2023-06-04 15:22:27.315987 + : Reasonab55||pb-IF4yU28dPQ==|| joined server -2023-06-04 15:23:33.518721 + : Unfores238||pb-IF4-UBlTAA==|| joined server -2023-06-04 15:23:35.523449 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-04 15:28:46.823199 + : Happyga326||pb-IF4vUGkxBw==|| joined server -2023-06-04 15:28:59.865950 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-04 15:29:45.056504 + : Android62093703||pb-IF4LU20cEw==|| joined server -2023-06-04 15:31:40.489500 + : HotDungeon||pb-IF5dMmkE|| joined server -2023-06-04 15:31:41.496505 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-04 15:32:53.813764 + : Reasonab55||pb-IF4yU28dPQ==|| joined server -2023-06-04 15:33:44.998842 + : Pronoun346||pb-IF4lUGk-Bw==|| joined server -2023-06-04 15:33:55.032132 + : Akkkkk99||pb-IF4oUGVbAQ==|| joined server -2023-06-04 15:37:46.904234 + : RANDOMIZER||pb-IF4MUlYtUQ==|| joined server -2023-06-04 15:38:29.073919 + : Untutor274||pb-IF4uUGUuCA==|| joined server -2023-06-04 15:40:00.568415 + : DeadlyWhis||pb-IF4vUxQhPw==|| joined server -2023-06-04 15:41:09.845059 + : RANDOMIZER||pb-IF4MUlYtUQ==|| joined server -2023-06-04 15:42:34.142697 + : InsideDip2||pb-IF4mUGIJIQ==|| joined server -2023-06-04 15:43:26.336264 + : RANDOMIZER||pb-IF4MUlYtUQ==|| joined server -2023-06-04 15:43:35.363814 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-04 15:43:41.381126 + : RiddenVill||pb-IF4cVXlaDQ==|| joined server -2023-06-04 15:44:01.464721 + : Bourne||pb-IF40U3M9Iw==|| joined server -2023-06-04 15:44:09.506127 + : Bourne||pb-IF40U3M9Iw==|| joined server -2023-06-04 15:44:24.549775 + : Unattac329||pb-IF48UGccBw==|| joined server -2023-06-04 15:45:20.739825 + : Bourne||pb-IF40U3M9Iw==|| joined server -2023-06-04 15:46:25.961534 + : Unattac329||pb-IF48UGccBw==|| joined server -2023-06-04 15:47:05.121507 + : FIGHTERMAN||pb-IF40VXMlBA==|| joined server -2023-06-04 15:47:44.252724 + : ZippyCrys3||pb-JiNJARBYUUpGVV5JEEVQVlVLEkRWT1dE|| joined server -2023-06-04 15:49:52.740558 + : TardyDevia||pb-IF4rU0kaUQ==|| joined server -2023-06-04 15:51:39.340442 + : Android60391438||pb-IF4mUxRdLg==|| joined server -2023-06-04 15:52:34.553770 + : DEVBRO||pb-IF5RUGInJg==|| joined server -2023-06-04 15:59:16.191814 + : CrushedFr5||pb-IF4IUBUMFg==|| joined server -2023-06-04 16:00:03.375547 + : LimitedMis||pb-IF4GU2UbPw==|| joined server -2023-06-04 16:00:33.506537 + : saachi011||pb-IF4tVFkiBg==|| joined server -2023-06-04 16:00:43.548713 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-04 16:02:54.049030 + : Excelle514||pb-IF4KUklYNg==|| joined server -2023-06-04 16:02:57.052105 + : SomberPlun||pb-IF4uUBIvFA==|| joined server -2023-06-04 16:07:05.983101 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-04 16:07:06.984590 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-04 16:14:49.736975 + : sudep||pb-IF4SUGgzAA==|| joined server -2023-06-04 16:15:23.853425 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-04 16:17:17.309578 + : Android55048734||pb-IF4LUBUREA==|| joined server -2023-06-04 16:27:36.741605 + : Thousand53||pb-IF4GUBc7AA==|| joined server -2023-06-04 16:29:48.294923 + : Goofykhan||pb-IF4zV2JYCw==|| joined server -2023-06-04 16:30:46.560437 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-04 16:30:55.578832 + : SSundee||pb-IF4sUGMeVA==|| joined server -2023-06-04 16:33:54.241008 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-04 16:34:09.285637 + : Incredi587||pb-IF4vM0Nd|| joined server -2023-06-04 16:39:23.407223 + : quicksilv7||pb-IF5RU2oJUA==|| joined server -2023-06-04 16:39:46.494658 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-04 16:41:01.821592 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-04 16:44:38.668291 + : ZoDxHeLL1||pb-IF4VVWIbDA==|| joined server -2023-06-04 16:45:04.748639 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-04 16:45:29.816421 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-04 16:47:08.177857 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-04 16:47:58.382826 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-04 16:48:00.389137 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-04 16:48:23.485842 + : GovindV755||pb-IF4jUBMiCg==|| joined server -2023-06-04 16:48:30.505954 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-04 16:48:56.606898 + : smartite9||pb-IF4sUGEMLg==|| joined server -2023-06-04 16:49:19.683833 + : HypnoticA4||pb-IF4TV3RbDA==|| joined server -2023-06-04 16:50:47.001920 + : FantaIce||pb-IF4LPkVb|| joined server -2023-06-04 16:51:05.077121 + : LimitedJoc||pb-IF4DUBdSAQ==|| joined server -2023-06-04 16:51:40.217701 + : ExultantF2||pb-IF40U08SFQ==|| joined server -2023-06-04 16:53:00.530059 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2023-06-04 16:57:20.466486 + : DEVBRO||pb-IF5RUGInJg==|| joined server -2023-06-04 16:58:17.690794 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-04 16:59:39.980436 + : Flyingmara||pb-IF5SU1ZaJg==|| joined server -2023-06-04 17:02:37.600083 + : Invisible6||pb-IF4MU085LA==|| joined server -2023-06-04 17:09:31.090566 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-04 17:10:13.245585 + : SHREYASHxO||pb-IF4lU0MtLQ==|| joined server -2023-06-04 17:17:52.011771 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-04 17:22:14.045235 + : Seafari289||pb-IF4tUGQDPQ==|| joined server -2023-06-04 17:22:25.082591 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2023-06-04 17:24:44.616007 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-04 17:25:21.735899 + : SingingTac||pb-IF49I04z|| joined server -2023-06-04 17:26:09.904853 + : Android53825487||pb-IF48UhEiEg==|| joined server -2023-06-04 17:26:39.080107 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-04 17:26:57.128044 + : Android53825487||pb-IF48UhEiEg==|| joined server -2023-06-04 17:30:00.837939 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2023-06-04 17:31:13.129027 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-04 17:31:35.214863 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2023-06-04 17:33:53.686911 + : UNIHI7890||pb-IF4lU0EgFQ==|| joined server -2023-06-04 17:39:58.951344 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-04 17:41:23.266668 + : Android53825487||pb-IF48UhEiEg==|| joined server -2023-06-04 17:42:03.434597 + : Android53825487||pb-IF48UhEiEg==|| joined server -2023-06-04 17:42:18.490379 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2023-06-04 17:47:39.749191 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2023-06-04 17:48:09.856924 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2023-06-04 17:51:59.602852 + : TUJABAAP00||pb-IF4TUxEoKg==|| joined server -2023-06-04 17:53:24.937391 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-04 17:54:06.086211 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-04 17:56:08.518109 + : Cinnamon||pb-IF4rV3cFEg==|| joined server -2023-06-04 17:57:27.789583 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-04 17:58:02.931947 + : MaximalDru||pb-IF4FU0sMKQ==|| joined server -2023-06-04 17:58:35.027522 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-04 17:59:39.284599 + : SingingTac||pb-IF49I04z|| joined server -2023-06-04 17:59:41.291986 + : Autocra162||pb-IF4xVVpePw==|| joined server -2023-06-04 17:59:41.292544 + : Player disconnected, reached max players per IP address || pb-IF49I04z -2023-06-04 17:59:51.339448 + : OutwardCal||pb-IF4TUBFSBg==|| joined server -2023-06-04 18:02:05.855615 + : sushant99g||pb-IF4AUGhcMQ==|| joined server -2023-06-04 18:02:28.935193 + : BurlyBron2||pb-IF4PU2Y6VQ==|| joined server -2023-06-04 18:02:31.947722 + : Android64084966||pb-IF4NU1EhUw==|| joined server -2023-06-04 18:02:58.032333 + : BurlyBron2||pb-IF4PU2Y6VQ==|| joined server -2023-06-04 18:03:18.109742 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-04 18:03:46.199794 + : ruchi1522||pb-IF42UGgAFg==|| joined server -2023-06-04 18:04:15.314139 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-04 18:04:47.432972 + : Cinnamon||pb-IF4rV3cFEg==|| joined server -2023-06-04 18:05:25.590275 + : Cinnamon||pb-IF4rV3cFEg==|| joined server -2023-06-04 18:05:37.612438 + : Moon63||pb-IF4gU1MdVg==|| joined server -2023-06-04 18:05:37.612801 + : Muguntha14||pb-IF4zUkwZBw==|| joined server -2023-06-04 18:07:07.954398 + : PC605822||pb-IF4HU0VcCA==|| joined server -2023-06-04 18:09:58.585819 + : PearlyColl||pb-IF4OU0UyUA==|| joined server -2023-06-04 18:09:58.586719 + : Player disconnected, reached max players per IP address || pb-IF4HU0VcCA== -2023-06-04 18:11:48.974231 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-04 18:16:50.148211 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-04 18:16:51.150863 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-04 18:19:33.768614 + : ForeignLea||pb-IF5QV0kBCg==|| joined server -2023-06-04 18:19:56.873854 + : Dragonlor2||pb-IF4dVFo7Cw==|| joined server -2023-06-04 18:20:47.038939 + : Tolerable6||pb-IF4WUkMeNQ==|| joined server -2023-06-04 18:21:11.119983 + : Laborio277||pb-IF4DUGRYKA==|| joined server -2023-06-04 18:21:18.159893 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-04 18:22:18.384242 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2023-06-04 18:23:24.623071 + : Reasonab55||pb-IF4yU28dPQ==|| joined server -2023-06-04 18:23:58.731431 + : bestgamerx||pb-IF4jVFkmLw==|| joined server -2023-06-04 18:24:35.883941 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-04 18:28:33.684530 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-04 18:29:04.790050 + : ROMANREI10||pb-IF5WUBEBFg==|| joined server -2023-06-04 18:29:18.851872 + : RegZeku77||pb-IF4UU0wiKg==|| joined server -2023-06-04 18:30:24.127894 + : Omiii15||pb-IF4LU0wKIw==|| joined server -2023-06-04 18:30:34.168034 + : Android43671493||pb-IF5QVFMCUg==|| joined server -2023-06-04 18:31:12.304903 + : Benefic168||pb-IF4sU1EeAA==|| joined server -2023-06-04 18:32:42.626579 + : PearlyColl||pb-IF4OU0UyUA==|| joined server -2023-06-04 18:33:31.792385 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-04 18:34:31.966948 + : StockyFram||pb-IF4WUGczMQ==|| joined server -2023-06-04 18:34:32.971996 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-04 18:35:17.122535 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-04 18:37:15.560500 + : Android64740868||pb-IF4vUBY9Bw==|| joined server -2023-06-04 18:38:52.903109 + : DEVBRO||pb-IF5RUGInJg==|| joined server -2023-06-04 18:39:53.172418 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-04 18:41:17.503520 + : Accredi385||pb-IF5RUBkiKA==|| joined server -2023-06-04 18:41:19.506820 + : Laborio277||pb-IF4DUGRYKA==|| joined server -2023-06-04 18:41:36.565562 + : Omiii15||pb-IF4LU0wKIw==|| joined server -2023-06-04 18:42:24.756294 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-04 18:43:32.008750 + : HypnoticA4||pb-IF4TV3RbDA==|| joined server -2023-06-04 18:45:08.382820 + : Laborio277||pb-IF4DUGRYKA==|| joined server -2023-06-04 18:46:46.755244 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2023-06-04 18:49:01.264171 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-04 18:49:14.313541 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-04 18:53:03.108930 + : Android64980432||pb-IF4nUGQlJw==|| joined server -2023-06-04 18:57:27.259772 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2023-06-04 18:58:19.463117 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-04 19:03:41.673494 + : BurlyBron2||pb-IF4PU2Y6VQ==|| joined server -2023-06-04 19:07:43.581314 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-04 19:10:35.151947 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-04 19:11:01.250185 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-04 19:18:44.119188 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-04 19:20:33.551794 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2023-06-04 19:23:45.236112 + : Android64993014||pb-IF4yUGRfNw==|| joined server -2023-06-04 19:24:28.390115 + : HipsterFl8||pb-IF4RUGRTMA==|| joined server -2023-06-04 19:25:43.670249 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-04 19:34:37.770013 + : Princel134||pb-IF42UGgDCw==|| joined server -2023-06-04 19:35:13.910654 + : Android64787282||pb-IF4XUkwbKQ==|| joined server -2023-06-04 19:38:52.733628 + : Accredi385||pb-IF5RUBkiKA==|| joined server -2023-06-04 19:45:35.310345 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-04 19:50:27.348033 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2023-06-04 19:52:50.016157 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-04 19:55:34.653941 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-04 19:57:59.180762 + : redmo79||pb-IF41UGcPNQ==|| joined server -2023-06-04 20:01:27.877409 + : LAKSKHYA||pb-IF4wUGhdEg==|| joined server -2023-06-04 20:03:50.361167 + : Saurabhtha||pb-IF4hVHg7CA==|| joined server -2023-06-04 20:04:56.587598 + : Saurabhtha||pb-IF4hVHg7CA==|| joined server -2023-06-04 20:11:14.994417 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-04 20:11:48.092547 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-04 20:22:17.458466 + : UneasyThe2||pb-IF4OUBY-HA==|| joined server -2023-06-04 20:23:19.706769 + : Discred118||pb-IF4qUBlTJg==|| joined server -2023-06-04 20:28:48.932237 + : Saurabhtha||pb-IF4hVHg7CA==|| joined server -2023-06-04 20:32:27.842252 + : Danvendra2||pb-IF5RUGYFPA==|| joined server -2023-06-04 20:32:37.880312 + : MrBakwaas||pb-IF4pUGMENg==|| joined server -2023-06-04 20:32:48.918230 + : Unoppos746||pb-IF4DUlcTCw==|| joined server -2023-06-04 20:37:27.896185 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-04 20:38:18.094340 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-04 20:39:42.389111 + : juleon237||pb-IF4tU1pdJA==|| joined server -2023-06-04 20:40:01.477718 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-04 20:42:08.943332 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-04 20:43:58.359738 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-04 20:46:13.849054 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2023-06-04 20:46:41.937780 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2023-06-04 20:47:10.029076 + : PolarTowe2||pb-IF4BUGktJw==|| joined server -2023-06-04 20:48:41.376649 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-04 20:48:54.428724 + : PickyNimro||pb-IF4KVGsALQ==|| joined server -2023-06-04 20:50:47.842615 + : N0Mercy4Y0||pb-IF43A0ZS|| joined server -2023-06-04 20:51:06.916284 + : ImmenseExp||pb-IF5XVEQFFw==|| joined server -2023-06-04 20:53:29.462767 + : ImmenseExp||pb-IF5XVEQFFw==|| joined server -2023-06-04 20:53:30.469615 + : N0Mercy4Y0||pb-IF43A0ZS|| joined server -2023-06-04 20:55:38.916919 + : BluishClas||pb-IF4CUhUlFg==|| joined server -2023-06-04 20:56:03.977994 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2023-06-04 20:57:13.219082 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2023-06-04 20:58:56.537764 + : Android65194313||pb-IF4KUGpYXQ==|| joined server -2023-06-04 20:59:14.710310 + : Android65188517||pb-IF4HUGkZIA==|| joined server -2023-06-04 21:02:35.487817 + : ShubhangRa||pb-JiNJARBfUURFX1lFFkBUVFBGE0hXQllA|| joined server -2023-06-04 21:04:27.875748 + : BluishClas||pb-IF4CUhUlFg==|| joined server -2023-06-04 21:05:43.191130 + : Enchantres||pb-IF4gU0wxBw==|| joined server -2023-06-04 21:08:46.913063 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-04 21:12:00.557090 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-04 21:13:54.946624 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-04 21:15:51.381496 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-04 21:16:27.591387 + : SeniorSlum||pb-IF4oU00eUQ==|| joined server -2023-06-04 21:18:43.052929 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-04 21:22:33.873867 + : StealthyH9||pb-IF4JUBICXA==|| joined server -2023-06-04 21:27:21.022752 + : Android65134984||pb-IF5WUGkeKA==|| joined server -2023-06-04 21:27:44.093602 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2023-06-04 21:30:20.644105 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-04 21:30:29.678341 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-04 21:30:41.710593 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-04 21:34:16.854496 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-04 21:36:57.494348 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-04 21:37:59.717104 + : sheriff007||pb-IF4hVFQJPA==|| joined server -2023-06-04 21:41:55.510627 + : Ashwin4628||pb-IF4hVHMhXQ==|| joined server -2023-06-04 21:44:59.266230 + : kushal9610||pb-IF4LM2kN|| joined server -2023-06-04 21:45:01.267491 + : MrGogito||pb-IF4HU0U-Dw==|| joined server -2023-06-04 21:45:01.268658 + : Player disconnected, reached max players per IP address || pb-IF4LM2kN -2023-06-04 21:48:23.003534 + : Homulilly||pb-IF4wVVk8Jg==|| joined server -2023-06-04 21:52:15.890542 + : Android65179175||pb-IF4UUGkHVA==|| joined server -2023-06-04 21:55:17.619411 + : FallenLati||pb-IF42U1MvNg==|| joined server -2023-06-04 21:55:37.692303 + : FallenLati||pb-IF42U1MvNg==|| joined server -2023-06-04 21:56:40.955845 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-04 21:58:01.247452 + : FallenLati||pb-IF42U1MvNg==|| joined server -2023-06-04 22:02:40.318991 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-04 22:12:13.271281 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-04 22:14:24.781247 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2023-06-04 22:15:28.010898 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-04 22:17:35.481367 + : FrostedLor||pb-IF4zUxYJEw==|| joined server -2023-06-04 22:20:58.314840 + : Android65125599||pb-IF5VUGpdKg==|| joined server -2023-06-04 22:21:23.395237 + : harshal||pb-IF4vU0MENg==|| joined server -2023-06-04 22:26:49.633941 + : EliteSage2||pb-IF4HVHpcFQ==|| joined server -2023-06-04 22:31:12.560047 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2023-06-04 22:35:07.445981 + : Kukdi||pb-IF4WUGcuIA==|| joined server -2023-06-04 22:36:49.870888 + : CaramelArc||pb-IF40UlUhJA==|| joined server -2023-06-04 22:42:24.150540 + : Rocksol681||pb-IF4IUGExHw==|| joined server -2023-06-04 22:42:26.160271 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-04 22:44:33.597651 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-04 22:45:18.763175 + : Stochasti4||pb-IF4NUmY5Nw==|| joined server -2023-06-04 22:46:14.965405 + : EliteSage2||pb-IF4HVHpcFQ==|| joined server -2023-06-04 22:47:12.139190 + : Unyieldi31||pb-IF5cUnQqHA==|| joined server -2023-06-04 22:50:34.867277 + : Thorfinn0||pb-IF4OU2QjMQ==|| joined server -2023-06-04 22:51:25.056886 + : Android65194381||pb-IF4iUGk5Aw==|| joined server -2023-06-04 22:54:10.763013 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-04 22:54:15.785386 + : SmoothyBro||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2023-06-04 22:54:28.840192 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-04 23:04:07.115216 + : Aikuros||pb-IF49VFQlPA==|| joined server -2023-06-04 23:07:32.972315 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-04 23:08:31.171888 + : Player disconnected, reached max players per IP address || pb-IF4OUBAqNQ== -2023-06-04 23:08:32.173677 + : Rocksol681||pb-IF4IUGExHw==|| joined server -2023-06-04 23:08:55.259475 + : Android52820777||pb-IF4PVVI4Dg==|| joined server -2023-06-04 23:13:37.313139 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-04 23:15:02.627213 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-04 23:22:46.475230 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-04 23:24:16.829083 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-04 23:24:48.943739 + : Rocksol681||pb-IF4IUGExHw==|| joined server -2023-06-04 23:32:00.620538 + : CaramelArc||pb-IF40UlUhJA==|| joined server -2023-06-04 23:32:53.791077 + : DragonGhou||pb-IF5cUkwjDA==|| joined server -2023-06-04 23:33:55.026594 + : Aikuros||pb-IF49VFQlPA==|| joined server -2023-06-04 23:36:56.764543 + : HypnoticA4||pb-IF4TV3RbDA==|| joined server -2023-06-04 23:37:47.923191 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-04 23:45:15.440752 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-04 23:47:15.860184 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2023-06-04 23:47:44.954974 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-04 23:48:57.232581 + : MetalTorc3||pb-IF4FV0xYAg==|| joined server -2023-06-04 23:50:08.494087 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-04 23:50:12.511257 + : ThriftySu3||pb-IF4AUGkaUQ==|| joined server -2023-06-04 23:51:48.873908 + : SmoothyBro||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2023-06-04 23:51:48.875195 + : Player disconnected, reached max players per IP address || pb-IF4iU0QaEw== -2023-06-04 23:52:39.398974 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-04 23:53:41.648998 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-04 23:55:52.089091 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-04 23:56:16.178364 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-04 23:56:48.296858 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-04 23:57:13.388694 + : Handsom372||pb-IF4sUGQ_Vw==|| joined server -2023-06-04 23:59:56.961669 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 00:03:17.688740 + : PC605822||pb-IF4HU0VcCA==|| joined server -2023-06-05 00:04:43.990226 + : Derivati12||pb-IF4xUhUoLQ==|| joined server -2023-06-05 00:05:32.172221 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 00:08:14.781437 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-05 00:08:39.861876 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2023-06-05 00:09:24.020403 + : ROMANREI10||pb-IF5WUBEBFg==|| joined server -2023-06-05 00:10:27.269035 + : Aikuros||pb-IF49VFQlPA==|| joined server -2023-06-05 00:11:19.441401 + : Materia104||pb-IF40UBNeFg==|| joined server -2023-06-05 00:14:52.238685 + : SmoothyBro||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2023-06-05 00:15:08.310124 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-05 00:19:17.261328 + : kharwa684||pb-IF4iVGYNEA==|| joined server -2023-06-05 00:21:11.657031 + : xblood98x||pb-IF4LVW5cMQ==|| joined server -2023-06-05 00:25:25.663522 + : masoom1980||pb-IF4cVGMHLA==|| joined server -2023-06-05 00:29:45.672900 + : masoom1980||pb-IF4cVGMHLA==|| joined server -2023-06-05 00:29:45.673220 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 00:29:45.673409 + : xblood98x||pb-IF4LVW5cMQ==|| joined server -2023-06-05 00:29:45.673580 + : Aikuros||pb-IF49VFQlPA==|| joined server -2023-06-05 00:29:45.674027 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2023-06-05 00:29:58.724034 + : masoom1980||pb-IF4cVGMHLA==|| joined server -2023-06-05 00:30:36.854478 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-05 00:32:12.231474 + : SmoothyBro||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2023-06-05 00:39:57.063942 + : Aikuros||pb-IF49VFQlPA==|| joined server -2023-06-05 00:39:57.064245 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 00:39:58.068444 + : xblood98x||pb-IF4LVW5cMQ==|| joined server -2023-06-05 00:40:06.096119 + : masoom1980||pb-IF4cVGMHLA==|| joined server -2023-06-05 00:40:47.243201 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-05 00:43:43.863196 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 00:45:22.229709 + : ImpudentOu||pb-IF4yUBElCg==|| joined server -2023-06-05 00:46:49.558040 + : KARObstina||pb-IF4mUBFcUw==|| joined server -2023-06-05 00:55:17.409122 + : xblood98x||pb-IF4LVW5cMQ==|| joined server -2023-06-05 00:55:22.427313 + : saaidicom||pb-IF4gUnozMg==|| joined server -2023-06-05 00:57:29.887280 + : masoom1980||pb-IF4cVGMHLA==|| joined server -2023-06-05 00:59:15.237923 + : saaidicom||pb-IF4gUnozMg==|| joined server -2023-06-05 01:00:07.412982 + : KraZysoY56||pb-IF41UGlZIQ==|| joined server -2023-06-05 01:13:39.211401 + : niloferkha||pb-IF4IUGVTMQ==|| joined server -2023-06-05 01:18:22.311907 + : Android65115869||pb-IF40UGciNw==|| joined server -2023-06-05 01:53:00.130193 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 02:18:22.009342 + : jhonaskhan||pb-IF4XDnY_|| joined server -2023-06-05 02:23:28.195229 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 02:30:28.449161 + : FreakySpe3||pb-IF4wUGkjCw==|| joined server -2023-06-05 02:51:14.130675 + : Android65138693||pb-IF5UUGooLw==|| joined server -2023-06-05 03:05:56.277201 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 03:07:02.503282 + : Android65160470||pb-IF4DUGkvMw==|| joined server -2023-06-05 03:26:31.566098 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 04:03:20.039096 + : Android55478779||pb-IF4TUmcFEQ==|| joined server -2023-06-05 04:04:46.339785 + : Android64197238||pb-IF4pU1U8VQ==|| joined server -2023-06-05 05:11:35.511741 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 05:27:02.115657 + : HybridPrac||pb-IF4PUGFaAQ==|| joined server -2023-06-05 05:32:38.388173 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 05:43:50.041574 + : Android65141946||pb-IF5TUGo6VQ==|| joined server -2023-06-05 06:14:18.283131 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 06:34:43.891326 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 06:35:04.980038 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 06:55:19.622440 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 07:16:24.311808 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 07:26:01.446079 + : Android65141946||pb-IF5TUGo6VQ==|| joined server -2023-06-05 07:37:31.987187 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 07:58:20.828990 + : Android65115869||pb-IF40UGciNw==|| joined server -2023-06-05 07:59:00.988361 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 08:14:30.437165 + : Android65194313||pb-IF4KUGpYXQ==|| joined server -2023-06-05 08:20:42.946097 + : NoName44141d||pb-IF5cVVM-|| joined server -2023-06-05 08:57:26.326176 + : Incapab358||pb-IF4UUGpcAg==|| joined server -2023-06-05 08:59:23.799694 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 09:01:18.284623 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 09:06:35.489676 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-05 09:07:19.651142 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-05 09:07:32.692820 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-05 09:34:36.139853 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-05 09:40:00.412903 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-05 09:44:24.424229 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-05 09:44:48.505228 + : Loiteri140||pb-IF4nUnZfJg==|| joined server -2023-06-05 09:52:52.128960 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 09:53:51.352391 + : Loiteri140||pb-IF4nUnZfJg==|| joined server -2023-06-05 09:55:47.785163 + : OM189||pb-IF5UVEMIIg==|| joined server -2023-06-05 09:56:02.833470 + : Loiteri140||pb-IF4nUnZfJg==|| joined server -2023-06-05 09:56:09.864095 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 10:02:15.185737 + : Babytani||pb-IF5VUGsSUg==|| joined server -2023-06-05 10:09:12.602363 + : SSundee||pb-IF4sUGMeVA==|| joined server -2023-06-05 10:18:39.710484 + : SSundee||pb-IF4sUGMeVA==|| joined server -2023-06-05 10:20:16.101542 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-05 10:21:47.429202 + : OM189||pb-IF5UVEMIIg==|| joined server -2023-06-05 10:32:40.672635 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-05 10:32:59.743533 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-05 10:40:52.441007 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 10:56:33.981809 + : GroaningGl||pb-IF4-Uk4mEA==|| joined server -2023-06-05 10:57:31.201383 + : GroaningGl||pb-IF4-Uk4mEA==|| joined server -2023-06-05 10:57:59.299981 + : FuriousPhy||pb-IF4uUk4vMg==|| joined server -2023-06-05 11:01:23.040530 + : theonlyjay||pb-IF4CUGJeEw==|| joined server -2023-06-05 11:04:38.835248 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-05 11:04:49.872904 + : gangster16||pb-IF4VUGYlAg==|| joined server -2023-06-05 11:05:09.940351 + : OM189||pb-IF5UVEMIIg==|| joined server -2023-06-05 11:06:31.207683 + : Abhisake69||pb-IF4hVVVeHQ==|| joined server -2023-06-05 11:07:14.346292 + : Android65194381||pb-IF4iUGk5Aw==|| joined server -2023-06-05 11:08:42.792235 + : Loiteri140||pb-IF4nUnZfJg==|| joined server -2023-06-05 11:10:33.184806 + : Android65178798||pb-IF5WUGsqEA==|| joined server -2023-06-05 11:11:55.494394 + : TUJABAAP00||pb-IF4TUxEoKg==|| joined server -2023-06-05 11:13:56.961865 + : MeanestRe2||pb-IF4mU3IFMw==|| joined server -2023-06-05 11:17:00.581564 + : BroadestNi||pb-IF4pU2ICCg==|| joined server -2023-06-05 11:21:07.593107 + : Loiteri140||pb-IF4nUnZfJg==|| joined server -2023-06-05 11:22:10.801884 + : Android65184233||pb-IF4NUGgHNg==|| joined server -2023-06-05 11:22:13.811387 + : DapperDust||pb-IF4dU2QjBA==|| joined server -2023-06-05 11:24:25.417922 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-05 11:24:31.435654 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-05 11:25:53.755060 + : Android65048982||pb-IF4UUGZeIw==|| joined server -2023-06-05 11:29:26.580720 + : subha1290||pb-IF4gUksyMQ==|| joined server -2023-06-05 11:29:37.627873 + : ArdentInit||pb-IF41UlMNFw==|| joined server -2023-06-05 11:35:58.988943 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-05 11:36:43.157981 + : VividMysti||pb-IF4MUBMHKA==|| joined server -2023-06-05 11:38:46.624979 + : iBombsquad||pb-IF4mVGZaCw==|| joined server -2023-06-05 11:39:48.863923 + : UnheardCe3||pb-IF4hUmYfMA==|| joined server -2023-06-05 11:40:24.003278 + : Loiteri140||pb-IF4nUnZfJg==|| joined server -2023-06-05 11:45:23.042752 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-05 11:46:15.293338 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-05 11:55:31.303954 + : Android65184544||pb-IF5RUGxdLA==|| joined server -2023-06-05 11:57:35.911691 + : AcidicBeat||pb-IF5XUGYhDQ==|| joined server -2023-06-05 11:58:34.124617 + : Thorfinn0||pb-IF4OU2QjMQ==|| joined server -2023-06-05 12:04:15.611046 + : Android65184544||pb-IF5RUGxdLA==|| joined server -2023-06-05 12:06:14.070062 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-05 12:07:14.275476 + : Znab||pb-IF4tUGMBCg==|| joined server -2023-06-05 12:08:06.440733 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 12:09:55.824800 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-05 12:13:55.823998 + : LitDevice3||pb-IF4CUGQtDA==|| joined server -2023-06-05 12:13:56.828613 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 12:14:59.074801 + : Effecti295||pb-IF5QUGc7Ng==|| joined server -2023-06-05 12:25:16.485999 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 12:25:29.529924 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-05 12:29:56.475691 + : LocalEnume||pb-IF4-UGIEXQ==|| joined server -2023-06-05 12:31:12.762527 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 12:31:20.798500 + : Thunderbir||pb-IF4WLEsf|| joined server -2023-06-05 12:34:19.859004 + : LocalEnume||pb-IF4-UGIEXQ==|| joined server -2023-06-05 12:36:46.445382 + : LocalEnume||pb-IF4-UGIEXQ==|| joined server -2023-06-05 12:41:46.549698 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2023-06-05 12:44:12.101422 + : ClearCusto||pb-IF4NUxFfEg==|| joined server -2023-06-05 12:54:34.567772 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-05 12:55:05.674695 + : BrinyLunat||pb-IF4LUGYKPw==|| joined server -2023-06-05 12:56:52.248053 + : BrinyLunat||pb-IF4LUGYKPw==|| joined server -2023-06-05 12:56:55.260057 + : masoom1980||pb-IF4cVGMHLA==|| joined server -2023-06-05 13:06:24.899132 + : BrinyLunat||pb-IF4LUGYKPw==|| joined server -2023-06-05 13:06:33.934585 + : ismartrohi||pb-IF4QVXUqDg==|| joined server -2023-06-05 13:06:38.951807 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-05 13:10:32.050012 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-05 13:10:37.070525 + : Faction196||pb-IF4dVVMqEA==|| joined server -2023-06-05 13:11:48.365689 + : Dominat692||pb-IF4LVWEaPw==|| joined server -2023-06-05 13:14:26.166672 + : GMDNB||pb-IF4GUGc_XA==|| joined server -2023-06-05 13:16:21.621982 + : Android55879409||pb-IF4iUms9Nw==|| joined server -2023-06-05 13:16:45.709407 + : SmoothyBro||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2023-06-05 13:19:05.365275 + : RegalCroc4||pb-IF4JUGkiEw==|| joined server -2023-06-05 13:22:40.126154 + : Electroo||pb-IF5WUmVdDQ==|| joined server -2023-06-05 13:22:44.140657 + : Electroo||pb-IF5WUmVdDQ==|| joined server -2023-06-05 13:32:26.298718 + : BrinyLunat||pb-IF4LUGYKPw==|| joined server -2023-06-05 13:45:02.314428 + : Connect125||pb-IF49U1gjIg==|| joined server -2023-06-05 13:45:34.423676 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-05 13:46:47.742383 + : singhprith||pb-IF4oVUw_Uw==|| joined server -2023-06-05 13:49:05.309638 + : pranitsoma||pb-IF4oUGYGNA==|| joined server -2023-06-05 13:49:41.463823 + : BrinyLunat||pb-IF4LUGYKPw==|| joined server -2023-06-05 13:52:11.028575 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 13:53:43.407715 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 13:54:21.592664 + : masoom1980||pb-IF4cVGMHLA==|| joined server -2023-06-05 13:54:55.705598 + : niloferkha||pb-IF4IUGVTMQ==|| joined server -2023-06-05 13:55:52.900090 + : masoom1980||pb-IF4cVGMHLA==|| joined server -2023-06-05 13:57:12.161404 + : SHEBBYBOLT||pb-IF42UGg4Vw==|| joined server -2023-06-05 13:57:55.303211 + : BrinyLunat||pb-IF4LUGYKPw==|| joined server -2023-06-05 13:58:15.359197 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-05 13:58:45.623272 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-05 13:59:54.866675 + : niloferkha||pb-IF4IUGVTMQ==|| joined server -2023-06-05 14:01:06.482153 + : niloferkha||pb-IF4IUGVTMQ==|| joined server -2023-06-05 14:01:06.482591 + : masoom1980||pb-IF4cVGMHLA==|| joined server -2023-06-05 14:01:06.482893 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-05 14:01:10.495859 + : BrinyLunat||pb-IF4LUGYKPw==|| joined server -2023-06-05 14:05:08.418034 + : BrinyLunat||pb-IF4LUGYKPw==|| joined server -2023-06-05 14:05:33.501977 + : PrimLieute||pb-IF43UBIIFQ==|| joined server -2023-06-05 14:08:48.217628 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-06-05 14:09:11.315668 + : Omiii15||pb-IF4LU0wKIw==|| joined server -2023-06-05 14:11:53.974834 + : Crystall58||pb-IF42U2IHUA==|| joined server -2023-06-05 14:14:24.585255 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-05 14:14:55.710457 + : PANZERGMER||pb-IF4cUkM4KA==|| joined server -2023-06-05 14:15:12.766522 + : asxd||pb-JiNJARFTUUFDX11GF0JVU1ZKGUhYQ1BK|| joined server -2023-06-05 14:15:22.796795 + : Varshan||pb-IF4RUxcRVw==|| joined server -2023-06-05 14:15:27.818112 + : PANZERGMER||pb-IF4cUkM4KA==|| joined server -2023-06-05 14:15:33.839867 + : SomberPlun||pb-IF4uUBIvFA==|| joined server -2023-06-05 14:18:56.605294 + : Discred118||pb-IF4qUBlTJg==|| joined server -2023-06-05 14:21:02.132433 + : VividMysti||pb-IF4MUBMHKA==|| joined server -2023-06-05 14:26:28.416151 + : Omiii15||pb-IF4LU0wKIw==|| joined server -2023-06-05 14:27:11.585331 + : OpposingB3||pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB|| joined server -2023-06-05 14:28:17.822824 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-05 14:29:32.067532 + : sheriff007||pb-IF4hVFQJPA==|| joined server -2023-06-05 14:32:49.778449 + : NighBluepr||pb-IF4zUGMGBg==|| joined server -2023-06-05 14:35:09.309742 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-05 14:37:07.776746 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-05 14:37:27.845775 + : BrassCongr||pb-IF5SUGs7IQ==|| joined server -2023-06-05 14:40:12.424432 + : Insisten38||pb-IF5UU1UmNQ==|| joined server -2023-06-05 14:43:20.142682 + : Mudasser14||pb-IF4tVGtfDQ==|| joined server -2023-06-05 14:44:54.519917 + : PANZERGMER||pb-IF4cUkM4KA==|| joined server -2023-06-05 14:46:18.869486 + : RainbowLo2||pb-IF4lUlBcCw==|| joined server -2023-06-05 14:48:08.289918 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-05 14:50:10.695914 + : tenchogame||pb-IF5RUBUxAA==|| joined server -2023-06-05 14:50:35.770460 + : Lucklesspe||pb-IF4jU2gAEg==|| joined server -2023-06-05 14:53:36.424787 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-05 14:55:09.728361 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-05 14:56:56.141598 + : Precipit18||pb-IF5VUkcmUA==|| joined server -2023-06-05 14:57:53.334608 + : VividMysti||pb-IF4MUBMHKA==|| joined server -2023-06-05 15:00:49.973274 + : Lucklesspe||pb-IF4jU2gAEg==|| joined server -2023-06-05 15:06:14.275409 + : Unyieldi20||pb-IF5TUlkMVg==|| joined server -2023-06-05 15:06:27.329816 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-05 15:09:25.930809 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-05 15:10:17.144169 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-05 15:14:29.047306 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-05 15:20:33.457937 + : SHAD0WoooD||pb-IF4xVUUeFA==|| joined server -2023-06-05 15:22:36.986825 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-05 15:23:48.224563 + : Android55311626||pb-IF5SUmgtCA==|| joined server -2023-06-05 15:23:52.241163 + : AnuragRdav||pb-IF4cUxYIHw==|| joined server -2023-06-05 15:27:13.990816 + : Lucklesspe||pb-IF4jU2gAEg==|| joined server -2023-06-05 15:27:55.155272 + : Android55311626||pb-IF5SUmgtCA==|| joined server -2023-06-05 15:36:10.087342 + : PrimLieute||pb-IF43UBIIFQ==|| joined server -2023-06-05 15:40:31.071602 + : ChiseledDw||pb-IF5VVWlSPQ==|| joined server -2023-06-05 15:43:45.716115 + : Android65141946||pb-IF5TUGo6VQ==|| joined server -2023-06-05 15:44:16.835572 + : HindPiano8||pb-IF4qUGkeKw==|| joined server -2023-06-05 15:49:49.127128 + : sahniharsh||pb-IF4LV20GMw==|| joined server -2023-06-05 15:51:47.539678 + : Definiti43||pb-IF4zU0xdJw==|| joined server -2023-06-05 15:54:12.109765 + : masoom1980||pb-IF4cVGMHLA==|| joined server -2023-06-05 15:54:22.137068 + : niloferkha||pb-IF4IUGVTMQ==|| joined server -2023-06-05 15:54:50.243864 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-05 16:02:13.936300 + : MrSilver||pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG|| joined server -2023-06-05 16:02:56.077685 + : Abovemen85||pb-IF4pUGYPVg==|| joined server -2023-06-05 16:03:18.175601 + : Profita308||pb-IF5cUGYKMg==|| joined server -2023-06-05 16:03:51.298927 + : Avoidab320||pb-IF4IUGQ_JA==|| joined server -2023-06-05 16:06:17.839534 + : RainbowLo2||pb-IF4lUlBcCw==|| joined server -2023-06-05 16:06:59.994821 + : Player disconnected, reached max players per device || None -2023-06-05 16:07:17.054062 + : burningki2||pb-IF4GUlEdMg==|| joined server -2023-06-05 16:08:16.271549 + : HauntedChe||pb-IF5SUGIgUQ==|| joined server -2023-06-05 16:08:22.292749 + : Android51767699||pb-IF4DVUggMQ==|| joined server -2023-06-05 16:15:30.085496 + : NomadicBee||pb-IF4BVW48MQ==|| joined server -2023-06-05 16:17:58.599115 + : PortableT8||pb-IF49UBEhJA==|| joined server -2023-06-05 16:23:07.907273 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 16:36:05.860406 + : Maligna245||pb-IF4nU0Y4PQ==|| joined server -2023-06-05 16:39:00.532368 + : tengentlea||pb-IF41VVUtFQ==|| joined server -2023-06-05 16:40:20.925405 + : TGg27Royce||pb-IF4QUGcKKg==|| joined server -2023-06-05 16:43:48.737749 + : teamRFKOxx||pb-IF4gUloxKA==|| joined server -2023-06-05 16:44:05.798288 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 16:46:41.363352 + : joythegrea||pb-IF4HVVMKEQ==|| joined server -2023-06-05 17:04:43.567967 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 17:13:26.833836 + : DMJatin04||pb-IF4jUGo5LA==|| joined server -2023-06-05 17:15:22.286248 + : Conifer620||pb-IF4DUlIREQ==|| joined server -2023-06-05 17:21:40.692989 + : Nyaa! :3||pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB|| joined server -2023-06-05 17:23:34.097772 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-05 17:25:27.539077 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 17:32:15.140204 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-05 17:38:34.705708 + : MaleDock12||pb-IF43UmkDVw==|| joined server -2023-06-05 17:39:09.839495 + : Aikuros||pb-IF49VFQlPA==|| joined server -2023-06-05 17:41:08.231666 + : SafestTwis||pb-IF4vUGpYNQ==|| joined server -2023-06-05 17:41:37.338265 + : Stochasti4||pb-IF4NUmY5Nw==|| joined server -2023-06-05 17:44:29.959393 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-05 17:45:09.109483 + : FrostedBe2||pb-IF4OU1MtBA==|| joined server -2023-06-05 17:45:25.182703 + : Rambunct61||pb-IF43F2ku|| joined server -2023-06-05 17:45:59.507251 + : Conifer620||pb-IF4DUlIREQ==|| joined server -2023-06-05 17:47:09.863883 + : lodhipro17||pb-IF4MU08lCQ==|| joined server -2023-06-05 17:48:15.118818 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-05 17:48:23.158985 + : tooworst||pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA|| joined server -2023-06-05 17:50:44.866508 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-05 17:55:00.028231 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-05 17:57:04.709799 + : MPF||pb-IF4rLkwp|| joined server -2023-06-05 17:58:23.990931 + : MPF||pb-IF4rLkwp|| joined server -2023-06-05 18:03:18.993456 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-05 18:09:30.397544 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-05 18:11:27.803528 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-05 18:13:02.399306 + : CrinklyHou||pb-IF5dUGlcJA==|| joined server -2023-06-05 18:13:49.541981 + : MrJimmy370||pb-IF4RVGQmIA==|| joined server -2023-06-05 18:17:45.521512 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-05 18:18:22.704820 + : Android63294581||pb-IF4BU0EsIg==|| joined server -2023-06-05 18:18:39.744160 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-05 18:19:52.077322 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-05 18:19:55.092160 + : TUJABAAP00||pb-IF4TUxEoKg==|| joined server -2023-06-05 18:24:24.246247 + : AerialMark||pb-IF5XUkoGDw==|| joined server -2023-06-05 18:32:26.252834 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-05 18:32:43.303485 + : SmoothyBro||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2023-06-05 18:34:08.673399 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 18:34:47.813884 + : lodhipro17||pb-IF4MU08lCQ==|| joined server -2023-06-05 18:34:53.832538 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-05 18:37:49.443236 + : NoNameB2036250||pb-JiNJARFaXUdIVF9DEEBVV1NFEkFbRVJA|| joined server -2023-06-05 18:37:58.471613 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-05 18:44:51.044304 + : CrayCrayPe||pb-IF4QUm8kEw==|| joined server -2023-06-05 18:45:12.130823 + : Doreamon15||pb-IF5UU0M7Lw==|| joined server -2023-06-05 18:47:16.607966 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-05 18:47:19.612762 + : lodhipro17||pb-IF4MU08lCQ==|| joined server -2023-06-05 18:47:32.658836 + : lodhipro17||pb-IF4MU08lCQ==|| joined server -2023-06-05 18:48:30.930879 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-05 18:48:46.996703 + : Bachi||pb-IF4OU1IZVg==|| joined server -2023-06-05 18:49:40.167746 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-05 18:50:55.434516 + : Aikuros||pb-IF49VFQlPA==|| joined server -2023-06-05 18:50:56.434705 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-05 18:53:38.152673 + : Omiii15||pb-IF4LU0wKIw==|| joined server -2023-06-05 18:53:41.161605 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2023-06-05 18:55:06.450003 + : Aikuros||pb-IF49VFQlPA==|| joined server -2023-06-05 18:55:23.520572 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-05 18:55:47.606355 + : Android60313630||pb-IF5XUxZYPQ==|| joined server -2023-06-05 18:55:58.663395 + : FoundingTi||pb-IF4MUGRfDQ==|| joined server -2023-06-05 18:57:24.220333 + : Aviral17||pb-IF5dU2ZdPA==|| joined server -2023-06-05 18:58:21.445738 + : FoundingTi||pb-IF4MUGRfDQ==|| joined server -2023-06-05 18:59:32.714579 + : VKkiller12||pb-IF4uUGgkDA==|| joined server -2023-06-05 18:59:56.804856 + : FoundingTi||pb-IF4MUGRfDQ==|| joined server -2023-06-05 19:03:53.696205 + : Aviral17||pb-IF5dU2ZdPA==|| joined server -2023-06-05 19:03:53.696880 + : NoNameC3934649||pb-IF4LUGkjCw==|| joined server -2023-06-05 19:06:43.379284 + : sinansinu1||pb-IF4cU0wYCA==|| joined server -2023-06-05 19:08:12.817331 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 19:10:39.362663 + : HanjalaRoc||pb-IF4mU24IHA==|| joined server -2023-06-05 19:11:45.599219 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-05 19:12:03.663737 + : HanjalaRoc||pb-IF4mU24IHA==|| joined server -2023-06-05 19:13:31.999605 + : DhyeyO||pb-IF4dU0UGUA==|| joined server -2023-06-05 19:14:17.139922 + : DhyeyO||pb-IF4dU0UGUA==|| joined server -2023-06-05 19:16:06.518835 + : SardonicMe||pb-JiNJARFdXENAVVtAE0RZUVRKFkZaQlRB|| joined server -2023-06-05 19:17:36.980853 + : harshal||pb-IF4vU0MENg==|| joined server -2023-06-05 19:20:18.523751 + : SwampyWall||pb-IF4uUGUhAg==|| joined server -2023-06-05 19:20:44.617928 + : RJStyles78||pb-IF4HUxAgVA==|| joined server -2023-06-05 19:21:45.857551 + : RJStyles78||pb-IF4HUxAgVA==|| joined server -2023-06-05 19:24:11.439948 + : Vocatio323||pb-IF4NUGcODw==|| joined server -2023-06-05 19:24:38.532324 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2023-06-05 19:27:07.107318 + : Android63588030||pb-IF4JU0UyPA==|| joined server -2023-06-05 19:32:19.542076 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-05 19:32:45.650396 + : praveenpr5||pb-IF4uVWguJw==|| joined server -2023-06-05 19:35:01.100725 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 19:35:35.217950 + : FoundingTi||pb-IF4MUGRfDQ==|| joined server -2023-06-05 19:36:10.343237 + : AKSHATCHAW||pb-IF4JVXcFVQ==|| joined server -2023-06-05 19:36:18.365009 + : OpposingB3||pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB|| joined server -2023-06-05 19:38:09.946875 + : FoundingTi||pb-IF4MUGRfDQ==|| joined server -2023-06-05 19:39:05.297597 + : SingingTac||pb-IF49I04z|| joined server -2023-06-05 19:40:45.696883 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-05 19:41:27.827378 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-05 19:45:53.070375 + : BroadestNi||pb-IF4pU2ICCg==|| joined server -2023-06-05 19:48:54.768698 + : OpposingB3||pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB|| joined server -2023-06-05 19:49:34.908853 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 19:49:35.914508 + : OpposingB3||pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB|| joined server -2023-06-05 19:49:40.939529 + : OpposingB3||pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB|| joined server -2023-06-05 19:50:21.095753 + : Android65150871||pb-IF4hUGcPIg==|| joined server -2023-06-05 19:52:31.538804 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-05 19:55:22.240481 + : CaptainVed||pb-IF4iVXE5Pw==|| joined server -2023-06-05 19:55:31.286093 + : Android65078232||pb-IF4DUGYHAA==|| joined server -2023-06-05 19:56:11.418546 + : OpposingB3||pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB|| joined server -2023-06-05 19:56:43.529664 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-05 19:56:45.531321 + : PC915062||pb-IF4KUGU4Ag==|| joined server -2023-06-05 19:57:52.763333 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-05 19:59:45.114646 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-05 20:00:01.156483 + : OpposingB3||pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB|| joined server -2023-06-05 20:02:49.814025 + : YTBloodyMo||pb-IF4PUGkJEA==|| joined server -2023-06-05 20:03:06.878176 + : Android65090966||pb-IF4CUGdaAw==|| joined server -2023-06-05 20:04:46.261158 + : OpposingB3||pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB|| joined server -2023-06-05 20:04:50.279005 + : Android63680318||pb-IF4jU0hTBg==|| joined server -2023-06-05 20:05:17.371147 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-05 20:07:20.791583 + : OpposingB3||pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB|| joined server -2023-06-05 20:08:13.987922 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-05 20:10:40.109099 + : PC915062||pb-IF4KUGU4Ag==|| joined server -2023-06-05 20:10:40.109849 + : OpposingB3||pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB|| joined server -2023-06-05 20:10:40.110172 + : Android65150871||pb-IF4hUGcPIg==|| joined server -2023-06-05 20:10:40.110391 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-05 20:15:35.269580 + : Glinting71||pb-IF4eU1gyCw==|| joined server -2023-06-05 20:16:16.421996 + : gurunaray2||pb-IF4IU28qPA==|| joined server -2023-06-05 20:16:38.509685 + : CrispyArc9||pb-IF4NUGcvKA==|| joined server -2023-06-05 20:16:43.530280 + : OpposingB3||pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB|| joined server -2023-06-05 20:17:14.641069 + : Rocksol681||pb-IF4IUGExHw==|| joined server -2023-06-05 20:17:30.700186 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 20:18:09.865826 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-05 20:18:28.935507 + : Glinting71||pb-IF4eU1gyCw==|| joined server -2023-06-05 20:21:20.569991 + : Profita308||pb-IF5cUGYKMg==|| joined server -2023-06-05 20:22:18.800494 + : MrSilver||pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG|| joined server -2023-06-05 20:25:21.528487 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2023-06-05 20:25:32.554927 + : Nighter420||pb-IF5WUncEEw==|| joined server -2023-06-05 20:27:17.954360 + : UneasyThe2||pb-IF4OUBY-HA==|| joined server -2023-06-05 20:35:35.729039 + : GrubbyDanc||pb-IF4uV21ZEA==|| joined server -2023-06-05 20:37:22.086686 + : Accredi385||pb-IF5RUBkiKA==|| joined server -2023-06-05 20:38:15.388853 + : SmilingBud||pb-IF4FUBkNKA==|| joined server -2023-06-05 20:38:16.394637 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-05 20:38:20.406592 + : SmilingBud||pb-IF4FUBkNKA==|| joined server -2023-06-05 20:39:04.561515 + : SkilledC16||pb-IF48UGo6UQ==|| joined server -2023-06-05 20:45:12.883707 + : BroadestNi||pb-IF4pU2ICCg==|| joined server -2023-06-05 20:45:54.017005 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 20:50:10.977708 + : sijuchetan||pb-IF5XVUpZLw==|| joined server -2023-06-05 20:50:14.992047 + : sijuchetan||pb-IF5XVUpZLw==|| joined server -2023-06-05 20:50:34.056954 + : UneasyThe2||pb-IF4OUBY-HA==|| joined server -2023-06-05 20:52:27.541682 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 20:54:43.018503 + : sijuchetan||pb-IF5XVUpZLw==|| joined server -2023-06-05 20:59:24.044038 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2023-06-05 21:00:24.282425 + : FanaticFol||pb-IF4zUGY8Ig==|| joined server -2023-06-05 21:01:20.483212 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-05 21:02:43.791837 + : sijuchetan||pb-IF5XVUpZLw==|| joined server -2023-06-05 21:03:10.892788 + : Player disconnected, reached max players per IP address || pb-IF4VUlcBVQ== -2023-06-05 21:03:11.897992 + : LonesomeS2||pb-IF5VV205HQ==|| joined server -2023-06-05 21:04:34.147928 + : Imagina310||pb-IF4qUBINCQ==|| joined server -2023-06-05 21:05:23.329326 + : Doreamon15||pb-IF5UU0M7Lw==|| joined server -2023-06-05 21:07:30.755307 + : Neon6657||pb-IF4dUkspPw==|| joined server -2023-06-05 21:08:09.881788 + : MrSilver||pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG|| joined server -2023-06-05 21:09:19.152935 + : Doreamon15||pb-IF5UU0M7Lw==|| joined server -2023-06-05 21:11:33.660513 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-05 21:15:03.441377 + : Territo244||pb-IF4DUGIGEw==|| joined server -2023-06-05 21:17:32.997295 + : Iconic7090||pb-IF4RUGhcMQ==|| joined server -2023-06-05 21:18:15.142318 + : Discred118||pb-IF4qUBlTJg==|| joined server -2023-06-05 21:18:40.215295 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-05 21:19:49.532043 + : MrSilver||pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG|| joined server -2023-06-05 21:23:04.262722 + : Discred118||pb-IF4qUBlTJg==|| joined server -2023-06-05 21:24:29.555178 + : MerryRepub||pb-IF4PUGkSNQ==|| joined server -2023-06-05 21:25:52.852901 + : GiftedAss2||pb-IF5UVRUyLQ==|| joined server -2023-06-05 21:34:27.713834 + : Unbreaka80||pb-IF5WU1QJFA==|| joined server -2023-06-05 21:35:22.944025 + : Unbreaka80||pb-IF5WU1QJFA==|| joined server -2023-06-05 21:41:08.220817 + : suuuuiiii3||pb-IF4iUBUAKg==|| joined server -2023-06-05 21:43:04.725028 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-05 21:46:09.416455 + : IMMAGNUM97||pb-IF4uUBMbMQ==|| joined server -2023-06-05 21:46:18.448517 + : NoNameC3950568||pb-IF5UVRgMKA==|| joined server -2023-06-05 21:46:23.465871 + : rasmalai||pb-IF4hUk0MKQ==|| joined server -2023-06-05 21:52:38.747225 + : Unconsci68||pb-IF4WUhgOXQ==|| joined server -2023-06-05 22:02:21.818029 + : MrSilver||pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG|| joined server -2023-06-05 22:03:41.137045 + : Hospita318||pb-IF4sUGleCA==|| joined server -2023-06-05 22:08:48.345636 + : BluishClas||pb-IF4CUhUlFg==|| joined server -2023-06-05 22:09:32.505872 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-05 22:12:56.200331 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-05 22:17:43.255842 + : SHUBHAMCH2||pb-IF40U28JPQ==|| joined server -2023-06-05 22:18:02.344991 + : TestyParag||pb-IF4UU1QTMw==|| joined server -2023-06-05 22:18:07.355014 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2023-06-05 22:19:47.725215 + : Adnan5757||pb-IF4cUxRcVA==|| joined server -2023-06-05 22:20:45.968824 + : Unconsci68||pb-IF4WUhgOXQ==|| joined server -2023-06-05 22:21:20.075512 + : StockyFram||pb-IF4WUGczMQ==|| joined server -2023-06-05 22:26:34.327417 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-05 22:27:05.453995 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 22:27:10.475702 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-05 22:27:14.487721 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 22:34:52.323503 + : GroaningGl||pb-IF4-Uk4mEA==|| joined server -2023-06-05 22:34:55.325387 + : FuriousPhy||pb-IF4uUk4vMg==|| joined server -2023-06-05 22:41:59.056493 + : sairatwari||pb-IF5TVE9Z|| joined server -2023-06-05 22:42:18.130906 + : SSundee||pb-IF4sUGMeVA==|| joined server -2023-06-05 22:43:00.293225 + : FuriousPhy||pb-IF4uUk4vMg==|| joined server -2023-06-05 22:45:07.756988 + : BroadestNi||pb-IF4pU2ICCg==|| joined server -2023-06-05 22:48:08.476256 + : KARObstina||pb-IF4mUBFcUw==|| joined server -2023-06-05 22:48:59.670800 + : BroadestNi||pb-IF4pU2ICCg==|| joined server -2023-06-05 22:54:59.961716 + : SSundee||pb-IF4sUGMeVA==|| joined server -2023-06-05 22:55:32.074961 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-05 22:59:16.908764 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-05 23:00:04.063012 + : hekker||pb-IF4lUxMSHw==|| joined server -2023-06-05 23:00:44.195845 + : hekker||pb-IF4lUxMSHw==|| joined server -2023-06-05 23:01:13.318838 + : Voraciou15||pb-IF4uU28fVQ==|| joined server -2023-06-05 23:01:27.388493 + : Player disconnected, reached max players per IP address || pb-IF4lUxMSHw== -2023-06-05 23:01:28.391677 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-05 23:08:59.199183 + : FoolishBur||pb-IF4QUkEAPA==|| joined server -2023-06-05 23:10:07.443046 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 23:10:19.480161 + : Android45808383||pb-IF4hVWExKw==|| joined server -2023-06-05 23:13:47.300718 + : sedraalhas||pb-IF4GUGcoEw==|| joined server -2023-06-05 23:15:11.627102 + : NoNameA3438343||pb-IF5WUGc8IA==|| joined server -2023-06-05 23:21:27.297814 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 23:24:07.940495 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-05 23:24:10.953916 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 23:27:31.715470 + : Puritan428||pb-IF42UGkJUg==|| joined server -2023-06-05 23:29:04.038139 + : Homulilly||pb-IF4wVVk8Jg==|| joined server -2023-06-05 23:35:20.493076 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-05 23:35:30.528776 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 23:37:25.992399 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-05 23:40:41.917644 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-05 23:44:18.643207 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-05 23:44:46.765020 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2023-06-05 23:45:20.874052 + : WirelessNe||pb-IF4nUkteVA==|| joined server -2023-06-05 23:46:10.073574 + : WirelessNe||pb-IF4nUkteVA==|| joined server -2023-06-05 23:46:24.114459 + : Xd1932||pb-IF5dUGcMFg==|| joined server -2023-06-05 23:47:52.418904 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 23:48:42.752696 + : MPF||pb-IF4rLkwp|| joined server -2023-06-05 23:49:59.246608 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-05 23:52:53.869458 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-06 00:01:46.780019 + : Unhealt327||pb-IF4SUGUPFw==|| joined server -2023-06-06 00:05:23.593953 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 00:06:03.741138 + : ROCKBABAJI||pb-IF4gUBlfPA==|| joined server -2023-06-06 00:09:09.499751 + : MPF||pb-IF4rLkwp|| joined server -2023-06-06 00:09:15.519718 + : MPF||pb-IF4rLkwp|| joined server -2023-06-06 00:13:29.577113 + : redmo79||pb-IF41UGcPNQ==|| joined server -2023-06-06 00:14:08.740092 + : EternalRea||pb-IF43Uxg4Kg==|| joined server -2023-06-06 00:15:12.948608 + : EternalRea||pb-IF43Uxg4Kg==|| joined server -2023-06-06 00:26:16.413161 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 00:44:04.463838 + : MPF||pb-IF4rLkwp|| joined server -2023-06-06 00:47:36.219097 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 00:48:05.314897 + : redmo79||pb-IF41UGcPNQ==|| joined server -2023-06-06 01:08:20.180395 + : Harshverma||pb-IF5WVG4yCA==|| joined server -2023-06-06 01:08:29.222237 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 01:12:02.055383 + : MPF||pb-IF4rLkwp|| joined server -2023-06-06 01:29:52.185320 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 01:38:54.185713 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-06 01:50:41.843800 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 02:10:16.422032 + : pranavshis||pb-IF4yU1VSLw==|| joined server -2023-06-06 02:11:22.676410 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 02:11:23.682088 + : HorridMaj2||pb-IF5XVWJSKw==|| joined server -2023-06-06 02:11:37.729172 + : SmilingBud||pb-IF4FUBkNKA==|| joined server -2023-06-06 02:32:09.653672 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 02:52:38.313337 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 03:13:25.158013 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 03:14:00.276689 + : Android64197238||pb-IF4pU1U8VQ==|| joined server -2023-06-06 03:34:20.847500 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 04:22:28.655714 + : Raghavvvv||pb-IF4AU0JTVw==|| joined server -2023-06-06 05:18:17.158750 + : UpbeatCeme||pb-IF4SUmwlVA==|| joined server -2023-06-06 05:18:25.180635 + : UpbeatCeme||pb-IF4SUmwlVA==|| joined server -2023-06-06 05:18:35.225302 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 05:39:45.814579 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 06:24:03.550521 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 06:45:17.390511 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 07:27:03.301590 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 07:47:40.978335 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 08:09:05.727491 + : RandomBom||pb-IF4MUlYtUQ==|| joined server -2023-06-06 08:12:37.488228 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-06 08:29:24.341169 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 08:29:45.424397 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 08:32:48.076320 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-06 08:36:25.203793 + : AcidicBeat||pb-IF5XUGYhDQ==|| joined server -2023-06-06 08:39:13.851466 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-06 08:47:19.619507 + : Android62209170||pb-IF4hU24YIA==|| joined server -2023-06-06 08:52:01.770244 + : Pulove||pb-IF4XVHBdIQ==|| joined server -2023-06-06 08:53:55.305172 + : warlord160||pb-JiNJVxFfVEJIWVxFEUBXXFNLE0hXRFVD|| joined server -2023-06-06 08:57:33.254634 + : TalhaJuba2||pb-IF4LUxYbAA==|| joined server -2023-06-06 08:57:55.329039 + : TalhaJuba2||pb-IF4LUxYbAA==|| joined server -2023-06-06 08:59:25.628255 + : TalhaJuba2||pb-IF4LUxYbAA==|| joined server -2023-06-06 09:03:27.602449 + : Thorfinn0||pb-IF4OU2QjMQ==|| joined server -2023-06-06 09:10:10.351011 + : GoodlySavi||pb-IF40UBISLQ==|| joined server -2023-06-06 09:32:19.291888 + : Player disconnected, reached max players per device || pb-IF4DVW4HFA== -2023-06-06 09:32:21.295362 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 09:53:05.680299 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 09:57:32.689289 + : StockyFram||pb-IF4WUGczMQ==|| joined server -2023-06-06 10:06:37.635793 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-06 10:14:00.929337 + : BygoneHead||pb-IF4UUGFZAQ==|| joined server -2023-06-06 10:15:10.184468 + : minalachu8||pb-IF4RUhQyJg==|| joined server -2023-06-06 10:25:57.721077 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-06 10:26:24.824054 + : FearlessC4||pb-IF4eU0s9Pw==|| joined server -2023-06-06 10:27:48.108496 + : MRGAMINGTH||pb-IF4vVVczDg==|| joined server -2023-06-06 10:29:08.444039 + : LocalEnume||pb-IF4-UGIEXQ==|| joined server -2023-06-06 10:32:47.228033 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-06 10:33:52.516274 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-06 10:36:33.212712 + : SharpKnowI||pb-IF4JUBkxKw==|| joined server -2023-06-06 10:37:55.538508 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-06 10:39:35.883818 + : Android65167927||pb-IF4oUGlSCA==|| joined server -2023-06-06 10:46:15.426182 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-06 10:46:38.499687 + : NoNameC3934649||pb-IF4LUGkjCw==|| joined server -2023-06-06 10:46:56.577978 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-06 10:47:45.780698 + : sheriff007||pb-IF4hVFQJPA==|| joined server -2023-06-06 10:49:05.092657 + : Confide349||pb-IF4mUlEyBw==|| joined server -2023-06-06 10:54:16.225585 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-06 10:57:02.788354 + : Player disconnected, reached max players per device || pb-IF4eUGceJg== -2023-06-06 10:58:30.105980 + : MerryRepub||pb-IF4PUGkSNQ==|| joined server -2023-06-06 11:03:50.325802 + : SameerInga||pb-IF5QVVAuJA==|| joined server -2023-06-06 11:04:30.484805 + : fazalVenge||pb-IF4TUGEIDQ==|| joined server -2023-06-06 11:06:29.941264 + : Android65184868||pb-IF4eUGkRAQ==|| joined server -2023-06-06 11:07:28.191665 + : Philolo221||pb-IF48UGo9Kw==|| joined server -2023-06-06 11:10:26.961677 + : Android54623839||pb-IF4yUhgAAQ==|| joined server -2023-06-06 11:11:44.247235 + : Thorfinn0||pb-IF4OU2QjMQ==|| joined server -2023-06-06 11:16:51.381993 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-06 11:18:27.733982 + : HeartySwee||pb-IF4VUGkaUQ==|| joined server -2023-06-06 11:21:23.269945 + : Android53825487||pb-IF48UhEiEg==|| joined server -2023-06-06 11:21:28.284159 + : Android53825487||pb-IF48UhEiEg==|| joined server -2023-06-06 11:23:30.749017 + : ObviousLed||pb-IF4SUGkyAg==|| joined server -2023-06-06 11:25:30.178075 + : VividMysti||pb-IF4MUBMHKA==|| joined server -2023-06-06 11:28:17.794202 + : TinyProfit||pb-IF41UBQPXA==|| joined server -2023-06-06 11:28:28.845528 + : Android53825487||pb-IF48UhEiEg==|| joined server -2023-06-06 11:31:26.503091 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-06 11:36:00.451430 + : ANSHU6141||pb-LV4FXxNdVEYUWQtHFEcCVlFAFQ==|| joined server -2023-06-06 11:36:57.653662 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-06 11:39:20.166706 + : snipersomi||pb-IF5TUGxYBA==|| joined server -2023-06-06 11:47:46.993965 + : Android63294581||pb-IF4BU0EsIg==|| joined server -2023-06-06 11:48:39.190853 + : Android65184196||pb-IF4OUGkFHA==|| joined server -2023-06-06 11:51:11.705620 + : Android53825487||pb-IF48UhEiEg==|| joined server -2023-06-06 11:55:15.656327 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 11:56:22.916943 + : mansoorman||pb-IF4WU2ctKA==|| joined server -2023-06-06 11:57:59.312702 + : Android63294581||pb-IF4BU0EsIg==|| joined server -2023-06-06 12:04:29.794060 + : VividMysti||pb-IF4MUBMHKA==|| joined server -2023-06-06 12:05:31.030598 + : VividMysti||pb-IF4MUBMHKA==|| joined server -2023-06-06 12:09:39.977175 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-06 12:15:55.311009 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-06 12:16:01.332506 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-06 12:29:29.506757 + : Android63294581||pb-IF4BU0EsIg==|| joined server -2023-06-06 12:32:08.156966 + : MightyJoc2||pb-IF4sUBc6Ig==|| joined server -2023-06-06 12:33:37.485549 + : chugambara||pb-IF42U2wGFw==|| joined server -2023-06-06 12:34:23.652697 + : chugambara||pb-IF42U2wGFw==|| joined server -2023-06-06 12:43:27.756632 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-06 12:44:01.883264 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-06 12:44:09.904394 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-06 12:54:33.393217 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-06 12:54:44.435213 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-06 12:56:08.808657 + : Android65167927||pb-IF4oUGlSCA==|| joined server -2023-06-06 12:57:54.192992 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-06 13:02:54.364741 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-06 13:07:56.574534 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-06 13:08:03.606274 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-06 13:08:25.678436 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-06 13:09:48.134783 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-06 13:12:33.779783 + : FoolishMar||pb-IF4MUk0CEg==|| joined server -2023-06-06 13:13:16.953839 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-06 13:14:44.237269 + : CrystalAbu||pb-IF40UGQxMQ==|| joined server -2023-06-06 13:15:32.434043 + : VIJAYSTYLE||pb-IF4SU0QdDQ==|| joined server -2023-06-06 13:16:33.663321 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-06 13:17:56.930831 + : Android65192078||pb-IF4CUGkfUg==|| joined server -2023-06-06 13:20:39.568545 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-06 13:21:28.770681 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-06 13:23:56.309255 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 13:25:23.667194 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-06 13:28:18.307420 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-06 13:40:41.064111 + : SHOJIB||pb-JiNJARBcUEZEWVZAFUJYXFxFGUFaQ1dD|| joined server -2023-06-06 13:43:57.883469 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 13:44:18.964299 + : ProudChihu||pb-IF4hU05dLg==|| joined server -2023-06-06 13:46:59.591705 + : Android55641762||pb-IF4yUmkuLw==|| joined server -2023-06-06 13:58:38.231614 + : SavvyOutl2||pb-IF4FUxMtPQ==|| joined server -2023-06-06 13:58:39.231704 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-06 14:00:06.484120 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-06 14:00:34.631913 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-06 14:00:35.632822 + : Android53825487||pb-IF48UhEiEg==|| joined server -2023-06-06 14:03:21.218110 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-06 14:04:13.410194 + : Documen153||pb-IF4uUBIDCg==|| joined server -2023-06-06 14:04:56.587164 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-06 14:06:56.011921 + : FoolishMar||pb-IF4MUk0CEg==|| joined server -2023-06-06 14:08:18.324997 + : Android64840495||pb-IF4qUBkYDg==|| joined server -2023-06-06 14:08:33.385377 + : Android64840495||pb-IF4qUBkYDg==|| joined server -2023-06-06 14:09:12.500282 + : RiddenVill||pb-IF4cVXlaDQ==|| joined server -2023-06-06 14:11:33.025119 + : Android64840495||pb-IF4qUBkYDg==|| joined server -2023-06-06 14:17:27.213834 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-06 14:18:01.354568 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-06 14:21:28.293615 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-06-06 14:26:03.743382 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-06 14:26:53.943838 + : Warrior27||pb-IF4sAGcj|| joined server -2023-06-06 14:27:18.043382 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-06 14:30:13.702506 + : devilrk768||pb-IF5dVUk5MA==|| joined server -2023-06-06 14:34:36.650975 + : lonelywol7||pb-IF4SUBkRBw==|| joined server -2023-06-06 14:43:29.775633 + : PC605729||pb-IF49U0QJDw==|| joined server -2023-06-06 14:43:32.809310 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-06 14:44:49.095152 + : Periodi275||pb-IF43UBlZFA==|| joined server -2023-06-06 14:46:17.631974 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2023-06-06 14:47:55.041172 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-06 14:53:58.474584 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-06 14:54:44.650386 + : RubyBear71||pb-IF4cUlM-XQ==|| joined server -2023-06-06 14:55:45.050235 + : CuteCat100||pb-IF4WUGokPA==|| joined server -2023-06-06 14:57:51.501754 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-06 15:06:29.542227 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 15:11:20.686454 + : RifeButter||pb-IF4HVBcbUA==|| joined server -2023-06-06 15:13:05.372000 + : Excelle766||pb-JiNJARFZVkBJXl1EFkJXXF1EFkRbRVND|| joined server -2023-06-06 15:17:42.548619 + : Eccentri37||pb-IF4jVUk4UQ==|| joined server -2023-06-06 15:21:53.469907 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-06 15:22:36.673212 + : Android53825487||pb-IF48UhEiEg==|| joined server -2023-06-06 15:23:49.007705 + : AngryFire7||pb-IF4gUGklVQ==|| joined server -2023-06-06 15:26:40.679148 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 15:27:51.934863 + : VR191377||pb-IF4FVExeAA==|| joined server -2023-06-06 15:29:44.359417 + : AerialMark||pb-IF5XUkoGDw==|| joined server -2023-06-06 15:29:56.406094 + : FierceJac4||pb-IF4AUGpeHQ==|| joined server -2023-06-06 15:34:02.360227 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2023-06-06 15:36:39.003190 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-06 15:38:17.367559 + : LEGENDTYub||pb-IF4mVWUaFQ==|| joined server -2023-06-06 15:39:22.563643 + : HarmfulFo2||pb-IF4iUGkDCA==|| joined server -2023-06-06 15:47:09.363102 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 15:48:40.724286 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-06 15:49:22.894253 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-06 15:53:31.940217 + : NoNameA209230||pb-IF4UU2USVg==|| joined server -2023-06-06 15:53:52.261271 + : ErroneousO||pb-IF4SU0sEMQ==|| joined server -2023-06-06 15:54:07.305068 + : Gripobema||pb-IF4tUBExKw==|| joined server -2023-06-06 15:54:56.463581 + : TardyDevia||pb-IF4rU0kaUQ==|| joined server -2023-06-06 16:01:49.004362 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-06 16:05:50.990004 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-06 16:06:30.144682 + : Hackneye37||pb-IF4dU1IOKQ==|| joined server -2023-06-06 16:07:26.362687 + : rajkekings||pb-IF4yU0hYEw==|| joined server -2023-06-06 16:12:11.489012 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-06 16:32:45.296463 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-06-06 16:34:37.698120 + : Android62764913||pb-IF4sU3VSMg==|| joined server -2023-06-06 16:34:46.729691 + : Android62764913||pb-IF4sU3VSMg==|| joined server -2023-06-06 16:42:31.516084 + : EldestDoom||pb-IF5TUGxZAg==|| joined server -2023-06-06 16:45:23.194124 + : Android64980317||pb-IF40UGMbEg==|| joined server -2023-06-06 16:48:53.022823 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-06 16:48:57.036108 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 16:54:26.224371 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-06 17:04:39.691947 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-06 17:05:53.972277 + : NoNameD3078665||pb-IF4gUGIyAQ==|| joined server -2023-06-06 17:07:31.804542 + : Excelle766||pb-JiNJARFZVkBJXl1EFkJXXF1EFkRbRVND|| joined server -2023-06-06 17:09:25.248931 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 17:11:52.451761 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-06 17:13:22.761586 + : V7R9||pb-IF5TU0oIIw==|| joined server -2023-06-06 17:15:45.308129 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-06 17:17:15.670604 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-06 17:17:33.749839 + : Concomita8||pb-IF4VUlJYFg==|| joined server -2023-06-06 17:20:36.388386 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-06 17:20:45.422186 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-06 17:20:46.423526 + : Concomita8||pb-IF4VUlJYFg==|| joined server -2023-06-06 17:22:11.698128 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-06 17:22:33.788603 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-06 17:22:53.847275 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-06 17:27:38.907644 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-06 17:35:06.640123 + : EasyCreato||pb-IF4wVWoGMg==|| joined server -2023-06-06 17:36:21.925828 + : IAMGROOTUS||pb-IF4HUmRfKw==|| joined server -2023-06-06 17:37:17.109500 + : IAMGROOTUS||pb-IF4HUmRfKw==|| joined server -2023-06-06 17:37:33.160471 + : SingingTac||pb-IF49I04z|| joined server -2023-06-06 17:37:36.168521 + : IAMGROOTUS||pb-IF4HUmRfKw==|| joined server -2023-06-06 17:38:03.253287 + : Android65091386||pb-IF40UGYODw==|| joined server -2023-06-06 17:41:12.982836 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-06 17:41:31.044521 + : IAMGROOTUS||pb-IF4HUmRfKw==|| joined server -2023-06-06 17:41:37.066769 + : IAMGROOTUS||pb-IF4HUmRfKw==|| joined server -2023-06-06 17:41:57.131039 + : IAMGROOTUS||pb-IF4HUmRfKw==|| joined server -2023-06-06 17:45:31.874121 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-06 17:48:43.579339 + : SingingTac||pb-IF49I04z|| joined server -2023-06-06 17:50:29.961313 + : Egocent107||pb-IF5RU1lfAQ==|| joined server -2023-06-06 17:55:18.997427 + : Reaction61||pb-IF4RU0xbFg==|| joined server -2023-06-06 17:57:57.542965 + : IAMGROOTUS||pb-IF4HUmRfKw==|| joined server -2023-06-06 17:58:15.618113 + : KiskiBaji||pb-IF4lU2caEg==|| joined server -2023-06-06 17:59:14.833208 + : MeatyWool3||pb-IF4KUkcKNg==|| joined server -2023-06-06 18:02:44.677825 + : MPF||pb-IF4rLkwp|| joined server -2023-06-06 18:04:45.092581 + : MPF||pb-IF4rLkwp|| joined server -2023-06-06 18:04:57.125384 + : NoName2993354||pb-IF4UV2giLQ==|| joined server -2023-06-06 18:08:14.883898 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2023-06-06 18:09:13.103072 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-06 18:14:38.302953 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-06 18:20:57.845506 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-06 18:29:15.681480 + : LunarJoint||pb-IF4QUBYSMQ==|| joined server -2023-06-06 18:35:16.180006 + : NoNameD3911062||pb-IF4SUGkMNg==|| joined server -2023-06-06 18:36:42.512538 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2023-06-06 18:48:32.338102 + : SilentSal3||pb-IF4zU00GCg==|| joined server -2023-06-06 18:52:26.271854 + : Imminen118||pb-IF4AUGUiDg==|| joined server -2023-06-06 18:53:54.610103 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-06 18:55:30.952413 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-06 19:01:19.328308 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-06 19:06:44.650747 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-06 19:11:20.857378 + : Android65150871||pb-IF4hUGcPIg==|| joined server -2023-06-06 19:18:56.678196 + : SameerInga||pb-IF5QVVAuJA==|| joined server -2023-06-06 19:21:23.254036 + : TiredShift||pb-IF40UncaLg==|| joined server -2023-06-06 19:24:10.844265 + : SameerInga||pb-IF5QVVAuJA==|| joined server -2023-06-06 19:25:21.074782 + : gurunaray2||pb-IF4IU28qPA==|| joined server -2023-06-06 19:27:53.661714 + : Favorab352||pb-IF4zUko6Jw==|| joined server -2023-06-06 19:32:08.601296 + : littleoutb||pb-IF4iU1RbLA==|| joined server -2023-06-06 19:34:18.130087 + : FIGHTERMAN||pb-IF40VXMlBA==|| joined server -2023-06-06 19:37:48.881502 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-06 19:46:30.011743 + : MrSilver||pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG|| joined server -2023-06-06 19:46:52.096471 + : CrinklyHou||pb-IF5dUGlcJA==|| joined server -2023-06-06 19:59:34.173911 + : Rosie07||pb-IF4pU1oqVg==|| joined server -2023-06-06 20:00:44.485307 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-06 20:01:08.553847 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-06 20:01:48.688302 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-06 20:02:06.743104 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-06 20:05:34.507347 + : ParanoidB9||pb-IF4GUnhdIg==|| joined server -2023-06-06 20:10:21.498044 + : Kashilegen||pb-IF5UVW4cUA==|| joined server -2023-06-06 20:15:10.577124 + : ParanoidB9||pb-IF4GUnhdIg==|| joined server -2023-06-06 20:19:41.844586 + : SureSale26||pb-IF4BVFgaHw==|| joined server -2023-06-06 20:20:51.088951 + : AquaticTor||pb-IF5dUBkzVg==|| joined server -2023-06-06 20:25:37.149072 + : Soloboom38||pb-IF4jVWsgNw==|| joined server -2023-06-06 20:28:28.153069 + : LeatherSe3||pb-IF5dVW0YMw==|| joined server -2023-06-06 20:32:41.318424 + : HurtPunch1||pb-IF40VG4pMg==|| joined server -2023-06-06 20:33:15.432088 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-06 20:35:29.984783 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-06 20:45:00.084286 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 20:46:40.478550 + : HypnoticA4||pb-IF4TV3RbDA==|| joined server -2023-06-06 20:47:07.590180 + : Irregula94||pb-IF5VU1QEEw==|| joined server -2023-06-06 20:48:52.957684 + : vishalgame||pb-IF4PU00xDw==|| joined server -2023-06-06 20:52:52.784003 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-06 20:53:41.970439 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-06 20:54:00.038797 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-06 20:55:39.386709 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-06 20:57:44.814779 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-06 20:59:26.194944 + : DsbParth||pb-IF4GU1AEIA==|| joined server -2023-06-06 20:59:55.288371 + : DsbParth||pb-IF4GU1AEIA==|| joined server -2023-06-06 20:59:58.295116 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-06 21:00:02.305360 + : DsbParth||pb-IF4GU1AEIA==|| joined server -2023-06-06 21:00:33.415795 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-06 21:01:01.517576 + : LocalEnume||pb-IF4-UGIEXQ==|| joined server -2023-06-06 21:01:55.693372 + : DemonicIte||pb-IF4OU3YzNQ==|| joined server -2023-06-06 21:05:59.734883 + : LocalEnume||pb-IF4-UGIEXQ==|| joined server -2023-06-06 21:07:24.048386 + : sijuchetan||pb-IF5XVUpZLw==|| joined server -2023-06-06 21:08:30.294192 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-06 21:10:05.614894 + : VoidBoi||pb-IF4gU3MaCw==|| joined server -2023-06-06 21:12:47.215696 + : DsbParth||pb-IF4GU1AEIA==|| joined server -2023-06-06 21:15:31.984204 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-06 21:18:37.642657 + : ImmenseExp||pb-IF5XVEQFFw==|| joined server -2023-06-06 21:23:06.518578 + : Thirtee255||pb-IF4iVWlTBg==|| joined server -2023-06-06 21:24:44.848164 + : InmostCase||pb-IF4NVVMdDQ==|| joined server -2023-06-06 21:27:25.669115 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-06 21:34:50.377691 + : rahulsathe||pb-IF5RVWMjMw==|| joined server -2023-06-06 21:35:01.412715 + : saisurya00||pb-IF4wV2paCg==|| joined server -2023-06-06 21:35:42.554701 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-06 21:46:31.116457 + : kaushikp00||pb-IF4TUlA9HA==|| joined server -2023-06-06 21:51:52.390008 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2023-06-06 21:55:24.120684 + : harshal||pb-IF4vU0MENg==|| joined server -2023-06-06 22:01:47.619382 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-06 22:01:47.620001 + : CyclicCit2||pb-IF4OUGcnKg==|| joined server -2023-06-06 22:03:03.889619 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-06 22:04:13.143975 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2023-06-06 22:06:10.554386 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2023-06-06 22:06:57.723281 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-06 22:07:35.835574 + : Microsco38||pb-IF4WVBEFEQ==|| joined server -2023-06-06 22:11:36.934962 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-06-06 22:11:51.982127 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-06-06 22:12:03.027943 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-06-06 22:14:01.526739 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-06 22:16:12.282791 + : prajwalSah||pb-IF42U3o8JA==|| joined server -2023-06-06 22:23:19.159658 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-06 22:25:56.905788 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-06 22:31:19.154413 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-06 22:32:27.419112 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-06 22:55:39.746932 + : Android65046800||pb-IF4GUGZfKg==|| joined server -2023-06-06 22:57:17.063438 + : DRpsycho43||pb-IF4GVUUOKA==|| joined server -2023-06-06 22:57:31.120056 + : BruceLee7||pb-IF40U2cGMw==|| joined server -2023-06-06 23:16:35.702491 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-06 23:26:21.967399 + : ahmed365||pb-IF4XUBEqVA==|| joined server -2023-06-06 23:26:33.022411 + : RundownR19||pb-IF4qDVYk|| joined server -2023-06-06 23:33:24.625784 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-06 23:37:30.539641 + : YouthoobGa||pb-IF4VU3ISVQ==|| joined server -2023-06-06 23:42:52.759747 + : FoolishMar||pb-IF4MUk0CEg==|| joined server -2023-06-07 00:03:35.066477 + : masoom1980||pb-IF4cVGMHLA==|| joined server -2023-06-07 00:03:41.085320 + : masoom1980||pb-IF4cVGMHLA==|| joined server -2023-06-07 00:23:40.249466 + : niloferkha||pb-IF4IUGVTMQ==|| joined server -2023-06-07 00:23:41.254632 + : NoviceChoi||pb-IF5dVW4SPA==|| joined server -2023-06-07 00:30:40.775663 + : Kingbrose9||pb-IF4JUGUvEQ==|| joined server -2023-06-07 00:39:10.642642 + : Android63907607||pb-IF4pU04jNg==|| joined server -2023-06-07 00:39:22.690116 + : Android63907607||pb-IF4pU04jNg==|| joined server -2023-06-07 00:39:29.725939 + : Android63907607||pb-IF4pU04jNg==|| joined server -2023-06-07 00:56:31.810378 + : PrimaLabel||pb-IF43UGpSEA==|| joined server -2023-06-07 00:56:32.811985 + : KindestBoo||pb-IF4sUGYjUw==|| joined server -2023-06-07 00:58:08.156311 + : WeeperBoy||pb-IF4uU2U7Bg==|| joined server -2023-06-07 01:01:17.835444 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-07 01:01:33.887093 + : GurglingAb||pb-IF5UUGhSIA==|| joined server -2023-06-07 01:11:20.958791 + : Pk4155||pb-IF4oUmcI|| joined server -2023-06-07 01:16:39.030601 + : ItxQueen24||pb-IF41UGYnFA==|| joined server -2023-06-07 01:21:48.221829 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 02:05:27.619327 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 02:27:02.344311 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 02:48:08.242246 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 04:29:11.339317 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 04:50:25.056705 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 05:12:20.871698 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 05:33:40.626102 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 05:50:49.366630 + : Abisuriyas||pb-IF4NUGgfEA==|| joined server -2023-06-07 06:16:38.563491 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 06:23:36.173138 + : FearlessC4||pb-IF4eU0s9Pw==|| joined server -2023-06-07 06:37:58.345409 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 06:49:28.964397 + : Android64311499||pb-IF4eU1gjXQ==|| joined server -2023-06-07 07:20:32.153994 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 07:41:49.000233 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 07:59:58.171885 + : Android65115869||pb-IF40UGciNw==|| joined server -2023-06-07 08:03:08.848863 + : Android65115869||pb-IF40UGciNw==|| joined server -2023-06-07 08:04:04.048956 + : NoNameC3888828||pb-IF5VU2obJg==|| joined server -2023-06-07 08:04:23.127153 + : ContentSo2||pb-IF4pUBUhDw==|| joined server -2023-06-07 08:25:30.712704 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 08:25:45.740202 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 08:47:05.421155 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 09:01:22.347858 + : MayankBans||pb-IF4RUGolUA==|| joined server -2023-06-07 09:02:57.660192 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-07 09:05:23.177679 + : AcidicBeat||pb-IF5XUGYhDQ==|| joined server -2023-06-07 09:08:24.966698 + : HeroicCric||pb-IF4cUlhdVg==|| joined server -2023-06-07 09:09:43.250136 + : lilpyro100||pb-IF4vU2UDBA==|| joined server -2023-06-07 09:14:03.204341 + : Attitudebo||pb-IF4dVFgCLg==|| joined server -2023-06-07 09:23:40.459829 + : Adjndb1||pb-IF4UVVIiLg==|| joined server -2023-06-07 09:45:55.463854 + : TallBulldo||pb-IF4BV0odKw==|| joined server -2023-06-07 09:46:09.498183 + : Forgetf684||pb-IF4qUGhSVg==|| joined server -2023-06-07 09:51:02.552667 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 09:51:04.555704 + : Inducti306||pb-IF4qUhQpNw==|| joined server -2023-06-07 09:53:46.218157 + : FearlessC4||pb-IF4eU0s9Pw==|| joined server -2023-06-07 10:00:41.795013 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-07 10:04:36.664863 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-07 10:12:55.477253 + : Cat1ock||pb-IF5XU1kzXA==|| joined server -2023-06-07 10:16:06.264474 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-07 10:16:21.317145 + : Hackneye37||pb-IF4dU1IOKQ==|| joined server -2023-06-07 10:17:55.642223 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-07 10:20:48.366945 + : Hackneye37||pb-IF4dU1IOKQ==|| joined server -2023-06-07 10:23:01.816648 + : Android65209271||pb-IF4IUGkEMw==|| joined server -2023-06-07 10:25:21.373802 + : FearlessC4||pb-IF4eU0s9Pw==|| joined server -2023-06-07 10:27:32.855565 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-07 10:31:44.801603 + : Thousand53||pb-IF4GUBc7AA==|| joined server -2023-06-07 10:33:21.344095 + : Imminen118||pb-IF4AUGUiDg==|| joined server -2023-06-07 10:35:09.885523 + : Android64929969||pb-IF4XUGMiVQ==|| joined server -2023-06-07 10:36:47.411941 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-07 10:38:45.867058 + : Android64929969||pb-IF4XUGMiVQ==|| joined server -2023-06-07 10:42:08.596402 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-07 10:48:45.187730 + : FearlessC4||pb-IF4eU0s9Pw==|| joined server -2023-06-07 10:50:31.565082 + : iBombsquad||pb-IF4mVGZaCw==|| joined server -2023-06-07 10:51:20.800454 + : adityasin4||pb-IF4DUxcnDg==|| joined server -2023-06-07 10:54:03.391090 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2023-06-07 10:56:13.890191 + : SingingTac||pb-IF49I04z|| joined server -2023-06-07 10:59:50.683267 + : Munky||pb-IF4FUGdaPw==|| joined server -2023-06-07 11:06:23.172256 + : BronzeDoc2||pb-IF4vDEcd|| joined server -2023-06-07 11:07:39.446085 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 11:11:22.391254 + : Pappa69||pb-JiNJARFbVkBAXV5AGE5WVVxKFkBfQlBG|| joined server -2023-06-07 11:13:59.053583 + : Pappa69||pb-JiNJARFbVkBAXV5AGE5WVVxKFkBfQlBG|| joined server -2023-06-07 11:18:25.182428 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-07 11:24:51.765211 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-07 11:27:44.477983 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-07 11:44:03.181758 + : UnitaryImm||pb-IF4LUGg4Fw==|| joined server -2023-06-07 11:47:01.809436 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-07 11:47:57.364779 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-07 11:48:30.472178 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-07 11:51:09.069550 + : SEYDAL1907||pb-IF4FUksuIA==|| joined server -2023-06-07 11:52:40.418523 + : Android63718321||pb-IF4vU0gFFQ==|| joined server -2023-06-07 11:53:51.712119 + : MYSTERI743||pb-IF5TUmgEFQ==|| joined server -2023-06-07 11:55:59.351048 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-07 12:02:03.429431 + : ItchyDrea2||pb-IF4IUBA4IA==|| joined server -2023-06-07 12:04:06.974437 + : Queen555Ou||pb-IF5WUBc-Vw==|| joined server -2023-06-07 12:04:08.978777 + : SharpKnowI||pb-IF4JUBkxKw==|| joined server -2023-06-07 12:05:46.366779 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2023-06-07 12:07:01.631805 + : CorruptPl3||pb-IF42VUMOFA==|| joined server -2023-06-07 12:11:17.752665 + : Enormou417||pb-IF4gVGxeXQ==|| joined server -2023-06-07 12:11:44.056503 + : CorruptPl3||pb-IF42VUMOFA==|| joined server -2023-06-07 12:12:04.135437 + : ItchyDrea2||pb-IF4IUBA4IA==|| joined server -2023-06-07 12:12:56.310225 + : CorruptPl3||pb-IF42VUMOFA==|| joined server -2023-06-07 12:13:48.498580 + : NovelGrou2||pb-IF40UGIREg==|| joined server -2023-06-07 12:14:12.749696 + : Android63294581||pb-IF4BU0EsIg==|| joined server -2023-06-07 12:15:32.987223 + : Hackneye37||pb-IF4dU1IOKQ==|| joined server -2023-06-07 12:15:49.048508 + : Android44176168||pb-IF4jVFQ6Bw==|| joined server -2023-06-07 12:15:52.056382 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2023-06-07 12:17:40.498426 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-07 12:22:45.680237 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-07 12:31:25.639206 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 12:32:54.966864 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-07 12:33:53.231896 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-07 12:36:54.186222 + : HonkingSom||pb-IF49VVUHAw==|| joined server -2023-06-07 12:37:15.247717 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-07 12:39:08.671293 + : mansoorman||pb-IF4WU2ctKA==|| joined server -2023-06-07 12:47:11.767475 + : INXANE||pb-IF4HU04uVA==|| joined server -2023-06-07 12:52:09.926361 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 12:57:03.006010 + : Android63294581||pb-IF4BU0EsIg==|| joined server -2023-06-07 13:00:53.865825 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-07 13:07:27.376346 + : ThirstyT11||pb-IF5XU0g5BA==|| joined server -2023-06-07 13:13:30.754453 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 13:16:54.529036 + : Android64787282||pb-IF4XUkwbKQ==|| joined server -2023-06-07 13:33:12.229310 + : Pitaji||pb-IF5QU1MGFw==|| joined server -2023-06-07 13:38:28.576455 + : minalachu8||pb-IF4RUhQyJg==|| joined server -2023-06-07 13:39:00.696018 + : redmo79||pb-IF41UGcPNQ==|| joined server -2023-06-07 13:39:29.809045 + : redmo79||pb-IF41UGcPNQ==|| joined server -2023-06-07 13:40:47.131365 + : GurglingAb||pb-IF5UUGhSIA==|| joined server -2023-06-07 13:40:53.158969 + : yadavmembe||pb-IF4CFmcg|| joined server -2023-06-07 13:42:49.590787 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-07 13:43:40.789385 + : Implicit41||pb-IF4IVUgjBg==|| joined server -2023-06-07 13:44:54.092612 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-07 13:45:31.246909 + : FearlessC4||pb-IF4eU0s9Pw==|| joined server -2023-06-07 13:45:33.257644 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-06-07 13:45:35.264959 + : BurlyBron2||pb-IF4PU2Y6VQ==|| joined server -2023-06-07 13:46:05.353667 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-07 13:48:35.927762 + : NoNameC2725276||pb-IF4AUBkgVA==|| joined server -2023-06-07 13:49:12.049481 + : TUJABAAP00||pb-IF4TUxEoKg==|| joined server -2023-06-07 13:50:09.245107 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-07 13:52:00.650710 + : SavvyOutl2||pb-IF4FUxMtPQ==|| joined server -2023-06-07 13:53:08.864936 + : Deliber564||pb-IF5WUGsdCA==|| joined server -2023-06-07 13:56:53.701236 + : Perishab94||pb-IF5dUkknAg==|| joined server -2023-06-07 14:00:42.524573 + : Aathikesav||pb-IF4VVFFSDw==|| joined server -2023-06-07 14:04:13.275370 + : Znab||pb-IF4tUGMBCg==|| joined server -2023-06-07 14:06:20.688922 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-07 14:06:25.709540 + : THALAPAT45||pb-IF5XUGgTNQ==|| joined server -2023-06-07 14:08:56.226032 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-07 14:09:57.466635 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-07 14:10:53.660108 + : Hashwanths||pb-IF42FxkT|| joined server -2023-06-07 14:11:12.729580 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-07 14:12:11.901571 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-07 14:13:28.136828 + : OBOMBERO||pb-IF4WUlBeUA==|| joined server -2023-06-07 14:13:47.220462 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-07 14:14:11.291830 + : pyleemacha||pb-IF4LUkxfKw==|| joined server -2023-06-07 14:14:55.472354 + : BurlyBron2||pb-IF4PU2Y6VQ==|| joined server -2023-06-07 14:15:52.711330 + : OBOMBERO||pb-IF4WUlBeUA==|| joined server -2023-06-07 14:16:50.945768 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-07 14:19:58.589125 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-07 14:20:07.619437 + : Notewor349||pb-IF4TUGpaAg==|| joined server -2023-06-07 14:22:04.046516 + : Derivati12||pb-IF4xUhUoLQ==|| joined server -2023-06-07 14:22:29.131473 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-07 14:25:00.718765 + : sagar88822||pb-IF4vVUNfEA==|| joined server -2023-06-07 14:27:41.310616 + : Derivati12||pb-IF4xUhUoLQ==|| joined server -2023-06-07 14:30:16.876198 + : ProudChihu||pb-IF4hU05dLg==|| joined server -2023-06-07 14:30:32.945273 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-07 14:31:13.111605 + : aaman78659||pb-JiNJVxFYUUtBX1hJEUVYXVNDEUlZT1ND|| joined server -2023-06-07 14:31:19.140743 + : MRGAMINGTH||pb-IF4vVVczDg==|| joined server -2023-06-07 14:32:38.438848 + : NoviceChoi||pb-IF5dVW4SPA==|| joined server -2023-06-07 14:33:05.530558 + : SingingTac||pb-IF49I04z|| joined server -2023-06-07 14:33:07.541275 + : ShariaR||pb-IF4sU04IFA==|| joined server -2023-06-07 14:37:40.653697 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-07 14:45:14.409151 + : Hackneye37||pb-IF4dU1IOKQ==|| joined server -2023-06-07 14:46:09.591228 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-07 14:46:21.646634 + : sheriff007||pb-IF4hVFQJPA==|| joined server -2023-06-07 14:46:55.788523 + : Android50474962||pb-IF5XVUFcJg==|| joined server -2023-06-07 14:47:20.893376 + : BusiestSpe||pb-IF4-U0QoKQ==|| joined server -2023-06-07 14:54:11.465418 + : AnkitRawka||pb-IF4HUkgsPQ==|| joined server -2023-06-07 14:58:23.351732 + : Rishu772||pb-IF43UGYlDQ==|| joined server -2023-06-07 15:10:20.066829 + : Android53983730||pb-IF40UhIPNw==|| joined server -2023-06-07 15:20:13.366733 + : ClearCusto||pb-IF4NUxFfEg==|| joined server -2023-06-07 15:23:56.152464 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-07 15:27:00.891060 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-07 15:29:47.565990 + : rajkekings||pb-IF4yU0hYEw==|| joined server -2023-06-07 15:33:40.384278 + : Sarsus718||pb-IF4dUxESIQ==|| joined server -2023-06-07 15:33:41.391237 + : ThinkSweet||pb-IF4-UxJSAA==|| joined server -2023-06-07 15:33:42.393657 + : NoName16411||pb-IF4rU0pbAQ==|| joined server -2023-06-07 15:33:50.418612 + : WhimsicalT||pb-IF4rUxcfHA==|| joined server -2023-06-07 15:33:57.439071 + : zaferozder||pb-IF4gUBkaIA==|| joined server -2023-06-07 15:34:19.513638 + : NoName16411||pb-IF4rU0pbAQ==|| joined server -2023-06-07 15:34:48.626529 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-07 15:36:46.064301 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-07 15:41:06.042476 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 15:43:50.638475 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-07 15:50:01.956155 + : Careless42||pb-IF4UUBMBHA==|| joined server -2023-06-07 15:51:50.337294 + : Careless42||pb-IF4UUBMBHA==|| joined server -2023-06-07 15:54:05.819681 + : Nubplayer||pb-IF4FVFUxVw==|| joined server -2023-06-07 15:54:45.961313 + : Nubplayer||pb-IF4FVFUxVw==|| joined server -2023-06-07 15:57:01.473755 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-07 16:02:08.580771 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 16:02:54.733147 + : Nonchal316||pb-IF5SUGszEQ==|| joined server -2023-06-07 16:11:21.724491 + : TubularAlt||pb-IF4UUGo-Lw==|| joined server -2023-06-07 16:16:13.812183 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-07 16:17:34.114870 + : Android65080295||pb-IF4sUGUCIw==|| joined server -2023-06-07 16:18:04.225399 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-07 16:20:43.846682 + : DarkestIn5||pb-IF4UUlMoJw==|| joined server -2023-06-07 16:23:16.451726 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 16:37:20.525181 + : Agentkarup||pb-IF4mUkwuCQ==|| joined server -2023-06-07 16:43:20.788873 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2023-06-07 16:43:42.867766 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2023-06-07 16:44:42.095462 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 16:51:25.627139 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-07 16:56:56.809422 + : IrfanSheri||pb-IF4UVUQGCA==|| joined server -2023-06-07 16:57:09.858708 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-07 16:58:14.276642 + : minecraf90||pb-IF4jU2wfVQ==|| joined server -2023-06-07 16:59:12.482508 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-07 17:04:27.632193 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-07 17:06:09.000801 + : NoName265731||pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB|| joined server -2023-06-07 17:08:38.708745 + : SingingTac||pb-IF49I04z|| joined server -2023-06-07 17:11:17.402887 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-07 17:13:15.859700 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-07 17:15:18.295609 + : SonuMaan10||pb-IF4-VUReVg==|| joined server -2023-06-07 17:17:18.755763 + : SingingTac||pb-IF49I04z|| joined server -2023-06-07 17:21:06.697193 + : niloferkha||pb-IF4IUGVTMQ==|| joined server -2023-06-07 17:22:09.075855 + : minecraf90||pb-IF4jU2wfVQ==|| joined server -2023-06-07 17:23:20.338180 + : Android65148875||pb-IF5SUGoKAA==|| joined server -2023-06-07 17:32:33.678730 + : PutridDete||pb-IF4PUnYxAA==|| joined server -2023-06-07 17:32:53.745473 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-07 17:41:38.691167 + : LUC1FER005||pb-IF4WVFMDJg==|| joined server -2023-06-07 17:43:26.189210 + : itzADARSH0||pb-IF5dUGYuHw==|| joined server -2023-06-07 17:45:44.672393 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2023-06-07 17:45:45.679681 + : BraverVis2||pb-IF5dUBYsKA==|| joined server -2023-06-07 17:46:39.892131 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2023-06-07 17:47:59.256307 + : ZoDxHeLL1||pb-IF4VVWIbDA==|| joined server -2023-06-07 17:49:42.639819 + : HELL502LOR||pb-IF4JVFA6LQ==|| joined server -2023-06-07 17:53:48.466227 + : HELL502LOR||pb-IF4JVFA6LQ==|| joined server -2023-06-07 17:53:59.497784 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2023-06-07 17:57:36.318702 + : Lucklesspe||pb-IF4jU2gAEg==|| joined server -2023-06-07 18:01:02.161720 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-07 18:01:37.290984 + : Lucklesspe||pb-IF4jU2gAEg==|| joined server -2023-06-07 18:06:42.473222 + : FiercestNo||pb-IF5UUGkgNQ==|| joined server -2023-06-07 18:07:42.693327 + : FiercestNo||pb-IF5UUGkgNQ==|| joined server -2023-06-07 18:09:30.131008 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-07 18:14:26.270010 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2023-06-07 18:14:42.338554 + : Lilyy||pb-IF4OUGgPUQ==|| joined server -2023-06-07 18:14:54.382412 + : BluePartic||pb-IF4PU1QCAg==|| joined server -2023-06-07 18:16:35.767912 + : Gokulplayz||pb-IF4mVU4qPw==|| joined server -2023-06-07 18:16:54.822089 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-07 18:17:59.050573 + : Android65211220||pb-IF5UUGxcIg==|| joined server -2023-06-07 18:22:18.281765 + : SingingTac||pb-IF49I04z|| joined server -2023-06-07 18:23:08.440925 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-07 18:25:23.946227 + : SingingFa6||pb-IF4iUBElEA==|| joined server -2023-06-07 18:27:41.586603 + : MeanestRe2||pb-IF4mU3IFMw==|| joined server -2023-06-07 18:28:34.016776 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-07 18:34:52.582808 + : shubhamgrg||pb-IF48VEtbIg==|| joined server -2023-06-07 18:35:07.628586 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-07 18:40:11.740767 + : Vocatio323||pb-IF4NUGcODw==|| joined server -2023-06-07 18:42:40.222067 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-07 18:50:04.926204 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 18:50:12.979601 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-07 18:50:22.010951 + : Luice204||pb-IF4mV2QoMA==|| joined server -2023-06-07 19:03:41.066393 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-07 19:06:18.891373 + : Vocatio323||pb-IF4NUGcODw==|| joined server -2023-06-07 19:11:03.964927 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 19:11:13.005059 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-07 19:23:34.948452 + : Lucklesspe||pb-IF4jU2gAEg==|| joined server -2023-06-07 19:35:04.561263 + : Znab||pb-IF4tUGMBCg==|| joined server -2023-06-07 19:36:59.006328 + : cuteanna90||pb-IF5VUxgAXA==|| joined server -2023-06-07 19:40:33.794311 + : Kingbrose9||pb-IF4JUGUvEQ==|| joined server -2023-06-07 19:53:11.698897 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-07 19:54:20.988699 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-07 19:54:33.019040 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-07 19:56:09.378415 + : VividMysti||pb-IF4MUBMHKA==|| joined server -2023-06-07 19:59:02.965307 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2023-06-07 19:59:33.085782 + : Classica67||pb-IF41U1U9BA==|| joined server -2023-06-07 19:59:38.106228 + : PortableT8||pb-IF49UBEhJA==|| joined server -2023-06-07 20:01:16.521235 + : Kingbrose9||pb-IF4JUGUvEQ==|| joined server -2023-06-07 20:03:02.940132 + : Kingbrose9||pb-IF4JUGUvEQ==|| joined server -2023-06-07 20:06:58.153557 + : Android65205821||pb-IF4JUGkSUA==|| joined server -2023-06-07 20:06:59.156812 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-07 20:08:07.399592 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-07 20:08:17.438126 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-07 20:09:17.664324 + : UneasyThe2||pb-IF4OUBY-HA==|| joined server -2023-06-07 20:14:07.748744 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 20:16:07.211858 + : Kingbrose9||pb-IF4JUGUvEQ==|| joined server -2023-06-07 20:35:34.781714 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 20:37:47.320036 + : Android65211762||pb-IF4PUGosJw==|| joined server -2023-06-07 20:39:55.815163 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-07 20:45:17.056286 + : SmoothyBro||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2023-06-07 20:53:09.954624 + : Android55641762||pb-IF4yUmkuLw==|| joined server -2023-06-07 20:53:23.997619 + : AAWESH8300||pb-IF43UGgGIQ==|| joined server -2023-06-07 20:57:53.044127 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-07 21:00:43.673684 + : Tenacious8||pb-JiNJARFdXUtEXF1DEUVWUVRCE0VcRFJE|| joined server -2023-06-07 21:03:50.390511 + : Accredi385||pb-IF5RUBkiKA==|| joined server -2023-06-07 21:05:15.677317 + : Saranviswa||pb-IF4LVWc9HA==|| joined server -2023-06-07 21:11:21.005276 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-07 21:12:46.341750 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-07 21:18:34.683257 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 21:19:05.791840 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2023-06-07 21:22:15.559920 + : FoolishMar||pb-IF4MUk0CEg==|| joined server -2023-06-07 21:25:10.331009 + : Nyaa! :3||pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB|| joined server -2023-06-07 21:32:57.074887 + : Kingbrose9||pb-IF4JUGUvEQ==|| joined server -2023-06-07 21:37:38.120506 + : Android61599520||pb-IF4PUlFTKg==|| joined server -2023-06-07 21:38:20.332500 + : Player disconnected, reached max players per device || None -2023-06-07 21:38:33.377134 + : GroaningGl||pb-IF4-Uk4mEA==|| joined server -2023-06-07 21:38:34.376306 + : FuriousPhy||pb-IF4uUk4vMg==|| joined server -2023-06-07 21:40:12.695688 + : WonderfulH||pb-IF4sVVgTAg==|| joined server -2023-06-07 21:40:54.958247 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-07 21:42:00.209337 + : FuriousPhy||pb-IF4uUk4vMg==|| joined server -2023-06-07 21:42:04.219879 + : GroaningGl||pb-IF4-Uk4mEA==|| joined server -2023-06-07 21:44:47.962854 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2023-06-07 21:57:05.896408 + : Meshram007||pb-IF4JVXoILA==|| joined server -2023-06-07 21:58:19.149421 + : Android60313630||pb-IF5XUxZYPQ==|| joined server -2023-06-07 21:59:16.394721 + : GroaningGl||pb-IF4-Uk4mEA==|| joined server -2023-06-07 22:02:12.114017 + : Loiteri140||pb-IF4nUnZfJg==|| joined server -2023-06-07 22:08:14.542092 + : Thorfinn0||pb-IF4OU2QjMQ==|| joined server -2023-06-07 22:09:11.782810 + : YearlyBla2||pb-IF4xVBQAUg==|| joined server -2023-06-07 22:15:11.144829 + : UneasyThe2||pb-IF4OUBY-HA==|| joined server -2023-06-07 22:31:08.675516 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-07 22:47:00.310014 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 22:54:57.152332 + : FuriousPhy||pb-IF4uUk4vMg==|| joined server -2023-06-07 22:54:57.152945 + : GroaningGl||pb-IF4-Uk4mEA==|| joined server -2023-06-07 22:57:36.746229 + : NoNameB2525719||pb-IF4vUkRaEg==|| joined server -2023-06-07 23:01:24.692186 + : FuriousPhy||pb-IF4uUk4vMg==|| joined server -2023-06-07 23:02:10.873408 + : prohectiou||pb-IF5SUBYBUw==|| joined server -2023-06-07 23:09:17.463122 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 23:10:46.805570 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-07 23:13:18.382787 + : ObscureWo3||pb-IF4mUGkFJA==|| joined server -2023-06-07 23:14:37.673104 + : Aikuros||pb-IF49VFQlPA==|| joined server -2023-06-07 23:19:56.909317 + : Player disconnected, reached max players per device || pb-IF4JUGUvEQ== -2023-06-07 23:22:06.406189 + : VoidSubjec||pb-IF4FUGkPHA==|| joined server -2023-06-07 23:24:04.842837 + : VoidSubjec||pb-IF4FUGkPHA==|| joined server -2023-06-07 23:30:37.347947 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-07 23:33:56.115223 + : Lilyy||pb-IF4OUGgPUQ==|| joined server -2023-06-07 23:35:57.521490 + : littleoutb||pb-IF4iU1RbLA==|| joined server -2023-06-07 23:52:13.106022 + : Materia104||pb-IF40UBNeFg==|| joined server -2023-06-08 00:00:26.980999 + : Friendl229||pb-IF4yUBA6AA==|| joined server -2023-06-08 00:13:56.121824 + : Lilyy||pb-IF4OUGgPUQ==|| joined server -2023-06-08 00:33:56.892044 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-08 00:54:39.710227 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-08 00:55:58.041213 + : masoom1980||pb-IF4cVGMHLA==|| joined server -2023-06-08 00:56:25.111623 + : niloferkha||pb-IF4IUGVTMQ==|| joined server -2023-06-08 01:05:49.606193 + : DurBhaggg||pb-IF5QVVgBIw==|| joined server -2023-06-08 01:18:46.539183 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2023-06-08 02:57:09.543776 + : Reaction61||pb-IF4RU0xbFg==|| joined server -2023-06-08 03:46:23.881133 + : Immovabl38||pb-IF4QU3YiKQ==|| joined server -2023-06-08 04:20:27.236235 + : GhastlyRe6||pb-IF4mUBI9IA==|| joined server -2023-06-08 05:48:44.445614 + : Android65214120||pb-IF4qUGokBg==|| joined server -2023-06-08 07:10:06.972147 + : Android64210421||pb-IF4GU1UdNQ==|| joined server -2023-06-08 07:25:21.259773 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-08 07:36:03.510353 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-08 07:46:56.952022 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-08 08:07:52.307674 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-08 08:27:11.501169 + : FearlessC4||pb-IF4eU0s9Pw==|| joined server -2023-06-08 08:29:12.935404 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-08 08:30:27.186926 + : Destitu221||pb-IF5dUBgfDg==|| joined server -2023-06-08 08:50:45.480257 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-08 09:10:29.714437 + : GroaningGl||pb-IF4-Uk4mEA==|| joined server -2023-06-08 09:10:43.767067 + : FuriousPhy||pb-IF4uUk4vMg==|| joined server -2023-06-08 09:13:49.377516 + : TinyProfit||pb-IF41UBQPXA==|| joined server -2023-06-08 09:14:17.470282 + : PreppySpe2||pb-IF4eUGMKJw==|| joined server -2023-06-08 09:14:38.536105 + : TubularAlt||pb-IF4UUGo-Lw==|| joined server -2023-06-08 09:17:50.185678 + : AJMALDUDE7||pb-IF4qU0wPPQ==|| joined server -2023-06-08 09:20:43.831087 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-08 09:21:28.969780 + : NappingFri||pb-IF4gU3oFBg==|| joined server -2023-06-08 09:23:15.494445 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-08 09:23:24.525549 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-08 09:25:58.280505 + : Ubiquit238||pb-IF4CUGIlKw==|| joined server -2023-06-08 09:26:04.294812 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-08 09:26:08.318529 + : Android43671493||pb-IF5QVFMCUg==|| joined server -2023-06-08 09:26:16.352041 + : PointyGoos||pb-IF4hUBIkPQ==|| joined server -2023-06-08 09:33:01.147565 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-08 09:53:50.673635 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-08 10:15:04.635055 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-08 10:16:28.939152 + : bhanotsahi||pb-IF4yVVg6KQ==|| joined server -2023-06-08 10:21:08.083705 + : EasternMol||pb-IF4zUGYOLQ==|| joined server -2023-06-08 10:21:38.190802 + : GroaningGl||pb-IF4-Uk4mEA==|| joined server -2023-06-08 10:21:43.210672 + : FuriousPhy||pb-IF4uUk4vMg==|| joined server -2023-06-08 10:21:53.237493 + : FuriousPhy||pb-IF4uUk4vMg==|| joined server -2023-06-08 10:22:39.403572 + : GroaningGl||pb-IF4-Uk4mEA==|| joined server -2023-06-08 10:23:07.485404 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-08 10:23:18.526151 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-08 10:24:01.665412 + : PearlVirgo||pb-IF4KU1Q9Pw==|| joined server -2023-06-08 10:24:08.694287 + : Cat1ock||pb-IF5XU1kzXA==|| joined server -2023-06-08 10:25:08.897959 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-08 10:34:04.942795 + : ashu42v||pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF|| joined server -2023-06-08 10:35:33.226120 + : Devaraj02||pb-IF4OUBExFA==|| joined server -2023-06-08 10:38:02.755810 + : Devaraj02||pb-IF4OUBExFA==|| joined server -2023-06-08 10:38:43.878736 + : Devaraj02||pb-IF4OUBExFA==|| joined server -2023-06-08 10:39:23.046426 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-08 10:41:38.520189 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-08 10:42:43.740230 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-08 10:43:14.867160 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2023-06-08 10:52:45.982326 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-08 10:53:32.154425 + : NoNameC504779||pb-IF4lVUIGDQ==|| joined server -2023-06-08 10:53:44.195103 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-08 10:54:06.278661 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-08 10:55:28.576374 + : vijaybarol||pb-IF5UUGwvJA==|| joined server -2023-06-08 10:57:44.029672 + : AbundantBi||pb-IF4WU0ItKg==|| joined server -2023-06-08 10:59:27.397267 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-08 11:00:21.586145 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-08 11:03:20.181528 + : SharpKnowI||pb-IF4JUBkxKw==|| joined server -2023-06-08 11:05:04.556409 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-08 11:07:04.968733 + : HIMANSHUS9||pb-IF4DUBlZUg==|| joined server -2023-06-08 11:08:36.267642 + : Cat1ock||pb-IF5XU1kzXA==|| joined server -2023-06-08 11:09:47.565673 + : vijaybarol||pb-IF5UUGwvJA==|| joined server -2023-06-08 11:11:11.856277 + : Cat1ock||pb-IF5XU1kzXA==|| joined server -2023-06-08 11:11:13.862763 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-08 11:13:45.415093 + : FearlessC4||pb-IF4eU0s9Pw==|| joined server -2023-06-08 11:15:19.728301 + : Android55928477||pb-IF4JUmwqLQ==|| joined server -2023-06-08 11:16:04.891702 + : BogdanKim2||pb-IF41U2EmKA==|| joined server -2023-06-08 11:16:29.983869 + : Android55928477||pb-IF4JUmwqLQ==|| joined server -2023-06-08 11:18:10.333507 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-08 11:19:51.716638 + : KingUV2536||pb-IF4uCG4t|| joined server -2023-06-08 11:22:26.233933 + : LaxCurb126||pb-IF4TU3EfNw==|| joined server -2023-06-08 11:28:39.522586 + : Intract291||pb-IF4BUmgKHQ==|| joined server -2023-06-08 11:29:49.773524 + : devilrk768||pb-IF5dVUk5MA==|| joined server -2023-06-08 11:31:25.154576 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-08 11:41:34.500761 + : Excitin189||pb-IF4eU006CQ==|| joined server -2023-06-08 11:45:57.489279 + : Cat1ock||pb-IF5XU1kzXA==|| joined server -2023-06-08 11:52:12.824271 + : LeftPrecur||pb-IF4CUBgRIg==|| joined server -2023-06-08 11:52:22.861741 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-08 11:54:05.385456 + : mansoorman||pb-IF4WU2ctKA==|| joined server -2023-06-08 11:57:00.002048 + : mansoorman||pb-IF4WU2ctKA==|| joined server -2023-06-08 11:57:05.020253 + : mansoorman||pb-IF4WU2ctKA==|| joined server -2023-06-08 12:00:13.676879 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-08 12:02:08.062269 + : Devenamipa||pb-IF5XVUEAVQ==|| joined server -2023-06-08 12:02:33.181438 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-08 12:03:16.348378 + : ProudChihu||pb-IF4hU05dLg==|| joined server -2023-06-08 12:13:42.835006 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-08 12:15:32.231745 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 12:16:11.389218 + : Android65141946||pb-IF5TUGo6VQ==|| joined server -2023-06-08 12:17:38.678753 + : Noticea285||pb-IF4DUGUuVg==|| joined server -2023-06-08 12:18:16.820856 + : TwelveDisp||pb-IF4qUGcZMQ==|| joined server -2023-06-08 12:18:54.987472 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-08 12:22:00.711892 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-08 12:27:06.881319 + : Alex9999||pb-IF4oV20xKA==|| joined server -2023-06-08 12:31:50.917320 + : HelpfulJo8||pb-IF4yU2gjIw==|| joined server -2023-06-08 12:35:26.685555 + : Soulles109||pb-IF4iUGEPUQ==|| joined server -2023-06-08 12:40:36.816449 + : Scornful87||pb-IF4wVWMEBA==|| joined server -2023-06-08 12:40:44.839159 + : Blazevoid1||pb-IF40UGIxDA==|| joined server -2023-06-08 12:40:48.853730 + : Scornful87||pb-IF4wVWMEBA==|| joined server -2023-06-08 12:41:46.067830 + : FearlessC4||pb-IF4eU0s9Pw==|| joined server -2023-06-08 12:41:51.095817 + : TigerMast2||pb-IF4MUGIKVg==|| joined server -2023-06-08 12:41:51.096393 + : Player disconnected, reached max players per IP address || pb-IF40UGIxDA== -2023-06-08 12:42:11.165193 + : Wazaaaaa83||pb-IF4CU1IzMQ==|| joined server -2023-06-08 12:42:59.365089 + : Wazaaaaa83||pb-IF4CU1IzMQ==|| joined server -2023-06-08 12:44:32.694957 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-08 12:48:00.441220 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-08 12:50:12.940324 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-08 12:53:36.617808 + : Alex9999||pb-IF4oV20xKA==|| joined server -2023-06-08 12:55:48.073344 + : Android64180621||pb-IF4tU1QRCQ==|| joined server -2023-06-08 13:01:17.398790 + : SharpKnowI||pb-IF4JUBkxKw==|| joined server -2023-06-08 13:01:19.406610 + : UsefulRove||pb-IF4xVRI9Mg==|| joined server -2023-06-08 13:03:44.020632 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-08 13:37:08.982652 + : ChillPligh||pb-IF4sUhUgIQ==|| joined server -2023-06-08 13:42:30.147325 + : EngorgedI7||pb-IF4vVVozIg==|| joined server -2023-06-08 13:45:57.996976 + : anisakthar||pb-IF4wVXAkLA==|| joined server -2023-06-08 13:46:06.036202 + : AerialMark||pb-IF5XUkoGDw==|| joined server -2023-06-08 13:51:08.255639 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2023-06-08 14:03:44.136543 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-08 14:05:50.636270 + : Android64735588||pb-IF4cUBdYIQ==|| joined server -2023-06-08 14:05:57.665404 + : AppallingU||pb-IF4gVFdbJA==|| joined server -2023-06-08 14:07:14.917163 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-08 14:11:54.046109 + : minalachu8||pb-IF4RUhQyJg==|| joined server -2023-06-08 14:12:09.103843 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-08 14:19:25.836663 + : Android55928477||pb-IF4JUmwqLQ==|| joined server -2023-06-08 14:19:56.974576 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-08 14:22:45.624806 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2023-06-08 14:26:39.581828 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-08 14:28:29.981378 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-08 14:31:23.607812 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 14:34:09.225731 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-08 14:34:34.318807 + : hekker||pb-IF4lUxMSHw==|| joined server -2023-06-08 14:35:38.551204 + : Fazilpuria||pb-IF4NV3oIFA==|| joined server -2023-06-08 14:45:25.779440 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-08 14:48:56.564908 + : sahniharsh||pb-IF4LV20GMw==|| joined server -2023-06-08 14:52:30.375232 + : BuffBeef14||pb-IF4-UxNTNA==|| joined server -2023-06-08 14:53:02.483375 + : harshal||pb-IF4vU0MENg==|| joined server -2023-06-08 15:05:41.259416 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 15:06:12.377651 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-08 15:06:59.534192 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 15:11:07.466152 + : Lightni635||pb-IF4yUBcZAw==|| joined server -2023-06-08 15:16:09.685417 + : Lucklesspe||pb-IF4jU2gAEg==|| joined server -2023-06-08 15:17:02.892119 + : Android63294581||pb-IF4BU0EsIg==|| joined server -2023-06-08 15:17:12.925156 + : Android63294581||pb-IF4BU0EsIg==|| joined server -2023-06-08 15:24:55.717011 + : Healthi628||pb-IF4JU0sADA==|| joined server -2023-06-08 15:26:02.035564 + : Player disconnected, reached max players per IP address || pb-IF4JU0sADA== -2023-06-08 15:26:03.040772 + : Soloboom38||pb-IF4jVWsgNw==|| joined server -2023-06-08 15:26:47.203642 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-08 15:27:25.346108 + : Chiragdhil||pb-IF4xUnQNVA==|| joined server -2023-06-08 15:31:25.319601 + : Saurabhtha||pb-IF4hVHg7CA==|| joined server -2023-06-08 15:35:07.094242 + : Saurabhtha||pb-IF4hVHg7CA==|| joined server -2023-06-08 15:47:49.052639 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-08 15:54:11.475572 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 16:02:53.498861 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 16:10:46.307729 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 16:19:17.999396 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-08 16:24:57.335892 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-08 16:25:03.357679 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-08 16:25:09.392168 + : chugambara||pb-IF42U2wGFw==|| joined server -2023-06-08 16:25:24.451276 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-08 16:25:29.472270 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 16:27:25.932228 + : Android54561276||pb-IF4zUk4zBw==|| joined server -2023-06-08 16:32:42.035090 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-08 16:35:58.705319 + : LushMateri||pb-IF4TUGkAMQ==|| joined server -2023-06-08 16:36:29.840100 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-08 16:38:35.304496 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-08 16:38:56.377136 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-08 16:39:03.399617 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-08 16:39:08.418761 + : LushMateri||pb-IF4TUGkAMQ==|| joined server -2023-06-08 16:39:41.529362 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-08 16:42:44.222253 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-08 16:50:09.999621 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-08 16:56:11.377556 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-08 16:56:17.409472 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-08 16:56:46.526146 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-08 16:57:11.609515 + : SmoothyBro||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2023-06-08 16:58:56.049954 + : MockingFo4||pb-IF5QVRcvUw==|| joined server -2023-06-08 17:03:20.050597 + : Leog||pb-IF4IVXZcEA==|| joined server -2023-06-08 17:04:06.193651 + : SingingTac||pb-IF49I04z|| joined server -2023-06-08 17:04:15.231116 + : Znab||pb-IF4tUGMBCg==|| joined server -2023-06-08 17:04:36.282349 + : Znab||pb-IF4tUGMBCg==|| joined server -2023-06-08 17:06:13.561690 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-08 17:06:23.607274 + : GoldenCor2||pb-IF4KAlQP|| joined server -2023-06-08 17:10:00.380319 + : Perempt288||pb-IF5WUGcOFw==|| joined server -2023-06-08 17:10:10.414761 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-08 17:12:43.981000 + : Leog||pb-IF4IVXZcEA==|| joined server -2023-06-08 17:13:15.095412 + : harshaguta||pb-JiNJARBbU0FGWVdEFkJUUFVBF0BYRFRD|| joined server -2023-06-08 17:13:19.111559 + : Leog||pb-IF4IVXZcEA==|| joined server -2023-06-08 17:13:30.133630 + : deebuckcol||pb-IF49Uk0HIw==|| joined server -2023-06-08 17:14:51.457945 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-08 17:16:42.867220 + : EliteSage2||pb-IF4HVHpcFQ==|| joined server -2023-06-08 17:18:12.185326 + : Answera184||pb-IF4oUBITMA==|| joined server -2023-06-08 17:22:37.110006 + : ActingBoar||pb-IF4KU2wtJg==|| joined server -2023-06-08 17:22:55.194989 + : Luciferrev||pb-IF48UBAPHQ==|| joined server -2023-06-08 17:25:35.795013 + : HypnoticA4||pb-IF4TV3RbDA==|| joined server -2023-06-08 17:28:28.429540 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-08 17:30:46.895619 + : Asserti364||pb-IF4uUGkPFw==|| joined server -2023-06-08 17:31:11.985653 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-08 17:32:24.274451 + : DOLLAR||pb-IF5UUxheIg==|| joined server -2023-06-08 17:32:55.387808 + : Luciferrev||pb-IF48UBAPHQ==|| joined server -2023-06-08 17:33:23.502477 + : Luciferrev||pb-IF48UBAPHQ==|| joined server -2023-06-08 17:33:36.555053 + : Luciferrev||pb-IF48UBAPHQ==|| joined server -2023-06-08 17:33:48.664878 + : Luciferrev||pb-IF48UBAPHQ==|| joined server -2023-06-08 17:34:18.747929 + : Pulove||pb-IF4XVHBdIQ==|| joined server -2023-06-08 17:34:25.789840 + : Luciferrev||pb-IF48UBAPHQ==|| joined server -2023-06-08 17:37:41.625393 + : GOJOSATUR3||pb-IF4lU00yCQ==|| joined server -2023-06-08 17:39:55.083323 + : Pulove||pb-IF4XVHBdIQ==|| joined server -2023-06-08 17:40:04.121062 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-08 17:41:36.463828 + : Deliber168||pb-IF4AVRYOXA==|| joined server -2023-06-08 17:45:35.317793 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-08 17:46:28.510193 + : Rationa180||pb-IF4sUBlfMw==|| joined server -2023-06-08 17:48:27.956418 + : HypnoticA4||pb-IF4TV3RbDA==|| joined server -2023-06-08 17:54:36.321229 + : HonkingSom||pb-IF49VVUHAw==|| joined server -2023-06-08 17:59:34.503871 + : standardM4||pb-IF4LVURYIA==|| joined server -2023-06-08 18:00:52.841082 + : Android58054233||pb-IF4MUkYyBg==|| joined server -2023-06-08 18:04:33.708425 + : Pointle159||pb-IF4TUBIxEw==|| joined server -2023-06-08 18:04:49.759518 + : Pointle159||pb-IF4TUBIxEw==|| joined server -2023-06-08 18:06:15.083818 + : vijaybarol||pb-IF5UUGwvJA==|| joined server -2023-06-08 18:11:12.165403 + : Monocle144||pb-IF4xVUMlFQ==|| joined server -2023-06-08 18:11:35.255242 + : SolubleHin||pb-IF4yU0MhKA==|| joined server -2023-06-08 18:13:05.587809 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-08 18:16:52.365237 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-08 18:17:47.583289 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-08 18:25:28.392436 + : WhatsApp||pb-IF4IV04ZKw==|| joined server -2023-06-08 18:25:38.446584 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-08 18:27:06.852187 + : AerialMark||pb-IF5XUkoGDw==|| joined server -2023-06-08 18:27:08.861858 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-08 18:27:14.877782 + : AerialMark||pb-IF5XUkoGDw==|| joined server -2023-06-08 18:34:58.607012 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-08 18:36:49.032378 + : AnnualCoug||pb-IF4iUlBfKQ==|| joined server -2023-06-08 18:37:36.204217 + : KeenestLi3||pb-IF5RUGQCUQ==|| joined server -2023-06-08 18:42:25.313295 + : SingingTac||pb-IF49I04z|| joined server -2023-06-08 18:42:57.536918 + : Monocle144||pb-IF4xVUMlFQ==|| joined server -2023-06-08 18:43:39.704374 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-08 18:46:28.401581 + : Android50474962||pb-IF5XVUFcJg==|| joined server -2023-06-08 18:52:51.922782 + : MrSilver||pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG|| joined server -2023-06-08 18:56:06.711430 + : Monolit286||pb-IF4rUGg6Mg==|| joined server -2023-06-08 19:00:40.656231 + : GrubbyDanc||pb-IF4uV21ZEA==|| joined server -2023-06-08 19:04:00.368789 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 19:14:40.664852 + : RenownedEm||pb-IF4XVWxSFg==|| joined server -2023-06-08 19:17:08.185777 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-08 19:23:31.658739 + : Ishan38||pb-IF4FUGkBUw==|| joined server -2023-06-08 19:25:38.101813 + : PortableT8||pb-IF49UBEhJA==|| joined server -2023-06-08 19:25:57.197817 + : Android53159530||pb-IF4BVVU_BA==|| joined server -2023-06-08 19:26:39.342294 + : mansoorman||pb-IF4WU2ctKA==|| joined server -2023-06-08 19:26:43.346451 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 19:26:49.381790 + : Preside173||pb-IF4RUGMsFg==|| joined server -2023-06-08 19:27:10.447981 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 19:27:11.448942 + : ViralGravi||pb-IF5QU2gNXA==|| joined server -2023-06-08 19:27:12.453468 + : PortableT8||pb-IF49UBEhJA==|| joined server -2023-06-08 19:28:05.807188 + : Android51863989||pb-IF4mVUgDNg==|| joined server -2023-06-08 19:29:24.051978 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-08 19:29:53.146532 + : Android53825487||pb-IF48UhEiEg==|| joined server -2023-06-08 19:30:37.402487 + : TipTopSupe||pb-IF4dUGpbUA==|| joined server -2023-06-08 19:32:00.702617 + : MassSway35||pb-IF4HLGgm|| joined server -2023-06-08 19:35:10.395030 + : PortableT8||pb-IF49UBEhJA==|| joined server -2023-06-08 19:35:51.554839 + : CrinklyHou||pb-IF5dUGlcJA==|| joined server -2023-06-08 19:37:32.904681 + : ParanoidB9||pb-IF4GUnhdIg==|| joined server -2023-06-08 19:37:43.958391 + : ZigFilter1||pb-IF4TU00bVw==|| joined server -2023-06-08 19:37:51.990139 + : CrinklyHou||pb-IF5dUGlcJA==|| joined server -2023-06-08 19:38:10.058506 + : LucklessKi||pb-IF4sUGQxNg==|| joined server -2023-06-08 19:38:12.063673 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-08 19:58:08.599248 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 20:20:43.533919 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2023-06-08 20:20:55.575200 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 20:21:20.673964 + : Android64946881||pb-IF4OUGM7FA==|| joined server -2023-06-08 20:21:32.716265 + : Independ55||pb-IF4gU0Y7AQ==|| joined server -2023-06-08 20:23:24.288267 + : siddhant23||pb-IF4cU2hdAw==|| joined server -2023-06-08 20:27:40.299410 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2023-06-08 20:28:58.573648 + : Thirtee255||pb-IF4iVWlTBg==|| joined server -2023-06-08 20:29:00.581720 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2023-06-08 20:33:19.680289 + : Android65166757||pb-IF4cUGgxHw==|| joined server -2023-06-08 20:36:18.540944 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-08 20:38:33.081072 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-08 20:40:53.622868 + : Android48646626||pb-IF5UVW4FUQ==|| joined server -2023-06-08 20:42:53.119830 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 20:43:37.264182 + : PC605822||pb-IF4HU0VcCA==|| joined server -2023-06-08 20:46:22.871719 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 20:46:48.972549 + : ASSASSINR4||pb-IF5SU3EgMw==|| joined server -2023-06-08 20:53:49.723494 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-08 20:54:56.982103 + : Classica67||pb-IF41U1U9BA==|| joined server -2023-06-08 20:55:52.318209 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 21:03:46.311068 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 21:12:52.510181 + : Android64057825||pb-IF4JU1EuEQ==|| joined server -2023-06-08 21:25:53.460396 + : ThermalMa4||pb-IF4QU2sZLg==|| joined server -2023-06-08 21:29:14.259923 + : Android64050769||pb-IF4wU1EMVQ==|| joined server -2023-06-08 21:33:32.237726 + : Android58474907||pb-IF4wVRkMAQ==|| joined server -2023-06-08 21:36:04.843407 + : FoolishMar||pb-IF4MUk0CEg==|| joined server -2023-06-08 21:36:10.871084 + : Android64946881||pb-IF4OUGM7FA==|| joined server -2023-06-08 21:46:49.278893 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-08 21:47:06.331596 + : thegodofth||pb-IF5SU0MtBw==|| joined server -2023-06-08 21:51:59.547793 + : ZOYAsays||pb-IF4gU0wxBw==|| joined server -2023-06-08 21:56:53.705973 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-08 21:57:11.811963 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-08 21:57:23.859439 + : Slipper427||pb-IF4vUmMbLg==|| joined server -2023-06-08 21:57:38.895109 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-08 21:58:00.962858 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-08 21:58:02.972089 + : Slipper427||pb-IF4vUmMbLg==|| joined server -2023-06-08 21:58:06.987678 + : Android64714932||pb-IF4KUBYdPQ==|| joined server -2023-06-08 21:58:24.056699 + : AerialMark||pb-IF5XUkoGDw==|| joined server -2023-06-08 22:03:23.181872 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 22:03:30.205853 + : Nondesc194||pb-IF5VUGQ7Uw==|| joined server -2023-06-08 22:04:08.347243 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 22:05:52.737150 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 22:07:07.977844 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 22:07:16.007826 + : FainterKic||pb-IF4sU1EhUg==|| joined server -2023-06-08 22:09:50.503371 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-08 22:10:08.588796 + : MinusSpect||pb-IF4VU1ozLQ==|| joined server -2023-06-08 22:11:24.898829 + : ZOYAsays||pb-IF4gU0wxBw==|| joined server -2023-06-08 22:12:07.062602 + : Maisha2910||pb-IF4pUlkJKw==|| joined server -2023-06-08 22:12:14.087851 + : Maisha2910||pb-IF4pUlkJKw==|| joined server -2023-06-08 22:15:49.172537 + : Anasprogam||pb-IF4KUGdZKA==|| joined server -2023-06-08 22:20:31.316569 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-08 22:21:25.538295 + : ongaming90||pb-IF4RUkEoCw==|| joined server -2023-06-08 22:29:20.439488 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-08 22:34:03.501610 + : ahmed365||pb-IF4XUBEqVA==|| joined server -2023-06-08 22:35:45.894976 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-08 22:36:08.976748 + : Android58474907||pb-IF4wVRkMAQ==|| joined server -2023-06-08 22:36:18.008950 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2023-06-08 22:36:46.091072 + : Android58474907||pb-IF4wVRkMAQ==|| joined server -2023-06-08 22:41:17.220192 + : Pointle159||pb-IF4TUBIxEw==|| joined server -2023-06-08 22:50:43.324862 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-08 22:53:09.896907 + : PoorerInex||pb-IF4BUGYzPQ==|| joined server -2023-06-08 22:59:00.229483 + : Selvapravi||pb-IF4LVWEDKQ==|| joined server -2023-06-08 23:03:26.245406 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-08 23:03:37.278261 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-08 23:03:59.388979 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-08 23:04:18.519363 + : vijaybarol||pb-IF5UUGwvJA==|| joined server -2023-06-08 23:06:37.006006 + : Android58474907||pb-IF4wVRkMAQ==|| joined server -2023-06-08 23:07:18.160409 + : rouaflala||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2023-06-08 23:07:46.253740 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-08 23:10:03.277802 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-08 23:10:11.304675 + : rouaflala||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2023-06-08 23:11:44.648498 + : Miraculo17||pb-IF5UU3YxEA==|| joined server -2023-06-08 23:12:02.720762 + : Independ55||pb-IF4gU0Y7AQ==|| joined server -2023-06-08 23:12:20.784551 + : Miraculo17||pb-IF5UU3YxEA==|| joined server -2023-06-08 23:12:42.871260 + : Independ55||pb-IF4gU0Y7AQ==|| joined server -2023-06-08 23:13:36.049001 + : Karry||pb-IF42UGooDA==|| joined server -2023-06-08 23:14:04.144005 + : rouaflala||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2023-06-08 23:14:15.182258 + : Independ55||pb-IF4gU0Y7AQ==|| joined server -2023-06-08 23:14:46.307241 + : Independ55||pb-IF4gU0Y7AQ==|| joined server -2023-06-08 23:16:12.621381 + : Independ55||pb-IF4gU0Y7AQ==|| joined server -2023-06-08 23:16:20.648868 + : SweetAnaly||pb-IF5UVRZfIA==|| joined server -2023-06-08 23:17:26.906595 + : Android65163483||pb-IF4dUGgOHw==|| joined server -2023-06-08 23:21:37.842218 + : SharpEnemy||pb-IF4zU2MgJw==|| joined server -2023-06-08 23:22:16.986144 + : Android58474907||pb-IF4wVRkMAQ==|| joined server -2023-06-08 23:22:44.066849 + : SlowerLea2||pb-IF43U2QiKA==|| joined server -2023-06-08 23:22:44.067846 + : Independ55||pb-IF4gU0Y7AQ==|| joined server -2023-06-08 23:23:43.278307 + : SternComme||pb-IF5VUmUYVw==|| joined server -2023-06-08 23:25:06.561700 + : Karry||pb-IF42UGooDA==|| joined server -2023-06-08 23:26:01.761148 + : Tanmaysaur||pb-IF4XU0ddEA==|| joined server -2023-06-08 23:26:25.843566 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-08 23:31:34.034264 + : IdealPacka||pb-IF4UUGQuFw==|| joined server -2023-06-08 23:32:57.318322 + : Ghost0001||pb-IF4vVRUFVA==|| joined server -2023-06-08 23:34:42.726465 + : Chiragdhil||pb-IF4xUnQNVA==|| joined server -2023-06-08 23:35:43.938770 + : Karry||pb-IF42UGooDA==|| joined server -2023-06-08 23:37:19.281787 + : SharpEnemy||pb-IF4zU2MgJw==|| joined server -2023-06-08 23:43:58.679017 + : SharpEnemy||pb-IF4zU2MgJw==|| joined server -2023-06-08 23:44:20.738642 + : OutwardSa3||pb-IF4sU00tMA==|| joined server -2023-06-08 23:58:23.862361 + : SharpEnemy||pb-IF4zU2MgJw==|| joined server -2023-06-09 00:00:18.335614 + : Aikuros||pb-IF49VFQlPA==|| joined server -2023-06-09 00:02:51.940551 + : Ghost0001||pb-IF4vVRUFVA==|| joined server -2023-06-09 00:04:32.328718 + : Ghost0001||pb-IF4vVRUFVA==|| joined server -2023-06-09 00:06:35.794499 + : TRON||pb-JiNJARFZVEJCXVtDF09RU1NBGUVYQVBG|| joined server -2023-06-09 00:07:17.966647 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-09 00:08:02.155134 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-09 00:10:45.756509 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-09 00:14:24.595631 + : Ghost0001||pb-IF4vVRUFVA==|| joined server -2023-06-09 00:14:29.625414 + : SecludedH2||pb-IF4dU0wPIw==|| joined server -2023-06-09 00:14:43.663928 + : Linux54607||pb-IF4KUGYGFQ==|| joined server -2023-06-09 00:15:13.769833 + : Ghost0001||pb-IF4vVRUFVA==|| joined server -2023-06-09 00:16:20.099841 + : TinyProfit||pb-IF41UBQPXA==|| joined server -2023-06-09 00:17:57.459637 + : Android58474907||pb-IF4wVRkMAQ==|| joined server -2023-06-09 00:18:24.541374 + : ShinyCarp8||pb-IF4VMREI|| joined server -2023-06-09 00:19:25.754422 + : WhatsApp||pb-IF4IV04ZKw==|| joined server -2023-06-09 00:20:21.966516 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-09 00:21:01.091900 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-09 00:24:51.893934 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-09 00:29:53.032181 + : Dhruv0999||pb-JiNJARFbXUFCWFpGF0ZTXVNHEUZaQlNB|| joined server -2023-06-09 00:31:04.271465 + : Independ55||pb-IF4gU0Y7AQ==|| joined server -2023-06-09 00:37:14.576261 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 00:39:07.986007 + : Aikuros||pb-IF49VFQlPA==|| joined server -2023-06-09 00:40:03.196652 + : Android61285593||pb-IF4VUkYnMw==|| joined server -2023-06-09 00:43:13.840854 + : NeatDonati||pb-IF5RUGkPJg==|| joined server -2023-06-09 00:44:18.055483 + : Miraculo17||pb-IF5UU3YxEA==|| joined server -2023-06-09 01:01:20.988458 + : Android55641762||pb-IF4yUmkuLw==|| joined server -2023-06-09 01:04:15.615212 + : Independ55||pb-IF4gU0Y7AQ==|| joined server -2023-06-09 01:33:06.047579 + : TANMAYMICH||pb-JiNJARBbUkZFWVZIF05UVVxHGURcTlFH|| joined server -2023-06-09 01:41:33.064963 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 02:02:28.765145 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 02:23:51.481048 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 03:06:19.687716 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 03:08:09.069250 + : Firestar||pb-IF4iUGkcNw==|| joined server -2023-06-09 03:27:27.237578 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 03:48:46.991280 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 04:25:13.772162 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 04:46:40.536547 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 05:08:34.174291 + : NoName707355||pb-IF5dUkgMMA==|| joined server -2023-06-09 05:25:30.991021 + : ahmed365||pb-IF4XUBEqVA==|| joined server -2023-06-09 06:33:26.581111 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 06:36:14.187214 + : iamtex0001||pb-IF49VFdbEQ==|| joined server -2023-06-09 06:54:31.159893 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 06:55:05.281320 + : PortlyStil||pb-IF40UGUbAw==|| joined server -2023-06-09 07:16:17.916422 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 08:20:06.014830 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 08:41:43.887592 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 08:43:25.259520 + : KeenestLi3||pb-IF5RUGQCUQ==|| joined server -2023-06-09 08:53:03.536129 + : VISHUUU||pb-IF5cVXEyAA==|| joined server -2023-06-09 09:02:45.713973 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 09:05:13.248970 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-09 09:06:55.608626 + : Android43671493||pb-IF5QVFMCUg==|| joined server -2023-06-09 09:29:52.587226 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-09 09:35:45.868683 + : Krarozdjfj||pb-IF4RVUc6EA==|| joined server -2023-06-09 09:39:48.710836 + : FixedProto||pb-IF4rUGItDg==|| joined server -2023-06-09 09:44:22.639077 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 10:15:26.282372 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-09 10:18:12.975620 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-09 10:19:49.506995 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-09 10:25:30.767992 + : Android61022597||pb-IF4oU2EbKg==|| joined server -2023-06-09 10:25:51.841944 + : WhatsApp||pb-IF4IV04ZKw==|| joined server -2023-06-09 10:26:43.033346 + : vijaybarol||pb-IF5UUGwvJA==|| joined server -2023-06-09 10:27:54.283649 + : John30||pb-IF4-U3M7Ug==|| joined server -2023-06-09 10:30:19.797318 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-09 10:47:39.933428 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 10:48:27.106759 + : vijaybarol||pb-IF5UUGwvJA==|| joined server -2023-06-09 10:52:35.988268 + : LoudStarfi||pb-IF4iU0VbLw==|| joined server -2023-06-09 10:56:39.892508 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-09 10:57:20.032048 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-09 11:07:00.208504 + : AmusingTr3||pb-IF5RUGMmNQ==|| joined server -2023-06-09 11:27:28.834600 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-09 11:32:29.061901 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-09 11:33:37.281365 + : vijaybarol||pb-IF5UUGwvJA==|| joined server -2023-06-09 11:53:15.853701 + : Crippli172||pb-IF4nU0ciEw==|| joined server -2023-06-09 11:54:06.031791 + : SmallerPa5||pb-IF4gUGIMNg==|| joined server -2023-06-09 11:57:35.839139 + : SavvyOutl2||pb-IF4FUxMtPQ==|| joined server -2023-06-09 11:58:36.055029 + : Broadest50||pb-IF4mUBUKIw==|| joined server -2023-06-09 12:00:17.413436 + : NoNameB2525719||pb-IF4vUkRaEg==|| joined server -2023-06-09 12:03:25.121016 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-09 12:04:21.361333 + : ZOYAsays||pb-IF4gU0wxBw==|| joined server -2023-06-09 12:07:19.011590 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-09 12:07:21.017841 + : VishnuPri4||pb-IF4FUGUANg==|| joined server -2023-06-09 12:08:49.326808 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-09 12:10:04.588374 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-09 12:15:33.658194 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-09 12:17:04.983057 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-09 12:18:09.194986 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-09 12:21:40.993288 + : subha1290||pb-IF4gUksyMQ==|| joined server -2023-06-09 12:22:05.079401 + : subha1290||pb-IF4gUksyMQ==|| joined server -2023-06-09 12:27:55.451879 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 12:29:07.717770 + : VividMysti||pb-IF4MUBMHKA==|| joined server -2023-06-09 12:33:12.614187 + : vijaybarol||pb-IF5UUGwvJA==|| joined server -2023-06-09 12:38:32.858320 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-09 12:39:01.945528 + : EarlierAss||pb-IF4CVFkdKQ==|| joined server -2023-06-09 12:39:53.163206 + : Concomita8||pb-IF4VUlJYFg==|| joined server -2023-06-09 12:44:44.213985 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-09 12:45:39.422809 + : TherockJK1||pb-IF4NVxAZDg==|| joined server -2023-06-09 12:46:08.514750 + : vishiihsiv||pb-IF4CKhYn|| joined server -2023-06-09 12:48:18.934168 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-09 13:03:05.101492 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-09 13:03:34.199410 + : AnuragRdav||pb-IF4cUxYIHw==|| joined server -2023-06-09 13:05:32.586087 + : Android53825487||pb-IF48UhEiEg==|| joined server -2023-06-09 13:05:57.690567 + : AnuragRdav||pb-IF4cUxYIHw==|| joined server -2023-06-09 13:06:32.830626 + : Homulilly||pb-IF4wVVk8Jg==|| joined server -2023-06-09 13:09:40.489461 + : Android65221271||pb-IF4PUGo9Hw==|| joined server -2023-06-09 13:10:11.606658 + : MarineVect||pb-IF5cUkszBg==|| joined server -2023-06-09 13:10:19.634297 + : IndigoOnio||pb-IF4sCXI9|| joined server -2023-06-09 13:10:32.674665 + : SmoothyBro||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2023-06-09 13:14:01.406297 + : FoolishMar||pb-IF4MUk0CEg==|| joined server -2023-06-09 13:16:22.930945 + : lodhipro17||pb-IF4MU08lCQ==|| joined server -2023-06-09 13:18:38.505267 + : minalachu8||pb-IF4RUhQyJg==|| joined server -2023-06-09 13:20:23.847166 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-09 13:22:36.296975 + : MossyArti2||pb-IF4vU2EzMg==|| joined server -2023-06-09 13:22:58.369071 + : zM116FDdu||pb-IF4wUlIYCg==|| joined server -2023-06-09 13:24:17.653961 + : calmdev||pb-IF4FUBlYUA==|| joined server -2023-06-09 13:24:34.708461 + : calmdev||pb-IF4FUBlYUA==|| joined server -2023-06-09 13:25:45.975475 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-09 13:25:45.975825 + : EasternS13||pb-IF4BUlQGCA==|| joined server -2023-06-09 13:26:13.056948 + : EasternS13||pb-IF4BUlQGCA==|| joined server -2023-06-09 13:26:17.065561 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-09 13:26:48.170088 + : Gosportdel||pb-IF4tNxUh|| joined server -2023-06-09 13:27:20.286234 + : Mrprickly1||pb-IF5QVUU-Mw==|| joined server -2023-06-09 13:28:14.493276 + : ArmoredOrc||pb-IF40UnoJUA==|| joined server -2023-06-09 13:29:43.781846 + : TherockJK1||pb-IF4NVxAZDg==|| joined server -2023-06-09 13:30:25.914662 + : Homulilly||pb-IF4wVVk8Jg==|| joined server -2023-06-09 13:40:14.026445 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-09 13:41:29.310564 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-09 13:41:45.376131 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-09 13:42:59.699368 + : EliteSage2||pb-IF4HVHpcFQ==|| joined server -2023-06-09 13:46:18.450431 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-09 13:51:04.496151 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-09 13:59:40.379312 + : StoneDemig||pb-IF5cPGsk|| joined server -2023-06-09 14:00:39.650123 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-09 14:00:41.657288 + : skullgame4||pb-JiNJARFcUUZCW19DGEdQV1VAEkVYRFFF|| joined server -2023-06-09 14:04:19.417072 + : IndigoOnio||pb-IF4sCXI9|| joined server -2023-06-09 14:06:36.918837 + : StoneDemig||pb-IF5cPGsk|| joined server -2023-06-09 14:10:08.647600 + : PointyGoos||pb-IF4hUBIkPQ==|| joined server -2023-06-09 14:10:34.745107 + : IndigoOnio||pb-IF4sCXI9|| joined server -2023-06-09 14:10:35.749445 + : skullgame4||pb-JiNJARFcUUZCW19DGEdQV1VAEkVYRFFF|| joined server -2023-06-09 14:11:18.894736 + : Android53825487||pb-IF48UhEiEg==|| joined server -2023-06-09 14:11:44.986223 + : Android53825487||pb-IF48UhEiEg==|| joined server -2023-06-09 14:12:44.202490 + : Android53825487||pb-IF48UhEiEg==|| joined server -2023-06-09 14:14:53.817542 + : Unworth119||pb-IF4IUGQRHw==|| joined server -2023-06-09 14:17:56.459873 + : TinyProfit||pb-IF41UBQPXA==|| joined server -2023-06-09 14:19:08.692637 + : Android64209989||pb-IF4BU1QdIw==|| joined server -2023-06-09 14:19:33.776370 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-09 14:20:57.103216 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-09 14:22:20.439365 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-09 14:23:17.640795 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-09 14:25:44.175133 + : Harmles193||pb-IF4GUGgEUQ==|| joined server -2023-06-09 14:26:53.447120 + : TherockJK1||pb-IF4NVxAZDg==|| joined server -2023-06-09 14:30:05.239673 + : littleoutb||pb-IF4iU1RbLA==|| joined server -2023-06-09 14:33:06.908713 + : Egocent107||pb-IF5RU1lfAQ==|| joined server -2023-06-09 14:45:22.852445 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-09 14:48:29.508933 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-09 14:49:07.651128 + : LegendaryD||pb-IF5WU0gIUQ==|| joined server -2023-06-09 14:49:19.695812 + : Android43671493||pb-IF5QVFMCUg==|| joined server -2023-06-09 14:49:54.818722 + : zM116FDdu||pb-IF4wUlIYCg==|| joined server -2023-06-09 14:50:09.895347 + : Loiteri140||pb-IF4nUnZfJg==|| joined server -2023-06-09 14:52:05.320945 + : ProudChihu||pb-IF4hU05dLg==|| joined server -2023-06-09 14:52:56.500187 + : Android65055227||pb-IF4UUGYtKQ==|| joined server -2023-06-09 14:53:10.566074 + : Intracel63||pb-IF4OUBAqNQ==|| joined server -2023-06-09 14:53:45.705952 + : ProudChihu||pb-IF4hU05dLg==|| joined server -2023-06-09 14:56:12.252726 + : BrinyLunat||pb-IF4LUGYKPw==|| joined server -2023-06-09 15:01:18.560512 + : captainjes||pb-IF4JVEYJEA==|| joined server -2023-06-09 15:02:07.832319 + : RabidFight||pb-IF5RU3UzJA==|| joined server -2023-06-09 15:03:20.089267 + : snipersomi||pb-IF5TUGxYBA==|| joined server -2023-06-09 15:05:17.505596 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-09 15:07:10.960054 + : snipersomi||pb-IF5TUGxYBA==|| joined server -2023-06-09 15:07:26.019032 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-09 15:07:37.064540 + : FuschiaCh3||pb-IF4tV0YpCg==|| joined server -2023-06-09 15:07:52.126914 + : snipersomi||pb-IF5TUGxYBA==|| joined server -2023-06-09 15:09:29.463431 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-09 15:11:38.037466 + : Petrifie71||pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC|| joined server -2023-06-09 15:12:06.137193 + : Hoemie||pb-IF4jF1NY|| joined server -2023-06-09 15:14:57.890874 + : HorridMaj2||pb-IF5XVWJSKw==|| joined server -2023-06-09 15:17:19.493250 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 15:17:49.634300 + : Goldest||pb-IF5dUGglAw==|| joined server -2023-06-09 15:24:50.318212 + : vijaybarol||pb-IF5UUGwvJA==|| joined server -2023-06-09 15:27:11.944964 + : ZOYAsays||pb-IF4gU0wxBw==|| joined server -2023-06-09 15:32:26.205772 + : Consciou55||pb-IF4yU1M-Nw==|| joined server -2023-06-09 15:38:06.634241 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 15:49:37.318989 + : vijaybarol||pb-IF5UUGwvJA==|| joined server -2023-06-09 15:49:54.394406 + : Android65141946||pb-IF5TUGo6VQ==|| joined server -2023-06-09 16:00:36.649971 + : Existen279||pb-IF4XUGI7Aw==|| joined server -2023-06-09 16:02:17.063185 + : Meshram007||pb-IF4JVXoILA==|| joined server -2023-06-09 16:02:29.108399 + : Meshram007||pb-IF4JVXoILA==|| joined server -2023-06-09 16:02:47.183685 + : Faction231||pb-IF4zVUsmIg==|| joined server -2023-06-09 16:05:12.796962 + : Neelesh321||pb-IF4pUnIoJA==|| joined server -2023-06-09 16:06:51.149088 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-09 16:06:58.179377 + : CherryBlo2||pb-IF4SVFkaCQ==|| joined server -2023-06-09 16:08:12.456793 + : AluminumR6||pb-IF4cU04gMQ==|| joined server -2023-06-09 16:09:42.733286 + : FranticWoe||pb-IF4lUkkHUA==|| joined server -2023-06-09 16:20:18.291320 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-09 16:23:26.978108 + : Android64587740||pb-IF5XUBZSDg==|| joined server -2023-06-09 16:24:05.114397 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-09 16:24:38.224588 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-09 16:26:14.541695 + : CHAMPAK99||pb-IF5WU1InPw==|| joined server -2023-06-09 16:26:14.542022 + : FABxRAWAN||pb-IF5UVW4NDA==|| joined server -2023-06-09 16:26:43.629450 + : GamingTrea||pb-IF4SUxkOXQ==|| joined server -2023-06-09 16:32:18.095884 + : DynamicTe3||pb-IF4DUGgBXA==|| joined server -2023-06-09 16:32:36.159364 + : L33tExodu2||pb-IF4OUGgjXQ==|| joined server -2023-06-09 16:32:53.220988 + : FABxRAWAN||pb-IF5UVW4NDA==|| joined server -2023-06-09 16:35:52.315716 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-09 16:36:44.483707 + : InwardGosl||pb-IF4UVWgEFw==|| joined server -2023-06-09 16:37:05.572182 + : SSundee||pb-IF4sUGMeVA==|| joined server -2023-06-09 16:37:58.862408 + : SSundee||pb-IF4sUGMeVA==|| joined server -2023-06-09 16:38:35.030766 + : SSundee||pb-IF4sUGMeVA==|| joined server -2023-06-09 16:39:24.212250 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-09 16:40:40.520409 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-09 16:41:54.900913 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-09 16:42:47.097031 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-09 16:44:15.583022 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-09 16:44:29.648306 + : Android65141946||pb-IF5TUGo6VQ==|| joined server -2023-06-09 16:44:34.664406 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-09 16:45:52.907704 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-09 16:46:03.948654 + : steelshotz||pb-IF4IUGQlNw==|| joined server -2023-06-09 16:48:26.784544 + : Android65214968||pb-IF4VUGpcNA==|| joined server -2023-06-09 16:50:28.385543 + : Android64992544||pb-IF4qUGQ7Eg==|| joined server -2023-06-09 16:52:54.952657 + : HypnoticA4||pb-IF4TV3RbDA==|| joined server -2023-06-09 16:54:43.371464 + : Ryner||pb-IF4RUGocIw==|| joined server -2023-06-09 16:55:08.456100 + : Android63983659||pb-IF5VU1JZMw==|| joined server -2023-06-09 16:55:55.604991 + : HypnoticA4||pb-IF4TV3RbDA==|| joined server -2023-06-09 16:59:46.403039 + : Android49180490||pb-IF5UVXIvNQ==|| joined server -2023-06-09 17:00:19.544501 + : BROWNBEARL||pb-IF4yVEspVg==|| joined server -2023-06-09 17:11:12.036257 + : herora2018||pb-IF4QVRQBMg==|| joined server -2023-06-09 17:12:45.377906 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-09 17:16:03.125199 + : Android49180490||pb-IF5UVXIvNQ==|| joined server -2023-06-09 17:19:35.931578 + : inom1712||pb-IF4FD1c8|| joined server -2023-06-09 17:20:52.208118 + : REPNOGAMER||pb-IF5dVWwqKw==|| joined server -2023-06-09 17:21:37.394786 + : sagar88822||pb-IF4vVUNfEA==|| joined server -2023-06-09 17:22:32.617468 + : vijaybarol||pb-IF5UUGwvJA==|| joined server -2023-06-09 17:22:36.635113 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-09 17:25:23.298072 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-09 17:30:31.863965 + : Electroo||pb-IF5WUmVdDQ==|| joined server -2023-06-09 17:32:52.404044 + : Player disconnected, reached max players per device || None -2023-06-09 17:33:11.479585 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-09 17:38:35.735360 + : Nikhil1393||pb-IF49UxAzBw==|| joined server -2023-06-09 17:39:08.878967 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-09 17:39:37.977341 + : INXANE||pb-IF4HU04uVA==|| joined server -2023-06-09 17:40:21.151077 + : ClearCusto||pb-IF4NUxFfEg==|| joined server -2023-06-09 17:40:48.254972 + : Slipper427||pb-IF4vUmMbLg==|| joined server -2023-06-09 17:44:41.414729 + : Rocksol681||pb-IF4IUGExHw==|| joined server -2023-06-09 17:45:26.563066 + : AlluringSe||pb-IF4hUk0NCA==|| joined server -2023-06-09 17:46:14.711318 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-09 17:46:19.727921 + : kingdoom9i||pb-IF5cUGwgMw==|| joined server -2023-06-09 17:47:48.267680 + : IdealGourm||pb-IF4UVRRfNw==|| joined server -2023-06-09 17:50:03.069574 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2023-06-09 17:50:17.117026 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-09 17:51:15.292528 + : Rocksol681||pb-IF4IUGExHw==|| joined server -2023-06-09 17:51:41.390742 + : Liquiddes2||pb-JiNJARBbUkdIVVZGF0ZZUFVAF0ldRFlB|| joined server -2023-06-09 18:04:55.335059 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2023-06-09 18:06:13.616139 + : Yaman4||pb-IF4wU2MhUg==|| joined server -2023-06-09 18:07:53.046812 + : Yaman4||pb-IF4wU2MhUg==|| joined server -2023-06-09 18:13:08.205997 + : VigorousV2||pb-IF4nUGkIBw==|| joined server -2023-06-09 18:14:22.461973 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-09 18:15:01.573437 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-09 18:16:14.852040 + : joythegrea||pb-IF4HVVMKEQ==|| joined server -2023-06-09 18:16:40.930838 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-09 18:18:19.289556 + : WHITEARMY1||pb-IF4WUBJcVQ==|| joined server -2023-06-09 18:18:37.355407 + : Android65134984||pb-IF5WUGkeKA==|| joined server -2023-06-09 18:25:21.856399 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 18:28:16.494799 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-09 18:31:53.309630 + : Opposit104||pb-IF5VUGY9KQ==|| joined server -2023-06-09 18:32:01.336563 + : Opposit104||pb-IF5VUGY9KQ==|| joined server -2023-06-09 18:46:57.793668 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 18:51:29.863030 + : eatEm||pb-IF4lUxMSHw==|| joined server -2023-06-09 18:52:39.111415 + : joythegrea||pb-IF4HVVMKEQ==|| joined server -2023-06-09 18:56:45.946938 + : eatEm||pb-IF4lUxMSHw==|| joined server -2023-06-09 18:58:20.298456 + : Existen279||pb-IF4XUGI7Aw==|| joined server -2023-06-09 18:58:50.425441 + : Nubplayer||pb-IF4FVFUxVw==|| joined server -2023-06-09 18:59:06.475364 + : DearerImba||pb-IF5VVXomFA==|| joined server -2023-06-09 18:59:51.635965 + : Rheumat284||pb-IF4KUlA8Ig==|| joined server -2023-06-09 19:04:18.645324 + : GallingRea||pb-IF48UGoSFA==|| joined server -2023-06-09 19:07:59.441923 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 19:31:58.832149 + : Thorfinn0||pb-IF4OU2QjMQ==|| joined server -2023-06-09 19:40:21.691979 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-09 19:51:07.129289 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 20:10:04.536817 + : Android63294581||pb-IF4BU0EsIg==|| joined server -2023-06-09 20:17:54.363683 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-09 20:32:46.312010 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-09 20:33:18.424073 + : SingingTac||pb-IF49I04z|| joined server -2023-06-09 20:51:10.544176 + : Android63294581||pb-IF4BU0EsIg==|| joined server -2023-06-09 21:00:18.621403 + : Android65007849||pb-IF4UUGQHMA==|| joined server -2023-06-09 21:05:37.853071 + : minalachu8||pb-IF4RUhQyJg==|| joined server -2023-06-09 21:07:05.174812 + : Harshhhh12||pb-IF4CVBUiFA==|| joined server -2023-06-09 21:11:44.212300 + : Manupereva||pb-JiNJARBTUURJWFtAEkZSUFBCEEdWQlRB|| joined server -2023-06-09 21:23:44.948165 + : Android57902869||pb-IF4mUkQaDA==|| joined server -2023-06-09 21:24:01.008657 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-09 21:26:28.512411 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-09 21:33:07.983247 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-09 21:33:39.100049 + : IgnorantD2||pb-IF4XU1AeIQ==|| joined server -2023-06-09 21:45:22.651277 + : Android65143139||pb-IF4HUGgPDg==|| joined server -2023-06-09 21:52:51.342618 + : redmo79||pb-IF41UGcPNQ==|| joined server -2023-06-09 21:57:57.475424 + : Prateek000||pb-IF4sUxNbNA==|| joined server -2023-06-09 22:00:20.066952 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 22:03:08.706614 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-09 22:12:08.672544 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-09 22:26:30.757340 + : PopularPl3||pb-IF4qUBYCLg==|| joined server -2023-06-09 22:32:44.234673 + : hitiblackp||pb-IF4-UlECDQ==|| joined server -2023-06-09 22:33:00.305915 + : ZOYAsays||pb-IF4gU0wxBw==|| joined server -2023-06-09 22:36:43.260042 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-09 22:37:10.334485 + : inom1712||pb-IF4FD1c8|| joined server -2023-06-09 22:40:09.970356 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-09 22:45:47.188273 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-09 22:48:30.781447 + : MuddledFo6||pb-IF4DUGMfXA==|| joined server -2023-06-09 22:49:12.950037 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-09 22:50:58.374874 + : SingingTac||pb-IF49I04z|| joined server -2023-06-09 22:53:27.978550 + : Android64430731||pb-IF4MU1oBFw==|| joined server -2023-06-09 22:55:26.417063 + : Compone291||pb-IF4rUxU7Cg==|| joined server -2023-06-09 23:05:23.541445 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-09 23:08:10.089380 + : Android64127677||pb-IF4wU1MPEg==|| joined server -2023-06-09 23:11:21.812366 + : Android65075234||pb-IF4oUGY8Ug==|| joined server -2023-06-09 23:11:27.827260 + : BawaliGend||pb-IF4iU1APUQ==|| joined server -2023-06-09 23:11:51.895065 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-09 23:12:06.933328 + : Android58474907||pb-IF4wVRkMAQ==|| joined server -2023-06-09 23:14:17.400105 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-09 23:14:32.445821 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-09 23:16:46.978693 + : Nyaa! :3||pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB|| joined server -2023-06-09 23:16:50.997997 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-09 23:17:17.076411 + : Certifie23||pb-IF4WU1I7DQ==|| joined server -2023-06-09 23:17:20.083773 + : IcyWear27||pb-IF4IUBlSHQ==|| joined server -2023-06-09 23:20:39.781204 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-09 23:20:43.791447 + : Certifie23||pb-IF4WU1I7DQ==|| joined server -2023-06-09 23:22:03.123719 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-09 23:22:11.158888 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-09 23:24:48.717768 + : Accredi385||pb-IF5RUBkiKA==|| joined server -2023-06-09 23:25:20.837645 + : Android55956875||pb-IF4XUmwOKw==|| joined server -2023-06-09 23:25:32.880559 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-09 23:26:34.089069 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-09 23:26:57.161745 + : BOMBSQUA32||pb-IF5dU3UiAw==|| joined server -2023-06-09 23:30:23.020303 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-09 23:31:47.326917 + : NoName265731||pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB|| joined server -2023-06-09 23:32:48.568317 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-09 23:34:41.975499 + : Independ55||pb-IF4gU0Y7AQ==|| joined server -2023-06-09 23:35:12.084865 + : Hrithiksng||pb-IF4cUBYfCg==|| joined server -2023-06-09 23:35:50.226384 + : masoom1980||pb-IF4cVGMHLA==|| joined server -2023-06-09 23:36:17.334805 + : vishiihsiv||pb-IF4CKhYn|| joined server -2023-06-09 23:36:21.346496 + : Player disconnected, reached max players per IP address || pb-IF4cVGMHLA== -2023-06-09 23:36:22.351236 + : niloferkha||pb-IF4IUGVTMQ==|| joined server -2023-06-09 23:37:05.494917 + : Rosie07||pb-IF4pU1oqVg==|| joined server -2023-06-09 23:38:31.803405 + : JauntyCens||pb-IF4qU2JZVA==|| joined server -2023-06-09 23:38:45.868133 + : rao18520||pb-JiNJARBfUkFEXFtDGURXVF1HEUFeTlZA|| joined server -2023-06-09 23:43:26.985552 + : MrSilver||pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG|| joined server -2023-06-09 23:45:34.443334 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-09 23:47:24.144031 + : PopularPl3||pb-IF4qUBYCLg==|| joined server -2023-06-09 23:49:56.742634 + : Android58474907||pb-IF4wVRkMAQ==|| joined server -2023-06-09 23:55:42.196135 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-09 23:59:05.069210 + : SharpEnemy||pb-IF4zU2MgJw==|| joined server -2023-06-10 00:07:43.966321 + : Boss007||pb-JiNJARBYXUFHWF5CEUBZV11EGUhdRFVA|| joined server -2023-06-10 00:20:29.215005 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-10 00:20:57.330943 + : Android65216424||pb-IF4mUGkfUw==|| joined server -2023-06-10 00:22:06.760376 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-10 00:23:37.098077 + : JauntyCens||pb-IF4qU2JZVA==|| joined server -2023-06-10 00:26:28.721612 + : InaudibleN||pb-IF4eU0c6PQ==|| joined server -2023-06-10 00:26:40.756063 + : Android65216424||pb-IF4mUGkfUw==|| joined server -2023-06-10 00:30:46.643161 + : RealJellyf||pb-IF4MUGUlEQ==|| joined server -2023-06-10 00:32:41.242573 + : SharpKnowI||pb-IF4JUBkxKw==|| joined server -2023-06-10 00:47:45.733522 + : Aikuros||pb-IF49VFQlPA==|| joined server -2023-06-10 00:47:57.773204 + : Aikuros||pb-IF49VFQlPA==|| joined server -2023-06-10 01:01:57.009895 + : Android65216424||pb-IF4mUGkfUw==|| joined server -2023-06-10 01:05:15.019254 + : HypnoticA4||pb-IF4TV3RbDA==|| joined server -2023-06-10 01:06:24.477839 + : SingingTac||pb-IF49I04z|| joined server -2023-06-10 01:12:07.874324 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-10 01:14:24.347923 + : TRON||pb-JiNJARFZVEJCXVtDF09RU1NBGUVYQVBG|| joined server -2023-06-10 01:25:55.006312 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 01:47:35.810075 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 02:02:28.988913 + : mohdzaid19||pb-IF4DVXAkHw==|| joined server -2023-06-10 02:15:50.046600 + : ANSHU6141||pb-LV4FXxNdVEYUWQtHFEcCVlFAFQ==|| joined server -2023-06-10 02:52:42.335038 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 03:26:15.703659 + : Wazaaaaa83||pb-IF4CU1IzMQ==|| joined server -2023-06-10 03:27:37.993125 + : Android58474907||pb-IF4wVRkMAQ==|| joined server -2023-06-10 03:35:52.729538 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 03:37:45.194689 + : Player disconnected, reached max players per device || pb-IF42U0kxAw== -2023-06-10 04:19:03.022809 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 04:40:38.650463 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 05:45:38.734494 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 05:55:57.014553 + : Android58474907||pb-IF4wVRkMAQ==|| joined server -2023-06-10 06:00:06.913817 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 06:03:34.638585 + : Android64940184||pb-IF4mUGIxIg==|| joined server -2023-06-10 07:05:35.341993 + : MPF||pb-IF4rLkwp|| joined server -2023-06-10 07:06:59.620141 + : MPF||pb-IF4rLkwp|| joined server -2023-06-10 07:16:22.493920 + : WirelessNe||pb-IF4nUkteVA==|| joined server -2023-06-10 07:22:44.874769 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 07:52:05.170531 + : Android64439482||pb-IF41U1oaBg==|| joined server -2023-06-10 08:04:37.881155 + : Thakkudus||pb-JiNJARFdXUdGW1pEE0JZV1JCEUVdQVdA|| joined server -2023-06-10 08:06:08.199412 + : dhamu258||pb-IF5UUGUqCQ==|| joined server -2023-06-10 08:15:24.181796 + : Meander592||pb-IF49UGQSEg==|| joined server -2023-06-10 08:26:18.576520 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 08:47:14.186227 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 08:53:23.492688 + : Sanjam||pb-IF5VVU4CKA==|| joined server -2023-06-10 09:04:09.822322 + : sahniharsh||pb-IF4LV20GMw==|| joined server -2023-06-10 09:09:22.986150 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-10 09:10:09.165212 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-10 09:11:01.368516 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2023-06-10 09:13:24.888450 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-10 09:28:36.151363 + : VividMysti||pb-IF4MUBMHKA==|| joined server -2023-06-10 09:40:10.791388 + : FearlessC4||pb-IF4eU0s9Pw==|| joined server -2023-06-10 09:51:15.140670 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 09:58:29.702474 + : Thakkudus||pb-JiNJARFdXUdGW1pEE0JZV1JCEUVdQVdA|| joined server -2023-06-10 10:01:50.428681 + : FearlessC4||pb-IF4eU0s9Pw==|| joined server -2023-06-10 10:08:45.854168 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-10 10:12:40.710775 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 10:21:25.636025 + : Android62148660||pb-IF4UU288Dw==|| joined server -2023-06-10 10:32:12.394879 + : Android64653674||pb-IF4zUBUlNg==|| joined server -2023-06-10 10:33:36.754908 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 10:46:06.749683 + : Phlegma292||pb-IF5WUGcCLw==|| joined server -2023-06-10 10:54:45.718523 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 10:58:17.521274 + : Ezhil0332||pb-IF4CUBkgNw==|| joined server -2023-06-10 11:03:45.912154 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-10 11:04:26.064262 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-10 11:04:57.171851 + : Accredi385||pb-IF5RUBkiKA==|| joined server -2023-06-10 11:05:50.391769 + : mansoorman||pb-IF4WU2ctKA==|| joined server -2023-06-10 11:07:45.808449 + : vijaybarol||pb-IF5UUGwvJA==|| joined server -2023-06-10 11:15:56.643542 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 11:19:02.342366 + : ZOYAsays||pb-IF4gU0wxBw==|| joined server -2023-06-10 11:19:46.483006 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2023-06-10 11:28:00.470551 + : Iconocl208||pb-IF4NUGkOFg==|| joined server -2023-06-10 11:31:39.312188 + : ZOYAsays||pb-IF4gU0wxBw==|| joined server -2023-06-10 11:42:13.902629 + : Nakumrahul||pb-IF4OPhMg|| joined server -2023-06-10 11:42:45.027273 + : Victori658||pb-IF5TVUg4Bg==|| joined server -2023-06-10 11:43:09.111473 + : Android65216424||pb-IF4mUGkfUw==|| joined server -2023-06-10 11:44:12.352963 + : Android15654903||pb-JiNJARBaUEtDX1xBEEdUU1JKFENbQlFC|| joined server -2023-06-10 11:47:35.243513 + : ZOYAsays||pb-IF4gU0wxBw==|| joined server -2023-06-10 11:48:15.408334 + : HydroClose||pb-IF4UUGEkPA==|| joined server -2023-06-10 11:50:12.844405 + : IdealGourm||pb-IF4UVRRfNw==|| joined server -2023-06-10 11:54:13.666303 + : Volcani179||pb-IF43UGcqPw==|| joined server -2023-06-10 11:54:40.743076 + : Android61525964||pb-IF4qUxBfAw==|| joined server -2023-06-10 11:55:55.126612 + : VividMysti||pb-IF4MUBMHKA==|| joined server -2023-06-10 12:04:28.999311 + : vijaybarol||pb-IF5UUGwvJA==|| joined server -2023-06-10 12:08:58.053647 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-10 12:09:22.141830 + : ATTITUDEB2||pb-IF4IVFkKNA==|| joined server -2023-06-10 12:16:58.793866 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-10 12:17:56.036606 + : NoName2045698||pb-IF5SVUMHDg==|| joined server -2023-06-10 12:18:53.259146 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 12:19:37.405226 + : Thorfinn0||pb-IF4OU2QjMQ==|| joined server -2023-06-10 12:26:45.069130 + : Innocen193||pb-IF4BUGkvNA==|| joined server -2023-06-10 12:27:02.123752 + : vishiihsiv||pb-IF4CKhYn|| joined server -2023-06-10 12:40:16.270314 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 12:48:13.111775 + : Soloboom38||pb-IF4jVWsgNw==|| joined server -2023-06-10 12:48:45.213408 + : eatEm||pb-IF4lUxMSHw==|| joined server -2023-06-10 12:53:01.203029 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2023-06-10 12:55:10.678409 + : ShakyMagic||pb-IF5TUlZaUw==|| joined server -2023-06-10 12:55:44.785214 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-10 12:57:48.231596 + : EliteSage2||pb-IF4HVHpcFQ==|| joined server -2023-06-10 12:58:44.430428 + : chugambara||pb-IF42U2wGFw==|| joined server -2023-06-10 13:03:06.419225 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-10 13:05:21.947452 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-10 13:15:28.243840 + : ClearCusto||pb-IF4NUxFfEg==|| joined server -2023-06-10 13:22:43.930702 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 13:24:37.423275 + : Cosmic7||pb-JiNJARFaV0BAWl9IEENSXFREFEVZRlFH|| joined server -2023-06-10 13:34:44.713333 + : Caverno372||pb-IF4DUGotLw==|| joined server -2023-06-10 13:37:09.303261 + : Obtaina234||pb-IF4UUGNbHA==|| joined server -2023-06-10 13:41:25.243362 + : KT9880||pb-JiNJARBSUkNEX11DGU5RUVFFFEFbT1dF|| joined server -2023-06-10 13:44:12.884878 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 13:49:19.099189 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-10 13:51:09.575403 + : Android63074779||pb-IF4VU3laVA==|| joined server -2023-06-10 13:52:23.843468 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2023-06-10 14:11:46.317293 + : Homulilly||pb-IF4wVVk8Jg==|| joined server -2023-06-10 14:16:57.485665 + : Inconsta73||pb-IF41U1ZZNg==|| joined server -2023-06-10 14:18:46.904364 + : BluishClas||pb-IF4CUhUlFg==|| joined server -2023-06-10 14:21:16.464546 + : SingingTac||pb-IF49I04z|| joined server -2023-06-10 14:25:58.511754 + : SkullmasTe||pb-IF41U0YxAw==|| joined server -2023-06-10 14:26:45.685880 + : Android64790580||pb-IF4GUBgYCw==|| joined server -2023-06-10 14:26:56.711507 + : Player disconnected, reached max players per IP address || pb-IF4GUBgYCw== -2023-06-10 14:26:57.717915 + : Quarrel131||pb-IF4QUlQCUA==|| joined server -2023-06-10 14:27:24.821448 + : Accredi385||pb-IF5RUBkiKA==|| joined server -2023-06-10 14:29:03.308917 + : EliteSage2||pb-IF4HVHpcFQ==|| joined server -2023-06-10 14:29:28.588159 + : chugambara||pb-IF42U2wGFw==|| joined server -2023-06-10 14:29:41.646264 + : Asrofi143||pb-IF4vUkUOXA==|| joined server -2023-06-10 14:29:47.671394 + : TenableCoh||pb-IF4zU20BFA==|| joined server -2023-06-10 14:33:05.405255 + : TenableCoh||pb-IF4zU20BFA==|| joined server -2023-06-10 14:34:49.012919 + : TenableCoh||pb-IF4zU20BFA==|| joined server -2023-06-10 14:36:13.321890 + : TenableCoh||pb-IF4zU20BFA==|| joined server -2023-06-10 14:37:00.469335 + : IAMTHEDON1||pb-IF4VVG8gNQ==|| joined server -2023-06-10 14:40:59.369936 + : RockyYT||pb-IF4MUlU_EQ==|| joined server -2023-06-10 14:41:39.503137 + : CapillaryStreet26||pb-IF4jUhlSFw==|| joined server -2023-06-10 14:41:55.547772 + : CapillaryStreet26||pb-IF4jUhlSFw==|| joined server -2023-06-10 14:42:10.614813 + : RockyYT||pb-IF4MUlU_EQ==|| joined server -2023-06-10 14:47:35.834763 + : SlowestPa2||pb-IF4LVUQhKg==|| joined server -2023-06-10 14:54:36.419432 + : SlowestPa2||pb-IF4LVUQhKg==|| joined server -2023-06-10 14:55:33.642459 + : DsbParth||pb-IF4GU1AEIA==|| joined server -2023-06-10 14:55:58.764390 + : Thorfinn0||pb-IF4OU2QjMQ==|| joined server -2023-06-10 15:01:25.123344 + : Thorfinn0||pb-IF4OU2QjMQ==|| joined server -2023-06-10 15:06:36.318696 + : eatEm||pb-IF4lUxMSHw==|| joined server -2023-06-10 15:08:21.732151 + : onkarbhosa||pb-IF4XU3oRVQ==|| joined server -2023-06-10 15:09:45.019799 + : ZOYAsays||pb-IF4gU0wxBw==|| joined server -2023-06-10 15:19:58.251912 + : REBELop||pb-IF5UUBksVg==|| joined server -2023-06-10 15:26:53.910625 + : badabangba||pb-IF4SV1gpJg==|| joined server -2023-06-10 15:28:30.253203 + : Android65216424||pb-IF4mUGkfUw==|| joined server -2023-06-10 15:34:29.633640 + : Thorfinn0||pb-IF4OU2QjMQ==|| joined server -2023-06-10 15:41:52.340883 + : Vivaciou61||pb-IF4dU1EBUA==|| joined server -2023-06-10 15:44:47.026806 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 15:45:31.185325 + : EliteSage2||pb-IF4HVHpcFQ==|| joined server -2023-06-10 15:52:34.025056 + : ShaggyKind||pb-IF4lUmsYDw==|| joined server -2023-06-10 16:18:43.452610 + : SudhanvaPu||pb-IF48UkMTNA==|| joined server -2023-06-10 16:22:38.407272 + : Immovabl38||pb-IF4QU3YiKQ==|| joined server -2023-06-10 16:23:16.547329 + : Android65082260||pb-IF4vUGYGEw==|| joined server -2023-06-10 16:24:43.374279 + : TANMAYMICH||pb-JiNJARBbUkZFWVZIF05UVVxHGURcTlFH|| joined server -2023-06-10 16:26:52.037218 + : Soloboom38||pb-IF4jVWsgNw==|| joined server -2023-06-10 16:33:03.083013 + : VividSeat4||pb-IF4jU1VYVg==|| joined server -2023-06-10 16:34:06.328773 + : virajpati5||pb-IF4IUGQTAg==|| joined server -2023-06-10 16:35:22.618277 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-10 16:36:25.867273 + : Professe67||pb-IF4AVXgOUw==|| joined server -2023-06-10 16:36:43.937980 + : vijaybarol||pb-IF5UUGwvJA==|| joined server -2023-06-10 16:38:26.316068 + : GraveArena||pb-IF5RUGwdPQ==|| joined server -2023-06-10 16:39:38.599395 + : NappingFri||pb-IF4gU3oFBg==|| joined server -2023-06-10 16:42:05.094597 + : Agzx2244||pb-IF4PV24yPA==|| joined server -2023-06-10 16:46:09.526359 + : TautFuss23||pb-IF4uVWI_Dg==|| joined server -2023-06-10 16:46:31.619881 + : vinodsaini||pb-IF4nUGkzLQ==|| joined server -2023-06-10 16:49:02.177523 + : GoodlySavi||pb-IF40UBISLQ==|| joined server -2023-06-10 17:06:34.075729 + : ClammyPrai||pb-IF5cU1FTBg==|| joined server -2023-06-10 17:08:28.506157 + : BCS||pb-IF4iU0QaEw==|| joined server -2023-06-10 17:09:06.633492 + : Soloboom38||pb-IF4jVWsgNw==|| joined server -2023-06-10 17:12:03.256264 + : Acciden342||pb-IF4HUGoBIw==|| joined server -2023-06-10 17:12:25.327322 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2023-06-11 01:26:19 + : BCS || None || joined server -2023-06-11 01:26:20 + : BCS || pb-IF4iU0QaEw== || joined server -2023-06-11 01:28:00 + : BCS || pb-IF4iU0QaEw== || joined server -2023-06-11 01:36:22 + : BCS || pb-IF4iU0QaEw== || joined server -2023-06-11 12:51:57 + : BCS || None || joined server -2023-06-11 12:51:58 + : BCS || pb-IF4iU0QaEw== || joined server -2023-06-11 12:55:33 + : BCS || None || joined server -2023-06-11 12:55:34 + : BCS || pb-IF4iU0QaEw== || joined server diff --git a/dist/ba_root/mods/serverdata/joining.log2022-12-12 11%3A36%3A33.942405 b/dist/ba_root/mods/serverdata/joining.log2022-12-12 11%3A36%3A33.942405 deleted file mode 100644 index 28055f2..0000000 --- a/dist/ba_root/mods/serverdata/joining.log2022-12-12 11%3A36%3A33.942405 +++ /dev/null @@ -1,11008 +0,0 @@ -2022-12-04 10:18:17.643050 + : Android63936722||pb-IF4MU047BA==|| joined server -2022-12-04 10:18:20.656326 + : GraveHour26||pb-IF48VWESLA==|| joined server -2022-12-04 10:18:33.697518 + : BOSSGAMINGAssumpti26||pb-IF4hVUccIQ==|| joined server -2022-12-04 10:19:09.842120 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-04 10:19:11.851083 + : UpbeatCeme||pb-IF4SUmwlVA==|| joined server -2022-12-04 10:19:32.925444 + : UpbeatCeme||pb-IF4SUmwlVA==|| joined server -2022-12-04 10:19:38.945332 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-04 10:20:08.055322 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-04 10:20:47.172827 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-04 10:21:11.251746 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-04 10:21:25.310306 + : RabidFight||pb-IF5RU3UzJA==|| joined server -2022-12-04 10:21:37.344538 + : PATLU517||pb-IF49Umo-Fg==|| joined server -2022-12-04 10:24:13.261928 + : patelbhai7||pb-IF4pV3McIg==|| joined server -2022-12-04 10:24:41.366678 + : OO||pb-IF4RVRk7EQ==|| joined server -2022-12-04 10:24:48.393984 + : OO||pb-IF4RVRk7EQ==|| joined server -2022-12-04 10:24:51.397280 + : vj1481||pb-IF5SVBJTIQ==|| joined server -2022-12-04 10:24:53.406433 + : mariyafelix3126||pb-IF4lU20cEw==|| joined server -2022-12-04 10:25:18.488103 + : NoName47962f||pb-JiNJARBbVUVBXVlAEUVQUVdLGUBWQVdK|| joined server -2022-12-04 10:25:29.522844 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-04 10:25:36.544142 + : BarbarianC||pb-IF4nUnhYBw==|| joined server -2022-12-04 10:25:48.581532 + : CunningMix12||pb-IF5UU3VTAQ==|| joined server -2022-12-04 10:25:49.585385 + : NeedyMaple33||pb-IF5WU04nBg==|| joined server -2022-12-04 10:26:23.726917 + : BarbarianC||pb-IF4nUnhYBw==|| joined server -2022-12-04 10:26:39.791357 + : atharv1326||pb-IF4vU2sIMg==|| joined server -2022-12-04 10:26:55.841593 + : sagar88822||pb-IF4vVUNfEA==|| joined server -2022-12-04 10:27:53.061290 + : Thambi765||pb-IF5dU05SIQ==|| joined server -2022-12-04 10:27:57.072431 + : Rajuphirherapheri||pb-IF5VU044KA==|| joined server -2022-12-04 10:28:15.136401 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-04 10:28:26.180271 + : OO||pb-IF4RVRk7EQ==|| joined server -2022-12-04 10:28:44.239063 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-04 10:28:49.256766 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-04 10:29:04.306787 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-04 10:29:17.371495 + : CᴀʟʟMᴇYᴏMᴀɴ||pb-IF4UU0YsDQ==|| joined server -2022-12-04 10:29:29.407618 + : OssifiedLegitimacy9||pb-IF4DVVQMVQ==|| joined server -2022-12-04 10:29:31.418380 + : Android63786120||pb-IF4wU0soJg==|| joined server -2022-12-04 10:29:40.454867 + : CᴀʟʟMᴇYᴏMᴀɴ||pb-IF4UU0YsDQ==|| joined server -2022-12-04 10:31:22.787367 + : Pankiii25||pb-IF5SU1E6Jg==|| joined server -2022-12-04 10:31:33.815338 + : ExceptionalPrince25||pb-IF4rU04xBA==|| joined server -2022-12-04 10:31:49.863444 + : OutSwarm27||pb-IF4AVUZaAg==|| joined server -2022-12-04 10:32:04.925441 + : ProsaicLunatic1799||pb-IF5dV3FfCw==|| joined server -2022-12-04 10:32:15.973496 + : ChargingBear93648||pb-IF49UnYRLQ==|| joined server -2022-12-04 10:33:09.180037 + : ronxbone||pb-IF4XU1BaKQ==|| joined server -2022-12-04 10:33:36.281299 + : RagingGem36106||pb-IF43VXkyKg==|| joined server -2022-12-04 10:33:52.328162 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-04 10:34:04.365478 + : CᴀʟʟMᴇYᴏMᴀɴ||pb-IF4UU0YsDQ==|| joined server -2022-12-04 10:34:05.369231 + : AiranChanc||pb-IF4pU0sRFw==|| joined server -2022-12-04 10:34:27.454769 + : AiranChanc||pb-IF4pU0sRFw==|| joined server -2022-12-04 10:34:37.488674 + : harshadkarale007||pb-IF4BU0wpDw==|| joined server -2022-12-04 10:35:14.615205 + : norland231||pb-IF4oVHAYLA==|| joined server -2022-12-04 10:35:31.672450 + : MainstreamContrast42||pb-IF4vU0skLw==|| joined server -2022-12-04 10:35:48.739847 + : Android53090241||pb-IF4LVVQfBA==|| joined server -2022-12-04 10:38:02.176228 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-04 10:38:12.209340 + : FurryArchon2625||pb-IF5dU0YxNA==|| joined server -2022-12-04 10:40:31.687625 + : TypicalColonel69394||pb-IF4GUkYzDA==|| joined server -2022-12-04 10:41:26.913076 + : MegumiBakuretsu10||pb-IF4QU0gCJg==|| joined server -2022-12-04 10:41:31.924882 + : Tenacious8||pb-JiNJARFdXUtEXF1DEUVWUVRCE0VcRFJE|| joined server -2022-12-04 10:42:02.035501 + : WishfulHil||pb-IF4dU04ODg==|| joined server -2022-12-04 10:42:13.070645 + : Android63351569||pb-IF5WU0RTLA==|| joined server -2022-12-04 10:42:55.221047 + : MoonlitLink53||pb-IF4RU049PA==|| joined server -2022-12-04 10:43:17.297955 + : PC346437||pb-IF5SVFdSFQ==|| joined server -2022-12-04 10:43:35.353172 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-04 10:45:26.739056 + : TremendousCreek8||pb-IF4vUxkKDg==|| joined server -2022-12-04 10:48:37.362201 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-04 10:50:16.699563 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-04 10:53:33.379101 + : AiranChanc||pb-IF4pU0sRFw==|| joined server -2022-12-04 10:53:50.457100 + : AiranChanc||pb-IF4pU0sRFw==|| joined server -2022-12-04 10:54:30.611116 + : sOFF1C1AL||pb-IF5VU0cyFg==|| joined server -2022-12-04 10:54:31.611800 + : Android63426698||pb-IF4VU0IZCg==|| joined server -2022-12-04 10:54:39.628381 + : BeamingLem||pb-IF5RUkgTPw==|| joined server -2022-12-04 10:55:16.772036 + : BRITTODON03||pb-IF4SU04JNg==|| joined server -2022-12-04 10:55:43.868994 + : PRASADGOLE007||pb-IF4yU05aKg==|| joined server -2022-12-04 10:56:13.975243 + : FamedHair40||pb-IF4AU2czAQ==|| joined server -2022-12-04 10:56:33.029497 + : CreepySamurai688||pb-IF4PU0YSXA==|| joined server -2022-12-04 10:58:02.306391 + : Godfther1||pb-JiNJARFZUEFBXlpFGERQUFdDFkNXRFFF|| joined server -2022-12-04 10:58:38.430698 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-04 10:58:42.441365 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-04 11:00:34.838052 + : Technospar||pb-IF4OU0wZAg==|| joined server -2022-12-04 11:02:56.313230 + : InsincereCase61||pb-IF4sU0s_XQ==|| joined server -2022-12-04 11:03:16.381253 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-04 11:04:07.549390 + : Worthwhil4||pb-IF4tU08YEA==|| joined server -2022-12-04 11:04:16.587375 + : Godfther1||pb-JiNJARFZUEFBXlpFGERQUFdDFkNXRFFF|| joined server -2022-12-04 11:04:36.654745 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-04 11:04:41.676643 + : TremendousCreek8||pb-IF4vUxkKDg==|| joined server -2022-12-04 11:05:48.920841 + : GnarlyJackalope56572||pb-IF4RUlAMNg==|| joined server -2022-12-04 11:06:12.007696 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-04 11:06:23.057116 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-04 11:06:44.118541 + : Godfther1||pb-JiNJARFZUEFBXlpFGERQUFdDFkNXRFFF|| joined server -2022-12-04 11:07:04.190531 + : Downstrea3||pb-IF4VU3QkFQ==|| joined server -2022-12-04 11:09:52.735425 + : sOFF1C1AL||pb-IF5VU0cyFg==|| joined server -2022-12-04 11:10:02.763334 + : Ayushayy||pb-IF4HU00OIA==|| joined server -2022-12-04 11:10:23.840296 + : sOFF1C1AL||pb-IF5VU0cyFg==|| joined server -2022-12-04 11:10:28.868182 + : LORDHanzoStar||pb-IF4qUkQ9CA==|| joined server -2022-12-04 11:11:05.016381 + : sOFF1C1AL||pb-IF5VU0cyFg==|| joined server -2022-12-04 11:11:14.057039 + : sOFF1C1AL||pb-IF5VU0cyFg==|| joined server -2022-12-04 11:11:25.092180 + : POWERXDHRUV||pb-IF4GD2Yd|| joined server -2022-12-04 11:13:20.475040 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-04 11:14:32.697976 + : Jayrajsinh1202||pb-IF4SU00JHw==|| joined server -2022-12-04 11:15:19.879846 + : LyingSword||pb-LV4FBEEKV0ZAVVwVGBVTBlxBFQ==|| joined server -2022-12-04 11:15:38.931761 + : IronLeopard87891||pb-IF43U0otUA==|| joined server -2022-12-04 11:16:44.141980 + : mohitdevna||pb-JiNJARBfUUZBXlZFFUBYXVZBGEJYQ1BK|| joined server -2022-12-04 11:16:58.185978 + : bhattiarman786||pb-IF4CDlAZ|| joined server -2022-12-04 11:17:35.312860 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-04 11:17:51.373173 + : POWERXDHRUV||pb-IF4GD2Yd|| joined server -2022-12-04 11:17:56.385045 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-04 11:18:58.582812 + : CherryBruiser84898||pb-JiNJARFTVEVHXFZFE09ZVFNGE0ZXRlRA|| joined server -2022-12-04 11:19:49.766624 + : Jayrajsinh1202||pb-IF4SU00JHw==|| joined server -2022-12-04 11:20:59.006510 + : kvgahlaut2002||pb-IF4rVxMNCg==|| joined server -2022-12-04 11:21:35.129564 + : Android62533927||pb-IF4dU3ISFw==|| joined server -2022-12-04 11:21:48.168248 + : balamurugan1232||pb-JiNJVxFfUktFXltAEU5UUVVLGERXRVJG|| joined server -2022-12-04 11:22:06.244871 + : ameno||pb-IF4PU0lcNA==|| joined server -2022-12-04 11:23:12.469040 + : Existenti7||pb-IF4PU08bDw==|| joined server -2022-12-04 11:23:30.531472 + : LegEndGogari||pb-IF4PU0laCQ==|| joined server -2022-12-04 11:23:53.642566 + : BRITTODON03||pb-IF4SU04JNg==|| joined server -2022-12-04 11:23:56.651567 + : Android57199331||pb-IF4vUnhcMw==|| joined server -2022-12-04 11:25:52.060304 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-04 11:25:57.069385 + : Sanjayduff||pb-IF4hU3APAw==|| joined server -2022-12-04 11:26:09.089982 + : InbornSimp||pb-IF4iUnQqHw==|| joined server -2022-12-04 11:26:54.254345 + : LegEndGogari||pb-IF4PU0laCQ==|| joined server -2022-12-04 11:28:57.708580 + : BakedCritter200||pb-IF41VEMGKw==|| joined server -2022-12-04 11:30:31.016996 + : Android63984084||pb-IF5XU1JSMA==|| joined server -2022-12-04 11:31:18.192836 + : MetalReporter57||pb-IF4pU0lYLg==|| joined server -2022-12-04 11:32:04.342328 + : Android36662481||pb-IF5cVBgkUw==|| joined server -2022-12-04 11:32:08.355726 + : vj1481||pb-IF5SVBJTIQ==|| joined server -2022-12-04 11:32:16.388004 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-04 11:32:34.434573 + : hackkkkk13||pb-IF4cU08zNg==|| joined server -2022-12-04 11:32:46.464454 + : ModalHandle23||pb-IF4NU0cpFw==|| joined server -2022-12-04 11:33:03.527186 + : DauntingBasement23||pb-IF4TU0cRXQ==|| joined server -2022-12-04 11:33:17.574588 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-04 11:33:27.619241 + : UKnowMeAJ||pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH|| joined server -2022-12-04 11:33:36.645890 + : ArunTamizha||pb-IF4UU2IIFg==|| joined server -2022-12-04 11:33:44.666860 + : Android63798929||pb-IF4NU0ogMQ==|| joined server -2022-12-04 11:33:48.679646 + : anaunzia||pb-IF5QU1ImIA==|| joined server -2022-12-04 11:34:52.880622 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-04 11:35:02.924309 + : Aryansingh7380||pb-IF4mU04zPA==|| joined server -2022-12-04 11:35:51.104505 + : NerdyIntoxication61||pb-IF4HU0sYJg==|| joined server -2022-12-04 11:36:16.198485 + : Rajuphirherapheri||pb-IF5VU044KA==|| joined server -2022-12-04 11:38:05.568634 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-04 11:38:59.755120 + : Screechi15||pb-IF41UlUmIw==|| joined server -2022-12-04 11:39:36.873334 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-04 11:40:06.970626 + : lazygamerwhatsoever||pb-IF5TVUJcLA==|| joined server -2022-12-04 11:40:20.036589 + : FULLGAMING||pb-IF4SU08FBw==|| joined server -2022-12-04 11:40:41.117822 + : NeedlessMonkey47856||pb-IF4OVGhcIw==|| joined server -2022-12-04 11:40:48.139896 + : Sanjayduff||pb-IF4hU3APAw==|| joined server -2022-12-04 11:41:32.297599 + : KiskiBaji||pb-IF4lU2caEg==|| joined server -2022-12-04 11:42:01.413066 + : Android48388543||pb-IF4nUm84Kg==|| joined server -2022-12-04 11:42:34.529133 + : PlasticWillOWisp7884||pb-IF4cV3AGLQ==|| joined server -2022-12-04 11:42:39.540081 + : Android47745010||pb-IF5dVWgRBg==|| joined server -2022-12-04 11:43:08.630693 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-04 11:43:10.634163 + : FranticFever44||pb-IF5RU3AjNA==|| joined server -2022-12-04 11:43:22.666138 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-04 11:44:27.906653 + : sahilkhatri343593||pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL|| joined server -2022-12-04 11:46:25.324832 + : Underwate6||pb-IF4UU00MKQ==|| joined server -2022-12-04 11:46:31.343940 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-04 11:47:11.484458 + : Underwate6||pb-IF4UU00MKQ==|| joined server -2022-12-04 11:47:17.507246 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-04 11:47:38.581884 + : Android63759055||pb-IF4iU0kkFw==|| joined server -2022-12-04 11:47:47.613467 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-04 11:47:56.640270 + : zakitcgame||pb-IF4XUk87Lg==|| joined server -2022-12-04 11:49:19.983459 + : Dharun1403||pb-IF4FU3ApCw==|| joined server -2022-12-04 11:49:30.024094 + : PseudoAttendance18||pb-IF4VVWsGIA==|| joined server -2022-12-04 11:50:30.225300 + : sahilkhatri343593||pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL|| joined server -2022-12-04 11:51:07.348165 + : InfiniteVa||pb-JiNJARFcV0RFWV1AF0VRVVxKFURWQFBD|| joined server -2022-12-04 11:51:25.398960 + : InfiniteVa||pb-JiNJARFcV0RFWV1AF0VRVVxKFURWQFBD|| joined server -2022-12-04 11:52:26.619244 + : LordTamboKing||pb-IF4NU0sbEA==|| joined server -2022-12-04 11:53:05.747656 + : ConfusedJa||pb-IF5XVEUZDQ==|| joined server -2022-12-04 11:53:29.829258 + : Android63922654||pb-IF4gU00eLQ==|| joined server -2022-12-04 11:55:03.188630 + : Android63669053||pb-IF4lU0c9Hw==|| joined server -2022-12-04 11:55:17.222372 + : Android63984108||pb-IF4zUkM_MQ==|| joined server -2022-12-04 11:55:50.374490 + : FULLGAMING||pb-IF4SU08FBw==|| joined server -2022-12-04 11:56:46.594316 + : ExposedEditorial36||pb-IF4AU0slNQ==|| joined server -2022-12-04 11:57:22.710267 + : THANATOS6660||pb-IF4sVFkqEw==|| joined server -2022-12-04 11:57:52.816692 + : Android63669053||pb-IF4lU0c9Hw==|| joined server -2022-12-04 11:57:55.820271 + : Android63669053||pb-IF4lU0c9Hw==|| joined server -2022-12-04 11:58:05.846033 + : Rahul1000010206||pb-IF4AV3RfLA==|| joined server -2022-12-04 11:58:17.898891 + : LunarJogge||pb-IF4rU08GJw==|| joined server -2022-12-04 12:00:14.327336 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-04 12:00:17.336745 + : Android48713858||pb-IF49VW0hJA==|| joined server -2022-12-04 12:01:04.513103 + : PseudoAttendance18||pb-IF4VVWsGIA==|| joined server -2022-12-04 12:01:54.678819 + : InfiniteVa||pb-JiNJARFcV0RFWV1AF0VRVVxKFURWQFBD|| joined server -2022-12-04 12:02:59.932104 + : superchan92413||pb-IF4pU2sgJw==|| joined server -2022-12-04 12:03:44.106708 + : abiee1704||pb-IF4oU3USLw==|| joined server -2022-12-04 12:03:51.136655 + : Android63193363||pb-IF4oU3oJEQ==|| joined server -2022-12-04 12:06:29.685910 + : SHDW1357||pb-IF4nVUwZKg==|| joined server -2022-12-04 12:06:35.706527 + : TremendousCreek8||pb-IF4vUxkKDg==|| joined server -2022-12-04 12:06:38.714185 + : SkinnyPencil69437||pb-IF4BU00xJA==|| joined server -2022-12-04 12:07:12.827089 + : Android63764097||pb-IF4dU0kPLQ==|| joined server -2022-12-04 12:07:53.959779 + : fukeenhell||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-04 12:08:08.013493 + : SkinnyPencil69437||pb-IF4BU00xJA==|| joined server -2022-12-04 12:08:11.021659 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-04 12:08:34.109219 + : gandfaad14||pb-IF41U08_Ug==|| joined server -2022-12-04 12:09:05.211713 + : Android62546435||pb-IF48U3MGAw==|| joined server -2022-12-04 12:09:07.219270 + : JealousCry||pb-IF4xV2oPHA==|| joined server -2022-12-04 12:10:05.455542 + : Android61670136||pb-IF4lU2kSJw==|| joined server -2022-12-04 12:10:36.548588 + : Android62042729||pb-IF4qU25ZNQ==|| joined server -2022-12-04 12:10:58.638211 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-04 12:11:29.728391 + : JealousCry||pb-IF4xV2oPHA==|| joined server -2022-12-04 12:12:23.913198 + : GrubbyMani||pb-IF4UU1AuUQ==|| joined server -2022-12-04 12:12:55.019334 + : unstoppabl||pb-IF4TU0o6Aw==|| joined server -2022-12-04 12:13:43.225411 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-04 12:13:47.240823 + : sagar88822||pb-IF4vVUNfEA==|| joined server -2022-12-04 12:13:53.253607 + : bisht4189||pb-IF4SEHAl|| joined server -2022-12-04 12:14:55.481230 + : djankit857||pb-IF4iVFBbDA==|| joined server -2022-12-04 12:15:17.564528 + : FranticFever44||pb-IF5RU3AjNA==|| joined server -2022-12-04 12:15:38.631239 + : Unparalle3||pb-IF4tU00oEA==|| joined server -2022-12-04 12:15:50.672899 + : Android63976531||pb-IF4UU1BeVg==|| joined server -2022-12-04 12:16:06.724337 + : InfiniteVa||pb-JiNJARFcV0RFWV1AF0VRVVxKFURWQFBD|| joined server -2022-12-04 12:17:40.045500 + : Unparalle3||pb-IF4tU00oEA==|| joined server -2022-12-04 12:17:47.075264 + : SheikRieng||pb-IF4rU1BdLw==|| joined server -2022-12-04 12:19:08.335654 + : Android63824610||pb-IF4sU0tbUA==|| joined server -2022-12-04 12:19:42.457951 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-04 12:20:11.564893 + : Android63976379||pb-IF4IU08oXA==|| joined server -2022-12-04 12:20:28.627242 + : PseudoAttendance18||pb-IF4VVWsGIA==|| joined server -2022-12-04 12:20:41.671961 + : ConformableLink14||pb-IF4rUkFSLw==|| joined server -2022-12-04 12:21:06.776184 + : ConformableLink14||pb-IF4rUkFSLw==|| joined server -2022-12-04 12:21:21.824749 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-04 12:21:24.836982 + : ConformableLink14||pb-IF4rUkFSLw==|| joined server -2022-12-04 12:21:46.919536 + : lightingstormer||pb-IF5QU3gCEQ==|| joined server -2022-12-04 12:22:24.029122 + : Android63770342||pb-IF4rU0o9KQ==|| joined server -2022-12-04 12:22:40.089728 + : Android59520942||pb-IF4TUlZZIg==|| joined server -2022-12-04 12:23:28.295843 + : Vanquishi8||pb-IF41U2cJEA==|| joined server -2022-12-04 12:23:34.322816 + : Android41433412||pb-IF5dVERdFA==|| joined server -2022-12-04 12:23:47.367247 + : Android63825840||pb-IF4XU0whCw==|| joined server -2022-12-04 12:24:18.460929 + : SahilRisingStar0920||pb-IF4jU04xLQ==|| joined server -2022-12-04 12:24:40.539568 + : vj1481||pb-IF5SVBJTIQ==|| joined server -2022-12-04 12:24:45.558746 + : Dharsanaswin||pb-IF4UUmZcEA==|| joined server -2022-12-04 12:26:58.027582 + : itsakasrija||pb-IF5WV00NMQ==|| joined server -2022-12-04 12:27:01.037492 + : AmazingTriangle14295||pb-IF5SU00_Ag==|| joined server -2022-12-04 12:28:28.335950 + : DependableChip25||pb-IF4GU0gbVQ==|| joined server -2022-12-04 12:31:44.013595 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-04 12:32:13.123137 + : ErsatzGuac||pb-IF4RU2g-VQ==|| joined server -2022-12-04 12:33:39.464785 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-04 12:35:09.811157 + : Android63669053||pb-IF4lU0c9Hw==|| joined server -2022-12-04 12:35:25.858354 + : vj1481||pb-IF5SVBJTIQ==|| joined server -2022-12-04 12:36:52.126151 + : Nostalgic4||pb-IF4OU0MpNA==|| joined server -2022-12-04 12:38:03.397283 + : Android63963639||pb-IF5WU1EqAw==|| joined server -2022-12-04 12:38:06.410174 + : GreenKiwi4||pb-IF4qKFAu|| joined server -2022-12-04 12:40:39.938085 + : EpicQuail4||pb-IF4UUlQyEA==|| joined server -2022-12-04 12:41:16.057213 + : MDHAMDAN99||pb-IF4MU2sFJA==|| joined server -2022-12-04 12:41:38.147379 + : PseudoAttendance18||pb-IF4VVWsGIA==|| joined server -2022-12-04 12:41:41.162666 + : sahilkhatri343593||pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL|| joined server -2022-12-04 12:41:45.176389 + : PseudoAttendance18||pb-IF4VVWsGIA==|| joined server -2022-12-04 12:43:13.467541 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-04 12:44:28.760822 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-04 12:44:35.781718 + : ISHANTH05||pb-IF4dU04OPA==|| joined server -2022-12-04 12:44:37.788538 + : paratròóper||pb-IF4IV04ZKw==|| joined server -2022-12-04 12:45:05.875804 + : masterkiller12398745||pb-IF4eU0kxCg==|| joined server -2022-12-04 12:45:16.917174 + : Mukund094||pb-IF4SUnMKEw==|| joined server -2022-12-04 12:45:19.926242 + : NewestBlue||pb-IF5dU1FZDA==|| joined server -2022-12-04 12:45:29.946771 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-04 12:49:07.707671 + : Edwinss321||pb-IF4CU2oaKw==|| joined server -2022-12-04 12:49:31.784428 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-04 12:50:14.910376 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-04 12:50:28.968449 + : Android48907943||pb-IF4DVW4HFA==|| joined server -2022-12-04 12:50:37.999333 + : DoggedAptitude38||pb-IF4QU04nPA==|| joined server -2022-12-04 12:51:39.239986 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-04 12:52:12.356584 + : Wikirex2001||pb-IF41V0UyDg==|| joined server -2022-12-04 12:52:30.424207 + : MIKEJV007||pb-IF4mVGEjJA==|| joined server -2022-12-04 12:52:33.437639 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-04 12:53:19.619499 + : 9584555539||pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB|| joined server -2022-12-04 12:54:17.833652 + : Twistedvine0127||pb-IF4BUnovCQ==|| joined server -2022-12-04 12:54:26.848960 + : DeadlyFly63846||pb-IF43VEQYAw==|| joined server -2022-12-04 12:55:12.005946 + : paratròóper||pb-IF4IV04ZKw==|| joined server -2022-12-04 12:55:31.084282 + : Android63728390||pb-IF4HU0gSFw==|| joined server -2022-12-04 12:55:52.149214 + : king1of1brave1gaming||pb-IF4TVUcGKQ==|| joined server -2022-12-04 12:56:57.399244 + : FamousImprovement43||pb-IF4TU0oFAQ==|| joined server -2022-12-04 12:57:26.499784 + : QuixoticEmpire16345||pb-IF4MVU4vLw==|| joined server -2022-12-04 12:58:31.729827 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-04 12:58:59.840484 + : TyrannicalSalmon36||pb-IF4xU04PPw==|| joined server -2022-12-04 12:59:21.913900 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-04 12:59:45.008034 + : vibhinnoflock||pb-IF4CU0pTCQ==|| joined server -2022-12-04 13:01:32.355353 + : DoubtfulCell25||pb-IF4DUnYIFw==|| joined server -2022-12-04 13:01:41.360758 + : thunderstorms3054||pb-IF4zU3gzBA==|| joined server -2022-12-04 13:01:44.364618 + : SedAkkalaMwonu||pb-ND0oS0YPXURAD1hFDU9SVFdfEUEKQExLAQVGRgAUEVldSRYUWFdWRg==|| joined server -2022-12-04 13:02:48.622941 + : thunderstorms3054||pb-IF4zU3gzBA==|| joined server -2022-12-04 13:03:20.737111 + : ashikroyal||pb-IF4BVUw-Dg==|| joined server -2022-12-04 13:04:19.954055 + : PATLU517||pb-IF49Umo-Fg==|| joined server -2022-12-04 13:04:38.015819 + : PATLU517||pb-IF49Umo-Fg==|| joined server -2022-12-04 13:04:45.048046 + : PATLU517||pb-IF49Umo-Fg==|| joined server -2022-12-04 13:04:50.061484 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-04 13:04:52.065951 + : PATLU517||pb-IF49Umo-Fg==|| joined server -2022-12-04 13:05:42.241753 + : Darkestkni||pb-IF4eU0sbNA==|| joined server -2022-12-04 13:05:47.253137 + : AmazingTriangle14295||pb-IF5SU00_Ag==|| joined server -2022-12-04 13:06:25.409734 + : InsincereCase61||pb-IF4sU0s_XQ==|| joined server -2022-12-04 13:06:58.516665 + : ShortsightedRepeat40||pb-IF5SU0kIPw==|| joined server -2022-12-04 13:07:46.697117 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-04 13:08:31.877154 + : UndtedSirw||pb-IF4pVHAlKw==|| joined server -2022-12-04 13:09:51.156155 + : Inexorabl6||pb-IF43U08GJA==|| joined server -2022-12-04 13:09:56.189803 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-04 13:13:27.907527 + : ModalHandle23||pb-IF4NU0cpFw==|| joined server -2022-12-04 13:14:33.148188 + : mooday800||pb-IF4mUhY5Bw==|| joined server -2022-12-04 13:16:29.569572 + : Mraloneguy||pb-IF5XVHgmAg==|| joined server -2022-12-04 13:16:33.579739 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-04 13:16:40.601753 + : InsincereCase61||pb-IF4sU0s_XQ==|| joined server -2022-12-04 13:18:00.906130 + : InsincereCase61||pb-IF4sU0s_XQ==|| joined server -2022-12-04 13:18:38.039234 + : InsincereCase61||pb-IF4sU0s_XQ==|| joined server -2022-12-04 13:18:41.044808 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-04 13:18:48.070795 + : CongestedPackaging20||pb-IF4TU0UaFg==|| joined server -2022-12-04 13:19:10.151945 + : Android63767506||pb-IF5SU0seMQ==|| joined server -2022-12-04 13:20:06.363416 + : sonugavale||pb-IF40VG4yUA==|| joined server -2022-12-04 13:20:09.380318 + : Android63796554||pb-IF4NU0ojAA==|| joined server -2022-12-04 13:20:16.399559 + : Mukund094||pb-IF4SUnMKEw==|| joined server -2022-12-04 13:21:14.601567 + : lkiheasnal||pb-IF4cU0oEDg==|| joined server -2022-12-04 13:22:26.826376 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-04 13:22:27.833331 + : Android62576681||pb-IF4RU3QoXQ==|| joined server -2022-12-04 13:26:10.652979 + : GinormousD||pb-IF4eU2VTAg==|| joined server -2022-12-04 13:28:38.174375 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-04 13:29:14.339502 + : GinormousD||pb-IF4eU2VTAg==|| joined server -2022-12-04 13:30:57.719545 + : NavigableN||pb-IF4jUxQxCQ==|| joined server -2022-12-04 13:31:14.794184 + : Android63981158||pb-IF41U08kKQ==|| joined server -2022-12-04 13:31:27.853764 + : Following3||pb-IF5XU0ZbBA==|| joined server -2022-12-04 13:32:15.993905 + : Dharsanaswin||pb-IF4UUmZcEA==|| joined server -2022-12-04 13:35:14.640313 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-04 13:35:52.773576 + : MuddyJoker56571||pb-IF4SF0Em|| joined server -2022-12-04 13:36:18.865604 + : VauntedPlu||pb-IF4HU0QPAw==|| joined server -2022-12-04 13:36:23.886154 + : NavigableN||pb-IF4jUxQxCQ==|| joined server -2022-12-04 13:36:37.941411 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-04 13:36:46.968049 + : PATLU517||pb-IF49Umo-Fg==|| joined server -2022-12-04 13:36:48.973136 + : SpunkyEmbl||pb-IF4mVRgFBw==|| joined server -2022-12-04 13:36:56.997839 + : AgentShubh||pb-IF41VXk5PQ==|| joined server -2022-12-04 13:37:38.145238 + : LearnedLabyrinth7741||pb-IF4KVUMsBg==|| joined server -2022-12-04 13:38:24.297134 + : HootingDra||pb-IF5TAHQO|| joined server -2022-12-04 13:40:19.728733 + : TGPALYWGSUDGSJSHSJSS||pb-IF4KU0gxMg==|| joined server -2022-12-04 13:41:26.965049 + : SheikRieng||pb-IF4rU1BdLw==|| joined server -2022-12-04 13:41:46.021143 + : LearnedLabyrinth7741||pb-IF4KVUMsBg==|| joined server -2022-12-04 13:42:48.238140 + : UltravioletAnswer35||pb-IF48UxIMIA==|| joined server -2022-12-04 13:43:11.313455 + : LearnedLabyrinth7741||pb-IF4KVUMsBg==|| joined server -2022-12-04 13:43:19.345413 + : RaSurKh||pb-IF5VV29eLA==|| joined server -2022-12-04 13:44:02.473495 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-04 13:44:26.575505 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-04 13:44:33.603300 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-04 13:44:41.633186 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-04 13:44:52.679179 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-04 13:44:55.683182 + : redpalyer1||pb-IF4WUk9cJw==|| joined server -2022-12-04 13:45:08.740636 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-04 13:45:13.759480 + : CivilianProject35||pb-IF4eU0QdUQ==|| joined server -2022-12-04 13:45:19.780710 + : vj1481||pb-IF5SVBJTIQ==|| joined server -2022-12-04 13:45:33.815231 + : PC773577||pb-IF5UU1EHFA==|| joined server -2022-12-04 13:45:55.894494 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-04 13:46:03.922662 + : AdvancedExpomnent45m||pb-IF4JU3MxCQ==|| joined server -2022-12-04 13:46:08.935162 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-04 13:46:14.963459 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-04 13:46:40.064280 + : Android39959906||pb-IF4jVHIEHQ==|| joined server -2022-12-04 13:46:43.068591 + : LegEndGoga||pb-IF4PU0laCQ==|| joined server -2022-12-04 13:47:39.242984 + : SuggestiveGarage45||pb-IF5RU0pSBg==|| joined server -2022-12-04 13:47:43.258000 + : AdvancedExpomnent45m||pb-IF4JU3MxCQ==|| joined server -2022-12-04 13:48:07.365859 + : Linux52467||pb-IF5WUxQlEw==|| joined server -2022-12-04 13:49:01.536212 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-04 13:51:00.949536 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-04 13:51:10.982682 + : Irreveren3||pb-IF4VVFoYCA==|| joined server -2022-12-04 13:51:33.068599 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-04 13:53:29.538420 + : ക്യാപ്റ്റൻ22||pb-IF4oU3hbEQ==|| joined server -2022-12-04 13:53:51.610195 + : MilesAboveYou||pb-IF4CUhM5AQ==|| joined server -2022-12-04 13:54:15.700198 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-04 13:54:28.736413 + : InsincereCase61||pb-IF4sU0s_XQ==|| joined server -2022-12-04 13:54:35.758156 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-04 13:54:38.770556 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-04 13:55:06.857202 + : MilesAboveYou||pb-IF4CUhM5AQ==|| joined server -2022-12-04 13:55:18.903444 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-04 13:55:32.987652 + : MilesAboveYou||pb-IF4CUhM5AQ==|| joined server -2022-12-04 13:56:35.179333 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-04 13:57:14.324036 + : EntireBegg||pb-IF4OU049CA==|| joined server -2022-12-04 13:57:52.453398 + : DarkLordAscended||pb-IF4KU0UqLA==|| joined server -2022-12-04 13:57:56.471466 + : LustrousConjurer7||pb-IF4oUnVaNg==|| joined server -2022-12-04 13:58:21.546026 + : LustrousConjurer7||pb-IF4oUnVaNg==|| joined server -2022-12-04 13:58:31.578273 + : InsincereCase61||pb-IF4sU0s_XQ==|| joined server -2022-12-04 13:58:34.597536 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-04 13:58:41.618330 + : LustrousConjurer7||pb-IF4oUnVaNg==|| joined server -2022-12-04 13:58:43.628665 + : kukkututtu002||pb-IF5QU0MaXA==|| joined server -2022-12-04 13:59:03.696280 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-04 14:00:35.007282 + : MindfulAir||pb-IF4dU08oXQ==|| joined server -2022-12-04 14:01:35.200217 + : aniket2604||pb-JiNJVxBcUURIXVZJFkFZVFdGFEBeR1dF|| joined server -2022-12-04 14:01:38.211018 + : Android52000342||pb-IF4FVUkZMw==|| joined server -2022-12-04 14:01:53.264758 + : ItsEpicShlok||pb-IF4DU0YhVw==|| joined server -2022-12-04 14:01:56.275803 + : SilentBraw||pb-JiNJARBcVEdFWlxCEE9TVl1GFUVXTlRH|| joined server -2022-12-04 14:02:02.290755 + : Android42891191||pb-IF4QVGYjDg==|| joined server -2022-12-04 14:02:59.486597 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-04 14:03:30.598106 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-04 14:03:31.598631 + : BellicosePatriot28||pb-IF4DUlMIDg==|| joined server -2022-12-04 14:03:59.699562 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-04 14:04:18.780243 + : CombativeGemini56036||pb-IF5TVxg_HQ==|| joined server -2022-12-04 14:05:59.129173 + : StealthyAn||pb-IF4XU0EfDw==|| joined server -2022-12-04 14:06:00.136306 + : jonathansanthosh||pb-IF4-U0kNVQ==|| joined server -2022-12-04 14:06:20.213912 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-04 14:07:06.376550 + : Android62339210||pb-IF4sU3A7KA==|| joined server -2022-12-04 14:07:17.410089 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-04 14:08:36.716511 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-04 14:08:37.724022 + : Unrelenti4||pb-IF4eU0wpKg==|| joined server -2022-12-04 14:09:07.820337 + : TERRIFIER4||pb-IF4BUxIzJg==|| joined server -2022-12-04 14:09:13.843143 + : NeedlessMonkey47856||pb-IF4OVGhcIw==|| joined server -2022-12-04 14:09:37.932930 + : Android63130011||pb-IF4xU3k6KA==|| joined server -2022-12-04 14:10:12.052108 + : DeviousEli||pb-IF5VU007Ng==|| joined server -2022-12-04 14:10:59.244255 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-04 14:11:19.317306 + : mrpainless||pb-IF4PIFQ9|| joined server -2022-12-04 14:11:54.441949 + : Android52470937||pb-IF4DVVgZJA==|| joined server -2022-12-04 14:12:35.590711 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-04 14:12:55.668971 + : Android60974634||pb-IF4rU2EZEw==|| joined server -2022-12-04 14:13:23.780853 + : MagnificentBull96303||pb-IF4mU0wODA==|| joined server -2022-12-04 14:14:08.945600 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-04 14:14:15.961651 + : SickeningManeuver24||pb-IF5XUmsEVg==|| joined server -2022-12-04 14:14:37.045528 + : dhairyabhavya||pb-IF4BPFRY|| joined server -2022-12-04 14:17:53.136980 + : Moldyblade||pb-IF4UU0YbEQ==|| joined server -2022-12-04 14:18:08.178393 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-04 14:18:13.198205 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-04 14:18:19.227004 + : mrpainless||pb-IF4PIFQ9|| joined server -2022-12-04 14:18:25.242131 + : Android63642729||pb-IF5WU0gBHQ==|| joined server -2022-12-04 14:18:37.272835 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-04 14:18:53.314376 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-04 14:18:58.333654 + : S2sharpsho||pb-IF4dUmU5Fg==|| joined server -2022-12-04 14:19:29.432546 + : Moldyblade||pb-IF4UU0YbEQ==|| joined server -2022-12-04 14:19:47.488671 + : LustrousConjurer7||pb-IF4oUnVaNg==|| joined server -2022-12-04 14:20:13.595786 + : Android52470937||pb-IF4DVVgZJA==|| joined server -2022-12-04 14:20:58.756254 + : S2sharpsho||pb-IF4dUmU5Fg==|| joined server -2022-12-04 14:21:15.812944 + : ThunderBlu||pb-IF4sU0sDDw==|| joined server -2022-12-04 14:21:49.941525 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-04 14:22:09.997555 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-04 14:22:26.067395 + : DiamondSqu||pb-IF4eU1BbMw==|| joined server -2022-12-04 14:22:31.079651 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-04 14:22:49.141504 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-04 14:23:08.203938 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-04 14:24:06.418478 + : rajmewada12||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-04 14:25:21.694188 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-04 14:25:48.789995 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-04 14:27:05.052282 + : captshivi||pb-IF4tCRgv|| joined server -2022-12-04 14:27:29.132758 + : blackury2003||pb-IF5XVVACLA==|| joined server -2022-12-04 14:27:31.142129 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-04 14:28:22.345539 + : TorrentialEase43||pb-IF4RU0ksMQ==|| joined server -2022-12-04 14:28:53.458870 + : Android52470937||pb-IF4DVVgZJA==|| joined server -2022-12-04 14:29:02.500701 + : vinothmptc||pb-IF4LU28SJA==|| joined server -2022-12-04 14:29:09.527669 + : BushyInstructor7||pb-IF4WU0QRIA==|| joined server -2022-12-04 14:29:19.552307 + : Android52470937||pb-IF4DVVgZJA==|| joined server -2022-12-04 14:30:00.696642 + : Sayan8274||pb-JiNJARBdVEFAXl5GGEZZVFZCGUhXRFBC|| joined server -2022-12-04 14:30:47.857670 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-04 14:30:51.876191 + : LocalTruce||pb-IF4BVVVYCA==|| joined server -2022-12-04 14:30:56.881646 + : NauseousJudge10||pb-IF4QU048Nw==|| joined server -2022-12-04 14:31:20.956068 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-04 14:31:21.959237 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-04 14:32:05.123538 + : Android52470937||pb-IF4DVVgZJA==|| joined server -2022-12-04 14:32:17.158067 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-04 14:32:27.193449 + : rvrvrvrvrv||pb-IF5TEHhY|| joined server -2022-12-04 14:34:50.697833 + : MetallicPainting21||pb-IF4qU0sOKw==|| joined server -2022-12-04 14:35:24.807059 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-04 14:35:31.835575 + : rajmewada12||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-04 14:35:32.835170 + : LustrousConjurer7||pb-IF4oUnVaNg==|| joined server -2022-12-04 14:35:45.877265 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-04 14:35:55.912459 + : LustrousConjurer7||pb-IF4oUnVaNg==|| joined server -2022-12-04 14:36:20.977739 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-04 14:37:31.227015 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-04 14:37:34.244039 + : KingZaki96||pb-IF4sJEMH|| joined server -2022-12-04 14:38:08.370621 + : Kisimo1994||pb-IF4CMWc7|| joined server -2022-12-04 14:38:32.441805 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-04 14:39:03.561317 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-04 14:39:24.639915 + : serialhunt||pb-IF5RUlkoHQ==|| joined server -2022-12-04 14:39:34.683360 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-04 14:40:07.788044 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-04 14:40:25.857997 + : MADDY1321||pb-IF4CU0QpCA==|| joined server -2022-12-04 14:42:05.221194 + : NeedlessMonkey47856||pb-IF4OVGhcIw==|| joined server -2022-12-04 14:42:09.230000 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-04 14:43:07.434966 + : Attitudeboy997||pb-IF4dVFgCLg==|| joined server -2022-12-04 14:43:42.549463 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-04 14:43:53.586086 + : BooI1219||pb-IF4eU0ggAw==|| joined server -2022-12-04 14:44:21.684191 + : Attitudeboy997||pb-IF4dVFgCLg==|| joined server -2022-12-04 14:45:42.981746 + : SillyMembrane32||pb-IF4AU04IHQ==|| joined server -2022-12-04 14:46:49.190058 + : UndtedSirw||pb-IF4pVHAlKw==|| joined server -2022-12-04 14:47:53.413076 + : AloofSoldier58271||pb-IF40VEEMVA==|| joined server -2022-12-04 14:48:39.584308 + : HacktasticBeetle2600||pb-JiNJARFdVUJBW1tAGUVUVV1HFkBeQ1BG|| joined server -2022-12-04 14:48:48.624406 + : MADDY1321||pb-IF4CU0QpCA==|| joined server -2022-12-04 14:48:51.639720 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-04 14:49:09.719042 + : arsh2468||pb-IF4CNEE7|| joined server -2022-12-04 14:50:30.976258 + : Alpha910||pb-IF4sU04cFQ==|| joined server -2022-12-04 14:50:38.011673 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-04 14:50:42.027054 + : UnconvincingMaxim19||pb-IF4eU08jEA==|| joined server -2022-12-04 14:51:31.203014 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-04 14:51:36.214421 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-04 14:51:56.289871 + : Thanu41||pb-IF49U2wiLA==|| joined server -2022-12-04 14:52:42.441912 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-04 14:53:34.620869 + : LocalTruce||pb-IF4BVVVYCA==|| joined server -2022-12-04 14:53:46.661491 + : Naimin95||pb-IF4dKBYM|| joined server -2022-12-04 14:53:55.702274 + : Android60309780||pb-IF4uUxMpLQ==|| joined server -2022-12-04 14:54:23.786616 + : Thanu41||pb-IF49U2wiLA==|| joined server -2022-12-04 14:54:27.792074 + : MADDY1321||pb-IF4CU0QpCA==|| joined server -2022-12-04 14:54:41.832663 + : JealousCry||pb-IF4xV2oPHA==|| joined server -2022-12-04 14:54:59.889638 + : SleekPossum9447||pb-IF4iAGsC|| joined server -2022-12-04 14:55:02.899530 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-04 14:55:28.991534 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-04 14:56:01.126869 + : RootinTootinOoze9610||pb-IF4rUxdeUg==|| joined server -2022-12-04 14:56:35.236539 + : FervidPlurality13||pb-IF4-UxI7Mg==|| joined server -2022-12-04 14:56:47.275486 + : SheikRieng||pb-IF4rU1BdLw==|| joined server -2022-12-04 14:56:55.301705 + : PaanApitit||pb-IF5XVWcCJA==|| joined server -2022-12-04 14:57:41.467857 + : Android54473871||pb-IF4LUhcoBA==|| joined server -2022-12-04 14:57:57.524545 + : weirdassalien27||pb-IF4PVUwcFw==|| joined server -2022-12-04 14:58:05.552893 + : Gowthamsword||pb-IF4eU0snCA==|| joined server -2022-12-04 14:58:19.596223 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-04 14:58:30.638731 + : ShaikhFaha||pb-IF5dV21TEA==|| joined server -2022-12-04 15:00:34.083828 + : D4kgaming||pb-IF4pU1ApEg==|| joined server -2022-12-04 15:01:01.179018 + : Wakandansoldier||pb-IF4cUnc6DQ==|| joined server -2022-12-04 15:02:28.463608 + : bhumit21||pb-IF4sU0gNFg==|| joined server -2022-12-04 15:02:58.563012 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-04 15:03:30.671846 + : LegEndGoga||pb-IF4PU0laCQ==|| joined server -2022-12-04 15:03:37.695808 + : PenitentDi||pb-IF4JU08KCg==|| joined server -2022-12-04 15:03:41.704688 + : ASSASINSURYA||pb-IF4sVXA_AA==|| joined server -2022-12-04 15:03:46.727929 + : LegEndGoga||pb-IF4PU0laCQ==|| joined server -2022-12-04 15:04:36.884251 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-04 15:04:46.926799 + : planrearer||pb-IF4RU1BTFA==|| joined server -2022-12-04 15:05:03.977923 + : UndtedSirw||pb-IF4pVHAlKw==|| joined server -2022-12-04 15:05:12.993247 + : Android63984885||pb-IF4xU087Lw==|| joined server -2022-12-04 15:06:09.215573 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-04 15:06:13.230116 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-04 15:06:45.337035 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-04 15:07:08.392539 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-04 15:07:25.463270 + : BleakForce44||pb-IF4xU00iHA==|| joined server -2022-12-04 15:07:37.514368 + : meetraul||pb-IF4TU00FLg==|| joined server -2022-12-04 15:08:08.622619 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-04 15:08:41.749484 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-04 15:12:39.606025 + : EternalChi||pb-IF4hVREELg==|| joined server -2022-12-04 15:12:40.611666 + : SVSavla||pb-IF4tUnUeDA==|| joined server -2022-12-04 15:13:35.828712 + : EternalChi||pb-IF4hVREELg==|| joined server -2022-12-04 15:13:46.871658 + : GrotesqueBargain17||pb-IF4UUmQbLg==|| joined server -2022-12-04 15:15:18.212687 + : WatDocument29||pb-IF4MU0UlCg==|| joined server -2022-12-04 15:21:11.408488 + : BleakForce44||pb-IF4xU00iHA==|| joined server -2022-12-04 15:21:26.455544 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-04 15:23:20.839411 + : raiyyan095||pb-IF4HU3YGEQ==|| joined server -2022-12-04 15:23:29.882804 + : itsmohit24||pb-IF4tUkQaCg==|| joined server -2022-12-04 15:23:51.951690 + : GiltJustif||pb-IF4SUxMmKA==|| joined server -2022-12-04 15:24:01.993492 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-04 15:24:20.071203 + : Android56697829||pb-IF4PUnM-Lw==|| joined server -2022-12-04 15:24:22.077140 + : Navestien666||pb-IF40UkQYJg==|| joined server -2022-12-04 15:24:34.138087 + : YogeYogesh14||pb-IF4DU3AABw==|| joined server -2022-12-04 15:24:46.180196 + : kartikm52||pb-IF4IU0waNQ==|| joined server -2022-12-04 15:25:56.397394 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-04 15:27:14.641310 + : TroublesomeAvail4||pb-IF4eV0oMLw==|| joined server -2022-12-04 15:27:45.745178 + : Android63351569||pb-IF5WU0RTLA==|| joined server -2022-12-04 15:27:55.784388 + : Nirucraze||pb-IF4gU3cIPQ==|| joined server -2022-12-04 15:28:03.815443 + : Headhunter||pb-IF5cU00kKg==|| joined server -2022-12-04 15:28:21.881185 + : Android63833158||pb-IF4XU0w8Ug==|| joined server -2022-12-04 15:28:48.965790 + : YogeYogesh14||pb-IF4DU3AABw==|| joined server -2022-12-04 15:29:07.039380 + : YogeYogesh14||pb-IF4DU3AABw==|| joined server -2022-12-04 15:30:46.389301 + : harshadkarale007||pb-IF4BU0wpDw==|| joined server -2022-12-04 15:32:07.663185 + : 46DEVILBoy||pb-IF4iVXQnKw==|| joined server -2022-12-04 15:32:21.737996 + : Android55846320||pb-IF4yUmsiXQ==|| joined server -2022-12-04 15:34:50.288639 + : prashantrajputreaba||pb-IF4OU0cMLw==|| joined server -2022-12-04 15:35:15.378538 + : InnateSinner19||pb-IF4IU04pBA==|| joined server -2022-12-04 15:35:59.518365 + : Android63217110||pb-IF4oU3oZNg==|| joined server -2022-12-04 15:36:37.661762 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-04 15:36:55.715482 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-04 15:37:39.856079 + : Android63903756||pb-IF5dU084Pw==|| joined server -2022-12-04 15:40:41.477959 + : AwesomeUni||pb-IF4LU0sFBA==|| joined server -2022-12-04 15:41:02.549115 + : Android63903756||pb-IF5dU084Pw==|| joined server -2022-12-04 15:42:30.803330 + : PRASADGOLE007||pb-IF4yU05aKg==|| joined server -2022-12-04 15:42:50.857577 + : Android41433412||pb-IF5dVERdFA==|| joined server -2022-12-04 15:42:56.878502 + : sahiljaiswal124||pb-IF4-U0gPUw==|| joined server -2022-12-04 15:44:02.074137 + : louis12king018806660||pb-IF4XV1k7Hw==|| joined server -2022-12-04 15:45:14.341410 + : Android63902876||pb-IF4DU00TEw==|| joined server -2022-12-04 15:46:11.549031 + : ismartrohit||pb-IF4QVXUqDg==|| joined server -2022-12-04 15:46:14.552612 + : Android63763752||pb-IF4uU0kIFw==|| joined server -2022-12-04 15:46:40.651029 + : HIREN1AHIR||pb-IF4CU0MzBg==|| joined server -2022-12-04 15:47:42.880102 + : Android63969202||pb-IF4uU09TCg==|| joined server -2022-12-04 15:48:05.966801 + : ismartrohit||pb-IF4QVXUqDg==|| joined server -2022-12-04 15:48:07.970272 + : Mukund094||pb-IF4SUnMKEw==|| joined server -2022-12-04 15:48:15.987663 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-04 15:49:04.145264 + : arsh2468||pb-IF4CNEE7|| joined server -2022-12-04 15:49:32.244392 + : ismartrohit||pb-IF4QVXUqDg==|| joined server -2022-12-04 15:50:53.504931 + : SPERMAN||pb-IF4rUnYPNQ==|| joined server -2022-12-04 15:51:07.541805 + : SaltyBoss5||pb-JiNJARBSXURGW1tAEERXU1RHFkBXRlNF|| joined server -2022-12-04 15:52:37.862071 + : Mukund094||pb-IF4SUnMKEw==|| joined server -2022-12-04 15:52:54.923856 + : Arcanegame||pb-IF5QU3gCEQ==|| joined server -2022-12-04 15:53:11.002906 + : jagu22wan||pb-IF4UUxYyXA==|| joined server -2022-12-04 15:53:17.023774 + : POWERXDHRUV||pb-IF4GD2Yd|| joined server -2022-12-04 15:53:39.101408 + : vishnu234||pb-JiNJVxFfXUpEW1xCEEZSUlBGEUNaR1BE|| joined server -2022-12-04 15:54:02.182767 + : PlumpEnt18||pb-IF4MVUQjLw==|| joined server -2022-12-04 15:54:19.227409 + : UnmeasuredStreet50||pb-IF5TU0kDFw==|| joined server -2022-12-04 15:54:27.262916 + : Android56293089||pb-IF4sUhAyKw==|| joined server -2022-12-04 15:55:36.496285 + : SheikRieng||pb-IF4rU1BdLw==|| joined server -2022-12-04 15:55:52.571819 + : atharv1326||pb-IF4vU2sIMg==|| joined server -2022-12-04 15:55:59.599548 + : BouncyTrucker29384||pb-IF4-VEsEJA==|| joined server -2022-12-04 15:56:28.703459 + : ImproperGl||pb-IF4rUmovMg==|| joined server -2022-12-04 15:57:30.907235 + : MDHAMDAN99||pb-IF4MU2sFJA==|| joined server -2022-12-04 15:57:44.951986 + : Android61865080||pb-IF4sU2sqHQ==|| joined server -2022-12-04 15:57:49.970173 + : MDHAMDAN99||pb-IF4MU2sFJA==|| joined server -2022-12-04 15:58:14.079868 + : Android60903665||pb-IF4mUxkJPw==|| joined server -2022-12-04 15:58:24.106538 + : MDHAMDAN99||pb-IF4MU2sFJA==|| joined server -2022-12-04 15:58:25.110050 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-04 15:58:51.173535 + : Android63728390||pb-IF4HU0gSFw==|| joined server -2022-12-04 15:59:16.257729 + : MDHAMDAN99||pb-IF4MU2sFJA==|| joined server -2022-12-04 15:59:30.316919 + : Invisible6||pb-IF4MU085LA==|| joined server -2022-12-04 16:00:44.599159 + : PreschoolViability39||pb-IF4KUk0MJg==|| joined server -2022-12-04 16:00:58.663234 + : PlainerEnc||pb-IF5VVVEADg==|| joined server -2022-12-04 16:01:08.703958 + : PlainerEnc||pb-IF5VVVEADg==|| joined server -2022-12-04 16:01:49.888302 + : AbhiiiOP1||pb-IF4LUlQ7Ng==|| joined server -2022-12-04 16:04:05.372375 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-04 16:05:13.631944 + : TSMentVansh1234||pb-IF4lU086KQ==|| joined server -2022-12-04 16:06:07.883910 + : SaltyClown69079||pb-IF4OF2EA|| joined server -2022-12-04 16:06:19.932718 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-04 16:06:28.950507 + : Android48713858||pb-IF49VW0hJA==|| joined server -2022-12-04 16:06:59.061944 + : LethargicHotshot9113||pb-IF4-UnVTXQ==|| joined server -2022-12-04 16:07:44.249137 + : Android54203722||pb-IF4XVVEuAA==|| joined server -2022-12-04 16:09:20.659779 + : PC772976||pb-IF4xU04OMg==|| joined server -2022-12-04 16:10:59.039494 + : Android63796197||pb-IF5UU01eKw==|| joined server -2022-12-04 16:12:38.398086 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-04 16:12:44.416991 + : DiffidentHoplite31||pb-IF4sU0wcBA==|| joined server -2022-12-04 16:13:40.601903 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-04 16:13:54.666955 + : aslammalik||pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB|| joined server -2022-12-04 16:14:37.829186 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-04 16:15:01.928461 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-04 16:15:22.001525 + : UnpopularHunter14650||pb-IF4DUlQYEw==|| joined server -2022-12-04 16:15:30.025545 + : JRGunner10||pb-IF4PU046AA==|| joined server -2022-12-04 16:16:28.264515 + : OriginalTe||pb-IF4pU0gcDQ==|| joined server -2022-12-04 16:17:21.438397 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-04 16:18:33.662363 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-04 16:21:28.326726 + : noselessmo||pb-IF4NUm4IFA==|| joined server -2022-12-04 16:22:22.514380 + : Phalgun~||pb-LV4FBUYOVRRBCl4UEkVRB1EWGA==|| joined server -2022-12-04 16:22:35.565553 + : Android59632041||pb-IF5SUlkpPQ==|| joined server -2022-12-04 16:26:22.377917 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-04 16:27:16.549935 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-04 16:28:01.737618 + : FormerInno||pb-IF49VWglHA==|| joined server -2022-12-04 16:28:11.758634 + : BodaciousHipster7051||pb-IF4wU00EFA==|| joined server -2022-12-04 16:28:56.928923 + : ProbablePl||pb-IF4mU3kDIg==|| joined server -2022-12-04 16:29:29.048655 + : SpontaneousTexture21||pb-IF5QUncABw==|| joined server -2022-12-04 16:31:35.473086 + : raiyyan095||pb-IF4HU3YGEQ==|| joined server -2022-12-04 16:32:13.606722 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-04 16:33:08.796864 + : SpontaneousTexture21||pb-IF5QUncABw==|| joined server -2022-12-04 16:34:29.089027 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-04 16:34:31.098988 + : ExposedEditorial36||pb-IF4AU0slNQ==|| joined server -2022-12-04 16:35:05.214733 + : NOORULAMEENAK57THALA||pb-IF4cVEsJAg==|| joined server -2022-12-04 16:35:57.420512 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-04 16:39:36.159404 + : TSMentVansh1234||pb-IF4lU086KQ==|| joined server -2022-12-04 16:41:45.588713 + : ᴵᴬᴹズRaoJi||pb-IF4pVVQBEA==|| joined server -2022-12-04 16:42:00.638230 + : ProbablePl||pb-IF4mU3kDIg==|| joined server -2022-12-04 16:43:51.040437 + : Sagaramin12345||pb-JiNJARFeUkZGXVhBEUdSU1RGEkJXTlRH|| joined server -2022-12-04 16:45:02.290663 + : UnnumberedRobbery17||pb-IF4KVRMyUw==|| joined server -2022-12-04 16:45:51.477158 + : Android61702035||pb-IF4-U2pcKA==|| joined server -2022-12-04 16:46:39.628773 + : Android63349899||pb-IF49U0JZFw==|| joined server -2022-12-04 16:47:30.828452 + : POWERXDHRUV||pb-IF4GD2Yd|| joined server -2022-12-04 16:47:36.848633 + : POWERXDHRUV||pb-IF4GD2Yd|| joined server -2022-12-04 16:49:16.197730 + : QuerulousBrick19||pb-IF48VWIPPw==|| joined server -2022-12-04 16:49:29.256071 + : DAXDESAI||pb-IF4oVEwvLA==|| joined server -2022-12-04 16:49:40.289287 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-04 16:52:28.901981 + : CosmicOutl||pb-IF4yUng_XA==|| joined server -2022-12-04 16:53:06.048882 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-04 16:53:19.093097 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-04 16:53:35.175817 + : LoverboyRo||pb-JiNJARBcUEpCW15BEUNSXVVAGUFeQVJC|| joined server -2022-12-04 16:53:41.196045 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-04 16:54:19.346806 + : yuriiiiiiiiii116||pb-IF4sU0ETNA==|| joined server -2022-12-04 16:54:27.376220 + : royiam||pb-JiNJARFYXEtAWVlAFERRXFRFF0VfQVND|| joined server -2022-12-04 16:54:49.441359 + : Android63934668||pb-IF4vU04bIw==|| joined server -2022-12-04 16:56:05.704763 + : CosmicOutl||pb-IF4yUng_XA==|| joined server -2022-12-04 16:57:19.005739 + : Android50225790||pb-IF5WVXkpVQ==|| joined server -2022-12-04 16:58:02.148994 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-04 16:58:39.256957 + : Android63830734||pb-IF4BU0s8BA==|| joined server -2022-12-04 16:58:49.293387 + : royiam||pb-JiNJARFYXEtAWVlAFERRXFRFF0VfQVND|| joined server -2022-12-04 16:59:07.328881 + : ScreechingOoze8069||pb-JiNJARFeUkdDX1tHEkVTVlFDFUlXRllG|| joined server -2022-12-04 16:59:14.348895 + : AyushW1060||pb-IF4lU2wxKA==|| joined server -2022-12-04 17:00:42.673717 + : Navestien666||pb-IF40UkQYJg==|| joined server -2022-12-04 17:01:17.820419 + : LethargicHotshot9113||pb-IF4-UnVTXQ==|| joined server -2022-12-04 17:01:20.829900 + : POWERXDHRUV||pb-IF4GD2Yd|| joined server -2022-12-04 17:02:13.030788 + : CaffeineAs||pb-IF4lVVQoFg==|| joined server -2022-12-04 17:02:57.167150 + : delrowe012||pb-IF4PVFRZMA==|| joined server -2022-12-04 17:04:05.424724 + : ScreechingOoze8069||pb-JiNJARFeUkdDX1tHEkVTVlFDFUlXRllG|| joined server -2022-12-04 17:04:25.511746 + : captshivi||pb-IF4tCRgv|| joined server -2022-12-04 17:04:42.558095 + : captshivi||pb-IF4tCRgv|| joined server -2022-12-04 17:05:18.689186 + : captshivi||pb-IF4tCRgv|| joined server -2022-12-04 17:06:01.850102 + : Martinphilipjacob132||pb-IF4cU3oSUw==|| joined server -2022-12-04 17:06:19.909989 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-04 17:07:12.093779 + : delrowe012||pb-IF4PVFRZMA==|| joined server -2022-12-04 17:08:15.314448 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-04 17:08:27.360999 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-04 17:08:36.388382 + : Android63783914||pb-IF4NUhUaHw==|| joined server -2022-12-04 17:08:43.423361 + : shazan99502||pb-IF5QVFRdIQ==|| joined server -2022-12-04 17:11:07.955625 + : TelegraphicTree29||pb-IF4qUkw9Pw==|| joined server -2022-12-04 17:11:20.008418 + : Android63853549||pb-IF4KU0waFA==|| joined server -2022-12-04 17:11:23.020640 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-04 17:11:44.103655 + : MemerBadshah||pb-IF4JUmdaIg==|| joined server -2022-12-04 17:12:09.216187 + : ReliableDi||pb-IF43U0sjUQ==|| joined server -2022-12-04 17:12:20.246690 + : MDHAMDAN99||pb-IF4MU2sFJA==|| joined server -2022-12-04 17:13:18.465079 + : ReliableDi||pb-IF43U0sjUQ==|| joined server -2022-12-04 17:13:33.536268 + : Understoo2||pb-IF4yU0QOIw==|| joined server -2022-12-04 17:13:40.568123 + : SketchyPar||pb-IF4cU08AHA==|| joined server -2022-12-04 17:15:03.878717 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-04 17:17:39.524942 + : VerdantCircus9||pb-IF4AVVAIUg==|| joined server -2022-12-04 17:20:38.168568 + : FranticAlliance82034||pb-IF4wU0EzEA==|| joined server -2022-12-04 17:21:15.284944 + : Android63916646||pb-IF41U00aAg==|| joined server -2022-12-04 17:23:03.691930 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-04 17:23:25.765910 + : Android63195782||pb-IF4rU3oHCw==|| joined server -2022-12-04 17:25:41.238306 + : Android63833158||pb-IF4XU0w8Ug==|| joined server -2022-12-04 17:26:16.332975 + : catbros7||pb-IF4eUhIxBg==|| joined server -2022-12-04 17:28:03.730659 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-04 17:28:29.845202 + : sahilkhatri343593||pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL|| joined server -2022-12-04 17:29:05.998840 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-04 17:29:30.092836 + : rajanr1234||pb-JiNJARBTVkdCW1ZIEkRVVlVGGUFcRVRG|| joined server -2022-12-04 17:30:01.221594 + : Android63923008||pb-IF4PU04gEw==|| joined server -2022-12-04 17:30:30.321613 + : sheriffgamer007||pb-IF5dU3UiAw==|| joined server -2022-12-04 17:32:11.657295 + : RedeemingTariff52||pb-IF4QU0s_Eg==|| joined server -2022-12-04 17:32:16.671157 + : VolcanoOP||pb-IF4IU3kKKA==|| joined server -2022-12-04 17:32:36.737172 + : RedeemingTariff52||pb-IF4QU0s_Eg==|| joined server -2022-12-04 17:32:37.738250 + : Android45693231||pb-IF4GVRNYVw==|| joined server -2022-12-04 17:32:42.761675 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-04 17:32:49.788114 + : RedDreameater55290||pb-IF43VUwpNw==|| joined server -2022-12-04 17:33:29.942191 + : TranslucentSpeed26||pb-IF4wU0gdPA==|| joined server -2022-12-04 17:36:14.484451 + : Android48199653||pb-IF4gU2wxIg==|| joined server -2022-12-04 17:36:19.499839 + : NarrowHips||pb-IF4hU0YdDg==|| joined server -2022-12-04 17:36:23.516290 + : Android63983709||pb-IF4UU1AtCw==|| joined server -2022-12-04 17:36:48.621155 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-04 17:37:47.838435 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-04 17:38:25.943508 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-04 17:38:27.947638 + : RedeemingTariff52||pb-IF4QU0s_Eg==|| joined server -2022-12-04 18:51:30.216184 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-04 18:51:37.238574 + : paratròóper||pb-IF4IV04ZKw==|| joined server -2022-12-04 18:52:10.351254 + : PC772976||pb-IF4xU04OMg==|| joined server -2022-12-04 18:52:14.358336 + : albyresto77||pb-IF5XVGQoFA==|| joined server -2022-12-04 18:52:15.362775 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-04 18:54:42.938636 + : IdenticalShock57||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-04 18:55:28.096152 + : MPF||pb-IF4rLkwp|| joined server -2022-12-04 18:57:48.616689 + : PC363206||pb-IF4pUmQcPA==|| joined server -2022-12-04 18:58:36.774787 + : BeamingMos||pb-IF4iVxJYAA==|| joined server -2022-12-04 18:58:38.784296 + : Android63952571||pb-IF4RU086HQ==|| joined server -2022-12-04 18:59:07.905168 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-04 19:00:38.204079 + : LunaticTactician7288||pb-IF4HU3hTEA==|| joined server -2022-12-04 19:01:32.430631 + : VenousJackal46||pb-IF4LU04tIw==|| joined server -2022-12-04 19:01:50.491496 + : VenousJackal46||pb-IF4LU04tIw==|| joined server -2022-12-04 19:02:14.565180 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-04 19:03:06.759243 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-04 19:03:07.762271 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-04 19:03:12.777033 + : GodplayerO||pb-IF4gUlAgLw==|| joined server -2022-12-04 19:03:23.820985 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-04 19:08:23.898424 + : matinnosra||pb-IF4yV2ERXQ==|| joined server -2022-12-04 19:08:49.999500 + : UbeTaTtA69||pb-IF4-U0wpMQ==|| joined server -2022-12-04 19:10:29.374137 + : PlaneProcession32||pb-IF4sVVM5Mg==|| joined server -2022-12-04 19:11:24.558631 + : UpbeatCeme||pb-IF4SUmwlVA==|| joined server -2022-12-04 19:14:04.146292 + : VenousJackal46||pb-IF4LU04tIw==|| joined server -2022-12-04 19:14:28.247015 + : sahilkhatri343593||pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL|| joined server -2022-12-04 19:15:58.567916 + : UpbeatCeme||pb-IF4SUmwlVA==|| joined server -2022-12-04 19:17:11.829671 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-04 19:17:20.865492 + : UpbeatCeme||pb-IF4SUmwlVA==|| joined server -2022-12-04 19:17:49.961589 + : ArylAwesom||pb-IF4PU08bLA==|| joined server -2022-12-04 19:18:00.994162 + : มิกซ์3707||pb-IF4CVBYJCA==|| joined server -2022-12-04 19:19:12.253243 + : UpbeatCeme||pb-IF4SUmwlVA==|| joined server -2022-12-04 19:20:55.618954 + : EpidemicDi||pb-IF4XUxYINw==|| joined server -2022-12-04 19:21:50.820557 + : UbeTaTtA69||pb-IF4-U0wpMQ==|| joined server -2022-12-04 19:24:00.305673 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-04 19:24:06.332245 + : Suryakd04||pb-IF42U04kLg==|| joined server -2022-12-04 19:24:09.343028 + : Android63860546||pb-IF4hU0sNIQ==|| joined server -2022-12-04 19:25:31.653731 + : Suryakd04||pb-IF42U04kLg==|| joined server -2022-12-04 19:27:09.994218 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-04 19:28:01.172612 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-04 19:28:14.228930 + : ChintuKarthik1123||pb-IF43U3opMw==|| joined server -2022-12-04 19:31:01.819025 + : UbeTaTtA69||pb-IF4-U0wpMQ==|| joined server -2022-12-04 19:31:21.898375 + : MPF||pb-IF4rLkwp|| joined server -2022-12-04 19:32:02.016446 + : TopicalFur||pb-IF4tVUQjFA==|| joined server -2022-12-04 19:33:29.327738 + : ChintuKarthik1123||pb-IF43U3opMw==|| joined server -2022-12-04 19:34:27.500380 + : CompatibleUsage45||pb-IF4-U08hVg==|| joined server -2022-12-04 19:35:13.663242 + : MilderUprising53||pb-IF4uU0sRXA==|| joined server -2022-12-04 19:37:23.190003 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-04 19:39:23.603937 + : harishsola||pb-IF5RU2IPJg==|| joined server -2022-12-04 19:41:19.000336 + : Android63224716||pb-IF4wU0EoDA==|| joined server -2022-12-04 19:44:09.579097 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-04 19:44:20.629308 + : ClearerArmy31||pb-IF4jU0EgDQ==|| joined server -2022-12-04 19:44:36.698779 + : CrushedWolf82537||pb-IF4DV2ItCQ==|| joined server -2022-12-04 19:47:37.396384 + : MPF||pb-IF4rLkwp|| joined server -2022-12-04 19:47:39.400102 + : Wikirex2001||pb-IF41V0UyDg==|| joined server -2022-12-04 19:48:37.580781 + : MilderUprising53||pb-IF4uU0sRXA==|| joined server -2022-12-04 19:48:41.597070 + : Wikirex2001||pb-IF41V0UyDg==|| joined server -2022-12-04 19:50:06.881481 + : Fancydinne||pb-IF4rVUcbVQ==|| joined server -2022-12-04 19:50:28.941753 + : MilderUprising53||pb-IF4uU0sRXA==|| joined server -2022-12-04 19:51:42.173421 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-04 19:52:26.317844 + : MilderUprising53||pb-IF4uU0sRXA==|| joined server -2022-12-04 19:57:05.312614 + : Android63614116||pb-IF40U0ZaPw==|| joined server -2022-12-04 19:58:50.695946 + : GreenishHoplite57||pb-IF4DU0g6EQ==|| joined server -2022-12-04 20:01:12.260715 + : dhairyabhavya||pb-IF4BPFRY|| joined server -2022-12-04 20:01:39.352373 + : ClearerArmy31||pb-IF4jU0EgDQ==|| joined server -2022-12-04 20:10:09.291307 + : MPF||pb-IF4rLkwp|| joined server -2022-12-04 20:10:17.315616 + : Suryakd04||pb-IF42U04kLg==|| joined server -2022-12-04 20:10:26.361357 + : NoName49837||pb-JiNJARBSXEJGWVhIGEJQVFJDGUVXRllL|| joined server -2022-12-04 20:11:12.514551 + : Android62958044||pb-IF49VFcGNw==|| joined server -2022-12-04 20:16:48.710171 + : redrubydiamond94||pb-IF5dU20MFg==|| joined server -2022-12-04 20:19:47.324744 + : StoicTurbulence18||pb-IF4vU2lbDw==|| joined server -2022-12-04 20:20:29.458427 + : davidson6466||pb-IF4IIUU6|| joined server -2022-12-04 20:21:06.587871 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-04 20:24:52.349596 + : KingsKing2||pb-IF4jVVgTXA==|| joined server -2022-12-04 20:24:58.361580 + : redrubydiamond94||pb-IF5dU20MFg==|| joined server -2022-12-04 20:25:20.435904 + : Android63948779||pb-IF4RU08gKg==|| joined server -2022-12-04 20:25:42.528719 + : Measurabl7||pb-IF42U05cDw==|| joined server -2022-12-04 20:25:44.538974 + : davidson6466||pb-IF4IIUU6|| joined server -2022-12-04 20:28:18.087284 + : StoicTurbulence18||pb-IF4vU2lbDw==|| joined server -2022-12-04 20:30:15.517513 + : Android63948779||pb-IF4RU08gKg==|| joined server -2022-12-04 20:33:49.277805 + : StoicTurbulence18||pb-IF4vU2lbDw==|| joined server -2022-12-04 20:35:37.673482 + : OO||pb-IF4RVRk7EQ==|| joined server -2022-12-04 20:35:45.707466 + : OO||pb-IF4RVRk7EQ==|| joined server -2022-12-04 20:36:29.874577 + : ChintuKarthik1123||pb-IF43U3opMw==|| joined server -2022-12-04 20:38:42.338144 + : TUJABAAP005||pb-IF4TUxEoKg==|| joined server -2022-12-04 20:41:32.878569 + : MilesAboveYou||pb-IF4CUhM5AQ==|| joined server -2022-12-04 20:41:49.932921 + : capnStranger||pb-IF4FUksNDg==|| joined server -2022-12-04 20:45:17.665560 + : Android63948779||pb-IF4RU08gKg==|| joined server -2022-12-04 20:50:21.725246 + : Android62438169||pb-IF4JU3IpKw==|| joined server -2022-12-04 20:50:23.731258 + : swaprocks4||pb-JiNJVxFcUUVJW15EGE9XVldGF0ZdTlNF|| joined server -2022-12-04 20:52:37.211406 + : Android63813378||pb-IF4PU0s9PQ==|| joined server -2022-12-04 20:56:17.989834 + : LoudArithmetic11||pb-IF4UUkJZKw==|| joined server -2022-12-04 20:56:46.088325 + : WonderfulH||pb-IF4sVVgTAg==|| joined server -2022-12-04 20:59:04.614112 + : TUJABAAP005||pb-IF4TUxEoKg==|| joined server -2022-12-04 20:59:08.624378 + : MadBanjoPl||pb-IF5TV1o8XQ==|| joined server -2022-12-04 21:02:27.298547 + : pulkitfirani||pb-IF4CVUkKKg==|| joined server -2022-12-04 21:05:27.999728 + : Android63948779||pb-IF4RU08gKg==|| joined server -2022-12-04 21:06:46.288271 + : Nihilisti2||pb-JiNJARBfVUtBVFhCEERZUlNEGUBbRFRF|| joined server -2022-12-04 21:07:22.437041 + : Android63948779||pb-IF4RU08gKg==|| joined server -2022-12-04 21:08:56.700968 + : SniperRookie8431||pb-IF49Ploi|| joined server -2022-12-04 21:09:43.876278 + : Matt0so||pb-IF4gHGlS|| joined server -2022-12-04 21:10:49.089797 + : SoochowDri||pb-IF4GU1AiDw==|| joined server -2022-12-04 21:11:11.178253 + : CompanionableRag46||pb-IF4HU3YGBw==|| joined server -2022-12-04 21:11:29.255288 + : FastestThi||pb-IF4TU0I4Ew==|| joined server -2022-12-04 21:15:57.252207 + : WonderfulH||pb-IF4sVVgTAg==|| joined server -2022-12-04 21:16:34.405827 + : kishordevl||pb-IF4-UEgO|| joined server -2022-12-04 21:17:18.621257 + : PickyStatement25||pb-IF4VUhMcPw==|| joined server -2022-12-04 21:20:07.243874 + : TUJABAAP005||pb-IF4TUxEoKg==|| joined server -2022-12-04 21:23:38.043315 + : FastestThi||pb-IF4TU0I4Ew==|| joined server -2022-12-04 21:23:56.112497 + : Android63726577||pb-IF4qU0gfFA==|| joined server -2022-12-04 21:24:30.247281 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-04 21:30:52.674481 + : kishordevl||pb-IF4-UEgO|| joined server -2022-12-04 21:34:46.412520 + : Android63224716||pb-IF4wU0EoDA==|| joined server -2022-12-04 21:35:24.515346 + : paratròóper||pb-IF4IV04ZKw==|| joined server -2022-12-04 21:35:52.619925 + : TUJABAAP005||pb-IF4TUxEoKg==|| joined server -2022-12-04 21:39:27.388671 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-04 21:39:40.432817 + : 언직1984||pb-IF4wU0UjMg==|| joined server -2022-12-04 21:45:39.708947 + : Android63886122||pb-IF4tU00IIg==|| joined server -2022-12-04 21:46:48.968509 + : PILEQUIFBI||pb-IF4oUmspEQ==|| joined server -2022-12-04 21:53:50.444005 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-04 21:58:25.403976 + : StingyOccurrence56||pb-IF4mU0cfXA==|| joined server -2022-12-04 22:00:07.795381 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-04 22:00:22.850419 + : PSSG24||pb-IF4mVxRZXA==|| joined server -2022-12-04 22:01:36.132981 + : SapphireM2||pb-IF5SVxkfLw==|| joined server -2022-12-04 22:04:39.775319 + : OddFeeling||pb-IF4iVEo4Lg==|| joined server -2022-12-04 22:10:16.991516 + : UnusualJavelina35259||pb-IF49VW5cKQ==|| joined server -2022-12-04 22:10:57.134843 + : LocomotiveVigilance7||pb-IF4nVXktLw==|| joined server -2022-12-04 22:12:20.434897 + : WeakerDist||pb-IF48U0gcBw==|| joined server -2022-12-04 22:13:29.689703 + : Android63726577||pb-IF4qU0gfFA==|| joined server -2022-12-04 22:15:34.160536 + : OverallCon||pb-IF48U00qNA==|| joined server -2022-12-04 22:17:22.518367 + : JKS4302||pb-IF4rU3omIw==|| joined server -2022-12-04 22:20:53.209334 + : OddFeeling||pb-IF4iVEo4Lg==|| joined server -2022-12-04 22:24:37.027796 + : PurposefulOffence22||pb-IF4nUmsiNg==|| joined server -2022-12-04 22:28:30.904251 + : Roofy156||pb-IF4jU08dIQ==|| joined server -2022-12-04 22:39:08.345302 + : NiuNiu0808||pb-IF4sUhAOXA==|| joined server -2022-12-04 22:43:33.289235 + : CozyProkil||pb-IF4yVGIYPQ==|| joined server -2022-12-04 22:46:32.980606 + : unstoppabl||pb-IF4TU0o6Aw==|| joined server -2022-12-04 22:52:17.289072 + : Roofy156||pb-IF4jU08dIQ==|| joined server -2022-12-04 22:54:44.822154 + : AshuAmbros||pb-LV4FURgIUhBIWg4VRBQDV1IRQg==|| joined server -2022-12-04 22:57:23.406058 + : gaviota36497love||pb-IF4BU04oMw==|| joined server -2022-12-04 23:38:55.067942 + : Blueeesky3||pb-IF4LUk4-DA==|| joined server -2022-12-04 23:40:40.427933 + : Android63948779||pb-IF4RU08gKg==|| joined server -2022-12-04 23:45:33.465096 + : josesoulkn||pb-IF4XUhElCA==|| joined server -2022-12-04 23:52:41.151588 + : FellowStro||pb-IF49VUIhKA==|| joined server -2022-12-04 23:55:12.696087 + : InsincereCase61||pb-IF4sU0s_XQ==|| joined server -2022-12-04 23:59:29.686449 + : PeekingNomad673||pb-IF4HVHJaLw==|| joined server -2022-12-04 23:59:58.817887 + : RighteousRein29||pb-IF4-U3M7Ug==|| joined server -2022-12-05 00:01:17.100433 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-05 00:02:00.305976 + : RainyParce||pb-IF5RU1AaLw==|| joined server -2022-12-05 00:29:20.425715 + : TriplePie57||pb-IF5RU21cVw==|| joined server -2022-12-05 00:30:00.570667 + : 0deathriot0||pb-IF4DUhMJFg==|| joined server -2022-12-05 00:31:45.910520 + : KÅRTÕS||pb-IF5WDVcI|| joined server -2022-12-05 00:32:47.148820 + : Android61067824||pb-IF4uU2ImAg==|| joined server -2022-12-05 00:35:19.688709 + : HotPinkBuccaneer9071||pb-IF48VFIlDQ==|| joined server -2022-12-05 00:36:42.135847 + : VR329281||pb-IF4uU0MJMA==|| joined server -2022-12-05 00:39:01.670621 + : TriplePie57||pb-IF5RU21cVw==|| joined server -2022-12-05 00:41:08.164271 + : TriplePie57||pb-IF5RU21cVw==|| joined server -2022-12-05 00:44:53.926170 + : IdioticPyr||pb-IF4sU20DHw==|| joined server -2022-12-05 00:46:34.283933 + : NewGamer456ProGamer||pb-IF5QU3ISKA==|| joined server -2022-12-05 00:47:37.503907 + : VR329281||pb-IF4uU0MJMA==|| joined server -2022-12-05 00:48:56.774924 + : Moonanez||pb-IF5cU1E5Mw==|| joined server -2022-12-05 00:53:40.169366 + : PC363206||pb-IF4pUmQcPA==|| joined server -2022-12-05 00:53:41.167733 + : TriplePie57||pb-IF5RU21cVw==|| joined server -2022-12-05 00:53:45.180761 + : NewGamer456ProGamer||pb-IF5QU3ISKA==|| joined server -2022-12-05 00:54:23.315941 + : Android63987828||pb-IF4iU08nNw==|| joined server -2022-12-05 01:00:19.618865 + : TriplePie57||pb-IF5RU21cVw==|| joined server -2022-12-05 01:00:51.723938 + : Dineshkd624||pb-IF4LMxRa|| joined server -2022-12-05 01:02:01.980502 + : SanguinePa||pb-IF4SU3kCMQ==|| joined server -2022-12-05 01:02:44.126217 + : LethargicM||pb-IF4oU04eNg==|| joined server -2022-12-05 01:07:15.069634 + : IGNOBLETRASLATION65||pb-IF4gUk8RCw==|| joined server -2022-12-05 01:07:18.084333 + : TranslucentSpeed26||pb-IF4wU0gdPA==|| joined server -2022-12-05 01:08:17.283572 + : pausaltkrym||pb-IF5SUlA8Lw==|| joined server -2022-12-05 01:13:31.423714 + : TranslucentSpeed26||pb-IF4wU0gdPA==|| joined server -2022-12-05 01:16:04.935937 + : NewGamer456ProGamer||pb-IF5QU3ISKA==|| joined server -2022-12-05 01:17:01.131051 + : SATHISHmax1206||pb-IF4CVWFaUw==|| joined server -2022-12-05 01:27:21.125279 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-05 01:28:22.339961 + : PC363206||pb-IF4pUmQcPA==|| joined server -2022-12-05 01:28:28.359394 + : praneshbhat14051998||pb-IF4BV1U9LA==|| joined server -2022-12-05 01:29:55.671638 + : anshudec14||pb-IF4tVVIDCw==|| joined server -2022-12-05 01:30:23.772925 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-05 01:31:59.109307 + : gokulse7en||pb-IF5SVxkkLQ==|| joined server -2022-12-05 01:32:26.189314 + : Socrates43||pb-IF40U0oYBg==|| joined server -2022-12-05 01:32:51.281647 + : AgreeableSemblance50||pb-IF4HU0wiCQ==|| joined server -2022-12-05 01:34:24.648233 + : Dineshkd624||pb-IF4LMxRa|| joined server -2022-12-05 01:40:00.818328 + : Android63276533||pb-IF4RU0EbUA==|| joined server -2022-12-05 01:40:57.011808 + : Android63276533||pb-IF4RU0EbUA==|| joined server -2022-12-05 01:42:57.399903 + : PC363206||pb-IF4pUmQcPA==|| joined server -2022-12-05 01:55:39.853007 + : SharpIcthyosaur49205||pb-IF4SU09eKw==|| joined server -2022-12-05 02:02:59.220391 + : GrandComma||pb-IF4MU0wxNQ==|| joined server -2022-12-05 02:03:23.293135 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-05 02:03:45.394598 + : RancidSpecialty27||pb-IF4dU2YgFg==|| joined server -2022-12-05 02:07:43.226203 + : HArSH463||pb-IF49U3YpAA==|| joined server -2022-12-05 02:08:01.293760 + : LegibleAgility44||pb-IF5XU1EvNw==|| joined server -2022-12-05 02:11:51.084225 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-05 02:12:22.198193 + : FearlessCamel86718||pb-IF4eU0s9Pw==|| joined server -2022-12-05 02:12:33.262776 + : FearlessCamel86718||pb-IF4eU0s9Pw==|| joined server -2022-12-05 02:12:44.296636 + : FortuitousManeuver41||pb-IF48U0wiKw==|| joined server -2022-12-05 02:12:56.339229 + : FearlessCamel86718||pb-IF4eU0s9Pw==|| joined server -2022-12-05 02:13:25.447825 + : Unshakabl4||pb-IF4VVBYtVg==|| joined server -2022-12-05 02:14:13.621522 + : FearlessCamel86718||pb-IF4eU0s9Pw==|| joined server -2022-12-05 02:15:05.823894 + : henricoBS||pb-IF5VUhQYUw==|| joined server -2022-12-05 02:15:22.877433 + : ColderInfl||pb-IF4AU2kSAQ==|| joined server -2022-12-05 02:19:36.788742 + : Android63948779||pb-IF4RU08gKg==|| joined server -2022-12-05 02:22:14.311839 + : Android63948779||pb-IF4RU08gKg==|| joined server -2022-12-05 02:24:57.812371 + : PsychicalA||pb-IF4SU3U-Lw==|| joined server -2022-12-05 02:28:35.522211 + : LORDHanzoStar||pb-IF4qUkQ9CA==|| joined server -2022-12-05 02:30:13.844811 + : Android63948779||pb-IF4RU08gKg==|| joined server -2022-12-05 02:30:45.940784 + : Android57611965||pb-IF4tUkIlKg==|| joined server -2022-12-05 02:43:31.510221 + : NoName11978||pb-IF4LU0ZTBw==|| joined server -2022-12-05 02:46:57.312058 + : BushyInstructor7||pb-IF4WU0QRIA==|| joined server -2022-12-05 02:48:32.672852 + : GreenKiwi4||pb-IF4qKFAu|| joined server -2022-12-05 02:50:16.056524 + : LORDHanzoStar||pb-IF4qUkQ9CA==|| joined server -2022-12-05 02:50:20.077062 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-05 02:52:24.518441 + : EliteWallaby35692||pb-IF4gV1gCMQ==|| joined server -2022-12-05 02:52:41.575670 + : Brownmunde||pb-IF4TV3c_UQ==|| joined server -2022-12-05 02:53:12.695798 + : Android63976036||pb-IF5cU1E7Ig==|| joined server -2022-12-05 02:53:45.809548 + : DroopyGrif||pb-LV4FAxcNBxBGXVtIQhAEUlxKGA==|| joined server -2022-12-05 02:54:41.981351 + : CulturalJa||pb-IF4pUxUDDQ==|| joined server -2022-12-05 02:55:24.141419 + : CulturalJa||pb-IF4pUxUDDQ==|| joined server -2022-12-05 02:56:37.400065 + : Android63796554||pb-IF4NU0ojAA==|| joined server -2022-12-05 02:56:39.408929 + : TiredBrai2||pb-IF4JU0gtLA==|| joined server -2022-12-05 02:57:10.510034 + : CulturalJa||pb-IF4pUxUDDQ==|| joined server -2022-12-05 02:57:40.613952 + : CulturalJa||pb-IF4pUxUDDQ==|| joined server -2022-12-05 02:58:36.813806 + : Android63796554||pb-IF4NU0ojAA==|| joined server -2022-12-05 02:59:35.004131 + : Android45452286||pb-IF40VREoKw==|| joined server -2022-12-05 02:59:58.118463 + : Android62079867||pb-IF4tU24-Kw==|| joined server -2022-12-05 03:01:01.347046 + : Antibioti8||pb-IF4VVFIREg==|| joined server -2022-12-05 03:01:17.405925 + : DaringQuotation17||pb-IF4zU3chAg==|| joined server -2022-12-05 03:03:31.871862 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-05 03:03:47.928899 + : ElectiveEa||pb-IF5XU00EDA==|| joined server -2022-12-05 03:03:59.032628 + : InvidiousP||pb-IF42U047LA==|| joined server -2022-12-05 03:05:02.271012 + : Android63796554||pb-IF4NU0ojAA==|| joined server -2022-12-05 03:05:12.295094 + : Android63796554||pb-IF4NU0ojAA==|| joined server -2022-12-05 03:07:14.686232 + : Relentles6||pb-IF5QU1I4Pw==|| joined server -2022-12-05 03:07:54.819239 + : SonorousManager14542||pb-IF4HU3pSKA==|| joined server -2022-12-05 03:10:06.281887 + : PRASADGOLE007||pb-IF4yU05aKg==|| joined server -2022-12-05 03:10:16.334787 + : Android63976036||pb-IF5cU1E7Ig==|| joined server -2022-12-05 03:10:23.363049 + : SonorousManager14542||pb-IF4HU3pSKA==|| joined server -2022-12-05 03:10:50.438348 + : SonorousManager14542||pb-IF4HU3pSKA==|| joined server -2022-12-05 03:10:59.479229 + : SonorousManager14542||pb-IF4HU3pSKA==|| joined server -2022-12-05 03:11:09.511506 + : UnplannedReward53||pb-IF48U0kZJg==|| joined server -2022-12-05 03:11:19.536943 + : UnplannedReward53||pb-IF48U0kZJg==|| joined server -2022-12-05 03:12:28.780697 + : Android63974931||pb-IF4BU09dUg==|| joined server -2022-12-05 03:12:38.806001 + : mrdhruv09||pb-IF4NVWMEXA==|| joined server -2022-12-05 03:12:56.884500 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-05 03:13:29.004813 + : DastardlyVortex59872||pb-IF49U2otCQ==|| joined server -2022-12-05 03:14:14.157355 + : Android63984495||pb-IF4GU08eVA==|| joined server -2022-12-05 03:18:53.054763 + : Android63963639||pb-IF5WU1EqAw==|| joined server -2022-12-05 03:19:56.266883 + : Android51304540||pb-IF4zVUQEUw==|| joined server -2022-12-05 03:23:03.032727 + : Divaagarhockeyplayer||pb-IF5TVU5aMA==|| joined server -2022-12-05 03:23:20.087245 + : InSaneHarsh1726||pb-IF4xU0cAHA==|| joined server -2022-12-05 03:23:32.123391 + : Divaagarhockeyplayer||pb-IF5TVU5aMA==|| joined server -2022-12-05 03:24:42.367097 + : ShockPark152||pb-IF4oUxYTCw==|| joined server -2022-12-05 03:24:44.374066 + : CoincidentalBelt39||pb-IF5UUnUpMw==|| joined server -2022-12-05 03:25:27.564528 + : Divaagarhockeyplayer||pb-IF5TVU5aMA==|| joined server -2022-12-05 03:30:38.562748 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-05 03:38:30.120863 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-05 03:40:58.582014 + : UpbeatCeme||pb-IF4SUmwlVA==|| joined server -2022-12-05 03:43:51.153127 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-05 03:47:51.924897 + : AwesomeUni||pb-IF4LU0sFBA==|| joined server -2022-12-05 03:47:54.935968 + : Android63096875||pb-IF4QU3kvLg==|| joined server -2022-12-05 03:48:52.142086 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-05 03:51:43.878259 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-05 03:52:10.982974 + : shrirangam||pb-IF4oU0khUg==|| joined server -2022-12-05 03:53:17.226155 + : MenialValidation36||pb-IF4NU0s9Ig==|| joined server -2022-12-05 03:53:38.286689 + : Android63888799||pb-IF4oU004KQ==|| joined server -2022-12-05 03:53:47.351436 + : shrirangam||pb-IF4oU0khUg==|| joined server -2022-12-05 03:54:08.424179 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-05 03:54:15.454179 + : ClimaticFi||pb-IF42U08mNA==|| joined server -2022-12-05 03:54:18.462756 + : Android63970828||pb-IF4pU08BVA==|| joined server -2022-12-05 03:56:41.998206 + : vinothmptc||pb-IF4LU28SJA==|| joined server -2022-12-05 03:58:03.316334 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-05 03:59:16.577038 + : GracefulFoliage30||pb-IF4-U0Y9KQ==|| joined server -2022-12-05 03:59:49.703124 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-05 04:00:12.785146 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-05 04:00:15.798912 + : TejGamerNt||pb-IF4oUxAGPQ==|| joined server -2022-12-05 04:00:24.828435 + : Pillain||pb-JiNJARFdVEVHXVdHGUJYXVRHFkNWQ1dH|| joined server -2022-12-05 04:01:23.069339 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-05 04:01:45.140630 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-05 04:01:47.148277 + : Monopolis2||pb-IF5SU0kcBg==|| joined server -2022-12-05 04:01:48.153678 + : Jalindarabhang||pb-IF4KV2lYIw==|| joined server -2022-12-05 04:03:53.604097 + : ShamInformation21||pb-IF5UVWk7Aw==|| joined server -2022-12-05 04:05:20.901712 + : FamousImprovement43||pb-IF4TU0oFAQ==|| joined server -2022-12-05 04:05:57.006245 + : Android63983529||pb-IF4XU1AvJA==|| joined server -2022-12-05 04:06:21.093612 + : FamousImprovement43||pb-IF4TU0oFAQ==|| joined server -2022-12-05 04:06:44.180322 + : GraniteInventor13||pb-IF41VRATBA==|| joined server -2022-12-05 04:09:30.897994 + : PC772976||pb-IF4xU04OMg==|| joined server -2022-12-05 04:11:13.262535 + : Dragonking464fire||pb-JiNJARBbU0dAW1hIEk9YXFFDEkZWQVRC|| joined server -2022-12-05 04:12:45.614481 + : FamousImprovement43||pb-IF4TU0oFAQ==|| joined server -2022-12-05 04:13:06.685587 + : vinothmptc||pb-IF4LU28SJA==|| joined server -2022-12-05 04:14:49.057197 + : Adversar12||pb-IF4CKEcn|| joined server -2022-12-05 04:15:58.337201 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 04:17:49.736433 + : SpuriousPresidency5||pb-IF4CU0oeIA==|| joined server -2022-12-05 04:19:34.103226 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-05 04:20:32.290865 + : Amos101010||pb-JiNJARFeXUZAVFlEEkVXUlNDGURXT1hH|| joined server -2022-12-05 04:20:40.334171 + : ShootingBu||pb-IF5RJ2sR|| joined server -2022-12-05 04:20:41.339295 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-05 04:23:09.828221 + : UnexplainedFinish14||pb-IF4vVXQFAw==|| joined server -2022-12-05 04:23:18.862249 + : BadTerminator999||pb-IF4SV08HKw==|| joined server -2022-12-05 04:25:46.365082 + : FearlessCamel86718||pb-IF4eU0s9Pw==|| joined server -2022-12-05 04:26:40.561752 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 04:27:32.774588 + : InteriorDu||pb-IF4lUhECIQ==|| joined server -2022-12-05 04:28:42.002583 + : Android63824203||pb-IF4zU0saEg==|| joined server -2022-12-05 04:28:47.016429 + : HÊRÇÚLÉS||pb-IF40UhdaNA==|| joined server -2022-12-05 04:33:10.030274 + : FamousImprovement43||pb-IF4TU0oFAQ==|| joined server -2022-12-05 04:34:46.383381 + : Ambadykannan7878||pb-IF4wU3YdCw==|| joined server -2022-12-05 04:37:51.057671 + : DilatoryHo||pb-IF48U3FaNQ==|| joined server -2022-12-05 04:38:00.093868 + : Amos101010||pb-JiNJARFeXUZAVFlEEkVXUlNDGURXT1hH|| joined server -2022-12-05 04:38:55.330608 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-05 04:39:00.342463 + : farhathu123||pb-IF40U0sKFA==|| joined server -2022-12-05 04:39:12.383701 + : farhathu123||pb-IF40U0sKFA==|| joined server -2022-12-05 04:39:32.462774 + : DilatoryHo||pb-IF48U3FaNQ==|| joined server -2022-12-05 04:40:08.591368 + : FamousImprovement43||pb-IF4TU0oFAQ==|| joined server -2022-12-05 04:41:33.884433 + : BanefulConstancy1924||pb-IF4jU00eMA==|| joined server -2022-12-05 04:42:37.095937 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 04:43:02.209891 + : BakedCritter200||pb-IF41VEMGKw==|| joined server -2022-12-05 04:44:31.564707 + : FamousImprovement43||pb-IF4TU0oFAQ==|| joined server -2022-12-05 04:44:47.616219 + : HangryRanger89899||pb-IF4TU3MKBA==|| joined server -2022-12-05 04:45:47.828429 + : Android63927749||pb-IF4wU04bAQ==|| joined server -2022-12-05 04:46:16.921743 + : Android63927749||pb-IF4wU04bAQ==|| joined server -2022-12-05 04:47:19.216892 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-05 04:48:47.500113 + : Android63928196||pb-IF4zU04-EQ==|| joined server -2022-12-05 04:49:30.814215 + : Android63017111||pb-IF4gU3gnUQ==|| joined server -2022-12-05 04:49:40.858030 + : TricksterH||pb-IF40U0UcFQ==|| joined server -2022-12-05 04:49:52.895643 + : RagingAttacker80435||pb-IF5cV1YHLg==|| joined server -2022-12-05 04:50:10.962971 + : GreenishHoplite57||pb-IF4DU0g6EQ==|| joined server -2022-12-05 04:50:36.040873 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-05 04:50:39.046623 + : ExposedEditorial36||pb-IF4AU0slNQ==|| joined server -2022-12-05 04:54:05.907173 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-05 04:54:10.932119 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-05 04:55:00.072846 + : FamousImprovement43||pb-IF4TU0oFAQ==|| joined server -2022-12-05 04:55:31.171126 + : ᴵᴬᴹズRaoJi||pb-IF4pVVQBEA==|| joined server -2022-12-05 04:56:40.414618 + : WalkingBarbarism33||pb-IF5RUkRcXA==|| joined server -2022-12-05 04:56:46.434827 + : PC608120||pb-IF4PU0cTLg==|| joined server -2022-12-05 05:00:13.088871 + : WalkingBarbarism33||pb-IF5RUkRcXA==|| joined server -2022-12-05 05:00:54.312754 + : WishfulHil||pb-IF4dU04ODg==|| joined server -2022-12-05 05:01:34.426885 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-05 05:01:57.514781 + : WARRIR||pb-IF4SU3o5UQ==|| joined server -2022-12-05 05:02:32.628627 + : Android63928196||pb-IF4zU04-EQ==|| joined server -2022-12-05 05:02:53.705325 + : Pratheeswa||pb-IF4hV1ZTFA==|| joined server -2022-12-05 05:05:18.207113 + : MrDevil||pb-IF4hBFgH|| joined server -2022-12-05 05:06:07.369769 + : ᴵᴬᴹズRaoJi||pb-IF4pVVQBEA==|| joined server -2022-12-05 05:07:48.717989 + : EmbryonicHarmony14||pb-IF4cU04mPw==|| joined server -2022-12-05 05:08:44.912705 + : LyingSword||pb-LV4FBEEKV0ZAVVwVGBVTBlxBFQ==|| joined server -2022-12-05 05:09:52.130000 + : WalkingBarbarism33||pb-IF5RUkRcXA==|| joined server -2022-12-05 05:10:17.196087 + : Siddharaj1||pb-IF4GU0UGCA==|| joined server -2022-12-05 05:10:49.299396 + : Android63276533||pb-IF4RU0EbUA==|| joined server -2022-12-05 05:11:51.536145 + : ExposedEditorial36||pb-IF4AU0slNQ==|| joined server -2022-12-05 05:11:53.549805 + : WalkingBarbarism33||pb-IF5RUkRcXA==|| joined server -2022-12-05 05:12:05.573431 + : PC772976||pb-IF4xU04OMg==|| joined server -2022-12-05 05:12:44.712704 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-05 05:13:09.773634 + : LyingSword||pb-LV4FBEEKV0ZAVVwVGBVTBlxBFQ==|| joined server -2022-12-05 05:13:28.833709 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-05 05:14:08.980570 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-05 05:15:18.210700 + : PointyLeo1||pb-IF5SUxMGAg==|| joined server -2022-12-05 05:15:45.294103 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-05 05:16:49.715869 + : BruceBat1997||pb-IF5SUxQJJw==|| joined server -2022-12-05 05:17:36.896854 + : kshitijGaming15||pb-IF4FU0ohEw==|| joined server -2022-12-05 05:21:05.984154 + : TUJABAAP005||pb-IF4TUxEoKg==|| joined server -2022-12-05 05:22:07.218740 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-05 05:23:16.446402 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-05 05:23:36.526257 + : CHICKENBOO||pb-IF4AV1QqEQ==|| joined server -2022-12-05 05:24:32.743582 + : Android63276533||pb-IF4RU0EbUA==|| joined server -2022-12-05 05:27:33.417770 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-05 05:31:04.258963 + : HourlyTreaty30||pb-IF4WU04ENQ==|| joined server -2022-12-05 05:31:40.393672 + : LyingSword||pb-LV4FBEEKV0ZAVVwVGBVTBlxBFQ==|| joined server -2022-12-05 05:33:01.867917 + : Android63888799||pb-IF4oU004KQ==|| joined server -2022-12-05 05:34:07.092246 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-05 05:34:33.200622 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-05 05:35:06.301742 + : ElectiveEa||pb-IF5XU00EDA==|| joined server -2022-12-05 05:35:14.338648 + : ElectiveEa||pb-IF5XU00EDA==|| joined server -2022-12-05 05:38:56.156886 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-05 05:39:00.181646 + : ResourcefulBear38||pb-IF4PUkdbFw==|| joined server -2022-12-05 05:40:28.496698 + : YogeYogesh14||pb-IF4DU3AABw==|| joined server -2022-12-05 05:40:41.545108 + : EliteWallaby35692||pb-IF4gV1gCMQ==|| joined server -2022-12-05 05:41:16.668363 + : Navestien666||pb-IF40UkQYJg==|| joined server -2022-12-05 05:44:06.243955 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-05 05:44:47.385130 + : AsteroidBo||pb-IF4CU04ePQ==|| joined server -2022-12-05 05:45:16.482085 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-05 05:45:59.649120 + : Thephenomenal9903||pb-IF4dVU4xVg==|| joined server -2022-12-05 05:46:54.837438 + : AsteroidBo||pb-IF4CU04ePQ==|| joined server -2022-12-05 05:47:25.949401 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-05 05:47:47.044899 + : VidhyanFal||pb-IF4LUk0FCQ==|| joined server -2022-12-05 05:48:27.196548 + : DarkLordAscended||pb-IF4KU0UqLA==|| joined server -2022-12-05 05:49:08.345859 + : kutty1012||pb-IF48VBcFEw==|| joined server -2022-12-05 05:49:22.397687 + : MenialValidation36||pb-IF4NU0s9Ig==|| joined server -2022-12-05 05:49:25.411723 + : BiornIrons||pb-IF4vU08YEA==|| joined server -2022-12-05 05:50:12.589319 + : ᴿˢᏴᎡᎪƝᎠ||pb-IF4FU3UmHw==|| joined server -2022-12-05 05:50:40.710096 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-05 05:52:02.147275 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-05 05:52:45.300913 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-05 05:53:33.478345 + : MenialValidation36||pb-IF4NU0s9Ig==|| joined server -2022-12-05 05:54:12.601622 + : RollingVor||pb-IF4yU0omIg==|| joined server -2022-12-05 05:56:13.992541 + : HacktasticCadet89388||pb-IF4nUnEHVg==|| joined server -2022-12-05 05:56:15.995957 + : Android63983164||pb-IF4lU08FJA==|| joined server -2022-12-05 05:57:14.238675 + : BodaciousHipster7051||pb-IF4wU00EFA==|| joined server -2022-12-05 05:57:19.251054 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-05 05:58:31.715764 + : MrDevil||pb-IF4hBFgH|| joined server -2022-12-05 06:00:30.158361 + : bhumit21||pb-IF4sU0gNFg==|| joined server -2022-12-05 06:00:54.251380 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-05 06:01:21.362408 + : lolisoh640||pb-IF4gU048KQ==|| joined server -2022-12-05 06:01:31.407512 + : AudaciousCombat79594||pb-IF4pU0gvEQ==|| joined server -2022-12-05 06:01:42.450975 + : Rahul1000010206||pb-IF4AV3RfLA==|| joined server -2022-12-05 06:02:21.666034 + : Immeasura8||pb-IF5VUlYjNw==|| joined server -2022-12-05 06:03:06.840333 + : HacktasticCadet89388||pb-IF4nUnEHVg==|| joined server -2022-12-05 06:04:19.138455 + : MetalEel46||pb-IF4lU045AQ==|| joined server -2022-12-05 06:06:10.592981 + : Agzx2244||pb-IF4PV24yPA==|| joined server -2022-12-05 06:06:13.602822 + : kshitijGaming15||pb-IF4FU0ohEw==|| joined server -2022-12-05 06:06:27.652653 + : NativeEmpi||pb-IF4cU08HKg==|| joined server -2022-12-05 06:07:46.959106 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-05 06:07:52.976342 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-05 06:09:18.315616 + : MonocledRemainder37||pb-IF5WUxQgVw==|| joined server -2022-12-05 06:11:08.792606 + : hddibduxj2||pb-IF4PU08cFA==|| joined server -2022-12-05 06:11:38.054233 + : PersonalAc||pb-IF4MU08zBg==|| joined server -2022-12-05 06:12:01.132707 + : PC772976||pb-IF4xU04OMg==|| joined server -2022-12-05 06:15:43.959027 + : LionAlpha7998||pb-IF4UVGg8KQ==|| joined server -2022-12-05 06:16:19.060664 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-05 06:16:49.377848 + : hddibduxj2||pb-IF4PU08cFA==|| joined server -2022-12-05 06:16:53.398713 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-05 06:17:05.424851 + : FearlessCamel86718||pb-IF4eU0s9Pw==|| joined server -2022-12-05 06:17:38.556355 + : ExposedEditorial36||pb-IF4AU0slNQ==|| joined server -2022-12-05 06:19:09.884598 + : ExpensiveSampling66||pb-IF4PU0hcUg==|| joined server -2022-12-05 06:19:11.891018 + : Bryanfurythemaster||pb-IF4WUhk7LA==|| joined server -2022-12-05 06:19:33.973193 + : Bryanfurythemaster||pb-IF4WUhk7LA==|| joined server -2022-12-05 06:19:49.027675 + : shrey19654||pb-IF4QVGYMKg==|| joined server -2022-12-05 06:20:01.076656 + : LIONHUNTER||pb-IF4eVGc7Cw==|| joined server -2022-12-05 06:20:40.229585 + : FamousImprovement43||pb-IF4TU0oFAQ==|| joined server -2022-12-05 06:21:31.401161 + : ScreechingOoze8069||pb-JiNJARFeUkdDX1tHEkVTVlFDFUlXRllG|| joined server -2022-12-05 06:21:34.407800 + : MrDevil||pb-IF4hBFgH|| joined server -2022-12-05 06:22:54.679064 + : MrDevil||pb-IF4hBFgH|| joined server -2022-12-05 06:22:56.683628 + : lodhipro17||pb-IF4MU08lCQ==|| joined server -2022-12-05 06:25:29.249568 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-05 06:26:30.465065 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-05 06:26:57.562283 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-05 06:28:35.251550 + : AsteroidBo||pb-IF4CU04ePQ==|| joined server -2022-12-05 06:28:36.253732 + : LionAlpha7998||pb-IF4UVGg8KQ==|| joined server -2022-12-05 06:28:53.320878 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-05 06:29:50.545764 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-05 06:31:02.797413 + : Android52891885||pb-IF4FVVIBHQ==|| joined server -2022-12-05 06:32:33.113038 + : captshivi||pb-IF4tCRgv|| joined server -2022-12-05 06:33:38.345002 + : Android63868938||pb-IF5TU09ZCQ==|| joined server -2022-12-05 06:33:53.379842 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-05 06:33:56.396290 + : captshivi||pb-IF4tCRgv|| joined server -2022-12-05 06:34:41.720498 + : RedheadedV||pb-IF40VUE9Kw==|| joined server -2022-12-05 06:35:19.866632 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-05 06:36:25.190151 + : TruthfulSustenance18||pb-IF49UxYgIA==|| joined server -2022-12-05 06:36:51.284536 + : bhumit21||pb-IF4sU0gNFg==|| joined server -2022-12-05 06:37:31.440926 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-05 06:37:33.447162 + : FervidPlurality13||pb-IF4-UxI7Mg==|| joined server -2022-12-05 06:39:53.934434 + : SuggestiveGarage45||pb-IF5RU0pSBg==|| joined server -2022-12-05 06:40:07.986486 + : FragrantRookie95898||pb-IF5WVRUJUQ==|| joined server -2022-12-05 06:40:48.128874 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-05 06:40:57.153435 + : FragrantRookie95898||pb-IF5WVRUJUQ==|| joined server -2022-12-05 06:40:58.156793 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-05 06:43:47.845529 + : RoyalOwl79||pb-IF4MU0ReEA==|| joined server -2022-12-05 06:44:09.919874 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-05 06:44:10.926663 + : mrsaifuuuu||pb-IF4WU05cNA==|| joined server -2022-12-05 06:44:18.961387 + : FearlessCamel86718||pb-IF4eU0s9Pw==|| joined server -2022-12-05 06:45:14.209937 + : Android60516479||pb-IF43UxUHMw==|| joined server -2022-12-05 06:45:49.338783 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-05 06:46:30.553271 + : RedheadedV||pb-IF40VUE9Kw==|| joined server -2022-12-05 06:46:56.645160 + : RedheadedV||pb-IF40VUE9Kw==|| joined server -2022-12-05 06:47:00.662659 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-05 06:47:03.678107 + : LightDestr||pb-IF4nU08oIA==|| joined server -2022-12-05 06:47:09.700548 + : BoldestClo||pb-IF4xUmISVw==|| joined server -2022-12-05 06:47:24.763052 + : WARRIR||pb-IF4SU3o5UQ==|| joined server -2022-12-05 06:48:03.912202 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-05 06:48:05.931162 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-05 06:48:11.964476 + : RedheadedV||pb-IF40VUE9Kw==|| joined server -2022-12-05 06:48:29.010667 + : RedheadedV||pb-IF40VUE9Kw==|| joined server -2022-12-05 06:49:00.129781 + : LightDestr||pb-IF4nU08oIA==|| joined server -2022-12-05 06:49:08.162420 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-05 06:49:17.198393 + : RoyalRead11||pb-IF4TVWguVA==|| joined server -2022-12-05 06:49:34.259125 + : LightDestr||pb-IF4nU08oIA==|| joined server -2022-12-05 06:50:05.374178 + : 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰||pb-IF5WVG4yCA==|| joined server -2022-12-05 06:50:13.392734 + : Android63297715||pb-IF4RU1BbCQ==|| joined server -2022-12-05 06:50:59.557066 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-05 06:54:28.519524 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-05 06:54:37.552976 + : PC772976||pb-IF4xU04OMg==|| joined server -2022-12-05 06:54:39.557646 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-05 06:54:50.584452 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-05 06:55:00.614697 + : 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰||pb-IF5WVG4yCA==|| joined server -2022-12-05 06:55:06.630988 + : Mynameismr007||pb-IF4XNk8E|| joined server -2022-12-05 06:55:41.755922 + : RetiringTh||pb-IF48U1BeVA==|| joined server -2022-12-05 06:55:44.763413 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-05 06:56:28.924446 + : PlusCradle26||pb-IF4-U0gfIg==|| joined server -2022-12-05 06:56:54.011632 + : Android63621219||pb-IF5dU0haPA==|| joined server -2022-12-05 06:59:26.624038 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-05 06:59:50.726751 + : Android48907943||pb-IF4DVW4HFA==|| joined server -2022-12-05 07:00:46.937329 + : VariedCreator11||pb-IF49VBQ4KQ==|| joined server -2022-12-05 07:01:42.140562 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-05 07:02:13.256400 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-05 07:02:30.336872 + : bhumit21||pb-IF4sU0gNFg==|| joined server -2022-12-05 07:02:38.358282 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-05 07:06:34.219977 + : Alexander6||pb-JiNJARBYVUNCXl9HEk5YVVVCGUFaT1VB|| joined server -2022-12-05 07:06:38.238229 + : ThunderBlu||pb-IF4sU0sDDw==|| joined server -2022-12-05 07:08:02.598205 + : AristocraticPossum54||pb-IF4tU0szDw==|| joined server -2022-12-05 07:08:47.761527 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-05 07:09:17.876608 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-05 07:09:49.973632 + : Android52470937||pb-IF4DVVgZJA==|| joined server -2022-12-05 07:10:21.074349 + : TroublingSeer45843||pb-IF4cVFEENw==|| joined server -2022-12-05 07:10:25.096570 + : ashikroyal||pb-IF4BVUw-Dg==|| joined server -2022-12-05 07:11:44.354104 + : MeatyHallw||pb-IF42UhVfFQ==|| joined server -2022-12-05 07:12:50.570820 + : PickyOnion8951||pb-IF4jUWY5|| joined server -2022-12-05 07:13:10.664798 + : king12of34||pb-IF4vUhc8NA==|| joined server -2022-12-05 07:13:38.777809 + : BroadestStress64||pb-IF4-U0wmFA==|| joined server -2022-12-05 07:13:52.834881 + : Android63983749||pb-IF4NU04dKQ==|| joined server -2022-12-05 07:14:06.898860 + : jcar914||pb-JiNJARFZV0BBVV5AGUNRUVZGFkJXRlJL|| joined server -2022-12-05 07:15:07.111637 + : Wikirex2001||pb-IF41V0UyDg==|| joined server -2022-12-05 07:16:34.466671 + : Android60176502||pb-IF5XUxQNKg==|| joined server -2022-12-05 07:17:01.564394 + : UnbornObse||pb-IF4LU3IhCg==|| joined server -2022-12-05 07:17:22.644800 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-05 07:18:14.806136 + : UnrecordedContrast21||pb-IF4nVUddEA==|| joined server -2022-12-05 07:18:22.837052 + : king12of34||pb-IF4vUhc8NA==|| joined server -2022-12-05 07:19:03.995578 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-05 07:21:15.505930 + : AcuteSodium40||pb-IF4HU00iMA==|| joined server -2022-12-05 07:22:09.701310 + : RagingOrangutan79611||pb-IF4tURMJ|| joined server -2022-12-05 07:22:48.845914 + : Android52470937||pb-IF4DVVgZJA==|| joined server -2022-12-05 07:24:41.269815 + : Android52470937||pb-IF4DVVgZJA==|| joined server -2022-12-05 07:25:05.343512 + : ashikroyal||pb-IF4BVUw-Dg==|| joined server -2022-12-05 07:25:42.506041 + : Abwini9||pb-IF4VVGQqIA==|| joined server -2022-12-05 07:26:00.569792 + : Android63351569||pb-IF5WU0RTLA==|| joined server -2022-12-05 07:28:33.129515 + : raj140608||pb-IF4BU3YiBw==|| joined server -2022-12-05 07:29:21.314797 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 07:29:26.330560 + : PitilessDi||pb-IF40U08DIg==|| joined server -2022-12-05 07:30:17.489853 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-05 07:30:21.500884 + : MRSMoOtHy9098||pb-IF4pUxccDQ==|| joined server -2022-12-05 07:30:51.633020 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-05 07:30:55.652332 + : bisht4189||pb-IF4SEHAl|| joined server -2022-12-05 07:31:10.697501 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-05 07:31:35.789295 + : kingofdragonwar10||pb-IF5WU3YtDg==|| joined server -2022-12-05 07:31:40.816096 + : sagar88822||pb-IF4vVUNfEA==|| joined server -2022-12-05 07:32:07.889057 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 07:32:27.950835 + : TurboFamil||pb-IF4NUxcqNA==|| joined server -2022-12-05 07:33:23.179014 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 07:35:02.534890 + : TiredShiel||pb-IF4tBWhf|| joined server -2022-12-05 07:35:08.549078 + : TiredShiel||pb-IF4tBWhf|| joined server -2022-12-05 07:35:22.597205 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 07:35:43.692558 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 07:35:51.725805 + : PaltryLuxury43||pb-IF4OU0MmCw==|| joined server -2022-12-05 07:36:09.793356 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-05 07:36:32.890755 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 07:37:38.107442 + : kingofdragonwar10||pb-IF5WU3YtDg==|| joined server -2022-12-05 07:37:49.132258 + : UnvaryingT||pb-IF4TU0MJAQ==|| joined server -2022-12-05 07:38:35.285445 + : supersmash||pb-IF4iVRIvFA==|| joined server -2022-12-05 07:40:06.597324 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-05 07:40:12.617031 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-05 07:41:00.789777 + : Aryannnnnヅ||pb-IF4tVXIbMQ==|| joined server -2022-12-05 07:41:41.905928 + : Android63669053||pb-IF4lU0c9Hw==|| joined server -2022-12-05 07:41:49.939930 + : NimblePass||pb-IF5SU00BVQ==|| joined server -2022-12-05 07:43:06.216846 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 07:43:15.247957 + : ShailiPate||pb-IF4NUmovVg==|| joined server -2022-12-05 07:43:42.332052 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-05 07:44:01.385819 + : ShailiPate||pb-IF4NUmovVg==|| joined server -2022-12-05 07:44:10.431507 + : Bryanfurythemaster||pb-IF4WUhk7LA==|| joined server -2022-12-05 07:44:35.527321 + : Bryanfurythemaster||pb-IF4WUhk7LA==|| joined server -2022-12-05 07:44:42.557470 + : Android62403774||pb-IF4VU3ENAA==|| joined server -2022-12-05 07:44:51.586661 + : Android47745010||pb-IF5dVWgRBg==|| joined server -2022-12-05 07:45:06.642104 + : PC772976||pb-IF4xU04OMg==|| joined server -2022-12-05 07:46:13.907427 + : BrackishCh||pb-IF4FU085EQ==|| joined server -2022-12-05 07:46:16.913794 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 07:46:19.921274 + : FollowingH||pb-IF5TU1EzAg==|| joined server -2022-12-05 07:47:31.148071 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 07:47:37.217322 + : PC297792||pb-IF4mVW4KCg==|| joined server -2022-12-05 07:48:42.460800 + : Android62028677||pb-IF4PU20MUQ==|| joined server -2022-12-05 07:50:48.979619 + : RoyalProph||pb-IF5TV2MzCA==|| joined server -2022-12-05 07:50:59.026865 + : VagueInfus||pb-IF40U00CCg==|| joined server -2022-12-05 07:51:23.134789 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-05 07:53:26.607808 + : thunderstorms3054||pb-IF4zU3gzBA==|| joined server -2022-12-05 07:54:25.839840 + : yellipai||pb-IF40UnkJDw==|| joined server -2022-12-05 07:54:28.852995 + : UnpaidExercise38||pb-IF4jU2g9Ew==|| joined server -2022-12-05 07:55:03.033668 + : KeptVacation37||pb-IF5WU0peVQ==|| joined server -2022-12-05 07:55:15.069852 + : Android63902876||pb-IF4DU00TEw==|| joined server -2022-12-05 07:55:20.088554 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-05 07:55:45.190681 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 07:55:56.222265 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-05 07:56:03.254907 + : Android62253416||pb-IF4KU3AnHQ==|| joined server -2022-12-05 07:57:02.487704 + : AerialMark||pb-IF5XUkoGDw==|| joined server -2022-12-05 07:57:34.603253 + : SashaGoPewpew||pb-IF4PVU49EQ==|| joined server -2022-12-05 07:58:23.726431 + : RoyalOwl79||pb-IF4MU0ReEA==|| joined server -2022-12-05 07:59:02.874449 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 08:01:59.468749 + : ConclusiveBottle39||pb-IF4GUxYsDQ==|| joined server -2022-12-05 08:03:44.866659 + : PAMU628||pb-IF49VFQlPA==|| joined server -2022-12-05 08:03:55.902321 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 08:04:20.987867 + : Custumtom||pb-IF4KU1AsNQ==|| joined server -2022-12-05 08:05:05.151058 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-05 08:05:26.237345 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-05 08:05:47.322003 + : Moldyblade||pb-IF4UU0YbEQ==|| joined server -2022-12-05 08:07:30.706635 + : Moldyblade||pb-IF4UU0YbEQ==|| joined server -2022-12-05 08:07:44.761229 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-05 08:08:44.993548 + : Siddharaj1||pb-IF4GU0UGCA==|| joined server -2022-12-05 08:09:04.059363 + : UnimpededHorseback4||pb-IF4LVXpYNg==|| joined server -2022-12-05 08:09:10.075220 + : TurboFamil||pb-IF4NUxcqNA==|| joined server -2022-12-05 08:09:28.138695 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-05 08:09:39.174103 + : TurboFamil||pb-IF4NUxcqNA==|| joined server -2022-12-05 08:09:41.177462 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-05 08:09:48.205579 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-05 08:11:45.619047 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 08:13:23.958900 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 08:14:17.150349 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 08:16:37.663744 + : sobikd||pb-IF4lVUo7Eg==|| joined server -2022-12-05 08:16:48.719368 + : RhythmicCrown18||pb-IF4hVFkHKg==|| joined server -2022-12-05 08:17:24.849091 + : 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰||pb-IF5WVG4yCA==|| joined server -2022-12-05 08:17:41.905771 + : 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰||pb-IF5WVG4yCA==|| joined server -2022-12-05 08:18:17.050296 + : Antiquate7||pb-IF4pU1BTHA==|| joined server -2022-12-05 08:18:32.104198 + : captshivi||pb-IF4tCRgv|| joined server -2022-12-05 08:20:11.469484 + : Preferent5||pb-IF4WVUsFNw==|| joined server -2022-12-05 08:20:45.596769 + : HumdrumFrame7||pb-IF5RVG8EUw==|| joined server -2022-12-05 08:21:13.676304 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-05 08:21:23.716572 + : Android63417416||pb-IF5UU0EtKw==|| joined server -2022-12-05 08:22:25.910496 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-05 08:24:26.348104 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-05 08:25:41.566645 + : larsyuan65||pb-IF4lU0cxXQ==|| joined server -2022-12-05 08:26:23.704972 + : Recipient3||pb-IF4HU00hJw==|| joined server -2022-12-05 08:26:28.722569 + : Android62253416||pb-IF4KU3AnHQ==|| joined server -2022-12-05 08:27:20.917849 + : larsyuan65||pb-IF4lU0cxXQ==|| joined server -2022-12-05 08:27:29.957448 + : WonderfulH||pb-IF4sVVgTAg==|| joined server -2022-12-05 08:28:24.135321 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-05 08:28:41.201647 + : SilentSalt1900||pb-IF4zU00GCg==|| joined server -2022-12-05 08:28:53.230224 + : Android63983683||pb-IF42U08yFw==|| joined server -2022-12-05 08:29:36.404282 + : JauntyCoin52791||pb-IF4UUmQDJw==|| joined server -2022-12-05 08:29:47.431251 + : SpaceShutt||pb-IF4yD3Qc|| joined server -2022-12-05 08:31:31.849427 + : TurboFamil||pb-IF4NUxcqNA==|| joined server -2022-12-05 08:32:46.127636 + : Aryannnnnヅ||pb-IF4tVXIbMQ==|| joined server -2022-12-05 08:34:14.443238 + : SilentSalt1900||pb-IF4zU00GCg==|| joined server -2022-12-05 08:35:55.837238 + : BrutalSici||pb-IF4PUkkqMA==|| joined server -2022-12-05 08:36:42.026421 + : ElegantCavalier77306||pb-IF5dU08nEw==|| joined server -2022-12-05 08:36:48.056919 + : Customary7||pb-IF4WU2ooNg==|| joined server -2022-12-05 08:37:25.172197 + : Android63983683||pb-IF42U08yFw==|| joined server -2022-12-05 08:37:40.219488 + : Immeasura8||pb-IF5VUlYjNw==|| joined server -2022-12-05 08:37:44.231256 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-05 08:38:32.409460 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-05 08:38:59.488788 + : YogeYogesh14||pb-IF4DU3AABw==|| joined server -2022-12-05 08:39:26.574351 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-05 08:39:52.675466 + : NOTJOSHLEO||pb-IF4KU1AsAQ==|| joined server -2022-12-05 08:39:55.690351 + : WinterProf||pb-IF5UUks5DQ==|| joined server -2022-12-05 08:40:01.711500 + : 𝖎𝖆𝖓𝖉𝖎𝖔𝖗||pb-IF4sVW8hUA==|| joined server -2022-12-05 08:40:22.793874 + : SheikRieng||pb-IF4rU1BdLw==|| joined server -2022-12-05 08:40:28.808629 + : Android62498959||pb-IF4rU3NTEA==|| joined server -2022-12-05 08:40:37.848268 + : 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰||pb-IF5WVG4yCA==|| joined server -2022-12-05 08:41:12.985142 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-05 08:41:36.076274 + : UnsoundApp||pb-IF4MU087Dw==|| joined server -2022-12-05 08:41:41.090586 + : Android62498959||pb-IF4rU3NTEA==|| joined server -2022-12-05 08:41:55.134817 + : SarayutVic||pb-IF4UVxEtHA==|| joined server -2022-12-05 08:41:59.141399 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-05 08:42:20.231634 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-05 08:42:28.251083 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-05 08:43:06.374130 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-05 08:43:19.414888 + : NarrativePulp7||pb-IF4LVGQoMg==|| joined server -2022-12-05 08:43:58.556618 + : DeviousEli||pb-IF5VU007Ng==|| joined server -2022-12-05 08:44:12.625843 + : ChestnutMisery45||pb-IF4QU3IfHw==|| joined server -2022-12-05 08:45:02.806713 + : Preferent5||pb-IF4WVUsFNw==|| joined server -2022-12-05 08:45:23.884807 + : nedstark5000||pb-IF4BVGUmHw==|| joined server -2022-12-05 08:46:37.150428 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-05 08:46:43.169255 + : PAMU628||pb-IF49VFQlPA==|| joined server -2022-12-05 08:46:52.201405 + : InfiniteVa||pb-JiNJARFcV0RFWV1AF0VRVVxKFURWQFBD|| joined server -2022-12-05 08:47:04.243718 + : InfiniteVa||pb-JiNJARFcV0RFWV1AF0VRVVxKFURWQFBD|| joined server -2022-12-05 08:47:13.271998 + : Android63790532||pb-IF4yU0oAUQ==|| joined server -2022-12-05 08:47:15.279699 + : CulturalJa||pb-IF4pUxUDDQ==|| joined server -2022-12-05 08:48:42.578626 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-05 08:49:06.654540 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-05 08:50:07.921030 + : Android52507762||pb-IF4SVU4FJw==|| joined server -2022-12-05 08:51:49.304165 + : vijaysurya1805||pb-JiNJVxFeVkNJXVtJGEBRUFJEEUFaQ1dA|| joined server -2022-12-05 08:53:33.715500 + : Android42891191||pb-IF4QVGYjDg==|| joined server -2022-12-05 08:55:01.017911 + : Fluoresc10||pb-IF4QU0cGKQ==|| joined server -2022-12-05 08:59:09.042424 + : Android63737185||pb-IF4RU0kkPA==|| joined server -2022-12-05 08:59:26.081215 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-05 09:00:10.228804 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-05 09:00:37.329618 + : UnmarkedCommodore37||pb-IF4IUxUpCA==|| joined server -2022-12-05 09:00:55.403438 + : FancyPantsLevel5048||pb-IF5UUkMlDA==|| joined server -2022-12-05 09:02:22.732977 + : Android59843406||pb-IF49U21YDQ==|| joined server -2022-12-05 09:02:39.782113 + : harishsola||pb-IF5RU2IPJg==|| joined server -2022-12-05 09:03:12.888950 + : CulturalJa||pb-IF4pUxUDDQ==|| joined server -2022-12-05 09:03:44.978573 + : Android63737185||pb-IF4RU0kkPA==|| joined server -2022-12-05 09:04:10.074910 + : Android63946527||pb-IF4dU3FeVg==|| joined server -2022-12-05 09:05:04.266821 + : DarkKnigh3||pb-IF4DV24sDQ==|| joined server -2022-12-05 09:05:19.336168 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-05 09:05:27.366218 + : ChargingBe||pb-IF49UnYRLQ==|| joined server -2022-12-05 09:05:29.374677 + : Android42891191||pb-IF4QVGYjDg==|| joined server -2022-12-05 09:10:34.401980 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-05 09:10:43.423808 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-05 09:11:25.553544 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-05 09:13:38.998430 + : Android12758543||pb-LV4FXhAOU0pGXF9AFhNQUVJDEA==|| joined server -2022-12-05 09:13:55.041125 + : VOILENTFIGHTER12||pb-IF5VU0kBBA==|| joined server -2022-12-05 09:14:10.081197 + : Android42891191||pb-IF4QVGYjDg==|| joined server -2022-12-05 09:16:14.516249 + : Unsuitabl4||pb-IF5RU0cNFA==|| joined server -2022-12-05 09:17:03.677735 + : VISHAL6364S17||pb-IF4QV0s7Fw==|| joined server -2022-12-05 09:17:34.799993 + : LøneWølfæ||pb-IF4AN2w6|| joined server -2022-12-05 09:17:40.817314 + : StableCohe||pb-IF4rU24hJA==|| joined server -2022-12-05 09:18:28.970991 + : DamchAlandamcha||pb-IF4RVUIJLw==|| joined server -2022-12-05 09:19:07.104510 + : Android61099795||pb-IF4AU2MlLQ==|| joined server -2022-12-05 09:19:16.137409 + : FreakyArac||pb-IF4qVEsdVQ==|| joined server -2022-12-05 09:19:22.155388 + : Jafarsadiqu369||pb-IF4xU2I9AQ==|| joined server -2022-12-05 09:20:58.549795 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-05 09:22:46.932933 + : StableCohe||pb-IF4rU24hJA==|| joined server -2022-12-05 09:22:51.940041 + : Deepak11De||pb-IF40UhVdVA==|| joined server -2022-12-05 09:23:58.191471 + : harishsola||pb-IF5RU2IPJg==|| joined server -2022-12-05 09:24:59.364231 + : Android63833589||pb-IF5QU04IXA==|| joined server -2022-12-05 09:25:50.548832 + : kannadapora||pb-JiNJARFdU0tCWFtDGEFVUVZLFUFbQlBH|| joined server -2022-12-05 09:27:28.894759 + : Android60516479||pb-IF43UxUHMw==|| joined server -2022-12-05 09:28:34.124681 + : PAMU628||pb-IF49VFQlPA==|| joined server -2022-12-05 09:28:52.186747 + : Android47133090||pb-IF4WVWgAEQ==|| joined server -2022-12-05 09:28:54.191858 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-05 09:29:25.396890 + : RAGExLUINO||pb-IF5SUkwMAg==|| joined server -2022-12-05 09:29:35.441343 + : GreasyTrader56||pb-IF4dU0xeEg==|| joined server -2022-12-05 09:30:01.531396 + : Phalgun~||pb-LV4FBUYOVRRBCl4UEkVRB1EWGA==|| joined server -2022-12-05 09:30:04.546245 + : kingofdragonwar10||pb-IF5WU3YtDg==|| joined server -2022-12-05 09:30:14.589408 + : MMHQ17||pb-IF4CVEMENw==|| joined server -2022-12-05 09:31:05.757707 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-05 09:31:32.836290 + : Android63764097||pb-IF4dU0kPLQ==|| joined server -2022-12-05 09:31:43.865230 + : LustrousC3||pb-IF4oUnVaNg==|| joined server -2022-12-05 09:32:05.928223 + : Android63737185||pb-IF4RU0kkPA==|| joined server -2022-12-05 09:32:09.941082 + : CapitalisticHeaven18||pb-IF4BVWISAA==|| joined server -2022-12-05 09:32:41.055006 + : LustrousC3||pb-IF4oUnVaNg==|| joined server -2022-12-05 09:33:07.144248 + : marimol870||pb-IF4dVGU7Cw==|| joined server -2022-12-05 09:33:29.222405 + : LustrousC3||pb-IF4oUnVaNg==|| joined server -2022-12-05 09:33:31.232210 + : Hackermemy||pb-JiNJARBZXENAX1tGFE5TUVNBEkFZRVJH|| joined server -2022-12-05 09:33:34.239651 + : hothareesh100||pb-IF4lVxkZUQ==|| joined server -2022-12-05 09:34:02.341239 + : nonstopunstoble||pb-IF4DU3MnLg==|| joined server -2022-12-05 09:34:39.477099 + : hothareesh100||pb-IF4lVxkZUQ==|| joined server -2022-12-05 09:35:08.583546 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-05 09:35:24.634325 + : Android60843943||pb-IF5dU2IpIg==|| joined server -2022-12-05 09:35:53.748531 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-05 09:36:14.813616 + : Android60843943||pb-IF5dU2IpIg==|| joined server -2022-12-05 09:37:07.018366 + : Asrofi143||pb-IF4vUkUOXA==|| joined server -2022-12-05 09:41:34.910191 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-05 09:42:16.055298 + : BalajiStar||pb-JiNJARBeXEtHWlZEFkBXXVJAF0JZQ1hG|| joined server -2022-12-05 09:43:23.272060 + : PAMU628||pb-IF49VFQlPA==|| joined server -2022-12-05 09:43:53.385932 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-05 09:48:12.290603 + : SneakyCyli||pb-IF5TU1EZJg==|| joined server -2022-12-05 09:48:16.302486 + : LustrousC3||pb-IF4oUnVaNg==|| joined server -2022-12-05 09:49:26.558192 + : Genos909||pb-IF5XVEI_Kg==|| joined server -2022-12-05 09:51:38.037468 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-05 09:52:16.218176 + : RabidFight||pb-IF5RU3UzJA==|| joined server -2022-12-05 09:52:27.252698 + : MuddyJoker||pb-IF4SF0Em|| joined server -2022-12-05 09:52:50.311824 + : UselessGuy||pb-IF4sUhk4JA==|| joined server -2022-12-05 09:53:18.425262 + : ExposedEditorial36||pb-IF4AU0slNQ==|| joined server -2022-12-05 09:53:54.554638 + : LustrousC3||pb-IF4oUnVaNg==|| joined server -2022-12-05 09:54:33.701570 + : JauntyJour||pb-IF4sU2kaLg==|| joined server -2022-12-05 09:56:32.273470 + : AssortedSy||pb-IF4qUhZcEA==|| joined server -2022-12-05 09:56:42.300259 + : ArableRail||pb-IF4GU1AiNw==|| joined server -2022-12-05 09:56:56.352125 + : UselessGuy||pb-IF4sUhk4JA==|| joined server -2022-12-05 09:57:22.448177 + : Dragonkozhi||pb-IF4nUhQNAw==|| joined server -2022-12-05 09:57:38.506462 + : SympatheticPromise22||pb-IF5dU00RPw==|| joined server -2022-12-05 09:58:06.622059 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-05 09:58:17.652618 + : Android59843406||pb-IF49U21YDQ==|| joined server -2022-12-05 09:59:00.812466 + : OvertSubje||pb-IF5TU1EnLg==|| joined server -2022-12-05 09:59:16.867640 + : UncheckedF||pb-IF4xU04eUw==|| joined server -2022-12-05 09:59:20.880827 + : AWMkingVB||pb-IF4uVU4PKQ==|| joined server -2022-12-05 10:00:06.032776 + : lolisoh640||pb-IF4gU048KQ==|| joined server -2022-12-05 10:00:07.034558 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-05 10:00:34.137366 + : PAMU628||pb-IF49VFQlPA==|| joined server -2022-12-05 10:01:13.288940 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-05 10:02:42.746904 + : FamousImpr||pb-IF4TU0oFAQ==|| joined server -2022-12-05 10:04:50.302040 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-05 10:06:14.617099 + : Prevalent6||pb-IF5UVXUlKQ==|| joined server -2022-12-05 10:06:29.675960 + : vinothmptc||pb-IF4LU28SJA==|| joined server -2022-12-05 10:08:46.190275 + : Android63669053||pb-IF4lU0c9Hw==|| joined server -2022-12-05 10:10:12.482652 + : IpnRagul752||pb-IF4iVWQ_Bg==|| joined server -2022-12-05 10:10:28.552110 + : Android63770342||pb-IF4rU0o9KQ==|| joined server -2022-12-05 10:11:50.812117 + : RabidFight||pb-IF5RU3UzJA==|| joined server -2022-12-05 10:11:54.827827 + : IpnRagul752||pb-IF4iVWQ_Bg==|| joined server -2022-12-05 10:12:34.981800 + : SubmissiveRunner2674||pb-IF4hDRld|| joined server -2022-12-05 10:13:32.207092 + : iQninjakilaryashyash||pb-IF4HU0cMAw==|| joined server -2022-12-05 10:13:51.280936 + : Preventab2||pb-IF4hU0oSFw==|| joined server -2022-12-05 10:14:09.347000 + : hacker1199||pb-IF4BU0cDNg==|| joined server -2022-12-05 10:14:48.472349 + : FervidPlurality13||pb-IF4-UxI7Mg==|| joined server -2022-12-05 10:15:36.622349 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-05 10:16:04.736824 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-05 10:16:53.894862 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-05 10:17:07.950195 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-05 10:19:19.459621 + : Android63989539||pb-IF5SU1EHPw==|| joined server -2022-12-05 10:20:57.838751 + : SniperRookie8431||pb-IF49Ploi|| joined server -2022-12-05 10:21:01.854458 + : Android63902876||pb-IF4DU00TEw==|| joined server -2022-12-05 10:21:11.888963 + : DilatoryHo||pb-IF48U3FaNQ==|| joined server -2022-12-05 10:21:27.949549 + : Android63902876||pb-IF4DU00TEw==|| joined server -2022-12-05 10:22:00.072372 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-05 10:22:38.197496 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-05 10:23:04.257023 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-05 10:23:35.345787 + : MonoCaprice47||pb-IF4UU0hfDQ==|| joined server -2022-12-05 10:25:10.631559 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-05 10:27:10.061513 + : DilatoryHo||pb-IF48U3FaNQ==|| joined server -2022-12-05 10:28:31.313296 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-05 10:28:36.321336 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-05 10:30:01.639831 + : Android63904390||pb-IF4qU00cHA==|| joined server -2022-12-05 10:30:29.753984 + : MetalReporter57||pb-IF4pU0lYLg==|| joined server -2022-12-05 10:30:39.793220 + : Imaginabl8||pb-IF4NVWQzBg==|| joined server -2022-12-05 10:31:58.116147 + : GeekyAardvark72483||pb-IF4PI1Q7|| joined server -2022-12-05 10:32:19.183333 + : NonOp43||pb-IF4tU04mMg==|| joined server -2022-12-05 10:32:21.190249 + : vinothmptc||pb-IF4LU28SJA==|| joined server -2022-12-05 10:34:23.763601 + : KimchiWawa2769||pb-IF4-U04OIw==|| joined server -2022-12-05 10:34:29.787697 + : Android63904390||pb-IF4qU00cHA==|| joined server -2022-12-05 10:34:45.838442 + : Android47379546||pb-IF42VW5aNA==|| joined server -2022-12-05 10:35:50.073432 + : MetalReporter57||pb-IF4pU0lYLg==|| joined server -2022-12-05 10:36:30.237400 + : serialhunt||pb-IF5RUlkoHQ==|| joined server -2022-12-05 10:36:57.342491 + : IdyllicTri||pb-IF5WU20CLA==|| joined server -2022-12-05 10:37:36.520867 + : Android63989539||pb-IF5SU1EHPw==|| joined server -2022-12-05 10:37:44.628762 + : ElectiveEa||pb-IF5XU00EDA==|| joined server -2022-12-05 10:37:58.673409 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-05 10:38:05.703624 + : sunil678p||pb-IF4tU0cOBg==|| joined server -2022-12-05 10:39:18.971963 + : Android63904390||pb-IF4qU00cHA==|| joined server -2022-12-05 10:39:26.996867 + : DowncastCruise28||pb-IF4KUnEmVg==|| joined server -2022-12-05 10:40:09.157524 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-05 10:40:11.161921 + : TremendousCreek8||pb-IF4vUxkKDg==|| joined server -2022-12-05 10:40:26.210290 + : VvFightVv||pb-IF4xU0o7Ug==|| joined server -2022-12-05 10:40:46.281640 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-05 10:41:41.490301 + : TremendousCreek8||pb-IF4vUxkKDg==|| joined server -2022-12-05 10:41:43.499093 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-05 10:42:18.615989 + : GrossestHothead39||pb-IF4FU2wEUQ==|| joined server -2022-12-05 10:43:45.898447 + : Android63800944||pb-IF4QU0ofBg==|| joined server -2022-12-05 10:44:03.951256 + : Android60239451||pb-IF4MU04zVw==|| joined server -2022-12-05 10:45:24.374764 + : GildedCarp34577||pb-IF4mU0MaMw==|| joined server -2022-12-05 10:46:18.551271 + : Android63988326||pb-IF4rU1AuNQ==|| joined server -2022-12-05 10:46:36.620415 + : IdenticalShock57||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-05 10:46:44.637112 + : Android63902876||pb-IF4DU00TEw==|| joined server -2022-12-05 10:48:53.083647 + : TremendousCreek8||pb-IF4vUxkKDg==|| joined server -2022-12-05 10:49:06.117198 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-05 10:49:41.234416 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-05 10:50:52.542105 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-05 10:52:00.953345 + : Jayrajsinh1202||pb-IF4SU00JHw==|| joined server -2022-12-05 10:52:02.956405 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-05 10:53:14.234689 + : Android47379546||pb-IF42VW5aNA==|| joined server -2022-12-05 10:54:37.527718 + : FamousImpr||pb-IF4TU0oFAQ==|| joined server -2022-12-05 10:55:40.772329 + : LionAlpha7998||pb-IF4UVGg8KQ==|| joined server -2022-12-05 11:00:15.776385 + : shrey19654||pb-IF4QVGYMKg==|| joined server -2022-12-05 11:00:42.861184 + : Jayrajsinh1202||pb-IF4SU00JHw==|| joined server -2022-12-05 11:01:14.993047 + : Jayrajsinh1202||pb-IF4SU00JHw==|| joined server -2022-12-05 11:02:31.285189 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-05 11:07:12.376518 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-05 11:07:35.452020 + : Android63904390||pb-IF4qU00cHA==|| joined server -2022-12-05 11:09:00.892838 + : Android55601587||pb-IF4SUhJZPw==|| joined server -2022-12-05 11:11:21.433123 + : DilatoryHo||pb-IF48U3FaNQ==|| joined server -2022-12-05 11:11:40.493935 + : wardrago666||pb-IF5XU1IiAw==|| joined server -2022-12-05 11:11:48.509379 + : OutrightRo||pb-IF4RU1AhUg==|| joined server -2022-12-05 11:13:28.853707 + : kartikisco||pb-IF5cVEMTVA==|| joined server -2022-12-05 11:14:08.993762 + : ashikroyal||pb-IF4BVUw-Dg==|| joined server -2022-12-05 11:14:17.026416 + : Android63902876||pb-IF4DU00TEw==|| joined server -2022-12-05 11:14:20.036222 + : Darshan152005||pb-IF4xVEJcUA==|| joined server -2022-12-05 11:14:43.131276 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-05 11:16:40.510160 + : Wikirex2001||pb-IF41V0UyDg==|| joined server -2022-12-05 11:17:27.727374 + : AntisocialDisorder02||pb-IF4nU089Jw==|| joined server -2022-12-05 11:20:46.441253 + : AntisocialDisorder02||pb-IF4nU089Jw==|| joined server -2022-12-05 11:20:57.479134 + : ProperExti||pb-IF4SVUYgUg==|| joined server -2022-12-05 11:22:22.826408 + : JocularVigor9||pb-IF48UlAAFA==|| joined server -2022-12-05 11:24:16.248830 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-05 11:25:31.603350 + : JocularVigor9||pb-IF48UlAAFA==|| joined server -2022-12-05 11:26:23.793365 + : JocularVigor9||pb-IF48UlAAFA==|| joined server -2022-12-05 11:28:25.245732 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-05 11:30:00.585180 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-05 11:31:11.814107 + : BelovedEmi||pb-IF4xU08zFQ==|| joined server -2022-12-05 11:31:13.820566 + : PYGREED||pb-IF4TU08kKQ==|| joined server -2022-12-05 11:31:51.936589 + : TheoreticPit28||pb-IF4OVU4aUw==|| joined server -2022-12-05 11:32:44.113104 + : Chitranshp||pb-IF4FU0cKFQ==|| joined server -2022-12-05 11:34:15.523152 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-05 11:34:25.554728 + : IronLeopard87891||pb-IF43U0otUA==|| joined server -2022-12-05 11:36:11.238517 + : Android47745010||pb-IF5dVWgRBg==|| joined server -2022-12-05 11:37:01.429490 + : Niral||pb-IF5UU09YMg==|| joined server -2022-12-05 11:37:20.508463 + : InbornSimp||pb-IF4iUnQqHw==|| joined server -2022-12-05 11:37:37.561314 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-05 11:38:25.775279 + : LIONHUNTER||pb-IF4eVGc7Cw==|| joined server -2022-12-05 11:38:46.857769 + : PATLU517||pb-IF49Umo-Fg==|| joined server -2022-12-05 11:38:49.868877 + : ImplicitWa||pb-IF4xU3EoKg==|| joined server -2022-12-05 11:38:59.908900 + : RyoutaMina||pb-IF4sU09fVw==|| joined server -2022-12-05 11:39:22.984538 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-05 11:39:58.094296 + : PYGREED||pb-IF4TU08kKQ==|| joined server -2022-12-05 11:40:24.179489 + : Android47745010||pb-IF5dVWgRBg==|| joined server -2022-12-05 11:42:06.530740 + : PseudoAttendance18||pb-IF4VVWsGIA==|| joined server -2022-12-05 11:42:15.564976 + : RŪŪAŪŪJ||pb-IF5QU0cfHA==|| joined server -2022-12-05 11:42:32.628705 + : Android63695613||pb-IF4cU0haIw==|| joined server -2022-12-05 11:43:03.738879 + : MaleYard54||pb-IF4-U004UQ==|| joined server -2022-12-05 11:43:59.931111 + : MaleYard54||pb-IF4-U004UQ==|| joined server -2022-12-05 11:45:09.198903 + : DescriptiveBind19||pb-IF4HU00IVQ==|| joined server -2022-12-05 11:45:12.201343 + : Android47745010||pb-IF5dVWgRBg==|| joined server -2022-12-05 11:46:12.402990 + : Android59843406||pb-IF49U21YDQ==|| joined server -2022-12-05 11:47:56.777374 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-05 11:49:01.121161 + : PseudoAttendance18||pb-IF4VVWsGIA==|| joined server -2022-12-05 11:50:42.652471 + : SystemicAlbum16||pb-IF4nUmhfKA==|| joined server -2022-12-05 11:51:33.835664 + : PC607883||pb-IF4DU01YIA==|| joined server -2022-12-05 11:51:36.844178 + : Android63647111||pb-IF4jU0ckCg==|| joined server -2022-12-05 11:52:17.984668 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-05 11:53:43.415585 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-05 11:54:19.548127 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-05 11:54:24.560406 + : AntisocialDisorder02||pb-IF4nU089Jw==|| joined server -2022-12-05 11:55:25.864604 + : NotableDi2||pb-IF4rUkMeIg==|| joined server -2022-12-05 11:56:18.033833 + : KAIPULLA1111||pb-IF5SNE4G|| joined server -2022-12-05 11:56:54.156648 + : Android63657181||pb-IF4NU0YjJw==|| joined server -2022-12-05 11:57:45.316282 + : Android63728390||pb-IF4HU0gSFw==|| joined server -2022-12-05 11:58:04.382624 + : RohanK||pb-IF4dCnou|| joined server -2022-12-05 11:59:31.705657 + : FalseConte||pb-IF4VU0taAA==|| joined server -2022-12-05 11:59:36.722254 + : InhumaneDa||pb-IF4VUhAKEg==|| joined server -2022-12-05 12:02:20.282419 + : itsjustine15||pb-IF5XU08jLA==|| joined server -2022-12-05 12:03:00.451676 + : nikitamale||pb-IF5RU1EtMg==|| joined server -2022-12-05 12:03:12.500781 + : PC607883||pb-IF4DU01YIA==|| joined server -2022-12-05 12:03:29.554040 + : HonorableEttin404||pb-IF4eU004Ew==|| joined server -2022-12-05 12:03:41.689457 + : nikitamale||pb-IF5RU1EtMg==|| joined server -2022-12-05 12:04:17.827419 + : Android63983125||pb-IF49U08JVw==|| joined server -2022-12-05 12:04:41.915257 + : Android57611965||pb-IF4tUkIlKg==|| joined server -2022-12-05 12:04:42.917468 + : OptimusPrime1517||pb-IF41VUYgLw==|| joined server -2022-12-05 12:05:51.126914 + : bijodicarp||pb-IF4TVWEnIg==|| joined server -2022-12-05 12:06:28.257627 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-05 12:07:15.440250 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-05 12:07:38.518807 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-05 12:07:44.539735 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-05 12:09:46.183928 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-05 12:09:58.237691 + : BabyboyBro||pb-IF4HU0IIEQ==|| joined server -2022-12-05 12:14:06.363260 + : Android63988326||pb-IF4rU1AuNQ==|| joined server -2022-12-05 12:14:07.370515 + : Android60845640||pb-IF41UxkjMg==|| joined server -2022-12-05 12:14:54.534736 + : dhanushmes||pb-IF5VU0UzJg==|| joined server -2022-12-05 12:15:35.677164 + : CreepySamurai688||pb-IF4PU0YSXA==|| joined server -2022-12-05 12:15:47.736205 + : gianplayz0||pb-IF40U08BJg==|| joined server -2022-12-05 12:16:01.791112 + : Android63922851||pb-IF41U00RFA==|| joined server -2022-12-05 12:16:07.810708 + : NarutoUsum||pb-IF4jVGoTCg==|| joined server -2022-12-05 12:17:27.123339 + : AsteroidBo||pb-IF4CU04ePQ==|| joined server -2022-12-05 12:18:30.366124 + : ᶜᴿᴬᶻᵞ𝔻𝕣𝕒𝕜𝕖𝕟||pb-IF4pVVEOCA==|| joined server -2022-12-05 12:19:41.624365 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-05 12:20:06.714409 + : BadTermina||pb-IF4SV08HKw==|| joined server -2022-12-05 12:20:18.758309 + : unstoppabl||pb-IF4TU0o6Aw==|| joined server -2022-12-05 12:20:36.834333 + : WishyWashyTinge10||pb-IF43VFENFg==|| joined server -2022-12-05 12:21:27.036524 + : Android63988326||pb-IF4rU1AuNQ==|| joined server -2022-12-05 12:21:34.052709 + : AloofSoldier58271||pb-IF40VEEMVA==|| joined server -2022-12-05 12:21:52.130836 + : thunderstorms3054||pb-IF4zU3gzBA==|| joined server -2022-12-05 12:22:18.221329 + : ModalHandle23||pb-IF4NU0cpFw==|| joined server -2022-12-05 12:22:30.249659 + : Ayushayy||pb-IF4HU00OIA==|| joined server -2022-12-05 12:23:35.509639 + : Aryannnnnヅ||pb-IF4tVXIbMQ==|| joined server -2022-12-05 12:24:08.656218 + : ExpensiveM||pb-IF4UU1AkAw==|| joined server -2022-12-05 12:25:11.861590 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-05 12:25:32.084971 + : delrowe012||pb-IF4PVFRZMA==|| joined server -2022-12-05 12:26:18.261363 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2022-12-05 12:26:27.293309 + : UncouthScenery25||pb-IF4KVVUnJw==|| joined server -2022-12-05 12:26:42.479309 + : shazan99502||pb-IF5QVFRdIQ==|| joined server -2022-12-05 12:28:09.845032 + : FreezingTriangle142||pb-IF4KU09dJg==|| joined server -2022-12-05 12:28:28.903344 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-05 12:29:52.401907 + : Phalgun~||pb-LV4FBUYOVRRBCl4UEkVRB1EWGA==|| joined server -2022-12-05 12:30:21.495218 + : TBHFEVER||pb-IF4lVWYjIw==|| joined server -2022-12-05 12:30:26.516130 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2022-12-05 12:31:16.687055 + : BasuMachakanura||pb-JiNJARBdXUtFVFxIGUJQVVREFklXRVZH|| joined server -2022-12-05 12:31:39.774861 + : mohammedsafeek2||pb-IF4KVWgcBw==|| joined server -2022-12-05 12:32:07.862214 + : PATLU517||pb-IF49Umo-Fg==|| joined server -2022-12-05 12:34:18.317290 + : Android60437730||pb-IF4CUxVaAw==|| joined server -2022-12-05 12:34:29.345100 + : AssortedSy||pb-IF4qUhZcEA==|| joined server -2022-12-05 12:34:40.377800 + : CHIP2739||pb-IF4JVU8HUA==|| joined server -2022-12-05 12:36:12.762650 + : TusharRawa||pb-IF4cUlIHFQ==|| joined server -2022-12-05 12:36:55.915828 + : Nayanshiga||pb-IF43U00MHA==|| joined server -2022-12-05 12:37:18.997669 + : Giteshpro||pb-IF4rVUkdFA==|| joined server -2022-12-05 12:38:43.301355 + : vps32i||pb-IF4oU0YABg==|| joined server -2022-12-05 12:38:57.337409 + : delrowe012||pb-IF4PVFRZMA==|| joined server -2022-12-05 12:39:18.419308 + : Android63956151||pb-IF4iU04PKA==|| joined server -2022-12-05 12:40:40.674428 + : mippypoop1||pb-JiNJARFYV0dBVF5JEUFSU1BAGEZZT1lA|| joined server -2022-12-05 12:42:26.061025 + : go444vykh||pb-IF4vU0lTUw==|| joined server -2022-12-05 12:42:30.072449 + : Android60845640||pb-IF41UxkjMg==|| joined server -2022-12-05 12:42:51.137312 + : HipRooster87595||pb-IF4MVXQdNw==|| joined server -2022-12-05 12:44:42.540077 + : PC297681||pb-IF4mVW48Ew==|| joined server -2022-12-05 12:45:46.742008 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-05 12:46:13.846428 + : YogeYogesh14||pb-IF4DU3AABw==|| joined server -2022-12-05 12:48:09.273090 + : TypicalColonel69394||pb-IF4GUkYzDA==|| joined server -2022-12-05 12:48:12.287006 + : DiagnosticToad55||pb-IF5dU1EpMg==|| joined server -2022-12-05 12:48:16.297689 + : championof||pb-IF4BVEc9Hw==|| joined server -2022-12-05 12:48:19.304253 + : championof||pb-IF4BVEc9Hw==|| joined server -2022-12-05 12:49:07.479003 + : virubhai2004||pb-IF43U00nFw==|| joined server -2022-12-05 12:49:20.525935 + : Android47379546||pb-IF42VW5aNA==|| joined server -2022-12-05 12:49:42.585885 + : Android54726114||pb-IF4zUmFdCQ==|| joined server -2022-12-05 12:51:20.923182 + : aslammalik||pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB|| joined server -2022-12-05 12:51:23.933518 + : DarknexxoY||pb-IF4eUnYfDQ==|| joined server -2022-12-05 12:53:11.309027 + : RemissCon2||pb-IF4jU2YsNw==|| joined server -2022-12-05 12:53:30.367416 + : KookyVeloc||pb-IF4SU3gHFg==|| joined server -2022-12-05 12:53:54.444228 + : AbhishekAjay744||pb-IF4xU2EbKg==|| joined server -2022-12-05 12:53:59.462800 + : Android47379546||pb-IF42VW5aNA==|| joined server -2022-12-05 12:54:09.496808 + : mariyafelix3126||pb-IF4lU20cEw==|| joined server -2022-12-05 12:56:15.926555 + : AbhishekAjay744||pb-IF4xU2EbKg==|| joined server -2022-12-05 12:57:03.108212 + : mariyafelix3126||pb-IF4lU20cEw==|| joined server -2022-12-05 12:57:13.307858 + : HipRooster87595||pb-IF4MVXQdNw==|| joined server -2022-12-05 12:57:16.324793 + : LyricalWill16||pb-IF4qU006Nw==|| joined server -2022-12-05 12:57:23.345972 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-05 12:58:11.487987 + : AbhishekAjay744||pb-IF4xU2EbKg==|| joined server -2022-12-05 12:58:36.575087 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-05 12:59:22.741287 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-05 13:00:05.870150 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-05 13:00:36.985548 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-05 13:00:51.031675 + : NeuroticFe||pb-IF4XU0gINA==|| joined server -2022-12-05 13:01:35.292384 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-05 13:01:38.309727 + : aslammalik||pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB|| joined server -2022-12-05 13:02:51.660908 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-05 13:03:57.892398 + : matinمتین۱۱۱||pb-IF4pUkYMCg==|| joined server -2022-12-05 13:04:20.954661 + : gInhospita||pb-IF4sU01YMA==|| joined server -2022-12-05 13:04:40.008773 + : Android61588905||pb-IF4yU2gBDg==|| joined server -2022-12-05 13:05:38.209201 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-05 13:05:47.230827 + : Niral||pb-IF5UU09YMg==|| joined server -2022-12-05 13:06:16.342593 + : PathologicalPeak28||pb-IF4oU0wgKQ==|| joined server -2022-12-05 13:06:40.457154 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-05 13:06:55.514232 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-05 13:07:14.579225 + : UnopenedCamera42||pb-IF4MU0w6Cw==|| joined server -2022-12-05 13:10:21.288276 + : Android63489834||pb-IF5QU0YlIw==|| joined server -2022-12-05 13:11:06.439481 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-05 13:12:11.756250 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-05 13:12:11.756639 + : AbhishekAjay744||pb-IF4xU2EbKg==|| joined server -2022-12-05 13:12:11.756849 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-05 13:12:22.305591 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-05 13:12:28.332751 + : Android63489834||pb-IF5QU0YlIw==|| joined server -2022-12-05 13:12:43.399305 + : PATLU517||pb-IF49Umo-Fg==|| joined server -2022-12-05 13:12:45.407017 + : Phalgun~||pb-LV4FBUYOVRRBCl4UEkVRB1EWGA==|| joined server -2022-12-05 13:12:48.411213 + : DexTerOuSVikAriA||pb-IF4GUxUZKg==|| joined server -2022-12-05 13:12:53.425668 + : PATLU517||pb-IF49Umo-Fg==|| joined server -2022-12-05 13:13:58.645381 + : AristocraticPossum54||pb-IF4tU0szDw==|| joined server -2022-12-05 13:14:18.726241 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-05 13:14:30.783492 + : SReeJU7||pb-IF4WUVY=|| joined server -2022-12-05 13:14:49.832195 + : djankit857||pb-IF4iVFBbDA==|| joined server -2022-12-05 13:15:41.996429 + : FavoriteEscort39||pb-IF4AU00sEw==|| joined server -2022-12-05 13:15:45.012231 + : UnnumberedRobbery17||pb-IF4KVRMyUw==|| joined server -2022-12-05 13:16:14.112175 + : MadBOY5523||pb-LV4FUkUPAxNEVV8RRk5WBVVEEA==|| joined server -2022-12-05 13:16:56.265236 + : PC346437||pb-IF5SVFdSFQ==|| joined server -2022-12-05 13:17:37.417196 + : Dragonking||pb-JiNJARBbU0dAW1hIEk9YXFFDEkZWQVRC|| joined server -2022-12-05 13:18:09.512668 + : JealousCry||pb-IF4xV2oPHA==|| joined server -2022-12-05 13:18:49.644503 + : JealousCry||pb-IF4xV2oPHA==|| joined server -2022-12-05 13:20:00.897072 + : UpbeatTrad||pb-IF4-VVkxPw==|| joined server -2022-12-05 13:20:14.945408 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-05 13:20:27.001418 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-05 13:22:28.433498 + : DemonChrom||pb-IF4lUxYq|| joined server -2022-12-05 13:22:36.467397 + : RKGAMING475||pb-IF41U3EmJg==|| joined server -2022-12-05 13:22:55.525101 + : ᴵᴬᴹズRaoJi||pb-IF4pVVQBEA==|| joined server -2022-12-05 13:23:02.544116 + : Android63975172||pb-IF4PU08INw==|| joined server -2022-12-05 13:23:05.561569 + : FamousImpr||pb-IF4TU0oFAQ==|| joined server -2022-12-05 13:23:08.574310 + : RaSurKh||pb-IF5VV29eLA==|| joined server -2022-12-05 13:23:31.650065 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-05 13:23:43.694848 + : JealousCry||pb-IF4xV2oPHA==|| joined server -2022-12-05 13:23:54.716274 + : 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰||pb-IF5WVG4yCA==|| joined server -2022-12-05 13:26:32.257448 + : JealousCry||pb-IF4xV2oPHA==|| joined server -2022-12-05 13:27:09.358024 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-05 13:27:55.509500 + : Following3||pb-IF5XU0ZbBA==|| joined server -2022-12-05 13:29:01.748834 + : DiffidentHoplite31||pb-IF4sU0wcBA==|| joined server -2022-12-05 13:29:59.963047 + : ÇrãsySūßâsH||pb-IF4uVUYtUA==|| joined server -2022-12-05 13:32:14.417157 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-05 13:33:09.596859 + : WobblyOffender29||pb-IF4-UxUcVA==|| joined server -2022-12-05 13:33:13.604963 + : IneligibleLeague40||pb-IF42UnUjVw==|| joined server -2022-12-05 13:33:29.673205 + : Android59530809||pb-IF5WUlhaPA==|| joined server -2022-12-05 13:34:37.897959 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-05 13:34:48.925513 + : FoolhardyGorilla5970||pb-IF4JUlYDVA==|| joined server -2022-12-05 13:35:50.135783 + : Trushank||pb-IF4zU08lLA==|| joined server -2022-12-05 13:36:10.201808 + : AffectiveH||pb-IF5QU2hSFw==|| joined server -2022-12-05 13:36:19.225287 + : Harshini12||pb-IF5QV1EqEg==|| joined server -2022-12-05 13:36:23.243773 + : Trushank||pb-IF4zU08lLA==|| joined server -2022-12-05 13:36:32.283302 + : Trushank||pb-IF4zU08lLA==|| joined server -2022-12-05 13:37:45.598015 + : PrimitiveCoercion25||pb-IF4qU3BcNw==|| joined server -2022-12-05 13:38:05.664368 + : UniqueScandal132||pb-IF40U0EFPQ==|| joined server -2022-12-05 13:38:11.683665 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-05 13:38:41.797352 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-05 13:39:12.914182 + : TipTopCommander1918||pb-IF4uU3YEVA==|| joined server -2022-12-05 13:39:47.030302 + : SpaceShutt||pb-IF4yD3Qc|| joined server -2022-12-05 13:39:51.041840 + : mooninvaders24||pb-JiNJARFYU0pGXVdCFU9TVVZEFkFaRFlL|| joined server -2022-12-05 13:40:08.106324 + : GoodlyTrance19||pb-IF4CVW07PA==|| joined server -2022-12-05 13:40:31.178902 + : go444vykh||pb-IF4vU0lTUw==|| joined server -2022-12-05 13:40:33.189047 + : GoodlyTrance19||pb-IF4CVW07PA==|| joined server -2022-12-05 13:40:37.197564 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-05 13:40:41.206863 + : NoName48451a||pb-IF4UU05eLw==|| joined server -2022-12-05 13:40:42.212191 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-05 13:40:46.237432 + : Android61865080||pb-IF4sU2sqHQ==|| joined server -2022-12-05 13:44:05.946510 + : InitialFool50||pb-IF4yU2QiCQ==|| joined server -2022-12-05 13:44:35.043204 + : Android57231442||pb-IF4SUng4Vw==|| joined server -2022-12-05 13:46:19.401876 + : GoodlyTrance19||pb-IF4CVW07PA==|| joined server -2022-12-05 13:46:27.431616 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-05 13:46:37.472306 + : PentFitnes||pb-IF4jU288Jg==|| joined server -2022-12-05 13:46:47.506443 + : InvasiveS2||pb-IF4tUmYMXA==|| joined server -2022-12-05 13:47:20.614562 + : kishujain5||pb-IF4oU08MDg==|| joined server -2022-12-05 13:48:26.830465 + : Rahulnirania03||pb-IF5cU0oCCg==|| joined server -2022-12-05 13:49:07.964999 + : SharpEnemy92311||pb-IF4zU2MgJw==|| joined server -2022-12-05 13:49:11.980898 + : DemonChrom||pb-IF4lUxYq|| joined server -2022-12-05 13:50:18.214226 + : PerfidiousStress40||pb-IF5SV2VbAQ==|| joined server -2022-12-05 13:51:21.461215 + : Ug509||pb-IF4-U08uHQ==|| joined server -2022-12-05 13:51:34.504933 + : JealousCry||pb-IF4xV2oPHA==|| joined server -2022-12-05 13:53:33.900608 + : PokeyHammer5496||pb-JiNJARFcXEpDWlpAGUJVU1dBGUVfR1ZC|| joined server -2022-12-05 13:53:46.943391 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-05 13:54:54.182477 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-05 13:56:50.574837 + : PokeyHammer5496||pb-JiNJARFcXEpDWlpAGUJVU1dBGUVfR1ZC|| joined server -2022-12-05 13:57:21.721090 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-05 13:57:39.773567 + : Android57231442||pb-IF4SUng4Vw==|| joined server -2022-12-05 13:58:17.908363 + : ThirstyNin||pb-JiNJVxFTV0JDVV9BGE5YV11DFEleR1hA|| joined server -2022-12-05 13:59:51.281549 + : Trushank||pb-IF4zU08lLA==|| joined server -2022-12-05 14:00:23.402660 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2022-12-05 14:00:41.470718 + : peskiller11||pb-IF4jU046Fg==|| joined server -2022-12-05 14:01:50.725816 + : Android63873735||pb-IF4FU0wNJA==|| joined server -2022-12-05 14:01:55.750348 + : TusharRawa||pb-IF4cUlIHFQ==|| joined server -2022-12-05 14:02:17.830337 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-05 14:03:45.218488 + : Android63873735||pb-IF4FU0wNJA==|| joined server -2022-12-05 14:04:27.371447 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-05 14:05:25.589809 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-05 14:06:01.719831 + : PerfidiousStress40||pb-IF5SV2VbAQ==|| joined server -2022-12-05 14:06:50.907943 + : Sanjay2522||pb-IF4pU00vIA==|| joined server -2022-12-05 14:07:46.124288 + : Saraj123l||pb-IF4vU08nVg==|| joined server -2022-12-05 14:09:09.382573 + : thalekalle||pb-IF4jUlRTHw==|| joined server -2022-12-05 14:09:24.428371 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-05 14:10:49.733736 + : LoathsomeReaction46||pb-IF49U04vXA==|| joined server -2022-12-05 14:14:38.564858 + : CivilizedT||pb-IF4wVFcZPw==|| joined server -2022-12-05 14:15:55.851318 + : dhairyabhavya||pb-IF4BPFRY|| joined server -2022-12-05 14:16:01.870400 + : ashknight4||pb-IF4dUm4qLQ==|| joined server -2022-12-05 14:16:11.912057 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-05 14:16:45.993741 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-05 14:17:29.143342 + : Android59895610||pb-IF4gUlkcDA==|| joined server -2022-12-05 14:17:31.152418 + : FervidPlurality13||pb-IF4-UxI7Mg==|| joined server -2022-12-05 14:18:25.336800 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-05 14:18:45.407408 + : ModalHandle23||pb-IF4NU0cpFw==|| joined server -2022-12-05 14:21:59.092617 + : HEROgamer||pb-LV4FB0JTA0VAWFYUEUdXBlNDFg==|| joined server -2022-12-05 14:22:09.126839 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-05 14:22:13.138526 + : phiNix||pb-IF4cU0xZMw==|| joined server -2022-12-05 14:22:23.174402 + : Technospar||pb-IF4OU0wZAg==|| joined server -2022-12-05 14:24:27.691071 + : SRD1111997||pb-IF4TABUN|| joined server -2022-12-05 14:24:49.786094 + : AffectiveH||pb-IF5QU2hSFw==|| joined server -2022-12-05 14:24:54.804797 + : 11MAXTON11||pb-IF5QU1EMXA==|| joined server -2022-12-05 14:25:31.928493 + : Android61746695||pb-IF4MU2ozNA==|| joined server -2022-12-05 14:25:37.948419 + : Aryannnnnヅ||pb-IF4tVXIbMQ==|| joined server -2022-12-05 14:25:47.977922 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 14:26:23.080528 + : rudrakshsh||pb-IF4xU04eMw==|| joined server -2022-12-05 14:27:51.400904 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-05 14:28:08.453372 + : WinningJogger46419||pb-IF4mUkwhAA==|| joined server -2022-12-05 14:28:48.601806 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 14:29:45.819746 + : ModalHandle23||pb-IF4NU0cpFw==|| joined server -2022-12-05 14:30:59.096645 + : ReticentPr||pb-IF5cU1AlNQ==|| joined server -2022-12-05 14:31:06.114074 + : Android63809675||pb-IF4oU0s9PQ==|| joined server -2022-12-05 14:31:17.146924 + : CivilizedT||pb-IF4wVFcZPw==|| joined server -2022-12-05 14:31:47.237769 + : Android58903800||pb-IF5SUlE-KQ==|| joined server -2022-12-05 14:31:55.264275 + : FranticFever44||pb-IF5RU3AjNA==|| joined server -2022-12-05 14:31:59.283983 + : suryarocker1999||pb-IF4GUmszHA==|| joined server -2022-12-05 14:32:21.363647 + : NarrowHips||pb-IF4hU0YdDg==|| joined server -2022-12-05 14:32:31.398080 + : DroopyGrif||pb-LV4FAxcNBxBGXVtIQhAEUlxKGA==|| joined server -2022-12-05 14:32:57.494693 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-05 14:33:06.520203 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-05 14:33:29.585698 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 14:34:27.780835 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-05 14:35:19.987840 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-05 14:35:22.993439 + : FranticFever44||pb-IF5RU3AjNA==|| joined server -2022-12-05 14:36:25.190481 + : Navestien666||pb-IF40UkQYJg==|| joined server -2022-12-05 14:36:44.247860 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-05 14:37:07.322285 + : VocationalScrutiny21||pb-IF4rU0U8Eg==|| joined server -2022-12-05 14:37:38.410821 + : FrostedLor||pb-IF4zUxYJEw==|| joined server -2022-12-05 14:38:35.617794 + : aslammalik||pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB|| joined server -2022-12-05 14:41:01.127399 + : OceanicCaptivity19||pb-IF4DUk5TUg==|| joined server -2022-12-05 14:41:09.138445 + : TERRIFIER4||pb-IF4BUxIzJg==|| joined server -2022-12-05 14:41:50.264086 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-05 14:42:29.389603 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-05 14:43:01.515736 + : UnimpededHorseback4||pb-IF4LVXpYNg==|| joined server -2022-12-05 14:43:46.654869 + : IpnRagul752||pb-IF4iVWQ_Bg==|| joined server -2022-12-05 14:43:57.688795 + : UnimpededHorseback4||pb-IF4LVXpYNg==|| joined server -2022-12-05 14:45:09.979256 + : DilatoryHo||pb-IF48U3FaNQ==|| joined server -2022-12-05 14:49:06.846346 + : 9584555539||pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB|| joined server -2022-12-05 14:49:23.907797 + : FreezingFl||pb-IF4zU1BaEg==|| joined server -2022-12-05 14:50:39.154753 + : AbhishekAjay744||pb-IF4xU2EbKg==|| joined server -2022-12-05 14:51:13.269144 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-05 14:52:07.477642 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 14:52:09.485169 + : Android62080452||pb-IF5TU3AmUQ==|| joined server -2022-12-05 14:52:41.573381 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 14:53:09.672173 + : CulturalJa||pb-IF4pUxUDDQ==|| joined server -2022-12-05 14:54:36.952194 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-05 14:54:47.992176 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-05 14:55:19.096282 + : gokulcmkl||pb-IF4wV3cJLw==|| joined server -2022-12-05 14:55:30.130368 + : UndtedSirw||pb-IF4pVHAlKw==|| joined server -2022-12-05 14:55:38.162073 + : DecodeGame||pb-IF4TU08iDQ==|| joined server -2022-12-05 14:56:07.242751 + : LocalTruce||pb-IF4BVVVYCA==|| joined server -2022-12-05 14:56:21.287432 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-05 14:56:49.401522 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-05 14:57:40.572795 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-05 14:58:55.833446 + : ThirstyNin||pb-JiNJVxFTV0JDVV9BGE5YV11DFEleR1hA|| joined server -2022-12-05 15:00:16.108451 + : DesirousAutonomy49||pb-IF4QU04vLQ==|| joined server -2022-12-05 15:00:18.131942 + : weirdassalien27||pb-IF4PVUwcFw==|| joined server -2022-12-05 15:00:23.147430 + : dynamic271||pb-IF4DVEpfCA==|| joined server -2022-12-05 15:00:46.224972 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-05 15:01:26.358787 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-05 15:02:49.623549 + : Sanath2512||pb-IF4rU0UcFw==|| joined server -2022-12-05 15:02:57.648537 + : FutileBeef19||pb-IF4JVVMgDA==|| joined server -2022-12-05 15:03:08.692411 + : dynamic271||pb-IF4DVEpfCA==|| joined server -2022-12-05 15:03:47.820484 + : Android61174087||pb-IF4AU2QnDg==|| joined server -2022-12-05 15:04:14.895637 + : GoDFather6||pb-IF4pVHAlKw==|| joined server -2022-12-05 15:04:27.937788 + : mBAROT||pb-LV4FBBRcUBESWV4RFBVUV1NBRA==|| joined server -2022-12-05 15:04:42.996701 + : FutileBeef19||pb-IF4JVVMgDA==|| joined server -2022-12-05 15:05:19.102064 + : BeamingCornball58058||pb-IF42V2MNDA==|| joined server -2022-12-05 15:06:34.341344 + : EliteChime||pb-IF4UU2kpNw==|| joined server -2022-12-05 15:06:57.424666 + : Phalgun~||pb-LV4FBUYOVRRBCl4UEkVRB1EWGA==|| joined server -2022-12-05 15:07:37.575188 + : AssuredStagnation16||pb-IF42VEcmMg==|| joined server -2022-12-05 15:08:09.686933 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 15:08:44.803008 + : Android63096875||pb-IF4QU3kvLg==|| joined server -2022-12-05 15:08:47.811819 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-05 15:09:01.863599 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-05 15:09:11.898052 + : FrumptiousQuagga8864||pb-IF4nU3ZaUg==|| joined server -2022-12-05 15:09:38.999479 + : PetrifiedErrand43||pb-IF4rU0lcKw==|| joined server -2022-12-05 15:09:53.039215 + : MeanderingArchon437||pb-IF5RU3EIEA==|| joined server -2022-12-05 15:11:21.355117 + : Android63676730||pb-IF4cU0cKJA==|| joined server -2022-12-05 15:13:12.705789 + : GraveHour26||pb-IF48VWESLA==|| joined server -2022-12-05 15:14:31.976267 + : CrushedWolf82537||pb-IF4DV2ItCQ==|| joined server -2022-12-05 15:14:42.007048 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 15:14:45.017678 + : GraveHour26||pb-IF48VWESLA==|| joined server -2022-12-05 15:14:56.053276 + : GraveHour26||pb-IF48VWESLA==|| joined server -2022-12-05 15:15:05.088949 + : WinningJogger46419||pb-IF4mUkwhAA==|| joined server -2022-12-05 15:15:40.230303 + : RoyalOwl79||pb-IF4MU0ReEA==|| joined server -2022-12-05 15:16:03.322260 + : ruklawde||pb-IF4tU04GEw==|| joined server -2022-12-05 15:16:26.397270 + : WinningJogger46419||pb-IF4mUkwhAA==|| joined server -2022-12-05 15:16:46.472965 + : LORDHanzoStar||pb-IF4qUkQ9CA==|| joined server -2022-12-05 15:17:08.639528 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-05 15:17:38.730720 + : Ayushayy||pb-IF4HU00OIA==|| joined server -2022-12-05 15:19:30.230051 + : mBAROT||pb-LV4FBBRcUBESWV4RFBVUV1NBRA==|| joined server -2022-12-05 15:19:38.258032 + : weirdassalien27||pb-IF4PVUwcFw==|| joined server -2022-12-05 15:20:23.401693 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-05 15:20:31.430889 + : POWERXDHRUV||pb-IF4GD2Yd|| joined server -2022-12-05 15:21:57.746308 + : HonorableGrunt6306||pb-IF4mU0kaEA==|| joined server -2022-12-05 15:22:40.915163 + : DowncastCruise28||pb-IF4KUnEmVg==|| joined server -2022-12-05 15:22:49.949651 + : RhythmicCrown18||pb-IF4hVFkHKg==|| joined server -2022-12-05 15:23:25.060487 + : Android63711714||pb-IF4QU0heJg==|| joined server -2022-12-05 15:23:43.138973 + : Android63711714||pb-IF4QU0heJg==|| joined server -2022-12-05 15:24:19.246428 + : AJROCKlegend||pb-IF4PUm4DHA==|| joined server -2022-12-05 15:25:23.463257 + : Android62211118||pb-IF4HU28eKA==|| joined server -2022-12-05 15:25:38.522719 + : BevinTheBoss||pb-IF5XUlUKKw==|| joined server -2022-12-05 15:25:45.556105 + : DowncastCruise28||pb-IF4KUnEmVg==|| joined server -2022-12-05 15:26:03.623723 + : POWERXDHRUV||pb-IF4GD2Yd|| joined server -2022-12-05 15:26:31.715412 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-05 15:26:46.764675 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-05 15:26:49.770678 + : Maj5677||pb-IF5XU0kHNQ==|| joined server -2022-12-05 15:26:57.807344 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-05 15:27:23.928235 + : FamousImpr||pb-IF4TU0oFAQ==|| joined server -2022-12-05 15:27:38.985140 + : EpicQuail4||pb-IF4UUlQyEA==|| joined server -2022-12-05 15:27:59.057316 + : Samselvin1||pb-IF4lVW4jEg==|| joined server -2022-12-05 15:28:12.117591 + : Deathless2||pb-IF4-UlICNQ==|| joined server -2022-12-05 15:28:40.214192 + : TheoreticPit28||pb-IF4OVU4aUw==|| joined server -2022-12-05 15:29:03.304214 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-05 15:29:10.323173 + : ChocolateT||pb-IF4BU01cVQ==|| joined server -2022-12-05 15:29:21.374159 + : PsychicalA||pb-IF4SU3U-Lw==|| joined server -2022-12-05 15:30:20.595871 + : RustyUnicorn27009||pb-IF42U0kbEg==|| joined server -2022-12-05 15:30:35.645358 + : TSMentVans||pb-IF4lU086KQ==|| joined server -2022-12-05 15:30:58.732231 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-05 15:31:37.879692 + : Android63676730||pb-IF4cU0cKJA==|| joined server -2022-12-05 15:31:53.942380 + : Android62872959||pb-IF4pU3c_Fg==|| joined server -2022-12-05 15:32:46.159238 + : harshadkarale007||pb-IF4BU0wpDw==|| joined server -2022-12-05 15:33:03.221807 + : gInhospita||pb-IF4sU01YMA==|| joined server -2022-12-05 15:33:22.272458 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-05 15:33:59.428124 + : NehalSule01||pb-IF4nU0shXQ==|| joined server -2022-12-05 15:35:42.794884 + : ImportantYeoman99681||pb-IF4sU2I5JA==|| joined server -2022-12-05 15:35:49.821894 + : Dethracer7||pb-IF5RU1I4Vw==|| joined server -2022-12-05 15:36:30.944094 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-05 15:37:04.050735 + : POWERXDHRUV||pb-IF4GD2Yd|| joined server -2022-12-05 15:37:12.078790 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-05 15:37:51.230345 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-05 15:39:04.503135 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-05 15:40:10.715617 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-05 15:40:48.860497 + : Dangerou18||pb-IF4AU0s_Lg==|| joined server -2022-12-05 15:41:43.056884 + : NovelTrousers35||pb-IF40U04tFw==|| joined server -2022-12-05 15:42:25.196619 + : Invisible6||pb-IF4MU085LA==|| joined server -2022-12-05 15:42:29.217076 + : Android63830734||pb-IF4BU0s8BA==|| joined server -2022-12-05 15:43:21.393181 + : EngrossingFarmer8411||pb-IF4dV0deMw==|| joined server -2022-12-05 15:45:13.053736 + : Excessive5||pb-IF41U08-KA==|| joined server -2022-12-05 15:45:29.122461 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-05 15:45:41.171636 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-05 15:45:44.189379 + : Android63979752||pb-IF4xU08sHQ==|| joined server -2022-12-05 15:45:47.199186 + : PlainerEnc||pb-IF5VVVEADg==|| joined server -2022-12-05 15:46:36.363606 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2022-12-05 15:46:49.405312 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-05 15:49:32.059094 + : BasuMachakanura||pb-JiNJARBdXUtFVFxIGUJQVVREFklXRVZH|| joined server -2022-12-05 15:49:51.121240 + : surajnikam266||pb-IF4jVEwxDw==|| joined server -2022-12-05 15:50:34.241751 + : AJAYJOSHI904||pb-IF40VEwfPQ==|| joined server -2022-12-05 15:51:24.406713 + : TenableCoherence51||pb-IF4zU20BFA==|| joined server -2022-12-05 15:52:46.698506 + : aashiq8126||pb-IF4VUnQ-Cg==|| joined server -2022-12-05 15:54:55.235023 + : Android63902876||pb-IF4DU00TEw==|| joined server -2022-12-05 15:55:17.309433 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-05 15:56:52.712907 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-05 15:59:37.341714 + : ChromeGua3||pb-IF40U2UfUQ==|| joined server -2022-12-05 15:59:58.405229 + : DowncastCruise28||pb-IF4KUnEmVg==|| joined server -2022-12-05 16:00:11.452987 + : FocalJunction38||pb-IF49U0gMLg==|| joined server -2022-12-05 16:00:11.453755 + : RubberMast||pb-IF4qU1BYEA==|| joined server -2022-12-05 16:00:28.504337 + : BrownCreat||pb-IF4lB0sz|| joined server -2022-12-05 16:01:10.630296 + : LongerImag||pb-IF4AUhIyJA==|| joined server -2022-12-05 16:01:13.648077 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-05 16:01:49.881103 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-05 16:02:08.952398 + : Android57008711||pb-IF4RUnY9IQ==|| joined server -2022-12-05 16:02:11.957253 + : MuddyJoker||pb-IF4SF0Em|| joined server -2022-12-05 16:02:45.084002 + : MuddyJoker||pb-IF4SF0Em|| joined server -2022-12-05 16:03:13.189147 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-05 16:03:26.235729 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-05 16:03:37.265681 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-05 16:03:53.326920 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-05 16:04:23.418727 + : ShailiPate||pb-IF4NUmovVg==|| joined server -2022-12-05 16:04:52.531608 + : Nayanshiga||pb-IF43U00MHA==|| joined server -2022-12-05 16:06:21.026549 + : Android61657358||pb-IF40U2k8Ig==|| joined server -2022-12-05 16:07:17.314678 + : Conqueror2||pb-JiNJARFaUEBFW1xEGURTVFxFFkJZQ1BL|| joined server -2022-12-05 16:08:40.636201 + : SICKBOY234||pb-IF4QV1kdNw==|| joined server -2022-12-05 16:09:24.821778 + : bhaumikrathod1234||pb-JiNJARFZUUpJX1tGE0dWVlJEE0NdQFhB|| joined server -2022-12-05 16:09:31.837619 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-05 16:09:36.851906 + : bhaumikrathod1234||pb-JiNJARFZUUpJX1tGE0dWVlJEE0NdQFhB|| joined server -2022-12-05 16:10:32.106633 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-05 16:10:48.167368 + : Bodacious8||pb-IF4lUhAuDA==|| joined server -2022-12-05 16:11:57.378547 + : ismartrohit||pb-IF4QVXUqDg==|| joined server -2022-12-05 16:12:22.432746 + : bhaumikrat||pb-JiNJARFZUUpJX1tGE0dWVlJEE0NdQFhB|| joined server -2022-12-05 16:12:47.526851 + : 369joker963||pb-IF4cVGsqNA==|| joined server -2022-12-05 16:13:53.760716 + : sonugavale||pb-IF40VG4yUA==|| joined server -2022-12-05 16:14:09.823279 + : UngainlyAluminum35||pb-IF4XU0E5AQ==|| joined server -2022-12-05 16:14:38.948679 + : Android63940563||pb-IF4wU09SJA==|| joined server -2022-12-05 16:15:21.091380 + : bhaumikrat||pb-JiNJARFZUUpJX1tGE0dWVlJEE0NdQFhB|| joined server -2022-12-05 16:15:48.191229 + : UngainlyAluminum35||pb-IF4XU0E5AQ==|| joined server -2022-12-05 16:16:29.385173 + : prashantrajputreaba||pb-IF4OU0cMLw==|| joined server -2022-12-05 16:17:11.535585 + : Android54215093||pb-IF4GUhU4AA==|| joined server -2022-12-05 16:17:32.607123 + : UngainlyAluminum35||pb-IF4XU0E5AQ==|| joined server -2022-12-05 16:17:49.657663 + : Android59340397||pb-IF4XUlQNLw==|| joined server -2022-12-05 16:18:40.841493 + : ElegantLun||pb-IF4-VFMbAg==|| joined server -2022-12-05 16:19:30.079255 + : RAEEEEEEEEEEEEEEEEES||pb-IF4wBUUK|| joined server -2022-12-05 16:19:48.148908 + : Android63969121||pb-IF4AU085Cw==|| joined server -2022-12-05 16:19:55.168437 + : Android63334530||pb-IF4OU0JcNw==|| joined server -2022-12-05 16:20:08.229630 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-05 16:20:16.263648 + : Surajkhot0||pb-IF5QVWsoFw==|| joined server -2022-12-05 16:20:54.372769 + : Android59340397||pb-IF4XUlQNLw==|| joined server -2022-12-05 16:21:01.394775 + : ElectiveEa||pb-IF5XU00EDA==|| joined server -2022-12-05 16:21:07.416700 + : PC750627||pb-IF4vU2ISBg==|| joined server -2022-12-05 16:21:33.519974 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-05 16:21:50.586525 + : sonugavale||pb-IF40VG4yUA==|| joined server -2022-12-05 16:23:37.990395 + : SpontaneousTexture21||pb-IF5QUncABw==|| joined server -2022-12-05 16:24:02.083465 + : Intolera18||pb-IF4AU3ZcAw==|| joined server -2022-12-05 16:24:03.088045 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-05 16:24:11.118301 + : rohithsai0||pb-IF4mUnE_Lg==|| joined server -2022-12-05 16:24:39.222964 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-05 16:26:11.567934 + : danchoak47||pb-IF4HU3UIXA==|| joined server -2022-12-05 16:26:37.670471 + : Sumanth386||pb-IF5TUm4DNg==|| joined server -2022-12-05 16:26:48.707322 + : PC750627||pb-IF4vU2ISBg==|| joined server -2022-12-05 16:27:01.749412 + : sonugavale||pb-IF40VG4yUA==|| joined server -2022-12-05 16:28:44.118411 + : MuscularPl||pb-IF41VEEdVA==|| joined server -2022-12-05 16:29:16.243086 + : djankit857||pb-IF4iVFBbDA==|| joined server -2022-12-05 16:30:26.517038 + : YOSHITHALAKMAL45||pb-IF4-U0w7DQ==|| joined server -2022-12-05 16:31:37.739195 + : NoName52901c||pb-IF4oBEwf|| joined server -2022-12-05 16:32:12.885119 + : optimusmeg||pb-IF4iVRRaDQ==|| joined server -2022-12-05 16:32:40.996839 + : ProdigalAcid30||pb-IF4AVUgDDA==|| joined server -2022-12-05 16:32:49.028649 + : MiraculousContrary29||pb-IF5UU3YxEA==|| joined server -2022-12-05 16:33:29.182187 + : BouncySnake77868||pb-IF4eU08zVQ==|| joined server -2022-12-05 16:33:47.266100 + : DryPreside||pb-IF5VVBI-UQ==|| joined server -2022-12-05 16:33:49.267374 + : noselessmo||pb-IF4NUm4IFA==|| joined server -2022-12-05 16:34:03.314058 + : DiligentSt||pb-IF5XU0YhFg==|| joined server -2022-12-05 16:36:05.914553 + : RhythmicCrown18||pb-IF4hVFkHKg==|| joined server -2022-12-05 16:40:00.011864 + : Android51729718||pb-IF4CVUcaAg==|| joined server -2022-12-05 16:41:32.325553 + : SpontaneousTexture21||pb-IF5QUncABw==|| joined server -2022-12-05 16:41:49.394335 + : Android59349492||pb-IF5VUlYDHQ==|| joined server -2022-12-05 16:44:15.909273 + : CaptainBlackbeard11||pb-IF4OU2oKJw==|| joined server -2022-12-05 16:45:09.095423 + : FrostyCourt15||pb-IF4WU0s_VA==|| joined server -2022-12-05 16:45:19.142021 + : TaRkHaN221||pb-JiNJARFZXUFBX11BGEVXU1RCGERXQ1BF|| joined server -2022-12-05 16:45:43.225503 + : AdvancedExpomnent45m||pb-IF4JU3MxCQ==|| joined server -2022-12-05 16:47:41.675113 + : vikramvicky9917||pb-IF4iNRI7|| joined server -2022-12-05 16:49:12.124141 + : IndigoProfessor29406||pb-IF4nU00CDw==|| joined server -2022-12-05 16:50:19.375613 + : PC607883||pb-IF4DU01YIA==|| joined server -2022-12-05 16:50:20.381501 + : Unrelenti4||pb-IF4eU0wpKg==|| joined server -2022-12-05 16:51:19.587612 + : UngainlyAluminum35||pb-IF4XU0E5AQ==|| joined server -2022-12-05 16:51:56.749514 + : Undercove7||pb-IF4nVUkkJg==|| joined server -2022-12-05 16:53:39.112123 + : Android63902876||pb-IF4DU00TEw==|| joined server -2022-12-05 16:53:45.132883 + : SkeletalMention95||pb-IF4PU0UJFw==|| joined server -2022-12-05 16:54:06.182607 + : CulturalJa||pb-IF4pUxUDDQ==|| joined server -2022-12-05 16:54:07.184356 + : PC607883||pb-IF4DU01YIA==|| joined server -2022-12-05 16:54:09.190380 + : FranticAlliance82034||pb-IF4wU0EzEA==|| joined server -2022-12-05 16:54:18.209572 + : RAEEEEEEEEEEEEEEEEES||pb-IF4wBUUK|| joined server -2022-12-05 16:54:19.212596 + : viru199554||pb-IF4VU3EjBg==|| joined server -2022-12-05 16:54:26.238648 + : ismailrifai||pb-JiNJARFdVERDXllFGUdVV1VFFkBdRFdC|| joined server -2022-12-05 16:54:55.328631 + : InhumaneDa||pb-IF4VUhAKEg==|| joined server -2022-12-05 16:55:09.377327 + : InhumaneDa||pb-IF4VUhAKEg==|| joined server -2022-12-05 16:55:29.452535 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-05 16:56:58.832028 + : UpbeatCeme||pb-IF4SUmwlVA==|| joined server -2022-12-05 16:58:48.202963 + : NoName46139e||pb-IF4NVVkCHA==|| joined server -2022-12-05 16:59:04.265311 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-05 16:59:20.331155 + : NitricBet41||pb-IF4gUmMPXQ==|| joined server -2022-12-05 16:59:50.441720 + : Android63983749||pb-IF4NU04dKQ==|| joined server -2022-12-05 17:02:14.026083 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-05 17:02:35.092347 + : RedeemingTariff52||pb-IF4QU0s_Eg==|| joined server -2022-12-05 17:02:58.175218 + : PC607883||pb-IF4DU01YIA==|| joined server -2022-12-05 17:05:07.663557 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-05 17:05:22.726035 + : ismailrifai||pb-JiNJARFdVERDXllFGUdVV1VFFkBdRFdC|| joined server -2022-12-05 17:05:26.741966 + : AdvancedExpomnent45m||pb-IF4JU3MxCQ==|| joined server -2022-12-05 17:05:53.834467 + : NitricBet41||pb-IF4gUmMPXQ==|| joined server -2022-12-05 17:06:05.088212 + : RAEEEEEEEEEEEEEEEEES||pb-IF4wBUUK|| joined server -2022-12-05 17:06:59.240088 + : SleepyPhantasm49204||pb-IF4uVG0fIQ==|| joined server -2022-12-05 17:07:22.399822 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-05 17:07:48.501899 + : RedeemingTariff52||pb-IF4QU0s_Eg==|| joined server -2022-12-05 17:07:50.509889 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-05 17:07:56.530740 + : VR291971||pb-IF4eU0UiNw==|| joined server -2022-12-05 17:08:21.617513 + : PsychKille||pb-JiNJVxFTUUJJXFlGFUdUUlFGF0NYT1dE|| joined server -2022-12-05 17:08:30.647409 + : FervidPlurality13||pb-IF4-UxI7Mg==|| joined server -2022-12-05 17:08:56.823937 + : BraveDeal60||pb-IF5WU1E8DQ==|| joined server -2022-12-05 17:09:03.843376 + : PsychKille||pb-JiNJVxFTUUJJXFlGFUdUUlFGF0NYT1dE|| joined server -2022-12-05 17:09:28.937952 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-05 17:10:00.045257 + : Luminesce8||pb-JiNJARFeUEBHXVhGEkFQVFVFGUJdRFNH|| joined server -2022-12-05 17:10:03.063442 + : LegEndGoga||pb-IF4PU0laCQ==|| joined server -2022-12-05 17:10:12.112345 + : LegEndGoga||pb-IF4PU0laCQ==|| joined server -2022-12-05 17:12:35.608197 + : Android62944812||pb-IF4PU3cHKQ==|| joined server -2022-12-05 17:14:03.958258 + : RedeemingTariff52||pb-IF4QU0s_Eg==|| joined server -2022-12-05 17:15:21.226493 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-05 17:16:38.472594 + : yravishank||pb-JiNJARFfXEpBWlpGEUdRVlJCEklXQ1NH|| joined server -2022-12-05 17:18:13.797961 + : RedeemingTariff52||pb-IF4QU0s_Eg==|| joined server -2022-12-05 17:18:51.945924 + : bisht4189||pb-IF4SEHAl|| joined server -2022-12-05 17:18:55.961854 + : Whimsical8||pb-IF4QUlgKAA==|| joined server -2022-12-05 17:19:41.112384 + : AdvancedExpomnent45m||pb-IF4JU3MxCQ==|| joined server -2022-12-05 17:20:25.228530 + : RagingVirg||pb-IF4cU0EaCQ==|| joined server -2022-12-05 17:20:53.315129 + : sury2803||pb-IF4hVEwoJA==|| joined server -2022-12-05 17:20:58.332011 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-05 17:21:17.382468 + : ElectricYodeler26380||pb-JiNJARFfXEZAW1dDGUBQU11GE0FXQFZC|| joined server -2022-12-05 17:22:59.738567 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-05 17:24:47.039151 + : SeverestApparel30||pb-IF4jU0JaNg==|| joined server -2022-12-05 17:24:53.060245 + : dynamic271||pb-IF4DVEpfCA==|| joined server -2022-12-05 17:25:14.134223 + : HoneyProgression37||pb-IF4XU3gkNw==|| joined server -2022-12-05 17:25:28.182695 + : MuddyJoker||pb-IF4SF0Em|| joined server -2022-12-05 17:26:45.588723 + : Angeliccutiee43||pb-IF5WVUcOFA==|| joined server -2022-12-05 17:27:09.681287 + : PeakAlarm3243||pb-IF5TVVIaLA==|| joined server -2022-12-05 17:30:54.556013 + : dynamic271||pb-IF4DVEpfCA==|| joined server -2022-12-05 17:31:10.612092 + : Sanjayduff||pb-IF4hU3APAw==|| joined server -2022-12-05 17:32:25.838293 + : PeakAlarm3243||pb-IF5TVVIaLA==|| joined server -2022-12-05 17:32:33.865139 + : RedeemingTariff52||pb-IF4QU0s_Eg==|| joined server -2022-12-05 17:32:44.901212 + : DarkLordAscended||pb-IF4KU0UqLA==|| joined server -2022-12-05 17:32:57.047428 + : PeakAlarm3243||pb-IF5TVVIaLA==|| joined server -2022-12-05 17:33:00.055314 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-05 17:33:06.083369 + : UncheckedF||pb-IF4xU04eUw==|| joined server -2022-12-05 17:33:09.100892 + : sahilkhatri343593||pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL|| joined server -2022-12-05 17:34:27.391288 + : ElectiveEa||pb-IF5XU00EDA==|| joined server -2022-12-05 17:35:08.533485 + : Anirudhalwaysrockzzz||pb-IF4gNFci|| joined server -2022-12-05 17:35:19.565110 + : BABURAOAPT||pb-IF4yVVA8Bg==|| joined server -2022-12-05 17:35:35.618036 + : HoneyProgression37||pb-IF4XU3gkNw==|| joined server -2022-12-05 17:36:26.796581 + : dhanushmes||pb-IF5VU0UzJg==|| joined server -2022-12-05 17:36:50.888410 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-05 17:39:08.365394 + : Android42718925||pb-IF4mVEoyVQ==|| joined server -2022-12-05 17:40:10.579359 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-05 17:41:18.783159 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-05 17:42:32.111802 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-05 17:42:42.155168 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-05 17:42:53.200123 + : NitricBet41||pb-IF4gUmMPXQ==|| joined server -2022-12-05 17:43:00.222283 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-05 17:43:08.268316 + : Android51729718||pb-IF4CVUcaAg==|| joined server -2022-12-05 17:45:02.741751 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-05 17:46:11.989277 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-05 17:48:38.487229 + : IdenticalShock57||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-05 17:49:36.871974 + : Commendabl||pb-IF4UU08TBA==|| joined server -2022-12-05 17:49:50.919683 + : Android63987522||pb-IF5UU1EaJA==|| joined server -2022-12-05 17:50:05.984058 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-05 17:50:16.026015 + : TiredApparition30242||pb-IF4-VxM9VQ==|| joined server -2022-12-05 17:50:25.280566 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-05 17:51:38.567046 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-05 17:51:51.592464 + : DollarHere69||pb-IF5UUxheIg==|| joined server -2022-12-05 17:52:31.731202 + : ĐÃŘĶxŠÎĞMĀ||pb-IF4vUkRaEg==|| joined server -2022-12-05 17:53:38.976505 + : TiredApparition30242||pb-IF4-VxM9VQ==|| joined server -2022-12-05 17:54:56.259120 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-05 17:55:08.312040 + : ShaikhFaha||pb-IF5dV21TEA==|| joined server -2022-12-05 17:55:12.325794 + : POWERXDHRU||pb-IF4GD2Yd|| joined server -2022-12-05 17:55:14.336047 + : HipCompany||pb-IF4WUxcgNw==|| joined server -2022-12-05 17:55:30.394986 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 17:57:19.719430 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-05 17:57:22.732833 + : Naveenkrish010||pb-IF4NU0IzCA==|| joined server -2022-12-05 17:57:37.784520 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-05 17:58:03.053106 + : ChargingBe||pb-IF49UnYRLQ==|| joined server -2022-12-05 17:58:38.184246 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-05 17:59:08.308899 + : AdrenalCha||pb-IF4HUlcgUQ==|| joined server -2022-12-05 18:01:13.704958 + : PainlessVe||pb-IF5UU0EkDg==|| joined server -2022-12-05 18:01:42.832637 + : Aaryan9957||pb-IF4dUxRaIw==|| joined server -2022-12-05 18:04:07.324479 + : Joydeep98773||pb-IF4vU00bAA==|| joined server -2022-12-05 18:05:01.533152 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-05 18:06:26.167399 + : Aaryan9957||pb-IF4dUxRaIw==|| joined server -2022-12-05 18:07:20.359275 + : Android63783914||pb-IF4NUhUaHw==|| joined server -2022-12-05 18:07:26.379649 + : ProGamer||pb-IF5TU24NKA==|| joined server -2022-12-05 18:07:38.412197 + : shazan99502||pb-IF5QVFRdIQ==|| joined server -2022-12-05 18:07:43.432428 + : TorpidSoda28||pb-IF4WUhkcNA==|| joined server -2022-12-05 18:08:35.958365 + : Android63783914||pb-IF4NUhUaHw==|| joined server -2022-12-05 18:08:50.014809 + : shazan99502||pb-IF5QVFRdIQ==|| joined server -2022-12-05 18:08:57.039223 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-05 18:10:59.478467 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-05 18:11:34.805928 + : DollarHere69||pb-IF5UUxheIg==|| joined server -2022-12-05 18:13:00.088013 + : Aaryan9957||pb-IF4dUxRaIw==|| joined server -2022-12-05 18:15:50.984560 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-05 18:16:42.184130 + : LIONHUNTER||pb-IF4eVGc7Cw==|| joined server -2022-12-05 18:17:08.270179 + : Android61875750||pb-IF4OU2xZMQ==|| joined server -2022-12-05 18:17:18.294403 + : shrey19654||pb-IF4QVGYMKg==|| joined server -2022-12-05 18:17:24.313020 + : LionAlpha7998||pb-IF4UVGg8KQ==|| joined server -2022-12-05 18:22:24.431037 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-05 18:23:14.600194 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-05 18:24:44.873167 + : CivilizedT||pb-IF4wVFcZPw==|| joined server -2022-12-05 18:29:14.858484 + : FlyingBrainiac12578||pb-IF4gU0wEDw==|| joined server -2022-12-05 18:30:12.040247 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-05 18:32:44.605172 + : Android63948779||pb-IF4RU08gKg==|| joined server -2022-12-05 18:33:06.688988 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-05 18:33:54.844448 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-05 18:37:09.540815 + : Principlej||pb-IF5QU1JaDQ==|| joined server -2022-12-05 18:38:07.744876 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-05 18:39:13.999374 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-05 18:41:11.577708 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-05 18:41:53.707404 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-05 18:42:55.894618 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-05 18:47:02.715358 + : Android60235119||pb-IF4SUxIFMA==|| joined server -2022-12-05 18:50:24.386963 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-05 18:50:29.399447 + : Jeffin||pb-IF4AU00uAg==|| joined server -2022-12-05 18:51:56.725682 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-05 18:55:40.581473 + : Pretentio2||pb-IF4AU2s9Uw==|| joined server -2022-12-05 19:00:08.806881 + : Nithya1357||pb-IF5VUhQgPA==|| joined server -2022-12-05 19:02:33.327788 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-05 19:04:20.844860 + : LionAlpha7998||pb-IF4UVGg8KQ==|| joined server -2022-12-05 19:08:13.671937 + : CharredFlyer12772||pb-IF4-V3IdPA==|| joined server -2022-12-05 19:08:18.693020 + : CharredFlyer12772||pb-IF4-V3IdPA==|| joined server -2022-12-05 19:09:12.906756 + : TorpidSoda28||pb-IF4WUhkcNA==|| joined server -2022-12-05 19:10:28.391166 + : HEROgamer||pb-LV4FB0JTA0VAWFYUEUdXBlNDFg==|| joined server -2022-12-05 19:11:25.616581 + : OO||pb-IF4RVRk7EQ==|| joined server -2022-12-05 19:13:00.959027 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 19:14:24.264507 + : Wikirex2001||pb-IF41V0UyDg==|| joined server -2022-12-05 19:14:58.361719 + : Bulletproofdon||pb-IF42U0VSCA==|| joined server -2022-12-05 19:15:06.396320 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-05 19:15:41.531204 + : Mushroom||pb-IF4TUkkYBw==|| joined server -2022-12-05 19:16:38.735615 + : MadBOY5523||pb-LV4FUkUPAxNEVV8RRk5WBVVEEA==|| joined server -2022-12-05 19:17:23.875972 + : WonderfulH||pb-IF4sVVgTAg==|| joined server -2022-12-05 19:18:14.091836 + : Bulletproofdon||pb-IF42U0VSCA==|| joined server -2022-12-05 19:19:09.262421 + : OO||pb-IF4RVRk7EQ==|| joined server -2022-12-05 19:19:15.282976 + : MadBOY5523||pb-LV4FUkUPAxNEVV8RRk5WBVVEEA==|| joined server -2022-12-05 19:19:42.368562 + : NasalDiplo||pb-IF4sU00vAg==|| joined server -2022-12-05 19:23:06.083153 + : Hitman0079||pb-IF4LVXgMKQ==|| joined server -2022-12-05 19:23:23.315632 + : IdenticalShock57||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-05 19:23:29.343249 + : MadBOY5523||pb-LV4FUkUPAxNEVV8RRk5WBVVEEA==|| joined server -2022-12-05 19:23:30.349270 + : Mushroom||pb-IF4TUkkYBw==|| joined server -2022-12-05 19:23:31.349712 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-05 19:23:32.352063 + : Phalgun~||pb-LV4FBUYOVRRBCl4UEkVRB1EWGA==|| joined server -2022-12-05 19:23:34.354064 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-05 19:23:40.376279 + : Bulletproofdon||pb-IF42U0VSCA==|| joined server -2022-12-05 19:23:55.436390 + : ColderFore||pb-IF42U3YILQ==|| joined server -2022-12-05 19:24:16.508796 + : Wikirex2001||pb-IF41V0UyDg==|| joined server -2022-12-05 19:24:40.585305 + : NOORULAMEENAK57THALA||pb-IF4cVEsJAg==|| joined server -2022-12-05 19:29:23.569102 + : Wikirex2001||pb-IF41V0UyDg==|| joined server -2022-12-05 19:31:08.951271 + : Android55528459||pb-IF4IUmhYLw==|| joined server -2022-12-05 19:31:30.044250 + : NOORULAMEENAK57THALA||pb-IF4cVEsJAg==|| joined server -2022-12-05 19:33:32.461616 + : Serverr936||pb-IF4jU08vMQ==|| joined server -2022-12-05 19:33:44.488279 + : SaddestAcr||pb-IF5VU1ItNg==|| joined server -2022-12-05 19:34:51.732155 + : Nithya1357||pb-IF5VUhQgPA==|| joined server -2022-12-05 19:36:39.142039 + : Android63992316||pb-IF4HU1AoFw==|| joined server -2022-12-05 19:36:40.144448 + : CapDevesh||pb-IF4iVHRaXA==|| joined server -2022-12-05 19:37:40.352208 + : Android61717776||pb-IF4yVWpeMg==|| joined server -2022-12-05 19:39:39.782336 + : Nithya1357||pb-IF5VUhQgPA==|| joined server -2022-12-05 19:41:58.256672 + : OO||pb-IF4RVRk7EQ==|| joined server -2022-12-05 19:43:09.511214 + : Socrates43||pb-IF40U0oYBg==|| joined server -2022-12-05 19:45:34.039546 + : cursed||pb-IF4uMkky|| joined server -2022-12-05 19:46:25.230705 + : ProsaicCre||pb-IF4-U0c8LA==|| joined server -2022-12-05 19:46:47.303232 + : ProsaicCre||pb-IF4-U0c8LA==|| joined server -2022-12-05 19:51:08.257164 + : ShamInform||pb-IF5UVWk7Aw==|| joined server -2022-12-05 19:57:44.595628 + : BAYMAX||pb-IF4BV1ZfCQ==|| joined server -2022-12-05 20:00:02.091465 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-05 20:02:11.491539 + : Expedient5||pb-IF4xU0paHA==|| joined server -2022-12-05 20:02:36.568870 + : Spaz1||pb-IF4DUmYmFg==|| joined server -2022-12-05 20:06:47.433500 + : Arnob007||pb-IF5SVXIHMA==|| joined server -2022-12-05 20:06:59.469586 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-05 20:07:11.518293 + : Enigmatic7||pb-IF4iU0lSFQ==|| joined server -2022-12-05 20:09:25.981069 + : sena3456||pb-IF4-B20v|| joined server -2022-12-05 20:10:13.128475 + : MrDevil||pb-IF4hBFgH|| joined server -2022-12-05 20:12:33.622358 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-05 20:12:56.704554 + : HageMaaroo||pb-JiNJARFeXEVGX1hEFE5XXFFDE0lZT1VD|| joined server -2022-12-05 20:13:27.823176 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-05 20:16:36.496034 + : CongenialLife49||pb-IF4AU2ETLQ==|| joined server -2022-12-05 20:16:45.516774 + : CongenialLife49||pb-IF4AU2ETLQ==|| joined server -2022-12-05 20:16:53.560257 + : CongenialLife49||pb-IF4AU2ETLQ==|| joined server -2022-12-05 20:19:58.244238 + : Nithya1357||pb-IF5VUhQgPA==|| joined server -2022-12-05 20:22:13.732543 + : SalutaryEnthusiasm23||pb-IF4qU0ocPQ==|| joined server -2022-12-05 20:22:59.881147 + : OO||pb-IF4RVRk7EQ==|| joined server -2022-12-05 20:24:21.222442 + : Heisenber3||pb-IF4cVW5cXA==|| joined server -2022-12-05 20:24:23.227395 + : InorganicB||pb-IF5WU3oCNg==|| joined server -2022-12-05 20:24:40.289389 + : HypnoticTo||pb-IF4eU1BfJA==|| joined server -2022-12-05 20:29:02.247590 + : Enigmatic7||pb-IF4iU0lSFQ==|| joined server -2022-12-05 20:29:44.395309 + : CapDevesh||pb-IF4iVHRaXA==|| joined server -2022-12-05 20:32:20.002354 + : DisreputableExport28||pb-IF43U3YTJw==|| joined server -2022-12-05 20:33:33.249264 + : AdrenalCha||pb-IF4HUlcgUQ==|| joined server -2022-12-05 20:34:34.468515 + : ChintuKarthik1123||pb-IF43U3opMw==|| joined server -2022-12-05 20:37:48.177003 + : WeakerDist||pb-IF48U0gcBw==|| joined server -2022-12-05 20:43:55.410478 + : AdrenalCha||pb-IF4HUlcgUQ==|| joined server -2022-12-05 20:47:14.204092 + : zashikibut||pb-IF5QU1I8Fw==|| joined server -2022-12-05 20:48:12.479254 + : ReptilianL||pb-IF4yVWg9Jw==|| joined server -2022-12-05 20:49:46.859665 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-05 20:50:53.095786 + : VoraciousBoss5149||pb-IF4DJRkM|| joined server -2022-12-05 20:57:13.609265 + : paratròóper||pb-IF4IV04ZKw==|| joined server -2022-12-05 20:59:21.001905 + : UngainlyAluminum35||pb-IF4XU0E5AQ==|| joined server -2022-12-05 21:01:08.391438 + : Android57361651||pb-IF4NV3oIFA==|| joined server -2022-12-05 21:04:54.196687 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-05 21:10:24.282712 + : UngainlyAluminum35||pb-IF4XU0E5AQ==|| joined server -2022-12-05 21:22:50.752171 + : Android57361651||pb-IF4NV3oIFA==|| joined server -2022-12-05 21:23:19.844459 + : Android57361651||pb-IF4NV3oIFA==|| joined server -2022-12-05 22:40:21.320961 + : Android57918367||pb-IF4nUkUzNw==|| joined server -2022-12-05 23:15:29.502367 + : Android58791013||pb-IF4JUlUTBg==|| joined server -2022-12-05 23:18:58.236905 + : Android57918367||pb-IF4nUkUzNw==|| joined server -2022-12-05 23:19:21.378813 + : Arnob007||pb-IF5SVXIHMA==|| joined server -2022-12-05 23:24:54.680438 + : iiRcade3504||pb-IF4nUklcBA==|| joined server -2022-12-05 23:32:48.348153 + : Arnob007||pb-IF5SVXIHMA==|| joined server -2022-12-05 23:35:23.895560 + : itsjustine15||pb-IF5XU08jLA==|| joined server -2022-12-05 23:36:06.065049 + : killlergam||pb-IF4jU0gA|| joined server -2022-12-05 23:53:03.486108 + : UpstreamLo||pb-IF4nU1AiKA==|| joined server -2022-12-05 23:56:39.116256 + : RYK999||pb-IF4oUksoHw==|| joined server -2022-12-06 00:00:03.783472 + : Daksh045||pb-IF4LU2sEPw==|| joined server -2022-12-06 00:01:11.018093 + : Android59843406||pb-IF49U21YDQ==|| joined server -2022-12-06 00:23:23.495578 + : WarmerTin4||pb-IF4zUkQkXA==|| joined server -2022-12-06 00:24:28.693897 + : kolayali1979||pb-IF4WUlMqNw==|| joined server -2022-12-06 01:11:09.925277 + : Android63017111||pb-IF4gU3gnUQ==|| joined server -2022-12-06 01:15:07.702310 + : FormerExodus41||pb-IF4UU00fNg==|| joined server -2022-12-06 01:17:36.162481 + : Android63017111||pb-IF4gU3gnUQ==|| joined server -2022-12-06 01:18:23.290762 + : Recipient3||pb-IF4HU00hJw==|| joined server -2022-12-06 01:18:35.327576 + : Recipient3||pb-IF4HU00hJw==|| joined server -2022-12-06 01:25:04.660026 + : InsincereCase61||pb-IF4sU0s_XQ==|| joined server -2022-12-06 01:35:56.877027 + : InsincereCase61||pb-IF4sU0s_XQ==|| joined server -2022-12-06 01:49:11.430814 + : TriesomeComplacency||pb-IF5XVBUCFA==|| joined server -2022-12-06 02:02:24.982283 + : RelativeCompass6||pb-IF4sVGohKw==|| joined server -2022-12-06 02:03:30.203533 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-06 02:04:21.557044 + : RabidFight||pb-IF5RU3UzJA==|| joined server -2022-12-06 02:05:44.863916 + : Android63017111||pb-IF4gU3gnUQ==|| joined server -2022-12-06 02:05:55.907982 + : Savage2098||pb-IF4TAXlc|| joined server -2022-12-06 02:06:48.077713 + : UndisguisedManiac20||pb-IF41U04SEA==|| joined server -2022-12-06 02:07:20.195353 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-06 02:09:26.623141 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-06 02:11:15.026585 + : TranslucentSpeed26||pb-IF4wU0gdPA==|| joined server -2022-12-06 02:23:52.524916 + : OddFeeling||pb-IF4iVEo4Lg==|| joined server -2022-12-06 02:28:18.434519 + : AJROCKlegend||pb-IF4PUm4DHA==|| joined server -2022-12-06 02:33:04.351820 + : OddFeeling||pb-IF4iVEo4Lg==|| joined server -2022-12-06 02:40:20.694141 + : Android63956151||pb-IF4iU04PKA==|| joined server -2022-12-06 02:44:28.560851 + : VidhyanFal||pb-IF4LUk0FCQ==|| joined server -2022-12-06 02:46:13.962935 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-06 02:47:38.230447 + : MOSSIMOCIR||pb-IF5QUhgZ|| joined server -2022-12-06 02:48:25.402268 + : VvFightVv||pb-IF4xU0o7Ug==|| joined server -2022-12-06 02:49:22.588153 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-06 02:53:06.290776 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-06 02:53:29.369347 + : Android51495626||pb-IF4WVUZfPA==|| joined server -2022-12-06 02:54:18.567581 + : WesternSpo||pb-IF4RU2U6Cg==|| joined server -2022-12-06 02:56:57.115439 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-06 02:57:48.308692 + : UnmodifiedApplause51||pb-IF40U0oIEw==|| joined server -2022-12-06 02:58:53.539769 + : ĐÃŘĶxŠÎĞMĀ||pb-IF4vUkRaEg==|| joined server -2022-12-06 03:00:24.868666 + : Linux53436||pb-IF4dU0QGEw==|| joined server -2022-12-06 03:01:58.206156 + : HouseholdW||pb-IF4oUkQSLg==|| joined server -2022-12-06 03:02:18.271857 + : ElectiveEa||pb-IF5XU00EDA==|| joined server -2022-12-06 03:02:46.381462 + : LightJabbe||pb-IF5XLHle|| joined server -2022-12-06 03:04:14.677654 + : VvFightVv||pb-IF4xU0o7Ug==|| joined server -2022-12-06 03:04:25.724728 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-06 03:06:31.212546 + : GreasyTrad||pb-IF4dU0xeEg==|| joined server -2022-12-06 03:06:39.255872 + : Freshwate9||pb-IF4-U08PBw==|| joined server -2022-12-06 03:06:44.274400 + : jonhjonh55ph||pb-IF5TU1A9Pw==|| joined server -2022-12-06 03:07:24.434048 + : Preferent5||pb-IF4WVUsFNw==|| joined server -2022-12-06 03:11:09.276483 + : Android63983683||pb-IF42U08yFw==|| joined server -2022-12-06 03:11:32.349240 + : InbornSimp||pb-IF4iUnQqHw==|| joined server -2022-12-06 03:11:46.395482 + : RetailMidn||pb-IF4CU0Y5Ew==|| joined server -2022-12-06 03:12:49.671475 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-06 03:15:52.380671 + : shrirangam||pb-IF4oU0khUg==|| joined server -2022-12-06 03:19:06.047874 + : Courageou5||pb-IF4eU3gDFw==|| joined server -2022-12-06 03:20:03.259499 + : ᴀᴍᴀɴ7||pb-IF4FU01cHw==|| joined server -2022-12-06 03:20:05.271849 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-06 03:20:40.420576 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-06 03:21:18.580929 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-06 03:23:26.034468 + : ᴀᴍᴀɴ7||pb-IF4FU01cHw==|| joined server -2022-12-06 03:23:42.094085 + : HEAVENRIDE||pb-IF4-VE0nPA==|| joined server -2022-12-06 03:24:00.159934 + : HEAVENRIDE||pb-IF4-VE0nPA==|| joined server -2022-12-06 03:31:23.759930 + : Linux52467||pb-IF5WUxQlEw==|| joined server -2022-12-06 03:34:19.379228 + : nrzimaffh||pb-IF49U08ZDw==|| joined server -2022-12-06 03:38:35.303057 + : Android59278796||pb-IF4HUlMxVw==|| joined server -2022-12-06 03:43:31.374431 + : VelvetyOff||pb-IF5UU1EBLw==|| joined server -2022-12-06 03:45:34.791900 + : ThankfulRh||pb-IF5RU1ESNQ==|| joined server -2022-12-06 03:46:35.975423 + : Android63930725||pb-IF4HU04CUA==|| joined server -2022-12-06 03:46:52.036806 + : Android63294581||pb-IF4BU0EsIg==|| joined server -2022-12-06 03:47:56.239649 + : VelourLigh||pb-IF4xU0QYPw==|| joined server -2022-12-06 03:49:17.543635 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-06 03:49:22.556471 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-06 03:50:42.848660 + : Preventab2||pb-IF4hU0oSFw==|| joined server -2022-12-06 03:50:46.852081 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-06 03:55:14.791723 + : ALAMINMIZI||pb-IF4cU0NdDw==|| joined server -2022-12-06 03:55:40.908423 + : OddFeeling||pb-IF4iVEo4Lg==|| joined server -2022-12-06 03:55:46.934675 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-06 03:56:32.088031 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-06 03:57:12.224683 + : TraditionalNarrator9||pb-IF4pU0c-NQ==|| joined server -2022-12-06 03:58:33.487190 + : RoyalOwl79||pb-IF4MU0ReEA==|| joined server -2022-12-06 03:59:38.741053 + : Linux53436||pb-IF4dU0QGEw==|| joined server -2022-12-06 04:01:53.214747 + : Android63564565||pb-IF5UU0dfBw==|| joined server -2022-12-06 04:03:08.474580 + : IrreverentLand33||pb-IF4WUxAIEg==|| joined server -2022-12-06 04:03:15.504529 + : DeviantSum||pb-IF4wUxkNHA==|| joined server -2022-12-06 04:03:51.649389 + : sunilu338||pb-IF4tUmo9VQ==|| joined server -2022-12-06 04:04:16.730887 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-06 04:04:24.757743 + : Android63564565||pb-IF5UU0dfBw==|| joined server -2022-12-06 04:08:08.555137 + : Android62080452||pb-IF5TU3AmUQ==|| joined server -2022-12-06 04:09:06.754702 + : racetracker7738||pb-IF5dVUQGIQ==|| joined server -2022-12-06 04:09:34.856242 + : GreasyTrad||pb-IF4dU0xeEg==|| joined server -2022-12-06 04:10:30.112112 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-06 04:12:06.421817 + : RattlingKestrel49176||pb-IF4lU0xTVQ==|| joined server -2022-12-06 04:14:40.980243 + : KINGTN50||pb-IF4QUmRTFQ==|| joined server -2022-12-06 04:15:35.145503 + : WanShell8996||pb-IF4qVWIpPw==|| joined server -2022-12-06 04:16:16.309590 + : MagnificentBull96303||pb-IF4mU0wODA==|| joined server -2022-12-06 04:18:58.913413 + : UngainlyAluminum35||pb-IF4XU0E5AQ==|| joined server -2022-12-06 04:19:26.028392 + : RainyParce||pb-IF5RU1AaLw==|| joined server -2022-12-06 04:19:45.099577 + : Maneesh_Royal||pb-IF4AVWkcHQ==|| joined server -2022-12-06 04:20:53.353309 + : Stochasti4||pb-IF4NUmY5Nw==|| joined server -2022-12-06 04:22:18.623035 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-06 04:23:42.933659 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-06 04:23:51.954664 + : sena3456||pb-IF4-B20v|| joined server -2022-12-06 04:24:32.095653 + : RoyalProph||pb-IF5TV2MzCA==|| joined server -2022-12-06 04:25:21.258233 + : InnateSinner19||pb-IF4IU04pBA==|| joined server -2022-12-06 04:25:32.285647 + : RoyalProph||pb-IF5TV2MzCA==|| joined server -2022-12-06 04:26:36.491428 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-06 04:27:22.646192 + : Selvapravin6667||pb-IF4LVWEDKQ==|| joined server -2022-12-06 04:28:09.821024 + : Android62237299||pb-IF4dU3gqNQ==|| joined server -2022-12-06 04:28:23.867907 + : soulwalker||pb-IF4tVW0OVw==|| joined server -2022-12-06 04:29:18.061616 + : Android63888799||pb-IF4oU004KQ==|| joined server -2022-12-06 04:29:46.154288 + : Android63888799||pb-IF4oU004KQ==|| joined server -2022-12-06 04:31:21.517328 + : SeverestApparel30||pb-IF4jU0JaNg==|| joined server -2022-12-06 04:32:07.700034 + : ScarredLab||pb-IF4gV24qCQ==|| joined server -2022-12-06 04:32:42.798633 + : DEVILLEAGE||pb-IF4eUk0vIA==|| joined server -2022-12-06 04:32:52.832372 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-06 04:33:19.950966 + : RamblingLemon85370||pb-IF4cU20TMw==|| joined server -2022-12-06 04:34:38.298720 + : Android42142043||pb-IF4oVEYEDg==|| joined server -2022-12-06 04:35:40.535459 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-06 04:38:10.078651 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-06 04:38:33.180434 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-06 04:40:39.607112 + : PATLU517||pb-IF49Umo-Fg==|| joined server -2022-12-06 04:40:48.638093 + : PATLU517||pb-IF49Umo-Fg==|| joined server -2022-12-06 04:41:01.673130 + : PATLU517||pb-IF49Umo-Fg==|| joined server -2022-12-06 04:41:20.734609 + : Android63796554||pb-IF4NU0ojAA==|| joined server -2022-12-06 04:42:14.886845 + : DrearyPromotion20||pb-IF4QUxM-Bg==|| joined server -2022-12-06 04:42:19.903319 + : LordTamboKing||pb-IF4NU0sbEA==|| joined server -2022-12-06 04:42:22.911644 + : sumonthedon||pb-JiNJARBYUkpJWFhFEEFRVlFAGUJWTlhG|| joined server -2022-12-06 04:42:58.066933 + : BYMRSTRIPE||pb-IF4xU3YvAw==|| joined server -2022-12-06 04:43:20.149779 + : TruthfulSustenance18||pb-IF49UxYgIA==|| joined server -2022-12-06 04:44:52.477571 + : genesisarb||pb-IF40U09YVQ==|| joined server -2022-12-06 04:45:03.511672 + : Symmetric9||pb-IF5TU20EMg==|| joined server -2022-12-06 04:45:21.597909 + : LordTamboKing||pb-IF4NU0sbEA==|| joined server -2022-12-06 04:46:12.830336 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-06 04:46:26.877532 + : Android63310192||pb-IF4cU0EGCQ==|| joined server -2022-12-06 04:47:27.111577 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-06 04:48:24.319748 + : NarutoUsum||pb-IF4jVGoTCg==|| joined server -2022-12-06 04:51:33.057556 + : Android63814438||pb-IF4QU0spDA==|| joined server -2022-12-06 04:53:34.492741 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-06 04:53:56.590051 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-06 04:55:43.958420 + : FreezingFl||pb-IF4zU1BaEg==|| joined server -2022-12-06 04:59:11.696133 + : Android45452286||pb-IF40VREoKw==|| joined server -2022-12-06 05:01:32.247071 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-06 05:02:20.410368 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-06 05:06:54.448316 + : lolisoh640||pb-IF4gU048KQ==|| joined server -2022-12-06 05:07:30.570385 + : Linux52467||pb-IF5WUxQlEw==|| joined server -2022-12-06 05:10:05.147570 + : Android63426698||pb-IF4VU0IZCg==|| joined server -2022-12-06 05:10:09.174125 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-06 05:10:32.254944 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-06 05:10:44.306011 + : PC437906||pb-IF5cUlYRVg==|| joined server -2022-12-06 05:10:50.330984 + : UngainlyAluminum35||pb-IF4XU0E5AQ==|| joined server -2022-12-06 05:11:13.428709 + : CHICKENBOO||pb-IF4AV1QqEQ==|| joined server -2022-12-06 05:14:11.126222 + : Android63426698||pb-IF4VU0IZCg==|| joined server -2022-12-06 05:14:17.142277 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-06 05:14:56.261602 + : YogeYogesh14||pb-IF4DU3AABw==|| joined server -2022-12-06 05:17:18.879037 + : VidhyanFal||pb-IF4LUk0FCQ==|| joined server -2022-12-06 05:17:53.017991 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-06 05:19:17.313861 + : Stochasti4||pb-IF4NUmY5Nw==|| joined server -2022-12-06 05:20:45.669082 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-06 05:23:14.216189 + : QuackingC2||pb-IF4IVU9bLA==|| joined server -2022-12-06 05:24:15.426768 + : BrutalSici||pb-IF4PUkkqMA==|| joined server -2022-12-06 05:25:16.652045 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-06 05:25:40.818258 + : StableCohe||pb-IF4rU24hJA==|| joined server -2022-12-06 05:26:26.942638 + : GreedyMorale41||pb-IF4RUmEvJw==|| joined server -2022-12-06 05:26:33.970633 + : Sabarishku||pb-IF4hU2oFDg==|| joined server -2022-12-06 05:26:52.032472 + : GreenKiwi4||pb-IF4qKFAu|| joined server -2022-12-06 05:26:55.040577 + : VIPINmMAIP||pb-IF4hVWspFw==|| joined server -2022-12-06 05:28:42.452397 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-06 05:33:13.458080 + : NiNJAMAN1267||pb-IF4nU3EhMg==|| joined server -2022-12-06 05:33:24.490411 + : NiNJAMAN1267||pb-IF4nU3EhMg==|| joined server -2022-12-06 05:36:46.148276 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 05:37:34.317715 + : soulwalker||pb-IF4tVW0OVw==|| joined server -2022-12-06 05:40:30.916427 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-06 05:50:28.003755 + : Stochasti4||pb-IF4NUmY5Nw==|| joined server -2022-12-06 05:50:32.020221 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 05:50:42.065800 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-06 05:51:46.300716 + : ismailrifai||pb-JiNJARFdVERDXllFGUdVV1VFFkBdRFdC|| joined server -2022-12-06 05:52:54.646521 + : LionAlpha7||pb-IF4UVGg8KQ==|| joined server -2022-12-06 05:53:12.714971 + : Linux52467||pb-IF5WUxQlEw==|| joined server -2022-12-06 05:53:35.815970 + : shrey19654||pb-IF4QVGYMKg==|| joined server -2022-12-06 05:53:57.886486 + : Stochasti4||pb-IF4NUmY5Nw==|| joined server -2022-12-06 05:54:36.036197 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-06 05:54:52.085187 + : EnviousIngredient43||pb-IF4cU0c5Fw==|| joined server -2022-12-06 05:57:00.597323 + : EnviousIngredient43||pb-IF4cU0c5Fw==|| joined server -2022-12-06 05:58:19.896600 + : NaughtyFly91019||pb-IF4gMxke|| joined server -2022-12-06 05:58:21.906152 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 05:58:55.031439 + : EliteWallaby35692||pb-IF4gV1gCMQ==|| joined server -2022-12-06 05:59:22.116714 + : MrDevil||pb-IF4hBFgH|| joined server -2022-12-06 05:59:38.185441 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-06 06:00:00.263170 + : RegularCensus17||pb-IF4TU3k5Pw==|| joined server -2022-12-06 06:01:00.490141 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-06 06:03:03.961453 + : ScreechingOoze8069||pb-JiNJARFeUkdDX1tHEkVTVlFDFUlXRllG|| joined server -2022-12-06 06:03:56.169548 + : JealousCry||pb-IF4xV2oPHA==|| joined server -2022-12-06 06:04:38.317453 + : TejGamerNt||pb-IF4oUxAGPQ==|| joined server -2022-12-06 06:06:37.760001 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-06 06:06:39.767267 + : Phalgun~||pb-LV4FBUYOVRRBCl4UEkVRB1EWGA==|| joined server -2022-12-06 06:06:55.826125 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-06 06:08:26.188386 + : FrontPlane24||pb-IF4WVU9TLg==|| joined server -2022-12-06 06:09:08.335451 + : Inconside6||pb-IF4RU1ApMQ==|| joined server -2022-12-06 06:10:29.611117 + : captshivi||pb-IF4tCRgv|| joined server -2022-12-06 06:12:29.137152 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-06 06:12:44.167588 + : GOJOSATURO77||pb-IF4lU00yCQ==|| joined server -2022-12-06 06:13:25.344103 + : captshivi||pb-IF4tCRgv|| joined server -2022-12-06 06:13:29.359452 + : NarrowHips||pb-IF4hU0YdDg==|| joined server -2022-12-06 06:16:46.210493 + : Android63993813||pb-IF4oU1BZHQ==|| joined server -2022-12-06 06:16:48.215245 + : HArSH463||pb-IF49U3YpAA==|| joined server -2022-12-06 06:16:51.229376 + : BelatedDir||pb-IF4PU08NCg==|| joined server -2022-12-06 06:17:34.386519 + : AnuragRdav||pb-IF4cUxYIHw==|| joined server -2022-12-06 06:18:47.692827 + : KookyVeloc||pb-IF4SU3gHFg==|| joined server -2022-12-06 06:20:08.966145 + : ChargeableEmployer42||pb-IF4IUhMeFg==|| joined server -2022-12-06 06:20:22.021989 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 06:20:32.060128 + : kabilandonnn||pb-IF5cU00uPA==|| joined server -2022-12-06 06:23:00.776365 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 06:23:12.817403 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-06 06:23:19.845913 + : Jayrajsinh1202||pb-IF4SU00JHw==|| joined server -2022-12-06 06:23:22.865180 + : JealousCry||pb-IF4xV2oPHA==|| joined server -2022-12-06 06:23:25.878958 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-06 06:23:50.092032 + : PATLU517||pb-IF49Umo-Fg==|| joined server -2022-12-06 06:24:14.406542 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-06 06:26:06.837511 + : soapeater2||pb-IF4OU08bPw==|| joined server -2022-12-06 06:27:15.065168 + : Jayrajsinh1202||pb-IF4SU00JHw==|| joined server -2022-12-06 06:27:52.329372 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 06:28:10.396521 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 06:29:36.918492 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-06 06:31:13.344032 + : FancyPan23||pb-IF5UUkMlDA==|| joined server -2022-12-06 06:31:29.400783 + : Jayrajsinh1202||pb-IF4SU00JHw==|| joined server -2022-12-06 06:31:31.407420 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 06:32:05.592415 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 06:32:13.620357 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-06 06:32:56.820646 + : SriramHULK786||pb-IF5TUkoOHw==|| joined server -2022-12-06 06:34:03.013582 + : UnsoldHen2||pb-IF4oU0suEQ==|| joined server -2022-12-06 06:35:18.453512 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-06 06:36:19.689106 + : bijodicarp||pb-IF4TVWEnIg==|| joined server -2022-12-06 06:37:42.005612 + : Jayrajsinh1202||pb-IF4SU00JHw==|| joined server -2022-12-06 06:37:51.037463 + : Android63796554||pb-IF4NU0ojAA==|| joined server -2022-12-06 06:38:15.141466 + : OpulentPre||pb-IF5TU1EaVQ==|| joined server -2022-12-06 06:38:23.379470 + : TOMCYTHAMPY||pb-IF4sUm0zIg==|| joined server -2022-12-06 06:41:09.004037 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-06 06:41:12.013015 + : kshitijGaming15||pb-IF4FU0ohEw==|| joined server -2022-12-06 06:42:44.571462 + : KINGTN50||pb-IF4QUmRTFQ==|| joined server -2022-12-06 06:43:09.671865 + : Jayrajsinh1202||pb-IF4SU00JHw==|| joined server -2022-12-06 06:43:46.834342 + : RanDD9322||pb-IF4nVRURUw==|| joined server -2022-12-06 06:43:58.869803 + : BrutalSici||pb-IF4PUkkqMA==|| joined server -2022-12-06 06:44:43.032962 + : BrutalSici||pb-IF4PUkkqMA==|| joined server -2022-12-06 06:44:44.035723 + : mBAROT||pb-LV4FBBRcUBESWV4RFBVUV1NBRA==|| joined server -2022-12-06 06:44:59.093487 + : HolyCowMan||pb-IF4-U08NVQ==|| joined server -2022-12-06 06:45:10.147092 + : BrutalSici||pb-IF4PUkkqMA==|| joined server -2022-12-06 06:46:56.475427 + : Android63956969||pb-IF5VU1E5Kg==|| joined server -2022-12-06 06:48:35.817912 + : pankajveru||pb-JiNJARBdUUpEXV1AFkRVUVZHGUJdQ1NC|| joined server -2022-12-06 06:49:19.960028 + : BelatedDir||pb-IF4PU08NCg==|| joined server -2022-12-06 06:51:06.307698 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-06 06:52:07.501610 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-06 06:53:32.821897 + : Milenuyir||pb-IF41Unk7Dw==|| joined server -2022-12-06 06:53:58.924439 + : manuellaut||pb-IF4MU09fKA==|| joined server -2022-12-06 06:55:05.171179 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-06 06:55:46.314025 + : minnie5116||pb-IF40UmcHJw==|| joined server -2022-12-06 06:57:01.787179 + : Android63428296||pb-IF4CU0MiVA==|| joined server -2022-12-06 06:58:12.068766 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-06 06:58:23.114446 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-06 06:59:12.300218 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-06 07:00:39.586242 + : SymbolicLe||pb-IF4CVUMpLQ==|| joined server -2022-12-06 07:04:04.668432 + : EnviousIngredient43||pb-IF4cU0c5Fw==|| joined server -2022-12-06 07:04:40.781792 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-06 07:05:36.996369 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-06 07:06:27.163521 + : ashikroyal||pb-IF4BVUw-Dg==|| joined server -2022-12-06 07:07:53.471514 + : Navestien6||pb-IF40UkQYJg==|| joined server -2022-12-06 07:08:53.989789 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-06 07:10:10.258685 + : Nikimalhan||pb-IF41VRcsBw==|| joined server -2022-12-06 07:10:27.342848 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-06 07:10:32.361535 + : PlusCradle26||pb-IF4-U0gfIg==|| joined server -2022-12-06 07:12:26.974240 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 07:13:02.119928 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 07:14:43.637304 + : Rocksoli17||pb-IF4lN2QS|| joined server -2022-12-06 07:15:25.772672 + : Rocksoli17||pb-IF4lN2QS|| joined server -2022-12-06 07:15:48.878398 + : harshadkarale007||pb-IF4BU0wpDw==|| joined server -2022-12-06 07:16:24.995217 + : Navestien6||pb-IF40UkQYJg==|| joined server -2022-12-06 07:17:06.168220 + : Android59086853||pb-IF5UUlM8Fw==|| joined server -2022-12-06 07:17:27.241991 + : Sufipnf23||pb-IF4lVEscUg==|| joined server -2022-12-06 07:18:24.448160 + : Shlash7561||pb-IF4RA2I6|| joined server -2022-12-06 07:18:48.534935 + : Android48907943||pb-IF4DVW4HFA==|| joined server -2022-12-06 07:19:26.680480 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-06 07:19:55.789737 + : jonathansanthosh||pb-IF4-U0kNVQ==|| joined server -2022-12-06 07:20:03.803921 + : Android63902876||pb-IF4DU00TEw==|| joined server -2022-12-06 07:20:09.832149 + : Sufipnf23||pb-IF4lVEscUg==|| joined server -2022-12-06 07:20:53.199732 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-06 07:20:58.216956 + : HecticOnset37||pb-IF4iU0w4KQ==|| joined server -2022-12-06 07:20:59.219225 + : ColonialGrammar61||pb-IF4NU0wOXQ==|| joined server -2022-12-06 07:21:06.231548 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 07:21:25.306003 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 07:22:13.733956 + : IpnRagul752||pb-IF4iVWQ_Bg==|| joined server -2022-12-06 07:22:29.785729 + : Correctiv8||pb-IF4lU00bPQ==|| joined server -2022-12-06 07:23:43.412099 + : happygame2||pb-IF4BU3QhUQ==|| joined server -2022-12-06 07:24:31.591292 + : Android63983749||pb-IF4NU04dKQ==|| joined server -2022-12-06 07:26:17.996711 + : brucewayn||pb-IF41U0cRLw==|| joined server -2022-12-06 07:26:39.057425 + : gatchipatr||pb-IF4dVEcfIA==|| joined server -2022-12-06 07:27:04.152767 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-06 07:27:06.156191 + : AkshayParg||pb-IF4vVFEZBg==|| joined server -2022-12-06 07:27:42.562024 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-06 07:31:58.575940 + : AkshayParg||pb-IF4vVFEZBg==|| joined server -2022-12-06 07:32:34.704389 + : SpectacularShield731||pb-IF4rU0kGEA==|| joined server -2022-12-06 07:34:34.518357 + : Navestien6||pb-IF40UkQYJg==|| joined server -2022-12-06 07:35:14.651674 + : AkshayParg||pb-IF4vVFEZBg==|| joined server -2022-12-06 07:36:01.822937 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-06 07:36:07.840825 + : muthuMJ||pb-IF5TU0tcUw==|| joined server -2022-12-06 07:36:29.923459 + : FictionalH||pb-IF4nU0scDQ==|| joined server -2022-12-06 07:38:34.631284 + : Android63902876||pb-IF4DU00TEw==|| joined server -2022-12-06 07:38:46.673288 + : Android63995855||pb-IF4jU1AyPA==|| joined server -2022-12-06 07:39:54.919753 + : NoName47962f||pb-JiNJARBbVUVBXVlAEUVQUVdLGUBWQVdK|| joined server -2022-12-06 07:41:25.216071 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-06 07:42:40.477385 + : bhaumikrat||pb-JiNJARFZUUpJX1tGE0dWVlJEE0NdQFhB|| joined server -2022-12-06 07:43:03.600348 + : Android62934068||pb-IF5UU3kINA==|| joined server -2022-12-06 07:44:18.849396 + : Android63898377||pb-IF4vU00eAA==|| joined server -2022-12-06 07:45:03.985326 + : chugambaran||pb-IF42U2wGFw==|| joined server -2022-12-06 07:45:47.114272 + : Hezardoz||pb-JiNJVxBSVEFCX1lGE0JWVVBHF0deRFJG|| joined server -2022-12-06 07:45:49.118682 + : 11MAXTON11||pb-IF5QU1EMXA==|| joined server -2022-12-06 07:46:53.348550 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-06 07:47:05.387429 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-06 07:47:24.434650 + : NitricBet41||pb-IF4gUmMPXQ==|| joined server -2022-12-06 07:48:03.590833 + : Insatiabl3||pb-IF4nU3hdFw==|| joined server -2022-12-06 07:49:04.795255 + : HumblerMare46||pb-IF5VU0dfJg==|| joined server -2022-12-06 07:50:38.810225 + : Android63898377||pb-IF4vU00eAA==|| joined server -2022-12-06 07:51:09.936708 + : EclecticC3||pb-IF4dVEUgVg==|| joined server -2022-12-06 07:52:58.309932 + : NoName47962f||pb-JiNJARBbVUVBXVlAEUVQUVdLGUBWQVdK|| joined server -2022-12-06 07:54:26.642458 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 07:55:43.894471 + : PRASADGOLE007||pb-IF4yU05aKg==|| joined server -2022-12-06 07:56:21.197541 + : HopelessActor28||pb-IF5dU0JePQ==|| joined server -2022-12-06 07:57:35.472125 + : MetalReporter57||pb-IF4pU0lYLg==|| joined server -2022-12-06 07:57:47.517044 + : TheIndianGamerDX||pb-JiNJARFcV0VGXF1AE09QVVdCEkRcRlVL|| joined server -2022-12-06 07:58:15.608749 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-06 07:58:41.985144 + : Android63898377||pb-IF4vU00eAA==|| joined server -2022-12-06 07:58:46.007823 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-06 07:58:54.038882 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-06 08:00:46.502134 + : MattedElix||pb-IF5UU1JaMA==|| joined server -2022-12-06 08:02:48.956233 + : EngrossingFarmer8411||pb-IF4dV0deMw==|| joined server -2022-12-06 08:03:16.048187 + : LiteralFlu||pb-IF4lU1BdIw==|| joined server -2022-12-06 08:05:39.613053 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-06 08:07:16.947097 + : Android63995876||pb-IF4JU08bHA==|| joined server -2022-12-06 08:07:28.980768 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-06 08:07:37.999250 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-06 08:07:42.004170 + : Ansilchikuu||pb-IF4cVE4MDQ==|| joined server -2022-12-06 08:07:57.062267 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-06 08:08:37.202223 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-06 08:08:50.240747 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-06 08:08:53.249403 + : Android57008711||pb-IF4RUnY9IQ==|| joined server -2022-12-06 08:11:23.768685 + : SANKETBANSODE007||pb-IF4lVWwsEw==|| joined server -2022-12-06 08:11:45.056767 + : YoungerCol||pb-IF4cU3NcKQ==|| joined server -2022-12-06 08:12:24.178067 + : gatchipatr||pb-IF4dVEcfIA==|| joined server -2022-12-06 08:12:55.292413 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-06 08:15:29.876961 + : ROHIT7100000||pb-IF4gU0U4UA==|| joined server -2022-12-06 08:15:31.882712 + : GoodlyTran||pb-IF4CVW07PA==|| joined server -2022-12-06 08:16:38.095739 + : CleanerRes||pb-IF5QU0s6XQ==|| joined server -2022-12-06 08:16:40.105269 + : PitifulPick9||pb-IF4yVG8uXQ==|| joined server -2022-12-06 08:16:44.127176 + : HipCompany||pb-IF4WUxcgNw==|| joined server -2022-12-06 08:17:19.266407 + : aswinsanthosh47249||pb-IF4iVU4qDA==|| joined server -2022-12-06 08:18:07.440604 + : MootEmbrac||pb-IF4FU085Ng==|| joined server -2022-12-06 08:20:21.871773 + : Android63996535||pb-IF4xU08NPA==|| joined server -2022-12-06 08:20:36.925636 + : SheikRieng||pb-IF4rU1BdLw==|| joined server -2022-12-06 08:20:55.989209 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 08:21:09.020484 + : NitricBet41||pb-IF4gUmMPXQ==|| joined server -2022-12-06 08:21:32.097668 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-06 08:21:51.153475 + : ChintuKarthik1123||pb-IF43U3opMw==|| joined server -2022-12-06 08:23:10.881256 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-06 08:23:17.906071 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 08:23:19.916082 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-06 08:23:22.921556 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-06 08:24:23.117526 + : Android60358186||pb-IF4lUxQtAA==|| joined server -2022-12-06 08:26:14.517818 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-06 08:27:47.862717 + : NitricBet41||pb-IF4gUmMPXQ==|| joined server -2022-12-06 08:27:55.886997 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-06 08:28:50.091832 + : LoathsomeReaction46||pb-IF49U04vXA==|| joined server -2022-12-06 08:28:55.102524 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-06 08:29:21.184979 + : Aswinag7||pb-IF4RU3ExEg==|| joined server -2022-12-06 08:29:22.189757 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 08:30:05.350382 + : DarkLordAscended||pb-IF4KU0UqLA==|| joined server -2022-12-06 08:30:10.377552 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-06 08:31:28.672265 + : RagingPred||pb-IF4DU1BaNA==|| joined server -2022-12-06 08:31:35.713317 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-06 08:32:04.806259 + : RagingPred||pb-IF4DU1BaNA==|| joined server -2022-12-06 08:32:25.864990 + : RagingPred||pb-IF4DU1BaNA==|| joined server -2022-12-06 08:33:00.999805 + : RAGExLUINO||pb-IF5SUkwMAg==|| joined server -2022-12-06 08:33:27.096753 + : RagingPred||pb-IF4DU1BaNA==|| joined server -2022-12-06 08:33:33.116075 + : Android61350223||pb-IF5TU2g6AQ==|| joined server -2022-12-06 08:33:49.166742 + : TejGamerNt||pb-IF4oUxAGPQ==|| joined server -2022-12-06 08:34:47.414867 + : NitricBet41||pb-IF4gUmMPXQ==|| joined server -2022-12-06 08:34:58.459823 + : Android57008711||pb-IF4RUnY9IQ==|| joined server -2022-12-06 08:36:17.769273 + : TejGamerNt||pb-IF4oUxAGPQ==|| joined server -2022-12-06 08:36:32.814327 + : PC363206||pb-IF4pUmQcPA==|| joined server -2022-12-06 08:37:51.084761 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-06 08:38:53.303795 + : mooninvaders24||pb-JiNJARFYU0pGXVdCFU9TVVZEFkFaRFlL|| joined server -2022-12-06 08:40:23.586320 + : jeffalbi45||pb-IF4xU00ZLQ==|| joined server -2022-12-06 08:40:33.623306 + : Dragonking||pb-JiNJARBbU0dAW1hIEk9YXFFDEkZWQVRC|| joined server -2022-12-06 08:40:49.680934 + : mippypoop1||pb-JiNJARFYV0dBVF5JEUFSU1BAGEZZT1lA|| joined server -2022-12-06 08:40:55.695276 + : Android58748298||pb-IF5SUk8fAA==|| joined server -2022-12-06 08:41:01.716982 + : DeceptiveL||pb-IF5WU28fFg==|| joined server -2022-12-06 08:41:06.735087 + : HAR1gamer||pb-IF4BK046|| joined server -2022-12-06 08:41:34.832003 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-06 08:41:37.836632 + : BushyInstr||pb-IF4WU0QRIA==|| joined server -2022-12-06 08:41:41.852881 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-06 08:41:51.891300 + : Android60435181||pb-IF5XUxcnLw==|| joined server -2022-12-06 08:41:52.898692 + : HAR1gamer||pb-IF4BK046|| joined server -2022-12-06 08:43:12.216625 + : orangeyty||pb-IF5XUxg6Ug==|| joined server -2022-12-06 08:43:57.367356 + : PYGREED||pb-IF4TU08kKQ==|| joined server -2022-12-06 08:45:49.792407 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-06 08:46:03.840752 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-06 08:46:42.981202 + : AWMkingVB||pb-IF4uVU4PKQ==|| joined server -2022-12-06 08:47:36.193512 + : Android63903308||pb-IF4XU04tNQ==|| joined server -2022-12-06 08:47:39.207384 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-06 08:47:48.231442 + : Android63201472||pb-IF4tU3obMw==|| joined server -2022-12-06 08:48:13.306797 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-06 08:48:18.327915 + : BLOODFRAUD||pb-IF4xUxA7Vg==|| joined server -2022-12-06 08:50:05.709902 + : mugilann2k||pb-IF5UU0gICg==|| joined server -2022-12-06 08:51:20.987384 + : YKthePRÔFÈSSØR||pb-IF4RU3IjMA==|| joined server -2022-12-06 08:51:50.108874 + : Android63814738||pb-IF4xU0tTDQ==|| joined server -2022-12-06 08:53:11.381643 + : J0kerr666||pb-LV4TA0FSAEsWCVxdGE9YVUhGFhJZWlkWV1QNDlIRRlwJExNFWVNV|| joined server -2022-12-06 08:53:16.406741 + : Touqeeerking||pb-IF5RVRcCNQ==|| joined server -2022-12-06 08:53:31.467845 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-06 08:54:29.723683 + : Intermed12||pb-IF41U08-Eg==|| joined server -2022-12-06 08:54:48.790962 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-06 08:55:31.947857 + : AmusingWanderer19||pb-IF48VWgECg==|| joined server -2022-12-06 08:55:56.022641 + : Intermed12||pb-IF41U08-Eg==|| joined server -2022-12-06 08:56:04.045211 + : Android63098154||pb-IF4PU3hdLg==|| joined server -2022-12-06 08:56:18.097014 + : Android63346781||pb-IF5VU0Q5LQ==|| joined server -2022-12-06 09:00:29.054083 + : Android63217110||pb-IF4oU3oZNg==|| joined server -2022-12-06 09:01:27.272385 + : FuturisticUndead36||pb-IF5cVUkgUQ==|| joined server -2022-12-06 09:01:54.350923 + : Android52470937||pb-IF4DVVgZJA==|| joined server -2022-12-06 09:02:08.392367 + : Vishvjeetsinhchavda4||pb-IF4DVU0hKQ==|| joined server -2022-12-06 09:02:18.437978 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 09:03:23.702631 + : OrganicHor||pb-IF4-U0MYXA==|| joined server -2022-12-06 09:03:26.716776 + : IdenticalShock57||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-06 09:05:37.174539 + : Aryannnnnヅ||pb-IF4tVXIbMQ==|| joined server -2022-12-06 09:07:11.534169 + : PivotalSorcerer2||pb-IF4UUmoqUw==|| joined server -2022-12-06 09:08:14.773432 + : TypicalColonel69394||pb-IF4GUkYzDA==|| joined server -2022-12-06 09:08:17.785064 + : Isbgamer89||pb-IF4cU08bEA==|| joined server -2022-12-06 09:09:34.051645 + : TypicalColonel69394||pb-IF4GUkYzDA==|| joined server -2022-12-06 09:09:48.108784 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-06 09:11:25.491561 + : BiographicalSteam361||pb-IF4yU088Uw==|| joined server -2022-12-06 09:11:53.588297 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-06 09:12:35.763628 + : SansSkelet||pb-IF4LUlBZNQ==|| joined server -2022-12-06 09:13:19.943002 + : Ansilchikuu||pb-IF4cVE4MDQ==|| joined server -2022-12-06 09:13:31.957663 + : GOJOSATURO77||pb-IF4lU00yCQ==|| joined server -2022-12-06 09:14:22.137483 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-06 09:14:24.147709 + : FamousImpr||pb-IF4TU0oFAQ==|| joined server -2022-12-06 09:15:20.326717 + : ADI61834||pb-IF4pVXMNEw==|| joined server -2022-12-06 09:16:07.483686 + : HotChicken96163||pb-IF4DV1haCg==|| joined server -2022-12-06 09:16:54.643937 + : DependableChip25||pb-IF4GU0gbVQ==|| joined server -2022-12-06 09:17:07.695668 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-06 09:17:21.747980 + : Android48579844||pb-IF4MVWwmEQ==|| joined server -2022-12-06 09:17:51.851374 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 09:17:55.864458 + : GamerParth2022||pb-IF4DU04PNQ==|| joined server -2022-12-06 09:19:52.331931 + : UntaintedR||pb-IF5SUxIeCA==|| joined server -2022-12-06 09:19:54.345074 + : RedeemingTariff52||pb-IF4QU0s_Eg==|| joined server -2022-12-06 09:20:41.530133 + : kingbcs||pb-IF4nU08BVg==|| joined server -2022-12-06 09:22:22.898403 + : SOULRippeR||pb-IF4nU1AnFA==|| joined server -2022-12-06 09:22:33.930815 + : QuackingC2||pb-IF4IVU9bLA==|| joined server -2022-12-06 09:22:59.017625 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-06 09:24:21.316292 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-06 09:25:19.506239 + : WanProduc2||pb-IF4nU0cpHA==|| joined server -2022-12-06 09:25:28.533627 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-06 09:31:15.796171 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-06 09:31:48.917129 + : Android54523561||pb-IF5VUmEnJg==|| joined server -2022-12-06 09:32:06.988895 + : CHICKENBOO||pb-IF4AV1QqEQ==|| joined server -2022-12-06 09:32:49.102151 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-06 09:33:00.150139 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-06 09:33:17.221995 + : LowerWarde||pb-IF5UU0gmNA==|| joined server -2022-12-06 09:36:48.976121 + : ChintuKarthik1123||pb-IF43U3opMw==|| joined server -2022-12-06 09:36:50.980822 + : Android63830734||pb-IF4BU0s8BA==|| joined server -2022-12-06 09:37:14.081311 + : DEATHSTORM||pb-IF4tUkwtCA==|| joined server -2022-12-06 09:37:42.188174 + : ProdigalOutlay20||pb-IF4iU0QlAQ==|| joined server -2022-12-06 09:37:44.202022 + : RedeemingTariff52||pb-IF4QU0s_Eg==|| joined server -2022-12-06 09:38:40.452838 + : Instruct21||pb-IF4qU04eNQ==|| joined server -2022-12-06 09:41:05.974681 + : RabidFight||pb-IF5RU3UzJA==|| joined server -2022-12-06 09:41:08.990290 + : Instruct21||pb-IF4qU04eNQ==|| joined server -2022-12-06 09:41:24.043346 + : NitricBet41||pb-IF4gUmMPXQ==|| joined server -2022-12-06 09:41:31.059856 + : NitricBet41||pb-IF4gUmMPXQ==|| joined server -2022-12-06 09:41:40.083246 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-06 09:42:16.302467 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 09:42:52.443828 + : NOTJOSHLEO||pb-IF4KU1AsAQ==|| joined server -2022-12-06 09:43:00.466097 + : CHICKENBOO||pb-IF4AV1QqEQ==|| joined server -2022-12-06 09:43:05.485171 + : LustrousC3||pb-IF4oUnVaNg==|| joined server -2022-12-06 09:44:07.816072 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-06 09:45:13.029719 + : Android63427027||pb-IF4WU0MpAA==|| joined server -2022-12-06 09:45:55.239987 + : StapleDrif||pb-IF4IU04HUg==|| joined server -2022-12-06 09:46:58.460132 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-06 09:47:07.494955 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-06 09:47:43.614704 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-06 09:48:25.768146 + : 0neN0nly21||pb-IF4LU0sqMA==|| joined server -2022-12-06 09:48:39.816689 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-06 09:48:41.823713 + : Android48356549||pb-IF4BVWoFDQ==|| joined server -2022-12-06 09:48:43.828730 + : RainyParce||pb-IF5RU1AaLw==|| joined server -2022-12-06 09:49:58.106673 + : RohanK||pb-IF4dCnou|| joined server -2022-12-06 09:51:01.337878 + : ArchitViradiya4747||pb-IF4qVRc9Bg==|| joined server -2022-12-06 09:51:07.350370 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-06 09:52:31.685516 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-06 09:52:59.789003 + : bisht4189||pb-IF4SEHAl|| joined server -2022-12-06 09:53:05.811401 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-06 09:53:28.894412 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-06 09:53:32.911457 + : unstoppabl||pb-IF4TU0o6Aw==|| joined server -2022-12-06 09:55:06.185517 + : Android63351569||pb-IF5WU0RTLA==|| joined server -2022-12-06 09:55:14.212415 + : Android60154328||pb-IF4QUxEJUA==|| joined server -2022-12-06 09:55:32.266702 + : HotChicken96163||pb-IF4DV1haCg==|| joined server -2022-12-06 09:58:02.808526 + : FreezingFl||pb-IF4zU1BaEg==|| joined server -2022-12-06 09:58:11.844520 + : UJJWALkr8569||pb-IF4eVE9dFA==|| joined server -2022-12-06 09:59:27.114179 + : Lakshit213||pb-IF5UVBUEUg==|| joined server -2022-12-06 10:00:07.249631 + : NoName55613a||pb-IF4uU08GCQ==|| joined server -2022-12-06 10:00:13.277305 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-06 10:00:20.302530 + : Android58843616||pb-IF4-Uk4ZXQ==|| joined server -2022-12-06 10:00:29.334480 + : Lakshit213||pb-IF5UVBUEUg==|| joined server -2022-12-06 10:00:42.392336 + : Lakshit213||pb-IF5UVBUEUg==|| joined server -2022-12-06 10:00:45.404056 + : Android48356549||pb-IF4BVWoFDQ==|| joined server -2022-12-06 10:01:02.474570 + : Android52606483||pb-IF4WVVAlDw==|| joined server -2022-12-06 10:02:58.975786 + : OrganicHor||pb-IF4-U0MYXA==|| joined server -2022-12-06 10:03:12.034293 + : NOMERCY||pb-IF49U0QJDw==|| joined server -2022-12-06 10:04:03.200568 + : StereoCurriculum37||pb-IF4DU0pdEw==|| joined server -2022-12-06 10:04:11.238819 + : RohanK||pb-IF4dCnou|| joined server -2022-12-06 10:04:46.370907 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-06 10:05:19.472188 + : QanT||pb-IF4qUnE5XA==|| joined server -2022-12-06 10:06:18.673821 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-06 10:06:48.762937 + : RohanK||pb-IF4dCnou|| joined server -2022-12-06 10:07:12.858526 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-06 10:09:15.416084 + : BionicClown95756||pb-IF4hU0QyUA==|| joined server -2022-12-06 10:09:23.434547 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-06 10:09:56.580596 + : Recipient3||pb-IF4HU00hJw==|| joined server -2022-12-06 10:10:15.645066 + : Divaagarhockeyplayer||pb-IF5TVU5aMA==|| joined server -2022-12-06 10:10:45.772867 + : Android63940563||pb-IF4wU09SJA==|| joined server -2022-12-06 10:11:06.846757 + : DexTerOuSVikAriA||pb-IF4GUxUZKg==|| joined server -2022-12-06 10:11:18.906651 + : DexTerOuSVikAriA||pb-IF4GUxUZKg==|| joined server -2022-12-06 10:12:32.179402 + : MysticBloo||pb-IF4-U3QjBg==|| joined server -2022-12-06 10:12:35.188341 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-06 10:13:20.334911 + : Android62717978||pb-IF4dU3QSKw==|| joined server -2022-12-06 10:14:10.545729 + : ArunTamizha||pb-IF4UU2IIFg==|| joined server -2022-12-06 10:15:34.893674 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-06 10:15:36.905708 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-06 10:15:40.923112 + : VROPPRO||pb-IF4dU20FHA==|| joined server -2022-12-06 10:15:50.947743 + : RohanK||pb-IF4dCnou|| joined server -2022-12-06 10:16:17.046442 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-06 10:16:36.126020 + : FamousImpr||pb-IF4TU0oFAQ==|| joined server -2022-12-06 10:17:00.205598 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-06 10:18:01.425842 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-06 10:21:13.092227 + : Winplaygam||pb-IF4BVRQmVA==|| joined server -2022-12-06 10:22:01.276134 + : BrutalSici||pb-IF4PUkkqMA==|| joined server -2022-12-06 10:22:08.307940 + : Deepak11De||pb-IF40UhVdVA==|| joined server -2022-12-06 10:22:22.358274 + : BrutalSici||pb-IF4PUkkqMA==|| joined server -2022-12-06 10:22:33.391031 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-06 10:23:25.595741 + : Android59682080||pb-IF4JUlcFVQ==|| joined server -2022-12-06 10:26:19.210615 + : ronxbone||pb-IF4XU1BaKQ==|| joined server -2022-12-06 10:26:37.274864 + : PokeyHammer5496||pb-JiNJARFcXEpDWlpAGUJVU1dBGUVfR1ZC|| joined server -2022-12-06 10:26:49.328266 + : ronxbone||pb-IF4XU1BaKQ==|| joined server -2022-12-06 10:28:15.612335 + : AgedCore46||pb-IF4QU04eDQ==|| joined server -2022-12-06 10:28:52.753249 + : MRSHUBHAManuj||pb-IF4AU0EPAg==|| joined server -2022-12-06 10:29:13.840060 + : Demodog02||pb-IF5VVEEANg==|| joined server -2022-12-06 10:30:20.067306 + : Divaagarhockeyplayer||pb-IF5TVU5aMA==|| joined server -2022-12-06 10:30:36.120070 + : Divaagarhockeyplayer||pb-IF5TVU5aMA==|| joined server -2022-12-06 10:30:42.147239 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-06 10:30:58.196487 + : SHIVAMASS1509||pb-IF4LVGlSLw==|| joined server -2022-12-06 10:31:41.349913 + : PC772976||pb-IF4xU04OMg==|| joined server -2022-12-06 10:32:56.632448 + : RohanK||pb-IF4dCnou|| joined server -2022-12-06 10:33:28.724724 + : Android62190350||pb-IF4QU28vNg==|| joined server -2022-12-06 10:34:11.886026 + : FayasMH07||pb-IF5SUkkBEw==|| joined server -2022-12-06 10:34:35.966720 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-06 10:35:12.075469 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-06 10:36:56.502151 + : CleanerRes||pb-IF5QU0s6XQ==|| joined server -2022-12-06 10:37:01.518287 + : happygame2||pb-IF4BU3QhUQ==|| joined server -2022-12-06 10:38:26.813620 + : TelegraphicTree29||pb-IF4qUkw9Pw==|| joined server -2022-12-06 10:39:09.971847 + : Android56494704||pb-IF5RUnRYMg==|| joined server -2022-12-06 10:39:48.108544 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-06 10:39:59.140525 + : CivilizedT||pb-IF4wVFcZPw==|| joined server -2022-12-06 10:40:06.166014 + : ImportantYeoman99681||pb-IF4sU2I5JA==|| joined server -2022-12-06 10:41:01.345513 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-06 10:41:16.391780 + : srk5553||pb-IF4oVU8CIQ==|| joined server -2022-12-06 10:42:42.732456 + : WiseCarpen||pb-IF4QAFAT|| joined server -2022-12-06 10:42:59.788301 + : Android53154238||pb-IF4KVVUSPw==|| joined server -2022-12-06 10:43:04.812090 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-06 10:43:43.935036 + : FamousImpr||pb-IF4TU0oFAQ==|| joined server -2022-12-06 10:44:48.156282 + : Android63804091||pb-IF4WU0s5LA==|| joined server -2022-12-06 10:45:13.258267 + : subashchan||pb-IF4NU3onCg==|| joined server -2022-12-06 10:47:07.699862 + : Android63653357||pb-IF4tU0cgJw==|| joined server -2022-12-06 10:48:03.892458 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-06 10:48:27.975585 + : Assertive2||pb-IF4tUlgHLg==|| joined server -2022-12-06 10:48:41.005958 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-06 10:49:16.128807 + : RubberMast||pb-IF4qU1BYEA==|| joined server -2022-12-06 10:49:32.190279 + : WeaklyDece||pb-IF4uU0oHVQ==|| joined server -2022-12-06 10:49:47.281169 + : TopCapability10||pb-IF4DU08kHw==|| joined server -2022-12-06 10:50:04.347261 + : Android62371159||pb-IF4BU3EtLg==|| joined server -2022-12-06 10:50:35.448632 + : Android63995876||pb-IF4JU08bHA==|| joined server -2022-12-06 10:50:53.510298 + : ShailiPate||pb-IF4NUmovVg==|| joined server -2022-12-06 10:51:11.580380 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-06 10:52:14.846262 + : anuj6dager||pb-IF40U2stDA==|| joined server -2022-12-06 10:52:24.887121 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-06 10:52:33.904750 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-06 10:53:14.229110 + : sds420s||pb-IF41UlAhCA==|| joined server -2022-12-06 10:54:10.428847 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-06 10:54:16.439918 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-06 10:54:21.460014 + : PerfidiousStress40||pb-IF5SV2VbAQ==|| joined server -2022-12-06 10:54:35.495066 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-06 10:55:24.647741 + : HonorableEttin404||pb-IF4eU004Ew==|| joined server -2022-12-06 10:57:13.167322 + : Hardwork14||pb-IF42U04yBw==|| joined server -2022-12-06 10:57:19.192334 + : ColonialGrammar61||pb-IF4NU0wOXQ==|| joined server -2022-12-06 10:57:48.264791 + : Android63564565||pb-IF5UU0dfBw==|| joined server -2022-12-06 10:58:17.354934 + : Android59843406||pb-IF49U21YDQ==|| joined server -2022-12-06 10:58:33.412508 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-06 10:59:05.513835 + : Aswinag7||pb-IF4RU3ExEg==|| joined server -2022-12-06 10:59:37.648556 + : ashu42v||pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF|| joined server -2022-12-06 11:00:05.766814 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-06 11:01:57.300301 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-06 11:04:23.931401 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-06 11:05:08.084846 + : Android63997565||pb-IF4yU08bLQ==|| joined server -2022-12-06 11:05:19.124036 + : Android56494704||pb-IF5RUnRYMg==|| joined server -2022-12-06 11:05:59.261285 + : Android63737185||pb-IF4RU0kkPA==|| joined server -2022-12-06 11:06:52.427581 + : Android63770342||pb-IF4rU0o9KQ==|| joined server -2022-12-06 11:07:19.526603 + : WonderfulH||pb-IF4sVVgTAg==|| joined server -2022-12-06 11:08:49.854592 + : Android61281057||pb-IF4QU2UnJA==|| joined server -2022-12-06 11:09:09.918593 + : Martinphil||pb-IF4cU3oSUw==|| joined server -2022-12-06 11:10:14.166586 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-06 11:12:52.685397 + : LORDHanzoStar||pb-IF4qUkQ9CA==|| joined server -2022-12-06 11:12:58.708145 + : Android63770342||pb-IF4rU0o9KQ==|| joined server -2022-12-06 11:13:12.757726 + : AfrodityHe||pb-IF4VUkMgUA==|| joined server -2022-12-06 11:13:34.826240 + : GoㅤDㅤUsopp||pb-IF4PU3oqXQ==|| joined server -2022-12-06 11:13:35.832356 + : Android56494704||pb-IF5RUnRYMg==|| joined server -2022-12-06 11:15:13.155898 + : Android63796554||pb-IF4NU0ojAA==|| joined server -2022-12-06 11:16:13.363876 + : Android49166175||pb-IF48VXAqBg==|| joined server -2022-12-06 11:16:28.421581 + : Touqeeerking||pb-IF5RVRcCNQ==|| joined server -2022-12-06 11:17:17.566670 + : Android63997698||pb-IF4VU08bDg==|| joined server -2022-12-06 11:17:25.599604 + : TremendousCreek8||pb-IF4vUxkKDg==|| joined server -2022-12-06 11:17:30.619332 + : PseudoAttendance18||pb-IF4VVWsGIA==|| joined server -2022-12-06 11:18:10.778929 + : Wikirex2001||pb-IF41V0UyDg==|| joined server -2022-12-06 11:18:41.894104 + : SREEKANTH1943||pb-JiNJARBbXUFGXlpHGURYUFVCF0BYQ1VK|| joined server -2022-12-06 11:19:09.989560 + : Android63770342||pb-IF4rU0o9KQ==|| joined server -2022-12-06 11:19:41.110037 + : Android63737185||pb-IF4RU0kkPA==|| joined server -2022-12-06 11:21:52.574892 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-06 11:22:07.609767 + : Miur35||pb-IF4DU08vBw==|| joined server -2022-12-06 11:26:14.492477 + : jethendras||pb-IF4iI04x|| joined server -2022-12-06 11:26:20.501831 + : Android18117877||pb-IF4KXmcn|| joined server -2022-12-06 11:26:58.665880 + : srk5553||pb-IF4oVU8CIQ==|| joined server -2022-12-06 11:27:20.740386 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-06 11:29:03.235127 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-06 11:30:52.643849 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-06 11:31:27.754490 + : Android63995855||pb-IF4jU1AyPA==|| joined server -2022-12-06 11:32:51.031493 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-06 11:33:20.110983 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-06 11:33:43.192549 + : PerfidiousStress40||pb-IF5SV2VbAQ==|| joined server -2022-12-06 11:34:07.290303 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-06 11:36:10.790607 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-06 11:37:05.980309 + : Android61975304||pb-IF4xU2waHw==|| joined server -2022-12-06 11:37:39.087146 + : WideEyedB2||pb-IF42UnAsNQ==|| joined server -2022-12-06 11:38:11.196431 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-06 11:38:23.463209 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-06 11:39:39.757804 + : mBAROT||pb-LV4FBBRcUBESWV4RFBVUV1NBRA==|| joined server -2022-12-06 11:42:08.277947 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-06 11:46:32.377142 + : Android59873080||pb-IF41UlkcIA==|| joined server -2022-12-06 11:46:53.464902 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-06 11:46:56.472750 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-06 11:47:06.499390 + : TremendousCreek8||pb-IF4vUxkKDg==|| joined server -2022-12-06 11:49:59.166904 + : Android59873080||pb-IF41UlkcIA==|| joined server -2022-12-06 11:50:22.243850 + : ImportantYeoman99681||pb-IF4sU2I5JA==|| joined server -2022-12-06 11:51:07.399317 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-06 11:51:12.414895 + : ImportantYeoman99681||pb-IF4sU2I5JA==|| joined server -2022-12-06 11:51:31.477179 + : Android62113852||pb-IF5UU3AyNw==|| joined server -2022-12-06 11:54:06.044508 + : Android63997645||pb-IF4zU1BSBw==|| joined server -2022-12-06 11:54:47.187605 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-06 11:55:16.286134 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-06 11:55:51.425191 + : Android63945820||pb-IF4MU04MMg==|| joined server -2022-12-06 11:56:19.546751 + : RohanK||pb-IF4dCnou|| joined server -2022-12-06 11:56:53.645887 + : NeedlessMonkey47856||pb-IF4OVGhcIw==|| joined server -2022-12-06 11:57:41.817124 + : HumblerMare46||pb-IF5VU0dfJg==|| joined server -2022-12-06 11:58:03.913604 + : Trushank||pb-IF4zU08lLA==|| joined server -2022-12-06 11:58:34.032747 + : NarrativePulp7||pb-IF4LVGQoMg==|| joined server -2022-12-06 11:59:21.197171 + : Abbuabbuaa||pb-IF42U3ciNQ==|| joined server -2022-12-06 11:59:27.218040 + : Android63728390||pb-IF4HU0gSFw==|| joined server -2022-12-06 11:59:58.331930 + : Android59978471||pb-IF4dUloABA==|| joined server -2022-12-06 12:00:26.444341 + : lkiheasnal||pb-IF4cU0oEDg==|| joined server -2022-12-06 12:00:47.505471 + : SectarianPioneer25||pb-IF4KU3JdDA==|| joined server -2022-12-06 12:01:41.685325 + : NoName54913f||pb-IF4oElIy|| joined server -2022-12-06 12:02:14.810651 + : MadBOY5523||pb-LV4FUkUPAxNEVV8RRk5WBVVEEA==|| joined server -2022-12-06 12:04:00.137190 + : MrDevil||pb-IF4hBFgH|| joined server -2022-12-06 12:04:56.300848 + : itsjustine15||pb-IF5XU08jLA==|| joined server -2022-12-06 12:05:49.477098 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-06 12:07:38.854252 + : Android54534556||pb-IF4tUhgtAA==|| joined server -2022-12-06 12:09:33.235782 + : Android60672288||pb-IF4eU3UODA==|| joined server -2022-12-06 12:10:25.422203 + : RohanK||pb-IF4dCnou|| joined server -2022-12-06 12:11:23.619872 + : Android63728390||pb-IF4HU0gSFw==|| joined server -2022-12-06 12:11:34.656344 + : Android63902876||pb-IF4DU00TEw==|| joined server -2022-12-06 12:11:39.667783 + : GrandTorna||pb-IF4GV2YFJA==|| joined server -2022-12-06 12:11:43.681442 + : Android63997986||pb-IF4JU08ZAw==|| joined server -2022-12-06 12:11:51.704284 + : Vivekdestr||pb-IF5QVXYYJA==|| joined server -2022-12-06 12:11:54.719115 + : ItzCOSMOS2023||pb-IF4PUhEcUQ==|| joined server -2022-12-06 12:13:12.993604 + : ManiacalCo||pb-IF4NU04KDw==|| joined server -2022-12-06 12:13:22.030510 + : GreyAardva||pb-IF4SU3UIAQ==|| joined server -2022-12-06 12:14:00.323145 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-06 12:14:03.339935 + : HAWKI55||pb-IF4lVU9bEA==|| joined server -2022-12-06 12:14:15.392095 + : Android62325956||pb-IF4FU3ADMQ==|| joined server -2022-12-06 12:14:34.486201 + : sonugavale||pb-IF40VG4yUA==|| joined server -2022-12-06 12:14:59.589272 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-06 12:16:21.900563 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-06 12:16:29.933935 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-06 12:17:59.233807 + : sonugavale||pb-IF40VG4yUA==|| joined server -2022-12-06 12:18:11.280937 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2022-12-06 12:19:02.630355 + : Unenlight4||pb-IF4FU3NcFw==|| joined server -2022-12-06 12:19:56.015497 + : MuddyJoker||pb-IF4SF0Em|| joined server -2022-12-06 12:20:12.085017 + : PuzzledSol||pb-IF4TV0wvVQ==|| joined server -2022-12-06 12:20:17.104093 + : PseudoAttendance18||pb-IF4VVWsGIA==|| joined server -2022-12-06 12:21:54.474977 + : Navestien6||pb-IF40UkQYJg==|| joined server -2022-12-06 12:24:24.353259 + : Preventab2||pb-IF4hU0oSFw==|| joined server -2022-12-06 12:25:00.500841 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-06 12:26:03.697235 + : ChargingBe||pb-IF49UnYRLQ==|| joined server -2022-12-06 12:27:38.019213 + : harshadkarale007||pb-IF4BU0wpDw==|| joined server -2022-12-06 12:28:13.157441 + : Android55601587||pb-IF4SUhJZPw==|| joined server -2022-12-06 12:29:01.337034 + : MrDevil||pb-IF4hBFgH|| joined server -2022-12-06 12:29:29.406941 + : TastelessSystem38||pb-IF4XU3YGFg==|| joined server -2022-12-06 12:31:13.817148 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-06 12:31:36.884111 + : Android62576681||pb-IF4RU3QoXQ==|| joined server -2022-12-06 12:32:16.046135 + : SiriusSam15||pb-IF43UlccEQ==|| joined server -2022-12-06 12:33:08.221903 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-06 12:33:35.322097 + : anuragkareliya123||pb-IF4IV08vJw==|| joined server -2022-12-06 12:33:58.528340 + : quicksnipe||pb-IF4qUxYvIA==|| joined server -2022-12-06 12:34:11.567915 + : Pavan||pb-IF4AU3hZPA==|| joined server -2022-12-06 12:34:32.650992 + : ahamadakthus||pb-IF5TE2M5|| joined server -2022-12-06 12:34:35.654093 + : ColonialGrammar61||pb-IF4NU0wOXQ==|| joined server -2022-12-06 12:34:43.678781 + : ZADKIEL||pb-IF4wU00DEA==|| joined server -2022-12-06 12:35:07.771751 + : FictionalH||pb-IF4nU0scDQ==|| joined server -2022-12-06 12:36:21.031508 + : Android63838539||pb-IF4mU0sMUQ==|| joined server -2022-12-06 12:38:36.594009 + : VagueInfus||pb-IF40U00CCg==|| joined server -2022-12-06 12:38:50.640685 + : Sabarishku||pb-IF4hU2oFDg==|| joined server -2022-12-06 12:40:12.909057 + : LargeTornado46516||pb-IF5QU3oCEg==|| joined server -2022-12-06 12:40:28.965997 + : LargeTornado46516||pb-IF5QU3oCEg==|| joined server -2022-12-06 12:40:35.990197 + : UselessGuy||pb-IF4sUhk4JA==|| joined server -2022-12-06 12:41:11.100292 + : SillyMembrane32||pb-IF4AU04IHQ==|| joined server -2022-12-06 12:42:36.392104 + : AssasiN4116||pb-IF5WU0saBg==|| joined server -2022-12-06 12:43:50.637773 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-06 12:44:06.696373 + : Android63770342||pb-IF4rU0o9KQ==|| joined server -2022-12-06 12:44:11.716807 + : Android63998324||pb-IF40U08YKg==|| joined server -2022-12-06 12:44:35.942722 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-06 12:45:47.173559 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-06 12:45:57.205280 + : FutileBeef19||pb-IF4JVVMgDA==|| joined server -2022-12-06 12:46:46.394323 + : HerbalPopulation30||pb-IF4eU086Dw==|| joined server -2022-12-06 12:46:50.409297 + : Android63770342||pb-IF4rU0o9KQ==|| joined server -2022-12-06 12:47:03.457439 + : Rajjadhav9||pb-IF41U0Y5PA==|| joined server -2022-12-06 12:47:50.603907 + : LogicalDuck1803||pb-IF4lVG8eBA==|| joined server -2022-12-06 12:48:01.656400 + : Android63061128||pb-IF5VU0EjVw==|| joined server -2022-12-06 12:48:31.771017 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-06 12:48:33.777609 + : LEGIONDIVI||pb-IF4BEW0D|| joined server -2022-12-06 12:48:47.827983 + : Strangest8||pb-IF5QU0wNJg==|| joined server -2022-12-06 12:48:57.868997 + : Android63770342||pb-IF4rU0o9KQ==|| joined server -2022-12-06 12:49:06.915373 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-06 12:50:01.104517 + : Android63770342||pb-IF4rU0o9KQ==|| joined server -2022-12-06 12:50:31.227272 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 12:50:40.272296 + : Preventab2||pb-IF4hU0oSFw==|| joined server -2022-12-06 12:51:14.399123 + : ExogenousBudget8||pb-IF4AVHQ9NQ==|| joined server -2022-12-06 12:51:46.753458 + : FutileBeef19||pb-IF4JVVMgDA==|| joined server -2022-12-06 12:51:55.787072 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-06 12:52:10.840551 + : SillyMembrane32||pb-IF4AU04IHQ==|| joined server -2022-12-06 12:53:48.165280 + : FuschiaChicken22885||pb-IF4tV0YpCg==|| joined server -2022-12-06 12:54:21.271260 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-06 12:57:31.904549 + : Rajjadhav9||pb-IF41U0Y5PA==|| joined server -2022-12-06 12:57:45.953823 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-06 12:58:18.070441 + : Shlash7561||pb-IF4RA2I6|| joined server -2022-12-06 12:58:50.462640 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-06 12:58:54.482964 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-06 12:58:56.496167 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-06 12:59:59.710166 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 13:00:02.725302 + : GoodlyTran||pb-IF4CVW07PA==|| joined server -2022-12-06 13:00:07.752614 + : UnbornObse||pb-IF4LU3IhCg==|| joined server -2022-12-06 13:01:41.311803 + : NovelTrousers35||pb-IF40U04tFw==|| joined server -2022-12-06 13:01:47.386162 + : GoodlyTran||pb-IF4CVW07PA==|| joined server -2022-12-06 13:01:51.391553 + : Godfreykin||pb-IF4FU08hMw==|| joined server -2022-12-06 13:02:02.444178 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-06 13:03:20.698597 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-06 13:03:44.789281 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 13:04:01.845213 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-06 13:04:14.898142 + : Shlash7561||pb-IF4RA2I6|| joined server -2022-12-06 13:05:05.294785 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 13:06:22.555824 + : SheikRieng||pb-IF4rU1BdLw==|| joined server -2022-12-06 13:06:38.621698 + : OverallIncarnation20||pb-IF4gUnIzIg==|| joined server -2022-12-06 13:06:43.638231 + : MRKHINDIGA||pb-IF4OU04GBg==|| joined server -2022-12-06 13:06:57.676162 + : DaveGamer6||pb-IF4oVRIALg==|| joined server -2022-12-06 13:07:01.681300 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-06 13:07:04.683026 + : TFFE2022||pb-IF4sUnYKXA==|| joined server -2022-12-06 13:07:24.752227 + : MuddyJoker||pb-IF4SF0Em|| joined server -2022-12-06 13:09:39.560124 + : MRKHINDIGA||pb-IF4OU04GBg==|| joined server -2022-12-06 13:09:43.576150 + : UselessGuy||pb-IF4sUhk4JA==|| joined server -2022-12-06 13:09:55.631862 + : RegretfulFighter7831||pb-IF4oU20bJA==|| joined server -2022-12-06 13:10:06.677354 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-06 13:11:06.922145 + : GraveHour26||pb-IF48VWESLA==|| joined server -2022-12-06 13:11:28.000931 + : FervidPlur||pb-IF4-UxI7Mg==|| joined server -2022-12-06 13:12:14.176860 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-06 13:12:30.218455 + : FamedHair40||pb-IF4AU2czAQ==|| joined server -2022-12-06 13:12:32.225583 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-06 13:13:01.343957 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-06 13:14:52.725679 + : FasterTuba34||pb-IF4MU04CDQ==|| joined server -2022-12-06 13:15:53.967126 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-06 13:16:01.983429 + : lkiheasnal||pb-IF4cU0oEDg==|| joined server -2022-12-06 13:16:10.005159 + : kumargchethan56||pb-IF4FU28fVg==|| joined server -2022-12-06 13:17:01.210161 + : Android63997996||pb-IF4KU1A7PQ==|| joined server -2022-12-06 13:17:23.264031 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-06 13:17:58.385344 + : gameryasar93||pb-IF4dU3QbHw==|| joined server -2022-12-06 13:18:46.534981 + : Imaginabl8||pb-IF4NVWQzBg==|| joined server -2022-12-06 13:19:07.608464 + : Android63993006||pb-IF4SU1BbHw==|| joined server -2022-12-06 13:19:28.683735 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-06 13:19:33.689851 + : EightyHear||pb-IF4SU1BdKg==|| joined server -2022-12-06 13:21:43.127479 + : Vanquishe9||pb-IF4VUGpe|| joined server -2022-12-06 13:22:32.296575 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-06 13:22:36.313064 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-06 13:23:17.451580 + : Android63888799||pb-IF4oU004KQ==|| joined server -2022-12-06 13:24:01.631815 + : NoName44250c||pb-IF49U0oCKQ==|| joined server -2022-12-06 13:24:36.748992 + : Android51835869||pb-IF41VUgdEw==|| joined server -2022-12-06 13:25:18.864798 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-06 13:25:48.973212 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 13:25:58.998025 + : VishalDorl||pb-IF4CLUED|| joined server -2022-12-06 13:26:27.104018 + : HookedMedusa32||pb-IF4NU0sTNQ==|| joined server -2022-12-06 13:27:17.321088 + : OutrightPeriphery10||pb-IF4HVFFTUg==|| joined server -2022-12-06 13:27:47.442443 + : SUSMITH200||pb-IF4BVUYgMQ==|| joined server -2022-12-06 13:27:51.455469 + : investiga2||pb-IF5SU1E4Fg==|| joined server -2022-12-06 13:28:10.513819 + : parzivl2071||pb-IF5WU0UEUw==|| joined server -2022-12-06 13:29:47.870060 + : Android63823661||pb-IF4oU0oSHw==|| joined server -2022-12-06 13:30:11.932320 + : Conformab8||pb-IF4rUkFSLw==|| joined server -2022-12-06 13:30:38.040094 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-06 13:30:47.073173 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-06 13:31:02.124320 + : LogicalDuck1803||pb-IF4lVG8eBA==|| joined server -2022-12-06 13:31:50.305011 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-06 13:32:46.483376 + : PC772976||pb-IF4xU04OMg==|| joined server -2022-12-06 13:32:52.503151 + : BushyInstr||pb-IF4WU0QRIA==|| joined server -2022-12-06 13:33:24.599233 + : BushyInstr||pb-IF4WU0QRIA==|| joined server -2022-12-06 13:33:36.657296 + : Inadvisab7||pb-IF4JU08BXQ==|| joined server -2022-12-06 13:33:40.674527 + : Devil77181908||pb-IF4dUFk_|| joined server -2022-12-06 13:33:46.690967 + : hck3rr||pb-IF4UU3FYVg==|| joined server -2022-12-06 13:33:59.733412 + : MRKHINDIGA||pb-IF4OU04GBg==|| joined server -2022-12-06 13:34:23.934911 + : UniversalC||pb-IF5dUhkxHw==|| joined server -2022-12-06 13:35:29.235438 + : hck3rr||pb-IF4UU3FYVg==|| joined server -2022-12-06 13:37:34.670058 + : EdwinSajiJ||pb-IF4JU0U_Ug==|| joined server -2022-12-06 13:37:48.722083 + : SUSMITH200||pb-IF4BVUYgMQ==|| joined server -2022-12-06 13:37:55.755666 + : Android61269388||pb-IF4uU2UqLQ==|| joined server -2022-12-06 13:38:06.003043 + : ImplicitWa||pb-IF4xU3EoKg==|| joined server -2022-12-06 13:38:39.094385 + : DireImpetus33||pb-IF4hU25cAg==|| joined server -2022-12-06 13:38:41.099330 + : EdwinSajiJ||pb-IF4JU0U_Ug==|| joined server -2022-12-06 13:39:59.635722 + : EditorialU||pb-IF5RUkgSAQ==|| joined server -2022-12-06 13:40:35.762777 + : HatefulAnnoyance26||pb-IF4PUkogDg==|| joined server -2022-12-06 13:41:05.893511 + : Android63870775||pb-IF5WU04bVw==|| joined server -2022-12-06 13:41:48.043492 + : Android63415043||pb-IF4eU0MjFw==|| joined server -2022-12-06 13:43:49.639529 + : MenialValidation36||pb-IF4NU0s9Ig==|| joined server -2022-12-06 13:44:04.688155 + : DiffidentHoplite31||pb-IF4sU0wcBA==|| joined server -2022-12-06 13:44:33.797174 + : HipRooster87595||pb-IF4MVXQdNw==|| joined server -2022-12-06 13:44:59.896119 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-06 13:45:29.000970 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-06 13:45:40.020155 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-06 13:46:00.076511 + : MRKHINDIGA||pb-IF4OU04GBg==|| joined server -2022-12-06 13:46:06.096909 + : BrazenCoast73326||pb-IF4vVWoPHQ==|| joined server -2022-12-06 13:47:16.348132 + : DiffidentHoplite31||pb-IF4sU0wcBA==|| joined server -2022-12-06 13:47:30.404792 + : Phalgun~||pb-LV4FBUYOVRRBCl4UEkVRB1EWGA==|| joined server -2022-12-06 13:47:57.510170 + : DiffidentHoplite31||pb-IF4sU0wcBA==|| joined server -2022-12-06 13:48:53.743927 + : PlaidSkipper56572||pb-IF4eVXJZXQ==|| joined server -2022-12-06 13:49:23.848028 + : shagun2611||pb-IF4IVGUqDA==|| joined server -2022-12-06 13:51:09.222439 + : Android63571326||pb-IF5UU0cuMw==|| joined server -2022-12-06 13:51:29.657689 + : MunificientRoad23||pb-IF41U3U4MQ==|| joined server -2022-12-06 13:51:44.719396 + : FluffyPres||pb-IF4sU08vCQ==|| joined server -2022-12-06 13:52:43.946586 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-06 13:52:48.957954 + : ScreechingOoze8069||pb-JiNJARFeUkdDX1tHEkVTVlFDFUlXRllG|| joined server -2022-12-06 13:52:58.984014 + : indiankingsman11||pb-IF40U0gqUw==|| joined server -2022-12-06 13:53:31.103895 + : TipTopCommander1918||pb-IF4uU3YEVA==|| joined server -2022-12-06 13:54:26.560894 + : kingofdragonwar10||pb-IF5WU3YtDg==|| joined server -2022-12-06 13:54:28.569990 + : LunaticDynamo4823||pb-JiNJARFcUUpFW1pJEEJYXVFEGUBdQVdD|| joined server -2022-12-06 13:54:52.654815 + : PoserSword||pb-IF4FHxgY|| joined server -2022-12-06 13:55:34.201248 + : captshivi||pb-IF4tCRgv|| joined server -2022-12-06 13:55:50.250075 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-06 13:56:00.272738 + : GinormousD||pb-IF4eU2VTAg==|| joined server -2022-12-06 13:56:09.284678 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-06 13:56:18.316832 + : GinormousD||pb-IF4eU2VTAg==|| joined server -2022-12-06 13:57:00.425307 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-06 13:57:20.502470 + : Android57703578||pb-IF43UkIeEA==|| joined server -2022-12-06 13:57:28.512548 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-06 13:57:44.558866 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-06 13:58:47.101923 + : DescriptiveBind19||pb-IF4HU00IVQ==|| joined server -2022-12-06 14:00:05.380459 + : Preventab2||pb-IF4hU0oSFw==|| joined server -2022-12-06 14:00:35.493122 + : ArcticStatus25||pb-IF4-U0heCw==|| joined server -2022-12-06 14:01:05.606448 + : 9584555539||pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB|| joined server -2022-12-06 14:02:40.967494 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-06 14:02:51.005085 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-06 14:04:13.296946 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 14:06:19.719667 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-06 14:06:35.779994 + : 9584555539||pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB|| joined server -2022-12-06 14:07:13.918320 + : Android63669053||pb-IF4lU0c9Hw==|| joined server -2022-12-06 14:07:20.933038 + : TOFFE2022||pb-IF4sUnYKXA==|| joined server -2022-12-06 14:07:22.944122 + : PredictiveCucumber38||pb-IF4wU0RfVQ==|| joined server -2022-12-06 14:08:27.191446 + : hck3rr||pb-IF4UU3FYVg==|| joined server -2022-12-06 14:09:30.754877 + : ReptilianL||pb-IF4yVWg9Jw==|| joined server -2022-12-06 14:09:51.867711 + : Irascible6||pb-IF4LU005HA==|| joined server -2022-12-06 14:09:54.884485 + : Android63998956||pb-IF4pU1A-IQ==|| joined server -2022-12-06 14:10:13.953084 + : ChargingBe||pb-IF49UnYRLQ==|| joined server -2022-12-06 14:11:24.167086 + : PrimitiveCoercion25||pb-IF4qU3BcNw==|| joined server -2022-12-06 14:11:41.215273 + : PC601332||pb-IF4dU3dZHw==|| joined server -2022-12-06 14:12:08.328958 + : GoodlyTran||pb-IF4CVW07PA==|| joined server -2022-12-06 14:12:12.344270 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-06 14:13:12.947504 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-06 14:13:36.021219 + : IpnRagul752||pb-IF4iVWQ_Bg==|| joined server -2022-12-06 14:15:07.353690 + : RichLegacy||pb-IF5TU24NKA==|| joined server -2022-12-06 14:15:31.128993 + : indiankingsman11||pb-IF40U0gqUw==|| joined server -2022-12-06 14:17:06.462871 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-06 14:17:30.568002 + : EliteWallaby35692||pb-IF4gV1gCMQ==|| joined server -2022-12-06 14:17:32.577798 + : RabidFight||pb-IF5RU3UzJA==|| joined server -2022-12-06 14:18:40.799528 + : TrivialNeighbor48||pb-IF4CU0gAMg==|| joined server -2022-12-06 14:19:45.048258 + : nehelspm||pb-IF4jVRMmUQ==|| joined server -2022-12-06 14:21:01.350173 + : 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰||pb-IF5WVG4yCA==|| joined server -2022-12-06 14:22:10.561098 + : HonorableEttin404||pb-IF4eU004Ew==|| joined server -2022-12-06 14:22:25.604184 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-06 14:22:34.797772 + : sds420s||pb-IF41UlAhCA==|| joined server -2022-12-06 14:25:07.476219 + : ColTPaV||pb-IF4BUxlSNg==|| joined server -2022-12-06 14:25:25.547096 + : ahamadakthus||pb-IF5TE2M5|| joined server -2022-12-06 14:25:27.557643 + : HonorableEttin404||pb-IF4eU004Ew==|| joined server -2022-12-06 14:25:50.646488 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 14:26:22.741965 + : Android63906743||pb-IF5dU08yUw==|| joined server -2022-12-06 14:26:40.812327 + : SharpEnemy92311||pb-IF4zU2MgJw==|| joined server -2022-12-06 14:26:57.870243 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 14:27:08.911448 + : newnoobgamingtamil||pb-IF4hU0ooFw==|| joined server -2022-12-06 14:28:46.233544 + : InteriorDu||pb-IF4lUhECIQ==|| joined server -2022-12-06 14:29:09.324387 + : Anaerobic2||pb-IF4sVWoIIw==|| joined server -2022-12-06 14:29:19.348042 + : AffectiveH||pb-IF5QU2hSFw==|| joined server -2022-12-06 14:29:21.352768 + : CulturalJa||pb-IF4pUxUDDQ==|| joined server -2022-12-06 14:29:36.399607 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 14:30:30.578501 + : HonorableEttin404||pb-IF4eU004Ew==|| joined server -2022-12-06 14:30:35.597401 + : GraveHour26||pb-IF48VWESLA==|| joined server -2022-12-06 14:31:15.092100 + : kalyan143gameing||pb-IF4dUxkIUg==|| joined server -2022-12-06 14:31:18.096980 + : GraveHour26||pb-IF48VWESLA==|| joined server -2022-12-06 14:31:53.208103 + : Android48755222||pb-IF5QU08FPA==|| joined server -2022-12-06 14:33:42.047092 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 14:34:39.240852 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-06 14:35:14.356740 + : haotruong1||pb-IF4dU08xBg==|| joined server -2022-12-06 14:35:51.472220 + : CoastalToad55268||pb-IF4BVWIzDg==|| joined server -2022-12-06 14:35:54.481165 + : ImplicitWa||pb-IF4xU3EoKg==|| joined server -2022-12-06 14:36:08.527489 + : LargeTornado46516||pb-IF5QU3oCEg==|| joined server -2022-12-06 14:36:18.574002 + : LargeTornado46516||pb-IF5QU3oCEg==|| joined server -2022-12-06 14:36:31.616851 + : NoName56287c||pb-IF42U08YIg==|| joined server -2022-12-06 14:37:16.761107 + : SeriousEle||pb-IF43VWMNFw==|| joined server -2022-12-06 14:37:38.867790 + : ChangeableEagle25||pb-IF4HVVgjUA==|| joined server -2022-12-06 14:38:02.959447 + : djankit857||pb-IF4iVFBbDA==|| joined server -2022-12-06 14:38:06.972713 + : MRKHINDIGA||pb-IF4OU04GBg==|| joined server -2022-12-06 14:38:11.983641 + : 𝙷𝙰Ɽ𝚂𝙷v͠𝙴Ɽ𝙼𝙰||pb-IF5WVG4yCA==|| joined server -2022-12-06 14:39:19.192674 + : Intermed12||pb-IF41U08-Eg==|| joined server -2022-12-06 14:39:26.214382 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-06 14:39:47.273080 + : GoodlyTran||pb-IF4CVW07PA==|| joined server -2022-12-06 14:39:54.290682 + : sds420s||pb-IF41UlAhCA==|| joined server -2022-12-06 14:40:01.314957 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-06 14:40:17.366372 + : MRKHINDIGA||pb-IF4OU04GBg==|| joined server -2022-12-06 14:41:39.650351 + : Torrenti16||pb-IF4RU0ksMQ==|| joined server -2022-12-06 14:43:08.983689 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-06 14:44:41.324720 + : Raghav2655||pb-IF4cU2UJCA==|| joined server -2022-12-06 14:45:30.490808 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-06 14:45:44.542100 + : BestAdmire||pb-IF5cUkoGBA==|| joined server -2022-12-06 14:46:03.602580 + : DrierAcqui||pb-IF4AU2seNQ==|| joined server -2022-12-06 14:46:26.684026 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-06 14:46:34.713805 + : SweetestFirm23||pb-IF4FUxcfDw==|| joined server -2022-12-06 14:47:16.846684 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-06 14:47:52.986140 + : StoneGroce||pb-IF41V1oeMg==|| joined server -2022-12-06 14:49:11.210247 + : GoodlyTran||pb-IF4CVW07PA==|| joined server -2022-12-06 14:49:34.287095 + : ArguableDisregard12||pb-IF4nU0MaVw==|| joined server -2022-12-06 14:49:51.352944 + : PotentReco||pb-IF4sU0cpKQ==|| joined server -2022-12-06 14:51:00.612040 + : Phalgun~||pb-LV4FBUYOVRRBCl4UEkVRB1EWGA==|| joined server -2022-12-06 14:52:32.938816 + : VROPPRO||pb-IF4dU20FHA==|| joined server -2022-12-06 14:52:37.961582 + : DefiantFro||pb-IF4mU2gMJg==|| joined server -2022-12-06 14:52:45.992923 + : Android63948779||pb-IF4RU08gKg==|| joined server -2022-12-06 14:53:03.068766 + : OddScimita||pb-IF4SV2xaJA==|| joined server -2022-12-06 14:53:16.098493 + : Android49994032||pb-IF5cVXcFXQ==|| joined server -2022-12-06 14:55:16.521075 + : Tejaswalkoli2411||pb-IF41VWEHFA==|| joined server -2022-12-06 14:55:32.573220 + : Android62603660||pb-IF43U3QvVg==|| joined server -2022-12-06 14:55:46.623848 + : Android63948779||pb-IF4RU08gKg==|| joined server -2022-12-06 14:56:09.706351 + : VROPPRO||pb-IF4dU20FHA==|| joined server -2022-12-06 14:56:37.784298 + : bisht4189||pb-IF4SEHAl|| joined server -2022-12-06 14:56:40.797209 + : NicerChant21||pb-IF4KU3ktMQ==|| joined server -2022-12-06 14:57:01.858386 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-06 14:57:52.023841 + : Victorio13||pb-IF4rEGIK|| joined server -2022-12-06 14:59:11.280646 + : Karthick||pb-IF4PVE4cMg==|| joined server -2022-12-06 15:00:10.477140 + : DARKsoulNiNJA01||pb-IF5dU0suLg==|| joined server -2022-12-06 15:00:18.500760 + : Android63353151||pb-IF5WU0RSKw==|| joined server -2022-12-06 15:00:25.523736 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-06 15:00:45.575105 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-06 15:01:42.779675 + : ROLEXsir1111||pb-IF4RU24pIA==|| joined server -2022-12-06 15:02:01.844826 + : SeverestAp||pb-IF4jU0JaNg==|| joined server -2022-12-06 15:03:24.137416 + : DeepEnthusiasm48||pb-IF42U2cHJA==|| joined server -2022-12-06 15:03:26.144380 + : SeverestAp||pb-IF4jU0JaNg==|| joined server -2022-12-06 15:03:54.246390 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-06 15:04:06.293701 + : LogicalDuck1803||pb-IF4lVG8eBA==|| joined server -2022-12-06 15:05:40.606223 + : JealousCry||pb-IF4xV2oPHA==|| joined server -2022-12-06 15:05:57.670239 + : HourlyTreaty30||pb-IF4WU04ENQ==|| joined server -2022-12-06 15:07:07.927113 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-06 15:07:41.041789 + : BrassDoctor94896||pb-IF4FU0wyXQ==|| joined server -2022-12-06 15:07:56.082761 + : NoName44250c||pb-IF49U0oCKQ==|| joined server -2022-12-06 15:08:52.266405 + : SilverDearth2041||pb-IF4CVUsiNA==|| joined server -2022-12-06 15:08:55.279112 + : atharv1326||pb-IF4vU2sIMg==|| joined server -2022-12-06 15:09:34.445940 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-06 15:10:16.613278 + : Android62190140||pb-IF4lU00PEA==|| joined server -2022-12-06 15:10:20.628972 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-06 15:11:08.814857 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-06 15:11:12.830945 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-06 15:11:34.907427 + : SeverestAp||pb-IF4jU0JaNg==|| joined server -2022-12-06 15:11:37.915714 + : WeakerResonance54||pb-IF4AU0IoCA==|| joined server -2022-12-06 15:13:35.338339 + : Android63983683||pb-IF42U08yFw==|| joined server -2022-12-06 15:14:37.578165 + : SeverestAp||pb-IF4jU0JaNg==|| joined server -2022-12-06 15:15:37.800583 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-06 15:16:31.031085 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-06 15:16:45.080806 + : Vishnuly||pb-IF5QVGZdEA==|| joined server -2022-12-06 15:17:55.343947 + : PineRingBe||pb-IF4WU1AvJw==|| joined server -2022-12-06 15:18:08.394701 + : Android47387591||pb-IF4GVWVYIA==|| joined server -2022-12-06 15:18:28.467924 + : AgreedMono||pb-IF4mUlEICw==|| joined server -2022-12-06 15:19:00.561479 + : Android63948779||pb-IF4RU08gKg==|| joined server -2022-12-06 15:19:45.717107 + : sOFF1C1AL||pb-IF5VU0cyFg==|| joined server -2022-12-06 15:19:51.740272 + : Keval1305||pb-IF4VVXAqNQ==|| joined server -2022-12-06 15:20:02.770607 + : TejGamerNt||pb-IF4oUxAGPQ==|| joined server -2022-12-06 15:20:05.776402 + : Godfther1||pb-JiNJARFZUEFBXlpFGERQUFdDFkNXRFFF|| joined server -2022-12-06 15:20:54.951238 + : NoName44250c||pb-IF49U0oCKQ==|| joined server -2022-12-06 15:21:12.010932 + : MPF||pb-IF4rLkwp|| joined server -2022-12-06 15:21:19.045556 + : Dharsanaswin||pb-IF4UUmZcEA==|| joined server -2022-12-06 15:21:22.052231 + : Android63964858||pb-IF4hU04sMQ==|| joined server -2022-12-06 15:21:43.111356 + : Android62190140||pb-IF4lU00PEA==|| joined server -2022-12-06 15:22:15.236932 + : RoutineAuthorship51||pb-IF5VU3oeKQ==|| joined server -2022-12-06 15:23:35.528981 + : DisreputableExport28||pb-IF43U3YTJw==|| joined server -2022-12-06 15:23:44.554967 + : NOORULAMEENAK57THALA||pb-IF4cVEsJAg==|| joined server -2022-12-06 15:23:51.574150 + : Recumbent2||pb-IF4VVWc4Eg==|| joined server -2022-12-06 15:24:10.636517 + : sunilu338||pb-IF4tUmo9VQ==|| joined server -2022-12-06 15:24:24.670196 + : Android63983683||pb-IF42U08yFw==|| joined server -2022-12-06 15:24:47.746389 + : ExposedEditorial36||pb-IF4AU0slNQ==|| joined server -2022-12-06 15:24:53.775204 + : sunilu338||pb-IF4tUmo9VQ==|| joined server -2022-12-06 15:25:00.864784 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-06 15:25:08.888532 + : VenousJack||pb-IF4LU04tIw==|| joined server -2022-12-06 15:26:32.228934 + : Android48419571||pb-IF4mVWsmJA==|| joined server -2022-12-06 15:26:33.231452 + : StingingSq||pb-IF4HU0xcPA==|| joined server -2022-12-06 15:26:35.237233 + : HourlyTreaty30||pb-IF4WU04ENQ==|| joined server -2022-12-06 15:26:41.262318 + : RustyJayha||pb-IF4-U1BaKw==|| joined server -2022-12-06 15:27:42.479118 + : Keval1305||pb-IF4VVXAqNQ==|| joined server -2022-12-06 15:28:05.565087 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-06 15:29:34.890159 + : Android62985132||pb-IF4RU3gIUw==|| joined server -2022-12-06 15:29:51.955288 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-06 15:30:24.067560 + : Whimsical8||pb-IF4QUlgKAA==|| joined server -2022-12-06 15:30:49.138175 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-06 15:30:49.138487 + : DerisiveBr||pb-IF5XU2QgJw==|| joined server -2022-12-06 15:32:22.476634 + : Android63680318||pb-IF4jU0hTBg==|| joined server -2022-12-06 15:33:32.741743 + : Android63990451||pb-IF4hU04fVg==|| joined server -2022-12-06 15:34:30.951752 + : MysteriousVehicle16||pb-IF4FVFUxVw==|| joined server -2022-12-06 15:34:57.047098 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-06 15:35:19.112716 + : Android63692742||pb-IF5WU0kZJw==|| joined server -2022-12-06 15:35:28.139087 + : Torrenti16||pb-IF4RU0ksMQ==|| joined server -2022-12-06 15:35:33.153056 + : Torrenti16||pb-IF4RU0ksMQ==|| joined server -2022-12-06 15:35:57.235725 + : DARKsoulNiNJA01||pb-IF5dU0suLg==|| joined server -2022-12-06 15:36:38.413169 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-06 15:37:03.506327 + : Northwes16||pb-IF4-UhkEAA==|| joined server -2022-12-06 15:37:18.578690 + : amanpro1||pb-IF4qU2gzMA==|| joined server -2022-12-06 15:37:26.615143 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-06 15:37:26.615728 + : Profliga11||pb-IF4TUxAGNw==|| joined server -2022-12-06 15:38:07.755345 + : hulk151120||pb-IF4RVRETAg==|| joined server -2022-12-06 15:38:20.805456 + : MainstreamContrast42||pb-IF4vU0skLw==|| joined server -2022-12-06 15:39:57.122021 + : BushyInstr||pb-IF4WU0QRIA==|| joined server -2022-12-06 15:40:06.139848 + : Conformab8||pb-IF4rUkFSLw==|| joined server -2022-12-06 15:40:10.155256 + : NOORULAMEENAK57THALA||pb-IF4cVEsJAg==|| joined server -2022-12-06 15:41:01.359792 + : VvFightVv||pb-IF4xU0o7Ug==|| joined server -2022-12-06 15:41:03.359220 + : ElectiveEa||pb-IF5XU00EDA==|| joined server -2022-12-06 15:41:10.379219 + : MassiveCough58||pb-IF4-U0soEg==|| joined server -2022-12-06 15:41:12.387079 + : NoName44250c||pb-IF49U0oCKQ==|| joined server -2022-12-06 15:42:21.640094 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-06 15:42:36.692493 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-06 15:43:07.819266 + : Android62953595||pb-IF5SU3kADA==|| joined server -2022-12-06 15:44:09.042546 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-06 15:44:23.084188 + : lkiheasnal||pb-IF4cU0oEDg==|| joined server -2022-12-06 15:44:32.114539 + : FoolhardyLizard21681||pb-IF4BUxUTFA==|| joined server -2022-12-06 15:44:40.127205 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-06 15:46:35.559542 + : RustyUnicorn27009||pb-IF42U0kbEg==|| joined server -2022-12-06 15:47:35.756303 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-06 15:48:13.878026 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-06 15:48:19.898106 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-06 15:49:03.051227 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-06 15:49:35.155785 + : AdvancedExpomnent45m||pb-IF4JU3MxCQ==|| joined server -2022-12-06 15:51:35.563245 + : CumbersomeMeadow46||pb-IF4gU0QnEQ==|| joined server -2022-12-06 15:52:18.726720 + : SerratedSt||pb-IF4hUk0xNg==|| joined server -2022-12-06 15:53:14.900243 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-06 15:54:32.178116 + : Android62211118||pb-IF4HU28eKA==|| joined server -2022-12-06 15:54:47.230183 + : Android63334530||pb-IF4OU0JcNw==|| joined server -2022-12-06 15:55:13.300242 + : Android54396539||pb-IF4GUhcxHA==|| joined server -2022-12-06 15:58:22.952433 + : BrickJeste||pb-IF4GU05ZKQ==|| joined server -2022-12-06 15:58:58.114005 + : Android63923401||pb-IF4TU04tXA==|| joined server -2022-12-06 15:59:25.235798 + : LiteralFlu||pb-IF4lU1BdIw==|| joined server -2022-12-06 16:00:43.523726 + : Android63334530||pb-IF4OU0JcNw==|| joined server -2022-12-06 16:01:29.697933 + : Android62079867||pb-IF4tU24-Kw==|| joined server -2022-12-06 16:01:56.796797 + : SableIntim||pb-IF4yU0YDUw==|| joined server -2022-12-06 16:02:07.826286 + : CreepySamurai688||pb-IF4PU0YSXA==|| joined server -2022-12-06 16:02:12.833795 + : StarredGondolier2087||pb-IF4gU0Q_Hw==|| joined server -2022-12-06 16:03:53.214855 + : BrickJeste||pb-IF4GU05ZKQ==|| joined server -2022-12-06 16:04:04.252598 + : GOJOSATURO77||pb-IF4lU00yCQ==|| joined server -2022-12-06 16:04:17.288728 + : Karthick||pb-IF4PVE4cMg==|| joined server -2022-12-06 16:04:20.296204 + : Engrossi18||pb-IF4qVWg5MA==|| joined server -2022-12-06 16:06:12.713568 + : sOFF1C1AL||pb-IF5VU0cyFg==|| joined server -2022-12-06 16:07:10.963996 + : CapitalOrd||pb-IF4cU1BZXQ==|| joined server -2022-12-06 16:07:24.997283 + : StrongerK2||pb-IF5dU3oyFw==|| joined server -2022-12-06 16:07:30.015092 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-06 16:08:17.201813 + : Deepen31397||pb-IF4DVU4tLA==|| joined server -2022-12-06 16:08:43.280833 + : TelegraphicTree29||pb-IF4qUkw9Pw==|| joined server -2022-12-06 16:09:23.388162 + : Karthick||pb-IF4PVE4cMg==|| joined server -2022-12-06 16:11:07.760045 + : ARJUNVV288||pb-JiNJARFbXUtFXV9BGURWV1ZFGUBZQ1BA|| joined server -2022-12-06 16:11:20.808604 + : shashiHD||pb-IF4jUhIeAA==|| joined server -2022-12-06 16:11:37.858124 + : ARJUNVV288||pb-JiNJARFbXUtFXV9BGURWV1ZFGUBZQ1BA|| joined server -2022-12-06 16:11:44.890274 + : ARJUNVV288||pb-JiNJARFbXUtFXV9BGURWV1ZFGUBZQ1BA|| joined server -2022-12-06 16:11:51.910225 + : ARJUNVV288||pb-JiNJARFbXUtFXV9BGURWV1ZFGUBZQ1BA|| joined server -2022-12-06 16:12:49.111196 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-06 16:12:54.135128 + : FervidPlur||pb-IF4-UxI7Mg==|| joined server -2022-12-06 16:13:06.178473 + : MPF||pb-IF4rLkwp|| joined server -2022-12-06 16:13:37.286194 + : Ambidextr8||pb-IF4RUlFSCA==|| joined server -2022-12-06 16:13:47.327893 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-06 16:14:57.571366 + : Android63906743||pb-IF5dU08yUw==|| joined server -2022-12-06 16:15:05.597682 + : Sanath2512||pb-IF4rU0UcFw==|| joined server -2022-12-06 16:16:13.834731 + : ElectiveEa||pb-IF5XU00EDA==|| joined server -2022-12-06 16:16:20.869359 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-06 16:16:24.887870 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-06 16:16:55.987752 + : KimonoChen||pb-IF4iU0g-Ug==|| joined server -2022-12-06 16:17:28.098760 + : Android63977469||pb-IF5SU1E5VA==|| joined server -2022-12-06 16:17:39.133492 + : AlternativeCircle13||pb-IF5dVWsGUA==|| joined server -2022-12-06 16:18:30.302534 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 16:18:33.317124 + : BoastfulFaith8||pb-IF4yU3gtIQ==|| joined server -2022-12-06 16:18:39.341095 + : SpontaneousTexture21||pb-IF5QUncABw==|| joined server -2022-12-06 16:18:50.382837 + : HAR1gamer||pb-IF4BK046|| joined server -2022-12-06 16:18:52.386591 + : CandidCors||pb-IF43UkU_Kg==|| joined server -2022-12-06 16:19:56.640085 + : ArcticStatus25||pb-IF4-U0heCw==|| joined server -2022-12-06 16:19:59.649658 + : WonderfulH||pb-IF4sVVgTAg==|| joined server -2022-12-06 16:20:45.806670 + : DemonChrom||pb-IF4lUxYq|| joined server -2022-12-06 16:20:54.846138 + : Android63334530||pb-IF4OU0JcNw==|| joined server -2022-12-06 16:21:00.862970 + : CurlyBrace||pb-IF48VUEdKQ==|| joined server -2022-12-06 16:21:06.885455 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-06 16:21:24.950883 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-06 16:21:53.050478 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-06 16:22:43.245711 + : SpontaneousTexture21||pb-IF5QUncABw==|| joined server -2022-12-06 16:22:50.269244 + : SachinSava||pb-IF4dV1EFDA==|| joined server -2022-12-06 16:23:33.401656 + : Enigmatic7||pb-IF4iU0lSFQ==|| joined server -2022-12-06 16:23:36.409872 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-06 16:24:28.581549 + : Android62169386||pb-IF5UVWkuEw==|| joined server -2022-12-06 16:24:37.604747 + : StealthyAn||pb-IF4XU0EfDw==|| joined server -2022-12-06 16:24:39.611068 + : Instructi6||pb-IF5UUkMkVw==|| joined server -2022-12-06 16:25:08.710055 + : Deepen31397||pb-IF4DVU4tLA==|| joined server -2022-12-06 16:25:40.808918 + : SpaceShutt||pb-IF4yD3Qc|| joined server -2022-12-06 16:30:11.809429 + : AuralBookworm41||pb-IF4JU007VA==|| joined server -2022-12-06 16:30:25.870516 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-06 16:30:31.887303 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-06 16:30:55.977519 + : Android59950580||pb-IF4cUloODA==|| joined server -2022-12-06 16:31:12.041814 + : StealthyAn||pb-IF4XU0EfDw==|| joined server -2022-12-06 16:31:41.126121 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-06 16:32:08.202855 + : parshuavin||pb-IF4dUmgyDQ==|| joined server -2022-12-06 16:32:18.241411 + : Instructi6||pb-IF5UUkMkVw==|| joined server -2022-12-06 16:32:52.363116 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-06 16:33:06.402571 + : RajasPro||pb-IF4TUmonHw==|| joined server -2022-12-06 16:33:11.421652 + : ReliableDi||pb-IF43U0sjUQ==|| joined server -2022-12-06 16:33:21.463499 + : SableIntim||pb-IF4yU0YDUw==|| joined server -2022-12-06 16:33:26.481558 + : bhaumikrat||pb-JiNJARFZUUpJX1tGE0dWVlJEE0NdQFhB|| joined server -2022-12-06 16:33:30.498486 + : RajasPro||pb-IF4TUmonHw==|| joined server -2022-12-06 16:33:33.506016 + : viru199554||pb-IF4VU3EjBg==|| joined server -2022-12-06 16:33:41.529549 + : RAEEEEEEEEEEEEEEEEES||pb-IF4wBUUK|| joined server -2022-12-06 16:33:44.543843 + : bhaumikrat||pb-JiNJARFZUUpJX1tGE0dWVlJEE0NdQFhB|| joined server -2022-12-06 16:34:05.626326 + : InhumaneDa||pb-IF4VUhAKEg==|| joined server -2022-12-06 16:34:13.654233 + : InhumaneDa||pb-IF4VUhAKEg==|| joined server -2022-12-06 16:37:53.500121 + : KimonoChen||pb-IF4iU0g-Ug==|| joined server -2022-12-06 16:38:25.629274 + : BiswasCK||pb-IF4nUk8SNg==|| joined server -2022-12-06 16:38:45.710372 + : BiswasCK||pb-IF4nUk8SNg==|| joined server -2022-12-06 16:39:00.770886 + : Tinymonk32||pb-IF49VRABPA==|| joined server -2022-12-06 16:39:24.869729 + : InhumaneDa||pb-IF4VUhAKEg==|| joined server -2022-12-06 16:41:49.369482 + : vps32i||pb-IF4oU0YABg==|| joined server -2022-12-06 16:42:00.406441 + : SinkAiMehRan||pb-IF41VFMPNQ==|| joined server -2022-12-06 16:43:18.649198 + : UpbeatCeme||pb-IF4SUmwlVA==|| joined server -2022-12-06 16:44:59.018205 + : MuddyJoker||pb-IF4SF0Em|| joined server -2022-12-06 16:45:12.067263 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-06 16:45:34.132430 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-06 16:46:50.399478 + : Android48419571||pb-IF4mVWsmJA==|| joined server -2022-12-06 16:47:53.633329 + : MainstreamContrast42||pb-IF4vU0skLw==|| joined server -2022-12-06 16:48:32.777307 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-06 16:49:09.919653 + : Unrelenti4||pb-IF4eU0wpKg==|| joined server -2022-12-06 16:51:46.572532 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-06 16:52:15.656959 + : zAuzaaaaa1||pb-IF4VU04CUA==|| joined server -2022-12-06 16:52:55.818038 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-06 16:53:10.858127 + : Lizowsowra||pb-IF4oU0YuVg==|| joined server -2022-12-06 16:54:49.145384 + : Android63894042||pb-IF4pU00cVg==|| joined server -2022-12-06 16:56:26.509971 + : BackBrecker05||pb-IF4qCmET|| joined server -2022-12-06 16:57:29.710926 + : AdvancedExpomnent45m||pb-IF4JU3MxCQ==|| joined server -2022-12-06 16:58:30.947868 + : JIHAN0218A||pb-IF42U0tdVQ==|| joined server -2022-12-06 16:59:17.184666 + : DanRex2006||pb-IF4FU08hCQ==|| joined server -2022-12-06 17:00:11.382129 + : MuhaiminSk||pb-JiNJARBbXUdAVF5FF0BWXFRDEkZfQlRC|| joined server -2022-12-06 17:01:03.557414 + : Moldyblade||pb-IF4UU0YbEQ==|| joined server -2022-12-06 17:02:16.845474 + : parshuavin||pb-IF4dUmgyDQ==|| joined server -2022-12-06 17:02:49.964524 + : Dominator9844||pb-IF5VUlYhJw==|| joined server -2022-12-06 17:02:53.982438 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-06 17:04:42.410867 + : MAHARSHI14||pb-IF4qU3A4Jg==|| joined server -2022-12-06 17:05:40.811750 + : Anthropolo||pb-IF4-U2suMg==|| joined server -2022-12-06 17:06:09.920626 + : Android63737684||pb-IF4WU0kpNg==|| joined server -2022-12-06 17:06:13.942575 + : Android41592779||pb-IF4UVEMHAg==|| joined server -2022-12-06 17:06:54.064072 + : StealthyAn||pb-IF4XU0EfDw==|| joined server -2022-12-06 17:07:02.089056 + : delrowe012||pb-IF4PVFRZMA==|| joined server -2022-12-06 17:07:44.249375 + : ZeroSnow19056||pb-IF4QU0kHPA==|| joined server -2022-12-06 17:07:55.303114 + : paradoxffH||pb-IF4KUhJbBw==|| joined server -2022-12-06 17:09:53.737767 + : SinkAiMehRan||pb-IF41VFMPNQ==|| joined server -2022-12-06 17:09:56.744551 + : AccursedCe||pb-IF4RU00sAA==|| joined server -2022-12-06 17:11:56.167991 + : Android63888799||pb-IF4oU004KQ==|| joined server -2022-12-06 17:11:59.186645 + : DevilsonDhivagar||pb-IF4QUxcxFA==|| joined server -2022-12-06 17:12:02.191296 + : SpaceShutt||pb-IF4yD3Qc|| joined server -2022-12-06 17:12:43.335073 + : Shrirajpooja00||pb-IF4cU0lZAw==|| joined server -2022-12-06 17:13:00.576754 + : RubyRingBe||pb-IF4FU0waDw==|| joined server -2022-12-06 17:13:25.667437 + : POWERXDHRUV||pb-IF4GD2Yd|| joined server -2022-12-06 17:13:36.698925 + : Android58517688||pb-IF4rU0wZCg==|| joined server -2022-12-06 17:14:17.844227 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-06 17:16:28.361787 + : UncheckedF||pb-IF4xU04eUw==|| joined server -2022-12-06 17:16:37.392752 + : hariharan371||pb-IF4iU3M8EA==|| joined server -2022-12-06 17:18:26.792864 + : PlasticWillOWisp7884||pb-IF4cV3AGLQ==|| joined server -2022-12-06 17:19:34.073531 + : Android62190350||pb-IF4QU28vNg==|| joined server -2022-12-06 17:19:38.093956 + : POWERXDHRUV||pb-IF4GD2Yd|| joined server -2022-12-06 17:21:45.580805 + : Nithya1357||pb-IF5VUhQgPA==|| joined server -2022-12-06 17:21:59.637558 + : PaltryLuxury43||pb-IF4OU0MmCw==|| joined server -2022-12-06 17:22:05.651182 + : Ecologic10||pb-IF4RU0s-Fg==|| joined server -2022-12-06 17:22:17.703759 + : Android61865080||pb-IF4sU2sqHQ==|| joined server -2022-12-06 17:23:30.057865 + : Android60516479||pb-IF43UxUHMw==|| joined server -2022-12-06 17:23:36.082643 + : virenpanchal1313||pb-IF4RU3c6Jg==|| joined server -2022-12-06 17:23:48.118967 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-06 17:24:39.339731 + : virenpanchal1313||pb-IF4RU3c6Jg==|| joined server -2022-12-06 17:24:46.365372 + : ValiantThu||pb-IF4xMkpd|| joined server -2022-12-06 17:25:10.467763 + : Android63428296||pb-IF4CU0MiVA==|| joined server -2022-12-06 17:25:30.539068 + : Hmm183||pb-IF4XNWsZ|| joined server -2022-12-06 17:25:42.585555 + : Android63428296||pb-IF4CU0MiVA==|| joined server -2022-12-06 17:25:49.607151 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-06 17:26:22.741201 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-06 17:27:27.991315 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-06 17:29:43.648989 + : Hmm183||pb-IF4XNWsZ|| joined server -2022-12-06 17:30:01.720034 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-06 17:30:34.833599 + : Raghav2655||pb-IF4cU2UJCA==|| joined server -2022-12-06 17:31:17.000565 + : Hmm183||pb-IF4XNWsZ|| joined server -2022-12-06 17:31:38.081559 + : ShamInform||pb-IF5UVWk7Aw==|| joined server -2022-12-06 17:34:00.787979 + : SinisterCa||pb-IF4lU005Jw==|| joined server -2022-12-06 17:36:36.352380 + : ErsatzGuac||pb-IF4RU2g-VQ==|| joined server -2022-12-06 17:36:55.430276 + : SupernaturalDozen14||pb-IF4XUhA8VQ==|| joined server -2022-12-06 17:38:54.942726 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-06 17:39:29.054257 + : Android60974634||pb-IF4rU2EZEw==|| joined server -2022-12-06 17:40:59.583586 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-06 17:41:23.664419 + : HipCompany||pb-IF4WUxcgNw==|| joined server -2022-12-06 17:41:46.749696 + : IvoryFormality24||pb-IF5dU3USEQ==|| joined server -2022-12-06 17:41:47.756326 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-06 17:43:02.040063 + : Tractable2||pb-IF5UVVMgIA==|| joined server -2022-12-06 17:43:31.118009 + : PerfidiousStress40||pb-IF5SV2VbAQ==|| joined server -2022-12-06 17:47:05.141608 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-06 17:47:13.162660 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-06 17:49:06.583986 + : arunesh99||pb-IF4PU00PAw==|| joined server -2022-12-06 17:50:12.818913 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-06 17:50:51.960363 + : BABURAOAPT||pb-IF4yVVA8Bg==|| joined server -2022-12-06 17:51:30.072915 + : Honorabl20||pb-IF41U0wEVA==|| joined server -2022-12-06 17:51:57.176646 + : AbhishekAjay744||pb-IF4xU2EbKg==|| joined server -2022-12-06 17:52:53.390624 + : CivilizedT||pb-IF4wVFcZPw==|| joined server -2022-12-06 17:56:44.431367 + : IdenticalShock57||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-06 17:58:34.881766 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-06 18:03:24.389006 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-06 18:03:31.415647 + : HipCompany||pb-IF4WUxcgNw==|| joined server -2022-12-06 18:03:50.479509 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-06 18:05:06.754160 + : YEGbs||pb-IF41U005DQ==|| joined server -2022-12-06 18:06:18.039223 + : Android61865080||pb-IF4sU2sqHQ==|| joined server -2022-12-06 18:10:04.071042 + : LIONHUNTER||pb-IF4eVGc7Cw==|| joined server -2022-12-06 18:10:29.167124 + : shrey19654||pb-IF4QVGYMKg==|| joined server -2022-12-06 18:10:32.171957 + : PainlessVe||pb-IF5UU0EkDg==|| joined server -2022-12-06 18:10:33.176446 + : LionAlpha7||pb-IF4UVGg8KQ==|| joined server -2022-12-06 18:10:51.248301 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-06 18:11:23.349920 + : Northerly5||pb-IF4lU0pZLA==|| joined server -2022-12-06 18:11:35.395103 + : Northerly5||pb-IF4lU0pZLA==|| joined server -2022-12-06 18:12:21.707845 + : PerfidiousStress40||pb-IF5SV2VbAQ==|| joined server -2022-12-06 18:13:13.888589 + : PainlessVe||pb-IF5UU0EkDg==|| joined server -2022-12-06 18:14:54.227152 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-06 18:16:01.808006 + : Jenishmodi||pb-JiNJVxBfVENDWF1GEEFRV11HF0ZYQFRE|| joined server -2022-12-06 18:17:01.045079 + : sanka45678||pb-IF4OU1BfLA==|| joined server -2022-12-06 18:18:29.389141 + : VolcanoOP||pb-IF4IU3kKKA==|| joined server -2022-12-06 18:19:19.574797 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-06 18:25:06.862721 + : Nirucraze||pb-IF4gU3cIPQ==|| joined server -2022-12-06 18:27:09.280665 + : PutativeFoe61||pb-IF5RU00ZXA==|| joined server -2022-12-06 18:27:37.394088 + : WaryRider8||pb-IF4oDWRe|| joined server -2022-12-06 18:30:11.964593 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-06 18:30:24.011725 + : HipUnicorn||pb-IF4pU0cHIA==|| joined server -2022-12-06 18:30:50.088875 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-06 18:31:07.140260 + : OrdinaryLe||pb-IF4vU04bUg==|| joined server -2022-12-06 18:37:04.524093 + : IdenticalShock57||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-06 18:37:30.606575 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-06 18:46:09.494673 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-06 18:46:22.542078 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-06 18:47:26.761885 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-06 18:49:36.206823 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-06 18:52:19.771493 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-06 18:53:12.975851 + : IdenticalShock57||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-06 18:55:58.894735 + : IdenticalShock57||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-06 18:56:19.948396 + : IdenticalShock57||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-06 18:56:33.000460 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-06 18:57:09.115488 + : ModalHandl||pb-IF4NU0cpFw==|| joined server -2022-12-06 18:58:02.323817 + : LaxCurb126||pb-IF4TU3EfNw==|| joined server -2022-12-06 18:58:39.493494 + : NoName38501b||pb-IF5XUmgSJA==|| joined server -2022-12-06 18:59:17.649883 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-06 19:03:34.829016 + : Android62648900||pb-IF4CU3QEFQ==|| joined server -2022-12-06 19:03:42.856346 + : GrimStakes||pb-IF4HU1AnIw==|| joined server -2022-12-06 19:03:54.890733 + : IdenticalShock57||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-06 19:04:34.212176 + : Engrossi18||pb-IF4qVWg5MA==|| joined server -2022-12-06 19:04:52.280199 + : ismailalac||pb-IF4rU1A6HQ==|| joined server -2022-12-06 19:05:28.442667 + : ĐÃŘĶxŠÎĞMĀ||pb-IF4vUkRaEg==|| joined server -2022-12-06 19:05:35.464391 + : Android62648900||pb-IF4CU3QEFQ==|| joined server -2022-12-06 19:08:31.195969 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-06 19:09:24.708958 + : IndependentBoard34||pb-IF4gU0Y7AQ==|| joined server -2022-12-06 19:10:04.873501 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-06 19:10:26.935507 + : Android62073479||pb-IF4yU2sFEQ==|| joined server -2022-12-06 19:15:59.308343 + : UnalteredHymn2273||pb-IF5UU1AmIQ==|| joined server -2022-12-06 19:16:29.428782 + : IdenticalShock57||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-06 19:17:05.541497 + : IdenticalShock57||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-06 19:17:08.550113 + : sahilkhatri343593||pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL|| joined server -2022-12-06 19:17:11.557195 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-06 19:17:24.608193 + : IdenticalShock57||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-06 19:18:58.942090 + : ViciousFon||pb-IF4TVGIONQ==|| joined server -2022-12-06 19:22:32.642349 + : GrimStakes||pb-IF4HU1AnIw==|| joined server -2022-12-06 19:22:50.700183 + : kingbcs||pb-IF4nU08BVg==|| joined server -2022-12-06 19:22:58.725536 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-06 19:28:57.419472 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-06 19:29:45.605688 + : MadBOY5523||pb-LV4FUkUPAxNEVV8RRk5WBVVEEA==|| joined server -2022-12-06 19:32:56.505987 + : vedhu74||pb-IF43U2szXQ==|| joined server -2022-12-06 19:36:49.286468 + : Trickste14||pb-JiNJARFaUUNEVVlCE0NTVVFEEUFYT1NG|| joined server -2022-12-06 19:37:12.387333 + : Android62113852||pb-IF5UU3AyNw==|| joined server -2022-12-06 19:41:04.623106 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-06 19:42:06.856200 + : ChintuKarthik1123||pb-IF43U3opMw==|| joined server -2022-12-06 19:43:28.147084 + : ChestnutVo||pb-JiNJARFZUUZEXVtCFUVTUlxDGUVfQFFB|| joined server -2022-12-06 19:47:27.221691 + : Northerly5||pb-IF4lU0pZLA==|| joined server -2022-12-06 19:49:41.106521 + : Android63987492||pb-IF42U08NIA==|| joined server -2022-12-06 19:50:04.200948 + : Arnob007||pb-IF5SVXIHMA==|| joined server -2022-12-06 19:50:19.260445 + : Engrossin3||pb-IF4TUnIzNQ==|| joined server -2022-12-06 19:51:55.607193 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-06 19:52:46.795819 + : ASSASSINBA||pb-IF5cU2haHA==|| joined server -2022-12-06 19:53:46.250244 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-06 19:54:53.604451 + : Deepen31397||pb-IF4DVU4tLA==|| joined server -2022-12-06 19:55:05.659429 + : Android63948779||pb-IF4RU08gKg==|| joined server -2022-12-06 19:55:48.829611 + : Northerly5||pb-IF4lU0pZLA==|| joined server -2022-12-06 19:55:55.846358 + : kingbcs||pb-IF4nU08BVg==|| joined server -2022-12-06 19:56:49.024292 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-06 19:59:37.623849 + : MilderUprising53||pb-IF4uU0sRXA==|| joined server -2022-12-06 20:00:07.733389 + : mike110900||pb-IF4VVVEFAQ==|| joined server -2022-12-06 20:00:34.820398 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-06 20:01:35.046779 + : HypnoticAlliance6502||pb-IF4zC1Ap|| joined server -2022-12-06 20:01:44.071541 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-06 20:03:53.533001 + : HypnoticAlliance6502||pb-IF4zC1Ap|| joined server -2022-12-06 20:04:11.618705 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-06 20:05:34.094795 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-06 20:06:04.571541 + : dynamic271||pb-IF4DVEpfCA==|| joined server -2022-12-06 20:06:20.630106 + : Android56347751||pb-IF4MUnBbPw==|| joined server -2022-12-06 20:06:30.673213 + : InnateSinner19||pb-IF4IU04pBA==|| joined server -2022-12-06 20:07:06.833823 + : Android57770388||pb-IF4BUkMkBg==|| joined server -2022-12-06 20:10:13.813431 + : StealthyAn||pb-IF4XU0EfDw==|| joined server -2022-12-06 20:11:51.280178 + : Android52260302||pb-IF4CVUwbLw==|| joined server -2022-12-06 20:15:52.465252 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-06 20:18:43.053541 + : ApKaAbuu||pb-IF5UU0QiUQ==|| joined server -2022-12-06 20:21:19.732154 + : LeggedAchi||pb-IF4TVUZbEA==|| joined server -2022-12-06 20:22:30.008531 + : CrushedLe2||pb-IF4WU00lFQ==|| joined server -2022-12-06 20:22:53.107570 + : ASSASSINBA||pb-IF5cU2haHA==|| joined server -2022-12-06 20:27:43.513727 + : Engrossin3||pb-IF4TUnIzNQ==|| joined server -2022-12-06 20:27:54.547487 + : Uninvited5||pb-IF4FVXoRIw==|| joined server -2022-12-06 20:35:31.282556 + : StealthyAn||pb-IF4XU0EfDw==|| joined server -2022-12-06 20:35:59.386422 + : VeteranGuy||pb-IF5SU0hTEw==|| joined server -2022-12-06 20:36:44.555676 + : Android60777465||pb-IF5WU2E5PQ==|| joined server -2022-12-06 20:37:37.711213 + : AloneTraveler007||pb-IF4BUkVYUA==|| joined server -2022-12-06 20:38:11.836417 + : WolfViperCr7||pb-IF48U0YAMQ==|| joined server -2022-12-06 20:41:43.623283 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-06 20:42:46.075108 + : Android52260302||pb-IF4CVUwbLw==|| joined server -2022-12-06 20:42:54.100130 + : Arnob007||pb-IF5SVXIHMA==|| joined server -2022-12-06 20:44:26.421881 + : Nihilisti2||pb-JiNJARBfVUtBVFhCEERZUlNEGUBbRFRF|| joined server -2022-12-06 20:45:16.604258 + : TriplePie5||pb-IF5RU21cVw==|| joined server -2022-12-06 20:45:42.700599 + : HellalSouh||pb-IF4IV1BZVw==|| joined server -2022-12-06 20:52:02.788676 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-06 20:52:03.790988 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-06 20:52:16.840973 + : Arnob007||pb-IF5SVXIHMA==|| joined server -2022-12-06 20:52:27.885404 + : Arnob007||pb-IF5SVXIHMA==|| joined server -2022-12-06 20:54:05.209482 + : Arnob007||pb-IF5SVXIHMA==|| joined server -2022-12-06 20:54:47.340328 + : PerkyFill3||pb-IF4IU0MRLA==|| joined server -2022-12-06 20:56:01.647531 + : LeggedAchi||pb-IF4TVUZbEA==|| joined server -2022-12-06 20:59:58.426129 + : paratròóper||pb-IF4IV04ZKw==|| joined server -2022-12-06 21:01:12.673595 + : AloneTraveler007||pb-IF4BUkVYUA==|| joined server -2022-12-06 21:12:28.006825 + : Rambuncti7||pb-IF4sD1cb|| joined server -2022-12-06 21:14:24.435367 + : Android56720941||pb-IF43VVZSVQ==|| joined server -2022-12-06 21:15:47.729427 + : Arnob007||pb-IF5SVXIHMA==|| joined server -2022-12-06 21:19:12.511915 + : GamingLaks||pb-IF43UmVTLw==|| joined server -2022-12-06 21:19:52.654491 + : Android56720941||pb-IF43VVZSVQ==|| joined server -2022-12-06 21:20:46.889109 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-06 21:22:53.413535 + : gamerpika9||pb-IF48V3QKFw==|| joined server -2022-12-06 21:27:36.500721 + : arijjojo||pb-IF4OU0UINQ==|| joined server -2022-12-06 21:29:01.783431 + : RockAzauru||pb-IF4VVEIlVw==|| joined server -2022-12-06 21:30:50.161060 + : Krishraj2221||pb-IF4nU0k7HA==|| joined server -2022-12-06 21:31:15.262394 + : Krishraj2221||pb-IF4nU0k7HA==|| joined server -2022-12-06 21:34:46.064631 + : Arnob007||pb-IF5SVXIHMA==|| joined server -2022-12-06 21:42:18.747520 + : Nyaa! :3||pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB|| joined server -2022-12-06 21:45:41.454105 + : ChewySmell||pb-IF49U08dJg==|| joined server -2022-12-06 21:46:21.590423 + : Locomoti12||pb-IF4nVXktLw==|| joined server -2022-12-06 21:46:55.721418 + : BubblyPenguin8265||pb-IF4JU2MkFQ==|| joined server -2022-12-06 21:59:45.547863 + : SparklyAcc||pb-IF5RU2YRHw==|| joined server -2022-12-06 22:10:32.830874 + : GoldenSasquatch4644||pb-IF5dVGQkFw==|| joined server -2022-12-06 22:13:35.417149 + : Cristovien||pb-IF40U3kNPQ==|| joined server -2022-12-06 22:24:28.574168 + : bhalunab||pb-IF4PIEQj|| joined server -2022-12-06 23:25:58.394563 + : MeowMeow12||pb-IF5QU1IHLQ==|| joined server -2022-12-06 23:57:12.922641 + : Android63288818||pb-IF4BU0EoNw==|| joined server -2022-12-07 00:15:22.736279 + : Android63991676||pb-IF4PU1BbJw==|| joined server -2022-12-07 00:26:29.076050 + : Android63993917||pb-IF4GU1A5MA==|| joined server -2022-12-07 00:52:23.554608 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-07 00:54:11.895894 + : RainyParce||pb-IF5RU1AaLw==|| joined server -2022-12-07 00:58:46.722709 + : Android62111030||pb-IF4FU24gIQ==|| joined server -2022-12-07 01:02:07.330206 + : TelegraphicTree29||pb-IF4qUkw9Pw==|| joined server -2022-12-07 01:11:41.290315 + : RainyParce||pb-IF5RU1AaLw==|| joined server -2022-12-07 01:37:40.943697 + : Android62934068||pb-IF5UU3kINA==|| joined server -2022-12-07 01:38:58.361278 + : Android62934068||pb-IF5UU3kINA==|| joined server -2022-12-07 01:40:30.668125 + : Android59843406||pb-IF49U21YDQ==|| joined server -2022-12-07 01:41:02.868373 + : UniqueScandal132||pb-IF40U0EFPQ==|| joined server -2022-12-07 01:42:08.135169 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2022-12-07 01:42:50.313438 + : Ombala9||pb-IF48U3pfCw==|| joined server -2022-12-07 01:47:05.526888 + : spshubham12pandey||pb-JiNJARBfVENAW1lIFkVRUlZBFklWRVhK|| joined server -2022-12-07 01:47:58.699954 + : PC601395||pb-IF4wU3g8KQ==|| joined server -2022-12-07 01:48:08.742139 + : AmberRingmaster22504||pb-IF4rVWwEVQ==|| joined server -2022-12-07 01:49:37.038457 + : DevilsonDhivagar||pb-IF4QUxcxFA==|| joined server -2022-12-07 01:50:02.150258 + : DevilsonDhivagar||pb-IF4QUxcxFA==|| joined server -2022-12-07 01:51:36.762628 + : PerpetualF||pb-IF5VU0kDUg==|| joined server -2022-12-07 01:51:50.811352 + : king1of1brave1gaming||pb-IF4TVUcGKQ==|| joined server -2022-12-07 01:52:09.875098 + : Android63956151||pb-IF4iU04PKA==|| joined server -2022-12-07 01:53:31.165960 + : ShootingBu||pb-IF5RJ2sR|| joined server -2022-12-07 01:55:04.508146 + : StableCohe||pb-IF4rU24hJA==|| joined server -2022-12-07 01:56:07.741899 + : CrispyPugi||pb-IF49U0QkIA==|| joined server -2022-12-07 02:03:06.275914 + : unstoppabl||pb-IF4TU0o6Aw==|| joined server -2022-12-07 02:05:23.876141 + : Compatibl8||pb-IF4-U08hVg==|| joined server -2022-12-07 02:09:26.675109 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-07 02:09:31.697931 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2022-12-07 02:11:52.202903 + : MuddyFlami||pb-JiNJARFcVEFFX1tBF09XUV1AGUhcRFRE|| joined server -2022-12-07 02:12:00.231098 + : SHEESHR10||pb-IF4pU0UPNQ==|| joined server -2022-12-07 02:12:46.786527 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-07 02:15:02.292409 + : GlossyVaca||pb-IF4LVU4_VA==|| joined server -2022-12-07 02:16:33.617393 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-07 02:27:55.653247 + : sugamkulal16||pb-IF4RU04mPA==|| joined server -2022-12-07 02:32:03.680187 + : Android63790933||pb-IF4jU0Y5FA==|| joined server -2022-12-07 02:34:06.081467 + : Android59843406||pb-IF49U21YDQ==|| joined server -2022-12-07 02:36:07.461050 + : FunnyArrest25||pb-IF5QU3hfHw==|| joined server -2022-12-07 02:36:36.566259 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-07 02:38:14.888462 + : FunnyArrest25||pb-IF5QU3hfHw==|| joined server -2022-12-07 02:39:30.128648 + : Android63217110||pb-IF4oU3oZNg==|| joined server -2022-12-07 02:47:22.659491 + : HeedlessCalcium28||pb-IF5WU3kZAQ==|| joined server -2022-12-07 02:47:42.720350 + : CrispyPugi||pb-IF49U0QkIA==|| joined server -2022-12-07 02:47:47.742389 + : ImportantL||pb-IF4sUm48JA==|| joined server -2022-12-07 02:54:27.566353 + : CulturalJa||pb-IF4pUxUDDQ==|| joined server -2022-12-07 02:54:59.697179 + : Android47974368||pb-IF4-VWgKNA==|| joined server -2022-12-07 02:55:48.864445 + : SandyProMa||pb-IF4RU0UZIA==|| joined server -2022-12-07 02:56:24.989767 + : MrHacker10||pb-IF4MU08yEw==|| joined server -2022-12-07 02:58:25.442903 + : ClearerGlory17||pb-IF5WU2MoIA==|| joined server -2022-12-07 02:59:13.605112 + : LameMotive||pb-IF5dDUIZ|| joined server -2022-12-07 03:00:37.872807 + : kaddy2144||pb-IF40VEocAw==|| joined server -2022-12-07 03:00:39.878564 + : chugambaran||pb-IF42U2wGFw==|| joined server -2022-12-07 03:00:43.892459 + : kaddy2144||pb-IF40VEocAw==|| joined server -2022-12-07 03:03:18.085900 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-07 03:05:20.948425 + : FullerSimilarity49||pb-IF4OU3MFEQ==|| joined server -2022-12-07 03:06:16.117094 + : VehementReformer10||pb-IF4rUlUHVg==|| joined server -2022-12-07 03:06:57.246447 + : CrispyPugi||pb-IF49U0QkIA==|| joined server -2022-12-07 03:07:44.403120 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-07 03:08:52.651531 + : SanguinePa||pb-IF4SU3kCMQ==|| joined server -2022-12-07 03:10:13.914719 + : MiraculousContrary29||pb-IF5UU3YxEA==|| joined server -2022-12-07 03:11:34.218051 + : SanguinePa||pb-IF4SU3kCMQ==|| joined server -2022-12-07 03:16:32.149255 + : Ebullien10||pb-IF4eU1BTBg==|| joined server -2022-12-07 03:17:19.285542 + : Stochasti4||pb-IF4NUmY5Nw==|| joined server -2022-12-07 03:25:32.946226 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-07 03:26:45.185813 + : vishalsathe112000||pb-IF5UVRAkPQ==|| joined server -2022-12-07 03:32:47.343778 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-07 03:35:25.874571 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-07 03:36:52.227634 + : jaypawar8155||pb-IF4PVRI5Pw==|| joined server -2022-12-07 03:40:20.999479 + : Persnicke3||pb-IF4tUlIgBg==|| joined server -2022-12-07 03:40:50.094931 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-07 03:46:58.391798 + : Jerico248||pb-IF4dUhhTUw==|| joined server -2022-12-07 03:47:00.391642 + : Android46500995||pb-IF4NVRcsKQ==|| joined server -2022-12-07 03:48:41.805011 + : RoyalOwl79||pb-IF4MU0ReEA==|| joined server -2022-12-07 03:48:56.860919 + : happygame2||pb-IF4BU3QhUQ==|| joined server -2022-12-07 03:54:19.030690 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-07 03:56:49.558536 + : Persnicke3||pb-IF4tUlIgBg==|| joined server -2022-12-07 03:58:47.971364 + : StableCohe||pb-IF4rU24hJA==|| joined server -2022-12-07 04:01:35.575666 + : Android63453154||pb-IF4SU0MnEA==|| joined server -2022-12-07 04:03:28.940621 + : Android63453154||pb-IF4SU0MnEA==|| joined server -2022-12-07 04:06:45.598536 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-07 04:15:39.459558 + : Android63888799||pb-IF4oU004KQ==|| joined server -2022-12-07 04:16:02.548529 + : Android63983683||pb-IF42U08yFw==|| joined server -2022-12-07 04:25:34.450874 + : UnopenedCamera42||pb-IF4MU0w6Cw==|| joined server -2022-12-07 04:26:01.558147 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-07 04:30:36.651847 + : BasuMachakanura||pb-JiNJARBdXUtFVFxIGUJQVVREFklXRVZH|| joined server -2022-12-07 04:33:48.314211 + : InsideMani||pb-IF41VGo9MA==|| joined server -2022-12-07 04:33:53.333742 + : AvanKathir||pb-IF4UVUclXA==|| joined server -2022-12-07 04:34:11.399304 + : Android63983683||pb-IF42U08yFw==|| joined server -2022-12-07 04:34:15.409956 + : BushyInstr||pb-IF4WU0QRIA==|| joined server -2022-12-07 04:38:13.256623 + : PATLU517||pb-IF49Umo-Fg==|| joined server -2022-12-07 04:38:55.406342 + : ShootingBu||pb-IF5RJ2sR|| joined server -2022-12-07 04:41:01.843583 + : Mikku||pb-IF4QVWQzIg==|| joined server -2022-12-07 04:42:38.175805 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 04:43:11.304960 + : Android61742574||pb-IF5TU2wBCg==|| joined server -2022-12-07 04:43:37.369305 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-07 04:44:16.514769 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-07 04:45:29.760248 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-07 04:45:40.796180 + : AbnishKumar123||pb-IF4rVUIBCg==|| joined server -2022-12-07 04:46:27.952653 + : Android63654282||pb-IF4oU0YYBg==|| joined server -2022-12-07 04:48:04.218888 + : Android62304221||pb-IF4VU3AzFw==|| joined server -2022-12-07 04:49:19.424945 + : sairam6381||pb-IF4AUk8TDQ==|| joined server -2022-12-07 04:52:16.994588 + : DeadlyBit1||pb-IF41VRYqFQ==|| joined server -2022-12-07 04:52:22.012022 + : FruitlessVision8||pb-IF4tU08kIQ==|| joined server -2022-12-07 04:52:25.019813 + : DEPROGAMIN||pb-IF4IU08pBg==|| joined server -2022-12-07 04:52:40.081231 + : VamC7501||pb-IF4UU005HQ==|| joined server -2022-12-07 04:53:00.151279 + : bisht4189||pb-IF4SEHAl|| joined server -2022-12-07 04:53:11.185286 + : UnopenedCamera42||pb-IF4MU0w6Cw==|| joined server -2022-12-07 04:53:16.195080 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-07 04:53:48.317036 + : Android52820777||pb-IF4PVVI4Dg==|| joined server -2022-12-07 04:55:20.983420 + : QuietSitua||pb-IF5cU1E5Dw==|| joined server -2022-12-07 04:55:28.001944 + : ThirstyFro||pb-IF4jU3QHMw==|| joined server -2022-12-07 04:55:34.028148 + : Android63351503||pb-IF4cU0IvCw==|| joined server -2022-12-07 04:57:03.365788 + : Trackles12||pb-IF5RU2IcCw==|| joined server -2022-12-07 04:57:18.423936 + : Android52820777||pb-IF4PVVI4Dg==|| joined server -2022-12-07 04:57:25.446891 + : Android52820777||pb-IF4PVVI4Dg==|| joined server -2022-12-07 04:57:45.508230 + : jishnumb||pb-IF5XU0khNg==|| joined server -2022-12-07 04:57:48.521694 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-07 05:01:46.327185 + : Android63017111||pb-IF4gU3gnUQ==|| joined server -2022-12-07 05:03:03.606387 + : Limyixiang||pb-IF5QU1AhKg==|| joined server -2022-12-07 05:03:12.645013 + : ReddishArb||pb-IF4tUxUuKA==|| joined server -2022-12-07 05:03:24.682341 + : Móônkight||pb-IF4uVGEMDA==|| joined server -2022-12-07 05:03:30.694137 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-07 05:04:27.893247 + : Limyixiang||pb-IF5QU1AhKg==|| joined server -2022-12-07 05:06:15.264875 + : Unjustifi7||pb-IF49UkZcNA==|| joined server -2022-12-07 05:07:00.423271 + : jonhjonh55ph||pb-IF5TU1A9Pw==|| joined server -2022-12-07 05:08:38.815967 + : ReddishArb||pb-IF4tUxUuKA==|| joined server -2022-12-07 05:09:08.915603 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-07 05:10:34.174516 + : FierySorce||pb-IF4hU04ADw==|| joined server -2022-12-07 05:10:35.177104 + : tarunpangt||pb-IF5QVUQTVg==|| joined server -2022-12-07 05:11:34.354361 + : IckyDestructor44496||pb-IF4mUxgoFw==|| joined server -2022-12-07 05:11:42.377740 + : OssifiedLegitimacy9||pb-IF4DVVQMVQ==|| joined server -2022-12-07 05:13:18.691788 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-07 05:15:05.045799 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-07 05:15:41.178398 + : TriesomeComplacency||pb-IF5XVBUCFA==|| joined server -2022-12-07 05:16:27.319161 + : bisht4189||pb-IF4SEHAl|| joined server -2022-12-07 05:16:33.343616 + : FauziAlhis||pb-IF4FU0YcVQ==|| joined server -2022-12-07 05:16:42.380752 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-07 05:17:07.464011 + : PiousNeutrality22||pb-IF4CU3YiUg==|| joined server -2022-12-07 05:18:19.696876 + : QuarterTan||pb-IF4JUkMbUw==|| joined server -2022-12-07 05:19:39.003333 + : rawoofraw||pb-IF5RU1EbMw==|| joined server -2022-12-07 05:22:01.558593 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-07 05:22:21.628665 + : ashu42v||pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF|| joined server -2022-12-07 05:25:06.214892 + : ZaemonGami||pb-IF4TUxYJDg==|| joined server -2022-12-07 05:26:35.506966 + : wishkt123||pb-JiNJARFTVEREXV1CEkVQV1VKE0dfR1JD|| joined server -2022-12-07 05:26:52.570463 + : GOJOSATURO77||pb-IF4lU00yCQ==|| joined server -2022-12-07 05:27:14.662876 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-07 05:28:07.816586 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-07 05:28:41.951415 + : romananand||pb-IF48U04oBA==|| joined server -2022-12-07 05:28:53.995058 + : Undefeata2||pb-IF4jU1AiCg==|| joined server -2022-12-07 05:28:55.999773 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-07 05:28:59.001032 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 05:29:20.088926 + : Uninvolved||pb-IF4vU05cFA==|| joined server -2022-12-07 05:30:21.321838 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-07 05:30:27.344479 + : MG12012001||pb-IF4PUnE5|| joined server -2022-12-07 05:30:41.395839 + : PATLU517||pb-IF49Umo-Fg==|| joined server -2022-12-07 05:31:05.477551 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-07 05:34:34.326357 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-07 05:35:55.587500 + : SanguinePa||pb-IF4SU3kCMQ==|| joined server -2022-12-07 05:35:57.597937 + : delrowe012||pb-IF4PVFRZMA==|| joined server -2022-12-07 05:36:35.732103 + : IntrepidCr||pb-IF4dVUNcBw==|| joined server -2022-12-07 05:37:10.849532 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2022-12-07 05:38:18.127990 + : RKGAMING475||pb-IF41U3EmJg==|| joined server -2022-12-07 05:39:25.376770 + : AnuragRdav||pb-IF4cUxYIHw==|| joined server -2022-12-07 05:39:30.394714 + : DexTerOuSVikAriA||pb-IF4GUxUZKg==|| joined server -2022-12-07 05:41:34.786911 + : PC608120||pb-IF4PU0cTLg==|| joined server -2022-12-07 05:42:42.020434 + : jonhjonh55ph||pb-IF5TU1A9Pw==|| joined server -2022-12-07 05:43:04.092253 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-07 05:43:26.177440 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 05:43:44.230235 + : ShootingBu||pb-IF5RJ2sR|| joined server -2022-12-07 05:46:19.811624 + : HourlyTreaty30||pb-IF4WU04ENQ==|| joined server -2022-12-07 05:46:59.944416 + : MadBOY5523||pb-LV4FUkUPAxNEVV8RRk5WBVVEEA==|| joined server -2022-12-07 05:47:49.116775 + : HourlyTreaty30||pb-IF4WU04ENQ==|| joined server -2022-12-07 05:47:50.121624 + : FrontPlane24||pb-IF4WVU9TLg==|| joined server -2022-12-07 05:49:24.436640 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-07 05:49:55.559063 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-07 05:50:50.746739 + : NOMERCY||pb-IF49U0QJDw==|| joined server -2022-12-07 05:52:34.077238 + : PointyLeo1||pb-IF5SUxMGAg==|| joined server -2022-12-07 05:54:11.419185 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 05:56:17.917079 + : sagar88822||pb-IF4vVUNfEA==|| joined server -2022-12-07 05:56:26.951943 + : EerieBalance28||pb-IF4WUnRYAA==|| joined server -2022-12-07 05:56:27.954725 + : CHICKENBOO||pb-IF4AV1QqEQ==|| joined server -2022-12-07 05:57:07.126664 + : Android61204090||pb-IF5WU2YnDw==|| joined server -2022-12-07 05:57:26.190098 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2022-12-07 05:59:38.637483 + : Android50745211||pb-JiNJARBfVEZIXV9JEkRQVVZDF0leT1ZD|| joined server -2022-12-07 06:00:18.761409 + : alsoMV||pb-IF48U0kmIw==|| joined server -2022-12-07 06:00:25.792466 + : Phalgun~||pb-LV4FBUYOVRRBCl4UEkVRB1EWGA==|| joined server -2022-12-07 06:00:30.811270 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-07 06:01:11.947857 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 06:02:15.175916 + : Dhivakar04||pb-IF4iVGwqHQ==|| joined server -2022-12-07 06:04:50.721879 + : Android59655432||pb-IF43UlceUA==|| joined server -2022-12-07 06:06:40.133326 + : SheikRieng||pb-IF4rU1BdLw==|| joined server -2022-12-07 06:06:41.140731 + : RAEEEEEEEEEEEEEEEEES||pb-IF4wBUUK|| joined server -2022-12-07 06:08:52.525346 + : jonhjonh55ph||pb-IF5TU1A9Pw==|| joined server -2022-12-07 06:12:01.194976 + : kumargchethan56||pb-IF4FU28fVg==|| joined server -2022-12-07 06:13:08.458384 + : Android63993772||pb-IF5SU1EaDQ==|| joined server -2022-12-07 06:13:10.460825 + : sunnykusekar123||pb-IF4VU048KA==|| joined server -2022-12-07 06:13:12.467152 + : NovaEuphor||pb-IF5dVE4mKw==|| joined server -2022-12-07 06:13:33.539313 + : DeceptiveL||pb-IF5WU28fFg==|| joined server -2022-12-07 06:15:45.024840 + : UnfoundedScience23||pb-IF4iVU0MPA==|| joined server -2022-12-07 06:16:02.075245 + : Android62304221||pb-IF4VU3AzFw==|| joined server -2022-12-07 06:20:24.038141 + : WheeledArr||pb-IF4dLmUO|| joined server -2022-12-07 06:23:17.647355 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-07 06:24:01.776981 + : Android55556523||pb-IF4uUmgjCQ==|| joined server -2022-12-07 06:24:15.844379 + : SidewaysCo||pb-IF4jVUcBDw==|| joined server -2022-12-07 06:24:38.940240 + : ahamadakthus||pb-IF5TE2M5|| joined server -2022-12-07 06:24:50.988079 + : Rupeshg39||pb-IF4lU08SEw==|| joined server -2022-12-07 06:24:59.021668 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 06:26:06.254892 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-07 06:26:10.277378 + : AceShip907||pb-IF4FVHQfMA==|| joined server -2022-12-07 06:26:29.348086 + : Rupeshg39||pb-IF4lU08SEw==|| joined server -2022-12-07 06:26:30.350776 + : AceShip907||pb-IF4FVHQfMA==|| joined server -2022-12-07 06:26:32.359757 + : kumargchethan56||pb-IF4FU28fVg==|| joined server -2022-12-07 06:26:45.416717 + : SidewaysCo||pb-IF4jVUcBDw==|| joined server -2022-12-07 06:27:01.472980 + : Conformab8||pb-IF4rUkFSLw==|| joined server -2022-12-07 06:27:08.499782 + : Android63956151||pb-IF4iU04PKA==|| joined server -2022-12-07 06:27:48.645575 + : Android63902876||pb-IF4DU00TEw==|| joined server -2022-12-07 06:29:27.025914 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 06:30:17.186324 + : RZaM2006||pb-IF4sU00NAg==|| joined server -2022-12-07 06:30:35.267547 + : Android56815408||pb-IF5WUnY-Aw==|| joined server -2022-12-07 06:31:42.504310 + : Conformab8||pb-IF4rUkFSLw==|| joined server -2022-12-07 06:32:20.629704 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 06:32:58.760208 + : Android56259692||pb-IF4pUm8AEg==|| joined server -2022-12-07 06:33:24.853023 + : ApparentEn||pb-IF43U08iNg==|| joined server -2022-12-07 06:34:26.063571 + : BushyInstr||pb-IF4WU0QRIA==|| joined server -2022-12-07 06:34:48.157379 + : praneshbhat14051998||pb-IF4BV1U9LA==|| joined server -2022-12-07 06:35:30.304442 + : abhikumar3||pb-IF4GVVcfBw==|| joined server -2022-12-07 06:35:41.329398 + : BushyInstr||pb-IF4WU0QRIA==|| joined server -2022-12-07 06:36:34.490391 + : LeggedRise||pb-IF4RUxBaJA==|| joined server -2022-12-07 06:39:28.121790 + : BiologicalPotion26||pb-IF4-U0ZcNA==|| joined server -2022-12-07 06:41:42.618640 + : ScreechingOoze8069||pb-JiNJARFeUkdDX1tHEkVTVlFDFUlXRllG|| joined server -2022-12-07 06:42:26.790747 + : ahamadakthus||pb-IF5TE2M5|| joined server -2022-12-07 06:42:27.796667 + : EmptySplitting11||pb-IF4BU0wPNg==|| joined server -2022-12-07 06:43:12.957591 + : ThisisMitu||pb-IF4HV2FcNA==|| joined server -2022-12-07 06:43:25.997812 + : HotChicken96163||pb-IF4DV1haCg==|| joined server -2022-12-07 06:45:54.527796 + : AsceticLeap15||pb-IF43VFkANQ==|| joined server -2022-12-07 06:47:05.777963 + : AsceticLeap15||pb-IF43VFkANQ==|| joined server -2022-12-07 06:48:59.147873 + : BLOODFRAUD||pb-IF4xUxA7Vg==|| joined server -2022-12-07 06:49:07.171847 + : GreyRobot57207||pb-IF4qU08hMA==|| joined server -2022-12-07 06:49:50.314535 + : FruitlessVision8||pb-IF4tU08kIQ==|| joined server -2022-12-07 06:50:36.444364 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-07 06:52:53.875985 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 06:53:19.961530 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-07 06:54:53.281985 + : Imtiyazsay||pb-IF5RVWIRIw==|| joined server -2022-12-07 06:55:30.408837 + : FruitlessVision8||pb-IF4tU08kIQ==|| joined server -2022-12-07 06:56:08.541686 + : LordlyWest18||pb-IF4lUlhaHA==|| joined server -2022-12-07 06:56:31.639786 + : BLOODFRAUD||pb-IF4xUxA7Vg==|| joined server -2022-12-07 06:57:28.844588 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 06:57:36.875868 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 06:58:55.144603 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 06:59:43.310978 + : BushyInstr||pb-IF4WU0QRIA==|| joined server -2022-12-07 07:00:37.491657 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-07 07:00:50.538978 + : thunderstorms3054||pb-IF4zU3gzBA==|| joined server -2022-12-07 07:01:15.623225 + : WirelessNe||pb-IF4nUkteVA==|| joined server -2022-12-07 07:01:23.655024 + : Dhivakar04||pb-IF4iVGwqHQ==|| joined server -2022-12-07 07:03:18.057990 + : Excommunic||pb-IF4MU3hdIw==|| joined server -2022-12-07 07:03:47.149568 + : InhibitoryToday17||pb-IF4-UxldJw==|| joined server -2022-12-07 07:03:55.175849 + : Android57045715||pb-IF4TUnYAPw==|| joined server -2022-12-07 07:04:06.209246 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 07:05:24.485124 + : MRKHINDIGA||pb-IF4OU04GBg==|| joined server -2022-12-07 07:09:20.411423 + : Imtiyazsay||pb-IF5RVWIRIw==|| joined server -2022-12-07 07:09:34.450438 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 07:10:02.556983 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-07 07:10:10.583092 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-07 07:11:23.865675 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 07:11:29.889364 + : CelestialF||pb-IF5cVEkEHw==|| joined server -2022-12-07 07:11:35.911189 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 07:11:46.944626 + : SeparatistProtest33||pb-IF4lU0giAw==|| joined server -2022-12-07 07:13:18.275766 + : Android52820777||pb-IF4PVVI4Dg==|| joined server -2022-12-07 07:14:23.507156 + : Android64003601||pb-IF4SU1AoCA==|| joined server -2022-12-07 07:17:49.200571 + : nagarjun2000||pb-IF42VXYnUg==|| joined server -2022-12-07 07:18:05.242569 + : Android49994032||pb-IF5cVXcFXQ==|| joined server -2022-12-07 07:19:15.483422 + : jcar914||pb-JiNJARFZV0BBVV5AGUNRUVZGFkJXRlJL|| joined server -2022-12-07 07:19:35.553318 + : VROPPRO||pb-IF4dU20FHA==|| joined server -2022-12-07 07:20:05.651481 + : nagarjun2000||pb-IF42VXYnUg==|| joined server -2022-12-07 07:20:16.694435 + : Downstrea3||pb-IF4VU3QkFQ==|| joined server -2022-12-07 07:21:05.866257 + : Excommunic||pb-IF4MU3hdIw==|| joined server -2022-12-07 07:21:25.923858 + : BraverGard||pb-IF4iU00eLQ==|| joined server -2022-12-07 07:21:35.957381 + : Antibioti8||pb-IF4VVFIREg==|| joined server -2022-12-07 07:23:11.261288 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 07:24:13.495479 + : Downstrea3||pb-IF4VU3QkFQ==|| joined server -2022-12-07 07:25:01.665432 + : MadBOY5523||pb-LV4FUkUPAxNEVV8RRk5WBVVEEA==|| joined server -2022-12-07 07:25:34.804645 + : VarodaR||pb-IF4LVUlSIg==|| joined server -2022-12-07 07:26:30.995777 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-07 07:27:23.191741 + : prashantrajputreaba||pb-IF4OU0cMLw==|| joined server -2022-12-07 07:27:38.233269 + : Puneetlord||pb-IF4RU0ctKQ==|| joined server -2022-12-07 07:28:34.449172 + : ThirstyFro||pb-IF4jU3QHMw==|| joined server -2022-12-07 07:28:49.516656 + : ErenYeage3||pb-IF5QUk4lNg==|| joined server -2022-12-07 07:29:03.563915 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-07 07:29:22.640897 + : Android63489834||pb-IF5QU0YlIw==|| joined server -2022-12-07 07:29:51.729164 + : MrDevil||pb-IF4hBFgH|| joined server -2022-12-07 07:30:01.769462 + : SANKETBANSODE007||pb-IF4lVWwsEw==|| joined server -2022-12-07 07:30:33.871437 + : Irma6299||pb-IF5UJRIb|| joined server -2022-12-07 07:30:42.896404 + : RavithaShe||pb-IF4HUlovUg==|| joined server -2022-12-07 07:30:52.925273 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-07 07:32:40.337446 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-07 07:34:04.652080 + : EmergentRe||pb-IF4gU08KVQ==|| joined server -2022-12-07 07:35:46.006805 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-07 07:36:41.206394 + : PristineDirector27||pb-IF4CUxNeIQ==|| joined server -2022-12-07 07:37:15.309456 + : CyanConcentration25||pb-IF4mU3UZPw==|| joined server -2022-12-07 07:39:14.721055 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-07 07:40:07.927331 + : nikitamale||pb-IF5RU1EtMg==|| joined server -2022-12-07 07:41:59.290882 + : CyanConcentration25||pb-IF4mU3UZPw==|| joined server -2022-12-07 07:42:58.483427 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2022-12-07 07:43:15.533746 + : shazanmuda||pb-LV4FABVbUUQSVF5FGUJZUANLEw==|| joined server -2022-12-07 07:43:29.591679 + : premlatach||pb-IF4vVBYj|| joined server -2022-12-07 07:43:49.682440 + : TricksterH||pb-IF40U0UcFQ==|| joined server -2022-12-07 07:44:08.759908 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 07:44:41.855414 + : thunderstorms3054||pb-IF4zU3gzBA==|| joined server -2022-12-07 07:45:50.091667 + : MrDevil||pb-IF4hBFgH|| joined server -2022-12-07 07:45:54.107085 + : harshadkarale007||pb-IF4BU0wpDw==|| joined server -2022-12-07 07:48:21.658806 + : Phalgun~||pb-LV4FBUYOVRRBCl4UEkVRB1EWGA==|| joined server -2022-12-07 07:48:44.727362 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 07:49:29.893906 + : NOMERCY||pb-IF49U0QJDw==|| joined server -2022-12-07 07:50:17.071305 + : RedeemingTariff52||pb-IF4QU0s_Eg==|| joined server -2022-12-07 07:51:57.427354 + : king1of1brave1gaming||pb-IF4TVUcGKQ==|| joined server -2022-12-07 07:52:21.498504 + : Deplorabl7||pb-IF41Um0DCA==|| joined server -2022-12-07 07:52:36.550688 + : WeirdEmerg||pb-IF4qU0EmIg==|| joined server -2022-12-07 07:52:50.621147 + : Aayushmaangamerz||pb-IF4NU0oKNQ==|| joined server -2022-12-07 07:53:57.860143 + : RohanK||pb-IF4dCnou|| joined server -2022-12-07 07:54:16.929552 + : RedeemingTariff52||pb-IF4QU0s_Eg==|| joined server -2022-12-07 07:55:27.179812 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 07:55:34.210383 + : Gangster57||pb-IF43MxUp|| joined server -2022-12-07 07:56:25.383045 + : RedeemingTariff52||pb-IF4QU0s_Eg==|| joined server -2022-12-07 07:56:39.428697 + : bisht4189||pb-IF4SEHAl|| joined server -2022-12-07 07:57:01.505224 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-07 07:57:38.643741 + : StripedBulk22||pb-IF4UU04mDg==|| joined server -2022-12-07 07:57:58.702022 + : RedeemingTariff52||pb-IF4QU0s_Eg==|| joined server -2022-12-07 07:58:16.764696 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 07:59:27.031997 + : AngelicRecorder40||pb-IF4nVUpYJg==|| joined server -2022-12-07 08:00:42.301286 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-07 08:01:42.494174 + : RedeemingTariff52||pb-IF4QU0s_Eg==|| joined server -2022-12-07 08:02:19.607838 + : LunaticTactician7288||pb-IF4HU3hTEA==|| joined server -2022-12-07 08:05:17.217658 + : RedeemingTariff52||pb-IF4QU0s_Eg==|| joined server -2022-12-07 08:05:32.277809 + : RedeemingTariff52||pb-IF4QU0s_Eg==|| joined server -2022-12-07 08:05:54.334832 + : DreadedFor||pb-IF4rVRkkUA==|| joined server -2022-12-07 08:07:45.754999 + : UnnumberedRobbery17||pb-IF4KVRMyUw==|| joined server -2022-12-07 08:08:10.840412 + : WrittenDes||pb-IF4KUlkzXQ==|| joined server -2022-12-07 08:08:23.891385 + : NoName37860a||pb-IF5UVRgMKA==|| joined server -2022-12-07 08:08:34.935991 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-07 08:09:03.053356 + : Android55556523||pb-IF4uUmgjCQ==|| joined server -2022-12-07 08:09:29.156912 + : kiratsingh||pb-IF4eVEchNQ==|| joined server -2022-12-07 08:10:01.251509 + : Immeasura8||pb-IF5VUlYjNw==|| joined server -2022-12-07 08:10:14.305514 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 08:11:15.536150 + : FancyPan23||pb-IF5UUkMlDA==|| joined server -2022-12-07 08:11:33.601228 + : Android55348528||pb-IF4WUmYPIw==|| joined server -2022-12-07 08:11:54.668227 + : Niral||pb-IF5UU09YMg==|| joined server -2022-12-07 08:12:03.702797 + : bisht4189||pb-IF4SEHAl|| joined server -2022-12-07 08:12:28.793304 + : killadi7784||pb-IF5QUmgbAQ==|| joined server -2022-12-07 08:12:32.811204 + : Android62958044||pb-IF49VFcGNw==|| joined server -2022-12-07 08:13:45.025551 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 08:18:12.967223 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-07 08:19:20.164899 + : ChargingBe||pb-IF49UnYRLQ==|| joined server -2022-12-07 08:19:37.216866 + : nigthfewry||pb-IF49U3EPKw==|| joined server -2022-12-07 08:21:58.706427 + : AffectedInfancy49||pb-IF42U0QCEg==|| joined server -2022-12-07 08:26:09.620253 + : GildedBeet||pb-IF4AVXQeMg==|| joined server -2022-12-07 08:27:05.817886 + : Android54664134||pb-IF4TUhktCg==|| joined server -2022-12-07 08:29:06.231271 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-07 08:29:12.244862 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-07 08:30:04.420779 + : CannyCompl||pb-IF4QU2Y4MQ==|| joined server -2022-12-07 08:30:39.561635 + : UnorganizedProject25||pb-IF5XU08hLw==|| joined server -2022-12-07 08:31:04.667070 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-07 08:31:05.673608 + : jonhjonh55ph||pb-IF5TU1A9Pw==|| joined server -2022-12-07 08:31:50.837789 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-07 08:31:58.863206 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-07 08:32:51.039961 + : Android63733059||pb-IF4DU0lfEw==|| joined server -2022-12-07 08:35:20.641757 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 08:35:35.694556 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 08:35:43.728250 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 08:35:49.744561 + : CunningMix12||pb-IF5UU3VTAQ==|| joined server -2022-12-07 08:36:02.781556 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 08:37:33.093205 + : VelourFairy47692||pb-IF4rU0sfHw==|| joined server -2022-12-07 08:38:03.196989 + : NoName54913f||pb-IF4oElIy|| joined server -2022-12-07 08:38:41.330538 + : RedeemingTariff52||pb-IF4QU0s_Eg==|| joined server -2022-12-07 08:39:23.474866 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-07 08:39:58.603665 + : Android62472760||pb-IF48U3IcHw==|| joined server -2022-12-07 08:40:20.671605 + : Android54664134||pb-IF4TUhktCg==|| joined server -2022-12-07 08:41:42.955021 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-07 08:44:20.527264 + : Android63323436||pb-IF4UU0I-XA==|| joined server -2022-12-07 08:44:58.648920 + : Android39280108||pb-IF4IVG5ZNA==|| joined server -2022-12-07 08:45:14.693670 + : kingdeathe||pb-IF4TDRQI|| joined server -2022-12-07 08:45:17.699511 + : DineshRoma||pb-IF4xU04fMA==|| joined server -2022-12-07 08:46:32.951618 + : snow135||pb-IF4HVEReVw==|| joined server -2022-12-07 08:46:55.033070 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-07 08:47:55.233004 + : Android52470937||pb-IF4DVVgZJA==|| joined server -2022-12-07 08:48:00.243708 + : WirelessNe||pb-IF4nUkteVA==|| joined server -2022-12-07 08:48:39.389583 + : Bryanfurythemaster||pb-IF4WUhk7LA==|| joined server -2022-12-07 08:50:17.712889 + : IpnRagul752||pb-IF4iVWQ_Bg==|| joined server -2022-12-07 08:51:16.942310 + : Android60086806||pb-IF4tUxE_AQ==|| joined server -2022-12-07 08:52:18.189887 + : YoungerCol||pb-IF4cU3NcKQ==|| joined server -2022-12-07 08:53:07.391521 + : Android49994032||pb-IF5cVXcFXQ==|| joined server -2022-12-07 08:53:42.540227 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-07 08:55:10.863594 + : KÅRTÕS||pb-IF5WDVcI|| joined server -2022-12-07 08:55:44.982550 + : ahamadakthus||pb-IF5TE2M5|| joined server -2022-12-07 08:56:08.059949 + : ChewySmell||pb-IF49U08dJg==|| joined server -2022-12-07 08:56:19.080458 + : Android63827507||pb-IF4eU0xTJg==|| joined server -2022-12-07 08:57:32.384615 + : RustyUnicorn27009||pb-IF42U0kbEg==|| joined server -2022-12-07 08:59:03.702378 + : KÅRTÕS||pb-IF5WDVcI|| joined server -2022-12-07 08:59:29.796145 + : IpnRagul752||pb-IF4iVWQ_Bg==|| joined server -2022-12-07 08:59:43.825484 + : CleanerRes||pb-IF5QU0s6XQ==|| joined server -2022-12-07 08:59:48.846032 + : RustyUnicorn27009||pb-IF42U0kbEg==|| joined server -2022-12-07 09:00:02.898570 + : RustyUnicorn27009||pb-IF42U0kbEg==|| joined server -2022-12-07 09:01:42.274210 + : Ayushayy||pb-IF4HU00OIA==|| joined server -2022-12-07 09:02:08.382071 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-07 09:02:19.411446 + : VigilantMa||pb-IF4dU0FZNQ==|| joined server -2022-12-07 09:02:23.427334 + : MrDevil||pb-IF4hBFgH|| joined server -2022-12-07 09:03:16.644638 + : Ayushayy||pb-IF4HU00OIA==|| joined server -2022-12-07 09:03:18.649282 + : KimonoChen||pb-IF4iU0g-Ug==|| joined server -2022-12-07 09:03:40.718043 + : Ayushayy||pb-IF4HU00OIA==|| joined server -2022-12-07 09:04:09.837251 + : DexTerOuSVikAriA||pb-IF4GUxUZKg==|| joined server -2022-12-07 09:05:15.088913 + : Android63827507||pb-IF4eU0xTJg==|| joined server -2022-12-07 09:06:16.330216 + : NoName54913f||pb-IF4oElIy|| joined server -2022-12-07 09:06:45.443460 + : NoName54913f||pb-IF4oElIy|| joined server -2022-12-07 09:06:50.455670 + : Android60997107||pb-IF5cU2MYUg==|| joined server -2022-12-07 09:06:57.476253 + : Deepak11De||pb-IF40UhVdVA==|| joined server -2022-12-07 09:07:21.540854 + : Android61554211||pb-IF5WU2o9CQ==|| joined server -2022-12-07 09:08:09.712058 + : Moldyblade||pb-IF4UU0YbEQ==|| joined server -2022-12-07 09:09:02.856722 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-07 09:09:58.055065 + : SilentSalt1900||pb-IF4zU00GCg==|| joined server -2022-12-07 09:10:08.092995 + : NoName53045c||pb-IF5QU0cfHA==|| joined server -2022-12-07 09:10:55.269136 + : ChampionOre54448||pb-IF5QU3QiBw==|| joined server -2022-12-07 09:14:27.063970 + : AnandSingh1102||pb-IF5QU0g8IQ==|| joined server -2022-12-07 09:15:09.193425 + : DarkLordAscended||pb-IF4KU0UqLA==|| joined server -2022-12-07 09:16:15.257282 + : ramshaktis||pb-IF4iVHMbAg==|| joined server -2022-12-07 09:16:22.270679 + : NoName54913f||pb-IF4oElIy|| joined server -2022-12-07 09:16:32.306309 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-07 09:16:33.308158 + : AnandSingh1102||pb-IF5QU0g8IQ==|| joined server -2022-12-07 09:16:36.319445 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-07 09:16:51.372264 + : Android52131983||pb-IF4vVUs5Eg==|| joined server -2022-12-07 09:16:52.376046 + : Deepak11De||pb-IF40UhVdVA==|| joined server -2022-12-07 09:17:06.434469 + : GrossestAdvocate15||pb-IF4MVXYDXQ==|| joined server -2022-12-07 09:17:14.465191 + : MrDevil||pb-IF4hBFgH|| joined server -2022-12-07 09:18:03.653461 + : GodlikeFormality48||pb-IF5cU00CNA==|| joined server -2022-12-07 09:18:16.700271 + : Arulselva02||pb-IF4KU3dfAg==|| joined server -2022-12-07 09:18:30.751550 + : Phalgun~||pb-LV4FBUYOVRRBCl4UEkVRB1EWGA==|| joined server -2022-12-07 09:19:59.103846 + : AbhiiiOP1||pb-IF4LUlQ7Ng==|| joined server -2022-12-07 09:20:33.246540 + : alsoMV||pb-IF48U0kmIw==|| joined server -2022-12-07 09:20:37.266009 + : 1NesLan2||pb-IF4lU04zEA==|| joined server -2022-12-07 09:20:47.297097 + : RoyalGangs||pb-IF43UmMfKw==|| joined server -2022-12-07 09:21:24.436397 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-07 09:21:35.463113 + : Android63990466||pb-IF4NU09eBg==|| joined server -2022-12-07 09:22:04.569439 + : unstoppabl||pb-IF4TU0o6Aw==|| joined server -2022-12-07 09:22:07.580842 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-07 09:22:12.596943 + : OddJackal25574||pb-IF4cVFQM|| joined server -2022-12-07 09:23:42.892096 + : DependableChip25||pb-IF4GU0gbVQ==|| joined server -2022-12-07 09:24:26.047969 + : KimonoChen||pb-IF4iU0g-Ug==|| joined server -2022-12-07 09:25:36.295276 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-07 09:26:56.607356 + : FEKOS4101||pb-IF4RUhIiBA==|| joined server -2022-12-07 09:27:55.817315 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-07 09:29:09.090648 + : Android64004111||pb-IF4LU08CPQ==|| joined server -2022-12-07 09:29:21.121843 + : SriramHULK786||pb-IF5TUkoOHw==|| joined server -2022-12-07 09:31:11.549228 + : mikeemary9||pb-IF4GU1A_Jg==|| joined server -2022-12-07 09:31:40.656560 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-07 09:34:46.330117 + : IronSingle86||pb-IF4XU0sCMA==|| joined server -2022-12-07 09:35:19.445273 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-07 09:35:37.506473 + : Antibioti8||pb-IF4VVFIREg==|| joined server -2022-12-07 09:36:54.782177 + : NegativePo||pb-IF4UU1AMAA==|| joined server -2022-12-07 09:37:03.819186 + : UpbeatCeme||pb-IF4SUmwlVA==|| joined server -2022-12-07 09:37:46.002003 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-07 09:38:49.234459 + : GoㅤDㅤUsopp||pb-IF4PU3oqXQ==|| joined server -2022-12-07 09:39:23.348033 + : Android60150600||pb-IF5QUxQ-Cw==|| joined server -2022-12-07 09:39:57.470911 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 09:40:14.535254 + : PHOENIX么BEST||pb-IF4cVWEmVQ==|| joined server -2022-12-07 09:40:41.638586 + : LustrousC3||pb-IF4oUnVaNg==|| joined server -2022-12-07 09:41:10.732210 + : EducatedSa||pb-IF5TU1EZKA==|| joined server -2022-12-07 09:41:47.891656 + : Tabascol||pb-IF4RV2hfDQ==|| joined server -2022-12-07 09:43:44.297157 + : CaramelPha||pb-IF4cVEc4Ug==|| joined server -2022-12-07 09:43:47.303540 + : Android57045715||pb-IF4TUnYAPw==|| joined server -2022-12-07 09:44:02.352182 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-07 09:44:27.446215 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-07 09:44:29.452579 + : CoincidentalBelt39||pb-IF5UUnUpMw==|| joined server -2022-12-07 09:45:02.561218 + : Imtiyazsay||pb-IF5RVWIRIw==|| joined server -2022-12-07 09:45:06.580627 + : VENOMHEART007||pb-IF4QKGo8|| joined server -2022-12-07 09:45:12.602351 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 09:48:24.296976 + : MrDevil||pb-IF4hBFgH|| joined server -2022-12-07 09:49:50.579122 + : TimorousCo||pb-IF4xU3MxVw==|| joined server -2022-12-07 09:50:09.623063 + : sahilkhatri343593||pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL|| joined server -2022-12-07 09:50:12.632026 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-07 09:54:28.530158 + : PanickyResurgence23||pb-IF4lU0kkUA==|| joined server -2022-12-07 10:04:16.639661 + : SystemicAlbum16||pb-IF4nUmhfKA==|| joined server -2022-12-07 10:10:40.868700 + : PanickyResurgence23||pb-IF4lU0kkUA==|| joined server -2022-12-07 10:10:54.920872 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-07 10:11:03.942112 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-07 10:11:15.982814 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-07 10:13:07.375447 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-07 10:13:22.412787 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-07 10:15:20.818021 + : MuddyNpc89||pb-IF4pU08CCQ==|| joined server -2022-12-07 10:15:56.963309 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-07 10:18:39.557055 + : Phalgun~||pb-LV4FBUYOVRRBCl4UEkVRB1EWGA==|| joined server -2022-12-07 10:22:20.321177 + : Android62113852||pb-IF5UU3AyNw==|| joined server -2022-12-07 10:23:07.513717 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-07 10:25:42.035632 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-07 10:26:25.174846 + : MeagreClosure7||pb-IF4GU0ovHA==|| joined server -2022-12-07 10:26:28.190412 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 10:27:19.375811 + : SAUMYATHEK||pb-IF4SU1BSNQ==|| joined server -2022-12-07 10:27:30.415665 + : PainlessVe||pb-IF5UU0EkDg==|| joined server -2022-12-07 10:27:43.454364 + : Tejaswalkoli2411||pb-IF41VWEHFA==|| joined server -2022-12-07 10:27:49.478156 + : ronxbone||pb-IF4XU1BaKQ==|| joined server -2022-12-07 10:27:53.486992 + : BushyInstr||pb-IF4WU0QRIA==|| joined server -2022-12-07 10:28:12.556505 + : AbdominalH||pb-IF5cU0MIAw==|| joined server -2022-12-07 10:28:25.603711 + : TremendousCreek8||pb-IF4vUxkKDg==|| joined server -2022-12-07 10:28:27.612864 + : Callouse19||pb-IF4dU3ZcXA==|| joined server -2022-12-07 10:30:49.117451 + : TelegraphicTree29||pb-IF4qUkw9Pw==|| joined server -2022-12-07 10:31:24.233080 + : TremendousCreek8||pb-IF4vUxkKDg==|| joined server -2022-12-07 10:32:32.502497 + : ShortestRu||pb-IF4BVUQmNQ==|| joined server -2022-12-07 10:32:41.515204 + : Android63506823||pb-IF4xU0MIIg==|| joined server -2022-12-07 10:34:21.879526 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-07 10:35:37.151740 + : CHICKENBOO||pb-IF4AV1QqEQ==|| joined server -2022-12-07 10:35:45.177649 + : BLOODFRAUD||pb-IF4xUxA7Vg==|| joined server -2022-12-07 10:35:49.198649 + : AluminumCo||pb-IF4rU1BcDQ==|| joined server -2022-12-07 10:36:18.297625 + : ConfusedPr||pb-IF4sU01eKg==|| joined server -2022-12-07 10:38:05.756411 + : CrystalDragonz007||pb-IF4lVGsgJg==|| joined server -2022-12-07 10:38:34.922915 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 10:38:47.967932 + : Android60974634||pb-IF4rU2EZEw==|| joined server -2022-12-07 10:39:22.199514 + : InteriorDu||pb-IF4lUhECIQ==|| joined server -2022-12-07 10:40:29.421640 + : CharredFly||pb-IF4-V3IdPA==|| joined server -2022-12-07 10:44:04.217162 + : WeakerResonance54||pb-IF4AU0IoCA==|| joined server -2022-12-07 10:47:35.983515 + : Android51803058||pb-IF42VUg7Vg==|| joined server -2022-12-07 10:47:45.023075 + : Excommunic||pb-IF4MU3hdIw==|| joined server -2022-12-07 10:47:58.082359 + : HookedMedusa32||pb-IF4NU0sTNQ==|| joined server -2022-12-07 10:49:11.332441 + : SADGAMING7||pb-IF4-U0gtIA==|| joined server -2022-12-07 10:49:25.391936 + : ᴵᴬᴹズRaoJi||pb-IF4pVVQBEA==|| joined server -2022-12-07 10:50:02.519841 + : NiNJAMAN12||pb-IF4nU3EhMg==|| joined server -2022-12-07 10:50:43.657972 + : GymnasticPotassium48||pb-IF4BU2RYNA==|| joined server -2022-12-07 10:51:11.753342 + : HatefulAnnoyance26||pb-IF4PUkogDg==|| joined server -2022-12-07 10:52:55.086762 + : Android55556523||pb-IF4uUmgjCQ==|| joined server -2022-12-07 10:53:15.154869 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-07 10:53:20.175664 + : YoungerCol||pb-IF4cU3NcKQ==|| joined server -2022-12-07 10:53:45.254297 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-07 10:54:45.486573 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-07 10:55:00.538991 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 10:55:00.539609 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-07 10:57:28.172231 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2022-12-07 10:57:34.196034 + : hck3rr||pb-IF4UU3FYVg==|| joined server -2022-12-07 10:57:40.221793 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-07 10:58:54.477135 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-07 10:59:31.633699 + : Android63974702||pb-IF41U08uUw==|| joined server -2022-12-07 10:59:43.667786 + : Android55556523||pb-IF4uUmgjCQ==|| joined server -2022-12-07 11:00:08.773707 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 11:00:30.852723 + : HatefulAnnoyance26||pb-IF4PUkogDg==|| joined server -2022-12-07 11:00:37.862840 + : harshadkarale007||pb-IF4BU0wpDw==|| joined server -2022-12-07 11:01:32.066022 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-07 11:01:43.101368 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 11:01:52.139851 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-07 11:01:53.140594 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2022-12-07 11:01:59.159007 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-07 11:02:47.306977 + : PC432163||pb-IF42Uk8uLQ==|| joined server -2022-12-07 11:03:42.478748 + : AbsoluteVoid929||pb-JiNJVxBcXUZGWF9CFkNSV1RFFUhbQVJL|| joined server -2022-12-07 11:04:04.568781 + : FurryWorld13617||pb-IF5XUmE5HA==|| joined server -2022-12-07 11:05:47.948455 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-07 11:06:24.080930 + : FluffliFol||pb-IF4DVVcoVA==|| joined server -2022-12-07 11:06:40.135069 + : RottenTruc||pb-IF4yU08cKA==|| joined server -2022-12-07 11:08:32.530122 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-07 11:09:23.703848 + : larsyuan65||pb-IF4lU0cxXQ==|| joined server -2022-12-07 11:12:18.413578 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-07 11:12:53.542425 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-07 11:13:14.628296 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-07 11:13:23.645632 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-07 11:13:45.718883 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-07 11:14:52.933320 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-07 11:15:59.169330 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-07 11:17:11.446391 + : SecretFoot||pb-IF4pU1AJNA==|| joined server -2022-12-07 11:17:44.568699 + : FurryWorld13617||pb-IF5XUmE5HA==|| joined server -2022-12-07 11:19:37.982836 + : WeakerResonance54||pb-IF4AU0IoCA==|| joined server -2022-12-07 11:19:57.043641 + : Celajes||pb-IF4GU08fCA==|| joined server -2022-12-07 11:20:31.182045 + : fJiokekedo||pb-IF4PU04jCg==|| joined server -2022-12-07 11:20:54.280220 + : GreenKiwi4||pb-IF4qKFAu|| joined server -2022-12-07 11:21:00.408648 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-07 11:23:06.894559 + : RAGExLUINO||pb-IF5SUkwMAg==|| joined server -2022-12-07 11:24:10.084031 + : AbnormalTe||pb-IF4qU0cBLw==|| joined server -2022-12-07 11:27:14.858456 + : Android63796554||pb-IF4NU0ojAA==|| joined server -2022-12-07 11:29:28.297689 + : RZaM2006||pb-IF4sU00NAg==|| joined server -2022-12-07 11:29:32.305120 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-07 11:30:07.413230 + : kolopo13||pb-IF5WU1EPMg==|| joined server -2022-12-07 11:30:33.504592 + : unstoppabl||pb-IF4TU0o6Aw==|| joined server -2022-12-07 11:30:48.573084 + : kolopo13||pb-IF5WU1EPMg==|| joined server -2022-12-07 11:31:16.673479 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 11:33:07.080559 + : MRKHINDIGA||pb-IF4OU04GBg==|| joined server -2022-12-07 11:33:09.084764 + : lkiheasnal||pb-IF4cU0oEDg==|| joined server -2022-12-07 11:33:12.094544 + : ExcitableA||pb-IF4rUngmDQ==|| joined server -2022-12-07 11:33:49.201514 + : unstoppabl||pb-IF4TU0o6Aw==|| joined server -2022-12-07 11:34:21.326159 + : CharredFly||pb-IF4-V3IdPA==|| joined server -2022-12-07 11:37:34.999814 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-07 11:39:10.493788 + : LUC1FER005||pb-IF4WVFMDJg==|| joined server -2022-12-07 11:39:24.556517 + : Intrinsic7||pb-IF4XUxIOUA==|| joined server -2022-12-07 11:39:52.657564 + : Immeasura8||pb-IF5VUlYjNw==|| joined server -2022-12-07 11:39:54.669504 + : Android63916646||pb-IF41U00aAg==|| joined server -2022-12-07 11:40:26.781517 + : KindIsolat||pb-IF5QU3ogVw==|| joined server -2022-12-07 11:41:23.984881 + : Angil444||pb-IF4SU3VdLg==|| joined server -2022-12-07 11:41:39.043585 + : Android63888799||pb-IF4oU004KQ==|| joined server -2022-12-07 11:42:34.230832 + : Android63888799||pb-IF4oU004KQ==|| joined server -2022-12-07 11:42:38.241123 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-07 11:44:26.609318 + : YoungerCol||pb-IF4cU3NcKQ==|| joined server -2022-12-07 11:45:15.781947 + : Android63975207||pb-IF4IU08qLg==|| joined server -2022-12-07 11:45:49.916706 + : TremendousCreek8||pb-IF4vUxkKDg==|| joined server -2022-12-07 11:46:32.132163 + : HangryPilo||pb-IF5RV1hSAQ==|| joined server -2022-12-07 11:46:53.310706 + : Unannounc8||pb-IF4CU1A7LQ==|| joined server -2022-12-07 11:47:34.464116 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 11:48:02.660696 + : Adwaidh007||pb-IF4FU09cJg==|| joined server -2022-12-07 11:48:22.740520 + : Android63513412||pb-IF5TU0YsUA==|| joined server -2022-12-07 11:49:02.860245 + : Android63988326||pb-IF4rU1AuNQ==|| joined server -2022-12-07 11:49:19.944046 + : Android61975304||pb-IF4xU2waHw==|| joined server -2022-12-07 11:49:33.997936 + : TremendousCreek8||pb-IF4vUxkKDg==|| joined server -2022-12-07 11:49:36.000338 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 11:50:45.273292 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-07 11:50:59.332289 + : Android63988326||pb-IF4rU1AuNQ==|| joined server -2022-12-07 11:51:23.412683 + : GhoulishRa||pb-IF5VU0tZCQ==|| joined server -2022-12-07 11:52:09.662839 + : Unannounc8||pb-IF4CU1A7LQ==|| joined server -2022-12-07 11:52:24.710784 + : TriesomeComplacency||pb-IF5XVBUCFA==|| joined server -2022-12-07 11:52:38.744547 + : Android61975304||pb-IF4xU2waHw==|| joined server -2022-12-07 11:52:56.818652 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 11:53:05.952073 + : unstoppabl||pb-IF4TU0o6Aw==|| joined server -2022-12-07 11:54:15.240143 + : PseudoAttendance18||pb-IF4VVWsGIA==|| joined server -2022-12-07 11:54:37.308818 + : HÊRÇÚLÉS||pb-IF40UhdaNA==|| joined server -2022-12-07 11:55:32.740366 + : Uninvited5||pb-IF4FVXoRIw==|| joined server -2022-12-07 11:57:00.068180 + : TricksterH||pb-IF40U0UcFQ==|| joined server -2022-12-07 11:57:14.116296 + : Unannounc8||pb-IF4CU1A7LQ==|| joined server -2022-12-07 11:58:39.391859 + : SalilAseri||pb-JiNJARFfUENBVFlBFENTXVNKFUNdQ1RG|| joined server -2022-12-07 11:58:44.407134 + : SREEKANTH1943||pb-JiNJARBbXUFGXlpHGURYUFVCF0BYQ1VK|| joined server -2022-12-07 12:00:19.736973 + : TriesomeComplacency||pb-IF5XVBUCFA==|| joined server -2022-12-07 12:02:30.353581 + : Avinash290||pb-IF4yEm9c|| joined server -2022-12-07 12:02:52.428724 + : Unannounc8||pb-IF4CU1A7LQ==|| joined server -2022-12-07 12:04:29.934548 + : farhathu123||pb-IF40U0sKFA==|| joined server -2022-12-07 12:04:35.948477 + : Hero678||pb-IF4jU0YGIA==|| joined server -2022-12-07 12:05:34.157499 + : AloofSoldier58271||pb-IF40VEEMVA==|| joined server -2022-12-07 12:05:39.171307 + : HeaviestAward53||pb-IF4wU00cMg==|| joined server -2022-12-07 12:06:10.283730 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-07 12:07:14.702677 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-07 12:07:37.792416 + : Android55453214||pb-IF5TUmkNKg==|| joined server -2022-12-07 12:08:46.050155 + : Unadorned4||pb-IF4wUxEKPw==|| joined server -2022-12-07 12:09:33.181776 + : Avinash290||pb-IF4yEm9c|| joined server -2022-12-07 12:10:28.393160 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-07 12:10:40.422017 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-07 12:10:52.458758 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-07 12:12:09.756882 + : EditorialU||pb-IF5RUkgSAQ==|| joined server -2022-12-07 12:12:40.862371 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-07 12:12:45.879313 + : BrassAdmirer24||pb-IF4MU3MiAw==|| joined server -2022-12-07 12:13:39.058428 + : ChewySmell||pb-IF49U08dJg==|| joined server -2022-12-07 12:13:43.073243 + : farhathu123||pb-IF40U0sKFA==|| joined server -2022-12-07 12:14:49.304030 + : Android55930464||pb-IF4MUmcdCg==|| joined server -2022-12-07 12:15:24.439647 + : unstoppabl||pb-IF4TU0o6Aw==|| joined server -2022-12-07 12:17:46.952166 + : CutePterod||pb-IF4UU1AkKA==|| joined server -2022-12-07 12:17:47.956792 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-07 12:18:14.053333 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-07 12:19:14.237591 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-07 12:19:23.264463 + : SpontaneousTexture21||pb-IF5QUncABw==|| joined server -2022-12-07 12:20:08.451186 + : RoyalProph||pb-IF5TV2MzCA==|| joined server -2022-12-07 12:20:20.491248 + : Android61766625||pb-IF4FU2oJAg==|| joined server -2022-12-07 12:20:27.519684 + : farhathu123||pb-IF40U0sKFA==|| joined server -2022-12-07 12:22:45.026307 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-07 12:23:11.202288 + : RoyalProph||pb-IF5TV2MzCA==|| joined server -2022-12-07 12:23:50.335061 + : Symmetric9||pb-IF5TU20EMg==|| joined server -2022-12-07 12:24:15.427394 + : meetraul||pb-IF4TU00FLg==|| joined server -2022-12-07 12:24:16.428238 + : SpiritualA||pb-IF5SU2MfCw==|| joined server -2022-12-07 12:24:31.498256 + : CrimsonDua||pb-IF4IV3Q5CA==|| joined server -2022-12-07 12:26:04.834471 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 12:27:51.514853 + : MetabolicT||pb-IF4DU3UkXA==|| joined server -2022-12-07 12:27:57.538096 + : CowardlySting16||pb-IF5SVRYCHw==|| joined server -2022-12-07 12:28:32.662096 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-07 12:29:00.776545 + : IndifferentSound21||pb-IF4NUnkgNQ==|| joined server -2022-12-07 12:29:05.786478 + : U1KISHORE||pb-IF5UU1JZNA==|| joined server -2022-12-07 12:29:48.019520 + : Android47745010||pb-IF5dVWgRBg==|| joined server -2022-12-07 12:30:19.106492 + : Android62576681||pb-IF4RU3QoXQ==|| joined server -2022-12-07 12:30:52.233106 + : AsylbekDan||pb-IF4QVU8NPA==|| joined server -2022-12-07 12:31:01.259500 + : Android63946527||pb-IF4dU3FeVg==|| joined server -2022-12-07 12:32:21.518236 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 12:32:35.581633 + : HeraldicRo||pb-IF4TU08KXQ==|| joined server -2022-12-07 12:32:48.626607 + : shazan9950||pb-IF5QVFRdIQ==|| joined server -2022-12-07 12:33:53.856359 + : ExposedEditorial36||pb-IF4AU0slNQ==|| joined server -2022-12-07 12:34:54.085870 + : VeteranGuy||pb-IF5SU0hTEw==|| joined server -2022-12-07 12:35:32.233080 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-07 12:36:03.338725 + : NoName44250c||pb-IF49U0oCKQ==|| joined server -2022-12-07 12:36:48.508487 + : Android58405739||pb-IF4WUko_JA==|| joined server -2022-12-07 12:37:25.638200 + : Android49166175||pb-IF48VXAqBg==|| joined server -2022-12-07 12:38:09.851937 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-07 12:38:35.953322 + : HeaviestAward53||pb-IF4wU00cMg==|| joined server -2022-12-07 12:38:41.974706 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-07 12:38:48.994036 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-07 12:39:19.075876 + : HipRooster87595||pb-IF4MVXQdNw==|| joined server -2022-12-07 12:39:40.177060 + : Martinphil||pb-IF4cU3oSUw==|| joined server -2022-12-07 12:39:44.195297 + : Android48433667||pb-IF4IUmxdXA==|| joined server -2022-12-07 12:40:02.270309 + : NoName44250c||pb-IF49U0oCKQ==|| joined server -2022-12-07 12:40:38.379813 + : bisht4189||pb-IF4SEHAl|| joined server -2022-12-07 12:40:56.446790 + : Android38051045||pb-IF43VGZbCw==|| joined server -2022-12-07 12:42:15.749235 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-07 12:43:49.082470 + : bisht4189||pb-IF4SEHAl|| joined server -2022-12-07 12:43:56.102318 + : xcross2612||pb-JiNJARFeVEdJWllGFURZVFJBEUBbQlVK|| joined server -2022-12-07 12:45:03.331313 + : Android63767506||pb-IF5SU0seMQ==|| joined server -2022-12-07 12:46:23.644034 + : SpiritualA||pb-IF5SU2MfCw==|| joined server -2022-12-07 12:46:25.651471 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-07 12:46:31.664357 + : InhumaneDa||pb-IF4VUhAKEg==|| joined server -2022-12-07 12:47:09.796515 + : Ombala9||pb-IF48U3pfCw==|| joined server -2022-12-07 12:47:52.947211 + : BluishBrai||pb-IF4FU0gKXQ==|| joined server -2022-12-07 12:48:19.035628 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-07 12:48:30.064949 + : shazan9950||pb-IF5QVFRdIQ==|| joined server -2022-12-07 12:48:46.124928 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-07 12:48:57.176223 + : sonugavale||pb-IF40VG4yUA==|| joined server -2022-12-07 12:49:07.213839 + : praveenkumar456q||pb-IF4yU0gSKA==|| joined server -2022-12-07 12:49:44.346532 + : DarishLend||pb-IF5VU0IZJA==|| joined server -2022-12-07 12:49:55.505829 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-07 12:50:00.523245 + : Humanist18||pb-IF4gU08DFw==|| joined server -2022-12-07 12:50:13.551616 + : UnbornObse||pb-IF4LU3IhCg==|| joined server -2022-12-07 12:50:25.607793 + : NoName44250c||pb-IF49U0oCKQ==|| joined server -2022-12-07 12:50:49.694546 + : TougherMan||pb-IF4GU0M6Lg==|| joined server -2022-12-07 12:51:10.778667 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-07 12:51:36.865597 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-07 12:51:52.927105 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-07 12:52:31.058047 + : hacker1199||pb-IF4BU0cDNg==|| joined server -2022-12-07 12:52:35.075088 + : MonthlyRepayment23||pb-IF4iU2sIPw==|| joined server -2022-12-07 12:52:55.157903 + : kumargchet||pb-IF4FU28fVg==|| joined server -2022-12-07 12:53:02.187978 + : MonthlyRepayment23||pb-IF4iU2sIPw==|| joined server -2022-12-07 12:55:16.660768 + : DomesticLimitation12||pb-IF4BVVk5XQ==|| joined server -2022-12-07 12:55:49.778069 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-07 12:56:55.995644 + : Unrecogni9||pb-IF42U08RIg==|| joined server -2022-12-07 12:57:06.037222 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-07 12:57:12.058125 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-07 12:58:00.242748 + : VvFightVv||pb-IF4xU0o7Ug==|| joined server -2022-12-07 12:58:02.255462 + : Android63946527||pb-IF4dU3FeVg==|| joined server -2022-12-07 12:58:20.316091 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-07 12:58:28.349423 + : AQIB771799||pb-IF5SUlcuBA==|| joined server -2022-12-07 12:58:30.356461 + : SRD1111997||pb-IF4TABUN|| joined server -2022-12-07 12:59:05.453045 + : UncheckedF||pb-IF4xU04eUw==|| joined server -2022-12-07 12:59:17.503398 + : Illustrio9||pb-IF4PU08vUQ==|| joined server -2022-12-07 13:02:09.250376 + : WeakerResonance54||pb-IF4AU0IoCA==|| joined server -2022-12-07 13:03:32.710951 + : TranslucentSpeed26||pb-IF4wU0gdPA==|| joined server -2022-12-07 13:03:55.791437 + : Android63970828||pb-IF4pU08BVA==|| joined server -2022-12-07 13:05:11.386944 + : aslammalik||pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB|| joined server -2022-12-07 13:06:24.662717 + : SillyMembrane32||pb-IF4AU04IHQ==|| joined server -2022-12-07 13:06:34.698903 + : HipTea64||pb-IF4oU0sgAQ==|| joined server -2022-12-07 13:06:43.732016 + : Android56841061||pb-IF4DUnQeIA==|| joined server -2022-12-07 13:07:19.876092 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-07 13:07:32.908752 + : Android56841061||pb-IF4DUnQeIA==|| joined server -2022-12-07 13:07:46.967077 + : Android61865080||pb-IF4sU2sqHQ==|| joined server -2022-12-07 13:08:40.167477 + : rawoofraw||pb-IF5RU1EbMw==|| joined server -2022-12-07 13:08:52.208277 + : ColTPaV||pb-IF4BUxlSNg==|| joined server -2022-12-07 13:09:50.406963 + : Android61691788||pb-IF5VU2wgVw==|| joined server -2022-12-07 13:11:23.705369 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-07 13:11:31.735766 + : kannadapora||pb-JiNJARFdU0tCWFtDGEFVUVZLFUFbQlBH|| joined server -2022-12-07 13:12:41.976456 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-07 13:13:09.066958 + : vasanthkab||pb-IF4lVWE_Hw==|| joined server -2022-12-07 13:14:28.368439 + : hardik1334||pb-IF4jUlE6Ag==|| joined server -2022-12-07 13:15:41.628802 + : mathiyaM||pb-IF4WU0gyLA==|| joined server -2022-12-07 13:15:58.693586 + : SillyMembrane32||pb-IF4AU04IHQ==|| joined server -2022-12-07 13:16:37.844790 + : Android48690552||pb-IF4XVXIiLQ==|| joined server -2022-12-07 13:17:50.100006 + : Android39427586||pb-IF4OVG8kAQ==|| joined server -2022-12-07 13:18:06.159047 + : JudiciousJ||pb-IF4oU00uMA==|| joined server -2022-12-07 13:19:24.440315 + : StripedBulk22||pb-IF4UU04mDg==|| joined server -2022-12-07 13:19:39.502550 + : Android48907943||pb-IF4DVW4HFA==|| joined server -2022-12-07 13:19:44.518865 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-07 13:19:50.540137 + : TusharRawa||pb-IF4cUlIHFQ==|| joined server -2022-12-07 13:21:03.781514 + : mhatre989||pb-IF4-M2Ic|| joined server -2022-12-07 13:21:44.951260 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-07 13:21:57.989133 + : Android63489834||pb-IF5QU0YlIw==|| joined server -2022-12-07 13:22:49.171524 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-07 13:23:17.266082 + : AmazingTriangle14295||pb-IF5SU00_Ag==|| joined server -2022-12-07 13:23:35.316965 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-07 13:24:11.422816 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-07 13:24:22.462065 + : Ryan11005||pb-IF4pU09ZXQ==|| joined server -2022-12-07 13:25:05.733383 + : paratròóper||pb-IF4IV04ZKw==|| joined server -2022-12-07 13:25:17.790120 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-07 13:27:04.124788 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-07 13:27:24.197993 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-07 13:27:48.277488 + : Unselfish9||pb-IF4RUxUTUA==|| joined server -2022-12-07 13:28:25.430698 + : WeakerResonance54||pb-IF4AU0IoCA==|| joined server -2022-12-07 13:30:48.938551 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-07 13:31:37.199031 + : iTzAnuragP||pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF|| joined server -2022-12-07 13:32:07.315754 + : blackury2003||pb-IF5XVVACLA==|| joined server -2022-12-07 13:34:15.727995 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-07 13:37:27.082045 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-07 13:40:18.676899 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-07 13:41:40.084450 + : Android63602991||pb-IF5RU0gMCw==|| joined server -2022-12-07 13:42:14.176417 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-07 13:42:28.224523 + : UnnoticedO||pb-IF4cU1BSCg==|| joined server -2022-12-07 13:42:31.233436 + : Android62073479||pb-IF4yU2sFEQ==|| joined server -2022-12-07 13:44:05.539031 + : prashantrajputreaba||pb-IF4OU0cMLw==|| joined server -2022-12-07 13:45:08.770133 + : ThirstyFro||pb-IF4jU3QHMw==|| joined server -2022-12-07 13:46:39.111997 + : mrdhruv09||pb-IF4NVWMEXA==|| joined server -2022-12-07 13:48:35.561042 + : DevilDhanu2404||pb-IF4cU0IcMw==|| joined server -2022-12-07 13:49:43.785332 + : Aryannnnnヅ||pb-IF4tVXIbMQ==|| joined server -2022-12-07 13:49:52.832347 + : Android61865080||pb-IF4sU2sqHQ==|| joined server -2022-12-07 13:50:16.908992 + : Android64002853||pb-IF5RU1IZMg==|| joined server -2022-12-07 13:51:48.186848 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-07 13:52:08.252564 + : UngainlyAluminum35||pb-IF4XU0E5AQ==|| joined server -2022-12-07 13:52:36.338190 + : LocalSite5||pb-IF49V0MJBg==|| joined server -2022-12-07 13:53:23.546267 + : weirdassalien27||pb-IF4PVUwcFw==|| joined server -2022-12-07 13:55:09.967478 + : Imposter08||pb-IF5WUxAJHw==|| joined server -2022-12-07 13:55:22.014541 + : mohammedsafeek2||pb-IF4KVWgcBw==|| joined server -2022-12-07 13:55:25.028477 + : UngainlyAluminum35||pb-IF4XU0E5AQ==|| joined server -2022-12-07 13:55:44.119637 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-07 13:55:58.192642 + : TelltaleEd||pb-IF4QU04HIQ==|| joined server -2022-12-07 13:56:16.266678 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 13:57:58.612975 + : Android63796554||pb-IF4NU0ojAA==|| joined server -2022-12-07 13:58:18.002142 + : mohammedsafeek2||pb-IF4KVWgcBw==|| joined server -2022-12-07 13:58:27.034165 + : PRASADGOLE007||pb-IF4yU05aKg==|| joined server -2022-12-07 13:58:45.094304 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-07 13:59:16.197356 + : UngainlyAluminum35||pb-IF4XU0E5AQ==|| joined server -2022-12-07 14:02:03.771752 + : Android63796554||pb-IF4NU0ojAA==|| joined server -2022-12-07 14:03:37.122749 + : ThirstyFro||pb-IF4jU3QHMw==|| joined server -2022-12-07 14:03:45.157857 + : Android63927994||pb-IF4hU00mAA==|| joined server -2022-12-07 14:04:41.356748 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-07 14:04:56.409035 + : ChewySmell||pb-IF49U08dJg==|| joined server -2022-12-07 14:05:00.418202 + : Android63740169||pb-IF4WU0kuEw==|| joined server -2022-12-07 14:05:25.513748 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-07 14:07:03.362310 + : MilesAboveYou||pb-IF4CUhM5AQ==|| joined server -2022-12-07 14:07:19.417322 + : Opportunit||pb-IF4FVUMSCQ==|| joined server -2022-12-07 14:07:39.694387 + : Arthurv813||pb-IF48UxkmUw==|| joined server -2022-12-07 14:07:49.721779 + : InfamousKe||pb-JiNJARFaUkNGW1lDFEVVXFZFEURbQlFG|| joined server -2022-12-07 14:07:52.725344 + : FancyPan23||pb-IF5UUkMlDA==|| joined server -2022-12-07 14:08:31.866055 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-07 14:09:11.022177 + : Android64004361||pb-IF43U1AoIg==|| joined server -2022-12-07 14:09:27.086383 + : weirdassalien27||pb-IF4PVUwcFw==|| joined server -2022-12-07 14:10:21.634325 + : HeedlessCalcium28||pb-IF5WU3kZAQ==|| joined server -2022-12-07 14:11:02.814132 + : Dramebaazmj||pb-IF4eU3M6Iw==|| joined server -2022-12-07 14:11:08.836573 + : sparklesja||pb-IF5SUksOCg==|| joined server -2022-12-07 14:11:21.891081 + : sparklesja||pb-IF5SUksOCg==|| joined server -2022-12-07 14:12:19.096432 + : ExpensiveM||pb-IF4UU1AkAw==|| joined server -2022-12-07 14:12:38.153392 + : ronxbone||pb-IF4XU1BaKQ==|| joined server -2022-12-07 14:14:00.778158 + : FruitlessVision8||pb-IF4tU08kIQ==|| joined server -2022-12-07 14:14:10.827800 + : UngainlyAluminum35||pb-IF4XU0E5AQ==|| joined server -2022-12-07 14:14:40.945021 + : Android57008711||pb-IF4RUnY9IQ==|| joined server -2022-12-07 14:15:08.058334 + : FamedNotebook13||pb-IF4JVVgAPA==|| joined server -2022-12-07 14:15:37.153221 + : AncientGauntlet95135||pb-IF4hVG4AIw==|| joined server -2022-12-07 14:15:40.165585 + : Phalgun~||pb-LV4FBUYOVRRBCl4UEkVRB1EWGA==|| joined server -2022-12-07 14:16:42.404642 + : DilatoryHo||pb-IF48U3FaNQ==|| joined server -2022-12-07 14:18:35.803346 + : PresetTent||pb-IF4oU1AtIA==|| joined server -2022-12-07 14:19:08.915798 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-07 14:20:27.532190 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-07 14:20:40.577908 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 14:20:58.626418 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-07 14:21:04.650546 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-07 14:22:29.946208 + : masterkiller12398745||pb-IF4eU0kxCg==|| joined server -2022-12-07 14:22:53.034906 + : srk5553||pb-IF4oVU8CIQ==|| joined server -2022-12-07 14:23:40.192705 + : THANATOS6660||pb-IF4sVFkqEw==|| joined server -2022-12-07 14:24:50.445175 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-07 14:25:04.490694 + : DilatoryHo||pb-IF48U3FaNQ==|| joined server -2022-12-07 14:25:33.573716 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-07 14:26:27.797499 + : Flamboya24||pb-IF4MVxM8Jw==|| joined server -2022-12-07 14:26:40.832826 + : srk5553||pb-IF4oVU8CIQ==|| joined server -2022-12-07 14:26:57.918915 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-07 14:27:57.120474 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-07 14:28:06.162832 + : ChiseledBug48488||pb-IF4PV1ENCg==|| joined server -2022-12-07 14:30:49.258609 + : TricksterH||pb-IF40U0UcFQ==|| joined server -2022-12-07 14:31:00.291442 + : ChumpyBookworm7199||pb-IF4OUnQ7Lg==|| joined server -2022-12-07 14:33:27.811470 + : CowardlyAi||pb-IF5UVRAzPA==|| joined server -2022-12-07 14:33:37.855738 + : Gashmeer90||pb-IF4BU08ANg==|| joined server -2022-12-07 14:33:49.901545 + : Android57008711||pb-IF4RUnY9IQ==|| joined server -2022-12-07 14:34:30.025299 + : AsteroidBo||pb-IF4CU04ePQ==|| joined server -2022-12-07 14:34:42.072603 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-07 14:34:46.092182 + : AstroAnish||pb-IF5WUmQgEw==|| joined server -2022-12-07 14:34:50.228477 + : Android58405741||pb-IF4BUkpcMQ==|| joined server -2022-12-07 14:35:48.450383 + : CosmicOutl||pb-IF4yUng_XA==|| joined server -2022-12-07 14:36:51.662188 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-07 14:39:36.207976 + : Intermed12||pb-IF41U08-Eg==|| joined server -2022-12-07 14:39:41.238143 + : jonathansanthosh||pb-IF4-U0kNVQ==|| joined server -2022-12-07 14:41:57.029661 + : vinothmptc||pb-IF4LU28SJA==|| joined server -2022-12-07 14:42:01.040184 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-07 14:42:15.083935 + : Android48690552||pb-IF4XVXIiLQ==|| joined server -2022-12-07 14:42:42.172233 + : Android63635565||pb-IF4tU0YdAw==|| joined server -2022-12-07 14:43:02.248437 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-07 14:43:59.454252 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-07 14:44:29.562973 + : weirdassalien27||pb-IF4PVUwcFw==|| joined server -2022-12-07 14:44:58.661610 + : Android57008711||pb-IF4RUnY9IQ==|| joined server -2022-12-07 14:45:50.851267 + : MRSAD73||pb-IF4vU0QSPA==|| joined server -2022-12-07 14:46:00.871852 + : THANATOS6660||pb-IF4sVFkqEw==|| joined server -2022-12-07 14:46:29.970622 + : Rehanghazi||pb-IF4AU0peCg==|| joined server -2022-12-07 14:46:50.053615 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-07 14:46:55.070898 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-07 14:46:58.081975 + : Enigmatic7||pb-IF4iU0lSFQ==|| joined server -2022-12-07 14:47:22.488287 + : NobiShizu4||pb-IF5RUlcEMA==|| joined server -2022-12-07 14:47:24.499943 + : RayyonMid||pb-IF4sU08mMA==|| joined server -2022-12-07 14:47:42.563690 + : NarutoUsum||pb-IF4jVGoTCg==|| joined server -2022-12-07 14:47:57.625501 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-07 14:49:04.859965 + : Android63943090||pb-IF48U09TVQ==|| joined server -2022-12-07 14:49:25.946871 + : Android63387948||pb-IF4cU0IPJg==|| joined server -2022-12-07 14:49:43.000559 + : Android57008711||pb-IF4RUnY9IQ==|| joined server -2022-12-07 14:50:13.634898 + : MrDevil||pb-IF4hBFgH|| joined server -2022-12-07 14:50:58.925310 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-07 14:51:07.950535 + : Android61835640||pb-IF4cU2s-Fg==|| joined server -2022-12-07 14:52:02.118813 + : sunilu338||pb-IF4tUmo9VQ==|| joined server -2022-12-07 14:52:15.169110 + : Android63737055||pb-IF4BU0gJCw==|| joined server -2022-12-07 14:52:19.183123 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-07 14:52:43.267089 + : AffectiveH||pb-IF5QU2hSFw==|| joined server -2022-12-07 14:52:51.372137 + : PracticalTwilight48||pb-IF4WUlQeVQ==|| joined server -2022-12-07 14:52:56.391566 + : MrSahil||pb-IF4BU01cIA==|| joined server -2022-12-07 14:53:24.491593 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-07 14:54:03.645739 + : Android61922069||pb-IF5TU24ONQ==|| joined server -2022-12-07 14:54:23.718501 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-07 14:54:27.922252 + : PracticalTwilight48||pb-IF4WUlQeVQ==|| joined server -2022-12-07 14:54:29.930601 + : OriginalBlaster49||pb-IF4uU0kNUw==|| joined server -2022-12-07 14:54:53.281103 + : Android62958044||pb-IF49VFcGNw==|| joined server -2022-12-07 14:55:02.307736 + : srk5553||pb-IF4oVU8CIQ==|| joined server -2022-12-07 14:55:13.332470 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-07 14:55:31.386312 + : Imtiyazsay||pb-IF5RVWIRIw==|| joined server -2022-12-07 14:55:45.425807 + : MrSahil||pb-IF4BU01cIA==|| joined server -2022-12-07 14:56:46.655718 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-07 14:56:54.681228 + : NOORULAMEENAK57THALA||pb-IF4cVEsJAg==|| joined server -2022-12-07 14:57:45.872894 + : StressfulS||pb-IF4MU00oLg==|| joined server -2022-12-07 14:59:16.218100 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-07 14:59:31.252015 + : RenegadeWi||pb-IF4cU1AqKg==|| joined server -2022-12-07 14:59:46.308954 + : FrontPlane24||pb-IF4WVU9TLg==|| joined server -2022-12-07 15:00:11.402670 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-07 15:02:01.243435 + : RogueAlleg||pb-IF4uU0UjUQ==|| joined server -2022-12-07 15:03:16.920785 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-07 15:05:09.905566 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-07 15:05:30.998490 + : kannadapora||pb-JiNJARFdU0tCWFtDGEFVUVZLFUFbQlBH|| joined server -2022-12-07 15:07:11.666444 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-07 15:07:38.812309 + : VishalDorl||pb-IF4CLUED|| joined server -2022-12-07 15:07:51.860885 + : GoㅤDㅤUsopp||pb-IF4PU3oqXQ==|| joined server -2022-12-07 15:09:43.282610 + : samkng2728||pb-IF4zU0M4BA==|| joined server -2022-12-07 15:09:53.310620 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-07 15:14:34.366376 + : ZealousDin||pb-IF4dU04KKw==|| joined server -2022-12-07 15:16:01.708652 + : pluscradles26||pb-IF4HU0xZXQ==|| joined server -2022-12-07 15:17:19.009503 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-07 15:17:34.058250 + : Android59340397||pb-IF4XUlQNLw==|| joined server -2022-12-07 15:19:12.445432 + : mhatre989||pb-IF4-M2Ic|| joined server -2022-12-07 15:19:28.500203 + : pluscradles26||pb-IF4HU0xZXQ==|| joined server -2022-12-07 15:20:02.619693 + : samkng2728||pb-IF4zU0M4BA==|| joined server -2022-12-07 15:20:24.714459 + : Imtiyazsay||pb-IF5RVWIRIw==|| joined server -2022-12-07 15:21:16.940031 + : BrownCreat||pb-IF4lB0sz|| joined server -2022-12-07 15:22:08.137561 + : Whimperi28||pb-IF4tU1A_Vg==|| joined server -2022-12-07 15:23:13.354466 + : GoㅤDㅤUsopp||pb-IF4PU3oqXQ==|| joined server -2022-12-07 15:23:20.375077 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-07 15:23:51.479689 + : Engrossi18||pb-IF4qVWg5MA==|| joined server -2022-12-07 15:24:27.598652 + : ModalHandl||pb-IF4NU0cpFw==|| joined server -2022-12-07 15:25:55.298876 + : DownSadnes||pb-IF5UU04PPw==|| joined server -2022-12-07 15:26:25.390469 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2022-12-07 15:26:46.482352 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 15:29:47.622686 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2022-12-07 15:29:47.622980 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-07 15:29:48.627914 + : ModalHandl||pb-IF4NU0cpFw==|| joined server -2022-12-07 15:29:49.627334 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-07 15:29:51.629961 + : NoName53045c||pb-IF5QU0cfHA==|| joined server -2022-12-07 15:29:53.636831 + : samkng2728||pb-IF4zU0M4BA==|| joined server -2022-12-07 15:29:56.648591 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 15:30:11.693410 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-07 15:31:12.924678 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-07 15:31:26.986405 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2022-12-07 15:31:48.063457 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 15:32:09.145860 + : Whimsical8||pb-IF4QUlgKAA==|| joined server -2022-12-07 15:32:13.165252 + : Android63373695||pb-IF5TU0QJUQ==|| joined server -2022-12-07 15:33:33.430180 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-07 15:34:31.614774 + : SAHILJOSHI2003||pb-IF4DV3UZUA==|| joined server -2022-12-07 15:35:01.690147 + : 9584555539||pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB|| joined server -2022-12-07 15:35:16.754294 + : 9584555539||pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB|| joined server -2022-12-07 15:35:47.853636 + : MassiveCough58||pb-IF4-U0soEg==|| joined server -2022-12-07 15:35:49.856836 + : AirborneRe||pb-IF5dU1E_UQ==|| joined server -2022-12-07 15:36:04.897640 + : Android63334530||pb-IF4OU0JcNw==|| joined server -2022-12-07 15:36:11.914385 + : Android63334530||pb-IF4OU0JcNw==|| joined server -2022-12-07 15:36:57.082836 + : NeuroticFe||pb-IF4XU0gINA==|| joined server -2022-12-07 15:38:32.382358 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 15:38:38.397358 + : ShailiPate||pb-IF4NUmovVg==|| joined server -2022-12-07 15:38:56.465519 + : Intermed12||pb-IF41U08-Eg==|| joined server -2022-12-07 15:39:01.478256 + : ᴿˢᏴᎡᎪƝᎠ||pb-IF4FU3UmHw==|| joined server -2022-12-07 15:39:58.693288 + : GreenKiwi4||pb-IF4qKFAu|| joined server -2022-12-07 15:42:19.206705 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-07 15:44:11.567223 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-07 15:45:27.846681 + : Intermed12||pb-IF41U08-Eg==|| joined server -2022-12-07 15:47:12.207258 + : GoDFather6||pb-IF4pVHAlKw==|| joined server -2022-12-07 15:48:02.379493 + : viru199554||pb-IF4VU3EjBg==|| joined server -2022-12-07 15:48:29.465148 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 15:49:52.772883 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-07 15:50:01.813995 + : ᴿˢᏴᎡᎪƝᎠ||pb-IF4FU3UmHw==|| joined server -2022-12-07 15:50:22.905331 + : Android63927994||pb-IF4hU00mAA==|| joined server -2022-12-07 15:50:26.916239 + : CosmicOutl||pb-IF4yUng_XA==|| joined server -2022-12-07 15:50:43.974169 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-07 15:50:50.005707 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-07 15:51:58.251034 + : Android63902876||pb-IF4DU00TEw==|| joined server -2022-12-07 15:53:23.519655 + : GloatingM3||pb-JiNJARBdVENGXltFEURYVlVBFEBYTldH|| joined server -2022-12-07 15:53:42.589500 + : ᴿˢᏴᎡᎪƝᎠ||pb-IF4FU3UmHw==|| joined server -2022-12-07 15:53:48.607745 + : IndependentBoard34||pb-IF4gU0Y7AQ==|| joined server -2022-12-07 15:53:58.644207 + : Android62430724||pb-IF4hU3EgJA==|| joined server -2022-12-07 15:54:07.676297 + : bhaumikrat||pb-JiNJARFZUUpJX1tGE0dWVlJEE0NdQFhB|| joined server -2022-12-07 15:55:26.965517 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-07 15:56:11.135571 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-07 15:56:29.200289 + : SterlingCeiling39||pb-IF48U1AyAQ==|| joined server -2022-12-07 15:56:48.270483 + : OctagonalRobe38||pb-IF4tU08pPw==|| joined server -2022-12-07 15:57:23.396608 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-07 15:58:01.504071 + : VishalDorl||pb-IF4CLUED|| joined server -2022-12-07 15:58:28.594252 + : samkng2728||pb-IF4zU0M4BA==|| joined server -2022-12-07 15:58:50.670939 + : superchan9||pb-IF4pU2sgJw==|| joined server -2022-12-07 15:59:02.719579 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 15:59:08.746349 + : PoserHoney||pb-IF43BUs-|| joined server -2022-12-07 15:59:23.789319 + : AridSum53||pb-IF4WU0wSHA==|| joined server -2022-12-07 16:00:14.957031 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2022-12-07 16:00:30.014625 + : newnoobgamingtamil||pb-IF4hU0ooFw==|| joined server -2022-12-07 16:01:22.204924 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-07 16:01:40.262713 + : ShaikhFaha||pb-IF5dV21TEA==|| joined server -2022-12-07 16:02:41.501888 + : hacker1199||pb-IF4BU0cDNg==|| joined server -2022-12-07 16:03:02.574256 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-07 16:03:14.603924 + : TreelessPr||pb-IF4LU2NaIA==|| joined server -2022-12-07 16:03:47.699438 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-07 16:03:52.712080 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-07 16:03:55.728430 + : BAYMAX||pb-IF4BV1ZfCQ==|| joined server -2022-12-07 16:04:06.782938 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-07 16:04:10.797833 + : Sumanth386||pb-IF5TUm4DNg==|| joined server -2022-12-07 16:04:25.833067 + : sls12III||pb-JiNJARFTVUpGWFtGGEFSVVRDEUhcRlND|| joined server -2022-12-07 16:04:41.890214 + : AngryTorch73254||pb-IF4iV1cPMg==|| joined server -2022-12-07 16:04:52.933901 + : Android63750463||pb-IF4dU0lTHA==|| joined server -2022-12-07 16:05:20.077724 + : pluscradles26||pb-IF4HU0xZXQ==|| joined server -2022-12-07 16:05:41.164058 + : InvasiveS2||pb-IF4tUmYMXA==|| joined server -2022-12-07 16:05:51.195430 + : Sumanth386||pb-IF5TUm4DNg==|| joined server -2022-12-07 16:06:06.238903 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-07 16:06:28.327204 + : Sumanth386||pb-IF5TUm4DNg==|| joined server -2022-12-07 16:06:43.369330 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2022-12-07 16:06:59.430273 + : hiimharissh||pb-IF4xUmhTLA==|| joined server -2022-12-07 16:10:14.116604 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-07 16:10:53.264938 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2022-12-07 16:11:15.343325 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2022-12-07 16:11:20.367228 + : Scharlau123||pb-IF4CUm9fMw==|| joined server -2022-12-07 16:12:03.529161 + : GutturalRecorder44||pb-IF4sUkwBAw==|| joined server -2022-12-07 16:12:47.694619 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-07 16:12:51.704981 + : Devod7766||pb-IF4cUlMnEg==|| joined server -2022-12-07 16:13:15.799702 + : Ayushayy||pb-IF4HU00OIA==|| joined server -2022-12-07 16:15:04.165452 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-07 16:15:20.220009 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-07 16:15:54.344409 + : ExpensiveM||pb-IF4UU1AkAw==|| joined server -2022-12-07 16:16:21.429663 + : ScreechingOoze8069||pb-JiNJARFeUkdDX1tHEkVTVlFDFUlXRllG|| joined server -2022-12-07 16:16:45.526610 + : ChewySmell||pb-IF49U08dJg==|| joined server -2022-12-07 16:17:13.654090 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2022-12-07 16:17:27.687169 + : Tractable2||pb-IF5UVVMgIA==|| joined server -2022-12-07 16:17:48.738150 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2022-12-07 16:18:09.826816 + : iQninjakilaryashyash||pb-IF4HU0cMAw==|| joined server -2022-12-07 16:18:51.993571 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-07 16:20:59.444863 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-07 16:21:23.601196 + : challengea||pb-IF5dVGUCEQ==|| joined server -2022-12-07 16:21:37.650465 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2022-12-07 16:21:42.665873 + : Gregariou8||pb-IF4UU0wFIA==|| joined server -2022-12-07 16:22:15.786214 + : Gregariou8||pb-IF4UU0wFIA==|| joined server -2022-12-07 16:23:33.075301 + : CulturalJa||pb-IF4pUxUDDQ==|| joined server -2022-12-07 16:25:51.536835 + : RustyUnicorn27009||pb-IF42U0kbEg==|| joined server -2022-12-07 16:26:09.585252 + : ThanklessL||pb-IF4pU0giLQ==|| joined server -2022-12-07 16:27:07.780027 + : SinisterCa||pb-IF4lU005Jw==|| joined server -2022-12-07 16:28:58.164319 + : FranticFever44||pb-IF5RU3AjNA==|| joined server -2022-12-07 16:29:03.185245 + : hck3rr||pb-IF4UU3FYVg==|| joined server -2022-12-07 16:32:34.982458 + : ĐÃŘĶxŠÎĞMĀ||pb-IF4vUkRaEg==|| joined server -2022-12-07 16:33:08.112856 + : Jerald6440||pb-IF5dVWEJMg==|| joined server -2022-12-07 16:33:13.132783 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-07 16:33:29.185757 + : NeedfulCon||pb-IF4OVEZTPA==|| joined server -2022-12-07 16:33:58.276299 + : RollingMat||pb-IF4oDWof|| joined server -2022-12-07 16:34:44.492908 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-07 16:34:57.536237 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-07 16:34:59.543495 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-07 16:36:20.833896 + : TejGamerNt||pb-IF4oUxAGPQ==|| joined server -2022-12-07 16:37:08.996251 + : Sujan||pb-IF48U04mAw==|| joined server -2022-12-07 16:37:29.066879 + : Regressiv8||pb-IF5UUlUPPA==|| joined server -2022-12-07 16:37:47.128677 + : Regressiv8||pb-IF5UUlUPPA==|| joined server -2022-12-07 16:40:03.649314 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-07 16:40:09.671308 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-07 16:40:14.692986 + : ElectiveEa||pb-IF5XU00EDA==|| joined server -2022-12-07 16:41:16.911829 + : PristineMind16||pb-IF4SVW0cKg==|| joined server -2022-12-07 16:44:01.553145 + : vinoth192001||pb-IF4OVFUSMQ==|| joined server -2022-12-07 16:44:15.768756 + : Jerald6440||pb-IF5dVWEJMg==|| joined server -2022-12-07 16:45:01.905367 + : Dominati30||pb-IF4RX3I_|| joined server -2022-12-07 16:47:43.483754 + : MadJokester8604||pb-IF4OXmUG|| joined server -2022-12-07 16:48:51.727619 + : MPF||pb-IF4rLkwp|| joined server -2022-12-07 16:48:58.748517 + : MPF||pb-IF4rLkwp|| joined server -2022-12-07 16:49:06.777056 + : viru199554||pb-IF4VU3EjBg==|| joined server -2022-12-07 16:49:09.783430 + : RAEEEEEEEEEEEEEEEEES||pb-IF4wBUUK|| joined server -2022-12-07 16:49:35.879989 + : AccursedCe||pb-IF4RU00sAA==|| joined server -2022-12-07 16:50:17.039586 + : MilderUpri||pb-IF4uU0sRXA==|| joined server -2022-12-07 16:50:33.077831 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-07 16:50:59.164462 + : Android56486003||pb-IF4HUnE4Iw==|| joined server -2022-12-07 16:51:21.221515 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2022-12-07 16:52:07.374156 + : MPF||pb-IF4rLkwp|| joined server -2022-12-07 16:52:18.416829 + : Android62520439||pb-IF5RU3UFCg==|| joined server -2022-12-07 16:52:38.619479 + : FrolicZest||pb-IF4pVWMMBA==|| joined server -2022-12-07 16:53:31.805131 + : Soulking21||pb-IF4qU0wuPA==|| joined server -2022-12-07 16:53:50.879587 + : JollyHorse||pb-IF4mVUoEMw==|| joined server -2022-12-07 16:54:20.989990 + : Android62520439||pb-IF5RU3UFCg==|| joined server -2022-12-07 16:54:46.091043 + : DilatoryHo||pb-IF48U3FaNQ==|| joined server -2022-12-07 16:55:37.257545 + : NoName55828||pb-IF4RU3BTDQ==|| joined server -2022-12-07 16:55:45.283473 + : Android62520439||pb-IF5RU3UFCg==|| joined server -2022-12-07 16:56:36.463901 + : Android62520439||pb-IF5RU3UFCg==|| joined server -2022-12-07 16:57:41.701980 + : Randerkome||pb-IF4vVUYMMg==|| joined server -2022-12-07 16:57:54.746367 + : AccursedCe||pb-IF4RU00sAA==|| joined server -2022-12-07 17:01:03.418660 + : NiNJAMAN12||pb-IF4nU3EhMg==|| joined server -2022-12-07 17:01:14.467411 + : sanjeet51||pb-JiNJARFfUEpAVFxIF0JWVlJDFkBbRFlC|| joined server -2022-12-07 17:01:17.477401 + : RamblingG2||pb-IF4uUnEqVw==|| joined server -2022-12-07 17:01:50.612835 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 17:01:54.623624 + : viru199554||pb-IF4VU3EjBg==|| joined server -2022-12-07 17:02:44.809991 + : FractiousG||pb-JiNJVxBeUUZDWFZDEURUVFNFF0BdQlZH|| joined server -2022-12-07 17:04:33.245081 + : RoyalProph||pb-IF5TV2MzCA==|| joined server -2022-12-07 17:05:22.427755 + : AirbornePad15||pb-IF4cU0gqBg==|| joined server -2022-12-07 17:05:32.463759 + : SHREYASHAH||pb-IF4oU0cZDg==|| joined server -2022-12-07 17:06:34.672090 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-07 17:08:05.149150 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-07 17:08:27.223396 + : Sagaramin12345||pb-JiNJARFeUkZGXVhBEUdSU1RGEkJXTlRH|| joined server -2022-12-07 17:09:27.461911 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2022-12-07 17:11:07.842984 + : PointyCombat73807||pb-IF4iUxgTXQ==|| joined server -2022-12-07 17:11:12.853727 + : DireCenter||pb-IF4LU0ouAA==|| joined server -2022-12-07 17:11:33.934584 + : ᴿˢᏴᎡᎪƝᎠ||pb-IF4FU3UmHw==|| joined server -2022-12-07 17:11:59.042882 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-07 17:12:28.263859 + : DireCenter||pb-IF4LU0ouAA==|| joined server -2022-12-07 17:13:02.367647 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 17:13:37.505882 + : Android63841062||pb-IF41U0seMg==|| joined server -2022-12-07 17:13:46.543206 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 17:14:39.757361 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-07 17:14:42.767241 + : BrownCreat||pb-IF4lB0sz|| joined server -2022-12-07 17:15:05.852756 + : Android63841062||pb-IF41U0seMg==|| joined server -2022-12-07 17:15:16.887777 + : DilatoryHo||pb-IF48U3FaNQ==|| joined server -2022-12-07 17:15:50.001868 + : OddChangeling78301||pb-IF4yVWQ4Jg==|| joined server -2022-12-07 17:18:09.677410 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2022-12-07 17:18:43.768864 + : vinoth192001||pb-IF4OVFUSMQ==|| joined server -2022-12-07 17:19:11.868074 + : InsideMani||pb-IF41VGo9MA==|| joined server -2022-12-07 17:19:28.945600 + : BOMBASTIKE||pb-IF4VUlEZDg==|| joined server -2022-12-07 17:19:34.970998 + : RegretfulFighter7831||pb-IF4oU20bJA==|| joined server -2022-12-07 17:19:44.004958 + : ReliableDi||pb-IF43U0sjUQ==|| joined server -2022-12-07 17:21:43.398738 + : Barath0806||pb-IF5UU04gUw==|| joined server -2022-12-07 17:21:49.413228 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-07 17:22:05.475849 + : MSRockstar||pb-IF4LUnpdNw==|| joined server -2022-12-07 17:23:02.684118 + : Ceasor2345||pb-IF4SVWE8Eg==|| joined server -2022-12-07 17:23:21.757718 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-07 17:25:20.215982 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-07 17:25:25.237773 + : RoyalOwl79||pb-IF4MU0ReEA==|| joined server -2022-12-07 17:27:15.607773 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-07 17:27:54.723784 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-07 17:27:58.740180 + : FearsomeRambler99412||pb-IF4oFkEo|| joined server -2022-12-07 17:29:36.061929 + : ᴿˢᏴᎡᎪƝᎠ||pb-IF4FU3UmHw==|| joined server -2022-12-07 17:30:51.362496 + : neeleshmaj||pb-IF4dU0cCVQ==|| joined server -2022-12-07 17:31:16.460130 + : Android61192137||pb-IF5XU2YGMw==|| joined server -2022-12-07 17:33:00.838317 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-07 17:33:05.851993 + : SpontaneousTexture21||pb-IF5QUncABw==|| joined server -2022-12-07 17:33:39.980223 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-07 17:33:45.003288 + : pupru0909||pb-IF5SVXEhUw==|| joined server -2022-12-07 17:33:52.027188 + : Tractable2||pb-IF5UVVMgIA==|| joined server -2022-12-07 17:34:44.229299 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-07 17:35:43.422112 + : gotyolodo||pb-IF41VWozJg==|| joined server -2022-12-07 17:36:43.622945 + : Tractable2||pb-IF5UVVMgIA==|| joined server -2022-12-07 17:37:19.744490 + : mathiyaM||pb-IF4WU0gyLA==|| joined server -2022-12-07 17:38:40.015981 + : Android63319464||pb-IF48U0IvNw==|| joined server -2022-12-07 17:38:47.047239 + : GlintingRocket154||pb-IF41VXQCAg==|| joined server -2022-12-07 17:40:15.577516 + : IncorporatedCoup53||pb-IF4yU0cFEw==|| joined server -2022-12-07 17:40:30.640296 + : vanshpatel||pb-IF4HVWwBLA==|| joined server -2022-12-07 17:41:01.760006 + : Sanjayduff||pb-IF4hU3APAw==|| joined server -2022-12-07 17:41:08.788089 + : LEGENDfeb1||pb-IF4cVXMDNg==|| joined server -2022-12-07 17:41:29.851365 + : WiseDzn||pb-IF4jVRY5DA==|| joined server -2022-12-07 17:42:04.970659 + : Engrossi18||pb-IF4qVWg5MA==|| joined server -2022-12-07 17:42:09.991143 + : Engrossi18||pb-IF4qVWg5MA==|| joined server -2022-12-07 17:42:54.205457 + : Android63783914||pb-IF4BVxg7Eg==|| joined server -2022-12-07 17:43:01.233104 + : mathiyaM||pb-IF4WU0gyLA==|| joined server -2022-12-07 17:45:22.041386 + : CrystalThrone2000||pb-IF5TLEwR|| joined server -2022-12-07 17:46:01.176660 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 17:46:33.269429 + : AdvancedExpomnent45m||pb-IF4JU3MxCQ==|| joined server -2022-12-07 17:46:45.304139 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-07 17:47:01.368999 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-07 17:49:56.117509 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-07 17:49:59.132739 + : UntouchedE||pb-IF49UmspKw==|| joined server -2022-12-07 17:50:04.151682 + : BrownCreat||pb-IF4lB0sz|| joined server -2022-12-07 17:51:26.444507 + : ErsatzGuac||pb-IF4RU2g-VQ==|| joined server -2022-12-07 17:53:28.211730 + : ReliableDi||pb-IF43U0sjUQ==|| joined server -2022-12-07 17:53:40.241964 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-07 17:54:21.387089 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-07 17:59:26.566146 + : ErsatzGuac||pb-IF4RU2g-VQ==|| joined server -2022-12-07 17:59:53.660946 + : Poi7ioN||pb-JiNJVxBTXUNEXVxEFUNXUVZBF0ZeRFBC|| joined server -2022-12-07 18:00:24.783169 + : SalutaryEnthusiasm23||pb-IF4qU0ocPQ==|| joined server -2022-12-07 18:01:51.102935 + : Attitudeboy997||pb-IF4dVFgCLg==|| joined server -2022-12-07 18:05:03.798413 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-07 18:05:13.820984 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-07 18:05:19.848161 + : Android61250599||pb-IF4WU2UlJg==|| joined server -2022-12-07 18:05:59.990109 + : dynamic271||pb-IF4DVEpfCA==|| joined server -2022-12-07 18:07:13.293019 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 18:08:09.685550 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-07 18:09:14.906911 + : NitricBet41||pb-IF4gUmMPXQ==|| joined server -2022-12-07 18:10:42.325609 + : ShootingIm||pb-IF4vU0UPEg==|| joined server -2022-12-07 18:11:36.519408 + : Ayushayy||pb-IF4HU00OIA==|| joined server -2022-12-07 18:11:45.558670 + : StarredGondolier2087||pb-IF4gU0Q_Hw==|| joined server -2022-12-07 18:13:18.918452 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-07 18:13:31.974260 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-07 18:14:44.270541 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-07 18:17:17.837685 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-07 18:19:53.457324 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-07 18:23:44.320979 + : Android62958044||pb-IF49VFcGNw==|| joined server -2022-12-07 18:23:52.347815 + : Anthropolo||pb-IF4-U2suMg==|| joined server -2022-12-07 18:24:59.786346 + : NoName11978||pb-IF4LU0ZTBw==|| joined server -2022-12-07 18:25:47.944055 + : Android55528459||pb-IF4IUmhYLw==|| joined server -2022-12-07 18:26:16.103392 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-07 18:26:53.222928 + : BooI1219||pb-IF4eU0ggAw==|| joined server -2022-12-07 18:27:02.252434 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-07 18:27:25.337523 + : Android63800944||pb-IF4QU0ofBg==|| joined server -2022-12-07 18:27:43.401839 + : LIONHUNTER||pb-IF4eVGc7Cw==|| joined server -2022-12-07 18:30:04.927853 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-07 18:32:42.693503 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-07 18:33:35.861128 + : LionAlpha7||pb-IF4UVGg8KQ==|| joined server -2022-12-07 18:35:07.153575 + : DeadlyFly63846||pb-IF43VEQYAw==|| joined server -2022-12-07 18:37:31.702812 + : shrey19654||pb-IF4QVGYMKg==|| joined server -2022-12-07 18:38:15.857326 + : Android57032234||pb-IF4yUnY8EA==|| joined server -2022-12-07 18:38:25.881930 + : Android62364278||pb-IF4yU3FaIg==|| joined server -2022-12-07 18:42:42.812321 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-07 18:45:58.521258 + : MysteriousVehicle16||pb-IF4FVFUxVw==|| joined server -2022-12-07 18:47:16.801525 + : Imtiyazsay||pb-IF5RVWIRIw==|| joined server -2022-12-07 18:51:29.949548 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-07 19:01:00.731106 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-07 19:08:32.327263 + : abi96kgmail||pb-JiNJARFZUkFCWVhJEUZWV1BBFUddQVZH|| joined server -2022-12-07 19:10:06.632103 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-07 19:12:15.095670 + : HypnoticAlliance6502||pb-IF4zC1Ap|| joined server -2022-12-07 19:13:43.439252 + : Unrecogni9||pb-IF42U08RIg==|| joined server -2022-12-07 19:14:45.665256 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-07 19:16:12.996197 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-07 19:17:11.243286 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-07 19:23:37.585206 + : bharatpate||pb-IF4DVFkbNw==|| joined server -2022-12-07 19:26:35.590942 + : Agzx2244||pb-IF4PV24yPA==|| joined server -2022-12-07 19:28:04.902355 + : Android62537940||pb-IF5TU3U-JA==|| joined server -2022-12-07 19:29:21.191406 + : Agzx2244||pb-IF4PV24yPA==|| joined server -2022-12-07 19:29:35.246433 + : RohanK||pb-IF4dCnou|| joined server -2022-12-07 19:30:03.328859 + : RohanK||pb-IF4dCnou|| joined server -2022-12-07 19:33:08.938027 + : Naveenkrish010||pb-IF4NU0IzCA==|| joined server -2022-12-07 19:37:36.809455 + : ChintuKarthik1123||pb-IF43U3opMw==|| joined server -2022-12-07 19:38:58.092530 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-07 19:40:59.721113 + : 𒆜M͜͡の🆁ꪋx𒆜||pb-IF4DIk4d|| joined server -2022-12-07 19:42:07.972176 + : OO||pb-IF4RVRk7EQ==|| joined server -2022-12-07 19:46:50.704433 + : TheheAdlin||pb-IF5dU0oeCQ==|| joined server -2022-12-07 19:47:54.913615 + : TheheAdlin||pb-IF5dU0oeCQ==|| joined server -2022-12-07 19:48:02.940538 + : TheheAdlin||pb-IF5dU0oeCQ==|| joined server -2022-12-07 19:51:23.035646 + : Nithya1357||pb-IF5VUhQgPA==|| joined server -2022-12-07 19:52:59.709539 + : StealthyAn||pb-IF4XU0EfDw==|| joined server -2022-12-07 19:55:55.772277 + : Nithya1357||pb-IF5VUhQgPA==|| joined server -2022-12-07 19:57:54.194889 + : SinkAiMehRan||pb-IF41VFMPNQ==|| joined server -2022-12-07 20:02:49.516408 + : nagarjun2000||pb-IF42VXYnUg==|| joined server -2022-12-07 20:05:50.139244 + : Northerly5||pb-IF4lU0pZLA==|| joined server -2022-12-07 20:15:08.081666 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-07 20:22:26.677673 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-07 20:24:14.044896 + : ClearerArmy31||pb-IF4jU0EgDQ==|| joined server -2022-12-07 20:25:53.727199 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-07 20:27:58.183223 + : RelievedTr||pb-IF4JU3gMDg==|| joined server -2022-12-07 20:50:06.466831 + : devanshpareek31||pb-IF4GVW0zMA==|| joined server -2022-12-07 20:51:12.017642 + : Android63277119||pb-IF4qUxIdBg==|| joined server -2022-12-07 20:52:43.351669 + : MrsSmoothy||pb-IF4lU00PEA==|| joined server -2022-12-07 21:15:15.266658 + : MrDevil||pb-IF4hBFgH|| joined server -2022-12-07 21:15:59.565273 + : InteriorDu||pb-IF4lUhECIQ==|| joined server -2022-12-07 21:16:22.649298 + : MNXArmy123||pb-IF4CU0xfKA==|| joined server -2022-12-07 21:17:20.831944 + : StealthyAn||pb-IF4XU0EfDw==|| joined server -2022-12-07 21:20:23.396320 + : MrDevil||pb-IF4hBFgH|| joined server -2022-12-07 21:31:46.879877 + : Android55528459||pb-IF4IUmhYLw==|| joined server -2022-12-07 21:33:49.360710 + : dynamic271||pb-IF4DVEpfCA==|| joined server -2022-12-07 21:36:27.828394 + : redrubydiamond94||pb-IF5dU20MFg==|| joined server -2022-12-07 22:58:31.220860 + : itsjustine15||pb-IF5XU08jLA==|| joined server -2022-12-07 23:10:16.696441 + : PurposefulOffence22||pb-IF4nUmsiNg==|| joined server -2022-12-07 23:18:39.478291 + : UninhabitedFlood38||pb-IF49U2IGUQ==|| joined server -2022-12-07 23:48:06.041566 + : Yanlen924||pb-IF43U04jHA==|| joined server -2022-12-08 00:48:49.264610 + : BoldestClo||pb-IF4xUmISVw==|| joined server -2022-12-08 01:16:19.819486 + : WarmerTin4||pb-IF4zUkQkXA==|| joined server -2022-12-08 01:19:37.495830 + : Android62871232||pb-IF4zU3deKQ==|| joined server -2022-12-08 01:33:51.672343 + : BLOODFRAUD||pb-IF4xUxA7Vg==|| joined server -2022-12-08 01:47:36.420055 + : Subash07||pb-IF4uVUYtUA==|| joined server -2022-12-08 01:50:12.958735 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2022-12-08 01:50:13.961522 + : MrCrazy||pb-IF4uVUYtUA==|| joined server -2022-12-08 01:52:36.446833 + : PerpetualF||pb-IF5VU0kDUg==|| joined server -2022-12-08 01:57:32.410712 + : MainstreamContrast42||pb-IF4vU0skLw==|| joined server -2022-12-08 02:00:25.988723 + : Android60666241||pb-IF42UxcqFQ==|| joined server -2022-12-08 02:00:40.027625 + : wimeziz||pb-IF4yU3RZEw==|| joined server -2022-12-08 02:08:48.879505 + : Android57611965||pb-IF4tUkIlKg==|| joined server -2022-12-08 02:29:09.755572 + : viru199554||pb-IF4VU3EjBg==|| joined server -2022-12-08 02:31:37.368900 + : UnbelievingVictor1||pb-IF4UV1kqLA==|| joined server -2022-12-08 02:33:01.616662 + : pranavbali||pb-IF4QU08cUw==|| joined server -2022-12-08 02:33:32.720518 + : UnvaryingT||pb-IF4TU0MJAQ==|| joined server -2022-12-08 02:50:00.238377 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-08 02:52:58.796575 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-08 02:54:41.130395 + : Android64002826||pb-IF4KU1A9Mg==|| joined server -2022-12-08 02:56:09.418717 + : XboxTomb||pb-IF5WV2M8Vg==|| joined server -2022-12-08 02:57:21.646399 + : Ombala9||pb-IF48U3pfCw==|| joined server -2022-12-08 03:02:38.806899 + : sds420s||pb-IF41UlAhCA==|| joined server -2022-12-08 03:04:21.659095 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2022-12-08 03:04:37.701486 + : COMMANDER5005||pb-IF5VUksPFw==|| joined server -2022-12-08 03:04:41.038990 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-08 03:05:37.281735 + : Android64002851||pb-IF4hU09cMQ==|| joined server -2022-12-08 03:07:10.660737 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2022-12-08 03:08:33.967528 + : SaucyGlitter57||pb-IF4mUxUMIQ==|| joined server -2022-12-08 03:08:36.974785 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-08 03:13:52.781631 + : ihateu234||pb-IF5SUno-Ug==|| joined server -2022-12-08 03:21:42.396808 + : ForeignRoc||pb-IF42Um5fNA==|| joined server -2022-12-08 03:26:38.421708 + : UnmarkedCommodore37||pb-IF4IUxUpCA==|| joined server -2022-12-08 03:26:43.436413 + : EarlierAss||pb-IF4CVFkdKQ==|| joined server -2022-12-08 03:28:14.755162 + : Android64007974||pb-IF4oU1AhKw==|| joined server -2022-12-08 03:28:22.777855 + : tann53||pb-IF4xV1MFCg==|| joined server -2022-12-08 03:28:23.780054 + : EarlierAss||pb-IF4CVFkdKQ==|| joined server -2022-12-08 03:30:47.232038 + : HatefulAnn||pb-IF4PUkogDg==|| joined server -2022-12-08 03:33:41.992219 + : TUTYMUTHU18||pb-IF42U3cHPQ==|| joined server -2022-12-08 03:34:31.162077 + : HatefulAnn||pb-IF4PUkogDg==|| joined server -2022-12-08 03:36:18.503268 + : Android63888799||pb-IF4oU004KQ==|| joined server -2022-12-08 03:37:21.705091 + : WaxyConscience28||pb-IF4cVXY4JA==|| joined server -2022-12-08 03:37:30.735747 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-08 03:40:19.700779 + : ForgetfulRover49597||pb-IF4dUmEbVA==|| joined server -2022-12-08 03:40:50.859018 + : unstoppabl||pb-IF4TU0o6Aw==|| joined server -2022-12-08 03:42:56.248571 + : unstoppabl||pb-IF4TU0o6Aw==|| joined server -2022-12-08 03:45:15.756230 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-08 03:49:27.584448 + : viggamer12||pb-IF4XVW8mLw==|| joined server -2022-12-08 03:50:51.901028 + : Attitudeboy997||pb-IF4dVFgCLg==|| joined server -2022-12-08 03:52:29.644617 + : SpiritualA||pb-IF5SU2MfCw==|| joined server -2022-12-08 03:55:24.575313 + : Android60666241||pb-IF42UxcqFQ==|| joined server -2022-12-08 03:55:32.602372 + : LittleHonor24||pb-IF40VRIbJg==|| joined server -2022-12-08 03:57:55.072703 + : Engrossi18||pb-IF4qVWg5MA==|| joined server -2022-12-08 03:58:30.198045 + : Engrossi18||pb-IF4qVWg5MA==|| joined server -2022-12-08 04:07:49.151211 + : Modular47577||pb-IF4FVHYTVg==|| joined server -2022-12-08 04:09:31.218685 + : RighteousRein29||pb-IF4-U3M7Ug==|| joined server -2022-12-08 04:10:37.818310 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-08 04:12:31.225874 + : Android57708227||pb-IF48UkNTVA==|| joined server -2022-12-08 04:13:51.581175 + : Android60793967||pb-IF4cUlhdVg==|| joined server -2022-12-08 04:14:07.648599 + : FancyPan23||pb-IF5UUkMlDA==|| joined server -2022-12-08 04:14:16.673452 + : SpaceShutt||pb-IF4yD3Qc|| joined server -2022-12-08 04:16:23.117727 + : Android63689670||pb-IF41U0cMJw==|| joined server -2022-12-08 04:17:12.315861 + : StableCohe||pb-IF4rU24hJA==|| joined server -2022-12-08 04:17:47.442130 + : rockyrcgam||pb-IF4GU0ceKg==|| joined server -2022-12-08 04:17:56.460680 + : rockyrcgam||pb-IF4GU0ceKg==|| joined server -2022-12-08 04:19:53.947850 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-08 04:19:55.951376 + : Linux53436||pb-IF4dU0QGEw==|| joined server -2022-12-08 04:20:15.267044 + : DEPROGAMIN||pb-IF4IU08pBg==|| joined server -2022-12-08 04:21:00.744082 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-08 04:25:30.069120 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-08 04:27:46.972190 + : konRetroIn||pb-IF5VU3ERNg==|| joined server -2022-12-08 04:34:37.327663 + : Android63998945||pb-IF4NU08uBg==|| joined server -2022-12-08 04:34:38.329780 + : Following3||pb-IF5XU0ZbBA==|| joined server -2022-12-08 04:34:39.334256 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-08 04:34:42.338908 + : HundredYok||pb-IF5WU1EnNA==|| joined server -2022-12-08 04:34:58.405184 + : PrakharTri||pb-IF4wVBAjCA==|| joined server -2022-12-08 04:35:23.489489 + : EerieBalance28||pb-IF4WUnRYAA==|| joined server -2022-12-08 04:35:47.640928 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-08 04:37:17.283514 + : karthikn77||pb-IF4FBGYq|| joined server -2022-12-08 04:37:35.357136 + : SpiritualA||pb-IF5SU2MfCw==|| joined server -2022-12-08 04:37:46.377195 + : LiterateFancy41||pb-IF4oU0s_Dg==|| joined server -2022-12-08 04:37:51.398320 + : SpiritualA||pb-IF5SU2MfCw==|| joined server -2022-12-08 04:39:20.704886 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-08 04:39:32.749230 + : Android63640352||pb-IF5WU0gMEQ==|| joined server -2022-12-08 04:41:56.263339 + : RunningLetter40||pb-IF4JU3oPKQ==|| joined server -2022-12-08 04:44:58.891046 + : HUSEINKHAR||pb-IF4LMEs_|| joined server -2022-12-08 04:46:43.283851 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-08 04:46:49.299287 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-08 04:48:57.768598 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-08 04:52:58.585465 + : SyafiqIkma||pb-IF4yU08THA==|| joined server -2022-12-08 04:53:04.598238 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-08 04:54:09.821735 + : sagar5340||pb-IF5UUlIcNQ==|| joined server -2022-12-08 04:55:34.084483 + : EqualAnarc||pb-IF4zU0MxLg==|| joined server -2022-12-08 04:55:51.130685 + : NoName58996||pb-IF4IU2oiMw==|| joined server -2022-12-08 04:57:35.497878 + : UsedTrio30||pb-IF4DU3MiAQ==|| joined server -2022-12-08 04:58:57.806679 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-08 04:59:53.009118 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-08 05:01:06.265304 + : NoName58996||pb-IF4IU2oiMw==|| joined server -2022-12-08 05:01:42.375191 + : RanDD9322||pb-IF4nVRURUw==|| joined server -2022-12-08 05:01:44.377964 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-08 05:01:55.423291 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-08 05:04:08.906636 + : InauguralN||pb-IF4mU2YyKA==|| joined server -2022-12-08 05:05:10.144210 + : BLOODFRAUD||pb-IF4xUxA7Vg==|| joined server -2022-12-08 05:06:36.482887 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-08 05:06:56.569483 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-08 05:08:24.863027 + : Android52470937||pb-IF4DVVgZJA==|| joined server -2022-12-08 05:09:40.139674 + : KillerGing||pb-IEBJV0RZ|| joined server -2022-12-08 05:09:50.169415 + : SpiritualA||pb-IF5SU2MfCw==|| joined server -2022-12-08 05:10:38.325403 + : InauguralN||pb-IF4mU2YyKA==|| joined server -2022-12-08 05:10:57.365629 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-08 05:11:31.488360 + : Android55601587||pb-IF4SUhJZPw==|| joined server -2022-12-08 05:11:41.521325 + : febincs||pb-IF4KUhVaNg==|| joined server -2022-12-08 05:13:39.927835 + : CrystalThrone2000||pb-IF5TLEwR|| joined server -2022-12-08 05:14:18.058106 + : Android62537940||pb-IF5TU3U-JA==|| joined server -2022-12-08 05:14:57.177742 + : allen10000||pb-IF4gU08dNw==|| joined server -2022-12-08 05:17:17.630885 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-08 05:18:06.777700 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-08 05:19:02.964417 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-08 05:19:05.971686 + : TheoreticPit28||pb-IF4OVU4aUw==|| joined server -2022-12-08 05:19:43.105190 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-08 05:20:00.167578 + : Spaz1||pb-IF4DUmYmFg==|| joined server -2022-12-08 05:20:46.314637 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-08 05:22:29.683934 + : Agzx2244||pb-IF4PV24yPA==|| joined server -2022-12-08 05:23:33.919028 + : Keenest22||pb-IF4mU0oaVw==|| joined server -2022-12-08 05:23:33.919381 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-08 05:24:41.199200 + : Hitman0079||pb-IF4LVXgMKQ==|| joined server -2022-12-08 05:26:06.541706 + : jcar914||pb-JiNJARFZV0BBVV5AGUNRUVZGFkJXRlJL|| joined server -2022-12-08 05:26:19.585788 + : Preferent5||pb-IF4WVUsFNw==|| joined server -2022-12-08 05:26:35.646469 + : Android63610788||pb-IF4XU0YKUQ==|| joined server -2022-12-08 05:27:29.837085 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-08 05:27:54.920061 + : BrokenImpr||pb-IF4SU08lBg==|| joined server -2022-12-08 05:28:14.980351 + : MrLuKdrago||pb-IF48U1APCQ==|| joined server -2022-12-08 05:28:30.038057 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-08 05:30:06.374085 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-08 05:30:15.409202 + : Keenest22||pb-IF4mU0oaVw==|| joined server -2022-12-08 05:33:35.122561 + : CleanerRes||pb-IF5QU0s6XQ==|| joined server -2022-12-08 05:36:30.705073 + : Divaagarhockeyplayer||pb-IF5TVU5aMA==|| joined server -2022-12-08 05:37:23.898297 + : ProperExti||pb-IF4SVUYgUg==|| joined server -2022-12-08 05:39:57.392823 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 05:42:40.978264 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-08 05:43:08.072388 + : Imtiyazsay||pb-IF5RVWIRIw==|| joined server -2022-12-08 05:44:02.306263 + : Android62497074||pb-IF4HU3NTLA==|| joined server -2022-12-08 05:45:52.692373 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-08 05:46:04.733528 + : Keenest22||pb-IF4mU0oaVw==|| joined server -2022-12-08 05:48:11.174541 + : HawtDreameater6043||pb-JiNJARBTU0ZBXV1AFUNXXV1GE0JXRlVA|| joined server -2022-12-08 05:48:50.300252 + : shazil75||pb-IF4SEhck|| joined server -2022-12-08 05:49:13.439097 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-08 05:51:21.938048 + : UKnowMeAJ||pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH|| joined server -2022-12-08 05:51:23.945135 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-08 05:51:28.962930 + : InfiniteVa||pb-JiNJARFcV0RFWV1AF0VRVVxKFURWQFBD|| joined server -2022-12-08 05:51:43.029066 + : ĐÃŘĶxŠÎĞMĀ||pb-IF4vUkRaEg==|| joined server -2022-12-08 05:54:35.673516 + : ProperExti||pb-IF4SVUYgUg==|| joined server -2022-12-08 05:55:19.858222 + : NihilisticDream66264||pb-JiNJARBbVkFDVVhJFkVUXFZEF0VXRldG|| joined server -2022-12-08 05:55:32.917554 + : NihilisticDream66264||pb-JiNJARBbVkFDVVhJFkVUXFZEF0VXRldG|| joined server -2022-12-08 05:56:07.048762 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-08 05:56:09.053368 + : devendra12||pb-IF4WUmFcVw==|| joined server -2022-12-08 05:56:16.082362 + : MadBOY5523||pb-LV4FUkUPAxNEVV8RRk5WBVVEEA==|| joined server -2022-12-08 05:57:25.389416 + : ahamadakthus||pb-IF5TE2M5|| joined server -2022-12-08 05:58:30.634585 + : haribindhu||pb-IF4BKGUm|| joined server -2022-12-08 05:58:38.673383 + : haribindhu||pb-IF4BKGUm|| joined server -2022-12-08 05:59:22.828936 + : Sanjay2522||pb-IF4pU00vIA==|| joined server -2022-12-08 06:00:09.992524 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-08 06:01:04.183144 + : nirmalmass||pb-IF5TU2goLQ==|| joined server -2022-12-08 06:02:03.417483 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 06:02:48.551528 + : COMMANDER5005||pb-IF5VUksPFw==|| joined server -2022-12-08 06:03:12.635205 + : Hacktast26||pb-IF4nUnEHVg==|| joined server -2022-12-08 06:04:42.944225 + : kiratsingh||pb-IF4eVEchNQ==|| joined server -2022-12-08 06:04:44.950928 + : Android55556523||pb-IF4uUmgjCQ==|| joined server -2022-12-08 06:05:25.112003 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-08 06:06:13.346955 + : ahamadakthus||pb-IF5TE2M5|| joined server -2022-12-08 06:06:49.619246 + : SilentDign||pb-IF4wU1ABVg==|| joined server -2022-12-08 06:07:28.750240 + : karthihero0879||pb-IF4IUm8tLQ==|| joined server -2022-12-08 06:10:15.351690 + : THANATOS6660||pb-IF4sVFkqEw==|| joined server -2022-12-08 06:10:37.405732 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-08 06:10:44.435668 + : firebreake||pb-IF4FU08bCg==|| joined server -2022-12-08 06:11:06.522921 + : Android60845640||pb-IF41UxkjMg==|| joined server -2022-12-08 06:11:44.646035 + : PresetTent||pb-IF4oU1AtIA==|| joined server -2022-12-08 06:12:36.970871 + : WolfViperCr7||pb-IF48U0YAMQ==|| joined server -2022-12-08 06:19:07.436221 + : SorrowfulV||pb-IF4NU0YOVQ==|| joined server -2022-12-08 06:19:14.460894 + : Incompara7||pb-IF4jVGcONg==|| joined server -2022-12-08 06:21:12.863861 + : Android55556523||pb-IF4uUmgjCQ==|| joined server -2022-12-08 06:21:40.947752 + : HatefulAnn||pb-IF4PUkogDg==|| joined server -2022-12-08 06:21:56.994690 + : THANATOS6660||pb-IF4sVFkqEw==|| joined server -2022-12-08 06:24:24.477367 + : HatefulAnn||pb-IF4PUkogDg==|| joined server -2022-12-08 06:25:01.599671 + : HipCompany||pb-IF4WUxcgNw==|| joined server -2022-12-08 06:25:18.668527 + : LittleHonor24||pb-IF40VRIbJg==|| joined server -2022-12-08 06:25:19.674273 + : melbiinn||pb-IF4AUxk9BA==|| joined server -2022-12-08 06:26:16.892150 + : XboxTomb||pb-IF5WV2M8Vg==|| joined server -2022-12-08 06:26:20.911316 + : Android63940563||pb-IF4wU09SJA==|| joined server -2022-12-08 06:26:46.999379 + : godlike14120||pb-JiNJARBfXERIVV5CGURTXVRKF0NYQVlD|| joined server -2022-12-08 06:27:20.112440 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-08 06:27:59.270036 + : BrieferApo||pb-IF4mUloHEA==|| joined server -2022-12-08 06:28:01.280323 + : LittleHonor24||pb-IF40VRIbJg==|| joined server -2022-12-08 06:28:38.404426 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 06:29:26.572498 + : hacker1199||pb-IF4BU0cDNg==|| joined server -2022-12-08 06:30:05.733001 + : IronLeopard87891||pb-IF43U0otUA==|| joined server -2022-12-08 06:30:34.808812 + : Humanisti2||pb-IF4wVXUHCQ==|| joined server -2022-12-08 06:31:06.929471 + : StableCohe||pb-IF4rU24hJA==|| joined server -2022-12-08 06:32:00.106199 + : DkAbdi09||pb-IF5VU2g7CA==|| joined server -2022-12-08 06:33:40.470900 + : Android63647111||pb-IF4jU0ckCg==|| joined server -2022-12-08 06:37:04.360116 + : LittleHonor24||pb-IF40VRIbJg==|| joined server -2022-12-08 06:38:07.595022 + : Android64005366||pb-IF5RU1IdVA==|| joined server -2022-12-08 06:38:20.636719 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-08 06:39:23.867670 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-08 06:40:55.179807 + : SuggestiveGarage45||pb-IF5RU0pSBg==|| joined server -2022-12-08 06:43:20.671952 + : StaccatoOrchard44||pb-IF43U3oNKA==|| joined server -2022-12-08 06:43:30.699772 + : ColdCaptain125||pb-IF4NU007FA==|| joined server -2022-12-08 06:43:57.821072 + : LameAsset20||pb-IF4lUnUmCQ==|| joined server -2022-12-08 06:44:24.045205 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-08 06:46:38.516594 + : JealousCry||pb-IF4xV2oPHA==|| joined server -2022-12-08 06:46:41.534645 + : ArdentHunter2706||pb-IF4xU3A6Cg==|| joined server -2022-12-08 06:47:40.741632 + : Android48907943||pb-IF4DVW4HFA==|| joined server -2022-12-08 06:47:59.800793 + : Meanderi21||pb-IF4QVRYcHw==|| joined server -2022-12-08 06:49:16.210280 + : JealousCry||pb-IF4xV2oPHA==|| joined server -2022-12-08 06:50:12.433765 + : Celajes||pb-IF4GU08fCA==|| joined server -2022-12-08 06:50:46.562277 + : NonStopBea||pb-IF4cU1BTMA==|| joined server -2022-12-08 06:52:04.865089 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-08 06:52:48.019109 + : WirelessNe||pb-IF4nUkteVA==|| joined server -2022-12-08 06:53:02.077414 + : JealousCry||pb-IF4xV2oPHA==|| joined server -2022-12-08 06:53:13.105263 + : Android62472760||pb-IF48U3IcHw==|| joined server -2022-12-08 06:53:43.200932 + : Android62472760||pb-IF48U3IcHw==|| joined server -2022-12-08 06:54:38.406724 + : NitricBet41||pb-IF4gUmMPXQ==|| joined server -2022-12-08 06:55:20.544317 + : JealousCry||pb-IF4xV2oPHA==|| joined server -2022-12-08 06:55:52.653029 + : sena3456||pb-IF4-B20v|| joined server -2022-12-08 06:56:07.705676 + : Raghav2655||pb-IF4cU2UJCA==|| joined server -2022-12-08 06:56:21.749080 + : PutativeFoe61||pb-IF5RU00ZXA==|| joined server -2022-12-08 06:56:33.987062 + : LameAsset20||pb-IF4lUnUmCQ==|| joined server -2022-12-08 06:57:16.151368 + : NitricBet41||pb-IF4gUmMPXQ==|| joined server -2022-12-08 06:58:15.313519 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-08 06:59:51.637045 + : Android62831084||pb-IF4iU3YqCQ==|| joined server -2022-12-08 07:00:40.828217 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-08 07:01:03.900478 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-08 07:01:30.976362 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-08 07:02:16.120470 + : fJiokekedo||pb-IF4PU04jCg==|| joined server -2022-12-08 07:03:07.301142 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-08 07:03:32.389249 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-08 07:04:47.617744 + : Android63957499||pb-IF42U04SIw==|| joined server -2022-12-08 07:06:02.903483 + : Meanderi21||pb-IF4QVRYcHw==|| joined server -2022-12-08 07:06:26.996357 + : Android63796554||pb-IF4NU0ojAA==|| joined server -2022-12-08 07:07:12.151603 + : AniketGholave2702||pb-IF4sVRk6VQ==|| joined server -2022-12-08 07:07:27.191937 + : devanaraya||pb-IF4oU3BSLQ==|| joined server -2022-12-08 07:07:41.248091 + : devanaraya||pb-IF4oU3BSLQ==|| joined server -2022-12-08 07:07:53.287965 + : sena3456||pb-IF4-B20v|| joined server -2022-12-08 07:08:13.364687 + : Android47613686||pb-IF4oVWZTDA==|| joined server -2022-12-08 07:08:38.440549 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-08 07:09:38.925488 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-08 07:09:48.944510 + : MG12012001||pb-IF4PUnE5|| joined server -2022-12-08 07:10:22.077826 + : MrsSmoothy||pb-IF4lU00PEA==|| joined server -2022-12-08 07:10:26.098119 + : MRKHINDIGA||pb-IF4OU04GBg==|| joined server -2022-12-08 07:10:52.190753 + : Android63796554||pb-IF4NU0ojAA==|| joined server -2022-12-08 07:11:09.242089 + : BushyInstr||pb-IF4WU0QRIA==|| joined server -2022-12-08 07:11:45.355299 + : LethargicHotshot9113||pb-IF4-UnVTXQ==|| joined server -2022-12-08 07:13:47.808937 + : CellularAr||pb-IF41UksmAw==|| joined server -2022-12-08 07:14:12.948490 + : sunilu338||pb-IF4tUmo9VQ==|| joined server -2022-12-08 07:15:00.132894 + : mariyafeli||pb-IF4lU20cEw==|| joined server -2022-12-08 07:15:53.330062 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-08 07:17:00.573124 + : CHICKENBOO||pb-IF4AV1QqEQ==|| joined server -2022-12-08 07:18:52.028344 + : captshivi||pb-IF4tCRgv|| joined server -2022-12-08 07:19:55.275089 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-08 07:20:42.460887 + : lovelykavin777||pb-IF4NVHEtDQ==|| joined server -2022-12-08 07:21:28.909702 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-08 07:21:35.932957 + : Wikirex200||pb-IF41V0UyDg==|| joined server -2022-12-08 07:22:08.059705 + : TOOWEIRD4U||pb-IF4cIGYH|| joined server -2022-12-08 07:23:33.387610 + : captshivi||pb-IF4tCRgv|| joined server -2022-12-08 07:25:01.709717 + : bhaumikrat||pb-JiNJARFZUUpJX1tGE0dWVlJEE0NdQFhB|| joined server -2022-12-08 07:25:23.802294 + : Devil77181908||pb-IF4dUFk_|| joined server -2022-12-08 07:25:45.872646 + : PC772976||pb-IF4xU04OMg==|| joined server -2022-12-08 07:26:01.925555 + : kannadapora||pb-JiNJARFdU0tCWFtDGEFVUVZLFUFbQlBH|| joined server -2022-12-08 07:27:41.353874 + : PC772976||pb-IF4xU04OMg==|| joined server -2022-12-08 07:28:45.574292 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-08 07:29:07.639174 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-08 07:29:37.757476 + : Android41970313||pb-IF4wVEZbBw==|| joined server -2022-12-08 07:31:05.059967 + : Android41970313||pb-IF4wVEZbBw==|| joined server -2022-12-08 07:32:32.364176 + : FoolishMar||pb-IF4MUk0CEg==|| joined server -2022-12-08 07:32:56.457469 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-08 07:33:14.534941 + : GrubbyMission1550||pb-IF4JUlolLg==|| joined server -2022-12-08 07:33:26.566671 + : DARKsoulNiNJA01||pb-IF5dU0suLg==|| joined server -2022-12-08 07:34:38.841098 + : PC772976||pb-IF4xU04OMg==|| joined server -2022-12-08 07:34:51.103960 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-08 07:36:39.460034 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-08 07:38:32.952157 + : BrieferApo||pb-IF4mUloHEA==|| joined server -2022-12-08 07:39:44.280902 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-08 07:39:46.285889 + : CardiacAlp||pb-IF4vVRY7Vg==|| joined server -2022-12-08 07:40:38.768720 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-08 07:41:20.918980 + : Android41764813||pb-IF4qVEQoHw==|| joined server -2022-12-08 07:41:44.011299 + : ChampionStar7526||pb-JiNJARFaXUdIVF9DEEBVV1NFEkFbRVJA|| joined server -2022-12-08 07:42:36.208759 + : Android63796554||pb-IF4NU0ojAA==|| joined server -2022-12-08 07:42:50.258050 + : hacker1199||pb-IF4BU0cDNg==|| joined server -2022-12-08 07:43:14.333634 + : GentlestThrone24||pb-IF4qUhVeVQ==|| joined server -2022-12-08 07:43:18.340626 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-08 07:45:48.226880 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-08 07:46:16.321235 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-08 07:46:35.404241 + : shafeeqmoh||pb-IF4XV3MjHQ==|| joined server -2022-12-08 07:46:47.451025 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-08 07:47:43.637851 + : PC772976||pb-IF4xU04OMg==|| joined server -2022-12-08 07:48:16.773676 + : Trushank||pb-IF4zU08lLA==|| joined server -2022-12-08 07:48:56.910688 + : CHICKENBOO||pb-IF4AV1QqEQ==|| joined server -2022-12-08 07:48:57.913748 + : ProsaicRank31||pb-IF4oUnkvCg==|| joined server -2022-12-08 07:49:00.928748 + : HeinousPop||pb-IF4XUxIhNA==|| joined server -2022-12-08 07:49:52.102711 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-08 07:52:26.587623 + : haribindhu||pb-IF4BKGUm|| joined server -2022-12-08 07:53:01.728135 + : Android41299377||pb-IF4eVEE9AQ==|| joined server -2022-12-08 07:53:26.829421 + : Krushant11||pb-IF5VM3Qm|| joined server -2022-12-08 07:53:36.872794 + : Android63977212||pb-IF43U08_NQ==|| joined server -2022-12-08 07:53:57.963142 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-08 07:54:08.000476 + : VirtualMon||pb-JiNJARFfUEVIX1ZCEEJUUVFLE0hbQFZG|| joined server -2022-12-08 07:54:27.066384 + : Android47745010||pb-IF5dVWgRBg==|| joined server -2022-12-08 07:55:33.290975 + : NegativePo||pb-IF4UU1AMAA==|| joined server -2022-12-08 07:55:41.322561 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-08 07:56:10.416597 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-08 07:56:14.458167 + : HazelRazor||pb-IF4WU08AFQ==|| joined server -2022-12-08 07:56:40.555114 + : Linux53436||pb-IF4dU0QGEw==|| joined server -2022-12-08 07:57:21.697550 + : PAPPANSGAM||pb-IF4wCU4s|| joined server -2022-12-08 07:57:53.994507 + : StripedBulk22||pb-IF4UU04mDg==|| joined server -2022-12-08 07:57:56.999115 + : Gibberish101||pb-IF4jNEwC|| joined server -2022-12-08 08:00:25.730421 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-08 08:01:21.910601 + : HAMARBADON||pb-IF5UVU0cLQ==|| joined server -2022-12-08 08:01:50.009564 + : IndependentBoard34||pb-IF4gU0Y7AQ==|| joined server -2022-12-08 08:02:21.112827 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-08 08:02:25.130662 + : Android62520439||pb-IF5RU3UFCg==|| joined server -2022-12-08 08:02:42.197259 + : SanguinePa||pb-IF4SU3kCMQ==|| joined server -2022-12-08 08:03:28.363155 + : NitricBet41||pb-IF4gUmMPXQ==|| joined server -2022-12-08 08:03:32.368757 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-08 08:03:52.445210 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-08 08:04:21.521196 + : NitricBet41||pb-IF4gUmMPXQ==|| joined server -2022-12-08 08:06:00.889414 + : Android63750463||pb-IF4dU0lTHA==|| joined server -2022-12-08 08:06:40.022733 + : StableCohe||pb-IF4rU24hJA==|| joined server -2022-12-08 08:07:12.132656 + : Recipient3||pb-IF4HU00hJw==|| joined server -2022-12-08 08:07:58.262933 + : Android55846320||pb-IF4yUmsiXQ==|| joined server -2022-12-08 08:08:22.363232 + : FancyPan23||pb-IF5UUkMlDA==|| joined server -2022-12-08 08:08:39.528500 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-08 08:10:52.014069 + : rutvik5129||pb-IF4PU04HUw==|| joined server -2022-12-08 08:11:16.104025 + : WakefulCra||pb-IF40U04ECA==|| joined server -2022-12-08 08:12:35.347315 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-08 08:12:45.427905 + : Yoeshdada1||pb-IF41VUg-JA==|| joined server -2022-12-08 08:14:42.780707 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-08 08:14:47.793797 + : YOSHITHALAKMAL45||pb-IF4-U0w7DQ==|| joined server -2022-12-08 08:15:05.862256 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-08 08:17:38.381683 + : NOMERCY||pb-IF49U0QJDw==|| joined server -2022-12-08 08:18:02.459220 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-08 08:18:03.462871 + : NOMERCY||pb-IF49U0QJDw==|| joined server -2022-12-08 08:19:03.983744 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-08 08:21:20.465482 + : U1KISHORE||pb-IF5UU1JZNA==|| joined server -2022-12-08 08:23:04.023806 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-08 08:23:47.165297 + : PC772976||pb-IF4xU04OMg==|| joined server -2022-12-08 08:26:24.680276 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-08 08:27:06.831025 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-08 08:27:28.897174 + : HardikOMG||pb-IF4eUlYZXA==|| joined server -2022-12-08 08:27:57.978575 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-08 08:28:47.453631 + : PrakharTri||pb-IF4wVBAjCA==|| joined server -2022-12-08 08:29:34.610689 + : Axel591Har||pb-IF4mUks_Lw==|| joined server -2022-12-08 08:30:16.743063 + : HipCompany||pb-IF4WUxcgNw==|| joined server -2022-12-08 08:30:20.757097 + : TremendousCreek8||pb-IF4vUxkKDg==|| joined server -2022-12-08 08:31:04.907540 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-08 08:31:13.943951 + : UrbanConfines438||pb-IF4UVUweHA==|| joined server -2022-12-08 08:33:38.664651 + : vishnu234||pb-JiNJVxFfXUpEW1xCEEZSUlBGEUNaR1BE|| joined server -2022-12-08 08:34:48.889520 + : LyingEmpire89716||pb-IF5UU0stXQ==|| joined server -2022-12-08 08:35:46.208893 + : LoathsomeReaction46||pb-IF49U04vXA==|| joined server -2022-12-08 08:35:49.219135 + : sharmapankaj1997||pb-IF4zVE8NEA==|| joined server -2022-12-08 08:35:59.249154 + : Android63940563||pb-IF4wU09SJA==|| joined server -2022-12-08 08:36:02.254828 + : Android63702917||pb-IF4HU0g6LQ==|| joined server -2022-12-08 08:36:14.298767 + : MeanEnclos||pb-IF4gIhdZ|| joined server -2022-12-08 08:37:50.613829 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-08 08:38:19.736434 + : ProdigalAc||pb-IF4AVUgDDA==|| joined server -2022-12-08 08:41:43.116230 + : AnandSingh1102||pb-IF5QU0g8IQ==|| joined server -2022-12-08 08:42:27.271052 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-08 08:42:45.339361 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-08 08:43:18.424661 + : Gojo63b||pb-IF4uVU0yMQ==|| joined server -2022-12-08 08:43:30.470307 + : OssifiedLegitimacy9||pb-IF4DVVQMVQ==|| joined server -2022-12-08 08:44:26.643670 + : alsoMV||pb-IF48U0kmIw==|| joined server -2022-12-08 08:44:44.697575 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-08 08:46:45.472485 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-08 08:49:13.991393 + : Android61865845||pb-IF4UU2w4Fg==|| joined server -2022-12-08 08:52:53.774857 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-08 08:56:24.220773 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-08 08:56:29.232138 + : dhairyabhavya||pb-IF4BPFRY|| joined server -2022-12-08 08:57:43.495303 + : imAnkitSha||pb-JiNJARBYV0tDVVlCFUVRVFZDEUNYQ1JF|| joined server -2022-12-08 08:58:17.636934 + : WilderFish||pb-IF4LV2UMUw==|| joined server -2022-12-08 09:01:25.681807 + : PanickyResurgence23||pb-IF4lU0kkUA==|| joined server -2022-12-08 09:02:09.855249 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-08 09:02:47.538310 + : HeadlongDu||pb-IF40U0EHNg==|| joined server -2022-12-08 09:03:46.007877 + : WrathfulQuery30||pb-IF41U2cxUA==|| joined server -2022-12-08 09:04:42.313915 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-08 09:06:09.655021 + : LatentPara||pb-IF5XVUQpIw==|| joined server -2022-12-08 09:06:36.733279 + : ChromeSheep12900||pb-JiNJARFYU0ZFWl5GEENTXVVHFUBZTlBF|| joined server -2022-12-08 09:08:48.217744 + : Dominati30||pb-IF4RX3I_|| joined server -2022-12-08 09:09:10.319040 + : OutrightPeriphery10||pb-IF4HVFFTUg==|| joined server -2022-12-08 09:09:13.325699 + : Submissi30||pb-IF4hDRld|| joined server -2022-12-08 09:09:29.396941 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-08 09:10:17.574847 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-08 09:10:31.641200 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-08 09:11:09.910901 + : TremendousCreek8||pb-IF4vUxkKDg==|| joined server -2022-12-08 09:11:42.013443 + : OutrightPeriphery10||pb-IF4HVFFTUg==|| joined server -2022-12-08 09:13:25.336302 + : ChoiceBrib||pb-IF4lU0YSMg==|| joined server -2022-12-08 09:13:49.411121 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-08 09:13:58.427775 + : ChoiceBrib||pb-IF4lU0YSMg==|| joined server -2022-12-08 09:14:06.457135 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-08 09:14:58.634129 + : NaughtyFly91019||pb-IF4gMxke|| joined server -2022-12-08 09:15:20.698775 + : PC772976||pb-IF4xU04OMg==|| joined server -2022-12-08 09:15:30.730547 + : ChoiceBrib||pb-IF4lU0YSMg==|| joined server -2022-12-08 09:18:27.710509 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-08 09:20:28.117706 + : HangryDang||pb-IF4mUFAt|| joined server -2022-12-08 09:21:11.259457 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-08 09:22:02.429584 + : TrippingFa||pb-IF4OU1AmVQ==|| joined server -2022-12-08 09:22:23.511337 + : HatefulAnn||pb-IF4PUkogDg==|| joined server -2022-12-08 09:23:45.931087 + : PC772976||pb-IF4xU04OMg==|| joined server -2022-12-08 09:23:52.955284 + : DimGondolier1276||pb-IF4KUxISLA==|| joined server -2022-12-08 09:24:43.119390 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-08 09:25:42.326758 + : ChoiceBrib||pb-IF4lU0YSMg==|| joined server -2022-12-08 09:26:44.525395 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-08 09:27:19.628130 + : DimGondolier1276||pb-IF4KUxISLA==|| joined server -2022-12-08 09:27:48.929115 + : Devil77181908||pb-IF4dUFk_|| joined server -2022-12-08 09:27:57.976131 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 09:27:58.979535 + : LustrousC3||pb-IF4oUnVaNg==|| joined server -2022-12-08 09:28:56.209507 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-08 09:30:31.724075 + : HaleStraw185||pb-IF4NU2IMBg==|| joined server -2022-12-08 09:31:30.927041 + : Android61022597||pb-IF4oU2EbKg==|| joined server -2022-12-08 09:31:52.480390 + : Devil77181908||pb-IF4dUFk_|| joined server -2022-12-08 09:32:37.649950 + : Devil77181908||pb-IF4dUFk_|| joined server -2022-12-08 09:32:44.661253 + : AkshayParg||pb-IF4vVFEZBg==|| joined server -2022-12-08 09:33:48.903064 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-08 09:35:32.309190 + : UKnowMeAJ||pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH|| joined server -2022-12-08 09:36:08.445681 + : RoyalProph||pb-IF5TV2MzCA==|| joined server -2022-12-08 09:38:47.480717 + : LimpingTru||pb-IF4xU287CA==|| joined server -2022-12-08 09:39:14.564496 + : Hezardoz||pb-JiNJVxBSVEFCX1lGE0JWVVBHF0deRFJG|| joined server -2022-12-08 09:39:29.606158 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-08 09:41:04.941320 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-08 09:42:41.271403 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-08 09:43:50.486342 + : Hezardoz||pb-JiNJVxBSVEFCX1lGE0JWVVBHF0deRFJG|| joined server -2022-12-08 09:46:20.387265 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-08 09:46:43.474798 + : SpontaneousTexture21||pb-IF5QUncABw==|| joined server -2022-12-08 09:46:50.488416 + : Android63906743||pb-IF5dU08yUw==|| joined server -2022-12-08 09:47:32.086817 + : Yuhaan2013||pb-IF4dUmkdMg==|| joined server -2022-12-08 09:48:20.253995 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-08 09:49:06.423940 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-08 09:49:07.430886 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 09:49:43.513819 + : PC772976||pb-IF4xU04OMg==|| joined server -2022-12-08 09:50:08.621154 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-08 09:50:14.643585 + : Android63888799||pb-IF4oU004KQ==|| joined server -2022-12-08 09:52:16.065270 + : YogeYogesh14||pb-IF4DU3AABw==|| joined server -2022-12-08 09:52:27.092453 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-08 09:52:52.167354 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-08 09:54:46.982076 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-08 09:55:04.036574 + : HookedMedusa32||pb-IF4NU0sTNQ==|| joined server -2022-12-08 09:55:37.146330 + : Android61675033||pb-IF4yU2kOUw==|| joined server -2022-12-08 09:58:33.717556 + : Android50155441||pb-IF4lVXYNKw==|| joined server -2022-12-08 09:59:56.320514 + : GraverMat5||pb-IF5WU0cRAg==|| joined server -2022-12-08 10:00:03.356271 + : Blackyrace||pb-IF4xU0Q5HQ==|| joined server -2022-12-08 10:01:01.836496 + : WeakerResonance54||pb-IF4AU0IoCA==|| joined server -2022-12-08 10:01:12.201285 + : Sanjayboss||pb-IF4-U1AsHw==|| joined server -2022-12-08 10:01:20.227652 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-08 10:01:52.351150 + : DiffidentHoplite31||pb-IF4sU0wcBA==|| joined server -2022-12-08 10:02:03.385640 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-08 10:02:48.413104 + : sagar88822||pb-IF4vVUNfEA==|| joined server -2022-12-08 10:03:50.633325 + : UnnamedSovereignty48||pb-IF4HU0YYJA==|| joined server -2022-12-08 10:05:23.970114 + : OutrightPeriphery10||pb-IF4HVFFTUg==|| joined server -2022-12-08 10:05:59.593963 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 10:07:07.144257 + : Android62362658||pb-IF4gU3EoVg==|| joined server -2022-12-08 10:07:29.213547 + : IronLeopard87891||pb-IF43U0otUA==|| joined server -2022-12-08 10:08:41.968971 + : RoutineAuthorship51||pb-IF5VU3oeKQ==|| joined server -2022-12-08 10:08:50.986154 + : àswiñ||pb-IF4hU00EKw==|| joined server -2022-12-08 10:09:51.186235 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-08 10:10:06.237484 + : DazedLad71||pb-IF4sUxdcIw==|| joined server -2022-12-08 10:11:14.462214 + : RAGExLUINO||pb-IF5SUkwMAg==|| joined server -2022-12-08 10:12:10.366450 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-08 10:12:33.440788 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-08 10:14:56.900371 + : Conseque13||pb-IF4wVFEiAA==|| joined server -2022-12-08 10:16:00.106420 + : Contribut3||pb-IF5UU1AyUQ==|| joined server -2022-12-08 10:16:05.131955 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-08 10:16:29.217426 + : BooI1219||pb-IF4eU0ggAw==|| joined server -2022-12-08 10:17:01.325884 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-08 10:17:49.803735 + : alsoMV||pb-IF48U0kmIw==|| joined server -2022-12-08 10:20:05.642490 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-08 10:20:38.772271 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 10:20:58.857576 + : SilentSalt1900||pb-IF4zU00GCg==|| joined server -2022-12-08 10:22:24.182762 + : SalutaryEnthusiasm23||pb-IF4qU0ocPQ==|| joined server -2022-12-08 10:23:01.498576 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 10:23:11.532364 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-08 10:24:12.738653 + : DiffidentHoplite31||pb-IF4sU0wcBA==|| joined server -2022-12-08 10:24:24.767605 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-08 10:25:32.978003 + : Preventab2||pb-IF4hU0oSFw==|| joined server -2022-12-08 10:27:05.734101 + : Android47745010||pb-IF5dVWgRBg==|| joined server -2022-12-08 10:27:10.749635 + : Android47745010||pb-IF5dVWgRBg==|| joined server -2022-12-08 10:27:54.868156 + : WeakerDist||pb-IF48U0gcBw==|| joined server -2022-12-08 10:27:57.885310 + : ImperiousLearning457||pb-IF4gU00YDA==|| joined server -2022-12-08 10:30:54.502650 + : Android63824203||pb-IF4zU0saEg==|| joined server -2022-12-08 10:31:51.716631 + : ansan10||pb-IF5cEEcx|| joined server -2022-12-08 10:32:01.760128 + : Android55348528||pb-IF4WUmYPIw==|| joined server -2022-12-08 10:32:30.888519 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-08 10:33:39.848238 + : Android63980625||pb-IF4iU09SDA==|| joined server -2022-12-08 10:34:11.943686 + : godlike14120||pb-JiNJARBfXERIVV5CGURTXVRKF0NYQVlD|| joined server -2022-12-08 10:34:18.967719 + : WeakerResonance54||pb-IF4AU0IoCA==|| joined server -2022-12-08 10:35:24.186885 + : Dathstrok||pb-IF4-VVE4Nw==|| joined server -2022-12-08 10:35:48.266152 + : godlike14120||pb-JiNJARBfXERIVV5CGURTXVRKF0NYQVlD|| joined server -2022-12-08 10:36:00.849411 + : PC293761||pb-IF4yVWsOAA==|| joined server -2022-12-08 10:36:50.208658 + : Phalgun~||pb-LV4FBUYOVRRBCl4UEkVRB1EWGA==|| joined server -2022-12-08 10:37:36.048408 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 10:38:01.135609 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 10:39:23.664474 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 10:41:49.173886 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-08 10:42:42.046403 + : NoName55581||pb-IF4wU0UjMg==|| joined server -2022-12-08 10:42:47.702101 + : WeakerResonance54||pb-IF4AU0IoCA==|| joined server -2022-12-08 10:42:57.741103 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-08 10:43:01.761145 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-08 10:43:12.808320 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-08 10:44:34.127623 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-08 10:44:40.149220 + : Peripheralstomach21||pb-IF5cVWkEJg==|| joined server -2022-12-08 10:44:54.193630 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-08 10:45:36.371682 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 10:46:43.614221 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-08 10:48:10.934379 + : Android63957105||pb-IF4UU08NVw==|| joined server -2022-12-08 10:48:19.972416 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-08 10:49:23.182520 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-08 10:49:39.232562 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-08 10:51:00.496394 + : Nihilisti2||pb-JiNJARBfVUtBVFhCEERZUlNEGUBbRFRF|| joined server -2022-12-08 10:53:22.989473 + : SilentSalt1900||pb-IF4zU00GCg==|| joined server -2022-12-08 10:54:06.128113 + : Android57432788||pb-IF4rUno-FQ==|| joined server -2022-12-08 10:55:44.499867 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-08 10:56:12.589206 + : SpontaneousTexture21||pb-IF5QUncABw==|| joined server -2022-12-08 10:57:42.901144 + : Android63796554||pb-IF4NU0ojAA==|| joined server -2022-12-08 10:59:05.176765 + : ExcitedParagon67068||pb-IF49UxEpJg==|| joined server -2022-12-08 11:01:09.615687 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-08 11:01:32.682999 + : Imtiyazsay||pb-IF5RVWIRIw==|| joined server -2022-12-08 11:01:34.691078 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-08 11:02:37.932316 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 11:06:15.682106 + : CharredFly||pb-IF4-V3IdPA==|| joined server -2022-12-08 11:06:24.710695 + : SavingStil||pb-IF4SU04HUQ==|| joined server -2022-12-08 11:08:57.245441 + : shazan9950||pb-IF5QVFRdIQ==|| joined server -2022-12-08 11:09:32.386097 + : WonderfulH||pb-IF4sVVgTAg==|| joined server -2022-12-08 11:09:38.404960 + : RAEEEEEEEEEEEEEEEEES||pb-IF4wBUUK|| joined server -2022-12-08 11:09:54.455833 + : OptimisticSquid92630||pb-IF4HCGgf|| joined server -2022-12-08 11:10:23.559057 + : FlamexFLY786||pb-IF4sVUw6NA==|| joined server -2022-12-08 11:10:46.644333 + : Android63957105||pb-IF4UU08NVw==|| joined server -2022-12-08 11:11:41.853083 + : Blackyrace||pb-IF4xU0Q5HQ==|| joined server -2022-12-08 11:11:53.895742 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-08 11:12:13.977633 + : Gaurav96sa||pb-IF4OImhY|| joined server -2022-12-08 11:12:20.999666 + : Android63783914||pb-IF4BVxg7Eg==|| joined server -2022-12-08 11:13:39.267102 + : PC772976||pb-IF4xU04OMg==|| joined server -2022-12-08 11:14:39.466878 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-08 11:15:48.714007 + : Android63988326||pb-IF4rU1AuNQ==|| joined server -2022-12-08 11:16:07.762474 + : YOSHITHALAKMAL45||pb-IF4-U0w7DQ==|| joined server -2022-12-08 11:17:50.133136 + : Wikirex200||pb-IF41V0UyDg==|| joined server -2022-12-08 11:18:16.222346 + : PC772976||pb-IF4xU04OMg==|| joined server -2022-12-08 11:20:32.696570 + : Android58446010||pb-IF4cUkoNDQ==|| joined server -2022-12-08 11:20:40.716737 + : CharredFly||pb-IF4-V3IdPA==|| joined server -2022-12-08 11:21:11.820619 + : CulturalJa||pb-IF4pUxUDDQ==|| joined server -2022-12-08 11:21:26.878737 + : Martinphil||pb-IF4cU3oSUw==|| joined server -2022-12-08 11:21:38.925387 + : StableCohe||pb-IF4rU24hJA==|| joined server -2022-12-08 11:21:46.954076 + : Deepak11De||pb-IF40UhVdVA==|| joined server -2022-12-08 11:21:54.971255 + : CulturalJa||pb-IF4pUxUDDQ==|| joined server -2022-12-08 11:22:25.060589 + : Android63653458||pb-IF5RU0kbVg==|| joined server -2022-12-08 11:22:32.079844 + : apsgamergr||pb-JiNJARFYVUVIXl1AFkVVVFREFkdfQFlH|| joined server -2022-12-08 11:23:12.204781 + : shazan9950||pb-IF5QVFRdIQ==|| joined server -2022-12-08 11:23:20.233905 + : Android63846335||pb-IF4xU0sdDQ==|| joined server -2022-12-08 11:23:43.323471 + : Android63783914||pb-IF4BVxg7Eg==|| joined server -2022-12-08 11:23:53.366620 + : PC772976||pb-IF4xU04OMg==|| joined server -2022-12-08 11:24:27.499480 + : TheheAdlin||pb-IF5dU0oeCQ==|| joined server -2022-12-08 11:25:06.626920 + : ChangeableEagle25||pb-IF4HVVgjUA==|| joined server -2022-12-08 11:26:21.848675 + : EarlierPublic28||pb-IF4PVXUYAw==|| joined server -2022-12-08 11:26:34.888667 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-08 11:26:50.944516 + : StealthyAn||pb-IF4XU0EfDw==|| joined server -2022-12-08 11:27:15.040682 + : VigilantMa||pb-IF4dU0FZNQ==|| joined server -2022-12-08 11:28:01.256695 + : ProdigalAc||pb-IF4AVUgDDA==|| joined server -2022-12-08 11:29:51.663439 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2022-12-08 11:30:23.791935 + : VidhyanFal||pb-IF4LUk0FCQ==|| joined server -2022-12-08 11:30:24.798543 + : Android63934668||pb-IF4vU04bIw==|| joined server -2022-12-08 11:32:54.338453 + : Android63716776||pb-IF4jU0gSIQ==|| joined server -2022-12-08 11:34:11.611212 + : Android55528459||pb-IF4IUmhYLw==|| joined server -2022-12-08 11:35:04.790613 + : Android44375905||pb-IF4sVG4eKw==|| joined server -2022-12-08 11:35:24.870285 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-08 11:35:33.908378 + : abhinavwal||pb-IF4iU0g5VQ==|| joined server -2022-12-08 11:36:28.117478 + : abhinavwal||pb-IF4iU0g5VQ==|| joined server -2022-12-08 11:38:18.584820 + : Sujan||pb-IF48U04mAw==|| joined server -2022-12-08 11:38:25.603343 + : Android61975304||pb-IF4xU2waHw==|| joined server -2022-12-08 11:39:11.786699 + : TinyLight37384||pb-IF4zU04zCQ==|| joined server -2022-12-08 11:40:08.983482 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-08 11:40:49.198764 + : Android63888799||pb-IF4oU004KQ==|| joined server -2022-12-08 11:41:46.417640 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-08 11:41:52.434304 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-08 11:42:16.521125 + : GutturalRecorder44||pb-IF4sUkwBAw==|| joined server -2022-12-08 11:42:35.583326 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-08 11:42:45.614448 + : SpontaneousTexture21||pb-IF5QUncABw==|| joined server -2022-12-08 11:43:29.782560 + : prashanT64||pb-IF4IUlofKA==|| joined server -2022-12-08 11:43:47.857600 + : BoBoi1772||pb-IF5VU0lcPQ==|| joined server -2022-12-08 11:44:38.038916 + : BlondeKettle51||pb-IF4NU0sqBw==|| joined server -2022-12-08 11:44:54.104132 + : PseudoAttendance18||pb-IF4VVWsGIA==|| joined server -2022-12-08 11:45:01.141921 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2022-12-08 11:45:03.145503 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-08 11:46:03.345486 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-08 11:46:24.432844 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-08 11:46:51.560719 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-08 11:47:02.614584 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-08 11:47:04.617800 + : Android63692742||pb-IF5WU0kZJw==|| joined server -2022-12-08 11:47:14.663943 + : HeraldicRo||pb-IF4TU08KXQ==|| joined server -2022-12-08 11:47:25.705767 + : prashanT64||pb-IF4IUlofKA==|| joined server -2022-12-08 11:47:54.808215 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-08 11:47:55.812650 + : BlondeKettle51||pb-IF4NU0sqBw==|| joined server -2022-12-08 11:48:00.832443 + : Shintospam||pb-JiNJARFeXUJCWVxGFUdYVVNFGElaQFJE|| joined server -2022-12-08 11:48:36.936754 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-08 11:48:44.960604 + : Android55528459||pb-IF4IUmhYLw==|| joined server -2022-12-08 11:49:02.000464 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-08 11:49:19.057935 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-08 11:49:56.196691 + : TinyLight37384||pb-IF4zU04zCQ==|| joined server -2022-12-08 11:50:17.269309 + : Android63957105||pb-IF4UU08NVw==|| joined server -2022-12-08 11:51:07.441833 + : LEOxBANANA||pb-IF4WVVIKPA==|| joined server -2022-12-08 11:52:50.803742 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-08 11:53:16.891062 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-08 11:54:13.110428 + : aslammalik||pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB|| joined server -2022-12-08 11:54:50.263427 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 11:55:41.545562 + : InteriorDu||pb-IF4lUhECIQ==|| joined server -2022-12-08 11:56:22.704392 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-08 11:56:37.760293 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-08 11:56:42.777861 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-08 11:57:13.872718 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-08 11:58:54.213479 + : Bange3646||pb-IF4lU3YPNg==|| joined server -2022-12-08 11:59:00.246001 + : RustyUnicorn27009||pb-IF42U0kbEg==|| joined server -2022-12-08 11:59:03.259044 + : SpontaneousTexture21||pb-IF5QUncABw==|| joined server -2022-12-08 11:59:23.338805 + : delrowe012||pb-IF4PVFRZMA==|| joined server -2022-12-08 12:00:11.516786 + : Android60379499||pb-IF5WUxZTEg==|| joined server -2022-12-08 12:00:33.612826 + : SilverDearth2041||pb-IF4CVUsiNA==|| joined server -2022-12-08 12:00:50.682215 + : delrowe012||pb-IF4PVFRZMA==|| joined server -2022-12-08 12:01:18.787067 + : MRKHINDIGA||pb-IF4OU04GBg==|| joined server -2022-12-08 12:01:34.838685 + : Immeasura8||pb-IF5VUlYjNw==|| joined server -2022-12-08 12:01:41.870304 + : AntecedentLace34||pb-IF4NUksYVQ==|| joined server -2022-12-08 12:01:43.880020 + : MRKHINDIGA||pb-IF4OU04GBg==|| joined server -2022-12-08 12:02:04.958242 + : MRKHINDIGA||pb-IF4OU04GBg==|| joined server -2022-12-08 12:06:17.829273 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-08 12:07:12.213317 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-08 12:07:52.329099 + : ImplicitWa||pb-IF4xU3EoKg==|| joined server -2022-12-08 12:08:58.548168 + : Android58446010||pb-IF4cUkoNDQ==|| joined server -2022-12-08 12:09:01.558550 + : Android48794483||pb-IF4IVW0MVw==|| joined server -2022-12-08 12:14:18.892940 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 12:15:41.173721 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-08 12:17:49.622714 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-08 12:20:21.104904 + : UncriticalCovering42||pb-IF4gU3kvJA==|| joined server -2022-12-08 12:20:43.202359 + : Dhruvalgamit||pb-IF5dU0wvBw==|| joined server -2022-12-08 12:21:26.359314 + : Android62958044||pb-IF49VFcGNw==|| joined server -2022-12-08 12:21:28.371093 + : ronxbone||pb-IF4XU1BaKQ==|| joined server -2022-12-08 12:22:05.494864 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-08 12:22:39.621060 + : Android47205969||pb-IF4pVWMJFQ==|| joined server -2022-12-08 12:24:32.149113 + : SlimFrown9||pb-IF5UU1InJA==|| joined server -2022-12-08 12:24:35.159194 + : Android47745010||pb-IF5dVWgRBg==|| joined server -2022-12-08 12:26:39.663333 + : Android47205969||pb-IF4pVWMJFQ==|| joined server -2022-12-08 12:27:44.895232 + : IronLeopard87891||pb-IF43U0otUA==|| joined server -2022-12-08 12:28:12.039367 + : invincib18||pb-IF4nUxEIJA==|| joined server -2022-12-08 12:30:16.479826 + : jagu22wan||pb-IF4UUxYyXA==|| joined server -2022-12-08 12:30:25.506055 + : IronLeopard87891||pb-IF43U0otUA==|| joined server -2022-12-08 12:30:54.603587 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 12:30:56.611777 + : Android62958044||pb-IF49VFcGNw==|| joined server -2022-12-08 12:31:16.711272 + : Android53474172||pb-IF4cVVgfNg==|| joined server -2022-12-08 12:31:40.869120 + : PrettierCo||pb-IF4sU0ooIw==|| joined server -2022-12-08 12:31:59.924333 + : nikitamale||pb-IF5RU1EtMg==|| joined server -2022-12-08 12:32:40.087611 + : jagu22wan||pb-IF4UUxYyXA==|| joined server -2022-12-08 12:33:12.194324 + : Android47205969||pb-IF4pVWMJFQ==|| joined server -2022-12-08 12:33:18.225455 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-08 12:34:10.404644 + : StealthyAn||pb-IF4XU0EfDw==|| joined server -2022-12-08 12:34:30.486507 + : Jhonesfrank||pb-IF4sU00eCA==|| joined server -2022-12-08 12:37:49.198610 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-08 12:37:54.216579 + : Android63230025||pb-IF49U3oHJw==|| joined server -2022-12-08 12:37:58.231422 + : Android63767506||pb-IF5SU0seMQ==|| joined server -2022-12-08 12:39:24.562700 + : Undercov16||pb-IF41U08JLg==|| joined server -2022-12-08 12:40:58.096170 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-08 12:43:01.529821 + : Android61642463||pb-IF49U2k9IA==|| joined server -2022-12-08 12:43:29.647164 + : myselion1||pb-IF4HU08IMw==|| joined server -2022-12-08 12:43:54.754699 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-08 12:45:24.185206 + : bijodicarp||pb-IF4TVWEnIg==|| joined server -2022-12-08 12:45:52.291286 + : BlondeKettle51||pb-IF4NU0sqBw==|| joined server -2022-12-08 12:46:14.400651 + : Android64002826||pb-IF4KU1A9Mg==|| joined server -2022-12-08 12:46:50.512382 + : Vanquishe9||pb-IF4VUGpe|| joined server -2022-12-08 12:47:02.561510 + : jagu22wan||pb-IF4UUxYyXA==|| joined server -2022-12-08 12:47:16.612040 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-08 12:47:34.698217 + : Android63952566||pb-IF4zU09cLA==|| joined server -2022-12-08 12:47:39.718194 + : StealthyAn||pb-IF4XU0EfDw==|| joined server -2022-12-08 12:49:30.127953 + : SheikRieng||pb-IF4rU1BdLw==|| joined server -2022-12-08 12:49:54.209970 + : WobblyOffender29||pb-IF4-UxUcVA==|| joined server -2022-12-08 12:50:12.255174 + : Android60845640||pb-IF41UxkjMg==|| joined server -2022-12-08 12:51:30.539483 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-08 12:52:59.838584 + : AbhishekAjay744||pb-IF4xU2EbKg==|| joined server -2022-12-08 12:53:33.984588 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-08 12:54:37.200658 + : NoName55244e||pb-IF5TU2sZNQ==|| joined server -2022-12-08 12:54:39.208309 + : Bashmack22||pb-IF4dU09TFA==|| joined server -2022-12-08 12:55:07.294241 + : harshadkarale007||pb-IF4BU0wpDw==|| joined server -2022-12-08 12:55:30.393376 + : SneakyWill||pb-IF4zU0YHDQ==|| joined server -2022-12-08 12:57:18.780498 + : Android61174087||pb-IF4AU2QnDg==|| joined server -2022-12-08 12:57:24.803524 + : Android61174087||pb-IF4AU2QnDg==|| joined server -2022-12-08 12:57:33.831497 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-08 12:57:56.918871 + : RabidFight||pb-IF5RU3UzJA==|| joined server -2022-12-08 12:58:36.036680 + : ThoughtlessRevival51||pb-IF5dU0ceEQ==|| joined server -2022-12-08 12:59:23.212941 + : UnmarkedCommodore37||pb-IF4IUxUpCA==|| joined server -2022-12-08 12:59:29.231020 + : Dotphoenix||pb-IF4FV00SDA==|| joined server -2022-12-08 12:59:44.291572 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-08 12:59:59.332758 + : Android39280108||pb-IF4IVG5ZNA==|| joined server -2022-12-08 13:00:10.384141 + : Android48907943||pb-IF4DVW4HFA==|| joined server -2022-12-08 13:01:05.569611 + : ajithzee||pb-IF4KV04kVg==|| joined server -2022-12-08 13:01:10.588978 + : UnruffledPark1||pb-IF4RVU4kMQ==|| joined server -2022-12-08 13:01:32.654977 + : CrystalThrone2000||pb-IF5TLEwR|| joined server -2022-12-08 13:05:32.774009 + : Dotphoenix||pb-IF4FV00SDA==|| joined server -2022-12-08 13:06:32.221050 + : ScrapBlock||pb-IF42VWJaIA==|| joined server -2022-12-08 13:06:50.277642 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-08 13:06:56.300515 + : PrimitiveCoercion25||pb-IF4qU3BcNw==|| joined server -2022-12-08 13:07:02.325093 + : PrimitiveCoercion25||pb-IF4qU3BcNw==|| joined server -2022-12-08 13:07:05.334263 + : GinormousD||pb-IF4eU2VTAg==|| joined server -2022-12-08 13:07:17.374292 + : dubstepterror854||pb-JiNJARBbXEpBXltDFU5TUFdHF0FaQllH|| joined server -2022-12-08 13:07:24.407003 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-08 13:07:29.427012 + : PlasticWillOWisp7884||pb-IF4cV3AGLQ==|| joined server -2022-12-08 13:08:25.621480 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-08 13:08:30.636600 + : Android58446010||pb-IF4cUkoNDQ==|| joined server -2022-12-08 13:09:33.875497 + : StealthyAn||pb-IF4XU0EfDw==|| joined server -2022-12-08 13:09:51.108933 + : HipRooster87595||pb-IF4MVXQdNw==|| joined server -2022-12-08 13:10:52.312894 + : PlasticWillOWisp7884||pb-IF4cV3AGLQ==|| joined server -2022-12-08 13:11:53.536053 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 13:12:08.598550 + : Android50850972||pb-IF4hVXoyMA==|| joined server -2022-12-08 13:12:18.637031 + : rawoofraw||pb-IF5RU1EbMw==|| joined server -2022-12-08 13:12:56.747206 + : Vanquishe5||pb-JiNJARFYVURCWV9HFEZUVlZGEkZeQVVL|| joined server -2022-12-08 13:13:12.798290 + : ColTPaV||pb-IF4BUxlSNg==|| joined server -2022-12-08 13:13:38.878785 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-08 13:14:04.975319 + : yashbarot1||pb-IF5QU0MbHQ==|| joined server -2022-12-08 13:15:22.329519 + : Android48907943||pb-IF4DVW4HFA==|| joined server -2022-12-08 13:15:45.422750 + : hck3rr||pb-IF4UU3FYVg==|| joined server -2022-12-08 13:15:48.435236 + : Android58446010||pb-IF4cUkoNDQ==|| joined server -2022-12-08 13:15:52.446278 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-08 13:16:13.526653 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-08 13:20:24.378307 + : devendra12||pb-IF4WUmFcVw==|| joined server -2022-12-08 13:20:27.384130 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-08 13:23:38.104283 + : Android48794483||pb-IF4IVW0MVw==|| joined server -2022-12-08 13:23:58.180792 + : GinormousD||pb-IF4eU2VTAg==|| joined server -2022-12-08 13:26:02.810482 + : PC608120||pb-IF4PU0cTLg==|| joined server -2022-12-08 13:27:21.107595 + : HumblerMare46||pb-IF5VU0dfJg==|| joined server -2022-12-08 13:28:29.349243 + : GAMERG5958||pb-IF4QUm44Jw==|| joined server -2022-12-08 13:31:11.936883 + : Frumptio19||pb-IF4nU3ZaUg==|| joined server -2022-12-08 13:32:13.158696 + : Android63816859||pb-IF4CU0sGIg==|| joined server -2022-12-08 13:32:16.168190 + : Chxrrlieee||pb-IF4vUk8TCQ==|| joined server -2022-12-08 13:32:22.192305 + : JILLADI47||pb-IF4mVWwSUg==|| joined server -2022-12-08 13:34:06.568783 + : AcidAttitu||pb-IF5VU086Ig==|| joined server -2022-12-08 13:35:25.853967 + : Dotphoenix||pb-IF4FV00SDA==|| joined server -2022-12-08 13:36:22.005676 + : Android63825583||pb-IF4PU0saDA==|| joined server -2022-12-08 13:38:19.425160 + : mrsaifuuuu||pb-IF4WU05cNA==|| joined server -2022-12-08 13:38:45.506623 + : Android63825583||pb-IF4PU0saDA==|| joined server -2022-12-08 13:40:16.804910 + : AbhishekAjay744||pb-IF4xU2EbKg==|| joined server -2022-12-08 13:40:45.920627 + : ThirstyNin||pb-JiNJVxFTV0JDVV9BGE5YV11DFEleR1hA|| joined server -2022-12-08 13:40:55.996179 + : GG么VarunBro||pb-IF5UU08_PQ==|| joined server -2022-12-08 13:41:40.159546 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-08 13:43:20.574492 + : JadNVD||pb-IF4GU0oFEQ==|| joined server -2022-12-08 13:44:47.907196 + : Dotphoenix||pb-IF4FV00SDA==|| joined server -2022-12-08 13:48:25.850272 + : Android63827507||pb-IF4eU0xTJg==|| joined server -2022-12-08 13:48:59.955327 + : AbhishekAjay744||pb-IF4xU2EbKg==|| joined server -2022-12-08 13:49:14.013067 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-08 13:49:18.018967 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-08 13:49:44.119574 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-08 13:50:00.175827 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-08 13:50:11.216923 + : Dotphoenix||pb-IF4FV00SDA==|| joined server -2022-12-08 13:50:52.354733 + : CrimsonOut||pb-IF4vU08ZUg==|| joined server -2022-12-08 13:51:06.414453 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-08 13:51:46.573356 + : Harissh59at2009||pb-IF48VUI9CA==|| joined server -2022-12-08 13:54:48.271305 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-08 13:56:41.638059 + : SlowDiplodocus47602||pb-IF4XU0UYAA==|| joined server -2022-12-08 13:57:07.001551 + : tuandadenn||pb-IF4VU1BfDA==|| joined server -2022-12-08 13:57:13.014097 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-08 13:58:19.238208 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-08 13:58:30.272936 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-08 13:59:20.499169 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-08 13:59:23.504839 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-08 13:59:59.622760 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-08 14:00:45.800003 + : RankHoplit||pb-IF4wUlk7PQ==|| joined server -2022-12-08 14:00:48.808292 + : BrassAdmirer24||pb-IF4MU3MiAw==|| joined server -2022-12-08 14:00:49.812419 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-08 14:01:10.887337 + : viru199554||pb-IF4VU3EjBg==|| joined server -2022-12-08 14:01:36.983996 + : Following3||pb-IF5XU0ZbBA==|| joined server -2022-12-08 14:02:33.191323 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 14:02:44.228190 + : shazan9950||pb-IF5QVFRdIQ==|| joined server -2022-12-08 14:04:41.648295 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 14:04:48.666387 + : Android63692742||pb-IF5WU0kZJw==|| joined server -2022-12-08 14:04:59.702872 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-08 14:05:03.724409 + : abimaxcj43||pb-IF4LU09TNw==|| joined server -2022-12-08 14:06:00.945371 + : BrassAdmirer24||pb-IF4MU3MiAw==|| joined server -2022-12-08 14:06:52.108588 + : SillyMembrane32||pb-IF4AU04IHQ==|| joined server -2022-12-08 14:07:30.256264 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-08 14:09:27.729480 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-08 14:10:51.066410 + : Android63933878||pb-IF4XU09aAA==|| joined server -2022-12-08 14:12:00.324231 + : LavishWedg||pb-IF5VU1I_AA==|| joined server -2022-12-08 14:12:16.389594 + : SillyMembrane32||pb-IF4AU04IHQ==|| joined server -2022-12-08 14:12:28.438130 + : Android64004719||pb-IF4zU1AjFA==|| joined server -2022-12-08 14:13:38.732500 + : Android63999047||pb-IF4yU08aFA==|| joined server -2022-12-08 14:14:19.892454 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 14:14:42.981378 + : StealthyAn||pb-IF4XU0EfDw==|| joined server -2022-12-08 14:15:48.215621 + : Devil77181908||pb-IF4dUFk_|| joined server -2022-12-08 14:16:14.303215 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-08 14:17:21.529064 + : SuggestiveGarage45||pb-IF5RU0pSBg==|| joined server -2022-12-08 14:17:27.557183 + : Android61550274||pb-IF4QU2giKg==|| joined server -2022-12-08 14:17:30.564979 + : Pragmati11||pb-IF4CVXAoAA==|| joined server -2022-12-08 14:17:58.674882 + : DeadlyCent||pb-IF4iU0gIJw==|| joined server -2022-12-08 14:18:47.854867 + : Jayrajsinh||pb-IF4SU00JHw==|| joined server -2022-12-08 14:19:29.002014 + : UnfairBrea||pb-IF4OU0UkLw==|| joined server -2022-12-08 14:20:15.183731 + : RoyalGangs||pb-IF43UmMfKw==|| joined server -2022-12-08 14:20:32.251498 + : Devil77181908||pb-IF4dUFk_|| joined server -2022-12-08 14:21:11.398542 + : Android61550274||pb-IF4QU2giKg==|| joined server -2022-12-08 14:21:37.486104 + : Deepak11De||pb-IF40UhVdVA==|| joined server -2022-12-08 14:22:39.697749 + : jhoelhecto||pb-IF4nVVEGHA==|| joined server -2022-12-08 14:24:45.105655 + : viru199554||pb-IF4VU3EjBg==|| joined server -2022-12-08 14:24:57.141914 + : Android63952463||pb-IF5dU1AACA==|| joined server -2022-12-08 14:27:49.991703 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-08 14:28:31.149633 + : CreativeRa||pb-IF4SVHUFEQ==|| joined server -2022-12-08 14:28:49.220775 + : Android63825583||pb-IF4PU0saDA==|| joined server -2022-12-08 14:28:51.231821 + : Android61550274||pb-IF4QU2giKg==|| joined server -2022-12-08 14:28:54.247908 + : Dotphoenix||pb-IF4FV00SDA==|| joined server -2022-12-08 14:29:59.529684 + : Android63879850||pb-IF4xU0wELA==|| joined server -2022-12-08 14:30:05.549115 + : GlossyTact||pb-IF4LUxA7Ug==|| joined server -2022-12-08 14:30:58.748534 + : RustyUnicorn27009||pb-IF42U0kbEg==|| joined server -2022-12-08 14:31:25.844898 + : nikitamale||pb-IF5RU1EtMg==|| joined server -2022-12-08 14:32:46.504822 + : nikitamale||pb-IF5RU1EtMg==|| joined server -2022-12-08 14:33:12.599712 + : Devil77181908||pb-IF4dUFk_|| joined server -2022-12-08 14:33:28.650469 + : CowardlyAi||pb-IF5UVRAzPA==|| joined server -2022-12-08 14:34:20.827992 + : Android63999047||pb-IF4yU08aFA==|| joined server -2022-12-08 14:34:37.883873 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-08 14:35:28.081730 + : AbhishekAjay744||pb-IF4xU2EbKg==|| joined server -2022-12-08 14:36:22.258031 + : Arshuu199784||pb-IF5VDWws|| joined server -2022-12-08 14:36:29.282647 + : DilatoryHo||pb-IF48U3FaNQ==|| joined server -2022-12-08 14:36:47.361946 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-08 14:40:30.532725 + : Trick23456||pb-IF4zEVki|| joined server -2022-12-08 14:40:47.586271 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-08 14:41:04.625720 + : mrsaifuuuu||pb-IF4WU05cNA==|| joined server -2022-12-08 14:41:53.889365 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 14:43:27.244270 + : Android55619612||pb-IF4DV00iLw==|| joined server -2022-12-08 14:44:20.437180 + : CherishedPlunder15||pb-IF4PU08qBw==|| joined server -2022-12-08 14:44:27.446091 + : CruddyCapy||pb-IF4FVVUHCw==|| joined server -2022-12-08 14:45:50.829363 + : zombieswar||pb-IF4CVBQREg==|| joined server -2022-12-08 14:47:02.091299 + : PC346437||pb-IF5SVFdSFQ==|| joined server -2022-12-08 14:48:01.299225 + : akkiakshay6364||pb-IF4pU049LQ==|| joined server -2022-12-08 14:48:44.480238 + : Irredeem14||pb-JiNJARFcUUJBX1dEGURSU1JEEkhcQlBK|| joined server -2022-12-08 14:48:48.485381 + : Android50562981||pb-IF5dVUEvUg==|| joined server -2022-12-08 14:51:06.138330 + : Dominati30||pb-IF4RX3I_|| joined server -2022-12-08 14:51:31.240189 + : Android50562981||pb-IF5dVUEvUg==|| joined server -2022-12-08 14:51:38.280733 + : ZealousOra||pb-IF4JU086EA==|| joined server -2022-12-08 14:52:12.639509 + : HonorableEttin404||pb-IF4eU004Ew==|| joined server -2022-12-08 14:52:26.688224 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-08 14:52:44.759092 + : ZealousOra||pb-IF4JU086EA==|| joined server -2022-12-08 14:53:09.832694 + : febincs||pb-IF4KUhVaNg==|| joined server -2022-12-08 14:54:06.106018 + : Raghav2655||pb-IF4cU2UJCA==|| joined server -2022-12-08 14:54:57.662693 + : sOFF1C1AL||pb-IF5VU0cyFg==|| joined server -2022-12-08 14:56:10.228285 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-08 14:56:14.241075 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-08 14:56:28.285772 + : IndifferentSound21||pb-IF4NUnkgNQ==|| joined server -2022-12-08 14:56:37.326310 + : RustyUnicorn27009||pb-IF42U0kbEg==|| joined server -2022-12-08 14:57:17.717256 + : Android63946527||pb-IF4dU3FeVg==|| joined server -2022-12-08 14:58:08.951001 + : CHICKENBOO||pb-IF4AV1QqEQ==|| joined server -2022-12-08 14:58:33.063573 + : UnfairBrea||pb-IF4OU0UkLw==|| joined server -2022-12-08 14:58:39.085548 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2022-12-08 14:58:50.131743 + : Android60974634||pb-IF4rU2EZEw==|| joined server -2022-12-08 14:59:10.204323 + : Android53169229||pb-IF4IU21cHQ==|| joined server -2022-12-08 15:00:31.502504 + : PRATHAMESH07CSK||pb-IF4NUlQRIw==|| joined server -2022-12-08 15:00:39.535225 + : UnfairBrea||pb-IF4OU0UkLw==|| joined server -2022-12-08 15:01:07.622328 + : Android63888799||pb-IF4oU004KQ==|| joined server -2022-12-08 15:01:26.705062 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-08 15:02:25.334696 + : ameno||pb-IF4PU0lcNA==|| joined server -2022-12-08 15:02:49.415250 + : Yashz555||pb-IF4HU1A7Mw==|| joined server -2022-12-08 15:03:45.631611 + : IndifferentSound21||pb-IF4NUnkgNQ==|| joined server -2022-12-08 15:03:59.696699 + : Dhruv3125||pb-IF4LVFgCDg==|| joined server -2022-12-08 15:04:05.723093 + : ArcticStatus25||pb-IF4-U0heCw==|| joined server -2022-12-08 15:04:49.871616 + : ameno||pb-IF4PU0lcNA==|| joined server -2022-12-08 15:05:13.958716 + : Android58446010||pb-IF4cUkoNDQ==|| joined server -2022-12-08 15:05:23.980331 + : ameno||pb-IF4PU0lcNA==|| joined server -2022-12-08 15:05:42.034116 + : ameno||pb-IF4PU0lcNA==|| joined server -2022-12-08 15:06:35.219937 + : Android62520439||pb-IF5RU3UFCg==|| joined server -2022-12-08 15:07:19.805883 + : Android63888799||pb-IF4oU004KQ==|| joined server -2022-12-08 15:07:50.893661 + : nikitamale||pb-IF5RU1EtMg==|| joined server -2022-12-08 15:07:55.920456 + : bisht4189||pb-IF4SEHAl|| joined server -2022-12-08 15:08:30.023105 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-08 15:08:52.100811 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-08 15:09:50.673462 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-08 15:10:33.834475 + : jaggi132||pb-IF49VFUoLw==|| joined server -2022-12-08 15:11:21.294528 + : UnfairBrea||pb-IF4OU0UkLw==|| joined server -2022-12-08 15:11:25.314208 + : bisht4189||pb-IF4SEHAl|| joined server -2022-12-08 15:11:43.374387 + : Android62520439||pb-IF5RU3UFCg==|| joined server -2022-12-08 15:12:24.943594 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-08 15:12:31.966631 + : Android62520439||pb-IF5RU3UFCg==|| joined server -2022-12-08 15:12:54.039477 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-08 15:13:34.190241 + : UnfairBrea||pb-IF4OU0UkLw==|| joined server -2022-12-08 15:13:59.536561 + : ThisisMitu||pb-IF4HV2FcNA==|| joined server -2022-12-08 15:14:00.542224 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-08 15:14:07.579107 + : BrassAdmirer24||pb-IF4MU3MiAw==|| joined server -2022-12-08 15:14:18.615418 + : DevilDhanu2404||pb-IF4cU0IcMw==|| joined server -2022-12-08 15:16:30.069182 + : RabidFight||pb-IF5RU3UzJA==|| joined server -2022-12-08 15:17:09.202984 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-08 15:17:34.381703 + : PlasticWillOWisp7884||pb-IF4cV3AGLQ==|| joined server -2022-12-08 15:17:40.402615 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-08 15:18:02.481140 + : Android63952566||pb-IF4zU09cLA==|| joined server -2022-12-08 15:18:34.601511 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-08 15:19:01.687666 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-08 15:19:24.745616 + : PennilessH||pb-IF4lUxQZCw==|| joined server -2022-12-08 15:19:49.063341 + : jishnumb||pb-IF5XU0khNg==|| joined server -2022-12-08 15:21:40.413838 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-08 15:21:49.460338 + : nikitamale||pb-IF5RU1EtMg==|| joined server -2022-12-08 15:21:51.465944 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-08 15:22:01.490614 + : Android59978094||pb-IF5dUxEdMw==|| joined server -2022-12-08 15:24:19.208393 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-08 15:24:32.245943 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-08 15:25:01.319148 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-08 15:26:04.561423 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-08 15:26:26.633825 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-08 15:27:44.869571 + : Android48794483||pb-IF4IVW0MVw==|| joined server -2022-12-08 15:28:52.626833 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-08 15:30:35.466928 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-08 15:30:38.482152 + : HonorableEttin404||pb-IF4eU004Ew==|| joined server -2022-12-08 15:30:42.493987 + : DevilDhanu2404||pb-IF4cU0IcMw==|| joined server -2022-12-08 15:32:51.178953 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-08 15:33:04.233754 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-08 15:33:07.247167 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-08 15:34:19.507947 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-08 15:35:00.645440 + : TenableCoherence51||pb-IF4zU20BFA==|| joined server -2022-12-08 15:35:40.778527 + : ProudQuart||pb-IF4oU08FVQ==|| joined server -2022-12-08 15:35:45.794252 + : CosmicOutl||pb-IF4yUng_XA==|| joined server -2022-12-08 15:37:37.153174 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 15:38:21.306312 + : Chetanbond||pb-IF4KVEYaHQ==|| joined server -2022-12-08 15:39:04.450480 + : LivelyAcqu||pb-IF48VUY-Cg==|| joined server -2022-12-08 15:39:14.487517 + : GratefulRobot34276||pb-IF4KU3kmAg==|| joined server -2022-12-08 15:39:39.573788 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-08 15:39:56.630366 + : RabidFight||pb-IF5RU3UzJA==|| joined server -2022-12-08 15:40:15.700438 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-08 15:41:32.934091 + : jaggi132||pb-IF49VFUoLw==|| joined server -2022-12-08 15:41:50.063911 + : jishnumb||pb-IF5XU0khNg==|| joined server -2022-12-08 15:41:53.072562 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-08 15:42:50.260387 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-08 15:44:01.530691 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-08 15:44:05.542295 + : 7srtx||pb-IF4lU3IAEw==|| joined server -2022-12-08 15:45:41.888540 + : ProudQuart||pb-IF4oU08FVQ==|| joined server -2022-12-08 15:46:35.084853 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-08 15:48:38.379939 + : DoubtfulCell25||pb-IF4DUnYIFw==|| joined server -2022-12-08 15:50:01.976341 + : Android63983428||pb-IF4sU04eKw==|| joined server -2022-12-08 15:50:10.996663 + : FilialCustom14||pb-IF4dVUwuJg==|| joined server -2022-12-08 15:51:29.590751 + : Sumanth386||pb-IF5TUm4DNg==|| joined server -2022-12-08 15:51:31.595149 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-08 15:51:44.867291 + : Wikirex200||pb-IF41V0UyDg==|| joined server -2022-12-08 15:52:01.912707 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-08 15:52:36.037682 + : GlossyTact||pb-IF4LUxA7Ug==|| joined server -2022-12-08 15:53:43.262800 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2022-12-08 15:53:52.302660 + : VishalDorl||pb-IF4CLUED|| joined server -2022-12-08 15:54:01.334529 + : samkng2728||pb-IF4zU0M4BA==|| joined server -2022-12-08 15:55:53.073551 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-08 15:56:00.090304 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-08 15:57:49.602584 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-08 15:58:44.862102 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-08 15:59:22.984642 + : FuriousPhysician26||pb-IF4uUk4vMg==|| joined server -2022-12-08 15:59:53.348805 + : ExcitableA||pb-IF4rUngmDQ==|| joined server -2022-12-08 16:00:49.521875 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-08 16:01:50.736753 + : SpontaneousTexture21||pb-IF5QUncABw==|| joined server -2022-12-08 16:02:29.879375 + : DoubtfulCell25||pb-IF4DUnYIFw==|| joined server -2022-12-08 16:03:24.056390 + : HatefulAnn||pb-IF4PUkogDg==|| joined server -2022-12-08 16:03:32.093454 + : LankyTennis29||pb-IF4pUxEzNw==|| joined server -2022-12-08 16:03:46.147350 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-08 16:05:09.909019 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-08 16:05:51.046119 + : ronxbone||pb-IF4XU1BaKQ==|| joined server -2022-12-08 16:06:32.439787 + : GoㅤDㅤUsopp||pb-IF4PU3oqXQ==|| joined server -2022-12-08 16:08:12.819222 + : FranticMas||pb-IF4pU3YGLA==|| joined server -2022-12-08 16:09:49.176397 + : HipCompany||pb-IF4WUxcgNw==|| joined server -2022-12-08 16:10:12.239777 + : scarecrowk||pb-IF43VWYDFw==|| joined server -2022-12-08 16:11:35.137669 + : TNT999||pb-IF49UlZZPQ==|| joined server -2022-12-08 16:11:39.152183 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-08 16:11:52.186953 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-08 16:12:02.212799 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-08 16:14:12.097209 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-08 16:15:21.341446 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-08 16:15:56.478144 + : BygoneSensitivity12||pb-IF4uUhcEDg==|| joined server -2022-12-08 16:16:19.548145 + : TejGamerNt||pb-IF4oUxAGPQ==|| joined server -2022-12-08 16:17:04.722137 + : Invisible6||pb-IF4MU085LA==|| joined server -2022-12-08 16:17:48.884066 + : Android62576681||pb-IF4RU3QoXQ==|| joined server -2022-12-08 16:18:46.106971 + : Wikirex200||pb-IF41V0UyDg==|| joined server -2022-12-08 16:20:05.380664 + : Pratham212||pb-IF4NU0wvUQ==|| joined server -2022-12-08 16:20:09.688167 + : CognizantT||pb-IF4xU0ccBw==|| joined server -2022-12-08 16:20:37.347188 + : Android63934435||pb-IF4wU04YXA==|| joined server -2022-12-08 16:22:00.614658 + : Android61269388||pb-IF4uU2UqLQ==|| joined server -2022-12-08 16:22:27.255958 + : QuickPilotAGS||pb-IF4pUxUJNA==|| joined server -2022-12-08 16:22:49.329533 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2022-12-08 16:23:11.407324 + : Antibioti8||pb-IF4VVFIREg==|| joined server -2022-12-08 16:23:20.440969 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-08 16:25:01.884334 + : Android49719484||pb-IF4pVXRTPQ==|| joined server -2022-12-08 16:26:17.154112 + : SleepyPhan||pb-IF4uVG0fIQ==|| joined server -2022-12-08 16:27:49.780341 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-08 16:27:54.795107 + : alex007007||pb-JiNJARBdVEpIXF5GEEVYUlJCEEdeTlhE|| joined server -2022-12-08 16:28:15.881550 + : DilatoryHo||pb-IF48U3FaNQ==|| joined server -2022-12-08 16:30:32.396740 + : PC773967||pb-IF4vU1A9EA==|| joined server -2022-12-08 16:31:25.581767 + : ChoiceBrib||pb-IF4lU0YSMg==|| joined server -2022-12-08 16:31:32.603666 + : Android44285908||pb-IF5XVFceUg==|| joined server -2022-12-08 16:31:35.619940 + : ZADKIEL||pb-IF4wU00DEA==|| joined server -2022-12-08 16:32:21.123937 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-08 16:32:24.139052 + : Omfoo||pb-IF5QU0cfHA==|| joined server -2022-12-08 16:33:13.322389 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-08 16:34:10.538152 + : rathoresha||pb-IF40VRQGUA==|| joined server -2022-12-08 16:34:24.577413 + : Android57008711||pb-IF4RUnY9IQ==|| joined server -2022-12-08 16:34:58.708323 + : Betrayking||pb-IF48U1AOCQ==|| joined server -2022-12-08 16:35:50.873452 + : Southward5||pb-IF4lU1BbHA==|| joined server -2022-12-08 16:35:56.891638 + : Vanquishe9||pb-IF4VUGpe|| joined server -2022-12-08 16:36:04.924284 + : chotusakno||pb-IF4UU1AsHw==|| joined server -2022-12-08 16:36:18.977802 + : Vanquishe9||pb-IF4VUGpe|| joined server -2022-12-08 16:36:58.095844 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-08 16:37:14.177742 + : aashiq8126||pb-IF4VUnQ-Cg==|| joined server -2022-12-08 16:37:16.185034 + : Android64004086||pb-IF4uU08eFA==|| joined server -2022-12-08 16:37:55.302097 + : Android63415043||pb-IF4eU0MjFw==|| joined server -2022-12-08 16:38:31.432621 + : Anthropolo||pb-IF4-U2suMg==|| joined server -2022-12-08 16:39:31.650555 + : Robinhood1||pb-IF4CVEkSDw==|| joined server -2022-12-08 16:41:19.114232 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2022-12-08 16:42:51.391723 + : Android57008711||pb-IF4RUnY9IQ==|| joined server -2022-12-08 16:44:35.775614 + : ChoiceBrib||pb-IF4lU0YSMg==|| joined server -2022-12-08 16:44:55.860275 + : ChoiceBrib||pb-IF4lU0YSMg==|| joined server -2022-12-08 16:47:35.061610 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-08 16:47:44.090903 + : divs2104||pb-IF4nU3IxEw==|| joined server -2022-12-08 16:47:55.124963 + : KossTin||pb-IF4cVWodHw==|| joined server -2022-12-08 16:49:23.427583 + : SpiritualA||pb-IF5SU2MfCw==|| joined server -2022-12-08 16:49:36.484541 + : chotusakno||pb-IF4UU1AsHw==|| joined server -2022-12-08 16:50:04.039317 + : djankit857||pb-IF4iVFBbDA==|| joined server -2022-12-08 16:51:38.358099 + : Android57008711||pb-IF4RUnY9IQ==|| joined server -2022-12-08 16:52:03.476353 + : CraftyDemo||pb-IF4lU2UnBA==|| joined server -2022-12-08 16:52:31.557206 + : Android63180331||pb-IF4CU3oxLA==|| joined server -2022-12-08 16:53:49.999899 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-08 16:55:09.936069 + : CraftyDemo||pb-IF4lU2UnBA==|| joined server -2022-12-08 16:55:52.082421 + : FuriousPhysician26||pb-IF4uUk4vMg==|| joined server -2022-12-08 16:57:04.346618 + : febincs||pb-IF4KUhVaNg==|| joined server -2022-12-08 16:57:47.494671 + : HatefulAnn||pb-IF4PUkogDg==|| joined server -2022-12-08 16:58:54.874119 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-08 16:59:42.037891 + : PC773967||pb-IF4vU1A9EA==|| joined server -2022-12-08 17:00:48.282440 + : kartikeyku||pb-IF4MVUszXA==|| joined server -2022-12-08 17:01:05.632486 + : ᴵᴬᴹズRaoJi||pb-IF4pVVQBEA==|| joined server -2022-12-08 17:01:19.120326 + : ᴵᴬᴹズRaoJi||pb-IF4pVVQBEA==|| joined server -2022-12-08 17:01:40.175379 + : CompanionableCot41||pb-IF5cVUkKVA==|| joined server -2022-12-08 17:01:50.201180 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-08 17:02:23.301728 + : InorganicB||pb-IF5WU3oCNg==|| joined server -2022-12-08 17:03:07.464235 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-08 17:03:32.543674 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 17:04:12.710091 + : setscalp45||pb-IF4HU0soKA==|| joined server -2022-12-08 17:05:11.918997 + : LeastChari||pb-JiNJARBZVEdGXldAEEJYXVdHEUNcQ1RF|| joined server -2022-12-08 17:05:55.094806 + : AzeemAhamedAlambu||pb-IF4iU3QhNA==|| joined server -2022-12-08 17:06:36.256939 + : Android63957105||pb-IF4UU08NVw==|| joined server -2022-12-08 17:07:43.519070 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-08 17:07:48.531411 + : OrganicHor||pb-IF4-U0MYXA==|| joined server -2022-12-08 17:10:03.993829 + : Aashikanna||pb-IF4jU0cIPA==|| joined server -2022-12-08 17:11:30.290894 + : Attitudeboy997||pb-IF4dVFgCLg==|| joined server -2022-12-08 17:11:39.334524 + : Metropoli9||pb-IF4wU1AnFw==|| joined server -2022-12-08 17:11:47.344521 + : SpiritualA||pb-IF5SU2MfCw==|| joined server -2022-12-08 17:13:34.730762 + : RestiveLap||pb-IF4zU1BTUQ==|| joined server -2022-12-08 17:16:28.368977 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-08 17:16:56.459941 + : VoidDepriv||pb-IF4AVVMnKQ==|| joined server -2022-12-08 17:17:11.513911 + : VoidDepriv||pb-IF4AVVMnKQ==|| joined server -2022-12-08 17:18:28.786443 + : VoidDepriv||pb-IF4AVVMnKQ==|| joined server -2022-12-08 17:18:47.839905 + : VoidDepriv||pb-IF4AVVMnKQ==|| joined server -2022-12-08 17:19:42.025658 + : SimplestUn||pb-IF5WU0YaFw==|| joined server -2022-12-08 17:21:24.378641 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-08 17:21:28.396000 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-08 17:21:57.492097 + : Harshkhabde140||pb-IF4xU0cAHA==|| joined server -2022-12-08 17:23:41.881951 + : Android50439504||pb-IF4tVXg7Mw==|| joined server -2022-12-08 17:24:23.030160 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-08 17:24:57.170824 + : Shantanusa||pb-IF40U08fFA==|| joined server -2022-12-08 17:25:05.198522 + : OutrightPeriphery10||pb-IF4HVFFTUg==|| joined server -2022-12-08 17:25:36.297130 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-08 17:25:43.329747 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-08 17:25:46.341547 + : WirelessNe||pb-IF4nUkteVA==|| joined server -2022-12-08 17:27:42.772162 + : InterstateRoll47||pb-IF4tU0chAw==|| joined server -2022-12-08 17:27:48.788534 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-08 17:30:13.333223 + : ALEJANDRO5||pb-IF4IJ1FY|| joined server -2022-12-08 17:30:37.422217 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-08 17:31:41.644751 + : Karanshah2||pb-IF4LV2NYBg==|| joined server -2022-12-08 17:32:04.710585 + : aashiq8126||pb-IF4VUnQ-Cg==|| joined server -2022-12-08 17:33:07.929074 + : Shantanusa||pb-IF40U08fFA==|| joined server -2022-12-08 17:33:53.083158 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-08 17:34:40.215126 + : Krushant11||pb-IF5VM3Qm|| joined server -2022-12-08 17:35:57.493504 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-08 17:37:19.764834 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-08 17:38:43.998650 + : Periodica5||pb-IF5dU004Jg==|| joined server -2022-12-08 17:38:57.039089 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-08 17:39:41.160216 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-08 17:39:46.166268 + : srk7000||pb-IF4rVUkmKw==|| joined server -2022-12-08 17:39:59.216271 + : Android63039797||pb-IF4wU3kpMA==|| joined server -2022-12-08 17:45:23.372090 + : IndependentBoard34||pb-IF4gU0Y7AQ==|| joined server -2022-12-08 17:45:38.444970 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-08 17:45:52.505716 + : AccurateDe||pb-IF4XVW1YHQ==|| joined server -2022-12-08 17:48:23.039207 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-08 17:48:29.058632 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-08 17:49:52.336980 + : Invisible6||pb-IF4MU085LA==|| joined server -2022-12-08 17:49:58.345480 + : balamuruga||pb-JiNJVxFfUktFXltAEU5UUVVLGERXRVJG|| joined server -2022-12-08 17:50:49.545541 + : Android63983709||pb-IF4UU1AtCw==|| joined server -2022-12-08 17:51:34.730901 + : QuackingC2||pb-IF4IVU9bLA==|| joined server -2022-12-08 17:51:43.760321 + : zikourazko||pb-IF5QKmsY|| joined server -2022-12-08 17:52:50.037310 + : DexTerOuSVikAriA||pb-IF4GUxUZKg==|| joined server -2022-12-08 17:53:03.083548 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-08 17:53:08.104386 + : Raghav2655||pb-IF4cU2UJCA==|| joined server -2022-12-08 17:54:55.522300 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-08 17:55:16.607914 + : LIONHUNTER||pb-IF4eVGc7Cw==|| joined server -2022-12-08 17:55:19.621205 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-08 17:55:41.709377 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-08 17:55:50.735050 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-08 17:57:12.204611 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-08 18:04:20.836853 + : LionAlpha7||pb-IF4UVGg8KQ==|| joined server -2022-12-08 18:06:41.382527 + : plasticgame1423||pb-IF4sU00yMg==|| joined server -2022-12-08 18:07:56.676741 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-08 18:09:47.102743 + : DarkSideEr||pb-IF4QU0ceKQ==|| joined server -2022-12-08 18:10:38.301995 + : DeceptiveL||pb-IF5WU28fFg==|| joined server -2022-12-08 18:10:41.314434 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-08 18:10:43.320841 + : sanka45678||pb-IF4OU1BfLA==|| joined server -2022-12-08 18:10:52.353522 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-08 18:15:21.341343 + : Moldyblade||pb-IF4UU0YbEQ==|| joined server -2022-12-08 18:17:25.736151 + : Android57361651||pb-IF4NV3oIFA==|| joined server -2022-12-08 18:20:25.443232 + : ThreeToe14||pb-IF4FVXoEHw==|| joined server -2022-12-08 18:22:58.991245 + : LionAlpha7||pb-IF4UVGg8KQ==|| joined server -2022-12-08 18:23:25.070586 + : Hitman0079||pb-IF4LVXgMKQ==|| joined server -2022-12-08 18:24:38.321447 + : ArableSyllable30||pb-IF4DU0McIw==|| joined server -2022-12-08 18:25:40.530481 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-08 18:26:54.812161 + : InnateSinner19||pb-IF4IU04pBA==|| joined server -2022-12-08 18:29:34.429632 + : WeakerDist||pb-IF48U0gcBw==|| joined server -2022-12-08 18:30:04.546879 + : Periodica5||pb-IF5dU004Jg==|| joined server -2022-12-08 18:31:08.790448 + : Android63990451||pb-IF4hU04fVg==|| joined server -2022-12-08 18:31:20.830452 + : Android63990451||pb-IF4hU04fVg==|| joined server -2022-12-08 18:33:32.317411 + : Moldyblade||pb-IF4UU0YbEQ==|| joined server -2022-12-08 18:34:54.592033 + : Agzx2244||pb-IF4PV24yPA==|| joined server -2022-12-08 18:36:34.022435 + : ArableSyllable30||pb-IF4DU0McIw==|| joined server -2022-12-08 18:36:52.082991 + : Periodica5||pb-IF5dU004Jg==|| joined server -2022-12-08 18:37:30.249474 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-08 18:39:26.861565 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-08 18:40:25.152072 + : SeverestAp||pb-IF4jU0JaNg==|| joined server -2022-12-08 18:40:48.225886 + : SinisterCa||pb-IF4lU005Jw==|| joined server -2022-12-08 18:41:16.339506 + : Moldyblade||pb-IF4UU0YbEQ==|| joined server -2022-12-08 18:42:54.690142 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-08 18:42:58.706768 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-08 18:47:43.767361 + : viru199554||pb-IF4VU3EjBg==|| joined server -2022-12-08 18:47:54.815740 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-08 18:49:45.232040 + : Android63956973||pb-IF4OU08pFw==|| joined server -2022-12-08 18:49:51.241334 + : Aaryan9957||pb-IF4dUxRaIw==|| joined server -2022-12-08 18:50:21.340081 + : jegavj1241612||pb-IF5RU1AcMA==|| joined server -2022-12-08 18:50:55.454998 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-08 18:51:22.550378 + : DyNanZor||pb-IF4nU1ACUA==|| joined server -2022-12-08 18:53:02.913699 + : ChintuKarthik1123||pb-IF43U3opMw==|| joined server -2022-12-08 18:53:37.035325 + : ChintuKarthik1123||pb-IF43U3opMw==|| joined server -2022-12-08 18:54:38.237483 + : 🅶🅾🅳🅳🅴🆅🅸🅻||pb-IF4vH0s-|| joined server -2022-12-08 18:57:27.840720 + : HallowedPe||pb-IF43U1AkFw==|| joined server -2022-12-08 18:57:55.953195 + : Hitman0079||pb-IF4LVXgMKQ==|| joined server -2022-12-08 18:58:45.121480 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-08 18:59:32.293979 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-08 19:02:09.863024 + : Aaryan9957||pb-IF4dUxRaIw==|| joined server -2022-12-08 19:02:15.917666 + : RankAppari||pb-JiNJARFdUUdHXFdBE0RQU1ZEFUNZTlRD|| joined server -2022-12-08 19:02:38.000345 + : CivilizedT||pb-IF4wVFcZPw==|| joined server -2022-12-08 19:02:59.068748 + : Worthwhil4||pb-IF4tU08YEA==|| joined server -2022-12-08 19:03:26.252039 + : WearyIntellect4||pb-IF43V1c6Vw==|| joined server -2022-12-08 19:06:22.863344 + : 0neN0nly21||pb-IF4LU0sqMA==|| joined server -2022-12-08 19:07:12.041691 + : Fancydinne||pb-IF4rVUcbVQ==|| joined server -2022-12-08 19:11:03.187233 + : Northerly5||pb-IF4lU0pZLA==|| joined server -2022-12-08 19:11:41.520217 + : RohanK||pb-IF4dCnou|| joined server -2022-12-08 19:12:23.662275 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-08 19:13:35.923301 + : kingbcs||pb-IF4nU08BVg==|| joined server -2022-12-08 19:19:19.418365 + : EllipticalCrowd46||pb-IF4GU20kNw==|| joined server -2022-12-08 19:19:31.475421 + : Calculate2||pb-IF4jU0I4Kw==|| joined server -2022-12-08 19:20:46.754683 + : Android63825583||pb-IF4PU0saDA==|| joined server -2022-12-08 19:21:19.883927 + : Anthropolo||pb-IF4-U2suMg==|| joined server -2022-12-08 19:21:28.922003 + : dynamic271||pb-IF4DVEpfCA==|| joined server -2022-12-08 19:23:47.397409 + : QuixoticLa||pb-IF4jUmEkAg==|| joined server -2022-12-08 19:26:28.227896 + : FriendlyRi||pb-IF4-U08yCw==|| joined server -2022-12-08 19:26:38.273707 + : FriendlyRi||pb-IF4-U08yCw==|| joined server -2022-12-08 19:29:40.236976 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-08 19:31:12.739760 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-08 19:32:10.214159 + : FanaticNin||pb-IF5UU08OFA==|| joined server -2022-12-08 19:38:52.673633 + : DYNAME3032||pb-IF5WVRMhIQ==|| joined server -2022-12-08 19:42:23.553254 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-08 19:45:46.471420 + : Android57811051||pb-IF4VUkMZLQ==|| joined server -2022-12-08 19:46:12.569980 + : VR||pb-IF4iU08DMQ==|| joined server -2022-12-08 19:48:57.415911 + : Calculate2||pb-IF4jU0I4Kw==|| joined server -2022-12-08 19:49:16.483903 + : GymnasticPotassium48||pb-IF4BU2RYNA==|| joined server -2022-12-08 19:53:05.486405 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-08 19:54:48.126330 + : RohanK||pb-IF4dCnou|| joined server -2022-12-08 19:55:06.192921 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-08 19:56:28.484679 + : OrderlyTin||pb-IF4OU1AnAA==|| joined server -2022-12-08 20:02:25.008131 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-08 20:04:10.944264 + : Android63980625||pb-IF4iU09SDA==|| joined server -2022-12-08 20:04:22.976398 + : venezolan2||pb-IF4hU0ctUQ==|| joined server -2022-12-08 20:05:51.413806 + : ChewySmell||pb-IF49U08dJg==|| joined server -2022-12-08 20:09:11.227951 + : Android50131609||pb-IF4iVVAPCg==|| joined server -2022-12-08 20:10:11.446053 + : redrubydiamond94||pb-IF5dU20MFg==|| joined server -2022-12-08 20:11:09.633736 + : Android64005992||pb-IF4SU1AtHw==|| joined server -2022-12-08 20:13:33.218773 + : arjun0605||pb-IF5VU0omHA==|| joined server -2022-12-08 20:13:57.302062 + : Android57770388||pb-IF4BUkMkBg==|| joined server -2022-12-08 20:17:23.299827 + : ChewySmell||pb-IF49U08dJg==|| joined server -2022-12-08 20:17:36.359292 + : ChewySmell||pb-IF49U08dJg==|| joined server -2022-12-08 20:18:39.858280 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-08 20:19:09.982111 + : ChewySmell||pb-IF49U08dJg==|| joined server -2022-12-08 20:19:41.096842 + : iambatman||pb-IF4SU0YjPA==|| joined server -2022-12-08 20:20:24.273794 + : Android55204288||pb-IF4KUmU6KQ==|| joined server -2022-12-08 20:22:58.799032 + : KILLU20||pb-IF4IU0YYVg==|| joined server -2022-12-08 20:25:03.522080 + : MadBOY5523||pb-LV4FUkUPAxNEVV8RRk5WBVVEEA==|| joined server -2022-12-08 20:29:14.437374 + : DenseGroun||pb-IF43U3E6Ig==|| joined server -2022-12-08 20:29:27.472214 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-08 20:30:29.711440 + : Jayrajsinh||pb-IF4SU00JHw==|| joined server -2022-12-08 20:30:45.799090 + : MrDevil||pb-IF4hBFgH|| joined server -2022-12-08 20:33:53.759523 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-08 20:40:54.232449 + : InternalBo||pb-IF5cU28HUQ==|| joined server -2022-12-08 20:42:57.619538 + : kishordevl||pb-IF4-UEgO|| joined server -2022-12-08 20:46:30.778686 + : ashu42v||pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF|| joined server -2022-12-08 20:49:15.361513 + : arjun0605||pb-IF5VU0omHA==|| joined server -2022-12-08 20:49:58.497642 + : Attic004||pb-IF4oVEoBVw==|| joined server -2022-12-08 20:52:02.148475 + : VeteranGuy||pb-IF5SU0hTEw==|| joined server -2022-12-08 20:53:18.439409 + : Android61947513||pb-IF4zU2wdEA==|| joined server -2022-12-08 20:53:29.473753 + : kishordevl||pb-IF4-UEgO|| joined server -2022-12-08 20:54:46.738241 + : FrozenNano||pb-JiNJARBdUUtDWVdJF0dVVVBHEkBaQFlA|| joined server -2022-12-08 20:59:16.694976 + : UnplannedDew60||pb-IF4iU0YsAg==|| joined server -2022-12-08 20:59:31.262665 + : UnplannedDew60||pb-IF4iU0YsAg==|| joined server -2022-12-08 20:59:46.320408 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-08 21:09:56.301960 + : DownSadnes||pb-IF5UU04PPw==|| joined server -2022-12-08 21:20:18.387567 + : taylorgame||pb-IF4FU3IvUA==|| joined server -2022-12-08 21:45:08.345294 + : Android63767506||pb-IF5SU0seMQ==|| joined server -2022-12-08 22:15:29.309502 + : FlyingSalsa75683||pb-IF4vU0RcKA==|| joined server -2022-12-08 22:29:50.128062 + : LorenzoZ07||pb-IF43UnAZLg==|| joined server -2022-12-08 22:48:21.181009 + : LorenzoZ07||pb-IF43UnAZLg==|| joined server -2022-12-08 22:50:56.394224 + : LorenzoZ07||pb-IF43UnAZLg==|| joined server -2022-12-08 23:43:21.339720 + : WakefulCra||pb-IF40U04ECA==|| joined server -2022-12-08 23:44:53.659727 + : MISHIFU99||pb-IF4VU0cMDA==|| joined server -2022-12-09 00:54:40.700473 + : Android63990410||pb-IF4SU08THw==|| joined server -2022-12-09 01:05:40.001495 + : SparseAtta||pb-IF4jU3AHVg==|| joined server -2022-12-09 01:07:22.445439 + : DPEZH07||pb-IF5QU2EfMQ==|| joined server -2022-12-09 01:34:19.936751 + : YuvanPraba||pb-IF49UxccMQ==|| joined server -2022-12-09 01:37:15.561188 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-09 01:42:07.570586 + : Android63993917||pb-IF4GU1A5MA==|| joined server -2022-12-09 01:43:27.898839 + : LengthyInf||pb-IF4AU1AnVQ==|| joined server -2022-12-09 01:43:28.898900 + : UndoubtedShell11||pb-IF5RVUMMHA==|| joined server -2022-12-09 01:45:19.258666 + : Android64016553||pb-IF43U1A5Bw==|| joined server -2022-12-09 01:46:21.477906 + : DPEZH07||pb-IF5QU2EfMQ==|| joined server -2022-12-09 01:48:39.940214 + : AffectiveH||pb-IF5QU2hSFw==|| joined server -2022-12-09 01:50:03.209275 + : Android64016563||pb-IF5XU1IEAA==|| joined server -2022-12-09 01:50:56.387209 + : Android62113852||pb-IF5UU3AyNw==|| joined server -2022-12-09 01:51:14.459535 + : FinishedMedicine49||pb-IF5XU0tbXQ==|| joined server -2022-12-09 01:52:10.653765 + : MayanMooventhan||pb-IF4wU3AYFQ==|| joined server -2022-12-09 01:53:49.012859 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-09 01:54:00.050250 + : Locomoti12||pb-IF4nVXktLw==|| joined server -2022-12-09 01:54:53.239041 + : QuaintCoat||pb-IF4yU2Q6KQ==|| joined server -2022-12-09 01:56:10.541183 + : Android63790933||pb-IF4jU0Y5FA==|| joined server -2022-12-09 01:58:39.148218 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-09 02:01:08.907669 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-09 02:03:39.542303 + : hida999||pb-IF4eUm0dLQ==|| joined server -2022-12-09 02:03:48.589727 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-09 02:04:28.729674 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-09 02:07:30.789230 + : SurrealAde||pb-IF5TU0opMA==|| joined server -2022-12-09 02:08:53.084373 + : AffectiveH||pb-IF5QU2hSFw==|| joined server -2022-12-09 02:12:25.962971 + : CleftGhost||pb-IF4VU1BdEA==|| joined server -2022-12-09 02:13:36.206651 + : LankyTennis29||pb-IF4pUxEzNw==|| joined server -2022-12-09 02:14:43.490675 + : aljinpaul||pb-IF5REVZf|| joined server -2022-12-09 02:19:41.612552 + : CrispyPugi||pb-IF49U0QkIA==|| joined server -2022-12-09 02:21:07.041374 + : Android63796554||pb-IF4NU0ojAA==|| joined server -2022-12-09 02:24:20.689109 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-09 02:26:32.124839 + : iamaako||pb-IF4lVWYNUA==|| joined server -2022-12-09 02:26:39.157656 + : LORDHanzoStar||pb-IF4qUkQ9CA==|| joined server -2022-12-09 02:27:00.241218 + : THANATOS6660||pb-IF4sVFkqEw==|| joined server -2022-12-09 02:29:29.792906 + : Android62716790||pb-IF4tU3UJBg==|| joined server -2022-12-09 02:36:42.324516 + : Martinluthal||pb-IF5WUno7PQ==|| joined server -2022-12-09 02:38:00.658096 + : THANATOS6660||pb-IF4sVFkqEw==|| joined server -2022-12-09 02:38:28.754354 + : Android63989539||pb-IF5SU1EHPw==|| joined server -2022-12-09 02:39:51.334835 + : ValidEncro||pb-IF4-U24SDQ==|| joined server -2022-12-09 02:50:46.903021 + : BushyInstr||pb-IF4WU0QRIA==|| joined server -2022-12-09 02:57:38.261711 + : Android51304540||pb-IF4zVUQEUw==|| joined server -2022-12-09 02:59:39.678144 + : vedanshvg||pb-IF4FVUwnDA==|| joined server -2022-12-09 03:00:00.742840 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-09 03:02:58.322045 + : Aryannnnnヅ||pb-IF4tVXIbMQ==|| joined server -2022-12-09 03:03:35.452976 + : Android63461793||pb-IF5XU0UFUQ==|| joined server -2022-12-09 03:10:37.871434 + : Aayushmaangamerz||pb-IF4NU0oKNQ==|| joined server -2022-12-09 03:10:49.907612 + : Aayushmaangamerz||pb-IF4NU0oKNQ==|| joined server -2022-12-09 03:11:31.038959 + : Android64016793||pb-IF4LU08SEQ==|| joined server -2022-12-09 03:14:32.909357 + : Ombala9||pb-IF48U3pfCw==|| joined server -2022-12-09 03:14:34.913429 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-09 03:14:38.931605 + : Sabarishku||pb-IF4hU2oFDg==|| joined server -2022-12-09 03:15:10.035668 + : atharv1326||pb-IF4vU2sIMg==|| joined server -2022-12-09 03:16:26.257072 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-09 03:17:44.534393 + : DestitutePine39||pb-IF4DU04nBA==|| joined server -2022-12-09 03:19:58.217931 + : PC773967||pb-IF4vU1A9EA==|| joined server -2022-12-09 03:21:28.025003 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-09 03:23:44.501156 + : CoolJudge82075||pb-IF4rU0cMJw==|| joined server -2022-12-09 03:28:06.582855 + : Moldyblade||pb-IF4UU0YbEQ==|| joined server -2022-12-09 03:28:53.757022 + : KGK||pb-IF4VVVg-HA==|| joined server -2022-12-09 03:30:16.046537 + : Android64016851||pb-IF4yU1AvAQ==|| joined server -2022-12-09 03:31:58.703013 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-09 03:33:00.891037 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-09 03:33:04.903426 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-09 03:35:12.300428 + : Android62190350||pb-IF4QU28vNg==|| joined server -2022-12-09 03:35:16.318137 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-09 03:35:37.631803 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-09 03:36:13.779940 + : louis12king018806660||pb-IF4XV1k7Hw==|| joined server -2022-12-09 03:36:34.871771 + : ThinkgaminCarl123||pb-IF5TU0dbUA==|| joined server -2022-12-09 03:36:47.055823 + : Android64002826||pb-IF4KU1A9Mg==|| joined server -2022-12-09 03:37:29.197576 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-09 03:38:10.386074 + : ItzTDiOUS||pb-IF4dU04lIw==|| joined server -2022-12-09 03:40:30.887740 + : PartialDeed19||pb-IF4RVXYmBA==|| joined server -2022-12-09 03:40:42.926208 + : Negotiab13||pb-IF4UU2NeUA==|| joined server -2022-12-09 03:41:17.045134 + : ItzTDiOUS||pb-IF4dU04lIw==|| joined server -2022-12-09 03:41:47.169028 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-09 03:42:09.218928 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-09 03:43:05.415314 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-09 03:43:08.421623 + : Android59655432||pb-IF43UlceUA==|| joined server -2022-12-09 03:44:24.951504 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-09 03:44:58.104631 + : LogicalDuck1803||pb-IF4lVG8eBA==|| joined server -2022-12-09 03:45:10.161435 + : PutativeFoe61||pb-IF5RU00ZXA==|| joined server -2022-12-09 03:45:23.469675 + : Opsistak||pb-IF4NU08IUQ==|| joined server -2022-12-09 03:46:50.741070 + : CandiedRoc||pb-IF4UUhgMEg==|| joined server -2022-12-09 03:46:56.752984 + : Android63550502||pb-IF48U0UvBA==|| joined server -2022-12-09 03:48:03.274111 + : Dotphoenix||pb-IF4FV00SDA==|| joined server -2022-12-09 03:48:23.328064 + : ooDIVYASHI||pb-IF4CU04_Ng==|| joined server -2022-12-09 03:49:49.877561 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-09 03:53:51.841131 + : Android63574913||pb-IF4zU0U4Lg==|| joined server -2022-12-09 03:54:49.262502 + : EllPharew8||pb-IF40U08aAw==|| joined server -2022-12-09 03:55:20.398596 + : VainGolem1||pb-IF4oVFUOVw==|| joined server -2022-12-09 03:56:27.624903 + : ExcitableA||pb-IF4rUngmDQ==|| joined server -2022-12-09 03:56:51.709518 + : Jojojojojj||pb-IF4MU3YeJg==|| joined server -2022-12-09 03:57:15.796810 + : Android58356806||pb-IF4cUkkCLA==|| joined server -2022-12-09 03:57:19.811300 + : shamlaaann||pb-IF5dVUgdIg==|| joined server -2022-12-09 03:57:52.946203 + : DoubtfulCell25||pb-IF4DUnYIFw==|| joined server -2022-12-09 03:58:02.990131 + : Android63888799||pb-IF4oU004KQ==|| joined server -2022-12-09 04:03:14.461168 + : Android55956721||pb-IF4IUmwtIA==|| joined server -2022-12-09 04:04:21.981568 + : PartialDeed19||pb-IF4RVXYmBA==|| joined server -2022-12-09 04:08:43.219484 + : HoneyProgression37||pb-IF4XU3gkNw==|| joined server -2022-12-09 04:09:23.366737 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-09 04:10:00.488608 + : deepthakor||pb-IF4NVFoEUw==|| joined server -2022-12-09 04:12:06.284133 + : nehelspm||pb-IF4jVRMmUQ==|| joined server -2022-12-09 04:13:34.660675 + : Android48690552||pb-IF4XVXIiLQ==|| joined server -2022-12-09 04:13:39.681752 + : HoneyProgression37||pb-IF4XU3gkNw==|| joined server -2022-12-09 04:14:30.053494 + : VainGolem1||pb-IF4oVFUOVw==|| joined server -2022-12-09 04:14:46.134017 + : BRITTODON03||pb-IF4SU04JNg==|| joined server -2022-12-09 04:14:50.144593 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-09 04:15:06.204996 + : LeakyThund||pb-IF4DU0IbAg==|| joined server -2022-12-09 04:15:16.238125 + : valentinethaha1423||pb-IF5cUlkCEQ==|| joined server -2022-12-09 04:17:15.641654 + : Harsh1726||pb-IF4xU0cAHA==|| joined server -2022-12-09 04:17:29.684138 + : Android64005368||pb-IF41U08eBg==|| joined server -2022-12-09 04:17:35.699748 + : FearlessC4||pb-IF4eU0s9Pw==|| joined server -2022-12-09 04:20:13.260121 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-09 04:20:35.338380 + : ElectiveEa||pb-IF5XU00EDA==|| joined server -2022-12-09 04:20:48.393332 + : Android57008711||pb-IF4RUnY9IQ==|| joined server -2022-12-09 04:21:33.559834 + : VidhyanFal||pb-IF4LUk0FCQ==|| joined server -2022-12-09 04:21:39.580387 + : SaucyGlitter57||pb-IF4mUxUMIQ==|| joined server -2022-12-09 04:22:29.944670 + : NeedlessMonkey47856||pb-IF4OVGhcIw==|| joined server -2022-12-09 04:22:39.965201 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-09 04:28:17.327072 + : AudibleVintage30||pb-IF4mU2k6Aw==|| joined server -2022-12-09 04:28:25.355050 + : Android63717751||pb-IF4AU0gzNA==|| joined server -2022-12-09 04:29:07.485775 + : Preventab2||pb-IF4hU0oSFw==|| joined server -2022-12-09 04:29:49.627138 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-09 04:31:03.234894 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-09 04:31:45.361201 + : PseudoAttendance18||pb-IF4VVWsGIA==|| joined server -2022-12-09 04:33:59.826858 + : Android55846320||pb-IF4yUmsiXQ==|| joined server -2022-12-09 04:34:34.938712 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-09 04:34:48.002626 + : FortisWolf||pb-IF4mU04TPQ==|| joined server -2022-12-09 04:35:18.108325 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-09 04:35:37.175428 + : FervidPlur||pb-IF4-UxI7Mg==|| joined server -2022-12-09 04:40:42.819495 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-09 04:40:44.824518 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-09 04:40:46.831197 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-09 04:41:27.975371 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-09 04:41:40.006281 + : BrandonSta||pb-IF4hVBEYCA==|| joined server -2022-12-09 04:41:48.035616 + : BrandonSta||pb-IF4hVBEYCA==|| joined server -2022-12-09 04:43:15.347284 + : Android62716790||pb-IF4tU3UJBg==|| joined server -2022-12-09 04:43:56.479139 + : AryanSehga||pb-IF4OVU4lCQ==|| joined server -2022-12-09 04:44:04.512196 + : IronLeopard87891||pb-IF43U0otUA==|| joined server -2022-12-09 04:44:37.627261 + : LustrousC3||pb-IF4oUnVaNg==|| joined server -2022-12-09 04:44:41.645975 + : ElaborateS||pb-IF4TVHoHJA==|| joined server -2022-12-09 04:44:52.696879 + : Android64016825||pb-IF4vU1ABHQ==|| joined server -2022-12-09 04:45:07.756014 + : GSPgagan96||pb-IF5TU3IBNA==|| joined server -2022-12-09 04:46:17.092352 + : Sumanth386||pb-IF5TUm4DNg==|| joined server -2022-12-09 04:47:24.376194 + : LustrousC3||pb-IF4oUnVaNg==|| joined server -2022-12-09 04:49:27.785157 + : LustrousC3||pb-IF4oUnVaNg==|| joined server -2022-12-09 04:49:34.806545 + : JaggedDerision58||pb-IF4tU08sLQ==|| joined server -2022-12-09 04:50:07.931634 + : UnfairBrea||pb-IF4OU0UkLw==|| joined server -2022-12-09 04:50:33.022309 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-09 04:51:04.117460 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-09 04:51:11.135062 + : LustrousC3||pb-IF4oUnVaNg==|| joined server -2022-12-09 04:52:19.421169 + : ClearPenal||pb-IF4rVXkFDw==|| joined server -2022-12-09 04:53:49.737118 + : Android63994021||pb-IF4WU1BTUQ==|| joined server -2022-12-09 04:53:56.773516 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-09 04:54:55.990047 + : ClearPenal||pb-IF4rVXkFDw==|| joined server -2022-12-09 04:57:02.558103 + : HARIErode||pb-IF4PU0MnPw==|| joined server -2022-12-09 04:57:32.665106 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-09 04:58:45.313786 + : Android53276083||pb-IF4zVVcuBA==|| joined server -2022-12-09 04:59:32.501378 + : Android39028682||pb-IF4LVGwlEA==|| joined server -2022-12-09 05:00:28.762128 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-09 05:00:47.847329 + : YASHSHEDGE29||pb-IF4CUlc6Ng==|| joined server -2022-12-09 05:03:12.628409 + : paratròóper||pb-IF4IV04ZKw==|| joined server -2022-12-09 05:06:46.360996 + : UnalteredHymn2273||pb-IF5UU1AmIQ==|| joined server -2022-12-09 05:06:51.369089 + : SpiritedSt||pb-IF4RU2wGKA==|| joined server -2022-12-09 05:07:40.527922 + : CivilizedT||pb-IF4wVFcZPw==|| joined server -2022-12-09 05:09:04.861182 + : karthikn77||pb-IF4FBGYq|| joined server -2022-12-09 05:09:24.234558 + : InherentPaper48||pb-IF4pU0whJA==|| joined server -2022-12-09 05:10:11.426398 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-09 05:10:20.463370 + : Lightwei15||pb-IF5SU0gPVg==|| joined server -2022-12-09 05:10:42.545495 + : MNIGamer77||pb-JiNJVxBdUUpIWFlCFkNRUlxKEENeQVlB|| joined server -2022-12-09 05:12:21.908148 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-09 05:13:03.091090 + : ElectiveEa||pb-IF5XU00EDA==|| joined server -2022-12-09 05:13:08.108495 + : Harshrawso||pb-IF4gU085Bw==|| joined server -2022-12-09 05:13:51.256035 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-09 05:14:10.322414 + : HatefulAnn||pb-IF4PUkogDg==|| joined server -2022-12-09 05:14:18.349125 + : LustrousC3||pb-IF4oUnVaNg==|| joined server -2022-12-09 05:14:38.427207 + : FortisWolf||pb-IF4mU04TPQ==|| joined server -2022-12-09 05:15:18.714998 + : Valkyrie95||pb-IF5QVUUECA==|| joined server -2022-12-09 05:15:50.874424 + : kishordevl||pb-IF4-UEgO|| joined server -2022-12-09 05:15:56.892626 + : Android57008711||pb-IF4RUnY9IQ==|| joined server -2022-12-09 05:19:20.593392 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 05:20:51.927532 + : LustrousC3||pb-IF4oUnVaNg==|| joined server -2022-12-09 05:22:08.200421 + : PuliceneSn||pb-IF4OVXpSDQ==|| joined server -2022-12-09 05:22:11.326875 + : LoathsomeR||pb-IF49U04vXA==|| joined server -2022-12-09 05:22:34.557184 + : Android54396539||pb-IF4GUhcxHA==|| joined server -2022-12-09 05:24:29.947176 + : PuliceneSn||pb-IF4OVXpSDQ==|| joined server -2022-12-09 05:26:45.402433 + : karthikn77||pb-IF4FBGYq|| joined server -2022-12-09 05:27:40.572998 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-09 05:30:04.063202 + : Incorrect8||pb-IF5SU0deFA==|| joined server -2022-12-09 05:30:59.260306 + : Historica6||pb-IF4BU08qDw==|| joined server -2022-12-09 05:31:47.410146 + : owakuna110||pb-IF4XVEU_UQ==|| joined server -2022-12-09 05:32:46.600518 + : Android63767506||pb-IF5SU0seMQ==|| joined server -2022-12-09 05:33:52.980998 + : Agzx2244||pb-IF4PV24yPA==|| joined server -2022-12-09 05:34:05.017273 + : Android62958044||pb-IF49VFcGNw==|| joined server -2022-12-09 05:34:21.083188 + : Android62958044||pb-IF49VFcGNw==|| joined server -2022-12-09 05:34:53.220556 + : ImperviousSalmon1680||pb-IF5XU0QgMg==|| joined server -2022-12-09 05:35:00.236042 + : CleanerRes||pb-IF5QU0s6XQ==|| joined server -2022-12-09 05:35:11.276532 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-09 05:35:55.400298 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-09 05:38:10.879133 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-09 05:38:59.441122 + : Android63767506||pb-IF5SU0seMQ==|| joined server -2022-12-09 05:41:37.989500 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-09 05:42:25.130201 + : profizeee||pb-IF5WUkNYIQ==|| joined server -2022-12-09 05:42:36.160256 + : Harshrawso||pb-IF4gU085Bw==|| joined server -2022-12-09 05:42:58.227644 + : ElementaryTrend10||pb-IF4cVWYYJw==|| joined server -2022-12-09 05:43:04.252978 + : Android63767506||pb-IF5SU0seMQ==|| joined server -2022-12-09 05:43:48.418984 + : Android62958044||pb-IF49VFcGNw==|| joined server -2022-12-09 05:43:59.460365 + : Android62958044||pb-IF49VFcGNw==|| joined server -2022-12-09 05:44:49.632483 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-09 05:50:39.577092 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-09 05:54:29.102316 + : CrushedPro||pb-IF4hU3YgLA==|| joined server -2022-12-09 05:54:52.182442 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-09 05:55:56.413989 + : SHUNG||pb-IF4uU04CKg==|| joined server -2022-12-09 05:56:53.613156 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-09 05:56:58.626157 + : shamlaaann||pb-IF5dVUgdIg==|| joined server -2022-12-09 05:57:32.193924 + : Vijayaraga||pb-IF48AWIj|| joined server -2022-12-09 05:58:19.358082 + : hunnieexim||pb-IF4mU08aIQ==|| joined server -2022-12-09 05:58:46.462537 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-09 05:59:21.801723 + : JadeBlanco1234||pb-IF4PV2UEIA==|| joined server -2022-12-09 06:00:17.099868 + : Bulletproofdon||pb-IF42U0VSCA==|| joined server -2022-12-09 06:01:21.327499 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-09 06:01:26.340391 + : HonorableEttin404||pb-IF4eU004Ew==|| joined server -2022-12-09 06:02:26.540949 + : PIXELMONO0||pb-IF5TVRMYFg==|| joined server -2022-12-09 06:03:12.457217 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-09 06:03:19.487098 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-09 06:03:30.521119 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-09 06:03:46.578222 + : Valkyrie95||pb-IF5QVUUECA==|| joined server -2022-12-09 06:04:15.691077 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-09 06:05:03.835286 + : Ayushayy||pb-IF4HU00OIA==|| joined server -2022-12-09 06:05:05.844631 + : shamlaaann||pb-IF5dVUgdIg==|| joined server -2022-12-09 06:05:06.851610 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-09 06:05:16.891317 + : CoolNerd35||pb-IF5QU1IcBA==|| joined server -2022-12-09 06:05:19.905921 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-09 06:05:20.906606 + : ᴵᴬᴹズRaoJi||pb-IF4pVVQBEA==|| joined server -2022-12-09 06:06:27.117305 + : Agzx2244||pb-IF4PV24yPA==|| joined server -2022-12-09 06:11:05.059179 + : shamlaaann||pb-IF5dVUgdIg==|| joined server -2022-12-09 06:11:22.119031 + : shamlaaann||pb-IF5dVUgdIg==|| joined server -2022-12-09 06:11:47.206607 + : louis12king018806660||pb-IF4XV1k7Hw==|| joined server -2022-12-09 06:12:57.449616 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-09 06:13:15.525216 + : Agzx2244||pb-IF4PV24yPA==|| joined server -2022-12-09 06:13:20.544913 + : UnerringAbdomen29||pb-IF4tUlo5Fg==|| joined server -2022-12-09 06:13:21.548264 + : Android63832645||pb-IF4vU2kMNw==|| joined server -2022-12-09 06:14:51.915362 + : TopmostDes||pb-IF5TVWsvPw==|| joined server -2022-12-09 06:15:00.952205 + : Android63453154||pb-IF4SU0MnEA==|| joined server -2022-12-09 06:15:25.023566 + : ApexArsenal9956||pb-JiNJARFTVkFDVFxIFkdWV1VEEUReQldD|| joined server -2022-12-09 06:16:36.317748 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-09 06:17:11.436438 + : SpiritualA||pb-IF5SU2MfCw==|| joined server -2022-12-09 06:17:37.520413 + : Android47745010||pb-IF5dVWgRBg==|| joined server -2022-12-09 06:17:46.547455 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-09 06:20:03.033093 + : thunderstorms3054||pb-IF4zU3gzBA==|| joined server -2022-12-09 06:20:04.038715 + : Android63888799||pb-IF4oU004KQ==|| joined server -2022-12-09 06:20:22.109507 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-09 06:22:47.623247 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-09 06:23:26.761332 + : Raghav2655||pb-IF4cU2UJCA==|| joined server -2022-12-09 06:26:06.306375 + : Android62237299||pb-IF4dU3gqNQ==|| joined server -2022-12-09 06:27:35.608065 + : XboxTomb||pb-IF5WV2M8Vg==|| joined server -2022-12-09 06:28:04.701166 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-09 06:28:51.854246 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-09 06:28:55.876959 + : Android57861013||pb-IF5VUkdeEw==|| joined server -2022-12-09 06:29:07.919616 + : THANATOS6660||pb-IF4sVFkqEw==|| joined server -2022-12-09 06:29:16.947520 + : XboxTomb||pb-IF5WV2M8Vg==|| joined server -2022-12-09 06:29:31.996135 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-09 06:31:31.386094 + : VR||pb-IF4iU08DMQ==|| joined server -2022-12-09 06:35:04.214662 + : Agzx2244||pb-IF4PV24yPA==|| joined server -2022-12-09 06:35:57.429367 + : Ganeshchou||pb-IF5WVEtbJg==|| joined server -2022-12-09 06:37:07.653616 + : MBNBOOMBLA||pb-IF4oU1BeHQ==|| joined server -2022-12-09 06:37:19.704203 + : Jenishmodi||pb-JiNJVxBfVENDWF1GEEFRV11HF0ZYQFRE|| joined server -2022-12-09 06:37:28.742787 + : Android52820777||pb-IF4PVVI4Dg==|| joined server -2022-12-09 06:37:44.812001 + : GlobularCu||pb-IF5VV0gNKQ==|| joined server -2022-12-09 06:37:59.871774 + : Jenishmodi||pb-JiNJVxBfVENDWF1GEEFRV11HF0ZYQFRE|| joined server -2022-12-09 06:39:03.128454 + : IronLeopard87891||pb-IF43U0otUA==|| joined server -2022-12-09 06:41:56.741858 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-09 06:41:59.745062 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-09 06:42:14.803559 + : TeleologicalPurse33||pb-IF4MUndTIA==|| joined server -2022-12-09 06:42:46.955902 + : invencible||pb-IF4rVBYoCA==|| joined server -2022-12-09 06:42:55.974441 + : Android63997285||pb-IF4KU1A7Uw==|| joined server -2022-12-09 06:44:45.369178 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-09 06:44:52.474792 + : JEE1Gemini||pb-IF4hMxY-|| joined server -2022-12-09 06:45:21.589089 + : IronLeopard87891||pb-IF43U0otUA==|| joined server -2022-12-09 06:47:04.128239 + : Mukund094||pb-IF4SUnMKEw==|| joined server -2022-12-09 06:47:11.164254 + : BEDTHILAPO||pb-IF4eU04vVA==|| joined server -2022-12-09 06:47:33.245819 + : TeleologicalPurse33||pb-IF4MUndTIA==|| joined server -2022-12-09 06:49:44.727675 + : manuharsys||pb-IF4-VRQPJw==|| joined server -2022-12-09 06:50:02.789142 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-09 06:50:10.813168 + : TremendousCreek8||pb-IF4vUxkKDg==|| joined server -2022-12-09 06:51:12.008941 + : DevilDhanu2404||pb-IF4cU0IcMw==|| joined server -2022-12-09 06:52:25.289534 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-09 06:52:32.305441 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-09 06:53:51.573362 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-09 06:54:13.646937 + : FearlessC4||pb-IF4eU0s9Pw==|| joined server -2022-12-09 06:54:17.663468 + : IronLeopard87891||pb-IF43U0otUA==|| joined server -2022-12-09 06:54:34.720217 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-09 06:54:41.742996 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-09 06:55:05.827446 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-09 06:55:15.850559 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-09 06:55:37.932002 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-09 06:58:40.583485 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-09 06:59:01.646888 + : Android57861013||pb-IF5VUkdeEw==|| joined server -2022-12-09 07:00:54.038036 + : Android63571076||pb-IF4PU0UhJA==|| joined server -2022-12-09 07:01:02.078058 + : yashsahiys||pb-IF4cUnlcDQ==|| joined server -2022-12-09 07:01:06.094184 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-09 07:01:34.179117 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 07:01:52.256245 + : SRD1111997||pb-IF4TABUN|| joined server -2022-12-09 07:03:10.499492 + : WeakerResonance54||pb-IF4AU0IoCA==|| joined server -2022-12-09 07:05:00.096495 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-09 07:05:25.168745 + : ScreechingOoze8069||pb-JiNJARFeUkdDX1tHEkVTVlFDFUlXRllG|| joined server -2022-12-09 07:05:55.253587 + : GSPgagan96||pb-IF5TU3IBNA==|| joined server -2022-12-09 07:05:59.268741 + : Android63750463||pb-IF4dU0lTHA==|| joined server -2022-12-09 07:06:39.370652 + : InfamousMage47452||pb-IF48V0IKUA==|| joined server -2022-12-09 07:06:57.430755 + : UninhabitedSpider57||pb-IF42U0w7UA==|| joined server -2022-12-09 07:07:36.574092 + : RohanK||pb-IF4dCnou|| joined server -2022-12-09 07:07:40.587270 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-09 07:07:41.591806 + : Harshrawso||pb-IF4gU085Bw==|| joined server -2022-12-09 07:07:55.631113 + : Android60650588||pb-IF5TUxkiAw==|| joined server -2022-12-09 07:10:44.366813 + : InfamousMage47452||pb-IF48V0IKUA==|| joined server -2022-12-09 07:10:48.381743 + : JauntyCoin52791||pb-IF4UUmQDJw==|| joined server -2022-12-09 07:11:56.597104 + : TriesomeComplacency||pb-IF5XVBUCFA==|| joined server -2022-12-09 07:14:03.125877 + : UninhabitedSpider57||pb-IF42U0w7UA==|| joined server -2022-12-09 07:14:06.136922 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-09 07:15:25.432627 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-09 07:15:51.516461 + : Android64011193||pb-IF5RU08nMQ==|| joined server -2022-12-09 07:16:21.618702 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-09 07:16:22.625655 + : BrokenImpr||pb-IF4SU08lBg==|| joined server -2022-12-09 07:16:25.627826 + : bisht4189||pb-IF4SEHAl|| joined server -2022-12-09 07:16:32.661871 + : AsteroidBo||pb-IF4CU04ePQ==|| joined server -2022-12-09 07:16:56.736641 + : TeleologicalPurse33||pb-IF4MUndTIA==|| joined server -2022-12-09 07:17:07.778341 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-09 07:18:16.119150 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-09 07:18:52.229218 + : InnateSinner19||pb-IF4IU04pBA==|| joined server -2022-12-09 07:21:01.629071 + : Android39280108||pb-IF4IVG5ZNA==|| joined server -2022-12-09 07:21:16.672982 + : kannadapora||pb-JiNJARFdU0tCWFtDGEFVUVZLFUFbQlBH|| joined server -2022-12-09 07:21:26.710959 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-09 07:21:49.774258 + : NoName54928e||pb-IF40Um0oIA==|| joined server -2022-12-09 07:22:09.837597 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-09 07:23:04.031828 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-09 07:23:26.115844 + : Android63584030||pb-IF4OU0UNAw==|| joined server -2022-12-09 07:23:32.129364 + : Android62564773||pb-IF4SU3MNJA==|| joined server -2022-12-09 07:23:43.154081 + : Android63584030||pb-IF4OU0UNAw==|| joined server -2022-12-09 07:23:59.229866 + : Android63584030||pb-IF4OU0UNAw==|| joined server -2022-12-09 07:24:52.400240 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 07:25:25.491114 + : Deepak11De||pb-IF40UhVdVA==|| joined server -2022-12-09 07:25:34.522617 + : PC293761||pb-IF4yVWsOAA==|| joined server -2022-12-09 07:25:49.571518 + : MRKHINDIGA||pb-IF4OU04GBg==|| joined server -2022-12-09 07:27:32.942358 + : BABURAOAPT||pb-IF4yVVA8Bg==|| joined server -2022-12-09 07:28:52.260137 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-09 07:30:02.516806 + : mrpainless||pb-IF4PIFQ9|| joined server -2022-12-09 07:31:52.035131 + : Deplorabl7||pb-IF41Um0DCA==|| joined server -2022-12-09 07:32:23.159446 + : Android63584030||pb-IF4OU0UNAw==|| joined server -2022-12-09 07:32:44.249669 + : Imprompt12||pb-IF4RVEw6Lg==|| joined server -2022-12-09 07:41:35.261456 + : InherentPaper48||pb-IF4pU0whJA==|| joined server -2022-12-09 07:41:58.341768 + : CHICKENBOO||pb-IF4AV1QqEQ==|| joined server -2022-12-09 07:42:18.401896 + : RippedBuck||pb-IF4lVXMTVg==|| joined server -2022-12-09 07:42:20.406168 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-09 07:43:06.574561 + : ffkabapp12||pb-IF4IUlgsXA==|| joined server -2022-12-09 07:43:37.706135 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-09 07:44:05.777197 + : ffkabapp12||pb-IF4IUlgsXA==|| joined server -2022-12-09 07:46:23.241112 + : VasanthDon||pb-JiNJARFeVUZCXFZAFUNTU1NDEkNXTlNL|| joined server -2022-12-09 07:46:41.398285 + : Android63728390||pb-IF4HU0gSFw==|| joined server -2022-12-09 07:46:46.413469 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-09 07:49:28.968931 + : CHICKENBOO||pb-IF4AV1QqEQ==|| joined server -2022-12-09 07:50:42.219875 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-09 07:52:24.555042 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-09 07:54:29.187160 + : alsoMV||pb-IF48U0kmIw==|| joined server -2022-12-09 07:55:46.448244 + : Android51304540||pb-IF4zVUQEUw==|| joined server -2022-12-09 08:00:57.798105 + : ErsatzGuac||pb-IF4RU2g-VQ==|| joined server -2022-12-09 08:02:54.306212 + : Recipient3||pb-IF4HU00hJw==|| joined server -2022-12-09 08:03:30.427629 + : mooninvaders24||pb-JiNJARFYU0pGXVdCFU9TVVZEFkFaRFlL|| joined server -2022-12-09 08:04:09.560591 + : AmazingTriangle14295||pb-IF5SU00_Ag==|| joined server -2022-12-09 08:04:45.700506 + : ReputableSlew45||pb-IF4sU0sDMg==|| joined server -2022-12-09 08:04:49.715052 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-09 08:04:51.716217 + : Android57861013||pb-IF5VUkdeEw==|| joined server -2022-12-09 08:05:12.801290 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-09 08:05:22.845162 + : DaintyRuff||pb-IF4uU1AvVA==|| joined server -2022-12-09 08:05:33.877549 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-09 08:05:49.934880 + : Yang||pb-IF4LU0sPNA==|| joined server -2022-12-09 08:07:46.463565 + : Sujalkasar||pb-IF41VWFcEg==|| joined server -2022-12-09 08:07:58.502463 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-09 08:08:47.686353 + : TremendousCreek8||pb-IF4vUxkKDg==|| joined server -2022-12-09 08:11:36.525913 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-09 08:11:49.577747 + : LIONHUNTER||pb-IF4eVGc7Cw==|| joined server -2022-12-09 08:13:02.867672 + : shrey19654||pb-IF4QVGYMKg==|| joined server -2022-12-09 08:18:35.038421 + : Yang||pb-IF4LU0sPNA==|| joined server -2022-12-09 08:18:48.081963 + : bijodicarp||pb-IF4TVWEnIg==|| joined server -2022-12-09 08:19:20.230437 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-09 08:19:35.281375 + : WonderfulH||pb-IF4sVVgTAg==|| joined server -2022-12-09 08:19:41.295631 + : mrpainless||pb-IF4PIFQ9|| joined server -2022-12-09 08:20:36.454116 + : Android59555947||pb-IF5SUlgmVw==|| joined server -2022-12-09 08:20:46.480710 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-09 08:21:16.576675 + : Android63692742||pb-IF5WU0kZJw==|| joined server -2022-12-09 08:22:14.785969 + : mrpainless||pb-IF4PIFQ9|| joined server -2022-12-09 08:24:05.222729 + : ᴵᴬᴹズRaoJi||pb-IF4pVVQBEA==|| joined server -2022-12-09 08:24:39.364249 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-09 08:24:49.405754 + : Android63832645||pb-IF4vU2kMNw==|| joined server -2022-12-09 08:26:20.756674 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-09 08:27:56.277409 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-09 08:28:58.518854 + : Harshrawso||pb-IF4gU085Bw==|| joined server -2022-12-09 08:29:06.545994 + : HipCompany||pb-IF4WUxcgNw==|| joined server -2022-12-09 08:29:35.644201 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-09 08:30:00.743538 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-09 08:35:03.867231 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-09 08:35:35.994365 + : Moldyblade||pb-IF4UU0YbEQ==|| joined server -2022-12-09 08:35:59.067367 + : Android57562868||pb-IF4gUkE_Iw==|| joined server -2022-12-09 08:37:14.316236 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2022-12-09 08:39:02.714314 + : Android63955818||pb-IF4QU04AAg==|| joined server -2022-12-09 08:43:51.020628 + : Android63657181||pb-IF4NU0YjJw==|| joined server -2022-12-09 08:43:58.047907 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-09 08:45:02.315855 + : Sparkx||pb-IF5SUmwRPQ==|| joined server -2022-12-09 08:45:29.899263 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-09 08:45:59.000013 + : JackSparr2||pb-IF4KVUFdHQ==|| joined server -2022-12-09 08:46:08.031216 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-09 08:46:11.046365 + : GOJOSATURO77||pb-IF4lU00yCQ==|| joined server -2022-12-09 08:50:55.092563 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-09 08:51:12.170404 + : ThirstyFro||pb-IF4jU3QHMw==|| joined server -2022-12-09 08:52:01.362808 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-09 08:52:07.385836 + : HipCompany||pb-IF4WUxcgNw==|| joined server -2022-12-09 08:52:35.500605 + : SilentSalt1900||pb-IF4zU00GCg==|| joined server -2022-12-09 08:53:00.606537 + : Omkarkhade||pb-IF4pBWYI|| joined server -2022-12-09 08:53:11.648863 + : BrownCreat||pb-IF4lB0sz|| joined server -2022-12-09 08:53:16.667990 + : Upsidedo17||pb-IF5SU3NcFQ==|| joined server -2022-12-09 08:54:58.035290 + : JJJJJ01||pb-IF4-UkUJBg==|| joined server -2022-12-09 08:55:01.324729 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-09 08:55:20.404735 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-09 08:55:45.496355 + : OverheadPo||pb-IF4GVUFcUg==|| joined server -2022-12-09 08:55:50.516368 + : FancyPan23||pb-IF5UUkMlDA==|| joined server -2022-12-09 08:56:01.561753 + : mippypoop1||pb-JiNJARFYV0dBVF5JEUFSU1BAGEZZT1lA|| joined server -2022-12-09 08:56:06.590333 + : HeedlessCalcium28||pb-IF5WU3kZAQ==|| joined server -2022-12-09 08:56:18.633822 + : HeedlessCalcium28||pb-IF5WU3kZAQ==|| joined server -2022-12-09 08:57:20.875142 + : NeedfulCon||pb-IF4OVEZTPA==|| joined server -2022-12-09 08:57:47.960310 + : HipCompany||pb-IF4WUxcgNw==|| joined server -2022-12-09 08:58:14.047639 + : Nirucraze||pb-IF4gU3cIPQ==|| joined server -2022-12-09 08:58:22.066329 + : kushal9610||pb-IF4LM2kN|| joined server -2022-12-09 08:58:36.128633 + : Android60516479||pb-IF43UxUHMw==|| joined server -2022-12-09 08:58:43.155019 + : MarzipanR3||pb-IF4DU1ADCA==|| joined server -2022-12-09 08:59:20.298841 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 08:59:23.307600 + : shrey19654||pb-IF4QVGYMKg==|| joined server -2022-12-09 09:00:02.442741 + : LionAlpha7||pb-IF4UVGg8KQ==|| joined server -2022-12-09 09:00:07.466490 + : LIONHUNTER||pb-IF4eVGc7Cw==|| joined server -2022-12-09 09:06:11.904352 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-09 09:07:16.117266 + : AnandSingh1102||pb-IF5QU0g8IQ==|| joined server -2022-12-09 09:08:38.745462 + : Uneducat21||pb-IF4uVRVYVQ==|| joined server -2022-12-09 09:08:55.805304 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-09 09:09:10.865862 + : EverydayEagle26||pb-IF4UU0sSDg==|| joined server -2022-12-09 09:09:32.948483 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-09 09:09:34.961591 + : FancyPan23||pb-IF5UUkMlDA==|| joined server -2022-12-09 09:11:55.472421 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-09 09:12:28.624375 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-09 09:12:51.703508 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-09 09:15:07.492239 + : DYNAME3032||pb-IF5WVRMhIQ==|| joined server -2022-12-09 09:15:39.600279 + : ModalHandl||pb-IF4NU0cpFw==|| joined server -2022-12-09 09:16:01.689136 + : febincs||pb-IF4KUhVaNg==|| joined server -2022-12-09 09:17:18.994406 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-09 09:17:39.390329 + : KnottyPromotion23||pb-IF4SU3kNKw==|| joined server -2022-12-09 09:17:47.417118 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-09 09:19:22.815754 + : Proficie23||pb-IF4sU08gVw==|| joined server -2022-12-09 09:19:52.933882 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-09 09:20:20.041187 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-09 09:20:55.154088 + : Horticul11||pb-IF4WU1AIDw==|| joined server -2022-12-09 09:21:23.238105 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-09 09:21:41.306495 + : MedicalGla||pb-IF4SU0wSEA==|| joined server -2022-12-09 09:21:53.366638 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-09 09:22:40.554765 + : EngrossingFarmer8411||pb-IF4dV0deMw==|| joined server -2022-12-09 09:23:06.674374 + : Invisible6||pb-IF4MU085LA==|| joined server -2022-12-09 09:23:49.823021 + : JayanthSo||pb-IF5VFGQB|| joined server -2022-12-09 09:24:01.861734 + : RabidFight||pb-IF5RU3UzJA==|| joined server -2022-12-09 09:25:07.226709 + : vivekआहिर||pb-IF4cU04EFg==|| joined server -2022-12-09 09:26:54.643170 + : Android63988326||pb-IF4rU1AuNQ==|| joined server -2022-12-09 09:28:46.051351 + : Android59920070||pb-IF4wUloBIg==|| joined server -2022-12-09 09:29:29.214822 + : RabidFight||pb-IF5RU3UzJA==|| joined server -2022-12-09 09:30:57.548818 + : DroopyPixie214||pb-IF4-InEj|| joined server -2022-12-09 09:31:59.761407 + : Android63415043||pb-IF4eU0MjFw==|| joined server -2022-12-09 09:32:11.786659 + : Harshrawso||pb-IF4gU085Bw==|| joined server -2022-12-09 09:32:33.862236 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-09 09:33:12.011438 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 09:33:47.129080 + : Android58405739||pb-IF4WUko_JA==|| joined server -2022-12-09 09:33:54.141920 + : CR7DARDEVI||pb-IF5XVUsBKg==|| joined server -2022-12-09 09:34:07.194795 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-09 09:34:30.246289 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-09 09:34:40.278460 + : ModalHandl||pb-IF4NU0cpFw==|| joined server -2022-12-09 09:35:37.460830 + : Android62190350||pb-IF4QU28vNg==|| joined server -2022-12-09 09:36:10.846468 + : karthikn77||pb-IF4FBGYq|| joined server -2022-12-09 09:37:15.091929 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-09 09:37:35.163971 + : JayanthSo||pb-IF5VFGQB|| joined server -2022-12-09 09:38:06.281213 + : WirelessNe||pb-IF4nUkteVA==|| joined server -2022-12-09 09:38:36.393030 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 09:39:08.518881 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-09 09:39:51.688592 + : ModalHandl||pb-IF4NU0cpFw==|| joined server -2022-12-09 09:40:49.887755 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-09 09:42:26.243099 + : rawoofraw||pb-IF5RU1EbMw==|| joined server -2022-12-09 09:42:42.290058 + : Negotiab13||pb-IF4UU2NeUA==|| joined server -2022-12-09 09:43:44.505741 + : ModalHandl||pb-IF4NU0cpFw==|| joined server -2022-12-09 09:44:08.595135 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-09 09:46:12.958224 + : vibhinnofl||pb-IF4CU0pTCQ==|| joined server -2022-12-09 09:46:48.095247 + : CleanerRes||pb-IF5QU0s6XQ==|| joined server -2022-12-09 09:46:57.265153 + : Android55556523||pb-IF4uUmgjCQ==|| joined server -2022-12-09 09:47:42.527597 + : GOTYA||pb-IF4eVEchNQ==|| joined server -2022-12-09 09:48:30.966851 + : Android59658189||pb-IF5XUlpfNg==|| joined server -2022-12-09 09:49:36.210109 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-09 09:51:22.557577 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-09 09:53:58.057230 + : Android55556523||pb-IF4uUmgjCQ==|| joined server -2022-12-09 09:54:00.063335 + : Android63657181||pb-IF4NU0YjJw==|| joined server -2022-12-09 09:54:04.079521 + : Android55556523||pb-IF4uUmgjCQ==|| joined server -2022-12-09 09:54:35.196916 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-09 09:54:43.235504 + : Uchihaitac||pb-IF4VLhdS|| joined server -2022-12-09 09:55:42.856084 + : GOTYA||pb-IF4eVEchNQ==|| joined server -2022-12-09 09:55:56.900063 + : mjliamard2||pb-IF4QV2kSCQ==|| joined server -2022-12-09 09:57:31.233802 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-09 10:04:23.103526 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-09 10:06:14.747504 + : CivilizedT||pb-IF4wVFcZPw==|| joined server -2022-12-09 10:06:47.916504 + : Android57261017||pb-IF4JUngEKg==|| joined server -2022-12-09 10:07:20.043137 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-09 10:18:20.794162 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 10:19:16.685828 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-09 10:19:25.722096 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-09 10:19:46.789647 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-09 10:19:51.804301 + : VidhyanFal||pb-IF4LUk0FCQ==|| joined server -2022-12-09 10:20:00.840695 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 10:21:09.087823 + : AffectiveH||pb-IF5QU2hSFw==|| joined server -2022-12-09 10:21:12.094620 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-09 10:21:17.111822 + : Syazwiey||pb-IF4AU08dDg==|| joined server -2022-12-09 10:21:56.259048 + : sonugavale||pb-IF40VG4yUA==|| joined server -2022-12-09 10:22:12.335635 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 10:22:32.867765 + : CivilizedT||pb-IF4wVFcZPw==|| joined server -2022-12-09 10:22:35.874780 + : ModalHandl||pb-IF4NU0cpFw==|| joined server -2022-12-09 10:22:37.879996 + : FURY10TG||pb-IF4HU3cRBw==|| joined server -2022-12-09 10:23:08.000001 + : sairam6381||pb-IF4AUk8TDQ==|| joined server -2022-12-09 10:23:12.009374 + : Syazwiey||pb-IF4AU08dDg==|| joined server -2022-12-09 10:24:23.274270 + : THANATOS6660||pb-IF4sVFkqEw==|| joined server -2022-12-09 10:24:29.295735 + : Android58520918||pb-IF5SUk0zDA==|| joined server -2022-12-09 10:25:34.067096 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-09 10:25:35.068872 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-09 10:27:18.895572 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-09 10:27:36.955818 + : Sabarishku||pb-IF4hU2oFDg==|| joined server -2022-12-09 10:32:55.817877 + : PseudoAttendance18||pb-IF4VVWsGIA==|| joined server -2022-12-09 10:33:20.891246 + : saidarshan||pb-IF4GVW4qKQ==|| joined server -2022-12-09 10:34:09.055461 + : FlippantC2||pb-IF4NKnRS|| joined server -2022-12-09 10:34:18.087578 + : ragul746||pb-JiNJVxBcU0dEWV5FFU9SU1FKF0daR1FK|| joined server -2022-12-09 10:35:20.505225 + : PC772976||pb-IF4xU04OMg==|| joined server -2022-12-09 10:36:05.830119 + : Android63907345||pb-IF4uU00xVQ==|| joined server -2022-12-09 10:36:37.062366 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-09 10:37:32.264024 + : Android62113852||pb-IF5UU3AyNw==|| joined server -2022-12-09 10:37:42.300307 + : UneasySilver21||pb-IF4RUnUjMQ==|| joined server -2022-12-09 10:38:46.679507 + : UneasySilver21||pb-IF4RUnUjMQ==|| joined server -2022-12-09 10:38:59.727381 + : Android63947315||pb-IF4XU08mUQ==|| joined server -2022-12-09 10:40:12.999128 + : ModalHandl||pb-IF4NU0cpFw==|| joined server -2022-12-09 10:40:47.117590 + : COOLPROFFE||pb-JiNJARFbXUpJXVtGFEFTVVJEEUhdRlVB|| joined server -2022-12-09 10:40:56.194232 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-09 10:41:28.290782 + : SableIntim||pb-IF4yU0YDUw==|| joined server -2022-12-09 10:42:09.455140 + : UnkindIncident40||pb-IF4PUxMDMQ==|| joined server -2022-12-09 10:42:57.624273 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-09 10:43:03.643788 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-09 10:46:32.403666 + : meetbapu12||pb-IF4yU0gtIQ==|| joined server -2022-12-09 10:47:29.625937 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-09 10:48:04.735314 + : DoubtfulCell25||pb-IF4DUnYIFw==|| joined server -2022-12-09 10:48:31.839125 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-09 10:50:08.544130 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-09 10:53:03.846771 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-09 10:53:06.859057 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-09 10:54:42.201829 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-09 10:55:22.331660 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-09 10:56:10.486143 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-09 10:58:25.950404 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-09 10:58:30.969778 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-09 10:58:46.019738 + : Harshrawso||pb-IF4gU085Bw==|| joined server -2022-12-09 10:59:44.705637 + : Android60379151||pb-IF48UxQ-Aw==|| joined server -2022-12-09 11:01:18.028258 + : VISHAL6364S17||pb-IF4QV0s7Fw==|| joined server -2022-12-09 11:01:36.250839 + : S1DtheKID||pb-IF4AV3UfEA==|| joined server -2022-12-09 11:02:27.403986 + : Aayushmaangamerz||pb-IF4NU0oKNQ==|| joined server -2022-12-09 11:02:31.414265 + : OutrightPeriphery10||pb-IF4HVFFTUg==|| joined server -2022-12-09 11:03:03.530174 + : LankyTennis29||pb-IF4pUxEzNw==|| joined server -2022-12-09 11:04:58.938182 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-09 11:10:09.313455 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-09 11:10:22.365199 + : MadBOY5523||pb-LV4FUkUPAxNEVV8RRk5WBVVEEA==|| joined server -2022-12-09 11:10:34.406831 + : BrokenGuit||pb-IF4-U05TJA==|| joined server -2022-12-09 11:11:56.702412 + : Android63770342||pb-IF4rU0o9KQ==|| joined server -2022-12-09 11:12:17.794914 + : Android61975304||pb-IF4xU2waHw==|| joined server -2022-12-09 11:13:01.938571 + : LankyTennis29||pb-IF4pUxEzNw==|| joined server -2022-12-09 11:13:38.079524 + : RareDentis||pb-IF4gUxMyKw==|| joined server -2022-12-09 11:14:22.195566 + : OddJackal25574||pb-IF4cVFQM|| joined server -2022-12-09 11:15:24.421455 + : Android61975304||pb-IF4xU2waHw==|| joined server -2022-12-09 11:16:38.693777 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-09 11:16:42.711297 + : karnaakarnaa||pb-IF4BU0IBLg==|| joined server -2022-12-09 11:19:23.647036 + : Sairaj1999||pb-JiNJARFZUUpEWF5JFkdTXVdEEEVdQ1ZA|| joined server -2022-12-09 11:19:57.745955 + : Rajjadhav9||pb-IF41U0Y5PA==|| joined server -2022-12-09 11:20:08.788531 + : subashchan||pb-IF4NU3onCg==|| joined server -2022-12-09 11:21:46.405827 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-09 11:27:19.777972 + : FURY10TG||pb-IF4HU3cRBw==|| joined server -2022-12-09 11:27:46.886070 + : Tarun1314||pb-IF4nU3lfFw==|| joined server -2022-12-09 11:28:09.378899 + : FURY10TG||pb-IF4HU3cRBw==|| joined server -2022-12-09 11:28:14.401087 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-09 11:28:18.411778 + : Tarun1314||pb-IF4nU3lfFw==|| joined server -2022-12-09 11:28:32.451394 + : Transitio6||pb-IF4QU0EFNA==|| joined server -2022-12-09 11:29:18.607096 + : RHSBOB||pb-IF4JU3MxUA==|| joined server -2022-12-09 11:29:43.680766 + : BeastyPrin||pb-IF4tU2EoCA==|| joined server -2022-12-09 11:30:56.787749 + : RHSBOB||pb-IF4JU3MxUA==|| joined server -2022-12-09 11:30:59.794294 + : PentBridge||pb-IF4lU05SCg==|| joined server -2022-12-09 11:32:49.189233 + : Transitio6||pb-IF4QU0EFNA==|| joined server -2022-12-09 11:32:55.204740 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-09 11:32:58.212727 + : Arnob007||pb-IF5SVXIHMA==|| joined server -2022-12-09 11:34:04.054427 + : FURY10TG||pb-IF4HU3cRBw==|| joined server -2022-12-09 11:34:08.062013 + : LoveYasmin||pb-IF4-U2YvXA==|| joined server -2022-12-09 11:36:03.866637 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-09 11:36:11.900862 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 11:36:32.978575 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-09 11:37:54.247075 + : FURY10TG||pb-IF4HU3cRBw==|| joined server -2022-12-09 11:38:38.397232 + : Android63927994||pb-IF4hU00mAA==|| joined server -2022-12-09 11:38:55.455137 + : Android55329470||pb-IF5UUmghKw==|| joined server -2022-12-09 11:39:39.934558 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-09 11:39:44.951367 + : CivilizedT||pb-IF4wVFcZPw==|| joined server -2022-12-09 11:39:50.981315 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-09 11:41:56.068333 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-09 11:42:34.207986 + : thungti223||pb-IF5cU1JTEw==|| joined server -2022-12-09 11:43:11.353267 + : Android62576681||pb-IF4RU3QoXQ==|| joined server -2022-12-09 11:43:28.436635 + : LurkingCle||pb-IF4qVXc-Hw==|| joined server -2022-12-09 11:45:37.755224 + : NIGHTRIDRER12||pb-IF4VVW0zLg==|| joined server -2022-12-09 11:45:41.774445 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-09 11:48:55.981097 + : Android59922734||pb-IF4SUlo8PQ==|| joined server -2022-12-09 11:49:47.737287 + : Android62576681||pb-IF4RU3QoXQ==|| joined server -2022-12-09 11:49:49.748367 + : 333666999ek||pb-IF4JU2oFKw==|| joined server -2022-12-09 11:50:40.213762 + : HonorableEttin404||pb-IF4eU004Ew==|| joined server -2022-12-09 11:50:53.251644 + : Auspicio36||pb-IF4BU1BaJA==|| joined server -2022-12-09 11:51:26.391433 + : Android62113852||pb-IF5UU3AyNw==|| joined server -2022-12-09 11:51:27.399053 + : insaneDead||pb-IF4iUmsdNg==|| joined server -2022-12-09 11:51:40.451832 + : JAMESBOND2||pb-JiNJARBTV0JFXlxFEkRZXFRFEkVZR1RD|| joined server -2022-12-09 11:51:50.498547 + : Android42905472||pb-IF4IVEsaBg==|| joined server -2022-12-09 11:53:21.803785 + : RHSBOB||pb-IF4JU3MxUA==|| joined server -2022-12-09 11:54:17.992525 + : RHSBOB||pb-IF4JU3MxUA==|| joined server -2022-12-09 11:54:45.097235 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-09 11:55:22.223157 + : FlipInterc||pb-IF4RU1BYDQ==|| joined server -2022-12-09 11:56:07.373476 + : MasterNavi||pb-IF5dVBIuCQ==|| joined server -2022-12-09 11:57:05.186966 + : Phalgun~||pb-LV4FBUYOVRRBCl4UEkVRB1EWGA==|| joined server -2022-12-09 11:57:48.482792 + : RHSBOB||pb-IF4JU3MxUA==|| joined server -2022-12-09 11:58:01.546869 + : MonoCaprice47||pb-IF4UU0hfDQ==|| joined server -2022-12-09 11:58:03.549356 + : HaphazardM||pb-IF5RU1IuDA==|| joined server -2022-12-09 11:58:53.708673 + : yashgusadfggggggg||pb-IF4hU0g4LA==|| joined server -2022-12-09 11:59:07.766916 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-09 11:59:27.834732 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 12:01:36.880192 + : Aryansingh7380||pb-IF4mU04zPA==|| joined server -2022-12-09 12:01:59.968451 + : sOFF1C1AL||pb-IF5VU0cyFg==|| joined server -2022-12-09 12:02:17.022332 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 12:02:25.054937 + : sOFF1C1AL||pb-IF5VU0cyFg==|| joined server -2022-12-09 12:02:44.123006 + : yashgusadfggggggg||pb-IF4hU0g4LA==|| joined server -2022-12-09 12:02:50.135296 + : Android62113852||pb-IF5UU3AyNw==|| joined server -2022-12-09 12:02:51.138860 + : yashgusadfggggggg||pb-IF4hU0g4LA==|| joined server -2022-12-09 12:06:37.174995 + : burletejas||pb-IF4nVUIfUg==|| joined server -2022-12-09 12:06:47.212137 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-09 12:07:08.285587 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-09 12:07:18.345848 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-09 12:09:43.961848 + : Android62113852||pb-IF5UU3AyNw==|| joined server -2022-12-09 12:10:49.200429 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-09 12:11:15.277632 + : PromisingH||pb-IF49U0UIVg==|| joined server -2022-12-09 12:12:32.537934 + : DYNAME3032||pb-IF5WVRMhIQ==|| joined server -2022-12-09 12:12:33.539182 + : JadeJogger2387||pb-JiNJVxFcXUVDW1tAGUZYUlFCFElfRFdF|| joined server -2022-12-09 12:12:39.551292 + : GlobularStomach30||pb-IF4SVVkxIw==|| joined server -2022-12-09 12:12:51.589412 + : Android52820777||pb-IF4PVVI4Dg==|| joined server -2022-12-09 12:13:20.687267 + : Android52820777||pb-IF4PVVI4Dg==|| joined server -2022-12-09 12:14:07.834656 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-09 12:14:53.031614 + : Implacabl6||pb-IF4LVW49Kw==|| joined server -2022-12-09 12:15:21.141934 + : DYNAME3032||pb-IF5WVRMhIQ==|| joined server -2022-12-09 12:15:36.196087 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-09 12:16:16.317061 + : Android63940563||pb-IF4wU09SJA==|| joined server -2022-12-09 12:16:28.364364 + : rohitrt224||pb-IF4VVWIhLw==|| joined server -2022-12-09 12:16:47.441864 + : CrystalThrone2000||pb-IF5TLEwR|| joined server -2022-12-09 12:17:23.585388 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-09 12:17:42.654562 + : John24||pb-IF4RVU0FAA==|| joined server -2022-12-09 12:18:05.725516 + : FrontPlane24||pb-IF4WVU9TLg==|| joined server -2022-12-09 12:18:45.870316 + : ReticentPr||pb-IF5cU1AlNQ==|| joined server -2022-12-09 12:18:49.877382 + : Android60845640||pb-IF41UxkjMg==|| joined server -2022-12-09 12:19:24.997388 + : PalliNebo||pb-JiNJARBeXURHVF9CFUFTVldEFkVdRFBF|| joined server -2022-12-09 12:19:43.055875 + : LoathsomeR||pb-IF49U04vXA==|| joined server -2022-12-09 12:21:20.357347 + : RainyParce||pb-IF5RU1AaLw==|| joined server -2022-12-09 12:21:59.491263 + : GlintingCa||pb-IF4WVXQMKQ==|| joined server -2022-12-09 12:22:11.534400 + : Android63728390||pb-IF4HU0gSFw==|| joined server -2022-12-09 12:22:38.635509 + : GlintingCa||pb-IF4WVXQMKQ==|| joined server -2022-12-09 12:22:43.655429 + : LoudestInfusion1||pb-IF43U0oSUg==|| joined server -2022-12-09 12:23:10.758321 + : Android63940563||pb-IF4wU09SJA==|| joined server -2022-12-09 12:23:28.809576 + : GlintingCa||pb-IF4WVXQMKQ==|| joined server -2022-12-09 12:23:40.860498 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-09 12:24:12.977940 + : Android63940563||pb-IF4wU09SJA==|| joined server -2022-12-09 12:24:22.999343 + : Android63940563||pb-IF4wU09SJA==|| joined server -2022-12-09 12:24:24.000401 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-09 12:24:57.124992 + : ImmutableS||pb-IF4lU0U5BA==|| joined server -2022-12-09 12:25:15.185138 + : LittleSold||pb-IF4CVHEaDg==|| joined server -2022-12-09 12:25:32.250637 + : Wikirex200||pb-IF41V0UyDg==|| joined server -2022-12-09 12:25:35.256280 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-09 12:25:58.343384 + : Android57703578||pb-IF43UkIeEA==|| joined server -2022-12-09 12:26:43.523629 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 12:27:10.647653 + : GoㅤDㅤUsopp||pb-IF4PU3oqXQ==|| joined server -2022-12-09 12:27:28.730108 + : Wikirex200||pb-IF41V0UyDg==|| joined server -2022-12-09 12:27:57.828477 + : GoㅤDㅤUsopp||pb-IF4PU3oqXQ==|| joined server -2022-12-09 12:28:02.869940 + : Observant6||pb-IF42U1AiPA==|| joined server -2022-12-09 12:28:08.917521 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 12:29:11.140593 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-09 12:29:42.270787 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-09 12:29:52.303417 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-09 12:29:54.310709 + : StapleDrif||pb-IF4IU04HUg==|| joined server -2022-12-09 12:29:57.317879 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-09 12:30:57.511092 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-09 12:31:01.522291 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-09 12:31:23.595244 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-09 12:32:57.964186 + : shrirangam||pb-IF4oU0khUg==|| joined server -2022-12-09 12:33:25.045331 + : Android48907943||pb-IF4DVW4HFA==|| joined server -2022-12-09 12:34:11.245442 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-09 12:34:42.346691 + : Android64018827||pb-IF4PU1AzKQ==|| joined server -2022-12-09 12:36:26.716259 + : Android64006267||pb-IF4QU08YBg==|| joined server -2022-12-09 12:36:41.755537 + : BrownCreat||pb-IF4lB0sz|| joined server -2022-12-09 12:36:43.768980 + : ArunTamizh||pb-IF4UU2IIFg==|| joined server -2022-12-09 12:37:25.945926 + : Android47379546||pb-IF42VW5aNA==|| joined server -2022-12-09 12:37:52.026690 + : BrownCreat||pb-IF4lB0sz|| joined server -2022-12-09 12:38:00.050194 + : MinimalTradition52||pb-IF4FU00_PA==|| joined server -2022-12-09 12:40:01.493871 + : RustyUnicorn27009||pb-IF42U0kbEg==|| joined server -2022-12-09 12:40:08.519717 + : AceMedusa2||pb-IF4QUkMRUw==|| joined server -2022-12-09 12:40:29.599195 + : HeedlessCalcium28||pb-IF5WU3kZAQ==|| joined server -2022-12-09 12:40:46.651866 + : Mukilan300||pb-IF4CUhgmAQ==|| joined server -2022-12-09 12:40:50.669195 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2022-12-09 12:41:10.748207 + : HeedlessCalcium28||pb-IF5WU3kZAQ==|| joined server -2022-12-09 12:43:57.353821 + : Companion3||pb-IF4HU3YGBw==|| joined server -2022-12-09 12:44:49.510775 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2022-12-09 12:44:58.530047 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-09 12:45:07.570818 + : GlintingCa||pb-IF4WVXQMKQ==|| joined server -2022-12-09 12:45:17.606932 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-09 12:45:24.630526 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-09 12:45:45.725060 + : ᴵᴬᴹズRaoJi||pb-IF4pVVQBEA==|| joined server -2022-12-09 12:46:29.882097 + : FledgedSupervision32||pb-IF4qU0cEMg==|| joined server -2022-12-09 12:47:51.189198 + : HAMARBADON||pb-IF5UVU0cLQ==|| joined server -2022-12-09 12:48:18.296252 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-09 12:48:27.317463 + : Rajjadhav9||pb-IF41U0Y5PA==|| joined server -2022-12-09 12:48:31.324933 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-09 12:48:42.357905 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-09 12:48:57.423495 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-09 12:49:07.459241 + : Godfther1||pb-JiNJARFZUEFBXlpFGERQUFdDFkNXRFFF|| joined server -2022-12-09 12:50:15.729557 + : LoathsomeR||pb-IF49U04vXA==|| joined server -2022-12-09 12:50:23.758266 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-09 12:51:51.114160 + : MoodyLevel||pb-IF4SVUY_Uw==|| joined server -2022-12-09 12:53:00.346054 + : QuarterTan||pb-IF4JUkMbUw==|| joined server -2022-12-09 12:53:51.515950 + : GTPAITHIYA||pb-IF4iU0woLA==|| joined server -2022-12-09 12:55:52.941424 + : Rajjadhav9||pb-IF41U0Y5PA==|| joined server -2022-12-09 12:56:39.104102 + : djankit857||pb-IF4iVFBbDA==|| joined server -2022-12-09 12:57:15.231078 + : Nirucraze||pb-IF4gU3cIPQ==|| joined server -2022-12-09 12:57:49.351602 + : Android64017031||pb-IF4MU1AuAA==|| joined server -2022-12-09 12:59:05.625941 + : Nirucraze||pb-IF4gU3cIPQ==|| joined server -2022-12-09 12:59:08.632963 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-09 12:59:19.678517 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 12:59:36.733144 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-09 12:59:48.771079 + : Nirucraze||pb-IF4gU3cIPQ==|| joined server -2022-12-09 13:00:49.081376 + : ArmedSeer9||pb-JiNJARBeUEJJWltJEkdXUl1CGEJeQFhG|| joined server -2022-12-09 13:01:49.286238 + : G4mingAbhay||pb-IF4SU08iBw==|| joined server -2022-12-09 13:05:30.068696 + : rfzaulf||pb-IF4MUlgvKQ==|| joined server -2022-12-09 13:06:04.174632 + : ExpensiveSampling66||pb-IF4PU0hcUg==|| joined server -2022-12-09 13:06:44.323364 + : GrimCheck3||pb-IF4HU1ADMg==|| joined server -2022-12-09 13:07:03.386368 + : NIKSKATHI8187||pb-IF4dUkMGPQ==|| joined server -2022-12-09 13:08:07.625558 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-09 13:09:12.815244 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-09 13:09:17.829847 + : RanDD9322||pb-IF4nVRURUw==|| joined server -2022-12-09 13:10:24.064662 + : kunalkalyani28||pb-IF4KV0ssMg==|| joined server -2022-12-09 13:10:50.156008 + : PromisingH||pb-IF49U0UIVg==|| joined server -2022-12-09 13:10:52.165795 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-09 13:11:14.258704 + : lathakevin||pb-IF42U08aLQ==|| joined server -2022-12-09 13:11:42.360874 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-09 13:12:02.444538 + : scarecrowk||pb-IF43VWYDFw==|| joined server -2022-12-09 13:12:16.480882 + : Android47014780||pb-IF4HVWJdIQ==|| joined server -2022-12-09 13:12:21.502042 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-09 13:12:33.544922 + : safeek111||pb-IF4MVWdTMg==|| joined server -2022-12-09 13:12:44.588486 + : SHIVAMCHOU||pb-JiNJARFTVEBBVV1DGEdZXFZDGEVfQVFE|| joined server -2022-12-09 13:12:46.592397 + : Triumphal4||pb-IF4FU2YEEQ==|| joined server -2022-12-09 13:12:50.603611 + : BrieferApo||pb-IF4mUloHEA==|| joined server -2022-12-09 13:13:00.639218 + : Triumphal4||pb-IF4FU2YEEQ==|| joined server -2022-12-09 13:14:04.913821 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-09 13:15:30.227608 + : ThirstyNin||pb-JiNJVxFTV0JDVV9BGE5YV11DFEleR1hA|| joined server -2022-12-09 13:15:46.306581 + : BrieferApo||pb-IF4mUloHEA==|| joined server -2022-12-09 13:15:52.334364 + : BrownCreat||pb-IF4lB0sz|| joined server -2022-12-09 13:16:11.396641 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-09 13:18:19.872905 + : Underlyi15||pb-IF4VU1AiAg==|| joined server -2022-12-09 13:18:41.946490 + : Ashishthes||pb-IF4LVxklAw==|| joined server -2022-12-09 13:18:45.959315 + : Moldyblade||pb-IF4UU0YbEQ==|| joined server -2022-12-09 13:19:52.164082 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-09 13:20:39.316055 + : SHIVAMCHOU||pb-JiNJARFTVEBBVV1DGEdZXFZDGEVfQVFE|| joined server -2022-12-09 13:21:36.505380 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-09 13:22:49.776361 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-09 13:26:16.578991 + : WintryCoil||pb-IF4WU0wyCA==|| joined server -2022-12-09 13:26:46.780661 + : Rajuphirhe||pb-IF5VU044KA==|| joined server -2022-12-09 13:27:15.888386 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-09 13:27:41.000597 + : plasticgame1423||pb-IF4sU00yMg==|| joined server -2022-12-09 13:27:53.059595 + : plasticgame1423||pb-IF4sU00yMg==|| joined server -2022-12-09 13:28:39.225710 + : MilderUpri||pb-IF4uU0sRXA==|| joined server -2022-12-09 13:28:49.262309 + : MadBanjoPl||pb-IF5TV1o8XQ==|| joined server -2022-12-09 13:29:33.417064 + : scarecrowk||pb-IF43VWYDFw==|| joined server -2022-12-09 13:29:51.464377 + : MartianFrenemy71813||pb-IF4zVGcMIw==|| joined server -2022-12-09 13:29:54.480889 + : SHIVAMCHOU||pb-JiNJARFTVEBBVV1DGEdZXFZDGEVfQVFE|| joined server -2022-12-09 13:30:38.664056 + : IMNOTPRO78||pb-IF4TUmxcVQ==|| joined server -2022-12-09 13:30:59.727339 + : Opsistak||pb-IF4NU08IUQ==|| joined server -2022-12-09 13:32:57.146016 + : ForcedStar||pb-IF4zU08fKw==|| joined server -2022-12-09 13:33:18.240088 + : paratròóper||pb-IF4IV04ZKw==|| joined server -2022-12-09 13:33:31.288576 + : WirelessNe||pb-IF4nUkteVA==|| joined server -2022-12-09 13:34:19.482644 + : Nirucraze||pb-IF4gU3cIPQ==|| joined server -2022-12-09 13:36:19.012434 + : itsmenvk||pb-JiNJARBeUEtFX15IFUZYVV1KGEhXR1BC|| joined server -2022-12-09 13:36:23.020957 + : Android63989539||pb-IF5SU1EHPw==|| joined server -2022-12-09 13:36:38.075874 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-09 13:36:41.081476 + : Android63907345||pb-IF4uU00xVQ==|| joined server -2022-12-09 13:36:48.113355 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-09 13:39:33.905446 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 13:40:12.037515 + : IdeologicalCalcium||pb-IF4dV3MKKw==|| joined server -2022-12-09 13:40:27.081206 + : IdeologicalCalcium||pb-IF4dV3MKKw==|| joined server -2022-12-09 13:40:29.087385 + : VISAKANTHEGAMER12||pb-IF4JVXlYCQ==|| joined server -2022-12-09 13:41:10.242869 + : SonixDanger||pb-IF4NU3BTNA==|| joined server -2022-12-09 13:41:38.356395 + : LogicalDuck1803||pb-IF4lVG8eBA==|| joined server -2022-12-09 13:42:23.527766 + : WeakerResonance54||pb-IF4AU0IoCA==|| joined server -2022-12-09 13:43:32.763851 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-09 13:44:55.065921 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-09 13:45:51.253740 + : Thanuthegamer18||pb-IF4LU0Y5Mg==|| joined server -2022-12-09 13:46:33.417490 + : Thanuthegamer18||pb-IF4LU0Y5Mg==|| joined server -2022-12-09 13:47:02.502261 + : Thanuthegamer18||pb-IF4LU0Y5Mg==|| joined server -2022-12-09 13:47:19.559290 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-09 13:47:32.606232 + : WeakerResonance54||pb-IF4AU0IoCA==|| joined server -2022-12-09 13:47:52.676291 + : LittleHonor24||pb-IF40VRIbJg==|| joined server -2022-12-09 13:48:03.722440 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 13:48:44.859057 + : LittleHonor24||pb-IF40VRIbJg==|| joined server -2022-12-09 13:48:51.886596 + : Hypnotiz18||pb-IF4JJBA8|| joined server -2022-12-09 13:48:54.893094 + : boxsofyou||pb-IF4pUxQTDg==|| joined server -2022-12-09 13:49:26.984506 + : kingofdragonwar10||pb-IF5WU3YtDg==|| joined server -2022-12-09 13:50:18.193489 + : IdeologicalCalcium||pb-IF4dV3MKKw==|| joined server -2022-12-09 13:50:23.213280 + : BooI1219||pb-IF4eU0ggAw==|| joined server -2022-12-09 13:50:42.289820 + : Raghav2655||pb-IF4cU2UJCA==|| joined server -2022-12-09 13:51:31.476926 + : Raghav2655||pb-IF4cU2UJCA==|| joined server -2022-12-09 13:51:56.563715 + : Raghav2655||pb-IF4cU2UJCA==|| joined server -2022-12-09 13:52:03.581883 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-09 13:52:13.623441 + : AutocraticAttire15||pb-IF4PU0onNA==|| joined server -2022-12-09 13:52:52.770266 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-09 13:52:56.788788 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-09 13:53:19.868091 + : ForcedStar||pb-IF4zU08fKw==|| joined server -2022-12-09 13:53:23.882754 + : VISAKANTHEGAMER12||pb-IF4JVXlYCQ==|| joined server -2022-12-09 13:55:50.617686 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-09 13:56:07.673473 + : Preventab2||pb-IF4hU0oSFw==|| joined server -2022-12-09 13:57:00.833562 + : Thanuthegamer18||pb-IF4LU0Y5Mg==|| joined server -2022-12-09 13:57:21.899398 + : Fathot1||pb-IF5QU1ENFw==|| joined server -2022-12-09 13:57:47.996118 + : Thanuthegamer18||pb-IF4LU0Y5Mg==|| joined server -2022-12-09 13:58:12.074888 + : Hitman0079||pb-IF4LVXgMKQ==|| joined server -2022-12-09 13:58:16.087729 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-09 13:59:41.432509 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-09 14:00:23.622884 + : SAHILJOSHI2003||pb-IF4DV3UZUA==|| joined server -2022-12-09 14:00:31.652565 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 14:00:45.706644 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-09 14:02:58.272491 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-09 14:03:05.301580 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-09 14:03:10.316133 + : COMMANDER5005||pb-IF5VUksPFw==|| joined server -2022-12-09 14:03:53.467177 + : Aksshai88||pb-IF40VRAtJw==|| joined server -2022-12-09 14:03:54.474358 + : TrickShotP||pb-IF4oU1A8UQ==|| joined server -2022-12-09 14:04:08.529792 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-09 14:04:18.562939 + : DomesticLo||pb-IF4lVEkaUA==|| joined server -2022-12-09 14:04:21.570625 + : ModalHandl||pb-IF4NU0cpFw==|| joined server -2022-12-09 14:04:31.608490 + : WatConstan||pb-IF5dUnItVw==|| joined server -2022-12-09 14:05:03.723539 + : Thanuthegamer18||pb-IF4LU0Y5Mg==|| joined server -2022-12-09 14:05:37.828692 + : HonorableGrunt6306||pb-IF4mU0kaEA==|| joined server -2022-12-09 14:06:43.088775 + : kartikm52||pb-IF4IU0waNQ==|| joined server -2022-12-09 14:07:23.242582 + : EuphoricOr||pb-IF4zVEoqXA==|| joined server -2022-12-09 14:07:40.296983 + : TrespassingGate34||pb-IF4XU04tJw==|| joined server -2022-12-09 14:08:21.435276 + : DownstreamRigor65||pb-IF4RU0wePQ==|| joined server -2022-12-09 14:08:27.467063 + : EditorialU||pb-IF5RUkgSAQ==|| joined server -2022-12-09 14:08:42.506300 + : Thanuthegamer18||pb-IF4LU0Y5Mg==|| joined server -2022-12-09 14:08:48.527614 + : WeakerResonance54||pb-IF4AU0IoCA==|| joined server -2022-12-09 14:09:07.587035 + : Aksshai88||pb-IF40VRAtJw==|| joined server -2022-12-09 14:09:32.671537 + : Thanuthegamer18||pb-IF4LU0Y5Mg==|| joined server -2022-12-09 14:09:39.694915 + : Torrenti16||pb-IF4RU0ksMQ==|| joined server -2022-12-09 14:09:59.775361 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-09 14:12:04.189284 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 14:12:29.273117 + : MRAStrungV||pb-IF4sVXQuDw==|| joined server -2022-12-09 14:14:57.823077 + : mrpainless||pb-IF4PIFQ9|| joined server -2022-12-09 14:15:09.856314 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-09 14:15:19.889438 + : ModalHandl||pb-IF4NU0cpFw==|| joined server -2022-12-09 14:15:25.906746 + : ModalHandl||pb-IF4NU0cpFw==|| joined server -2022-12-09 14:15:46.988983 + : ranjithb344||pb-IF5TVEsoAQ==|| joined server -2022-12-09 14:17:12.305384 + : TrespassingGate34||pb-IF4XU04tJw==|| joined server -2022-12-09 14:17:32.390364 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-09 14:26:25.277693 + : JokeRRR||pb-IF43U2UlPA==|| joined server -2022-12-09 14:27:29.478037 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-09 14:31:13.243980 + : WirelessNe||pb-IF4nUkteVA==|| joined server -2022-12-09 14:34:09.875092 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-09 14:36:30.393561 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-09 14:37:06.516983 + : Android63934668||pb-IF4vU04bIw==|| joined server -2022-12-09 14:40:43.307175 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-09 14:44:32.319403 + : LoathsomeR||pb-IF49U04vXA==|| joined server -2022-12-09 14:49:07.293060 + : MetabolicA||pb-IF5QU04ZJw==|| joined server -2022-12-09 14:49:25.364317 + : paratròóper||pb-IF4IV04ZKw==|| joined server -2022-12-09 14:49:42.430562 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 14:50:48.926018 + : Android64011984||pb-IF4NU08-Lw==|| joined server -2022-12-09 14:51:07.980263 + : MOREGREAT7||pb-IF4UU1FZDQ==|| joined server -2022-12-09 14:52:26.269677 + : mayankposh||pb-IF4eUkscVQ==|| joined server -2022-12-09 14:53:32.488188 + : Android62782568||pb-IF4AU3ZTPw==|| joined server -2022-12-09 14:53:50.535396 + : DarishLend||pb-IF5VU0IZJA==|| joined server -2022-12-09 14:55:45.938380 + : Android55556523||pb-IF4uUmgjCQ==|| joined server -2022-12-09 14:55:57.993756 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 14:59:00.667841 + : Android57008711||pb-IF4RUnY9IQ==|| joined server -2022-12-09 14:59:07.695806 + : Anthropolo||pb-IF4-U2suMg==|| joined server -2022-12-09 14:59:11.706929 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 14:59:17.740920 + : Android57008711||pb-IF4RUnY9IQ==|| joined server -2022-12-09 14:59:27.772839 + : chandru222||pb-IF4qUnYeHA==|| joined server -2022-12-09 15:00:07.894285 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-09 15:01:29.441463 + : KELS0502||pb-IF5dEEVS|| joined server -2022-12-09 15:01:34.459364 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-09 15:01:38.480981 + : Android62958044||pb-IF49VFcGNw==|| joined server -2022-12-09 15:02:02.876657 + : Android57008711||pb-IF4RUnY9IQ==|| joined server -2022-12-09 15:03:06.077573 + : MIKEALSON0||pb-IF4zUkwpAg==|| joined server -2022-12-09 15:03:35.181553 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-09 15:03:43.214876 + : PYGREED||pb-IF4TU08kKQ==|| joined server -2022-12-09 15:03:54.254147 + : AffectiveH||pb-IF5QU2hSFw==|| joined server -2022-12-09 15:04:50.484814 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-09 15:04:55.499357 + : SimulatedTrademark27||pb-IF41U28fDg==|| joined server -2022-12-09 15:06:07.747502 + : PC608400||pb-IF4NUxMgBA==|| joined server -2022-12-09 15:07:10.973303 + : Android57008711||pb-IF4RUnY9IQ==|| joined server -2022-12-09 15:08:20.221060 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-09 15:08:56.343743 + : HatefulAnn||pb-IF4PUkogDg==|| joined server -2022-12-09 15:09:12.422094 + : Android61274288||pb-IF4uU2UvVw==|| joined server -2022-12-09 15:10:04.162431 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 15:10:14.197643 + : Android63989539||pb-IF5SU1EHPw==|| joined server -2022-12-09 15:10:24.227693 + : WeakerResonance54||pb-IF4AU0IoCA==|| joined server -2022-12-09 15:10:27.239677 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-09 15:10:29.247717 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-09 15:10:38.278812 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-09 15:11:33.502925 + : Question11||pb-IF4rU1BSLg==|| joined server -2022-12-09 15:11:34.507034 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-09 15:11:41.531550 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 15:11:49.558155 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-09 15:11:59.591918 + : Anthropolo||pb-IF4-U2suMg==|| joined server -2022-12-09 15:12:04.609214 + : PC608400||pb-IF4NUxMgBA==|| joined server -2022-12-09 15:12:08.623803 + : Anthropolo||pb-IF4-U2suMg==|| joined server -2022-12-09 15:12:13.632875 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 15:12:36.739623 + : Intermed12||pb-IF41U08-Eg==|| joined server -2022-12-09 15:13:08.853182 + : CapitalSim||pb-IF4nU24qEA==|| joined server -2022-12-09 15:13:11.858875 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-09 15:13:13.865679 + : WirelessNe||pb-IF4nUkteVA==|| joined server -2022-12-09 15:14:25.085705 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-09 15:17:57.821042 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-09 15:18:53.007562 + : BrassAdmirer24||pb-IF4MU3MiAw==|| joined server -2022-12-09 15:19:22.120013 + : yashgusadfggggggg||pb-IF4hU0g4LA==|| joined server -2022-12-09 15:20:37.395629 + : ReputableSlew45||pb-IF4sU0sDMg==|| joined server -2022-12-09 15:22:07.732465 + : Negotiab13||pb-IF4UU2NeUA==|| joined server -2022-12-09 15:22:17.768565 + : Android64017948||pb-IF4AU1A-Ig==|| joined server -2022-12-09 15:22:32.807227 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-09 15:24:26.193067 + : shravanm08||pb-JiNJARBYXURBXFdFFkdZV1NKGUlfQldA|| joined server -2022-12-09 15:24:55.288967 + : Sumanth386||pb-IF5TUm4DNg==|| joined server -2022-12-09 15:27:43.843101 + : WeakerResonance54||pb-IF4AU0IoCA==|| joined server -2022-12-09 15:28:46.061881 + : GinormousD||pb-IF4eU2VTAg==|| joined server -2022-12-09 15:28:57.111028 + : kirubai2282||pb-IF40U0QYXQ==|| joined server -2022-12-09 15:29:59.335536 + : Android63737185||pb-IF4RU0kkPA==|| joined server -2022-12-09 15:30:22.406989 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2022-12-09 15:30:43.478228 + : Deadthor||pb-IF5XU1IgAA==|| joined server -2022-12-09 15:31:11.568770 + : DrJoker290||pb-IF4gU08xNg==|| joined server -2022-12-09 15:32:04.733291 + : MassiveCough58||pb-IF4-U0soEg==|| joined server -2022-12-09 15:34:38.337141 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 15:35:15.467151 + : mohammedsafeek2||pb-IF4KVWgcBw==|| joined server -2022-12-09 15:35:20.487418 + : IncorporatedCoup53||pb-IF4yU0cFEw==|| joined server -2022-12-09 15:35:38.541373 + : NoName69100g||pb-IF4PVEsyDg==|| joined server -2022-12-09 15:36:13.666759 + : Android57587756||pb-IF4HUkEfJA==|| joined server -2022-12-09 15:36:51.837231 + : AkshayParg||pb-IF4vVFEZBg==|| joined server -2022-12-09 15:37:39.026033 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-09 15:37:40.025448 + : AravinthNithi0000||pb-IF4cVGYjHw==|| joined server -2022-12-09 15:37:49.046811 + : LusciousGr||pb-JiNJARBfU0NBWF9JFkBWV1xAFEVdQVZH|| joined server -2022-12-09 15:38:10.112508 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-09 15:38:28.188290 + : sooriyapraksh||pb-IF4cU09ZFw==|| joined server -2022-12-09 15:38:33.200737 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-09 15:39:24.337003 + : Eighteen10||pb-IF5QU1NbNg==|| joined server -2022-12-09 15:39:35.374687 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-09 15:39:52.444910 + : NiceWarchief72561||pb-IF4AU2I-Ew==|| joined server -2022-12-09 15:40:08.508495 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-09 15:40:37.631373 + : Android63796554||pb-IF4NU0ojAA==|| joined server -2022-12-09 15:40:59.700353 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-09 15:41:31.840520 + : ExcitedParagon67068||pb-IF49UxEpJg==|| joined server -2022-12-09 15:41:38.856626 + : Surajkhot0||pb-IF5QVWsoFw==|| joined server -2022-12-09 15:42:36.041683 + : StrenuousH||pb-IF48U3g_Lw==|| joined server -2022-12-09 15:43:05.146537 + : Themarq93||pb-IF4BNlMn|| joined server -2022-12-09 15:43:56.329002 + : AkshayParg||pb-IF4vVFEZBg==|| joined server -2022-12-09 15:44:01.341595 + : GinormousD||pb-IF4eU2VTAg==|| joined server -2022-12-09 15:44:09.380150 + : jagu22wan||pb-IF4UUxYyXA==|| joined server -2022-12-09 15:44:11.396603 + : DeathDef21||pb-JiNJARFTVkNJXldEE0JQXFNEE0VbQldH|| joined server -2022-12-09 15:44:38.497640 + : KookyVeloc||pb-IF4SU3gHFg==|| joined server -2022-12-09 15:44:49.545847 + : Android63955818||pb-IF4QU04AAg==|| joined server -2022-12-09 15:44:58.584031 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2022-12-09 15:45:21.678846 + : SriramHULK786||pb-IF5TUkoOHw==|| joined server -2022-12-09 15:45:56.798162 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-09 15:46:43.966208 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-09 15:47:07.043110 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-09 15:48:50.414657 + : kartikeyku||pb-IF4MVUszXA==|| joined server -2022-12-09 15:48:51.419615 + : tanishdosh||pb-IF4mVU0oUw==|| joined server -2022-12-09 15:49:37.577041 + : BrassAdmirer24||pb-IF4MU3MiAw==|| joined server -2022-12-09 15:49:53.617232 + : OutrightPeriphery10||pb-IF4HVFFTUg==|| joined server -2022-12-09 15:51:03.860665 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2022-12-09 15:51:55.108172 + : Android63428296||pb-IF4CU0MiVA==|| joined server -2022-12-09 15:52:09.159431 + : Android63180331||pb-IF4CU3oxLA==|| joined server -2022-12-09 15:52:16.176918 + : PsbAsb123||pb-IF4oU1AkNw==|| joined server -2022-12-09 15:52:30.213365 + : RoyalProph||pb-IF5TV2MzCA==|| joined server -2022-12-09 15:52:38.248340 + : BrassAdmirer24||pb-IF4MU3MiAw==|| joined server -2022-12-09 15:53:23.425476 + : Android60482791||pb-IF4iUxUqUA==|| joined server -2022-12-09 15:53:38.474089 + : TaciturnUp||pb-IF48U08ADw==|| joined server -2022-12-09 15:53:41.485488 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-09 15:54:14.594625 + : VeteranGuy||pb-IF5SU0hTEw==|| joined server -2022-12-09 15:54:28.644837 + : shiva3723s||pb-IF4oU1AyNA==|| joined server -2022-12-09 15:54:51.722695 + : NikunjGopa||pb-IF5UPxU-|| joined server -2022-12-09 15:55:06.779457 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-09 15:55:35.877338 + : Android64020233||pb-IF4zU1AJCg==|| joined server -2022-12-09 15:55:40.897648 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-09 15:56:24.053256 + : ZADKIEL||pb-IF4wU00DEA==|| joined server -2022-12-09 15:56:34.089417 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-09 15:56:38.104377 + : FancyPan23||pb-IF5UUkMlDA==|| joined server -2022-12-09 15:56:46.135530 + : Android63888799||pb-IF4oU004KQ==|| joined server -2022-12-09 15:57:07.201165 + : RCXELITE00||pb-IF4OU1AoNA==|| joined server -2022-12-09 15:58:22.471409 + : FrolicZest||pb-IF4pVWMMBA==|| joined server -2022-12-09 15:58:46.568649 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2022-12-09 15:59:04.629161 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-09 15:59:49.768664 + : KookyVeloc||pb-IF4SU3gHFg==|| joined server -2022-12-09 16:00:03.834472 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-09 16:00:09.845506 + : RipeLeopard28710||pb-IF5SV1lfIQ==|| joined server -2022-12-09 16:00:15.888209 + : Android63737185||pb-IF4RU0kkPA==|| joined server -2022-12-09 16:00:45.997067 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-09 16:02:00.299942 + : Android61637892||pb-IF4JU2kkDg==|| joined server -2022-12-09 16:03:17.589490 + : StrenuousH||pb-IF48U3g_Lw==|| joined server -2022-12-09 16:03:44.679901 + : Nirucraze||pb-IF4gU3cIPQ==|| joined server -2022-12-09 16:04:52.904645 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-09 16:05:40.037675 + : Peripheralstomach21||pb-IF5cVWkEJg==|| joined server -2022-12-09 16:05:47.064125 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-09 16:06:12.145953 + : RoyalProph||pb-IF5TV2MzCA==|| joined server -2022-12-09 16:06:33.316592 + : StrenuousH||pb-IF48U3g_Lw==|| joined server -2022-12-09 16:07:07.427425 + : RCXELITE00||pb-IF4OU1AoNA==|| joined server -2022-12-09 16:07:11.439188 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-09 16:07:42.536507 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-09 16:07:50.564057 + : Android48907943||pb-IF4DVW4HFA==|| joined server -2022-12-09 16:08:12.652842 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-09 16:08:51.767602 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-09 16:09:07.820718 + : ZealousDin||pb-IF4dU04KKw==|| joined server -2022-12-09 16:10:09.053029 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-09 16:12:15.473197 + : HumblerMare46||pb-IF5VU0dfJg==|| joined server -2022-12-09 16:13:38.825069 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-09 16:13:59.896501 + : CreativeFo||pb-JiNJARFeUkdBWFpBE09SU1NLGUdcRVFH|| joined server -2022-12-09 16:14:29.985905 + : yashwanthgamer8||pb-IF4eUkgqKA==|| joined server -2022-12-09 16:14:50.068600 + : AiranChanc||pb-IF4pU0sRFw==|| joined server -2022-12-09 16:15:22.164035 + : SriramHULK786||pb-IF5TUkoOHw==|| joined server -2022-12-09 16:15:58.312529 + : SillyMembrane32||pb-IF4AU04IHQ==|| joined server -2022-12-09 16:18:36.901852 + : meetbapu12||pb-IF4yU0gtIQ==|| joined server -2022-12-09 16:20:30.266247 + : FrolicZest||pb-IF4pVWMMBA==|| joined server -2022-12-09 16:23:04.836615 + : MilderUpri||pb-IF4uU0sRXA==|| joined server -2022-12-09 16:24:59.269883 + : StarredGondolier2087||pb-IF4gU0Q_Hw==|| joined server -2022-12-09 16:26:00.486855 + : meetbapu12||pb-IF4yU0gtIQ==|| joined server -2022-12-09 16:26:04.500103 + : DeceptiveL||pb-IF5WU28fFg==|| joined server -2022-12-09 16:26:11.528927 + : DormantAng||pb-IF4CVRRdFA==|| joined server -2022-12-09 16:28:30.022068 + : Android47904043||pb-IF4PVWhfIw==|| joined server -2022-12-09 16:30:03.391213 + : MysteriousVehicle16||pb-IF4FVFUxVw==|| joined server -2022-12-09 16:30:54.633186 + : ARJUNVV288||pb-JiNJARFbXUtFXV9BGURWV1ZFGUBZQ1BA|| joined server -2022-12-09 16:31:09.674376 + : MrDevil||pb-IF4hBFgH|| joined server -2022-12-09 16:31:16.707357 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-09 16:32:17.930579 + : Piitaajii||pb-IF5VP0cq|| joined server -2022-12-09 16:32:18.936655 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-09 16:32:38.998597 + : dpvaghasiy||pb-IF40PkMh|| joined server -2022-12-09 16:32:55.054332 + : Android61269388||pb-IF4uU2UqLQ==|| joined server -2022-12-09 16:33:28.159434 + : MilderUpri||pb-IF4uU0sRXA==|| joined server -2022-12-09 16:33:45.226749 + : Nirucraze||pb-IF4gU3cIPQ==|| joined server -2022-12-09 16:34:04.289437 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-09 16:34:31.372635 + : KakashiHata2512||pb-IF4HU04tIQ==|| joined server -2022-12-09 16:35:03.497209 + : Dharmikkakdiya4832||pb-IF4nVEY-PA==|| joined server -2022-12-09 16:35:13.531292 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-09 16:35:55.817558 + : Invisible6||pb-IF4MU085LA==|| joined server -2022-12-09 16:35:58.832805 + : NoName69210d||pb-IF4AU1AzKg==|| joined server -2022-12-09 16:36:17.881119 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-09 16:36:36.947824 + : LankyTennis29||pb-IF4pUxEzNw==|| joined server -2022-12-09 16:37:28.142841 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-09 16:37:41.189365 + : Android57708227||pb-IF48UkNTVA==|| joined server -2022-12-09 16:38:28.367317 + : DormantAng||pb-IF4CVRRdFA==|| joined server -2022-12-09 16:38:48.432881 + : Preventab2||pb-IF4hU0oSFw==|| joined server -2022-12-09 16:39:11.696254 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-09 16:39:30.773782 + : Elemental8||pb-IF4DU1BSCw==|| joined server -2022-12-09 16:41:52.278156 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-09 16:41:58.302167 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 16:42:17.373260 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-09 16:42:27.417651 + : Tractable2||pb-IF5UVVMgIA==|| joined server -2022-12-09 16:42:35.438537 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-09 16:42:52.505701 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-09 16:43:42.665536 + : omdayy||pb-IF4sVHUCKQ==|| joined server -2022-12-09 16:46:33.284890 + : AdvancedExpomnent45m||pb-IF4JU3MxCQ==|| joined server -2022-12-09 16:46:42.314411 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-09 16:50:57.190338 + : ExcitableA||pb-IF4rUngmDQ==|| joined server -2022-12-09 16:52:06.409731 + : SillyMembrane32||pb-IF4AU04IHQ==|| joined server -2022-12-09 16:54:55.255404 + : Dotphoenix||pb-IF4FV00SDA==|| joined server -2022-12-09 16:56:07.553432 + : omdayy||pb-IF4sVHUCKQ==|| joined server -2022-12-09 16:56:40.641397 + : GnanaDeep||pb-LV4TXkEPV0RACA5dE0IEAEhGQUlaWlhHVAUNUlFLEVxYERgTBAAG|| joined server -2022-12-09 16:57:25.802882 + : Android63936343||pb-IF5RU1EiLA==|| joined server -2022-12-09 16:58:07.977350 + : UKnowMeAJ||pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH|| joined server -2022-12-09 16:58:09.983467 + : VocationalScrutiny21||pb-IF4rU0U8Eg==|| joined server -2022-12-09 17:02:29.984104 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-09 17:04:30.384552 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-09 17:11:41.146269 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-09 17:13:40.727668 + : NehalSule01||pb-IF4nU0shXQ==|| joined server -2022-12-09 17:14:07.816285 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-09 17:14:16.841970 + : mullanasru||pb-IF5dUxgeAg==|| joined server -2022-12-09 17:14:24.866249 + : Android55206127||pb-IF4FUmVYFg==|| joined server -2022-12-09 17:15:14.059146 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-09 17:15:27.109781 + : Android56623002||pb-IF4-UnIyUQ==|| joined server -2022-12-09 17:16:33.320035 + : Baralund||pb-IF4VUhAKEg==|| joined server -2022-12-09 17:16:37.328399 + : Baralund||pb-IF4VUhAKEg==|| joined server -2022-12-09 17:17:03.418472 + : AstroAnish||pb-IF5WUmQgEw==|| joined server -2022-12-09 17:17:52.575567 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-09 17:18:58.834167 + : praneshbhat14051998||pb-IF4BV1U9LA==|| joined server -2022-12-09 17:19:03.855547 + : NoName46139e||pb-IF4NVVkCHA==|| joined server -2022-12-09 17:19:53.014031 + : PrakharTri||pb-IF4wVBAjCA==|| joined server -2022-12-09 17:23:06.879801 + : patelbhai7||pb-IF4pV3McIg==|| joined server -2022-12-09 17:23:10.891731 + : LoathsomeR||pb-IF49U04vXA==|| joined server -2022-12-09 17:23:47.032702 + : FrostedLor||pb-IF4zUxYJEw==|| joined server -2022-12-09 17:26:41.647187 + : ExcitableA||pb-IF4rUngmDQ==|| joined server -2022-12-09 17:26:57.698946 + : yashwanthgamer8||pb-IF4eUkgqKA==|| joined server -2022-12-09 17:27:10.763544 + : Dharmikkakdiya4832||pb-IF4nVEY-PA==|| joined server -2022-12-09 17:27:22.807151 + : Android55601587||pb-IF4SUhJZPw==|| joined server -2022-12-09 17:27:24.817652 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-09 17:27:45.894488 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-09 17:29:36.318256 + : sahilkhatri343593||pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL|| joined server -2022-12-09 17:30:39.639340 + : Anthropolo||pb-IF4-U2suMg==|| joined server -2022-12-09 17:30:51.676724 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-09 17:30:58.689801 + : Raghav2655||pb-IF4cU2UJCA==|| joined server -2022-12-09 17:31:05.723916 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-09 17:31:49.894170 + : Raghav2655||pb-IF4cU2UJCA==|| joined server -2022-12-09 17:32:52.138090 + : Android63275777||pb-IF4cU0E7Jg==|| joined server -2022-12-09 17:32:57.156571 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-09 17:36:09.060723 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-09 17:36:51.191745 + : LIONHUNTER||pb-IF4eVGc7Cw==|| joined server -2022-12-09 17:39:58.837782 + : shrey19654||pb-IF4QVGYMKg==|| joined server -2022-12-09 17:43:29.853348 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-09 17:45:09.500771 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-09 17:45:29.580556 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-09 17:46:38.797024 + : VerdantCircus9||pb-IF4AVVAIUg==|| joined server -2022-12-09 17:46:42.805248 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-09 17:47:49.228776 + : Abhinav347||pb-IF5UEkIM|| joined server -2022-12-09 17:56:54.533461 + : Lxhussain||pb-IF4RU0UpAQ==|| joined server -2022-12-09 18:01:18.133729 + : MemerBadshah||pb-IF4JUmdaIg==|| joined server -2022-12-09 18:02:13.329939 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-09 18:03:46.689516 + : LionAlpha7||pb-IF4UVGg8KQ==|| joined server -2022-12-09 18:04:05.769414 + : Android58818482||pb-IF4yUk4JLw==|| joined server -2022-12-09 18:05:59.177425 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-09 18:06:41.335778 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-09 18:07:38.548762 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-09 18:09:55.339378 + : sahilkhatri343593||pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL|| joined server -2022-12-09 18:10:09.382136 + : harsharock||pb-IF5dUkQJAw==|| joined server -2022-12-09 18:10:17.414215 + : DilatoryHo||pb-IF48U3FaNQ==|| joined server -2022-12-09 18:10:28.450271 + : harsharock||pb-IF5dUkQJAw==|| joined server -2022-12-09 18:11:48.732424 + : nikitamale||pb-IF5RU1EtMg==|| joined server -2022-12-09 18:11:56.765730 + : NoName46139e||pb-IF4NVVkCHA==|| joined server -2022-12-09 18:12:05.785424 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-09 18:12:38.921793 + : sahilkhatri343593||pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL|| joined server -2022-12-09 18:13:06.029606 + : ChargingBe||pb-IF49UnYRLQ==|| joined server -2022-12-09 18:13:18.082866 + : Dotphoenix||pb-IF4FV00SDA==|| joined server -2022-12-09 18:13:25.116836 + : Android58405739||pb-IF4WUko_JA==|| joined server -2022-12-09 18:14:05.230213 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-09 18:14:38.538806 + : nikitamale||pb-IF5RU1EtMg==|| joined server -2022-12-09 18:15:23.715611 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-09 18:16:04.843733 + : madhumoto||pb-IF5UVGQEEg==|| joined server -2022-12-09 18:17:57.444296 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-09 18:17:59.452763 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-09 18:18:55.636003 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-09 18:20:08.899329 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-09 18:21:16.185656 + : DeadlyFly63846||pb-IF43VEQYAw==|| joined server -2022-12-09 18:21:34.259141 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-09 18:21:58.315093 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-09 18:22:07.346909 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-09 18:23:20.639367 + : NoName60395d||pb-IF4jVXQ6MQ==|| joined server -2022-12-09 18:25:06.123144 + : Engrossi18||pb-IF4qVWg5MA==|| joined server -2022-12-09 18:27:57.904076 + : Pretenti21||pb-IF43VWxeHQ==|| joined server -2022-12-09 18:28:35.010606 + : Android62009030||pb-IF4iUlYeLw==|| joined server -2022-12-09 18:28:38.019620 + : Android62958044||pb-IF49VFcGNw==|| joined server -2022-12-09 18:28:44.044924 + : Anthropolo||pb-IF4-U2suMg==|| joined server -2022-12-09 18:29:40.238043 + : gandfaad14||pb-IF41U08_Ug==|| joined server -2022-12-09 18:29:52.291215 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-09 18:32:27.831349 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-09 18:34:25.259103 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-09 18:35:54.659210 + : RohanK||pb-IF4dCnou|| joined server -2022-12-09 18:37:56.456956 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-09 18:40:00.918050 + : Android63180331||pb-IF4CU3oxLA==|| joined server -2022-12-09 18:41:12.201041 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-09 18:44:02.958015 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-09 18:44:34.101368 + : HootingDra||pb-IF5TAHQO|| joined server -2022-12-09 18:53:32.774497 + : AbhishekAjay744||pb-IF4xU2EbKg==|| joined server -2022-12-09 18:53:47.829714 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-09 18:54:04.890148 + : RohanK||pb-IF4dCnou|| joined server -2022-12-09 18:54:19.957405 + : Anthropolo||pb-IF4-U2suMg==|| joined server -2022-12-09 18:57:18.607739 + : Android61315641||pb-IF4SU2ZYKw==|| joined server -2022-12-09 18:57:31.657155 + : gandfaad14||pb-IF41U08_Ug==|| joined server -2022-12-09 18:58:36.898570 + : Android58405739||pb-IF4WUko_JA==|| joined server -2022-12-09 18:59:23.068914 + : MilesAboveYou||pb-IF4CUhM5AQ==|| joined server -2022-12-09 19:00:46.385315 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-09 19:00:53.409199 + : MilesAboveYou||pb-IF4CUhM5AQ==|| joined server -2022-12-09 19:03:01.921457 + : Anthropolo||pb-IF4-U2suMg==|| joined server -2022-12-09 19:05:20.640479 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-09 19:06:37.881190 + : prashanT64||pb-IF4IUlofKA==|| joined server -2022-12-09 19:08:31.550981 + : GlidingTor||pb-IF4WU04YUw==|| joined server -2022-12-09 19:08:58.645532 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-09 19:09:47.983408 + : AdorableH2||pb-IF4eV20iKw==|| joined server -2022-12-09 19:09:58.013783 + : Android62591508||pb-IF4JU3MeLQ==|| joined server -2022-12-09 19:12:36.553431 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-09 19:13:33.758356 + : smoothy2||pb-IF4nU08BVg==|| joined server -2022-12-09 19:15:36.192387 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-09 19:16:24.576534 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-09 19:17:30.909968 + : Nived04||pb-IF4SVBYsBg==|| joined server -2022-12-09 19:18:19.236759 + : PerkySwan9||pb-JiNJVxBfUUdCVVtIGUVRV1BLGEhZRlVC|| joined server -2022-12-09 19:25:17.367058 + : CivilizedT||pb-IF4wVFcZPw==|| joined server -2022-12-09 19:25:28.780969 + : LaxCurb126||pb-IF4TU3EfNw==|| joined server -2022-12-09 19:26:01.890858 + : Android58405739||pb-IF4WUko_JA==|| joined server -2022-12-09 19:26:03.904201 + : Northerly5||pb-IF4lU0pZLA==|| joined server -2022-12-09 19:28:12.790996 + : MR12||pb-IF4SUnEuBg==|| joined server -2022-12-09 19:30:53.362482 + : mayankposh||pb-IF4eUkscVQ==|| joined server -2022-12-09 19:30:55.371646 + : BOSSGEM844||pb-IF4eUloTUg==|| joined server -2022-12-09 19:31:27.489733 + : oways1517||pb-IF4PU0JeNw==|| joined server -2022-12-09 19:33:51.076315 + : RohanK||pb-IF4dCnou|| joined server -2022-12-09 19:36:01.772140 + : hck3rr||pb-IF4UU3FYVg==|| joined server -2022-12-09 19:36:11.796975 + : MimicOperations7||pb-IF4qU04KNQ==|| joined server -2022-12-09 19:37:10.402967 + : MimicOperations7||pb-IF4qU04KNQ==|| joined server -2022-12-09 19:37:16.427301 + : InorganicB||pb-IF5WU3oCNg==|| joined server -2022-12-09 19:37:58.588835 + : Android63977651||pb-IF4JU086KQ==|| joined server -2022-12-09 19:38:11.629567 + : CourtlyHor||pb-IF4pUlYOUQ==|| joined server -2022-12-09 19:38:18.639332 + : AbhishekAjay744||pb-IF4xU2EbKg==|| joined server -2022-12-09 19:38:26.665077 + : Android59978094||pb-IF5dUxEdMw==|| joined server -2022-12-09 19:43:27.107516 + : hck3rr||pb-IF4UU3FYVg==|| joined server -2022-12-09 19:43:55.222220 + : hck3rr||pb-IF4UU3FYVg==|| joined server -2022-12-09 19:44:32.353538 + : Android63977651||pb-IF4JU086KQ==|| joined server -2022-12-09 19:44:42.393388 + : AloneTraveler007||pb-IF4BUkVYUA==|| joined server -2022-12-09 19:45:30.555585 + : hck3rr||pb-IF4UU3FYVg==|| joined server -2022-12-09 19:51:15.224821 + : AbhishekAjay744||pb-IF4xU2EbKg==|| joined server -2022-12-09 19:52:41.615218 + : Determina3||pb-IF4DVWMsPw==|| joined server -2022-12-09 19:52:43.615243 + : MPF||pb-IF4rLkwp|| joined server -2022-12-09 19:52:47.621243 + : Tgsbadman321||pb-IF4rU08aVg==|| joined server -2022-12-09 19:53:09.695583 + : Android59978094||pb-IF5dUxEdMw==|| joined server -2022-12-09 19:54:20.969783 + : MPF||pb-IF4rLkwp|| joined server -2022-12-09 19:54:22.979457 + : Defensibl8||pb-IF4QU085Bw==|| joined server -2022-12-09 19:57:55.306227 + : SneakyWill||pb-IF4zU0YHDQ==|| joined server -2022-12-09 19:58:30.433806 + : Anaerobic2||pb-IF4sVWoIIw==|| joined server -2022-12-09 20:02:50.220742 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-09 20:06:24.849368 + : OffDusk3||pb-IF49UxM9XQ==|| joined server -2022-12-09 20:08:42.329698 + : Android56105049||pb-IF4HUm0aVw==|| joined server -2022-12-09 20:10:51.984920 + : Android63830734||pb-IF4BU0s8BA==|| joined server -2022-12-09 20:11:09.065434 + : Probekir65||pb-IF4UU1AhFA==|| joined server -2022-12-09 20:12:35.601185 + : rafaelzubu||pb-IF4zUhYkCg==|| joined server -2022-12-09 20:12:37.607393 + : ChintuKarthik1123||pb-IF43U3opMw==|| joined server -2022-12-09 20:14:11.984393 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-09 20:16:16.944337 + : inexhaust9||pb-IF5WUnEEKg==|| joined server -2022-12-09 20:16:25.971661 + : bhattiarman786||pb-IF4CDlAZ|| joined server -2022-12-09 20:17:12.110466 + : garox2187||pb-IF4rUm8DIw==|| joined server -2022-12-09 20:20:11.547816 + : DYNAME3032||pb-IF5WVRMhIQ==|| joined server -2022-12-09 20:22:22.086581 + : ArunTamizh||pb-IF4UU2IIFg==|| joined server -2022-12-09 20:27:01.956119 + : Sathishdev||pb-IF4-U0wYMQ==|| joined server -2022-12-09 20:28:02.493738 + : dhanushmes||pb-IF5VU0UzJg==|| joined server -2022-12-09 20:28:44.657416 + : EasternStorehouse34||pb-IF4BUlQGCA==|| joined server -2022-12-09 20:29:19.804458 + : SableIntim||pb-IF4yU0YDUw==|| joined server -2022-12-09 20:29:26.844284 + : hck3rr||pb-IF4UU3FYVg==|| joined server -2022-12-09 20:30:12.023827 + : SableIntim||pb-IF4yU0YDUw==|| joined server -2022-12-09 20:30:19.054655 + : BogdanKim2209||pb-IF41U2EmKA==|| joined server -2022-12-09 20:30:56.170048 + : FrozenNano||pb-JiNJARBdUUtDWVdJF0dVVVBHEkBaQFlA|| joined server -2022-12-09 20:31:00.186125 + : hck3rr||pb-IF4UU3FYVg==|| joined server -2022-12-09 20:31:06.672216 + : Naveenkrish010||pb-IF4NU0IzCA==|| joined server -2022-12-09 20:31:40.071829 + : SableIntim||pb-IF4yU0YDUw==|| joined server -2022-12-09 20:32:53.966236 + : Android62320493||pb-IF4qU3FeEg==|| joined server -2022-12-09 20:37:40.771488 + : ModalHandl||pb-IF4NU0cpFw==|| joined server -2022-12-09 20:37:51.803857 + : ModalHandl||pb-IF4NU0cpFw==|| joined server -2022-12-09 20:38:49.365501 + : hck3rr||pb-IF4UU3FYVg==|| joined server -2022-12-09 20:40:26.031601 + : WolfViperCr7||pb-IF48U0YAMQ==|| joined server -2022-12-09 20:41:42.311354 + : Swaggers65||pb-IF4dU0YpVQ==|| joined server -2022-12-09 20:43:33.668140 + : AbhishekAjay744||pb-IF4xU2EbKg==|| joined server -2022-12-09 20:45:27.129086 + : MPF||pb-IF4rLkwp|| joined server -2022-12-09 20:50:29.183798 + : AbhishekAjay744||pb-IF4xU2EbKg==|| joined server -2022-12-09 20:52:25.574557 + : Android62198804||pb-IF4LU29TXQ==|| joined server -2022-12-09 20:52:46.662823 + : MPF||pb-IF4rLkwp|| joined server -2022-12-09 20:52:51.684695 + : SneakyHerc||pb-IF4gVBFZEg==|| joined server -2022-12-09 20:53:58.974323 + : MPF||pb-IF4rLkwp|| joined server -2022-12-09 20:54:34.084744 + : moulieesh||pb-JiNJARFaUENHXV5IFENTU1BDEERZT1hA|| joined server -2022-12-09 21:07:17.664229 + : sena3456||pb-IF4-B20v|| joined server -2022-12-09 21:27:53.063863 + : Android60037649||pb-IF4sUloeVA==|| joined server -2022-12-09 21:47:19.757298 + : EquivocalSponsor18||pb-IF4-U0U4PA==|| joined server -2022-12-09 21:50:27.378995 + : Android63506113||pb-IF5TU0ZTLA==|| joined server -2022-12-09 21:56:48.666199 + : J0kerr666||pb-LV4TA0FSAEsWCVxdGE9YVUhGFhJZWlkWV1QNDlIRRlwJExNFWVNV|| joined server -2022-12-09 22:01:13.545315 + : Anthropolo||pb-IF4-U2suMg==|| joined server -2022-12-09 22:14:48.361245 + : MilesAboveYou||pb-IF4CUhM5AQ==|| joined server -2022-12-09 22:35:04.648451 + : Dragonkozhi||pb-IF4nUhQNAw==|| joined server -2022-12-09 22:42:58.395039 + : CreativeNo||pb-IF42U0UnFw==|| joined server -2022-12-09 22:49:16.655775 + : Android50155441||pb-IF4lVXYNKw==|| joined server -2022-12-09 23:07:23.441161 + : Android63415043||pb-IF4eU0MjFw==|| joined server -2022-12-09 23:09:26.845542 + : Enigmatic7||pb-IF4iU0lSFQ==|| joined server -2022-12-09 23:46:26.185897 + : HeartSteal||pb-IF49KBEY|| joined server -2022-12-09 23:52:36.531733 + : Incredible||pb-IF5QU3A4Kg==|| joined server -2022-12-10 00:25:13.466163 + : Android63981158||pb-IF41U08kKQ==|| joined server -2022-12-10 00:52:31.965515 + : Android51304540||pb-IF4zVUQEUw==|| joined server -2022-12-10 00:57:30.966036 + : ApproximateJunior47||pb-IF4iU3kMDA==|| joined server -2022-12-10 00:57:52.039079 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-10 01:02:21.216876 + : OblongSong||pb-IF4DU0QALA==|| joined server -2022-12-10 01:13:47.805504 + : CongestedPackaging20||pb-IF4TU0UaFg==|| joined server -2022-12-10 01:20:55.693601 + : GSPgagan96||pb-IF5TU3IBNA==|| joined server -2022-12-10 01:50:29.287103 + : WirelessNe||pb-IF4nUkteVA==|| joined server -2022-12-10 01:53:55.534796 + : ProdigalSc||pb-IF4SU1A6Hw==|| joined server -2022-12-10 01:56:13.996575 + : ArkaGaming||pb-IF4iUkxdPw==|| joined server -2022-12-10 02:00:39.966651 + : Android64022591||pb-IF4GU1FaMA==|| joined server -2022-12-10 02:05:16.844619 + : MeekCompla||pb-IF4cVVckEg==|| joined server -2022-12-10 02:05:19.849286 + : ImKala||pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL|| joined server -2022-12-10 02:16:04.924994 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-10 02:23:06.363858 + : Android63974449||pb-IF4dU08pEQ==|| joined server -2022-12-10 02:23:07.364939 + : SorrowfulV||pb-IF4NU0YOVQ==|| joined server -2022-12-10 02:26:19.756758 + : archielya||pb-IF4IU04cUQ==|| joined server -2022-12-10 02:26:40.823937 + : Aditya7kin||pb-IF4mU1BZKg==|| joined server -2022-12-10 02:26:48.853990 + : Android63974449||pb-IF4dU08pEQ==|| joined server -2022-12-10 02:28:56.349057 + : Android64022775||pb-IF4tU1AZNg==|| joined server -2022-12-10 02:29:01.367301 + : BLOODFRAUD||pb-IF4xUxA7Vg==|| joined server -2022-12-10 02:29:29.468872 + : Sudhan||pb-IF4SU0gDIg==|| joined server -2022-12-10 02:33:27.222246 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-10 02:35:31.044348 + : Thor1622||pb-IF5XVRIcLg==|| joined server -2022-12-10 02:35:46.106178 + : FafnirDono||pb-IF4SU1AzLA==|| joined server -2022-12-10 02:36:21.234741 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-10 02:40:31.121864 + : LargeTornado46516||pb-IF5QU3oCEg==|| joined server -2022-12-10 02:41:10.231406 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-10 02:47:40.526064 + : Android47666694||pb-IF4UVWYeIw==|| joined server -2022-12-10 02:51:25.318095 + : Yuhaan2013||pb-IF4dUmkdMg==|| joined server -2022-12-10 02:52:48.663351 + : ROYALBI292||pb-IF5SUlYgEQ==|| joined server -2022-12-10 02:54:05.489095 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-10 02:55:51.879190 + : THANATOS6660||pb-IF4sVFkqEw==|| joined server -2022-12-10 02:57:24.174245 + : AADITH7792||pb-IF5VU08bAQ==|| joined server -2022-12-10 02:58:10.326285 + : AADITH7792||pb-IF5VU08bAQ==|| joined server -2022-12-10 02:58:21.362974 + : Android64002728||pb-IF4DU1AnCw==|| joined server -2022-12-10 02:58:56.450874 + : Frumptio19||pb-IF4nU3ZaUg==|| joined server -2022-12-10 02:59:03.468927 + : ExcusableS||pb-IF5XUnEsKQ==|| joined server -2022-12-10 02:59:45.636839 + : Android64011984||pb-IF4NU08-Lw==|| joined server -2022-12-10 03:05:00.226823 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-10 03:07:32.392009 + : ANKITOP94||pb-IF4DVXYFVw==|| joined server -2022-12-10 03:08:23.932981 + : ArguableDisregard12||pb-IF4nU0MaVw==|| joined server -2022-12-10 03:10:14.351763 + : MPF||pb-IF4rLkwp|| joined server -2022-12-10 03:10:32.410360 + : Daddy69s||pb-IF42VVASUQ==|| joined server -2022-12-10 03:11:19.567443 + : JKS4302||pb-IF4rU3omIw==|| joined server -2022-12-10 03:11:27.608702 + : MonthlyRepayment23||pb-IF4iU2sIPw==|| joined server -2022-12-10 03:12:01.718392 + : DynasticR4||pb-IF4NU08DUg==|| joined server -2022-12-10 03:12:07.743114 + : VeiledSmel||pb-IF4cUxcvVw==|| joined server -2022-12-10 03:13:18.018783 + : SurrealAde||pb-IF5TU0opMA==|| joined server -2022-12-10 03:14:18.259143 + : vinothmptc||pb-IF4LU28SJA==|| joined server -2022-12-10 03:16:12.015740 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-10 03:16:59.640841 + : InherentPaper48||pb-IF4pU0whJA==|| joined server -2022-12-10 03:17:37.771403 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-10 03:18:48.546273 + : Android63796554||pb-IF4NU0ojAA==|| joined server -2022-12-10 03:19:15.483690 + : MonthlyRepayment23||pb-IF4iU2sIPw==|| joined server -2022-12-10 03:20:38.816450 + : Luice204||pb-IF4mV2QoMA==|| joined server -2022-12-10 03:20:53.905005 + : Aga||pb-IF4GUkQHLA==|| joined server -2022-12-10 03:22:33.253385 + : ArguableDisregard12||pb-IF4nU0MaVw==|| joined server -2022-12-10 03:23:34.460194 + : RabidFight||pb-IF5RU3UzJA==|| joined server -2022-12-10 03:23:55.552680 + : Android63934668||pb-IF4vU04bIw==|| joined server -2022-12-10 03:24:00.568932 + : Gibberish101||pb-IF4jNEwC|| joined server -2022-12-10 03:27:26.584781 + : Android60482791||pb-IF4iUxUqUA==|| joined server -2022-12-10 03:28:04.729830 + : Aga||pb-IF4GUkQHLA==|| joined server -2022-12-10 03:29:03.933083 + : Android62675084||pb-IF4tU3VTMg==|| joined server -2022-12-10 03:32:46.410687 + : LumpyCone3||pb-IF4IUlURVA==|| joined server -2022-12-10 03:35:57.131651 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-10 03:36:02.150399 + : BeefySandw||pb-IF4nVXlTEw==|| joined server -2022-12-10 03:37:26.960404 + : rolex0411||pb-IF4mU08pLQ==|| joined server -2022-12-10 03:37:34.980987 + : abinash219||pb-IF4lVxQuHQ==|| joined server -2022-12-10 03:40:49.102032 + : nikitamale||pb-IF5RU1EtMg==|| joined server -2022-12-10 03:41:27.407578 + : VidhyanFal||pb-IF4LUk0FCQ==|| joined server -2022-12-10 03:42:04.526439 + : VIJAYLAZAR||pb-IF4AUkcMDA==|| joined server -2022-12-10 03:42:13.553791 + : nikitamale||pb-IF5RU1EtMg==|| joined server -2022-12-10 03:43:31.842224 + : Android63654282||pb-IF4oU0YYBg==|| joined server -2022-12-10 03:43:33.844371 + : Android63864384||pb-IF5dU049KA==|| joined server -2022-12-10 03:44:19.750352 + : FranticFever44||pb-IF5RU3AjNA==|| joined server -2022-12-10 03:44:23.771538 + : Android60482791||pb-IF4iUxUqUA==|| joined server -2022-12-10 03:45:27.967688 + : TenderExactness54||pb-IF48U1AmNg==|| joined server -2022-12-10 03:46:06.105744 + : Android63902876||pb-IF4DU00TEw==|| joined server -2022-12-10 03:46:14.136562 + : Attitudeboy997||pb-IF4dVFgCLg==|| joined server -2022-12-10 03:46:24.174098 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-10 03:48:32.613334 + : FiveOracle||pb-IF4xVUw7Mw==|| joined server -2022-12-10 03:49:36.907970 + : Ambidextr8||pb-IF4RUlFSCA==|| joined server -2022-12-10 03:49:47.947183 + : TricksterH||pb-IF40U0UcFQ==|| joined server -2022-12-10 03:51:46.375677 + : PC771083||pb-IF4eU006Dw==|| joined server -2022-12-10 03:52:25.521978 + : Android59326848||pb-IF4JUlMRUw==|| joined server -2022-12-10 03:53:15.708460 + : Android62339210||pb-IF4sU3A7KA==|| joined server -2022-12-10 03:53:41.793774 + : RohanK||pb-IF4dCnou|| joined server -2022-12-10 03:53:44.806909 + : LogicalDuck1803||pb-IF4lVG8eBA==|| joined server -2022-12-10 03:54:56.058118 + : blacksopugaming||pb-IF4BU0EiEw==|| joined server -2022-12-10 03:55:32.214592 + : Stochasti4||pb-IF4NUmY5Nw==|| joined server -2022-12-10 03:56:22.120601 + : SpiritualA||pb-IF5SU2MfCw==|| joined server -2022-12-10 03:57:53.292086 + : blacksopugaming||pb-IF4BU0EiEw==|| joined server -2022-12-10 03:58:33.437864 + : walkeshank||pb-IF4RXhlZ|| joined server -2022-12-10 03:59:32.783245 + : Stochasti4||pb-IF4NUmY5Nw==|| joined server -2022-12-10 03:59:54.851747 + : Bryanfurythemaster||pb-IF4WUhk7LA==|| joined server -2022-12-10 04:02:03.559130 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-10 04:03:02.960660 + : BeefySandw||pb-IF4nVXlTEw==|| joined server -2022-12-10 04:03:24.046405 + : bBoyy1||pb-IF5XU0YhKg==|| joined server -2022-12-10 04:05:20.431346 + : VIJAYLAZAR||pb-IF4AUkcMDA==|| joined server -2022-12-10 04:06:41.707008 + : ProminentT||pb-IF5VU1IGEg==|| joined server -2022-12-10 04:07:38.912109 + : praneshbhat14051998||pb-IF4BV1U9LA==|| joined server -2022-12-10 04:08:33.084989 + : Sagaramin12345||pb-JiNJARFeUkZGXVhBEUdSU1RGEkJXTlRH|| joined server -2022-12-10 04:08:38.102129 + : scriptjai||pb-IF4hVVQaLQ==|| joined server -2022-12-10 04:09:06.210944 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-10 04:10:35.506867 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-10 04:11:36.743904 + : Android57432788||pb-IF4rUno-FQ==|| joined server -2022-12-10 04:13:25.346818 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-10 04:13:26.352097 + : ExcitedStar15905||pb-IF4tU0gKKw==|| joined server -2022-12-10 04:13:35.370799 + : Android61865845||pb-IF4UU2w4Fg==|| joined server -2022-12-10 04:13:44.424806 + : ExcitedStar15905||pb-IF4tU0gKKw==|| joined server -2022-12-10 04:14:30.602179 + : crazyk153||pb-IF4OUkQdFA==|| joined server -2022-12-10 04:14:32.606173 + : Attitudeboy997||pb-IF4dVFgCLg==|| joined server -2022-12-10 04:15:38.819661 + : ynsjc||pb-IF4WUhATMw==|| joined server -2022-12-10 04:16:34.192124 + : Karthick||pb-IF4PVE4cMg==|| joined server -2022-12-10 04:16:42.222642 + : Imposter08||pb-IF5WUxAJHw==|| joined server -2022-12-10 04:17:53.464465 + : RAGExLUINO||pb-IF5SUkwMAg==|| joined server -2022-12-10 04:18:08.521571 + : FranticFever44||pb-IF5RU3AjNA==|| joined server -2022-12-10 04:18:15.551516 + : MoveableReminder36||pb-IF4iUkghEQ==|| joined server -2022-12-10 04:18:27.588106 + : NoName71228f||pb-IF4LU0sqMA==|| joined server -2022-12-10 04:18:41.045413 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-10 04:18:41.048271 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-10 04:18:44.048141 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-10 04:19:37.243329 + : BigCharity||pb-IF4eU0INLA==|| joined server -2022-12-10 04:19:53.316152 + : BlestSpy34||pb-IF4qUkJdFA==|| joined server -2022-12-10 04:20:17.419867 + : Android62668144||pb-IF4MU2sFBw==|| joined server -2022-12-10 04:20:31.465263 + : VIJAYLAZAR||pb-IF4AUkcMDA==|| joined server -2022-12-10 04:21:46.718363 + : FranticFever44||pb-IF5RU3AjNA==|| joined server -2022-12-10 04:22:03.787910 + : JKS4302||pb-IF4rU3omIw==|| joined server -2022-12-10 04:22:37.925573 + : DRAGONGENE||pb-IF4AUmwgLg==|| joined server -2022-12-10 04:23:14.053960 + : CapitalSim||pb-IF4nU24qEA==|| joined server -2022-12-10 04:24:24.296200 + : Eppachen7||pb-IF4jU3omHA==|| joined server -2022-12-10 04:25:49.575604 + : Android55430347||pb-IF4OUmc5Vg==|| joined server -2022-12-10 04:26:13.649499 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-10 04:26:46.774746 + : StableCohe||pb-IF4rU24hJA==|| joined server -2022-12-10 04:27:00.823230 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-10 04:29:42.362687 + : FlippantC2||pb-IF4NKnRS|| joined server -2022-12-10 04:29:51.388081 + : LoudSword9||pb-IF4GV2okJg==|| joined server -2022-12-10 04:29:53.392758 + : MedicalGla||pb-IF4SU0wSEA==|| joined server -2022-12-10 04:33:32.150123 + : AKAMUDDIN||pb-IF4sU04gBw==|| joined server -2022-12-10 04:34:44.389310 + : BigCharity||pb-IF4eU0INLA==|| joined server -2022-12-10 04:35:19.505952 + : Android61192137||pb-IF5XU2YGMw==|| joined server -2022-12-10 04:37:24.953730 + : SaltyCavalier56587||pb-IF5QVRYqIg==|| joined server -2022-12-10 04:37:55.076656 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-10 04:38:13.126269 + : alsoMV||pb-IF48U0kmIw==|| joined server -2022-12-10 04:38:47.242133 + : Evolutio10||pb-IF4AU0cZCA==|| joined server -2022-12-10 04:40:16.560649 + : Kishoreravik||pb-IF4CU0gMAA==|| joined server -2022-12-10 04:41:22.792006 + : DONOVANJIM||pb-IF5cUmQSAA==|| joined server -2022-12-10 04:42:08.971027 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-10 04:42:46.089958 + : GroaningGl||pb-IF4-Uk4mEA==|| joined server -2022-12-10 04:44:39.473351 + : Attitudeboy997||pb-IF4dVFgCLg==|| joined server -2022-12-10 04:45:45.737916 + : Jeffin||pb-IF4AU00uAg==|| joined server -2022-12-10 04:46:45.959324 + : Agente||pb-IF4DVVYgKg==|| joined server -2022-12-10 04:47:06.016135 + : BLOODFRAUD||pb-IF4xUxA7Vg==|| joined server -2022-12-10 04:48:08.265067 + : WrongEnvy21||pb-IF4dUxhTLA==|| joined server -2022-12-10 04:48:15.290041 + : ExcitableA||pb-IF4rUngmDQ==|| joined server -2022-12-10 04:49:41.680710 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-10 04:50:33.892307 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-10 04:53:00.454596 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-10 04:54:09.676492 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-10 04:54:22.734869 + : Understoo2||pb-IF4yU0QOIw==|| joined server -2022-12-10 04:54:38.782555 + : Suraj7178||pb-JiNJARFdVUNAWV9IEUdTVFFAEkldQ1VG|| joined server -2022-12-10 04:56:31.179130 + : CandidFrag||pb-JiNJARBdVENFW19IFUBYUFZLF0ddRVdA|| joined server -2022-12-10 04:57:15.307089 + : ooDIVYASHI||pb-IF4CU04_Ng==|| joined server -2022-12-10 04:58:23.539718 + : Suraj7178||pb-JiNJARFdVUNAWV9IEUdTVFFAEkldQ1VG|| joined server -2022-12-10 05:05:36.139776 + : PertinentMisery53||pb-IF4xU29cMQ==|| joined server -2022-12-10 05:06:16.278740 + : Android51304540||pb-IF4zVUQEUw==|| joined server -2022-12-10 05:06:35.356483 + : GrandWande||pb-IF4hBBBc|| joined server -2022-12-10 05:06:46.387756 + : Sanath2512||pb-IF4rU0UcFw==|| joined server -2022-12-10 05:07:17.499845 + : FollowingH||pb-IF5TU1EzAg==|| joined server -2022-12-10 05:08:11.703243 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-10 05:09:29.962855 + : THEDRAGONH||pb-IF4dVUNTFw==|| joined server -2022-12-10 05:09:39.998196 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-10 05:11:03.293023 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-10 05:11:03.293376 + : VISAKANTHEGAMER12||pb-IF4JVXlYCQ==|| joined server -2022-12-10 05:11:37.421650 + : MadBOY5523||pb-LV4FUkUPAxNEVV8RRk5WBVVEEA==|| joined server -2022-12-10 05:11:43.445484 + : ramviswana||pb-IF5WUlcMCg==|| joined server -2022-12-10 05:11:47.459598 + : Stochasti4||pb-IF4NUmY5Nw==|| joined server -2022-12-10 05:12:10.522383 + : Conformab8||pb-IF4rUkFSLw==|| joined server -2022-12-10 05:12:52.658079 + : Thanuthegamer18||pb-IF4LU0Y5Mg==|| joined server -2022-12-10 05:13:40.833316 + : Paradigma7||pb-IF4dUlMiDw==|| joined server -2022-12-10 05:14:02.922463 + : IckyGauntl||pb-IF5SU3AxDA==|| joined server -2022-12-10 05:14:27.005376 + : ROLEXsir1111||pb-IF4RU24pIA==|| joined server -2022-12-10 05:14:28.013096 + : NarutoUsum||pb-IF4jVGoTCg==|| joined server -2022-12-10 05:16:09.364045 + : FearlessC4||pb-IF4eU0s9Pw==|| joined server -2022-12-10 05:16:51.590079 + : Southeast5||pb-IF4sU3o5Eg==|| joined server -2022-12-10 05:17:34.758479 + : Heredita12||pb-IF42U1AsAw==|| joined server -2022-12-10 05:18:53.004552 + : Sairaj1999||pb-JiNJARFZUUpEWF5JFkdTXVdEEEVdQ1ZA|| joined server -2022-12-10 05:19:32.141997 + : Dotphoenix||pb-IF4FV00SDA==|| joined server -2022-12-10 05:20:32.350098 + : TheoreticPit28||pb-IF4OVU4aUw==|| joined server -2022-12-10 05:20:38.368652 + : TheoreticPit28||pb-IF4OVU4aUw==|| joined server -2022-12-10 05:20:55.422661 + : IckyGauntl||pb-IF5SU3AxDA==|| joined server -2022-12-10 05:21:22.536388 + : vipinGTran||pb-IF4zU1AyHA==|| joined server -2022-12-10 05:21:23.538969 + : FiveOracle||pb-IF4xVUw7Mw==|| joined server -2022-12-10 05:21:27.547348 + : Conformab8||pb-IF4rUkFSLw==|| joined server -2022-12-10 05:22:03.663928 + : fredrickplayz||pb-IF5cUxIdPw==|| joined server -2022-12-10 05:22:15.700285 + : TheoreticPit28||pb-IF4OVU4aUw==|| joined server -2022-12-10 05:23:18.904238 + : FurtherEco||pb-IF4UVXMeDw==|| joined server -2022-12-10 05:23:22.918107 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-10 05:25:01.245226 + : Android63217110||pb-IF4oU3oZNg==|| joined server -2022-12-10 05:25:21.306555 + : Thambi765||pb-IF5dU05SIQ==|| joined server -2022-12-10 05:25:38.389924 + : Android63917918||pb-IF4eU04lLg==|| joined server -2022-12-10 05:27:22.724741 + : MightierEditor19||pb-IF4GUlgKHA==|| joined server -2022-12-10 05:27:26.730469 + : niranjan1149||pb-IF4-U09YMw==|| joined server -2022-12-10 05:28:26.936392 + : prajwalSah||pb-IF42U3o8JA==|| joined server -2022-12-10 05:29:45.204941 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-10 05:30:09.290809 + : ThirstyNin||pb-JiNJVxFTV0JDVV9BGE5YV11DFEleR1hA|| joined server -2022-12-10 05:31:33.615033 + : PointyCombat73807||pb-IF4iUxgTXQ==|| joined server -2022-12-10 05:31:52.695029 + : mrpainless||pb-IF4PIFQ9|| joined server -2022-12-10 05:32:21.805233 + : CorrelativeArt41||pb-IF4QVVBTDg==|| joined server -2022-12-10 05:33:03.966827 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-10 05:33:27.033793 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-10 05:33:53.124103 + : Android61419527||pb-IF5RU2kCCw==|| joined server -2022-12-10 05:34:39.292864 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-10 05:34:45.320238 + : HealthyUsage24||pb-IF4GUhQDVA==|| joined server -2022-12-10 05:34:49.492937 + : Niral||pb-IF5UU09YMg==|| joined server -2022-12-10 05:35:07.561673 + : VISAKANTHEGAMER12||pb-IF4JVXlYCQ==|| joined server -2022-12-10 05:35:16.598259 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-10 05:36:24.872511 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-10 05:37:03.008527 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-10 05:37:11.037242 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-10 05:37:21.076258 + : Thanuthegamer18||pb-IF4LU0Y5Mg==|| joined server -2022-12-10 05:37:43.183412 + : Thanuthegamer18||pb-IF4LU0Y5Mg==|| joined server -2022-12-10 05:38:49.426349 + : StatedCrea||pb-IF4MU08pUA==|| joined server -2022-12-10 05:39:27.570571 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-10 05:40:29.834736 + : APAKAVIBO7||pb-IF4xUlEpCg==|| joined server -2022-12-10 05:42:27.299580 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-10 05:43:29.552479 + : WiccanBlac||pb-IF4nU1AcVQ==|| joined server -2022-12-10 05:44:18.723871 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-10 05:46:30.202403 + : Android63428296||pb-IF4CU0MiVA==|| joined server -2022-12-10 05:47:23.384031 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-10 05:47:52.495207 + : IronLeopard87891||pb-IF43U0otUA==|| joined server -2022-12-10 05:48:37.659364 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-10 05:49:22.804722 + : MidhunVM7560849188||pb-IF4TVxY5LA==|| joined server -2022-12-10 05:50:08.971495 + : MysticPlateau54||pb-IF4DU3kuHA==|| joined server -2022-12-10 05:50:41.087678 + : HawtEngineer70740||pb-IF4cVxgoVg==|| joined server -2022-12-10 05:51:16.228098 + : YoungPart4||pb-IF4LUlocBA==|| joined server -2022-12-10 05:51:39.318269 + : YoungPart4||pb-IF4LUlocBA==|| joined server -2022-12-10 05:52:05.384705 + : CustomaryKey46336||pb-IF4sUxItMw==|| joined server -2022-12-10 05:52:38.490950 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-10 05:53:24.673467 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-10 05:53:55.815927 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-10 05:54:15.910688 + : NormativeI||pb-IF4LU0gkLg==|| joined server -2022-12-10 05:54:55.083712 + : HawtEngineer70740||pb-IF4cVxgoVg==|| joined server -2022-12-10 05:55:32.221770 + : UnchartedDonor12||pb-IF4XU0ZZCA==|| joined server -2022-12-10 05:56:28.509662 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-10 05:57:05.613198 + : BanefulConstancy1924||pb-IF4jU00eMA==|| joined server -2022-12-10 05:57:22.693027 + : Android61972599||pb-IF4JU2wRDg==|| joined server -2022-12-10 05:58:23.022185 + : WorseLives||pb-IF5cUxUBUg==|| joined server -2022-12-10 05:59:02.189595 + : Aashikanna||pb-IF4jU0cIPA==|| joined server -2022-12-10 06:00:04.402458 + : Maxversion||pb-IF5UU2wYBg==|| joined server -2022-12-10 06:00:09.422318 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-10 06:00:13.438642 + : yashwanthgamer8||pb-IF4eUkgqKA==|| joined server -2022-12-10 06:00:21.475438 + : Android56841061||pb-IF4DUnQeIA==|| joined server -2022-12-10 06:01:13.680864 + : Android60845640||pb-IF41UxkjMg==|| joined server -2022-12-10 06:01:19.699630 + : UsefulRove||pb-IF4xVRI9Mg==|| joined server -2022-12-10 06:01:26.727101 + : Android61032540||pb-IF4HU2IkHQ==|| joined server -2022-12-10 06:02:05.883372 + : Roxere||pb-IF4FFBYp|| joined server -2022-12-10 06:02:20.945556 + : LordTamboKing||pb-IF4NU0sbEA==|| joined server -2022-12-10 06:04:36.458321 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-10 06:05:25.633242 + : Mirzaclegs||pb-IF4AUxYpIw==|| joined server -2022-12-10 06:09:03.548147 + : FearlessC4||pb-IF4eU0s9Pw==|| joined server -2022-12-10 06:10:14.825338 + : NoName47568f||pb-IF4nVVgxUQ==|| joined server -2022-12-10 06:10:57.993505 + : rohithsai0||pb-IF4mUnE_Lg==|| joined server -2022-12-10 06:11:03.010213 + : ZADKIEL||pb-IF4wU00DEA==|| joined server -2022-12-10 06:14:05.662815 + : BafflingSt||pb-IF4VU1A6Ug==|| joined server -2022-12-10 06:14:32.760229 + : AryanSolanki997||pb-IF4DHEki|| joined server -2022-12-10 06:15:13.907410 + : NeedlessMonkey47856||pb-IF4OVGhcIw==|| joined server -2022-12-10 06:17:03.491618 + : ArchitViradiya4747||pb-IF4qVRc9Bg==|| joined server -2022-12-10 06:19:30.255950 + : PC237612||pb-IF4sAGcj|| joined server -2022-12-10 06:20:12.391534 + : BronzeMagician96867||pb-IF4sBGMS|| joined server -2022-12-10 06:20:48.503574 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 06:21:42.513376 + : PC237612||pb-IF4sAGcj|| joined server -2022-12-10 06:21:42.513839 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 06:21:44.523340 + : AryanSolanki997||pb-IF4DHEki|| joined server -2022-12-10 06:22:06.612990 + : Android60845640||pb-IF41UxkjMg==|| joined server -2022-12-10 06:22:34.713470 + : CranialCo2||pb-IF5XU1IbFA==|| joined server -2022-12-10 06:23:14.851716 + : RankHoplit||pb-IF4wUlk7PQ==|| joined server -2022-12-10 06:23:26.885959 + : HeaviestAw||pb-IF4wU00cMg==|| joined server -2022-12-10 06:23:48.973761 + : Android60845640||pb-IF41UxkjMg==|| joined server -2022-12-10 06:24:08.781852 + : AryanSolanki997||pb-IF4DHEki|| joined server -2022-12-10 06:24:08.782535 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 06:24:10.802589 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-10 06:24:11.805380 + : Android60845640||pb-IF41UxkjMg==|| joined server -2022-12-10 06:25:22.837357 + : Android60845640||pb-IF41UxkjMg==|| joined server -2022-12-10 06:25:25.845074 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-10 06:25:28.856369 + : FearlessC4||pb-IF4eU0s9Pw==|| joined server -2022-12-10 06:25:33.869459 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-10 06:25:58.966068 + : Unlucky0011||pb-IF4wVXo6Jg==|| joined server -2022-12-10 06:26:27.060170 + : Botanical9||pb-IF4tUlkRDw==|| joined server -2022-12-10 06:27:43.352276 + : StirCrazyReception23||pb-IF4gUnFaCw==|| joined server -2022-12-10 06:30:15.910143 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-10 06:30:21.935822 + : chugambaran||pb-IF42U2wGFw==|| joined server -2022-12-10 06:32:07.295636 + : UniqueScandal132||pb-IF40U0EFPQ==|| joined server -2022-12-10 06:32:14.321893 + : UniqueScandal132||pb-IF40U0EFPQ==|| joined server -2022-12-10 06:33:01.501540 + : Android57232901||pb-IF4SUng4EA==|| joined server -2022-12-10 06:33:29.593450 + : Android57232901||pb-IF4SUng4EA==|| joined server -2022-12-10 06:33:34.617357 + : Antibioti8||pb-IF4VVFIREg==|| joined server -2022-12-10 06:33:39.637065 + : AttendantC||pb-IF5RUk8NFQ==|| joined server -2022-12-10 06:33:50.679896 + : Contract19||pb-IF4cU0lfXA==|| joined server -2022-12-10 06:34:11.740930 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-10 06:34:25.794142 + : Insatiab39||pb-IF4tU1AfUQ==|| joined server -2022-12-10 06:34:45.854636 + : RankHoplit||pb-IF4wUlk7PQ==|| joined server -2022-12-10 06:36:05.168902 + : CrystalThrone2000||pb-IF5TLEwR|| joined server -2022-12-10 06:36:13.184193 + : Distingui7||pb-IF4tU1AqVQ==|| joined server -2022-12-10 06:36:25.211858 + : FearlessC4||pb-IF4eU0s9Pw==|| joined server -2022-12-10 06:37:46.515804 + : RankHoplit||pb-IF4wUlk7PQ==|| joined server -2022-12-10 06:39:13.821619 + : shahirgami||pb-IF4tU2kSJA==|| joined server -2022-12-10 06:39:16.831975 + : MagicalOak12||pb-IF4FVEMYDA==|| joined server -2022-12-10 06:39:34.886119 + : Thundre||pb-IF4SU08RKA==|| joined server -2022-12-10 06:39:51.952756 + : OutrightPeriphery10||pb-IF4HVFFTUg==|| joined server -2022-12-10 06:39:55.965069 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-10 06:40:18.034262 + : Contract19||pb-IF4cU0lfXA==|| joined server -2022-12-10 06:40:31.092578 + : AttendantC||pb-IF5RUk8NFQ==|| joined server -2022-12-10 06:41:09.221811 + : AttendantC||pb-IF5RUk8NFQ==|| joined server -2022-12-10 06:41:19.267141 + : Contract19||pb-IF4cU0lfXA==|| joined server -2022-12-10 06:41:36.323348 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 06:43:23.661529 + : hacker1199||pb-IF4BU0cDNg==|| joined server -2022-12-10 06:43:27.682107 + : OddChangeling78301||pb-IF4yVWQ4Jg==|| joined server -2022-12-10 06:43:36.724418 + : ArunTamizh||pb-IF4UU2IIFg==|| joined server -2022-12-10 06:43:38.729137 + : FranticAlliance82034||pb-IF4wU0EzEA==|| joined server -2022-12-10 06:43:43.748416 + : PlusCradle||pb-IF4-U0gfIg==|| joined server -2022-12-10 06:44:29.938296 + : jonathansanthosh||pb-IF4-U0kNVQ==|| joined server -2022-12-10 06:44:35.954871 + : Android60817780||pb-IF4dU20zLw==|| joined server -2022-12-10 06:45:16.076180 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-10 06:45:28.119155 + : LionAlpha7||pb-IF4UVGg8KQ==|| joined server -2022-12-10 06:45:32.134156 + : shrey19654||pb-IF4QVGYMKg==|| joined server -2022-12-10 06:45:47.190228 + : LIONHUNTER||pb-IF4eVGc7Cw==|| joined server -2022-12-10 06:46:03.246728 + : GlidingWealth47||pb-IF4qU04aBg==|| joined server -2022-12-10 06:46:06.253259 + : CleanerRes||pb-IF5QU0s6XQ==|| joined server -2022-12-10 06:47:16.505631 + : PrimitiveCoercion25||pb-IF4qU3BcNw==|| joined server -2022-12-10 06:47:34.573645 + : chugambaran||pb-IF42U2wGFw==|| joined server -2022-12-10 06:47:35.576522 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-10 06:50:55.304149 + : DYNAME3032||pb-IF5WVRMhIQ==|| joined server -2022-12-10 06:51:05.337498 + : Following3||pb-IF5XU0ZbBA==|| joined server -2022-12-10 06:51:18.387109 + : Android63796554||pb-IF4NU0ojAA==|| joined server -2022-12-10 06:51:26.407598 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-10 06:51:48.488122 + : Android63970828||pb-IF4pU08BVA==|| joined server -2022-12-10 06:52:12.580209 + : SizedDeale||pb-IF4HU08tNA==|| joined server -2022-12-10 06:53:11.796783 + : FearlessC4||pb-IF4eU0s9Pw==|| joined server -2022-12-10 06:53:24.842623 + : DroopyPixie214||pb-IF4-InEj|| joined server -2022-12-10 06:53:34.884788 + : Android62717978||pb-IF4dU3QSKw==|| joined server -2022-12-10 06:53:37.905057 + : unicornsho||pb-IF4tU1AqFA==|| joined server -2022-12-10 06:53:40.908297 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-10 06:54:10.988259 + : Android63936343||pb-IF5RU1EiLA==|| joined server -2022-12-10 06:54:45.120483 + : SilentSalt1900||pb-IF4zU00GCg==|| joined server -2022-12-10 06:55:11.219802 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-10 06:55:51.346638 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-10 06:56:04.395669 + : HeinousPop||pb-IF4XUxIhNA==|| joined server -2022-12-10 06:56:10.423574 + : HeinousPop||pb-IF4XUxIhNA==|| joined server -2022-12-10 06:56:19.465280 + : Following3||pb-IF5XU0ZbBA==|| joined server -2022-12-10 06:56:59.606403 + : HeinousPop||pb-IF4XUxIhNA==|| joined server -2022-12-10 06:57:30.737436 + : UnmarkedC4||pb-IF4IUxUpCA==|| joined server -2022-12-10 06:58:19.921333 + : Martinluthal||pb-IF5WUno7PQ==|| joined server -2022-12-10 06:58:46.022990 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-10 06:58:49.034033 + : UnbornObse||pb-IF4LU3IhCg==|| joined server -2022-12-10 07:00:36.455257 + : Belligeren||pb-IF4-U0QSIg==|| joined server -2022-12-10 07:01:25.654659 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-10 07:01:28.664988 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-10 07:01:53.763447 + : ROHIT7100000||pb-IF4gU0U4UA==|| joined server -2022-12-10 07:02:36.934609 + : Android54993642||pb-IF5cUmUlDA==|| joined server -2022-12-10 07:03:13.084355 + : mrpainless||pb-IF4PIFQ9|| joined server -2022-12-10 07:03:26.136156 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-10 07:03:57.249595 + : FURY10TG||pb-IF4HU3cRBw==|| joined server -2022-12-10 07:04:09.306242 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-10 07:04:15.317643 + : MRKHINDIGA||pb-IF4OU04GBg==|| joined server -2022-12-10 07:05:11.523513 + : Android62717978||pb-IF4dU3QSKw==|| joined server -2022-12-10 07:09:58.610037 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-10 07:12:42.211268 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-10 07:13:35.398788 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-10 07:13:41.416531 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-10 07:17:48.393205 + : Android63970828||pb-IF4pU08BVA==|| joined server -2022-12-10 07:17:54.411476 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-10 07:18:37.577678 + : Android63965238||pb-IF4LU04ZPw==|| joined server -2022-12-10 07:19:34.810561 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-10 07:20:06.918080 + : CivilizedT||pb-IF4wVFcZPw==|| joined server -2022-12-10 07:20:22.978696 + : Evocativ11||pb-IF4zUxYiVw==|| joined server -2022-12-10 07:21:50.247536 + : ᑈ̬̬̬ᏓᎻͥᎾᏁͣᏥͫᐳ||pb-IF4DVVYgKg==|| joined server -2022-12-10 07:22:28.373344 + : Android60817780||pb-IF4dU20zLw==|| joined server -2022-12-10 07:22:39.418254 + : Rambunct20||pb-JiNJARBeUUJHVFlBEENSU1ZAE0FZT1RG|| joined server -2022-12-10 07:22:59.507291 + : smrrtii||pb-IF4NVVcmNw==|| joined server -2022-12-10 07:23:39.653042 + : LargeTornado46516||pb-IF5QU3oCEg==|| joined server -2022-12-10 07:24:09.756989 + : HeartyTime||pb-IF4qU1AADg==|| joined server -2022-12-10 07:24:12.767571 + : Limyixiang||pb-IF5QU1AhKg==|| joined server -2022-12-10 07:24:47.917256 + : TUJABAAP00||pb-IF4TUxEoKg==|| joined server -2022-12-10 07:25:14.009259 + : ALAMINMIZI||pb-IF4cU0NdDw==|| joined server -2022-12-10 07:25:52.156774 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-10 07:26:02.188237 + : phane540||pb-IF5VVFYgLg==|| joined server -2022-12-10 07:26:20.263097 + : ForemostSpouse42||pb-IF4vU3g5LA==|| joined server -2022-12-10 07:26:52.370528 + : BeefySandw||pb-IF4nVXlTEw==|| joined server -2022-12-10 07:28:23.693391 + : Rambunct20||pb-JiNJARBeUUJHVFlBEENSU1ZAE0FZT1RG|| joined server -2022-12-10 07:28:29.720467 + : UnmarkedC4||pb-IF4IUxUpCA==|| joined server -2022-12-10 07:30:43.177898 + : bisht4189||pb-IF4SEHAl|| joined server -2022-12-10 07:32:45.599600 + : Android63728390||pb-IF4HU0gSFw==|| joined server -2022-12-10 07:33:10.679525 + : Android63217110||pb-IF4oU3oZNg==|| joined server -2022-12-10 07:35:05.111521 + : Android63329965||pb-IF4eU0InAQ==|| joined server -2022-12-10 07:35:24.186373 + : Android63329965||pb-IF4eU0InAQ==|| joined server -2022-12-10 07:36:17.435873 + : pawonpawon||pb-IF4RVUEFJA==|| joined server -2022-12-10 07:36:26.469417 + : AceShip907||pb-IF4FVHQfMA==|| joined server -2022-12-10 07:37:21.653930 + : Android63864384||pb-IF5dU049KA==|| joined server -2022-12-10 07:38:18.852968 + : kartikeyku||pb-IF4MVUszXA==|| joined server -2022-12-10 07:39:14.014671 + : FakeLeo493||pb-IF4vU1AAPQ==|| joined server -2022-12-10 07:41:23.498590 + : Android63767506||pb-IF5SU0seMQ==|| joined server -2022-12-10 07:41:28.511322 + : dhanushmes||pb-IF5VU0UzJg==|| joined server -2022-12-10 07:41:44.573498 + : InsuredTra||pb-IF4UU1AxKQ==|| joined server -2022-12-10 07:41:53.596254 + : ChampionStar7526||pb-JiNJARFaXUdIVF9DEEBVV1NFEkFbRVJA|| joined server -2022-12-10 07:41:56.609432 + : KrJoy007||pb-IF4TVUFdVg==|| joined server -2022-12-10 07:42:24.695223 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-10 07:43:09.873455 + : Android63349899||pb-IF49U0JZFw==|| joined server -2022-12-10 07:43:44.041358 + : Android63907345||pb-IF4uU00xVQ==|| joined server -2022-12-10 07:46:13.561923 + : MilderUpri||pb-IF4uU0sRXA==|| joined server -2022-12-10 07:46:18.576598 + : MilderUpri||pb-IF4uU0sRXA==|| joined server -2022-12-10 07:46:25.596182 + : RoyalProph||pb-IF5TV2MzCA==|| joined server -2022-12-10 07:46:27.602378 + : NitricBet41||pb-IF4gUmMPXQ==|| joined server -2022-12-10 07:47:03.742758 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-10 07:47:30.834189 + : Android62764913||pb-IF4sU3VSMg==|| joined server -2022-12-10 07:49:13.182759 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-10 07:50:27.452799 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-10 07:50:32.473739 + : Android62717978||pb-IF4dU3QSKw==|| joined server -2022-12-10 07:50:42.505326 + : UnmarkedC4||pb-IF4IUxUpCA==|| joined server -2022-12-10 07:51:18.638453 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-10 07:51:38.712952 + : Android55396601||pb-IF4PUmdfCA==|| joined server -2022-12-10 07:52:25.909251 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-10 07:52:42.971688 + : PerpetualF||pb-IF5VU0kDUg==|| joined server -2022-12-10 07:53:12.087236 + : Android62717978||pb-IF4dU3QSKw==|| joined server -2022-12-10 07:53:17.096101 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-10 07:53:19.097642 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-10 07:53:23.116128 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-10 07:53:36.157887 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-10 07:53:53.214875 + : Android63349899||pb-IF49U0JZFw==|| joined server -2022-12-10 07:54:23.300425 + : Android63648345||pb-IF5QU0kzAQ==|| joined server -2022-12-10 07:54:45.375754 + : AKHIL7771||pb-IF4eU0UPJg==|| joined server -2022-12-10 07:55:01.442464 + : Android62717978||pb-IF4dU3QSKw==|| joined server -2022-12-10 07:55:48.614187 + : GrimCheck3||pb-IF4HU1ADMg==|| joined server -2022-12-10 07:56:03.682095 + : vinothmptc||pb-IF4LU28SJA==|| joined server -2022-12-10 07:56:44.863828 + : FearlessC4||pb-IF4eU0s9Pw==|| joined server -2022-12-10 07:58:44.293850 + : ThinnerInc||pb-IF4FUmwqFg==|| joined server -2022-12-10 08:00:20.684988 + : MilderUpri||pb-IF4uU0sRXA==|| joined server -2022-12-10 08:00:57.776238 + : mohitlohar||pb-IF4pVUIvFg==|| joined server -2022-12-10 08:03:12.223626 + : SilentSalt1900||pb-IF4zU00GCg==|| joined server -2022-12-10 08:03:35.288079 + : TypicalShe||pb-IF4zU2keCA==|| joined server -2022-12-10 08:04:07.379781 + : SilentSalt1900||pb-IF4zU00GCg==|| joined server -2022-12-10 08:04:38.485171 + : Android63288902||pb-IF41U0ElPA==|| joined server -2022-12-10 08:05:39.660892 + : HumanVictory4||pb-IF4LVEclAQ==|| joined server -2022-12-10 08:06:08.760947 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-10 08:07:17.981278 + : ARJUNVV288||pb-JiNJARFbXUtFXV9BGURWV1ZFGUBZQ1BA|| joined server -2022-12-10 08:08:01.143849 + : MetalRepor||pb-IF4pU0lYLg==|| joined server -2022-12-10 08:08:33.273778 + : Android57379873||pb-IF4mUnkKMA==|| joined server -2022-12-10 08:08:56.371936 + : Android63746469||pb-IF4CU0k8Mw==|| joined server -2022-12-10 08:09:30.486392 + : UniqueScandal132||pb-IF40U0EFPQ==|| joined server -2022-12-10 08:09:47.552643 + : Android62717978||pb-IF4dU3QSKw==|| joined server -2022-12-10 08:09:54.586649 + : masterwiz0||pb-IF5WVRJeEQ==|| joined server -2022-12-10 08:10:07.627556 + : Android63970828||pb-IF4pU08BVA==|| joined server -2022-12-10 08:12:26.106456 + : GøLinùx77||pb-IF4eUlFSJA==|| joined server -2022-12-10 08:12:36.137226 + : Android57587756||pb-IF4HUkEfJA==|| joined server -2022-12-10 08:12:39.143821 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-10 08:12:51.175129 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-10 08:13:02.216949 + : optimusmeg||pb-IF4iVRRaDQ==|| joined server -2022-12-10 08:13:19.270882 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-10 08:13:46.376284 + : Attackin32||pb-IF5WU1I9LA==|| joined server -2022-12-10 08:14:06.479623 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-10 08:14:08.480725 + : NastyProph||pb-IF4LU3dZBw==|| joined server -2022-12-10 08:14:16.496433 + : Niral||pb-IF5UU09YMg==|| joined server -2022-12-10 08:14:48.615760 + : GøLinùx77||pb-IF4eUlFSJA==|| joined server -2022-12-10 08:15:00.670754 + : RHSBOB||pb-IF4JU3MxUA==|| joined server -2022-12-10 08:15:51.809060 + : FamedHair40||pb-IF4AU2czAQ==|| joined server -2022-12-10 08:15:58.826787 + : GøLinùx77||pb-IF4eUlFSJA==|| joined server -2022-12-10 08:16:14.896436 + : Hellacio15||pb-JiNJARBYXEFDXVxIFEJWU1VAFEdZRVdF|| joined server -2022-12-10 08:16:33.967560 + : Android63569622||pb-IF4yU0QZAQ==|| joined server -2022-12-10 08:18:25.364530 + : FrozenPanda1001||pb-IF4zU1AyIg==|| joined server -2022-12-10 08:18:57.481054 + : shiva3723s||pb-IF4oU1AyNA==|| joined server -2022-12-10 08:19:05.503589 + : Android60963643||pb-IF5WU2M4AQ==|| joined server -2022-12-10 08:19:20.555900 + : ARJUNVV288||pb-JiNJARFbXUtFXV9BGURWV1ZFGUBZQ1BA|| joined server -2022-12-10 08:19:51.659359 + : CleanerRes||pb-IF5QU0s6XQ==|| joined server -2022-12-10 08:19:54.669552 + : CrystalThrone2000||pb-IF5TLEwR|| joined server -2022-12-10 08:20:09.744635 + : RHSBOB||pb-IF4JU3MxUA==|| joined server -2022-12-10 08:20:47.887493 + : Android52586904||pb-IF5UVVJYIQ==|| joined server -2022-12-10 08:20:50.894441 + : ADI61834||pb-IF4pVXMNEw==|| joined server -2022-12-10 08:21:24.019009 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-10 08:21:27.036970 + : Unnoticed9||pb-IF5SU0gcHw==|| joined server -2022-12-10 08:21:36.074243 + : SalientCle||pb-IF4BUksqHA==|| joined server -2022-12-10 08:23:41.506289 + : hulk151120||pb-IF4RVRETAg==|| joined server -2022-12-10 08:26:30.096038 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-10 08:27:09.256193 + : Android57587756||pb-IF4HUkEfJA==|| joined server -2022-12-10 08:27:43.393430 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-10 08:27:47.409282 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-10 08:28:04.476405 + : InsipidTank38||pb-IF5VUk0IAA==|| joined server -2022-12-10 08:29:08.696959 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-10 08:29:22.759215 + : PeekingWrestler1234||pb-IF4TJxQH|| joined server -2022-12-10 08:29:41.814245 + : SoundFarm2||pb-IF4eVWU5HQ==|| joined server -2022-12-10 08:29:43.818107 + : vinoth192001||pb-IF4OVFUSMQ==|| joined server -2022-12-10 08:30:38.025939 + : Sumanth386||pb-IF5TUm4DNg==|| joined server -2022-12-10 08:31:18.146605 + : PC326574||pb-IF4PVUgdKQ==|| joined server -2022-12-10 08:32:10.312335 + : NeedlessMonkey47856||pb-IF4OVGhcIw==|| joined server -2022-12-10 08:32:27.366242 + : Aboutoblow||pb-IF49U1AsEg==|| joined server -2022-12-10 08:32:37.420545 + : CovertMess||pb-IF4KU0waKQ==|| joined server -2022-12-10 08:32:59.497545 + : CharredTRex16831||pb-IF4wU0oaBA==|| joined server -2022-12-10 08:33:18.561391 + : NeedlessMonkey47856||pb-IF4OVGhcIw==|| joined server -2022-12-10 08:33:22.573103 + : TransparentPardon55||pb-IF41U3omNQ==|| joined server -2022-12-10 08:33:45.664597 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 08:34:36.858629 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-10 08:35:18.015721 + : TransparentPardon55||pb-IF41U3omNQ==|| joined server -2022-12-10 08:35:41.077367 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-10 08:37:03.389192 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-10 08:37:12.426273 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 08:37:55.584554 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 08:38:14.649535 + : Android63180331||pb-IF4CU3oxLA==|| joined server -2022-12-10 08:38:47.766991 + : TBHFEVER||pb-IF4lVWYjIw==|| joined server -2022-12-10 08:39:04.815074 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-10 08:39:23.885139 + : HumblerMare46||pb-IF5VU0dfJg==|| joined server -2022-12-10 08:39:45.971497 + : RepulsiveO||pb-IF4dU0scKQ==|| joined server -2022-12-10 08:40:04.052559 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-10 08:40:31.159010 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-10 08:40:49.219169 + : ImperiaL||pb-IF4yU08tFg==|| joined server -2022-12-10 08:41:14.303372 + : farhathu12||pb-IF40U0sKFA==|| joined server -2022-12-10 08:42:15.498966 + : GøLinùx77||pb-IF4eUlFSJA==|| joined server -2022-12-10 08:42:50.645962 + : Android63977212||pb-IF43U08_NQ==|| joined server -2022-12-10 08:43:05.713191 + : HumblerMare46||pb-IF5VU0dfJg==|| joined server -2022-12-10 08:43:32.823776 + : GR8INDIANGAMER||pb-IF4MKW0g|| joined server -2022-12-10 08:43:34.831748 + : LopingHedge31||pb-IF41VUtYHw==|| joined server -2022-12-10 08:43:40.851373 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-10 08:43:49.882767 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 08:44:17.979583 + : ImperiaL||pb-IF4yU08tFg==|| joined server -2022-12-10 08:44:28.022180 + : Android64022775||pb-IF4tU1AZNg==|| joined server -2022-12-10 08:44:48.097099 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-10 08:45:03.157530 + : GøLinùx77||pb-IF4eUlFSJA==|| joined server -2022-12-10 08:45:53.321238 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-10 08:46:23.435158 + : TheoreticPit28||pb-IF4OVU4aUw==|| joined server -2022-12-10 08:47:26.684861 + : BrainySchool16||pb-IF5dU08zFg==|| joined server -2022-12-10 08:47:44.757751 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-10 08:47:59.792738 + : Evolutio10||pb-IF4AU0cZCA==|| joined server -2022-12-10 08:49:26.109934 + : TransparentPardon55||pb-IF41U3omNQ==|| joined server -2022-12-10 08:49:28.120816 + : Affectio24||pb-JiNJARBTVkJGWltBEkVRUF1AEENXT1NE|| joined server -2022-12-10 08:49:55.213538 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-10 08:50:22.310062 + : TejGamerNt||pb-IF4oUxAGPQ==|| joined server -2022-12-10 08:50:52.418569 + : àswiñ||pb-IF4hU00EKw==|| joined server -2022-12-10 08:51:21.523108 + : Android57866676||pb-IF4wU2cFEw==|| joined server -2022-12-10 08:51:48.616530 + : Dotphoenix||pb-IF4FV00SDA==|| joined server -2022-12-10 08:52:30.775686 + : Dotphoenix||pb-IF4FV00SDA==|| joined server -2022-12-10 08:52:37.792302 + : Dotphoenix||pb-IF4FV00SDA==|| joined server -2022-12-10 08:52:59.854309 + : HatefulAnn||pb-IF4PUkogDg==|| joined server -2022-12-10 08:53:22.908030 + : சைதமா||pb-IF43U08sLw==|| joined server -2022-12-10 08:53:40.974555 + : unstoppabl||pb-IF4TU0o6Aw==|| joined server -2022-12-10 08:54:49.207254 + : AceShip907||pb-IF4FVHQfMA==|| joined server -2022-12-10 08:55:29.334517 + : UnevenSpac||pb-IF4cU0ZfNw==|| joined server -2022-12-10 08:56:00.434428 + : Android63759055||pb-IF4iU0kkFw==|| joined server -2022-12-10 08:56:21.513405 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-10 08:58:21.925624 + : ShootingBu||pb-IF5RJ2sR|| joined server -2022-12-10 08:58:37.978361 + : UncertainSeargeant47||pb-IF5WUxgoDw==|| joined server -2022-12-10 08:58:43.000109 + : Android63907345||pb-IF4uU00xVQ==|| joined server -2022-12-10 08:58:56.044423 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-10 08:59:07.096729 + : RHSBOB||pb-IF4JU3MxUA==|| joined server -2022-12-10 08:59:33.181738 + : PuzzledPow||pb-IF49V2U8NA==|| joined server -2022-12-10 08:59:43.227144 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 09:00:14.347370 + : Prescrip10||pb-IF4SU08_KA==|| joined server -2022-12-10 09:00:38.449497 + : Android63767506||pb-IF5SU0seMQ==|| joined server -2022-12-10 09:00:41.463550 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-10 09:01:19.622553 + : Tractable2||pb-IF5UVVMgIA==|| joined server -2022-12-10 09:01:42.719378 + : TimorousCo||pb-IF4xU3MxVw==|| joined server -2022-12-10 09:01:58.789489 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-10 09:02:13.835297 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-10 09:02:41.928551 + : rockster0701||pb-IF4HV1RbKA==|| joined server -2022-12-10 09:02:48.949160 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-10 09:02:54.961901 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-10 09:03:01.992676 + : SystemicAlbum16||pb-IF4nUmhfKA==|| joined server -2022-12-10 09:03:09.017999 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-10 09:04:36.282123 + : UncertainSeargeant47||pb-IF5WUxgoDw==|| joined server -2022-12-10 09:04:45.316226 + : TusharRawa||pb-IF4cUlIHFQ==|| joined server -2022-12-10 09:06:27.656575 + : WHTUSHAR||pb-IF4CU3MOFg==|| joined server -2022-12-10 09:07:22.853788 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 09:07:30.877035 + : GøLinùx77||pb-IF4eUlFSJA==|| joined server -2022-12-10 09:08:00.975356 + : RAGExLUINO||pb-IF5SUkwMAg==|| joined server -2022-12-10 09:08:16.040025 + : FavoriteEs||pb-IF4AU00sEw==|| joined server -2022-12-10 09:08:39.104095 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-10 09:09:24.274726 + : Android62362658||pb-IF4gU3EoVg==|| joined server -2022-12-10 09:09:57.397936 + : LORDHanzoStar||pb-IF4qUkQ9CA==|| joined server -2022-12-10 09:10:29.508708 + : GøLinùx77||pb-IF4eUlFSJA==|| joined server -2022-12-10 09:10:48.564552 + : RHSBOB||pb-IF4JU3MxUA==|| joined server -2022-12-10 09:11:14.657787 + : Android55556523||pb-IF4uUmgjCQ==|| joined server -2022-12-10 09:12:40.970420 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-10 09:12:46.990535 + : PseudoAttendance18||pb-IF4VVWsGIA==|| joined server -2022-12-10 09:13:02.030796 + : saidarshan||pb-IF4GVW4qKQ==|| joined server -2022-12-10 09:13:20.095743 + : AmberCircus43||pb-IF4IUnEZHQ==|| joined server -2022-12-10 09:14:03.257090 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-10 09:14:16.298917 + : GOTYA||pb-IF4eVEchNQ==|| joined server -2022-12-10 09:14:22.313274 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-10 09:16:29.820495 + : EarlierPub||pb-IF4PVXUYAw==|| joined server -2022-12-10 09:16:59.953614 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-10 09:17:00.959320 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-10 09:21:03.830225 + : Android63903274||pb-IF4nU05fNQ==|| joined server -2022-12-10 09:21:15.855811 + : RippedBuck||pb-IF4lVXMTVg==|| joined server -2022-12-10 09:22:30.069083 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-10 09:22:40.105426 + : NeedlessMonkey47856||pb-IF4OVGhcIw==|| joined server -2022-12-10 09:25:42.743946 + : ChargingBl||pb-IF4RAUwY|| joined server -2022-12-10 09:25:53.777417 + : DkAbdi09||pb-IF5VU2g7CA==|| joined server -2022-12-10 09:26:21.863408 + : NoName55203f||pb-IF4CVBYJCA==|| joined server -2022-12-10 09:26:54.985280 + : Android64011367||pb-IF4eU1AzUw==|| joined server -2022-12-10 09:28:13.268249 + : FrozenNano||pb-JiNJARBdUUtDWVdJF0dVVVBHEkBaQFlA|| joined server -2022-12-10 09:28:54.407673 + : CrushedWol||pb-IF4DV2ItCQ==|| joined server -2022-12-10 09:29:21.496580 + : UndisguisedManiac20||pb-IF41U04SEA==|| joined server -2022-12-10 09:30:06.643692 + : naresh2003||pb-JiNJARBcUEpCX1dFEEdZUVBBE0BeQVNG|| joined server -2022-12-10 09:30:56.775690 + : Android63329965||pb-IF4eU0InAQ==|| joined server -2022-12-10 09:30:58.781819 + : DazedHippy||pb-IF5QU00DXQ==|| joined server -2022-12-10 09:31:45.968368 + : jcar914||pb-JiNJARFZV0BBVV5AGUNRUVZGFkJXRlJL|| joined server -2022-12-10 09:33:16.278317 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-10 09:34:54.601434 + : MassiveCough58||pb-IF4-U0soEg==|| joined server -2022-12-10 09:35:39.762491 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 09:35:46.791649 + : MassiveCough58||pb-IF4-U0soEg==|| joined server -2022-12-10 09:36:19.915390 + : itsjustine||pb-IF5XU08jLA==|| joined server -2022-12-10 09:36:28.940330 + : Unsuitabl4||pb-IF5RU0cNFA==|| joined server -2022-12-10 09:36:39.977555 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-10 09:36:54.009559 + : NoName11978||pb-IF4LU0ZTBw==|| joined server -2022-12-10 09:38:06.215652 + : Unrequit17||pb-IF4IU1AtCQ==|| joined server -2022-12-10 09:39:31.540949 + : KimonoChen||pb-IF4iU0g-Ug==|| joined server -2022-12-10 09:39:48.601221 + : AyuShhhhh||pb-IF5XVXYjEQ==|| joined server -2022-12-10 09:40:43.830339 + : Honorabl36||pb-IF4mU0kaEA==|| joined server -2022-12-10 09:41:02.891346 + : AmberCircus43||pb-IF4IUnEZHQ==|| joined server -2022-12-10 09:41:13.923674 + : Immeasura8||pb-IF5VUlYjNw==|| joined server -2022-12-10 09:42:05.090437 + : Gregariou8||pb-IF4UU0wFIA==|| joined server -2022-12-10 09:42:26.161339 + : Gregariou8||pb-IF4UU0wFIA==|| joined server -2022-12-10 09:43:49.470886 + : Immeasura8||pb-IF5VUlYjNw==|| joined server -2022-12-10 09:43:52.480032 + : AmberCircus43||pb-IF4IUnEZHQ==|| joined server -2022-12-10 09:43:58.499063 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-10 09:44:02.511617 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 09:44:33.613049 + : POWERXDHRUV||pb-IF4GD2Yd|| joined server -2022-12-10 09:44:36.620445 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-10 09:45:12.711600 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-10 09:45:16.721382 + : LandCoder||pb-IF5RU04CBg==|| joined server -2022-12-10 09:45:31.779065 + : Ridham2011||pb-IF4VVWcvBg==|| joined server -2022-12-10 09:45:40.820163 + : LusciousBunny93188||pb-IF4zUmMgAw==|| joined server -2022-12-10 09:46:35.983922 + : muniVinay9||pb-IF4pU3AGVw==|| joined server -2022-12-10 09:46:58.048765 + : AbnormalTe||pb-IF4qU0cBLw==|| joined server -2022-12-10 09:47:06.075189 + : Android61022597||pb-IF4oU2EbKg==|| joined server -2022-12-10 09:48:19.348526 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-10 09:48:35.402354 + : Android61975304||pb-IF4xU2waHw==|| joined server -2022-12-10 09:48:47.433159 + : Android61032540||pb-IF4HU2IkHQ==|| joined server -2022-12-10 09:50:37.770759 + : shazan9950||pb-IF5QVFRdIQ==|| joined server -2022-12-10 09:50:41.776568 + : thkaurji78||pb-IF4dU2waBg==|| joined server -2022-12-10 09:51:20.888212 + : EarlierPub||pb-IF4PVXUYAw==|| joined server -2022-12-10 09:51:22.895105 + : Gregariou8||pb-IF4UU0wFIA==|| joined server -2022-12-10 09:51:37.941491 + : Gregariou8||pb-IF4UU0wFIA==|| joined server -2022-12-10 09:51:48.974094 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-10 09:52:22.103549 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 09:52:53.235008 + : Android61032540||pb-IF4HU2IkHQ==|| joined server -2022-12-10 09:54:45.609601 + : VidhyanFal||pb-IF4LUk0FCQ==|| joined server -2022-12-10 09:55:36.809141 + : karnaakarnaa||pb-IF4BU0IBLg==|| joined server -2022-12-10 09:56:27.998422 + : ImperiaL||pb-IF4yU08tFg==|| joined server -2022-12-10 09:57:05.134094 + : TypicalColonel69394||pb-IF4GUkYzDA==|| joined server -2022-12-10 09:57:19.188405 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-10 09:59:04.642432 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-10 09:59:24.702652 + : TypicalColonel69394||pb-IF4GUkYzDA==|| joined server -2022-12-10 09:59:43.766131 + : Apologet14||pb-IF4pU1A4Dg==|| joined server -2022-12-10 10:00:21.903150 + : Tractable2||pb-IF5UVVMgIA==|| joined server -2022-12-10 10:02:25.374822 + : Android62517441||pb-IF4RU3M9BA==|| joined server -2022-12-10 10:02:38.419541 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-10 10:03:11.554921 + : RegionalProwess20||pb-IF4eUlEnJA==|| joined server -2022-12-10 10:03:36.643580 + : bijodicarp||pb-IF4TVWEnIg==|| joined server -2022-12-10 10:04:30.840728 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-10 10:06:58.370530 + : MockingRat||pb-IF4eU3gCHA==|| joined server -2022-12-10 10:07:07.391606 + : traumaalph||pb-IF4BUlc4Mg==|| joined server -2022-12-10 10:07:20.437970 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-10 10:07:28.473188 + : sabim2013||pb-IF43U20aAg==|| joined server -2022-12-10 10:07:43.527076 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-10 10:08:36.693114 + : Android61350223||pb-IF5TU2g6AQ==|| joined server -2022-12-10 10:10:04.031657 + : HourlyTreaty30||pb-IF4WU04ENQ==|| joined server -2022-12-10 10:12:29.482326 + : Android59962294||pb-IF4cUloHDg==|| joined server -2022-12-10 10:13:34.735607 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-10 10:14:44.997314 + : Android45452286||pb-IF40VREoKw==|| joined server -2022-12-10 10:14:48.009324 + : VR227839||pb-IF4oVXc_Vw==|| joined server -2022-12-10 10:14:52.018096 + : hacker1199||pb-IF4BU0cDNg==|| joined server -2022-12-10 10:17:50.633421 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-10 10:17:56.659156 + : djankit857||pb-IF4iVFBbDA==|| joined server -2022-12-10 10:18:06.704860 + : Devilmindrit23||pb-IF4BUncsLw==|| joined server -2022-12-10 10:19:37.053948 + : GOJOSATURO77||pb-IF4lU00yCQ==|| joined server -2022-12-10 10:19:47.090009 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-10 10:20:23.215166 + : FascinatingLocus26||pb-IF5VUlYjEA==|| joined server -2022-12-10 10:20:29.242201 + : Hero678||pb-IF4jU0YGIA==|| joined server -2022-12-10 10:21:07.381673 + : StrawHatLu||pb-IF4zUkcaLQ==|| joined server -2022-12-10 10:22:26.617112 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 10:23:26.799464 + : AbnishKumar123||pb-IF4rVUIBCg==|| joined server -2022-12-10 10:23:52.890976 + : Android39226561||pb-JiNJARBaV0VGVF9AFEFVUVRFEkVZRVZB|| joined server -2022-12-10 10:23:55.904432 + : InflexibleEminence22||pb-IF4xVRIZCg==|| joined server -2022-12-10 10:24:38.111126 + : Dotphoenix||pb-IF4FV00SDA==|| joined server -2022-12-10 10:24:53.163089 + : GoDFather6||pb-IF4pVHAlKw==|| joined server -2022-12-10 10:25:27.278819 + : BrazenJoke||pb-IF4PV2IyAw==|| joined server -2022-12-10 10:26:27.467964 + : UsedTrio30||pb-IF4DU3MiAQ==|| joined server -2022-12-10 10:28:19.874204 + : Rajjadhav9||pb-IF41U0Y5PA==|| joined server -2022-12-10 10:29:04.020264 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-10 10:29:22.103728 + : Android58520918||pb-IF5SUk0zDA==|| joined server -2022-12-10 10:29:52.207652 + : Android57712054||pb-IF49UkNZNw==|| joined server -2022-12-10 10:30:18.301826 + : Android56739875||pb-IF4lVXdbJg==|| joined server -2022-12-10 10:31:17.464760 + : AcuteSnow24||pb-IF4vVXIaFQ==|| joined server -2022-12-10 10:31:27.502944 + : Android63017111||pb-IF4gU3gnUQ==|| joined server -2022-12-10 10:31:42.555273 + : phiNix||pb-IF4cU0xZMw==|| joined server -2022-12-10 10:32:17.674249 + : PuzzledBea||pb-IF4zUkReLg==|| joined server -2022-12-10 10:33:12.873927 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-10 10:33:18.892633 + : BushyInstr||pb-IF4WU0QRIA==|| joined server -2022-12-10 10:33:34.942995 + : Android63017111||pb-IF4gU3gnUQ==|| joined server -2022-12-10 10:33:42.976855 + : TremendousCreek8||pb-IF4vUxkKDg==|| joined server -2022-12-10 10:34:05.070556 + : LustrousC3||pb-IF4oUnVaNg==|| joined server -2022-12-10 10:34:18.116043 + : Adarsh12K||pb-IF4QVREhAA==|| joined server -2022-12-10 10:34:27.154918 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-10 10:34:31.168644 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-10 10:34:55.264616 + : ArguableDisregard12||pb-IF4nU0MaVw==|| joined server -2022-12-10 10:36:08.517896 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-10 10:36:25.581161 + : EarlierPub||pb-IF4PVXUYAw==|| joined server -2022-12-10 10:36:30.604852 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-10 10:37:42.865299 + : Deathless8||pb-IF5XU1IyEg==|| joined server -2022-12-10 10:40:32.498758 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-10 10:41:20.656967 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2022-12-10 10:43:02.021981 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-10 10:47:07.924844 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 10:50:05.545074 + : Android63498243||pb-IF4BU0M-HQ==|| joined server -2022-12-10 10:52:37.084532 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-10 10:53:00.152512 + : UnnamedSovereignty48||pb-IF4HU0YYJA==|| joined server -2022-12-10 10:55:22.633519 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-10 10:55:27.652361 + : AbhishekAjay744||pb-IF4xU2EbKg==|| joined server -2022-12-10 10:55:42.702482 + : MinimalTradition52||pb-IF4FU00_PA==|| joined server -2022-12-10 10:56:25.848303 + : MRAStrungV||pb-IF4sVXQuDw==|| joined server -2022-12-10 10:56:41.913560 + : Fancydinne||pb-IF4rVUcbVQ==|| joined server -2022-12-10 10:57:05.989963 + : WoollySkirt59||pb-IF4JU0wMJg==|| joined server -2022-12-10 10:58:18.241781 + : H4c3rk||pb-IF4SU1AOUA==|| joined server -2022-12-10 10:58:21.248759 + : ArguableDisregard12||pb-IF4nU0MaVw==|| joined server -2022-12-10 10:58:30.285956 + : ArguableDisregard12||pb-IF4nU0MaVw==|| joined server -2022-12-10 10:58:35.310575 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-10 10:58:56.375116 + : Ykzone18||pb-IF4KUxQ9Kw==|| joined server -2022-12-10 10:59:08.404058 + : IndigoOnion70058||pb-IF4sCXI9|| joined server -2022-12-10 10:59:17.445708 + : IndigoOnion70058||pb-IF4sCXI9|| joined server -2022-12-10 10:59:32.503297 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-10 11:01:05.796731 + : sagar88822||pb-IF4vVUNfEA==|| joined server -2022-12-10 11:03:01.212870 + : MADDY1321||pb-IF4CU0QpCA==|| joined server -2022-12-10 11:03:19.283237 + : TremendousCreek8||pb-IF4vUxkKDg==|| joined server -2022-12-10 11:03:30.321127 + : MADDY1321||pb-IF4CU0QpCA==|| joined server -2022-12-10 11:04:46.571577 + : Harshrawso||pb-IF4gU085Bw==|| joined server -2022-12-10 11:06:20.964553 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-10 11:07:34.220846 + : Expansive4||pb-IF4IU08nHA==|| joined server -2022-12-10 11:07:54.293480 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-10 11:10:12.774614 + : Android57432788||pb-IF4rUno-FQ==|| joined server -2022-12-10 11:10:44.877832 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-10 11:11:03.955356 + : Darkelixr1||pb-IF4IU088NA==|| joined server -2022-12-10 11:12:35.257564 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-10 11:13:20.417510 + : kumargchet||pb-IF4FU28fVg==|| joined server -2022-12-10 11:13:25.438978 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-10 11:14:03.582903 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-10 11:16:23.059196 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-10 11:16:33.093309 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-10 11:16:42.115108 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-10 11:16:55.160851 + : PC773967||pb-IF4vU1A9EA==|| joined server -2022-12-10 11:18:38.546470 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-10 11:20:34.971202 + : RattlingKestrel49176||pb-IF4lU0xTVQ==|| joined server -2022-12-10 11:21:08.095100 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 11:22:45.425742 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-10 11:23:10.530464 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-10 11:24:16.774857 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-10 11:24:33.842807 + : Rajjadhav9||pb-IF41U0Y5PA==|| joined server -2022-12-10 11:24:38.864164 + : Rajjadhav9||pb-IF41U0Y5PA==|| joined server -2022-12-10 11:25:54.137342 + : BuffChoice||pb-IF4yU3c9CQ==|| joined server -2022-12-10 11:26:11.179134 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-10 11:26:22.210512 + : Dearrson||pb-IF5cU1I_Aw==|| joined server -2022-12-10 11:27:23.428333 + : Rajjadhav9||pb-IF41U0Y5PA==|| joined server -2022-12-10 11:27:58.546292 + : pUnmitigatedStigma42||pb-IF5cU04oAA==|| joined server -2022-12-10 11:28:04.572733 + : Android63841062||pb-IF41U0seMg==|| joined server -2022-12-10 11:29:28.839197 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-10 11:31:26.271757 + : myselion1||pb-IF4HU08IMw==|| joined server -2022-12-10 11:32:34.531091 + : Opportunit||pb-IF4FVUMSCQ==|| joined server -2022-12-10 11:33:31.709131 + : MinimalTradition52||pb-IF4FU00_PA==|| joined server -2022-12-10 11:34:42.999614 + : MaskedWolf20||pb-IF4wU05THQ==|| joined server -2022-12-10 11:35:57.286334 + : bisojit123||pb-IF5VU2k8Mw==|| joined server -2022-12-10 11:39:44.185511 + : AbnishKumar123||pb-IF4rVUIBCg==|| joined server -2022-12-10 11:40:03.265698 + : TheAvenge2||pb-IF41VFQ6JA==|| joined server -2022-12-10 11:40:12.287097 + : ConcisePermanence26||pb-IF4uVVASEw==|| joined server -2022-12-10 11:40:53.420574 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-10 11:41:02.458454 + : AiranChanc||pb-IF4pU0sRFw==|| joined server -2022-12-10 11:41:51.636237 + : romanreig2||pb-IF4vU0cxJA==|| joined server -2022-12-10 11:43:24.986077 + : AblestDoctrine10||pb-IF5RUxUdDQ==|| joined server -2022-12-10 11:43:42.045368 + : Android39028682||pb-IF4LVGwlEA==|| joined server -2022-12-10 11:43:55.103349 + : SalilAseri||pb-JiNJARFfUENBVFlBFENTXVNKFUNdQ1RG|| joined server -2022-12-10 11:44:00.120787 + : Badmosh778||pb-IF4oU0UAUQ==|| joined server -2022-12-10 11:44:47.325119 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-10 11:46:26.663742 + : PC769564||pb-IF4XU0xeFw==|| joined server -2022-12-10 11:46:28.673442 + : OffDusk3||pb-IF49UxM9XQ==|| joined server -2022-12-10 11:46:46.735425 + : OffDusk3||pb-IF49UxM9XQ==|| joined server -2022-12-10 11:47:06.809755 + : Android39028682||pb-IF4LVGwlEA==|| joined server -2022-12-10 11:47:23.878754 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-10 11:48:11.015479 + : LoathsomeR||pb-IF49U04vXA==|| joined server -2022-12-10 11:48:33.084482 + : Android52124606||pb-IF4NVUoCCg==|| joined server -2022-12-10 11:48:57.157894 + : SoftJustif||pb-IF4TU0M4JA==|| joined server -2022-12-10 11:49:04.181573 + : PureRight4||pb-IF4oU01bVA==|| joined server -2022-12-10 11:49:18.233543 + : OffDusk3||pb-IF49UxM9XQ==|| joined server -2022-12-10 11:50:20.497326 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-10 11:50:23.511354 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 11:50:34.549799 + : mrsaifuuuu||pb-IF4WU05cNA==|| joined server -2022-12-10 11:51:04.642006 + : SolventDou||pb-IF4yU1AkCw==|| joined server -2022-12-10 11:53:24.138923 + : bomdsqard||pb-IF5WVEwIKA==|| joined server -2022-12-10 11:53:35.177337 + : Android63946527||pb-IF4dU3FeVg==|| joined server -2022-12-10 11:53:48.207686 + : Opportunit||pb-IF4FVUMSCQ==|| joined server -2022-12-10 11:54:23.332553 + : Android62426851||pb-IF4tU3IkKg==|| joined server -2022-12-10 11:54:25.343580 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-10 11:57:05.899726 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-10 11:57:35.988052 + : TricksterH||pb-IF40U0UcFQ==|| joined server -2022-12-10 11:57:46.025423 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-10 11:58:51.269623 + : Hacktast26||pb-IF4nUnEHVg==|| joined server -2022-12-10 11:59:52.463454 + : Sujalkasar||pb-IF41VWFcEg==|| joined server -2022-12-10 11:59:55.473667 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-10 12:01:06.736110 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-10 12:01:38.843411 + : TurboDefect28||pb-IF4dUk5bBg==|| joined server -2022-12-10 12:02:50.085697 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-10 12:03:42.261331 + : Apologet14||pb-IF4pU1A4Dg==|| joined server -2022-12-10 12:04:33.422240 + : Luxuriou30||pb-IF4cU1A4PA==|| joined server -2022-12-10 12:04:56.500284 + : Jerald6440||pb-IF5dVWEJMg==|| joined server -2022-12-10 12:05:25.598882 + : lautre71||pb-IF5TU1AYPA==|| joined server -2022-12-10 12:07:32.056347 + : TelegraphicTree29||pb-IF4qUkw9Pw==|| joined server -2022-12-10 12:08:49.340237 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-10 12:10:17.672427 + : Android62603660||pb-IF43U3QvVg==|| joined server -2022-12-10 12:11:52.995937 + : Android63970828||pb-IF4pU08BVA==|| joined server -2022-12-10 12:12:14.072132 + : StarStump2||pb-IF4MU00iDA==|| joined server -2022-12-10 12:13:21.303426 + : StarStump2||pb-IF4MU00iDA==|| joined server -2022-12-10 12:14:06.462560 + : Intransig2||pb-IF4cVEQgDw==|| joined server -2022-12-10 12:14:10.476409 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-10 12:14:12.488872 + : COOLPROFFE||pb-JiNJARFbXUpJXVtGFEFTVVJEEUhdRlVB|| joined server -2022-12-10 12:15:41.820194 + : DiffidentHoplite31||pb-IF4sU0wcBA==|| joined server -2022-12-10 12:16:12.928848 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-10 12:16:23.977253 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-10 12:16:34.006335 + : DiffidentHoplite31||pb-IF4sU0wcBA==|| joined server -2022-12-10 12:17:14.183331 + : Android60974634||pb-IF4rU2EZEw==|| joined server -2022-12-10 12:18:54.537390 + : shaileshgabu||pb-JiNJARBTUUtJWl1GE0FSU1NDGUJbQVNH|| joined server -2022-12-10 12:19:50.736210 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-10 12:19:54.752255 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 12:20:37.913151 + : sagar88822||pb-IF4vVUNfEA==|| joined server -2022-12-10 12:21:20.083353 + : Engrossi18||pb-IF4qVWg5MA==|| joined server -2022-12-10 12:21:24.097251 + : shaileshgabu||pb-JiNJARBTUUtJWl1GE0FSU1NDGUJbQVNH|| joined server -2022-12-10 12:22:18.314912 + : king12of34||pb-IF4vUhc8NA==|| joined server -2022-12-10 12:23:46.630194 + : shaileshgabu||pb-JiNJARBTUUtJWl1GE0FSU1NDGUJbQVNH|| joined server -2022-12-10 12:24:00.700642 + : MadBOY5523||pb-LV4FUkUPAxNEVV8RRk5WBVVEEA==|| joined server -2022-12-10 12:24:20.768736 + : WonderfulH||pb-IF4sVVgTAg==|| joined server -2022-12-10 12:25:05.912432 + : jb324gamer||pb-IF4vUhIiLw==|| joined server -2022-12-10 12:25:13.930556 + : StingingWi||pb-IF43UxUBFg==|| joined server -2022-12-10 12:26:35.192946 + : Rajjadhav9||pb-IF41U0Y5PA==|| joined server -2022-12-10 12:28:14.562481 + : TouchyFanc||pb-IF4UUxc_UQ==|| joined server -2022-12-10 12:28:20.589095 + : MAXIMUSxSH||pb-IF5TU3AYNw==|| joined server -2022-12-10 12:28:35.649180 + : Rajjadhav9||pb-IF41U0Y5PA==|| joined server -2022-12-10 12:28:44.674650 + : rahulhasan22106||pb-IF4oDRgJ|| joined server -2022-12-10 12:28:51.703755 + : Android41433412||pb-IF5dVERdFA==|| joined server -2022-12-10 12:29:53.898504 + : MNXArmy123||pb-IF4CU0xfKA==|| joined server -2022-12-10 12:30:42.048139 + : ᴿˢᏴᎡᎪƝᎠ||pb-IF4FU3UmHw==|| joined server -2022-12-10 12:31:06.151916 + : ᴿˢᏴᎡᎪƝᎠ||pb-IF4FU3UmHw==|| joined server -2022-12-10 12:31:37.255357 + : Android62958044||pb-IF49VFcGNw==|| joined server -2022-12-10 12:31:45.276854 + : Anthropolo||pb-IF4-U2suMg==|| joined server -2022-12-10 12:33:17.817184 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-10 12:33:19.820065 + : Raghav2655||pb-IF4cU2UJCA==|| joined server -2022-12-10 12:33:37.878266 + : Thunderbir||pb-IF4WLEsf|| joined server -2022-12-10 12:34:04.954628 + : DutifulQua||pb-IF4AUnATFw==|| joined server -2022-12-10 12:35:23.236376 + : Nonchalan5||pb-IF4iU3MuKw==|| joined server -2022-12-10 12:35:26.236610 + : Android55634586||pb-IF5dUmstEA==|| joined server -2022-12-10 12:36:05.355384 + : MYSTERIOR2||pb-IF4vUmtYBg==|| joined server -2022-12-10 12:36:23.412411 + : Android56903944||pb-IF4LUnVbBw==|| joined server -2022-12-10 12:36:26.419180 + : devendra12||pb-IF4WUmFcVw==|| joined server -2022-12-10 12:37:06.557216 + : ExposedEditorial36||pb-IF4AU0slNQ==|| joined server -2022-12-10 12:37:51.749355 + : MockingJac||pb-IF4LUxkRUw==|| joined server -2022-12-10 12:38:51.968706 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-10 12:39:37.152399 + : StingingWi||pb-IF43UxUBFg==|| joined server -2022-12-10 12:40:10.279162 + : PC773967||pb-IF4vU1A9EA==|| joined server -2022-12-10 12:40:23.315801 + : MYSTERIOR2||pb-IF4vUmtYBg==|| joined server -2022-12-10 12:40:32.339381 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-10 12:40:49.402898 + : Lizowsowra||pb-IF4oU0YuVg==|| joined server -2022-12-10 12:41:03.449413 + : FrozenTria||pb-IF4KU1FaVg==|| joined server -2022-12-10 12:41:22.519860 + : NIGHTFURE1000||pb-IF4AU04BKQ==|| joined server -2022-12-10 12:42:25.756771 + : Android62576681||pb-IF4RU3QoXQ==|| joined server -2022-12-10 12:42:27.770594 + : SaNtOsHKuM||pb-JiNJARBaU0tDVFpGFkJXUFFEE0FaTlhA|| joined server -2022-12-10 12:42:58.882395 + : Octagona30||pb-IF43V0YTUA==|| joined server -2022-12-10 12:43:13.944570 + : BroodingGu||pb-IF4sLXcs|| joined server -2022-12-10 12:44:16.161003 + : Android54963106||pb-IF5QUmUaXQ==|| joined server -2022-12-10 12:44:25.196532 + : SaNtOsHKuM||pb-JiNJARBaU0tDVFpGFkJXUFFEE0FaTlhA|| joined server -2022-12-10 12:45:18.377386 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-10 12:45:26.404259 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-10 12:45:56.499416 + : Android60878856||pb-IF4tUxkcFQ==|| joined server -2022-12-10 12:46:07.536823 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-10 12:46:10.546119 + : Android59978094||pb-IF5dUxEdMw==|| joined server -2022-12-10 12:47:33.858208 + : ResourcefulBear38||pb-IF4PUkdbFw==|| joined server -2022-12-10 12:47:51.907634 + : Nonchala18||pb-IF4JU1A_UQ==|| joined server -2022-12-10 12:47:52.910815 + : StingingWi||pb-IF43UxUBFg==|| joined server -2022-12-10 12:47:59.941236 + : MadBanjoPl||pb-IF5TV1o8XQ==|| joined server -2022-12-10 12:49:08.161889 + : ForemostSpouse42||pb-IF4vU3g5LA==|| joined server -2022-12-10 12:49:11.175318 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-10 12:49:20.200640 + : ExposedEditorial36||pb-IF4AU0slNQ==|| joined server -2022-12-10 12:50:31.491223 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 12:50:42.530494 + : itsjustine||pb-IF5XU08jLA==|| joined server -2022-12-10 12:50:46.542921 + : Android62371159||pb-IF4BU3EtLg==|| joined server -2022-12-10 12:51:44.760168 + : NarutoUsum||pb-IF4jVGoTCg==|| joined server -2022-12-10 12:51:47.766047 + : Bulletproofdon||pb-IF42U0VSCA==|| joined server -2022-12-10 12:51:53.802224 + : AZUKICHAN||pb-IF4GUxITEw==|| joined server -2022-12-10 12:52:18.904161 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-10 12:52:43.984175 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-10 12:53:10.065483 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-10 12:54:09.259737 + : Android59978094||pb-IF5dUxEdMw==|| joined server -2022-12-10 12:55:52.629203 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-10 12:56:44.812270 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-10 12:58:02.087786 + : itsjustine||pb-IF5XU08jLA==|| joined server -2022-12-10 12:58:22.164209 + : ArmedSeer9||pb-JiNJARBeUEJJWltJEkdXUl1CGEJeQFhG|| joined server -2022-12-10 13:03:10.243589 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-10 13:03:56.425380 + : mrpainless||pb-IF4PIFQ9|| joined server -2022-12-10 13:05:01.662216 + : Android63915834||pb-IF4tU04mKQ==|| joined server -2022-12-10 13:05:36.806918 + : Thambi765||pb-IF5dU05SIQ==|| joined server -2022-12-10 13:06:47.057500 + : Sanjithtam||pb-IF5dU0c-KA==|| joined server -2022-12-10 13:07:10.133501 + : itsjustine||pb-IF5XU08jLA==|| joined server -2022-12-10 13:08:50.507061 + : MinimalTradition52||pb-IF4FU00_PA==|| joined server -2022-12-10 13:12:24.289613 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-10 13:12:29.302653 + : Android51495626||pb-IF4WVUZfPA==|| joined server -2022-12-10 13:12:40.340529 + : Spaz1||pb-IF4DUmYmFg==|| joined server -2022-12-10 13:15:35.882425 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-10 13:15:58.941850 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-10 13:16:05.957835 + : AufaIndoKe||pb-IF4BUhADAQ==|| joined server -2022-12-10 13:16:11.979764 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-10 13:17:30.214985 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-10 13:17:55.317256 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-10 13:20:10.752337 + : AutomaticSetting35||pb-IF4PUxMjPw==|| joined server -2022-12-10 13:20:56.905432 + : EverydayEagle26||pb-IF4UU0sSDg==|| joined server -2022-12-10 13:21:56.136657 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-10 13:22:00.155203 + : Raghav2655||pb-IF4cU2UJCA==|| joined server -2022-12-10 13:25:00.779574 + : EuphoricOr||pb-IF4zVEoqXA==|| joined server -2022-12-10 13:25:37.897888 + : hariharan371||pb-IF4iU3M8EA==|| joined server -2022-12-10 13:25:52.949785 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-10 13:29:42.736689 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-10 13:29:45.744813 + : FrontPlane24||pb-IF4WVU9TLg==|| joined server -2022-12-10 13:30:05.814381 + : HeroicCard||pb-IF4nU20oFQ==|| joined server -2022-12-10 13:31:27.093586 + : hkMole38||pb-IF4GU3cFBw==|| joined server -2022-12-10 13:32:35.316959 + : FrontPlane24||pb-IF4WVU9TLg==|| joined server -2022-12-10 13:33:25.505252 + : Android57379873||pb-IF4mUnkKMA==|| joined server -2022-12-10 13:34:06.656529 + : UpbeatCeme||pb-IF4SUmwlVA==|| joined server -2022-12-10 13:34:48.781940 + : Android61785535||pb-IF4RU2snIg==|| joined server -2022-12-10 13:35:15.876665 + : hkMole38||pb-IF4GU3cFBw==|| joined server -2022-12-10 13:35:41.973922 + : PC773967||pb-IF4vU1A9EA==|| joined server -2022-12-10 13:36:13.077929 + : afeef113||pb-IF4xU1AvFA==|| joined server -2022-12-10 13:36:24.113505 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-10 13:38:20.474986 + : AbsorbedRe||pb-IF4WU1AFEw==|| joined server -2022-12-10 13:38:45.557762 + : GrimCheck3||pb-IF4HU1ADMg==|| joined server -2022-12-10 13:38:55.600554 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-10 13:40:42.998105 + : Raghav2655||pb-IF4cU2UJCA==|| joined server -2022-12-10 13:41:01.050792 + : ImplicitJock30||pb-IF4uU2UNMg==|| joined server -2022-12-10 13:41:22.111015 + : Rahilpatel184||pb-IF48V1QaCQ==|| joined server -2022-12-10 13:41:48.207153 + : nagarjun2000||pb-IF42VXYnUg==|| joined server -2022-12-10 13:42:02.258081 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-10 13:42:30.352122 + : Mirzaclegs||pb-IF4AUxYpIw==|| joined server -2022-12-10 13:43:02.450916 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-10 13:44:05.675059 + : HaplessBedside53||pb-IF4lUxMSHw==|| joined server -2022-12-10 13:44:10.692230 + : NoName47670||pb-IF4dUko8Lg==|| joined server -2022-12-10 13:45:05.898847 + : StatedCrea||pb-IF4MU08pUA==|| joined server -2022-12-10 13:45:24.974601 + : Android57379873||pb-IF4mUnkKMA==|| joined server -2022-12-10 13:45:37.022462 + : chinmay192||pb-IF42Uk4MMg==|| joined server -2022-12-10 13:45:58.085423 + : FrolicZest||pb-IF4pVWMMBA==|| joined server -2022-12-10 13:46:30.199715 + : UKnowMeAJ||pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH|| joined server -2022-12-10 13:46:41.249943 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-10 13:48:51.658547 + : Jenishmodi||pb-JiNJVxBfVENDWF1GEEFRV11HF0ZYQFRE|| joined server -2022-12-10 13:49:26.749880 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-10 13:51:24.169482 + : DEPROGAMIN||pb-IF4IU08pBg==|| joined server -2022-12-10 13:51:32.196456 + : ClarkyTheL||pb-IF5RU1NeDQ==|| joined server -2022-12-10 13:51:33.199153 + : Android54664134||pb-IF4TUhktCg==|| joined server -2022-12-10 13:51:57.283024 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-10 13:53:19.538548 + : marycyraca||pb-IF4PU08EEA==|| joined server -2022-12-10 13:53:34.573703 + : AbhiiiOP1||pb-IF4LUlQ7Ng==|| joined server -2022-12-10 13:55:00.895327 + : ReputableSlew45||pb-IF4sU0sDMg==|| joined server -2022-12-10 13:55:53.049580 + : CivilizedT||pb-IF4wVFcZPw==|| joined server -2022-12-10 13:56:14.160950 + : BlondDecep||pb-IF4RU1BdHA==|| joined server -2022-12-10 13:57:12.319593 + : ClarkyTheL||pb-IF5RU1NeDQ==|| joined server -2022-12-10 13:57:59.461983 + : lautre71||pb-IF5TU1AYPA==|| joined server -2022-12-10 13:58:11.499370 + : lautre71||pb-IF5TU1AYPA==|| joined server -2022-12-10 13:58:52.650233 + : FervidPlur||pb-IF4-UxI7Mg==|| joined server -2022-12-10 13:59:06.698706 + : Trushank||pb-IF4zU08lLA==|| joined server -2022-12-10 13:59:47.841134 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-10 14:02:03.320334 + : DevilDhanu2404||pb-IF4cU0IcMw==|| joined server -2022-12-10 14:02:30.404200 + : ReputableSlew45||pb-IF4sU0sDMg==|| joined server -2022-12-10 14:02:46.452649 + : Android53892113||pb-IF43UhEZKA==|| joined server -2022-12-10 14:03:01.505556 + : RustyUnicorn27009||pb-IF42U0kbEg==|| joined server -2022-12-10 14:03:04.518605 + : RabidFight||pb-IF5RU3UzJA==|| joined server -2022-12-10 14:03:42.660217 + : OrganicHor||pb-IF4-U0MYXA==|| joined server -2022-12-10 14:04:09.782553 + : CulturalJa||pb-IF4pUxUDDQ==|| joined server -2022-12-10 14:04:12.797272 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 14:05:39.081380 + : Pullingo5||pb-IF4GVGs4UA==|| joined server -2022-12-10 14:07:53.508607 + : HappyNpc78||pb-IF4TUnMOAA==|| joined server -2022-12-10 14:08:14.563755 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-10 14:08:21.588343 + : YourLokiX||pb-IF4XU08hFQ==|| joined server -2022-12-10 14:08:28.619385 + : Android63782341||pb-IF4KU0tZUw==|| joined server -2022-12-10 14:09:09.742596 + : ImplicitWa||pb-IF4xU3EoKg==|| joined server -2022-12-10 14:09:45.880111 + : FamedHair40||pb-IF4AU2czAQ==|| joined server -2022-12-10 14:10:54.105405 + : StrenuousH||pb-IF48U3g_Lw==|| joined server -2022-12-10 14:11:10.168995 + : BlondDecep||pb-IF4RU1BdHA==|| joined server -2022-12-10 14:11:28.220827 + : chugambaran||pb-IF42U2wGFw==|| joined server -2022-12-10 14:13:57.771059 + : Gauravv||pb-IF41U0ktKw==|| joined server -2022-12-10 14:14:08.810473 + : Vivavinokratos2||pb-IF43FxQb|| joined server -2022-12-10 14:14:48.960427 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-10 14:15:32.118760 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-10 14:16:20.307215 + : Android64025977||pb-IF4sU08EPw==|| joined server -2022-12-10 14:18:00.627208 + : BrownCreat||pb-IF4lB0sz|| joined server -2022-12-10 14:19:27.877120 + : Android63782341||pb-IF4KU0tZUw==|| joined server -2022-12-10 14:19:38.922607 + : IckyGauntl||pb-IF5SU3AxDA==|| joined server -2022-12-10 14:23:33.750798 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-10 14:23:47.806882 + : DevilDhanu2404||pb-IF4cU0IcMw==|| joined server -2022-12-10 14:24:09.874629 + : PuzzledSol||pb-IF4TV0wvVQ==|| joined server -2022-12-10 14:24:30.956691 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 14:25:48.243954 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-10 14:27:16.532896 + : FancyPan23||pb-IF5UUkMlDA==|| joined server -2022-12-10 14:27:19.547999 + : Android64026375||pb-IF4PU1ABDA==|| joined server -2022-12-10 14:28:25.784709 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-10 14:28:57.882969 + : LusciousBunny93188||pb-IF4zUmMgAw==|| joined server -2022-12-10 14:29:08.909502 + : Legend2||pb-IF4tUk0aIA==|| joined server -2022-12-10 14:29:58.055394 + : Mirzaclegs||pb-IF4AUxYpIw==|| joined server -2022-12-10 14:30:07.086181 + : GreyAardva||pb-IF4SU3UIAQ==|| joined server -2022-12-10 14:31:08.296131 + : hulk151120||pb-IF4RVRETAg==|| joined server -2022-12-10 14:31:18.322804 + : MRKHINDIGA||pb-IF4OU04GBg==|| joined server -2022-12-10 14:31:19.325228 + : chugambaran||pb-IF42U2wGFw==|| joined server -2022-12-10 14:31:42.414245 + : ArunTamizh||pb-IF4UU2IIFg==|| joined server -2022-12-10 14:31:50.441597 + : Android63989984||pb-IF4CU1BcEQ==|| joined server -2022-12-10 14:33:20.748182 + : NeedlessMonkey47856||pb-IF4OVGhcIw==|| joined server -2022-12-10 14:34:30.986113 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-10 14:34:42.013865 + : TejGamerNt||pb-IF4oUxAGPQ==|| joined server -2022-12-10 14:34:46.031209 + : Device||pb-IF4SU04NLw==|| joined server -2022-12-10 14:35:41.207991 + : BlondDecep||pb-IF4RU1BdHA==|| joined server -2022-12-10 14:35:45.227987 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-10 14:35:49.243844 + : esakhan9||pb-IF4VVRAqXQ==|| joined server -2022-12-10 14:35:58.275439 + : Android55593617||pb-IF42UmgOAA==|| joined server -2022-12-10 14:36:05.303759 + : BlondDecep||pb-IF4RU1BdHA==|| joined server -2022-12-10 14:36:16.354666 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-10 14:36:44.474525 + : hulk151120||pb-IF4RVRETAg==|| joined server -2022-12-10 14:36:48.489764 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-10 14:37:14.562836 + : ThinHumili||pb-IF4mUmFZAA==|| joined server -2022-12-10 14:37:18.582256 + : Legendar36||pb-JiNJARFaUEdAXV9JEkNSVFBAGUVcRVhC|| joined server -2022-12-10 14:37:25.611165 + : Mukund094||pb-IF4SUnMKEw==|| joined server -2022-12-10 14:38:47.936128 + : ASSASINSUR||pb-IF4sVXA_AA==|| joined server -2022-12-10 14:39:19.073499 + : POWERXDHRUV||pb-IF4GD2Yd|| joined server -2022-12-10 14:39:20.076843 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-10 14:40:42.366564 + : WonderfulH||pb-IF4sVVgTAg==|| joined server -2022-12-10 14:41:09.453688 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-10 14:41:55.633137 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-10 14:44:06.137983 + : Android63977768||pb-IF4VU08kJA==|| joined server -2022-12-10 14:44:43.268097 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 14:44:45.277846 + : NeedfulCon||pb-IF4OVEZTPA==|| joined server -2022-12-10 14:46:13.627291 + : MadJokester8604||pb-IF4OXmUG|| joined server -2022-12-10 14:48:30.155660 + : MoodyLibra||pb-IF4XU0k-Vg==|| joined server -2022-12-10 14:48:33.169372 + : Android60903665||pb-IF4mUxkJPw==|| joined server -2022-12-10 14:48:54.266106 + : ShenshaRegin||pb-IF4WVHYDNw==|| joined server -2022-12-10 14:49:34.391803 + : MilesAboveYou||pb-IF4CUhM5AQ==|| joined server -2022-12-10 14:50:21.561621 + : Mirzaclegs||pb-IF4AUxYpIw==|| joined server -2022-12-10 14:50:42.625153 + : ᴵᴬᴹズRaoJi||pb-IF4pVVQBEA==|| joined server -2022-12-10 14:50:47.643045 + : Maxversion||pb-IF5UU2wYBg==|| joined server -2022-12-10 14:51:09.735861 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-10 14:51:25.799690 + : Android61550274||pb-IF4QU2giKg==|| joined server -2022-12-10 14:52:52.116408 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-10 14:52:53.119481 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-10 14:52:54.124504 + : NoName71960d||pb-IF4FU1AqKw==|| joined server -2022-12-10 14:53:02.146027 + : Raaseviswa||pb-IF4IVXETKA==|| joined server -2022-12-10 14:54:38.503511 + : WoodedArch||pb-IF4KU1FZVw==|| joined server -2022-12-10 14:55:07.602385 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-10 14:55:49.763321 + : PrimitiveCoercion25||pb-IF4qU3BcNw==|| joined server -2022-12-10 14:56:12.833215 + : Android57402076||pb-IF4DUnoiIQ==|| joined server -2022-12-10 14:56:49.982894 + : NoName59665||pb-IF4sU08gAw==|| joined server -2022-12-10 14:56:51.992440 + : Frumptio19||pb-IF4nU3ZaUg==|| joined server -2022-12-10 14:57:40.169926 + : InteriorDu||pb-IF4lUhECIQ==|| joined server -2022-12-10 14:57:42.178594 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-10 14:57:58.227406 + : mrpainless||pb-IF4PIFQ9|| joined server -2022-12-10 14:58:39.368469 + : TusharRawa||pb-IF4cUlIHFQ==|| joined server -2022-12-10 14:58:47.395065 + : Gibberish101||pb-IF4jNEwC|| joined server -2022-12-10 15:00:07.658273 + : Android58271641||pb-IF42UkgAUw==|| joined server -2022-12-10 15:00:15.685333 + : ExposedEditorial36||pb-IF4AU0slNQ==|| joined server -2022-12-10 15:00:45.804235 + : Android61499054||pb-IF4oU2hSIg==|| joined server -2022-12-10 15:01:10.893552 + : Baralund||pb-IF4VUhAKEg==|| joined server -2022-12-10 15:01:18.933246 + : Rajjadhav9||pb-IF41U0Y5PA==|| joined server -2022-12-10 15:01:23.947522 + : SpiritualA||pb-IF5SU2MfCw==|| joined server -2022-12-10 15:01:47.031184 + : ExposedEditorial36||pb-IF4AU0slNQ==|| joined server -2022-12-10 15:02:41.207118 + : ExposedEditorial36||pb-IF4AU0slNQ==|| joined server -2022-12-10 15:03:06.311025 + : Android63970828||pb-IF4pU08BVA==|| joined server -2022-12-10 15:04:48.642036 + : LyingSword||pb-LV4FBEEKV0ZAVVwVGBVTBlxBFQ==|| joined server -2022-12-10 15:04:57.677771 + : HappyToad1||pb-IF4IVXgRFg==|| joined server -2022-12-10 15:05:28.790297 + : CrushedPro||pb-IF4hU3YgLA==|| joined server -2022-12-10 15:06:09.922042 + : MadBanjoPl||pb-IF5TV1o8XQ==|| joined server -2022-12-10 15:06:11.934211 + : jaybhingradiya||pb-IF4HAHUO|| joined server -2022-12-10 15:07:02.103192 + : LightningU||pb-IF40U1BSIw==|| joined server -2022-12-10 15:07:33.236254 + : LogicalDuck1803||pb-IF4lVG8eBA==|| joined server -2022-12-10 15:08:46.541418 + : samkng2728||pb-IF4zU0M4BA==|| joined server -2022-12-10 15:09:57.820212 + : TusharRawa||pb-IF4cUlIHFQ==|| joined server -2022-12-10 15:10:07.857882 + : Android61174087||pb-IF4AU2QnDg==|| joined server -2022-12-10 15:10:27.942862 + : Android63990410||pb-IF4SU08THw==|| joined server -2022-12-10 15:10:51.027327 + : Android61174087||pb-IF4AU2QnDg==|| joined server -2022-12-10 15:11:21.142696 + : VishalDorl||pb-IF4CLUED|| joined server -2022-12-10 15:11:22.148760 + : Hydrosta13||pb-IF4VU1A_AA==|| joined server -2022-12-10 15:11:24.152888 + : Pragmati11||pb-IF4CVXAoAA==|| joined server -2022-12-10 15:11:32.182534 + : samkng2728||pb-IF4zU0M4BA==|| joined server -2022-12-10 15:11:34.186381 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-10 15:12:02.267542 + : EnviousIngredient43||pb-IF4cU0c5Fw==|| joined server -2022-12-10 15:12:45.399391 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-10 15:13:00.453779 + : Maxversion||pb-IF5UU2wYBg==|| joined server -2022-12-10 15:13:26.550076 + : Android63880448||pb-IF4gU0wbFg==|| joined server -2022-12-10 15:13:43.602470 + : weirdassal||pb-IF4PVUwcFw==|| joined server -2022-12-10 15:13:51.628692 + : Humongou15||pb-IF4rUkQoDw==|| joined server -2022-12-10 15:14:25.778740 + : EnviousIngredient43||pb-IF4cU0c5Fw==|| joined server -2022-12-10 15:14:28.785980 + : ColdestGai||pb-IF43U0wiJg==|| joined server -2022-12-10 15:14:32.793652 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-10 15:14:37.810831 + : DowncastCruise28||pb-IF4KUnEmVg==|| joined server -2022-12-10 15:14:50.873010 + : ThinnerVar||pb-IF4rU1ACUw==|| joined server -2022-12-10 15:14:53.884269 + : RabidFight||pb-IF5RU3UzJA==|| joined server -2022-12-10 15:15:04.921308 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-10 15:15:21.975335 + : LatentPara||pb-IF5XVUQpIw==|| joined server -2022-12-10 15:16:21.195767 + : WideEyedO3||pb-IF4CU0xYUQ==|| joined server -2022-12-10 15:16:28.229719 + : SourHail87||pb-IF4gU1AsDQ==|| joined server -2022-12-10 15:17:23.426250 + : NOORULAMEENAK57THALA||pb-IF4cVEsJAg==|| joined server -2022-12-10 15:18:03.564320 + : RIADST29||pb-IF4mU0YnVw==|| joined server -2022-12-10 15:18:19.608475 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-10 15:18:53.720788 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-10 15:18:58.745913 + : ChewySmell||pb-IF49U08dJg==|| joined server -2022-12-10 15:19:11.794851 + : Android57432788||pb-IF4rUno-FQ==|| joined server -2022-12-10 15:19:17.816478 + : MagicalOak12||pb-IF4FVEMYDA==|| joined server -2022-12-10 15:19:45.892750 + : NOORULAMEENAK57THALA||pb-IF4cVEsJAg==|| joined server -2022-12-10 15:20:23.023460 + : samkng2728||pb-IF4zU0M4BA==|| joined server -2022-12-10 15:21:06.167150 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-10 15:21:34.257625 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 15:21:43.289136 + : LyingSword||pb-LV4FBEEKV0ZAVVwVGBVTBlxBFQ==|| joined server -2022-12-10 15:22:37.500768 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-10 15:23:02.579203 + : Devil77181908||pb-IF4dUFk_|| joined server -2022-12-10 15:23:24.669585 + : Omfoo||pb-IF5QU0cfHA==|| joined server -2022-12-10 15:24:15.866385 + : samkng2728||pb-IF4zU0M4BA==|| joined server -2022-12-10 15:24:24.891905 + : CrystalCoi||pb-IF5UU0gjVA==|| joined server -2022-12-10 15:24:32.914197 + : Omfoo||pb-IF5QU0cfHA==|| joined server -2022-12-10 15:25:00.007845 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-10 15:25:42.156294 + : ChewySmell||pb-IF49U08dJg==|| joined server -2022-12-10 15:26:43.369572 + : GreasyTrad||pb-IF4dU0xeEg==|| joined server -2022-12-10 15:27:28.598225 + : Devil77181908||pb-IF4dUFk_|| joined server -2022-12-10 15:28:04.735974 + : WonderfulH||pb-IF4sVVgTAg==|| joined server -2022-12-10 15:28:31.807814 + : Android61174087||pb-IF4AU2QnDg==|| joined server -2022-12-10 15:29:05.925996 + : FrontPlane24||pb-IF4WVU9TLg==|| joined server -2022-12-10 15:29:21.987754 + : FrontPlane24||pb-IF4WVU9TLg==|| joined server -2022-12-10 15:29:36.022835 + : Android62900083||pb-IF5SU3kqBw==|| joined server -2022-12-10 15:29:59.123952 + : Android63620848||pb-IF4-U0YoHA==|| joined server -2022-12-10 15:30:23.201966 + : NoName63100c||pb-IF4eU3QlKQ==|| joined server -2022-12-10 15:31:09.362849 + : sanjeet51||pb-JiNJARFfUEpAVFxIF0JWVlJDFkBbRFlC|| joined server -2022-12-10 15:31:52.519016 + : DowncastCruise28||pb-IF4KUnEmVg==|| joined server -2022-12-10 15:31:55.530968 + : CostlyJudg||pb-IF5VU0kGHQ==|| joined server -2022-12-10 15:31:59.538804 + : VIJAYLAZAR||pb-IF4AUkcMDA==|| joined server -2022-12-10 15:32:49.731434 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-10 15:33:18.820656 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-10 15:34:06.986148 + : samkng2728||pb-IF4zU0M4BA==|| joined server -2022-12-10 15:34:28.058470 + : NeedlessMonkey47856||pb-IF4OVGhcIw==|| joined server -2022-12-10 15:34:59.166812 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-10 15:36:02.433217 + : WonderfulH||pb-IF4sVVgTAg==|| joined server -2022-12-10 15:36:36.635267 + : RenegadeJam253||pb-IF4eUmxaDw==|| joined server -2022-12-10 15:36:56.702169 + : RenegadeJam253||pb-IF4eUmxaDw==|| joined server -2022-12-10 15:37:04.726040 + : RenegadeJam253||pb-IF4eUmxaDw==|| joined server -2022-12-10 15:37:31.842358 + : ExpedientTale44||pb-IF4hU0kZMw==|| joined server -2022-12-10 15:37:39.872089 + : IllusoryDi||pb-IF4cUlcgAA==|| joined server -2022-12-10 15:39:20.196835 + : VishalDorl||pb-IF4CLUED|| joined server -2022-12-10 15:39:55.293334 + : catbros7||pb-IF4eUhIxBg==|| joined server -2022-12-10 15:41:00.683966 + : dpvaghasiy||pb-IF40PkMh|| joined server -2022-12-10 15:41:13.727725 + : HopefulMention39||pb-IF4PU0sjLg==|| joined server -2022-12-10 15:41:23.765590 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-10 15:41:35.808485 + : sOFF1C1AL||pb-IF5VU0cyFg==|| joined server -2022-12-10 15:42:03.901212 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-10 15:42:26.988766 + : PartialDeed19||pb-IF4RVXYmBA==|| joined server -2022-12-10 15:42:42.039952 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-10 15:43:07.142963 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-10 15:44:08.409805 + : Dominati16||pb-IF48U0leBg==|| joined server -2022-12-10 15:44:17.437726 + : Dotphoenix||pb-IF4FV00SDA==|| joined server -2022-12-10 15:44:25.469811 + : Android63180331||pb-IF4CU3oxLA==|| joined server -2022-12-10 15:45:29.702540 + : AceCamel16456||pb-IF4mUnYuKA==|| joined server -2022-12-10 15:45:57.819379 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-10 15:46:25.959174 + : AceCamel16456||pb-IF4mUnYuKA==|| joined server -2022-12-10 15:46:30.979132 + : Android62716790||pb-IF4tU3UJBg==|| joined server -2022-12-10 15:47:19.189270 + : SweptImitation46||pb-IF5SU0c_Fw==|| joined server -2022-12-10 15:47:35.250522 + : PC237612||pb-IF4sAGcj|| joined server -2022-12-10 15:48:15.391225 + : VoidPort2||pb-IF5UU05aHQ==|| joined server -2022-12-10 15:48:51.494404 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-10 15:48:59.516485 + : DerisiveBr||pb-IF5XU2QgJw==|| joined server -2022-12-10 15:51:43.082406 + : Android41433412||pb-IF5dVERdFA==|| joined server -2022-12-10 15:52:05.133555 + : Android62059345||pb-IF4VU20ENw==|| joined server -2022-12-10 15:52:13.168998 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-10 15:54:03.564508 + : Raghav2655||pb-IF4cU2UJCA==|| joined server -2022-12-10 15:54:14.593343 + : Android62059345||pb-IF4VU20ENw==|| joined server -2022-12-10 15:58:01.411063 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-10 15:59:03.606552 + : amansjjsjd||pb-IF4LVVAFJg==|| joined server -2022-12-10 15:59:12.642368 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-10 15:59:33.714293 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-10 16:00:40.934917 + : WondrousSoundness7||pb-IF41U04IKQ==|| joined server -2022-12-10 16:02:21.291352 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-10 16:02:41.343247 + : Obstinat51||pb-IF5UU1IOUw==|| joined server -2022-12-10 16:02:47.359867 + : Ombala9||pb-IF48U3pfCw==|| joined server -2022-12-10 16:03:12.432761 + : FairMarble76||pb-IF4pVUUGMQ==|| joined server -2022-12-10 16:03:27.475542 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-10 16:04:34.752472 + : samkng2728||pb-IF4zU0M4BA==|| joined server -2022-12-10 16:04:44.788154 + : royop2440o||pb-IF5WU1AfXQ==|| joined server -2022-12-10 16:04:50.807759 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-10 16:05:01.850267 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-10 16:05:10.888183 + : CosmicOutl||pb-IF4yUng_XA==|| joined server -2022-12-10 16:05:49.035518 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-10 16:07:47.550807 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-10 16:08:55.789696 + : Android56260985||pb-IF4tUm88PA==|| joined server -2022-12-10 16:10:06.085277 + : adarshraja||pb-IF4WU08HUQ==|| joined server -2022-12-10 16:10:19.133174 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-10 16:11:02.282016 + : Ninja03om||pb-IF4OU0gEFg==|| joined server -2022-12-10 16:11:07.296489 + : Android63888799||pb-IF4oU004KQ==|| joined server -2022-12-10 16:13:17.751177 + : IncoherentBackbone19||pb-IF4DUmYTPA==|| joined server -2022-12-10 16:13:21.757362 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-10 16:13:22.758344 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-10 16:14:25.989231 + : mullanasru||pb-IF5dUxgeAg==|| joined server -2022-12-10 16:14:38.020917 + : kxfira8||pb-IF4mU08JKg==|| joined server -2022-12-10 16:14:39.027571 + : FifteenNob||pb-IF4xU0cNVA==|| joined server -2022-12-10 16:14:47.048159 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-10 16:15:32.205917 + : ThirstyThu||pb-IF4KU1AAUA==|| joined server -2022-12-10 16:15:34.217382 + : jcar914||pb-JiNJARFZV0BBVV5AGUNRUVZGFkJXRlJL|| joined server -2022-12-10 16:15:36.219765 + : CorrelativeArt41||pb-IF4QVVBTDg==|| joined server -2022-12-10 16:15:44.254244 + : Android63292650||pb-IF5VU0MZVA==|| joined server -2022-12-10 16:16:54.510160 + : OrganicHor||pb-IF4-U0MYXA==|| joined server -2022-12-10 16:16:59.642440 + : SomberFree||pb-IF4GVRlSIw==|| joined server -2022-12-10 16:19:18.216986 + : bisht4189||pb-IF4SEHAl|| joined server -2022-12-10 16:20:47.551500 + : hacker1199||pb-IF4BU0cDNg==|| joined server -2022-12-10 16:21:11.648935 + : FranticFever44||pb-IF5RU3AjNA==|| joined server -2022-12-10 16:21:35.723115 + : SomberFree||pb-IF4GVRlSIw==|| joined server -2022-12-10 16:22:46.984994 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-10 16:23:20.083145 + : ExpedientTale44||pb-IF4hU0kZMw==|| joined server -2022-12-10 16:23:24.102882 + : Raghav2655||pb-IF4cU2UJCA==|| joined server -2022-12-10 16:23:25.105275 + : SweptImitation46||pb-IF5SU0c_Fw==|| joined server -2022-12-10 16:23:36.142209 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-10 16:24:17.433417 + : Android61975304||pb-IF4xU2waHw==|| joined server -2022-12-10 16:24:21.443390 + : QuackingC2||pb-IF4IVU9bLA==|| joined server -2022-12-10 16:24:56.561245 + : Android59642969||pb-IF4oUlcNKg==|| joined server -2022-12-10 16:26:09.844969 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-10 16:26:14.858777 + : Android61925440||pb-IF4LU2xTJA==|| joined server -2022-12-10 16:26:19.877304 + : Android59642969||pb-IF4oUlcNKg==|| joined server -2022-12-10 16:26:25.902876 + : EarlierPub||pb-IF4PVXUYAw==|| joined server -2022-12-10 16:26:34.939683 + : Gregariou8||pb-IF4UU0wFIA==|| joined server -2022-12-10 16:26:41.971473 + : TMCCR7||pb-IF4NU24hUQ==|| joined server -2022-12-10 16:27:43.198846 + : NOORULAMEENAK57THALA||pb-IF4cVEsJAg==|| joined server -2022-12-10 16:29:13.520141 + : Nonverbal9||pb-IF4GU1FYDw==|| joined server -2022-12-10 16:31:20.101913 + : Android59642969||pb-IF4oUlcNKg==|| joined server -2022-12-10 16:31:48.232202 + : Android53276083||pb-IF4zVVcuBA==|| joined server -2022-12-10 16:34:04.794681 + : ᴵᴬᴹズRaoJi||pb-IF4pVVQBEA==|| joined server -2022-12-10 16:36:15.237061 + : Android62716790||pb-IF4tU3UJBg==|| joined server -2022-12-10 16:37:07.418455 + : SweptImitation46||pb-IF5SU0c_Fw==|| joined server -2022-12-10 16:39:40.028006 + : RenegadeJam253||pb-IF4eUmxaDw==|| joined server -2022-12-10 16:39:41.028990 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-10 16:40:06.128014 + : MrSahill||pb-IF4lVWtaAQ==|| joined server -2022-12-10 16:41:01.313164 + : hkMole38||pb-IF4GU3cFBw==|| joined server -2022-12-10 16:41:05.332424 + : shahirgami||pb-IF4tU2kSJA==|| joined server -2022-12-10 16:41:55.549070 + : RoLcErOyCe||pb-IF5WU08yUg==|| joined server -2022-12-10 16:43:54.042818 + : rohanstali||pb-IF4eVGkPIg==|| joined server -2022-12-10 16:43:55.042803 + : FeebleTele||pb-IF4IUkIYKQ==|| joined server -2022-12-10 16:44:01.169432 + : AdvancedExpomnent45m||pb-IF4JU3MxCQ==|| joined server -2022-12-10 16:45:43.508433 + : Kirito3008||pb-JiNJARBaXUJAXVZIGE9QUFVFFEVdRFlH|| joined server -2022-12-10 16:46:17.619316 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-10 16:47:30.860625 + : HoneyProgression37||pb-IF4XU3gkNw==|| joined server -2022-12-10 16:48:35.106274 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-10 16:48:52.168800 + : StaccatoD2||pb-IF4sU08FFQ==|| joined server -2022-12-10 16:49:13.234601 + : KU5HPAT3L||pb-IF4FUk4cFA==|| joined server -2022-12-10 16:50:29.487064 + : BHUVESHGAR||pb-IF4vU1ARJw==|| joined server -2022-12-10 16:50:41.531181 + : kunalkalyani28||pb-IF4KV0ssMg==|| joined server -2022-12-10 16:51:04.622481 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-10 16:51:23.708290 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-10 16:51:56.840236 + : Vicky3227||pb-IF4yVEssLw==|| joined server -2022-12-10 16:53:00.074429 + : FeebleTele||pb-IF4IUkIYKQ==|| joined server -2022-12-10 16:53:57.301375 + : AceCamel16456||pb-IF4mUnYuKA==|| joined server -2022-12-10 16:54:40.472369 + : Nirucraze||pb-IF4gU3cIPQ==|| joined server -2022-12-10 16:55:41.678460 + : Contagio46||pb-IF5UV28pEA==|| joined server -2022-12-10 16:55:45.691623 + : GentlestThrone24||pb-IF4qUhVeVQ==|| joined server -2022-12-10 16:55:54.721777 + : Android57379873||pb-IF4mUnkKMA==|| joined server -2022-12-10 16:56:02.762411 + : DazedHippy||pb-IF5QU00DXQ==|| joined server -2022-12-10 16:56:42.912514 + : FeebleTele||pb-IF4IUkIYKQ==|| joined server -2022-12-10 16:56:46.931449 + : SupunCharuka98||pb-IF4QU04lXA==|| joined server -2022-12-10 16:57:21.036859 + : LandCoder||pb-IF5RU04CBg==|| joined server -2022-12-10 16:58:30.290895 + : MoveableReminder36||pb-IF4iUkghEQ==|| joined server -2022-12-10 16:58:50.349535 + : Android45243528||pb-IF4tDUc8|| joined server -2022-12-10 16:59:06.483673 + : EducatedOx||pb-IF4NU0MGPQ==|| joined server -2022-12-10 17:00:49.829970 + : CherishedPlunder15||pb-IF4PU08qBw==|| joined server -2022-12-10 17:01:05.888676 + : SHIVAMCHOU||pb-JiNJARFTVEBBVV1DGEdZXFZDGEVfQVFE|| joined server -2022-12-10 17:01:12.915632 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-10 17:01:32.991334 + : Android52586904||pb-IF5UVVJYIQ==|| joined server -2022-12-10 17:01:51.062001 + : SillyMembrane32||pb-IF4AU04IHQ==|| joined server -2022-12-10 17:02:07.116508 + : Consciou10||pb-IF40U2YxJg==|| joined server -2022-12-10 17:02:45.256551 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-10 17:03:39.464891 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 17:04:50.722197 + : VocationalScrutiny21||pb-IF4rU0U8Eg==|| joined server -2022-12-10 17:05:19.836650 + : PlasticWillOWisp7884||pb-IF4cV3AGLQ==|| joined server -2022-12-10 17:05:59.001589 + : Android62716790||pb-IF4tU3UJBg==|| joined server -2022-12-10 17:06:19.076708 + : RAEEEEEEEEEEEEEEEEES||pb-IF4wBUUK|| joined server -2022-12-10 17:06:24.097885 + : NoName63529e||pb-IF4cU1AjDw==|| joined server -2022-12-10 17:07:00.300504 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-10 17:07:20.362269 + : RAEEEEEEEEEEEEEEEEES||pb-IF4wBUUK|| joined server -2022-12-10 17:07:21.364069 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-10 17:07:26.380061 + : viru199554||pb-IF4VU3EjBg==|| joined server -2022-12-10 17:07:32.399244 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-10 17:07:43.431509 + : DeathBOSS8||pb-IF4cUlhfLA==|| joined server -2022-12-10 17:07:46.443945 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 17:08:33.576435 + : LiteralDef||pb-IF4rU1FZAQ==|| joined server -2022-12-10 17:09:20.731569 + : Android57861013||pb-IF5VUkdeEw==|| joined server -2022-12-10 17:09:21.737049 + : DiscreetV2||pb-IF4qU0c_FA==|| joined server -2022-12-10 17:10:11.921108 + : viru199554||pb-IF4VU3EjBg==|| joined server -2022-12-10 17:11:26.201264 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-10 17:11:54.306629 + : Android53702613||pb-IF4VVVoGDA==|| joined server -2022-12-10 17:12:51.512230 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-10 17:13:21.620624 + : Android57902869||pb-IF4mUkQaDA==|| joined server -2022-12-10 17:14:44.994953 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-10 17:16:07.324538 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-10 17:16:42.429380 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-10 17:16:50.449483 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-10 17:17:04.496502 + : Android62256590||pb-IF4OU3AoJg==|| joined server -2022-12-10 17:17:12.519743 + : Android54967514||pb-IF5UUmVZAw==|| joined server -2022-12-10 17:17:15.530663 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-10 17:17:18.535606 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-10 17:17:26.553872 + : Gregariou8||pb-IF4UU0wFIA==|| joined server -2022-12-10 17:17:35.598798 + : EarlierPub||pb-IF4PVXUYAw==|| joined server -2022-12-10 17:17:40.615269 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-10 17:17:41.620219 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-10 17:17:43.629395 + : Baralund||pb-IF4VUhAKEg==|| joined server -2022-12-10 17:17:51.659585 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-10 17:18:11.726582 + : ahamadakthus||pb-IF5TE2M5|| joined server -2022-12-10 17:18:31.804371 + : ProsaicSag||pb-JiNJARBTV0FAVVxIFERYUVxAE0lYRFdG|| joined server -2022-12-10 17:18:44.850605 + : Unjustif13||pb-IF4QU0QYDg==|| joined server -2022-12-10 17:19:18.969683 + : ahamadakthus||pb-IF5TE2M5|| joined server -2022-12-10 17:19:58.089922 + : Android61766625||pb-IF4FU2oJAg==|| joined server -2022-12-10 17:20:04.106575 + : UnsignedSurvival2108||pb-IF4rU3c_Fw==|| joined server -2022-12-10 17:20:21.163477 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-10 17:21:28.432232 + : Android62256590||pb-IF4OU3AoJg==|| joined server -2022-12-10 17:22:56.764458 + : vps32i||pb-IF4oU0YABg==|| joined server -2022-12-10 17:23:04.807651 + : RamblingIniquity29||pb-IF4nUm46Cg==|| joined server -2022-12-10 17:23:11.833411 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-10 17:23:54.033400 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-10 17:24:19.147908 + : AbnishKumar123||pb-IF4rVUIBCg==|| joined server -2022-12-10 17:24:36.212802 + : FledgedSupervision32||pb-IF4qU0cEMg==|| joined server -2022-12-10 17:24:46.258770 + : RecalcitrantTorch29||pb-IF4VU3g7Lw==|| joined server -2022-12-10 17:25:55.546334 + : Jerald6440||pb-IF5dVWEJMg==|| joined server -2022-12-10 17:27:36.917179 + : RamblingIniquity29||pb-IF4nUm46Cg==|| joined server -2022-12-10 17:30:07.623843 + : TOFFE2022||pb-IF4sUnYKXA==|| joined server -2022-12-10 17:30:56.799296 + : Fancydinne||pb-IF4rVUcbVQ==|| joined server -2022-12-10 17:31:23.904675 + : DangerouzToxic699||pb-IF4eV3YsEA==|| joined server -2022-12-10 17:32:24.130256 + : ErrantEncounter52||pb-IF4BU2sMFA==|| joined server -2022-12-10 17:32:28.143463 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-10 17:32:35.167136 + : Android63901385||pb-IF4VU009CQ==|| joined server -2022-12-10 17:33:05.249254 + : ModalHandl||pb-IF4NU0cpFw==|| joined server -2022-12-10 17:33:56.420637 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-10 17:34:03.450198 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-10 17:34:16.502120 + : HEROgamer||pb-LV4FB0JTA0VAWFYUEUdXBlNDFg==|| joined server -2022-12-10 17:35:04.661014 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-10 17:35:33.846421 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-10 17:36:20.012424 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-10 17:36:23.027997 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-10 17:36:27.046811 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-10 17:37:01.154510 + : GENERALVIN||pb-IF4GUmodCQ==|| joined server -2022-12-10 17:37:21.239718 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-10 17:37:47.322522 + : Contagio46||pb-IF5UV28pEA==|| joined server -2022-12-10 17:39:13.725840 + : Contagio46||pb-IF5UV28pEA==|| joined server -2022-12-10 17:39:34.800142 + : Contagio46||pb-IF5UV28pEA==|| joined server -2022-12-10 17:39:54.876628 + : Android60974634||pb-IF4rU2EZEw==|| joined server -2022-12-10 17:41:30.205646 + : Jerald6440||pb-IF5dVWEJMg==|| joined server -2022-12-10 17:42:27.409440 + : ErrantEncounter52||pb-IF4BU2sMFA==|| joined server -2022-12-10 17:42:41.474516 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-10 17:43:24.658144 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-10 17:43:28.667298 + : Agzx2244||pb-IF4PV24yPA==|| joined server -2022-12-10 17:45:25.204415 + : InvitingOrnament16||pb-IF4AU0tYAg==|| joined server -2022-12-10 17:45:59.313156 + : Arnob007||pb-IF5SVXIHMA==|| joined server -2022-12-10 17:46:06.346486 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-10 17:47:09.518066 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-10 17:47:50.661677 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-10 17:47:51.667492 + : Contagio46||pb-IF5UV28pEA==|| joined server -2022-12-10 17:48:20.750033 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-10 17:50:08.081255 + : Instruct21||pb-IF4qU04eNQ==|| joined server -2022-12-10 17:50:45.348426 + : Governmen3||pb-IF5RU3oZKA==|| joined server -2022-12-10 17:51:06.406677 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-10 17:51:18.448684 + : Negotiab13||pb-IF4UU2NeUA==|| joined server -2022-12-10 17:52:44.937175 + : Android60943306||pb-IF4IU2FeFw==|| joined server -2022-12-10 17:53:02.010291 + : Governmen3||pb-IF5RU3oZKA==|| joined server -2022-12-10 17:53:11.058184 + : Contagio46||pb-IF5UV28pEA==|| joined server -2022-12-10 17:54:13.302845 + : Lijoprince||pb-IF4AV0QcUg==|| joined server -2022-12-10 17:54:17.318722 + : Lijoprince||pb-IF4AV0QcUg==|| joined server -2022-12-10 17:55:54.635703 + : Aditya1234||pb-IF4GU1A-LA==|| joined server -2022-12-10 17:56:40.789367 + : tarunpangt||pb-IF5QVUQTVg==|| joined server -2022-12-10 17:56:48.809313 + : Governmen3||pb-IF5RU3oZKA==|| joined server -2022-12-10 17:58:02.079283 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-10 17:58:05.089694 + : Raghav2655||pb-IF4cU2UJCA==|| joined server -2022-12-10 17:58:20.139921 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-10 17:59:58.465940 + : Msshi||pb-IF40U0sZMA==|| joined server -2022-12-10 18:00:08.492540 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-10 18:00:45.617201 + : DarishLend||pb-IF5VU0IZJA==|| joined server -2022-12-10 18:00:52.642454 + : Android64027616||pb-IF4SU1ABPw==|| joined server -2022-12-10 18:01:39.822247 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-10 18:01:54.849292 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-10 18:04:01.329232 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-10 18:04:15.372110 + : AmberRingmaster22504||pb-IF4rVWwEVQ==|| joined server -2022-12-10 18:04:19.381458 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-10 18:04:32.422642 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-10 18:05:19.578843 + : DutifulQua||pb-IF4AUnATFw==|| joined server -2022-12-10 18:06:13.755632 + : SaltyTrean||pb-IF4nU0chLQ==|| joined server -2022-12-10 18:08:29.226127 + : MemerBadshah||pb-IF4JUmdaIg==|| joined server -2022-12-10 18:10:53.813049 + : Android63743210||pb-IF4OU0cMLw==|| joined server -2022-12-10 18:12:24.118991 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-10 18:14:03.508217 + : Lxhussain||pb-IF4RU0UpAQ==|| joined server -2022-12-10 18:15:19.785637 + : DeathDef18||pb-IF4DUlQjFQ==|| joined server -2022-12-10 18:17:08.145704 + : NoName39890e||pb-IF4KUxhfCA==|| joined server -2022-12-10 18:17:41.253510 + : NoName71228f||pb-IF4LU0sqMA==|| joined server -2022-12-10 18:21:26.328458 + : TheheAdlin||pb-IF5dU0oeCQ==|| joined server -2022-12-10 18:23:51.831443 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-10 18:23:52.837419 + : sahilkhatri343593||pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL|| joined server -2022-12-10 18:24:06.876589 + : chugambaran||pb-IF42U2wGFw==|| joined server -2022-12-10 18:24:30.966567 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-10 18:25:32.172199 + : NoName62797a||pb-IF4DUmw6EQ==|| joined server -2022-12-10 18:26:59.537215 + : TheheAdlin||pb-IF5dU0oeCQ==|| joined server -2022-12-10 18:27:32.646995 + : Mesmeriz16||pb-IF4PU0ZbMg==|| joined server -2022-12-10 18:27:46.704724 + : Lxhussain||pb-IF4RU0UpAQ==|| joined server -2022-12-10 18:28:20.824862 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-10 18:28:48.932813 + : OrganicHor||pb-IF4-U0MYXA==|| joined server -2022-12-10 18:29:46.127473 + : WonderfulH||pb-IF4sVVgTAg==|| joined server -2022-12-10 18:30:21.235704 + : ZADKIEL||pb-IF4wU00DEA==|| joined server -2022-12-10 18:30:59.369614 + : UKnowMeAJ||pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH|| joined server -2022-12-10 18:31:07.410746 + : ArulSamuel||pb-IF4FU04jLA==|| joined server -2022-12-10 18:33:40.022448 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-10 18:33:48.055507 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-10 18:33:49.062366 + : NoName39890e||pb-IF4KUxhfCA==|| joined server -2022-12-10 18:35:02.331392 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-10 18:39:52.099782 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-10 18:39:52.110685 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-10 18:39:59.120697 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-10 18:40:01.123484 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-10 18:40:11.144022 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-10 18:40:12.146350 + : Android60943306||pb-IF4IU2FeFw==|| joined server -2022-12-10 18:40:21.172262 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-10 18:40:27.189555 + : IndependentBoard34||pb-IF4gU0Y7AQ==|| joined server -2022-12-10 18:41:40.465986 + : Android60943306||pb-IF4IU2FeFw==|| joined server -2022-12-10 18:43:05.792037 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-10 18:43:34.897239 + : Android64027866||pb-IF5RU1M6Vw==|| joined server -2022-12-10 18:43:53.979959 + : UngainlyAluminum35||pb-IF4XU0E5AQ==|| joined server -2022-12-10 18:44:31.110812 + : DroopyGrif||pb-LV4FAxcNBxBGXVtIQhAEUlxKGA==|| joined server -2022-12-10 18:44:37.128061 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-10 18:46:14.463182 + : smasher391||pb-IF4wU0QmUg==|| joined server -2022-12-10 18:46:18.467177 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-10 18:48:38.969292 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-10 18:50:44.371503 + : Alexer6003||pb-IF4HU2c8LA==|| joined server -2022-12-10 18:52:06.671033 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-10 18:54:54.295362 + : CoastalToad55268||pb-IF4BVWIzDg==|| joined server -2022-12-10 18:55:03.335243 + : patelbhai7||pb-IF4pV3McIg==|| joined server -2022-12-10 18:56:45.684531 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-10 19:02:07.801215 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-10 19:02:40.913705 + : Longstandi||pb-IF4CU2kyPQ==|| joined server -2022-12-10 19:03:43.142697 + : Undisput17||pb-IF4sUkk-XQ==|| joined server -2022-12-10 19:04:17.262542 + : RoyalProph||pb-IF5TV2MzCA==|| joined server -2022-12-10 19:04:25.296881 + : Alexer6003||pb-IF4HU2c8LA==|| joined server -2022-12-10 19:04:56.423600 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-10 19:04:57.430505 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-10 19:08:05.113050 + : patelbhai7||pb-IF4pV3McIg==|| joined server -2022-12-10 19:08:39.224116 + : HoodedSweetness31||pb-IF4UUxYEAQ==|| joined server -2022-12-10 19:09:19.362284 + : HoodedSweetness31||pb-IF4UUxYEAQ==|| joined server -2022-12-10 19:10:10.559394 + : FiestyOper||pb-IF43VG8eIw==|| joined server -2022-12-10 19:11:10.799623 + : Fancydinne||pb-IF4rVUcbVQ==|| joined server -2022-12-10 19:12:06.029567 + : Aaryan9957||pb-IF4dUxRaIw==|| joined server -2022-12-10 19:14:01.472315 + : Attentiv11||pb-IF5SU1I8VQ==|| joined server -2022-12-10 19:14:05.488368 + : HoodedSweetness31||pb-IF4UUxYEAQ==|| joined server -2022-12-10 19:14:43.621533 + : HoodedSweetness31||pb-IF4UUxYEAQ==|| joined server -2022-12-10 19:15:09.710019 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-10 19:18:12.362404 + : Android61192137||pb-IF5XU2YGMw==|| joined server -2022-12-10 19:18:20.390126 + : piyushjat7||pb-IF5SU1IzIg==|| joined server -2022-12-10 19:19:49.692301 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-10 19:20:05.753995 + : Invisible6||pb-IF4MU085LA==|| joined server -2022-12-10 19:20:50.926465 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-10 19:21:20.009127 + : HoodedSweetness31||pb-IF4UUxYEAQ==|| joined server -2022-12-10 19:23:41.466203 + : Android63822359||pb-IF40U0sKKA==|| joined server -2022-12-10 19:25:03.768646 + : HoodedSweetness31||pb-IF4UUxYEAQ==|| joined server -2022-12-10 19:25:27.834860 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-10 19:26:09.993926 + : Aaryan9957||pb-IF4dUxRaIw==|| joined server -2022-12-10 19:26:30.051253 + : dacio7||pb-IF4jV2EqUA==|| joined server -2022-12-10 19:28:17.479580 + : Aaryan9957||pb-IF4dUxRaIw==|| joined server -2022-12-10 19:28:21.490593 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-10 19:28:29.518948 + : Android64004086||pb-IF4uU08eFA==|| joined server -2022-12-10 19:30:08.880000 + : Android49724407||pb-IF4rVXQpPQ==|| joined server -2022-12-10 19:33:16.630208 + : Longstandi||pb-IF4CU2kyPQ==|| joined server -2022-12-10 19:33:27.671550 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-10 19:35:48.137373 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2022-12-10 19:35:53.147963 + : HoodedSweetness31||pb-IF4UUxYEAQ==|| joined server -2022-12-10 19:37:00.373852 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-10 19:40:31.124825 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-10 19:42:08.482244 + : Android63750463||pb-IF4dU0lTHA==|| joined server -2022-12-10 19:45:44.255863 + : HoodedSweetness31||pb-IF4UUxYEAQ==|| joined server -2022-12-10 19:46:22.403904 + : Honorabl36||pb-IF4mU0kaEA==|| joined server -2022-12-10 19:49:37.110062 + : HoodedSweetness31||pb-IF4UUxYEAQ==|| joined server -2022-12-10 19:50:51.428816 + : aswanath99||pb-IF4dU08SLQ==|| joined server -2022-12-10 19:51:31.583263 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-10 19:52:00.689771 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-10 19:53:42.065018 + : NoName40878f||pb-IF4eVXAtKQ==|| joined server -2022-12-10 19:53:52.104128 + : Northerly5||pb-IF4lU0pZLA==|| joined server -2022-12-10 19:53:55.112879 + : Android64011487||pb-IF4-U1AsLg==|| joined server -2022-12-10 19:57:34.880551 + : Android63785059||pb-IF49U0oIUw==|| joined server -2022-12-10 20:00:02.373249 + : EternalChi||pb-IF4hVREELg==|| joined server -2022-12-10 20:00:40.497542 + : Aaryan9957||pb-IF4dUxRaIw==|| joined server -2022-12-10 20:04:20.342271 + : HEROgamer||pb-LV4FB0JTA0VAWFYUEUdXBlNDFg==|| joined server -2022-12-10 20:05:23.584690 + : Socrates43||pb-IF40U0oYBg==|| joined server -2022-12-10 20:05:28.607099 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-10 20:06:07.732259 + : ModalHandl||pb-IF4NU0cpFw==|| joined server -2022-12-10 20:10:44.748304 + : dynamic271||pb-IF4DVEpfCA==|| joined server -2022-12-10 20:14:48.583421 + : iyasiyas||pb-IF4BVVk5Ng==|| joined server -2022-12-10 20:16:42.953165 + : MadBOY5523||pb-LV4FUkUPAxNEVV8RRk5WBVVEEA==|| joined server -2022-12-10 20:18:35.365199 + : Android64023233||pb-IF4JU1A6VQ==|| joined server -2022-12-10 20:20:02.668924 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-10 20:21:24.943637 + : Rocky8464||pb-JiNJARBeUkNAVFpCFERXVVxHGEFfQFFK|| joined server -2022-12-10 20:24:10.525018 + : Whimsical8||pb-IF4QUlgKAA==|| joined server -2022-12-10 20:24:51.654906 + : IndependentBoard34||pb-IF4gU0Y7AQ==|| joined server -2022-12-10 20:25:24.794018 + : Unpleasa23||pb-IF4WU04CJw==|| joined server -2022-12-10 20:26:19.987918 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-10 20:30:50.941307 + : TheheAdlin||pb-IF5dU0oeCQ==|| joined server -2022-12-10 20:32:31.305579 + : GodplayerO||pb-IF4gUlAgLw==|| joined server -2022-12-10 20:33:13.441537 + : LawfulWhis||pb-IF4AVEgfMw==|| joined server -2022-12-10 20:35:42.957914 + : Android59842038||pb-IF4-Ulk_VA==|| joined server -2022-12-10 20:39:28.680079 + : S1DtheKID||pb-IF4AV3UfEA==|| joined server -2022-12-10 20:45:35.082117 + : Android63620717||pb-IF4jU0YGAA==|| joined server -2022-12-10 20:52:52.584173 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-10 20:52:56.599451 + : Aaryan9957||pb-IF4dUxRaIw==|| joined server -2022-12-10 20:52:58.611732 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-10 20:53:00.616046 + : Aaryan9957||pb-IF4dUxRaIw==|| joined server -2022-12-10 20:53:41.784391 + : MNXArmy123||pb-IF4CU0xfKA==|| joined server -2022-12-10 20:53:45.792076 + : wolverine||pb-IF4mU2w8Ng==|| joined server -2022-12-10 20:54:55.013695 + : KillerGing||pb-IEBJV0RZ|| joined server -2022-12-10 20:59:41.023979 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-10 21:00:26.267064 + : TUJABAAP00||pb-IF4TUxEoKg==|| joined server -2022-12-10 21:03:03.808187 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-10 21:03:58.964044 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-10 21:08:45.989214 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-10 21:10:09.259944 + : DhruvJoshi||pb-IF5UUmI9DA==|| joined server -2022-12-10 21:11:42.538192 + : Tgsbadman321||pb-IF4rU08aVg==|| joined server -2022-12-10 21:13:43.965215 + : DeadlyFly63846||pb-IF43VEQYAw==|| joined server -2022-12-10 21:21:55.711722 + : TUJABAAP00||pb-IF4TUxEoKg==|| joined server -2022-12-10 21:24:57.473792 + : ALAMINMIZI||pb-IF4cU0NdDw==|| joined server -2022-12-10 21:26:39.819997 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-10 21:27:48.062052 + : Trippy||pb-JiNJARBdXURFXV9DE0BUUFVGFUBaQFdB|| joined server -2022-12-10 21:28:13.148160 + : Unpunish16||pb-IF4DU1APDQ==|| joined server -2022-12-10 21:32:07.838363 + : GlassyCast||pb-IF4PU2YnKw==|| joined server -2022-12-10 21:33:36.209302 + : AryanSehga||pb-IF4OVU4lCQ==|| joined server -2022-12-10 21:34:30.364277 + : FastestThi||pb-IF4TU0I4Ew==|| joined server -2022-12-10 21:38:34.166106 + : GlassyCast||pb-IF4PU2YnKw==|| joined server -2022-12-10 21:39:06.294830 + : GlassyCast||pb-IF4PU2YnKw==|| joined server -2022-12-10 21:53:37.277586 + : Android60936273||pb-IF49U2EiVw==|| joined server -2022-12-10 21:58:51.213378 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-10 21:59:57.437429 + : pausaltkrym||pb-IF5SUlA8Lw==|| joined server -2022-12-10 22:23:36.211689 + : Android63760781||pb-IF5VU0wpFg==|| joined server -2022-12-10 23:01:42.322333 + : unbrakeabl||pb-IF5dU1EPDA==|| joined server -2022-12-10 23:06:36.414120 + : Engrossi43||pb-IF4OU1ACDQ==|| joined server -2022-12-10 23:25:29.154744 + : Escaknorrc||pb-IF4DVGkOAg==|| joined server -2022-12-10 23:51:38.730798 + : nnith||pb-IF4JU0xYJA==|| joined server -2022-12-10 23:52:49.003919 + : Android63907345||pb-IF4uU00xVQ==|| joined server -2022-12-10 23:53:13.092271 + : fabrigamer||pb-IF5XVUwuFQ==|| joined server -2022-12-11 00:00:18.610538 + : UpstreamI2||pb-IF5RU1MpVQ==|| joined server -2022-12-11 00:15:09.968007 + : ImplicitWa||pb-IF4xU3EoKg==|| joined server -2022-12-11 00:40:55.338983 + : unstoppabl||pb-IF4TU0o6Aw==|| joined server -2022-12-11 00:41:10.394458 + : Android53397872||pb-IF4lVVguJg==|| joined server -2022-12-11 00:41:19.428589 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-11 00:42:34.870539 + : Arnob007||pb-IF5SVXIHMA==|| joined server -2022-12-11 00:42:53.922235 + : Android63554999||pb-IF4cUhggLg==|| joined server -2022-12-11 00:43:57.310311 + : vishnuyadav2345||pb-IF4hKFca|| joined server -2022-12-11 00:47:57.109924 + : VenomousPh||pb-IF4-VWMoLg==|| joined server -2022-12-11 00:48:46.258409 + : ProdigalOutlay20||pb-IF4iU0QlAQ==|| joined server -2022-12-11 00:49:25.410206 + : Android63928735||pb-IF4BU00TEg==|| joined server -2022-12-11 00:49:57.495494 + : Android59245619||pb-IF5SUlVdIQ==|| joined server -2022-12-11 00:52:07.499836 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-11 00:52:07.500290 + : Arnob007||pb-IF5SVXIHMA==|| joined server -2022-12-11 00:53:49.835108 + : RighthandedHero89166||pb-IF4rPhUC|| joined server -2022-12-11 00:54:53.029842 + : Android63928735||pb-IF4BU00TEg==|| joined server -2022-12-11 00:55:16.110438 + : TusharSantoshGawande||pb-IF4pU00vDQ==|| joined server -2022-12-11 01:01:19.329496 + : RighthandedHero89166||pb-IF4rPhUC|| joined server -2022-12-11 01:04:21.911694 + : GreenerSetback31||pb-IF4wUnUuNQ==|| joined server -2022-12-11 01:04:26.932127 + : TallerNetw||pb-IF4iVW4SEw==|| joined server -2022-12-11 01:08:33.814897 + : sagar88822||pb-IF4vVUNfEA==|| joined server -2022-12-11 01:16:09.367846 + : Dharmeshkkm||pb-IF48VUIIBw==|| joined server -2022-12-11 01:16:37.470124 + : NonhumanIn||pb-IF4VU0YhFA==|| joined server -2022-12-11 01:20:30.210614 + : Dharmeshkkm||pb-IF48VUIIBw==|| joined server -2022-12-11 01:32:58.728002 + : BLOODFRAUD||pb-IF4xUxA7Vg==|| joined server -2022-12-11 01:35:32.255922 + : vinothmptc||pb-IF4LU28SJA==|| joined server -2022-12-11 01:35:53.312629 + : vinothmptc||pb-IF4LU28SJA==|| joined server -2022-12-11 01:41:48.521148 + : vinothmptc||pb-IF4LU28SJA==|| joined server -2022-12-11 01:55:10.349379 + : InanimateW||pb-IF4vUnY_Aw==|| joined server -2022-12-11 01:57:46.850400 + : StuckGuise||pb-IF4OU1BcCg==|| joined server -2022-12-11 01:58:12.940433 + : Android57437025||pb-IF5cUlQoIw==|| joined server -2022-12-11 01:58:29.990897 + : StuckGuise||pb-IF4OU1BcCg==|| joined server -2022-12-11 02:07:35.941477 + : UncertainSeargeant47||pb-IF5WUxgoDw==|| joined server -2022-12-11 02:08:30.148756 + : Android62256301||pb-IF5XU3QTFA==|| joined server -2022-12-11 02:14:37.451917 + : PeterSince||pb-IF4cVxMeDQ==|| joined server -2022-12-11 02:19:26.505442 + : AtomicImpr||pb-IF4BU0UnAQ==|| joined server -2022-12-11 02:20:57.850326 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-11 02:27:07.113104 + : ToothedFla||pb-IF5XU00PEg==|| joined server -2022-12-11 02:27:46.273380 + : TangyParli||pb-IF4pVXQsIg==|| joined server -2022-12-11 02:27:50.286592 + : shagun2611||pb-IF4IVGUqDA==|| joined server -2022-12-11 02:30:15.841347 + : jagu22wan||pb-IF4UUxYyXA==|| joined server -2022-12-11 02:30:26.873685 + : FluffliFol||pb-IF4DVVcoVA==|| joined server -2022-12-11 02:32:27.323760 + : MysticalWinter4796||pb-IF4sU3URVQ==|| joined server -2022-12-11 02:32:51.422823 + : Android64023146||pb-IF49U1A5HA==|| joined server -2022-12-11 02:37:53.548564 + : UKnowMeAJ||pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH|| joined server -2022-12-11 02:39:09.828653 + : YogeYogesh||pb-IF4DU3AABw==|| joined server -2022-12-11 02:40:20.041957 + : Android63564565||pb-IF5UU0dfBw==|| joined server -2022-12-11 02:40:47.120523 + : vivekbomb||pb-IF4VU047Vw==|| joined server -2022-12-11 02:41:08.183714 + : UKnowMeAJ||pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH|| joined server -2022-12-11 02:41:59.414627 + : Android63796554||pb-IF4NU0ojAA==|| joined server -2022-12-11 02:42:56.616665 + : MinimalTradition52||pb-IF4FU00_PA==|| joined server -2022-12-11 02:44:06.830491 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-11 02:44:18.865788 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-11 02:44:26.895761 + : InteriorDu||pb-IF4lUhECIQ==|| joined server -2022-12-11 02:45:34.111503 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-11 02:46:18.263949 + : Gibberish101||pb-IF4jNEwC|| joined server -2022-12-11 02:54:26.961007 + : GoldAutomo||pb-IF4mU1BSLw==|| joined server -2022-12-11 02:55:06.107801 + : Contraventionemperor||pb-IF4TUnA8AA==|| joined server -2022-12-11 02:56:20.392801 + : MANNPRAJAP||pb-IF4WU0UbMA==|| joined server -2022-12-11 02:56:55.545481 + : ObservableNest16||pb-IF4VU0g5Jw==|| joined server -2022-12-11 03:01:48.665346 + : GSPgagan96||pb-IF5TU3IBNA==|| joined server -2022-12-11 03:02:32.793105 + : LogicalDuck1803||pb-IF4lVG8eBA==|| joined server -2022-12-11 03:02:35.802083 + : Linux53813||pb-IF4xU1AuEQ==|| joined server -2022-12-11 03:02:45.850921 + : Jahzelxavi||pb-IF4WU2sIDg==|| joined server -2022-12-11 03:03:44.040645 + : WarmerTin4||pb-IF4zUkQkXA==|| joined server -2022-12-11 03:03:45.040684 + : jagu22wan||pb-IF4UUxYyXA==|| joined server -2022-12-11 03:04:22.166795 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-11 03:05:06.354274 + : WrongEnvy21||pb-IF4dUxhTLA==|| joined server -2022-12-11 03:05:27.426691 + : Thambi765||pb-IF5dU05SIQ==|| joined server -2022-12-11 03:05:44.504120 + : FrozenCarp||pb-IF4AU0wTCA==|| joined server -2022-12-11 03:06:55.865712 + : jagu22wan||pb-IF4UUxYyXA==|| joined server -2022-12-11 03:07:06.892776 + : NewGamer456ProGamer||pb-IF5QU3ISKA==|| joined server -2022-12-11 03:07:56.059047 + : WrongEnvy21||pb-IF4dUxhTLA==|| joined server -2022-12-11 03:08:27.157216 + : Gibberish101||pb-IF4jNEwC|| joined server -2022-12-11 03:09:04.289973 + : Android63717645||pb-IF5RU0svEQ==|| joined server -2022-12-11 03:09:21.344036 + : FranticFever44||pb-IF5RU3AjNA==|| joined server -2022-12-11 03:09:45.436564 + : GangsterTh||pb-IF4xU086Mg==|| joined server -2022-12-11 03:10:29.606030 + : PokeLover18||pb-IF4dUxRaHA==|| joined server -2022-12-11 03:10:44.660100 + : DrearyProm||pb-IF4QUxM-Bg==|| joined server -2022-12-11 03:11:19.774396 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-11 03:11:55.895956 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-11 03:13:04.116757 + : Gibberish101||pb-IF4jNEwC|| joined server -2022-12-11 03:13:55.308565 + : FranticFever44||pb-IF5RU3AjNA==|| joined server -2022-12-11 03:13:57.322542 + : FancyPan23||pb-IF5UUkMlDA==|| joined server -2022-12-11 03:14:24.419777 + : Android61267554||pb-IF4zU3M4Fg==|| joined server -2022-12-11 03:14:27.431395 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-11 03:14:37.474046 + : Android60482791||pb-IF4iUxUqUA==|| joined server -2022-12-11 03:14:39.476610 + : Darkelixr1||pb-IF4IU088NA==|| joined server -2022-12-11 03:15:08.580872 + : phiNix||pb-IF4cU0xZMw==|| joined server -2022-12-11 03:15:46.714507 + : Darkelixr1||pb-IF4IU088NA==|| joined server -2022-12-11 03:16:01.764729 + : Baralund||pb-IF4VUhAKEg==|| joined server -2022-12-11 03:16:10.800814 + : Darkelixr1||pb-IF4IU088NA==|| joined server -2022-12-11 03:16:52.145582 + : Anxlo999||pb-IF5RVGxZUQ==|| joined server -2022-12-11 03:16:56.158685 + : LankyTennis29||pb-IF4pUxEzNw==|| joined server -2022-12-11 03:17:08.207031 + : Anxlo999||pb-IF5RVGxZUQ==|| joined server -2022-12-11 03:18:43.554910 + : DoubtfulCell25||pb-IF4DUnYIFw==|| joined server -2022-12-11 03:19:44.778841 + : HeedlessCalcium28||pb-IF5WU3kZAQ==|| joined server -2022-12-11 03:19:56.801574 + : Android57708227||pb-IF48UkNTVA==|| joined server -2022-12-11 03:20:23.949229 + : HeedlessCalcium28||pb-IF5WU3kZAQ==|| joined server -2022-12-11 03:20:30.969847 + : Mateomtz99||pb-IF5UUm1bVA==|| joined server -2022-12-11 03:20:44.019675 + : 24KPureman||pb-IF4GK28s|| joined server -2022-12-11 03:22:32.393585 + : 24KPureman||pb-IF4GK28s|| joined server -2022-12-11 03:22:43.443492 + : Ceremoni27||pb-IF4xU08dKg==|| joined server -2022-12-11 03:22:52.476462 + : jagu22wan||pb-IF4UUxYyXA==|| joined server -2022-12-11 03:22:53.480275 + : Android63564565||pb-IF5UU0dfBw==|| joined server -2022-12-11 03:23:22.575558 + : TOOWEIRD4U||pb-IF4cIGYH|| joined server -2022-12-11 03:23:46.664215 + : Amielclar2||pb-IF4OVW8AKA==|| joined server -2022-12-11 03:25:16.989250 + : Sm1yle||pb-IF43Um0CIw==|| joined server -2022-12-11 03:25:36.067628 + : FranticFever44||pb-IF5RU3AjNA==|| joined server -2022-12-11 03:26:49.341977 + : Android48529836||pb-IF5VVW4MHw==|| joined server -2022-12-11 03:27:15.416342 + : Anxlo999||pb-IF5RVGxZUQ==|| joined server -2022-12-11 03:29:10.875172 + : MM||pb-IF5WUhEZKA==|| joined server -2022-12-11 03:29:37.973750 + : Android63910639||pb-IF4MU00GLg==|| joined server -2022-12-11 03:30:42.223244 + : AryanSolanki997||pb-IF4DHEki|| joined server -2022-12-11 03:31:01.285501 + : ExpedientTale44||pb-IF4hU0kZMw==|| joined server -2022-12-11 03:31:56.488887 + : Ambadykannan7878||pb-IF4wU3YdCw==|| joined server -2022-12-11 03:32:53.699208 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-11 03:33:34.848718 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-11 03:34:45.097176 + : Stochasti4||pb-IF4NUmY5Nw==|| joined server -2022-12-11 03:34:46.104632 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-11 03:35:17.211446 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-11 03:37:43.745006 + : Sumanth386||pb-IF5TUm4DNg==|| joined server -2022-12-11 03:39:47.185286 + : CHICKENBOO||pb-IF4AV1QqEQ==|| joined server -2022-12-11 03:40:14.306218 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-11 03:41:05.487597 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-11 03:41:47.656252 + : DhruvaSA||pb-IF4FU084EQ==|| joined server -2022-12-11 03:42:22.772824 + : Android63957105||pb-IF4UU08NVw==|| joined server -2022-12-11 03:43:46.059212 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-11 03:44:04.104033 + : KANAYARIDE||pb-IF41U08fCw==|| joined server -2022-12-11 03:45:15.349266 + : PC432163||pb-IF42Uk8uLQ==|| joined server -2022-12-11 03:45:18.352863 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-11 03:50:12.467922 + : NAVENthave||pb-IF4xU0MfLA==|| joined server -2022-12-11 03:50:13.473555 + : vinothmptc||pb-IF4LU28SJA==|| joined server -2022-12-11 03:50:43.600344 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-11 03:50:52.633122 + : Android63841062||pb-IF41U0seMg==|| joined server -2022-12-11 03:51:34.871871 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-11 03:51:43.911868 + : TOOWEIRD4U||pb-IF4cIGYH|| joined server -2022-12-11 03:53:20.291487 + : StableShot45||pb-IF4pU0UhVw==|| joined server -2022-12-11 03:54:17.503673 + : TriesomeComplacency||pb-IF5XVBUCFA==|| joined server -2022-12-11 03:54:25.532484 + : MonoCaprice47||pb-IF4UU0hfDQ==|| joined server -2022-12-11 03:55:39.791490 + : Rajjadhav9||pb-IF41U0Y5PA==|| joined server -2022-12-11 03:57:32.188643 + : AryanSolanki997||pb-IF4DHEki|| joined server -2022-12-11 04:00:03.759920 + : Android63796554||pb-IF4NU0ojAA==|| joined server -2022-12-11 04:00:39.895129 + : FranticFever44||pb-IF5RU3AjNA==|| joined server -2022-12-11 04:00:59.023814 + : Antibioti8||pb-IF4VVFIREg==|| joined server -2022-12-11 04:01:45.221821 + : Ykzone18||pb-IF4KUxQ9Kw==|| joined server -2022-12-11 04:04:29.809643 + : ashu42v||pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF|| joined server -2022-12-11 04:06:43.403005 + : HonorableEttin404||pb-IF4eU004Ew==|| joined server -2022-12-11 04:07:15.519866 + : unstoppabl||pb-IF4TU0o6Aw==|| joined server -2022-12-11 04:07:44.628556 + : Aegon8055||pb-IF4QUksSCg==|| joined server -2022-12-11 04:09:22.002815 + : Android63288902||pb-IF41U0ElPA==|| joined server -2022-12-11 04:09:33.047477 + : SonorousManager14542||pb-IF4HU3pSKA==|| joined server -2022-12-11 04:11:45.560213 + : IckyGauntl||pb-IF5SU3AxDA==|| joined server -2022-12-11 04:11:53.588364 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-11 04:16:56.688107 + : EdibleDrea||pb-IF42U1AxNQ==|| joined server -2022-12-11 04:17:03.720537 + : MonoCaprice47||pb-IF4UU0hfDQ==|| joined server -2022-12-11 04:17:19.794376 + : EthicalBul||pb-IF4JVW0JNQ==|| joined server -2022-12-11 04:18:06.052578 + : DeviousEli||pb-IF5VU007Ng==|| joined server -2022-12-11 04:18:27.123780 + : zakitcgame||pb-IF4XUk87Lg==|| joined server -2022-12-11 04:18:32.143548 + : Antibioti8||pb-IF4VVFIREg==|| joined server -2022-12-11 04:19:34.379962 + : jagu22wan||pb-IF4UUxYyXA==|| joined server -2022-12-11 04:20:33.596592 + : arfyze||pb-IF4oUkYsDQ==|| joined server -2022-12-11 04:22:01.900285 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-11 04:22:10.929986 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-11 04:22:23.985016 + : MoonlitLink53||pb-IF4RU049PA==|| joined server -2022-12-11 04:22:48.066415 + : Meanderi53||pb-IF4RVBEiAg==|| joined server -2022-12-11 04:24:25.424992 + : Meanderi53||pb-IF4RVBEiAg==|| joined server -2022-12-11 04:24:57.535525 + : MiraculousContrary29||pb-IF5UU3YxEA==|| joined server -2022-12-11 04:25:07.575647 + : Android57379873||pb-IF4mUnkKMA==|| joined server -2022-12-11 04:25:08.581463 + : ക്യാപ്റ്റൻ22||pb-IF4oU3hbEQ==|| joined server -2022-12-11 04:25:15.599224 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-11 04:27:20.016724 + : SeverestAp||pb-IF4jU0JaNg==|| joined server -2022-12-11 04:29:03.336413 + : Pragmati11||pb-IF4CVXAoAA==|| joined server -2022-12-11 04:29:24.423240 + : lazygamerw||pb-IF5TVUJcLA==|| joined server -2022-12-11 04:30:25.647146 + : COOLPROFFE||pb-JiNJARFbXUpJXVtGFEFTVVJEEUhdRlVB|| joined server -2022-12-11 04:31:24.894935 + : MonoCaprice47||pb-IF4UU0hfDQ==|| joined server -2022-12-11 04:33:49.416748 + : Humongou15||pb-IF4rUkQoDw==|| joined server -2022-12-11 04:33:51.422436 + : aslammalik||pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB|| joined server -2022-12-11 04:34:55.633561 + : Android62764913||pb-IF4sU3VSMg==|| joined server -2022-12-11 04:35:03.672753 + : Android61174087||pb-IF4AU2QnDg==|| joined server -2022-12-11 04:35:29.769460 + : BaseShovel31||pb-IF5XUk8dFA==|| joined server -2022-12-11 04:36:58.088520 + : Conformab8||pb-IF4rUkFSLw==|| joined server -2022-12-11 04:38:52.483860 + : Kingsman24||pb-IF4WUnMuCA==|| joined server -2022-12-11 04:39:01.523875 + : Android63017027||pb-IF4xU3goUA==|| joined server -2022-12-11 04:39:05.533771 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-11 04:39:16.559982 + : Jahangir22||pb-IF4lU08pMg==|| joined server -2022-12-11 04:39:58.684133 + : Darkelixr1||pb-IF4IU088NA==|| joined server -2022-12-11 04:40:08.721032 + : bijodicarp||pb-IF4TVWEnIg==|| joined server -2022-12-11 04:40:21.781164 + : QuackingC2||pb-IF4IVU9bLA==|| joined server -2022-12-11 04:40:36.826534 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-11 04:40:40.848408 + : UselessGuy||pb-IF4sUhk4JA==|| joined server -2022-12-11 04:40:53.894788 + : CulturalJa||pb-IF4pUxUDDQ==|| joined server -2022-12-11 04:41:47.054146 + : IreneRobin||pb-IF4SU00DNg==|| joined server -2022-12-11 04:42:39.230596 + : Sumanth386||pb-IF5TUm4DNg==|| joined server -2022-12-11 04:42:42.249221 + : HawtEngineer70740||pb-IF4cVxgoVg==|| joined server -2022-12-11 04:43:24.382791 + : NastyForem||pb-IF41U1AkIA==|| joined server -2022-12-11 04:43:46.474814 + : ArulSamuel||pb-IF4FU04jLA==|| joined server -2022-12-11 04:44:15.574818 + : CandiedRoc||pb-IF4UUhgMEg==|| joined server -2022-12-11 04:46:19.033690 + : MonoCaprice47||pb-IF4UU0hfDQ==|| joined server -2022-12-11 04:47:51.334782 + : Android42711919||pb-IF4SVEoIIw==|| joined server -2022-12-11 04:47:54.344301 + : IreneRobin||pb-IF4SU00DNg==|| joined server -2022-12-11 04:47:59.356133 + : Android42711919||pb-IF4SVEoIIw==|| joined server -2022-12-11 04:48:31.503737 + : bijodicarp||pb-IF4TVWEnIg==|| joined server -2022-12-11 04:48:49.581071 + : sukhmanpre||pb-IF5WU2tbXA==|| joined server -2022-12-11 04:49:05.641411 + : AryanSolanki997||pb-IF4DHEki|| joined server -2022-12-11 04:49:11.664701 + : Raaseviswa||pb-IF4IVXETKA==|| joined server -2022-12-11 04:49:24.713517 + : sukhmanpre||pb-IF5WU2tbXA==|| joined server -2022-12-11 04:50:31.989769 + : PlusCradle||pb-IF4-U0gfIg==|| joined server -2022-12-11 04:52:01.316679 + : Bluegamer417||pb-IF40U0deAw==|| joined server -2022-12-11 04:52:18.373888 + : DakshJashnani||pb-IF4yU1AmLg==|| joined server -2022-12-11 04:52:44.460646 + : aslammalik||pb-JiNJARBbUkFJVF5IFEVYVlVEEkJdQ1BB|| joined server -2022-12-11 04:52:48.474265 + : Android58632546||pb-IF4iUkwMEA==|| joined server -2022-12-11 04:52:51.481943 + : zant0z2005||pb-IF4VU04FCg==|| joined server -2022-12-11 04:53:57.857835 + : Android63199781||pb-IF5XU0IZAA==|| joined server -2022-12-11 04:54:29.967036 + : HunkyGem11||pb-IF5UU2hYNg==|| joined server -2022-12-11 04:54:45.030702 + : AbhishekAjay744||pb-IF4xU2EbKg==|| joined server -2022-12-11 04:54:49.043756 + : Karthick||pb-IF4PVE4cMg==|| joined server -2022-12-11 04:55:53.270072 + : UKnowMeAJ||pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH|| joined server -2022-12-11 04:56:21.353858 + : Android63626153||pb-IF4lUk04Cg==|| joined server -2022-12-11 04:56:40.420705 + : LitGovernm||pb-IF4vVWEnUA==|| joined server -2022-12-11 04:56:49.443602 + : Android62256590||pb-IF4OU3AoJg==|| joined server -2022-12-11 04:57:14.512730 + : Android61104453||pb-IF4rU2MkAQ==|| joined server -2022-12-11 04:58:26.796066 + : Android61104453||pb-IF4rU2MkAQ==|| joined server -2022-12-11 04:59:17.972755 + : Android63927749||pb-IF4wU04bAQ==|| joined server -2022-12-11 05:00:17.170329 + : MasterHitm||pb-IF4dU2paEQ==|| joined server -2022-12-11 05:00:36.244986 + : Android61104453||pb-IF4rU2MkAQ==|| joined server -2022-12-11 05:00:57.333854 + : PotentReco||pb-IF4sU0cpKQ==|| joined server -2022-12-11 05:03:14.853089 + : Android63988326||pb-IF4rU1AuNQ==|| joined server -2022-12-11 05:04:27.114904 + : IckyGauntl||pb-IF5SU3AxDA==|| joined server -2022-12-11 05:04:49.198170 + : Android63626049||pb-IF4UU0YSLg==|| joined server -2022-12-11 05:06:07.615251 + : HuskyStand||pb-IF4jUxVeJA==|| joined server -2022-12-11 05:07:18.066761 + : Omiii15||pb-IF4LU0wKIw==|| joined server -2022-12-11 05:07:23.084356 + : BRITTODON03||pb-IF4SU04JNg==|| joined server -2022-12-11 05:08:37.373679 + : MadBanjoPl||pb-IF5TV1o8XQ==|| joined server -2022-12-11 05:09:43.621369 + : Android62958044||pb-IF49VFcGNw==|| joined server -2022-12-11 05:09:53.673665 + : IndependentBoard34||pb-IF4gU0Y7AQ==|| joined server -2022-12-11 05:12:44.476990 + : pals3893||pb-IEdJV0QT|| joined server -2022-12-11 05:13:49.706142 + : Ykzone18||pb-IF4KUxQ9Kw==|| joined server -2022-12-11 05:13:56.732529 + : TiredMisus||pb-IF5cU1I-Ig==|| joined server -2022-12-11 05:15:10.013733 + : IreneRobin||pb-IF4SU00DNg==|| joined server -2022-12-11 05:16:07.207964 + : Jerald6440||pb-IF5dVWEJMg==|| joined server -2022-12-11 05:16:18.240128 + : Android63988326||pb-IF4rU1AuNQ==|| joined server -2022-12-11 05:18:22.696005 + : Android57379873||pb-IF4mUnkKMA==|| joined server -2022-12-11 05:21:20.372020 + : Incognit42||pb-IF4eU1ARDg==|| joined server -2022-12-11 05:21:44.447049 + : TurboGande||pb-IF4hUxghLg==|| joined server -2022-12-11 05:21:47.453316 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-11 05:22:08.524536 + : FirsthandT||pb-IF5UUhhYDg==|| joined server -2022-12-11 05:23:25.807234 + : wolvorine1||pb-IF5UUxQfNg==|| joined server -2022-12-11 05:23:32.834761 + : TurboGande||pb-IF4hUxghLg==|| joined server -2022-12-11 05:23:41.865306 + : Commmander||pb-IF4zU1AIMA==|| joined server -2022-12-11 05:25:41.354917 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-11 05:26:01.437866 + : dhineshbha||pb-JiNJARFeXUdAW1dHF05RVlBDEUZYTlNB|| joined server -2022-12-11 05:26:40.575078 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-11 05:26:43.583488 + : RAGExLUINO||pb-IF5SUkwMAg==|| joined server -2022-12-11 05:27:13.666935 + : Aashikanna||pb-IF4jU0cIPA==|| joined server -2022-12-11 05:29:09.061452 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-11 05:31:06.503183 + : burletejas||pb-IF4nVUIfUg==|| joined server -2022-12-11 05:31:28.588877 + : CherishedPlunder15||pb-IF4PU08qBw==|| joined server -2022-12-11 05:31:56.696836 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-11 05:32:36.840666 + : RustyUnic2||pb-IF42U0kbEg==|| joined server -2022-12-11 05:32:39.851287 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-11 05:33:55.072394 + : LoonyPixie77699||pb-IF5RVFJdVg==|| joined server -2022-12-11 05:34:25.191437 + : UnchartedDonor12||pb-IF4XU0ZZCA==|| joined server -2022-12-11 05:35:40.446151 + : UnchartedDonor12||pb-IF4XU0ZZCA==|| joined server -2022-12-11 05:36:01.516188 + : happychris||pb-IF4uCVM7|| joined server -2022-12-11 05:36:17.574823 + : WonderfulH||pb-IF4sVVgTAg==|| joined server -2022-12-11 05:36:25.612003 + : Android64004799||pb-IF4zU1AjHw==|| joined server -2022-12-11 05:36:30.628082 + : CrystalThrone2000||pb-IF5TLEwR|| joined server -2022-12-11 05:36:34.639783 + : DiscreetV2||pb-IF4qU0c_FA==|| joined server -2022-12-11 05:36:50.711798 + : LuckyGuard||pb-IF4yUk8mPA==|| joined server -2022-12-11 05:37:32.858707 + : omdayy||pb-IF4sVHUCKQ==|| joined server -2022-12-11 05:38:16.998559 + : LunaticSquadron26||pb-IF5UVG4lUg==|| joined server -2022-12-11 05:38:44.281589 + : Accredit31||pb-IF4OU1A9Fw==|| joined server -2022-12-11 05:39:54.523336 + : EarlierPub||pb-IF4PVXUYAw==|| joined server -2022-12-11 05:39:58.543722 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-11 05:40:12.589577 + : DirectedD3||pb-IF43UxAGCg==|| joined server -2022-12-11 05:40:56.728103 + : Torrenti16||pb-IF4RU0ksMQ==|| joined server -2022-12-11 05:41:23.840651 + : Android63578334||pb-IF48U0UEBw==|| joined server -2022-12-11 05:42:17.006596 + : SweptImitation46||pb-IF5SU0c_Fw==|| joined server -2022-12-11 05:42:55.140043 + : VISAKANTHEGAMER12||pb-IF4JVXlYCQ==|| joined server -2022-12-11 05:44:14.456128 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-11 05:47:57.549816 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-11 05:49:41.914461 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-11 05:49:53.961003 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-11 05:49:59.989845 + : UKnowMeAJ||pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH|| joined server -2022-12-11 05:50:10.030915 + : FrontPlane24||pb-IF4WVU9TLg==|| joined server -2022-12-11 05:50:18.130286 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-11 05:50:28.162647 + : FrontPlane24||pb-IF4WVU9TLg==|| joined server -2022-12-11 05:50:46.229676 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-11 05:51:25.366638 + : Android62256590||pb-IF4OU3AoJg==|| joined server -2022-12-11 05:51:32.399845 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-11 05:51:45.455239 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-11 05:52:07.537361 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-11 05:52:53.702907 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-11 05:52:56.720814 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-11 05:53:03.740206 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-11 05:53:07.758073 + : Invisible6||pb-IF4MU085LA==|| joined server -2022-12-11 05:54:47.175414 + : HootingNim||pb-IF4WUnofDw==|| joined server -2022-12-11 05:55:09.243982 + : jishnumb||pb-IF5XU0khNg==|| joined server -2022-12-11 05:57:32.129567 + : sooriyapraksh||pb-IF4cU09ZFw==|| joined server -2022-12-11 05:57:55.216627 + : FamousImpr||pb-IF4TU0oFAQ==|| joined server -2022-12-11 05:59:08.497272 + : SashaGoPewpew||pb-IF4PVU49EQ==|| joined server -2022-12-11 06:00:31.807196 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-11 06:00:35.829861 + : Android63982273||pb-IF5QU0ZTMw==|| joined server -2022-12-11 06:00:45.858541 + : Android63982273||pb-IF5QU0ZTMw==|| joined server -2022-12-11 06:01:07.939941 + : Hero678||pb-IF4jU0YGIA==|| joined server -2022-12-11 06:01:14.963276 + : Android62093703||pb-IF4LU20cEw==|| joined server -2022-12-11 06:01:42.057198 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-11 06:03:28.422978 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-11 06:03:58.530245 + : omdayy||pb-IF4sVHUCKQ==|| joined server -2022-12-11 06:06:26.024280 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-11 06:10:46.188082 + : NoName47568f||pb-IF4nVVgxUQ==|| joined server -2022-12-11 06:12:10.622553 + : catlover19||pb-JiNJARBfU0RGVFpHFUNXXFRBFUdYT1ZH|| joined server -2022-12-11 06:12:34.702340 + : Customary7||pb-IF4WU2ooNg==|| joined server -2022-12-11 06:12:46.735298 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-11 06:13:02.855926 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-11 06:13:10.888915 + : Jerald6440||pb-IF5dVWEJMg==|| joined server -2022-12-11 06:14:08.102902 + : NOMERCY||pb-IF49U0QJDw==|| joined server -2022-12-11 06:14:26.155740 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-11 06:17:22.771028 + : Android62537940||pb-IF5TU3U-JA==|| joined server -2022-12-11 06:17:47.039465 + : 24KPureman||pb-IF4GK28s|| joined server -2022-12-11 06:18:05.094866 + : HumanVictory4||pb-IF4LVEclAQ==|| joined server -2022-12-11 06:18:09.101306 + : balamuruga||pb-JiNJVxFfUktFXltAEU5UUVVLGERXRVJG|| joined server -2022-12-11 06:19:15.296396 + : Android50745211||pb-JiNJARBfVEZIXV9JEkRQVVZDF0leT1ZD|| joined server -2022-12-11 06:19:24.331965 + : COMMANDER5005||pb-IF5VUksPFw==|| joined server -2022-12-11 06:20:48.740194 + : J0kerr666||pb-LV4TA0FSAEsWCVxdGE9YVUhGFhJZWlkWV1QNDlIRRlwJExNFWVNV|| joined server -2022-12-11 06:20:50.753991 + : Android63692742||pb-IF5WU0kZJw==|| joined server -2022-12-11 06:21:49.005386 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-11 06:22:41.182745 + : Android63957105||pb-IF4UU08NVw==|| joined server -2022-12-11 06:22:57.236021 + : Preschool2||pb-IF4XU0w8NA==|| joined server -2022-12-11 06:23:06.267358 + : ronxbone||pb-IF4XU1BaKQ==|| joined server -2022-12-11 06:23:41.384118 + : omdayy||pb-IF4sVHUCKQ==|| joined server -2022-12-11 06:24:46.653371 + : mrpainless||pb-IF4PIFQ9|| joined server -2022-12-11 06:26:12.935461 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-11 06:27:01.104784 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-11 06:27:19.169613 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-11 06:27:31.214307 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-11 06:29:25.908466 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-11 06:30:54.199339 + : Android62537940||pb-IF5TU3U-JA==|| joined server -2022-12-11 06:31:57.510695 + : ImmobileUp||pb-IF4gUlU4IA==|| joined server -2022-12-11 06:32:36.814993 + : HappyNpc78||pb-IF4TUnMOAA==|| joined server -2022-12-11 06:33:39.996173 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-11 06:34:23.155309 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-11 06:35:03.281125 + : Android62717978||pb-IF4dU3QSKw==|| joined server -2022-12-11 06:35:08.313237 + : Romanreig4||pb-IF4gU0gfAA==|| joined server -2022-12-11 06:35:36.408669 + : Android63873735||pb-IF4FU0wNJA==|| joined server -2022-12-11 06:36:18.535831 + : Android63873735||pb-IF4FU0wNJA==|| joined server -2022-12-11 06:37:02.693510 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-11 06:37:38.819433 + : mihirsavat||pb-IF4qVFcnBg==|| joined server -2022-12-11 06:38:21.980755 + : kumargchet||pb-IF4FU28fVg==|| joined server -2022-12-11 06:39:28.208247 + : Android63873735||pb-IF4FU0wNJA==|| joined server -2022-12-11 06:40:25.386139 + : Honorabl36||pb-IF4mU0kaEA==|| joined server -2022-12-11 06:42:35.137174 + : CrimsonDua||pb-IF4IV3Q5CA==|| joined server -2022-12-11 06:43:08.260401 + : ObsequiousClearing23||pb-IF43VRUoMQ==|| joined server -2022-12-11 06:43:55.439286 + : khizaralam||pb-IF4nU1FcBg==|| joined server -2022-12-11 06:44:13.510327 + : Agzx2244||pb-IF4PV24yPA==|| joined server -2022-12-11 06:45:31.826241 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-11 06:46:07.961446 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-11 06:46:36.065689 + : Torrenti16||pb-IF4RU0ksMQ==|| joined server -2022-12-11 06:46:38.071502 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-11 06:47:17.209750 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-11 06:48:50.696318 + : J0kerr666||pb-LV4TA0FSAEsWCVxdGE9YVUhGFhJZWlkWV1QNDlIRRlwJExNFWVNV|| joined server -2022-12-11 06:50:13.004787 + : SomberFree||pb-IF4GVRlSIw==|| joined server -2022-12-11 06:51:06.172503 + : SomberFree||pb-IF4GVRlSIw==|| joined server -2022-12-11 06:54:44.171748 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-11 06:54:51.199863 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-11 06:55:01.239227 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-11 06:55:12.267364 + : NOMERCY||pb-IF49U0QJDw==|| joined server -2022-12-11 06:55:15.280034 + : mrpainless||pb-IF4PIFQ9|| joined server -2022-12-11 06:55:17.293227 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-11 06:55:23.320881 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-11 06:55:39.375219 + : StoneFair2||pb-JiNJARFZUktHX15HGEZRXF1KE0dZQVNB|| joined server -2022-12-11 06:55:48.412327 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-11 06:55:53.436496 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-11 06:56:04.480040 + : EngrossingFarmer8411||pb-IF4dV0deMw==|| joined server -2022-12-11 06:56:21.551079 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-11 06:56:49.657593 + : Sairaj1999||pb-JiNJARFZUUpEWF5JFkdTXVdEEEVdQ1ZA|| joined server -2022-12-11 06:58:13.950356 + : Romanreig4||pb-IF4gU0gfAA==|| joined server -2022-12-11 06:58:42.033702 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-11 06:58:51.069158 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-11 06:58:59.094441 + : J0kerr666||pb-LV4TA0FSAEsWCVxdGE9YVUhGFhJZWlkWV1QNDlIRRlwJExNFWVNV|| joined server -2022-12-11 06:59:10.141807 + : Sanjithtam||pb-IF5dU0c-KA==|| joined server -2022-12-11 07:00:08.357566 + : wolfgamerx007||pb-IF4JCxY6|| joined server -2022-12-11 07:01:21.583157 + : sagar88822||pb-IF4vVUNfEA==|| joined server -2022-12-11 07:02:24.794710 + : Amargamer07||pb-IF5cU0UnKg==|| joined server -2022-12-11 07:02:34.834821 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-11 07:04:59.347561 + : EngrossingFarmer8411||pb-IF4dV0deMw==|| joined server -2022-12-11 07:05:24.450781 + : Android61975304||pb-IF4xU2waHw==|| joined server -2022-12-11 07:07:27.919427 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-11 07:07:47.994562 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-11 07:11:32.796725 + : CivilizedT||pb-IF4wVFcZPw==|| joined server -2022-12-11 07:15:24.652214 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-11 07:15:59.773921 + : LIONHUNTER||pb-IF4eVGc7Cw==|| joined server -2022-12-11 07:17:21.081111 + : GinormousD||pb-IF4eU2VTAg==|| joined server -2022-12-11 07:17:44.166351 + : ExistentC3||pb-IF4SVWoFUw==|| joined server -2022-12-11 07:18:49.438122 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-11 07:18:52.445171 + : CheeryAlie||pb-JiNJARBeU0ZJXllJEkJTXVBGEkhcR1BL|| joined server -2022-12-11 07:19:46.638598 + : MilesAboveYou||pb-IF4CUhM5AQ==|| joined server -2022-12-11 07:21:18.928080 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-11 07:21:29.970331 + : ScarcePenny14||pb-IF4WVWk9LQ==|| joined server -2022-12-11 07:21:50.035642 + : OutrightPeriphery10||pb-IF4HVFFTUg==|| joined server -2022-12-11 07:21:53.049625 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-11 07:23:12.312541 + : Linux52467||pb-IF5WUxQlEw==|| joined server -2022-12-11 07:23:18.335196 + : WrongEnvy21||pb-IF4dUxhTLA==|| joined server -2022-12-11 07:23:29.389124 + : djisodksk||pb-IF4AU0USAw==|| joined server -2022-12-11 07:25:20.794428 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-11 07:25:51.897388 + : Android63497911||pb-IF4BV0kZNw==|| joined server -2022-12-11 07:26:13.975992 + : Nirucraze||pb-IF4gU3cIPQ==|| joined server -2022-12-11 07:26:26.019571 + : MasterRosh||pb-IF40VG0dIA==|| joined server -2022-12-11 07:26:54.134519 + : srk5553||pb-IF4oVU8CIQ==|| joined server -2022-12-11 07:27:38.316680 + : UngainlyAluminum35||pb-IF4XU0E5AQ==|| joined server -2022-12-11 07:28:00.401938 + : ClammyLazi||pb-IF4gU25SBw==|| joined server -2022-12-11 07:28:06.409502 + : SomberFree||pb-IF4GVRlSIw==|| joined server -2022-12-11 07:28:37.510480 + : Sumanth386||pb-IF5TUm4DNg==|| joined server -2022-12-11 07:28:59.607213 + : Sumanth386||pb-IF5TUm4DNg==|| joined server -2022-12-11 07:29:06.639455 + : WatchfulD4||pb-IF43U1ACJA==|| joined server -2022-12-11 07:29:28.722916 + : Wikirex200||pb-IF41V0UyDg==|| joined server -2022-12-11 07:29:39.757738 + : DeceptiveL||pb-IF5WU28fFg==|| joined server -2022-12-11 07:29:46.773890 + : Sumanth386||pb-IF5TUm4DNg==|| joined server -2022-12-11 07:30:16.888695 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2022-12-11 07:32:05.283018 + : sobikd||pb-IF4lVUo7Eg==|| joined server -2022-12-11 07:32:33.393632 + : TheFightin||pb-IF4sU2EINg==|| joined server -2022-12-11 07:33:37.625811 + : DiscreetV2||pb-IF4qU0c_FA==|| joined server -2022-12-11 07:36:39.287859 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-11 07:37:57.610906 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-11 07:39:01.834591 + : 9584555539||pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB|| joined server -2022-12-11 07:39:42.960295 + : Android63017027||pb-IF4xU3goUA==|| joined server -2022-12-11 07:40:08.053609 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-11 07:40:12.061552 + : Sumanth386||pb-IF5TUm4DNg==|| joined server -2022-12-11 07:40:47.198360 + : InmostRebu||pb-IF4cU1A_Jw==|| joined server -2022-12-11 07:41:11.280710 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-11 07:41:50.428567 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-11 07:43:28.839540 + : ARJUNVV288||pb-JiNJARFbXUtFXV9BGURWV1ZFGUBZQ1BA|| joined server -2022-12-11 07:43:33.849950 + : sOFF1C1AL||pb-IF5VU0cyFg==|| joined server -2022-12-11 07:43:36.867936 + : DeceptiveL||pb-IF5WU28fFg==|| joined server -2022-12-11 07:43:49.917082 + : AbhishekAjay744||pb-IF4xU2EbKg==|| joined server -2022-12-11 07:45:01.165811 + : YoungPart4||pb-IF4LUlocBA==|| joined server -2022-12-11 07:45:15.209755 + : AdvancedExpomnent45m||pb-IF4JU3MxCQ==|| joined server -2022-12-11 07:45:18.220489 + : MRKHINDIGA||pb-IF4OU04GBg==|| joined server -2022-12-11 07:46:10.381494 + : viru199554||pb-IF4VU3EjBg==|| joined server -2022-12-11 07:46:29.460103 + : DeceptiveL||pb-IF5WU28fFg==|| joined server -2022-12-11 07:51:53.574144 + : KuldeepPan||pb-IF4BU3ZbLw==|| joined server -2022-12-11 07:52:05.626067 + : Honorabl36||pb-IF4mU0kaEA==|| joined server -2022-12-11 07:52:14.660454 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-11 07:52:36.756136 + : Jayrajsinh||pb-IF4SU00JHw==|| joined server -2022-12-11 07:53:34.943528 + : DryGenius2||pb-IF5UU0sfLw==|| joined server -2022-12-11 07:54:06.046310 + : AgenteZn||pb-IF4DVVYgKg==|| joined server -2022-12-11 07:54:37.189234 + : Uchiha22Ob||pb-JiNJARBeXEdHW1lIEEFVVVJAEEdbR1ZE|| joined server -2022-12-11 07:54:43.207488 + : Contagio46||pb-IF5UV28pEA==|| joined server -2022-12-11 07:55:02.264609 + : parshuavin||pb-IF4dUmgyDQ==|| joined server -2022-12-11 07:55:17.311482 + : sooriyapraksh||pb-IF4cU09ZFw==|| joined server -2022-12-11 07:57:07.681071 + : Jayrajsinh||pb-IF4SU00JHw==|| joined server -2022-12-11 07:57:21.737516 + : FrontPlane24||pb-IF4WVU9TLg==|| joined server -2022-12-11 07:57:34.779531 + : Android57702426||pb-IF4QUkI8MA==|| joined server -2022-12-11 07:57:59.862271 + : FrontPlane24||pb-IF4WVU9TLg==|| joined server -2022-12-11 07:58:19.939519 + : RoyalProph||pb-IF5TV2MzCA==|| joined server -2022-12-11 07:59:03.086343 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-11 07:59:49.248459 + : SarDarRaj4924||pb-IF4nVVhZNw==|| joined server -2022-12-11 07:59:50.251745 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-11 08:00:41.404977 + : safeek111||pb-IF4MVWdTMg==|| joined server -2022-12-11 08:00:51.444465 + : ക്യാപ്റ്റൻ22||pb-IF4oU3hbEQ==|| joined server -2022-12-11 08:00:59.466174 + : happygame2||pb-IF4BU3QhUQ==|| joined server -2022-12-11 08:01:35.591862 + : Contagio46||pb-IF5UV28pEA==|| joined server -2022-12-11 08:02:30.781037 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-11 08:02:47.830025 + : EuphoricOr||pb-IF4zVEoqXA==|| joined server -2022-12-11 08:02:49.835262 + : SarDarRaj4924||pb-IF4nVVhZNw==|| joined server -2022-12-11 08:03:36.991577 + : Sairaj1999||pb-JiNJARFZUUpEWF5JFkdTXVdEEEVdQ1ZA|| joined server -2022-12-11 08:04:30.151926 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-11 08:05:43.443101 + : saikv||pb-IF4BU2UCVQ==|| joined server -2022-12-11 08:05:52.484482 + : DsbParth||pb-IF4GU1AEIA==|| joined server -2022-12-11 08:06:45.679217 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-11 08:09:25.281744 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-11 08:09:52.381251 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-11 08:10:01.413739 + : Sairaj1999||pb-JiNJARFZUUpEWF5JFkdTXVdEEEVdQ1ZA|| joined server -2022-12-11 08:11:53.794423 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-11 08:12:21.898887 + : Skaka03||pb-IF4nVUFYJg==|| joined server -2022-12-11 08:13:18.109530 + : ClashofCla||pb-IF4UVWYEVQ==|| joined server -2022-12-11 08:13:26.134247 + : Good1666||pb-IF4zU1AYUQ==|| joined server -2022-12-11 08:13:38.187990 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-11 08:13:54.250121 + : DeceptiveL||pb-IF5WU28fFg==|| joined server -2022-12-11 08:14:09.319059 + : Alexer6003||pb-IF4HU2c8LA==|| joined server -2022-12-11 08:14:18.350776 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-11 08:14:22.370633 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-11 08:14:29.398820 + : Alexer6003||pb-IF4HU2c8LA==|| joined server -2022-12-11 08:14:30.399604 + : DoubtfulCell25||pb-IF4DUnYIFw==|| joined server -2022-12-11 08:15:17.632631 + : IndependentBoard34||pb-IF4gU0Y7AQ==|| joined server -2022-12-11 08:15:33.695921 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-11 08:18:40.383020 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-11 08:18:44.396766 + : ക്യാപ്റ്റൻ22||pb-IF4oU3hbEQ==|| joined server -2022-12-11 08:18:49.424301 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-11 08:20:08.738260 + : ക്യാപ്റ്റൻ22||pb-IF4oU3hbEQ==|| joined server -2022-12-11 08:20:12.757888 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-11 08:21:01.962743 + : ItzMeRoman||pb-IF4KV04FIg==|| joined server -2022-12-11 08:21:12.007707 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-11 08:21:17.016926 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-11 08:22:19.240160 + : likhonsgam||pb-IF4OU0IENA==|| joined server -2022-12-11 08:22:30.285260 + : Android58032831||pb-IF5UUkg5XQ==|| joined server -2022-12-11 08:22:55.374058 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-11 08:23:40.516338 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-11 08:24:12.624353 + : TOOWEIRD4U||pb-IF4cIGYH|| joined server -2022-12-11 08:24:15.640182 + : SpiritualA||pb-IF5SU2MfCw==|| joined server -2022-12-11 08:24:28.687477 + : Android55601587||pb-IF4SUhJZPw==|| joined server -2022-12-11 08:24:47.733878 + : DrearyProm||pb-IF4QUxM-Bg==|| joined server -2022-12-11 08:24:53.746622 + : BasuMachak||pb-JiNJARBdXUtFVFxIGUJQVVREFklXRVZH|| joined server -2022-12-11 08:25:21.872947 + : PeakAlarm3243||pb-IF5TVVIaLA==|| joined server -2022-12-11 08:25:42.956795 + : Rajjadhav9||pb-IF41U0Y5PA==|| joined server -2022-12-11 08:25:52.001673 + : Android55601587||pb-IF4SUhJZPw==|| joined server -2022-12-11 08:27:10.282610 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-11 08:27:43.386004 + : MrRockstar||pb-JiNJARFZV0pCVVdCGU5YU1FBFEdYRVJH|| joined server -2022-12-11 08:28:31.576176 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-11 08:28:45.626288 + : Android59637314||pb-IF4JUlcjMQ==|| joined server -2022-12-11 08:28:55.662812 + : Android56455015||pb-IF4VUnAREQ==|| joined server -2022-12-11 08:30:53.087294 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-11 08:31:06.126907 + : AgreeableSemblance50||pb-IF4HU0wiCQ==|| joined server -2022-12-11 08:32:41.472726 + : Manjeet9834||pb-IF4tU0cEHA==|| joined server -2022-12-11 08:34:09.805136 + : ASSASINSUR||pb-IF4sVXA_AA==|| joined server -2022-12-11 08:34:18.830085 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-11 08:35:29.088421 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-11 08:38:07.645718 + : SpiritualA||pb-IF5SU2MfCw==|| joined server -2022-12-11 08:38:13.662156 + : Android63998117||pb-IF40U08YIA==|| joined server -2022-12-11 08:39:15.865134 + : GSPgagan96||pb-IF5TU3IBNA==|| joined server -2022-12-11 08:41:10.307782 + : Combativ25||pb-IF4DUlYFAg==|| joined server -2022-12-11 08:41:44.431901 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-11 08:42:13.532307 + : MetricNoun||pb-IF4dU2sOPQ==|| joined server -2022-12-11 08:42:35.603062 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-11 08:43:15.733933 + : MADGame179||pb-IF4MU3YeJg==|| joined server -2022-12-11 08:44:01.946293 + : LocalLolan||pb-IF4IU3lZFA==|| joined server -2022-12-11 08:44:20.010768 + : LocalLolan||pb-IF4IU3lZFA==|| joined server -2022-12-11 08:45:14.181220 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-11 08:45:25.212640 + : DrearyProm||pb-IF4QUxM-Bg==|| joined server -2022-12-11 08:45:35.250262 + : DrearyProm||pb-IF4QUxM-Bg==|| joined server -2022-12-11 08:46:16.386150 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-11 08:47:05.538449 + : CHICKENBOO||pb-IF4AV1QqEQ==|| joined server -2022-12-11 08:47:36.657143 + : EarlierPub||pb-IF4PVXUYAw==|| joined server -2022-12-11 08:48:38.855175 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-11 08:51:02.320516 + : HootingDra||pb-IF5TAHQO|| joined server -2022-12-11 08:51:10.346161 + : Alexer6003||pb-IF4HU2c8LA==|| joined server -2022-12-11 08:51:48.517606 + : AbhishekAjay744||pb-IF4xU2EbKg==|| joined server -2022-12-11 08:51:55.533307 + : Jayrajsinh||pb-IF4SU00JHw==|| joined server -2022-12-11 08:52:38.664400 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-11 08:52:52.722967 + : plasticgame1423||pb-IF4sU00yMg==|| joined server -2022-12-11 08:53:51.933395 + : Android63732318||pb-IF4MU0gPAA==|| joined server -2022-12-11 08:55:03.173920 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-11 08:56:15.439437 + : UninhabitedSpider57||pb-IF42U0w7UA==|| joined server -2022-12-11 08:57:06.604348 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-11 08:58:42.951700 + : KookyVeloc||pb-IF4SU3gHFg==|| joined server -2022-12-11 08:59:36.113446 + : DiscreetV2||pb-IF4qU0c_FA==|| joined server -2022-12-11 09:00:19.222015 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-11 09:06:42.882526 + : EarlierPub||pb-IF4PVXUYAw==|| joined server -2022-12-11 09:06:59.932365 + : SecretFoot||pb-IF4pU1AJNA==|| joined server -2022-12-11 09:07:23.020257 + : SecretFoot||pb-IF4pU1AJNA==|| joined server -2022-12-11 09:07:47.114513 + : EarlierPub||pb-IF4PVXUYAw==|| joined server -2022-12-11 09:08:02.184929 + : itsjustine||pb-IF5XU08jLA==|| joined server -2022-12-11 09:08:34.310599 + : EarlierPub||pb-IF4PVXUYAw==|| joined server -2022-12-11 09:08:39.333292 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-11 09:08:43.341644 + : rawoofraw||pb-IF5RU1EbMw==|| joined server -2022-12-11 09:10:38.753150 + : EarlierPub||pb-IF4PVXUYAw==|| joined server -2022-12-11 09:10:54.787759 + : EarlierPub||pb-IF4PVXUYAw==|| joined server -2022-12-11 09:11:43.954505 + : SecretFoot||pb-IF4pU1AJNA==|| joined server -2022-12-11 09:12:04.014337 + : SecretFoot||pb-IF4pU1AJNA==|| joined server -2022-12-11 09:13:22.240153 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-11 09:18:51.432875 + : Android59950580||pb-IF4cUloODA==|| joined server -2022-12-11 09:19:10.485343 + : BrickTroll||pb-IF4IUlEmJw==|| joined server -2022-12-11 09:19:47.637938 + : king1of1brave1gaming||pb-IF4TVUcGKQ==|| joined server -2022-12-11 09:20:13.720715 + : BrickTroll||pb-IF4IUlEmJw==|| joined server -2022-12-11 09:20:35.807521 + : wishkt123||pb-JiNJARFTVEREXV1CEkVQV1VKE0dfR1JD|| joined server -2022-12-11 09:21:23.014622 + : Alexer6003||pb-IF4HU2c8LA==|| joined server -2022-12-11 09:21:37.070451 + : GenerousYo||pb-IF5cU1EZEw==|| joined server -2022-12-11 09:22:10.177934 + : BrickTroll||pb-IF4IUlEmJw==|| joined server -2022-12-11 09:24:05.631245 + : shazan9950||pb-IF5QVFRdIQ==|| joined server -2022-12-11 09:26:30.136257 + : LoadedMart||pb-IF5QKnNb|| joined server -2022-12-11 09:26:33.141169 + : Suiiiiiiii||pb-IF4-UmsuXA==|| joined server -2022-12-11 09:27:21.293137 + : Trushank||pb-IF4zU08lLA==|| joined server -2022-12-11 09:27:39.359128 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-11 09:28:22.506167 + : AbhishekAjay744||pb-IF4xU2EbKg==|| joined server -2022-12-11 09:28:32.542352 + : Ranger16ft||pb-IF4sU04cAA==|| joined server -2022-12-11 09:28:58.681593 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-11 09:29:56.880027 + : CheeryAlie||pb-JiNJARBeU0ZJXllJEkJTXVBGEkhcR1BL|| joined server -2022-12-11 09:30:22.975297 + : Obstinat51||pb-IF5UU1IOUw==|| joined server -2022-12-11 09:30:28.996593 + : rawoofraw||pb-IF5RU1EbMw==|| joined server -2022-12-11 09:31:05.108906 + : Android63913012||pb-IF5XU1AkDw==|| joined server -2022-12-11 09:31:13.140963 + : RAEEEEEEEEEEEEEEEEES||pb-IF4wBUUK|| joined server -2022-12-11 09:31:34.212332 + : viru199554||pb-IF4VU3EjBg==|| joined server -2022-12-11 09:33:10.522106 + : sahilupadh||pb-JiNJARFdUkJHWVxJEU5XVFFGFUBbRldK|| joined server -2022-12-11 09:36:27.188899 + : sahilupadh||pb-JiNJARFdUkJHWVxJEU5XVFFGFUBbRldK|| joined server -2022-12-11 09:36:41.247232 + : sahilupadh||pb-JiNJARFdUkJHWVxJEU5XVFFGFUBbRldK|| joined server -2022-12-11 09:36:54.294277 + : sahilupadh||pb-JiNJARFdUkJHWVxJEU5XVFFGFUBbRldK|| joined server -2022-12-11 09:37:58.495463 + : AgenteZn||pb-IF4DVVYgKg==|| joined server -2022-12-11 09:39:41.915830 + : Android63461793||pb-IF5XU0UFUQ==|| joined server -2022-12-11 09:43:01.586773 + : Android55490267||pb-IF41UmhZPA==|| joined server -2022-12-11 09:45:50.315027 + : PickyOnion8951||pb-IF4jUWY5|| joined server -2022-12-11 09:47:00.540753 + : Android63728390||pb-IF4HU0gSFw==|| joined server -2022-12-11 09:47:02.552404 + : Android64031529||pb-IF4IU1A6Aw==|| joined server -2022-12-11 09:48:42.893549 + : WontedSickness36||pb-IF4UUnkDXQ==|| joined server -2022-12-11 09:48:45.909763 + : ShockingT3||pb-IF43U04RPQ==|| joined server -2022-12-11 09:48:51.927833 + : MonoCaprice47||pb-IF4UU0hfDQ==|| joined server -2022-12-11 09:49:52.125197 + : MoveableReminder36||pb-IF4iUkghEQ==|| joined server -2022-12-11 09:49:59.157038 + : TOOWEIRD4U||pb-IF4cIGYH|| joined server -2022-12-11 09:50:09.196232 + : DapperConspiracy20||pb-IF4UVVUNIA==|| joined server -2022-12-11 09:50:15.215913 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-11 09:50:36.293414 + : sahilkhatri343593||pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL|| joined server -2022-12-11 09:50:41.302770 + : NeedfulCon||pb-IF4OVEZTPA==|| joined server -2022-12-11 09:51:08.387393 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-11 09:51:57.530542 + : kumargchet||pb-IF4FU28fVg==|| joined server -2022-12-11 09:52:02.543865 + : MoveableReminder36||pb-IF4iUkghEQ==|| joined server -2022-12-11 09:52:45.702422 + : WantedHidi||pb-IF4yU08CDQ==|| joined server -2022-12-11 09:52:55.727934 + : Megachariz||pb-IF5UU1ApMg==|| joined server -2022-12-11 09:53:18.828741 + : NOMERCY||pb-IF49U0QJDw==|| joined server -2022-12-11 09:53:20.834304 + : SilverDearth2041||pb-IF4CVUsiNA==|| joined server -2022-12-11 09:55:54.369351 + : NoName39890e||pb-IF4KUxhfCA==|| joined server -2022-12-11 09:57:52.932682 + : ChewySmell||pb-IF49U08dJg==|| joined server -2022-12-11 09:58:04.962322 + : Android63855360||pb-IF4MU0wnLg==|| joined server -2022-12-11 09:58:41.115579 + : HootingDra||pb-IF5TAHQO|| joined server -2022-12-11 09:58:48.146151 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-11 09:59:56.375907 + : ChewySmell||pb-IF49U08dJg==|| joined server -2022-12-11 10:00:38.498456 + : Bange3646||pb-IF4lU3YPNg==|| joined server -2022-12-11 10:03:18.043763 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-11 10:03:28.073247 + : sahilkhatri343593||pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL|| joined server -2022-12-11 10:04:32.309737 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-11 10:11:52.037364 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-11 10:12:28.171929 + : Lawrence07||pb-IF4MU08YJw==|| joined server -2022-12-11 10:12:48.229943 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-11 10:13:05.278001 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-11 10:13:14.327934 + : Lawrence07||pb-IF4MU08YJw==|| joined server -2022-12-11 10:13:25.355465 + : PeripheralUnity40||pb-IF4SU0YBVA==|| joined server -2022-12-11 10:13:38.406859 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-11 10:13:42.420833 + : vikey3563||pb-IF4xU1AkMw==|| joined server -2022-12-11 10:14:08.507120 + : nancymeran||pb-IF5cUnQmAg==|| joined server -2022-12-11 10:15:15.751770 + : Jayrajsinh||pb-IF4SU00JHw==|| joined server -2022-12-11 10:17:11.187796 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-11 10:17:24.236142 + : HeySmooth2||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-11 10:17:34.254373 + : TOOWEIRD4U||pb-IF4cIGYH|| joined server -2022-12-11 10:18:50.502007 + : Android64031661||pb-IF5dU1I8FA==|| joined server -2022-12-11 10:19:00.548536 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-11 10:19:30.657192 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-11 10:21:25.053966 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-11 10:21:39.115168 + : Pro007em||pb-JiNJARBTUUtJWl1GE0FSU1NDGUJbQVNH|| joined server -2022-12-11 10:22:00.174325 + : GoDFather6||pb-IF4pVHAlKw==|| joined server -2022-12-11 10:22:51.353558 + : sahilkhatri343593||pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL|| joined server -2022-12-11 10:23:53.673564 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-11 10:24:55.892628 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-11 10:25:11.931022 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-11 10:25:16.953132 + : abinash219||pb-IF4lVxQuHQ==|| joined server -2022-12-11 10:26:20.165676 + : sahilkhatri343593||pb-JiNJARFdVUFBXF5FFUdVXFdEE0JdQllL|| joined server -2022-12-11 10:27:34.495266 + : Ebullien32||pb-IF4zU1AFHA==|| joined server -2022-12-11 10:27:38.514442 + : GAMEmAker0||pb-IF4yU3EYVQ==|| joined server -2022-12-11 10:27:53.576516 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-11 10:29:11.812110 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-11 10:33:26.638773 + : TSMentVans||pb-IF4lU086KQ==|| joined server -2022-12-11 10:35:23.049336 + : paratròóper||pb-IF4IV04ZKw==|| joined server -2022-12-11 10:36:29.298826 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-11 10:37:04.423230 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-11 10:37:07.426293 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-11 10:37:54.586899 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-11 10:38:03.622983 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-11 10:38:16.661170 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-11 10:38:45.747416 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-11 10:39:40.972671 + : ImpliedHit||pb-IF5TUlENVw==|| joined server -2022-12-11 10:40:34.373256 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-11 10:40:47.428032 + : AXDK10||pb-IF4zVWgyHw==|| joined server -2022-12-11 10:41:16.534795 + : Android62917641||pb-IF4sU3YFMg==|| joined server -2022-12-11 10:43:33.153793 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-11 10:44:43.398375 + : Saumay65||pb-IF4QU3cfPQ==|| joined server -2022-12-11 10:47:35.991931 + : kukkututtu002||pb-IF5QU0MaXA==|| joined server -2022-12-11 10:48:40.223585 + : EarlierPub||pb-IF4PVXUYAw==|| joined server -2022-12-11 10:48:51.264700 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-11 10:48:54.282781 + : Robertjr24||pb-IF4HU1AyDQ==|| joined server -2022-12-11 10:49:00.292412 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-11 10:49:19.365853 + : Android63584172||pb-IF4tU0UaIA==|| joined server -2022-12-11 10:49:23.373972 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-11 10:49:33.402988 + : UniqueSeal||pb-IF4PVExeIA==|| joined server -2022-12-11 10:50:06.497187 + : PseudoAttendance18||pb-IF4VVWsGIA==|| joined server -2022-12-11 10:50:58.674453 + : PseudoAttendance18||pb-IF4VVWsGIA==|| joined server -2022-12-11 10:53:20.172688 + : WildestThirst11||pb-IF4-VVgzMA==|| joined server -2022-12-11 10:53:56.292195 + : ProdigalAc||pb-IF4AVUgDDA==|| joined server -2022-12-11 10:55:23.565812 + : HoodedSweetness31||pb-IF4UUxYEAQ==|| joined server -2022-12-11 10:57:17.338479 + : Occasion28||pb-IF4HU1FZIg==|| joined server -2022-12-11 10:58:09.507762 + : mrsaifuuuu||pb-IF4WU05cNA==|| joined server -2022-12-11 10:59:11.730363 + : RetailMidn||pb-IF4CU0Y5Ew==|| joined server -2022-12-11 11:02:23.437584 + : HandyPitch36||pb-IF4VUxUbNQ==|| joined server -2022-12-11 11:04:03.783105 + : Nirucraze||pb-IF4gU3cIPQ==|| joined server -2022-12-11 11:04:19.831665 + : HumdrumFrame7||pb-IF5RVG8EUw==|| joined server -2022-12-11 11:04:36.875551 + : ChewySmell||pb-IF49U08dJg==|| joined server -2022-12-11 11:06:24.247292 + : StoneTruck||pb-IF4cU04_Dw==|| joined server -2022-12-11 11:08:42.729383 + : RoyalProph||pb-IF5TV2MzCA==|| joined server -2022-12-11 11:09:45.985082 + : Android63766296||pb-IF4yU0kEFQ==|| joined server -2022-12-11 11:10:01.045893 + : Undeniab11||pb-IF4HUkoxEA==|| joined server -2022-12-11 11:10:23.330355 + : Android63989539||pb-IF5SU1EHPw==|| joined server -2022-12-11 11:10:40.397880 + : Android61186465||pb-IF4oUkYfAg==|| joined server -2022-12-11 11:11:13.522466 + : shravanm08||pb-JiNJARBYXURBXFdFFkdZV1NKGUlfQldA|| joined server -2022-12-11 11:11:23.569938 + : HumdrumFrame7||pb-IF5RVG8EUw==|| joined server -2022-12-11 11:11:24.575935 + : THANATOS6660||pb-IF4sVFkqEw==|| joined server -2022-12-11 11:11:40.622218 + : HumdrumFrame7||pb-IF5RVG8EUw==|| joined server -2022-12-11 11:11:51.655359 + : AirbornePa||pb-IF4cU0gqBg==|| joined server -2022-12-11 11:12:38.845371 + : Rajjadhav9||pb-IF41U0Y5PA==|| joined server -2022-12-11 11:12:48.887697 + : Rajjadhav9||pb-IF41U0Y5PA==|| joined server -2022-12-11 11:12:51.896602 + : AsteroidBo||pb-IF4CU04ePQ==|| joined server -2022-12-11 11:12:55.915203 + : Android62362658||pb-IF4gU3EoVg==|| joined server -2022-12-11 11:13:07.958384 + : GinormousD||pb-IF4eU2VTAg==|| joined server -2022-12-11 11:14:30.285032 + : Vivavinokratos2||pb-IF43FxQb|| joined server -2022-12-11 11:15:05.396990 + : dragonssup||pb-IF4hUklbMA==|| joined server -2022-12-11 11:15:16.436737 + : HandyPitch36||pb-IF4VUxUbNQ==|| joined server -2022-12-11 11:16:07.598293 + : Android62362658||pb-IF4gU3EoVg==|| joined server -2022-12-11 11:16:25.664179 + : SAHILJOSHI2003||pb-IF4DV3UZUA==|| joined server -2022-12-11 11:17:26.866074 + : Saiyan||pb-IF4uUnIBBg==|| joined server -2022-12-11 11:19:25.377781 + : Perfidio20||pb-IF5SV2VbAQ==|| joined server -2022-12-11 11:20:08.536432 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-11 11:21:49.923183 + : YashRenoun||pb-IF4VUlcBVQ==|| joined server -2022-12-11 11:22:08.993025 + : TouchyFanc||pb-IF4UUxc_UQ==|| joined server -2022-12-11 11:23:13.226343 + : Rajjadhav9||pb-IF41U0Y5PA==|| joined server -2022-12-11 11:24:48.606589 + : Android63852857||pb-IF4TU00pJA==|| joined server -2022-12-11 11:26:18.901003 + : AsteroidBo||pb-IF4CU04ePQ==|| joined server -2022-12-11 11:27:35.145173 + : WintryCart||pb-IF4XV1QcNA==|| joined server -2022-12-11 11:27:44.181328 + : sravankuma||pb-IF5cLXUc|| joined server -2022-12-11 11:27:55.219571 + : knarcsilve||pb-IF4sU00yHQ==|| joined server -2022-12-11 11:28:35.359285 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-11 11:29:43.601171 + : kingpop64||pb-IF5QU24DFg==|| joined server -2022-12-11 11:29:56.662486 + : ValidArbit||pb-IF4TUm1eNQ==|| joined server -2022-12-11 11:30:48.842343 + : ZADKIEL||pb-IF4wU00DEA==|| joined server -2022-12-11 11:30:50.847096 + : SVRVasanth||pb-IF4sU0wYEQ==|| joined server -2022-12-11 11:31:16.937544 + : UJJWALkr8569||pb-IF4eVE9dFA==|| joined server -2022-12-11 11:33:41.470128 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-11 11:33:47.481502 + : SlipperyA2||pb-IF41UkVdJg==|| joined server -2022-12-11 11:34:18.579812 + : SlipperyA2||pb-IF41UkVdJg==|| joined server -2022-12-11 11:34:50.682605 + : DiscreetV2||pb-IF4qU0c_FA==|| joined server -2022-12-11 11:35:05.733160 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-11 11:35:23.904723 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-11 11:35:58.017065 + : HyperHay18||pb-IF4KU1EpNw==|| joined server -2022-12-11 11:36:01.025340 + : FavoriteEs||pb-IF4AU00sEw==|| joined server -2022-12-11 11:36:51.378137 + : sahilupadh||pb-JiNJARFdUkJHWVxJEU5XVFFGFUBbRldK|| joined server -2022-12-11 11:37:19.478713 + : UJJWALkr8569||pb-IF4eVE9dFA==|| joined server -2022-12-11 11:38:10.683142 + : LogicalDuck1803||pb-IF4lVG8eBA==|| joined server -2022-12-11 11:38:47.819464 + : ARUNKAIZEN||pb-IF4jVHNTDQ==|| joined server -2022-12-11 11:42:04.473354 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-11 11:42:12.499495 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-11 11:42:45.605464 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-11 11:43:34.768547 + : WroughtDistance50||pb-IF4VUxUbNQ==|| joined server -2022-12-11 11:45:14.157907 + : LORDHanzoStar||pb-IF4qUkQ9CA==|| joined server -2022-12-11 11:46:28.485827 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-11 11:48:55.233477 + : marimol870||pb-IF4dVGU7Cw==|| joined server -2022-12-11 11:49:46.416320 + : TiredShiel||pb-IF4tBWhf|| joined server -2022-12-11 11:50:06.493952 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-11 11:50:31.575733 + : PulmonarySquire9||pb-IF4zVUIENA==|| joined server -2022-12-11 11:50:34.585538 + : SlipperyA2||pb-IF41UkVdJg==|| joined server -2022-12-11 11:50:36.592646 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-11 11:50:44.621328 + : PulmonarySquire9||pb-IF4zVUIENA==|| joined server -2022-12-11 11:51:07.707707 + : Android62211118||pb-IF4HU28eKA==|| joined server -2022-12-11 11:51:49.859250 + : RCXELITE00||pb-IF4OU1AoNA==|| joined server -2022-12-11 11:53:56.316341 + : MesmerizingPartner22||pb-IF4nVXgeIA==|| joined server -2022-12-11 11:54:24.412139 + : RCXELITE00||pb-IF4OU1AoNA==|| joined server -2022-12-11 11:55:54.727414 + : Android49072957||pb-IF4FVW8tUA==|| joined server -2022-12-11 11:56:12.794821 + : NonOp43||pb-IF4tU04mMg==|| joined server -2022-12-11 11:56:21.819529 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-11 11:56:53.930459 + : Android64031676||pb-IF48U1FSKg==|| joined server -2022-12-11 11:59:34.504490 + : Immeasura8||pb-IF5VUlYjNw==|| joined server -2022-12-11 12:00:13.625468 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-11 12:00:14.626580 + : BeefySheep47678||pb-IF5QUhdeNA==|| joined server -2022-12-11 12:00:27.674663 + : paratròóper||pb-IF4IV04ZKw==|| joined server -2022-12-11 12:00:36.694500 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-11 12:01:00.777224 + : SahilRisingStar0920||pb-IF4jU04xLQ==|| joined server -2022-12-11 12:01:37.919210 + : Kingslayermrroman||pb-IF4PH08l|| joined server -2022-12-11 12:03:08.222244 + : IndependentBoard34||pb-IF4gU0Y7AQ==|| joined server -2022-12-11 12:04:26.477751 + : Sumanth386||pb-IF5TUm4DNg==|| joined server -2022-12-11 12:07:28.151162 + : BouncyTrucker29384||pb-IF4-VEsEJA==|| joined server -2022-12-11 12:12:23.233365 + : Anayshadow||pb-IF4WU0pdMw==|| joined server -2022-12-11 12:12:48.323535 + : BouncyTrucker29384||pb-IF4-VEsEJA==|| joined server -2022-12-11 12:14:04.628550 + : Kingslayermrroman||pb-IF4PH08l|| joined server -2022-12-11 12:14:11.651941 + : Android54753699||pb-IF5QUmMACw==|| joined server -2022-12-11 12:14:35.734029 + : MrBEAR900||pb-IF4hVEMpVg==|| joined server -2022-12-11 12:19:06.807561 + : Detectab18||pb-IF43UmojEA==|| joined server -2022-12-11 12:21:58.467482 + : SlowDiplodocus47602||pb-IF4XU0UYAA==|| joined server -2022-12-11 12:23:18.737702 + : topcrimina||pb-IF4cUhgSDg==|| joined server -2022-12-11 12:23:27.768119 + : Irrefutab3||pb-IF41U09TUQ==|| joined server -2022-12-11 12:24:28.974630 + : PC601332||pb-IF4dU3dZHw==|| joined server -2022-12-11 12:25:42.716104 + : SectarianPioneer25||pb-IF4KU3JdDA==|| joined server -2022-12-11 12:25:47.738642 + : MAMMU3853V||pb-IF4wUnY4Vg==|| joined server -2022-12-11 12:27:29.148406 + : RAGExLUINO||pb-IF5SUkwMAg==|| joined server -2022-12-11 12:27:36.172507 + : AzureHurricane8||pb-IF4eU0UIAA==|| joined server -2022-12-11 12:27:56.252107 + : ROLEXsir1111||pb-IF4RU24pIA==|| joined server -2022-12-11 12:28:08.298502 + : Deepak11De||pb-IF40UhVdVA==|| joined server -2022-12-11 12:29:37.918229 + : InvasiveS2||pb-IF4tUmYMXA==|| joined server -2022-12-11 12:30:01.997535 + : GowthamRamesh2006||pb-IF4-VGsMIQ==|| joined server -2022-12-11 12:30:05.011014 + : yravishank||pb-JiNJARFfXEpBWlpGEUdRVlJCEklXQ1NH|| joined server -2022-12-11 12:30:37.129720 + : Android64025104||pb-IF4yU1A6Kg==|| joined server -2022-12-11 12:31:15.443308 + : kingSpider1475||pb-IF4PU3NeLA==|| joined server -2022-12-11 12:31:24.490405 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-11 12:31:42.549623 + : KELS0502||pb-IF5dEEVS|| joined server -2022-12-11 12:32:39.723033 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-11 12:33:13.856901 + : Android55846320||pb-IF4yUmsiXQ==|| joined server -2022-12-11 12:33:18.878089 + : KELS0502||pb-IF5dEEVS|| joined server -2022-12-11 12:33:42.959387 + : UndatedIntegrity9||pb-IF4dVWk7DQ==|| joined server -2022-12-11 12:33:55.010979 + : 24KGOLDop||pb-IF4BVVMmBw==|| joined server -2022-12-11 12:34:17.078912 + : harshadkarale007||pb-IF4BU0wpDw==|| joined server -2022-12-11 12:36:57.920430 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-11 12:37:58.341052 + : Android56623002||pb-IF4-UnIyUQ==|| joined server -2022-12-11 12:39:28.661608 + : Android48907943||pb-IF4DVW4HFA==|| joined server -2022-12-11 12:39:45.713795 + : weLLcOmech||pb-JiNJARBfVERGXF5EGU5QXFBKGUNaQVFF|| joined server -2022-12-11 12:40:13.808861 + : CosmicOutl||pb-IF4yUng_XA==|| joined server -2022-12-11 12:40:45.926766 + : shazan9950||pb-IF5QVFRdIQ==|| joined server -2022-12-11 12:40:50.943234 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-11 12:41:25.076934 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-11 12:41:55.206856 + : omdayy||pb-IF4sVHUCKQ==|| joined server -2022-12-11 12:42:30.330770 + : WildestThirst11||pb-IF4-VVgzMA==|| joined server -2022-12-11 12:42:50.404531 + : UnbornObse||pb-IF4LU3IhCg==|| joined server -2022-12-11 12:43:49.630461 + : Itzyuvaa||pb-IF4IUmsBEg==|| joined server -2022-12-11 12:45:04.096522 + : KELS0502||pb-IF5dEEVS|| joined server -2022-12-11 12:45:11.112811 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-11 12:45:14.118148 + : Android48907943||pb-IF4DVW4HFA==|| joined server -2022-12-11 12:45:55.298888 + : Evolutio10||pb-IF4AU0cZCA==|| joined server -2022-12-11 12:46:25.389798 + : Android63692742||pb-IF5WU0kZJw==|| joined server -2022-12-11 12:46:34.421355 + : Android64020233||pb-IF4zU1AJCg==|| joined server -2022-12-11 12:47:10.552554 + : CoolAcolyt||pb-JiNJARBTV0BGXV1HFUdWVVdEEUdeQ1lD|| joined server -2022-12-11 12:48:10.768772 + : Immortal10||pb-IF4nV1AODw==|| joined server -2022-12-11 12:48:32.846481 + : Android62716790||pb-IF4tU3UJBg==|| joined server -2022-12-11 12:48:43.897532 + : Android62716790||pb-IF4tU3UJBg==|| joined server -2022-12-11 12:49:04.983758 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-11 12:49:25.032529 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-11 12:50:34.260850 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-11 12:50:56.364088 + : PromisingQueso53||pb-IF4FU3hTJg==|| joined server -2022-12-11 12:51:20.448648 + : shazan9950||pb-IF5QVFRdIQ==|| joined server -2022-12-11 12:51:30.485215 + : daskks||pb-IF4oUhIOAA==|| joined server -2022-12-11 12:51:53.585787 + : DrawnJacka||pb-IF41U1ApEg==|| joined server -2022-12-11 12:52:55.820107 + : prolonewol||pb-IF5VU2EPUA==|| joined server -2022-12-11 12:53:48.043101 + : DreamyStor||pb-IF4jU01cCQ==|| joined server -2022-12-11 12:54:12.126786 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-11 12:54:15.139997 + : FrolicZest||pb-IF4pVWMMBA==|| joined server -2022-12-11 12:55:04.312484 + : MNXArmy123||pb-IF4CU0xfKA==|| joined server -2022-12-11 12:55:19.357629 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-11 12:56:35.644850 + : MNXArmy123||pb-IF4CU0xfKA==|| joined server -2022-12-11 12:57:56.871049 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-11 12:58:10.915498 + : 9584555539||pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB|| joined server -2022-12-11 12:58:38.010204 + : Chalaja69||pb-IF49U08IKg==|| joined server -2022-12-11 12:59:28.198829 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-11 13:00:14.359823 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-11 13:00:20.390665 + : Attitudeboy997||pb-IF4dVFgCLg==|| joined server -2022-12-11 13:00:33.541327 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-11 13:01:08.653990 + : FascinatingLocus26||pb-IF5VUlYjEA==|| joined server -2022-12-11 13:01:44.768074 + : BHAVESH264||pb-IF40U0kGIA==|| joined server -2022-12-11 13:03:16.061283 + : HonorableEttin404||pb-IF4eU004Ew==|| joined server -2022-12-11 13:03:25.078852 + : UndatedIntegrity9||pb-IF4dVWk7DQ==|| joined server -2022-12-11 13:03:40.132708 + : RougherCyc||pb-IF4oU3MhIQ==|| joined server -2022-12-11 13:03:51.168348 + : anshmaurya||pb-IF42V1c7Vg==|| joined server -2022-12-11 13:05:02.409300 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-11 13:05:20.493874 + : BHAVESH264||pb-IF40U0kGIA==|| joined server -2022-12-11 13:07:06.489024 + : Sumanth386||pb-IF5TUm4DNg==|| joined server -2022-12-11 13:07:06.489303 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-11 13:07:15.506565 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-11 13:07:18.510692 + : Attitudeboy997||pb-IF4dVFgCLg==|| joined server -2022-12-11 13:07:25.527112 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-11 13:07:26.533751 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-11 13:07:30.547875 + : HoneyProgression37||pb-IF4XU3gkNw==|| joined server -2022-12-11 13:07:35.565285 + : Trippy||pb-JiNJARBdXURFXV9DE0BUUFVGFUBaQFdB|| joined server -2022-12-11 13:07:45.598211 + : Sumanth386||pb-IF5TUm4DNg==|| joined server -2022-12-11 13:07:50.624843 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-11 13:09:04.899220 + : VenousJack||pb-IF4LU04tIw==|| joined server -2022-12-11 13:09:22.954067 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-11 13:09:29.982468 + : 11MAXTON11||pb-IF5QU1EMXA==|| joined server -2022-12-11 13:09:37.006526 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-11 13:10:31.202662 + : HotChicken96163||pb-IF4DV1haCg==|| joined server -2022-12-11 13:10:49.266073 + : Aesthetica||pb-IF4sU08SEQ==|| joined server -2022-12-11 13:10:53.273192 + : LegitFly69||pb-IF4VVVQdAg==|| joined server -2022-12-11 13:11:33.411791 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-11 13:12:11.553271 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-11 13:12:32.631974 + : Android57051983||pb-IF4gUnYNNA==|| joined server -2022-12-11 13:12:40.656165 + : PrescientOre19||pb-IF4IVXMlVQ==|| joined server -2022-12-11 13:13:33.865166 + : Android57051983||pb-IF4gUnYNNA==|| joined server -2022-12-11 13:13:42.895152 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-11 13:14:38.116328 + : sagar88822||pb-IF4vVUNfEA==|| joined server -2022-12-11 13:15:27.294723 + : Devil77181908||pb-IF4dUFk_|| joined server -2022-12-11 13:16:30.460779 + : MagneticAm||pb-IF5RU0IvPA==|| joined server -2022-12-11 13:17:53.770976 + : Android63970828||pb-IF4pU08BVA==|| joined server -2022-12-11 13:18:06.818588 + : Preventab2||pb-IF4hU0oSFw==|| joined server -2022-12-11 13:18:14.850214 + : Preventab2||pb-IF4hU0oSFw==|| joined server -2022-12-11 13:20:42.319167 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-11 13:21:15.413107 + : UselessGuy||pb-IF4sUhk4JA==|| joined server -2022-12-11 13:22:15.628634 + : AdvancedExpomnent45m||pb-IF4JU3MxCQ==|| joined server -2022-12-11 13:22:16.635572 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-11 13:23:11.837881 + : BeefySheep47678||pb-IF5QUhdeNA==|| joined server -2022-12-11 13:23:49.982119 + : Android64032628||pb-IF4iU1AgNQ==|| joined server -2022-12-11 13:24:29.110791 + : MagneticAm||pb-IF5RU0IvPA==|| joined server -2022-12-11 13:24:41.151155 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-11 13:24:45.166845 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-11 13:24:46.172994 + : Android56595293||pb-IF4nUnINHw==|| joined server -2022-12-11 13:24:52.184885 + : DiscreetV2||pb-IF4qU0c_FA==|| joined server -2022-12-11 13:26:59.682855 + : SteepNumbe||pb-IF4SU1AaEA==|| joined server -2022-12-11 13:27:09.742622 + : OptimumOve||pb-IF4dU2M4CA==|| joined server -2022-12-11 13:28:12.962898 + : DiscreetV2||pb-IF4qU0c_FA==|| joined server -2022-12-11 13:29:07.152699 + : Booty2rior||pb-IF4FU08JVA==|| joined server -2022-12-11 13:29:25.217727 + : TricksterH||pb-IF40U0UcFQ==|| joined server -2022-12-11 13:29:26.224165 + : ThankfulLi||pb-IF4BU0wkJg==|| joined server -2022-12-11 13:29:27.229374 + : Android62430724||pb-IF4hU3EgJA==|| joined server -2022-12-11 13:29:39.285449 + : patelbhai7||pb-IF4pV3McIg==|| joined server -2022-12-11 13:30:16.410830 + : Aoodkkk148||pb-IF4PUlAFVw==|| joined server -2022-12-11 13:30:35.475569 + : Drollpole0||pb-IF4AU0UGFw==|| joined server -2022-12-11 13:31:23.659324 + : MARTIENDAV||pb-IF40VWYlHQ==|| joined server -2022-12-11 13:32:31.893643 + : FervidPlur||pb-IF4-UxI7Mg==|| joined server -2022-12-11 13:32:49.933059 + : Contagio46||pb-IF5UV28pEA==|| joined server -2022-12-11 13:32:54.952987 + : LogicalDuck1803||pb-IF4lVG8eBA==|| joined server -2022-12-11 13:32:58.959785 + : NeuralHawk||pb-IF4sVXoOBw==|| joined server -2022-12-11 13:33:01.973326 + : rahbarkhan1||pb-IF43VVMREg==|| joined server -2022-12-11 13:34:49.365841 + : Persnicke3||pb-IF4tUlIgBg==|| joined server -2022-12-11 13:35:19.464820 + : DiffidentHoplite31||pb-IF4sU0wcBA==|| joined server -2022-12-11 13:35:23.477774 + : CorporateS||pb-IF4TU20JLA==|| joined server -2022-12-11 13:35:46.543666 + : Android60386993||pb-IF4PUxQiDQ==|| joined server -2022-12-11 13:36:19.642520 + : HoneyProgression37||pb-IF4XU3gkNw==|| joined server -2022-12-11 13:36:57.769563 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-11 13:37:34.938424 + : chugambaran||pb-IF42U2wGFw==|| joined server -2022-12-11 13:37:41.963125 + : chugambaran||pb-IF42U2wGFw==|| joined server -2022-12-11 13:37:50.986112 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-11 13:38:00.007132 + : Lokeii56||pb-IF5XU1IgHA==|| joined server -2022-12-11 13:38:58.235479 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-11 13:39:04.257880 + : meetraul||pb-IF4TU00FLg==|| joined server -2022-12-11 13:39:18.326954 + : Android60482791||pb-IF4iUxUqUA==|| joined server -2022-12-11 13:39:30.374067 + : Lokeii56||pb-IF5XU1IgHA==|| joined server -2022-12-11 13:39:49.455043 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-11 13:41:00.712937 + : Gregariou8||pb-IF4UU0wFIA==|| joined server -2022-12-11 13:41:12.754152 + : PetulantEm||pb-IF4wU0wRDQ==|| joined server -2022-12-11 13:42:16.963548 + : Persnicke3||pb-IF4tUlIgBg==|| joined server -2022-12-11 13:43:39.234713 + : Lokeii56||pb-IF5XU1IgHA==|| joined server -2022-12-11 13:43:58.277890 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-11 13:44:28.385195 + : Android63782341||pb-IF4KU0tZUw==|| joined server -2022-12-11 13:45:50.738739 + : ClarkyTheL||pb-IF5RU1NeDQ==|| joined server -2022-12-11 13:45:57.756170 + : CrinklyGri||pb-IF5WU1IDEA==|| joined server -2022-12-11 13:46:01.771303 + : Android60386993||pb-IF4PUxQiDQ==|| joined server -2022-12-11 13:46:12.829777 + : Android62863448||pb-IF4cU1BaNA==|| joined server -2022-12-11 13:47:54.189940 + : Insidiou14||pb-IF4IU1BTIA==|| joined server -2022-12-11 13:48:21.302008 + : suriyapsk||pb-JiNJARBSVkRAWV1GFERQUVNCEkVeRlZC|| joined server -2022-12-11 13:49:08.482966 + : ClarkyTheL||pb-IF5RU1NeDQ==|| joined server -2022-12-11 13:49:37.591696 + : Android64026296||pb-IF41U1AkUg==|| joined server -2022-12-11 13:49:56.664882 + : LegitBlade||pb-IF43VE4OVw==|| joined server -2022-12-11 13:49:57.666997 + : WatchfulD4||pb-IF43U1ACJA==|| joined server -2022-12-11 13:50:50.878607 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-11 13:51:32.030132 + : IckyGauntl||pb-IF5SU3AxDA==|| joined server -2022-12-11 13:51:46.078442 + : Contagio46||pb-IF5UV28pEA==|| joined server -2022-12-11 13:51:51.101187 + : Fahmygamin||pb-IF4lU08mNQ==|| joined server -2022-12-11 13:52:13.208940 + : sugamkulal16||pb-IF4RU04mPA==|| joined server -2022-12-11 13:52:35.305363 + : Android60482791||pb-IF4iUxUqUA==|| joined server -2022-12-11 13:53:27.500390 + : daskks||pb-IF4oUhIOAA==|| joined server -2022-12-11 13:54:25.710238 + : SpiritualA||pb-IF5SU2MfCw==|| joined server -2022-12-11 13:54:29.724850 + : LethargicHotshot9113||pb-IF4-UnVTXQ==|| joined server -2022-12-11 13:54:40.757334 + : Antibioti8||pb-IF4VVFIREg==|| joined server -2022-12-11 13:55:03.841723 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-11 13:55:20.915037 + : NoName49162d||pb-IF4gVRIvKw==|| joined server -2022-12-11 13:55:41.967330 + : DowncastCruise28||pb-IF4KUnEmVg==|| joined server -2022-12-11 13:55:44.972932 + : PoeticFire35261||pb-JiNJARBeUUBAWFtFGUVZU11BGEJYR1FF|| joined server -2022-12-11 13:55:51.991138 + : KANAYARIDE||pb-IF41U08fCw==|| joined server -2022-12-11 13:56:58.201404 + : Android62429587||pb-IF42U3JfFw==|| joined server -2022-12-11 13:57:43.370473 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-11 13:58:02.453393 + : Android42718925||pb-IF4mVEoyVQ==|| joined server -2022-12-11 13:58:50.631217 + : IckyGauntl||pb-IF5SU3AxDA==|| joined server -2022-12-11 13:59:00.666478 + : Jerald6440||pb-IF5dVWEJMg==|| joined server -2022-12-11 13:59:23.741951 + : KRISHNAM10||pb-IF5VAmRc|| joined server -2022-12-11 14:00:10.910959 + : FranticFever44||pb-IF5RU3AjNA==|| joined server -2022-12-11 14:00:30.981750 + : WonderfulH||pb-IF4sVVgTAg==|| joined server -2022-12-11 14:00:31.982109 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-11 14:00:49.032962 + : IckyGauntl||pb-IF5SU3AxDA==|| joined server -2022-12-11 14:01:00.083007 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-11 14:02:25.383468 + : Luscifer13||pb-IF4jVXItPQ==|| joined server -2022-12-11 14:03:21.576972 + : jeevanthor||pb-IF4GVUFcVQ==|| joined server -2022-12-11 14:03:43.657504 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-11 14:04:08.752454 + : CraftyDemo||pb-IF4lU2UnBA==|| joined server -2022-12-11 14:04:15.775209 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-11 14:04:17.783408 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-11 14:04:26.816450 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-11 14:05:18.985317 + : AgileAdven||pb-IF4xVUQeDQ==|| joined server -2022-12-11 14:06:02.124284 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-11 14:06:07.156743 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-11 14:06:15.185680 + : WHITU||pb-IF5TAHQO|| joined server -2022-12-11 14:06:22.203479 + : TUJABAAP00||pb-IF4TUxEoKg==|| joined server -2022-12-11 14:07:21.441040 + : WHITU||pb-IF5TAHQO|| joined server -2022-12-11 14:09:13.767603 + : EighthSupp||pb-IF4qUxIoDw==|| joined server -2022-12-11 14:10:06.962089 + : SlipperyA2||pb-IF41UkVdJg==|| joined server -2022-12-11 14:10:25.014222 + : srk5553||pb-IF4oVU8CIQ==|| joined server -2022-12-11 14:10:58.109051 + : sOFF1C1AL||pb-IF5VU0cyFg==|| joined server -2022-12-11 14:11:37.246172 + : Android63959201||pb-IF4-U09cLg==|| joined server -2022-12-11 14:13:25.593465 + : CraftyDemo||pb-IF4lU2UnBA==|| joined server -2022-12-11 14:13:27.603820 + : FanaticHye||pb-IF4NUng8HA==|| joined server -2022-12-11 14:14:10.743825 + : RootinTootinOoze9610||pb-IF4rUxdeUg==|| joined server -2022-12-11 14:14:14.758242 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-11 14:14:43.852984 + : shafeeqmoh||pb-IF4XV3MjHQ==|| joined server -2022-12-11 14:15:39.060828 + : Webssz||pb-IF4mU2IpDA==|| joined server -2022-12-11 14:16:49.315077 + : Espenavo||pb-IF4BUmI9UQ==|| joined server -2022-12-11 14:17:25.445758 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-11 14:17:47.532969 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-11 14:18:03.585808 + : Android63217110||pb-IF4oU3oZNg==|| joined server -2022-12-11 14:18:19.646718 + : RattlingConjurer9704||pb-IF5VU04tCQ==|| joined server -2022-12-11 14:18:35.710095 + : sOFF1C1AL||pb-IF5VU0cyFg==|| joined server -2022-12-11 14:19:02.825147 + : Espenavo||pb-IF4BUmI9UQ==|| joined server -2022-12-11 14:19:28.909725 + : IamPrathme||pb-IF4dU1BdJw==|| joined server -2022-12-11 14:20:36.141233 + : UnreliableReader7||pb-IF5QVRQhCQ==|| joined server -2022-12-11 14:21:32.356980 + : Android47653831||pb-IF4vVWQlIw==|| joined server -2022-12-11 14:23:10.712838 + : SmoothyBro||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-11 14:24:12.950898 + : Android63584030||pb-IF4OU0UNAw==|| joined server -2022-12-11 14:24:35.031557 + : Aoodkkk148||pb-IF4PUlAFVw==|| joined server -2022-12-11 14:27:07.589874 + : tanishdosh||pb-IF4mVU0oUw==|| joined server -2022-12-11 14:27:51.752926 + : CulinaryPr||pb-IF4nU0sFJw==|| joined server -2022-12-11 14:27:54.764372 + : HoneyProgression37||pb-IF4XU3gkNw==|| joined server -2022-12-11 14:28:09.809115 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-11 14:28:45.934898 + : Android57861013||pb-IF5VUkdeEw==|| joined server -2022-12-11 14:29:47.167178 + : DEVTA9||pb-IF4OU2QjMQ==|| joined server -2022-12-11 14:33:23.981476 + : BiologicalPotion26||pb-IF4-U0ZcNA==|| joined server -2022-12-11 14:34:17.185768 + : SeverestAp||pb-IF4jU0JaNg==|| joined server -2022-12-11 14:34:22.199944 + : KRISHNAM10||pb-IF5VAmRc|| joined server -2022-12-11 14:34:23.206896 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-11 14:34:27.226937 + : BrownCreat||pb-IF4lB0sz|| joined server -2022-12-11 14:34:57.304379 + : Immeasura8||pb-IF5VUlYjNw==|| joined server -2022-12-11 14:35:09.359006 + : SoftJustif||pb-IF4TU0M4JA==|| joined server -2022-12-11 14:36:08.582968 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-11 14:36:09.586437 + : PriorIdeology17||pb-IF4rVEkgLg==|| joined server -2022-12-11 14:36:28.656944 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-11 14:36:44.695049 + : BraidedMolecule48||pb-IF4xU0sPLw==|| joined server -2022-12-11 14:37:48.977055 + : Android64032981||pb-IF4PU1AeIw==|| joined server -2022-12-11 14:38:21.085184 + : Balajiblaze123||pb-IF4TV2w6Bw==|| joined server -2022-12-11 14:38:28.117257 + : GoDFather6||pb-IF4pVHAlKw==|| joined server -2022-12-11 14:38:35.152122 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-11 14:38:41.173354 + : mrpainless||pb-IF4PIFQ9|| joined server -2022-12-11 14:38:45.189674 + : AssuredStagnation16||pb-IF42VEcmMg==|| joined server -2022-12-11 14:39:59.462685 + : Anthropolo||pb-IF4-U2suMg==|| joined server -2022-12-11 14:40:36.565864 + : renz77111||pb-IF4tU0xYMw==|| joined server -2022-12-11 14:41:43.796816 + : DowncastCruise28||pb-IF4KUnEmVg==|| joined server -2022-12-11 14:43:43.243762 + : LiquidToad||pb-IF4RUxgGFQ==|| joined server -2022-12-11 14:44:02.313735 + : 9584555539||pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB|| joined server -2022-12-11 14:44:36.426593 + : muhammed15||pb-IF4WUmUoIw==|| joined server -2022-12-11 14:44:51.493201 + : DYNAME3032||pb-IF5WVRMhIQ==|| joined server -2022-12-11 14:45:00.529912 + : Insolvent3||pb-IF4yU00aPQ==|| joined server -2022-12-11 14:45:56.736367 + : Anthropolo||pb-IF4-U2suMg==|| joined server -2022-12-11 14:46:37.893551 + : Sparkx||pb-IF5SUmwRPQ==|| joined server -2022-12-11 14:47:14.029299 + : mrpainless||pb-IF4PIFQ9|| joined server -2022-12-11 14:47:33.095273 + : Android60067192||pb-IF4tU0NbIQ==|| joined server -2022-12-11 14:48:05.221188 + : Android64033039||pb-IF4TU1AGHQ==|| joined server -2022-12-11 14:48:07.232209 + : RoyalPoodle6384||pb-IF4JUmQ8Uw==|| joined server -2022-12-11 14:48:19.268083 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-11 14:49:16.489278 + : GenteelTab||pb-IF5RU1MyUw==|| joined server -2022-12-11 14:49:22.519019 + : Vicky3227||pb-IF4yVEssLw==|| joined server -2022-12-11 14:49:29.541824 + : EuphoricOr||pb-IF4zVEoqXA==|| joined server -2022-12-11 14:49:32.550050 + : JKS4302||pb-IF4rU3omIw==|| joined server -2022-12-11 14:49:50.608507 + : FranticFever44||pb-IF5RU3AjNA==|| joined server -2022-12-11 14:49:59.656164 + : FancyPan23||pb-IF5UUkMlDA==|| joined server -2022-12-11 14:51:06.869653 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-11 14:51:34.986517 + : FancyPan23||pb-IF5UUkMlDA==|| joined server -2022-12-11 14:51:59.055430 + : Unpublis10||pb-IF48U1ANLA==|| joined server -2022-12-11 14:52:36.180055 + : DakshJashnani||pb-IF4yU1AmLg==|| joined server -2022-12-11 14:53:42.402833 + : BHAVESH264||pb-IF40U0kGIA==|| joined server -2022-12-11 14:53:51.423724 + : FresherSle||pb-IF4-U0oFDQ==|| joined server -2022-12-11 14:56:46.048878 + : dacio7||pb-IF4jV2EqUA==|| joined server -2022-12-11 14:57:04.124134 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-11 14:59:34.735322 + : Android60533944||pb-IF4wUxYsJA==|| joined server -2022-12-11 14:59:39.752313 + : louis12king018806660||pb-IF4XV1k7Hw==|| joined server -2022-12-11 15:00:04.847416 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-11 15:00:58.027243 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-11 15:01:49.227718 + : EarlierPub||pb-IF4PVXUYAw==|| joined server -2022-12-11 15:02:22.360473 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-11 15:02:28.370809 + : Gregariou8||pb-IF4UU0wFIA==|| joined server -2022-12-11 15:02:31.376953 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-11 15:03:08.509445 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-11 15:04:55.964689 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-11 15:04:55.965507 + : BHAVESH264||pb-IF40U0kGIA==|| joined server -2022-12-11 15:04:57.970694 + : Gregariou8||pb-IF4UU0wFIA==|| joined server -2022-12-11 15:04:58.976607 + : Supervis28||pb-IF4uU1AzCA==|| joined server -2022-12-11 15:05:11.012559 + : EarlierPub||pb-IF4PVXUYAw==|| joined server -2022-12-11 15:05:12.016202 + : EuphoricOr||pb-IF4zVEoqXA==|| joined server -2022-12-11 15:06:19.288074 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-11 15:07:08.499787 + : Gregariou8||pb-IF4UU0wFIA==|| joined server -2022-12-11 15:08:36.049573 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-11 15:10:45.526602 + : Android63894042||pb-IF4pU00cVg==|| joined server -2022-12-11 15:11:00.574991 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-11 15:11:28.675327 + : RustyUnic2||pb-IF42U0kbEg==|| joined server -2022-12-11 15:12:19.883902 + : Gregariou8||pb-IF4UU0wFIA==|| joined server -2022-12-11 15:12:51.983587 + : Android62080452||pb-IF5TU3AmUQ==|| joined server -2022-12-11 15:13:46.165428 + : LevelAccep||pb-IF49U0MCCA==|| joined server -2022-12-11 15:13:58.214297 + : StripedBul||pb-IF4UU04mDg==|| joined server -2022-12-11 15:14:49.369051 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-11 15:14:55.396223 + : Supervis28||pb-IF4uU1AzCA==|| joined server -2022-12-11 15:15:11.472023 + : Android52820777||pb-IF4PVVI4Dg==|| joined server -2022-12-11 15:15:16.492147 + : Gregariou8||pb-IF4UU0wFIA==|| joined server -2022-12-11 15:15:22.508910 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-11 15:16:11.673411 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-11 15:16:46.798695 + : madkillse||pb-IF4uU1BeMA==|| joined server -2022-12-11 15:16:57.855764 + : RabidFight||pb-IF5RU3UzJA==|| joined server -2022-12-11 15:17:36.981561 + : Dotphoenix||pb-IF4FV00SDA==|| joined server -2022-12-11 15:17:48.025099 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-11 15:18:19.122835 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-11 15:18:38.321652 + : StableShot45||pb-IF4pU0UhVw==|| joined server -2022-12-11 15:19:01.395423 + : Android52820777||pb-IF4PVVI4Dg==|| joined server -2022-12-11 15:19:15.454954 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-11 15:20:11.653635 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-11 15:20:34.740942 + : ThinnerVar||pb-IF4rU1ACUw==|| joined server -2022-12-11 15:21:04.876394 + : ThinnerVar||pb-IF4rU1ACUw==|| joined server -2022-12-11 15:21:19.938718 + : viru199554||pb-IF4VU3EjBg==|| joined server -2022-12-11 15:21:29.971451 + : armaanb613||pb-IF4nVBkfMw==|| joined server -2022-12-11 15:21:56.065181 + : PakkaranBomber||pb-IF4JU0Y7Ag==|| joined server -2022-12-11 15:22:25.154067 + : Android52470937||pb-IF4DVVgZJA==|| joined server -2022-12-11 15:22:46.218759 + : Android63199781||pb-IF5XU0IZAA==|| joined server -2022-12-11 15:23:32.380963 + : Android62256590||pb-IF4OU3AoJg==|| joined server -2022-12-11 15:23:52.460303 + : Pragmati11||pb-IF4CVXAoAA==|| joined server -2022-12-11 15:23:55.474877 + : EuphoricOr||pb-IF4zVEoqXA==|| joined server -2022-12-11 15:24:11.525466 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-11 15:25:22.750580 + : ProsaicFir||pb-IF4lVHJZMA==|| joined server -2022-12-11 15:25:34.792607 + : Noel11powe||pb-IF4MU3kbDg==|| joined server -2022-12-11 15:25:55.865569 + : parshuavin||pb-IF4dUmgyDQ==|| joined server -2022-12-11 15:26:04.893641 + : ChalkyLott||pb-IF5cVWMOUQ==|| joined server -2022-12-11 15:26:52.038650 + : madkillse||pb-IF4uU1BeMA==|| joined server -2022-12-11 15:27:58.277622 + : Wolfspy244||pb-IF4qU04fBw==|| joined server -2022-12-11 15:28:44.416126 + : JoyfulHotshot6645512||pb-IF4LV3EBAQ==|| joined server -2022-12-11 15:29:24.631845 + : Android63879850||pb-IF4xU0wELA==|| joined server -2022-12-11 15:29:54.734056 + : ThirstyFro||pb-IF4jU3QHMw==|| joined server -2022-12-11 15:30:41.911572 + : Android60386993||pb-IF4PUxQiDQ==|| joined server -2022-12-11 15:30:52.943136 + : ProsaicFir||pb-IF4lVHJZMA==|| joined server -2022-12-11 15:31:04.954060 + : NoName77455||pb-IF4-VVk6KQ==|| joined server -2022-12-11 15:31:23.026036 + : Pratham212||pb-IF4NU0wvUQ==|| joined server -2022-12-11 15:31:35.065033 + : MoveableReminder36||pb-IF4iUkghEQ==|| joined server -2022-12-11 15:32:06.177165 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-11 15:32:40.297073 + : FranticFever44||pb-IF5RU3AjNA==|| joined server -2022-12-11 15:33:28.486147 + : ArmyGenera||pb-IF4HUxUHUw==|| joined server -2022-12-11 15:34:06.612574 + : SmoothyBro||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-11 15:34:27.680870 + : ImperiousLearning457||pb-IF4gU00YDA==|| joined server -2022-12-11 15:36:02.234053 + : LeviHulk79||pb-IF4hU3gZIQ==|| joined server -2022-12-11 15:36:25.329620 + : Thedead28||pb-IF4iU3JSMw==|| joined server -2022-12-11 15:37:05.472328 + : UKnowMeAJ||pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH|| joined server -2022-12-11 15:37:42.748673 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-11 15:38:03.821259 + : SmoothyBro||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-11 15:38:30.019691 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-11 15:38:58.129563 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-11 15:39:30.249703 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-11 15:40:02.359508 + : SmoothyBro||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-11 15:40:05.376870 + : bhaumikrat||pb-JiNJARFZUUpJX1tGE0dWVlJEE0NdQFhB|| joined server -2022-12-11 15:40:43.496447 + : NofearK||pb-IF4VE1gj|| joined server -2022-12-11 15:40:55.542948 + : AutomaticSetting35||pb-IF4PUxMjPw==|| joined server -2022-12-11 15:41:16.638708 + : catbros7||pb-IF4eUhIxBg==|| joined server -2022-12-11 15:42:22.850978 + : NOORULAMEENAK57THALA||pb-IF4cVEsJAg==|| joined server -2022-12-11 15:42:32.896474 + : Lxhussain||pb-IF4RU0UpAQ==|| joined server -2022-12-11 15:42:50.961027 + : PetulantEm||pb-IF4wU0wRDQ==|| joined server -2022-12-11 15:43:06.023018 + : BrassDoctor94896||pb-IF4FU0wyXQ==|| joined server -2022-12-11 15:43:14.062769 + : Android60386993||pb-IF4PUxQiDQ==|| joined server -2022-12-11 15:43:35.130847 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-11 15:43:44.152857 + : NeedfulCon||pb-IF4OVEZTPA==|| joined server -2022-12-11 15:43:51.178955 + : HookedCord||pb-IF4OU08JEA==|| joined server -2022-12-11 15:44:41.341791 + : Deplorabl7||pb-IF41Um0DCA==|| joined server -2022-12-11 15:45:02.407494 + : c0rps319||pb-IF48U0wiMA==|| joined server -2022-12-11 15:45:21.483721 + : sooriyapraksh||pb-IF4cU09ZFw==|| joined server -2022-12-11 15:47:55.025644 + : Akshaymuyyam||pb-IF40U0peXQ==|| joined server -2022-12-11 15:48:42.186195 + : bomdsqard||pb-IF5WVEwIKA==|| joined server -2022-12-11 15:48:56.240436 + : Android64033325||pb-IF5cU1IMCg==|| joined server -2022-12-11 15:49:13.300934 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-11 15:50:05.477238 + : Magisteri4||pb-IF4DU3k-Hw==|| joined server -2022-12-11 15:50:21.535523 + : AryanSolanki997||pb-IF4DHEki|| joined server -2022-12-11 15:50:30.566154 + : PetulantEm||pb-IF4wU0wRDQ==|| joined server -2022-12-11 15:51:34.776456 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-11 15:51:54.843755 + : Mamamia536||pb-IF4pVHAlKw==|| joined server -2022-12-11 15:52:08.888976 + : KINGSURYA||pb-IF4OU08HMA==|| joined server -2022-12-11 15:52:18.929468 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-11 15:52:55.069280 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-11 15:53:10.133893 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-11 15:53:33.216540 + : Niral||pb-IF5UU09YMg==|| joined server -2022-12-11 15:53:43.257376 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-11 15:55:03.569366 + : naresh2003||pb-JiNJARBcUEpCX1dFEEdZUVBBE0BeQVNG|| joined server -2022-12-11 15:55:41.704577 + : MADDY1321||pb-IF4CU0QpCA==|| joined server -2022-12-11 15:55:46.715980 + : OO||pb-IF4RVRk7EQ==|| joined server -2022-12-11 15:57:24.174851 + : VIJAYLAZAR||pb-IF4AUkcMDA==|| joined server -2022-12-11 15:57:43.224922 + : Ykzone18||pb-IF4KUxQ9Kw==|| joined server -2022-12-11 15:58:38.395226 + : DakshJashnani||pb-IF4yU1AmLg==|| joined server -2022-12-11 15:58:45.415460 + : Ykzone18||pb-IF4KUxQ9Kw==|| joined server -2022-12-11 15:58:58.448703 + : Ykzone18||pb-IF4KUxQ9Kw==|| joined server -2022-12-11 15:59:13.506233 + : SilverDearth2041||pb-IF4CVUsiNA==|| joined server -2022-12-11 16:00:33.831502 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-11 16:00:44.874264 + : Thedead28||pb-IF4iU3JSMw==|| joined server -2022-12-11 16:01:02.948275 + : Ykzone18||pb-IF4KUxQ9Kw==|| joined server -2022-12-11 16:02:14.201505 + : Mamamia536||pb-IF4pVHAlKw==|| joined server -2022-12-11 16:02:15.208866 + : UKnowMeAJ||pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH|| joined server -2022-12-11 16:03:21.579507 + : TheEpicRoc||pb-IF5RVRM9XQ==|| joined server -2022-12-11 16:04:23.810495 + : Condense20||pb-IF4KVUlZEw==|| joined server -2022-12-11 16:04:43.887732 + : AryanSolanki997||pb-IF4DHEki|| joined server -2022-12-11 16:04:50.927714 + : Ykzone18||pb-IF4KUxQ9Kw==|| joined server -2022-12-11 16:06:04.191716 + : Ykzone18||pb-IF4KUxQ9Kw==|| joined server -2022-12-11 16:06:21.256303 + : Android62030676||pb-IF4uU0QTPw==|| joined server -2022-12-11 16:06:31.298108 + : alex007007||pb-JiNJARBdVEpIXF5GEEVYUlJCEEdeTlhE|| joined server -2022-12-11 16:06:39.325239 + : RestiveSun||pb-IF4XU1FdVw==|| joined server -2022-12-11 16:07:42.728787 + : Android63934668||pb-IF4vU04bIw==|| joined server -2022-12-11 16:07:54.842289 + : hothareesh||pb-IF4lVxkZUQ==|| joined server -2022-12-11 16:08:08.896112 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-11 16:08:11.908537 + : Android57972745||pb-IF5WUkcGCQ==|| joined server -2022-12-11 16:08:44.031228 + : MainstreamContrast42||pb-IF4vU0skLw==|| joined server -2022-12-11 16:10:18.405760 + : Android63428296||pb-IF4CU0MiVA==|| joined server -2022-12-11 16:12:00.765089 + : sunil8107k||pb-IF4gVXUiNQ==|| joined server -2022-12-11 16:12:47.929466 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-11 16:14:25.310081 + : SWAYRAV||pb-IF4GVXItMw==|| joined server -2022-12-11 16:14:31.328570 + : Sourabhsukhija11||pb-JiNJVxFdUERHXF1AFURYVFNKFUJeR1FB|| joined server -2022-12-11 16:14:43.372900 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-11 16:14:52.412711 + : KrJoy007||pb-IF4TVUFdVg==|| joined server -2022-12-11 16:16:05.746095 + : VIJAYLAZAR||pb-IF4AUkcMDA==|| joined server -2022-12-11 16:16:22.822715 + : MainstreamContrast42||pb-IF4vU0skLw==|| joined server -2022-12-11 16:16:55.953357 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-11 16:17:04.988412 + : AdrenalCha||pb-IF4HUlcgUQ==|| joined server -2022-12-11 16:17:13.010538 + : KINGSURYA||pb-IF4OU08HMA==|| joined server -2022-12-11 16:17:53.250235 + : Deplorabl7||pb-IF41Um0DCA==|| joined server -2022-12-11 16:18:12.312864 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-11 16:19:07.509643 + : DrivingSub||pb-IF4uU1A5Kg==|| joined server -2022-12-11 16:19:17.533573 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-11 16:19:37.602225 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-11 16:19:51.657314 + : Mamamia536||pb-IF4pVHAlKw==|| joined server -2022-12-11 16:22:00.332715 + : POWERXDHRUV||pb-IF4GD2Yd|| joined server -2022-12-11 16:22:41.440488 + : MysteriousVehicle16||pb-IF4FVFUxVw==|| joined server -2022-12-11 16:24:18.805995 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-11 16:24:39.869593 + : REZOFFICIA||pb-IF4GU1EjBg==|| joined server -2022-12-11 16:24:57.937509 + : LogicalDuck1803||pb-IF4lVG8eBA==|| joined server -2022-12-11 16:26:07.156203 + : Android63934668||pb-IF4vU04bIw==|| joined server -2022-12-11 16:26:24.240657 + : Sumit11727||pb-IF4dUkxeLQ==|| joined server -2022-12-11 16:26:33.279177 + : Android62958044||pb-IF49VFcGNw==|| joined server -2022-12-11 16:26:36.293714 + : Anthropolo||pb-IF4-U2suMg==|| joined server -2022-12-11 16:27:04.411764 + : KINGSURYA||pb-IF4OU08HMA==|| joined server -2022-12-11 16:27:53.557193 + : VividDingo||pb-IF4HUlUCCg==|| joined server -2022-12-11 16:28:45.761461 + : chugambaran||pb-IF42U2wGFw==|| joined server -2022-12-11 16:29:46.974506 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-11 16:30:22.109552 + : LionAlpha7||pb-IF4UVGg8KQ==|| joined server -2022-12-11 16:30:26.125608 + : shrey19654||pb-IF4QVGYMKg==|| joined server -2022-12-11 16:31:27.338781 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-11 16:32:58.664574 + : LIONHUNTER||pb-IF4eVGc7Cw==|| joined server -2022-12-11 16:34:39.142326 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-11 16:36:46.771289 + : JACKSprrw||pb-IF4DU1FeFQ==|| joined server -2022-12-11 16:37:11.853191 + : Android60186508||pb-IF4KUxIlNw==|| joined server -2022-12-11 16:37:27.912294 + : FinishedBo||pb-IF4QU1BcXQ==|| joined server -2022-12-11 16:37:36.935701 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-11 16:38:30.141735 + : LonelyComputer887||pb-IF4IU0xcXQ==|| joined server -2022-12-11 16:38:55.237640 + : LonelyComputer887||pb-IF4IU0xcXQ==|| joined server -2022-12-11 16:39:17.308736 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-11 16:40:02.469013 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-11 16:40:17.519049 + : Anthropolo||pb-IF4-U2suMg==|| joined server -2022-12-11 16:42:10.893281 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-11 16:42:15.912709 + : LionAlpha7||pb-IF4UVGg8KQ==|| joined server -2022-12-11 16:43:28.202521 + : Demons136||pb-IF4eVREpLQ==|| joined server -2022-12-11 16:43:48.259261 + : soorajvlp||pb-IF5SUxM5Lg==|| joined server -2022-12-11 16:44:21.387056 + : Android54396539||pb-IF4GUhcxHA==|| joined server -2022-12-11 16:44:44.462250 + : CongenialL||pb-IF4AU2ETLQ==|| joined server -2022-12-11 16:45:04.535734 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-11 16:45:11.556923 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-11 16:45:15.572579 + : VeteranGuy||pb-IF5SU0hTEw==|| joined server -2022-12-11 16:45:19.588751 + : shrey19654||pb-IF4QVGYMKg==|| joined server -2022-12-11 16:45:46.702791 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-11 16:46:19.799868 + : IndependentBoard34||pb-IF4gU0Y7AQ==|| joined server -2022-12-11 16:46:25.821932 + : CapitalSim||pb-IF4nU24qEA==|| joined server -2022-12-11 16:46:32.842859 + : RustyUnic2||pb-IF42U0kbEg==|| joined server -2022-12-11 16:47:05.946405 + : DemonChrom||pb-IF4lUxYq|| joined server -2022-12-11 16:48:04.159378 + : Honorabl36||pb-IF4mU0kaEA==|| joined server -2022-12-11 16:48:12.188144 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-11 16:49:45.624392 + : RottenPood||pb-IF4PU0ZcAg==|| joined server -2022-12-11 16:50:14.720558 + : Understoo2||pb-IF4yU0QOIw==|| joined server -2022-12-11 16:51:27.978336 + : FrontPlane24||pb-IF4WVU9TLg==|| joined server -2022-12-11 16:51:40.032275 + : HatefulAnn||pb-IF4PUkogDg==|| joined server -2022-12-11 16:51:44.048630 + : CosmicOutl||pb-IF4yUng_XA==|| joined server -2022-12-11 16:52:25.212159 + : jesujesil||pb-IF5TC2YS|| joined server -2022-12-11 16:53:11.369314 + : kuchimanithan||pb-IF4IU0cKLg==|| joined server -2022-12-11 16:54:02.660966 + : PowerfulRi||pb-JiNJARBYVkZAXltAFENTXV1DGUBeQ1lG|| joined server -2022-12-11 16:54:15.702354 + : DaintyEnsign275||pb-IF4IVRkRAA==|| joined server -2022-12-11 16:55:23.938996 + : Android63308529||pb-IF48U0JeCw==|| joined server -2022-12-11 16:55:44.023022 + : catbros7||pb-IF4eUhIxBg==|| joined server -2022-12-11 16:57:07.321461 + : CapitalSim||pb-IF4nU24qEA==|| joined server -2022-12-11 16:58:51.891330 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-11 16:59:49.108393 + : chugambaran||pb-IF42U2wGFw==|| joined server -2022-12-11 17:00:29.266133 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-11 17:00:36.282553 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-11 17:00:57.352518 + : vivekbomb||pb-IF4VU047Vw==|| joined server -2022-12-11 17:01:26.463597 + : DiscreetV2||pb-IF4qU0c_FA==|| joined server -2022-12-11 17:01:58.608064 + : StrawDetec||pb-IF4DVWwjKw==|| joined server -2022-12-11 17:04:18.103941 + : NitinNR3||pb-IF5XVE8aEw==|| joined server -2022-12-11 17:04:39.181060 + : MagnificentBull96303||pb-IF4mU0wODA==|| joined server -2022-12-11 17:06:23.601886 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-11 17:07:17.868159 + : jagu22wan||pb-IF4UUxYyXA==|| joined server -2022-12-11 17:07:32.922510 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-11 17:08:01.120231 + : NOORULAMEENAK57THALA||pb-IF4cVEsJAg==|| joined server -2022-12-11 17:09:34.427079 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-11 17:10:34.720404 + : Android63813378||pb-IF4PU0s9PQ==|| joined server -2022-12-11 17:11:32.948464 + : Jerald6440||pb-IF5dVWEJMg==|| joined server -2022-12-11 17:13:04.224136 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-11 17:13:12.266690 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-11 17:13:48.411447 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-11 17:14:17.515307 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-11 17:14:54.648690 + : POWERXDHRUV||pb-IF4GD2Yd|| joined server -2022-12-11 17:15:06.691637 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-11 17:15:37.032781 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-11 17:21:57.337356 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-11 17:22:14.406964 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-11 17:23:06.584822 + : FancyPan23||pb-IF5UUkMlDA==|| joined server -2022-12-11 17:23:27.647550 + : ArcticHigh||pb-IF4eVWYcLQ==|| joined server -2022-12-11 17:23:51.724206 + : Anthropolo||pb-IF4-U2suMg==|| joined server -2022-12-11 17:24:31.871181 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-11 17:24:46.928081 + : OptimisticSquid92630||pb-IF4HCGgf|| joined server -2022-12-11 17:24:49.943410 + : TheAvenge2||pb-IF41VFQ6JA==|| joined server -2022-12-11 17:25:11.026815 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-11 17:26:00.450493 + : UncheckedF||pb-IF4xU04eUw==|| joined server -2022-12-11 17:28:18.931406 + : SeverestAp||pb-IF4jU0JaNg==|| joined server -2022-12-11 17:28:27.956173 + : SeverestAp||pb-IF4jU0JaNg==|| joined server -2022-12-11 17:28:41.013614 + : WHITU||pb-IF5TAHQO|| joined server -2022-12-11 17:30:17.358283 + : Android55446423||pb-IF4rUmcIUg==|| joined server -2022-12-11 17:30:51.482229 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-11 17:31:18.794899 + : Egocentr24||pb-IF4wU3IDCA==|| joined server -2022-12-11 17:32:25.039750 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-11 17:32:31.061893 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-11 17:32:45.118646 + : Android62958044||pb-IF49VFcGNw==|| joined server -2022-12-11 17:33:01.174750 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-11 17:33:08.200581 + : Android62958044||pb-IF49VFcGNw==|| joined server -2022-12-11 17:33:38.313379 + : MemerBadshah||pb-IF4JUmdaIg==|| joined server -2022-12-11 17:34:39.528998 + : MemerBadshah||pb-IF4JUmdaIg==|| joined server -2022-12-11 17:35:49.753580 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-11 17:36:19.849615 + : notrealDAMON2006||pb-IF4ACWQC|| joined server -2022-12-11 17:39:58.687475 + : AdvancedE2||pb-IF4JU3MxCQ==|| joined server -2022-12-11 17:40:19.756543 + : Android63978474||pb-IF4DU08aIA==|| joined server -2022-12-11 17:41:29.974928 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-11 17:41:38.000268 + : IncorporatedCoup53||pb-IF4yU0cFEw==|| joined server -2022-12-11 17:41:53.059749 + : Ceremoni27||pb-IF4xU08dKg==|| joined server -2022-12-11 17:42:38.555131 + : Ceremoni27||pb-IF4xU08dKg==|| joined server -2022-12-11 17:43:36.774143 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-11 17:45:18.107951 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-11 17:45:28.141454 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-11 17:45:45.206771 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-11 17:46:14.333088 + : ArunTamizh||pb-IF4UU2IIFg==|| joined server -2022-12-11 17:49:43.292782 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-11 17:50:36.470630 + : DsbParth||pb-IF4GU1AEIA==|| joined server -2022-12-11 17:50:50.507286 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-11 17:51:58.783802 + : CHAINSAW||pb-IF4DU0IEJg==|| joined server -2022-12-11 17:53:45.147380 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-11 17:56:04.889240 + : vsxviswa||pb-IF4AU0YzIA==|| joined server -2022-12-11 17:56:28.984263 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-11 17:57:30.230030 + : vsxviswa||pb-IF4AU0YzIA==|| joined server -2022-12-11 18:01:07.189446 + : BoomBaam11||pb-IF4vVRUFVA==|| joined server -2022-12-11 18:01:15.213602 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-11 18:03:10.012598 + : gwyww||pb-IF4FU08gBg==|| joined server -2022-12-11 18:04:43.394231 + : Operativ27||pb-IF4iVEkoLA==|| joined server -2022-12-11 18:07:11.883954 + : DsbParth||pb-IF4GU1AEIA==|| joined server -2022-12-11 18:08:01.081536 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-11 18:09:17.338108 + : Periodica5||pb-IF5dU004Jg==|| joined server -2022-12-11 18:09:39.444306 + : Operativ27||pb-IF4iVEkoLA==|| joined server -2022-12-11 18:10:29.611458 + : DsbParth||pb-IF4GU1AEIA==|| joined server -2022-12-11 18:12:10.315379 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-11 18:13:54.708705 + : Android58405739||pb-IF4WUko_JA==|| joined server -2022-12-11 18:17:36.675918 + : Android58405739||pb-IF4WUko_JA==|| joined server -2022-12-11 18:18:17.845404 + : IndependentBoard34||pb-IF4gU0Y7AQ==|| joined server -2022-12-11 18:18:39.929117 + : NicoPROx4||pb-IF4XUnYdLA==|| joined server -2022-12-11 18:18:57.010329 + : Android58405739||pb-IF4WUko_JA==|| joined server -2022-12-11 18:19:40.194852 + : Northerly5||pb-IF4lU0pZLA==|| joined server -2022-12-11 18:20:02.270726 + : Android58405739||pb-IF4WUko_JA==|| joined server -2022-12-11 18:21:09.483221 + : Android58405739||pb-IF4WUko_JA==|| joined server -2022-12-11 18:21:47.649903 + : GAMERG5958||pb-IF4QUm44Jw==|| joined server -2022-12-11 18:22:57.951419 + : IncorporatedCoup53||pb-IF4yU0cFEw==|| joined server -2022-12-11 18:22:58.952476 + : Android58405739||pb-IF4WUko_JA==|| joined server -2022-12-11 18:23:51.116390 + : POWERXDHRU||pb-IF4GD2Yd|| joined server -2022-12-11 18:25:35.477831 + : WonderfulH||pb-IF4sVVgTAg==|| joined server -2022-12-11 18:28:28.144682 + : sujs2002||pb-IF49VHcyEg==|| joined server -2022-12-11 18:28:59.262812 + : WonderfulH||pb-IF4sVVgTAg==|| joined server -2022-12-11 18:33:43.286255 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-11 18:34:23.697558 + : DiscreetV2||pb-IF4qU0c_FA==|| joined server -2022-12-11 18:38:54.367760 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-11 18:38:56.374979 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-11 18:39:38.529809 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-11 18:43:36.325767 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-11 18:43:38.330992 + : naresh2003||pb-JiNJARBcUEpCX1dFEEdZUVBBE0BeQVNG|| joined server -2022-12-11 18:44:41.571525 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-11 18:46:18.040409 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-11 18:47:51.327851 + : Nehalpandy||pb-IF4SU1AeUA==|| joined server -2022-12-11 18:48:20.432640 + : NitinNR3||pb-IF5XVE8aEw==|| joined server -2022-12-11 18:50:12.813527 + : ANSIJ2255||pb-IF4WUhUgEA==|| joined server -2022-12-11 18:52:17.304843 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-11 18:54:23.076171 + : Sus390||pb-IF4UVHcbVw==|| joined server -2022-12-11 18:55:02.231501 + : Bulletproofdon||pb-IF42U0VSCA==|| joined server -2022-12-11 19:00:04.286554 + : Wizardousg||pb-IF4BU044Lw==|| joined server -2022-12-11 19:00:33.389239 + : ModalHandl||pb-IF4NU0cpFw==|| joined server -2022-12-11 19:00:57.481356 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-11 19:04:44.308242 + : Aaryan9957||pb-IF4dUxRaIw==|| joined server -2022-12-11 19:09:40.600630 + : Bulletproofdon||pb-IF42U0VSCA==|| joined server -2022-12-11 19:11:27.627601 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-11 19:11:32.639560 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-11 19:11:34.650428 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-11 19:11:35.653620 + : Northerly5||pb-IF4lU0pZLA==|| joined server -2022-12-11 19:11:57.729944 + : Android58555746||pb-IF4wUkwlJg==|| joined server -2022-12-11 19:13:50.090156 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-11 19:15:34.445358 + : DeceptiveL||pb-IF5WU28fFg==|| joined server -2022-12-11 19:20:43.508465 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-11 19:22:14.846481 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-11 19:22:37.932135 + : FastLieute||pb-JiNJARFYVERIWlZCEEVUXV1CFEJYT1ZK|| joined server -2022-12-11 19:25:19.552055 + : Fazilpuria||pb-IF4jVWlYCw==|| joined server -2022-12-11 19:25:31.582822 + : YeWest2024||pb-JiNJARBbU0dHXlxHGUdZVF1LFUFcT1FL|| joined server -2022-12-11 19:27:42.035645 + : Bulletproofdon||pb-IF42U0VSCA==|| joined server -2022-12-11 19:28:28.206960 + : Reptilia28||pb-LV4FVEZfXEQUX1kSREIDVFZFQQ==|| joined server -2022-12-11 19:39:56.527946 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-11 19:41:29.856737 + : pularBir||pb-IF4eVWIDNw==|| joined server -2022-12-11 19:44:09.453643 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-11 20:06:09.995147 + : CrunchyEld||pb-IF4LVEQsFw==|| joined server -2022-12-11 20:08:54.526514 + : Undisput18||pb-IF4RU1FTEg==|| joined server -2022-12-11 20:09:34.669294 + : ganeshoppogamer||pb-IF4gVEobKg==|| joined server -2022-12-11 20:11:10.987598 + : SmoothyBro||pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE|| joined server -2022-12-11 20:11:38.103183 + : CrunchyEld||pb-IF4LVEQsFw==|| joined server -2022-12-11 20:12:22.264182 + : IndependentBoard34||pb-IF4gU0Y7AQ==|| joined server -2022-12-11 20:19:27.681425 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-11 20:21:26.067283 + : RankHoplite10361||pb-IF4wUlk7PQ==|| joined server -2022-12-11 20:33:12.555532 + : SalutaryEnthusiasm23||pb-IF4qU0ocPQ==|| joined server -2022-12-11 20:45:20.012364 + : HuskyStand||pb-IF4jUxVeJA==|| joined server -2022-12-11 21:09:17.053811 + : Android53474172||pb-IF4cVVgfNg==|| joined server -2022-12-11 21:23:10.902710 + : Android54993642||pb-IF5cUmUlDA==|| joined server -2022-12-11 21:39:38.215561 + : PC340060||pb-IF4pV0M5CQ==|| joined server -2022-12-11 21:41:35.629835 + : ChewySmell||pb-IF49U08dJg==|| joined server -2022-12-11 21:50:10.287032 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-11 22:26:22.588044 + : Android58786935||pb-IF4FU3E8Kw==|| joined server -2022-12-11 22:49:49.620711 + : Colloquia2||pb-IF4AU08IIw==|| joined server -2022-12-11 22:57:03.186054 + : sena3456||pb-IF4-B20v|| joined server -2022-12-11 23:22:12.067301 + : RigidCompu||pb-IF4eU1AcHQ==|| joined server -2022-12-11 23:22:48.176996 + : Android63630345||pb-IF40U0YkEg==|| joined server -2022-12-11 23:26:27.046280 + : Android62111964||pb-IF4jU29TVA==|| joined server -2022-12-11 23:45:29.840054 + : Android51298927||pb-IF4KVUQIPA==|| joined server -2022-12-11 23:55:53.011393 + : Straightf3||pb-IF40U00RJA==|| joined server -2022-12-12 01:21:06.417070 + : BeautifulScorn46||pb-IF4xU04HAw==|| joined server -2022-12-12 01:21:56.604507 + : BeautifulScorn46||pb-IF4xU04HAw==|| joined server -2022-12-12 01:22:14.667563 + : Android54799246||pb-IF42UmEmHA==|| joined server -2022-12-12 01:32:40.753382 + : ToughCenta||pb-IF4KVWssXQ==|| joined server -2022-12-12 01:53:00.858971 + : Xodv8||pb-IF4yVFgOVA==|| joined server -2022-12-12 02:03:52.102714 + : BusyReveng||pb-IF4KU0MmHQ==|| joined server -2022-12-12 02:20:10.408691 + : praveenkumar456q||pb-IF4yU0gSKA==|| joined server -2022-12-12 02:20:44.535376 + : praveenkumar456q||pb-IF4yU0gSKA==|| joined server -2022-12-12 02:21:05.603348 + : plasticgame1423||pb-IF4sU00yMg==|| joined server -2022-12-12 02:24:45.288180 + : Impatient6||pb-IF5WUhUBCg==|| joined server -2022-12-12 02:25:23.415020 + : PlenaryPe2||pb-IF4FUlMRAg==|| joined server -2022-12-12 02:30:52.589570 + : RadialDrau||pb-IF5SUkwYXA==|| joined server -2022-12-12 02:34:06.265180 + : Android64035768||pb-IF5UU1IfPQ==|| joined server -2022-12-12 02:34:40.385423 + : InvasiveS2||pb-IF4tUmYMXA==|| joined server -2022-12-12 02:35:51.611450 + : rawoofraw||pb-IF5RU1EbMw==|| joined server -2022-12-12 02:36:16.694083 + : FierceVide||pb-IF43U0gbUw==|| joined server -2022-12-12 02:37:15.894963 + : VidhyanFal||pb-IF4LUk0FCQ==|| joined server -2022-12-12 02:38:07.076610 + : VidhyanFal||pb-IF4LUk0FCQ==|| joined server -2022-12-12 02:38:48.215076 + : Android50225790||pb-IF5WVXkpVQ==|| joined server -2022-12-12 02:39:15.316093 + : Gibberish101||pb-IF4jNEwC|| joined server -2022-12-12 02:39:31.380256 + : yashgusadfggggggg||pb-IF4hU0g4LA==|| joined server -2022-12-12 02:40:52.645701 + : Gibberish101||pb-IF4jNEwC|| joined server -2022-12-12 02:41:55.876837 + : Android54396539||pb-IF4GUhcxHA==|| joined server -2022-12-12 02:43:54.310763 + : Android62226655||pb-IF4CU3UOIw==|| joined server -2022-12-12 02:44:34.458943 + : InvasiveS2||pb-IF4tUmYMXA==|| joined server -2022-12-12 02:45:15.618010 + : Ombala9||pb-IF48U3pfCw==|| joined server -2022-12-12 02:45:24.635952 + : RainbowOrangutan9433||pb-IF4RV2IFBA==|| joined server -2022-12-12 02:45:54.745635 + : DilligentMajor203||pb-IF40V1cILg==|| joined server -2022-12-12 02:46:25.847440 + : the1killer51||pb-IF5SU3YvCA==|| joined server -2022-12-12 02:49:58.566679 + : Gibberish101||pb-IF4jNEwC|| joined server -2022-12-12 02:50:56.771395 + : Android63956151||pb-IF4iU04PKA==|| joined server -2022-12-12 02:51:32.883306 + : Gibberish101||pb-IF4jNEwC|| joined server -2022-12-12 02:51:33.889127 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-12 02:51:41.915764 + : Android63956151||pb-IF4iU04PKA==|| joined server -2022-12-12 02:52:26.069604 + : BakedCritter200||pb-IF41VEMGKw==|| joined server -2022-12-12 02:52:28.080458 + : Manjeet9834||pb-IF4tU0cEHA==|| joined server -2022-12-12 02:53:28.304503 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-12 02:57:30.180310 + : IamDamonSalvatore||pb-IF4sVWo5Kg==|| joined server -2022-12-12 02:57:49.246225 + : Ombala9||pb-IF48U3pfCw==|| joined server -2022-12-12 03:01:27.963635 + : WeakestCornball22||pb-IF4iUlUtCg==|| joined server -2022-12-12 03:02:46.301931 + : Customary7||pb-IF4WU2ooNg==|| joined server -2022-12-12 03:03:08.357570 + : rawoofraw||pb-IF5RU1EbMw==|| joined server -2022-12-12 03:06:06.056925 + : Android63572377||pb-IF4mU0QaJw==|| joined server -2022-12-12 03:07:43.540733 + : rawoofraw||pb-IF5RU1EbMw==|| joined server -2022-12-12 03:08:50.786377 + : OTUSHOUKI||pb-IF4PU1AfNA==|| joined server -2022-12-12 03:11:50.420441 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-12 03:11:59.454372 + : plasticgame1423||pb-IF4sU00yMg==|| joined server -2022-12-12 03:14:41.029938 + : Customary7||pb-IF4WU2ooNg==|| joined server -2022-12-12 03:15:03.111520 + : CleanerRes||pb-IF5QU0s6XQ==|| joined server -2022-12-12 03:15:14.152135 + : Android64031655||pb-IF4PU1AYUQ==|| joined server -2022-12-12 03:16:33.425175 + : chugambaran||pb-IF42U2wGFw==|| joined server -2022-12-12 03:16:39.453431 + : ClosestNeed35||pb-JiNJARBfXENJVFpCFUNQU1FLFkBXQVFL|| joined server -2022-12-12 03:16:45.475635 + : chugambaran||pb-IF42U2wGFw==|| joined server -2022-12-12 03:21:17.454628 + : ProdigalOutlay20||pb-IF4iU0QlAQ==|| joined server -2022-12-12 03:21:52.562848 + : WisestDitc||pb-IF4OU1AfDg==|| joined server -2022-12-12 03:22:23.737119 + : kingofdragonwar10||pb-IF5WU3YtDg==|| joined server -2022-12-12 03:23:28.969519 + : Karthick||pb-IF4PVE4cMg==|| joined server -2022-12-12 03:23:36.987861 + : Karthick||pb-IF4PVE4cMg==|| joined server -2022-12-12 03:25:01.234036 + : Karthick||pb-IF4PVE4cMg==|| joined server -2022-12-12 03:25:18.271414 + : Themarq93||pb-IF4BNlMn|| joined server -2022-12-12 03:25:20.277004 + : Customary7||pb-IF4WU2ooNg==|| joined server -2022-12-12 03:26:30.499430 + : Expedient5||pb-IF4xU0paHA==|| joined server -2022-12-12 03:27:43.760833 + : chugambaran||pb-IF42U2wGFw==|| joined server -2022-12-12 03:28:30.938045 + : PleatherSa||pb-IF4pV00SNA==|| joined server -2022-12-12 03:29:31.131956 + : Pullingo5||pb-IF4GVGs4UA==|| joined server -2022-12-12 03:30:01.250140 + : TheoreticPit28||pb-IF4OVU4aUw==|| joined server -2022-12-12 03:35:22.431314 + : Customary7||pb-IF4WU2ooNg==|| joined server -2022-12-12 03:35:50.533496 + : HumdrumFrame7||pb-IF5RVG8EUw==|| joined server -2022-12-12 03:35:57.569211 + : Immeasura8||pb-IF5VUlYjNw==|| joined server -2022-12-12 03:36:10.621481 + : ProdigalOutlay20||pb-IF4iU0QlAQ==|| joined server -2022-12-12 03:37:08.831532 + : HumdrumFrame7||pb-IF5RVG8EUw==|| joined server -2022-12-12 03:37:48.959635 + : EnviousIngredient43||pb-IF4cU0c5Fw==|| joined server -2022-12-12 03:38:00.995186 + : cristianw||pb-IF42VxERVA==|| joined server -2022-12-12 03:38:22.080086 + : BillionAmb||pb-IF4VUxAIBw==|| joined server -2022-12-12 03:39:42.400957 + : Badmosh778||pb-IF4oU0UAUQ==|| joined server -2022-12-12 03:41:16.749699 + : LogicalDuck1803||pb-IF4lVG8eBA==|| joined server -2022-12-12 03:42:35.032920 + : SpiritualA||pb-IF5SU2MfCw==|| joined server -2022-12-12 03:42:49.087534 + : Badmosh778||pb-IF4oU0UAUQ==|| joined server -2022-12-12 03:42:54.105854 + : GlassyLigh||pb-IF4UU1E4PQ==|| joined server -2022-12-12 03:44:42.448823 + : Badmosh778||pb-IF4oU0UAUQ==|| joined server -2022-12-12 03:46:26.802037 + : FamousImpr||pb-IF4TU0oFAQ==|| joined server -2022-12-12 03:51:51.438578 + : FamousImpr||pb-IF4TU0oFAQ==|| joined server -2022-12-12 03:52:27.566047 + : XContentKi||pb-IF4GUnYODg==|| joined server -2022-12-12 03:52:32.586506 + : vimal2680||pb-IF4jVUctHQ==|| joined server -2022-12-12 03:54:52.112879 + : InlaidBras||pb-IF4sU09eMQ==|| joined server -2022-12-12 03:55:31.258024 + : Melliflu38||pb-IF4QU1A-Jw==|| joined server -2022-12-12 03:56:20.580216 + : phoenixgri||pb-IF4vUnYiDg==|| joined server -2022-12-12 03:56:49.683193 + : unstoppabl||pb-IF4TU0o6Aw==|| joined server -2022-12-12 03:57:22.810791 + : Linux34107||pb-IF4VVW4HFQ==|| joined server -2022-12-12 03:58:38.100027 + : Android60974634||pb-IF4rU2EZEw==|| joined server -2022-12-12 04:02:25.939767 + : Android46500995||pb-IF4NVRcsKQ==|| joined server -2022-12-12 04:02:57.070305 + : Antibioti8||pb-IF4VVFIREg==|| joined server -2022-12-12 04:03:48.256541 + : ahamadakthus||pb-IF5TE2M5|| joined server -2022-12-12 04:06:00.722917 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-12 04:06:03.736272 + : UnderdogPa||pb-IF40U3kzKw==|| joined server -2022-12-12 04:06:25.819337 + : devendra12||pb-IF4WUmFcVw==|| joined server -2022-12-12 04:08:46.324608 + : SREEKANTH1943||pb-JiNJARBbXUFGXlpHGURYUFVCF0BYQ1VK|| joined server -2022-12-12 04:10:11.612223 + : Android63770342||pb-IF4rU0o9KQ==|| joined server -2022-12-12 04:11:58.997620 + : NoName79592g||pb-IF4nU1EjNw==|| joined server -2022-12-12 04:14:02.509952 + : Android63564565||pb-IF5UU0dfBw==|| joined server -2022-12-12 04:15:34.810073 + : Antibioti8||pb-IF4VVFIREg==|| joined server -2022-12-12 04:16:44.230206 + : Android54664134||pb-IF4TUhktCg==|| joined server -2022-12-12 04:18:18.579170 + : invencible||pb-IF4rVBYoCA==|| joined server -2022-12-12 04:18:36.662574 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-12 04:20:04.008267 + : Android63927749||pb-IF4wU04bAQ==|| joined server -2022-12-12 04:21:34.334971 + : RudranshSh||pb-IF5SVHcBMA==|| joined server -2022-12-12 04:22:36.573040 + : Darkelixr1||pb-IF4IU088NA==|| joined server -2022-12-12 04:22:49.629083 + : Aoodkkk148||pb-IF4PUlAFVw==|| joined server -2022-12-12 04:23:21.728359 + : kuchimanithan||pb-IF4IU0cKLg==|| joined server -2022-12-12 04:23:38.790942 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-12 04:24:35.979414 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-12 04:24:55.043111 + : NarrativePulp7||pb-IF4LVGQoMg==|| joined server -2022-12-12 04:25:08.080392 + : Android63157157||pb-IF4WU3ouNw==|| joined server -2022-12-12 04:25:34.175244 + : NarrativePulp7||pb-IF4LVGQoMg==|| joined server -2022-12-12 04:26:18.338458 + : FamousImpr||pb-IF4TU0oFAQ==|| joined server -2022-12-12 04:26:44.443171 + : Android62078969||pb-IF5QU3AaLg==|| joined server -2022-12-12 04:28:36.862019 + : IconicEngi||pb-IF4-U00KKA==|| joined server -2022-12-12 04:29:31.069701 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-12 04:29:54.157842 + : LogicalDuck1803||pb-IF4lVG8eBA==|| joined server -2022-12-12 04:30:08.200956 + : dhineshbha||pb-JiNJARFeXUdAW1dHF05RVlBDEUZYTlNB|| joined server -2022-12-12 04:30:25.285397 + : RCXELITE00||pb-IF4OU1AoNA==|| joined server -2022-12-12 04:30:56.452533 + : Ironman1md||pb-IF5TU1NYAQ==|| joined server -2022-12-12 04:34:08.135940 + : punitsejpa||pb-IF5WUncEEw==|| joined server -2022-12-12 04:35:17.390274 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-12 04:35:22.404416 + : dhineshbha||pb-JiNJARFeXUdAW1dHF05RVlBDEUZYTlNB|| joined server -2022-12-12 04:35:50.502835 + : RelationalAardvark48||pb-IF4tU1FeUw==|| joined server -2022-12-12 04:37:44.901840 + : fJiokekedo||pb-IF4PU04jCg==|| joined server -2022-12-12 04:38:03.962285 + : ahamadakthus||pb-IF5TE2M5|| joined server -2022-12-12 04:38:55.147097 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-12 04:39:30.254087 + : BushyInstr||pb-IF4WU0QRIA==|| joined server -2022-12-12 04:39:38.283074 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-12 04:39:40.295280 + : BushyInstr||pb-IF4WU0QRIA==|| joined server -2022-12-12 04:40:20.443925 + : Abif424||pb-IF4jU2xcKg==|| joined server -2022-12-12 04:40:25.456371 + : UKnowMeAJ||pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH|| joined server -2022-12-12 04:42:06.789476 + : BushyInstr||pb-IF4WU0QRIA==|| joined server -2022-12-12 04:44:12.253718 + : Android63888799||pb-IF4oU004KQ==|| joined server -2022-12-12 04:44:30.319809 + : dhineshbha||pb-JiNJARFeXUdAW1dHF05RVlBDEUZYTlNB|| joined server -2022-12-12 04:46:31.756803 + : BulkyNinja||pb-IF4RUxBfMQ==|| joined server -2022-12-12 04:46:53.826164 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-12 04:46:59.854654 + : NarrativePulp7||pb-IF4LVGQoMg==|| joined server -2022-12-12 04:47:43.010757 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-12 04:48:30.351655 + : Android61174087||pb-IF4AU2QnDg==|| joined server -2022-12-12 04:49:26.580559 + : JaggedDerision58||pb-IF4tU08sLQ==|| joined server -2022-12-12 04:51:01.883671 + : Android63157157||pb-IF4WU3ouNw==|| joined server -2022-12-12 04:52:03.120620 + : WHITU||pb-IF5TAHQO|| joined server -2022-12-12 04:52:42.271678 + : Android61349985||pb-IF4QU2ZeAw==|| joined server -2022-12-12 04:52:58.330618 + : NarrativePulp7||pb-IF4LVGQoMg==|| joined server -2022-12-12 04:53:03.352648 + : OutlawPisc||pb-IF4DU1FeBg==|| joined server -2022-12-12 04:53:12.395634 + : RagingAttacker80435||pb-IF5cV1YHLg==|| joined server -2022-12-12 04:54:40.761314 + : ᴵᴬᴹズRaoJi||pb-IF4pVVQBEA==|| joined server -2022-12-12 04:56:06.040010 + : TraitorousCart41||pb-IF5cUlkTJA==|| joined server -2022-12-12 04:58:44.600831 + : WeirdEmerg||pb-IF4qU0EmIg==|| joined server -2022-12-12 04:59:20.746674 + : WeirdEmerg||pb-IF4qU0EmIg==|| joined server -2022-12-12 05:00:27.985062 + : Android63832645||pb-IF4vU2kMNw==|| joined server -2022-12-12 05:02:46.691023 + : Android64031655||pb-IF4PU1AYUQ==|| joined server -2022-12-12 05:03:21.794994 + : kunasheC11||pb-IF4sUnY-CA==|| joined server -2022-12-12 05:05:23.350998 + : RunningLetter40||pb-IF4JU3oPKQ==|| joined server -2022-12-12 05:07:01.706838 + : InfirmRadi||pb-IF4rU20gFw==|| joined server -2022-12-12 05:07:15.775018 + : punerigami||pb-IF40UnQ7HQ==|| joined server -2022-12-12 05:07:33.831433 + : kushal9610||pb-IF4LM2kN|| joined server -2022-12-12 05:08:41.078842 + : ThisisMitu||pb-IF4HV2FcNA==|| joined server -2022-12-12 05:08:50.120063 + : Rocksoli46||pb-IF4JU0NaVw==|| joined server -2022-12-12 05:09:01.155016 + : LogicalDuck1803||pb-IF4lVG8eBA==|| joined server -2022-12-12 05:09:54.455065 + : Android63957105||pb-IF4UU08NVw==|| joined server -2022-12-12 05:10:45.665217 + : BasuMachak||pb-JiNJARBdXUtFVFxIGUJQVVREFklXRVZH|| joined server -2022-12-12 05:13:00.114568 + : FamousImpr||pb-IF4TU0oFAQ==|| joined server -2022-12-12 05:13:41.285967 + : Agzx2244||pb-IF4PV24yPA==|| joined server -2022-12-12 05:13:49.319465 + : ArduousSprite47||pb-IF5WU1AEFA==|| joined server -2022-12-12 05:15:33.903871 + : DilligentMajor203||pb-IF40V1cILg==|| joined server -2022-12-12 05:16:50.387319 + : Android63957105||pb-IF4UU08NVw==|| joined server -2022-12-12 05:17:03.441959 + : kushal9610||pb-IF4LM2kN|| joined server -2022-12-12 05:17:17.723487 + : NoName14481||pb-IF4XU0gNJg==|| joined server -2022-12-12 05:17:57.877748 + : Lokeii56||pb-IF5XU1IgHA==|| joined server -2022-12-12 05:18:07.918858 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-12 05:18:21.968151 + : Android62958044||pb-IF49VFcGNw==|| joined server -2022-12-12 05:18:41.036564 + : Android63759643||pb-IF43U0kEIQ==|| joined server -2022-12-12 05:18:47.064447 + : Customary7||pb-IF4WU2ooNg==|| joined server -2022-12-12 05:20:09.386000 + : BillionAmb||pb-IF4VUxAIBw==|| joined server -2022-12-12 05:21:07.597632 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-12 05:21:47.733791 + : StableCohe||pb-IF4rU24hJA==|| joined server -2022-12-12 05:21:51.752188 + : BillionAmb||pb-IF4VUxAIBw==|| joined server -2022-12-12 05:22:27.870882 + : MajorFox12||pb-IF4nU3kbEw==|| joined server -2022-12-12 05:23:44.110355 + : MajorFox12||pb-IF4nU3kbEw==|| joined server -2022-12-12 05:24:34.259451 + : UnrealizedBattery19||pb-IF4wUkQtBg==|| joined server -2022-12-12 05:25:31.471401 + : SandyRestr||pb-IF42U1AANA==|| joined server -2022-12-12 05:26:28.686707 + : DsbParth||pb-IF4GU1AEIA==|| joined server -2022-12-12 05:26:31.699656 + : CapitalSim||pb-IF4nU24qEA==|| joined server -2022-12-12 05:28:35.284967 + : chugambaran||pb-IF42U2wGFw==|| joined server -2022-12-12 05:29:32.483242 + : ashu42v||pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF|| joined server -2022-12-12 05:29:44.520145 + : Baralund||pb-IF4VUhAKEg==|| joined server -2022-12-12 05:30:02.590019 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-12 05:30:29.696462 + : Callouse42||pb-IF4IV3UICA==|| joined server -2022-12-12 05:31:25.948583 + : ExposedEditorial36||pb-IF4AU0slNQ==|| joined server -2022-12-12 05:31:29.973652 + : ThihaHtutA||pb-IF4dU1A_EQ==|| joined server -2022-12-12 05:32:00.080944 + : shibanidey||pb-JiNJARFdUERIW1hHFUNRV11AFERbTldE|| joined server -2022-12-12 05:32:07.095249 + : Android63957105||pb-IF4UU08NVw==|| joined server -2022-12-12 05:32:36.200306 + : DsbParth||pb-IF4GU1AEIA==|| joined server -2022-12-12 05:33:19.335794 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-12 05:34:09.502664 + : DsbParth||pb-IF4GU1AEIA==|| joined server -2022-12-12 05:34:11.506083 + : skullxgami||pb-IF4yVFdTXA==|| joined server -2022-12-12 05:34:15.520171 + : nikitamale||pb-IF5RU1EtMg==|| joined server -2022-12-12 05:34:35.592486 + : ThirstyFro||pb-IF4jU3QHMw==|| joined server -2022-12-12 05:35:11.743665 + : Customary7||pb-IF4WU2ooNg==|| joined server -2022-12-12 05:35:51.884235 + : Android63950936||pb-IF4MU04ENw==|| joined server -2022-12-12 05:37:38.571146 + : bBoyy1||pb-IF5XU0YhKg==|| joined server -2022-12-12 05:37:51.611133 + : FrontPlane24||pb-IF4WVU9TLg==|| joined server -2022-12-12 05:38:09.107597 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-12 05:38:24.158225 + : Submissi17||pb-IF4IU0Q7Mw==|| joined server -2022-12-12 05:38:32.179227 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-12 05:38:35.188916 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-12 05:39:55.462756 + : Supervis28||pb-IF4uU1AzCA==|| joined server -2022-12-12 05:40:25.557903 + : LIRIK||pb-IF4CU3RaNw==|| joined server -2022-12-12 05:40:48.633923 + : Badboy2129||pb-JiNJARFZVENFXFlFFEBSUFNGGERbR1BB|| joined server -2022-12-12 05:41:03.687875 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-12 05:43:57.304525 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-12 05:44:19.378262 + : DEPROGAMIN||pb-IF4IU08pBg==|| joined server -2022-12-12 05:44:49.605492 + : HirsuiteWarrior89175||pb-IF4yVXgJBw==|| joined server -2022-12-12 05:45:34.003832 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-12 05:47:09.335690 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-12 05:49:01.805172 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-12 05:49:41.967892 + : Android63957105||pb-IF4UU08NVw==|| joined server -2022-12-12 05:50:22.117617 + : PunctiliousAcolyte34||pb-IF4AU0kxBg==|| joined server -2022-12-12 05:50:43.358029 + : MeasurableWake19||pb-IF4eVVUnVA==|| joined server -2022-12-12 05:51:04.439378 + : Android54967514||pb-IF5UUmVZAw==|| joined server -2022-12-12 05:51:38.552035 + : Android64037436||pb-IF4lU1FaLw==|| joined server -2022-12-12 05:51:50.727777 + : FancyPan23||pb-IF5UUkMlDA==|| joined server -2022-12-12 05:52:05.793588 + : SpaceShutt||pb-IF4yD3Qc|| joined server -2022-12-12 05:52:19.857339 + : PearlImpostor74337||pb-IF4mV2gSLw==|| joined server -2022-12-12 05:52:39.937986 + : Customary7||pb-IF4WU2ooNg==|| joined server -2022-12-12 05:53:38.127804 + : Android61174087||pb-IF4AU2QnDg==|| joined server -2022-12-12 05:53:44.153177 + : ronxbone||pb-IF4XU1BaKQ==|| joined server -2022-12-12 05:53:52.184605 + : NonStopNinja78911||pb-IF4NV1MNCQ==|| joined server -2022-12-12 05:54:04.228852 + : DsbParth||pb-IF4GU1AEIA==|| joined server -2022-12-12 05:54:57.430260 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-12 05:55:01.444340 + : Android63750463||pb-IF4dU0lTHA==|| joined server -2022-12-12 05:55:29.538042 + : Rahul1000010206||pb-IF4AV3RfLA==|| joined server -2022-12-12 05:56:55.000213 + : Android64032628||pb-IF4iU1AgNQ==|| joined server -2022-12-12 05:57:29.123920 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-12 05:57:38.154885 + : PearlImpostor74337||pb-IF4mV2gSLw==|| joined server -2022-12-12 05:58:26.346221 + : CreativeYe||pb-IF4iVBAsUA==|| joined server -2022-12-12 05:58:36.385587 + : Customary7||pb-IF4WU2ooNg==|| joined server -2022-12-12 05:58:54.458225 + : Android54967514||pb-IF5UUmVZAw==|| joined server -2022-12-12 05:59:32.603106 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-12 05:59:41.651077 + : Tarunarya4444||pb-IF4yU0cdEQ==|| joined server -2022-12-12 06:00:07.756254 + : Tarunarya4444||pb-IF4yU0cdEQ==|| joined server -2022-12-12 06:00:34.858578 + : CapitalSim||pb-IF4nU24qEA==|| joined server -2022-12-12 06:01:28.071376 + : Sooraj0101||pb-IF4XVRkINw==|| joined server -2022-12-12 06:01:59.198131 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-12 06:04:21.769944 + : CheapCarri||pb-IF5XU1EjBw==|| joined server -2022-12-12 06:04:58.936164 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-12 06:06:02.206733 + : Interesti7||pb-IF4WU2VaXQ==|| joined server -2022-12-12 06:06:12.243130 + : SillyMembrane32||pb-IF4AU04IHQ==|| joined server -2022-12-12 06:06:34.318374 + : Android63750463||pb-IF4dU0lTHA==|| joined server -2022-12-12 06:08:33.776361 + : Mirzaclegs||pb-IF4AUxYpIw==|| joined server -2022-12-12 06:09:16.020999 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-12 06:10:01.174537 + : LogicalDuck1803||pb-IF4lVG8eBA==|| joined server -2022-12-12 06:10:19.235990 + : Android49811837||pb-IF4LVXQhFA==|| joined server -2022-12-12 06:11:23.461543 + : Intransig2||pb-IF4cVEQgDw==|| joined server -2022-12-12 06:11:48.552083 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-12 06:12:02.598908 + : WeakerResonance54||pb-IF4AU0IoCA==|| joined server -2022-12-12 06:12:11.629614 + : Android63957105||pb-IF4UU08NVw==|| joined server -2022-12-12 06:12:42.716766 + : ThirstyFro||pb-IF4jU3QHMw==|| joined server -2022-12-12 06:13:47.937870 + : TremendousCreek8||pb-IF4vUxkKDg==|| joined server -2022-12-12 06:14:10.026735 + : JestfulSpecifics57||pb-IF4jU08OAw==|| joined server -2022-12-12 06:15:03.197667 + : JoyfulCentaur35034||pb-IF5VU0s8DA==|| joined server -2022-12-12 06:15:53.368513 + : raiyyan095||pb-IF4HU3YGEQ==|| joined server -2022-12-12 06:16:05.407798 + : LouderMove||pb-IF5cVUQ8Nw==|| joined server -2022-12-12 06:16:16.458175 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-12 06:17:17.689636 + : PortalScre||pb-IF5SU3peNw==|| joined server -2022-12-12 06:17:32.739997 + : Devil77181908||pb-IF4dUFk_|| joined server -2022-12-12 06:18:01.836222 + : MadBOY5523||pb-LV4FUkUPAxNEVV8RRk5WBVVEEA==|| joined server -2022-12-12 06:18:05.849565 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-12 06:18:37.954892 + : ArulSamuel||pb-IF4FU04jLA==|| joined server -2022-12-12 06:19:21.081471 + : DewyCreek4||pb-IF49UlcDDg==|| joined server -2022-12-12 06:21:28.794503 + : Android64037436||pb-IF4lU1FaLw==|| joined server -2022-12-12 06:22:01.890671 + : DewyCreek4||pb-IF49UlcDDg==|| joined server -2022-12-12 06:22:24.965792 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-12 06:24:25.622975 + : AltafLieut||pb-IF4QU3ceCw==|| joined server -2022-12-12 06:26:46.107122 + : Lokeii56||pb-IF5XU1IgHA==|| joined server -2022-12-12 06:28:05.670679 + : WirelessNe||pb-IF4nUkteVA==|| joined server -2022-12-12 06:28:33.742443 + : Android61790573||pb-IF4mU2oHDw==|| joined server -2022-12-12 06:29:58.036137 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-12 06:32:21.545984 + : BYMRSTRIPE||pb-IF4xU3YvAw==|| joined server -2022-12-12 06:32:23.545275 + : HeaviestAw||pb-IF4wU00cMg==|| joined server -2022-12-12 06:32:50.616096 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-12 06:33:22.744992 + : Darshan199||pb-IF4sX2Q7|| joined server -2022-12-12 06:33:47.818348 + : dhineshbha||pb-JiNJARFeXUdAW1dHF05RVlBDEUZYTlNB|| joined server -2022-12-12 06:35:09.103142 + : IndependentBoard34||pb-IF4gU0Y7AQ==|| joined server -2022-12-12 06:36:00.292983 + : WirelessNe||pb-IF4nUkteVA==|| joined server -2022-12-12 06:37:30.597400 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-12 06:37:49.657423 + : TallerNetw||pb-IF4iVW4SEw==|| joined server -2022-12-12 06:38:38.839726 + : rawoofraw||pb-IF5RU1EbMw==|| joined server -2022-12-12 06:39:00.917327 + : HappyNpc78||pb-IF4TUnMOAA==|| joined server -2022-12-12 06:39:30.028437 + : Verifiab20||pb-IF4GVWs4Jw==|| joined server -2022-12-12 06:39:49.076163 + : SleekCat80||pb-IF42UlFaLA==|| joined server -2022-12-12 06:40:15.196104 + : SlappyManiac||pb-IF5SUnhZHQ==|| joined server -2022-12-12 06:41:09.406821 + : Customary7||pb-IF4WU2ooNg==|| joined server -2022-12-12 06:43:03.824892 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-12 06:43:09.844176 + : RagingAttacker80435||pb-IF5cV1YHLg==|| joined server -2022-12-12 06:43:16.856327 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-12 06:44:11.174125 + : TGKing7676||pb-IF4WU00OKg==|| joined server -2022-12-12 06:44:43.271002 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-12 06:45:43.680047 + : DsbParth||pb-IF4GU1AEIA==|| joined server -2022-12-12 06:45:44.686796 + : Android49180490||pb-IF5UVXIvNQ==|| joined server -2022-12-12 06:45:52.722580 + : deepthakor||pb-IF4NVFoEUw==|| joined server -2022-12-12 06:46:48.930643 + : Android48907943||pb-IF4DVW4HFA==|| joined server -2022-12-12 06:47:11.020172 + : anaanand57||pb-IF5UVWEBPw==|| joined server -2022-12-12 06:48:46.372475 + : GruesomeWarrior72412||pb-IF4QU3NTXQ==|| joined server -2022-12-12 06:49:20.506471 + : RachRach18||pb-IF4JUnYxVg==|| joined server -2022-12-12 06:50:39.796217 + : WrongEnvy21||pb-IF4dUxhTLA==|| joined server -2022-12-12 06:51:18.919643 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-12 06:51:46.022162 + : thunderstorms3054||pb-IF4zU3gzBA==|| joined server -2022-12-12 06:52:05.102991 + : ProdigalOutlay20||pb-IF4iU0QlAQ==|| joined server -2022-12-12 06:52:23.181933 + : Imtiyazsay||pb-IF5RVWIRIw==|| joined server -2022-12-12 06:53:05.348075 + : NightmareG||pb-IF43U1A-Ng==|| joined server -2022-12-12 06:53:55.538695 + : DsbParth||pb-IF4GU1AEIA==|| joined server -2022-12-12 06:54:09.579700 + : DsbParth||pb-IF4GU1AEIA==|| joined server -2022-12-12 06:57:23.302591 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-12 06:57:25.312889 + : KARANVEERS||pb-JiNJARFYVUpBXl1FGUJQXV1DFkVXQVBH|| joined server -2022-12-12 06:58:13.706451 + : ColonialGrammar61||pb-IF4NU0wOXQ==|| joined server -2022-12-12 06:58:14.707407 + : GOJOSATURO77||pb-IF4lU00yCQ==|| joined server -2022-12-12 06:58:29.774790 + : SlappyManiac||pb-IF5SUnhZHQ==|| joined server -2022-12-12 06:58:57.866383 + : ColonialGrammar61||pb-IF4NU0wOXQ==|| joined server -2022-12-12 06:59:21.133194 + : EclecticC3||pb-IF4dVEUgVg==|| joined server -2022-12-12 07:00:31.613298 + : Harshrawso||pb-IF4gU085Bw==|| joined server -2022-12-12 07:02:13.315425 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-12 07:02:15.322266 + : CulinaryR2||pb-IF5RU04ZDA==|| joined server -2022-12-12 07:03:31.894551 + : RoyalOwl79||pb-IF4MU0ReEA==|| joined server -2022-12-12 07:03:34.903305 + : HEARTOFSTO||pb-IF4zVXQlNw==|| joined server -2022-12-12 07:03:37.917673 + : RedheadedV||pb-IF40VUE9Kw==|| joined server -2022-12-12 07:03:44.939829 + : Sairaj1999||pb-JiNJARFZUUpEWF5JFkdTXVdEEEVdQ1ZA|| joined server -2022-12-12 07:03:47.946776 + : RoyalOwl79||pb-IF4MU0ReEA==|| joined server -2022-12-12 07:04:37.344476 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-12 07:04:57.411631 + : RighteousRein29||pb-IF4-U3M7Ug==|| joined server -2022-12-12 07:05:09.470291 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-12 07:07:02.872172 + : Android54664134||pb-IF4TUhktCg==|| joined server -2022-12-12 07:07:22.945850 + : EngrossingFarmer8411||pb-IF4dV0deMw==|| joined server -2022-12-12 07:07:37.995278 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-12 07:08:04.082958 + : catbros7||pb-IF4eUhIxBg==|| joined server -2022-12-12 07:08:10.100602 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-12 07:08:30.182765 + : MoveableReminder36||pb-IF4iUkghEQ==|| joined server -2022-12-12 07:09:01.307096 + : AloofSoldier58271||pb-IF40VEEMVA==|| joined server -2022-12-12 07:09:27.391022 + : PrimitiveCoercion25||pb-IF4qU3BcNw==|| joined server -2022-12-12 07:11:18.829340 + : HornedRing||pb-IF4tCWoM|| joined server -2022-12-12 07:11:26.857329 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-12 07:11:27.863090 + : ᴄʜᴜᴛᴛᴀ||pb-IF5RU00kKw==|| joined server -2022-12-12 07:11:37.886762 + : Android63962702||pb-IF5VU1ExUw==|| joined server -2022-12-12 07:11:50.944772 + : ashu42v||pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF|| joined server -2022-12-12 07:12:21.025809 + : Hero678||pb-IF4jU0YGIA==|| joined server -2022-12-12 07:12:32.060681 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-12 07:12:54.139569 + : Android63489834||pb-IF5QU0YlIw==|| joined server -2022-12-12 07:13:17.222384 + : Android63489834||pb-IF5QU0YlIw==|| joined server -2022-12-12 07:13:35.609384 + : Android51907189||pb-IF4HVUglHQ==|| joined server -2022-12-12 07:14:23.800399 + : VividDingo||pb-IF4HUlUCCg==|| joined server -2022-12-12 07:14:28.814226 + : TejGamerNt||pb-IF4oUxAGPQ==|| joined server -2022-12-12 07:15:30.009983 + : rawoofraw||pb-IF5RU1EbMw==|| joined server -2022-12-12 07:17:05.358046 + : Android49180490||pb-IF5UVXIvNQ==|| joined server -2022-12-12 07:17:11.751586 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-12 07:17:19.781386 + : rawoofraw||pb-IF5RU1EbMw==|| joined server -2022-12-12 07:17:21.791584 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-12 07:19:44.263940 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-12 07:21:13.594559 + : NoName47265d||pb-IF4dU0EKAA==|| joined server -2022-12-12 07:22:23.843446 + : Waitrezz||pb-IF4DU1FeHQ==|| joined server -2022-12-12 07:22:29.863302 + : AXOMFIGHTER||pb-IF4CU04mAg==|| joined server -2022-12-12 07:23:33.082222 + : RachRach18||pb-IF4JUnYxVg==|| joined server -2022-12-12 07:23:36.089783 + : AlienPersonnel44||pb-IF5VU3lYDA==|| joined server -2022-12-12 07:24:00.170999 + : MaRaVaLkIs||pb-IF4vU1FSUg==|| joined server -2022-12-12 07:24:07.200386 + : SlipperySt||pb-IF4VVUQhMw==|| joined server -2022-12-12 07:24:14.221465 + : FamousImpr||pb-IF4TU0oFAQ==|| joined server -2022-12-12 07:24:35.309371 + : Attitudeboy997||pb-IF4dVFgCLg==|| joined server -2022-12-12 07:24:57.376772 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-12 07:26:34.736609 + : Android61267554||pb-IF4zU3M4Fg==|| joined server -2022-12-12 07:26:42.758424 + : InfiniteVa||pb-JiNJARFcV0RFWV1AF0VRVVxKFURWQFBD|| joined server -2022-12-12 07:26:59.825844 + : Blasteruyir777||pb-IF4NU3peFA==|| joined server -2022-12-12 07:27:59.042149 + : HumdrumFrame7||pb-IF5RVG8EUw==|| joined server -2022-12-12 07:28:45.214401 + : PC771083||pb-IF4eU006Dw==|| joined server -2022-12-12 07:29:12.304620 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-12 07:29:33.377942 + : Hero678||pb-IF4jU0YGIA==|| joined server -2022-12-12 07:29:41.412666 + : jcar914||pb-JiNJARFZV0BBVV5AGUNRUVZGFkJXRlJL|| joined server -2022-12-12 07:30:30.568793 + : PartialDee||pb-IF4RVXYmBA==|| joined server -2022-12-12 07:32:33.041793 + : catbros7||pb-IF4eUhIxBg==|| joined server -2022-12-12 07:33:56.360007 + : SHRUTIsom||pb-IF41U2scIg==|| joined server -2022-12-12 07:34:41.518169 + : FamousImpr||pb-IF4TU0oFAQ==|| joined server -2022-12-12 07:34:58.564475 + : HumdrumFrame7||pb-IF5RVG8EUw==|| joined server -2022-12-12 07:36:14.824215 + : DYNAME3032||pb-IF5WVRMhIQ==|| joined server -2022-12-12 07:38:09.239243 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-12 07:39:02.421613 + : Android59278796||pb-IF4HUlMxVw==|| joined server -2022-12-12 07:39:26.501760 + : Android59278796||pb-IF4HUlMxVw==|| joined server -2022-12-12 07:39:51.577422 + : Android59278796||pb-IF4HUlMxVw==|| joined server -2022-12-12 07:40:02.613361 + : albyresto7||pb-IF5XVGQoFA==|| joined server -2022-12-12 07:40:47.767803 + : Android61785535||pb-IF4RU2snIg==|| joined server -2022-12-12 07:41:15.853415 + : Mukund094||pb-IF4SUnMKEw==|| joined server -2022-12-12 07:44:49.592124 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-12 07:44:52.608037 + : SagaciousP||pb-IF43U04MPA==|| joined server -2022-12-12 07:45:28.774430 + : Silverpeng||pb-IF4eUkk5Vw==|| joined server -2022-12-12 07:45:48.854783 + : IllusoryHawk33||pb-IF42U0spPQ==|| joined server -2022-12-12 07:46:03.920401 + : Sujalll||pb-IF41VWFcEg==|| joined server -2022-12-12 07:46:55.109589 + : Android59278796||pb-IF4HUlMxVw==|| joined server -2022-12-12 07:48:50.570107 + : AdmirableR||pb-IF4yV3I5|| joined server -2022-12-12 07:51:12.065747 + : dwijJani9||pb-IF5RVGIqJg==|| joined server -2022-12-12 07:52:02.249574 + : BLOODFRAUD||pb-IF4xUxA7Vg==|| joined server -2022-12-12 07:52:12.280976 + : RiskyDetriment51||pb-IF5UU0cBNA==|| joined server -2022-12-12 07:52:34.370654 + : mihirraval||pb-JiNJARBSXUVCVVdBE0JXVVBHEEVbRlhK|| joined server -2022-12-12 07:52:55.457616 + : Android63957105||pb-IF4UU08NVw==|| joined server -2022-12-12 07:53:18.535823 + : kvgahlaut2||pb-IF4rVxMNCg==|| joined server -2022-12-12 07:55:20.974640 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-12 07:56:34.236597 + : AmberCircus43||pb-IF4IUnEZHQ==|| joined server -2022-12-12 07:56:36.240298 + : Blasteruyir777||pb-IF4NU3peFA==|| joined server -2022-12-12 07:58:05.554791 + : kumargchet||pb-IF4FU28fVg==|| joined server -2022-12-12 07:58:47.713557 + : Android60903665||pb-IF4mUxkJPw==|| joined server -2022-12-12 07:59:05.750655 + : SaucyStres||pb-IF4WUxMlAA==|| joined server -2022-12-12 08:00:39.070112 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-12 08:01:50.333844 + : CautiousPr||pb-IF40U3MyVQ==|| joined server -2022-12-12 08:02:24.466618 + : Southward7||pb-IF4XU3YEDg==|| joined server -2022-12-12 08:03:41.708820 + : Martinluthal||pb-IF5WUno7PQ==|| joined server -2022-12-12 08:04:43.919668 + : Southward7||pb-IF4XU3YEDg==|| joined server -2022-12-12 08:05:47.138545 + : Ironman1md||pb-IF5TU1NYAQ==|| joined server -2022-12-12 08:06:02.192957 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-12 08:06:04.204421 + : archielya||pb-IF4IU04cUQ==|| joined server -2022-12-12 08:06:15.238464 + : Android54657830||pb-IF4dUhgZMA==|| joined server -2022-12-12 08:06:24.262109 + : IndependentBoard34||pb-IF4gU0Y7AQ==|| joined server -2022-12-12 08:06:38.304212 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-12 08:06:39.305754 + : VISHAL6364S17||pb-IF4QV0s7Fw==|| joined server -2022-12-12 08:08:11.664661 + : siddhesh56||pb-IF5VV2lTMA==|| joined server -2022-12-12 08:09:15.896075 + : PartialDee||pb-IF4RVXYmBA==|| joined server -2022-12-12 08:09:33.964213 + : Customary7||pb-IF4WU2ooNg==|| joined server -2022-12-12 08:10:23.134197 + : safeek111||pb-IF4MVWdTMg==|| joined server -2022-12-12 08:10:37.176328 + : rawoofraw||pb-IF5RU1EbMw==|| joined server -2022-12-12 08:11:56.468602 + : VISHAL6364S17||pb-IF4QV0s7Fw==|| joined server -2022-12-12 08:12:01.485094 + : Android63580364||pb-IF4RU0UeAA==|| joined server -2022-12-12 08:12:06.493431 + : Yuhaan2013||pb-IF4dUmkdMg==|| joined server -2022-12-12 08:12:42.631479 + : NarrativePulp7||pb-IF4LVGQoMg==|| joined server -2022-12-12 08:13:47.859530 + : yashwanthb107||pb-IF4CVEIfKw==|| joined server -2022-12-12 08:14:29.006871 + : ResultantJury50||pb-IF42U09YHQ==|| joined server -2022-12-12 08:14:35.028983 + : QuackingC2||pb-IF4IVU9bLA==|| joined server -2022-12-12 08:14:58.102370 + : Excommunic||pb-IF4MU3hdIw==|| joined server -2022-12-12 08:15:02.118301 + : SilveryLumber44||pb-IF4RU0YaDg==|| joined server -2022-12-12 08:15:05.132414 + : UndisguisedManiac20||pb-IF41U04SEA==|| joined server -2022-12-12 08:15:08.145914 + : Excommunic||pb-IF4MU3hdIw==|| joined server -2022-12-12 08:16:13.424072 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-12 08:16:45.539542 + : Bombpakiri||pb-IF4gU08RVw==|| joined server -2022-12-12 08:16:58.591707 + : TaleMan12||pb-IF4pU0wnPA==|| joined server -2022-12-12 08:16:59.593998 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-12 08:17:00.598189 + : Android53697401||pb-IF5VUhIxMA==|| joined server -2022-12-12 08:17:41.753856 + : DustStafan777BoneMan||pb-IF4xU0szEw==|| joined server -2022-12-12 08:19:09.086484 + : srbros124||pb-IF4iV08HUA==|| joined server -2022-12-12 08:19:53.228520 + : UnerringAbdomen29||pb-IF4tUlo5Fg==|| joined server -2022-12-12 08:20:05.267124 + : ClammyLazi||pb-IF4gU25SBw==|| joined server -2022-12-12 08:21:09.482200 + : EngorgedP3||pb-IF4CVWE5Bg==|| joined server -2022-12-12 08:24:07.114935 + : FamousImpr||pb-IF4TU0oFAQ==|| joined server -2022-12-12 08:24:09.125691 + : devendra12||pb-IF4WUmFcVw==|| joined server -2022-12-12 08:24:40.208893 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-12 08:24:51.245471 + : Android63957105||pb-IF4UU08NVw==|| joined server -2022-12-12 08:25:21.345626 + : Mukund094||pb-IF4SUnMKEw==|| joined server -2022-12-12 08:25:26.374368 + : FamousImpr||pb-IF4TU0oFAQ==|| joined server -2022-12-12 08:25:31.393525 + : ArmedSeer9||pb-JiNJARBeUEJJWltJEkdXUl1CGEJeQFhG|| joined server -2022-12-12 08:26:04.513265 + : ᑈ̬̬̬ᏓᎻͥᎾᏁͣᏥͫᐳ||pb-IF4DVVYgKg==|| joined server -2022-12-12 08:26:08.533648 + : xLoop72||pb-IF5cU1IFLg==|| joined server -2022-12-12 08:26:25.585537 + : ColonialGrammar61||pb-IF4NU0wOXQ==|| joined server -2022-12-12 08:26:34.614709 + : devendra12||pb-IF4WUmFcVw==|| joined server -2022-12-12 08:27:24.763730 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-12 08:27:31.779260 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-12 08:30:19.349959 + : Android49180490||pb-IF5UVXIvNQ==|| joined server -2022-12-12 08:30:31.384414 + : UnmarkedC4||pb-IF4IUxUpCA==|| joined server -2022-12-12 08:32:31.816045 + : TopCapability10||pb-IF4DU08kHw==|| joined server -2022-12-12 08:33:46.054306 + : Ironman1md||pb-IF5TU1NYAQ==|| joined server -2022-12-12 08:34:12.164274 + : Android50331458||pb-IF4yVXczLA==|| joined server -2022-12-12 08:34:44.262265 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-12 08:35:16.362715 + : UnmarkedC4||pb-IF4IUxUpCA==|| joined server -2022-12-12 08:35:23.396220 + : RemoteRemainder4||pb-IF4vVBgaBA==|| joined server -2022-12-12 08:35:53.517132 + : RoyalProph||pb-IF5TV2MzCA==|| joined server -2022-12-12 08:36:09.581566 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-12 08:38:06.931855 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-12 08:38:22.982180 + : rawoofraw||pb-IF5RU1EbMw==|| joined server -2022-12-12 08:39:49.287609 + : DeathDef18||pb-IF4DUlQjFQ==|| joined server -2022-12-12 08:39:50.291243 + : VOIDG0D||pb-IF4gU0wxBw==|| joined server -2022-12-12 08:40:23.401275 + : Winplaygam||pb-IF4BVRQmVA==|| joined server -2022-12-12 08:40:35.440041 + : NarrativePulp7||pb-IF4LVGQoMg==|| joined server -2022-12-12 08:40:58.516409 + : Preferent5||pb-IF4WVUsFNw==|| joined server -2022-12-12 08:41:27.606212 + : BushyInstr||pb-IF4WU0QRIA==|| joined server -2022-12-12 08:42:08.728002 + : Winplaygam||pb-IF4BVRQmVA==|| joined server -2022-12-12 08:42:49.872397 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-12 08:42:51.876769 + : kakashka||pb-IF4qU0o5DQ==|| joined server -2022-12-12 08:42:58.897456 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-12 08:43:03.914125 + : Nakumrahul4321||pb-IF4OPhMg|| joined server -2022-12-12 08:43:07.928220 + : WickedRider96761||pb-IF4CUUkO|| joined server -2022-12-12 08:44:50.297270 + : Unenligh10||pb-IF4qU1FfCA==|| joined server -2022-12-12 08:44:57.325525 + : WHITU||pb-IF5TAHQO|| joined server -2022-12-12 08:51:31.642669 + : GøLinùx77||pb-IF4eUlFSJA==|| joined server -2022-12-12 08:52:30.870705 + : YLWTANI26||pb-IF4oElIy|| joined server -2022-12-12 08:52:37.893297 + : NarrativePulp7||pb-IF4LVGQoMg==|| joined server -2022-12-12 08:53:16.026958 + : CRYBABYSRI||pb-IF4XU1BZNw==|| joined server -2022-12-12 08:53:47.137981 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-12 08:56:35.683340 + : Android49180490||pb-IF5UVXIvNQ==|| joined server -2022-12-12 08:57:19.833214 + : EarlierPub||pb-IF4PVXUYAw==|| joined server -2022-12-12 08:58:59.200896 + : Android55329470||pb-IF5UUmghKw==|| joined server -2022-12-12 08:59:35.325588 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-12 09:00:25.495258 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-12 09:00:37.569072 + : Android63977212||pb-IF43U08_NQ==|| joined server -2022-12-12 09:01:02.659745 + : samuvel638||pb-IF4nVBkjLg==|| joined server -2022-12-12 09:01:31.781023 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-12 09:02:09.917836 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-12 09:04:00.338000 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-12 09:06:03.766559 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-12 09:07:09.014746 + : BuffEagle1||pb-IF5dBBYS|| joined server -2022-12-12 09:07:48.145090 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-12 09:08:19.257531 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-12 09:08:39.338322 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-12 09:10:14.695614 + : parthk1265||pb-LV4FVxEOBxcUVQxERkNWUFFA|| joined server -2022-12-12 09:15:19.901347 + : LyingEmpir||pb-IF5UU0stXQ==|| joined server -2022-12-12 09:17:09.270012 + : Moldyblade||pb-IF4UU0YbEQ==|| joined server -2022-12-12 09:17:17.290574 + : WatchfulD4||pb-IF43U1ACJA==|| joined server -2022-12-12 09:17:20.297403 + : Deepak11De||pb-IF40UhVdVA==|| joined server -2022-12-12 09:17:52.426551 + : WeakerResonance54||pb-IF4AU0IoCA==|| joined server -2022-12-12 09:19:14.724097 + : ExposedEditorial36||pb-IF4AU0slNQ==|| joined server -2022-12-12 09:19:53.857491 + : Android63580364||pb-IF4RU0UeAA==|| joined server -2022-12-12 09:21:08.118475 + : IreneRobin||pb-IF4SU00DNg==|| joined server -2022-12-12 09:21:21.159611 + : Android54967514||pb-IF5UUmVZAw==|| joined server -2022-12-12 09:21:37.223723 + : DiffidentHoplite31||pb-IF4sU0wcBA==|| joined server -2022-12-12 09:22:16.365645 + : Android63626045||pb-IF4RU0YYPA==|| joined server -2022-12-12 09:22:27.416059 + : TepidPool4||pb-IF4gU1BfCA==|| joined server -2022-12-12 09:23:21.601678 + : BushyInstr||pb-IF4WU0QRIA==|| joined server -2022-12-12 09:24:15.764648 + : SuperbDorm||pb-IF4DU08GEg==|| joined server -2022-12-12 09:24:16.765365 + : ReverentC2||pb-IF4HUk8FAg==|| joined server -2022-12-12 09:25:45.071121 + : archielya||pb-IF4IU04cUQ==|| joined server -2022-12-12 09:26:43.288435 + : HecticOnset37||pb-IF4iU0w4KQ==|| joined server -2022-12-12 09:27:56.542270 + : Android59712431||pb-IF4pUlgOIQ==|| joined server -2022-12-12 09:28:28.657760 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-12 09:28:48.708936 + : france2403||pb-IF49U1ANBw==|| joined server -2022-12-12 09:29:03.768387 + : Android62939670||pb-IF41U3cyNA==|| joined server -2022-12-12 09:29:59.970309 + : PREMch152||pb-IF5RFBMI|| joined server -2022-12-12 09:30:01.971211 + : KrazyTrave||pb-IF5cU2cRMw==|| joined server -2022-12-12 09:30:15.009788 + : Android63199781||pb-IF5XU0IZAA==|| joined server -2022-12-12 09:31:22.242439 + : ReverentC2||pb-IF4HUk8FAg==|| joined server -2022-12-12 09:31:52.370269 + : ModalHandl||pb-IF4NU0cpFw==|| joined server -2022-12-12 09:32:08.434894 + : priyansh61||pb-IF4rU1EqKA==|| joined server -2022-12-12 09:33:04.656240 + : UnchartedDonor12||pb-IF4XU0ZZCA==|| joined server -2022-12-12 09:33:10.684142 + : Rockyheman||pb-IF4NU0EkEg==|| joined server -2022-12-12 09:33:51.851625 + : UnmarkedC4||pb-IF4IUxUpCA==|| joined server -2022-12-12 09:34:11.919425 + : SilverBlaster99637||pb-IF5RVBgNHA==|| joined server -2022-12-12 09:34:22.965198 + : Merciless9||pb-IF4zU08REg==|| joined server -2022-12-12 09:34:36.029759 + : jcar914||pb-JiNJARFZV0BBVV5AGUNRUVZGFkJXRlJL|| joined server -2022-12-12 09:35:21.194057 + : PC605729||pb-IF49U0QJDw==|| joined server -2022-12-12 09:36:06.349730 + : ashu42v||pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF|| joined server -2022-12-12 09:36:44.480599 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-12 09:37:07.568097 + : PseudoAttendance18||pb-IF4VVWsGIA==|| joined server -2022-12-12 09:37:21.623066 + : IronLeopard87891||pb-IF43U0otUA==|| joined server -2022-12-12 09:37:41.694466 + : GøLinùx77||pb-IF4eUlFSJA==|| joined server -2022-12-12 09:37:42.698052 + : DarthKille||pb-IF4jIEEY|| joined server -2022-12-12 09:38:05.797151 + : TremendousCreek8||pb-IF4vUxkKDg==|| joined server -2022-12-12 09:39:04.008455 + : BushyInstr||pb-IF4WU0QRIA==|| joined server -2022-12-12 09:39:58.180956 + : Negotiab13||pb-IF4UU2NeUA==|| joined server -2022-12-12 09:40:52.371762 + : thalekalle||pb-IF4jUlRTHw==|| joined server -2022-12-12 09:44:03.065503 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-12 09:44:45.222695 + : SalientCle||pb-IF4BUksqHA==|| joined server -2022-12-12 09:45:29.370210 + : Jasonphlam||pb-IF5dUxZfCw==|| joined server -2022-12-12 09:45:33.387129 + : MonoCaprice47||pb-IF4UU0hfDQ==|| joined server -2022-12-12 09:46:32.595646 + : IronLeopard87891||pb-IF43U0otUA==|| joined server -2022-12-12 09:47:39.831845 + : ChewySmell||pb-IF49U08dJg==|| joined server -2022-12-12 09:48:32.008176 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-12 09:49:02.138307 + : ReverentC2||pb-IF4HUk8FAg==|| joined server -2022-12-12 09:49:07.164625 + : Harsh1726||pb-IF4xU0cAHA==|| joined server -2022-12-12 09:49:13.194730 + : Android54993642||pb-IF5cUmUlDA==|| joined server -2022-12-12 09:49:27.242005 + : S1DtheKID||pb-IF4AV3UfEA==|| joined server -2022-12-12 09:49:36.275177 + : LustrousC3||pb-IF4oUnVaNg==|| joined server -2022-12-12 09:50:04.399157 + : captshivi||pb-IF4tCRgv|| joined server -2022-12-12 09:50:07.409299 + : ashu42v||pb-JiNJARBbUUtJW1pBE0RQUFNAGUJeRFVF|| joined server -2022-12-12 09:50:47.558338 + : WickedRider96761||pb-IF4CUUkO|| joined server -2022-12-12 09:54:41.349877 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-12 09:54:56.401035 + : WeakerResonance54||pb-IF4AU0IoCA==|| joined server -2022-12-12 09:55:14.464950 + : pilot12856||pb-IF4nA28F|| joined server -2022-12-12 09:55:38.556096 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-12 09:55:46.584188 + : Jasonphlam||pb-IF5dUxZfCw==|| joined server -2022-12-12 09:56:31.751535 + : CleanerProsperity29||pb-IF5TUkEsKQ==|| joined server -2022-12-12 09:56:49.853021 + : sagarrathore481||pb-IF5UUxgjIA==|| joined server -2022-12-12 09:57:07.905603 + : bomdsqard||pb-IF5WVEwIKA==|| joined server -2022-12-12 09:57:33.988332 + : Android63956151||pb-IF4iU04PKA==|| joined server -2022-12-12 09:57:40.000197 + : WeakerResonance54||pb-IF4AU0IoCA==|| joined server -2022-12-12 09:57:44.016645 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-12 09:57:45.022234 + : rahulhasan22106||pb-IF4oDRgJ|| joined server -2022-12-12 09:59:19.389677 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-12 09:59:55.498964 + : Android63053623||pb-IF4-U3gdFw==|| joined server -2022-12-12 10:00:09.540117 + : TokenMagic||pb-IF4qU3pTMg==|| joined server -2022-12-12 10:01:10.755090 + : CKD360||pb-IF4uU3gNKQ==|| joined server -2022-12-12 10:01:23.788331 + : Android60071137||pb-IF4nUxE4Nw==|| joined server -2022-12-12 10:02:44.050036 + : WeakerResonance54||pb-IF4AU0IoCA==|| joined server -2022-12-12 10:06:14.792254 + : rahulhasan22106||pb-IF4oDRgJ|| joined server -2022-12-12 10:07:10.977190 + : Rakshaande||pb-IF42VRUPPw==|| joined server -2022-12-12 10:07:37.073164 + : EuphoricOr||pb-IF4zVEoqXA==|| joined server -2022-12-12 10:07:47.104674 + : RhythmicCr||pb-IF4hVFkHKg==|| joined server -2022-12-12 10:08:40.308054 + : Android63870740||pb-IF4oU01aDA==|| joined server -2022-12-12 10:09:21.427538 + : Android63928771||pb-IF4DU04PUQ==|| joined server -2022-12-12 10:09:42.509009 + : YoungerCol||pb-IF4cU3NcKQ==|| joined server -2022-12-12 10:09:54.565270 + : aminlalaku||pb-IF4RU1AeAQ==|| joined server -2022-12-12 10:10:02.587374 + : rahulhasan22106||pb-IF4oDRgJ|| joined server -2022-12-12 10:11:51.983745 + : Identical2||pb-JiNJARBfUEtCWFhCF0BSXFJLF0JbQFlK|| joined server -2022-12-12 10:14:55.586567 + : Android56663752||pb-IF4hUnInFg==|| joined server -2022-12-12 10:16:39.924483 + : MunicipalJ||pb-IF4PU0UlAw==|| joined server -2022-12-12 10:16:45.942718 + : PC688281||pb-IF49VFQlPA==|| joined server -2022-12-12 10:16:54.969108 + : EuphoricOr||pb-IF4zVEoqXA==|| joined server -2022-12-12 10:21:00.837330 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-12 10:21:41.983645 + : TremendousCreek8||pb-IF4vUxkKDg==|| joined server -2022-12-12 10:22:36.165411 + : GiantRobot||pb-IF4wV24HBw==|| joined server -2022-12-12 10:29:06.593555 + : Android63074779||pb-IF4VU3laVA==|| joined server -2022-12-12 10:29:42.734549 + : LustrousC3||pb-IF4oUnVaNg==|| joined server -2022-12-12 10:30:04.806179 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-12 10:32:05.261427 + : Android49180490||pb-IF5UVXIvNQ==|| joined server -2022-12-12 10:33:21.523923 + : harshal||pb-IF4vU0MENg==|| joined server -2022-12-12 10:33:38.575736 + : IrremediableWraith22||pb-IF5RU2wCXQ==|| joined server -2022-12-12 10:35:51.026096 + : Android63511670||pb-IF4pU0QzBg==|| joined server -2022-12-12 10:36:07.098802 + : yashgusadfggggggg||pb-IF4hU0g4LA==|| joined server -2022-12-12 10:36:54.294745 + : SmallerSto||pb-IF4RVVkfMg==|| joined server -2022-12-12 10:39:15.787417 + : Android52820777||pb-IF4PVVI4Dg==|| joined server -2022-12-12 10:39:55.913376 + : Android52820777||pb-IF4PVVI4Dg==|| joined server -2022-12-12 10:40:11.966783 + : CrystalThrone2000||pb-IF5TLEwR|| joined server -2022-12-12 10:40:18.980825 + : Android55430347||pb-IF4OUmc5Vg==|| joined server -2022-12-12 10:40:52.094919 + : yashgusadfggggggg||pb-IF4hU0g4LA==|| joined server -2022-12-12 10:41:50.330413 + : TrippyJest||pb-IF4BV2gDEA==|| joined server -2022-12-12 10:42:43.548128 + : VascularDeficiency37||pb-IF4rUk0bPQ==|| joined server -2022-12-12 10:43:34.721559 + : hacker1199||pb-IF4BU0cDNg==|| joined server -2022-12-12 10:43:38.736116 + : djankit857||pb-IF4iVFBbDA==|| joined server -2022-12-12 10:44:35.948615 + : ajithkumar||pb-IF4AVU8eVg==|| joined server -2022-12-12 10:44:45.976023 + : ChewySmell||pb-IF49U08dJg==|| joined server -2022-12-12 10:44:50.990731 + : PC326574||pb-IF4PVUgdKQ==|| joined server -2022-12-12 10:45:46.187196 + : CulinaryR2||pb-IF5RU04ZDA==|| joined server -2022-12-12 10:46:34.343656 + : EasyComple||pb-IF4cU00cCQ==|| joined server -2022-12-12 10:47:16.491629 + : QuirkyEven||pb-IF4mUxBZIg==|| joined server -2022-12-12 10:47:40.582385 + : HypnoticAttacker6749||pb-IF4TV3RbDA==|| joined server -2022-12-12 10:51:21.371235 + : WeakerResonance54||pb-IF4AU0IoCA==|| joined server -2022-12-12 10:53:37.862788 + : GhastlyMephit1710||pb-IF4FVVUdUA==|| joined server -2022-12-12 10:53:53.917155 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-12 10:56:09.341717 + : Android57379873||pb-IF4mUnkKMA==|| joined server -2022-12-12 10:56:47.475514 + : Ainesh0001||pb-IF4cUktZNg==|| joined server -2022-12-12 10:59:12.971342 + : LightSearg||pb-JiNJARFcVEFGXVdEEUBXVVBFFkNdR1BH|| joined server -2022-12-12 10:59:20.996168 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-12 11:02:11.608480 + : PC326574||pb-IF4PVUgdKQ==|| joined server -2022-12-12 11:02:32.677419 + : TiredShift||pb-IF40UncaLg==|| joined server -2022-12-12 11:03:37.924871 + : Customary7||pb-IF4WU2ooNg==|| joined server -2022-12-12 11:05:34.313207 + : Sumanth386||pb-IF5TUm4DNg==|| joined server -2022-12-12 11:08:29.994533 + : Ansilchikuu||pb-IF4cVE4MDQ==|| joined server -2022-12-12 11:09:33.226114 + : Jaspreeth9||pb-IF4QU1AhXQ==|| joined server -2022-12-12 11:09:44.263398 + : Baralund||pb-IF4VUhAKEg==|| joined server -2022-12-12 11:10:16.381068 + : Linux34107||pb-IF4VVW4HFQ==|| joined server -2022-12-12 11:12:30.834455 + : sheriff007gamer||pb-IF4hVFQJPA==|| joined server -2022-12-12 11:16:07.573707 + : TBHFEVER||pb-IF4lVWYjIw==|| joined server -2022-12-12 11:17:43.938737 + : NOMERCY||pb-IF49U0QJDw==|| joined server -2022-12-12 11:19:45.377570 + : karanshetty6||pb-IF5RUmMsFg==|| joined server -2022-12-12 11:20:34.546831 + : Android63397175||pb-IF4jU0MoPA==|| joined server -2022-12-12 11:20:54.615625 + : Koushik21||pb-IF42Ums5DQ==|| joined server -2022-12-12 11:22:15.869371 + : ChewySmell||pb-IF49U08dJg==|| joined server -2022-12-12 11:22:54.015762 + : OverheadPo||pb-IF4GVUFcUg==|| joined server -2022-12-12 11:23:11.072813 + : PutativeFoe61||pb-IF5RU00ZXA==|| joined server -2022-12-12 11:24:05.243862 + : viratvenki||pb-IF4oVXQbCA==|| joined server -2022-12-12 11:25:27.522743 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-12 11:25:43.572673 + : PaternalisticEmu11||pb-IF4nU2ssKg==|| joined server -2022-12-12 11:26:44.785583 + : UKnowMeAJ||pb-JiNJARFbVkZGX15FF0ZTUVRAEUheQlhH|| joined server -2022-12-12 11:26:53.819296 + : HealthyLoc||pb-IF4AU1ASIA==|| joined server -2022-12-12 11:27:54.014511 + : venkad04es||pb-IF4nUnYhUA==|| joined server -2022-12-12 11:27:55.019773 + : JealousCry||pb-IF4xV2oPHA==|| joined server -2022-12-12 11:28:51.250212 + : NearCandy4||pb-IF4wUlIYCg==|| joined server -2022-12-12 11:29:58.483617 + : Koushik21||pb-IF42Ums5DQ==|| joined server -2022-12-12 11:30:07.522859 + : Martinphil||pb-IF4cU3oSUw==|| joined server -2022-12-12 11:30:15.557911 + : ChewySmell||pb-IF49U08dJg==|| joined server -2022-12-12 11:30:20.577773 + : farmaan123||pb-IF4HU1AqNA==|| joined server -2022-12-12 11:30:54.707244 + : Android63940563||pb-IF4wU09SJA==|| joined server -2022-12-12 11:31:34.854523 + : LORDHanzoStar||pb-IF4qUkQ9CA==|| joined server -2022-12-12 11:31:59.931785 + : Android63957105||pb-IF4UU08NVw==|| joined server -2022-12-12 11:33:22.243980 + : shaikmohammadarif||pb-IF4gUlo9CQ==|| joined server -2022-12-12 11:33:33.298002 + : Devil77181908||pb-IF4dUFk_|| joined server -2022-12-12 11:34:20.467129 + : WeakerResonance54||pb-IF4AU0IoCA==|| joined server -2022-12-12 11:34:28.484628 + : Android63626602||pb-IF4zU0YxKw==|| joined server -2022-12-12 11:34:45.552742 + : weirdassal||pb-IF4PVUwcFw==|| joined server diff --git a/dist/ba_root/mods/serverdata/logs.log b/dist/ba_root/mods/serverdata/logs.log deleted file mode 100644 index 037aa80..0000000 --- a/dist/ba_root/mods/serverdata/logs.log +++ /dev/null @@ -1,8604 +0,0 @@ -2023-05-21 22:47:31.309643 + : pb-JiNJARFTV0NJXFxCFkJYUFNEEUVWT1JC started kick vote for pb-IF4TVWEnIg==. -2023-05-21 22:48:01.317149 + : Kick vote End -2023-05-21 22:51:26.718766 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajaw, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-21 22:53:23.129490 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvd, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-21 22:54:06.286042 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvd, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-21 22:54:11.291124 + : pb-IF4dVFo7Cw== ip: b}k~}kiai`zvc{, Device id: 9c80fd00a0721393bbbd095368fc2ee255ac1fd0 -2023-05-21 22:55:23.580626 + : pb-IF4KUBYdPQ== ip: avh~vo~~`cai`, Device id: 65ca653399802b5a56f43826b470895b17abf95b -2023-05-21 22:58:06.234953 + : pb-IF4iUmsSDw== ip: ak~vh~~``aifw, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-21 23:01:23.997239 + : pb-JiNJARFcUUZCW19DGEdQV1VAEkVYRFFF ip: a~o~va~}laaod, Device id: 4e5321d35762726ea50a0170ec7a518eebd96d1c -2023-05-21 23:07:04.292744 + : pb-IF4xUGQfNg== ip: an~}i`aj`vvax`, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-05-21 23:07:28.392208 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-21 23:10:15.011798 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-21 23:14:28.959531 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-21 23:18:50.933623 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajaw, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-21 23:25:40.430211 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajaw, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-21 23:29:56.400410 + : pb-IF4xUGQfNg== ip: an~}i`aj`vvax`, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-05-21 23:31:17.675637 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-21 23:31:21.684401 + : pb-JiNJARBeV0BCXFlGFU9VUl1AF0FYQFFL ip: ak~~hba`eakd, Device id: e5905a14a29d3e50cd8efc631f4e86208a960e29 -2023-05-21 23:38:41.365269 + : pb-IF5QU3AaLg== ip: azo~|j~~jeam`, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-21 23:40:00.671607 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajaw, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-21 23:40:29.790279 + : pb-IF4iUmsSDw== ip: ak~vh~~``aifw, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-21 23:41:34.627995 + : pb-IF4iUmsSDw== started kick vote for pb-IF5QU3AaLg==. -2023-05-21 23:42:04.630343 + : Kick vote End -2023-05-21 23:42:51.271436 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajaw, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-21 23:44:20.611051 + : pb-IF4uU2U7Bg== ip: hwvbzj~zva{n, Device id: 5d47336e972a284382616ff8e88f137e6c3e9673 -2023-05-21 23:52:22.427836 + : pb-IF4ABxUm ip: a~h~}jda``ajaw, Device id: 39dc67bee2d86d08695660d48b3e2a4bbc43ba5c -2023-05-21 23:53:45.741673 + : pb-IF4ABxUm ip: a~h~}jda``ajaw, Device id: 39dc67bee2d86d08695660d48b3e2a4bbc43ba5c -2023-05-21 23:54:37.906345 + : pb-IF4cUktZNg== ip: a~h~}keajcwvay, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-21 23:55:34.129516 + : pb-IF4uU2U7Bg== ip: hwvbzj~zva{n, Device id: 5d47336e972a284382616ff8e88f137e6c3e9673 -2023-05-21 23:55:37.140725 + : pb-IF4cUktZNg== ip: a~h~}keajcwvay, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-21 23:55:58.222488 + : pb-IF4ABxUm ip: a~h~}jda``ajaw, Device id: 39dc67bee2d86d08695660d48b3e2a4bbc43ba5c -2023-05-21 23:56:52.355614 + : pb-IF4uU2U7Bg== started kick vote for pb-IF4ABxUm. -2023-05-21 23:57:22.357714 + : Kick vote End -2023-05-22 00:00:49.474563 + : pb-IF4uU2U7Bg== started kick vote for pb-IF4cUktZNg==. -2023-05-22 00:01:08.748949 + : Kick vote End -2023-05-22 00:03:17.211514 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajaw, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-22 00:04:01.365404 + : pb-IF4cUktZNg== ip: a~h~}keajcwvay, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-22 00:05:56.854445 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajaw, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-22 00:10:59.999606 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajaw, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-22 00:12:03.224618 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-22 00:19:50.852666 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajaw, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-22 00:20:17.952989 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-22 00:24:38.939335 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajaw, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-22 00:31:58.556991 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-22 00:37:57.005287 + : pb-IF4TUGEIDQ== ip: bxveyvb{l~~jg, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-22 00:45:30.734671 + : pb-IF5QU3AaLg== ip: azo~|j~~ieak`, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-22 00:46:29.054241 + : pb-IF4JU3MeLQ== ip: a{i~~meaievvbi, Device id: c6f5d0c45ecb7c810c0a0db59104fd16eabcd953 -2023-05-22 00:46:48.126952 + : pb-IF4sU3VSMg== ip: dvvc}vawa~~a`, Device id: cb6dd8b1d356943cea4f7e54c07fc932a91971ec -2023-05-22 00:47:55.606337 + : pb-IF4JU3MeLQ== ip: a{i~~meaievvbi, Device id: c6f5d0c45ecb7c810c0a0db59104fd16eabcd953 -2023-05-22 00:52:58.830658 + : pb-IF41U2scIg== ip: an~}i`aifwvgz, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-22 00:56:11.473135 + : pb-IF41U2scIg== ip: an~}i`aifwvgz, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-22 00:58:50.103577 + : pb-IF4IV04ZKw== ip: an~~afaibzvb}l, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-05-22 01:09:36.809243 + : pb-IF4JVxAsDw== ip: azj~z`~}haaic{, Device id: 66a8930856f7a5a313718ff4a9f67c1977a74930 -2023-05-22 01:13:47.705395 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-22 01:14:54.989346 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajaw, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-22 01:29:02.080970 + : pb-IF4DU3AABw== ip: azj~z`~}jgajdz, Device id: 7512cf0ff015f72022da4f39b3a4f849f70ef523 -2023-05-22 01:54:48.558830 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-22 02:17:19.323692 + : pb-IF5SUGknVw==|| kicked > new account -2023-05-22 02:36:04.125213 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-22 03:16:21.050574 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-22 05:31:30.974829 + : Server started -2023-05-22 05:56:52.771575 + : pb-IF4SVUE6VA== ip: dvvcyvavvbzm, Device id: eb3d82a14ec8fab4d051dbf574ab40df3b75db69 -2023-05-22 06:09:13.629126 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-22 06:29:23.952170 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-22 06:49:50.311526 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-22 06:57:42.067059 + : pb-IF4cVRQEVA== ip: a~h~}jgaj~}kf, Device id: 4cdccdd087faa6d3d81a3e6d8c43fcadfaaba525 -2023-05-22 07:09:55.632596 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-22 07:29:28.701381 + : pb-IF4cV2kvCw== ip: azo~|j~|n~~a, Device id: 3fe9f4ba5820391280fbd451de01debb4e778d06 -2023-05-22 07:50:53.398015 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-22 07:55:04.376222 + : pb-IF4MUBAADQ== ip: azo~|j~|o~~n, Device id: d76da9ecce80a4408533d74d804baa03c985726d -2023-05-22 08:11:31.064971 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-22 08:11:47.125073 + : pb-IF4eU0s9Pw== ip: a~a~vl~yl~vo, Device id: 79ff602d98582d9885d769eec06b4ebd8aab0aad -2023-05-22 08:28:52.466805 + : pb-IF5WU0gIUQ== ip: azj~z`~}ibajaz, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-22 08:31:42.095692 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-22 08:41:03.995053 + : pb-IF4RUxMNHA== ip: azo~{a~~`daii, Device id: 0622aa7c889216a06f593c24c42bfee71b185370 -2023-05-22 08:45:15.863971 + : pb-IF4PV24yPA== ip: a~h~}jgancaiav, Device id: 5bd1087e38783d3d08f01cfce5d36dfbf8440740 -2023-05-22 08:51:20.407239 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-22 08:57:57.878457 + : pb-IF5SUGUbXQ== ip: dvvbo~}lfaibv, Device id: 9c7c6b23fd321ac2a6f01ad131978f717767a27c -2023-05-22 09:01:35.684807 + : pb-IF5QU3AaLg== ip: a}j~~o`alhanh, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-22 09:02:48.962615 + : pb-IF5QU3AaLg== ip: a}j~~o`alhanh, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-22 09:14:08.446878 + : pb-IF40UBISLQ== ip: bxveyvb{`~zi, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-22 09:14:48.625588 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-22 09:17:40.289804 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-22 09:21:15.519976 + : pb-IF4UUBMBHA== ip: azj~z`~|m~}la, Device id: ac16a99230d2d83318f44aa07143d3901a9ced44 -2023-05-22 09:22:21.748528 + : pb-IF40UBISLQ== ip: bxveyvb{`~zi, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-22 09:25:49.481119 + : pb-IF5SUGUbXQ== ip: dvvbo~}lfaibv, Device id: 9c7c6b23fd321ac2a6f01ad131978f717767a27c -2023-05-22 09:27:18.897590 + : pb-IF4xUGQ7Hw== ip: b}k~}jhaif}vaxo, Device id: 9376e1a6b9eb9228e4b3f9fed78e8372b803d8c9 -2023-05-22 09:29:50.737158 + : pb-IF43UGEhHQ== ip: awj~ya~~ogajc}, Device id: 556f6281cb5ff13481b9320923cd00849bbec6ef -2023-05-22 09:32:55.429537 + : pb-IF4qUGcgVA== | kicked > reason:Banned account -2023-05-22 09:33:39.598233 + : pb-IF4FU1daUA== ip: azo~|l~yj~|i, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-22 09:34:08.701627 + : pb-JiNJVxFbVkNDX1lGF0BWXV1BEUJWQ1BD ip: bj~~ndaicwvb}m, Device id: 9bc47e67061e44f5ab8f97a7558e6998f7a2c0a9 -2023-05-22 09:36:39.832027 + : pb-IF4FUGdaPw==|| kicked > new account -2023-05-22 09:51:28.937420 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-22 09:56:44.202294 + : pb-IF4zUBUlNg== ip: an~}heaiizvbk, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-22 09:58:27.636852 + : pb-IF4FU1daUA== ip: azo~|l~{h~~hc, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-22 10:02:41.585807 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jf, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-22 10:06:37.420495 + : pb-IF5QU3AaLg== ip: ak~}maamgaify, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-22 10:10:09.254319 + : pb-IF4UU1QBKQ== ip: an~}igai`a`g, Device id: 65d06a814642275ab81ce3da31b8232abbe8a453 -2023-05-22 10:11:14.541246 + : pb-IF4xUGQfNg== ip: an~}i`aj`vvax`, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-05-22 10:11:32.594899 + : pb-IF4tCRgv ip: a}j~~naaogaia, Device id: 8c50b5e94f4fedbbbc30c1fd2d39bf3275ea8fc5 -2023-05-22 10:13:22.102331 + : pb-IF4tCRgv ip: a}j~~naaogaia, Device id: 8c50b5e94f4fedbbbc30c1fd2d39bf3275ea8fc5 -2023-05-22 10:14:58.671005 + : pb-IF4cUBYfCg== ip: azo~{m~~mbaid{, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-22 10:30:51.403567 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-22 10:36:30.668371 + : pb-IF4iUmsSDw== ip: a}j~~naam`aod, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-22 10:41:07.745825 + : pb-IF4vV0g8Mw== ip: azo~|j~vm~~`d, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-05-22 10:41:22.799757 + : pb-IF5QUGQDEw== ip: b}k~}jgajaajcy, Device id: 9c7c6b23fd321ac2a6f01ad131978f717767a27c -2023-05-22 10:41:38.857892 + : pb-IF5QUGQDEw== ip: b}k~}jgajaajcy, Device id: 9c7c6b23fd321ac2a6f01ad131978f717767a27c -2023-05-22 10:45:42.487115 + : pb-IF4mUGY5Cg== ip: azo~|j~va{`, Device id: bc1249b82defec40c4920f2f126ec66b1bdc6bc7 -2023-05-22 10:49:16.598755 + : pb-IF4BUGYZEg==|| kicked > new account -2023-05-22 10:58:37.915988 + : pb-IF4SVUcDHw== ip: azo~{a~~neaidw, Device id: ea4694a7d31555be061f7a2cc0d388e3c804e9c6 -2023-05-22 10:59:21.068924 + : pb-IF4mUGY5Cg== ip: azo~|j~va{`, Device id: bc1249b82defec40c4920f2f126ec66b1bdc6bc7 -2023-05-22 11:00:30.326661 + : pb-IF4jUBMiCg== ip: azh~~jiai`}vf|, Device id: 110d204538538c5e9a37a58eb6c53fa6e365be08 -2023-05-22 11:00:36.339286 + : pb-IF4mUGY5Cg== ip: azo~|j~va{`, Device id: bc1249b82defec40c4920f2f126ec66b1bdc6bc7 -2023-05-22 11:00:48.382966 + : pb-IF40UBISLQ== ip: bxveyvb{`~zi, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-22 11:02:01.613801 + : pb-IF4lUGE4EQ== ip: a|o~vo~~jfa`c, Device id: 058660e91874a713c3c045c243ac825615d89ff0 -2023-05-22 11:02:12.655337 + : pb-IF4iUmsSDw== ip: a}j~~naam`aod, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-22 11:02:54.730785 + : pb-IF4gUGdZFg==|| kicked > new account -2023-05-22 11:05:45.758070 + : pb-IF4-AGI7 ip: bxvf}vb|m~~lb, Device id: 30044689eb8e24c858cb1d029b58e40e866f2cfb -2023-05-22 11:08:42.416612 + : pb-IF42VUosHw== ip: dvvd|vbzh~~of, Device id: 0dc1592aab27d49bdee4646a0f7b52630c6cc737 -2023-05-22 11:10:25.773453 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-22 11:10:26.777807 + : pb-IF4MUBMHKA== ip: azj~z`~~n~xl, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-22 11:11:49.057668 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-22 11:15:35.538471 + : pb-IF4sU28eAg== started kick vote for pb-IF4MUBMHKA==. -2023-05-22 11:15:50.063420 + : Kick vote End -2023-05-22 11:16:13.291333 + : pb-IF4nUkteVA== ip: a}j~zh~}hbaid, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-05-22 11:16:35.358015 + : pb-IF4XUBQFVw== ip: an~}icajdwvb|j, Device id: 298e47118e19635b09db52041b14b27da1ada7ee -2023-05-22 11:17:11.464568 + : pb-IF40U04tFw== ip: azo~{a~~kgajdz, Device id: 69832cafce0d0fdf3d4e3d396b341c04aea5016c -2023-05-22 11:17:43.569120 + : pb-IF4yVVEzDw== ip: azo~{a~~jiaidx, Device id: 719c2c24f5906351fa7a9e44a9b4042bd66943b2 -2023-05-22 11:19:24.666531 + : pb-IF4OU2QjMQ== ip: an~}i`aj`vvax`, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-22 11:21:09.305089 + : pb-IF4DV3MCHQ== ip: ak~~oeaicyvb, Device id: 0c06464047322db7f7caeaa037beae74df787275 -2023-05-22 11:23:47.913327 + : pb-IF4SVUcDHw== ip: azo~{a~~neaidw, Device id: ea4694a7d31555be061f7a2cc0d388e3c804e9c6 -2023-05-22 11:33:35.256452 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-22 11:34:47.514675 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-22 11:40:20.757856 + : pb-IF4HUBI8EQ== ip: bj~~oianiamf, Device id: 3b32fb097832d359ee8f82fdb4305bb99dbcea67 -2023-05-22 11:41:30.981517 + : pb-IF5XVW8aUQ== ip: a~o~}jbaib|vavn, Device id: 3478aa6ac466d8233b59a384474b13ef31b97582 -2023-05-22 11:47:22.383071 + : pb-IF4mUBkaEQ== ip: ak~zo~}meamf, Device id: edbef3c3243e32c8694e23549dde7d3edc536e26 -2023-05-22 11:49:04.765337 + : pb-IF4iU1IOPw== ip: a~h~}jdai`vdy, Device id: 84c5007c7de424209ce066f662312318e57413ad -2023-05-22 11:49:39.899539 + : pb-IF4qU0cFIw== ip: bxvf|vb~i~~le, Device id: e70a49bb59c9e154a17f74bf09adcbefac59ca89 -2023-05-22 11:50:19.052902 + : pb-IF4zUGYTVg== ip: azo~|j~vvayi, Device id: 7d4291d3869d545349378f8efb6a19b3b30bce9f -2023-05-22 11:50:44.132137 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-22 11:51:21.717169 + : pb-IF4eUGcbAQ==|| kicked > new account -2023-05-22 11:51:22.260859 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-22 11:52:32.521567 + : pb-IF4zUBUlNg== ip: an~}heaiizvbk, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-22 11:53:09.664302 + : pb-IF4TUxEoKg== ip: an~~aca`dakb, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-22 11:57:54.232888 + : Server started -2023-05-22 11:57:55.238478 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-22 11:57:57.247874 + : pb-IF4TUxEoKg== ip: an~~aca`dakb, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-22 11:59:07.494667 + : pb-IF5SU00NUw== ip: azj~zo~}ihaicw, Device id: aee5cee5d177161e0b2dfee1860eab00ff2f7b1a -2023-05-22 12:02:04.122617 + : pb-JiNJARBZXEJHXF1FEEBRVVZFFEFdQFZB ip: an~}jbamiajd~, Device id: 4f4e7e9b90ea1f1f03751f02d8951190b4e8946d -2023-05-22 12:03:50.526992 + : pb-IF4zUkwZBw== ip: a}j~~nda`baia}, Device id: bc1327009f9944b141f04912712143c738d96727 -2023-05-22 12:04:17.631496 + : pb-IF49VFdbEQ== ip: a~o~va~}jdamd, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-22 12:04:46.777274 + : pb-IF4TUxEoKg== ip: an~~aca`dakb, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-22 12:04:58.221941 + : pb-IF5XUGkfDQ==|| kicked > new account -2023-05-22 12:05:12.877931 + : pb-IF4TUxEoKg== ip: an~}iaaiayvdz, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-22 12:05:52.031859 + : pb-IF4qUGY9Bg== ip: dvvc{vaxm~|o, Device id: 0db2dcd11a97ba69ce647f6cda47dd5dd8409b55 -2023-05-22 12:05:59.059933 + : pb-IF4HUBI8EQ== ip: bj~~oianiamf, Device id: 3b32fb097832d359ee8f82fdb4305bb99dbcea67 -2023-05-22 12:09:22.846677 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG ip: an~~aeal~|m, Device id: 822adb43af454f4ce0fdec16028787c26c151d5f -2023-05-22 12:11:04.205080 + : pb-IF4TUGEIDQ== ip: an~}hgajbvvbzj, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-22 12:12:17.500172 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-22 12:14:28.933423 + : pb-IF4jF1NY ip: azj~z`~{vb|n, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-22 12:17:34.575596 + : pb-IF4zUBUlNg== ip: an~}heaiizvbk, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-22 12:18:01.689292 + : pb-IF4jU2wfVQ== ip: ak~wa~}keai`y, Device id: b001124a818ebd76cbf039c9fd1b3acce02937cc -2023-05-22 12:18:08.720765 + : pb-IF4eUGYjVw== ip: azj~z`~}iaaiew, Device id: ab6dbc231770d358b9c68287fd031c872673228b -2023-05-22 12:18:13.740119 + : pb-IF4cVRghVQ== ip: a~h~~kgakfai`|, Device id: 6c782294f03f4a7b58e561dd8c7fb8938d284488 -2023-05-22 12:18:39.549414 + : pb-IF4jF1NY started kick vote for pb-IF4eUGYjVw==. -2023-05-22 12:18:48.892193 + : Kick vote End -2023-05-22 12:18:58.901847 + : pb-IF4IVFkKNA== ip: an~~adamfane, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-05-22 12:19:25.971414 + : pb-IF49UBEhJA== ip: dvvc{ve|vhy, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-22 12:20:23.475959 + : pb-IF4rUGcGCw==|| kicked > new account -2023-05-22 12:21:28.378433 + : pb-IF4yU1oxUg== ip: azo~|j~}i~vh, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-22 12:22:48.685341 + : pb-IF4SU0QdDQ== ip: a~h~}jda`caaf, Device id: 2811de9edd766cff3ad41d43c5f432ab2aed0144 -2023-05-22 12:23:13.781879 + : pb-IF48U0siPA== ip: dvvcyvivcz, Device id: 5ca4ccb47e41db39a475376c4228611c7b3c8fe3 -2023-05-22 12:24:02.983044 + : pb-IF4yU1oxUg== ip: dvvc{vaya~~``, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-22 12:24:09.006977 + : pb-IF4IVFkKNA== ip: an~~adamfane, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-05-22 12:28:51.348377 + : pb-IF42UGcsAw==|| kicked > new account -2023-05-22 12:35:26.503778 + : pb-IF49VFdbEQ== ip: a~o~va~}jdamd, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-22 12:35:37.537900 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvd, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-22 12:36:45.738336 + : pb-IF4rUGNSVw== ip: azo~{a~}hbaob, Device id: 349a679116e274bc3bba56f3e0bbe6769e47e97f -2023-05-22 12:36:56.778188 + : pb-IF4iUmsSDw== ip: a}j~~naam`aod, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-22 12:38:27.091908 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-22 12:38:50.154572 + : pb-IF5dU3UiAw== ip: a~o~}icai`zvc~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-22 12:39:21.268863 + : pb-IF4SU0QdDQ== ip: a~h~}jda`caaf, Device id: 2811de9edd766cff3ad41d43c5f432ab2aed0144 -2023-05-22 12:39:43.336641 + : pb-IF5XU0IZAA== ip: b}k~~`aaj`vfz, Device id: ddb00bd5e7cc7f8e199e075b85259ba799bfdc4e -2023-05-22 12:40:20.461148 + : pb-IF4MUBVeMQ== ip: b}k~~`iajayva|i, Device id: bd8158b473696d433dc1f27858a22b099d6cebc1 -2023-05-22 12:40:25.483599 + : pb-IF4FUEY4 ip: ak~~`baicvb|l, Device id: 452bcd37350866efb1deb4f785c1364a1abde5d2 -2023-05-22 12:42:13.894349 + : pb-IF4rUGNSVw== ip: azo~{a~}hbaob, Device id: 349a679116e274bc3bba56f3e0bbe6769e47e97f -2023-05-22 12:43:20.255069 + : pb-IF5QU3AaLg== ip: ak~}maamgaih, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-22 12:43:45.639665 + : pb-IF4sUGYzMw==|| kicked > new account -2023-05-22 12:44:45.544057 + : pb-IF4vV0g8Mw== ip: azo~|j~vm~~`d, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-05-22 12:49:36.694053 + : pb-IF5dMmkE ip: bxvf|vb}a~wi, Device id: 51d8e2c13b6a0c1500cd2ce6c8fb0df17198d682 -2023-05-22 12:49:47.726951 + : pb-IF4MUBVeMQ== ip: b}k~~`iajayva|i, Device id: bd8158b473696d433dc1f27858a22b099d6cebc1 -2023-05-22 12:50:05.801143 + : pb-IF4wU1MPEg== ip: awj~ya~~ofaic~, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-22 12:51:47.178384 + : pb-IF4hUnBZIQ== ip: azj~zo~}kiajax, Device id: fc6a973b52e163544b7b4f2a91fba16838cded21 -2023-05-22 12:52:02.224531 + : pb-IF5VU1JZMw== ip: an~}ica`famd, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-05-22 12:52:12.266695 + : pb-IF4xUGMSEw== ip: ak~yn~wj~}jd, Device id: c370d68a56d10fa1f3e4d43583b5e588c22bdfbe -2023-05-22 12:53:16.521075 + : pb-IF49VFdbEQ== ip: a~o~va~}jdamd, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-22 12:55:26.300320 + : pb-IF4vV0g8Mw== started kick vote for pb-IF5VU1JZMw==. -2023-05-22 12:55:56.301613 + : Kick vote End -2023-05-22 12:57:01.654598 + : pb-IF5RUGkRDg==|| kicked > new account -2023-05-22 12:58:49.824735 + : pb-IF4gU0wxBw== ip: ak~}hhaniai`x, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-22 12:59:32.065464 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4TUxEoKg==. -2023-05-22 13:00:02.078589 + : Kick vote End -2023-05-22 13:00:33.227870 + : pb-IF4lU3cFFw== | kicked > reason:Banned account -2023-05-22 13:01:25.428937 + : pb-IF4cUBYfCg== ip: azo~{m~~mbaje}, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-22 13:01:45.489506 + : pb-IF4wU1MPEg== ip: awj~ya~~ofaic~, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-22 13:03:28.864166 + : pb-IF4gU0wxBw== ip: ak~}hhaniai`x, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-22 13:07:17.661736 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-22 13:07:25.690792 + : pb-IF5TV2MzCA== ip: a~n~xj~}hcajb, Device id: 8d2ce48f1963f567e45473ac0d4666ffa3c8c460 -2023-05-22 13:07:55.812357 + : pb-IF4AV1QqEQ== ip: an~}ica`canf, Device id: 2331b3822293d621f32ade855f2e13b5f48a2f9e -2023-05-22 13:08:43.721868 + : kicked Hrithiksng -2023-05-22 13:09:41.198348 + : pb-IF5dU3UiAw== ip: a~o~}icai`zvc~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-22 13:10:50.433257 + : pb-IF4wU1MPEg== ip: awj~ya~~ofaic~, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-22 13:10:53.170354 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4jIEEY. -2023-05-22 13:11:20.534008 + : pb-IF5dU3UiAw== ip: a~o~}icai`zvc~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-22 13:11:23.181817 + : Kick vote End -2023-05-22 13:11:23.537420 + : pb-IF4nUkteVA== ip: a}j~zh~}hbaid, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-05-22 13:12:35.266620 + : pb-IF4AV1QqEQ== started kick vote for pb-IF41U2scIg==. -2023-05-22 13:13:05.274128 + : Kick vote End -2023-05-22 13:14:43.279676 + : pb-IF4UU2k7FQ== ip: a}a~}heaib{vb|`, Device id: fe5e73d8f02a525b055ec44991b6ac012ad8b12a -2023-05-22 13:15:12.371554 + : pb-IF4wU1MPEg== ip: awj~ya~~ofaic~, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-22 13:17:13.821480 + : pb-IF4jIEEY ip: bxvewvb|m~~ob, Device id: aedca84bb51f1536c3bcee59552a95db23a1dff6 -2023-05-22 13:18:22.038689 + : pb-IF4SU1olUw== ip: an~}jbal`ajb|, Device id: 5977afcc24357878b5a67ce1663f62b02384c734 -2023-05-22 13:18:25.045969 + : pb-IF49UBEhJA== ip: dvvc{ve|vhy, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-22 13:19:37.351506 + : pb-IF4jIEEY started kick vote for pb-IF4AV1QqEQ==. -2023-05-22 13:20:07.354020 + : Kick vote End -2023-05-22 13:20:59.710581 + : pb-IF5TV2MzCA== ip: a~n~xj~}hcajb, Device id: 8d2ce48f1963f567e45473ac0d4666ffa3c8c460 -2023-05-22 13:21:22.393991 + : muted DarthKille -2023-05-22 13:21:37.494324 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4nUkteVA==. -2023-05-22 13:21:41.852016 + : pb-IF4cUBYfCg== ip: azo~{m~~miaj`{, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-22 13:21:51.176411 + : kicked DarthKille -2023-05-22 13:22:07.499375 + : Kick vote End -2023-05-22 13:27:46.342664 + : pb-IF4sAGcj ip: awj~yl~~`aao`, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-22 13:28:26.493956 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL | kicked > reason:Banned account -2023-05-22 13:29:32.724168 + : pb-IF5dU3UiAw== ip: a~o~}icai`zvc~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-22 13:30:38.469641 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4mEGk9. -2023-05-22 13:31:08.475805 + : Kick vote End -2023-05-22 13:31:46.166973 + : pb-IF4sAGcj ip: awj~yl~~`aao`, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-22 13:31:46.504954 + : pb-IF4sAGcj|| kicked , for using spoofed id Warrior27 -2023-05-22 13:33:32.555114 + : pb-IF4TVVYRLA== ip: azo~{n~}jbam, Device id: 81ac7ee5cb1bcee7d94c796ed999e94a82b76f2a -2023-05-22 13:34:48.982852 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-22 13:37:10.581487 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4cUktZNg==. -2023-05-22 13:37:40.584587 + : Kick vote End -2023-05-22 13:41:23.792888 + : pb-IF4SU1olUw== ip: an~}jbal`ajb|, Device id: 5977afcc24357878b5a67ce1663f62b02384c734 -2023-05-22 13:41:23.793230 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-22 13:41:27.802561 + : pb-IF4QUBQoBw== ip: an~}jbaidaiez, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-22 13:41:30.811467 + : pb-IF49UBEhJA== ip: dvvc{ve|vhy, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-22 13:41:42.848661 + : pb-IF4hUGEhLQ== ip: b}k~~ohajcwva~`, Device id: 5fdee911bda8a112cfcb869173423e7f74257cca -2023-05-22 13:42:47.050664 + : pb-IF5dU3UiAw== ip: a~o~}icai`zvc~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-22 13:43:04.100986 + : pb-IF41VRMMVg== ip: ak~wj~x`~}hf, Device id: ce6dda5e47b00016a2fe6f49428033e942ec2b2f -2023-05-22 13:44:02.296332 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5dU3UiAw==. -2023-05-22 13:44:32.301550 + : Kick vote End -2023-05-22 13:46:21.858228 + : pb-IF4hUGEhLQ== ip: b}k~~ohajcwva~`, Device id: 5fdee911bda8a112cfcb869173423e7f74257cca -2023-05-22 13:46:30.893606 + : pb-IF4iUmsSDw== ip: a}j~~naam`aod, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-22 13:46:54.168441 + : muted Doremon29 -2023-05-22 13:48:48.655374 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-22 13:49:04.718263 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-22 13:49:15.743290 + : pb-IF5cVRYTCQ== ip: an~}ifaje~vaxa, Device id: be694006c26106519e4a116c55f3391b57b7caab -2023-05-22 13:50:37.021292 + : pb-IF4QUBQoBw== ip: an~}jbaidaiez, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-22 13:50:40.028874 + : pb-IF4nUkteVA== ip: a}j~zh~}hbaid, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-05-22 13:52:19.502855 + : pb-IF4cUBYfCg== ip: azo~{m~~kaama, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-22 13:52:37.385667 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4SU1olUw==. -2023-05-22 13:53:07.393136 + : Kick vote End -2023-05-22 13:55:24.165514 + : pb-IF5cVRYTCQ== ip: an~}ifaje~vaxa, Device id: be694006c26106519e4a116c55f3391b57b7caab -2023-05-22 13:57:19.734838 + : pb-IF4AV3UfEA== ip: a}j~~o`aje}vb|i, Device id: 89c74cf22aa352f8c31f8a9757b34e86fdb60cf4 -2023-05-22 13:59:39.538405 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4QUBQoBw==. -2023-05-22 14:00:09.546875 + : Kick vote End -2023-05-22 14:00:52.716003 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-22 14:01:12.015209 + : pb-IF4QUBQoBw== started kick vote for pb-IF4AV1QqEQ==. -2023-05-22 14:01:42.015529 + : Kick vote End -2023-05-22 14:03:14.200115 + : pb-IF4nVW0_LQ== ip: ak~}mbajdaiev, Device id: 806b0c23668487da48d132da3807efb358a96935 -2023-05-22 14:03:14.362156 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4nUkteVA==. -2023-05-22 14:03:44.367256 + : Kick vote End -2023-05-22 14:04:53.859566 + : pb-IF4UVRRfNw== ip: a~h~}jgaicwvc, Device id: 22338eac02bdee1ba8b06a9fc0ecf9926b2cf226 -2023-05-22 14:05:25.991049 + : pb-IF4FUGYMKA== ip: azj~zo~|i~~l, Device id: 86b2d9e8943baeb2a025083e67b07bad465fee74 -2023-05-22 14:06:04.121740 + : pb-IF4cUBYfCg== ip: azo~{m~~kaama, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-22 14:06:49.452284 + : pb-IF49VFdbEQ== ip: a~o~va~}jdamd, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-22 14:08:48.921707 + : pb-IF4jIEEY ip: bxvewvb|m~~ob, Device id: aedca84bb51f1536c3bcee59552a95db23a1dff6 -2023-05-22 14:09:17.270710 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4NUxFfEg==. -2023-05-22 14:09:47.273204 + : Kick vote End -2023-05-22 14:10:09.193226 + : pb-IF4XU0ddEA== ip: awj~ya~~`aaig}, Device id: 7b46a4b00db7f6fad2b9f32c6c878678662345be -2023-05-22 14:10:55.380795 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-22 14:12:31.927298 + : pb-IF4UVRRfNw== ip: a~h~}jgaicwvc, Device id: 22338eac02bdee1ba8b06a9fc0ecf9926b2cf226 -2023-05-22 14:12:36.951648 + : pb-IF5TUGhSUA== ip: an~~afaiazva|m, Device id: 5568c676fa37f27f1e33cc6909ea67ac27048e46 -2023-05-22 14:12:49.398899 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5TUGhSUA==. -2023-05-22 14:13:19.407466 + : Kick vote End -2023-05-22 14:13:30.136854 + : pb-IF4UVRRfNw== ip: a~h~}jgaicwvc, Device id: 22338eac02bdee1ba8b06a9fc0ecf9926b2cf226 -2023-05-22 14:13:54.238868 + : pb-IF4UVRRfNw== ip: a~h~}jgaicwvc, Device id: 22338eac02bdee1ba8b06a9fc0ecf9926b2cf226 -2023-05-22 14:14:13.313638 + : pb-IF4UVRRfNw== ip: a~h~}jgaicwvc, Device id: 22338eac02bdee1ba8b06a9fc0ecf9926b2cf226 -2023-05-22 14:14:32.380976 + : pb-IF4UVRRfNw== ip: a~h~}jgaicwvc, Device id: 22338eac02bdee1ba8b06a9fc0ecf9926b2cf226 -2023-05-22 14:15:03.511611 + : pb-IF4UVRRfNw== ip: a~h~}jgaicwvc, Device id: 22338eac02bdee1ba8b06a9fc0ecf9926b2cf226 -2023-05-22 14:15:18.563201 + : pb-IF4UVRRfNw== ip: a~h~}jgaicwvc, Device id: 22338eac02bdee1ba8b06a9fc0ecf9926b2cf226 -2023-05-22 14:15:28.606778 + : pb-IF4UVRRfNw== ip: a~h~}jgaicwvc, Device id: 22338eac02bdee1ba8b06a9fc0ecf9926b2cf226 -2023-05-22 14:15:38.629686 + : pb-IF4UVRRfNw== ip: a~h~}jgaicwvc, Device id: 22338eac02bdee1ba8b06a9fc0ecf9926b2cf226 -2023-05-22 14:16:20.779241 + : pb-IF4UVRRfNw== ip: a~h~}jgaicwvc, Device id: 22338eac02bdee1ba8b06a9fc0ecf9926b2cf226 -2023-05-22 14:16:32.831115 + : pb-IF4UVRRfNw== ip: a~h~}jgaicwvc, Device id: 22338eac02bdee1ba8b06a9fc0ecf9926b2cf226 -2023-05-22 14:16:34.465470 + : pb-IF4jIEEY started kick vote for pb-IF4cUBYfCg==. -2023-05-22 14:16:46.879578 + : pb-IF4UVRRfNw== ip: a~h~}jgaicwvc, Device id: 22338eac02bdee1ba8b06a9fc0ecf9926b2cf226 -2023-05-22 14:16:56.911283 + : pb-IF4UVRRfNw==|| kicked for joining too fast -2023-05-22 14:17:02.937927 + : pb-IF5dU3UiAw== ip: a~o~}icai`zvc~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-22 14:17:04.469763 + : Kick vote End -2023-05-22 14:19:31.461904 + : pb-IF5dU3UiAw== ip: a~o~}icai`zvc~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-22 14:20:22.435220 + : pb-IF4jIEEY started kick vote for pb-IF5dU3UiAw==. -2023-05-22 14:20:52.435938 + : Kick vote End -2023-05-22 14:21:27.085363 + : pb-IF4cUBYfCg== ip: azo~{m~~kaama, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-22 14:22:11.844026 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4cUBYfCg==. -2023-05-22 14:22:41.848888 + : Kick vote End -2023-05-22 14:24:22.794707 + : pb-IF4jIEEY ip: bxvewvb|m~~ob, Device id: aedca84bb51f1536c3bcee59552a95db23a1dff6 -2023-05-22 14:25:41.867132 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5QU3MHHw==. -2023-05-22 14:26:11.874420 + : Kick vote End -2023-05-22 14:27:27.814923 + : pb-IF5cVRYTCQ== ip: an~}ifaje~vaxa, Device id: be694006c26106519e4a116c55f3391b57b7caab -2023-05-22 14:28:49.133844 + : pb-IF5cLXUc ip: dvvbl~}kaajb{, Device id: fdf8efb6d1bd135343980f2efb340dfdf23fe0aa -2023-05-22 14:30:42.724961 + : pb-IF4FU1daUA== ip: a~h~}jgamiaigz, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-22 14:31:14.841965 + : pb-IF4KUm0NMg== ip: azo~{a~}hganf, Device id: eedc2f3148aff557346effdd436cd5e750b20a6e -2023-05-22 14:31:58.658980 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5XVUgOCg==. -2023-05-22 14:32:28.661070 + : Kick vote End -2023-05-22 14:33:28.297583 + : pb-IF5WU1AfXQ== ip: dvvc{vbzl~}ih, Device id: a69e530de275478e6fe68097ffcfd3df803c039c -2023-05-22 14:34:26.496658 + : pb-IF4FU1daUA== ip: azo~|l~zl~va, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-22 14:34:32.168233 + : pb-IF4KUm0NMg== started kick vote for pb-IF5cVRYTCQ==. -2023-05-22 14:34:51.083048 + : pb-IF5cVRYTCQ== kicked by kickvotes. -2023-05-22 14:34:57.365014 + : pb-IF4jIEEY started kick vote for pb-IF4AV1QqEQ==. -2023-05-22 14:35:05.656434 + : pb-IF4yUGYTLg== ip: a~o~}i`aigwvi{, Device id: 99acea35b53e984fe93070ce388000ecc29ea3ac -2023-05-22 14:35:27.367015 + : Kick vote End -2023-05-22 14:36:42.089779 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4jIEEY. -2023-05-22 14:37:12.097059 + : Kick vote End -2023-05-22 14:39:13.724042 + : pb-IF5TU1lZFQ== ip: dvvd}vfwva~n, Device id: b7e46bb15a5efa8a0e0aa5c6dc6cfcfeb53ff1b3 -2023-05-22 14:40:22.000364 + : pb-IF4vV0g8Mw== ip: azo~|j~vm~~`d, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-05-22 14:42:48.914743 + : pb-IF4vV0g8Mw== started kick vote for pb-IF5TU1lZFQ==. -2023-05-22 14:43:18.923140 + : Kick vote End -2023-05-22 14:44:03.039068 + : pb-IF4vUGcJDQ==|| kicked > new account -2023-05-22 14:44:51.797894 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5TU1lZFQ==. -2023-05-22 14:45:09.179352 + : pb-IF5TU1lZFQ== kicked by kickvotes. -2023-05-22 14:45:25.029550 + : pb-IF4jIEEY ip: bxvewvb|m~~ob, Device id: aedca84bb51f1536c3bcee59552a95db23a1dff6 -2023-05-22 14:46:16.446541 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-22 14:46:30.481667 + : pb-IF4nVxMCFQ== ip: b}k~~ohaja|vdx, Device id: 0be1e182870e947c39c3cef4bbec46fbb83f1ee8 -2023-05-22 14:49:09.967396 + : pb-IF4jIEEY started kick vote for pb-IF4AV1QqEQ==. -2023-05-22 14:49:39.974743 + : Kick vote End -2023-05-22 14:52:41.581114 + : pb-IF4jIEEY started kick vote for pb-IF4vV0g8Mw==. -2023-05-22 14:53:11.582490 + : Kick vote End -2023-05-22 14:54:19.595843 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-22 14:54:45.673083 + : pb-IF4FU3ouHA== ip: azo~{`~yn~~`h, Device id: 92af5150dccfca83d07caf60ecc60006471e8626 -2023-05-22 14:56:28.004446 + : pb-IF4tUGMBCg== ip: ak~}hhaniai`x, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-22 14:56:45.223383 + : pb-IF4jIEEY started kick vote for pb-IF4vV0g8Mw==. -2023-05-22 14:56:55.394054 + : pb-IF4RUGcaAg==|| kicked > new account -2023-05-22 14:57:15.227532 + : Kick vote End -2023-05-22 14:59:21.510692 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4FU3ouHA==. -2023-05-22 14:59:28.630760 + : pb-IF40AHoO | kicked > reason: Banned account -2023-05-22 14:59:33.652132 + : pb-IF4FU1daUA== ip: azo~|l~zl~va, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-22 14:59:39.676934 + : pb-IF4-AGI7 ip: axi~yh~~aiaic~, Device id: 30044689eb8e24c858cb1d029b58e40e866f2cfb -2023-05-22 14:59:51.514447 + : Kick vote End -2023-05-22 15:03:19.619293 + : pb-IF4-AGI7 ip: axi~yh~~aiaic~, Device id: 30044689eb8e24c858cb1d029b58e40e866f2cfb -2023-05-22 15:04:26.891562 + : pb-IF4wU1MPEg== ip: awj~ya~~ofaic~, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-22 15:04:46.941120 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-22 15:04:54.973126 + : pb-IF4VU3laVA== ip: ak~~`baifyva~j, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-22 15:05:10.028204 + : pb-IF4wU1MPEg== ip: awj~ya~~ofaic~, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-22 15:05:15.050194 + : pb-IF4iV1UHXQ== ip: azo~{n~wh~~kd, Device id: e36072a08ce63b304c798850865f20cae34fc6a2 -2023-05-22 15:05:19.062133 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-22 15:05:24.084823 + : pb-IF4VU3laVA== ip: ak~~`baifyva~j, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-22 15:06:13.277140 + : pb-IF4VU3laVA== ip: ak~~`baifyva~j, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-22 15:06:44.407981 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: a}j~~nhaje|va}j, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-05-22 15:07:43.732926 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-22 15:12:26.911063 + : pb-IF5cPGsk ip: ak~xi~~adami, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-05-22 15:18:22.895390 + : pb-IF4-AGI7 started kick vote for pb-IF4yVXVYIw==. -2023-05-22 15:18:52.895443 + : Kick vote End -2023-05-22 15:20:02.609474 + : pb-IF4sAGcj ip: awj~yl~~`aao`, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-22 15:21:42.986750 + : pb-IF4tUGMBCg== ip: ak~}hhaniai`x, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-22 15:22:07.546614 + : pb-IF4JUBkxKw== started kick vote for pb-IF4HUGc9Bg==. -2023-05-22 15:22:28.162359 + : pb-IF4-Um4_Lw== ip: azj~zo~}l`aoa, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-05-22 15:22:37.546305 + : Kick vote End -2023-05-22 15:23:37.848974 + : pb-IF4sU28eAg== started kick vote for pb-IF4JUBkxKw==. -2023-05-22 15:24:07.849381 + : Kick vote End -2023-05-22 15:25:03.794789 + : pb-IF4OU1AYBg== ip: a~o~v`~{h~}h`, Device id: 98056d76facf20ecb6036afa3c36d2b33c0ba3d5 -2023-05-22 15:27:28.159229 + : pb-IF4sU28eAg== started kick vote for pb-IF5cPGsk. -2023-05-22 15:27:28.588848 + : pb-IF5XUBQNCQ== ip: an~}j`aje{vd{, Device id: db7eee599a3045cb61b3c15b4e934c40e17f13f3 -2023-05-22 15:27:58.164490 + : Kick vote End -2023-05-22 15:28:54.893543 + : pb-IF4iV1UHXQ== ip: azo~{n~wh~~kd, Device id: e36072a08ce63b304c798850865f20cae34fc6a2 -2023-05-22 15:30:32.255824 + : pb-IF4QUBQoBw== ip: an~xo~vm~~of, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-22 15:31:12.398343 + : pb-IF4OU1AYBg== ip: a~o~v`~{h~}h`, Device id: 98056d76facf20ecb6036afa3c36d2b33c0ba3d5 -2023-05-22 15:31:17.418518 + : pb-IF49UBEhJA== ip: dvvc{vfva{a, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-22 15:33:15.794299 + : pb-IF4QUBQoBw== ip: an~}jbaidaiez, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-22 15:33:53.173765 + : pb-IF4yU1oxUg== ip: dvvc{vaxo~~if, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-22 15:34:05.207815 + : pb-IF4yU1oxUg== ip: dvvc{vaxo~~if, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-22 15:34:11.228393 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvd, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-22 15:35:40.557482 + : pb-IF4-Um4_Lw== ip: azj~zo~}l`aoa, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-05-22 15:37:32.945946 + : pb-IF4-Um4_Lw== ip: azj~zo~}l`aoa, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-05-22 15:38:00.043718 + : pb-IF4tUxRaHQ== ip: azo~|a~}ldai`x, Device id: e22f7bd0d54493761c7eb26874b8e114e4e6af35 -2023-05-22 15:38:16.036249 + : pb-IF5XUBggHA==|| kicked , for using spoofed id PC900998 -2023-05-22 15:38:24.135756 + : pb-IF4TV3RbDA== ip: azo~|l~zo~~ad, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-22 15:40:27.976974 + : pb-IF4-AGI7 started kick vote for pb-IF4OU1AYBg==. -2023-05-22 15:40:37.622720 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~oe, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-22 15:40:54.654219 + : Kick vote End -2023-05-22 15:40:59.696772 + : pb-IF4QUBQoBw== ip: an~}jbaidaiez, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-22 15:41:03.720472 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~oe, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-22 15:41:05.731002 + : pb-IF4rUmcIUg== ip: an~~acaiexvb|k, Device id: 894c3245b42d790312b831a00b378fafd7999c9f -2023-05-22 15:41:30.809261 + : pb-IF49UBEhJA== ip: dvvc{vfva{a, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-22 15:42:56.106096 + : pb-IF4XU0ddEA== ip: awj~ya~~`aaig}, Device id: 7b46a4b00db7f6fad2b9f32c6c878678662345be -2023-05-22 15:43:32.250192 + : pb-IF4-Um4_Lw== ip: azj~zo~}l`aoa, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-05-22 15:44:19.428179 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvd, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-22 15:44:48.527141 + : pb-IF4TV3RbDA== ip: azo~|l~{m~wj, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-22 15:44:51.537672 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-22 15:46:21.206450 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE started kick vote for pb-IF4XU0ddEA==. -2023-05-22 15:46:33.862842 + : pb-IF4-Um4_Lw== ip: azj~zo~}l`aoa, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-05-22 15:46:51.213719 + : Kick vote End -2023-05-22 15:48:31.585645 + : pb-IF4-AGI7 started kick vote for pb-IF4QUBQoBw==. -2023-05-22 15:48:44.617112 + : pb-IF4OPhMg ip: a~o~vo~~aga`h, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-22 15:49:01.594082 + : Kick vote End -2023-05-22 15:51:06.044702 + : pb-IF4OPhMg ip: a~o~vo~~aga`h, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-22 15:52:27.319604 + : pb-IF4LU3Y7Ig== ip: d|vb}a~w`~}kf, Device id: 144cde6c318d6b4b449dce975dc12f9df99e837c -2023-05-22 15:52:36.342459 + : pb-IF4cUBYfCg== ip: azo~{m~~mga`g, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-22 15:53:22.514638 + : pb-IF4tUGMBCg== ip: ak~}hhaniai`x, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-22 15:54:06.661703 + : pb-IF4yU1oxUg== ip: dvvc{vaxo~~if, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-22 15:54:50.022923 + : pb-IF4tUGMBCg== ip: ak~}hhaniai`x, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-22 15:55:08.107862 + : pb-IF4TUXMJ ip: dvvcyvewvd, Device id: 297acb7dcb3a3ea541d7b160584971c8ccbc325f -2023-05-22 15:55:33.163304 + : pb-IF4wU1MPEg== ip: awj~ya~~ofaic~, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-22 15:55:36.171686 + : pb-IF4LU1RdUg== ip: azo~zh~|l~~kd, Device id: 013ebdc40cb805919e389d339fe790db1aeaa296 -2023-05-22 15:56:30.765529 + : pb-IF4OPhMg started kick vote for pb-IF5UU0kHHA==. -2023-05-22 15:56:48.610745 + : pb-IF4cUBYfCg== ip: azo~{m~~mga`g, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-22 15:57:00.768906 + : Kick vote End -2023-05-22 15:57:16.712133 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: a}j~~nhaje|va}j, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-05-22 15:58:36.566675 + : pb-IF4TUXMJ started kick vote for pb-IF4-AGI7. -2023-05-22 15:59:06.572668 + : Kick vote End -2023-05-22 15:59:47.492004 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-22 16:00:05.574612 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-22 16:00:59.965315 + : pb-IF4wU1MPEg== started kick vote for pb-IF4TV3RbDA==. -2023-05-22 16:01:29.966648 + : Kick vote End -2023-05-22 16:02:42.009251 + : pb-IF4SF0Em started kick vote for pb-IF4TV3RbDA==. -2023-05-22 16:03:12.017342 + : Kick vote End -2023-05-22 16:03:14.268159 + : pb-LV4FBEJZARZDVAtARUYDAl0WFw== ip: ak~}lhaj`|vai, Device id: 93445d06602f2e994c325788e09b460cc4ce96ad -2023-05-22 16:03:33.331589 + : pb-IF4xUBYqFg== ip: b}k~}kcaabaia}, Device id: df0c41567c60687d9f5e2a973a7ebdedc78e888d -2023-05-22 16:04:44.464923 + : pb-IF4wU1MPEg== started kick vote for pb-IF4SF0Em. -2023-05-22 16:05:04.552377 + : Kick vote End -2023-05-22 16:05:43.254100 + : pb-IF5XUBQNCQ== ip: an~}j`aje{vd{, Device id: db7eee599a3045cb61b3c15b4e934c40e17f13f3 -2023-05-22 16:06:31.376532 + : pb-IF4wU1MPEg== started kick vote for pb-IF4TV3RbDA==. -2023-05-22 16:07:01.378887 + : Kick vote End -2023-05-22 16:08:02.518599 + : pb-IF4SUGRZEw== ip: ak~~icakeaia{, Device id: 944c71575a25043d2b7bc55b36e1e940a1345add -2023-05-22 16:08:13.566976 + : pb-IF4vUBk6LA== ip: dvvc}vaxj~~ji, Device id: d7a1911f176f723eb60aa8e4e53e1cab2b1af8f7 -2023-05-22 16:08:30.640737 + : pb-IF4vUBk6LA== ip: dvvc}vaxj~~ji, Device id: d7a1911f176f723eb60aa8e4e53e1cab2b1af8f7 -2023-05-22 16:10:14.164275 + : pb-IF4wU1MPEg== started kick vote for pb-IF4TV3RbDA==. -2023-05-22 16:10:44.171178 + : Kick vote End -2023-05-22 16:11:43.342604 + : pb-IF4HUBI8EQ== ip: bj~~oianiamf, Device id: 3b32fb097832d359ee8f82fdb4305bb99dbcea67 -2023-05-22 16:13:39.937380 + : pb-IF48UGUsDg== ip: dvvczvb|`~~lb, Device id: 9f47f11d6c0ceeef41674476301fa2bd6c79a5de -2023-05-22 16:14:24.133682 + : pb-IF4IV04ZKw== ip: azj~z`~x`~~ni, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-05-22 16:16:57.685128 + : pb-IF4HUBI8EQ== ip: bj~~oianiamf, Device id: 3b32fb097832d359ee8f82fdb4305bb99dbcea67 -2023-05-22 16:17:26.819432 + : pb-IF4HUBI8EQ== ip: bj~~oianiamf, Device id: 3b32fb097832d359ee8f82fdb4305bb99dbcea67 -2023-05-22 16:17:52.201328 + : pb-IF4IV04ZKw== started kick vote for pb-IF4TV3RbDA==. -2023-05-22 16:18:22.209789 + : Kick vote End -2023-05-22 16:22:04.410543 + : pb-IF4IV04ZKw== started kick vote for pb-IF4TV3RbDA==. -2023-05-22 16:22:34.416768 + : Kick vote End -2023-05-22 16:22:47.541257 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvd, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-22 16:22:49.551291 + : pb-IF5RVWMjMw== ip: azo~|k~~h~xj, Device id: 71aa2e26bc7356a0bf0af6c998fd153d2d385d2a -2023-05-22 16:22:54.576506 + : pb-IF4TVXUJHw== ip: dvvcyvhvbh, Device id: 9cfbe581e7b91a8dce85034e1a041053f02b1f47 -2023-05-22 16:23:34.709993 + : pb-IF4IV04ZKw== ip: azj~z`~x`~~ni, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-05-22 16:25:56.869644 + : pb-IF4UUGcEXA==|| kicked > new account -2023-05-22 16:26:43.725750 + : pb-IF4cUBYfCg== ip: azo~{m~~kbajdy, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-22 16:26:55.778356 + : pb-IF5cUkwjDA== ip: dvvcyvb~l~}ic, Device id: 84e8c68a67793414f4f9ba929c4417de1a04f4b0 -2023-05-22 16:28:52.360944 + : pb-IF4IV04ZKw== started kick vote for pb-IF4TV3RbDA==. -2023-05-22 16:29:22.369364 + : Kick vote End -2023-05-22 16:29:59.480890 + : pb-IF4xUBYqFg== ip: b}k~}kcaabaia}, Device id: df0c41567c60687d9f5e2a973a7ebdedc78e888d -2023-05-22 16:30:12.533740 + : pb-IF4jIEEY ip: bxvewvb|m~~ob, Device id: aedca84bb51f1536c3bcee59552a95db23a1dff6 -2023-05-22 16:31:57.245298 + : pb-IF4jIEEY started kick vote for pb-IF5cUkwjDA==. -2023-05-22 16:32:27.250635 + : Kick vote End -2023-05-22 16:33:49.341093 + : pb-IF4IV04ZKw== started kick vote for pb-IF4cUBYfCg==. -2023-05-22 16:34:19.345575 + : Kick vote End -2023-05-22 16:35:32.745674 + : pb-IF4jIEEY started kick vote for pb-IF42UGQIJg==. -2023-05-22 16:36:02.749530 + : Kick vote End -2023-05-22 16:36:58.299121 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-22 16:37:46.456972 + : pb-IF4HUBI8EQ== ip: bj~~oianiamf, Device id: 3b32fb097832d359ee8f82fdb4305bb99dbcea67 -2023-05-22 16:38:58.910947 + : pb-IF4IV04ZKw== started kick vote for pb-IF4TV3RbDA==. -2023-05-22 16:39:07.943563 + : pb-IF4HVHpcFQ== ip: dvvcyvhami, Device id: 722099821f2d7b77a509edac87bacc7f8a830939 -2023-05-22 16:39:12.045390 + : pb-IF4TV3RbDA== kicked by kickvotes. -2023-05-22 16:40:29.234280 + : pb-IF42UGQIJg== ip: azj~z`~xk~wo, Device id: ffc649b4e575fb8e7af44835ef211368f4624035 -2023-05-22 16:41:08.922211 + : pb-IF4jIEEY started kick vote for pb-IF4IV04ZKw==. -2023-05-22 16:41:38.928713 + : Kick vote End -2023-05-22 16:42:09.613277 + : pb-IF5TVWI-EA== ip: azo~zi~~l~~af, Device id: f23b45398b74d9a508826c438d8f7fb63912deb1 -2023-05-22 16:42:37.706512 + : pb-IF4jU1VYVg== ip: bxvevvb|a~~ha, Device id: 1e7e85a9f7fbdd14174877cd51206be49d9ce647 -2023-05-22 16:43:02.011985 + : pb-IF4IV04ZKw== started kick vote for pb-IF5TVWI-EA==. -2023-05-22 16:43:32.013183 + : Kick vote End -2023-05-22 16:48:05.380910 + : pb-IF4IV04ZKw== started kick vote for pb-IF5TVWI-EA==. -2023-05-22 16:48:35.387105 + : Kick vote End -2023-05-22 16:48:46.981889 + : pb-IF5VU1JZMw== ip: an~}ica`famd, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-05-22 16:52:16.958765 + : pb-IF4jIEEY started kick vote for pb-IF42UGQIJg==. -2023-05-22 16:52:42.107550 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-22 16:52:46.964313 + : Kick vote End -2023-05-22 16:53:15.208717 + : pb-IF4zU2MgJw== ip: dvvc}vazh~~na, Device id: 5b13413ad2a035b34073c5918da9363afe5b8217 -2023-05-22 16:54:02.381124 + : pb-IF4IV04ZKw== ip: azj~z`~x`~~ni, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-05-22 16:56:56.485971 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-22 16:57:24.581260 + : pb-IF5TU1lZFQ== ip: dvvd}vfwva~n, Device id: b7e46bb15a5efa8a0e0aa5c6dc6cfcfeb53ff1b3 -2023-05-22 16:57:41.625235 + : pb-IF4zU2MgJw== started kick vote for pb-IF42UGQIJg==. -2023-05-22 16:58:11.631175 + : Kick vote End -2023-05-22 16:58:12.747999 + : pb-IF4FU1daUA== ip: azo~|l~|n~xh, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-22 16:59:49.861810 + : pb-IF4HVHpcFQ== started kick vote for pb-IF4zU2MgJw==. -2023-05-22 16:59:50.208361 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-22 16:59:58.240023 + : pb-JiNJARBbXEFBVFdHE0dTVFJAE0lbQlZH ip: d|vbzi~~ogaib, Device id: 7bca8b55d75d9aad1f8d152e97bf4289883d3eab -2023-05-22 17:00:19.867224 + : Kick vote End -2023-05-22 17:00:42.810952 + : kicked Android63983659 -2023-05-22 17:01:48.680980 + : pb-IF5TVWI-EA== ip: azo~zi~~l~~af, Device id: f23b45398b74d9a508826c438d8f7fb63912deb1 -2023-05-22 17:03:20.247662 + : pb-IF4HVHpcFQ== started kick vote for pb-JiNJARBbXEFBVFdHE0dTVFJAE0lbQlZH. -2023-05-22 17:03:50.252382 + : Kick vote End -2023-05-22 17:04:58.172131 + : pb-IF4IV04ZKw== started kick vote for pb-JiNJVxBSXUNEW19HFkVQXVRHEUlaQFBH. -2023-05-22 17:05:28.178412 + : Kick vote End -2023-05-22 17:06:24.100055 + : pb-IF5TVWI-EA== ip: azo~zi~~l~~af, Device id: f23b45398b74d9a508826c438d8f7fb63912deb1 -2023-05-22 17:07:43.375588 + : pb-JiNJVxBSXUNEW19HFkVQXVRHEUlaQFBH ip: axi~xn~wn~~jd, Device id: 54c1a88f13925315e3b1e313c9e04003fd9d8c60 -2023-05-22 17:08:39.570995 + : pb-IF4FU1daUA== ip: azo~|l~|n~xh, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-22 17:12:14.704032 + : pb-IF5dU3UiAw== ip: a~o~}meaib~vg}, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-22 17:12:38.802628 + : pb-IF4HVVg8Lw== ip: azj~zo~{`~~`, Device id: 9178542feaf43b81f551b637b38285cb06c92b02 -2023-05-22 17:13:07.907613 + : pb-IF4jIEEY ip: bxvewvb|m~~ob, Device id: aedca84bb51f1536c3bcee59552a95db23a1dff6 -2023-05-22 17:14:03.127030 + : pb-IF4cUBYfCg== ip: azo~{m~~miajav, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-22 17:14:08.144169 + : pb-IF5dU3UiAw== ip: azo~{a~}m`aja~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-22 17:14:13.153531 + : pb-IF4FU1daUA== ip: azo~|l~|n~xh, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-22 17:14:27.209349 + : pb-IF4OUmEYCA== ip: b}k~~`aaj`}vaxl, Device id: f153fad756fbd8ca5956396e991cfb3168db971e -2023-05-22 17:14:46.286029 + : pb-IF4HVVg8Lw== ip: azj~zo~{`~~`, Device id: 9178542feaf43b81f551b637b38285cb06c92b02 -2023-05-22 17:16:42.689594 + : pb-IF4vV0g8Mw== ip: azo~|j~vm~~`d, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-05-22 17:16:52.097305 + : pb-IF4jIEEY started kick vote for pb-IF4vV0g8Mw==. -2023-05-22 17:17:22.100798 + : Kick vote End -2023-05-22 17:19:57.936472 + : pb-IF5UUxheIg== started kick vote for pb-IF4LU0QzPQ==. -2023-05-22 17:20:20.961890 + : pb-IF4jF1NY ip: azj~z`~|vb{a, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-22 17:20:27.938373 + : Kick vote End -2023-05-22 17:21:34.225381 + : pb-IF4FU1daUA== ip: azo~|l~|n~xh, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-22 17:22:54.377312 + : pb-IF4jIEEY started kick vote for pb-IF41U2scIg==. -2023-05-22 17:22:56.508933 + : pb-IF4TUGEIDQ== ip: an~}hhaih|va~i, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-22 17:23:06.838500 + : kicked DarthKille -2023-05-22 17:23:24.378852 + : Kick vote End -2023-05-22 17:26:18.388945 + : pb-IF4jF1NY ip: azj~z`~|vb{a, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-22 17:26:58.948007 + : pb-IF5dUGgxBw== ip: dvvcyvd|vavm, Device id: 13a4a52aec34f3ac84e87d7067f392374eec339f -2023-05-22 17:28:41.331531 + : pb-IF4JUBIAEw== ip: ak~}kcaaeaiay, Device id: d0195cba3dff1ca50105700cdded45ae62ffbbaa -2023-05-22 17:31:06.871274 + : pb-IF4TUGEIDQ== started kick vote for pb-IF4JUBIAEw==. -2023-05-22 17:31:35.202533 + : pb-IF42ImgD ip: a}h~wa~xl~~``, Device id: 1f67cdb08b2e992651352822134a2a33757bac41 -2023-05-22 17:31:36.875726 + : Kick vote End -2023-05-22 17:32:47.528268 + : pb-IF4jF1NY started kick vote for pb-IF4JUBIAEw==. -2023-05-22 17:33:17.791061 + : Kick vote End -2023-05-22 17:34:16.426922 + : pb-IF4TUGEIDQ== ip: an~}hgajd~ve, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-22 17:35:09.615869 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-22 17:35:53.774992 + : pb-IF5dU3UiAw== ip: azo~{a~}m`aja~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-22 17:43:21.946741 + : pb-IF4MU21dJg==|| kicked , for using spoofed id Zenin -2023-05-22 17:44:39.312755 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-22 17:46:29.679242 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-22 17:49:34.742500 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-22 17:50:57.045050 + : pb-IF4MU21dJg== ip: ak~~lgaj`vva|l, Device id: bfaf0b02a7f14db841e6d60eba34fbba87fe0efd -2023-05-22 17:50:57.455258 + : pb-IF4MU21dJg==|| kicked , for using spoofed id Zenin -2023-05-22 17:53:41.670910 + : pb-IF5RU3AjNA== ip: azo~{a~~jiajd, Device id: cbfdfe924e116c9e077df6b122ca58243b2ab515 -2023-05-22 17:55:15.167118 + : pb-IF49U1ZTHw== ip: ak~~kiakeanc, Device id: 82c1748d41926cf4d0e3518d94343bdc6b2380cb -2023-05-22 18:01:49.162810 + : pb-IF5VU1JZMw== ip: an~}ica`famd, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-05-22 18:03:09.581804 + : pb-IF5VU1JZMw== ip: an~}ica`famd, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-05-22 18:03:16.608048 + : pb-IF5VU1JZMw== ip: an~}ica`famd, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-05-22 18:03:17.613770 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-22 18:04:29.867366 + : pb-IF4MUBMHKA== ip: azj~z`~~n~~ob, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-22 18:05:48.279425 + : pb-IF4wU1MPEg== ip: awj~ya~~ofaic~, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-22 18:08:58.715013 + : Server started -2023-05-22 18:11:29.245559 + : pb-IF5VU1JZMw== ip: an~}ica`famd, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-05-22 18:14:34.885618 + : pb-IF5XUhAJFw== ip: ak~x`~}kial`, Device id: ce36351cb41e477a03042b20ed1a1866da1088a9 -2023-05-22 18:19:01.774848 + : pb-IF5XUhAJFw== ip: ak~x`~}kial`, Device id: ce36351cb41e477a03042b20ed1a1866da1088a9 -2023-05-22 18:19:24.873048 + : pb-IF4CUm4jHw== ip: azj~z`~{a~vo, Device id: 0c2f6241c570435a23eff32af93a7439749f5827 -2023-05-22 18:19:40.919570 + : pb-IF4CUm4jHw== ip: azj~z`~{a~vo, Device id: 0c2f6241c570435a23eff32af93a7439749f5827 -2023-05-22 18:24:39.978910 + : pb-IF4wU1MPEg== ip: awj~ya~~ofaic~, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-22 18:29:08.634545 + : muted vijaybarol -2023-05-22 18:29:59.702607 + : pb-IF4iUmsSDw== | kicked for chat spam -2023-05-22 18:38:14.463028 + : muted WhatsApp -2023-05-22 18:39:08.995558 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-22 18:39:28.650632 + : banned WhatsApp -2023-05-22 18:39:28.651893 + : kicked WhatsApp -2023-05-22 18:46:09.558718 + : pb-IF4oU0gCEQ== ip: a~o~~ahao`a`b, Device id: 94a5149fb5195a4ebd1e7d00d19c5736c3501a0d -2023-05-22 18:47:53.233992 + : pb-IF4HUGcCDA==|| kicked > new account -2023-05-22 18:49:04.161025 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-22 18:49:08.083861 + : kicked Android63983659 -2023-05-22 18:49:56.322197 + : pb-IF5cUlcDVw== ip: dvvc}vb{n~~hg, Device id: 7c599c64e63c108f276eed983c047403947d26bc -2023-05-22 18:51:35.635256 + : pb-IF4oU0gCEQ== ip: a~o~~ahao`a`b, Device id: 94a5149fb5195a4ebd1e7d00d19c5736c3501a0d -2023-05-22 18:54:25.265009 + : pb-IF4TV3RbDA== ip: azo~|l~zi~~md, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-22 18:54:28.280427 + : pb-IF5TVWI-EA== ip: azo~zi~~k~~ma, Device id: f23b45398b74d9a508826c438d8f7fb63912deb1 -2023-05-22 18:55:46.574643 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 54e5f7291fde2acebe9372664e795ffbac007050 -2023-05-22 18:56:56.454593 + : pb-IF5XVW8aUQ== started kick vote for pb-IF5cUlcDVw==. -2023-05-22 18:57:26.462424 + : Kick vote End -2023-05-22 19:01:48.775371 + : pb-IF5UUGlcLg== ip: awn~}kbam`akh, Device id: 1971e4381595169e5c747ee54051a6891e92ce84 -2023-05-22 19:04:28.319638 + : pb-IF4gU0wxBw== ip: ak~}hhaniai`x, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-22 19:04:33.423297 + : pb-IF5TVWI-EA== started kick vote for pb-IF48UBRfUQ==. -2023-05-22 19:05:03.429805 + : Kick vote End -2023-05-22 19:06:31.750415 + : pb-IF5RFBMI ip: dvvbl~vo~xk, Device id: 55440686c1715c4d1bb83ebf47f31bc76d1d9a56 -2023-05-22 19:09:48.400905 + : pb-IF4IV04ZKw== | kicked > reason:Banned account -2023-05-22 19:16:08.783215 + : pb-IF4gU0wxBw== ip: ak~}hhaniai`x, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-22 19:22:24.247425 + : pb-IF4TV3RbDA== ip: azo~|l~|j~~`e, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-22 19:22:28.260639 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-22 19:29:56.910746 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-22 19:31:51.060510 + : pb-IF4sU28eAg== started kick vote for pb-IF40UBISLQ==. -2023-05-22 19:32:21.061958 + : Kick vote End -2023-05-22 19:37:02.528038 + : pb-IF4OU1IZVg== ip: azo~{n~}iiaic~, Device id: 541973653043d7f242ff3b1078194e8678f82921 -2023-05-22 19:38:27.113964 + : pb-IF4xUGYTIg==|| kicked > new account -2023-05-22 19:39:35.186957 + : pb-IF40UBISLQ== started kick vote for pb-IF4TV3RbDA==. -2023-05-22 19:40:05.187983 + : Kick vote End -2023-05-22 20:09:23.601499 + : pb-IF40UBISLQ== ip: bxvf}vb~l~zi, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-22 20:14:02.634437 + : pb-IF4TUxEoKg== ip: an~}iaaiayvdz, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-22 20:17:18.330928 + : pb-IF40UBISLQ== ip: bxvf}vb~l~zi, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-22 20:20:08.990300 + : pb-IF5cVVMuFA== ip: b}k~~`bajbwva~n, Device id: 46d745ede7ffbd496184d3af1b32a5a1ebda3c0c -2023-05-22 20:24:35.928458 + : pb-IF5VU1JZMw== ip: an~}ica`famd, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-05-22 20:32:41.851279 + : pb-IF49VFdbEQ== ip: a~o~va~}keaify, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-22 20:32:56.234014 + : pb-IF5cUGkiUQ==|| kicked > new account -2023-05-22 20:47:07.233983 + : pb-IF42UGcgKQ==|| kicked > new account -2023-05-22 20:48:24.187188 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-22 20:51:55.877111 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-22 20:59:31.471996 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-22 21:01:59.041578 + : pb-IF4CUm4jHw== ip: azj~z`~{a~wa, Device id: 0c2f6241c570435a23eff32af93a7439749f5827 -2023-05-22 21:02:02.055151 + : pb-IF5XVGUYJA== ip: ak~wa~}keaicw, Device id: a0db5621fbbb32bf2e3e66bf09ac612913296573 -2023-05-22 21:02:22.109709 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-22 21:02:37.144368 + : pb-IF4CUm4jHw== ip: azj~z`~{a~wa, Device id: 0c2f6241c570435a23eff32af93a7439749f5827 -2023-05-22 21:04:55.647713 + : pb-IF5TVWI-EA== ip: azo~zi~}a~v`, Device id: f23b45398b74d9a508826c438d8f7fb63912deb1 -2023-05-22 21:06:18.899233 + : pb-IF5TUBdbMA== ip: azo~|k~~afaiax, Device id: e5b69290f8e21530c13667a697cb5180b10316da -2023-05-22 21:09:31.623685 + : pb-IF49VFdbEQ== ip: a~o~va~}keaify, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-22 21:10:24.795235 + : pb-IF4HVHpcFQ== ip: dvvcyvhami, Device id: 722099821f2d7b77a509edac87bacc7f8a830939 -2023-05-22 21:10:32.819041 + : pb-IF4LKUxd ip: an~~agaoba`e, Device id: 04c69d3ff3d95a365aa566c5bace3383db470726 -2023-05-22 21:13:47.527585 + : pb-IF4tUGcOFw== ip: fvvi{vdvaj, Device id: b89c38af9492dc0222eda530d21ba36bc18d60c6 -2023-05-22 21:20:37.401551 + : pb-IF5XUGkcEw==|| kicked > new account -2023-05-22 21:22:53.350759 + : pb-IF5dUGglAw==|| kicked , for using spoofed id Goldest -2023-05-22 21:25:30.164719 + : pb-IF4KUkcKNg== ip: dvvc{vh|vfx, Device id: 7dfb2afcb0e94d240206691390bf89c43f2ef821 -2023-05-22 21:26:41.432917 + : pb-IF4HVHpcFQ== ip: dvvcyvhami, Device id: 722099821f2d7b77a509edac87bacc7f8a830939 -2023-05-22 21:26:48.462984 + : pb-IF4sUGYmEw== ip: an~}jba`aaif}, Device id: a589c3b21a31e48533793667cb9d35a52cb9a807 -2023-05-22 21:28:10.782969 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-22 21:28:28.850627 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-22 21:29:41.108516 + : pb-IF4TV3RbDA== ip: azo~|l~yi~wl, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-22 21:30:20.273250 + : pb-IF4IV04ZKw== | kicked > reason:Banned account -2023-05-22 21:36:58.537306 + : pb-IF4OPhMg started kick vote for pb-IF4DKVgK. -2023-05-22 21:37:28.544291 + : Kick vote End -2023-05-22 21:37:58.013033 + : pb-IF4TUxEoKg== ip: an~}iaaiayvdz, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-22 21:39:35.357795 + : pb-IF5XUhAJFw== ip: ak~x`~}kiake, Device id: f7bb67dea533c677b4c6bc5733d5e04ddbbddb51 -2023-05-22 21:43:17.199704 + : pb-IF4DKVgK ip: azo~zi~}o~~o, Device id: c0af6063f54f054f4d7c0e9c43ab2ddf5b86a7c8 -2023-05-22 21:44:15.407292 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-22 21:45:09.611553 + : pb-IF5cVRYTCQ== ip: b}k~~ohaieyvav`, Device id: be694006c26106519e4a116c55f3391b57b7caab -2023-05-22 21:45:26.667786 + : pb-IF4DKVgK ip: azo~zi~}o~~o, Device id: c0af6063f54f054f4d7c0e9c43ab2ddf5b86a7c8 -2023-05-22 21:46:07.661464 + : pb-IF4OPhMg started kick vote for pb-IF4DKVgK. -2023-05-22 21:46:37.664965 + : Kick vote End -2023-05-22 21:50:53.955934 + : pb-IF4LKUxd ip: an~~agaoba`e, Device id: 04c69d3ff3d95a365aa566c5bace3383db470726 -2023-05-22 21:53:29.532397 + : pb-IF4vV0g8Mw== ip: azo~|j~vm~~`d, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-05-22 21:57:36.434818 + : pb-IF49VFdbEQ== ip: a~o~va~}keaify, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-22 21:59:46.121565 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4DKVgK. -2023-05-22 21:59:51.589707 + : Kick vote End -2023-05-22 22:01:23.594704 + : pb-IF4RUGccIA==|| kicked > new account -2023-05-22 22:07:15.574892 + : pb-IF4gU0wxBw== ip: ak~}hhaniai`x, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-22 22:13:01.194196 + : pb-IF4IUGdTJw==|| kicked > new account -2023-05-22 22:17:50.935108 + : pb-IF5TVWI-EA== ip: bxvf}va{i~~n, Device id: f23b45398b74d9a508826c438d8f7fb63912deb1 -2023-05-22 22:18:24.067688 + : pb-IF49VFdbEQ== ip: a~o~va~}keaify, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-22 22:24:11.298559 + : pb-IF4VU3laVA== ip: ak~~naaid{vaxm, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-22 22:28:10.119076 + : pb-IF4FU1daUA== ip: azo~|l~yk~~o, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-22 22:30:17.626859 + : pb-IF4FU1daUA== ip: a~h~}jgamhai`~, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-22 22:34:44.552532 + : pb-IF49VFdbEQ== ip: a~o~va~}keaify, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-22 22:38:46.598717 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-22 22:39:49.122982 + : pb-IF4QUBgpEA== started kick vote for pb-IF5WUno7PQ==. -2023-05-22 22:40:19.128416 + : Kick vote End -2023-05-22 22:41:31.249051 + : pb-IF4sAGcj ip: awj~yl~~`aao`, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-22 22:41:56.331677 + : pb-IF4wU1MPEg== ip: awj~ya~~ofaic~, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-22 22:43:33.705112 + : pb-IF49I04z ip: dvvd|vb{a~}ia, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-22 22:44:43.965715 + : pb-IF4IVFkKNA== ip: an~}heajayviz, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-05-22 22:47:09.499018 + : pb-IF4HVHpcFQ== ip: azj~z`~{m~~nc, Device id: 722099821f2d7b77a509edac87bacc7f8a830939 -2023-05-22 22:47:43.620583 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-22 22:54:17.065513 + : pb-IF4OUBYZUQ== ip: aakhajbve~, Device id: 114e694a16c29004ca32e5936bdcd114be3a2967 -2023-05-22 22:55:53.929633 + : pb-IF4OUBYZUQ== started kick vote for pb-IF4wU1MPEg==. -2023-05-22 22:56:23.934326 + : Kick vote End -2023-05-22 22:57:28.712531 + : pb-IF49VFdbEQ== ip: a~o~va~}keaify, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-22 22:57:47.785174 + : pb-IF4tUGMBCg== ip: ak~}hhaniai`x, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-22 22:59:30.920417 + : pb-IF4cUktZNg== started kick vote for pb-IF4HVHpcFQ==. -2023-05-22 23:00:00.076690 + : pb-IF4HVHpcFQ== kicked by kickvotes. -2023-05-22 23:02:00.797339 + : pb-IF49VFdbEQ== ip: a~o~va~}keaify, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-22 23:02:05.810958 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-22 23:02:17.855262 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-22 23:02:32.913566 + : pb-IF4FU1daUA== ip: azo~|l~|n~}id, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-22 23:04:38.374774 + : pb-IF49VFdbEQ== ip: a~o~va~}keaify, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-22 23:05:05.461312 + : pb-IF5RKUsf ip: azo~|`~}jda`i, Device id: 93ea980278c37a92729155334ba15dc2395917f7 -2023-05-22 23:06:04.670818 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-22 23:06:15.706920 + : pb-IF4FU1daUA== ip: azo~|l~|n~}id, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-22 23:08:56.300119 + : pb-IF49VFdbEQ== ip: a~o~va~}keaify, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-22 23:08:57.301530 + : pb-IF49I04z ip: dvvd|vb{a~}ia, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-22 23:10:10.587365 + : pb-IF49VFdbEQ== ip: a~o~va~}keaify, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-22 23:19:40.740587 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-22 23:20:12.865382 + : pb-IF4HUGEHDg== ip: a~i~~jeajava~o, Device id: ed40eb4dbcdfac94b35b84a7486d1a3c4b3ebec6 -2023-05-22 23:22:52.408774 + : pb-IF49VFdbEQ== ip: a~o~va~}keaify, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-22 23:28:08.538796 + : pb-IF5cPGsk ip: dvvazvb|i~}hi, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-05-22 23:29:43.869768 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-22 23:31:22.207276 + : pb-IF5cPGsk ip: azj~z`~{n~{j, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-05-22 23:32:48.506927 + : pb-IF4FU1daUA== ip: a~h~}jganaaih{, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-22 23:35:02.015394 + : pb-IF49I04z ip: dvvd|vb{a~}ia, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-22 23:48:55.904946 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-22 23:55:22.240405 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-22 23:55:57.369941 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-23 00:00:50.586048 + : pb-IF49VFdbEQ== ip: a~o~va~}keaify, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 00:01:31.715790 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-23 00:01:32.721598 + : pb-IF4MUBMHKA== ip: azj~z`~~n~wa, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-23 00:04:02.526806 + : pb-IF4JVXcFVQ== started kick vote for pb-IF49VFQlPA==. -2023-05-23 00:04:32.528041 + : Kick vote End -2023-05-23 00:05:19.526759 + : pb-IF49VFdbEQ== ip: a~o~va~}k`ajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 00:07:42.068593 + : pb-IF4FU1daUA== ip: a~h~}jdaihzvd{, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-23 00:09:14.398417 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-23 00:09:14.970450 + : pb-IF4sU28eAg==|| kicked , for using spoofed id Gamergirl -2023-05-23 00:13:52.387539 + : pb-IF4MUBMHKA== ip: azj~z`~~n~wa, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-23 00:16:38.203749 + : pb-IF4FU1daUA== ip: azo~|l~zm~|i, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-23 00:17:07.327878 + : pb-IF4FU1daUA== ip: azo~|l~zm~|i, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-23 00:18:57.204681 + : Server started -2023-05-23 00:18:58.209827 + : pb-IF4FU1daUA== ip: azo~|l~zm~|i, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-23 00:18:58.210078 + : pb-IF49VFdbEQ== ip: a~o~va~}k`ajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 00:19:11.234373 + : pb-IF49VFQlPA== ip: azo~{m~~jdaoi, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-05-23 00:20:18.472692 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-23 00:20:39.556401 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-23 00:20:47.576687 + : pb-IF49VFdbEQ== ip: a~o~va~}k`ajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 00:20:50.586732 + : pb-IF4nUmMRCw== ip: b}k~~`fai`vaxl, Device id: 7f22fb4b09eaa18898da7e6957c49f2169eff75d -2023-05-23 00:21:31.733519 + : pb-IF49VFdbEQ== ip: a~o~va~}k`ajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 00:22:11.878438 + : pb-IF4FU1daUA== ip: azo~|l~zm~|i, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-23 00:23:26.148557 + : pb-IF49VFdbEQ== ip: a~o~va~}k`ajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 00:23:39.196852 + : pb-IF49VFQlPA== ip: azo~{m~~jdaoi, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-05-23 00:23:48.229947 + : pb-IF49VFdbEQ== ip: a~o~va~}k`ajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 00:24:47.431361 + : pb-IF49VFdbEQ== ip: a~o~va~}k`ajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 00:28:52.261892 + : pb-IF4FU1daUA== ip: azo~|l~zm~|i, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-23 00:31:36.836344 + : pb-IF49VFdbEQ== ip: a~o~va~}k`ajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 00:32:49.107222 + : pb-IF49VFdbEQ== ip: a~o~va~}k`ajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 00:35:37.685293 + : pb-IF4gU0wxBw== ip: an~}j`aabajb, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-23 00:36:15.814308 + : pb-IF49VFdbEQ== ip: a~o~va~}k`ajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 00:40:49.779162 + : pb-IF5UVXIvNQ== ip: an~}ica`aaia, Device id: 19cab23c5e27d40b623af49d1e26a3594d5358dc -2023-05-23 00:45:12.704956 + : pb-IF49VFdbEQ== ip: a~o~va~}k`ajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 00:56:05.132762 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-23 00:56:48.303258 + : pb-IF49VFdbEQ== ip: a~o~va~}k`ajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 01:01:31.405162 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-23 01:05:53.392677 + : pb-IF49VFdbEQ== ip: a~o~va~}jeajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 01:13:28.198314 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-23 01:27:59.300297 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-23 01:42:43.700531 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-23 01:43:24.833602 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-23 01:44:18.021759 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-23 01:48:14.841467 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-23 01:48:57.021369 + : pb-IF5cPGsk ip: azj~z`~{n~yj, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-05-23 01:50:06.260109 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-23 02:02:57.907803 + : pb-IF5cPGsk ip: azj~z`~{n~yj, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-05-23 02:05:34.527895 + : pb-IF5cPGsk ip: azj~z`~{n~yj, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-05-23 02:06:46.791711 + : pb-IF4LU1gBKA== ip: a|i~vava~~n, Device id: fdb55d616e3e2ee33266af3ae2e25688b3da0c88 -2023-05-23 02:09:12.313396 + : pb-IF4VVVEpJg== ip: b}k~}jhajc~vb~n, Device id: 1990502d0fde67ec955f2ecfbb4481a28447d8e6 -2023-05-23 02:28:59.680623 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-23 03:10:03.804885 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-23 03:30:50.334274 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-23 04:53:59.743893 + : pb-IF4qUGcIDQ==|| kicked > new account -2023-05-23 06:15:34.691459 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-23 06:36:24.590279 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-23 06:56:47.914406 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-23 06:59:18.547280 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-23 07:00:41.851126 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-23 07:01:19.980095 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-23 07:01:36.039158 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-23 07:08:03.394146 + : Server started -2023-05-23 07:08:04.401104 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-23 07:17:55.752522 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-23 07:30:21.536678 + : pb-IF4LUBQaEg== ip: an~}icaiixvi|, Device id: 866d38b10ec8b8d18610003d6282b0fec64a2f96 -2023-05-23 07:37:58.163493 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-23 07:58:03.495644 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-23 08:14:07.012094 + : pb-IF4IV04ZKw== | kicked > reason:Banned account -2023-05-23 08:37:04.203521 + : pb-IF4cUBYfCg== ip: azo~{m~~lhakh, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-23 08:38:12.472444 + : pb-IF4-AGI7 ip: a~h~}jganbaig~, Device id: 30044689eb8e24c858cb1d029b58e40e866f2cfb -2023-05-23 09:01:42.970168 + : pb-IF4FU1daUA== ip: azo~|l~~mgaje~, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-23 09:05:23.793497 + : pb-IF4QUBgpEA== ip: an~}j`aig}vazo, Device id: 53c062abedd35a2aa7ee276fcfc011447e3f5819 -2023-05-23 09:10:32.956267 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-23 09:23:59.865368 + : pb-IF4cUBYfCg== ip: azo~{m~~maaje|, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-23 09:27:55.673896 + : pb-IF4gU0wxBw== ip: an~}j`aabajb, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-23 09:28:05.709462 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-23 09:30:48.271092 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-23 09:33:14.756141 + : pb-IF4FU1daUA== ip: azo~|l~~mgaje~, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-23 09:43:39.166368 + : pb-IF4TUGEIDQ== ip: an~}hgajaxvc}, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-23 09:58:38.744959 + : pb-IF4cUBYfCg== ip: azo~{m~~leaiix, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-23 10:00:49.273783 + : Achuth11i||pb-IF4BVXJTCg==|| kicked by profanity check -2023-05-23 10:10:07.464841 + : pb-IF4wU1MPEg== ip: awj~ya~~ofaic~, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-23 10:12:45.168017 + : pb-IF4VU3laVA== ip: ak~~lhaj`ajb, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-23 10:17:06.375056 + : pb-IF4SUGcxNg==|| kicked > new account -2023-05-23 10:17:27.135191 + : pb-IF4wU1MPEg== ip: awj~ya~~ofaic~, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-23 10:17:40.177898 + : pb-IF4gU0wxBw== ip: an~}j`aabajb, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-23 10:17:46.205273 + : pb-IF4iUmsSDw== ip: a}j~~naam`akd, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-23 10:19:24.552996 + : pb-IF4gU0wxBw== ip: an~}j`aabajb, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-23 10:20:11.735615 + : pb-IF4VVG8gNQ== ip: azo~zi~~ieaie, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-23 10:28:09.852730 + : pb-IF4CUGcONA==|| kicked > new account -2023-05-23 10:33:22.746399 + : pb-IF5XUhAJFw== ip: ak~x`~}kiakd, Device id: f7bb67dea533c677b4c6bc5733d5e04ddbbddb51 -2023-05-23 10:33:50.833273 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-23 10:35:02.078489 + : pb-IF5XUhAJFw== ip: ak~x`~}kiakd, Device id: f7bb67dea533c677b4c6bc5733d5e04ddbbddb51 -2023-05-23 10:35:47.247448 + : pb-IF4TUGEIDQ== ip: an~}hgajavvb{m, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-23 10:39:47.155718 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-23 10:44:41.849884 + : pb-IF4wUGccFA==|| kicked > new account -2023-05-23 10:51:42.863468 + : pb-IF4iUmsSDw== ip: a}j~~naam`akd, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-23 10:51:59.951183 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-23 11:01:39.266497 + : pb-IF49VFdbEQ== ip: a~o~va~}jhai`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 11:11:22.496009 + : pb-IF4VVG8gNQ== ip: azo~zi~~ieaie, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-23 11:11:29.527955 + : pb-IF4iUmsSDw== ip: a}j~~naam`akd, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-23 11:14:45.261049 + : pb-IF4mUBkaEQ== ip: ak~zo~}meamf, Device id: edbef3c3243e32c8694e23549dde7d3edc536e26 -2023-05-23 11:15:58.528149 + : pb-IF4CUm4jHw== ip: azj~z`~vf, Device id: 0c2f6241c570435a23eff32af93a7439749f5827 -2023-05-23 11:16:10.566606 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-23 11:16:28.240230 + : pb-IF4OUGcMNw==|| kicked > new account -2023-05-23 11:16:58.714881 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-23 11:17:44.868698 + : pb-IF4vUkRaEg== ip: azo~{i~}mcai`, Device id: 6394b4f26b00e3f44dd52eaaa8b9d296c742e56a -2023-05-23 11:18:19.292164 + : pb-IF4xUGdTPQ==|| kicked > new account -2023-05-23 11:20:51.526143 + : pb-IF4nVW0_LQ== ip: ak~}mbajdai`, Device id: 806b0c23668487da48d132da3807efb358a96935 -2023-05-23 11:21:34.692841 + : pb-IF5XVW8aUQ== ip: a~o~}jbaia}vh|, Device id: 3478aa6ac466d8233b59a384474b13ef31b97582 -2023-05-23 11:24:13.212665 + : pb-IF4OUGcMNw== | kicked > reason:Banned account -2023-05-23 11:24:32.289914 + : pb-IF4GU2I-VQ== ip: a}j~~odaibvva~n, Device id: c06a804bbadaeebcb5f88c73921bef590d519790 -2023-05-23 11:25:30.495127 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-23 11:28:08.081602 + : pb-IF40UBISLQ== ip: bxvf}vb~l~zi, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-23 11:28:57.269333 + : pb-IF4gU0wxBw== ip: ak~}hhaniai`x, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-23 11:29:35.850294 + : pb-IF4GU2I-VQ== started kick vote for pb-IF5XVW8aUQ==. -2023-05-23 11:30:05.852166 + : Kick vote End -2023-05-23 11:33:39.303998 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-23 11:33:43.143713 + : kicked Undignifi9 -2023-05-23 11:33:52.343924 + : pb-IF4CU3ERXA== ip: dvvcxvg|va|n, Device id: 506716aba6c5f70fe3a4d2a7bec74c68d141da81 -2023-05-23 11:35:00.556906 + : pb-IF4VVG8gNQ== ip: azo~zi~~ieaie, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-23 11:39:16.541582 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4cVEsYVg==. -2023-05-23 11:39:26.370224 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-23 11:39:46.548576 + : Kick vote End -2023-05-23 11:40:31.571434 + : pb-IF4sU3VSMg== ip: dvvc}va}`~v, Device id: cb6dd8b1d356943cea4f7e54c07fc932a91971ec -2023-05-23 11:40:56.389338 + : pb-IF41UBQPXA== started kick vote for pb-IF4cVEsYVg==. -2023-05-23 11:41:26.392476 + : Kick vote End -2023-05-23 11:42:28.260854 + : pb-IF4CU3ERXA== started kick vote for pb-IF41UBQPXA==. -2023-05-23 11:42:58.261705 + : Kick vote End -2023-05-23 11:43:51.775204 + : pb-IF5SUGk_DA==|| kicked > new account -2023-05-23 11:44:08.446558 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-23 11:46:00.668797 + : pb-IF41UBQPXA== started kick vote for pb-IF41U2scIg==. -2023-05-23 11:46:30.675113 + : Kick vote End -2023-05-23 11:48:17.417306 + : pb-IF4CU3ERXA== started kick vote for pb-IF41UBQPXA==. -2023-05-23 11:48:39.442658 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-23 11:48:41.035097 + : pb-IF41UBQPXA== kicked by kickvotes. -2023-05-23 11:59:29.854151 + : pb-IF49VFdbEQ== ip: a~o~va~}kbai`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 12:01:51.386099 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-23 12:02:16.503790 + : pb-IF4zUkwZBw== ip: d}van~vl~~if, Device id: bc1327009f9944b141f04912712143c738d96727 -2023-05-23 12:03:44.864414 + : pb-IF4TUGQ5Ng== ip: dvvbo~}igalb, Device id: 3857f20cc88787e2306d1b5cfb2f6115c51da8ea -2023-05-23 12:04:16.959370 + : pb-IF4sUGYjUw== ip: a}j~~nhamca`b, Device id: 43c7aa0b8e6ca0df1dee0e297599665d9dd266a0 -2023-05-23 12:04:21.975560 + : pb-IF4xUGQfNg== ip: an~~aeaicaiiz, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-05-23 12:04:31.282692 + : pb-IF4TU00bVw== started kick vote for pb-IF5SUBYBUw==. -2023-05-23 12:04:32.001004 + : pb-IF49VFdbEQ== ip: a~o~va~}kbai`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 12:05:01.287940 + : Kick vote End -2023-05-23 12:09:43.117204 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-23 12:20:48.338336 + : pb-IF49VFdbEQ== ip: a~o~va~}kbai`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 12:20:54.362533 + : pb-IF4VVG8gNQ== ip: azo~zi~~ieaib{, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-23 12:22:23.678462 + : pb-IF4xUGQfNg== ip: an~~aeaicaiiz, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-05-23 12:25:23.312167 + : pb-IF4TUGEIDQ== ip: an~}hgaje{vb{k, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-23 12:26:11.492059 + : pb-IF4hUnM7XA== ip: bxvf~vi}va{m, Device id: 537160011cb12ecac4a71a597147674b48566e81 -2023-05-23 12:26:18.520006 + : pb-IF4hUnM7XA== ip: bxvf~vi}va{m, Device id: 537160011cb12ecac4a71a597147674b48566e81 -2023-05-23 12:26:23.539766 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-23 12:26:27.551833 + : pb-IF4hUnM7XA== ip: bxvf~vi}va{m, Device id: 537160011cb12ecac4a71a597147674b48566e81 -2023-05-23 12:29:43.407690 + : pb-IF4TUGEIDQ== ip: an~}hgaje{vb{k, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-23 12:36:19.052584 + : pb-IF49VFdbEQ== ip: a~o~va~}kbai`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 12:37:24.269119 + : pb-IF4CUm4jHw== ip: awk~wo~|n~yn, Device id: ebecf3c32c3476872c21d9471ff6690d64f0b970 -2023-05-23 12:38:25.057639 + : pb-IF4CUm4jHw== started kick vote for pb-IF4LA0hS. -2023-05-23 12:38:55.060360 + : Kick vote End -2023-05-23 12:42:21.358505 + : pb-IF4TUGEIDQ== ip: bxvf}vb{`~~`g, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-23 12:43:52.684834 + : pb-IF49VFdbEQ== ip: a~o~va~}kbai`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 12:44:05.063759 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4LA0hS. -2023-05-23 12:44:35.068316 + : Kick vote End -2023-05-23 12:46:56.319081 + : pb-IF4OU2QjMQ== ip: an~~aeaicaiiz, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-23 12:47:26.419923 + : pb-IF4TUGEIDQ== ip: bxvf}vb{`~~`g, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-23 12:51:34.225895 + : pb-IF4TUGEIDQ== ip: bxvf}vb{`~~`g, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-23 12:52:46.149405 + : pb-IF4TUGEIDQ== started kick vote for pb-IF4sU0RbLQ==. -2023-05-23 12:53:16.154031 + : Kick vote End -2023-05-23 12:54:32.903426 + : pb-IF4VVXITNg== ip: b}k~}jhaidwvb{, Device id: a5826b8b33101c5bbc779ee8f2439f09d7a56cdf -2023-05-23 12:57:24.688138 + : pb-IF4OU2QjMQ== ip: an~~aeaicaiiz, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-23 12:57:34.882393 + : pb-IF4sU0RbLQ== started kick vote for pb-IF4OU2QjMQ==. -2023-05-23 12:57:56.658489 + : Kick vote End -2023-05-23 12:58:00.815371 + : pb-IF4OU2QjMQ== ip: an~~aeaicaiiz, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-23 12:58:13.857147 + : pb-IF4VU3laVA== ip: ak~~`baifyvavo, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-23 12:58:23.898374 + : pb-IF4lUxMSHw== ip: ak~~`baifyvavo, Device id: 9697e7eb450fece0abe0f3d8adce316e47d4153b -2023-05-23 12:58:29.266292 + : pb-IF4sU0RbLQ== started kick vote for pb-IF4lUxMSHw==. -2023-05-23 12:58:33.859208 + : Kick vote End -2023-05-23 12:59:00.005799 + : pb-IF4VVXITNg== ip: b}k~}jhaidwvb{, Device id: a5826b8b33101c5bbc779ee8f2439f09d7a56cdf -2023-05-23 12:59:22.727509 + : pb-IF4sU0RbLQ== started kick vote for pb-IF4VVXITNg==. -2023-05-23 12:59:34.137186 + : pb-IF4TUGEIDQ== ip: bxvf}vb{`~~`g, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-23 12:59:52.732908 + : Kick vote End -2023-05-23 13:01:26.475793 + : pb-IF4tUGMBCg== ip: ak~}hhaniai`x, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-23 13:02:35.739959 + : pb-IF4tUGMBCg== ip: ak~}hhaniai`x, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-23 13:04:48.267831 + : pb-IF4MUBMHKA== ip: azj~z`~~`~~jf, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-23 13:07:31.846715 + : pb-IF4FU1daUA== ip: dxvb{o~}jaaic{, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-23 13:08:00.944920 + : pb-IF4tUGMBCg== ip: ak~}hhaniai`x, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-23 13:09:29.263376 + : pb-IF49I04z ip: b}k~~`gaiazvgw, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-23 13:13:01.300245 + : Server started -2023-05-23 13:13:02.310623 + : pb-IF49I04z ip: b}k~~`gaiazvgw, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-23 13:13:07.328460 + : pb-IF5dU3UiAw== ip: azo~{a~}laajaw, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-23 13:14:37.547998 + : pb-IF5dU3UiAw== started kick vote for pb-IF49I04z. -2023-05-23 13:15:07.555218 + : Kick vote End -2023-05-23 13:16:46.111087 + : pb-IF4qUBYCLg== ip: azo~|l~zvaxm, Device id: 9b5a9e6c39be53e7579a611f59b52aa02ed87225 -2023-05-23 13:17:42.313137 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG ip: dvvazvb|l~}i, Device id: 822adb43af454f4ce0fdec16028787c26c151d5f -2023-05-23 13:19:42.724010 + : pb-IF4cUBYfCg== ip: azo~{m~~kcaie, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-23 13:24:58.854965 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-23 13:31:56.202989 + : pb-IF4OVUw_MQ== started kick vote for pb-IF49I04z. -2023-05-23 13:32:26.208776 + : Kick vote End -2023-05-23 13:32:58.579592 + : pb-IF4lUxMSHw== ip: ak~~`baifyvavo, Device id: 9697e7eb450fece0abe0f3d8adce316e47d4153b -2023-05-23 13:33:23.658403 + : pb-IF4jIEEY | kicked > reason: Banned account -2023-05-23 13:35:40.093242 + : pb-IF5cVU5bUg== ip: bxvf~vbyvam, Device id: 6686f77487443e1fc84b5283be6d1d4b20be3e62 -2023-05-23 13:36:21.232414 + : pb-IF49VFdbEQ== ip: a~o~va~}kbai`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 13:36:57.364184 + : pb-IF4FU1daUA== ip: a~h~}jdaifvvawa, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-23 13:40:54.224556 + : pb-IF49VFdbEQ== ip: a~o~va~}kbai`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 13:45:02.071989 + : pb-IF4LUk0FCQ== ip: azj~zo~}hiaiav, Device id: a90ea705ab07ae71d76b1775b6c73cf2a51c5161 -2023-05-23 13:46:50.473841 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-23 13:47:31.105688 + : pb-IF49I04z started kick vote for pb-IF4sU28eAg==. -2023-05-23 13:47:38.257040 + : Kick vote End -2023-05-23 13:48:14.787703 + : pb-IF4nUGE7KA== ip: b}k~~`hajbwvbo, Device id: 13a1d48885d496e0b6ecebef433118d164ffa331 -2023-05-23 13:48:39.881639 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-23 13:50:32.287447 + : pb-IF49I04z ip: b}k~~`gaiazvgw, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-23 13:56:32.813748 + : pb-IF41U2scIg== started kick vote for pb-IF4zUnIqNg==. -2023-05-23 13:57:02.818047 + : Kick vote End -2023-05-23 13:57:47.919424 + : pb-IF4mUBkaEQ== ip: ak~zo~}meamf, Device id: edbef3c3243e32c8694e23549dde7d3edc536e26 -2023-05-23 13:57:57.955792 + : pb-IF49VFdbEQ== ip: a~o~va~}kbai`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 13:58:56.919668 + : kicked Freezin463 -2023-05-23 14:03:13.271038 + : pb-IF4sUGMeVA== started kick vote for pb-IF5RUxgTFw==. -2023-05-23 14:03:43.278612 + : Kick vote End -2023-05-23 14:06:43.679146 + : pb-IF49I04z ip: b}k~~`gaiazvgw, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-23 14:08:19.980794 + : pb-IF4AV1QqEQ== ip: an~}ica`canf, Device id: 2331b3822293d621f32ade855f2e13b5f48a2f9e -2023-05-23 14:08:40.049092 + : pb-IF4JVXcFVQ== ip: a}j~~``aihvvazl, Device id: db06b38e3ab8852c52708ebd66d918875982828f -2023-05-23 14:09:52.266725 + : pb-IF4mUBkaEQ== ip: ak~zo~}meamf, Device id: edbef3c3243e32c8694e23549dde7d3edc536e26 -2023-05-23 14:10:29.362969 + : pb-IF5QU0JYBw== ip: dvvcxvf{va|o, Device id: 68d033487e9cf72b023e781684ecfe34f7c66877 -2023-05-23 14:14:24.265651 + : pb-IF4iUmsSDw== ip: a}j~~naam`akd, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-23 14:14:58.381065 + : pb-IF4OPhMg ip: an~}ifai`~vgv, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-23 14:15:27.483176 + : pb-IF4VU3laVA== ip: ak~~`ca`can, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-23 14:16:08.631250 + : pb-IF40VUcTCw== ip: a|o~vo~~h`ajd{, Device id: 77ed0009e01223cb16a06efbaf78e88e54c23718 -2023-05-23 14:17:23.885787 + : pb-IF4AV1QqEQ== ip: an~}ica`canf, Device id: 2331b3822293d621f32ade855f2e13b5f48a2f9e -2023-05-23 14:17:26.894560 + : pb-IF4qUGY9Bg== | kicked > reason:Banned account -2023-05-23 14:20:01.420547 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaihz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 14:20:01.421161 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-23 14:20:06.433918 + : pb-IF4LU0wKIw== ip: azj~zo~~acaie, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-23 14:21:41.764167 + : pb-IF5WUno7PQ== ip: azj~zo~}i`aidy, Device id: 6164a3526ba984be44e85dfeb8283d2a6a9f3534 -2023-05-23 14:21:50.793076 + : pb-IF5QVFMCUg== ip: azo~{n~~ifaibw, Device id: 3b483075b2023edb95e323dc2cc0d8dc516cae08 -2023-05-23 14:23:18.062705 + : pb-IF4iUmsSDw== started kick vote for pb-IF5WUno7PQ==. -2023-05-23 14:23:35.690100 + : Kick vote End -2023-05-23 14:23:38.244720 + : pb-IF4TV3RbDA== ip: azo~|l~yi~wj, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-23 14:24:04.945155 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4OPhMg. -2023-05-23 14:24:34.952578 + : Kick vote End -2023-05-23 14:27:26.044123 + : pb-IF4mUBkaEQ== ip: ak~zo~}meamf, Device id: edbef3c3243e32c8694e23549dde7d3edc536e26 -2023-05-23 14:29:02.383313 + : pb-IF4lUxMSHw== ip: ak~~`ca`can, Device id: 9697e7eb450fece0abe0f3d8adce316e47d4153b -2023-05-23 14:29:39.500866 + : pb-IF4zUkwZBw== ip: a}j~~nda``aj`|, Device id: bc1327009f9944b141f04912712143c738d96727 -2023-05-23 14:30:56.793439 + : pb-IF4xUGQfNg== ip: an~~aeaicaiiz, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-05-23 14:31:34.922931 + : pb-IF4xUGQfNg== ip: an~~aeaicaiiz, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-05-23 14:34:19.519040 + : pb-IF4GU2I-VQ== ip: awj~ym~}jgaje, Device id: c06a804bbadaeebcb5f88c73921bef590d519790 -2023-05-23 14:35:17.455980 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4-VWMKFQ==. -2023-05-23 14:35:47.460363 + : Kick vote End -2023-05-23 14:37:09.119835 + : pb-IF4HU1EdPw== ip: azj~zo~~a`aj`~, Device id: e1e9e681c5638caa9e99009c72873b4689659156 -2023-05-23 14:41:53.153290 + : pb-IF4WVXY6Dg== ip: ak~~odakda`a, Device id: bd97be3dd08746d12c28b3f47b9bca42a2d4ccfe -2023-05-23 14:43:06.424554 + : pb-IF4iUmsSDw== ip: a}j~~naam`akd, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-23 14:43:57.587685 + : pb-IF49I04z ip: b}k~~`gaiazvgw, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-23 14:54:48.984813 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-23 14:57:41.618411 + : pb-IF4WVXY6Dg== ip: ak~~odakda`a, Device id: bd97be3dd08746d12c28b3f47b9bca42a2d4ccfe -2023-05-23 14:58:22.778145 + : pb-IF4zU2MgJw== ip: a}l~~meaje{vawh, Device id: 5b13413ad2a035b34073c5918da9363afe5b8217 -2023-05-23 15:03:39.990099 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-23 15:06:33.626113 + : pb-IF4oVEoBVw== ip: azo~zi~~k~~hc, Device id: 02344cb73168f4344ce377f320c79a91d4103bcf -2023-05-23 15:09:20.285442 + : pb-IF4LU3Y7Ig== ip: d|vb}a~vh~}h`, Device id: 144cde6c318d6b4b449dce975dc12f9df99e837c -2023-05-23 15:13:02.071435 + : pb-IF4LU3Y7Ig== ip: d|vb}a~vh~}h`, Device id: 144cde6c318d6b4b449dce975dc12f9df99e837c -2023-05-23 15:15:15.708985 + : pb-IF4yU2cFEQ== ip: b}k~}kca`dajc, Device id: f9e226e805ce8b1a887fa1d04e3c76edd0d091a5 -2023-05-23 15:18:10.436309 + : pb-IF4-Um4_Lw== ip: azj~zo~}ifaib|, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-05-23 15:25:29.189548 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaihz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 15:27:24.670598 + : pb-IF4iUmsSDw== ip: a}j~~naam`akd, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-23 15:38:05.986011 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-23 15:38:19.039376 + : pb-IF4TUGQ5Ng== ip: dvvbo~}igalb, Device id: 3857f20cc88787e2306d1b5cfb2f6115c51da8ea -2023-05-23 15:38:23.054807 + : pb-IF4-Um4_Lw== ip: azj~zo~}ifaib|, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-05-23 15:38:41.117069 + : pb-IF4LU0wKIw== ip: azj~zo~~acaie, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-23 15:41:26.734941 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: ak~~meajb|vcz, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-05-23 15:48:02.169455 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-23 15:48:19.228676 + : pb-IF4LU3Y7Ig== ip: d|vb}a~vh~}h`, Device id: 144cde6c318d6b4b449dce975dc12f9df99e837c -2023-05-23 15:51:52.996722 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-23 15:56:14.967868 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-23 15:56:18.976531 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-23 16:04:35.998365 + : pb-IF4sU28eAg== started kick vote for pb-IF5dVWESVA==. -2023-05-23 16:05:06.002930 + : Kick vote End -2023-05-23 16:06:38.220889 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaihz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 16:08:20.619490 + : pb-IF4HUBI8EQ== ip: bj~~oianiamf, Device id: 3b32fb097832d359ee8f82fdb4305bb99dbcea67 -2023-05-23 16:08:27.637449 + : pb-IF4VVG8gNQ== ip: azo~zi~~hhaihx, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-23 16:08:42.716199 + : pb-IF4sU28eAg== started kick vote for pb-IF5dVWESVA==. -2023-05-23 16:09:09.358059 + : Kick vote End -2023-05-23 16:09:12.768782 + : pb-IF49UBQSFA== ip: azo~|j~~jfaoh, Device id: 8d75d902cc3a63a5d74a42b2853e1cf9d188ccfa -2023-05-23 16:10:10.032595 + : pb-IF49UBQSFA== ip: azo~|j~~jfaoh, Device id: 8d75d902cc3a63a5d74a42b2853e1cf9d188ccfa -2023-05-23 16:11:49.667298 + : pb-IF5dVWESVA== started kick vote for pb-IF4sU28eAg==. -2023-05-23 16:12:17.486786 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaihz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 16:12:19.674226 + : Kick vote End -2023-05-23 16:13:51.449193 + : pb-IF4sU28eAg== started kick vote for pb-IF5dVWESVA==. -2023-05-23 16:14:10.536087 + : pb-IF4WUGcfIg==|| kicked > new account -2023-05-23 16:14:21.453037 + : Kick vote End -2023-05-23 16:17:21.977571 + : pb-IF4sU28eAg== started kick vote for pb-IF5dVWESVA==. -2023-05-23 16:17:51.979739 + : Kick vote End -2023-05-23 16:18:37.925567 + : pb-IF41U2scIg== ip: ak~}hhaniai`x, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-23 16:21:42.572357 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-23 16:24:11.084105 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaihz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 16:29:45.395522 + : pb-IF4iUmsSDw== ip: a}j~~naam`akd, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-23 16:33:24.243874 + : pb-IF4gU0wxBw== ip: ak~}hhaniai`x, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-23 16:34:08.394715 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaihz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 16:42:10.110763 + : pb-IF4iUmsSDw== ip: a}j~~naam`akd, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-23 16:42:25.160679 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-23 16:43:05.337748 + : pb-IF41U2scIg== ip: an~}j`aabaig, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-23 16:46:35.098931 + : pb-IF4AV1QqEQ== ip: an~}ica`canf, Device id: 2331b3822293d621f32ade855f2e13b5f48a2f9e -2023-05-23 16:47:53.376627 + : pb-IF4uU0YhHA== ip: azo~{m~}hdaof, Device id: 9a64711cf529ee878368683500782e8040c2b40b -2023-05-23 16:49:11.674940 + : pb-IF4HU1EdPw== ip: azj~zo~x`~xj, Device id: e1e9e681c5638caa9e99009c72873b4689659156 -2023-05-23 16:49:56.150956 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4HU1EdPw==. -2023-05-23 16:50:26.157523 + : Kick vote End -2023-05-23 16:52:31.438126 + : pb-JiNJARBTV0JFXlxFEkRZXFRFEkVZR1RD ip: ak~~neaj`aih, Device id: 5ded5c53497b9126cebd3f3e8d646051a0b157da -2023-05-23 16:53:46.743851 + : pb-IF4uU0YhHA== ip: azo~{m~}hdaof, Device id: 9a64711cf529ee878368683500782e8040c2b40b -2023-05-23 16:55:57.216310 + : pb-IF4iUmsSDw== ip: a}j~~naam`akd, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-23 16:56:31.646743 + : pb-IF4TUGcyUw==|| kicked > new account -2023-05-23 16:58:20.765685 + : pb-IF4HU1EdPw== ip: azj~zo~x`~xj, Device id: e1e9e681c5638caa9e99009c72873b4689659156 -2023-05-23 16:58:58.901301 + : pb-IF4rUxU7Cg== ip: awk~wj~}hfajby, Device id: 8718c25d05ff0a9b6784cd4e384a2c85ce172283 -2023-05-23 16:59:58.121400 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-23 17:03:13.894094 + : pb-IF43VXceJA== ip: an~}hgajd~vb{l, Device id: 9272bf73f30741a58c2afd8fea4b4ffa020575af -2023-05-23 17:05:17.346856 + : pb-IF40UncaLg== ip: dvvc}vawo~yj, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-23 17:19:47.908810 + : pb-IF4-Um4_Lw== ip: azj~zo~}ifaib|, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-05-23 17:21:02.197762 + : pb-IF4tVXAjDA== ip: azj~z`~|`~xj, Device id: ed403f63bb80da599c52d8e30570576147274c9c -2023-05-23 17:30:36.097553 + : pb-IF4zUGcENg==|| kicked > new account -2023-05-23 17:31:40.692860 + : pb-IF4HVHpcFQ== ip: azj~z`~{m~|k, Device id: 722099821f2d7b77a509edac87bacc7f8a830939 -2023-05-23 17:38:51.356365 + : pb-IF4jU1YeFg== ip: a}j~~oba`aajd|, Device id: cf93851a82b6c1db0f0ba919f84d23f8667513d1 -2023-05-23 17:43:43.483354 + : pb-IF4HU1EIVg== ip: azj~z`~~a~}ia, Device id: 7f9880aa96c91c02977d7e12a3625be5767ec120 -2023-05-23 17:45:15.826656 + : pb-JiNJVxFbVkNDX1lGF0BWXV1BEUJWQ1BD ip: a~n~y`~v`~~nd, Device id: 9bc47e67061e44f5ab8f97a7558e6998f7a2c0a9 -2023-05-23 17:49:06.652490 + : pb-IF4UVRRfNw== ip: a}j~~`aai`xvayl, Device id: 22338eac02bdee1ba8b06a9fc0ecf9926b2cf226 -2023-05-23 17:59:08.800566 + : pb-IF4LUk0FCQ== ip: azj~zo~}kia``, Device id: a90ea705ab07ae71d76b1775b6c73cf2a51c5161 -2023-05-23 17:59:22.849899 + : pb-IF4LU0wKIw== ip: azj~zo~}hbajc, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-23 18:00:43.125166 + : pb-IF4sAGcj ip: awj~yl~~``ajb{, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-23 18:00:45.475555 + : pb-IF4LU0wKIw== started kick vote for pb-IF4oU1E5Aw==. -2023-05-23 18:01:15.474593 + : Kick vote End -2023-05-23 18:05:03.037410 + : pb-IF4-UhYODw== ip: an~}h`aaaajc|, Device id: de7ffff729cc066f26638dc4f340389465eff7aa -2023-05-23 18:06:36.360658 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`wvawj, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-05-23 18:08:13.690319 + : pb-IF4wU1MPEg== ip: awj~ya~~ofaic~, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-23 18:08:27.728723 + : pb-IF4iUmsSDw== ip: a}j~~naam`akd, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-23 18:09:29.680784 + : pb-IF4pU1MJIw== started kick vote for pb-IF4wU1MPEg==. -2023-05-23 18:09:59.683079 + : Kick vote End -2023-05-23 18:11:55.816428 + : pb-IF4wU1MPEg== started kick vote for pb-IF4iUmsSDw==. -2023-05-23 18:12:25.820504 + : Kick vote End -2023-05-23 18:12:46.819991 + : pb-IF4zUBUlNg== ip: a}j~~nbaiavbzi, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-23 18:14:07.142313 + : pb-IF4zUBUlNg== ip: a}j~~nbaiavbzi, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-23 18:15:15.405285 + : pb-IF4sAGcj ip: awj~yl~~``ajb{, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-23 18:15:19.421149 + : pb-IF41U2scIg== ip: ak~za~xl~yl, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-23 18:16:29.667127 + : pb-IF4DU1gZDg== ip: azo~{o~|vbi, Device id: e39ae6bacad923a102cf4102c8f277ed6e5e23d6 -2023-05-23 18:16:44.720239 + : pb-IF4FU1daUA== ip: a~h~}jgamda`g, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-23 18:16:52.764654 + : pb-IF4cUBYfCg== ip: azo~zh~zh~|a, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-23 18:20:28.522612 + : pb-IF41U2scIg== ip: ak~za~xl~yl, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-23 18:21:05.665761 + : pb-IF4FU1daUA== ip: a~h~}jgamda`g, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-23 18:23:37.250361 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-23 18:24:37.292346 + : pb-IF4wU1MPEg== started kick vote for pb-IF4sU28eAg==. -2023-05-23 18:25:07.296709 + : Kick vote End -2023-05-23 18:26:31.864822 + : pb-IF41U2scIg== ip: ak~za~xl~yl, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-23 18:27:26.248631 + : pb-IF4sAGcj ip: awj~yl~~``ajb{, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-23 18:27:40.300542 + : pb-IF4OU2QjMQ== ip: an~~aeaj~~n`, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-23 18:27:58.373384 + : pb-IF4OU2QjMQ== ip: an~~aeaj~~n`, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-23 18:30:50.234040 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-23 18:31:03.268125 + : pb-IF4OU2QjMQ== ip: an~~aeaj~~n`, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-23 18:33:41.243321 + : pb-IF4iUmsSDw== started kick vote for pb-IF5XUnEKEw==. -2023-05-23 18:34:11.245660 + : Kick vote End -2023-05-23 18:35:35.520146 + : pb-IF41U2scIg== ip: ak~}hhaoaakd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-23 18:36:52.362747 + : kicked PC916472 -2023-05-23 18:37:06.161045 + : pb-IF4wU1MPEg== started kick vote for pb-IF4sU28eAg==. -2023-05-23 18:37:10.883581 + : pb-IF4sAGcj ip: awj~yl~~``ajb{, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-23 18:37:36.164373 + : Kick vote End -2023-05-23 18:38:55.264453 + : pb-IF4wU1MPEg== ip: awj~ya~~ofaic~, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-23 18:42:03.042607 + : pb-IF4-AGI7 ip: an~}hhaigyvam, Device id: 30044689eb8e24c858cb1d029b58e40e866f2cfb -2023-05-23 18:42:43.140008 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-23 18:48:48.435816 + : pb-IF4-AGI7 started kick vote for pb-IF4nUxE4Nw==. -2023-05-23 18:49:03.674662 + : pb-IF4LU0wKIw== ip: azj~zo~}hbajc, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-23 18:49:18.438615 + : Kick vote End -2023-05-23 18:49:49.848801 + : pb-IF4wU1MPEg== ip: awj~ya~~ofaic~, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-23 18:50:22.014870 + : pb-IF4OU2QjMQ== ip: an~~aeaj~~n`, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-23 18:50:45.090375 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-23 18:50:48.099446 + : pb-IF4-AGI7 ip: an~}hhaigyvam, Device id: 30044689eb8e24c858cb1d029b58e40e866f2cfb -2023-05-23 18:51:02.137431 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`wvawj, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-05-23 18:51:35.240239 + : pb-IF41U2scIg== ip: ak~}hhaoaakd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-23 18:56:59.642332 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-23 18:57:09.666360 + : pb-IF5TVWI-EA== ip: azo~zi~vvayj, Device id: f23b45398b74d9a508826c438d8f7fb63912deb1 -2023-05-23 19:01:17.666792 + : pb-IF40UBISLQ== ip: axi~yh~~aiaje{, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-23 19:01:36.741233 + : pb-IF5cU1kCUg== ip: an~}iaaihakh, Device id: 2f529acc2dffce7c92b0040c45e8808a51e50d97 -2023-05-23 19:02:12.938511 + : pb-IF4wU1MPEg== started kick vote for pb-IF5TVWI-EA==. -2023-05-23 19:02:42.944438 + : Kick vote End -2023-05-23 19:04:31.995490 + : pb-IF40UBISLQ== started kick vote for pb-IF5TVWI-EA==. -2023-05-23 19:05:02.000695 + : Kick vote End -2023-05-23 19:10:02.511232 + : pb-IF4wU1MPEg== ip: awj~ya~~ofaic~, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-23 19:10:17.778681 + : kicked SHATIR -2023-05-23 19:10:18.325612 + : pb-IF5UU3AYDQ== started kick vote for pb-IF4UUlENFQ==. -2023-05-23 19:10:30.619287 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-23 19:10:48.326125 + : Kick vote End -2023-05-23 19:13:45.505157 + : pb-IF4zU00GCg== | kicked for chat spam -2023-05-23 19:14:16.245258 + : kicked SankarGL00 -2023-05-23 19:18:10.337260 + : Server started -2023-05-23 19:18:11.340797 + : pb-IF4wU1MPEg== ip: awj~ya~~ofaic~, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-23 19:23:13.466744 + : pb-IF40UBISLQ== ip: axi~yh~~aiaje{, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-23 19:30:08.986572 + : pb-IF4TUGQ5Ng== ip: dvvbo~}igalb, Device id: 3857f20cc88787e2306d1b5cfb2f6115c51da8ea -2023-05-23 19:31:20.251305 + : pb-IF4jU2gAEg== ip: dvvbm~~hbajb|, Device id: 8e2eb965578d7898efa86a0fed19362451c05bea -2023-05-23 19:32:42.561457 + : pb-IF4TUGQ5Ng== ip: dvvbo~}igalb, Device id: 3857f20cc88787e2306d1b5cfb2f6115c51da8ea -2023-05-23 19:32:55.614060 + : pb-IF4-AGI7 ip: an~}hgajd~viy, Device id: 30044689eb8e24c858cb1d029b58e40e866f2cfb -2023-05-23 19:33:17.720312 + : pb-IF4nUkteVA== ip: a}j~zh~}hbaid, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-05-23 19:34:29.271995 + : pb-IF4-AGI7 started kick vote for pb-IF4nUkteVA==. -2023-05-23 19:34:52.055622 + : pb-IF4gU0wxBw== ip: ak~}hhaoaakd, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-23 19:34:59.273729 + : Kick vote End -2023-05-23 19:35:18.161004 + : pb-IF4TV3RbDA== ip: azo~|l~|j~ym, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-23 19:38:29.794923 + : pb-IF48UhEiEg== ip: a~m~v`~~aba`h, Device id: 33a8969f89cf728e65a2f6ff383ac3a2e126c4e2 -2023-05-23 19:38:36.151334 + : pb-IF4-AGI7 started kick vote for pb-IF4TUGQ5Ng==. -2023-05-23 19:39:06.158245 + : Kick vote End -2023-05-23 19:42:39.714205 + : pb-IF4-AGI7 ip: an~}hgajd~viy, Device id: 30044689eb8e24c858cb1d029b58e40e866f2cfb -2023-05-23 19:48:49.061153 + : pb-IF4iU3UtUg== ip: a~l~xa~}h~}lh, Device id: 295bb1eb1e190071027d365d89aaaa16929b179e -2023-05-23 19:54:07.249432 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-23 19:54:16.298996 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-23 19:55:06.454783 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-23 19:55:46.610464 + : pb-IF4nUkteVA== ip: a}j~zh~}hbaid, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-05-23 20:02:14.066466 + : pb-IF49VFQlPA== ip: azo~{m~~heai`x, Device id: d043bc3eac9405dd49f306e5fe61846765dba91e -2023-05-23 20:04:31.508105 + : pb-IF4TV3RbDA== ip: azo~|l~|j~ym, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-23 20:05:23.710067 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-23 20:07:18.166540 + : pb-IF4dUhkIMQ== ip: azo~{n~~jdaog, Device id: 186f49fec4cca27c09c5e7b64af8abccdf81c625 -2023-05-23 20:09:38.662881 + : pb-IF40UBISLQ== ip: axi~yh~~aiaje{, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-23 20:16:44.186714 + : pb-IF4sVVgTAg== ip: an~~ahakbajcv, Device id: c58f357adfb8a9dea4a87afb6a7d3b6638564f95 -2023-05-23 20:19:22.774196 + : pb-IF4pU1koPw== ip: a~o~}jeaibaja|, Device id: 11a63e8e99753a2a78f9b112d9472549abd6cb45 -2023-05-23 20:21:56.276710 + : pb-IF4TUGcsEw== ip: b}k~}jgaiavvaw, Device id: d80ce561a0a0fa80fd653b28915b9d69951ccc0d -2023-05-23 20:22:10.312887 + : pb-IF4FU1daUA== ip: dxvb{o~~aeaiev, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-23 20:23:24.567513 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-23 20:24:50.851788 + : pb-IF41UBQPXA== ip: a}l~~hfaicyvbv, Device id: 4053d4ecb6d73d755ad3c574aa4bd40384b30b43 -2023-05-23 20:30:09.028307 + : pb-IF4gUGY7PQ== ip: azj~zo~}kiaiex, Device id: 130c42517a8fc713b185adb2f37015072d3d3945 -2023-05-23 20:37:15.571294 + : pb-IF4TUGcsEw== ip: b}k~}jgaiavvaw, Device id: d80ce561a0a0fa80fd653b28915b9d69951ccc0d -2023-05-23 20:37:47.664269 + : pb-IF40UGUbAw== ip: dzva}k~}jbai, Device id: 65836392301c3d76d6bb74c00a23ebc11aa0beec -2023-05-23 20:43:52.913877 + : pb-IF4QUBQoBw== ip: an~}jbaidaihw, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-23 20:45:21.598206 + : pb-IF4nU3ZaUg== started kick vote for pb-IF40UGUbAw==. -2023-05-23 20:45:38.363326 + : pb-IF41U2scIg== ip: ak~}hhaoaakd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-23 20:45:51.602402 + : Kick vote End -2023-05-23 20:46:28.548291 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-23 20:47:26.732430 + : pb-IF4OU2QjMQ== ip: an~~aeaj~~n`, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-23 20:51:41.662234 + : pb-IF4yVFgOVA== ip: ak~~n`ajc|va~`, Device id: d854623f8a8ec9715c4cf1e44f2a453d5344d791 -2023-05-23 20:56:55.853049 + : pb-IF49VFdbEQ== ip: a~o~va~}jgake, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 20:58:06.078409 + : pb-IF4WUBJcVQ== ip: azh~~hgajd~vfv, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-23 20:59:13.669440 + : pb-IF5QUGojHA==|| kicked > new account -2023-05-23 21:00:24.584461 + : pb-IF4iUxlTHw== ip: azo~|j~}n~yo, Device id: 992f29311b671cb878f3a6c5587359f0d5b10b55 -2023-05-23 21:00:54.680314 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-23 21:01:26.756770 + : pb-IF4QUBkoAA== ip: azj~z`~~`~~`g, Device id: fb3640126cb8f67f6717de1e4894bb95a7862fd5 -2023-05-23 21:05:21.597374 + : pb-IF4gU0wxBw== ip: ak~}hhaoaakd, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-23 21:05:43.673579 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-23 21:06:09.422515 + : pb-IF4cUktZNg== started kick vote for pb-IF40UGUbAw==. -2023-05-23 21:06:39.428437 + : Kick vote End -2023-05-23 21:07:42.076961 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-23 21:08:34.272958 + : pb-IF4vV0g8Mw== ip: dvvc{vbj~xm, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-05-23 21:12:25.160807 + : pb-IF4MUBMHKA== ip: azj~z`~~`~~k, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-23 21:12:57.281528 + : pb-IF4pU1MJIw== ip: a|o~vo~~jeang, Device id: 4ffc434bb44d58cac88c5df4ba525d4c45aeabe2 -2023-05-23 21:13:30.415193 + : pb-IF4VU3laVA== ip: ak~~`dajcvvayi, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-23 21:14:05.519537 + : pb-IF4VU3laVA== ip: ak~~`dajcvvayi, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-23 21:14:40.626176 + : pb-IF4CUm4jHw== ip: awk~wo~|n~yn, Device id: 0c2f6241c570435a23eff32af93a7439749f5827 -2023-05-23 21:16:17.966130 + : pb-IF49VFdbEQ== ip: a~o~va~}jgake, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 21:18:00.305093 + : pb-IF40UnoJUA== ip: azo~{a~wl~x`, Device id: d35e9173642b3b17d7aace45263adda53c89b5aa -2023-05-23 21:19:24.887997 + : pb-IF4mU0siXA== | kicked for chat spam -2023-05-23 21:22:52.398851 + : pb-IF4VU3laVA== ip: ak~~`dajcvvayi, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-23 21:25:33.959073 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-23 21:28:07.231141 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4LUlEYFw==. -2023-05-23 21:28:13.726565 + : pb-IF4IU28qPA== ip: azo~zi~~oeaid~, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-05-23 21:28:37.233535 + : Kick vote End -2023-05-23 21:32:05.670357 + : pb-JiNJARFZXEdDWFlDF0dQXVBAE0heQlZG ip: dvvbo~~agaihw, Device id: a2bfb261e763f6393448b2e788895b70af9718ee -2023-05-23 21:35:21.344989 + : pb-IF4GVFccKQ== ip: b}k~}kian`ajax, Device id: 5f72d34b0f227a9991bfadbe9fec6cd76dd5bec2 -2023-05-23 21:36:36.647152 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-23 21:39:08.149078 + : pb-IF4pU1MJIw== ip: a|o~vo~~jeang, Device id: 4ffc434bb44d58cac88c5df4ba525d4c45aeabe2 -2023-05-23 21:39:17.186764 + : pb-IF4pU1MJIw== ip: a|o~vo~~jeang, Device id: 4ffc434bb44d58cac88c5df4ba525d4c45aeabe2 -2023-05-23 21:41:54.738426 + : pb-IF4pU1MJIw== ip: azo~{n~~`eaihv, Device id: 4ffc434bb44d58cac88c5df4ba525d4c45aeabe2 -2023-05-23 21:41:56.741126 + : pb-IF4TV3RbDA== ip: azo~|l~yh~}ki, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-23 21:42:15.814741 + : pb-IF4TV3RbDA== ip: azo~|l~yh~}ki, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-23 21:43:21.030860 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-23 21:43:48.113877 + : pb-IF4VU3EjBg== ip: azj~z`~|`~}hi, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-05-23 21:43:59.150112 + : pb-IF4wBUUK ip: azj~z`~|o~}ha, Device id: 926098526aa25628ccdb1426d99fc162ae24f8db -2023-05-23 21:44:09.182858 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-23 21:44:55.357800 + : pb-IF4gU0wxBw== ip: ak~}hhaoaakd, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-23 21:46:42.759531 + : pb-IF4iUxlTHw== ip: azo~|j~}n~yo, Device id: 992f29311b671cb878f3a6c5587359f0d5b10b55 -2023-05-23 21:46:45.838204 + : pb-IF4TV3RbDA== started kick vote for pb-IF4VU3EjBg==. -2023-05-23 21:47:15.839273 + : Kick vote End -2023-05-23 21:47:29.923729 + : pb-IF4gU0wxBw== ip: ak~}hhaoaakd, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-23 21:48:04.111117 + : pb-IF4HVHpcFQ== ip: dvvcyvavah, Device id: 722099821f2d7b77a509edac87bacc7f8a830939 -2023-05-23 21:50:35.687046 + : pb-IF4iUnIqJA== ip: azo~zh~}i~~ag, Device id: 3170f787d26683f170daf338348727c886ed8b62 -2023-05-23 21:52:52.230875 + : pb-IF4HVHpcFQ== ip: dvvcyvavah, Device id: 722099821f2d7b77a509edac87bacc7f8a830939 -2023-05-23 21:54:24.534119 + : pb-IF4pU1MJIw== ip: azo~{n~~`eaihv, Device id: 4ffc434bb44d58cac88c5df4ba525d4c45aeabe2 -2023-05-23 21:56:11.920822 + : pb-IF4VU3laVA== ip: ak~~`dajcvvayi, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-23 21:57:44.251736 + : pb-IF4pU1MJIw== ip: azo~{n~~`eaihv, Device id: 4ffc434bb44d58cac88c5df4ba525d4c45aeabe2 -2023-05-23 21:57:47.261488 + : pb-IF4HVHpcFQ== ip: dvvcyvavah, Device id: 722099821f2d7b77a509edac87bacc7f8a830939 -2023-05-23 21:58:27.435503 + : pb-IF49VFdbEQ== ip: a~o~va~}jgake, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 22:00:35.883540 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-23 22:00:36.325764 + : pb-IF4HVHpcFQ== started kick vote for pb-IF4TV3RbDA==. -2023-05-23 22:00:54.960840 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-23 22:01:06.327283 + : Kick vote End -2023-05-23 22:05:06.883135 + : pb-IF49VFdbEQ== ip: a~o~va~}jgake, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 22:06:04.089525 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-23 22:12:55.631580 + : pb-IF49VFdbEQ== ip: a~o~va~}jgake, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 22:13:35.769168 + : pb-IF4sU1EeAA== ip: b}k~~`ga`ea`, Device id: a4ccc2a4110c9b63a5fd073bee5f4d32900d0444 -2023-05-23 22:14:21.006718 + : pb-IF4TUxEoKg== ip: an~}ifajezvazj, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-23 22:15:24.816286 + : pb-IF4cUBIGJA== started kick vote for pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL. -2023-05-23 22:15:54.818749 + : Kick vote End -2023-05-23 22:18:49.639887 + : pb-IF4MU08lCQ== started kick vote for pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL. -2023-05-23 22:19:19.642414 + : Kick vote End -2023-05-23 22:22:29.961998 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-23 22:23:09.112644 + : pb-IF4IU28qPA== ip: azo~zi~~oeaid~, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-05-23 22:24:17.379321 + : pb-IF49VFdbEQ== ip: a~o~va~}jgake, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 22:27:10.014706 + : pb-IF4TUGcsEw== ip: b}k~}jgaiavvaw, Device id: d80ce561a0a0fa80fd653b28915b9d69951ccc0d -2023-05-23 22:28:42.515247 + : pb-IF4VUBkIVw== ip: a|o~vo~wk~v`, Device id: 9ff4ac75a959f2200cdfe0c884ee4e0e73033bf1 -2023-05-23 22:34:56.043795 + : pb-IF4FU1daUA== ip: azo~|l~vdy, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-23 22:35:44.209364 + : pb-IF4yVFgOVA== ip: ak~~n`ajc|va~`, Device id: d854623f8a8ec9715c4cf1e44f2a453d5344d791 -2023-05-23 22:37:46.215856 + : pb-IF4yVFgOVA== started kick vote for pb-IF4TUGcsEw==. -2023-05-23 22:38:16.218486 + : Kick vote End -2023-05-23 22:41:20.471404 + : pb-IF5TVWI-EA== ip: azo~zi~}`~ym, Device id: f23b45398b74d9a508826c438d8f7fb63912deb1 -2023-05-23 22:44:53.204972 + : pb-IF4sAGcj ip: awj~yl~~``ajb{, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-23 22:45:03.990944 + : pb-IF5dVVU4AQ== started kick vote for pb-IF5TVWI-EA==. -2023-05-23 22:45:31.350318 + : pb-IF4OUBYZUQ== ip: d}va~i~~haaic, Device id: 114e694a16c29004ca32e5936bdcd114be3a2967 -2023-05-23 22:45:33.995879 + : Kick vote End -2023-05-23 22:45:44.402962 + : pb-IF49VFdbEQ== ip: a~o~va~}kaake, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 22:53:48.267849 + : pb-IF49VFdbEQ== ip: a~o~va~}kaake, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 22:54:39.188796 + : pb-IF5dVVU4AQ== started kick vote for pb-IF4TVXUJHw==. -2023-05-23 22:55:09.192531 + : Kick vote End -2023-05-23 22:58:10.223421 + : pb-IF4FU1daUA== ip: a~h~}jgamfali, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-23 23:02:26.103745 + : pb-IF41U2scIg== ip: ak~}hhaoaakd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-23 23:05:55.886346 + : pb-IF4SKldf ip: dvvcxvb~o~~og, Device id: 6ff92d7bf11c4802fef2eb5c4782b83a463b8bd3 -2023-05-23 23:08:03.342743 + : pb-IF4QU2ZeAw== ip: dvvc{vaw`~wj, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-23 23:10:13.821786 + : pb-IF49VFdbEQ== ip: a~o~va~}kaake, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 23:17:17.667830 + : pb-IF4qUBYCLg== ip: azo~|l~~heamh, Device id: 9b5a9e6c39be53e7579a611f59b52aa02ed87225 -2023-05-23 23:18:00.820230 + : pb-IF43UGdSLw== ip: azo~|k~z`~~k`, Device id: b2fe07f783aca07bdf7fad46d7a8cffbfa87072d -2023-05-23 23:21:16.506980 + : pb-IF4QU2ZeAw== ip: dvvc{vaw`~wj, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-23 23:29:41.349323 + : pb-IF49VFdbEQ== ip: a~o~va~}kaake, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-23 23:38:09.252239 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-23 23:42:56.305819 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-23 23:45:31.896301 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-23 23:47:09.236453 + : pb-IF5QU3AaLg== ip: dvvc{vb{n~~ae, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-23 23:47:33.313368 + : pb-IF4VVG8gNQ== ip: azo~zi~~ihaje, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-23 23:48:25.507346 + : pb-IF4VVG8gNQ== ip: azo~zi~~ihaje, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-23 23:49:08.858388 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-23 23:49:26.876548 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4rUGZYPw==. -2023-05-23 23:49:56.882784 + : Kick vote End -2023-05-23 23:50:36.192018 + : pb-IF5XUhAJFw== ip: ak~x`~}kiake, Device id: f7bb67dea533c677b4c6bc5733d5e04ddbbddb51 -2023-05-23 23:51:19.367475 + : pb-IF5QU3AaLg== ip: dvvc{vawj~~n`, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-23 23:52:09.479803 + : pb-IF4cUktZNg== started kick vote for pb-IF4rUGZYPw==. -2023-05-23 23:52:14.616680 + : pb-IF4rUGZYPw== kicked by kickvotes. -2023-05-23 23:57:39.809852 + : pb-IF4VVG8gNQ== ip: azo~zi~~ihaje, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-24 00:09:42.495493 + : pb-IF4sUGElBw== ip: azj~z`~xj~}lf, Device id: 447d548c2fcb9da521b4eaad45f7410584d22d57 -2023-05-24 00:10:07.598097 + : pb-IF4VVG8gNQ== ip: azo~zi~~ihaje, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-24 00:21:58.252588 + : pb-IF41U2scIg== ip: ak~}hhaoaakd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-24 00:22:07.291080 + : pb-IF49VFQlPA== ip: azo~{m~~heai`x, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-05-24 00:22:09.304025 + : pb-IF49VFdbEQ== ip: a~o~va~}kaake, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 00:22:53.460444 + : pb-IF49VFdbEQ== ip: a~o~va~}kaake, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 00:23:35.605811 + : pb-IF4CUGUMNg== ip: an~}idaahalg, Device id: 212ced56fb201f3e24f9424f77187c8cd887cece -2023-05-24 00:24:28.988980 + : pb-IF4dKBYM ip: dvvcyva}i~}jh, Device id: 059a9f7ebfa63107c689904c9ebbf32e313fa9af -2023-05-24 00:25:27.130401 + : pb-IF4XVWgZIQ== started kick vote for pb-IF4CUGUMNg==. -2023-05-24 00:25:57.130153 + : Kick vote End -2023-05-24 00:27:02.746541 + : pb-IF4dKBYM ip: dvvcyva}i~}jh, Device id: 059a9f7ebfa63107c689904c9ebbf32e313fa9af -2023-05-24 00:28:00.946146 + : pb-IF49VFdbEQ== ip: a~o~va~}kaake, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 00:29:28.420271 + : pb-IF4FU1daUA== ip: azo~|l~vdy, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-24 00:31:42.535495 + : pb-IF4dKBYM started kick vote for pb-IF40U04yUA==. -2023-05-24 00:32:00.445618 + : Kick vote End -2023-05-24 00:32:03.073621 + : pb-IF4LU1RdUg== ip: azo~zh~}j~{m, Device id: 013ebdc40cb805919e389d339fe790db1aeaa296 -2023-05-24 00:32:11.096398 + : pb-IF40U04yUA== ip: d}vao~wn~}ji, Device id: 018302b11dbd016cb0563a006e031a7831593a1a -2023-05-24 00:32:52.252118 + : pb-IF4IUGVTMQ== ip: ak~vo~vn~{, Device id: c122767b74fe0c99f1c70247ae0b7d6375493e1d -2023-05-24 00:34:03.508923 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~oe, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-24 00:34:28.825641 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~oe, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-24 00:36:33.291204 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~oe, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-24 00:38:48.777890 + : pb-IF4LU1RdUg== started kick vote for pb-IF4SUGIqDw==. -2023-05-24 00:39:18.780869 + : Kick vote End -2023-05-24 00:42:22.062948 + : pb-IF4pUGQyNQ==|| kicked > new account -2023-05-24 00:46:33.661638 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-24 00:47:16.856784 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-24 00:47:30.911883 + : pb-IF4lU00PEA== ip: dvvd|vazj~~oe, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-24 00:47:51.967530 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-24 00:48:24.090651 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-24 00:48:33.127956 + : pb-IF41U2scIg== ip: an~}j`aabaja, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-24 00:49:41.373193 + : pb-IF4SUGcsLw== ip: ak~~jaajd}vb|j, Device id: 290050df802f7a5fc224559c31598ca739ef42b8 -2023-05-24 00:49:43.384786 + : pb-IF49VFdbEQ== ip: a~o~va~}kaake, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 00:49:55.436017 + : pb-IF4lU00PEA== ip: dvvd|vazj~~oe, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-24 00:51:31.756350 + : pb-IF4LPkVb ip: izvh}viwvg|, Device id: 61291b1e38e06b6fb1b58a82ffe643c996f9837a -2023-05-24 00:52:44.030518 + : pb-IF4LPkVb ip: izvh}viwvg|, Device id: 61291b1e38e06b6fb1b58a82ffe643c996f9837a -2023-05-24 00:59:09.427341 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-24 01:00:00.776410 + : pb-IF4lU00PEA== ip: dvvd|vazj~~oe, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-24 01:01:41.126824 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-24 01:03:24.479663 + : pb-IF4LPkVb ip: izvh}viwvg|, Device id: 61291b1e38e06b6fb1b58a82ffe643c996f9837a -2023-05-24 01:12:44.497167 + : pb-IF4LPkVb ip: izvh}viwvg|, Device id: 61291b1e38e06b6fb1b58a82ffe643c996f9837a -2023-05-24 01:13:34.665910 + : pb-IF4LPkVb ip: izvh}viwvg|, Device id: 61291b1e38e06b6fb1b58a82ffe643c996f9837a -2023-05-24 01:16:26.355263 + : pb-IF4LPkVb ip: izvh}viwvg|, Device id: 61291b1e38e06b6fb1b58a82ffe643c996f9837a -2023-05-24 01:21:12.407944 + : pb-IF4LPkVb ip: izvh}viwvg|, Device id: 61291b1e38e06b6fb1b58a82ffe643c996f9837a -2023-05-24 01:21:34.475073 + : pb-IF4LPkVb ip: izvh}viwvg|, Device id: 61291b1e38e06b6fb1b58a82ffe643c996f9837a -2023-05-24 01:25:02.201755 + : pb-IF4IUGVTMQ== ip: ak~vo~vn~{, Device id: c122767b74fe0c99f1c70247ae0b7d6375493e1d -2023-05-24 01:25:32.313536 + : pb-IF4LPkVb ip: izvh}viwvg|, Device id: 61291b1e38e06b6fb1b58a82ffe643c996f9837a -2023-05-24 02:18:19.885531 + : Server started -2023-05-24 02:18:36.949386 + : pb-IF5dUGglAw== ip: azo~|m~~n~~nc, Device id: 064c60d9855d30b53be59aeb5dc7fdb93aa962b3 -2023-05-24 02:33:41.350105 + : pb-IF4LPkVb ip: izvh}viwvfw, Device id: 61291b1e38e06b6fb1b58a82ffe643c996f9837a -2023-05-24 02:33:57.399237 + : pb-IF4NV3oIFA== ip: azj~zo~~acaibx, Device id: fcafcc043f19b8b161a3258f2a4897cabf6aaf41 -2023-05-24 02:34:00.405594 + : pb-IF4LPkVb ip: izvh}viwvfw, Device id: 61291b1e38e06b6fb1b58a82ffe643c996f9837a -2023-05-24 02:44:20.667949 + : pb-IF4LPkVb ip: izvh}viwvfw, Device id: 61291b1e38e06b6fb1b58a82ffe643c996f9837a -2023-05-24 03:09:06.191523 + : pb-IF4LPkVb ip: izvh}viwvfw, Device id: 61291b1e38e06b6fb1b58a82ffe643c996f9837a -2023-05-24 03:09:18.225303 + : pb-IF4LPkVb ip: izvh}viwvfw, Device id: 61291b1e38e06b6fb1b58a82ffe643c996f9837a -2023-05-24 03:38:13.404970 + : pb-IF4LPkVb ip: izvh}viwvfw, Device id: 61291b1e38e06b6fb1b58a82ffe643c996f9837a -2023-05-24 04:26:32.995702 + : pb-IF4XVHBdIQ== ip: dvvbm~wh~~ld, Device id: bb4a1622c7601f1a78263c6066c8e905a694ffb2 -2023-05-24 06:21:46.610085 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-24 06:22:21.729354 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-24 06:22:56.850118 + : pb-IF4TUBcqVw== ip: b}k~~`aameamg, Device id: 1efc59fa9f91171c03a68297a08db4ab49ff92da -2023-05-24 06:53:09.354227 + : pb-IF4mVGZaCw== ip: dvvc}va}`~vm, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-05-24 06:54:41.677497 + : pb-IF5RUGUgFQ== ip: evg}vayk~~`f, Device id: 4f62181bbc04350311c35db0ea114e8497883a8e -2023-05-24 07:06:42.457841 + : pb-IF4mVGZaCw== ip: dvvc}va}`~vm, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-05-24 07:07:06.534257 + : pb-IF4mVGZaCw== ip: dvvc}va}`~vm, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-05-24 07:07:15.554986 + : pb-IF4mVGZaCw== ip: dvvc}va}`~vm, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-05-24 07:20:30.389151 + : pb-IF4XUGYaFQ== ip: a|a~~ngajbxvfy, Device id: cea5ca751787a9aa358a197e56866072964ff0f0 -2023-05-24 07:42:23.415887 + : pb-IF4FU1daUA== ip: dvvczvawo~~kf, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-24 08:06:18.897513 + : pb-IF4eUGhYEQ==|| kicked > new account -2023-05-24 08:18:07.180568 + : pb-IF4uUk4vMg== ip: awj~yl~vk~~`d, Device id: 6635c2af1bf357a9e95bbf3d6082a39d14dc3cdb -2023-05-24 08:31:35.089023 + : pb-IF5QVFMCUg== ip: azo~{n~~hdanf, Device id: 3b483075b2023edb95e323dc2cc0d8dc516cae08 -2023-05-24 08:41:49.187478 + : pb-IF4qU1NdPw== ip: dvvcyvb|m~~if, Device id: cf176e9a9e26a89e847057cd90d183f6802d4c82 -2023-05-24 08:51:58.262394 + : Server started -2023-05-24 08:58:24.653076 + : pb-IF4lUkkNHw== ip: azo~|l~}o~zl, Device id: 893e3c016381e2dc2dbd0f24b9a9d4ebeaa21381 -2023-05-24 08:58:41.702299 + : pb-IF4lUkkNHw== ip: azo~|l~}o~zl, Device id: 893e3c016381e2dc2dbd0f24b9a9d4ebeaa21381 -2023-05-24 09:00:33.093725 + : pb-IF4lUkkNHw== ip: azo~|l~}o~zl, Device id: 893e3c016381e2dc2dbd0f24b9a9d4ebeaa21381 -2023-05-24 09:11:09.453082 + : pb-IF4cVRQEVA== ip: a~h~}jgaj~}kf, Device id: 4cdccdd087faa6d3d81a3e6d8c43fcadfaaba525 -2023-05-24 09:12:18.683397 + : pb-IF4cVRQEVA== ip: a~h~}jgaj~}kf, Device id: 4cdccdd087faa6d3d81a3e6d8c43fcadfaaba525 -2023-05-24 09:12:48.789322 + : pb-IF4wVXgqFA== ip: azo~|k~}heajcw, Device id: 7f5352e18de688008fc4d6a07084cc307873fa4d -2023-05-24 09:14:03.045926 + : pb-IF4wVXgqFA== ip: azo~|k~}heajcw, Device id: 7f5352e18de688008fc4d6a07084cc307873fa4d -2023-05-24 09:14:37.163031 + : pb-IF4GUBc7AA== ip: b}k~~`fa`aaia|, Device id: ef7261e7f53f2fd79626af05029ec7fbcc6a76ac -2023-05-24 09:17:27.787841 + : pb-IF48U1M9Kw== ip: an~}hhaieva|, Device id: 52a3d6b86731ff41ffabbafcd88660333675f7a1 -2023-05-24 09:19:01.103634 + : pb-IF4cVRQEVA== ip: a~h~}jgaj~}kf, Device id: 4cdccdd087faa6d3d81a3e6d8c43fcadfaaba525 -2023-05-24 09:19:47.274717 + : pb-IF40UBISLQ== ip: a~h~}jgameajb, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-24 09:23:41.147449 + : pb-IF40UBISLQ== ip: a~h~}jgameajb, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-24 09:23:57.211142 + : pb-IF4QU2ZeAw== ip: dvvc{vawi~~`b, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-24 09:25:04.450458 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 09:25:17.499260 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 09:28:22.199092 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-24 09:36:49.002468 + : pb-IF4xUxQ4Dg== started kick vote for . -2023-05-24 09:36:54.232031 + : Kick vote End -2023-05-24 09:37:00.130277 + : pb-IF5UUxgjIA== ip: evvhvvgxvazk, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-05-24 09:37:04.407671 + : pb-IF4sU28eAg== started kick vote for . -2023-05-24 09:37:24.565882 + : Kick vote End -2023-05-24 09:37:28.561058 + : pb-IF4iUGctMA==|| kicked > new account -2023-05-24 09:37:29.116385 + : pb-IF4xUxQ4Dg== started kick vote for . -2023-05-24 09:37:34.929589 + : kicked by kickvotes. -2023-05-24 09:37:57.334776 + : pb-IF5UUxgjIA== ip: evvhvvgxvazk, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-05-24 09:39:10.568001 + : pb-IF5UUxgjIA== ip: evvhvvgxvazk, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-05-24 09:40:14.807603 + : pb-IF5UUxgjIA== ip: evvhvvgxvazk, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-05-24 09:41:29.117724 + : pb-IF40UBISLQ== ip: a~h~}jgameajb, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-24 09:43:21.484166 + : pb-IF5UUxgjIA== ip: evvhvvgxvazk, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-05-24 09:44:51.810315 + : pb-IF4rU1BYEw== ip: dvvczvb}o~}ma, Device id: 1ceac1342362c3d97118a724575962a6dec13e04 -2023-05-24 09:45:08.876690 + : pb-IF4mVGZaCw== ip: dvvc}va|o~{, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-05-24 09:45:59.033579 + : pb-IF4lUkkNHw== ip: azo~|l~}o~zl, Device id: 893e3c016381e2dc2dbd0f24b9a9d4ebeaa21381 -2023-05-24 09:47:19.356159 + : pb-IF4IVW0MVw== ip: evvhvvgxvazk, Device id: 0097d8138814c34ba1872bad50c053284743caec -2023-05-24 09:48:56.703089 + : pb-IF4xUxQ4Dg== ip: azo~{l~~`iaig{, Device id: d5834d554225aa9d2ff06b2b295d91d9777d32d5 -2023-05-24 09:49:02.709227 + : pb-IF4mVGZaCw== ip: dvvc}va|o~{, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-05-24 09:49:06.720591 + : pb-IF5UUxgjIA== ip: evvhvvgxvazk, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-05-24 09:50:34.932421 + : pb-IF4mVGZaCw== started kick vote for . -2023-05-24 09:50:44.003088 + : Kick vote End -2023-05-24 09:51:31.241130 + : pb-IF4FU1daUA== ip: dvvczvaxk~~i`, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-24 09:51:48.285102 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 09:52:19.561957 + : pb-IF4mVGZaCw== started kick vote for . -2023-05-24 09:52:49.567754 + : Kick vote End -2023-05-24 09:54:24.837719 + : pb-IF4QU2ZeAw== ip: dvvc{vayo~~ob, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-24 09:54:57.974633 + : pb-IF49UBQSFA== ip: azo~|j~~ihaj, Device id: 8d75d902cc3a63a5d74a42b2853e1cf9d188ccfa -2023-05-24 09:56:10.233753 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 09:56:16.247871 + : pb-IF49UBQSFA== ip: azo~|j~~ihaj, Device id: 8d75d902cc3a63a5d74a42b2853e1cf9d188ccfa -2023-05-24 09:57:32.521444 + : pb-IF4QUBQoBw== ip: an~xo~xa~~ni, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-24 09:57:45.560017 + : pb-IF4mVWsGJA== ip: awj~{`~}j`ajdv, Device id: 43b684a8f02d81de15591df355b7c8780a6caa6c -2023-05-24 09:57:47.569325 + : pb-IF4FU1daUA== ip: dvvczvaxk~~i`, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-24 10:06:23.360662 + : pb-IF4mVGZaCw== ip: dvvc}va|o~{, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-05-24 10:08:55.623677 + : pb-IF4yVXVYIw== started kick vote for . -2023-05-24 10:09:00.998006 + : pb-IF4mVGZaCw== ip: dvvc}va|o~{, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-05-24 10:09:25.628168 + : Kick vote End -2023-05-24 10:10:39.342227 + : pb-IF4mVGZaCw== ip: dvvc}va|o~{, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-05-24 10:12:42.794706 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 10:12:51.820121 + : pb-IF4HU1EdPw== ip: azj~zo~xm~{l, Device id: e1e9e681c5638caa9e99009c72873b4689659156 -2023-05-24 10:24:14.238773 + : pb-IF4nUkteVA== ip: a}j~zh~}hbaid, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-05-24 10:27:25.936816 + : pb-IF4HU1EdPw== ip: azj~zo~xm~{l, Device id: e1e9e681c5638caa9e99009c72873b4689659156 -2023-05-24 10:27:54.051697 + : pb-IF4mVGZaCw== ip: dvvc}va|o~{, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-05-24 10:30:22.589395 + : pb-IF5XVW8aUQ== ip: a~o~}jbaia}vh|, Device id: 3478aa6ac466d8233b59a384474b13ef31b97582 -2023-05-24 10:31:13.867961 + : pb-IF4FU1daUA== ip: dvvczvaxk~~i`, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-24 10:31:29.923802 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 10:32:54.204259 + : pb-IF4qUGcgVA== ip: a|j~~mdakdaif, Device id: 8e15b72bce41376e864526b0b2219c7097510e54 -2023-05-24 10:34:02.451370 + : pb-IF4QU2ZeAw== ip: dvvc{vayo~~ob, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-24 10:36:03.865961 + : pb-IF4wU1MPEg== ip: awj~ya~~ofaic~, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-24 10:38:29.519390 + : pb-IF41U2scIg== ip: an~}j`aabaja, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-24 10:41:10.063167 + : pb-IF4CUGMfXA== ip: dvvd|vazj~~oe, Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-05-24 10:41:34.142232 + : pb-IF4zUkwZBw== ip: a}j~~nda``aj`|, Device id: bc1327009f9944b141f04912712143c738d96727 -2023-05-24 10:41:46.195436 + : pb-IF41U2scIg== ip: an~}j`aabaja, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-24 10:42:24.560576 + : banned PC913901 -2023-05-24 10:42:24.560696 + : kicked PC913901 -2023-05-24 10:43:03.802082 + : pb-IF4zUGcTFA==|| kicked > new account -2023-05-24 10:44:41.828245 + : pb-IF4iUmsSDw== ip: a}j~~naam`akd, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-24 10:44:49.856480 + : pb-IF4-Um4_Lw== ip: azj~zo~}ifaib|, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-05-24 10:47:41.425898 + : pb-IF5QU3AaLg== ip: a}j~~`baigvva}o, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-24 10:48:32.562902 + : pb-IF4mVGZaCw== ip: dvvc}va|o~{, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-05-24 10:49:16.727774 + : pb-IF5cUBZdVg== ip: b}k~}jdah~~, Device id: e6ad9b14306ce5a4c7c98910dfd7d742e6877dcb -2023-05-24 10:49:36.786378 + : pb-IF5cUBZdVg== ip: b}k~}jdah~~, Device id: e6ad9b14306ce5a4c7c98910dfd7d742e6877dcb -2023-05-24 10:51:09.120497 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-24 10:51:15.151030 + : pb-IF4VUGY6HA== ip: azo~{j~|vaw, Device id: f437fd5ae8363e3d6db00c6323a23ed9cd2a14bc -2023-05-24 10:52:27.506587 + : pb-IF4mVGZaCw== ip: dvvc}va|o~{, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-05-24 10:52:32.530089 + : pb-IF4mUlokXQ== ip: ak~~o`ameaj`v, Device id: 2183ee037b6be57cf41cb6155920a236659396d6 -2023-05-24 10:55:01.059957 + : pb-IF4CUGMfXA== | kicked > reason:Banned account -2023-05-24 10:58:04.676229 + : pb-IF4mVGZaCw== ip: dvvc}va|o~{, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-05-24 10:58:27.750274 + : pb-IF41U2scIg== ip: ak~}hhaoaakd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-24 10:58:44.469471 + : banned Smoothie is Gay -2023-05-24 10:58:44.469577 + : kicked Smoothie is Gay -2023-05-24 11:00:12.184239 + : pb-IF5cUBZdVg== ip: b}k~}jdah~~, Device id: e6ad9b14306ce5a4c7c98910dfd7d742e6877dcb -2023-05-24 11:03:18.862330 + : pb-IF5UU3AYDQ== ip: azo~{l~~`iaig{, Device id: d5834d554225aa9d2ff06b2b295d91d9777d32d5 -2023-05-24 11:03:49.987693 + : pb-IF4jIEEY | kicked > reason: Banned account -2023-05-24 11:04:20.162704 + : pb-IF4mVGZaCw== started kick vote for . -2023-05-24 11:04:48.857175 + : Kick vote End -2023-05-24 11:05:06.256405 + : pb-IF5UU3AYDQ== started kick vote for . -2023-05-24 11:05:31.077567 + : Kick vote End -2023-05-24 11:06:26.581828 + : pb-IF41U2scIg== ip: ak~}hhaoaakd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-24 11:06:42.641403 + : pb-IF4LUk0FCQ== ip: azj~zo~~acajg, Device id: a90ea705ab07ae71d76b1775b6c73cf2a51c5161 -2023-05-24 11:06:58.708596 + : pb-IF5cUBZdVg== ip: b}k~}jdah~~, Device id: e6ad9b14306ce5a4c7c98910dfd7d742e6877dcb -2023-05-24 11:07:16.770109 + : pb-IF4LUk0FCQ== ip: azj~zo~~acajg, Device id: a90ea705ab07ae71d76b1775b6c73cf2a51c5161 -2023-05-24 11:08:33.125748 + : pb-IF4zUGcTFA== | kicked > reason:Banned account -2023-05-24 11:08:34.128887 + : pb-IF4iUmsSDw== ip: a}j~~naam`akd, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-24 11:09:47.436868 + : pb-IF4-Um4_Lw== ip: azj~zo~}ifaib|, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-05-24 11:12:00.500440 + : banned Smoothie is Gay -2023-05-24 11:12:00.500510 + : kicked Smoothie is Gay -2023-05-24 11:13:44.426115 + : pb-IF5cUBZdVg== ip: b}k~}jdah~~, Device id: e6ad9b14306ce5a4c7c98910dfd7d742e6877dcb -2023-05-24 11:13:59.472846 + : pb-IF4cUBYfCg== ip: azo~{m~}hhah, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-24 11:14:29.704980 + : pb-IF4iUmsSDw== started kick vote for pb-IF5cUBZdVg==. -2023-05-24 11:14:31.624700 + : Kick vote End -2023-05-24 11:16:08.928720 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-24 11:17:22.634425 + : banned Smoothie is Gay -2023-05-24 11:17:22.634499 + : kicked Smoothie is Gay -2023-05-24 11:20:02.757322 + : pb-IF4cUBYfCg== ip: azo~{m~}hhah, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-24 11:21:29.050246 + : pb-IF4CUGMfXA== | kicked > reason:Banned account -2023-05-24 11:21:57.700909 + : pb-IF5VUGkYAw==|| kicked > new account -2023-05-24 11:23:14.305946 + : pb-IF4mVGZaCw== started kick vote for . -2023-05-24 11:23:26.889180 + : banned Smoothie is Gay -2023-05-24 11:23:26.889245 + : kicked Smoothie is Gay -2023-05-24 11:23:26.896396 + : Kick vote End -2023-05-24 11:24:17.271774 + : pb-IF4mVGZaCw== started kick vote for pb-IF43UmsPVg==. -2023-05-24 11:24:47.275557 + : Kick vote End -2023-05-24 11:27:18.378540 + : pb-IF5WUGglVg== ip: d}vam~w`~~og, Device id: 1765ee57a0a6b50046a970817983b5278ed3a1bc -2023-05-24 11:27:56.513540 + : pb-IF43UmsPVg== ip: a}j~~nbaidwvawj, Device id: fcf3ec98247078d361dc94e5ca9cb85616ade977 -2023-05-24 11:29:06.421648 + : banned Smoothie is Gay -2023-05-24 11:29:06.421710 + : kicked Smoothie is Gay -2023-05-24 11:30:27.078052 + : pb-IF41U2scIg== ip: ak~}hhaoaakd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-24 11:30:56.165904 + : pb-IF4MUBMHKA== ip: azj~z`~~`~~je, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-24 11:36:40.373580 + : Server started -2023-05-24 11:36:42.382656 + : pb-IF4MUBMHKA== ip: azj~z`~~`~~je, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-24 11:36:42.382907 + : pb-IF5WUGglVg== ip: d}vam~w`~~og, Device id: 1765ee57a0a6b50046a970817983b5278ed3a1bc -2023-05-24 11:37:41.601227 + : pb-IF4cUBYfCg== ip: azo~{m~}jcaag, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-24 11:37:53.643955 + : pb-IF4KVFoaPA== | kicked > reason: Banned account -2023-05-24 11:39:33.001642 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 11:39:48.053860 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaia, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 11:44:37.166956 + : pb-IF41U2scIg== ip: ak~}hhaoaakd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-24 11:44:43.117901 + : kicked Smoothie is Gay -2023-05-24 11:47:31.822043 + : pb-IF4mVGZaCw== ip: dvvc}va|o~{, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-05-24 11:47:54.905252 + : pb-IF4CUGMfXA== | kicked > reason:Banned account -2023-05-24 11:49:15.183645 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-24 11:49:59.359717 + : pb-IF4KUkNfPA== ip: azo~{i~}m`ani, Device id: ed7656c7baf727843f7aae928bae699b7d94bfba -2023-05-24 11:51:14.011610 + : pb-IF4KUkNfPA== started kick vote for pb-IF4sU28eAg==. -2023-05-24 11:51:44.012138 + : Kick vote End -2023-05-24 11:51:49.766681 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-24 11:52:22.857568 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-24 11:52:55.963036 + : pb-IF4CUGMfXA== | kicked > reason:Banned account -2023-05-24 11:54:10.215463 + : pb-IF4cUBIGJA== ip: h|va~l~{o~zh, Device id: 5595e17ceb898e6a29e5b1d3ba802d11edc37a88 -2023-05-24 11:54:52.633829 + : pb-IF4KUkNfPA== started kick vote for pb-IF4sU28eAg==. -2023-05-24 11:54:56.359697 + : pb-IF4gU0wxBw== ip: ak~}hhaoaakd, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-24 11:55:22.642040 + : Kick vote End -2023-05-24 11:57:07.101507 + : pb-IF4sU28eAg== started kick vote for pb-IF4lUGdTBA==. -2023-05-24 11:57:23.575887 + : Kick vote End -2023-05-24 11:58:08.097587 + : pb-IF4lUGdTBA== ip: a~o~va~}o~yi, Device id: 6a8073ccf5db46aeee0671ae8cf1cf90b006a870 -2023-05-24 11:59:05.010711 + : pb-IF4cUBIGJA== started kick vote for pb-IF4KUkNfPA==. -2023-05-24 11:59:35.016524 + : Kick vote End -2023-05-24 12:00:49.833581 + : pb-IF4KUkNfPA== started kick vote for pb-IF4cUBIGJA==. -2023-05-24 12:01:19.835356 + : Kick vote End -2023-05-24 12:02:41.122135 + : pb-IF4TV3RbDA== ip: azo~|l~zh~y, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-24 12:04:25.495848 + : pb-IF4gU0wxBw== ip: ak~}hhaoaakd, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-24 12:04:30.304517 + : pb-IF4sU28eAg== started kick vote for pb-IF4KUkNfPA==. -2023-05-24 12:05:00.312685 + : Kick vote End -2023-05-24 12:07:11.095347 + : pb-IF4LPkVb ip: izvh}viwvfw, Device id: 61291b1e38e06b6fb1b58a82ffe643c996f9837a -2023-05-24 12:07:37.196579 + : pb-IF4gU0wxBw== ip: ak~}hhaoaakd, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-24 12:09:55.664780 + : pb-IF42UBEfJA== ip: ak~wa~}keaicw, Device id: 72ba1ebc93e2c61046ffa5f273503a731e146f64 -2023-05-24 12:11:10.943550 + : pb-IF4rU1BYEw== ip: dvvczvb|a~}ih, Device id: 1ceac1342362c3d97118a724575962a6dec13e04 -2023-05-24 12:14:11.611268 + : pb-IF4cUBYfCg== ip: azo~{m~}iaaod, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-24 12:14:27.663972 + : pb-IF4OU2QjMQ== ip: an~}ifajevayj, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-24 12:15:00.784902 + : pb-IF4iUmsSDw== ip: a}j~~naam`akd, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-24 12:15:57.003183 + : pb-IF4TV3RbDA== ip: azo~|l~zm~v, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-24 12:16:57.264755 + : pb-IF4TV3RbDA== started kick vote for pb-IF4iUmsSDw==. -2023-05-24 12:17:27.272019 + : Kick vote End -2023-05-24 12:18:37.610768 + : pb-IF4WUBJcVQ== ip: an~}heajd|vf{, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-24 12:19:46.865125 + : pb-IF4WUBJcVQ== ip: an~}heajd|vf{, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-24 12:21:29.300049 + : pb-IF4rU1BYEw== ip: dvvczvb|a~}ih, Device id: 1ceac1342362c3d97118a724575962a6dec13e04 -2023-05-24 12:22:19.478896 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 12:23:40.755507 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 12:28:18.735888 + : pb-IF4KVFoaPA== | kicked > reason: Banned account -2023-05-24 12:29:21.940539 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-24 12:30:04.079422 + : pb-IF4uU1o-Pw== ip: dvva}n~}jea`f, Device id: f84e373b90064e97874a3197cfbd00ba09a0966b -2023-05-24 12:32:28.634065 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-24 12:32:50.709924 + : pb-IF4gU0wxBw== ip: ak~}hhaoaakd, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-24 12:33:09.787760 + : pb-IF4-Uk4mEA== ip: azo~|m~~n~~ii, Device id: b1920ab07bd50671fd0897a7c4ccab774e5adc53 -2023-05-24 12:34:51.211196 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaia, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 12:35:30.359129 + : pb-IF4gU0wxBw== ip: ak~}hhaoaakd, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-24 12:36:23.553015 + : pb-IF4KVFoaPA== | kicked > reason: Banned account -2023-05-24 12:36:37.616322 + : pb-IF4nUGE7KA== ip: b}k~~`hajbwvb~a, Device id: 13a1d48885d496e0b6ecebef433118d164ffa331 -2023-05-24 12:36:50.666767 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-24 12:36:54.690893 + : pb-IF4nUGE7KA== ip: b}k~~`hajbwvb~a, Device id: 13a1d48885d496e0b6ecebef433118d164ffa331 -2023-05-24 12:38:11.000452 + : pb-IF4nUGE7KA== ip: b}k~~`hajbwvb~a, Device id: 13a1d48885d496e0b6ecebef433118d164ffa331 -2023-05-24 12:39:08.170102 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-24 12:40:20.798650 + : pb-IF4wU1MPEg== started kick vote for pb-IF5UUGlcBg==. -2023-05-24 12:40:50.801206 + : Kick vote End -2023-05-24 12:41:21.642043 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-24 12:42:30.186042 + : pb-IF4RUGgtJA==|| kicked > new account -2023-05-24 12:44:45.503916 + : pb-IF4wU1MPEg== started kick vote for pb-IF5UUGlcBg==. -2023-05-24 12:45:15.507607 + : Kick vote End -2023-05-24 12:45:52.646786 + : pb-IF41UBQPXA== ip: a}l~~hfaicyvbv, Device id: 4053d4ecb6d73d755ad3c574aa4bd40384b30b43 -2023-05-24 12:46:33.781225 + : pb-IF4NVxAZDg== ip: dvvcyva~m~}ig, Device id: 9dda09fcf9a3701e0e8edddd357f35fc1813050f -2023-05-24 12:48:28.164389 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-24 12:48:56.308342 + : pb-IF4yVXVYIw== started kick vote for pb-IF41UBQPXA==. -2023-05-24 12:49:24.364950 + : pb-IF4AV1QqEQ== ip: an~}ica`gai`z, Device id: 2331b3822293d621f32ade855f2e13b5f48a2f9e -2023-05-24 12:49:26.317548 + : Kick vote End -2023-05-24 12:51:49.047319 + : pb-IF49VWsyUw== ip: azo~{m~~`gamh, Device id: e8d40b60d9159ff4fd86e0752daa2796b4115f11 -2023-05-24 12:52:37.520160 + : pb-IF4BUGdeHw==|| kicked > new account -2023-05-24 12:53:04.307018 + : pb-IF5VU1cZJw== ip: azj~z`~|m~~`b, Device id: f65084d7a8f04c03afd663ea292987ca1c52dc2f -2023-05-24 12:53:16.346504 + : pb-IF5dUGgxBw== ip: dvvcyvd|vavm, Device id: 13a4a52aec34f3ac84e87d7067f392374eec339f -2023-05-24 12:55:10.789785 + : pb-IF49VWsyUw== ip: azo~{m~~`gamh, Device id: e8d40b60d9159ff4fd86e0752daa2796b4115f11 -2023-05-24 12:56:31.093920 + : pb-IF5SUGk_DA== ip: azj~z`~}n~}kc, Device id: c13dcc7b5dea8ab5c1d4f5b3b8fa9fa1ac8200e8 -2023-05-24 12:57:45.335815 + : pb-IF4GUGcRKg== ip: an~~agaiiaif~, Device id: e35b2353ea6cc616c065a372a067a43aa1c31867 -2023-05-24 13:00:57.020914 + : pb-IF4oU2EbKg== ip: a}i~~jcah~xk, Device id: 964fdffbff5c11baa4b25a0b739bc03fbda9612d -2023-05-24 13:01:42.191161 + : pb-IF4MV0gkKQ== ip: azo~|j~|k~~ob, Device id: 9c5282b093c6f462ada80992fb5cd0fbeb0fd377 -2023-05-24 13:03:19.541956 + : pb-IF4gU0wxBw== ip: ak~}hhaoaakd, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-24 13:04:00.452846 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4dVXNSNg==. -2023-05-24 13:04:30.459954 + : Kick vote End -2023-05-24 13:04:44.852812 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-24 13:05:14.968229 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaia, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 13:06:01.004373 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB started kick vote for pb-IF4XUBBTLg==. -2023-05-24 13:06:31.009225 + : Kick vote End -2023-05-24 13:06:37.344039 + : pb-IF4nUxE4Nw== ip: a~o~va~}laaih{, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-24 13:09:30.230562 + : pb-IF48UGhfDg==|| kicked > new account -2023-05-24 13:09:32.951053 + : pb-IF5QU3AaLg== ip: ak~}maamgaiiy, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-24 13:10:19.438944 + : pb-IF4AV1QqEQ== started kick vote for pb-IF48UxQ-Aw==. -2023-05-24 13:10:49.444523 + : Kick vote End -2023-05-24 13:11:46.477384 + : pb-IF4wVXgqFA== ip: azo~|k~}heajcw, Device id: 7f5352e18de688008fc4d6a07084cc307873fa4d -2023-05-24 13:16:49.611388 + : pb-IF5XUBQNCQ== ip: a~h~}jda`gakh, Device id: db7eee599a3045cb61b3c15b4e934c40e17f13f3 -2023-05-24 13:17:14.021604 + : pb-IF4AUGcaCQ==|| kicked > new account -2023-05-24 13:17:46.185288 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4wVXgqFA==. -2023-05-24 13:18:01.892547 + : pb-IF5XUBQNCQ== ip: a~h~}jda`gakh, Device id: db7eee599a3045cb61b3c15b4e934c40e17f13f3 -2023-05-24 13:18:08.992364 + : Kick vote End -2023-05-24 13:18:11.926795 + : pb-IF4wVXgqFA== ip: azo~|k~}heajcw, Device id: 7f5352e18de688008fc4d6a07084cc307873fa4d -2023-05-24 13:18:18.950824 + : pb-IF5UUGlcBg== ip: a|o~vo~~i`ak, Device id: a65c706596b8ce22cf1ed306178cf23943c477f0 -2023-05-24 13:18:33.004781 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-24 13:20:05.363479 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 13:20:29.563640 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh}vazl, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-24 13:20:43.604705 + : pb-IF5UUGlcBg== ip: a|o~vo~~i`ak, Device id: a65c706596b8ce22cf1ed306178cf23943c477f0 -2023-05-24 13:21:53.692183 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5UUGlcBg==. -2023-05-24 13:22:23.696227 + : Kick vote End -2023-05-24 13:23:23.171056 + : pb-IF4AUGcaCQ== | kicked > reason:Banned account -2023-05-24 13:25:27.616611 + : pb-IF4qU0wPPQ== ip: b}k~~a`aj`|ve{, Device id: 1bd13fe5a96dc516bd991d123fe5d00506fde1be -2023-05-24 13:25:30.912842 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5XUBQNCQ==. -2023-05-24 13:26:00.916606 + : Kick vote End -2023-05-24 13:26:30.811994 + : pb-IF4qU0wPPQ== ip: b}k~~a`aj`|ve{, Device id: 1bd13fe5a96dc516bd991d123fe5d00506fde1be -2023-05-24 13:27:48.023372 + : pb-IF4sU28eAg== started kick vote for pb-IF5QU3AaLg==. -2023-05-24 13:28:18.026296 + : Kick vote End -2023-05-24 13:29:23.516294 + : pb-IF41U2scIg== ip: ak~}hhaoaakd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-24 13:29:50.634463 + : pb-IF4-AGI7 ip: bxvf}vb|o~wm, Device id: 30044689eb8e24c858cb1d029b58e40e866f2cfb -2023-05-24 13:30:07.329222 + : pb-IF4cUktZNg== started kick vote for pb-IF4QUBU-UA==. -2023-05-24 13:30:22.763275 + : pb-IF41U2scIg== ip: ak~}hhaoaakd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-24 13:30:37.332430 + : Kick vote End -2023-05-24 13:30:46.848420 + : pb-IF4HUGUDPw== ip: azo~{a~}kiaidv, Device id: 52f722e2868a7a223fab2340f60103321ec30543 -2023-05-24 13:31:13.006356 + : pb-IF4IV04ZKw== | kicked > reason:Banned account -2023-05-24 13:31:47.114096 + : pb-IF4lV1EtKA== ip: an~}jbaniaibx, Device id: 7f05979949e4f89cb488dd53fb5abb942ed8dc7c -2023-05-24 13:32:25.356717 + : pb-IF4HUGUDPw== started kick vote for pb-IF4QUBU-UA==. -2023-05-24 13:32:55.360908 + : Kick vote End -2023-05-24 13:33:11.598423 + : pb-IF48UGhfDg== | kicked > reason:Banned account -2023-05-24 13:36:19.169755 + : pb-IF4-AGI7 started kick vote for pb-IF41U2scIg==. -2023-05-24 13:36:49.174746 + : Kick vote End -2023-05-24 13:40:00.037206 + : pb-IF48UGhfDg== | kicked > reason:Banned account -2023-05-24 13:40:27.155612 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB started kick vote for pb-IF5QU3AaLg==. -2023-05-24 13:40:57.161420 + : Kick vote End -2023-05-24 13:41:53.511462 + : kicked firegamero -2023-05-24 13:42:55.468134 + : pb-IF4qUGdcDg== started kick vote for pb-IF5QU3AaLg==. -2023-05-24 13:43:10.713306 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-24 13:43:25.473787 + : Kick vote End -2023-05-24 13:44:02.903902 + : pb-IF4qUGdcDg== ip: dvvc{vayk~~kc, Device id: 4e62dd780b39182455c252c2ef93dfd3febddce1 -2023-05-24 13:45:56.676299 + : pb-IF5cUGk5Aw==|| kicked > new account -2023-05-24 13:46:47.573643 + : pb-IF4iUmsSDw== ip: a}j~~naam`akd, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-24 13:47:16.698952 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-24 13:47:45.814187 + : pb-IF4OUBYZUQ== ip: aakhajbvay`, Device id: 114e694a16c29004ca32e5936bdcd114be3a2967 -2023-05-24 13:48:38.258923 + : pb-IF4-AGI7 started kick vote for pb-IF41U2scIg==. -2023-05-24 13:49:08.260593 + : Kick vote End -2023-05-24 13:49:39.285231 + : pb-IF4xUGQfNg== ip: an~}ifajevayj, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-05-24 13:51:16.620926 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB ip: b}k~~ohaj`vvaza, Device id: 78c06b4d948c8b6425fd95b584f9c5243e2bfa5b -2023-05-24 13:52:01.783652 + : pb-IF4WUBJcVQ== ip: an~}heajd|vf{, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-24 13:53:44.202720 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 13:54:49.448980 + : pb-IF4nUkteVA== ip: a}j~zh~}hbaid, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-05-24 13:56:03.955620 + : pb-IF4WUBJcVQ== started kick vote for pb-IF4BUBccAw==. -2023-05-24 13:56:33.961411 + : Kick vote End -2023-05-24 13:57:44.611653 + : kicked Tanmaysaur -2023-05-24 13:57:54.055490 + : pb-IF4zU00GCg== ip: azj~zo~vk~~oe, Device id: 3237074d7292904a27c82bb9ca6298c23ad6f5f9 -2023-05-24 14:00:25.854408 + : pb-IF4CUGcGNQ==|| kicked > new account -2023-05-24 14:00:27.561509 + : pb-IF4CUGcGNQ== | kicked > reason:Banned account -2023-05-24 14:00:43.617832 + : pb-IF4PUGRbFw== ip: ak~~kiajbvbl, Device id: f8a5c3649d10f1b31203b00b90bafffd263d41e5 -2023-05-24 14:04:06.445800 + : pb-IF4OU2QjMQ== ip: an~}ifajevayj, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-24 14:05:43.093979 + : pb-IF4wU1MPEg== started kick vote for pb-IF4PUGRbFw==. -2023-05-24 14:05:59.901062 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-24 14:06:11.940949 + : pb-IF4KUkcKNg== ip: dvvc{vhwvf, Device id: 7dfb2afcb0e94d240206691390bf89c43f2ef821 -2023-05-24 14:06:13.100938 + : Kick vote End -2023-05-24 14:06:17.944719 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaig}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 14:10:52.097865 + : pb-IF5cUGk5Aw== ip: b}k~~`gao`ajcw, Device id: 56f0d98f36315508532fff243743924b9d488045 -2023-05-24 14:13:28.750806 + : pb-IF5TUBdbMA== ip: azj~zo~~leake, Device id: e5b69290f8e21530c13667a697cb5180b10316da -2023-05-24 14:13:43.826805 + : pb-IF4mUBcSNQ== ip: azj~z`~~n~}jh, Device id: 04813a85716278e62069c80e53ffc0b79929387a -2023-05-24 14:13:47.843675 + : pb-IF40UBUjPw== ip: an~}j`aifyvc, Device id: 89648e159a6804148e08248496881e44ccea72ec -2023-05-24 14:13:47.843854 + : pb-IF4wU1MPEg== started kick vote for pb-IF5RU0kpEQ==. -2023-05-24 14:14:02.196605 + : pb-IF4tUGgoPw==|| kicked > new account -2023-05-24 14:14:17.850053 + : Kick vote End -2023-05-24 14:14:24.971093 + : pb-IF4mUBcSNQ== ip: azj~z`~~n~}jh, Device id: 04813a85716278e62069c80e53ffc0b79929387a -2023-05-24 14:19:19.989097 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaig}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 14:19:22.481980 + : pb-IF4wU1MPEg== started kick vote for pb-IF40UBUjPw==. -2023-05-24 14:19:26.012830 + : pb-IF5TVWI-EA== ip: azo~zi~~o~}ke, Device id: f23b45398b74d9a508826c438d8f7fb63912deb1 -2023-05-24 14:19:52.482340 + : Kick vote End -2023-05-24 14:20:09.181383 + : pb-IF42UxYBDQ== ip: an~~acajbva{i, Device id: c44525696d7d007597c9cccd3dfe3de2b988da62 -2023-05-24 14:21:08.392185 + : pb-IF40UncaLg== ip: dvvc}vawm~~`b, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-24 14:21:49.532101 + : pb-IF4PUGRbFw== ip: ak~~kiajbvbl, Device id: f8a5c3649d10f1b31203b00b90bafffd263d41e5 -2023-05-24 14:26:04.441850 + : pb-IF4AV1QqEQ== ip: an~}ica`gai`z, Device id: 2331b3822293d621f32ade855f2e13b5f48a2f9e -2023-05-24 14:26:09.472100 + : pb-IF5TVWI-EA== ip: azo~zi~~o~}ke, Device id: f23b45398b74d9a508826c438d8f7fb63912deb1 -2023-05-24 14:26:38.566237 + : pb-IF40UncaLg== ip: dvvc}vawm~~`b, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-24 14:27:05.087658 + : pb-IF4lUGcNHQ==|| kicked > new account -2023-05-24 14:28:24.081419 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaig}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 14:31:26.820379 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-24 14:32:39.083871 + : pb-IF4cVGMHLA== ip: ak~vo~vn~wk, Device id: b055fe844b57210943a3bba37a3a7be5abc140d9 -2023-05-24 14:32:48.060615 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4nUkteVA==. -2023-05-24 14:33:18.067037 + : Kick vote End -2023-05-24 14:33:23.252463 + : pb-IF4GU2I-VQ== ip: b}k~}k`a`caify, Device id: c06a804bbadaeebcb5f88c73921bef590d519790 -2023-05-24 14:34:22.486152 + : pb-IF4OPhMg ip: an~}heajbvvg}, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-24 14:35:59.845420 + : pb-IF4OPhMg ip: an~}heajbvvg}, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-24 14:36:10.891947 + : pb-IF4cVGMHLA== ip: an~~adajb}vbzj, Device id: b055fe844b57210943a3bba37a3a7be5abc140d9 -2023-05-24 14:36:20.165459 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4cVGMHLA==. -2023-05-24 14:36:36.002985 + : pb-IF4mUBcSNQ== ip: azj~z`~~n~}jh, Device id: 04813a85716278e62069c80e53ffc0b79929387a -2023-05-24 14:36:50.167057 + : Kick vote End -2023-05-24 14:38:55.569511 + : pb-IF4OPhMg ip: an~}heajbvvg}, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-24 14:40:17.021625 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4cVGMHLA==. -2023-05-24 14:40:24.887889 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-24 14:40:47.024346 + : Kick vote End -2023-05-24 14:42:00.401131 + : pb-IF4VU3laVA== ip: ak~~`dajcvvc~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-24 14:44:46.142836 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4cVGMHLA==. -2023-05-24 14:44:54.042671 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 14:44:59.061695 + : pb-IF4nU0UJJg== ip: ak~~ogaj`{vam, Device id: c7558f260c97b9103325228f0d4014d4bfe175ef -2023-05-24 14:45:16.150001 + : Kick vote End -2023-05-24 14:47:48.625284 + : pb-IF4cVGMHLA== ip: an~~adajb}vbzj, Device id: b055fe844b57210943a3bba37a3a7be5abc140d9 -2023-05-24 14:48:09.401555 + : pb-IF4yUBcZAw== started kick vote for pb-LV4FBEJZARZDVAtARUYDAl0WFw==. -2023-05-24 14:48:39.408594 + : Kick vote End -2023-05-24 14:49:34.007878 + : pb-IF4LU0wKIw== ip: azj~zo~}haaibv, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-24 14:51:20.407433 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB ip: b}k~~ohaj`vvaza, Device id: 78c06b4d948c8b6425fd95b584f9c5243e2bfa5b -2023-05-24 14:52:20.620451 + : pb-LV4FBEJZARZDVAtARUYDAl0WFw== ip: azj~z`~}va}a, Device id: 93445d06602f2e994c325788e09b460cc4ce96ad -2023-05-24 14:52:32.994400 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4cVGMHLA==. -2023-05-24 14:53:03.002550 + : Kick vote End -2023-05-24 14:55:08.220511 + : pb-IF5TUBdbMA== ip: azj~zo~~leake, Device id: e5b69290f8e21530c13667a697cb5180b10316da -2023-05-24 14:56:00.479052 + : pb-IF4XU0MJMg== ip: ak~~j`aabaif~, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-05-24 14:59:18.827529 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4cVGMHLA==. -2023-05-24 14:59:37.252029 + : pb-IF40UBUjPw== ip: an~}iaaiazvaxo, Device id: 89648e159a6804148e08248496881e44ccea72ec -2023-05-24 14:59:48.829570 + : Kick vote End -2023-05-24 15:00:26.431582 + : pb-IF5TUBdbMA== ip: azj~zo~~leake, Device id: e5b69290f8e21530c13667a697cb5180b10316da -2023-05-24 15:01:39.736425 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-24 15:01:40.743396 + : pb-IF4LU0wKIw== ip: azj~zo~}haaibv, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-24 15:02:18.870481 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 15:07:24.062151 + : pb-IF5TUBdbMA== ip: azj~zo~~leake, Device id: e5b69290f8e21530c13667a697cb5180b10316da -2023-05-24 15:08:39.362369 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaig}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 15:08:47.391889 + : pb-IF4zUkwZBw== ip: a}j~~nda``aj`|, Device id: bc1327009f9944b141f04912712143c738d96727 -2023-05-24 15:09:44.967417 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5cU1ZbXA==. -2023-05-24 15:09:56.654019 + : pb-IF40UncaLg== ip: dvvc}vawm~~`b, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-24 15:09:59.663143 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaig}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 15:10:14.968484 + : Kick vote End -2023-05-24 15:14:06.498859 + : pb-IF4WUBJcVQ== ip: an~}heajd|vf{, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-24 15:14:10.959944 + : pb-IF4cVWQiHw== | kicked for chat spam -2023-05-24 15:14:17.613851 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5UU0YxBA==. -2023-05-24 15:14:47.615291 + : Kick vote End -2023-05-24 15:17:46.250362 + : pb-IF4yVXVYIw== ip: bxvc{vevavk, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 15:18:44.440470 + : pb-IF4mUBkaEQ== ip: ak~zo~}meamf, Device id: edbef3c3243e32c8694e23549dde7d3edc536e26 -2023-05-24 15:19:27.811890 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5UU0YxBA==. -2023-05-24 15:19:57.817841 + : Kick vote End -2023-05-24 15:20:40.875193 + : pb-IF4gU0wxBw== ip: ak~}hhaoaakd, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-24 15:20:43.884606 + : pb-IF4LU0wKIw== ip: azj~zo~}haaibv, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-24 15:22:08.668894 + : pb-IF4WUBJcVQ== started kick vote for pb-IF4AVVBbKg==. -2023-05-24 15:22:38.674094 + : Kick vote End -2023-05-24 15:23:52.142134 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5UU0YxBA==. -2023-05-24 15:24:01.205273 + : Kick vote End -2023-05-24 15:24:01.598831 + : pb-IF4uU0YhHA== ip: azo~{m~}idalb, Device id: 9a64711cf529ee878368683500782e8040c2b40b -2023-05-24 15:25:41.158127 + : pb-IF4oV20xKA== ip: an~}ica``aiby, Device id: 83e88be403ee6b0bbf72ae8736eebfbad93bfe99 -2023-05-24 15:30:34.727138 + : pb-IF4DU0goAQ== started kick vote for pb-IF4WUBJcVQ==. -2023-05-24 15:31:04.728937 + : Kick vote End -2023-05-24 15:31:17.371082 + : pb-IF4MUBMHKA== ip: azj~z`~~`~}ld, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-24 15:32:30.639689 + : pb-IF40UncaLg== ip: dvvc}vaxk~|j, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-24 15:35:41.155584 + : pb-IF4LU0wKIw== started kick vote for pb-IF4MUBMHKA==. -2023-05-24 15:35:45.362788 + : pb-IF4cVGMHLA== ip: ak~vo~vn~wk, Device id: b055fe844b57210943a3bba37a3a7be5abc140d9 -2023-05-24 15:36:11.162556 + : Kick vote End -2023-05-24 15:37:52.089902 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4MUBMHKA==. -2023-05-24 15:38:22.091862 + : Kick vote End -2023-05-24 15:42:23.948811 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaig}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 15:43:56.309657 + : pb-IF5QU0JYBw== ip: dvvcxvf{va|o, Device id: 68d033487e9cf72b023e781684ecfe34f7c66877 -2023-05-24 15:43:56.320968 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4MUBMHKA==. -2023-05-24 15:44:26.324766 + : Kick vote End -2023-05-24 15:46:04.801789 + : pb-IF5TUBdbMA== ip: azj~zo~~leake, Device id: e5b69290f8e21530c13667a697cb5180b10316da -2023-05-24 15:48:19.302442 + : pb-IF4-Um4_Lw== ip: azj~zo~}kaalb, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-05-24 15:49:29.758095 + : pb-IF4pU1koPw== ip: azo~|a~}lfakb, Device id: 11a63e8e99753a2a78f9b112d9472549abd6cb45 -2023-05-24 15:51:06.076108 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-24 15:52:09.306198 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-24 15:52:33.409071 + : pb-IF4cUBYfCg== ip: ak~wa~}keaih|, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-24 15:53:28.597139 + : pb-IF4-UhYODw== ip: an~}hfajavvbzh, Device id: de7ffff729cc066f26638dc4f340389465eff7aa -2023-05-24 15:53:49.636841 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4-UhYODw==. -2023-05-24 15:54:19.637881 + : Kick vote End -2023-05-24 15:54:44.903489 + : pb-IF4-UxkjPQ== ip: ak~~ofaiaa`g, Device id: 9e3ce53e5c0a8427d0d8155212f465e8180c0ef1 -2023-05-24 15:56:44.297269 + : pb-IF4cUktZNg== started kick vote for pb-IF4-UhYODw==. -2023-05-24 15:57:14.298276 + : Kick vote End -2023-05-24 15:57:21.521051 + : pb-IF5SUnUSXQ== ip: an~}iaalfajdx, Device id: a91ff2ba164562957878ae57213311e64b43b123 -2023-05-24 15:58:05.719361 + : pb-IF5QU0JYBw== ip: dvvcxvf{va|o, Device id: 68d033487e9cf72b023e781684ecfe34f7c66877 -2023-05-24 15:58:41.317860 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4-UhYODw==. -2023-05-24 15:59:11.319667 + : Kick vote End -2023-05-24 16:02:22.807293 + : pb-IF4JVXcFVQ== ip: a}j~~``aihvvazl, Device id: db06b38e3ab8852c52708ebd66d918875982828f -2023-05-24 16:02:43.892670 + : pb-IF5cPGsk ip: dvvazvb|i~~oc, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-05-24 16:03:16.019516 + : pb-IF5TVWI-EA== ip: azo~zi~}k~{h, Device id: f23b45398b74d9a508826c438d8f7fb63912deb1 -2023-05-24 16:03:50.991274 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4-UxkjPQ==. -2023-05-24 16:04:20.996825 + : Kick vote End -2023-05-24 16:06:25.695645 + : pb-IF4tUGMBCg== ip: ak~}hhaoaakd, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-24 16:06:48.800342 + : pb-IF4pVWkZEQ== ip: azo~|l~~jfaog, Device id: 4dc4f7e737b494cb103044e46974704c12bdf08e -2023-05-24 16:07:26.294541 + : pb-IF4LU0wKIw== started kick vote for pb-IF4-UhYODw==. -2023-05-24 16:07:27.938226 + : pb-IF4mVGZaCw== ip: dvvc}vaz`~}i, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-05-24 16:07:56.302081 + : Kick vote End -2023-05-24 16:09:37.406534 + : pb-IF4LU0wKIw== ip: azj~zo~}haaibv, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-24 16:12:43.849761 + : pb-IF4-UxkjPQ== started kick vote for pb-IF4LU0wKIw==. -2023-05-24 16:13:13.850632 + : Kick vote End -2023-05-24 16:15:15.304004 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4LU0wKIw==. -2023-05-24 16:15:45.306241 + : Kick vote End -2023-05-24 16:16:08.847176 + : pb-IF4mVGZaCw== ip: dvvc}vaz`~}i, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-05-24 16:17:31.133931 + : pb-IF4VU3laVA== ip: ak~~`ca`baib, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-24 16:18:24.358725 + : pb-IF48UnQ9AA== ip: ak~xn~{m~vk, Device id: b26a82e3d4f9814b28ec1c30cb68589be64fdbad -2023-05-24 16:18:36.400510 + : pb-IF4yU1AkCw== ip: azo~|k~~agaic|, Device id: ccfb4c97f28111b3f4fb078a991e6426d78b4806 -2023-05-24 16:18:52.081124 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4LU0wKIw==. -2023-05-24 16:19:22.087834 + : Kick vote End -2023-05-24 16:21:04.892815 + : pb-IF4zUkwZBw== ip: a}j~~nda``aj`|, Device id: bc1327009f9944b141f04912712143c738d96727 -2023-05-24 16:21:56.085289 + : pb-JiNJARBbVUZJXlZGFkJRUV1DEUBaR1lK ip: an~}heajbyva{a, Device id: 080e7cbec914203a314737b489939c9ddb9720a8 -2023-05-24 16:21:59.097136 + : pb-IF4tUGMBCg== ip: ak~}hhaniakh, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-24 16:22:21.161626 + : pb-IF4zUkwZBw== ip: a}j~~nda``aj`|, Device id: bc1327009f9944b141f04912712143c738d96727 -2023-05-24 16:22:30.262451 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4LU0wKIw==. -2023-05-24 16:22:48.290538 + : pb-JiNJARBbVUZJXlZGFkJRUV1DEUBaR1lK ip: an~}heajbyva{a, Device id: 080e7cbec914203a314737b489939c9ddb9720a8 -2023-05-24 16:23:00.269818 + : Kick vote End -2023-05-24 16:23:12.363139 + : pb-IF41U2scIg== ip: an~}j`aabajby, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-24 16:24:25.420152 + : kicked Omiii15 -2023-05-24 16:25:53.805080 + : pb-IF48UnQ9AA== | kicked for chat spam -2023-05-24 16:27:29.393783 + : pb-IF4xU0lfMQ== started kick vote for pb-IF4VU3laVA==. -2023-05-24 16:27:59.396977 + : Kick vote End -2023-05-24 16:29:21.406900 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5UBU9a. -2023-05-24 16:29:51.410833 + : Kick vote End -2023-05-24 16:30:55.125200 + : pb-IF4tUGMBCg== ip: ak~za~xl~y`, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-24 16:32:32.776349 + : pb-IF4UUBMBHA== ip: azj~z`~|a~}jf, Device id: ac16a99230d2d83318f44aa07143d3901a9ced44 -2023-05-24 16:33:22.950769 + : pb-IF4VU3laVA== ip: ak~~`ca`baib, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-24 16:33:40.031509 + : pb-IF4zUkwZBw== ip: a}j~~nda``aj`|, Device id: bc1327009f9944b141f04912712143c738d96727 -2023-05-24 16:36:48.692182 + : pb-IF4yU1AkCw== ip: azo~|k~~agaic|, Device id: ccfb4c97f28111b3f4fb078a991e6426d78b4806 -2023-05-24 16:43:47.747088 + : pb-IF5XUhIpIw== ip: a|o~vo~wo~~nf, Device id: d2d813a63d61b8bdb698574b266246ba6f000571 -2023-05-24 16:43:55.785665 + : pb-IF5cVGNaIA== ip: azj~z`~~afaja, Device id: a0725e4f0585b0d6c0119b236a280fad1ae09448 -2023-05-24 16:45:23.134918 + : pb-IF5XUhIpIw== ip: a|o~vo~wo~~nf, Device id: d2d813a63d61b8bdb698574b266246ba6f000571 -2023-05-24 16:45:28.153371 + : pb-IF4DUxdYIA== ip: azo~{n~~mbajay, Device id: bafb3b294af4edfaad62ccc2369a77ef01c32d82 -2023-05-24 16:57:25.092272 + : pb-IF4WUGczMQ== started kick vote for pb-IF5XUhIpIw==. -2023-05-24 16:57:55.093183 + : Kick vote End -2023-05-24 16:58:24.126696 + : pb-IF4tUGMBCg== ip: ak~za~xl~y`, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-24 17:05:24.026303 + : pb-IF5WVXI8Bw== ip: azo~{n~~meaod, Device id: 3c05f091a37210f18e66041421fcd5e1e17d28b3 -2023-05-24 17:12:58.040475 + : pb-IF4cUBYfCg== ip: azo~{m~}laaad, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-24 17:14:01.292041 + : pb-IF4yU1MgKw== ip: dvvc{vc{vavm, Device id: 2472346119006b7a57f0f362a3c140edf63dba08 -2023-05-24 17:18:12.516712 + : pb-IF4nUxE4Nw== ip: a~o~va~}mdaih{, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-24 17:23:33.999018 + : pb-IF4TV3RbDA== ip: azo~|l~{h~|`, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-24 17:23:40.022346 + : pb-IF4VVG8gNQ== ip: azo~zi~~hda`h, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-24 17:24:52.493108 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4JUBEGVw==. -2023-05-24 17:25:09.689234 + : pb-IF4vUGhbVg==|| kicked > new account -2023-05-24 17:25:22.499494 + : Kick vote End -2023-05-24 17:27:06.854961 + : pb-IF4cUBYfCg== ip: azo~{m~}mbajaw, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-24 17:27:53.016937 + : pb-IF4dVHIeMQ== ip: a~o~}idaib|vdx, Device id: feae997d63a4290e3e9108af610dd143531de378 -2023-05-24 17:29:58.893794 + : pb-IF4JUBEGVw== started kick vote for pb-IF4VVG8gNQ==. -2023-05-24 17:30:28.897182 + : Kick vote End -2023-05-24 17:36:52.920345 + : Server started -2023-05-24 17:36:53.923768 + : pb-IF4VVG8gNQ== ip: azo~zi~~hda`h, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-24 17:47:43.394501 + : pb-IF49I04z ip: a~h~}jda`eaifz, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-24 17:48:19.502157 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-24 17:49:07.662471 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 17:55:51.085796 + : pb-IF4iVFBbDA== ip: dvvcxvbxva}k, Device id: c5ff228fc0955dbf46b079065a2fcb5955ad7f60 -2023-05-24 18:00:18.150968 + : pb-IF4jF1NY ip: azj~z`~vhz, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-24 18:00:52.262715 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-24 18:02:48.663776 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 18:05:48.293985 + : pb-IF4MU08lCQ== ip: azo~|l~~kaaic, Device id: 496f898c6f42806db0970bac3faaa29f196c9610 -2023-05-24 18:07:41.736327 + : pb-IF4VVG8gNQ== ip: azo~zi~~hda`h, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-24 18:07:51.770707 + : pb-IF4iUmsSDw== ip: a}j~~naam`akd, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-24 18:17:45.660420 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4HD00N. -2023-05-24 18:18:15.660340 + : Kick vote End -2023-05-24 18:20:57.646628 + : pb-IF41U2scIg== ip: ak~za~xl~y`, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-24 18:24:41.442750 + : pb-IF4nUGE7KA== ip: b}k~~`hajbwvb~a, Device id: 13a1d48885d496e0b6ecebef433118d164ffa331 -2023-05-24 18:26:44.895197 + : pb-IF49VFdbEQ== ip: a~o~va~}kbaig}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 18:27:04.963250 + : pb-IF4nUGE7KA== ip: b}k~~`hajbwvb~a, Device id: 13a1d48885d496e0b6ecebef433118d164ffa331 -2023-05-24 18:27:12.989734 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 18:30:47.798657 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-24 18:31:19.923388 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 18:31:53.099729 + : pb-IF4TV3RbDA== ip: azo~|l~zk~}je, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-24 18:39:14.470659 + : pb-IF4WUmQPDQ== started kick vote for pb-IF4BUhIdPw==. -2023-05-24 18:39:31.919243 + : pb-IF4BUhIdPw== kicked by kickvotes. -2023-05-24 18:43:06.644909 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-24 18:44:17.927423 + : pb-IF4cUBYfCg== ip: azo~{m~}mdajdy, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-24 18:48:07.771921 + : pb-IF48UhEiEg== ip: a~m~v`~wa~~`a, Device id: 33a8969f89cf728e65a2f6ff383ac3a2e126c4e2 -2023-05-24 18:49:25.053245 + : pb-IF5dU3UiAw== ip: azo~{a~~jhajbx, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-24 19:00:49.667381 + : pb-IF49VFdbEQ== ip: a~o~va~}kbaig}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 19:01:53.897205 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-24 19:02:53.113578 + : pb-IF40UBISLQ== ip: an~~adaii~vb{i, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-24 19:05:06.626116 + : pb-IF40UBISLQ== ip: an~~adaii~vb{i, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-24 19:07:49.259939 + : pb-IF4LU1RdUg== ip: azo~zh~yn~}jg, Device id: 013ebdc40cb805919e389d339fe790db1aeaa296 -2023-05-24 19:07:56.286050 + : pb-IF4cUBYfCg== ip: azo~{m~}mdajdy, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-24 19:12:41.381283 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 19:13:04.467154 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 19:19:01.053539 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-24 19:19:05.066272 + : pb-IF5QU3AaLg== ip: ak~}maamgaiiy, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-24 19:20:49.737024 + : pb-IF4LUGcgMA==|| kicked > new account -2023-05-24 19:25:34.431470 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 19:33:12.274742 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 19:33:16.292555 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 19:37:47.291504 + : pb-IF4IU28qPA== ip: azo~zi~~`fai`v, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-05-24 19:43:06.538659 + : pb-IF4QU2ZeAw== ip: dvvczvavj~}lc, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-24 19:50:33.199696 + : pb-IF4IU28qPA== ip: azo~zi~~`fai`v, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-05-24 19:51:40.429315 + : pb-IF40U3M9Iw== ip: ak~~`dajcwvazh, Device id: 3883806dd6267e8841d2eca75af93f435fb2d31f -2023-05-24 19:54:31.633553 + : pb-IF4WUGhSVg==|| kicked > new account -2023-05-24 19:55:17.519056 + : pb-IF4qUGcdEw==|| kicked > new account -2023-05-24 19:57:59.815143 + : pb-IF4LKUxd ip: an~~agaoba`e, Device id: 04c69d3ff3d95a365aa566c5bace3383db470726 -2023-05-24 19:59:08.064759 + : pb-IF4OU2QjMQ== ip: an~}ifajdyva}o, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-24 20:00:05.257818 + : pb-IF4OU2QjMQ== ip: an~}ifajdyva}o, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-24 20:01:30.559847 + : pb-IF4OU2QjMQ== ip: an~}ifajdyva}o, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-24 20:03:23.963137 + : pb-IF4xUGQfNg== ip: an~}ifajdyva}o, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-05-24 20:04:46.318217 + : pb-IF4IU28qPA== ip: azo~zi~~`fai`v, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-05-24 20:05:12.478938 + : pb-IF49VFdbEQ== ip: a~o~va~}kbaig}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 20:09:14.371226 + : pb-IF41U1hbMQ== ip: dvvc}vb|`~|`, Device id: 6bf82f1bc3f6e36ff156ce7af41d7ea8797d4fc1 -2023-05-24 20:13:41.393295 + : pb-IF5TUGQTIg== ip: a~o~}ifaie~vby, Device id: 53b2b91246a34e5a67a864cc42c240ddf31aa215 -2023-05-24 20:16:27.035289 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 20:18:54.551678 + : pb-IF4FU1daUA== ip: dvvczvayk~}m, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-24 20:22:46.502831 + : pb-IF5WUm0uUQ== ip: azo~{i~}mbaidz, Device id: d5eea87fb0585dd66d65645f49e153819ce381dd -2023-05-24 20:23:24.661340 + : pb-IF4vV0g8Mw== ip: dvvc{vb~o~vo, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-05-24 20:23:47.759923 + : pb-IF4qU0wPPQ== ip: bxvexvgaihv, Device id: 1bd13fe5a96dc516bd991d123fe5d00506fde1be -2023-05-24 20:23:58.797290 + : pb-IF4WUBJcVQ== ip: an~}heajd|vf{, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-24 20:25:33.166120 + : pb-IF5WUm0uUQ== ip: azo~{i~}mbaidz, Device id: d5eea87fb0585dd66d65645f49e153819ce381dd -2023-05-24 20:25:35.175212 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-24 20:33:27.863935 + : pb-IF41U1hbMQ== ip: dvvc}vb|`~|`, Device id: 6bf82f1bc3f6e36ff156ce7af41d7ea8797d4fc1 -2023-05-24 20:44:57.491579 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-24 20:51:08.327204 + : pb-IF4wVXo6Jg== ip: azo~{a~~agaif, Device id: d458b2967c4d8c737b53da13a89cb62c9081d726 -2023-05-24 20:53:08.108532 + : pb-IF4AUGcbFw==|| kicked > new account -2023-05-24 20:54:39.075389 + : pb-IF4OUBYZUQ== ip: aakhajayvd{, Device id: 114e694a16c29004ca32e5936bdcd114be3a2967 -2023-05-24 20:55:07.181026 + : pb-IF49VFdbEQ== ip: a~o~va~}jeaig}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 21:04:22.514425 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-24 21:05:46.816951 + : pb-IF4WUBJcVQ== ip: azh~~hgajd~va|k, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-24 21:10:23.167926 + : pb-IF4iUGc_Hw==|| kicked > new account -2023-05-24 21:17:13.413873 + : pb-IF4wU1MPEg== started kick vote for pb-IF4jVG84Kg==. -2023-05-24 21:17:43.415716 + : Kick vote End -2023-05-24 21:24:29.226295 + : pb-IF4sAGcj ip: a}j~~naai`alg, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-24 21:25:41.791924 + : pb-IF4AUGcZLA==|| kicked > new account -2023-05-24 21:26:41.681297 + : pb-IF4CU1kOLg== ip: c~va|h~vm~wk, Device id: 0627cfa6487e8d103c962d1bf996f5553139ca26 -2023-05-24 21:30:22.468714 + : pb-IF4TV3RbDA== ip: azo~|l~~laajh, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-24 21:32:17.159417 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-24 21:33:04.345829 + : pb-IF4uUk4vMg== ip: awj~yl~vk~~`d, Device id: 6635c2af1bf357a9e95bbf3d6082a39d14dc3cdb -2023-05-24 21:37:57.828380 + : pb-IF41U2scIg== ip: an~}j`aabaig{, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-24 21:38:07.868832 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-24 21:38:23.165924 + : pb-IF48UGNfIw== started kick vote for pb-IF4CU1kOLg==. -2023-05-24 21:38:53.170463 + : Kick vote End -2023-05-24 21:42:40.874876 + : pb-IF41U2scIg== ip: ak~za~xl~y`, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-24 21:46:48.916618 + : pb-IF48UGNfIw== started kick vote for pb-IF4CU1kOLg==. -2023-05-24 21:47:18.916316 + : Kick vote End -2023-05-24 21:51:26.058114 + : pb-IF4pU1MJIw== ip: azo~{n~~ndaifx, Device id: 4ffc434bb44d58cac88c5df4ba525d4c45aeabe2 -2023-05-24 21:51:30.855381 + : pb-IF48UGNfIw== started kick vote for pb-IF4eUGcaMw==. -2023-05-24 21:52:00.862015 + : Kick vote End -2023-05-24 21:54:21.876443 + : pb-IF4WUBJcVQ== ip: azh~~hgajd~va|k, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-24 21:55:18.133797 + : pb-IF4yU2cFEQ== ip: b}k~}kca`fajb~, Device id: f9e226e805ce8b1a887fa1d04e3c76edd0d091a5 -2023-05-24 21:55:42.233128 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-24 21:59:04.963221 + : pb-IF49VFdbEQ== ip: a~o~va~}keaiaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 21:59:45.083305 + : pb-IF4QU2ZeAw== ip: dvvczvavk~{o, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-24 22:00:38.431428 + : pb-IF4KU1M7JA== ip: an~~aealdaiev, Device id: 34d2aab6e9916f5078130b7d90690f3224e137ee -2023-05-24 22:03:01.027239 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh}vazl, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-24 22:04:22.425747 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh}vazl, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-24 22:05:14.612608 + : pb-IF49VFdbEQ== ip: a~o~va~}keaiaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 22:05:14.612895 + : pb-IF41U2scIg== ip: ak~za~xl~y`, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-24 22:05:47.854770 + : pb-IF41U2scIg== ip: ak~za~xl~y`, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-24 22:11:44.090856 + : pb-IF41U2scIg== ip: ak~za~xl~~hf, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-24 22:12:09.560404 + : pb-IF4RUGghPA==|| kicked > new account -2023-05-24 22:13:09.535809 + : pb-IF40PkMh ip: d}va`~~afama, Device id: a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e -2023-05-24 22:14:04.717837 + : pb-IF4MUBMHKA== ip: azj~z`~~o~|a, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-24 22:15:19.972109 + : pb-IF49VFQlPA== ip: azo~{m~~jdajcx, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-05-24 22:15:23.980508 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh}vazl, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-24 22:18:40.941595 + : pb-IF4KU1M7JA== ip: an~~aealdaiev, Device id: 34d2aab6e9916f5078130b7d90690f3224e137ee -2023-05-24 22:18:44.959890 + : pb-IF4wBUUK ip: azj~z`~|a~, Device id: 926098526aa25628ccdb1426d99fc162ae24f8db -2023-05-24 22:19:47.186241 + : pb-IF49VFdbEQ== ip: a~o~va~}keaiaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 22:20:54.446226 + : pb-IF4CU1kOLg== ip: c~va|h~vm~wk, Device id: 0627cfa6487e8d103c962d1bf996f5553139ca26 -2023-05-24 22:22:23.000728 + : pb-IF4mUBkaEQ== ip: ak~zo~}meamf, Device id: edbef3c3243e32c8694e23549dde7d3edc536e26 -2023-05-24 22:23:29.244495 + : pb-IF4CU1kOLg== ip: c~va|h~vm~wk, Device id: 0627cfa6487e8d103c962d1bf996f5553139ca26 -2023-05-24 22:23:44.303593 + : pb-IF4VU3EjBg== ip: azj~z`~|a~~je, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-05-24 22:24:36.517389 + : pb-IF4VU3laVA== ip: ak~~`dajcwvhv, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-24 22:28:10.417585 + : pb-IF4CU1kOLg== ip: c~va|h~vm~wk, Device id: 0627cfa6487e8d103c962d1bf996f5553139ca26 -2023-05-24 22:38:12.897103 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-24 22:45:36.546908 + : pb-IF4CU1kOLg== ip: c~va|h~vm~wk, Device id: 0627cfa6487e8d103c962d1bf996f5553139ca26 -2023-05-24 23:13:13.447207 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-24 23:27:00.563902 + : pb-IF5QU3AaLg== ip: azo~|j~}a~~ai, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-24 23:27:46.893880 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-24 23:32:57.991956 + : pb-IF4CV3JfVA== ip: ak~yo~~mgaje{, Device id: 2a345e6411b510fdcaeffe590a280a32c1bed981 -2023-05-24 23:34:09.289524 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-24 23:40:51.734472 + : pb-IF41U2scIg== ip: ak~}hhaoaaiez, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-24 23:42:43.863086 + : Server started -2023-05-24 23:45:25.457624 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`ame, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-24 23:45:49.526284 + : pb-IF49VFdbEQ== ip: a~o~va~}keaiaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 23:46:39.719253 + : pb-IF49VFdbEQ== ip: a~o~va~}keaiaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 23:54:23.402344 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-24 23:54:57.526189 + : pb-IF49VFdbEQ== ip: a~o~va~}keaiaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-24 23:59:39.508166 + : pb-IF5SUBYBUw== ip: aakhajbvayo, Device id: 66b9a1a7ee180c15d382f5f993c837250c7a782b -2023-05-24 23:59:45.467934 + : pb-IF4nUnBdNg== started kick vote for pb-IF5SUBYBUw==. -2023-05-25 00:00:15.472538 + : Kick vote End -2023-05-25 00:00:25.659749 + : pb-IF41U2scIg== ip: an~}j`aabaja}, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-25 00:05:19.874730 + : pb-IF4nUnBdNg== started kick vote for pb-IF4PU2Y6VQ==. -2023-05-25 00:05:49.876517 + : Kick vote End -2023-05-25 00:08:34.447371 + : pb-IF4FU1daUA== ip: dvvczvaya~}l`, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-25 00:17:24.376463 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-25 00:19:19.814746 + : pb-IF5TVWI-EA== ip: azo~zi~~k~}ii, Device id: f23b45398b74d9a508826c438d8f7fb63912deb1 -2023-05-25 00:19:26.901617 + : pb-IF4nUnBdNg== started kick vote for pb-IF5TVWI-EA==. -2023-05-25 00:19:56.905252 + : Kick vote End -2023-05-25 00:21:00.440937 + : pb-IF5VVUtTFg== started kick vote for pb-IF4nUxE4Nw==. -2023-05-25 00:21:30.443059 + : Kick vote End -2023-05-25 00:23:22.740759 + : pb-IF49VFdbEQ== ip: a~o~va~}keaiaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-25 00:30:22.284002 + : pb-IF49VFdbEQ== ip: a~o~va~}keaiaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-25 00:43:59.308475 + : pb-IF49VFQlPA== ip: azo~{m~~jdajcx, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-05-25 00:44:50.466665 + : pb-IF49VFdbEQ== ip: a~o~va~}keaiaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-25 00:55:59.112083 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 01:16:31.695639 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 01:24:54.491882 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-25 01:37:11.296200 + : pb-IF49VFdbEQ== ip: a~o~va~}jiaiaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-25 01:37:36.421841 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 01:58:09.294790 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 02:02:47.339194 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~oe, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-25 02:26:48.691908 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 04:30:37.095578 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 05:32:09.315232 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 05:52:16.731947 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 06:13:27.552739 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 06:37:42.182613 + : pb-IF4XUBEqVA== ip: azl~~`bajbyvh, Device id: 17b1814c2389c27101269c6ed07a1ecc84def2d9 -2023-05-25 06:42:54.548525 + : Server started -2023-05-25 06:54:40.240999 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 07:15:15.939592 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 07:55:17.216437 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 08:06:32.643049 + : pb-IF4qU1IlNQ== ip: an~}j`a`cama, Device id: 3ec792a0828eb90350bb7827ff07b7c6391a3169 -2023-05-25 08:18:36.310491 + : pb-IF4xUGQfNg== ip: an~}ifajdvb~`, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-05-25 08:41:54.467014 + : pb-IF4sUGMeVA== ip: dvvcyvivvaj, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-05-25 08:46:12.389941 + : pb-IF4xU1AkMw== ip: azo~|k~}`~}kf, Device id: 2d3826d63f927c4b9af22b8dff1ae0d986d8603d -2023-05-25 08:56:16.769233 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 09:08:57.754708 + : pb-IF4cUBYfCg== ip: azo~{m~}khaifw, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-25 09:21:05.791011 + : pb-IF4cUBYfCg== ip: azo~{m~}khaifw, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-25 09:24:15.419928 + : pb-IF40UBISLQ== ip: bxvf}vbzm~~`c, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-25 09:26:08.938023 + : pb-IF4uVWMvIg== ip: b}k~~`faadaihy, Device id: acbfa76801d9195bd7d79d8c355e17c87ab299df -2023-05-25 09:28:27.810293 + : pb-IF4GUGgmEg==|| kicked > new account -2023-05-25 09:28:30.492466 + : pb-IF4TUGEIDQ== ip: bxvf}vb{o~}l`, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-25 09:41:02.578638 + : pb-IF4qUGIYUA== started kick vote for pb-IF5SV3I4Uw==. -2023-05-25 09:41:09.355781 + : pb-IF42UBEfJA== ip: ak~wa~}keaicw, Device id: 72ba1ebc93e2c61046ffa5f273503a731e146f64 -2023-05-25 09:41:16.376222 + : pb-IF4WUBJcVQ== ip: an~}heajd|vgy, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-25 09:41:32.582425 + : Kick vote End -2023-05-25 09:43:59.888293 + : pb-IF40UBISLQ== started kick vote for pb-IF5SUhZTPQ==. -2023-05-25 09:44:29.893024 + : Kick vote End -2023-05-25 09:46:36.741050 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-25 09:58:50.708818 + : pb-IF4IC05S ip: ak~~neajiaih, Device id: fd2a9cc24372c0d4d3cdc18ac75cec1ecc20f88b -2023-05-25 10:04:13.948346 + : pb-IF40UBISLQ== ip: an~}hgaje~va|o, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-25 10:05:19.183553 + : pb-IF5TUGQTIg== ip: a~o~}ifaie~vby, Device id: 53b2b91246a34e5a67a864cc42c240ddf31aa215 -2023-05-25 10:06:46.484746 + : pb-IF5dU3UiAw== ip: azo~{a~~leaaf, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-25 10:07:57.839957 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-25 10:15:21.926973 + : pb-IF4XUhgBIw== ip: an~}igaj~|i, Device id: 745c669bc7a55a0242143c2770b3604b3f2b1f15 -2023-05-25 10:15:26.933158 + : pb-IF49VFdbEQ== ip: a~o~va~}khaif, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-25 10:20:30.188252 + : pb-IF40VUcTCw== ip: azo~{l~~nhaiby, Device id: 77ed0009e01223cb16a06efbaf78e88e54c23718 -2023-05-25 10:22:42.814359 + : pb-IF49VFdbEQ== ip: a~o~va~}khaif, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-25 10:24:07.109309 + : pb-IF5UU3AYDQ== ip: azo~{l~~`gaiaw, Device id: d5834d554225aa9d2ff06b2b295d91d9777d32d5 -2023-05-25 10:25:10.342227 + : pb-IF4IUGExHw== ip: ak~{`~ya~~jd, Device id: f7691dea6c35e9b72eb55bb69fa024eb1abf57e6 -2023-05-25 10:25:47.453401 + : pb-IF4dUBgcUQ== ip: ak~}kbajcwvd~, Device id: 915dc305673a77b9b5fbf3635d98cd72aff36459 -2023-05-25 10:30:41.717504 + : pb-IF4mVGZaCw== ip: dvvc|vb|k~}hf, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-05-25 10:31:16.852014 + : pb-IF4iVFBbDA== ip: dvvcxvbxva}k, Device id: c5ff228fc0955dbf46b079065a2fcb5955ad7f60 -2023-05-25 10:33:03.298821 + : pb-IF4xUGQfNg== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-05-25 10:33:41.433878 + : pb-IF5TUGQTIg== ip: a~o~}ifaie~vby, Device id: 53b2b91246a34e5a67a864cc42c240ddf31aa215 -2023-05-25 10:36:05.449627 + : pb-IF4mVGZaCw== started kick vote for pb-IF4IUGExHw==. -2023-05-25 10:36:35.302336 + : pb-IF41U2scIg== ip: ak~}hhaoaaiez, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-25 10:36:35.455947 + : Kick vote End -2023-05-25 10:39:37.955186 + : pb-IF4OU2QjMQ== ip: an~~aeaicang, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-25 10:41:07.277952 + : pb-IF4VVG8gNQ== ip: azo~zi~~jaaaa, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-25 10:41:16.312344 + : pb-IF4OU2QjMQ== ip: an~~aeaicang, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-25 10:43:44.790653 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4IUGExHw==. -2023-05-25 10:43:53.872752 + : pb-IF5VUGcFEA== ip: azj~z`~~a~}h, Device id: a283bb95472ff68dcb88db74236f43014d0fce0a -2023-05-25 10:44:14.796230 + : Kick vote End -2023-05-25 10:44:53.087759 + : pb-IF5VUGcFEA== ip: azj~z`~~a~}h, Device id: a283bb95472ff68dcb88db74236f43014d0fce0a -2023-05-25 10:49:09.014426 + : pb-IF5XVW8aUQ== ip: a~o~}jbaia}vh|, Device id: 3478aa6ac466d8233b59a384474b13ef31b97582 -2023-05-25 10:49:39.133188 + : pb-IF4VVG8gNQ== ip: azo~zi~~jaaaa, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-25 10:52:40.967527 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-25 10:54:14.316473 + : pb-IF4-UxkjPQ== ip: d|vb{j~~ifaig{, Device id: 9e3ce53e5c0a8427d0d8155212f465e8180c0ef1 -2023-05-25 10:58:26.252549 + : pb-IF4VVG8gNQ== ip: azo~zi~~jaaaa, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-25 11:03:31.049403 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-25 11:11:37.818984 + : pb-IF4OVUw_MQ== ip: ak~~ncaaeaje|, Device id: 826ef20dbeb9e83a7e4aef9555b6bcc97c5cdec7 -2023-05-25 11:12:06.924731 + : pb-IF4OVUw_MQ== ip: ak~~ncaaeaje|, Device id: 826ef20dbeb9e83a7e4aef9555b6bcc97c5cdec7 -2023-05-25 11:13:57.331955 + : pb-IF4VVG8gNQ== ip: azo~zi~~ieand, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-25 11:14:17.410265 + : pb-IF48UhEiEg== ip: a~m~v`~xh~}n, Device id: 33a8969f89cf728e65a2f6ff383ac3a2e126c4e2 -2023-05-25 11:19:38.707036 + : pb-IF4VVG8gNQ== ip: azo~zi~~ieand, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-25 11:21:06.017815 + : pb-IF4wVVk8Jg== ip: ak~~`dajcvvb|j, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-05-25 11:21:30.086223 + : pb-IF42UBEfJA== ip: ak~wa~}keaicw, Device id: 72ba1ebc93e2c61046ffa5f273503a731e146f64 -2023-05-25 11:21:44.347781 + : pb-IF4VVG8gNQ== started kick vote for pb-IF42UBEfJA==. -2023-05-25 11:22:14.354652 + : Kick vote End -2023-05-25 11:23:26.622108 + : pb-IF4nUkteVA== ip: a}j~zh~}hbai`|, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-05-25 11:23:36.842966 + : pb-IF42UBEfJA== started kick vote for pb-IF4VVG8gNQ==. -2023-05-25 11:23:41.071190 + : Kick vote End -2023-05-25 11:23:59.755184 + : pb-IF4VVG8gNQ== ip: azo~zi~~ieand, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-25 11:33:56.139707 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-25 11:38:11.106830 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-25 11:39:50.463139 + : pb-IF5QU3AaLg== ip: ak~}m`aidzvazk, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-25 11:45:29.917953 + : pb-IF4yU2cFEQ== ip: b}k~}kca`daia}, Device id: f9e226e805ce8b1a887fa1d04e3c76edd0d091a5 -2023-05-25 11:48:01.491782 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 11:49:59.962766 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-25 11:54:01.952330 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-25 12:08:12.910697 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 12:12:20.827839 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-25 12:22:28.581758 + : pb-IF4LPkVb ip: izvh}viwvb~, Device id: 61291b1e38e06b6fb1b58a82ffe643c996f9837a -2023-05-25 12:32:41.879540 + : pb-IF5VU1JZMw== ip: an~}ica`caoc, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-05-25 12:33:11.981584 + : pb-IF49VFdbEQ== ip: a~o~va~}kcaa`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-25 12:37:08.971580 + : pb-JiNJARBfXEFEW1xIEkBSU1BEF0BbTlRC ip: azj~z`~|l~yk, Device id: 9357093756c61e0eab90deeefc8a70790c9c215b -2023-05-25 12:45:53.903101 + : pb-IF4MUBMHKA== ip: azj~z`~~n~yn, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-25 12:47:58.333144 + : pb-IF5VU1JZMw== ip: an~}ica`caoc, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-05-25 12:49:58.753375 + : pb-IF49VFdbEQ== ip: a~o~va~}kcaa`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-25 12:50:53.976179 + : pb-IF4uUk4vMg== ip: an~}hea`fai`w, Device id: 6635c2af1bf357a9e95bbf3d6082a39d14dc3cdb -2023-05-25 12:50:58.993447 + : pb-IF4-Uk4mEA== ip: dvvcxvg|viv, Device id: b1920ab07bd50671fd0897a7c4ccab774e5adc53 -2023-05-25 12:51:08.030710 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-25 12:55:08.256261 + : pb-IF4-Uk4mEA== started kick vote for pb-IF4nUxE4Nw==. -2023-05-25 12:55:38.258659 + : Kick vote End -2023-05-25 12:56:35.428428 + : pb-IF4jUlUhMQ== ip: azj~zo~xl~zo, Device id: bcdc88c3811bcd2453c01a373cb7cc6b8ce4a04b -2023-05-25 12:58:14.868267 + : pb-IF4sUGYmEw== ip: an~}jba`aaifw, Device id: a589c3b21a31e48533793667cb9d35a52cb9a807 -2023-05-25 13:00:33.787051 + : Server started -2023-05-25 13:00:34.795222 + : pb-IF4VU3laVA== ip: ak~~`baifxvfw, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-25 13:09:34.791545 + : pb-IF4gVFMTHA== | kicked for chat spam -2023-05-25 13:09:54.874064 + : pb-IF5VU1JZMw== ip: an~}ica`eao, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-05-25 13:11:06.130051 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-25 13:14:32.949132 + : pb-IF4zUBUlNg== ip: b}k~~a`ajd~vby, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-25 13:16:22.321314 + : pb-IF49VFdbEQ== ip: a~o~va~}kcaa`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-25 13:18:08.740606 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-25 13:20:22.242562 + : pb-IF41U1hbMQ== ip: dvvc}vb}o~~ma, Device id: 6bf82f1bc3f6e36ff156ce7af41d7ea8797d4fc1 -2023-05-25 13:23:40.958516 + : pb-IF49VFQlPA== ip: azo~zh~zj~}je, Device id: d043bc3eac9405dd49f306e5fe61846765dba91e -2023-05-25 13:25:26.305373 + : pb-IF41U1hbMQ== ip: dvvc}vb}o~~ma, Device id: 6bf82f1bc3f6e36ff156ce7af41d7ea8797d4fc1 -2023-05-25 13:27:50.814162 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvayl, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-25 13:29:39.178539 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-25 13:30:50.418450 + : pb-IF43UGdSLw== ip: azj~zo~~o`a`i, Device id: b2fe07f783aca07bdf7fad46d7a8cffbfa87072d -2023-05-25 13:32:20.743280 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvayl, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-25 13:34:27.228756 + : pb-IF4zU00GCg== ip: azj~zo~w`~zo, Device id: 3237074d7292904a27c82bb9ca6298c23ad6f5f9 -2023-05-25 13:45:13.584518 + : pb-IF4jUlUhMQ== ip: azj~zo~xl~zo, Device id: bcdc88c3811bcd2453c01a373cb7cc6b8ce4a04b -2023-05-25 13:46:14.238456 + : pb-IF4jUlUhMQ== started kick vote for pb-IF4yVXVYIw==. -2023-05-25 13:46:44.242278 + : Kick vote End -2023-05-25 13:46:57.936283 + : pb-IF4mUGRaLQ== | kicked > reason:Banned account -2023-05-25 13:53:28.282519 + : pb-IF41U1hbMQ== ip: dvvc}vbzj~}me, Device id: 6bf82f1bc3f6e36ff156ce7af41d7ea8797d4fc1 -2023-05-25 13:55:22.638003 + : pb-IF4QU2ZeAw== ip: dvvczvavm~v, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-25 14:02:06.535785 + : pb-IF5VUGotDw==|| kicked > new account -2023-05-25 14:07:15.438624 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-25 14:10:46.262284 + : pb-IF4OPhMg ip: an~}heajbvvg}, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-25 14:12:52.684187 + : pb-IF4OPhMg ip: an~~adamcaa`, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-25 14:28:38.305847 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 14:32:43.283559 + : pb-IF4MUBMHKA== ip: azj~z`~~n~~hb, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-25 14:36:34.171905 + : pb-IF4nUnBdNg== ip: a}j~~nbaidzvbm, Device id: 12c5ef4f3635e09675c5bf9d080e806eebef8bea -2023-05-25 14:36:56.258153 + : pb-IF5VVUtTFg== ip: a}j~~nbaidzvbm, Device id: f7d00c1e695a26c51c1e3ea08d6fb6077df63180 -2023-05-25 14:37:33.381201 + : pb-IF5TUBdbMA== ip: azo~|k~}jcana, Device id: e5b69290f8e21530c13667a697cb5180b10316da -2023-05-25 14:38:04.490731 + : pb-IF41U2scIg== ip: ak~}hhaoaaiez, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-25 14:38:13.521533 + : pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB ip: azj~z`~}o~xm, Device id: e30952bda624a1707c15cfb174e914d0a114370f -2023-05-25 14:38:51.667894 + : pb-IF5VVUtTFg== ip: azo~|o~}jcajh, Device id: f7d00c1e695a26c51c1e3ea08d6fb6077df63180 -2023-05-25 14:40:43.092111 + : pb-IF5cPGsk ip: azj~zo~wn~~hc, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-05-25 14:41:27.259107 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-25 14:41:57.385427 + : pb-IF4nUnBdNg== ip: a}j~~nbaidzvbm, Device id: 12c5ef4f3635e09675c5bf9d080e806eebef8bea -2023-05-25 14:42:13.429907 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-25 14:43:18.672372 + : pb-IF4AV1QqEQ== ip: an~}ica``ajc~, Device id: 2331b3822293d621f32ade855f2e13b5f48a2f9e -2023-05-25 14:44:06.193208 + : pb-IF4nUnBdNg== started kick vote for pb-IF4AV1QqEQ==. -2023-05-25 14:44:36.195118 + : Kick vote End -2023-05-25 14:45:49.217978 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-25 14:46:10.273962 + : pb-IF4MUBMHKA== ip: azj~z`~~n~~ke, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-25 14:47:11.625734 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4iU2wqCg==. -2023-05-25 14:47:41.628925 + : Kick vote End -2023-05-25 14:48:41.695366 + : pb-IF4sU28eAg== started kick vote for pb-IF4AV1QqEQ==. -2023-05-25 14:49:11.702790 + : Kick vote End -2023-05-25 14:50:32.208692 + : pb-IF4mUBkaEQ== ip: ak~zo~}meamf, Device id: edbef3c3243e32c8694e23549dde7d3edc536e26 -2023-05-25 14:51:57.878621 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4sU28eAg==. -2023-05-25 14:52:27.881180 + : Kick vote End -2023-05-25 14:52:58.730144 + : pb-IF5dVHA4BA== ip: azo~{a~~naaia|, Device id: d083f2e3f6222314e07d576ce429d172843d4404 -2023-05-25 14:55:28.286125 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4MUBMHKA==. -2023-05-25 14:55:58.292602 + : Kick vote End -2023-05-25 14:56:10.438635 + : pb-IF49Umo-Fg== ip: dvvd|viyvazl, Device id: 2a3954f094899e7a2a36a8960dcc991cae03e487 -2023-05-25 14:56:38.641570 + : pb-IF5dU3UiAw== ip: azo~{a~vl~wn, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-25 14:57:45.444741 + : pb-IF5VVUtTFg== started kick vote for pb-IF4AV1QqEQ==. -2023-05-25 14:58:15.452799 + : Kick vote End -2023-05-25 14:59:15.663086 + : pb-IF4nUnBdNg== started kick vote for pb-IF4AV1QqEQ==. -2023-05-25 14:59:45.668137 + : Kick vote End -2023-05-25 15:00:05.366417 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-25 15:03:40.734689 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4MUBMHKA==. -2023-05-25 15:04:10.740588 + : Kick vote End -2023-05-25 15:08:01.428867 + : pb-IF4OPhMg ip: an~~adamcaa`, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-25 15:10:36.644034 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4OPhMg. -2023-05-25 15:10:47.311482 + : Kick vote End -2023-05-25 15:10:53.033852 + : pb-IF4OPhMg ip: an~~adamcaa`, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-25 15:11:01.062839 + : pb-IF5cPGsk ip: azj~zo~wn~~hc, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-05-25 15:12:05.317415 + : pb-IF4cUBYfCg== ip: azo~{m~}jgajcx, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-25 15:12:30.137387 + : pb-IF4nUnBdNg== started kick vote for pb-IF4AV1QqEQ==. -2023-05-25 15:12:46.598388 + : pb-IF4QUBQoBw== ip: an~xn~vh~~ne, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-25 15:13:00.142355 + : Kick vote End -2023-05-25 15:14:21.265726 + : pb-IF5VVUtTFg== started kick vote for pb-IF4AV1QqEQ==. -2023-05-25 15:14:51.273227 + : Kick vote End -2023-05-25 15:16:00.501534 + : pb-IF4nUnBdNg== started kick vote for pb-IF4AV1QqEQ==. -2023-05-25 15:16:30.506042 + : Kick vote End -2023-05-25 15:17:32.656277 + : pb-IF4OPhMg ip: an~~adamcaa`, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-25 15:17:54.720769 + : pb-IF4BUGdeHw== ip: a|n~~`eajbvbz, Device id: 770760b9a805e55712864729017952ad9e0adfd8 -2023-05-25 15:18:10.246885 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4nUnBdNg==. -2023-05-25 15:18:31.859633 + : pb-IF4DUxdYIA== ip: a|o~vo~vi~, Device id: bafb3b294af4edfaad62ccc2369a77ef01c32d82 -2023-05-25 15:18:40.253437 + : Kick vote End -2023-05-25 15:19:10.043949 + : pb-IF4VVG8gNQ== ip: azo~zi~~haaiex, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-25 15:19:41.148219 + : pb-IF5dU3UiAw== ip: azo~{a~vl~wn, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-25 15:21:40.320464 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4OPhMg. -2023-05-25 15:22:10.328327 + : Kick vote End -2023-05-25 15:23:21.935645 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-25 15:25:25.370952 + : pb-IF4QUBQoBw== ip: an~xn~vh~~ne, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-25 15:27:25.589643 + : pb-IF4OPhMg started kick vote for pb-IF4AV1QqEQ==. -2023-05-25 15:27:55.592121 + : Kick vote End -2023-05-25 15:29:35.870522 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4AV1QqEQ==. -2023-05-25 15:30:05.877776 + : Kick vote End -2023-05-25 15:33:31.118709 + : pb-IF4VVG8gNQ== started kick vote for pb-IF5VVUtTFg==. -2023-05-25 15:34:01.121085 + : Kick vote End -2023-05-25 15:34:02.232427 + : pb-IF49VFdbEQ== ip: a~o~va~}kcaa`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-25 15:34:09.366889 + : pb-IF49VFdbEQ== ip: a~o~va~}kcaa`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-25 15:36:05.847689 + : pb-IF4XU0gNJg== ip: a}j~~naamcama, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-25 15:36:39.456086 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4cUBYfCg==. -2023-05-25 15:37:09.458521 + : Kick vote End -2023-05-25 15:40:30.434200 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4OPhMg. -2023-05-25 15:41:00.437416 + : Kick vote End -2023-05-25 15:41:53.168210 + : pb-IF5VU1JZMw== ip: an~}ica`eao, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-05-25 15:42:22.255975 + : pb-IF5dU3UiAw== ip: azo~{a~vl~wn, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-25 15:44:07.692966 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4OPhMg. -2023-05-25 15:44:32.699455 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-25 15:44:37.699233 + : Kick vote End -2023-05-25 15:46:33.312006 + : pb-IF4CU1kOLg== ip: c~va|h~vm~wk, Device id: 0627cfa6487e8d103c962d1bf996f5553139ca26 -2023-05-25 15:48:09.635326 + : pb-IF5WU0gIUQ== ip: azj~z`~}icai`|, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-25 15:50:01.026670 + : pb-IF4TV3RbDA== ip: azo~|l~~mfamg, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-25 15:51:24.458967 + : pb-IF5dU3UiAw== ip: azo~{a~vl~wn, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-25 16:02:33.348041 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4TV3RbDA==. -2023-05-25 16:03:03.350760 + : Kick vote End -2023-05-25 16:04:57.721073 + : pb-IF4CU1kOLg== ip: c~va|h~vm~wk, Device id: 0627cfa6487e8d103c962d1bf996f5553139ca26 -2023-05-25 16:07:09.507014 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4TV3RbDA==. -2023-05-25 16:07:39.507348 + : Kick vote End -2023-05-25 16:08:30.494645 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-25 16:11:19.232412 + : pb-IF5UUxheIg== ip: azo~|a~ym~wo, Device id: c6e45fd1c978810e560b5acf6165aaf8e789fb21 -2023-05-25 16:13:11.459718 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4TV3RbDA==. -2023-05-25 16:13:41.466801 + : Kick vote End -2023-05-25 16:15:33.351134 + : pb-IF4TV3RbDA== started kick vote for pb-IF4AV1QqEQ==. -2023-05-25 16:16:03.354197 + : Kick vote End -2023-05-25 16:24:44.465634 + : pb-IF5VVUtTFg== started kick vote for pb-IF4AV1QqEQ==. -2023-05-25 16:25:14.466333 + : Kick vote End -2023-05-25 16:27:00.214398 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5VVUtTFg==. -2023-05-25 16:27:30.216686 + : Kick vote End -2023-05-25 16:28:14.947380 + : pb-IF4FU1daUA== ip: dvvczvbzm~~oi, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-25 16:29:00.181224 + : pb-IF4jU1VYVg== ip: an~}h`a`haicx, Device id: 1e7e85a9f7fbdd14174877cd51206be49d9ce647 -2023-05-25 16:30:30.896884 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4nUnBdNg==. -2023-05-25 16:31:00.899992 + : Kick vote End -2023-05-25 16:32:50.928983 + : pb-IF49VFdbEQ== ip: a~o~va~}kcaa`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-25 16:34:05.190116 + : pb-IF48U0siPA== ip: dvvd|vc{vaj, Device id: 5ca4ccb47e41db39a475376c4228611c7b3c8fe3 -2023-05-25 16:36:45.783503 + : pb-IF5WU0gIUQ== ip: azj~z`~}ibaae, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-25 16:36:52.785685 + : pb-IF4nUnBdNg== started kick vote for pb-IF48U0siPA==. -2023-05-25 16:37:22.784497 + : Kick vote End -2023-05-25 16:41:45.825926 + : pb-IF4CUGUMNg== ip: an~}ida`faia{, Device id: 212ced56fb201f3e24f9424f77187c8cd887cece -2023-05-25 16:41:58.878024 + : pb-IF5dU3UiAw== ip: azo~{a~vl~wn, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-25 16:44:05.338963 + : pb-IF4cUBYfCg== ip: azo~{m~}ldaigy, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-25 16:44:35.481001 + : pb-IF49VFdbEQ== ip: a~o~va~}kcaa`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-25 16:48:20.825188 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4FU1daUA==. -2023-05-25 16:48:50.827251 + : Kick vote End -2023-05-25 16:52:22.829030 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5UU1ZTLQ==. -2023-05-25 16:52:52.926356 + : Kick vote End -2023-05-25 16:55:41.486029 + : pb-IF4TUGEIDQ== ip: bxvf}vb{n~}ii, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-25 16:58:13.041593 + : pb-IF4TUGEIDQ== ip: bxvf}vb{n~}ii, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-25 17:00:08.426171 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-25 17:04:27.443653 + : pb-IF4DV3MCHQ== ip: ak~~oea`ia`, Device id: 0c06464047322db7f7caeaa037beae74df787275 -2023-05-25 17:07:55.260703 + : pb-IF4TUGEIDQ== ip: bxvf}vb{n~}ii, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-25 17:27:27.452481 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 17:41:26.400281 + : pb-IF4sUGMeVA== ip: dvvcyvivvaj, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-05-25 17:44:44.400734 + : pb-IF4VUlJYFg== ip: dvvazvb}l~}jh, Device id: 3b574b234f4984d8ab8cfbbca3a41987677635d0 -2023-05-25 17:49:34.622815 + : pb-IF4TUGEIDQ== ip: bxvf}vb{j~~md, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-25 17:54:14.938512 + : pb-IF4cUBYfCg== ip: azo~{m~}m`aic~, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-25 17:55:10.470584 + : pb-IF4sUGMeVA== started kick vote for pb-IF4TUBkMUw==. -2023-05-25 17:55:40.473848 + : Kick vote End -2023-05-25 18:00:09.508202 + : pb-IF41UBQPXA== ip: a}l~~hfaicyvbv, Device id: 4053d4ecb6d73d755ad3c574aa4bd40384b30b43 -2023-05-25 18:00:11.516981 + : pb-IF4cUBYfCg== ip: azo~{m~}m`aic~, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-25 18:01:07.697076 + : pb-JiNJARBTV0JFXlxFEkRZXFRFEkVZR1RD ip: ak~~neaj`ali, Device id: 5ded5c53497b9126cebd3f3e8d646051a0b157da -2023-05-25 18:03:08.652387 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-25 18:07:35.289160 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-25 18:08:36.508628 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvayl, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-25 18:15:37.314065 + : pb-IF4TUBkMUw== ip: azo~{a~~oiaiaz, Device id: c53234887640640445df616dcc653f7c90ae1be3 -2023-05-25 18:19:22.069399 + : pb-IF4TUGEIDQ== ip: bxvf}vb{j~~md, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-25 18:20:35.366614 + : pb-IF5VVU4CKA== ip: a|j~~mdaie{va{h, Device id: d8e258714e814fda309a4d9a18f16b48d4080ddf -2023-05-25 18:21:16.735296 + : pb-IF4TUGEIDQ== started kick vote for pb-IF5VVU4CKA==. -2023-05-25 18:21:46.738354 + : Kick vote End -2023-05-25 18:22:53.830676 + : pb-IF4dUBQsCQ== ip: dvvc}vayk~~ab, Device id: 4b4786b3b86622aa8e6dd7c3c067b5f19be9ff0c -2023-05-25 18:25:30.425765 + : pb-IF4-AGI7 ip: an~}hhaihvgx, Device id: 30044689eb8e24c858cb1d029b58e40e866f2cfb -2023-05-25 18:28:13.172531 + : pb-IF4cUBYfCg== ip: azo~{m~}kbaje|, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-25 18:30:40.891328 + : pb-IF41UBQPXA== ip: a}l~~hfaicyvbv, Device id: 4053d4ecb6d73d755ad3c574aa4bd40384b30b43 -2023-05-25 18:39:52.085521 + : pb-IF5QU0geXA== ip: azj~z`~}iaamc, Device id: d23c5ad06f1a48f69b2cfd262837eef33e421f4b -2023-05-25 18:40:36.237774 + : pb-IF4QUBQoBw== ip: an~xn~vh~~ne, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-25 18:41:11.536033 + : pb-IF4KU1NSMg== ip: a~o~}ieajbaiix, Device id: af09c03c7e183d0e768333890eb09539ad91ea83 -2023-05-25 18:50:53.172797 + : pb-IF5TU20EMg== ip: a~n~~l~~kiajc{, Device id: 1d57ef16cb271b4658c6e935cf399601a631d96c -2023-05-25 18:52:56.542939 + : pb-IF5TU20EMg== | kicked for chat spam -2023-05-25 19:00:52.962400 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-25 19:10:02.080373 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 19:37:50.393807 + : Server started -2023-05-25 19:37:51.398662 + : pb-IF4IVW0MVw== ip: a~o~}j`ai`|vazh, Device id: 0097d8138814c34ba1872bad50c053284743caec -2023-05-25 19:39:30.805791 + : pb-IF4HVHpcFQ== ip: dvvcyvavez, Device id: 722099821f2d7b77a509edac87bacc7f8a830939 -2023-05-25 19:40:05.937674 + : pb-IF4DV3MCHQ== ip: ak~~oea`ia`, Device id: 0c06464047322db7f7caeaa037beae74df787275 -2023-05-25 19:52:29.584463 + : pb-IF5UVW4cUA== ip: a~n~y`~wo~}k, Device id: 412cf565b67bed338e82c45f089c81f997092a97 -2023-05-25 19:53:27.841259 + : pb-IF49I04z ip: dvvd|vb{a~}n, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-25 19:58:40.157296 + : pb-IF49I04z started kick vote for pb-IF4MVUcEKg==. -2023-05-25 19:59:00.628184 + : Kick vote End -2023-05-25 20:04:22.195244 + : pb-IF5VU1JZMw== ip: an~}ica`eao, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-05-25 20:04:34.231399 + : pb-IF4OUBYZUQ== ip: d}vao~~kbaj`z, Device id: 114e694a16c29004ca32e5936bdcd114be3a2967 -2023-05-25 20:06:30.644455 + : pb-IF5VU1JZMw== ip: an~}ica`eao, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-05-25 20:08:02.048719 + : pb-IF4pU1oqVg== ip: a|a~~ngajayva, Device id: 7ee71d578344c9f3f3ba95c6c87390e91fdfd2da -2023-05-25 20:11:11.686984 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 20:16:22.813697 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-25 20:21:48.063282 + : pb-IF4pBXon ip: a}j~~naanfajcw, Device id: 4d6ac5a5c5f02089ba05f4eb929f81a6163eed1f -2023-05-25 20:27:44.409332 + : pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB ip: azj~z`~}n~~jc, Device id: e30952bda624a1707c15cfb174e914d0a114370f -2023-05-25 20:29:18.752393 + : pb-IF4MUBMHKA== ip: azj~z`~~`~~je, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-25 20:30:25.995224 + : pb-IF4OUBYZUQ== ip: d}vao~~kbaj`z, Device id: 114e694a16c29004ca32e5936bdcd114be3a2967 -2023-05-25 20:32:40.477438 + : pb-IF4xVUMlFQ== ip: a~n~y`~wk~zh, Device id: ed4a9a8875f4e87c9e5d27d4db1ae6e9877055d5 -2023-05-25 20:37:34.533048 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-25 20:39:37.958620 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-25 20:43:44.846318 + : pb-IF4dVFgCLg== ip: dvvc{vh~vf, Device id: 47ac797e330369c217bb24f59242043b21136902 -2023-05-25 20:48:34.954232 + : pb-IF5SMRkg ip: axi~{a~}haala, Device id: 98daa9f7bf80279fccd8791e07c9ff679d6d8928 -2023-05-25 20:50:34.367520 + : pb-IF4vV0g8Mw== ip: dvvc{vbl~xl, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-05-25 20:52:23.801794 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaod, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-25 20:53:04.956168 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaod, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-25 20:56:50.721479 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~oe, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-25 20:57:39.892039 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-25 20:59:12.188410 + : pb-IF4MV0gkKQ== ip: azo~|j~|o~zi, Device id: 9c5282b093c6f462ada80992fb5cd0fbeb0fd377 -2023-05-25 20:59:41.338839 + : pb-IF4yUBA6AA== ip: azl~~`bajbyvh, Device id: d6d4bd522f2522c08aad038e3a6e213f592f384c -2023-05-25 21:05:39.667688 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaod, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-25 21:13:38.571977 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 21:27:37.618065 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-25 21:28:10.741151 + : pb-IF5SUBYBUw== ip: aakhajayvi~, Device id: 66b9a1a7ee180c15d382f5f993c837250c7a782b -2023-05-25 21:28:31.795074 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-25 21:29:49.038334 + : pb-IF43UGdSLw== ip: azj~zo~~a`ajcz, Device id: b2fe07f783aca07bdf7fad46d7a8cffbfa87072d -2023-05-25 21:30:59.328107 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`ame, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-25 21:31:41.465874 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvayl, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-25 21:34:54.137886 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvayl, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-25 21:37:55.814986 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`ame, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-25 21:42:20.827698 + : pb-IF48UGUsDg== ip: azo~|l~}idajcx, Device id: 9f47f11d6c0ceeef41674476301fa2bd6c79a5de -2023-05-25 21:44:27.420919 + : pb-IF4jV1U5Aw== ip: a~l~|i~~`daib~, Device id: 6d31f2e6c59ae1fabf27f3f452c224afed63e2b4 -2023-05-25 21:48:02.227980 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`ame, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-25 21:49:23.624496 + : pb-IF48UGUsDg== ip: azo~|l~}idajcx, Device id: 9f47f11d6c0ceeef41674476301fa2bd6c79a5de -2023-05-25 21:51:06.077039 + : pb-IF4TUxEoKg== started kick vote for pb-IF4oV1U7. -2023-05-25 21:51:36.083798 + : Kick vote End -2023-05-25 21:51:47.229553 + : pb-IF4OPhMg ip: an~}ifa`ea``, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-25 21:54:50.612196 + : pb-IF4TUxEoKg== started kick vote for pb-IF4oV1U7. -2023-05-25 21:55:20.618587 + : Kick vote End -2023-05-25 21:55:57.336292 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvayl, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-25 21:58:34.872819 + : pb-IF4oUGcfJA== ip: gwvaxk~z`~~if, Device id: 8798671cb1bcef0a21b7eb242a23d281a9fc7b16 -2023-05-25 22:00:19.537319 + : pb-IF4OPhMg started kick vote for pb-IF4oUGcfJA==. -2023-05-25 22:00:49.546217 + : Kick vote End -2023-05-25 22:02:56.822795 + : pb-IF4MUBMHKA== ip: azj~z`~~n~}i`, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-25 22:04:02.084686 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-25 22:04:50.259658 + : pb-IF4cUBYfCg== ip: azo~{m~}mdaid}, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-25 22:12:52.185963 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-25 22:19:43.970139 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-25 22:21:27.385134 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaod, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-25 22:21:32.403352 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaod, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-25 22:22:24.575775 + : pb-IF4VU3EjBg== ip: azj~z`~|a~~oi, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-05-25 22:22:33.614623 + : pb-IF4wBUUK ip: azj~z`~|l~~hd, Device id: 926098526aa25628ccdb1426d99fc162ae24f8db -2023-05-25 22:25:19.261550 + : pb-IF4tNxUh ip: axn~~jhaihvbv, Device id: 60e4ad03622d0144201fd4c0feee6aa2b1f1aa6d -2023-05-25 22:25:52.402316 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-25 22:30:45.923553 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 22:31:19.030046 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaod, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-25 22:35:07.205316 + : pb-IF41UGcFVA==|| kicked > new account -2023-05-25 22:38:49.399037 + : pb-IF4UUGg7Cg==|| kicked > new account -2023-05-25 22:39:48.005292 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaod, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-25 22:51:08.483939 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 22:52:00.743389 + : pb-IF49I04z ip: dvvd|vbzh~v, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-25 22:59:29.477198 + : pb-IF4UUGYcUA== ip: azo~|l~yl~yo, Device id: 475872778f5080e4f5b40a58dbdada37e9248b9b -2023-05-25 23:01:43.026803 + : pb-IF41U2scIg== ip: ak~}hhaniamb, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-25 23:12:03.449188 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaod, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-25 23:12:34.596120 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-25 23:29:26.439926 + : pb-IF4QU2ZeAw== ip: dvvczvavj~|k, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-25 23:29:34.462544 + : pb-IF4tNxUh ip: axn~~jhaihvbv, Device id: 60e4ad03622d0144201fd4c0feee6aa2b1f1aa6d -2023-05-25 23:33:09.152449 + : pb-IF4XU0gNJg== ip: ak~vh~~``aifw, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-25 23:43:48.440512 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-25 23:46:45.196701 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-26 00:08:01.979805 + : pb-IF4wUGQxJA== ip: dvvc{vaw`~}h, Device id: aeed2a5c0d2a550347650c5cc37331b5dd8ddc67 -2023-05-26 00:08:46.128730 + : pb-IF4wUGQxJA== ip: dvvc{vaw`~}h, Device id: aeed2a5c0d2a550347650c5cc37331b5dd8ddc67 -2023-05-26 00:09:19.220119 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-26 00:15:01.484745 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~oe, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-26 01:03:46.073116 + : pb-IF4IUGVTMQ== ip: ak~vo~vn~}k, Device id: c122767b74fe0c99f1c70247ae0b7d6375493e1d -2023-05-26 01:12:39.946463 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-26 01:33:24.325159 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-26 01:54:16.875604 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-26 01:54:39.958121 + : pb-IF49UBYEUQ== ip: ak~~o~va~}kf, Device id: 8ab859f67983845ade1cb91eb9ba1ddebbf0b434 -2023-05-26 02:03:00.149302 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-26 02:38:15.665529 + : Server started -2023-05-26 02:57:28.817054 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-26 04:20:34.596575 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-26 04:40:59.974111 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-26 05:01:44.650698 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-26 05:22:50.279416 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-26 05:43:33.948663 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-26 05:43:49.004048 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-26 06:04:05.532924 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-26 06:48:07.571675 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-26 07:32:33.019638 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-26 07:33:19.248842 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-26 09:38:18.483557 + : Server started -2023-05-26 09:55:02.091296 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-26 10:21:47.051975 + : pb-IF48U1M9Kw== ip: an~}hhaiewvayl, Device id: 52a3d6b86731ff41ffabbafcd88660333675f7a1 -2023-05-26 10:34:49.895072 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`ame, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-26 10:37:51.598516 + : pb-IF49VFdbEQ== ip: a~o~va~}kda`g, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-26 10:55:04.422123 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-26 10:58:59.288686 + : pb-IF4OU2QjMQ== ip: an~}ifajd{va}o, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-26 11:15:16.970767 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-26 11:35:43.430984 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-26 11:55:29.756249 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-26 12:01:02.022965 + : pb-IF4OU2QjMQ== ip: an~}ifajd{va}o, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-26 12:01:26.113961 + : pb-IF4OU2QjMQ== ip: an~}ifajd{va}o, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-26 12:25:11.360908 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~oe, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-26 12:25:29.443225 + : pb-IF4LUk0FCQ== ip: azj~zo~}kiajdy, Device id: a90ea705ab07ae71d76b1775b6c73cf2a51c5161 -2023-05-26 12:25:55.519106 + : pb-IF4LUk0FCQ== ip: azj~zo~}kiajdy, Device id: a90ea705ab07ae71d76b1775b6c73cf2a51c5161 -2023-05-26 12:26:21.749787 + : pb-IF4LUk0FCQ== ip: azj~zo~}kiajdy, Device id: a90ea705ab07ae71d76b1775b6c73cf2a51c5161 -2023-05-26 12:26:37.817656 + : pb-IF4TUBIRJg== ip: b}k~}khaja|vb{l, Device id: 8e015393e2e9f5ae369986e2c51ebf9d54f45d0a -2023-05-26 12:26:53.886932 + : pb-IF4LUk0FCQ== ip: azj~zo~}kiajdy, Device id: a90ea705ab07ae71d76b1775b6c73cf2a51c5161 -2023-05-26 12:31:16.584751 + : pb-IF4LUGcMJA==|| kicked > new account -2023-05-26 12:31:18.903531 + : pb-IF4nU0UJJg== ip: ak~~ogaj`{vam, Device id: c7558f260c97b9103325228f0d4014d4bfe175ef -2023-05-26 12:52:47.873448 + : pb-IF4AV1QqEQ== ip: an~}ica`faih{, Device id: 2331b3822293d621f32ade855f2e13b5f48a2f9e -2023-05-26 12:56:49.860447 + : pb-IF4sAGcj ip: a}j~~ogajayvgz, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-26 12:57:26.288329 + : pb-IF4GUGgxAg==|| kicked > new account -2023-05-26 12:58:27.295441 + : pb-IF40UncaLg== ip: dvvc|vb`~~`f, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-26 12:58:38.344841 + : pb-IF4nU0UJJg== ip: ak~~ogaj`{vam, Device id: c7558f260c97b9103325228f0d4014d4bfe175ef -2023-05-26 13:00:37.283042 + : pb-IF4AV1QqEQ== started kick vote for pb-IF40UncaLg==. -2023-05-26 13:01:07.287758 + : Kick vote End -2023-05-26 13:01:32.001763 + : pb-IF40UncaLg== ip: dvvc|vb`~~`f, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-26 13:02:22.189057 + : pb-IF4WUBJcVQ== ip: an~}heajd|vfv, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-26 13:07:22.239503 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-26 13:11:02.340757 + : pb-IF4XU0ddEA== ip: awj~ya~~ogaia}, Device id: 7b46a4b00db7f6fad2b9f32c6c878678662345be -2023-05-26 13:12:21.643209 + : pb-IF4jF1NY ip: azj~z`~{vf, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-26 13:13:01.798146 + : pb-IF4VU3laVA== ip: ak~~`ca`cakg, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-26 13:21:35.931126 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4FU1QxXQ==. -2023-05-26 13:21:48.151039 + : Kick vote End -2023-05-26 13:21:55.896470 + : pb-IF4FU1QxXQ== ip: dvvc{vivvaj, Device id: e7e15639c2d428d6d2bf6f59f0ea29a256e7025d -2023-05-26 13:23:22.206184 + : pb-IF40UncaLg== ip: dvvc|vavm~~lc, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-26 13:28:03.239843 + : pb-IF42UBEfJA== ip: ak~wa~}keaicw, Device id: 72ba1ebc93e2c61046ffa5f273503a731e146f64 -2023-05-26 13:29:11.472809 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-26 13:29:32.545020 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh}vayn, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-26 13:32:48.269750 + : pb-IF4VU3laVA== | kicked for chat spam -2023-05-26 13:33:53.546777 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4FU1QxXQ==. -2023-05-26 13:34:23.553866 + : Kick vote End -2023-05-26 13:35:27.522348 + : pb-IF5VUGo7FA==|| kicked > new account -2023-05-26 13:45:38.833996 + : pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA ip: an~~afaj`aihw, Device id: 936c205c0c65262d62300105d4329a28095c9790 -2023-05-26 13:46:00.919550 + : pb-IF4XU0gNJg== ip: a}j~~naalhaob, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-26 13:47:41.270830 + : pb-IF4iVFBbDA== ip: dvvcxvbxva}k, Device id: c5ff228fc0955dbf46b079065a2fcb5955ad7f60 -2023-05-26 13:48:26.408979 + : pb-IF49I04z ip: b}k~~`gaia|vdy, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-26 14:07:51.112209 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-26 14:08:42.320836 + : pb-IF4qU0MANA== ip: dxva~vb~vawk, Device id: b94f7641875bba32452aeb62d84d413e6d3bc4ff -2023-05-26 14:13:21.316797 + : pb-IF4VU3laVA== ip: ak~~`baifyvfx, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-26 14:18:59.610368 + : pb-IF4HUGggJw==|| kicked > new account -2023-05-26 14:22:14.851379 + : pb-IF4vV0g8Mw== ip: dvvc{vayj~~af, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-05-26 14:30:38.070166 + : pb-IF5VUGcFEA== ip: azj~z`~~`~~le, Device id: a283bb95472ff68dcb88db74236f43014d0fce0a -2023-05-26 14:31:31.648120 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4WUBMGUg==. -2023-05-26 14:32:01.648584 + : Kick vote End -2023-05-26 14:34:07.856920 + : pb-IF4FU3ouHA== started kick vote for pb-IF5VUGcFEA==. -2023-05-26 14:34:20.064103 + : Kick vote End -2023-05-26 14:36:29.906266 + : pb-IF4OPhMg ip: an~}jbai`aie|, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-26 14:39:35.107300 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4WVBcPMg==. -2023-05-26 14:40:05.114342 + : Kick vote End -2023-05-26 14:40:17.335128 + : pb-IF4TV3RbDA== ip: azo~|l~~k`aicv, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-26 14:41:30.850930 + : pb-IF4qU0MANA== ip: dxva~vb~vawk, Device id: b94f7641875bba32452aeb62d84d413e6d3bc4ff -2023-05-26 14:42:34.062487 + : pb-IF4qU0MANA== ip: dxva~vb~vawk, Device id: b94f7641875bba32452aeb62d84d413e6d3bc4ff -2023-05-26 14:43:05.162291 + : pb-IF41EloZ ip: azj~z`~|n~~hi, Device id: b1ff53c5b37c084eefb6145c337c577be3ebb973 -2023-05-26 14:45:08.100603 + : pb-IF4SUGghXA==|| kicked > new account -2023-05-26 14:50:34.036491 + : pb-IF4cUBYfCg== ip: azo~{m~~lbaiaz, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-26 14:52:22.375933 + : pb-IF5VU1JZMw== ip: an~}ica`eame, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-05-26 14:53:11.522077 + : pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB ip: ak~}n~zo~w, Device id: rikkolovescats :3 -2023-05-26 14:54:19.736815 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvhw, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-26 14:55:55.428806 + : pb-IF4jUGgAPw==|| kicked > new account -2023-05-26 15:02:32.558806 + : pb-IF4nU3ZaUg== ip: an~~ahaicanf, Device id: 937bdd00f7f6d3b32890fa6a0bb80fecacd4e905 -2023-05-26 15:07:57.669682 + : pb-IF4sAGcj ip: a}j~~ogajayvgz, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-26 15:08:59.904265 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-26 15:17:59.893009 + : pb-IF4xU1gZJg== ip: a}j~~ogaicwvazh, Device id: 805c0d3ad1bab9d007efc4384ae0d384804f78c6 -2023-05-26 15:18:48.071599 + : pb-IF4MUBMHKA== ip: azj~z`~~o~~`b, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-26 15:19:52.388811 + : pb-IF4MUBMHKA== ip: azj~z`~~o~~`b, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-26 15:26:33.865094 + : pb-IF41U2scIg== ip: ak~za~xl~|`, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-26 15:34:55.100998 + : Server started -2023-05-26 15:34:56.106301 + : pb-IF41U2scIg== ip: ak~za~xl~|`, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-26 15:34:56.106396 + : pb-IF4OPhMg ip: an~}jbai`aie|, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-26 15:35:48.274192 + : pb-IF5UUxheIg== ip: azo~|a~xk~ya, Device id: c6e45fd1c978810e560b5acf6165aaf8e789fb21 -2023-05-26 15:35:58.320012 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~oe, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-26 15:36:32.441264 + : pb-IF41U2scIg== ip: ak~za~xl~|`, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-26 15:37:09.576791 + : pb-IF4BUGYBUw== ip: azj~z`~|m~}mb, Device id: cd4b3ed3afc027201722bf5928ed2f0cdf21bfa1 -2023-05-26 15:38:26.894843 + : pb-IF4cUBYfCg== ip: azo~{m~~lfaia}, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-26 15:41:09.537105 + : pb-IF4nUnBdNg== ip: a}j~~nbaie~vaya, Device id: 12c5ef4f3635e09675c5bf9d080e806eebef8bea -2023-05-26 15:41:12.544126 + : pb-IF5VVUtTFg== ip: a}j~~nbaie~vaya, Device id: f7d00c1e695a26c51c1e3ea08d6fb6077df63180 -2023-05-26 15:43:59.168253 + : pb-IF4FUBcGEg== ip: an~}j`aigwvf}, Device id: 2b448fff823555cef8ee30594cdf83a7c5a7f25b -2023-05-26 15:44:12.212704 + : pb-IF5VVUtTFg== ip: dxvc~viwvbm, Device id: f7d00c1e695a26c51c1e3ea08d6fb6077df63180 -2023-05-26 15:46:31.641884 + : pb-IF4nUnBdNg== ip: a}j~~nbaie~vaya, Device id: 12c5ef4f3635e09675c5bf9d080e806eebef8bea -2023-05-26 15:48:10.996913 + : pb-IF4CUGMfXA== | kicked > reason:Banned account -2023-05-26 15:53:10.013832 + : pb-IF4xUnQNVA== ip: dvvc{vbzh~~hd, Device id: 477a46d48ec2c3a3ed0c4fb1e42c2d889ad8233f -2023-05-26 15:53:18.039965 + : pb-IF4-AGI7 ip: a~h~}jgam`amg, Device id: 30044689eb8e24c858cb1d029b58e40e866f2cfb -2023-05-26 15:53:32.081763 + : pb-IF4vVUNfEA== ip: azj~z`~~n~yk, Device id: 0fa4c46fc295e5f4f7f6c9d1ddeb26c91d3742da -2023-05-26 15:54:13.230047 + : pb-IF5VU3Y6XQ== ip: bj~ym~~liand, Device id: 7925d48a58b4d67749bad5da8f0c6fcad2b62a37 -2023-05-26 15:57:46.026075 + : pb-IF4xUnQNVA== ip: dvvc{vbzh~~hd, Device id: 477a46d48ec2c3a3ed0c4fb1e42c2d889ad8233f -2023-05-26 16:00:41.643475 + : pb-IF4-Um4_Lw== ip: azj~zo~~jfake, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-05-26 16:03:41.387117 + : pb-IF4nUnBdNg== ip: a}j~~nbaie~vaya, Device id: 12c5ef4f3635e09675c5bf9d080e806eebef8bea -2023-05-26 16:05:24.205480 + : pb-IF4-Um4_Lw== started kick vote for pb-IF4vVUNfEA==. -2023-05-26 16:05:44.777997 + : pb-IF4-Um4_Lw== ip: azj~zo~~jfake, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-05-26 16:05:54.211280 + : Kick vote End -2023-05-26 16:07:46.350359 + : pb-IF41UBQPXA== ip: a}l~~hfaicyvbv, Device id: 4053d4ecb6d73d755ad3c574aa4bd40384b30b43 -2023-05-26 16:07:50.102696 + : pb-IF5VVUtTFg== started kick vote for pb-IF4vVUNfEA==. -2023-05-26 16:08:20.107792 + : Kick vote End -2023-05-26 16:09:44.965078 + : pb-IF4nUnBdNg== started kick vote for pb-IF5TVEVZEg==. -2023-05-26 16:10:14.972283 + : Kick vote End -2023-05-26 16:11:28.731027 + : pb-IF41UGcSBA==|| kicked > new account -2023-05-26 16:13:55.629697 + : pb-IF4QU2ZeAw== ip: dvvczvavm~~h`, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-26 16:15:49.366952 + : pb-IF4KUGggJw==|| kicked > new account -2023-05-26 16:17:53.567183 + : pb-IF5VVUtTFg== started kick vote for pb-IF4vVUNfEA==. -2023-05-26 16:18:23.571213 + : Kick vote End -2023-05-26 16:19:45.346443 + : pb-IF4nUnBdNg== started kick vote for pb-IF4vVUNfEA==. -2023-05-26 16:20:15.350442 + : Kick vote End -2023-05-26 16:23:30.797007 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-26 16:24:11.949245 + : pb-IF4HUGUDPw== ip: azo~{a~~mfai`y, Device id: 52f722e2868a7a223fab2340f60103321ec30543 -2023-05-26 16:25:17.825468 + : pb-IF4tUGgIUA==|| kicked > new account -2023-05-26 16:25:42.301270 + : pb-IF4sAGcj ip: bxvewvb~vfw, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-26 16:27:26.455990 + : pb-IF5SUGQDDw== started kick vote for pb-IF4vVUNfEA==. -2023-05-26 16:27:41.722816 + : pb-IF4cUBYfCg== ip: azo~{m~~ldajdz, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-26 16:27:56.460053 + : Kick vote End -2023-05-26 16:31:57.686192 + : pb-IF4-Um4_Lw== ip: azj~zo~~jfake, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-05-26 16:32:40.842079 + : pb-IF49UBEhJA== ip: azo~|j~|o~yh, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-26 16:33:14.978458 + : pb-IF4oUGQRUQ== ip: ak~}m`aicxvb~m, Device id: 9923e00ea158fdd03e7dea077299fda9f059568a -2023-05-26 16:38:24.541490 + : pb-IF4vVUNfEA== started kick vote for pb-IF4oUGceAg==. -2023-05-26 16:38:54.546684 + : Kick vote End -2023-05-26 16:39:29.406971 + : pb-IF4jUBMiCg== ip: azh~~jiai`}vf|, Device id: 110d204538538c5e9a37a58eb6c53fa6e365be08 -2023-05-26 16:42:49.140634 + : pb-IF4cUBYfCg== ip: azo~{m~~ldajdz, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-26 16:45:45.891498 + : pb-IF4jUGRfFg== ip: an~}ifa`faie{, Device id: 743a31a1575f0a6aa1310dcca561fcc366c3a0b5 -2023-05-26 16:49:29.799554 + : pb-IF5VU1JZMw== ip: an~}ica`faab, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-05-26 16:50:30.289351 + : pb-IF5VU1JZMw== started kick vote for pb-IF5TUBItEw==. -2023-05-26 16:50:46.060386 + : pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA ip: an~~afajaaiez, Device id: 936c205c0c65262d62300105d4329a28095c9790 -2023-05-26 16:51:00.292370 + : Kick vote End -2023-05-26 16:52:50.512261 + : pb-IF4FU1daUA== ip: azo~|l~yh~~ih, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-26 16:53:04.571573 + : pb-IF4MUBMHKA== ip: azj~z`~~`~~`g, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-26 16:54:10.824858 + : pb-IF4cUBYfCg== ip: azo~{m~~ldajdz, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-26 16:55:03.346200 + : pb-IF4SUGhSAw==|| kicked > new account -2023-05-26 16:55:26.099164 + : pb-IF4FU1daUA== ip: azo~|l~yh~~ih, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-26 16:57:26.484221 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG ip: a~o~}laaje{vh{, Device id: 822adb43af454f4ce0fdec16028787c26c151d5f -2023-05-26 17:06:41.515541 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-26 17:11:26.571247 + : pb-IF49VFQlPA== ip: azo~{m~vi~}kb, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-05-26 17:14:36.250335 + : pb-IF4QUBQoBw== ip: an~yn~zo~yk, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-26 17:14:51.295782 + : pb-IF49UBEhJA== ip: azo~|j~|o~~``, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-26 17:14:56.317605 + : pb-IF4yU1oxUg== ip: azo~|j~~acajez, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-26 17:15:35.463642 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-26 17:15:39.475022 + : pb-IF4cUBYfCg== ip: azo~{m~~ldajdz, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-26 17:15:57.530954 + : pb-IF4QUBQoBw== ip: an~yn~zo~yk, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-26 17:18:57.183241 + : pb-IF4QUBQoBw== ip: an~yn~zo~yk, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-26 17:19:01.434424 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG started kick vote for pb-IF4yU1oxUg==. -2023-05-26 17:19:14.237040 + : pb-IF4WUBMGUg== ip: dvvc{vgxvb~m, Device id: 9c7c9b759aefe92c09def3b4ef4b725adec596f3 -2023-05-26 17:19:31.304597 + : pb-IF4QUBQoBw== ip: an~yn~zo~yk, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-26 17:19:31.439849 + : Kick vote End -2023-05-26 17:19:42.474279 + : pb-IF4CV3JfVA== ip: d|vb{m~~jcaic~, Device id: 2a345e6411b510fdcaeffe590a280a32c1bed981 -2023-05-26 17:23:14.918634 + : pb-IF4XUGI7Aw== started kick vote for pb-IF4vVUNfEA==. -2023-05-26 17:23:44.924915 + : Kick vote End -2023-05-26 17:25:08.664839 + : pb-IF4wVXReKA== ip: dvvcyvevva{`, Device id: 2418ee4e4e2561848bf6331c79b48b5ad7219ead -2023-05-26 17:26:53.030052 + : pb-IF4CUm4jHw== ip: awk~wo~|n~xm, Device id: 0c2f6241c570435a23eff32af93a7439749f5827 -2023-05-26 17:29:43.841326 + : pb-IF4DUBczEg== ip: ax`~}lhaiazvaj, Device id: 987226d02d2b2a932b141c85dbb6c9bad115e740 -2023-05-26 17:30:59.118291 + : pb-IF4DUBczEg== ip: ax`~}lhaiazvaj, Device id: 987226d02d2b2a932b141c85dbb6c9bad115e740 -2023-05-26 17:31:22.204864 + : pb-IF5dU3UiAw== ip: a~o~}meaibxvey, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-26 17:32:09.378745 + : pb-IF41UBQPXA== ip: a}l~~hfaicyvbv, Device id: 4053d4ecb6d73d755ad3c574aa4bd40384b30b43 -2023-05-26 17:32:16.403517 + : pb-IF5dU3UiAw== ip: azo~{a~~mhai`}, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-26 17:37:39.755122 + : pb-IF4cUBYfCg== ip: azo~{m~~ldajdz, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-26 17:38:01.849606 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-26 17:38:43.818988 + : pb-IF5dU3UiAw== started kick vote for pb-IF4vVUNfEA==. -2023-05-26 17:39:12.161257 + : pb-IF4wVXReKA== ip: dvvcyvevva{`, Device id: 2418ee4e4e2561848bf6331c79b48b5ad7219ead -2023-05-26 17:39:13.822503 + : Kick vote End -2023-05-26 17:39:14.163347 + : pb-IF4rUGctLw== ip: azj~zo~zi~vm, Device id: 28f97f2e4d4802bdda09fd1c869756c61288a11b -2023-05-26 17:40:41.613175 + : pb-IF4VU3laVA== ip: ak~~n`aii{vg, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-26 17:40:45.624569 + : pb-IF4sAGcj ip: bxvewvb~vfw, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-26 17:44:29.626828 + : pb-IF4nUGE7KA== ip: b}k~~`hajbwvbm, Device id: 13a1d48885d496e0b6ecebef433118d164ffa331 -2023-05-26 17:48:19.442702 + : pb-IF42UBEfJA== ip: ak~wa~}keaicw, Device id: 72ba1ebc93e2c61046ffa5f273503a731e146f64 -2023-05-26 17:49:15.611675 + : pb-IF4nUGE7KA== ip: b}k~~`hajbwvbm, Device id: 13a1d48885d496e0b6ecebef433118d164ffa331 -2023-05-26 17:49:22.934211 + : pb-IF5dU3UiAw== started kick vote for pb-IF4iUBIKLQ==. -2023-05-26 17:49:52.940503 + : Kick vote End -2023-05-26 17:52:25.556702 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-26 17:57:47.962457 + : pb-IF4uUGUfKg== ip: an~}hfaiiajc|, Device id: 4bbc7bf83c1021e546c0d1020657586866cc501d -2023-05-26 17:59:00.226797 + : pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB ip: ak~}n~zo~w, Device id: rikkolovescats :3 -2023-05-26 18:03:12.165814 + : pb-IF49UBEhJA== ip: azo~|j~|o~~``, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-26 18:05:10.590121 + : pb-IF4yU1oxUg== ip: azo~|j~~abaii}, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-26 18:05:24.931419 + : pb-IF4vVUNfEA== started kick vote for pb-IF4yU1oxUg==. -2023-05-26 18:05:54.931559 + : Kick vote End -2023-05-26 18:08:06.263121 + : pb-IF5WUno7PQ== ip: azj~zo~}haaih~, Device id: 6164a3526ba984be44e85dfeb8283d2a6a9f3534 -2023-05-26 18:09:24.043179 + : pb-IF5dU3UiAw== started kick vote for pb-IF4yU1oxUg==. -2023-05-26 18:09:54.044583 + : Kick vote End -2023-05-26 18:10:07.788716 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-26 18:14:31.877675 + : pb-IF4sUGMeVA== ip: dvvcyvam~zk, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-05-26 18:16:20.362922 + : pb-IF49VFdbEQ== ip: an~}hfaiixva}o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-26 18:17:51.664591 + : pb-IF4HUncmMg== ip: azj~z`~}k`aic, Device id: d4ba6f891511db758f8533ed8e359a16907a09cc -2023-05-26 18:20:30.263235 + : pb-IF5TU1lZFQ== ip: dvvd}vh{vazm, Device id: b7e46bb15a5efa8a0e0aa5c6dc6cfcfeb53ff1b3 -2023-05-26 18:21:14.449161 + : pb-IF49UBEhJA== ip: azo~|j~|o~~``, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-26 18:23:49.252361 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jf, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-26 18:24:22.379167 + : pb-IF4HU04uVA== ip: azo~{a~~``ajb|, Device id: 4e640eec371acc5bb6ee7f6b6425e7bd747c7e97 -2023-05-26 18:27:15.982490 + : pb-IF5SMRkg ip: axi~{a~}haala, Device id: 98daa9f7bf80279fccd8791e07c9ff679d6d8928 -2023-05-26 18:27:55.109688 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jf, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-26 18:28:42.276872 + : pb-IF4nUnZfJg== ip: azo~|j~}kianb, Device id: 4ba0df99dfeca7b3c40f7493f1c2420e1b54ed88 -2023-05-26 18:29:00.343358 + : pb-IF4MUBMHKA== ip: azj~z`~~`~~h`, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-26 18:29:55.524436 + : pb-IF48UGNfIw== ip: a~h~}jdai`wvavo, Device id: 2bc6ec92331bc7739bb70f629a47e51ea5e93ad7 -2023-05-26 18:31:31.848216 + : pb-IF5WU0gIUQ== ip: azj~z`~}ibaji, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-26 18:40:41.022699 + : pb-IF4cUBYfCg== ip: azo~{m~~mia`f, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-26 18:41:55.475625 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-26 18:44:02.950871 + : pb-IF4zUGM-FA== ip: b}k~}kcaibvbj, Device id: b7eebf1d7c9f1638197e29a1294e4b076b437778 -2023-05-26 18:46:19.382598 + : pb-IF49UBAKMQ== started kick vote for pb-IF49UBEhJA==. -2023-05-26 18:46:49.389431 + : Kick vote End -2023-05-26 18:48:10.901254 + : pb-IF4cUBYfCg== ip: azo~{m~~mia`f, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-26 18:49:14.149629 + : pb-IF49UBEhJA== ip: azo~|j~|o~~``, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-26 18:49:20.173535 + : pb-IF4zUGM-FA== ip: b}k~}kcaibvbj, Device id: b7eebf1d7c9f1638197e29a1294e4b076b437778 -2023-05-26 18:51:06.535444 + : pb-IF4pVWkZEQ== ip: a~n~xj~{n~wk, Device id: 4dc4f7e737b494cb103044e46974704c12bdf08e -2023-05-26 18:51:27.762167 + : pb-IF4nUnZfJg== started kick vote for pb-IF5cVXUfKQ==. -2023-05-26 18:51:57.763199 + : Kick vote End -2023-05-26 18:52:34.866901 + : pb-IF49VFdbEQ== ip: an~}hfaiixva}o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-26 18:52:34.868526 + : pb-IF4sVVgTAg== ip: bxvf}va~j~~mh, Device id: c58f357adfb8a9dea4a87afb6a7d3b6638564f95 -2023-05-26 18:53:58.158016 + : pb-IF4oU0gCEQ== ip: dvva{vayn~wk, Device id: 94a5149fb5195a4ebd1e7d00d19c5736c3501a0d -2023-05-26 18:55:31.681169 + : pb-IF4LU0wKIw== ip: azj~zo~}hcaj`x, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-26 18:55:45.472771 + : pb-IF4nUnZfJg== started kick vote for pb-IF5SMRkg. -2023-05-26 18:56:15.473925 + : Kick vote End -2023-05-26 18:56:20.843980 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-26 18:57:09.010219 + : pb-IF49VFdbEQ== ip: an~}hfaiixva}o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-26 18:58:32.306546 + : pb-IF4oU0gCEQ== ip: dvva{vayn~wk, Device id: 94a5149fb5195a4ebd1e7d00d19c5736c3501a0d -2023-05-26 18:59:12.449791 + : pb-IF5TUGcdHQ== ip: awj~ya~~`baif, Device id: 8b2f41ba576a030b20ba14c2f73044438b5cba22 -2023-05-26 18:59:17.743756 + : pb-IF5cVXUfKQ== started kick vote for pb-IF5SMRkg. -2023-05-26 18:59:48.010704 + : Kick vote End -2023-05-26 19:02:00.047008 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-26 19:02:05.070803 + : pb-IF4LU0wKIw== ip: azj~zo~}hcaj`x, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-26 19:03:08.217942 + : pb-IF5cVXUfKQ== started kick vote for pb-IF4tUGg6Kw==. -2023-05-26 19:03:38.220390 + : Kick vote End -2023-05-26 19:04:04.566313 + : pb-IF49VFdbEQ== ip: an~}hfaiixva}o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-26 19:07:22.170677 + : pb-IF5RUGcjFA== ip: dvvcyvb}h~xk, Device id: a3ee7e1266a1734d3ae99ed1621c852d31f59410 -2023-05-26 19:08:12.348662 + : pb-IF4lU08ZIg== ip: ak~~odaievvd}, Device id: a46ae9fce543a8bf3cda6a4bc5040531f35fecd6 -2023-05-26 19:12:41.356941 + : pb-IF49VFdbEQ== ip: an~}hfaiixva}o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-26 19:15:18.630045 + : pb-IF4LU0wKIw== started kick vote for pb-IF4tUGg6Kw==. -2023-05-26 19:15:48.632718 + : Kick vote End -2023-05-26 19:17:51.461151 + : pb-IF40UBISLQ== ip: bxvf}vbzm~~id, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-26 19:20:03.810923 + : pb-IF4LU0wKIw== started kick vote for pb-IF4tUGg6Kw==. -2023-05-26 19:20:33.812418 + : Kick vote End -2023-05-26 19:20:34.037115 + : pb-IF4TUGEIDQ== ip: an~}hgajb~ve~, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-26 19:22:38.488882 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-26 19:26:51.780501 + : pb-IF4PV24yPA== ip: axi~yh~~aeam`, Device id: 5bd1087e38783d3d08f01cfce5d36dfbf8440740 -2023-05-26 19:30:10.931370 + : pb-IF4cUBYfCg== ip: azo~{m~~meajcx, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-26 19:30:31.020024 + : pb-IF41UBQPXA== ip: a}l~~hfaicyvbv, Device id: 4053d4ecb6d73d755ad3c574aa4bd40384b30b43 -2023-05-26 19:32:42.525601 + : pb-IF4CUm4jHw== ip: azj~z`~zl~}mc, Device id: 0c2f6241c570435a23eff32af93a7439749f5827 -2023-05-26 19:33:57.828550 + : pb-IF4PV24yPA== ip: axi~yh~~aeam`, Device id: 5bd1087e38783d3d08f01cfce5d36dfbf8440740 -2023-05-26 19:34:07.094402 + : pb-IF4CUm4jHw== started kick vote for pb-IF5TUGcdHQ==. -2023-05-26 19:34:32.225742 + : pb-IF4LU1RdUg== ip: azo~{m~wi~}hf, Device id: 013ebdc40cb805919e389d339fe790db1aeaa296 -2023-05-26 19:34:37.094684 + : Kick vote End -2023-05-26 19:35:15.387302 + : pb-IF4VVG8gNQ== ip: azo~zi~~idaa`, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-26 19:41:04.295821 + : pb-IF5RUxUmIw== ip: azj~zo~wj~}if, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-26 19:44:02.493396 + : pb-IF49VFdbEQ== ip: an~}hfaiixva}o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-26 19:44:13.514392 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4PV24yPA==. -2023-05-26 19:44:43.519344 + : Kick vote End -2023-05-26 19:45:54.655736 + : pb-IF4TUGEIDQ== started kick vote for pb-IF4PV24yPA==. -2023-05-26 19:46:24.660676 + : Kick vote End -2023-05-26 19:48:47.690047 + : pb-IF4VU3laVA== ip: ak~~n`aii{vbo, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-26 19:50:27.170585 + : pb-IF4VU3laVA== ip: ak~~n`aii{vbo, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-26 19:51:29.392265 + : pb-IF4yU1oxUg== ip: azo~|j~}jbaidz, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-26 19:51:39.068651 + : pb-IF4PV24yPA== started kick vote for pb-IF5WVG08Jw==. -2023-05-26 19:51:41.435407 + : pb-IF4sVXA_AA== ip: a|o~vo~~hcaih}, Device id: a36c04e19717ec7985b2438de4d2dc921d6dfda2 -2023-05-26 19:52:09.070538 + : Kick vote End -2023-05-26 19:53:02.702702 + : pb-IF4QUBQoBw== ip: a~o~}jcaibzvf{, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-26 19:53:38.827816 + : pb-IF49Umo-Fg== ip: dvvd|viyvi~, Device id: 2a3954f094899e7a2a36a8960dcc991cae03e487 -2023-05-26 19:54:09.915748 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4tUGg6Kw==. -2023-05-26 19:54:39.923239 + : Kick vote End -2023-05-26 19:55:52.313718 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh}vayn, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-26 19:56:59.552534 + : pb-IF4cVEsYVg== ip: b}k~~`gaofajdw, Device id: ea5889692f825c21e87c9c8bfed10b94e16c4923 -2023-05-26 19:58:26.970989 + : pb-IF40UBISLQ== ip: bxvf}vbzm~~id, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-26 19:58:49.058050 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-26 19:58:50.059024 + : pb-IF49UBEhJA== ip: a~o~}jcaibzvf{, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-26 19:59:11.142964 + : pb-IF49UBEhJA== ip: azo~|j~|o~xi, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-26 19:59:48.285624 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh}vayn, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-26 20:01:38.885336 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-26 20:04:11.523353 + : pb-IF4VVG8gNQ== started kick vote for pb-IF43UGMBEw==. -2023-05-26 20:04:41.526193 + : Kick vote End -2023-05-26 20:06:49.038469 + : pb-IF4cUBYfCg== ip: azo~{m~~kbaj, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-26 20:08:01.627266 + : pb-IF4TV2w6Bw== ip: azo~zi~|`~~k, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-05-26 20:11:52.717196 + : pb-IF4sUGMeVA== ip: dvvcyvam~zk, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-05-26 20:14:03.334049 + : pb-IF41U2scIg== ip: ak~za~xl~|`, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-26 20:16:11.257770 + : pb-IF41U2scIg== ip: ak~za~xl~|`, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-26 20:19:16.936684 + : pb-IF4sUGMeVA== started kick vote for pb-IF4VVG8gNQ==. -2023-05-26 20:19:46.940477 + : Kick vote End -2023-05-26 20:20:07.210311 + : pb-IF4WVBcPMg== ip: b}k~}kca`caii, Device id: f3fd1c7b5de269718339bb17b889e13c1a0189dc -2023-05-26 20:21:16.641622 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-26 20:23:05.005757 + : pb-IF4yU1AkCw== ip: azj~zo~~h~}lc, Device id: ccfb4c97f28111b3f4fb078a991e6426d78b4806 -2023-05-26 20:27:00.848014 + : pb-IF4sUGMeVA== ip: dvvcyvam~zk, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-05-26 20:28:26.730050 + : pb-IF4sUGMeVA== started kick vote for pb-IF4PIFQ9. -2023-05-26 20:28:42.797465 + : Kick vote End -2023-05-26 20:29:32.659268 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-26 20:30:48.954980 + : pb-IF4sUGMeVA== ip: dvvcyvam~zk, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-05-26 20:30:56.984975 + : pb-IF49VFdbEQ== ip: an~}hfaiixva}o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-26 20:33:20.870565 + : pb-IF4jUBMiCg== ip: azh~~jiai`}vf|, Device id: 110d204538538c5e9a37a58eb6c53fa6e365be08 -2023-05-26 20:34:03.060229 + : pb-IF41U2scIg== ip: ak~za~xl~|`, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-26 20:34:10.085946 + : pb-IF4cVXlaDQ== ip: ak~~j`aif{vf{, Device id: ce5e2f736e4e516430adfe856033f9b818cd17d6 -2023-05-26 20:42:11.550577 + : pb-IF4cVXlaDQ== started kick vote for pb-IF4uUBIvFA==. -2023-05-26 20:42:41.551833 + : Kick vote End -2023-05-26 20:44:54.416852 + : pb-JiNJARBTV0JFXlxFEkRZXFRFEkVZR1RD ip: ak~wm~}hfaic, Device id: 5ded5c53497b9126cebd3f3e8d646051a0b157da -2023-05-26 20:45:34.547599 + : pb-IF4VVG8gNQ== ip: azo~zi~~idaa`, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-26 20:47:06.928047 + : pb-IF4VVG8gNQ== ip: azo~zi~~idaa`, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-26 20:48:15.233862 + : pb-IF4cVWM9FQ== ip: dvva{vayl~}l, Device id: 95bfa8a9cb745991093bce708467012e1f3fe4a0 -2023-05-26 20:49:01.404613 + : pb-IF4sUGMeVA== ip: dvvcyvam~zk, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-05-26 20:53:02.915952 + : pb-IF4VVG8gNQ== ip: azo~zi~~idaa`, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-26 20:53:26.990452 + : pb-IF4jU2gAEg== ip: dvvbm~~hcaif}, Device id: 8e2eb965578d7898efa86a0fed19362451c05bea -2023-05-26 20:54:51.270352 + : pb-IF49VFdbEQ== ip: an~}hfaiixva}o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-26 21:01:35.669844 + : pb-IF4qUGFeUQ== ip: bxvevva|i~{n, Device id: d8acca0b644ea5850b40bbb047c2c8094389157a -2023-05-26 21:03:58.242790 + : pb-IF4gU2guKg== ip: azo~|l~}ibakb, Device id: 1ad5bb92201ddd7cd8354fea4106f13c339a56ae -2023-05-26 21:07:22.009264 + : pb-IF5QVFMCUg== ip: azo~{n~~ieaj`x, Device id: 3b483075b2023edb95e323dc2cc0d8dc516cae08 -2023-05-26 21:09:26.512854 + : pb-IF4gU2guKg== started kick vote for pb-JiNJARFYVERIWlZCEEVUXV1CFEJYT1ZK. -2023-05-26 21:09:42.584848 + : pb-IF4TU0QCXQ== ip: bxva~l~~niaie, Device id: 3a4932756f5db9bb30808c603f209c7200d339ac -2023-05-26 21:09:56.513065 + : Kick vote End -2023-05-26 21:12:38.523014 + : pb-IF5dU3UiAw== ip: azo~{a~~jiaif, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-26 21:14:05.643533 + : pb-IF4gU2guKg== started kick vote for pb-JiNJARFYVERIWlZCEEVUXV1CFEJYT1ZK. -2023-05-26 21:14:35.650584 + : Kick vote End -2023-05-26 21:15:15.692647 + : pb-IF5RUxMiVw== ip: an~}ifa``aj`, Device id: 9d463098b577236d54694360ddc52c0b469ba5d3 -2023-05-26 21:16:16.570096 + : pb-IF5RUxMiVw== started kick vote for pb-IF4gU2guKg==. -2023-05-26 21:16:46.574958 + : Kick vote End -2023-05-26 21:18:00.705586 + : pb-IF4GVXItMw== ip: azo~|m~}o~}ha, Device id: 3fb0b14e4dae1ebf9b6913b24d9709425a18ff66 -2023-05-26 21:18:42.464246 + : pb-IF4gU2guKg== started kick vote for pb-JiNJARFYVERIWlZCEEVUXV1CFEJYT1ZK. -2023-05-26 21:19:12.468691 + : Kick vote End -2023-05-26 21:19:30.046494 + : pb-IF4VUGcaJg== ip: azo~{m~~adaic, Device id: ed20a36839f481112ce1de70d22c5e3f95029783 -2023-05-26 21:21:37.837932 + : pb-IF5RUBkiKA== ip: a}j~~oaajbaoi, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-05-26 21:22:14.204313 + : pb-IF4gU2guKg== started kick vote for pb-JiNJARFYVERIWlZCEEVUXV1CFEJYT1ZK. -2023-05-26 21:22:44.210455 + : Kick vote End -2023-05-26 21:23:11.341624 + : pb-IF4TUxEoKg== ip: an~}ifajd~vf, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-26 21:25:24.814953 + : pb-IF4IUhAoKA== ip: an~}hfajazvb}k, Device id: 95ef1a6c6981a1ad8002680c6e1800b26ed4b5ef -2023-05-26 21:26:25.655063 + : pb-IF4IUhAoKA== ip: an~}hfajazvb}k, Device id: 95ef1a6c6981a1ad8002680c6e1800b26ed4b5ef -2023-05-26 21:26:25.655233 + : pb-IF4nUnBdNg== ip: a}j~~nbaie~vaya, Device id: 12c5ef4f3635e09675c5bf9d080e806eebef8bea -2023-05-26 21:26:42.720638 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-26 21:27:28.655858 + : pb-IF4nUnBdNg== started kick vote for pb-IF4TUxEoKg==. -2023-05-26 21:27:58.657917 + : Kick vote End -2023-05-26 21:29:18.767438 + : pb-IF5QVFMCUg== ip: azo~{n~~ieaj`x, Device id: 3b483075b2023edb95e323dc2cc0d8dc516cae08 -2023-05-26 21:29:57.914635 + : pb-IF4yU1oxUg== ip: azo~|j~}ifak, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-26 21:30:52.090645 + : pb-IF4yU1oxUg== ip: azo~|j~}ifak, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-26 21:36:28.523240 + : Server started -2023-05-26 21:36:34.548882 + : pb-IF4yU1oxUg== ip: azo~|j~|j~ya, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-26 21:38:52.085861 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-26 21:41:09.616783 + : pb-IF4OU2QjMQ== ip: an~}ifaje~va{i, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-26 21:42:50.974952 + : pb-IF4IVFkKNA== ip: bxvf~va{n~~l`, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-05-26 21:44:27.351907 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh}vayn, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-26 21:45:47.676935 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va}o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-26 21:46:03.738817 + : pb-IF4yU1oxUg== ip: azo~|j~|j~ya, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-26 21:46:59.965870 + : pb-IF4sAGcj ip: bxvewvb~vfw, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-26 21:47:05.993520 + : pb-IF4MUk0CEg== ip: an~~afaibamf, Device id: 7174b911724927259e55686521c8c22eddc6edbe -2023-05-26 21:48:20.287340 + : pb-IF4sAGcj ip: bxvewvb~vfw, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-26 21:48:40.352828 + : pb-IF40PkMh ip: d}va`~~afame, Device id: a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e -2023-05-26 21:49:31.540054 + : pb-IF5SUnUSXQ== ip: a~o~va~~l~}lg, Device id: a91ff2ba164562957878ae57213311e64b43b123 -2023-05-26 21:49:53.607230 + : pb-IF4LU1RdUg== ip: azo~{m~yo~}jd, Device id: 013ebdc40cb805919e389d339fe790db1aeaa296 -2023-05-26 21:54:47.629364 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va}o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-26 21:55:20.748931 + : pb-IF4IV04ZKw== | kicked > reason:Banned account -2023-05-26 21:57:27.213607 + : pb-IF4gVGxeXQ== ip: an~}ifajd~va|o, Device id: 75d797f1f12a16770177cf4b1302481e4c8bba39 -2023-05-26 21:58:30.427091 + : pb-IF4uUGQBNg== ip: azo~~iiajavviw, Device id: 5922e54bd841375ae94fa054e73873cafe48029f -2023-05-26 21:59:47.715502 + : pb-IF49UBEhJA== ip: a~o~}jcaibzvf{, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-26 22:00:01.791557 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va}o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-26 22:00:03.801117 + : pb-IF49UBEhJA== ip: azo~|j~|o~wn, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-26 22:01:19.022708 + : pb-IF49UBEhJA== ip: azo~|j~|o~wn, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-26 22:02:11.204420 + : pb-IF4WVBcPMg== ip: b}k~}kca`caii, Device id: f3fd1c7b5de269718339bb17b889e13c1a0189dc -2023-05-26 22:02:52.339501 + : pb-IF49UBEhJA== ip: azo~|j~|o~wn, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-26 22:02:56.358826 + : pb-IF49UBEhJA== ip: azo~|j~|o~wn, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-26 22:04:23.746008 + : pb-IF49UBEhJA== ip: a~o~}jcaibzvf{, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-26 22:04:38.793339 + : pb-IF49UBEhJA== ip: azo~|j~|o~wn, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-26 22:06:47.340976 + : pb-IF4wVVk8Jg== ip: bj~~ndaicxvc, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-05-26 22:08:03.642091 + : pb-IF4XUGI7Aw== ip: azo~|l~~meajay, Device id: 4d9a5d7925a267f0f2385f70a1f714be11ffc50f -2023-05-26 22:13:17.853823 + : pb-IF4sUGIlXA== ip: a~n~y`~xj~zk, Device id: dcdda98b080eb01311f889557875636a26b4dc88 -2023-05-26 22:14:09.070444 + : pb-IF4LVWEDKQ== ip: azo~{n~xn~zo, Device id: 5c96ca687fab72801befcfba1b905c3a95c0fb28 -2023-05-26 22:16:10.535502 + : pb-IF4xU1YlVw== ip: b}k~~`hanbaiiy, Device id: 74b57df016df2de62f715eb1932f5e0d81f67f05 -2023-05-26 22:22:56.104416 + : pb-IF41U2scIg== ip: ak~}hhaoaaia, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-26 22:24:34.427110 + : pb-IF40PkMh ip: d}va`~~afame, Device id: a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e -2023-05-26 22:28:55.353173 + : pb-IF5dU3UiAw== ip: azo~{a~~mdajb}, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-26 22:30:01.614060 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-26 22:32:01.050414 + : pb-IF4qU0MANA== ip: dxva~vbaihy, Device id: b94f7641875bba32452aeb62d84d413e6d3bc4ff -2023-05-26 22:32:28.153778 + : pb-IF4qU0MANA== ip: dxva~vbaihy, Device id: b94f7641875bba32452aeb62d84d413e6d3bc4ff -2023-05-26 22:35:04.725961 + : pb-IF4QU2ZeAw== ip: dvvczvavk~~je, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-26 22:35:20.764223 + : pb-IF4zUGM-FA== ip: b}k~}kcaibvbj, Device id: b7eebf1d7c9f1638197e29a1294e4b076b437778 -2023-05-26 22:36:42.023822 + : pb-IF43UkRZVQ== started kick vote for pb-IF4zUGM-FA==. -2023-05-26 22:37:12.029921 + : Kick vote End -2023-05-26 22:39:08.662763 + : pb-IF41U2scIg== ip: an~}j`aabaii, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-26 22:41:47.243046 + : pb-IF41U2scIg== ip: an~}j`aabaii, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-26 22:43:21.578504 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va}o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-26 22:44:36.841335 + : pb-IF41U2scIg== ip: ak~}hhaoaaia, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-26 22:44:57.935122 + : pb-IF41U2scIg== ip: ak~}hhaoaaia, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-26 22:45:15.015959 + : pb-IF5XUkoGDw== ip: dxvazvawa~}i, Device id: 28f13e74c66a938e7181be1e72c3c9f925f0833c -2023-05-26 22:45:28.062981 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG ip: a~o~va~}lfaje{, Device id: 822adb43af454f4ce0fdec16028787c26c151d5f -2023-05-26 22:49:49.969492 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va}o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-26 22:50:22.076453 + : pb-IF4VU3laVA== ip: ak~~n`aii{vbo, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-26 22:51:25.306907 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jg, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-26 22:52:32.583987 + : pb-IF4mUBcSNQ== ip: azj~z`~~n~{l, Device id: 04813a85716278e62069c80e53ffc0b79929387a -2023-05-26 22:53:10.715657 + : pb-IF4QU2ZeAw== ip: dvvczvavk~~je, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-26 22:58:42.812416 + : pb-IF4WUGQyPA== ip: ak~xh~|n~|i, Device id: 065cb87de02fe47b0ba32c0622eaefd3d8090768 -2023-05-26 22:59:21.955993 + : pb-IF4QU2ZeAw== ip: dvvczvavk~~je, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-26 22:59:49.044060 + : pb-IF4WUGQyPA== ip: ak~xh~|n~|i, Device id: 065cb87de02fe47b0ba32c0622eaefd3d8090768 -2023-05-26 23:00:03.083356 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va}o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-26 23:01:02.248022 + : pb-IF4cUBYfCg== ip: azo~{m~~k`anb, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-26 23:01:21.313130 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG ip: a~o~}laaje{vh{, Device id: 822adb43af454f4ce0fdec16028787c26c151d5f -2023-05-26 23:08:25.038956 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va}o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-26 23:09:12.219327 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB ip: b}k~~ohaj`wvaxj, Device id: 78c06b4d948c8b6425fd95b584f9c5243e2bfa5b -2023-05-26 23:09:22.240863 + : pb-IF4nUnBdNg== ip: a}j~~nbaie~vaya, Device id: 12c5ef4f3635e09675c5bf9d080e806eebef8bea -2023-05-26 23:13:16.290139 + : pb-IF4nUnBdNg== started kick vote for pb-IF4VU3laVA==. -2023-05-26 23:13:46.292193 + : Kick vote End -2023-05-26 23:14:06.328496 + : pb-IF4pU1oqVg== ip: a|j~~mdaliaac, Device id: 7ee71d578344c9f3f3ba95c6c87390e91fdfd2da -2023-05-26 23:15:54.683101 + : pb-IF5VVUtTFg== ip: a}j~~nbaie~vaya, Device id: f7d00c1e695a26c51c1e3ea08d6fb6077df63180 -2023-05-26 23:20:40.688788 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va}o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-26 23:21:05.755134 + : pb-IF4HU0cZJg== ip: dvvazn~x`~}kh, Device id: 6c085877fa75466fcb44553d4942051055b28a1d -2023-05-26 23:21:23.816321 + : pb-IF4nUnBdNg== ip: a}j~~nbaie~vaya, Device id: 12c5ef4f3635e09675c5bf9d080e806eebef8bea -2023-05-26 23:21:28.831532 + : pb-IF5VVUtTFg== ip: a}j~~nbaie~vaya, Device id: f7d00c1e695a26c51c1e3ea08d6fb6077df63180 -2023-05-26 23:22:07.986615 + : pb-IF4KU1M7JA== ip: an~}iaajdwvd{, Device id: 34d2aab6e9916f5078130b7d90690f3224e137ee -2023-05-26 23:26:51.187218 + : pb-IF4yUBA6AA== ip: avo~{h~xvdv, Device id: d6d4bd522f2522c08aad038e3a6e213f592f384c -2023-05-26 23:30:21.949884 + : pb-IF4TUxEoKg== ip: an~}ifajd~vf, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-26 23:30:46.042466 + : pb-IF4TUBkMUw== ip: azo~{a~~khalf, Device id: c53234887640640445df616dcc653f7c90ae1be3 -2023-05-26 23:31:11.125736 + : pb-IF41U2scIg== ip: ak~}hhaoaaia, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-26 23:37:43.523311 + : pb-IF4JKXA6 ip: dvvd|vd~va}, Device id: 038901e3f573647c56b00b3ea787ed48adca8f93 -2023-05-26 23:47:26.704727 + : pb-IF4qU0MANA== ip: dxva~vbaihy, Device id: b94f7641875bba32452aeb62d84d413e6d3bc4ff -2023-05-26 23:47:39.764217 + : pb-IF4MUk0CEg== ip: dvvcxve{va|n, Device id: 7174b911724927259e55686521c8c22eddc6edbe -2023-05-26 23:47:40.767622 + : pb-IF4qU0MANA== ip: dxva~vbaihy, Device id: b94f7641875bba32452aeb62d84d413e6d3bc4ff -2023-05-26 23:50:25.352413 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va}o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-26 23:52:11.754791 + : pb-JiNJARFaXUJIX11CFE9UVFJDFUJfQFRG ip: dxvazvb|vc}, Device id: d81c29ced772ddad7b68ccb46b56c63c3cab2393 -2023-05-27 00:02:08.237896 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va}o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-27 00:28:11.237342 + : pb-IF4OPhMg ip: an~}jbai`aie|, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-27 00:29:30.559867 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-27 00:30:16.740715 + : pb-IF4TUGEIDQ== ip: an~}hgaja}vg}, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-27 00:32:51.358922 + : pb-IF4VU3laVA== ip: ak~~n`aii{vbo, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-27 00:52:11.037330 + : pb-IF41U2scIg== ip: an~}ifaje}vb{i, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-27 00:54:35.533448 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va}o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-27 00:57:45.174837 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va}o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-27 01:06:17.001489 + : pb-JiNJARFaXUdIVF9DEEBVV1NFEkFbRVJA ip: dvvc|vbzj~}m, Device id: a840fdfe07ea29ce95e445516bcfd59f7dc6277d -2023-05-27 01:18:02.523333 + : pb-IF5QU3AaLg== ip: dvvc{va}`~~jf, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-27 01:20:23.097368 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-27 01:21:01.212877 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-27 01:21:27.314315 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-27 01:21:36.346215 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-27 04:36:39.053109 + : Server started -2023-05-27 04:52:58.519716 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-27 05:10:48.520646 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-27 05:13:33.122240 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-27 05:43:34.539302 + : pb-IF49VFdbEQ== ip: an~}hfaii|vb`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-27 05:55:52.128792 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-27 06:13:27.062958 + : pb-IF4CUm4jHw== ip: azj~z`~zl~}lc, Device id: 0c2f6241c570435a23eff32af93a7439749f5827 -2023-05-27 06:19:30.472543 + : pb-IF49VFdbEQ== ip: an~}hfaii|vb`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-27 06:38:25.629372 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-27 06:43:48.817930 + : pb-IF49VFdbEQ== ip: an~}hfaii|vb`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-27 06:43:53.836292 + : pb-IF49VFdbEQ== ip: an~}hfaii|vb`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-27 07:09:14.537529 + : pb-IF49VFdbEQ== ip: an~}hfaii|vb`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-27 07:11:44.061354 + : pb-IF49VFdbEQ== ip: an~}hfaii|vb`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-27 07:20:14.946357 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-27 07:27:41.668275 + : pb-IF4nUkteVA== ip: a}j~zh~}hbai`|, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-05-27 08:02:00.522097 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-27 08:43:33.296947 + : pb-IF4wUGUaMA==|| kicked > new account -2023-05-27 09:03:53.362164 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-27 09:04:08.426431 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-27 09:05:15.665681 + : pb-IF4XUGI7Aw== ip: azo~|l~~jiajdy, Device id: 4d9a5d7925a267f0f2385f70a1f714be11ffc50f -2023-05-27 09:07:11.477200 + : pb-IF5RUGcjFA== ip: dvvcyvb}h~~n`, Device id: a3ee7e1266a1734d3ae99ed1621c852d31f59410 -2023-05-27 09:07:12.483402 + : pb-IF4GUGRZUQ== ip: an~}ieaii{va|, Device id: 813281228201bd22680483b7f2014c891573f5d6 -2023-05-27 09:08:11.686137 + : pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA ip: dvvbo~}kcah, Device id: 936c205c0c65262d62300105d4329a28095c9790 -2023-05-27 09:14:46.289237 + : pb-IF5RUGcjFA== ip: dvvcyvb}h~~n`, Device id: a3ee7e1266a1734d3ae99ed1621c852d31f59410 -2023-05-27 09:15:00.328695 + : pb-IF5QU3AaLg== ip: a~o~vo~~naaie{, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-27 09:16:11.609502 + : pb-IF5QU3AaLg== ip: a~o~vo~~naaie{, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-27 09:16:42.713668 + : pb-IF5QU3AaLg== ip: a~o~vo~~naaie{, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-27 09:20:46.009326 + : pb-IF5QU3AaLg== ip: dvvc{vazm~~m, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-27 09:27:39.573320 + : pb-IF40UlUhJA== ip: ak~~oiajb|vb}i, Device id: 7224714a470e3a14106d7f3f1a010d4a71ee0367 -2023-05-27 09:30:14.131002 + : pb-IF40UBISLQ== ip: bxvf}vaxh~~kc, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-27 09:32:08.883606 + : pb-IF5RU2oJUA== ip: bxvf~vaxi~~ha, Device id: b52a0123a41243d56ed209aa5016622aec74d299 -2023-05-27 09:37:36.547299 + : pb-IF5RU2oJUA== ip: bxvf~vaxi~~ha, Device id: b52a0123a41243d56ed209aa5016622aec74d299 -2023-05-27 09:39:46.201877 + : pb-IF4cU2EZXQ== ip: azo~|`~}jiajc|, Device id: 663fc92db4d7724938f4742a5e8851bc8fb45806 -2023-05-27 09:40:29.358730 + : pb-IF5RUBkiKA== ip: a}j~~oaajbaoi, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-05-27 09:40:32.370695 + : pb-IF4cUBYfCg== ip: azo~{m~~miaif~, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-27 09:41:22.069773 + : pb-IF4QU2ZeAw== ip: dvvczvavj~~jf, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-27 09:43:43.599951 + : pb-IF4gUlApLQ== ip: azj~z`~~kfaif|, Device id: 9319cadd1846e185202f1dc30a3531007abfa5f9 -2023-05-27 09:43:56.629872 + : pb-IF4gUlApLQ== ip: azj~z`~~kfaif|, Device id: 9319cadd1846e185202f1dc30a3531007abfa5f9 -2023-05-27 09:44:19.703996 + : pb-IF5dU3UiAw== ip: azo~{a~~kdaaf, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-27 09:45:51.046419 + : pb-IF4gUlApLQ== ip: azj~z`~~kfaif|, Device id: 9319cadd1846e185202f1dc30a3531007abfa5f9 -2023-05-27 09:46:56.417094 + : pb-IF4oUlE_Vg== ip: an~~acaii~vawa, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-27 09:50:08.170686 + : pb-IF4pVWkZEQ== ip: a~n~xk~}iiajay, Device id: 4dc4f7e737b494cb103044e46974704c12bdf08e -2023-05-27 09:51:34.530991 + : pb-IF49UBEhJA== ip: azo~|j~|o~~i, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-27 09:55:57.503868 + : pb-IF4iUBIKLQ== ip: a~o~}haaicvb}a, Device id: 780ec63323bd815d6ac76a7152d35e4737a01f65 -2023-05-27 09:59:27.485275 + : pb-IF4cUBYfCg== ip: azo~{m~~mcajbz, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-27 10:00:51.810845 + : pb-IF4yVFgOVA== ip: ak~~n`ajc|vd, Device id: d854623f8a8ec9715c4cf1e44f2a453d5344d791 -2023-05-27 10:01:26.604921 + : pb-IF4oUlE_Vg== started kick vote for pb-IF4NVWgZDQ==. -2023-05-27 10:01:56.605743 + : Kick vote End -2023-05-27 10:03:20.070939 + : pb-IF40UBISLQ== ip: bxvf}vaxh~~kc, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-27 10:03:55.314009 + : pb-IF4OPhMg ip: an~}jbai`aie|, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-27 10:04:54.315053 + : pb-IF4OPhMg started kick vote for pb-IF4cUBYfCg==. -2023-05-27 10:05:24.318842 + : Kick vote End -2023-05-27 10:06:09.871962 + : pb-IF4tVFMiMw== ip: azj~zo~~jba`e, Device id: 573eb48f6919c7777a65c96da06eb25526f6d6d2 -2023-05-27 10:07:10.198246 + : pb-IF5WU0gIUQ== ip: azj~z`~}ieajb|, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-27 10:07:14.220736 + : pb-IF5VU0M_LQ== ip: azo~|k~xm~|k, Device id: 7b2727d145b0e46b4bebdbd8e17ae6105effa564 -2023-05-27 10:08:17.250040 + : pb-IF40UBISLQ== started kick vote for pb-IF4OPhMg. -2023-05-27 10:08:47.253476 + : Kick vote End -2023-05-27 10:13:34.950420 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvb{, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-27 10:18:27.828535 + : pb-IF4qUGgiPw==|| kicked > new account -2023-05-27 10:20:02.899720 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-27 10:20:20.955729 + : pb-IF4oUlE_Vg== ip: an~~acaii~vawa, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-27 10:21:02.097404 + : pb-IF4jF1NY ip: azj~z`~{a~~oi, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-27 10:23:28.881002 + : pb-IF4TUGEIDQ== ip: a~h~}jgambaie, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-27 10:25:32.341952 + : pb-IF4dUBUYLw== ip: dvvc{va{m~zm, Device id: d5a0a0e75dd171651c667880d22388f880122fbe -2023-05-27 10:27:07.969615 + : pb-IF4TUGEIDQ== started kick vote for pb-IF4dUBUYLw==. -2023-05-27 10:27:37.972243 + : Kick vote End -2023-05-27 10:31:54.720748 + : pb-IF4dUhkIMQ== ip: azo~{a~}jbaidx, Device id: 186f49fec4cca27c09c5e7b64af8abccdf81c625 -2023-05-27 10:31:59.324663 + : pb-IF4vUGgnJg==|| kicked > new account -2023-05-27 10:32:27.819740 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvb{, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-27 10:32:56.929419 + : pb-IF4nUGE7KA== ip: b}k~~`aambaihw, Device id: 13a1d48885d496e0b6ecebef433118d164ffa331 -2023-05-27 10:33:41.449979 + : pb-IF4HUBI8EQ== ip: an~~acajcxvg}, Device id: 3b32fb097832d359ee8f82fdb4305bb99dbcea67 -2023-05-27 10:33:54.169408 + : pb-IF4jF1NY started kick vote for pb-IF4nUGE7KA==. -2023-05-27 10:34:24.174244 + : Kick vote End -2023-05-27 10:34:29.633780 + : pb-IF41UBQPXA== ip: a}l~~hfaicyvbv, Device id: 4053d4ecb6d73d755ad3c574aa4bd40384b30b43 -2023-05-27 10:35:47.955059 + : pb-IF4QU2ZeAw== ip: dvvczvavj~xm, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-27 10:36:17.061474 + : pb-IF4cUBYfCg== ip: azo~{m~~mdaih{, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-27 10:36:19.063774 + : pb-IF4iUkcz ip: ak~}kaaiaxvb~i, Device id: 1e9ab85269e33a218e898daf1aa9e524fcdfb1fb -2023-05-27 10:38:00.419929 + : pb-IF4QUBQoBw== ip: an~yn~zn~~nc, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-27 10:47:36.870934 + : Server started -2023-05-27 10:47:37.878626 + : pb-IF40U1InIQ== ip: dxvc~vavk~vn, Device id: 4e747c2fb0258366b72c5410b7d5600842522ad2 -2023-05-27 10:47:37.878773 + : pb-IF4jF1NY ip: azj~z`~{a~~oi, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-27 10:47:37.878881 + : pb-IF49UBEhJA== ip: azo~|j~|o~~i, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-27 10:47:41.897580 + : pb-IF4cUBYfCg== ip: azo~{m~~mdaih{, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-27 10:47:41.897822 + : pb-IF4QU2ZeAw== ip: dvvczvavj~xm, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-27 10:47:42.902197 + : pb-IF4yU1oxUg== ip: azo~|j~|j~v, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-27 10:49:34.298561 + : pb-IF49UBEhJA== ip: azo~|j~|o~~i, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-27 10:50:56.603804 + : pb-IF5RUBkiKA== ip: a}j~~oaajbaoi, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-05-27 10:50:59.612715 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvb{, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-27 10:52:04.836417 + : pb-IF4jF1NY ip: azj~z`~{a~~oi, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-27 10:52:30.954161 + : pb-IF5dVVU4AQ== ip: azo~|k~}lcaidy, Device id: 91bcc19dd621005b987096a3be1f7d3c0552f8ad -2023-05-27 10:52:47.997766 + : pb-IF49UBEhJA== ip: azo~|j~|o~~i, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-27 10:54:40.417385 + : pb-IF49UBEhJA== ip: azo~|j~|m~~ke, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-27 10:54:52.467541 + : pb-IF4QUBQoBw== ip: an~yn~zn~~nc, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-27 10:54:57.491142 + : pb-IF4yU1oxUg== ip: azo~|j~|j~v, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-27 10:55:02.510547 + : pb-IF4QUBQoBw== ip: an~yn~zn~~nc, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-27 10:55:04.514848 + : pb-IF49UBEhJA== ip: azo~|j~|m~~ke, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-27 10:55:37.970639 + : pb-IF4DUGg4Kg==|| kicked > new account -2023-05-27 10:56:36.899263 + : pb-IF41U2scIg== ip: ak~za~xl~~kh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-27 10:57:09.024807 + : pb-IF4yU1oxUg== ip: azo~|j~|j~v, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-27 10:57:45.194041 + : pb-IF5QU3AaLg== ip: a~o~vo~~naaie{, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-27 10:58:09.274416 + : pb-IF4XU0gNJg== ip: a}j~~naalhaob, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-27 10:58:18.315118 + : pb-IF5QU3AaLg== ip: a~o~vo~~naaie{, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-27 10:58:50.433044 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~ja, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-27 10:59:19.871565 + : pb-IF4NUGcxKQ==|| kicked > new account -2023-05-27 11:00:04.726134 + : pb-IF5RU1lfAQ== ip: b}k~}jhajdvvbv, Device id: a6ebbd0c7acb2aec57ffe4b7fec625847473f863 -2023-05-27 11:02:48.361744 + : pb-IF5dVVU4AQ== started kick vote for pb-IF4XU0gNJg==. -2023-05-27 11:03:18.364372 + : Kick vote End -2023-05-27 11:04:22.584016 + : pb-IF4zUGcTFA== ip: an~~aeakbaif, Device id: cd205ac77e5d1926a696ce534b1c717e410eaef6 -2023-05-27 11:05:42.861416 + : pb-IF41U2scIg== ip: ak~za~xl~~kh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-27 11:08:04.373166 + : pb-IF4XU0gNJg== ip: a}j~~naalhaob, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-27 11:08:12.396588 + : pb-IF41U2scIg== ip: ak~za~xl~~kh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-27 11:08:22.432891 + : pb-IF4XU0gNJg== ip: a}j~~naalhaob, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-27 11:08:35.481366 + : pb-IF5dU3UiAw== ip: azo~{a~~mbajb}, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-27 11:12:39.382665 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-27 11:14:46.838682 + : pb-IF4GUGcjXA== ip: dvvcyvg~va}i, Device id: 9574634229f1a2f596ef116191ba9f589c507464 -2023-05-27 11:17:57.487642 + : pb-IF5WU0gIUQ== ip: azj~z`~}ieajc, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-27 11:19:06.738863 + : pb-IF4NVxAZDg== ip: dvvcyva~m~}ji, Device id: 9dda09fcf9a3701e0e8edddd357f35fc1813050f -2023-05-27 11:19:09.747963 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~ja, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-27 11:19:46.872773 + : pb-IF4nUnZfJg== ip: azo~|j~}kgaih~, Device id: 4ba0df99dfeca7b3c40f7493f1c2420e1b54ed88 -2023-05-27 11:20:29.025518 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvb{, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-27 11:21:35.247754 + : pb-IF4QUkwbKw== ip: bxvevvb{i~~j`, Device id: 4d20e8f79ba00daac68dba531a872e8f6e61b109 -2023-05-27 11:22:31.453405 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvb{, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-27 11:23:28.611717 + : pb-IF4XU0gNJg== ip: a}j~~naalhaob, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-27 11:25:31.041923 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-27 11:26:21.240426 + : pb-IF41U2scIg== ip: ak~za~xl~~kh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-27 11:27:04.251537 + : kicked Supervis35 -2023-05-27 11:29:56.057951 + : pb-IF5UVWEBPw== ip: azj~z`~}icaiiy, Device id: 0dd14e3f7f50647af8557d65a1b557e2174ba7fe -2023-05-27 11:33:45.889330 + : pb-IF4nU0UJJg== ip: ak~~ogaj`{vam, Device id: c7558f260c97b9103325228f0d4014d4bfe175ef -2023-05-27 11:36:21.427198 + : pb-IF5QU1EMXA== ip: b}k~~ofajcaia{, Device id: b120aa28357a03af020a341564361c4b11be2cd2 -2023-05-27 11:36:51.569866 + : pb-IF5QU1EMXA== ip: b}k~~ofajcaia{, Device id: b120aa28357a03af020a341564361c4b11be2cd2 -2023-05-27 11:39:11.051043 + : pb-IF4FU2QiKQ== ip: an~}iaaia{vavo, Device id: 9aeaea5032ef8172cbd1a983cc17ea18a73e3466 -2023-05-27 11:42:25.758311 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-27 11:42:48.817424 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~ja, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-27 11:44:14.153425 + : pb-IF4wVVk8Jg== ip: bj~~ndaicxvc, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-05-27 11:44:38.237682 + : pb-IF4DV3MCHQ== ip: ak~~oea`hakf, Device id: 0c06464047322db7f7caeaa037beae74df787275 -2023-05-27 11:45:02.335548 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~ja, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-27 11:46:12.558206 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~ja, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-27 11:46:12.558514 + : pb-IF41U2scIg== ip: ak~za~xl~~kh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-27 11:46:34.637852 + : pb-IF5dU3UiAw== ip: azo~{a~~mbajb}, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-27 11:47:16.764263 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~ja, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-27 11:48:26.045694 + : pb-IF4cUBYfCg== ip: azo~{m~~lcaihv, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-27 11:51:30.720417 + : pb-IF5dU3UiAw== ip: azo~{a~~mbajb}, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-27 11:54:45.065754 + : pb-IF5dU3UiAw== started kick vote for pb-IF4OUBAqNQ==. -2023-05-27 11:55:15.066513 + : Kick vote End -2023-05-27 11:55:50.701370 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-27 12:04:16.640367 + : pb-IF5VU1JZMw== ip: an~}ica`eaig}, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-05-27 12:04:37.727767 + : pb-IF5RUGcjFA== ip: dvvcyvb}k~~ma, Device id: a3ee7e1266a1734d3ae99ed1621c852d31f59410 -2023-05-27 12:05:56.097973 + : pb-IF4nVW0_LQ== ip: ak~}mbajdajc{, Device id: 806b0c23668487da48d132da3807efb358a96935 -2023-05-27 12:10:23.229625 + : pb-IF4SUGYAFA== ip: awh~~a`ai`vvb{o, Device id: 7387088e488c7c317c3df0278171f537b27e821c -2023-05-27 12:10:58.366552 + : pb-IF4XU0gNJg== ip: a}j~~naalhaob, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-27 12:11:45.546405 + : pb-IF4gU0wxBw== ip: ak~za~xl~~kh, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-27 12:12:35.762192 + : pb-IF4yVEspVg== ip: a|j~~mdaic{vb}k, Device id: 18804ca4703453b1b0df23973b98da9e7e589048 -2023-05-27 12:13:16.905605 + : pb-IF5RUxUmIw== ip: azj~zo~{`~~, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-27 12:13:44.132845 + : pb-IF4rUBQaPA== ip: ak~{j~~agaj, Device id: 064b2c52fd803233ad634f546e50d6c5bc531c27 -2023-05-27 12:14:07.522774 + : pb-IF5VU1JZMw== started kick vote for pb-IF4vVVACVg==. -2023-05-27 12:14:37.526813 + : Kick vote End -2023-05-27 12:15:25.507377 + : pb-IF4RU2snIg== ip: dvvc{va|h~~k`, Device id: 93d6cc6357632a4dc653ec7937d95b077207c9a4 -2023-05-27 12:16:21.714996 + : pb-IF4hVVVeHQ== ip: ak~}ifa``aj`|, Device id: d48264bb111e9406c995bd034461104ca7dd849f -2023-05-27 12:18:25.461198 + : pb-IF4eUGgINw==|| kicked > new account -2023-05-27 12:19:13.315561 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-27 12:21:01.740323 + : pb-IF4sAGcj ip: a}j~~ogaif}vb}, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-27 12:23:46.360152 + : pb-IF4XU0gNJg== ip: a}j~~naalhaob, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-27 12:24:23.523974 + : pb-IF4sAGcj ip: a}j~~ogaif}vb}, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-27 12:33:51.836926 + : pb-IF4XUGI7Aw== ip: azj~z`~zn~~ma, Device id: 4d9a5d7925a267f0f2385f70a1f714be11ffc50f -2023-05-27 12:34:06.889281 + : pb-IF5WUBQSKA== ip: a|j~~mdakhajd~, Device id: 25593685c80b345d34e3de5830db1e9d49d72369 -2023-05-27 12:38:24.988504 + : pb-JiNJARFfU0BFVVdIGEBUVlxAEEJXTlhD ip: azj~zo~}o~~j, Device id: f6e1ff389f081a91c4ecfd8ceb1f8e5f9245ae06 -2023-05-27 12:39:55.262390 + : pb-IF49UBEhJA== ip: azo~|j~|m~|k, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-27 12:40:26.358780 + : pb-IF4XUGI7Aw== ip: azj~z`~zn~~ma, Device id: 4d9a5d7925a267f0f2385f70a1f714be11ffc50f -2023-05-27 12:41:40.655044 + : pb-IF4GUxUZKg== ip: bm~}mcaibviv, Device id: 72ecfa7f79480445d2faecb4c4a323c238ce3108 -2023-05-27 12:42:20.795160 + : pb-IF4yU1oxUg== ip: azo~|j~|j~wl, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-27 12:42:30.832023 + : pb-IF49UBEhJA== ip: azo~|j~|m~|k, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-27 12:44:02.485669 + : pb-IF4GUxUZKg== started kick vote for pb-IF4iVWEtVg==. -2023-05-27 12:44:10.781738 + : pb-IF4wUGgaLQ==|| kicked > new account -2023-05-27 12:44:20.237450 + : pb-IF5dUGlaLQ== ip: awj~ya~~ngajav, Device id: 71cf0f7af386ac72bfcc5dc08191078bc3d99ac4 -2023-05-27 12:44:32.490668 + : Kick vote End -2023-05-27 12:45:41.616196 + : pb-IF4yU1oxUg== ip: azo~|j~|l~~o, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-27 12:45:55.666416 + : pb-IF5WUm0uUQ== ip: azo~{i~}mbaid~, Device id: d5eea87fb0585dd66d65645f49e153819ce381dd -2023-05-27 12:46:01.679257 + : pb-IF49UBEhJA== ip: azo~|j~|m~|k, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-27 12:46:16.742763 + : pb-IF4qUBYCLg== ip: dxvb{o~~aeaie~, Device id: 9b5a9e6c39be53e7579a611f59b52aa02ed87225 -2023-05-27 12:46:26.764757 + : pb-IF4yU1oxUg== ip: azo~|j~|l~~o, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-27 12:46:40.147368 + : pb-IF5VU1JZMw== started kick vote for pb-IF4iVWEtVg==. -2023-05-27 12:46:45.823986 + : pb-IF41U2scIg== ip: ak~za~xl~~kh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-27 12:46:53.006838 + : kicked UnderdogLy -2023-05-27 12:46:53.014318 + : Kick vote End -2023-05-27 12:47:12.936148 + : pb-IF41EloZ ip: azj~z`~|`~|k, Device id: b1ff53c5b37c084eefb6145c337c577be3ebb973 -2023-05-27 12:50:39.821504 + : pb-IF4sAGcj ip: a}j~~ogaif}vb}, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-27 12:50:47.849199 + : pb-IF5UUGk8BA== ip: dvvcxvevb~o, Device id: 89970093d420b089d6634e579d5e6c731c48478b -2023-05-27 12:51:02.065413 + : pb-IF5SU1ctNA== ip: azh~~jiai`}vb, Device id: 3ba72972b14995dce80d1a9b7a38f7accbbaea8a -2023-05-27 12:51:06.081976 + : pb-IF5QU0hfJg== ip: b}k~~`gaiazvayi, Device id: 677f389f0219f962e7c2dbcb7cc2477c8de2861a -2023-05-27 12:51:18.126562 + : pb-IF5RUGcjFA== ip: dvvcyvb}k~~ma, Device id: a3ee7e1266a1734d3ae99ed1621c852d31f59410 -2023-05-27 12:52:54.456838 + : pb-IF4yUGYGAw== ip: an~}iganeaigw, Device id: 7dc4e200f2f64ef666440b6a7a04ac9a843cd427 -2023-05-27 12:53:32.607877 + : pb-IF5SU1ctNA== ip: azh~~jiai`}vb, Device id: 3ba72972b14995dce80d1a9b7a38f7accbbaea8a -2023-05-27 12:57:16.589842 + : pb-IF5QU1EMXA== ip: axi~zi~~niaai, Device id: b120aa28357a03af020a341564361c4b11be2cd2 -2023-05-27 12:57:19.606253 + : pb-IF4sAGcj ip: a}j~~ogaif}vb}, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-27 12:57:20.610587 + : pb-IF4XUGI7Aw== ip: azj~z`~zn~~ma, Device id: 4d9a5d7925a267f0f2385f70a1f714be11ffc50f -2023-05-27 12:57:32.658830 + : pb-IF5QU1EMXA== ip: axi~zi~~niaai, Device id: b120aa28357a03af020a341564361c4b11be2cd2 -2023-05-27 12:57:52.739379 + : pb-IF5QU1EMXA== ip: axi~zi~~niaai, Device id: b120aa28357a03af020a341564361c4b11be2cd2 -2023-05-27 12:58:29.842873 + : pb-IF4UUGFZXQ== ip: bxvf|vbi~~af, Device id: aac81e863d532079b7a041504a175dee8db64c60 -2023-05-27 12:58:44.921170 + : pb-IF4MUBMHKA== ip: azj~z`~~a~~kd, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-27 13:07:55.234842 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~ja, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-27 13:10:32.026450 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-27 13:10:58.129023 + : pb-IF4wU1MPEg== ip: b}k~}jea`faiby, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-27 13:11:20.194340 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-27 13:11:53.309803 + : pb-IF4XUkwbKQ== ip: ak~~j`aje|vgy, Device id: 56c52a22f44677a8424476af52c088d00b14a484 -2023-05-27 13:12:32.455671 + : pb-IF41U2scIg== ip: ak~za~xl~~kh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-27 13:12:43.487761 + : pb-IF41U2scIg== ip: ak~za~xl~~kh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-27 13:13:02.544001 + : pb-IF41U2scIg== ip: ak~za~xl~~kh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-27 13:16:40.318750 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-27 13:17:49.176672 + : pb-IF5TUGo6VQ==|| kicked > new account -2023-05-27 13:19:22.979750 + : pb-IF4LU0wKIw== ip: azj~zo~~aeaigx, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-27 13:20:53.380441 + : pb-IF4LU0wKIw== started kick vote for pb-IF4UUGQSMw==. -2023-05-27 13:21:23.383494 + : Kick vote End -2023-05-27 13:23:00.834721 + : pb-IF4nUGE7KA== ip: b}k~~`aambaihw, Device id: 13a1d48885d496e0b6ecebef433118d164ffa331 -2023-05-27 13:26:12.784021 + : pb-IF4nUnBdNg== ip: a}j~~nbaie~vaya, Device id: 12c5ef4f3635e09675c5bf9d080e806eebef8bea -2023-05-27 13:26:53.921489 + : pb-IF4sU0RbLQ== ip: azo~{n~}idaib, Device id: bdd596e1a861fd98c8775436be07e49fc7904a77 -2023-05-27 13:26:55.926623 + : pb-IF4xUnQNVA== ip: dvvc{vbzl~wn, Device id: 477a46d48ec2c3a3ed0c4fb1e42c2d889ad8233f -2023-05-27 13:30:23.661630 + : pb-IF5RUGcjFA== ip: dvvcyvb}k~~ma, Device id: a3ee7e1266a1734d3ae99ed1621c852d31f59410 -2023-05-27 13:36:49.981044 + : pb-IF4zUBUlNg== ip: awj~ya~~n~}ih, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-27 13:38:26.326985 + : pb-IF4FU3ouHA== ip: azo~{`~}k`alh, Device id: 92af5150dccfca83d07caf60ecc60006471e8626 -2023-05-27 13:41:13.976321 + : pb-IF4LU0wKIw== ip: azj~zo~~aeaigx, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-27 13:42:22.248188 + : pb-IF4TUGQ5Ng== ip: dvvbo~}jdam, Device id: 3857f20cc88787e2306d1b5cfb2f6115c51da8ea -2023-05-27 13:42:57.648599 + : pb-IF4XU0gNJg== ip: a}j~~naalhaob, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-27 13:43:05.683047 + : pb-IF5RUGcjFA== ip: dvvcyvb}k~~ma, Device id: a3ee7e1266a1734d3ae99ed1621c852d31f59410 -2023-05-27 13:48:44.981186 + : pb-IF5XUkoGDw== ip: dxvazvayn~~la, Device id: 28f13e74c66a938e7181be1e72c3c9f925f0833c -2023-05-27 13:50:53.492985 + : pb-IF4-UxkjPQ== ip: d|vbzh~~neaia~, Device id: 9e3ce53e5c0a8427d0d8155212f465e8180c0ef1 -2023-05-27 13:51:11.543391 + : pb-IF4yU0hYEw== ip: awj~ya~~ogaib|, Device id: 052bbfd43b91c5bc01d4ba79df1c076697418a48 -2023-05-27 13:53:36.032433 + : pb-IF4-UxkjPQ== ip: d|vbzh~~neaia~, Device id: 9e3ce53e5c0a8427d0d8155212f465e8180c0ef1 -2023-05-27 13:54:47.294264 + : pb-IF4BV2gDEA== ip: azo~{a~~`iajay, Device id: 4e495003c3ee4760bccb997a6f3f8f2378e6c857 -2023-05-27 13:55:26.399645 + : pb-IF4XU0gNJg== ip: a}j~~naalhaob, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-27 14:00:28.663900 + : pb-IF5RUBkiKA== ip: a}j~~oaajbaoi, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-05-27 14:02:34.246007 + : pb-IF4xUnMjHA== ip: azj~zo~}heajav, Device id: abef0345f297fcf5ef15f3fbd92ec67ba4254c36 -2023-05-27 14:02:37.264681 + : pb-IF5RUBkiKA== ip: a}j~~oaajbaoi, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-05-27 14:03:07.390413 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-27 14:03:12.414803 + : pb-IF4AV1QqEQ== ip: an~}ica`ca`g, Device id: 2331b3822293d621f32ade855f2e13b5f48a2f9e -2023-05-27 14:03:18.442114 + : pb-IF41U1hbMQ== ip: dvvc|vbi~~h, Device id: 6bf82f1bc3f6e36ff156ce7af41d7ea8797d4fc1 -2023-05-27 14:04:11.640815 + : pb-IF4rUBUSCw== ip: dxva~vb{o~}h, Device id: 9764f262b5644b05848dcfc5a0282e42295d5aca -2023-05-27 14:04:13.647253 + : pb-IF4sUBkIVQ== ip: axi~xa~~ofa`i, Device id: e83123b79f3c68739829f34133be4c660064fee9 -2023-05-27 14:06:02.069174 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-27 14:06:28.179646 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-27 14:07:15.330880 + : pb-IF4WUBJcVQ== ip: ak~}maamiaiav, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-27 14:08:46.635325 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~ja, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-27 14:10:48.270585 + : pb-IF4nUkteVA== ip: a}j~zh~}hbaigy, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-05-27 14:10:53.431742 + : pb-IF4AV1QqEQ== started kick vote for pb-IF40UncaLg==. -2023-05-27 14:11:23.434660 + : Kick vote End -2023-05-27 14:12:27.663199 + : pb-IF4VVG8gNQ== ip: azo~zi~~hhaah, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-27 14:15:17.280746 + : pb-IF4VVG8gNQ== ip: azo~zi~~hhaah, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-27 14:15:37.344917 + : pb-IF4-UmkFBA== ip: dvvcyvavvawi, Device id: c32ba38f527fb43227828fe367ed8f9dc4352890 -2023-05-27 14:16:07.464837 + : pb-IF4PU2Y6VQ== ip: a~h~}jfaigvva~n, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-05-27 14:17:23.807615 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4PU2Y6VQ==. -2023-05-27 14:17:53.813994 + : Kick vote End -2023-05-27 14:18:10.911826 + : pb-IF4cUBYfCg== ip: azo~{m~~kaajf, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-27 14:19:08.310906 + : pb-IF41U1hbMQ== ip: dvvc|vbi~~h, Device id: 6bf82f1bc3f6e36ff156ce7af41d7ea8797d4fc1 -2023-05-27 14:20:46.673271 + : pb-IF4jF1NY ip: azj~z`~{l~~l`, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-27 14:21:13.770203 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-27 14:21:19.289431 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4wU1MPEg==. -2023-05-27 14:21:49.296092 + : Kick vote End -2023-05-27 14:22:12.102779 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-27 14:22:51.260628 + : pb-IF5QUGoIJg== ip: an~}jbakiao`, Device id: 6522b069aa72884b7550bf315e404578f937c1b1 -2023-05-27 14:23:12.321688 + : pb-IF4nU1AkLA== ip: azj~z`~|`~}hc, Device id: b5f844c899144c28f2a06fff0e82c4c9f216e0b4 -2023-05-27 14:25:00.287359 + : pb-IF4jF1NY started kick vote for pb-IF4IUBIOCQ==. -2023-05-27 14:25:08.722819 + : pb-IF4OPhMg ip: an~}jbai`aie|, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-27 14:25:24.235940 + : Kick vote End -2023-05-27 14:26:16.966098 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-27 14:26:53.090735 + : pb-IF4cUBYfCg== ip: azo~{m~~kaajf, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-27 14:27:26.177612 + : pb-IF4PUGRbFw== ip: ak~~kiajbvb}j, Device id: f8a5c3649d10f1b31203b00b90bafffd263d41e5 -2023-05-27 14:28:03.985409 + : pb-IF43UGgnIA==|| kicked > new account -2023-05-27 14:29:11.829657 + : pb-IF4pU1koPw== ip: azo~|a~ym~~hf, Device id: 11a63e8e99753a2a78f9b112d9472549abd6cb45 -2023-05-27 14:29:25.855344 + : pb-IF4-Um4_Lw== ip: azj~zo~~jeaie|, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-05-27 14:30:24.064332 + : pb-IF4AV1QqEQ== ip: an~}ica`ca`g, Device id: 2331b3822293d621f32ade855f2e13b5f48a2f9e -2023-05-27 14:30:37.893517 + : pb-IF48UkYSPQ== started kick vote for pb-IF4jF1NY. -2023-05-27 14:30:50.159696 + : pb-IF49UBEhJA== ip: azo~|j~|m~vh, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-27 14:31:07.892518 + : Kick vote End -2023-05-27 14:31:46.351697 + : pb-IF5dU3UiAw== ip: azo~{a~~k`a`c, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-27 14:32:15.443124 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-27 14:34:30.712797 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5dU3UiAw==. -2023-05-27 14:35:00.718345 + : Kick vote End -2023-05-27 14:37:33.600930 + : pb-IF4VVG8gNQ== ip: azo~zi~~hhaah, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-27 14:37:34.607631 + : pb-IF4OPhMg ip: an~}jbai`aie|, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-27 14:38:04.704132 + : pb-IF4UVRRfNw== ip: a~h~}jfaaiai`{, Device id: 22338eac02bdee1ba8b06a9fc0ecf9926b2cf226 -2023-05-27 14:38:42.867501 + : pb-IF4AV1QqEQ== ip: an~}ica`ca`g, Device id: 2331b3822293d621f32ade855f2e13b5f48a2f9e -2023-05-27 14:39:31.076407 + : pb-IF4OU1oBDA== ip: a~o~}ieaii|vgx, Device id: ac6c8a797f46a8d40de658820234dbf48b5173a0 -2023-05-27 14:39:32.079846 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~ja, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-27 14:40:27.277728 + : pb-IF4HUGMHPQ== ip: ak~~miaieyve, Device id: 820617e63444ab108ccb95cc488a6ec247cc8d4d -2023-05-27 14:41:22.474493 + : pb-IF4AV1QqEQ== ip: an~}ica`ca`g, Device id: 2331b3822293d621f32ade855f2e13b5f48a2f9e -2023-05-27 14:42:47.403165 + : pb-IF4nUxE4Nw== started kick vote for pb-IF4HUGMHPQ==. -2023-05-27 14:42:58.838991 + : pb-IF4XUGI7Aw== ip: azj~z`~zn~~le, Device id: 4d9a5d7925a267f0f2385f70a1f714be11ffc50f -2023-05-27 14:43:17.402776 + : Kick vote End -2023-05-27 14:45:15.299486 + : pb-IF4LUBQaEg== ip: an~}icaie{vam, Device id: 866d38b10ec8b8d18610003d6282b0fec64a2f96 -2023-05-27 14:46:16.931243 + : pb-IF4jF1NY started kick vote for pb-IF4nU1AkLA==. -2023-05-27 14:46:46.937341 + : Kick vote End -2023-05-27 14:49:41.376571 + : pb-IF4iVWEtVg== ip: ak~~lbai`yve|, Device id: 23e55a2ede066d26e972afe6d9f5c191257253ac -2023-05-27 14:50:29.542930 + : pb-IF5SUmpeIw== ip: a~h~}jda`baj`, Device id: ef66c32fc54e9b6e23979b4c5829945e8ff6c648 -2023-05-27 14:50:50.718527 + : pb-IF5dU3UiAw== started kick vote for pb-IF4iVWEtVg==. -2023-05-27 14:50:56.775996 + : pb-IF4FVFUxVw== | kicked > reason:Banned account -2023-05-27 14:51:20.725325 + : Kick vote End -2023-05-27 14:52:03.039148 + : pb-IF4lVFAEAQ== ip: ak~~mhaibvfv, Device id: 1938637a49c434a9d0617c2b4db2d581d9613be4 -2023-05-27 14:54:20.529681 + : pb-IF4XUGI7Aw== ip: azj~z`~zn~~le, Device id: 4d9a5d7925a267f0f2385f70a1f714be11ffc50f -2023-05-27 14:54:27.559463 + : pb-IF4PUGRbFw== ip: ak~~kiajbvb}j, Device id: f8a5c3649d10f1b31203b00b90bafffd263d41e5 -2023-05-27 14:55:37.080705 + : pb-IF49UBEhJA== ip: azo~|j~|m~vh, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-27 14:58:44.731974 + : pb-IF5VVU4CKA== ip: a|j~~mdaigvvb{a, Device id: d8e258714e814fda309a4d9a18f16b48d4080ddf -2023-05-27 14:59:07.064587 + : pb-IF5dU3UiAw== started kick vote for pb-IF5VVU4CKA==. -2023-05-27 14:59:23.872777 + : pb-IF4VVG8gNQ== ip: azo~zi~~hfajcv, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-27 14:59:37.066174 + : Kick vote End -2023-05-27 15:01:06.020260 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4PUGRbFw==. -2023-05-27 15:01:36.028111 + : Kick vote End -2023-05-27 15:03:19.706187 + : pb-IF4sU3VSMg== ip: dvvc}vazh~~kf, Device id: cb6dd8b1d356943cea4f7e54c07fc932a91971ec -2023-05-27 15:05:36.179368 + : pb-IF5WUGQIUQ== ip: azo~zi~wm~|h, Device id: e0cb62aa33d1348f30bc1a28e8f99645905eabb1 -2023-05-27 15:06:33.392833 + : pb-IF4iU3YCPA== ip: an~}i`aihvbw, Device id: 7cf0673a9a379625e931a56a3c859c7afc7fbf69 -2023-05-27 15:08:23.375880 + : pb-IF4jF1NY started kick vote for pb-IF4sU3VSMg==. -2023-05-27 15:08:53.381508 + : Kick vote End -2023-05-27 15:11:04.481492 + : pb-IF4uU0YhHA== ip: azo~{m~ym~~lb, Device id: 9a64711cf529ee878368683500782e8040c2b40b -2023-05-27 15:11:27.550784 + : pb-IF4cUBYfCg== ip: azo~{m~~kaajf, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-27 15:12:41.369051 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4UVRRfNw==. -2023-05-27 15:12:59.137562 + : pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB ip: ak~{`~~h`aoc, Device id: rikkolovescats :3 -2023-05-27 15:13:11.372230 + : Kick vote End -2023-05-27 15:15:46.723931 + : pb-IF4qUGZSDQ== ip: b}k~~`eaobajc, Device id: 63d70e6c7211d4ba9ee416f1db96b1973099409c -2023-05-27 15:18:09.394626 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4PUGRbFw==. -2023-05-27 15:18:26.312685 + : pb-IF4sAGcj ip: a}j~~ogaif}vb}, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-27 15:18:39.399567 + : Kick vote End -2023-05-27 15:19:22.556562 + : pb-IF4QVVQSKg== ip: a~m~vo~zva~i, Device id: 409432bfe8f3ccbc62df1502d1407475e18ca7f7 -2023-05-27 15:20:56.092102 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-27 15:21:24.175304 + : pb-IF4qUGZSDQ== ip: b}k~~`eaobajc, Device id: 63d70e6c7211d4ba9ee416f1db96b1973099409c -2023-05-27 15:24:00.769762 + : pb-IF4VVG8gNQ== ip: azo~zi~~hfajcv, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-27 15:25:10.007594 + : pb-IF4XUGYaFQ== ip: a|j~~mdakfalc, Device id: cea5ca751787a9aa358a197e56866072964ff0f0 -2023-05-27 15:26:08.885449 + : pb-IF4eUGgGNA==|| kicked > new account -2023-05-27 15:27:19.889063 + : pb-IF4qUGZSDQ== ip: b}k~~`eaobajc, Device id: 63d70e6c7211d4ba9ee416f1db96b1973099409c -2023-05-27 15:27:31.148645 + : pb-IF4XUGYaFQ== ip: a|j~~mdakfalc, Device id: cea5ca751787a9aa358a197e56866072964ff0f0 -2023-05-27 15:27:55.368884 + : pb-IF4mVXcRDw== ip: d|vbzh~~neaia~, Device id: 19bf23cb551a74c07f40e0199cb280fa7be45b1b -2023-05-27 15:28:14.835964 + : pb-IF4sAGcj ip: a}j~~ogaif}vb}, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-27 15:28:48.945515 + : pb-IF4qUmQOCA== ip: dvvc}vb}o~~kf, Device id: 43e9fdfb1afe596bb7258dabda590ee142919b26 -2023-05-27 15:30:08.177113 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-27 15:31:06.757396 + : pb-JiNJVxFdUENHX1pFFEFYXV1EEUVdQldD ip: dvvcxvb{i~|l, Device id: c9b631c4917eb71e9cf9158b19994150c9894b27 -2023-05-27 15:36:20.560678 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-27 15:36:25.573598 + : pb-IF5dU3UiAw== ip: azo~{a~~miaif{, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-27 15:36:33.590130 + : pb-IF5TUBdbMA== ip: azj~zo~zk~}kf, Device id: e5b69290f8e21530c13667a697cb5180b10316da -2023-05-27 15:36:34.594370 + : pb-IF4mUBcSNQ== ip: azj~z`~~n~wa, Device id: 04813a85716278e62069c80e53ffc0b79929387a -2023-05-27 15:36:40.610800 + : pb-IF40UBUjPw== ip: an~}j`aih|viz, Device id: 89648e159a6804148e08248496881e44ccea72ec -2023-05-27 15:37:03.696820 + : pb-IF4cUktZNg== ip: a~h~}keajcwva~k, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-27 15:41:53.878526 + : pb-IF4nUnBdNg== ip: a}j~~nbaie~vaya, Device id: 12c5ef4f3635e09675c5bf9d080e806eebef8bea -2023-05-27 15:42:27.395453 + : pb-IF4VVG8gNQ== ip: azo~zi~~ieaii, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-27 15:42:47.474383 + : pb-IF4wVVk8Jg== ip: ak~~n`ajc|vey, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-05-27 15:44:07.753506 + : pb-IF4AV1QqEQ== ip: an~}ica`ca`g, Device id: 2331b3822293d621f32ade855f2e13b5f48a2f9e -2023-05-27 15:45:14.516909 + : pb-IF4cUGgmPA==|| kicked > new account -2023-05-27 15:45:15.195407 + : pb-IF4oV1U7 ip: dvvcyvba~~o, Device id: c446675dda0f15e085b0ddd0e4e0d68613f35649 -2023-05-27 15:45:56.311053 + : pb-IF4iUGJcLg== ip: azj~z`~xi~}le, Device id: 6f90ea0a0f62f64b8b08ab5af7ddb2e8855418ad -2023-05-27 15:46:38.472694 + : pb-IF4rUGNfDw== ip: azj~z`~xi~}le, Device id: e785747b42bcfb0d532f82c2886684c5c67ac2c7 -2023-05-27 15:48:06.800009 + : pb-IF5TUBdbMA== ip: azj~zo~zk~}kf, Device id: e5b69290f8e21530c13667a697cb5180b10316da -2023-05-27 15:48:21.532531 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4VVG8gNQ==. -2023-05-27 15:48:51.536898 + : Kick vote End -2023-05-27 15:50:35.656353 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-27 15:50:44.684456 + : pb-IF4iU3YCPA== ip: an~}i`aihvbw, Device id: 7cf0673a9a379625e931a56a3c859c7afc7fbf69 -2023-05-27 15:51:20.836442 + : pb-IF4VVG8gNQ== ip: azo~zi~~ieaii, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-27 15:54:28.037126 + : pb-IF4VVG8gNQ== ip: azo~zi~~ieaii, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-27 15:58:44.295853 + : pb-IF4AV1QqEQ== ip: azj~zo~|m~}o, Device id: 2331b3822293d621f32ade855f2e13b5f48a2f9e -2023-05-27 15:59:57.534716 + : pb-IF4jF1NY ip: azj~z`~{l~z, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-27 16:03:23.303014 + : pb-IF4sAGcj ip: a}j~~ogaif}vb}, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-27 16:05:07.281665 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4-VVcCLg==. -2023-05-27 16:05:37.283537 + : Kick vote End -2023-05-27 16:08:07.675756 + : pb-IF5dU3UiAw== ip: azo~{a~~jhaj`w, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-27 16:10:02.463743 + : pb-IF4cUBYfCg== ip: azo~{m~~jhaj`, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-27 16:11:10.760234 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvb{, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-27 16:11:20.791392 + : pb-IF4AV1QqEQ== ip: an~}ica`gaicv, Device id: 2331b3822293d621f32ade855f2e13b5f48a2f9e -2023-05-27 16:14:37.745354 + : pb-IF4iUGJcLg== ip: azj~z`~xi~}le, Device id: 6f90ea0a0f62f64b8b08ab5af7ddb2e8855418ad -2023-05-27 16:15:42.724258 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4-VVcCLg==. -2023-05-27 16:16:12.729259 + : Kick vote End -2023-05-27 16:18:19.627547 + : pb-IF4sUGYjUw== ip: azj~z`~z`~}k`, Device id: 43c7aa0b8e6ca0df1dee0e297599665d9dd266a0 -2023-05-27 16:18:56.822353 + : pb-IF4nL2cN started kick vote for pb-IF4AV1QqEQ==. -2023-05-27 16:19:26.824654 + : Kick vote End -2023-05-27 16:20:00.360721 + : pb-IF4TUkUEUw== ip: bxvevvbk~~nb, Device id: 7111e7395ce33b10917cf056cc081c5a2a957d7a -2023-05-27 16:20:50.257150 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4nL2cN. -2023-05-27 16:21:20.260327 + : Kick vote End -2023-05-27 16:21:56.782796 + : pb-IF5WU0gIUQ== ip: azj~z`~}ida`b, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-27 16:22:37.112473 + : pb-IF4nL2cN started kick vote for pb-IF4AV1QqEQ==. -2023-05-27 16:23:07.118012 + : Kick vote End -2023-05-27 16:24:28.208678 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4nL2cN. -2023-05-27 16:24:53.712788 + : pb-IF4nL2cN kicked by kickvotes. -2023-05-27 16:25:28.946878 + : pb-IF4DUGUuVg== ip: aakhajbvb|, Device id: 12fc08d41327332f299de05336ce72c9b9747207 -2023-05-27 16:28:52.836814 + : pb-IF4rVWgaHA== ip: bxveajb|va~k, Device id: cedefc7d6f462742fdb8874c57f1bf271ee94935 -2023-05-27 16:30:25.631300 + : pb-IF4zUBUlNg== ip: awj~ya~~n~}ih, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-27 16:30:57.755923 + : pb-IF4cUBYfCg== ip: azo~{m~~mia`i, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-27 16:31:44.622635 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5cU0IoDg==. -2023-05-27 16:32:14.623377 + : Kick vote End -2023-05-27 16:32:31.102535 + : pb-IF49UBQSFA== ip: azo~|j~~jeaiev, Device id: 8d75d902cc3a63a5d74a42b2853e1cf9d188ccfa -2023-05-27 16:34:42.574511 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvb{, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-27 16:37:10.220180 + : pb-IF4WUBJcVQ== ip: ak~}maamiaiav, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-27 16:39:13.862215 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5cU0IoDg==. -2023-05-27 16:39:43.869384 + : Kick vote End -2023-05-27 16:40:13.670095 + : pb-IF41U2scIg== ip: ak~za~xl~~kh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-27 16:40:50.357038 + : pb-IF5UUxheIg== ip: a|j~~mdaiezvhv, Device id: c6e45fd1c978810e560b5acf6165aaf8e789fb21 -2023-05-27 16:40:51.358354 + : pb-IF41U2scIg== ip: ak~za~xl~~kh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-27 16:42:16.679152 + : pb-IF5RUGInJg== ip: a~o~}k`aigxvi~, Device id: e6a7402ea4ee5bd392f89840e4f70824c0c64def -2023-05-27 16:42:35.956244 + : pb-IF5cU0IoDg== ip: azj~z`~~agai`, Device id: 2f1882254d7ef56e57a5d5d265645396eeb3b8a4 -2023-05-27 16:43:02.056897 + : pb-IF4LU1RdUg== ip: azo~{m~wa~vh, Device id: 013ebdc40cb805919e389d339fe790db1aeaa296 -2023-05-27 16:44:19.330905 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-27 16:46:30.970024 + : pb-IF4zUBUlNg== ip: awj~ya~~n~}ih, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-27 16:51:31.761270 + : pb-IF4PU2Y6VQ== ip: a~h~}jfaigvva~n, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-05-27 16:53:53.909869 + : Server started -2023-05-27 16:53:54.913824 + : pb-IF4PU2Y6VQ== ip: a~h~}jfaigvva~n, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-05-27 16:53:54.913979 + : pb-IF4AV1QqEQ== ip: an~}ica`gaicv, Device id: 2331b3822293d621f32ade855f2e13b5f48a2f9e -2023-05-27 16:53:55.918825 + : pb-IF4LU0wKIw== ip: azj~zo~~aeaigx, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-27 16:54:24.035081 + : pb-IF4sU0RbLQ== ip: azo~{n~}hiaje}, Device id: bdd596e1a861fd98c8775436be07e49fc7904a77 -2023-05-27 16:54:55.167272 + : pb-IF49UBQSFA== ip: azo~|j~~jeaiev, Device id: 8d75d902cc3a63a5d74a42b2853e1cf9d188ccfa -2023-05-27 16:55:08.203183 + : pb-IF4-Um4_Lw== ip: azj~zo~~hbaia}, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-05-27 16:56:35.141707 + : pb-IF4AV1QqEQ== started kick vote for pb-IF49UBQSFA==. -2023-05-27 16:57:05.144149 + : Kick vote End -2023-05-27 17:00:28.339578 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-27 17:01:45.582128 + : pb-IF43UkRZVQ== ip: bm~}mcakeaag, Device id: 4d1e8a08dd1406c2a9ecbb390a6c033dc7c7bdf3 -2023-05-27 17:02:07.653572 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-27 17:02:23.728929 + : pb-IF4QU2ZeAw== ip: dvvczvavm~~`f, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-27 17:02:49.824224 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-27 17:03:27.954846 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-27 17:03:37.630626 + : pb-IF43UkRZVQ== started kick vote for pb-IF49UBQSFA==. -2023-05-27 17:04:07.633322 + : Kick vote End -2023-05-27 17:04:09.075363 + : pb-IF4cUBYfCg== ip: azo~{m~~leaia~, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-27 17:04:14.089222 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-27 17:05:00.241304 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-27 17:05:21.335677 + : pb-IF4LU0wKIw== ip: azj~zo~~aeaigx, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-27 17:05:33.366880 + : pb-IF4TUGEIDQ== ip: axi~yh~~agajcx, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-27 17:07:24.205016 + : pb-IF4LU0wKIw== started kick vote for pb-IF41U0kfIw==. -2023-05-27 17:07:39.824005 + : pb-IF4WUBJcVQ== ip: ak~}maamiaiav, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-27 17:07:54.208231 + : Kick vote End -2023-05-27 17:09:23.218273 + : pb-IF4TUGEIDQ== ip: axi~yh~~agajcx, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-27 17:11:46.705525 + : pb-IF49Dk85 ip: dvvc{vayk~}kh, Device id: ca3158dea3a14758e370bba299028fdf13ee1f46 -2023-05-27 17:11:47.712167 + : pb-IF4uU0YhHA== ip: azo~{m~ym~~lb, Device id: 9a64711cf529ee878368683500782e8040c2b40b -2023-05-27 17:12:40.901348 + : pb-IF49UBQSFA== ip: azo~|j~~jeaiev, Device id: 8d75d902cc3a63a5d74a42b2853e1cf9d188ccfa -2023-05-27 17:13:32.083782 + : pb-IF49UBQSFA== ip: azo~|j~~jeaiev, Device id: 8d75d902cc3a63a5d74a42b2853e1cf9d188ccfa -2023-05-27 17:13:56.175937 + : pb-IF4MUBMHKA== ip: azj~z`~~o~}ld, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-27 17:14:00.194626 + : pb-IF4MUBMHKA== ip: azj~z`~~o~}ld, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-27 17:14:08.226089 + : pb-IF4MUBMHKA== ip: azj~z`~~o~}ld, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-27 17:27:21.058142 + : pb-IF49UBEhJA== ip: azo~|j~|k~~mf, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-27 17:30:55.124024 + : pb-IF5dUGpZKg==|| kicked > new account -2023-05-27 17:32:17.550501 + : pb-IF4vU0MENg== started kick vote for pb-IF4zU1EhAQ==. -2023-05-27 17:32:19.168280 + : pb-IF4cUBYfCg== ip: azo~{m~~mcaicy, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-27 17:32:47.551720 + : Kick vote End -2023-05-27 17:33:24.415941 + : pb-IF4cUBYfCg== ip: azo~{m~~mcaicy, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-27 17:33:27.428765 + : pb-IF5dU3UiAw== ip: azo~{a~~l`aj`}, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-27 17:34:10.266281 + : pb-IF4zU1EhAQ== started kick vote for pb-IF4cUBYfCg==. -2023-05-27 17:34:40.269535 + : Kick vote End -2023-05-27 17:35:28.868778 + : pb-IF4LU0wKIw== ip: azj~zo~~aeaigx, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-27 17:37:15.253551 + : pb-IF4MUBMHKA== ip: azj~z`~~o~}i`, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-27 17:37:47.923683 + : pb-IF5dU3UiAw== started kick vote for pb-IF4LU0wKIw==. -2023-05-27 17:38:17.928816 + : Kick vote End -2023-05-27 17:40:45.062441 + : pb-IF4WUBJcVQ== ip: ak~}maamiaiav, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-27 17:40:45.065151 + : pb-IF4rUBQaPA== ip: ak~~naameajb}, Device id: 064b2c52fd803233ad634f546e50d6c5bc531c27 -2023-05-27 17:41:31.231578 + : pb-IF4rUBQaPA== ip: ak~~naameajb}, Device id: 064b2c52fd803233ad634f546e50d6c5bc531c27 -2023-05-27 17:43:18.617962 + : pb-IF4rUBQaPA== ip: ak~~naameajb}, Device id: 064b2c52fd803233ad634f546e50d6c5bc531c27 -2023-05-27 17:44:43.907668 + : pb-IF4UU2k7FQ== ip: avo~}i`ajbyvavi, Device id: fe5e73d8f02a525b055ec44991b6ac012ad8b12a -2023-05-27 17:45:54.163318 + : pb-IF4yUBcZAw== ip: an~~adajd}vav`, Device id: 2fbd22eb67a619c5bee74dfd0cbf90b54c1e00ba -2023-05-27 17:46:00.203072 + : pb-IF4VU3laVA== ip: a|o~vo~yl~~i, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-27 17:47:08.420100 + : pb-IF4cUBYfCg== ip: azo~{m~~leaicy, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-27 17:47:23.844483 + : pb-IF5dU3UiAw== started kick vote for pb-IF4yUBcZAw==. -2023-05-27 17:47:53.846379 + : Kick vote End -2023-05-27 17:47:58.597644 + : pb-IF4qUGgiPw== ip: aakhaadaic}, Device id: 20c60c2e453608e1a62219e466b4b293f2e5bacd -2023-05-27 17:48:14.660998 + : pb-IF5RUGcjFA== ip: dvvcyvb}j~~i, Device id: a3ee7e1266a1734d3ae99ed1621c852d31f59410 -2023-05-27 17:48:32.718417 + : pb-IF5RUGcjFA== ip: dvvcyvb}j~~i, Device id: a3ee7e1266a1734d3ae99ed1621c852d31f59410 -2023-05-27 17:48:50.790014 + : pb-IF5RUGcjFA== ip: dvvcyvb}j~~i, Device id: a3ee7e1266a1734d3ae99ed1621c852d31f59410 -2023-05-27 17:48:58.865894 + : pb-IF4yUBcZAw== started kick vote for pb-IF49UBQSFA==. -2023-05-27 17:49:14.170249 + : pb-IF4iUGhaLQ==|| kicked > new account -2023-05-27 17:49:19.883474 + : pb-IF5RUGcjFA== ip: dvvcyvb}j~~i, Device id: a3ee7e1266a1734d3ae99ed1621c852d31f59410 -2023-05-27 17:49:28.866623 + : Kick vote End -2023-05-27 17:53:05.658885 + : pb-IF5dU3UiAw== ip: azo~{a~~l`aj`}, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-27 17:53:51.810750 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-27 17:54:10.882475 + : pb-IF5dU3UiAw== ip: azo~{a~~l`aj`}, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-27 17:57:21.594361 + : pb-IF4XU0ddEA== ip: awj~ya~~ogaia}, Device id: 7b46a4b00db7f6fad2b9f32c6c878678662345be -2023-05-27 17:57:23.602442 + : pb-IF4TUGEIDQ== ip: axi~yh~~agajcx, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-27 17:58:11.776597 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-27 17:59:41.093157 + : pb-IF5RUGcjFA== ip: dvvcyvb}j~~i, Device id: a3ee7e1266a1734d3ae99ed1621c852d31f59410 -2023-05-27 17:59:53.142986 + : pb-IF5RUGcjFA== ip: dvvcyvb}j~~i, Device id: a3ee7e1266a1734d3ae99ed1621c852d31f59410 -2023-05-27 18:00:16.228979 + : pb-IF5RUGcjFA== ip: dvvcyvb}j~~i, Device id: a3ee7e1266a1734d3ae99ed1621c852d31f59410 -2023-05-27 18:00:47.329739 + : pb-IF5RUGcjFA== ip: dvvcyvb}j~~i, Device id: a3ee7e1266a1734d3ae99ed1621c852d31f59410 -2023-05-27 18:03:57.819899 + : pb-IF5dU3UiAw== started kick vote for pb-IF4XU0ddEA==. -2023-05-27 18:04:27.828119 + : Kick vote End -2023-05-27 18:05:43.396778 + : pb-IF4cUktZNg== ip: azj~z`~~mcajh, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-27 18:06:28.571865 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-27 18:08:14.106880 + : pb-IF4PUlFTKg== ip: i}vdvawm~~hb, Device id: 46433f4e3ebeab3a13b0c6db9ca4cabab67974e4 -2023-05-27 18:08:20.139588 + : pb-IF41U2scIg== ip: ak~za~xl~~kh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-27 18:08:29.161624 + : pb-IF4PU2Y6VQ== ip: a~h~}jfaigvva~n, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-05-27 18:08:31.168597 + : pb-IF4TUGc4EQ== ip: a~h~}jgalialf, Device id: 1024f3ea0ec7cf53cf4a9e075401b64e040074d4 -2023-05-27 18:10:10.511210 + : pb-IF4TUGEIDQ== started kick vote for pb-IF4XU0ddEA==. -2023-05-27 18:10:40.511974 + : Kick vote End -2023-05-27 18:11:17.923232 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-27 18:14:34.629803 + : pb-IF4VVG8gNQ== ip: azo~zi~~jdai, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-27 18:15:04.723759 + : pb-IF4cUBYfCg== ip: azo~{m~~kgang, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-27 18:17:41.814127 + : pb-IF4PUlFTKg== started kick vote for pb-IF4wU1MPEg==. -2023-05-27 18:18:11.816455 + : Kick vote End -2023-05-27 18:19:53.832825 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-27 18:21:59.294833 + : pb-IF4nUkteVA== ip: a~j~xa~~laaib, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-05-27 18:23:12.787555 + : pb-IF4wU1MPEg== started kick vote for pb-IF4VVG8gNQ==. -2023-05-27 18:23:42.794673 + : Kick vote End -2023-05-27 18:24:13.966893 + : pb-IF4TUGEIDQ== ip: axi~yh~~agajcx, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-27 18:25:15.218105 + : pb-IF49UBEhJA== ip: a~o~}hhamfaiew, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-27 18:26:08.402297 + : pb-IF4cUBYfCg== ip: azo~{m~~miaih, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-27 18:27:04.924680 + : pb-IF4rUGgJAg==|| kicked > new account -2023-05-27 18:29:20.943897 + : pb-IF4hUGcnCA==|| kicked > new account -2023-05-27 18:32:21.013275 + : pb-IF4TUBkMUw== ip: azo~{a~~laaja{, Device id: c53234887640640445df616dcc653f7c90ae1be3 -2023-05-27 18:32:22.017685 + : pb-IF4RV1RSUg== ip: an~~aeakeao, Device id: f3cab204d843a7eb7a51e35e7767a6ca4f666c76 -2023-05-27 18:33:06.194717 + : pb-IF4-VVcCLg== ip: b}k~~`gak`ajc~, Device id: 1a3312e74ebb29bbe6665fec64edc13922c062b2 -2023-05-27 18:35:02.615319 + : pb-IF4AVWUTHQ== ip: ak~~obaje}va{m, Device id: 8e3e79464d829c5e509ab2e7ea17a7d2de317e4b -2023-05-27 18:35:14.152889 + : pb-IF4wU1MPEg== started kick vote for pb-IF4IUGVaCg==. -2023-05-27 18:35:39.737893 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-27 18:35:44.152310 + : Kick vote End -2023-05-27 18:36:58.353171 + : pb-IF4wU1MPEg== started kick vote for pb-IF4IUGVaCg==. -2023-05-27 18:37:28.354932 + : Kick vote End -2023-05-27 18:37:38.188552 + : pb-IF4FUBddAA== ip: azo~{a~~khajd, Device id: 38128318cf752a677fa2d941fe2a50e35f4a2598 -2023-05-27 18:43:46.510400 + : pb-IF5cU0IoDg== ip: azj~z`~~agah, Device id: 2f1882254d7ef56e57a5d5d265645396eeb3b8a4 -2023-05-27 18:44:28.665847 + : pb-IF4OU1IZVg== ip: azo~{n~~mdajbz, Device id: 541973653043d7f242ff3b1078194e8678f82921 -2023-05-27 18:45:05.803096 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-27 18:45:24.886951 + : pb-IF4sUGEMLg== ip: azj~z`~}h`ai`|, Device id: 9948ff0e2e78e1442cb895ff6f361cd0780ce939 -2023-05-27 18:46:50.195265 + : pb-IF5cU0IoDg== ip: azj~z`~~agah, Device id: 2f1882254d7ef56e57a5d5d265645396eeb3b8a4 -2023-05-27 18:46:58.218254 + : pb-IF4VVG8gNQ== ip: azo~zi~~jbah, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-27 18:48:16.574127 + : pb-IF4MUBMHKA== ip: azj~z`~~o~wi, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-27 18:48:44.703217 + : pb-IF4pU1oqVg== ip: a|a~~ngaif|vf, Device id: 7ee71d578344c9f3f3ba95c6c87390e91fdfd2da -2023-05-27 18:49:51.950647 + : pb-IF4yU1oxUg== ip: azo~|j~|l~}lg, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-27 18:50:06.998956 + : pb-IF4QUBQoBw== ip: an~xn~wa~~ag, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-27 18:50:17.030386 + : pb-IF49UBEhJA== ip: azo~|j~|k~}ha, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-27 18:50:46.122339 + : pb-IF4VVG8gNQ== ip: azo~zi~~jbah, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-27 18:50:59.167253 + : pb-IF4IUGVaCg== ip: ak~~h`aigajd}, Device id: 96e9d4e63e5995a57f88474fb79715ec21a60a8a -2023-05-27 18:51:08.218310 + : pb-IF4VVG8gNQ== ip: azo~zi~~jbah, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-27 18:55:35.265331 + : pb-IF4IUGVaCg== ip: ak~~h`aigajd}, Device id: 96e9d4e63e5995a57f88474fb79715ec21a60a8a -2023-05-27 19:04:49.263689 + : pb-IF4VVG8gNQ== started kick vote for pb-IF49UBEhJA==. -2023-05-27 19:05:19.265485 + : Kick vote End -2023-05-27 19:07:01.057107 + : pb-IF4VVG8gNQ== ip: azo~zi~~jbah, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-27 19:08:47.491903 + : pb-IF40UBISLQ== ip: bxvf}vaxh~~kc, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-27 19:10:21.800036 + : pb-IF4pUnIoJA== | kicked > reason:Banned account -2023-05-27 19:10:37.851229 + : pb-IF5VU1JZMw== ip: an~}ica`eaig}, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-05-27 19:11:41.073633 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-27 19:13:07.376948 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-27 19:14:52.774092 + : pb-IF4zUGYOLQ== ip: an~}j`ajd|vg~, Device id: 63b81a4a72b180eec73f879780d4d10497aeabe7 -2023-05-27 19:15:15.852527 + : pb-IF4zUGYOLQ== ip: an~}j`ajd|vg~, Device id: 63b81a4a72b180eec73f879780d4d10497aeabe7 -2023-05-27 19:15:30.913007 + : pb-IF4zUGYOLQ== ip: an~}j`ajd|vg~, Device id: 63b81a4a72b180eec73f879780d4d10497aeabe7 -2023-05-27 19:16:01.009403 + : pb-IF5RU1lfAQ== ip: b}k~~a`aig~vc, Device id: a6ebbd0c7acb2aec57ffe4b7fec625847473f863 -2023-05-27 19:16:56.189589 + : pb-IF49VFQlPA== ip: azo~{m~|n~|o, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-05-27 19:17:50.408675 + : pb-IF49UBEhJA== ip: azo~|j~|k~}ha, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-27 19:18:55.642413 + : pb-IF4TUGEIDQ== ip: axi~yh~~agajcx, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-27 19:19:54.845795 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-27 19:20:58.086972 + : pb-IF4sUGMeVA== ip: dvvcyva~i~~ib, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-05-27 19:21:02.098793 + : pb-IF4oU1E5Aw== ip: an~}iaaiawvb~i, Device id: ee3bb62945b1d5d9a9ec917e2547b01f43300b68 -2023-05-27 19:28:28.985959 + : pb-JiNJARBbVEVGVFtGEkBZUlJGFkdeT1RF ip: dvvcyvfzvh~, Device id: 77d4209cc988428de8b31bb1ee8f1eb5c9f99bf2 -2023-05-27 19:29:43.240780 + : pb-IF41U2scIg== ip: ak~}hhaniaifw, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-27 19:30:27.416245 + : pb-IF41U2scIg== ip: ak~}hhaniaifw, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-27 19:31:07.558436 + : pb-IF4TUGEIDQ== ip: axi~yh~~agajcx, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-27 19:31:41.671162 + : pb-IF4VU3EjBg== ip: azj~z`~|a~}la, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-05-27 19:31:46.686086 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~oe, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-27 19:32:27.840862 + : pb-IF4TUGEIDQ== ip: axi~yh~~agajcx, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-27 19:34:06.823931 + : pb-LV4FAxYNUkEVDV5HFhIHVwFKFQ== started kick vote for pb-IF41U2scIg==. -2023-05-27 19:34:36.829436 + : Kick vote End -2023-05-27 19:36:01.086601 + : pb-IF4XA2QP started kick vote for pb-IF4sUGMeVA==. -2023-05-27 19:36:31.093790 + : Kick vote End -2023-05-27 19:38:14.926023 + : kicked SSundee -2023-05-27 19:44:45.754757 + : pb-IF41U2scIg== ip: ak~}hhaniaifw, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-27 19:44:45.756731 + : pb-IF4OU2QjMQ== ip: an~~acaadame, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-27 19:48:33.626120 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-27 19:48:37.642921 + : pb-IF5XU0YhKg== ip: azo~{m~~abaidz, Device id: 009307dd452aa63a0473545aea930364bd26abb4 -2023-05-27 19:49:10.788544 + : pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA ip: an~~afaiialg, Device id: 936c205c0c65262d62300105d4329a28095c9790 -2023-05-27 19:52:36.537334 + : pb-IF40UBISLQ== started kick vote for pb-IF41U2scIg==. -2023-05-27 19:52:37.851758 + : pb-IF4dVUwMKQ== ip: a|o~vo~v`~{, Device id: 042adf53a235df6a5b9abacc091864fc5f0e0a68 -2023-05-27 19:53:06.538410 + : Kick vote End -2023-05-27 19:53:10.985641 + : pb-IF40UBISLQ== ip: bxvf}vaxh~~kc, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-27 19:55:24.480941 + : pb-IF4TUxEoKg== ip: an~}ifaje~vaz`, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-27 19:57:52.534269 + : pb-IF49Umo-Fg== ip: a|j~~mdakfa`i, Device id: 2a3954f094899e7a2a36a8960dcc991cae03e487 -2023-05-27 19:58:37.732406 + : pb-IF4hU2gRCg== ip: ak~~lhajcaie~, Device id: daa6a1cad864901ba09c97a3c789e53e5ac5b9e5 -2023-05-27 19:59:30.990342 + : pb-IF4FD1c8 ip: azo~{a~~ahajay, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-05-27 19:59:59.105335 + : pb-IF4VIREq ip: b}k~}jhajcwva{h, Device id: 89a4daf12c86b7cadbf3631b359f717a574fb5d9 -2023-05-27 20:01:47.513161 + : pb-IF4VU3laVA== ip: a|o~vo~yl~~i, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-27 20:02:11.634971 + : pb-IF4HUGEHDg== ip: a~i~~jeajcxvi{, Device id: ed40eb4dbcdfac94b35b84a7486d1a3c4b3ebec6 -2023-05-27 20:02:46.775908 + : pb-IF4VVG8gNQ== ip: azo~zi~~ieaj`, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-27 20:02:55.814806 + : pb-IF40UBISLQ== ip: bxvf}vaxh~~kc, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-27 20:03:06.862467 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-27 20:05:42.672517 + : pb-IF40VVUoAg== ip: evvi|vbzvix, Device id: 3a4b18ccb949e822e02605e56d0c854276579efd -2023-05-27 20:12:27.051689 + : pb-IF5QU3AaLg== ip: ak~}maamgaie~, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-27 20:12:37.084944 + : pb-IF5QU3AaLg== ip: ak~}maamgaie~, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-27 20:13:47.382980 + : pb-IF41U0kfIw== ip: b{vexvevbzj, Device id: 048c8a88c56a51b137c1fe4a49715bada7845888 -2023-05-27 20:13:55.438814 + : pb-IF5VUGUPJA== ip: a}j~~oaaifajh, Device id: 46179aee0da5116c9262ed8491cf05611e1cc7ca -2023-05-27 20:14:25.550447 + : pb-IF41UBQPXA== ip: a}l~~hfaicyvbv, Device id: 4053d4ecb6d73d755ad3c574aa4bd40384b30b43 -2023-05-27 20:14:56.416169 + : pb-IF4KU1Q9Pw== started kick vote for pb-IF4TUxEoKg==. -2023-05-27 20:15:26.423241 + : Kick vote End -2023-05-27 20:16:48.076666 + : pb-IF5QU3AaLg== ip: ak~}maamgaie~, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-27 20:18:51.552287 + : pb-IF5RUGcjFA== ip: dvvcyvb}i~}ia, Device id: a3ee7e1266a1734d3ae99ed1621c852d31f59410 -2023-05-27 20:18:56.564206 + : pb-IF4-UmkFBA== ip: dvvcyvavvawi, Device id: c32ba38f527fb43227828fe367ed8f9dc4352890 -2023-05-27 20:19:04.886948 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4HUGEHDg==. -2023-05-27 20:19:21.651185 + : pb-IF5RUGcjFA== ip: dvvcyvb}i~}ia, Device id: a3ee7e1266a1734d3ae99ed1621c852d31f59410 -2023-05-27 20:19:34.716828 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-27 20:19:34.892656 + : Kick vote End -2023-05-27 20:19:42.746250 + : pb-IF5RUGcjFA== ip: dvvcyvb}i~}ia, Device id: a3ee7e1266a1734d3ae99ed1621c852d31f59410 -2023-05-27 20:19:55.798667 + : pb-IF4OPhMg ip: an~}jbai`aie|, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-27 20:20:46.871611 + : pb-IF4tUGgFMQ==|| kicked > new account -2023-05-27 20:22:33.682190 + : pb-IF4uUlkcUA== ip: ak~wj~xo~}jb, Device id: fe9910ff324a87bea4f69081d1ef9efda85f4a73 -2023-05-27 20:22:43.713699 + : pb-IF5RUGcjFA== ip: dvvcyvb}i~}ia, Device id: a3ee7e1266a1734d3ae99ed1621c852d31f59410 -2023-05-27 20:24:30.124417 + : pb-IF4JVXoILA== ip: a~o~}jiaid~vaj, Device id: be091b0918336c235a84f4be7bfccdbfb726a1f7 -2023-05-27 20:24:36.150787 + : pb-IF4-UmkFBA== ip: dvvcyvavvawi, Device id: c32ba38f527fb43227828fe367ed8f9dc4352890 -2023-05-27 20:25:13.415039 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-27 20:27:01.552723 + : pb-IF4KU1Q9Pw== started kick vote for pb-IF41UBQPXA==. -2023-05-27 20:27:30.854081 + : pb-IF4oUGceAg== ip: a~h~}jfaihve{, Device id: c3e816d930244f4c7d8037225cf84a9401d436ce -2023-05-27 20:27:31.556667 + : Kick vote End -2023-05-27 20:28:37.026351 + : pb-IF4OPhMg started kick vote for pb-IF4IUGcMCw==. -2023-05-27 20:29:07.031645 + : Kick vote End -2023-05-27 20:36:12.333649 + : pb-IF5QU3AaLg== ip: ak~}maamgaie~, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-27 20:36:48.199255 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4IUGcMCw==. -2023-05-27 20:36:53.497301 + : pb-IF5RUBkiKA== ip: a}j~~oaaj`ajf, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-05-27 20:37:18.200383 + : Kick vote End -2023-05-27 20:38:53.921482 + : pb-IF5RUGcjFA== ip: dvvcyvb}i~}ia, Device id: a3ee7e1266a1734d3ae99ed1621c852d31f59410 -2023-05-27 20:41:34.377284 + : pb-IF5VVU8lLA== started kick vote for pb-IF4OPhMg. -2023-05-27 20:42:04.379217 + : Kick vote End -2023-05-27 20:42:11.663597 + : pb-IF5RUGcjFA== ip: dvvcyvb}i~}ia, Device id: a3ee7e1266a1734d3ae99ed1621c852d31f59410 -2023-05-27 20:43:22.912831 + : pb-IF4tUGMBCg== ip: ak~}hhaniaifw, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-27 20:44:58.764249 + : pb-IF5XUBZSDg== ip: an~}hfaifwvavo, Device id: a6c5500f618256fc7b4f8ce5808b42f2e9a0d4af -2023-05-27 20:45:25.875049 + : pb-IF5SV3I4Uw== ip: dvvcyvawl~~ie, Device id: 7358fb647efe4df63d00b570aa8607e61772104e -2023-05-27 20:47:05.251028 + : pb-IF5QU3AaLg== ip: ak~}maamgaie~, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-27 20:48:01.473566 + : pb-IF4uVU4CUw== ip: ak~~naamcajd}, Device id: 146fd1b38b218d3c12b8c1d3cab33838418b0506 -2023-05-27 20:48:07.494837 + : pb-IF4uVU4CUw== ip: ak~~naamcajd}, Device id: 146fd1b38b218d3c12b8c1d3cab33838418b0506 -2023-05-27 20:48:24.553265 + : pb-JiNJARFcUUZCW19DGEdQV1VAEkVYRFFF ip: fvbzl~va{i, Device id: 62797d26a16e23e5bd0348480f002238abaa774e -2023-05-27 20:49:06.885401 + : pb-IF40UBUjPw== ip: an~~aeaidajaz, Device id: 89648e159a6804148e08248496881e44ccea72ec -2023-05-27 20:49:53.322379 + : pb-IF5VVU8lLA== started kick vote for pb-IF4IUGcMCw==. -2023-05-27 20:50:23.325428 + : Kick vote End -2023-05-27 20:52:37.190220 + : pb-IF4GUGMnLA== ip: ak~~j`amaaie}, Device id: 40cfc510354130557d731468d219bc670d63b43c -2023-05-27 20:55:41.830038 + : pb-IF4IUGExHw== ip: ak~{`~ya~~jd, Device id: f7691dea6c35e9b72eb55bb69fa024eb1abf57e6 -2023-05-27 20:58:08.697916 + : pb-IF4xUGhbXA==|| kicked > new account -2023-05-27 20:59:53.777240 + : pb-IF4oU3JfFA== ip: azo~{l~~niajcy, Device id: d90b050f276d9feda2080e61f609a6b6973b6968 -2023-05-27 21:00:32.244974 + : pb-IF4wUGccFA== ip: b}k~~`daih{vfv, Device id: 20076ad4d0910aebc02c6b8245c2986e64b4acbe -2023-05-27 21:03:50.281218 + : pb-IF4cUBYfCg== ip: azo~zh~~vg, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-27 21:04:11.552907 + : pb-JiNJARBSXUFIWl1CGUdZU1VEGEZcRFVL started kick vote for pb-IF4wUGccFA==. -2023-05-27 21:04:41.557462 + : Kick vote End -2023-05-27 21:04:46.495075 + : pb-LV4TBUVYBEJAClpdEU5WU0hGRUIJWgMSUVENCAYTSF9aQEQUVVEB ip: dvvbm~}lhakd, Device id: cd07a691dfd33c04f19f77a2e212d0bb9c0fc8f5 -2023-05-27 21:05:46.020756 + : pb-IF4cUGgkJA==|| kicked > new account -2023-05-27 21:06:47.125932 + : pb-IF4IU1c6Ug== ip: azj~z`~|a~}`, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-05-27 21:07:58.389834 + : pb-IF49VFdbEQ== ip: an~}hfaj`}va~`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-27 21:08:29.498317 + : pb-IF4IU28qPA== ip: azo~zi~wl~xm, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-05-27 21:10:03.873410 + : pb-IF4jUxRfEA== ip: azj~z`~|n~}l`, Device id: 0cd2b6c01ad3d64c9890500683d5f72e21601466 -2023-05-27 21:10:11.900583 + : pb-IF4nUnZfJg== ip: azo~|j~}mcaih~, Device id: 4ba0df99dfeca7b3c40f7493f1c2420e1b54ed88 -2023-05-27 21:10:48.040485 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG ip: a~o~va~}laaiiv, Device id: 822adb43af454f4ce0fdec16028787c26c151d5f -2023-05-27 21:11:02.084924 + : pb-IF5TUGo6VQ== | kicked > reason:Banned account -2023-05-27 21:11:54.701282 + : pb-IF4uUGhTCQ==|| kicked > new account -2023-05-27 21:14:17.120289 + : pb-IF4PUBlaLg== ip: an~~aha`fa``, Device id: b65b1e7f1c3d0c0b8f4c796f1fdc9f076318ad19 -2023-05-27 21:14:58.269053 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-27 21:15:10.316047 + : pb-IF4oUmcI ip: an~~aeaieaif|, Device id: 3b40b4330f071074f51efc3dcb12ae8577840872 -2023-05-27 21:17:50.116523 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh}vb}j, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-27 21:18:26.248618 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh}vb}j, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-27 21:18:52.355959 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh}vb}j, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-27 21:20:48.801691 + : pb-IF40UBISLQ== ip: bxvf}vaxh~~kc, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-27 21:21:04.865160 + : pb-IF4jUxRfEA== ip: azj~z`~|n~~nc, Device id: 0cd2b6c01ad3d64c9890500683d5f72e21601466 -2023-05-27 21:23:44.054461 + : pb-IF4nUnZfJg== ip: azo~|j~}mcaih~, Device id: 4ba0df99dfeca7b3c40f7493f1c2420e1b54ed88 -2023-05-27 21:23:59.105444 + : pb-IF40PkMh ip: aakhaifyvf, Device id: a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e -2023-05-27 21:24:47.275177 + : pb-IF4XUGI7Aw== ip: azj~z`~zn~~le, Device id: 4d9a5d7925a267f0f2385f70a1f714be11ffc50f -2023-05-27 21:28:30.042392 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-27 21:30:36.500614 + : pb-IF4nUmMRCw== ip: an~~acamgaib}, Device id: 7f22fb4b09eaa18898da7e6957c49f2169eff75d -2023-05-27 21:32:15.997296 + : pb-IF4nUmMRCw== ip: an~~acamgaib}, Device id: 7f22fb4b09eaa18898da7e6957c49f2169eff75d -2023-05-27 21:32:25.017577 + : pb-IF4nUmMRCw== ip: an~~acamgaib}, Device id: 7f22fb4b09eaa18898da7e6957c49f2169eff75d -2023-05-27 21:34:03.353157 + : pb-IF4qUBYCLg== ip: azo~|l~}hiajbx, Device id: 9b5a9e6c39be53e7579a611f59b52aa02ed87225 -2023-05-27 21:36:09.853943 + : pb-IF40UBISLQ== ip: bxvf}vaxh~~kc, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-27 21:43:03.019007 + : pb-IF4zUBUlNg== ip: awj~ya~~n~}ih, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-27 21:43:11.039828 + : pb-IF49UBEhJA== ip: azo~|j~|k~zl, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-27 21:43:17.061702 + : pb-IF5WU0gIUQ== ip: azj~z`~}ieaie}, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-27 21:44:31.301079 + : pb-IF49VFdbEQ== ip: an~}hfaj`}va~`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-27 21:44:51.389581 + : pb-IF49Umo-Fg== ip: a|j~~mdakfa`i, Device id: 2a3954f094899e7a2a36a8960dcc991cae03e487 -2023-05-27 21:45:31.549731 + : pb-IF4pUGcODg== ip: dvvc{vbzi~}i, Device id: 5d9805fbbf4f48c26ffe9b2e1d9207daf8c0867c -2023-05-27 21:46:59.883191 + : pb-IF5WU0gIUQ== ip: azj~z`~}ieaie}, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-27 21:47:23.129268 + : pb-IF5WU0gIUQ== ip: azj~z`~}ieaie}, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-27 21:47:53.275072 + : pb-IF4VVG8gNQ== ip: azo~zi~~hha``, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-27 21:48:16.357775 + : pb-IF49UBEhJA== ip: azo~|j~|k~zl, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-27 21:48:20.372919 + : pb-IF5WU0gIUQ== ip: azj~z`~}ieaie}, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-27 21:49:16.583943 + : pb-IF4IU28qPA== ip: azo~zi~wl~xm, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-05-27 21:50:53.923334 + : pb-IF4dVUwMKQ== ip: a|o~vo~v`~{, Device id: 042adf53a235df6a5b9abacc091864fc5f0e0a68 -2023-05-27 21:53:59.597569 + : pb-IF4RUlkPUw== ip: an~}heajb~vaxo, Device id: 26a1a8eae3117e5ee535df610575baf4ca871ef1 -2023-05-27 21:54:16.662700 + : pb-IF4TUGEIDQ== ip: axi~yh~~agajcx, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-27 21:56:20.215932 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-27 21:56:20.216291 + : pb-IF4zUBUlNg== ip: awj~ya~~n~}ih, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-27 21:56:44.294101 + : pb-IF4JUBkxKw== ip: dvvd|vb~a~~`b, Device id: 744537108d53e730f1a041711ca9db3a11e5eb1a -2023-05-27 21:58:08.671287 + : pb-IF5WU0gIUQ== ip: azj~z`~}ieaie}, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-27 22:02:52.898094 + : pb-IF5QU3AaLg== ip: dvvc{va}n~}le, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-27 22:03:16.974860 + : pb-IF4LV20GMw== ip: ai~ve{va{o, Device id: 305f2513910ce5427877375161c5ae05dbf130aa -2023-05-27 22:03:49.235056 + : pb-IF4VVG8gNQ== ip: azo~zi~~hha``, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-27 22:06:49.931952 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-27 22:06:57.952937 + : pb-IF4DUxdYIA== ip: ak~~neaj`aiaw, Device id: bafb3b294af4edfaad62ccc2369a77ef01c32d82 -2023-05-27 22:09:32.857675 + : pb-IF5WU0gIUQ== ip: azj~z`~}ieaie}, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-27 22:10:32.411047 + : pb-IF4RUlkPUw== | kicked for chat spam -2023-05-27 22:10:40.198036 + : pb-IF5WU0gIUQ== ip: azj~z`~}ieaie}, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-27 22:13:40.053140 + : pb-IF43UHkl ip: ak~|a~~jiaja|, Device id: f651e4f37e9490ab7add45fe481c07221039d110 -2023-05-27 22:17:13.941829 + : pb-IF49VFdbEQ== ip: an~}hfaj`}va~`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-27 22:20:03.043069 + : pb-IF4TUxEoKg== ip: an~}ifaje~vaz`, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-27 22:20:23.118049 + : pb-IF5QU0JYBw== ip: dvvcxvf{vb|l, Device id: 68d033487e9cf72b023e781684ecfe34f7c66877 -2023-05-27 22:23:14.075115 + : pb-IF5WU0gIUQ== ip: azj~z`~}ieaie}, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-27 22:23:25.114739 + : pb-IF4KUlA8Ig== ip: ak~~`ca`camd, Device id: 3cb572852d3e1e3936a51d31004f1b955ac1994e -2023-05-27 22:24:32.352625 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-27 22:26:06.708519 + : pb-IF4PUGRbFw== ip: ak~~kiajbvb}j, Device id: f8a5c3649d10f1b31203b00b90bafffd263d41e5 -2023-05-27 22:26:56.573314 + : pb-JiNJARFZVEJCXVtDF09RU1NBGUVYQVBG|| kicked , for using spoofed id TRON -2023-05-27 22:27:21.199202 + : pb-IF5VUGcFEA== ip: azj~z`~~n~}k`, Device id: a283bb95472ff68dcb88db74236f43014d0fce0a -2023-05-27 22:27:44.278585 + : pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA ip: dvvbo~}kcah, Device id: 936c205c0c65262d62300105d4329a28095c9790 -2023-05-27 22:27:54.614243 + : pb-IF48UGgeNA==|| kicked > new account -2023-05-27 22:28:01.339442 + : pb-IF4cUBYfCg== ip: azo~{m~~mgalh, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-27 22:28:08.358512 + : pb-IF4VVG8gNQ== ip: azo~zi~~hha``, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-27 22:29:35.678413 + : pb-IF4KUlA8Ig== ip: ak~~`ca`camd, Device id: 3cb572852d3e1e3936a51d31004f1b955ac1994e -2023-05-27 22:33:39.625646 + : pb-IF5RFXE_ started kick vote for pb-IF4PUGRbFw==. -2023-05-27 22:34:09.625600 + : Kick vote End -2023-05-27 22:36:13.208764 + : pb-IF4PUGRbFw== ip: ak~~kiajbvb}j, Device id: f8a5c3649d10f1b31203b00b90bafffd263d41e5 -2023-05-27 22:36:55.354456 + : pb-IF4KUlA8Ig== ip: ak~~`ca`camd, Device id: 3cb572852d3e1e3936a51d31004f1b955ac1994e -2023-05-27 22:37:02.371551 + : pb-IF4KUlA8Ig== ip: ak~~`ca`camd, Device id: 3cb572852d3e1e3936a51d31004f1b955ac1994e -2023-05-27 22:37:42.532948 + : pb-JiNJARBTVkdCW1ZIEkRVVlVGGUFcRVRG ip: an~}icaje}vhz, Device id: fa80f10e96ce8d4d238acdfc9ee0c089b0cf6c29 -2023-05-27 22:38:15.659091 + : pb-IF40VEocAw== ip: a~o~}idaibvfx, Device id: dea8a2e4532ed216766366c3f2709352f7b120a8 -2023-05-27 22:38:19.673211 + : pb-IF4IUGExHw== ip: ak~{`~ya~~jd, Device id: f7691dea6c35e9b72eb55bb69fa024eb1abf57e6 -2023-05-27 22:38:35.730977 + : pb-IF4-UmkFBA== ip: dvvcyvavvawi, Device id: c32ba38f527fb43227828fe367ed8f9dc4352890 -2023-05-27 22:40:11.127523 + : pb-JiNJARFcUUZCW19DGEdQV1VAEkVYRFFF ip: an~~adajcyvbi, Device id: 62797d26a16e23e5bd0348480f002238abaa774e -2023-05-27 22:42:10.560770 + : pb-IF49VFdbEQ== ip: an~}hfaj`}va~`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-27 22:42:16.592562 + : pb-IF4IUGVTMQ== ip: an~~acaiczvayh, Device id: 65ae2599205317ad2fff02f6267969deea856666 -2023-05-27 22:47:24.369683 + : pb-IF49VFdbEQ== ip: an~}hfaj`}va~`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-27 22:50:04.971784 + : pb-IF4IU28qPA== ip: azo~zi~zh~~kc, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-05-27 22:50:16.048128 + : pb-IF4IU28qPA== ip: azo~zi~zh~~kc, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-05-27 22:51:11.253344 + : pb-IF4uU1oDFQ== ip: aakhajbvayj, Device id: 957a569d6dc9f0000b6a95691e37bdba5ff85038 -2023-05-27 22:54:43.075964 + : pb-JiNJARBaVEtHWFxJEkNSVVxDEEZdQ1lL ip: dvvc{vavm~}jc, Device id: f7f050a70e3717e9b90121ecd847aa703ace4897 -2023-05-27 23:14:24.152160 + : Server started -2023-05-27 23:43:43.546305 + : pb-IF5SVUVbEg== ip: azo~|`~~kfaja|, Device id: b34a71bbc4a01da39d81b3c4db35753b2c546500 -2023-05-27 23:43:55.577554 + : pb-IF5SVUVbEg== ip: azo~|`~~kfaja|, Device id: b34a71bbc4a01da39d81b3c4db35753b2c546500 -2023-05-27 23:44:05.606998 + : pb-IF4KUBYdPQ== ip: avh~vo~~`caid, Device id: 65ca653399802b5a56f43826b470895b17abf95b -2023-05-27 23:48:53.665825 + : pb-IF4IVFkKNA== ip: bxvf~va{n~~l`, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-05-27 23:56:25.421600 + : pb-IF4IVFkKNA== ip: bxvf~va{n~~l`, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-05-28 00:00:35.333952 + : pb-IF41U2scIg== ip: ak~}hhaoaa`f, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-28 00:00:44.365142 + : pb-IF41U2scIg== ip: ak~}hhaoaa`f, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-28 00:08:05.937009 + : pb-IF4IUBAiFQ== ip: cwvbzvayva}o, Device id: 7cd2fa3b11fae9df1ac939a871f97ea189a9974a -2023-05-28 00:10:23.443529 + : pb-IF4FU1daUA== ip: a~h~}jgamiaid~, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-28 00:12:01.803831 + : pb-IF4FU1daUA== ip: a~h~}jgamiaid~, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-28 00:14:07.341264 + : pb-IF4yUGYzAQ== ip: dvva{vayl~}k, Device id: 4a6a06a02b2db0c99b7ff8f415be891697893113 -2023-05-28 00:14:09.345458 + : pb-IF4FU1daUA== ip: a~h~}jgamiaid~, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-28 00:15:05.421707 + : pb-IF4cUktZNg== started kick vote for pb-IF4yUGYzAQ==. -2023-05-28 00:15:35.427808 + : Kick vote End -2023-05-28 00:19:06.480128 + : pb-IF4FU1daUA== ip: a~h~}jgamiaid~, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-28 00:21:18.980483 + : pb-IF4FU1daUA== ip: a~h~}jgamdaaf, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-28 00:22:00.120149 + : pb-IF4yUGYzAQ== ip: dvva{va|l~~hb, Device id: 4a6a06a02b2db0c99b7ff8f415be891697893113 -2023-05-28 00:27:46.313615 + : pb-IF41U2scIg== ip: an~}ifaje~vavo, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-28 00:27:50.325429 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-28 00:28:50.527537 + : pb-IF4CUGMfXA== | kicked > reason:Banned account -2023-05-28 00:31:04.229444 + : pb-IF4cUktZNg== started kick vote for pb-IF4yUGYzAQ==. -2023-05-28 00:31:34.231656 + : Kick vote End -2023-05-28 00:34:21.716951 + : pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB ip: ak~{`~~h`aoc, Device id: rikkolovescats :3 -2023-05-28 00:36:28.151370 + : pb-IF4FU1daUA== ip: a~h~}jgamdaaf, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-28 00:40:57.126606 + : pb-IF4GU1lYCg== ip: an~}i`amiaih, Device id: ac261c3add54dee88d6b1563e6570baa40e77758 -2023-05-28 00:44:13.865773 + : pb-IF4cUlhdVg== started kick vote for pb-IF4IVFkKNA==. -2023-05-28 00:44:43.872510 + : Kick vote End -2023-05-28 00:45:14.051488 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~oe, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-28 00:45:15.056849 + : pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB ip: ak~{`~~h`aoc, Device id: rikkolovescats :3 -2023-05-28 00:46:44.360235 + : pb-IF4XU0gNJg== ip: ak~vh~~``aiiy, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-28 00:46:53.390508 + : pb-IF4FU1daUA== ip: a~h~}jgamdaaf, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-28 00:48:11.966112 + : pb-IF4cUlhdVg== started kick vote for pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB. -2023-05-28 00:48:41.974162 + : Kick vote End -2023-05-28 00:50:10.106215 + : pb-IF41EloZ ip: azj~z`~|l~{`, Device id: b1ff53c5b37c084eefb6145c337c577be3ebb973 -2023-05-28 00:53:50.899203 + : pb-IF4XU0gNJg== ip: ak~vh~~``aiiy, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-28 00:54:40.011579 + : pb-IF4cUlhdVg== started kick vote for pb-IF4IVFkKNA==. -2023-05-28 00:55:10.015824 + : Kick vote End -2023-05-28 01:01:04.000470 + : pb-IF4cUlhdVg== started kick vote for pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB. -2023-05-28 01:01:34.008093 + : Kick vote End -2023-05-28 01:14:05.206014 + : pb-IF4dUGZaLA== ip: aw`~}kiaj`wvgx, Device id: 80592ede56490429226dc74c827003c84e7f14b0 -2023-05-28 01:20:27.596365 + : pb-IF4pU0syFw== ip: azo~|k~~`~~hh, Device id: f8e321c302da8b5dd8c916121ab14be736bc9c1d -2023-05-28 01:25:25.729334 + : pb-IF5cPGsk ip: ak~xi~~adami, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-05-28 01:36:59.355382 + : pb-IF41U2scIg== ip: an~}ifaje~vavo, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-28 01:37:09.394221 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-28 01:52:29.867744 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-28 02:21:27.399086 + : pb-IF4KUBYdPQ== ip: avh~vo~~`caid, Device id: 65ca653399802b5a56f43826b470895b17abf95b -2023-05-28 02:33:49.164388 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-28 03:15:37.722661 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-28 03:16:31.277084 + : pb-IF4wUGgdKQ==|| kicked > new account -2023-05-28 03:23:04.464280 + : pb-IF4pU1U8VQ== ip: bj~wk~zn~}jd, Device id: 10c5129130345ffd919d3546c3dc1729aa6ba63f -2023-05-28 03:57:03.285620 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-28 04:18:26.044310 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-28 04:39:12.881305 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-28 06:14:33.530210 + : Server started -2023-05-28 06:23:40.575610 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-28 06:44:48.326555 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-28 06:53:54.422021 + : pb-IF4XUGYaFQ== ip: a|j~~mdakhaiey, Device id: cea5ca751787a9aa358a197e56866072964ff0f0 -2023-05-28 07:05:47.217471 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-28 07:14:53.233633 + : pb-IF4FU1daUA== ip: b}k~}khaiivvazn, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-28 07:16:48.667251 + : pb-IF4KUxUgBA== ip: azo~|m~{n~~ji, Device id: 6a6ab187225982a4a983f10feff3167f056b6c60 -2023-05-28 07:21:09.626222 + : pb-IF4FU1daUA== ip: b}k~}khaiivvazn, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-28 07:29:02.418221 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-28 07:44:51.886466 + : pb-IF4FU1daUA== ip: b}k~}khaiivvazn, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-28 08:12:10.042341 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-28 08:30:36.155818 + : pb-IF4TUGEIDQ== ip: a~h~}jdaifvb~j, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-28 08:32:14.549158 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-28 08:50:38.663895 + : pb-IF5UUGhaLQ== ip: b~h~~`eaigyvi}, Device id: 917c1652f66eb233f56ed8649cc2a46f4231de73 -2023-05-28 09:15:06.821257 + : pb-IF5UUkxSEg==|| kicked > new account -2023-05-28 09:22:34.887750 + : pb-IF4OU2QjMQ== ip: an~~acaadame, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-28 09:25:37.228669 + : pb-IF4XUGgYHw==|| kicked > new account -2023-05-28 09:31:36.954527 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-28 09:31:36.955393 + : pb-IF4hVVVeHQ== ip: ak~}ifa``aj`|, Device id: d48264bb111e9406c995bd034461104ca7dd849f -2023-05-28 09:31:50.009644 + : pb-IF4FVBQaKA== ip: a~o~}k`alcan`, Device id: 34d2462923f340c782be591a190e05441bb287c0 -2023-05-28 09:32:01.046808 + : pb-IF4cUBYfCg== ip: azo~{m~~jhai`{, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-28 09:34:07.513589 + : pb-IF4MUBVeMQ== ip: an~}jaamfaidz, Device id: bd8158b473696d433dc1f27858a22b099d6cebc1 -2023-05-28 09:36:48.120026 + : pb-IF4cUBYfCg== ip: azo~{m~~jhai`{, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-28 09:43:24.578830 + : pb-IF4cUBYfCg== ip: azo~{m~~jhai`{, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-28 09:43:47.674820 + : pb-IF40UBISLQ== ip: bxvf}vaxh~~kc, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-28 09:47:28.506045 + : pb-IF5QUGcJIg== ip: a~n~~l~~m~yh, Device id: 24dcf0ae8882ed45d5d842a403bed2ff08688578 -2023-05-28 09:48:34.743546 + : pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB ip: azj~z`~z`~wk, Device id: e30952bda624a1707c15cfb174e914d0a114370f -2023-05-28 09:48:43.776367 + : pb-IF5TUmglAw== ip: axm~~ofameajc, Device id: 9803f89e83b340efc7af84e75bbb8ef3134ed466 -2023-05-28 09:49:41.997719 + : pb-IF4VVRURVw== ip: ak~~jiai`wvf, Device id: 6bd3264a4334d7e156dcd2c3cdc18bf7cd1ea8a6 -2023-05-28 09:50:53.231867 + : pb-IF4OU2QjMQ== ip: an~~acaadame, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-28 09:51:31.356902 + : pb-IF4OU2QjMQ== ip: an~~acaadame, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-28 09:58:50.971934 + : pb-IF5cPGsk ip: ak~xi~~adami, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-05-28 10:12:34.059552 + : pb-IF4MUBMHKA== ip: azj~z`~~a~}lb, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-28 10:12:54.118093 + : pb-IF5WU0gIUQ== ip: azj~z`~}ieaii, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-28 10:13:36.260053 + : pb-IF4MUBMHKA== ip: azj~z`~~a~}lb, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-28 10:31:40.887186 + : pb-IF4cUGY5KQ== ip: azo~{o~|l~}me, Device id: 1f90d6261f56aceffb5d00f96e1b5469a65b66de -2023-05-28 10:34:48.564344 + : pb-IF49Umo-Fg== ip: a|j~~mdakiajg, Device id: 2a3954f094899e7a2a36a8960dcc991cae03e487 -2023-05-28 10:41:08.071831 + : pb-IF4AU0IoCA== ip: b}k~}jhajbxvazh, Device id: 5338c9f7857c9f234f68a894e2a295023d1af3d3 -2023-05-28 10:42:56.512783 + : pb-IF5WU0gIUQ== ip: azj~z`~}ieaii, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-28 10:47:49.696180 + : pb-IF4cUBYfCg== ip: azo~{m~~maajc, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-28 10:48:45.879762 + : pb-IF49Umo-Fg== ip: a|j~~mdakiajb|, Device id: 2a3954f094899e7a2a36a8960dcc991cae03e487 -2023-05-28 10:49:22.023223 + : pb-IF4cUGY5KQ== ip: azo~{o~|l~}me, Device id: 1f90d6261f56aceffb5d00f96e1b5469a65b66de -2023-05-28 10:51:06.405624 + : pb-IF4LPkVb ip: izvh}viyviw, Device id: 61291b1e38e06b6fb1b58a82ffe643c996f9837a -2023-05-28 10:51:47.540594 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-28 10:53:01.776705 + : pb-IF4LPkVb ip: izvh}viyviw, Device id: 61291b1e38e06b6fb1b58a82ffe643c996f9837a -2023-05-28 10:54:02.042107 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-28 10:54:40.186457 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-28 10:56:10.229003 + : pb-IF4wU1MPEg== started kick vote for pb-IF4cVUk_PA==. -2023-05-28 10:56:10.508498 + : pb-IF4VVG8gNQ== ip: azo~zi~~hbalb, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-28 10:56:40.236268 + : Kick vote End -2023-05-28 10:58:42.049702 + : pb-IF4LPkVb ip: izvh}viyviw, Device id: 61291b1e38e06b6fb1b58a82ffe643c996f9837a -2023-05-28 11:02:35.929729 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-28 11:04:44.452950 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-28 11:05:11.556763 + : pb-IF4VVG8gNQ== ip: azo~zi~~hbalb, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-28 11:05:45.508362 + : pb-IF4yVXVYIw== started kick vote for pb-IF49Umo-Fg==. -2023-05-28 11:06:15.511275 + : Kick vote End -2023-05-28 11:07:07.937980 + : pb-IF40UBISLQ== ip: bxvf}vaxh~~kc, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-28 11:12:01.994552 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-28 11:13:23.313880 + : pb-IF4xUGQfNg== ip: an~~acaadame, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-05-28 11:21:18.991440 + : pb-IF4xU1YlVw== ip: b}k~~`halhaj`~, Device id: 74b57df016df2de62f715eb1932f5e0d81f67f05 -2023-05-28 11:27:01.261954 + : pb-IF4OU2QjMQ== ip: an~~acaadame, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-28 11:29:32.806363 + : pb-IF41U2scIg== ip: ak~}hhaoaa`f, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-28 11:31:18.167097 + : pb-IF4OU2QjMQ== ip: an~~acaadame, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-28 11:34:12.688563 + : pb-IF4SU1MqAA== started kick vote for pb-IF4cU2hdAw==. -2023-05-28 11:34:42.691343 + : Kick vote End -2023-05-28 11:36:48.391837 + : pb-IF4vU0gFFQ== ip: an~~adaic|vaxh, Device id: 7e98d2ed99b41dc4aea4e9e8e5fe9adb78c840d5 -2023-05-28 11:37:20.502224 + : pb-IF4VVG8gNQ== ip: azo~zi~~hbalb, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-28 11:38:13.730900 + : pb-IF49Umo-Fg== ip: a|j~~mdakhaiiv, Device id: 2a3954f094899e7a2a36a8960dcc991cae03e487 -2023-05-28 11:41:18.412572 + : pb-IF4xUGQfNg== ip: an~~acaadame, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-05-28 11:41:38.490847 + : pb-IF41U2scIg== ip: ak~}hhaoaaih, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-28 11:41:53.550460 + : pb-IF5WU0gIUQ== ip: azj~z`~}ieaib~, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-28 11:47:02.788305 + : pb-IF49Umo-Fg== ip: a|j~~mdakhaiiv, Device id: 2a3954f094899e7a2a36a8960dcc991cae03e487 -2023-05-28 11:54:34.800549 + : pb-IF4LU0wKIw== started kick vote for pb-IF4cU2hdAw==. -2023-05-28 11:55:04.807244 + : Kick vote End -2023-05-28 12:00:55.300207 + : pb-IF4BUxIzJg== ip: azj~z`~}kaaih, Device id: 2c199d4cee94d49e46c0d809e3ed960b7011f73b -2023-05-28 12:04:57.161867 + : pb-IF41U2scIg== ip: ak~}hhaoaaih, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-28 12:08:23.936383 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-28 12:11:43.759429 + : pb-IF4cU2hdAw== ip: azo~|l~}lba`g, Device id: 03db6159fe889430541810312cad57ca90c27ae4 -2023-05-28 12:21:21.034676 + : Server started -2023-05-28 12:21:23.045406 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-28 12:21:24.050104 + : pb-IF4yU1oxUg== ip: azo~|j~|l~|n, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-28 12:21:27.060954 + : pb-IF4QUBQoBw== ip: an~xo~x`~}j`, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-28 12:24:07.643818 + : pb-IF49Umo-Fg== ip: a|j~~mdakgaidz, Device id: 2a3954f094899e7a2a36a8960dcc991cae03e487 -2023-05-28 12:24:59.841448 + : pb-IF4rU1BYEw== ip: dvvczvbzi~}kd, Device id: 1ceac1342362c3d97118a724575962a6dec13e04 -2023-05-28 12:25:52.029565 + : pb-IF4QUBQoBw== ip: an~xo~x`~}j`, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-28 12:27:03.271765 + : pb-IF49UBEhJA== ip: azo~|j~|k~wh, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-28 12:27:45.398891 + : pb-IF4yU1oxUg== ip: azo~|j~|l~|n, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-28 12:27:56.438926 + : pb-IF4VVG8gNQ== ip: azo~zi~~haaibz, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-28 12:28:01.453368 + : pb-IF49UBEhJA== ip: azo~|j~|k~wh, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-28 12:31:19.120854 + : pb-IF4VVG8gNQ== ip: azo~zi~~haaibz, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-28 12:31:56.277053 + : pb-IF4BU0EsIg== ip: azj~z`~}haaig, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-05-28 12:33:47.647651 + : pb-IF4BU0EsIg== ip: azj~z`~}haaig, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-05-28 12:35:05.924206 + : pb-IF4QUBQoBw== ip: a~o~}hhamfaiew, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-28 12:35:14.961360 + : pb-IF5dU3UiAw== ip: azo~{a~~kaakf, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-28 12:35:22.251730 + : pb-IF4VVG8gNQ== started kick vote for pb-IF49Umo-Fg==. -2023-05-28 12:35:52.257705 + : Kick vote End -2023-05-28 12:36:56.348154 + : pb-IF5dU3UiAw== started kick vote for pb-IF4GUBc7AA==. -2023-05-28 12:37:26.355090 + : Kick vote End -2023-05-28 12:38:21.581690 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-28 12:40:58.119676 + : pb-IF4xU1gZJg== ip: a}j~~oaaja~vavm, Device id: 805c0d3ad1bab9d007efc4384ae0d384804f78c6 -2023-05-28 12:44:09.460216 + : pb-IF4NUxFfEg== started kick vote for pb-IF4TUGNZDQ==. -2023-05-28 12:44:39.467968 + : Kick vote End -2023-05-28 12:46:44.998100 + : pb-IF5dU3UiAw== started kick vote for pb-IF4GUBc7AA==. -2023-05-28 12:47:15.005193 + : Kick vote End -2023-05-28 12:47:29.499050 + : pb-IF41U2scIg== ip: ak~}hhaoaaih, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-28 12:50:02.670183 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4TUGNZDQ==. -2023-05-28 12:50:32.674919 + : Kick vote End -2023-05-28 12:51:32.899815 + : pb-IF4NUxFfEg== started kick vote for pb-IF4TUGNZDQ==. -2023-05-28 12:51:39.954266 + : kicked TacV1110 -2023-05-28 12:51:39.960894 + : Kick vote End -2023-05-28 12:52:06.497398 + : pb-IF4OU2QjMQ== ip: an~~acaadame, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-28 12:55:04.162422 + : pb-IF4lVUkZDA== ip: an~~afajha``, Device id: ad77613628d09629b6a6972375bac705300bab18 -2023-05-28 12:57:01.575857 + : pb-IF41U2scIg== ip: ak~}hhaoaaih, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-28 12:57:55.068213 + : pb-IF5VUGoZNQ==|| kicked > new account -2023-05-28 12:58:01.769951 + : pb-IF4oUlE_Vg== started kick vote for pb-IF4PUGc6AA==. -2023-05-28 12:58:04.748310 + : pb-IF4OU2QjMQ== ip: an~}i`aih~vaxn, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-28 12:58:15.081976 + : Kick vote End -2023-05-28 12:58:22.824679 + : pb-IF4PUGc6AA== ip: d}va`~~jeam, Device id: bc6a5914b0ae87b60bd2814385216f3edff1b6da -2023-05-28 12:58:53.916171 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-28 12:58:55.920875 + : pb-IF4nUkteVA== ip: a}j~zh~}hbaigy, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-05-28 13:01:23.454494 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-28 13:01:44.528832 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-28 13:02:19.654316 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-28 13:06:58.924050 + : pb-IF4XUGldEw==|| kicked > new account -2023-05-28 13:08:14.852123 + : pb-IF4oUlE_Vg== ip: an~}ifaje|vb}, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-28 13:09:53.188232 + : pb-IF4LU1RdUg== ip: azo~{m~vl~zi, Device id: 013ebdc40cb805919e389d339fe790db1aeaa296 -2023-05-28 13:11:05.450106 + : pb-IF4BV2gDEA== ip: azo~{a~~kfajav, Device id: 4e495003c3ee4760bccb997a6f3f8f2378e6c857 -2023-05-28 13:12:15.691183 + : pb-IF4sUGYjUw== ip: awj~yl~~j`aiav, Device id: 43c7aa0b8e6ca0df1dee0e297599665d9dd266a0 -2023-05-28 13:12:34.281384 + : pb-IF4cUktZNg== started kick vote for pb-IF4oUlE_Vg==. -2023-05-28 13:12:38.763105 + : pb-IF41U2scIg== ip: ak~}hhaoaaih, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-28 13:13:04.284909 + : Kick vote End -2023-05-28 13:14:42.519421 + : pb-IF4yUGghFA==|| kicked > new account -2023-05-28 13:16:53.736085 + : pb-IF4TV3RbDA== ip: axi~{a~~mcaaf, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-28 13:19:25.325945 + : pb-IF4TUGEIDQ== ip: a~h~}jdaigwvazi, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-28 13:21:09.679985 + : pb-IF4oUlE_Vg== started kick vote for pb-IF4cUktZNg==. -2023-05-28 13:21:26.763636 + : pb-IF41U2scIg== ip: ak~}hhaoaaih, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-28 13:21:39.683401 + : Kick vote End -2023-05-28 13:23:50.282672 + : pb-IF4gUGU9Ng== ip: dvvcxvavj~xa, Device id: 86b87209855879439a9864e1af7c80a75592fe45 -2023-05-28 13:24:29.033726 + : pb-IF4dVUUMIw==|| kicked , for using spoofed id RandomBot -2023-05-28 13:25:51.691518 + : pb-IF4VVG8gNQ== ip: azo~zi~~idala, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-28 13:26:08.755988 + : pb-IF4uUBIvFA== ip: an~}heaje~vavn, Device id: a73b6fdd9e054dbc60c1bf0088704392b4897aaa -2023-05-28 13:26:42.848923 + : pb-IF4OU2QjMQ== ip: an~}i`aih~vaxn, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-28 13:26:50.886228 + : pb-IF5RUxUmIw== ip: azj~zo~~kaa`g, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-28 13:27:40.101498 + : pb-IF4nUkteVA== ip: a}j~zh~}hbaigy, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-05-28 13:27:49.140556 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-28 13:29:25.269805 + : pb-IF4cUktZNg== started kick vote for pb-IF5RUxUmIw==. -2023-05-28 13:29:55.278154 + : Kick vote End -2023-05-28 13:30:57.059157 + : pb-IF4oUlE_Vg== started kick vote for pb-IF4TV3RbDA==. -2023-05-28 13:31:27.062015 + : Kick vote End -2023-05-28 13:31:31.295631 + : kicked Android60248287 -2023-05-28 13:35:26.876478 + : pb-JiNJARBZUEFEWVdEFkFZV1BKE0BYQVJK ip: azh~~hgajaajax, Device id: 0c01858b56e1298013ed16e046849323cb6fb661 -2023-05-28 13:35:34.915941 + : pb-IF40U1InIQ== started kick vote for pb-IF4VVG8gNQ==. -2023-05-28 13:36:04.918397 + : Kick vote End -2023-05-28 13:38:45.593751 + : pb-JiNJARBZUEFEWVdEFkFZV1BKE0BYQVJK ip: azh~~hgajaajax, Device id: 0c01858b56e1298013ed16e046849323cb6fb661 -2023-05-28 13:39:43.791817 + : pb-IF4uU0QSHA== ip: azo~zh~yj~wj, Device id: 1d0ac388ad41d18552b9832ff74ffccc2bb1fe4c -2023-05-28 13:40:53.019169 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-28 13:42:00.262795 + : pb-IF49UBEhJA== ip: azo~|j~|k~z, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-28 13:44:58.415781 + : kicked Kaushalgha -2023-05-28 13:50:09.966436 + : pb-IF4WUBJcVQ== ip: ak~}maamiaa, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-28 13:50:45.085949 + : pb-IF4WUBJcVQ== ip: ak~}maamiaa, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-28 14:02:42.568830 + : pb-IF4WUBJcVQ== ip: ak~}maamiaa, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-28 14:10:16.170592 + : pb-JiNJARBTVkdCW1ZIEkRVVlVGGUFcRVRG ip: dvvc{vb~o~~`i, Device id: fa80f10e96ce8d4d238acdfc9ee0c089b0cf6c29 -2023-05-28 14:11:23.073953 + : pb-IF40UGgvIA==|| kicked > new account -2023-05-28 14:12:53.736164 + : pb-JiNJARBTVkdCW1ZIEkRVVlVGGUFcRVRG ip: dvvc{vb~o~~`i, Device id: fa80f10e96ce8d4d238acdfc9ee0c089b0cf6c29 -2023-05-28 14:16:00.674529 + : pb-IF4uV3omUw== started kick vote for pb-IF4XUGI7Aw==. -2023-05-28 14:16:30.678132 + : Kick vote End -2023-05-28 14:16:55.580187 + : pb-IF4rU1BYEw== ip: dvvczvb{j~}o, Device id: 1ceac1342362c3d97118a724575962a6dec13e04 -2023-05-28 14:17:57.825608 + : pb-IF4FU1daUA== ip: b}k~}khaii|vavk, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-28 14:20:08.304138 + : pb-IF4WUBJcVQ== ip: ak~}maamiaa, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-28 14:21:20.547416 + : pb-IF4uV3omUw== ip: ak~w`~wj~}ic, Device id: 489a8844e3d73d9056c08b79f499898354385f37 -2023-05-28 14:22:56.855318 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-28 14:24:40.214655 + : pb-IF5WUGFcIQ== ip: an~~afaacald, Device id: 46e4f784a06b63e09f8c60eba4317e15f799474d -2023-05-28 14:25:45.441905 + : pb-IF5cPGsk ip: ak~xi~~adami, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-05-28 14:26:02.806887 + : pb-IF4wU1MPEg== started kick vote for pb-IF4nUGUJJg==. -2023-05-28 14:26:06.513446 + : pb-IF4oUlE_Vg== ip: an~}ifajd|vb}, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-28 14:26:32.808968 + : Kick vote End -2023-05-28 14:30:14.462571 + : pb-IF4oUlE_Vg== ip: an~}ifajd|vb}, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-28 14:30:52.630992 + : pb-IF4hUBddUA== ip: bxvf|vcyvava, Device id: bfd69c3b6bfa313e00ee48165f732d2d4ae5979d -2023-05-28 14:31:16.732584 + : pb-IF49I04z ip: dvvd|vb{a~xn, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-28 14:31:23.746156 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-28 14:31:26.747489 + : pb-IF4QU2ZeAw== ip: dvvczvavm~}j, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-28 14:31:30.757450 + : pb-IF4QU2ZeAw== ip: dvvczvavm~}j, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-28 14:32:47.045604 + : pb-IF4hUBddUA== ip: bxvf|vcyvava, Device id: bfd69c3b6bfa313e00ee48165f732d2d4ae5979d -2023-05-28 14:34:25.428723 + : pb-IF4QU2ZeAw== ip: dvvczvavm~}j, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-28 14:34:43.230618 + : pb-IF4wU1MPEg== started kick vote for pb-IF4QU2ZeAw==. -2023-05-28 14:34:48.275697 + : Kick vote End -2023-05-28 14:36:52.932450 + : pb-IF4WUBJcVQ== ip: ak~}maamiaa, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-28 14:37:55.159258 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-28 14:38:24.285658 + : pb-IF49UBEhJA== ip: azo~|j~|k~z, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-28 14:45:45.936571 + : pb-IF4QU2ZeAw== ip: dvvczvavm~}j, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-28 14:49:21.781246 + : pb-IF49UBEhJA== ip: azo~|j~|k~z, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-28 14:49:45.533369 + : pb-IF5dVVU4AQ== started kick vote for pb-IF4wU1MPEg==. -2023-05-28 14:50:15.535301 + : Kick vote End -2023-05-28 14:51:22.292758 + : pb-IF4MUBMHKA== ip: azj~z`~~o~~n`, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-28 14:52:39.547369 + : pb-IF4lUlBcCw== ip: dvvd|vd|vi~, Device id: c2eaf0fbd40a55ee44817b911bcb1124d8644b1f -2023-05-28 14:53:08.954051 + : pb-IF40UGguDA==|| kicked > new account -2023-05-28 14:59:46.082474 + : pb-IF49UBEhJA== ip: azo~|j~|k~z, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-28 15:00:57.374850 + : pb-IF40UGguDA== | kicked > reason:Banned account -2023-05-28 15:01:08.410482 + : pb-IF4jF1NY ip: azj~z`~{vbk, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-28 15:03:23.869219 + : pb-IF4rU1BYEw== ip: dvvczvb{j~}o, Device id: 1ceac1342362c3d97118a724575962a6dec13e04 -2023-05-28 15:03:55.972512 + : pb-IF4rU1BYEw== ip: dvvczvb{j~}o, Device id: 1ceac1342362c3d97118a724575962a6dec13e04 -2023-05-28 15:04:00.985438 + : pb-IF4rU1BYEw== ip: dvvczvb{j~}o, Device id: 1ceac1342362c3d97118a724575962a6dec13e04 -2023-05-28 15:06:50.832613 + : pb-IF4WUBJcVQ== started kick vote for pb-IF4IUhMeFg==. -2023-05-28 15:07:20.831391 + : Kick vote End -2023-05-28 15:12:35.918749 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-28 15:15:50.576654 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-28 15:16:18.985712 + : pb-IF4GUGgZBg==|| kicked > new account -2023-05-28 15:16:35.078972 + : pb-IF4LUGceJA==|| kicked > new account -2023-05-28 15:16:50.812401 + : pb-IF4IUGVTMQ== ip: ak~vo~vn~vl, Device id: c122767b74fe0c99f1c70247ae0b7d6375493e1d -2023-05-28 15:17:23.915286 + : pb-IF4PUxM7Mg== ip: azo~{l~~acaiaz, Device id: 2005d3932c1dcb0f796e811b13b5e3ce8549c984 -2023-05-28 15:18:22.137943 + : pb-IF5UUGUHEA== ip: azj~z`~~hdai`, Device id: de03df27edc3236a340e6a05b8f0aadc8c961e9a -2023-05-28 15:18:24.145212 + : pb-IF4VVG8gNQ== ip: azo~zi~~hbai`|, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-28 15:18:29.163290 + : pb-IF4DU0gCEQ== ip: an~}iaa``aih}, Device id: b8b8e6486d255b3e2a449c47063d888227138544 -2023-05-28 15:18:46.213890 + : pb-IF4oUlE_Vg== ip: an~}ifajd|vb}, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-28 15:20:57.685349 + : pb-IF4DVVoMFw== ip: bxvf~vayn~~`e, Device id: a5a8dd0ed09a3bbbdd3a9101c85f432470910d9f -2023-05-28 15:21:40.836541 + : pb-IF41U0YxAw== ip: a~n~y`~xj~|i, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-05-28 15:21:41.838894 + : pb-IF4DVVoMFw== ip: bxvf~vayn~~`e, Device id: a5a8dd0ed09a3bbbdd3a9101c85f432470910d9f -2023-05-28 15:21:49.863167 + : pb-IF4DVVoMFw== ip: bxvf~vayn~~`e, Device id: a5a8dd0ed09a3bbbdd3a9101c85f432470910d9f -2023-05-28 15:23:35.219271 + : pb-IF4sAGcj ip: bxvewva}va{m, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-28 15:23:55.781697 + : pb-IF4oUlE_Vg== started kick vote for pb-IF4VVG8gNQ==. -2023-05-28 15:24:15.343573 + : pb-IF41U2scIg== ip: ak~}hhaoaaih, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-28 15:24:25.789173 + : Kick vote End -2023-05-28 15:24:28.390967 + : pb-IF4LU1RdUg== ip: azo~{m~wh~}o, Device id: 013ebdc40cb805919e389d339fe790db1aeaa296 -2023-05-28 15:25:05.505465 + : pb-IF41U2scIg== ip: ak~}hhaoaaih, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-28 15:25:31.179279 + : pb-IF4oUGg-IA==|| kicked > new account -2023-05-28 15:25:34.616625 + : pb-IF41U2scIg== ip: ak~}hhaoaaih, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-28 15:27:44.588648 + : pb-IF4oUlE_Vg== started kick vote for pb-IF4VVG8gNQ==. -2023-05-28 15:28:14.591992 + : Kick vote End -2023-05-28 15:29:20.101913 + : pb-IF4TUXMJ started kick vote for pb-IF4WUBJcVQ==. -2023-05-28 15:29:50.104277 + : Kick vote End -2023-05-28 15:30:46.764682 + : pb-IF4sAGcj ip: bxvewva}va{m, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-28 15:31:47.251606 + : pb-IF4RUGleNg==|| kicked > new account -2023-05-28 15:31:55.299047 + : pb-IF4WUGgSLQ==|| kicked > new account -2023-05-28 15:32:28.100437 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-28 15:34:09.457922 + : pb-IF4cUktZNg== ip: azj~z`~~`da`e, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-28 15:36:23.257726 + : pb-IF4TUxEoKg== started kick vote for pb-IF4NUGMCMw==. -2023-05-28 15:36:34.684254 + : pb-IF4KUmMFPA==|| kicked , for using spoofed id Trun -2023-05-28 15:36:37.952013 + : pb-IF4VVG8gNQ== ip: azo~zi~~hbai`|, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-28 15:36:53.261009 + : Kick vote End -2023-05-28 15:37:59.233508 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-28 15:38:40.001051 + : pb-IF4cUktZNg== started kick vote for pb-IF4NUGMCMw==. -2023-05-28 15:39:10.001794 + : Kick vote End -2023-05-28 15:40:22.943545 + : pb-IF4NUxFfEg== started kick vote for pb-IF4NUGMCMw==. -2023-05-28 15:40:52.951289 + : Kick vote End -2023-05-28 15:43:50.442355 + : pb-IF4cUktZNg== ip: azj~z`~~`da`e, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-28 15:44:19.542754 + : pb-IF5QU3AaLg== ip: ak~}m`aidzvayn, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-28 15:44:29.589396 + : pb-IF5QU3AaLg== ip: ak~}m`aidzvayn, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-28 15:45:49.876781 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvb{n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-28 15:46:29.018287 + : pb-IF5QU3AaLg== ip: ak~}m`aidzvayn, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-28 15:47:03.150656 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jf, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-28 15:47:26.309749 + : kicked Android62078969 -2023-05-28 15:48:03.830023 + : pb-IF4cUGgJCw==|| kicked > new account -2023-05-28 15:52:31.287601 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-28 15:52:31.288660 + : pb-IF40UBISLQ== ip: an~}hgajb~va}o, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-28 15:52:49.352311 + : pb-IF5QU3AaLg== ip: dvvc{vavm~}k`, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-28 16:00:32.383756 + : pb-IF4TUxEoKg== started kick vote for pb-IF4KUm0NMg==. -2023-05-28 16:01:02.389608 + : Kick vote End -2023-05-28 16:06:31.530464 + : pb-IF4pU1U8VQ== ip: bj~~ndaicvbz, Device id: 10c5129130345ffd919d3546c3dc1729aa6ba63f -2023-05-28 16:08:24.027286 + : pb-IF4pU1U8VQ== ip: bj~~ndaicvbz, Device id: 10c5129130345ffd919d3546c3dc1729aa6ba63f -2023-05-28 16:13:21.437545 + : pb-IF40UBISLQ== ip: an~}hgajb~vaw`, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-28 16:14:29.426091 + : pb-IF40UBISLQ== started kick vote for pb-IF4nUxE4Nw==. -2023-05-28 16:14:59.426767 + : Kick vote End -2023-05-28 16:15:09.836623 + : pb-IF5RU1lfAQ== ip: a~o~va~}k`aicz, Device id: a6ebbd0c7acb2aec57ffe4b7fec625847473f863 -2023-05-28 16:20:15.023247 + : pb-IF4TV3RbDA== ip: axi~{a~~mcaaf, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-28 16:20:53.178254 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-28 16:21:44.481403 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-28 16:22:46.702329 + : pb-IF4WUlkFCA== ip: azj~zo~zk~|m, Device id: 4e14f2ba587ca7b9b927b9533afd8cd0d97e9906 -2023-05-28 16:23:09.781188 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-28 16:23:19.821839 + : pb-IF5SUxccFA== ip: azj~zo~}hgaod, Device id: a471cd02f97609fdcc71d4262984de76d468c001 -2023-05-28 16:23:57.837278 + : pb-IF4TV3RbDA== started kick vote for pb-IF5SUxccFA==. -2023-05-28 16:24:27.841388 + : Kick vote End -2023-05-28 16:28:48.361715 + : pb-IF4hUGcJCg==|| kicked > new account -2023-05-28 16:28:57.024348 + : pb-IF40UBISLQ== started kick vote for pb-IF5SUxccFA==. -2023-05-28 16:29:27.027442 + : Kick vote End -2023-05-28 16:29:54.359507 + : pb-IF5WU0gIUQ== ip: azj~z`~}ieana, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-28 16:30:44.537189 + : pb-IF5WU0gIUQ== ip: azj~z`~}ieana, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-28 16:31:30.717977 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-28 16:31:48.788050 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-28 16:34:05.265867 + : pb-IF4FV046Nw== ip: azo~{m~}laaibw, Device id: 4a49e799c35829832f7b820ffc53704595a89692 -2023-05-28 16:35:38.609754 + : pb-IF4nVFMjIQ== ip: azj~zo~~jaalb, Device id: b8ef2f9872a9032e687050c8fd51ab4a67ad8d78 -2023-05-28 16:35:47.024784 + : pb-IF5RUGsqCQ==|| kicked > new account -2023-05-28 16:35:56.654904 + : pb-IF4FV046Nw== ip: azo~{m~}laaibw, Device id: 4a49e799c35829832f7b820ffc53704595a89692 -2023-05-28 16:36:18.152519 + : pb-IF40UBISLQ== started kick vote for pb-IF4IU08pBg==. -2023-05-28 16:36:48.159700 + : Kick vote End -2023-05-28 16:40:31.594443 + : pb-IF4WUlkFCA== ip: azj~zo~zk~|m, Device id: 4e14f2ba587ca7b9b927b9533afd8cd0d97e9906 -2023-05-28 16:41:18.079785 + : pb-IF4zUGgbNw==|| kicked > new account -2023-05-28 16:43:02.068224 + : pb-IF4WUlkFCA== ip: azj~zo~zk~|m, Device id: 4e14f2ba587ca7b9b927b9533afd8cd0d97e9906 -2023-05-28 16:51:45.066694 + : pb-IF4zUGgbNw== | kicked > reason:Banned account -2023-05-28 16:54:10.565247 + : pb-IF41UBQPXA== ip: a}l~~hfaicyvbv, Device id: 4053d4ecb6d73d755ad3c574aa4bd40384b30b43 -2023-05-28 16:56:03.612711 + : pb-IF5WUGonPw==|| kicked > new account -2023-05-28 17:09:19.124140 + : pb-IF5WU0gIUQ== ip: azj~z`~}idal, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-28 17:11:20.534969 + : pb-IF49I04z ip: dvvcxvbi~~ic, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-28 17:17:48.990333 + : pb-IF4uUBIvFA== ip: an~}heaje~vavn, Device id: a73b6fdd9e054dbc60c1bf0088704392b4897aaa -2023-05-28 17:18:54.223955 + : pb-IF4uUBIvFA== ip: an~}heaje~vavn, Device id: a73b6fdd9e054dbc60c1bf0088704392b4897aaa -2023-05-28 17:24:37.460765 + : pb-IF5QUGYbLQ== ip: azo~zi~~liake, Device id: 04b1b7a4048017e980ff133f24fb51a964960c36 -2023-05-28 17:26:42.917136 + : pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB ip: d|vb{j~}jiah, Device id: rikkolovescats :3 -2023-05-28 17:26:43.593416 + : pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB|| kicked , for using spoofed id Odtoyssey -2023-05-28 17:32:00.297203 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-28 17:52:04.625393 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-28 17:53:41.975546 + : pb-IF4OU2QjMQ== ip: ak~}hhaoaaih, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-28 17:56:02.470086 + : pb-IF5WU0gIUQ== ip: azj~z`~}ieai`}, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-28 17:57:58.909733 + : pb-IF49VFdbEQ== ip: an~}hfaiizvb{n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-28 18:12:09.206984 + : pb-IF4VU3laVA== ip: azo~{n~~kgaja, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-28 18:26:13.411017 + : pb-IF49VFdbEQ== ip: an~}hfaiizvb{n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-28 18:26:36.530741 + : pb-IF49VFdbEQ== ip: an~}hfaiizvb{n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-28 18:28:30.990950 + : pb-IF4HUGcZUQ== ip: ak~~`baifyvdw, Device id: 27c03e541b421437a624671095ad8de278895e86 -2023-05-28 18:30:53.045896 + : Server started -2023-05-28 18:31:36.202681 + : pb-IF4PU2Y6VQ== ip: a~h~}jfaigvva~n, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-05-28 18:35:43.132768 + : pb-IF5QU3AaLg== ip: dvvc{vbi~vn, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-28 18:36:29.268298 + : pb-IF4TUGEIDQ== ip: a~h~}jdaig|va~n, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-28 18:38:57.814438 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-28 18:39:00.825071 + : pb-IF4WUBJcVQ== ip: ak~}maamiaa, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-28 18:45:42.223348 + : pb-IF49UBQSFA== ip: dvvc{vbzm~yj, Device id: 8d75d902cc3a63a5d74a42b2853e1cf9d188ccfa -2023-05-28 18:46:42.432880 + : pb-IF4-Um4_Lw== ip: azj~zo~~heaib, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-05-28 18:49:00.925823 + : pb-IF4-Um4_Lw== ip: azj~zo~~heaib, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-05-28 18:49:36.044706 + : pb-IF49Umo-Fg== ip: a|j~~mdakiaiiz, Device id: 2a3954f094899e7a2a36a8960dcc991cae03e487 -2023-05-28 18:49:50.110352 + : pb-IF4PU2Y6VQ== ip: a~h~}jfaigvva~n, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-05-28 18:51:18.426109 + : pb-IF4PU2Y6VQ== ip: a~h~}jfaigvva~n, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-05-28 18:53:19.923582 + : pb-IF49VFdbEQ== ip: an~}hfaj`|vb{n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-28 18:54:59.344306 + : pb-IF4TD1cf | kicked > reason:Banned account -2023-05-28 18:55:44.482691 + : pb-IF4WUBJcVQ== ip: ak~}maamiaa, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-28 18:57:06.919131 + : pb-IF4PU2Y6VQ== started kick vote for pb-IF4nUGEfHA==. -2023-05-28 18:57:36.924589 + : Kick vote End -2023-05-28 18:59:47.467918 + : pb-IF49Umo-Fg== ip: a|j~~mdakiaai, Device id: 2a3954f094899e7a2a36a8960dcc991cae03e487 -2023-05-28 19:00:56.651187 + : pb-IF4LU0wKIw== ip: azj~zo~}hgaod, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-28 19:05:19.719452 + : pb-IF5VUGcFEA== ip: azj~z`~~n~|, Device id: a283bb95472ff68dcb88db74236f43014d0fce0a -2023-05-28 19:05:23.730049 + : pb-IF5QU3AaLg== ip: dvvc{vbi~vn, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-28 19:05:59.867432 + : pb-IF4QUBQoBw== ip: an~xn~wa~~ah, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-28 19:06:01.868894 + : pb-IF4yU1oxUg== ip: azo~|j~|l~~ah, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-28 19:06:30.948244 + : pb-IF4AUGEvFA== ip: axm~~mgaldan`, Device id: 79b24b64b8e4d872448003810774c88978a20914 -2023-05-28 19:06:43.983098 + : pb-IF4yU1oxUg== ip: azo~|j~|l~~ah, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-28 19:07:15.078520 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvb{n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-28 19:07:46.194513 + : pb-IF4yU1oxUg== ip: azo~|j~|l~~ah, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-28 19:08:28.320199 + : pb-IF40UBISLQ== ip: bxvf}vbzh~wk, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-28 19:09:09.462003 + : pb-IF4IUGcMCw== ip: ak~~`dai`zvbzh, Device id: 5ebc866ad3dcf5ee6a6aa42142351465751ad01f -2023-05-28 19:12:27.160282 + : pb-IF4LU0wKIw== ip: azj~zo~}hgaod, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-28 19:13:08.424466 + : pb-IF4TV3RbDA== ip: azo~|l~~kda``, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-28 19:15:51.560966 + : pb-IF4LU0wKIw== started kick vote for pb-IF4hUngBIg==. -2023-05-28 19:16:21.566383 + : Kick vote End -2023-05-28 19:19:07.766232 + : pb-IF4TUGEIDQ== ip: a~h~}jdaigzvb~k, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-28 19:20:07.984714 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvb{n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-28 19:20:45.465327 + : pb-IF4TUGEIDQ== started kick vote for pb-IF40UBISLQ==. -2023-05-28 19:21:11.234766 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-28 19:21:15.469092 + : Kick vote End -2023-05-28 19:21:27.280596 + : pb-IF4OU1IZVg== ip: azo~{n~~kdame, Device id: 541973653043d7f242ff3b1078194e8678f82921 -2023-05-28 19:21:48.351445 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-28 19:24:22.938757 + : pb-IF4XUGI7Aw== ip: azj~z`~zn~~je, Device id: 4d9a5d7925a267f0f2385f70a1f714be11ffc50f -2023-05-28 19:26:05.312312 + : pb-IF4TV3RbDA== ip: axi~{a~~mcaaf, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-28 19:27:10.540906 + : pb-IF49Umo-Fg== ip: a|j~~mdakiaoe, Device id: 2a3954f094899e7a2a36a8960dcc991cae03e487 -2023-05-28 19:31:25.492849 + : pb-IF41U2scIg== ip: ak~}hhaoaaih, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-28 19:32:14.687146 + : pb-IF49Umo-Fg== ip: a|j~~mdakiaoe, Device id: 2a3954f094899e7a2a36a8960dcc991cae03e487 -2023-05-28 19:32:27.725504 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-28 19:32:33.748991 + : pb-IF4FU1daUA== ip: b}k~}khajavaya, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-28 19:33:20.903315 + : pb-IF4FUBUnUw== ip: azj~zo~}ieaie, Device id: 0f4a34cd5fe8a3dcb4ce7f69ecdf4668274f52a7 -2023-05-28 19:33:32.956026 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-28 19:36:23.605122 + : pb-IF49UBQSFA== ip: dvvc{vbzm~yj, Device id: 8d75d902cc3a63a5d74a42b2853e1cf9d188ccfa -2023-05-28 19:37:37.912664 + : pb-IF4VU3laVA== ip: azo~{n~~kgaja, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-28 19:37:44.925036 + : pb-IF4XUGI7Aw== ip: azj~z`~zn~~je, Device id: 4d9a5d7925a267f0f2385f70a1f714be11ffc50f -2023-05-28 19:37:52.962641 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~oe, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-28 19:39:34.318882 + : pb-JiNJARFYU0pGXVdCFU9TVVZEFkFaRFlL started kick vote for pb-IF4OUBAqNQ==. -2023-05-28 19:39:35.669080 + : pb-IF4sUBMIUQ==|| kicked > new account -2023-05-28 19:40:04.319383 + : Kick vote End -2023-05-28 19:40:53.586034 + : pb-IF4VVG8gNQ== ip: azo~zi~~hiakd, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-28 19:41:10.941785 + : pb-IF4TUGgOBw==|| kicked > new account -2023-05-28 19:42:43.988449 + : pb-IF4VVG8gNQ== ip: azo~zi~~hiakd, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-28 19:43:18.153845 + : pb-IF4gVGxeXQ== ip: an~}ifaje~vaz`, Device id: 75d797f1f12a16770177cf4b1302481e4c8bba39 -2023-05-28 19:44:03.720612 + : pb-JiNJARFYU0pGXVdCFU9TVVZEFkFaRFlL started kick vote for pb-IF4OUBAqNQ==. -2023-05-28 19:44:33.726196 + : Kick vote End -2023-05-28 19:45:35.726584 + : pb-IF49I04z ip: dvvcxvbi~~ic, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-28 19:45:55.806017 + : pb-IF4XU0gNJg== ip: ak~vh~~`aaidx, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-28 19:51:06.863269 + : pb-IF4VVG8gNQ== ip: azo~zi~~hiakd, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-28 19:51:17.902364 + : pb-IF4LU0wKIw== ip: azj~zo~}hgaod, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-28 19:52:21.108782 + : pb-IF4VVG8gNQ== ip: azo~zi~~hiakd, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-28 19:53:13.294504 + : pb-IF4tU0clEg== ip: a~o~v`~{k~v, Device id: 1e63d6c425762528fc0f3fdf44f941ebcc6da2a4 -2023-05-28 19:53:43.477970 + : pb-IF4MUBMHKA== ip: azj~z`~~o~}ig, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-28 20:00:01.918048 + : pb-IF4VVG8gNQ== started kick vote for pb-JiNJARFYU0pGXVdCFU9TVVZEFkFaRFlL. -2023-05-28 20:00:10.896966 + : pb-IF4XU0gNJg== ip: ak~vh~~`aaidx, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-28 20:00:31.920794 + : Kick vote End -2023-05-28 20:02:21.395921 + : pb-IF4mUBcSNQ== ip: azj~z`~~n~~j, Device id: 04813a85716278e62069c80e53ffc0b79929387a -2023-05-28 20:02:49.492565 + : pb-JiNJARFaVUNCVF9DF0JTV1VGGEJbRVBD ip: bn~wl~}kfaia{, Device id: 7ab4e0f256a7d1522a24b7936bcb926c7e6ef694 -2023-05-28 20:05:22.053867 + : pb-IF4JU3MeLQ== ip: a{i~~meaievvbi, Device id: c6f5d0c45ecb7c810c0a0db59104fd16eabcd953 -2023-05-28 20:12:05.562044 + : pb-IF4hMxY- ip: azo~{l~~aiai`, Device id: 05b4dbcb33a43966f542eb1a7767c5f024985e33 -2023-05-28 20:16:02.392563 + : pb-IF4MUBMHKA== ip: azj~z`~~o~wh, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-28 20:17:08.649499 + : pb-IF4WV2cCBg== ip: ak~~ieaibwva{j, Device id: 64b84d0d7779b61e56512560e1a3a61319f17ff2 -2023-05-28 20:18:31.949238 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-28 20:19:00.049293 + : pb-IF5QU3AaLg== ip: dvvc{vbi~~nd, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-28 20:21:41.963216 + : pb-IF4JUGgKUw==|| kicked > new account -2023-05-28 20:24:17.129899 + : pb-IF4iU0gGPA== ip: azj~zo~}ihaj`|, Device id: 815f210198157c54dd893e71d9895d99e4db891a -2023-05-28 20:27:57.961693 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-28 20:30:58.649025 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-28 20:32:02.904409 + : pb-IF4VUlcBVQ== ip: azj~z`~~mbajc~, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-05-28 20:33:10.116843 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-28 20:34:23.404718 + : pb-IF5SUmpeIw== ip: a~h~}jdaaaaibw, Device id: ef66c32fc54e9b6e23979b4c5829945e8ff6c648 -2023-05-28 20:35:44.656878 + : pb-IF4TUGgOBw== | kicked > reason:Banned account -2023-05-28 20:38:00.117722 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-28 20:39:47.488138 + : pb-IF4tUGMBCg== ip: ak~}hhaoaaih, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-28 20:40:26.694765 + : pb-IF4cUBYfCg== ip: azo~{m~wo~wm, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-28 20:41:27.901277 + : pb-IF4XUkwbKQ== ip: fvbzl~vaxo, Device id: 56c52a22f44677a8424476af52c088d00b14a484 -2023-05-28 20:42:37.174219 + : pb-IF4VVG8gNQ== ip: azo~zi~~hba`g, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-28 20:46:53.067079 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvb{n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-28 20:47:00.103651 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~oe, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-28 20:47:34.229639 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvb{n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-28 20:48:07.346038 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvb{n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-28 20:49:21.607452 + : pb-IF5dUxEdMw== ip: a~h~}keajc{vf, Device id: 6f15cc4b1fd616b8c60afbd4c54f7a4c92d200dd -2023-05-28 20:51:21.029676 + : pb-IF4OU1IZVg== ip: azo~{n~~keaj`x, Device id: 541973653043d7f242ff3b1078194e8678f82921 -2023-05-28 20:52:11.162974 + : pb-IF43VXcbMA== ip: a~o~va~}l`aie}, Device id: 0b6ee05cca8b954649431ab0a589f7c0dd9f66bd -2023-05-28 20:53:33.450388 + : pb-IF4VU3laVA== ip: azo~{n~~kgaja, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-28 20:54:00.548895 + : pb-IF4iU05eKw== ip: a|o~vo~vm~xn, Device id: 49ad059eeb4a90359d526ee6d139f4c4269d1f86 -2023-05-28 20:54:48.729994 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~oe, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-28 20:57:25.342970 + : pb-IF4VUlcBVQ== ip: dxvazveaigx, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-05-28 21:03:02.595381 + : pb-IF4jF1NY ip: azj~z`~}`~~`f, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-28 21:05:24.198520 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvb{n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-28 21:05:45.304097 + : pb-IF4tUGMBCg== ip: ak~}hhaoaaih, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-28 21:09:13.039219 + : pb-IF4OU2QjMQ== ip: an~}i`aih~vazj, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-28 21:10:35.319793 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-28 21:11:07.435785 + : pb-IF4VVG8gNQ== ip: azo~zi~~hba`g, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-28 21:12:43.774016 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvb{n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-28 21:13:00.834602 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvb{n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-28 21:14:26.181520 + : pb-IF4KUBYdPQ== ip: avh~vo~~`caid, Device id: 65ca653399802b5a56f43826b470895b17abf95b -2023-05-28 21:15:34.463144 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-28 21:15:38.469924 + : pb-IF4tUGMBCg== ip: ak~}hhaoaaih, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-28 21:22:38.046322 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-05-28 21:29:24.642615 + : pb-IF4TUGgOBw== | kicked > reason:Banned account -2023-05-28 21:31:30.029863 + : pb-IF5QU1MGFw== ip: b}k~}jgaofaidv, Device id: 7200c52dda860844135f5560476c8dbc3e02b401 -2023-05-28 21:34:48.851989 + : pb-IF4jF1NY ip: azj~z`~zm~~ai, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-28 21:36:02.115960 + : pb-IF40UBISLQ== ip: an~}hgajb|vb~j, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-28 21:37:57.634236 + : pb-IF40UBISLQ== ip: bxvf}vb{`~zm, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-28 21:42:57.929444 + : pb-IF4lUGc_LA== ip: a~o~}hgaihzve, Device id: a3d27f19ffe0e408774f128066a9fd3b8f00ef52 -2023-05-28 21:45:10.423201 + : pb-IF4CUGMfXA== | kicked > reason:Banned account -2023-05-28 21:45:26.478769 + : pb-IF4VVG8gNQ== ip: azo~zi~~jfaiav, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-28 21:46:26.700472 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4RUGMJMQ==. -2023-05-28 21:46:56.706856 + : Kick vote End -2023-05-28 21:48:34.201665 + : pb-IF4sAGcj ip: bxvewva}va{m, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-28 21:49:20.383393 + : pb-IF4sAGcj ip: bxvewva}va{m, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-28 21:54:15.477237 + : pb-IF40UBISLQ== ip: bxvf}vb{`~zm, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-28 21:56:00.390150 + : pb-IF4VVG8gNQ== started kick vote for pb-IF5WUGQIUQ==. -2023-05-28 21:56:11.301391 + : pb-IF5WUGQIUQ== kicked by kickvotes. -2023-05-28 21:57:29.051580 + : pb-IF4VVG8gNQ== started kick vote for pb-IF5TUGcdHQ==. -2023-05-28 21:57:57.258738 + : pb-IF4sUGYjUw== ip: awj~yl~~j`aiav, Device id: 43c7aa0b8e6ca0df1dee0e297599665d9dd266a0 -2023-05-28 21:57:59.053905 + : Kick vote End -2023-05-28 21:59:21.661567 + : pb-IF4XUkwbKQ== ip: ak~~j`aje|vbz, Device id: 56c52a22f44677a8424476af52c088d00b14a484 -2023-05-28 22:00:19.874186 + : pb-IF4sAGcj ip: bxvewva}va{m, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-28 22:02:15.428335 + : pb-IF4sAGcj started kick vote for pb-IF4VVG8gNQ==. -2023-05-28 22:02:45.433357 + : Kick vote End -2023-05-28 22:02:58.467692 + : InbornLodg||pb-IF4XUGgdCw==|| kicked by profanity check -2023-05-28 22:03:58.688248 + : pb-IF4PU1kaMQ== ip: ak~~oda`eamh, Device id: 8449210487f54b02025941bd9df457b9b41f74b2 -2023-05-28 22:04:02.702151 + : pb-IF4cUlhdVg== ip: an~}jcaigxvb|i, Device id: 1da2118ab275f2d9005119016dc8bdbcb0278102 -2023-05-28 22:05:07.931191 + : pb-IF4cUlhdVg== ip: an~}jcaigxvb|i, Device id: 1da2118ab275f2d9005119016dc8bdbcb0278102 -2023-05-28 22:05:43.053105 + : pb-IF4cUlhdVg== ip: an~}jcaigxvb|i, Device id: 1da2118ab275f2d9005119016dc8bdbcb0278102 -2023-05-28 22:06:30.226630 + : pb-IF4OU2QjMQ== ip: an~}i`ajb{vavk, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-28 22:06:41.268890 + : lllllllund||pb-IF4TUBkjDw==|| kicked by profanity check -2023-05-28 22:07:27.574358 + : pb-IF4cUlhdVg== started kick vote for pb-IF48U1QDUw==. -2023-05-28 22:07:35.449423 + : pb-IF4MUBMHKA== ip: azj~z`~~a~~jf, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-28 22:07:57.576666 + : Kick vote End -2023-05-28 22:08:32.621459 + : pb-IF40UBISLQ== ip: bxvf}vb{`~zm, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-28 22:10:30.067031 + : pb-IF4jF1NY ip: azj~z`~zm~}id, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-28 22:14:59.194184 + : pb-IF4sUGYjUw== ip: awj~yl~~j`aiav, Device id: 43c7aa0b8e6ca0df1dee0e297599665d9dd266a0 -2023-05-28 22:15:24.308907 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~oe, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-28 22:15:29.328362 + : pb-IF4cUlhdVg== ip: an~}jcaigxvb|i, Device id: 1da2118ab275f2d9005119016dc8bdbcb0278102 -2023-05-28 22:15:40.368769 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~oe, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-28 22:15:47.393156 + : pb-IF4cUlhdVg== ip: an~}jcaigxvb|i, Device id: 1da2118ab275f2d9005119016dc8bdbcb0278102 -2023-05-28 22:18:19.969903 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-28 22:18:55.096235 + : pb-IF4IUGExHw== ip: ak~{`~ya~~jd, Device id: f7691dea6c35e9b72eb55bb69fa024eb1abf57e6 -2023-05-28 22:21:22.880398 + : pb-IF42UGg_FA==|| kicked > new account -2023-05-28 22:21:46.705313 + : pb-IF4QUkEAPA== ip: dzvf{vb`~~a, Device id: 6c0e8aab3215dfae2d6cbf79826b04d0146dbbd9 -2023-05-28 22:23:33.083059 + : pb-IF4xUnQNVA== ip: dvvc{vao~vi, Device id: 477a46d48ec2c3a3ed0c4fb1e42c2d889ad8233f -2023-05-28 22:24:05.186009 + : pb-IF4qUGgiPw== ip: aakhaadaoa, Device id: 20c60c2e453608e1a62219e466b4b293f2e5bacd -2023-05-28 22:26:09.629798 + : pb-IF4hU1c7BA== ip: an~}h`ai`vvak, Device id: e63c1bcfdee1e40becd4d02f7fac17809bf5d6c1 -2023-05-28 22:27:35.910853 + : pb-IF5dU1BcNw== ip: d}vam~~iiaibx, Device id: d21a562c71994e3968b9183bd96baf8dd4d6b37b -2023-05-28 22:28:00.027876 + : pb-IF49VFQlPA== ip: azo~{m~{`~}lg, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-05-28 22:31:43.879483 + : pb-IF49I04z ip: dvvd|vb{`~~a, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-28 22:32:17.008504 + : pb-IF4dVXNSNg== ip: a}l~yn~~obaicx, Device id: bdd20cd2ed511a78b9f616c5114aac233e7a751f -2023-05-28 22:34:14.402604 + : pb-IF4IVFkKNA== ip: bxvf~va{n~~l`, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-05-28 22:35:03.573546 + : pb-IF4VVG8gNQ== ip: azo~zi~~h`ajc~, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-28 22:35:39.717544 + : pb-IF4IUGcMCw== ip: ak~~`dai`zvbzh, Device id: 5ebc866ad3dcf5ee6a6aa42142351465751ad01f -2023-05-28 22:36:55.975220 + : pb-IF4qUGgiPw== ip: aakhaadaoa, Device id: 20c60c2e453608e1a62219e466b4b293f2e5bacd -2023-05-28 22:39:59.671828 + : pb-IF4VU3EjBg== ip: azj~z`~|n~}jc, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-05-28 22:40:04.699879 + : pb-IF49VFdbEQ== ip: an~}hfaj`{va, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-28 22:41:46.039483 + : pb-IF4VVG8gNQ== ip: azo~zi~~h`ajc~, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-28 22:45:39.071870 + : pb-IF4JU0oMKQ== ip: am~~hcaiazva|`, Device id: 4839f84b673f52a5f58a6d73e5797e27172a0a6b -2023-05-28 22:46:04.169126 + : pb-IF4qUlNfEQ== ip: am~~hcaiazva|`, Device id: 95696fe42d18b0811a5f71f461306f30baad87a9 -2023-05-28 22:46:54.344757 + : pb-IF4sU28eAg== ip: azh~~jiai`}vd{, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-28 22:48:01.593024 + : pb-IF41U2scIg== ip: ak~}hhaoaaih, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-28 22:50:07.158414 + : pb-IF49VFdbEQ== ip: an~}hfaj`{va, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-28 22:50:11.176572 + : pb-IF49I04z ip: dvvd|vb{`~~a, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-28 22:52:48.814889 + : pb-IF4WUBJcVQ== ip: ak~}maamiaa, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-28 22:56:52.725963 + : pb-IF4MU085LA== ip: b}k~~oha`eakf, Device id: fc09720498a246ca809ec2149e0e97ed763a2cc2 -2023-05-28 22:59:39.387074 + : pb-IF4CUm4jHw== ip: azj~z`~zh~yn, Device id: 0c2f6241c570435a23eff32af93a7439749f5827 -2023-05-28 23:01:47.860843 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~~ia, Device id: 84e8c68a67793414f4f9ba929c4417de1a04f4b0 -2023-05-28 23:07:34.403435 + : pb-IF49I04z started kick vote for pb-IF4AU1g9KQ==. -2023-05-28 23:07:55.414332 + : pb-IF41U2scIg== ip: ak~}hhaoaaih, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-28 23:08:04.408452 + : Kick vote End -2023-05-28 23:19:04.090817 + : pb-IF4VU3laVA== ip: azo~{n~~kgaja, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-28 23:21:54.670195 + : pb-IF4TUxEoKg== ip: an~}ifajdzvazj, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-28 23:35:00.564114 + : pb-IF49VFdbEQ== ip: an~}hfaj`{va, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-28 23:39:49.620732 + : pb-IF4lU0MtLQ== ip: an~}hfaii|vf{, Device id: a09d01e25240174cea2612707e52e93b11f5da7e -2023-05-28 23:44:47.718498 + : pb-IF49VFdbEQ== ip: an~}hfaj`{va, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-28 23:52:31.287956 + : pb-IF41U2scIg== ip: ak~}hhaoaaih, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-28 23:53:54.597728 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-29 00:00:13.968767 + : pb-IF41U2scIg== ip: ak~}hhaoaaih, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-29 00:07:53.486579 + : pb-IF5QUGcJIg== ip: a~n~~l~~m~yh, Device id: 24dcf0ae8882ed45d5d842a403bed2ff08688578 -2023-05-29 00:10:59.300513 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-29 00:33:30.992037 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-29 01:14:52.807039 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-29 01:30:55.561424 + : Server started -2023-05-29 01:31:56.808321 + : pb-IF49VFdbEQ== ip: an~}hfaj`{va, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-29 01:35:34.621330 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-29 01:57:42.461681 + : pb-IF4vVUNfEA== ip: azj~z`~~n~~md, Device id: 0fa4c46fc295e5f4f7f6c9d1ddeb26c91d3742da -2023-05-29 02:09:47.949073 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-29 02:10:53.212897 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-29 02:36:20.830370 + : pb-IF4wU1MPEg== ip: awj~ya~~oiaifv, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-29 02:38:22.360942 + : pb-JiNJARFcUUZCW19DGEdQV1VAEkVYRFFF ip: a~h~}jdaia|vb|a, Device id: 62797d26a16e23e5bd0348480f002238abaa774e -2023-05-29 02:41:56.182825 + : pb-IF4JU3MeLQ== ip: a{i~~meaievvbi, Device id: c6f5d0c45ecb7c810c0a0db59104fd16eabcd953 -2023-05-29 02:43:47.377763 + : pb-IF4wU1MPEg== started kick vote for pb-IF4JU3MeLQ==. -2023-05-29 02:44:17.380392 + : Kick vote End -2023-05-29 02:50:12.361570 + : pb-IF4wU1MPEg== started kick vote for pb-IF4JU3MeLQ==. -2023-05-29 02:50:42.365100 + : Kick vote End -2023-05-29 02:54:53.297301 + : pb-IF4wU1MPEg== started kick vote for pb-IF4XUGU-CA==. -2023-05-29 02:55:23.302655 + : Kick vote End -2023-05-29 02:56:27.299697 + : pb-IF4rVXg5NA== ip: dxvazva|h~yj, Device id: 6c089592ea77b35ebdaf2ef152cf3dca2e0c13fa -2023-05-29 02:58:07.447295 + : pb-IF4XUGU-CA== started kick vote for pb-IF4wU1MPEg==. -2023-05-29 02:58:37.455730 + : Kick vote End -2023-05-29 03:01:11.332364 + : pb-IF5SVxYmUg== ip: dvvd|vb{a~~hh, Device id: 207e27917af92a0ac9dfc2fd9ee0253f68b4ce0e -2023-05-29 03:08:04.889924 + : pb-IF4vVUNfEA== ip: azj~z`~~n~~md, Device id: 0fa4c46fc295e5f4f7f6c9d1ddeb26c91d3742da -2023-05-29 03:40:03.071186 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-29 04:29:00.616727 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-29 05:09:25.502795 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-29 05:29:47.985915 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-29 05:30:09.055457 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-29 06:00:29.735621 + : pb-IF4cUBYfCg== ip: azo~{m~~maajb~, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-29 06:13:39.783229 + : pb-IF4NUBMxDQ== ip: a|j~~mdaidaab, Device id: 043ed8ced1bff3ad2898cfdeca2bcddae1fe0fc5 -2023-05-29 06:47:16.433379 + : pb-IF4GUGcaCA== ip: azo~{l~~`gaoi, Device id: 980bee394a438c7f81ed5293dcfcd54639e0cced -2023-05-29 06:51:23.415387 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-29 07:08:19.930614 + : pb-IF4IVFkKNA== ip: bxvf~va{n~~l`, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-05-29 08:30:58.011208 + : Server started -2023-05-29 08:34:55.180437 + : pb-IF4-UGgABA==|| kicked > new account -2023-05-29 08:41:56.277156 + : pb-IF4BUxIzJg== ip: azj~z`~}kbaif~, Device id: 2c199d4cee94d49e46c0d809e3ed960b7011f73b -2023-05-29 08:47:11.465211 + : pb-IF49VFdbEQ== ip: an~}hfaiiwvb}k, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-29 08:51:03.291944 + : pb-IF4BUxIzJg== ip: azj~z`~}kbaif~, Device id: 2c199d4cee94d49e46c0d809e3ed960b7011f73b -2023-05-29 08:55:19.153183 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-29 08:55:59.298436 + : pb-IF4xU1YlVw== ip: b}k~~`hakbaje, Device id: 74b57df016df2de62f715eb1932f5e0d81f67f05 -2023-05-29 09:01:57.688904 + : pb-IF5QVFMCUg== ip: azo~{n~~jbaih, Device id: 3b483075b2023edb95e323dc2cc0d8dc516cae08 -2023-05-29 09:12:41.000186 + : pb-IF4UVGc9PQ== ip: awa~~kaa`faiaz, Device id: 4f102ab09f8ed6c639b9cee82cea6c67b65143f8 -2023-05-29 09:12:43.007519 + : pb-IF5TUGo6VQ== ip: bxvc{vevawl, Device id: 8d3fe4543537d59a49571b4432ccf773907d5082 -2023-05-29 09:15:22.623397 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-29 09:24:37.549242 + : pb-IF5cUkwjDA== ip: dvvcyvb~l~~kc, Device id: 84e8c68a67793414f4f9ba929c4417de1a04f4b0 -2023-05-29 09:26:51.016737 + : pb-IF4-Um4_Lw== ip: azj~zo~vo~~hg, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-05-29 09:32:14.927520 + : pb-JiNJARBSXUFIWl1CGUdZU1VEGEZcRFVL started kick vote for pb-IF5cUkwjDA==. -2023-05-29 09:32:44.928913 + : Kick vote End -2023-05-29 09:41:24.295337 + : pb-JiNJARBSXUFIWl1CGUdZU1VEGEZcRFVL ip: azj~zo~zi~~nd, Device id: bbe038db81f75dfbd848b16d315843b34cf7b375 -2023-05-29 09:45:00.114417 + : pb-IF4WUBJcVQ== ip: ak~}maamiaa, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-29 09:45:06.140728 + : pb-IF4VU3laVA== ip: azo~{n~}hia`d, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-29 09:48:42.924458 + : pb-IF4WUBJcVQ== ip: ak~}maamiaa, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-29 09:50:16.289883 + : pb-IF4TV3RbDA== ip: azo~|l~~mdajd{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-29 09:52:19.876746 + : pb-IF4eU0s9Pw== started kick vote for pb-IF4VU3laVA==. -2023-05-29 09:52:49.883772 + : Kick vote End -2023-05-29 09:52:51.886117 + : pb-IF4PUxM7Mg== ip: a|o~vo~~jcajc~, Device id: 2005d3932c1dcb0f796e811b13b5e3ce8549c984 -2023-05-29 09:53:05.937458 + : pb-IF4BV2gDEA== ip: azo~{a~~m`aibx, Device id: 4e495003c3ee4760bccb997a6f3f8f2378e6c857 -2023-05-29 09:54:45.298683 + : pb-IF4GUGcaCA== ip: azo~{l~~ogami, Device id: 980bee394a438c7f81ed5293dcfcd54639e0cced -2023-05-29 09:57:17.840758 + : pb-IF4OU2QjMQ== ip: an~}i`ajb{vavk, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-29 09:59:35.554064 + : pb-IF4TV3RbDA== started kick vote for pb-IF4BV2gDEA==. -2023-05-29 10:00:05.555747 + : Kick vote End -2023-05-29 10:01:40.774876 + : pb-JiNJARBSXUFIWl1CGUdZU1VEGEZcRFVL ip: azj~zo~zi~~nd, Device id: bbe038db81f75dfbd848b16d315843b34cf7b375 -2023-05-29 10:04:44.686625 + : pb-IF4TV3RbDA== started kick vote for pb-IF4WUBJcVQ==. -2023-05-29 10:05:14.692117 + : Kick vote End -2023-05-29 10:16:34.079821 + : pb-IF4zUBUlNg== ip: an~}hfaievb}l, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-29 10:25:01.981035 + : pb-IF5dU3UiAw== ip: a~o~}ifai`vi{, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-29 10:27:09.086324 + : pb-IF4zUBUlNg== started kick vote for pb-IF5dU3UiAw==. -2023-05-29 10:27:39.094443 + : Kick vote End -2023-05-29 10:28:06.600484 + : pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA ip: an~~afajiajd~, Device id: 936c205c0c65262d62300105d4329a28095c9790 -2023-05-29 10:28:42.749064 + : pb-IF4WUBJcVQ== ip: ak~}maamiaa, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-29 10:29:07.362286 + : pb-IF5dU3UiAw== started kick vote for pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA. -2023-05-29 10:29:08.842913 + : pb-IF4hUBddUA== ip: b}k~~`iajbyvb~h, Device id: bfd69c3b6bfa313e00ee48165f732d2d4ae5979d -2023-05-29 10:29:17.885895 + : pb-IF4zUBUlNg== ip: an~}hfaievb}l, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-29 10:29:37.364047 + : Kick vote End -2023-05-29 10:31:24.717574 + : pb-IF4hUBddUA== started kick vote for pb-IF5dU3UiAw==. -2023-05-29 10:31:54.724945 + : Kick vote End -2023-05-29 10:33:08.708185 + : pb-IF5QU1EMXA== ip: axi~zi~~niai`}, Device id: 756e17bc52d6f3915f82e19e4ec066b70b0e0718 -2023-05-29 10:35:25.239599 + : pb-IF4nUGE7KA== ip: b}k~~`aaifaie, Device id: 13a1d48885d496e0b6ecebef433118d164ffa331 -2023-05-29 10:36:43.487598 + : pb-IF5dU3UiAw== ip: azo~{a~~kaa`d, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-29 10:38:19.911076 + : pb-IF4zUGcSDQ== ip: evviyva}k~vo, Device id: 540a2715917a5e85e90dd72f486b6d5cedcfe3b2 -2023-05-29 10:38:21.919679 + : pb-IF4QUGYmNw== ip: an~~agaj`zvb|a, Device id: 2de44c3b1f9ba4a7628b1f54e6e18e2af8523267 -2023-05-29 10:40:21.339353 + : pb-IF5QU1EMXA== ip: axi~zi~~niai`}, Device id: 756e17bc52d6f3915f82e19e4ec066b70b0e0718 -2023-05-29 10:42:26.795148 + : pb-IF4eU0s9Pw== ip: a~a~vl~yl~vo, Device id: 79ff602d98582d9885d769eec06b4ebd8aab0aad -2023-05-29 10:43:06.978311 + : pb-IF4iVWVbCw== ip: ak~~mdakga`f, Device id: 653e09ecedc634e62765820bf582230aa4501783 -2023-05-29 10:45:55.577527 + : pb-IF4PV3UdLw== ip: a|a~~ngajezvf, Device id: cd10fa340ff9b6a61371bea0ebac4bab56bbf67c -2023-05-29 10:49:01.380661 + : pb-IF5QU1EMXA== ip: axi~zi~~niai`}, Device id: 756e17bc52d6f3915f82e19e4ec066b70b0e0718 -2023-05-29 10:51:16.877498 + : pb-IF4eU0s9Pw== started kick vote for pb-IF5dU3UiAw==. -2023-05-29 10:51:46.882349 + : Kick vote End -2023-05-29 10:55:12.138010 + : pb-IF4eU0s9Pw== started kick vote for pb-IF5dU3UiAw==. -2023-05-29 10:55:42.141057 + : Kick vote End -2023-05-29 10:57:27.298514 + : pb-IF5dU3UiAw== started kick vote for pb-IF4eU0s9Pw==. -2023-05-29 10:57:57.300153 + : Kick vote End -2023-05-29 11:19:37.213440 + : pb-IF4uV3omUw== ip: ak~w`~wj~}ic, Device id: 489a8844e3d73d9056c08b79f499898354385f37 -2023-05-29 11:23:02.030659 + : pb-IF4VVG8gNQ== ip: azo~zi~~icaigw, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-29 11:24:58.462488 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-29 11:25:09.502724 + : pb-IF4nUkteVA== ip: a}j~zh~}hbaigy, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-05-29 11:25:40.898690 + : pb-IF4yUGg-UQ==|| kicked > new account -2023-05-29 11:26:21.744563 + : pb-IF4VVG8gNQ== ip: azo~zi~~icaigw, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-29 11:26:56.102923 + : pb-IF4cUktZNg== started kick vote for pb-IF4VVG8gNQ==. -2023-05-29 11:26:59.382333 + : pb-IF4VVG8gNQ== kicked by kickvotes. -2023-05-29 11:30:35.892336 + : pb-IF4nUkteVA== started kick vote for pb-IF4jUxRfEA==. -2023-05-29 11:30:49.579306 + : pb-IF4jUxRfEA== kicked by kickvotes. -2023-05-29 11:31:58.244735 + : pb-IF4nUnZfJg== started kick vote for pb-IF4nUkteVA==. -2023-05-29 11:32:28.248825 + : Kick vote End -2023-05-29 11:32:29.113670 + : pb-IF5RU2oJUA== ip: bxvf~vb}k~~hh, Device id: b52a0123a41243d56ed209aa5016622aec74d299 -2023-05-29 11:32:59.215281 + : pb-IF4VVG8gNQ== ip: azo~zi~~icaigw, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-29 11:34:04.437855 + : pb-IF4nUnZfJg== ip: dvvc{ve|va~j, Device id: 4ba0df99dfeca7b3c40f7493f1c2420e1b54ed88 -2023-05-29 11:34:19.762142 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4cUktZNg==. -2023-05-29 11:34:49.769546 + : Kick vote End -2023-05-29 11:36:41.065066 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-29 11:39:19.278360 + : pb-IF5RUxMiVw== started kick vote for pb-IF4NUxFfEg==. -2023-05-29 11:39:45.758716 + : Kick vote End -2023-05-29 11:39:57.816669 + : pb-IF4VVG8gNQ== started kick vote for pb-IF5RUxMiVw==. -2023-05-29 11:40:27.824185 + : Kick vote End -2023-05-29 11:41:04.964263 + : pb-IF4zUko8Iw== ip: a}l~yn~~niaiby, Device id: 13e23e0394784926501b761c617c904148c8bcdd -2023-05-29 11:41:27.045147 + : pb-IF4jUxRfEA== ip: azj~z`~|l~~af, Device id: 0cd2b6c01ad3d64c9890500683d5f72e21601466 -2023-05-29 11:41:32.791420 + : pb-IF5RUxMiVw== started kick vote for pb-IF4jUxRfEA==. -2023-05-29 11:41:33.060699 + : pb-IF4pU2ICCg== ip: azo~|j~~abajcz, Device id: 8003a9b2cc7893c194deb4d708f9cde2b6e43b1e -2023-05-29 11:41:51.116817 + : pb-IF5UVEMIIg== ip: azo~|j~}khajav, Device id: 787c0e5b9335d70682a4629f650dd827a524180f -2023-05-29 11:41:52.116098 + : pb-IF5RU2oJUA== ip: bxvf~vb}k~~hh, Device id: b52a0123a41243d56ed209aa5016622aec74d299 -2023-05-29 11:42:02.799488 + : Kick vote End -2023-05-29 11:45:10.996702 + : pb-IF4jUxRfEA== started kick vote for pb-IF4nUkteVA==. -2023-05-29 11:45:13.828769 + : pb-IF4pU2ICCg== ip: azo~|j~~abajcz, Device id: 8003a9b2cc7893c194deb4d708f9cde2b6e43b1e -2023-05-29 11:45:41.001578 + : Kick vote End -2023-05-29 11:46:04.010256 + : pb-IF4nUnZfJg== ip: dvvc{ve|va~j, Device id: 4ba0df99dfeca7b3c40f7493f1c2420e1b54ed88 -2023-05-29 11:47:33.384157 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-29 11:49:22.748817 + : pb-IF4OPhMg ip: an~}jbai`aie|, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-29 11:51:17.177380 + : pb-IF4zUBUlNg== ip: an~}hfaievb}l, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-29 11:51:58.442722 + : pb-IF4cUktZNg== started kick vote for pb-IF4pUGgqVw==. -2023-05-29 11:52:28.449776 + : Kick vote End -2023-05-29 11:53:03.585442 + : pb-IF4VVG8gNQ== ip: azo~zi~~icaigw, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-29 11:53:21.677765 + : pb-IF4OU2QjMQ== ip: ak~}hhaoaaih, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-29 11:55:34.831481 + : pb-IF5VUGtZAw==|| kicked > new account -2023-05-29 11:56:58.539612 + : pb-IF4OU2QjMQ== ip: ak~}hhaoaaih, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-29 11:57:40.717564 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-29 11:58:37.404485 + : pb-IF4nUnZfJg== started kick vote for pb-IF4VVG8gNQ==. -2023-05-29 11:59:07.418159 + : Kick vote End -2023-05-29 12:01:15.611169 + : pb-IF4OPhMg ip: an~}jbai`aie|, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-29 12:02:31.867494 + : pb-IF4pU2ICCg== started kick vote for pb-IF4pUGgqVw==. -2023-05-29 12:03:01.873866 + : Kick vote End -2023-05-29 12:04:16.306331 + : pb-IF4OU2QjMQ== ip: an~}i`ajb{vavk, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-29 12:05:40.990793 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4pUGgqVw==. -2023-05-29 12:06:03.743352 + : pb-IF4zUBUlNg== ip: an~}hfaievb}l, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-29 12:06:10.994272 + : Kick vote End -2023-05-29 12:07:26.716698 + : pb-IF5UVEMIIg== started kick vote for pb-IF4cUktZNg==. -2023-05-29 12:07:56.719270 + : Kick vote End -2023-05-29 12:10:46.120565 + : pb-IF4AVXgOUw== ip: azo~{`~~ieakg, Device id: 2f2e18f9ec7d1f1fb2a3b8548ee3ab5ce9f90be6 -2023-05-29 12:11:00.188400 + : pb-IF4VVG8gNQ== ip: azo~zi~~icaigw, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-29 12:11:19.278472 + : pb-IF4AVXgOUw== ip: azo~{`~~ieakg, Device id: 2f2e18f9ec7d1f1fb2a3b8548ee3ab5ce9f90be6 -2023-05-29 12:11:21.281526 + : pb-IF5cPGsk ip: ak~xi~~adami, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-05-29 12:13:17.704099 + : pb-IF4sAGcj ip: a~o~va~~nhaja|, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-29 12:22:41.903194 + : pb-IF4VVG8gNQ== ip: azo~zi~~icaigw, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-29 12:22:50.945748 + : pb-IF4cUBYfCg== ip: azo~{m~~miaia, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-29 12:23:42.096349 + : pb-IF4BV2gDEA== ip: azo~{a~~keaka, Device id: 4e495003c3ee4760bccb997a6f3f8f2378e6c857 -2023-05-29 12:27:30.941507 + : pb-IF4MUBMHKA== ip: azj~z`~~n~~nf, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-29 12:37:28.165376 + : pb-IF4mVFQtVQ== ip: a~o~}jhaia~vcx, Device id: 5c2a9586f320d9fb796d03810e16803c3ac3dcce -2023-05-29 12:44:35.794740 + : pb-IF4sAGcj ip: a~o~va~~nhaja|, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-29 12:44:35.795537 + : pb-IF4lUlBcCw== ip: azo~|l~zi~}ig, Device id: 49f13e692cf182c49fd46badf6cd5f72adea805b -2023-05-29 12:51:39.435350 + : pb-IF4lUlBcCw== ip: dvvd|vd~vaxk, Device id: c2eaf0fbd40a55ee44817b911bcb1124d8644b1f -2023-05-29 12:52:32.651730 + : pb-IF4MUBMHKA== ip: azj~z`~~n~~mb, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-29 12:53:06.963002 + : pb-IF40UncaLg== ip: dvvc|vb~`~zi, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-29 12:53:08.965161 + : pb-IF4MUBMHKA== ip: azj~z`~~n~~mb, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-29 13:03:05.297335 + : pb-IF49I04z ip: a~h~}jda`fale, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-29 13:06:32.381910 + : pb-IF4-UGgHHw==|| kicked > new account -2023-05-29 13:07:46.447162 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-29 13:09:29.844122 + : pb-IF5dU3UiAw== ip: azo~{a~~kcaib{, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-29 13:19:33.135367 + : pb-IF4oUlE_Vg== ip: an~}ifaje{vazn, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-29 13:19:57.209662 + : pb-IF5RUxUmIw== ip: azj~zo~wk~~hb, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-29 13:21:57.619326 + : pb-IF5RUxUmIw== ip: azj~zo~wk~~hb, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-29 13:22:17.003864 + : pb-IF4-UGgGMw==|| kicked > new account -2023-05-29 13:28:28.024529 + : pb-IF4xUGQfNg== ip: b}k~~ohaiewvez, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-05-29 13:28:30.037157 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-29 13:31:06.863651 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-29 13:32:26.253766 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-29 13:33:29.463756 + : pb-IF5RUxUmIw== ip: azj~zo~wk~~hb, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-29 13:34:05.592717 + : pb-IF4OU2QjMQ== ip: b}k~~ohaiewvez, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-29 13:36:50.274393 + : pb-IF5WUGFcIQ== ip: an~~afaacald, Device id: 46e4f784a06b63e09f8c60eba4317e15f799474d -2023-05-29 13:37:14.577387 + : pb-IF5RUxUmIw== started kick vote for pb-IF5WUGFcIQ==. -2023-05-29 13:37:44.580304 + : Kick vote End -2023-05-29 13:38:14.570518 + : pb-IF40UGEgBw== ip: a~i~~jeajczvfv, Device id: e140541d1f08b6936e96c7b2608318ec9b7107e3 -2023-05-29 13:38:40.658890 + : pb-IF5RUxUmIw== ip: azj~zo~wk~~hb, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-29 13:41:17.318328 + : pb-IF4zUBUlNg== ip: d}vam~}kgai`}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-29 13:44:43.109172 + : pb-IF4jF1NY ip: azj~z`~{l~, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-29 13:52:24.523632 + : pb-IF40UncaLg== ip: dvvc|vbn~x, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-29 13:56:27.399083 + : pb-IF49VFQlPA== ip: azo~{m~|l~~ne, Device id: d043bc3eac9405dd49f306e5fe61846765dba91e -2023-05-29 14:01:16.496229 + : pb-IF4iVU0PCA== ip: a~h~}jda`haifw, Device id: 29341a3e26de7f8c75926e120d63fd5f8e7b0d73 -2023-05-29 14:01:17.502004 + : pb-IF4OPhMg ip: an~}jbai`aie|, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-29 14:03:30.982803 + : pb-IF5QVFMCUg== ip: azo~{n~~hcaigy, Device id: 3b483075b2023edb95e323dc2cc0d8dc516cae08 -2023-05-29 14:04:01.213388 + : pb-IF4oUlE_Vg== ip: an~}ifaje{vazn, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-29 14:06:42.826847 + : pb-IF4OPhMg ip: an~}jbai`aie|, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-29 14:07:51.054750 + : pb-IF5RUxUmIw== ip: azj~zo~vi~~ab, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-29 14:15:45.064789 + : pb-IF4UVRgzFw== ip: azj~zo~}jcaaf, Device id: 26c1add49264647581bf91fda34abf0f061f35b4 -2023-05-29 14:16:42.206553 + : pb-IF4oUlE_Vg== | kicked for chat spam -2023-05-29 14:18:24.646139 + : pb-IF41U2scIg== ip: ak~}hhaoaaih, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-29 14:20:16.023639 + : pb-IF4TUGEIDQ== ip: a~h~}jdaiivb}, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-29 14:24:09.166665 + : pb-IF4QUBQoBw== ip: an~yn~zn~zm, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-29 14:24:32.295797 + : pb-IF49UBEhJA== ip: azo~|j~|k~~mf, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-29 14:25:09.408485 + : pb-IF4yU1oxUg== ip: azo~|j~|l~~`g, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-29 14:25:20.452331 + : pb-IF49UBEhJA== ip: azo~|j~|k~~mf, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-29 14:25:26.465057 + : pb-IF4yU1oxUg== ip: azo~|j~|l~~`g, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-29 14:25:55.553108 + : pb-IF4yU1oxUg== ip: azo~|j~|l~~`g, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-29 14:27:39.923846 + : pb-IF4jF1NY ip: azj~z`~{l~, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-29 14:28:31.153081 + : pb-IF41UBQPXA== ip: a}l~~hfaicyvbv, Device id: 4053d4ecb6d73d755ad3c574aa4bd40384b30b43 -2023-05-29 14:30:04.732531 + : pb-IF4jF1NY started kick vote for pb-IF41UBQPXA==. -2023-05-29 14:30:34.739930 + : Kick vote End -2023-05-29 14:32:35.094865 + : pb-IF4IUGVTMQ== ip: axi~zi~}hhaib}, Device id: c122767b74fe0c99f1c70247ae0b7d6375493e1d -2023-05-29 14:35:22.531714 + : pb-IF4jF1NY started kick vote for pb-IF4UVRgzFw==. -2023-05-29 14:37:18.590334 + : Server started -2023-05-29 14:37:19.596849 + : pb-IF4VVG8gNQ== ip: azo~zi~~heaiex, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-29 14:37:20.600617 + : pb-IF4jF1NY ip: azj~z`~{l~, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-29 14:37:36.654653 + : pb-IF5QVFMCUg== ip: azo~{n~~hcaigy, Device id: 3b483075b2023edb95e323dc2cc0d8dc516cae08 -2023-05-29 14:37:53.016691 + : pb-IF4SUGgGUg==|| kicked > new account -2023-05-29 14:39:17.963014 + : pb-IF41UBQPXA== ip: a}l~~hfaicyvbv, Device id: 4053d4ecb6d73d755ad3c574aa4bd40384b30b43 -2023-05-29 14:40:08.636089 + : pb-IF4jF1NY started kick vote for pb-IF41UBQPXA==. -2023-05-29 14:40:38.636744 + : Kick vote End -2023-05-29 14:40:47.300013 + : pb-IF4TUGEIDQ== ip: a~h~}jdaiivb}, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-29 14:41:19.821819 + : pb-IF4hUGcNBA==|| kicked > new account -2023-05-29 14:42:40.696732 + : pb-IF4HU1gjPQ== ip: an~~agalbaicz, Device id: b2007d48b5d149fc2bb865186877e0b72d7bb8cc -2023-05-29 14:43:04.799939 + : pb-IF4XU0ddEA== ip: awj~ya~~ogaia}, Device id: 7b46a4b00db7f6fad2b9f32c6c878678662345be -2023-05-29 14:45:19.316980 + : pb-IF4VVG8gNQ== ip: azo~zi~~heaiex, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-29 14:45:45.671538 + : pb-IF4jF1NY started kick vote for pb-IF41UBQPXA==. -2023-05-29 14:45:54.481940 + : pb-IF41UBQPXA== kicked by kickvotes. -2023-05-29 14:47:00.719418 + : pb-IF4VVG8gNQ== ip: azo~zi~~heaiex, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-29 14:47:25.795491 + : pb-IF4VVG8gNQ== ip: azo~zi~~heaiex, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-29 14:48:58.131667 + : pb-IF4oUlE_Vg== ip: an~}ifaje{vazn, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-29 15:03:40.399918 + : pb-IF4hUBddUA== ip: b}k~~`iajbyvavl, Device id: bfd69c3b6bfa313e00ee48165f732d2d4ae5979d -2023-05-29 15:06:39.039007 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-29 15:16:26.397848 + : pb-IF41UBQPXA== ip: a}l~~hfaicyvbv, Device id: 4053d4ecb6d73d755ad3c574aa4bd40384b30b43 -2023-05-29 15:17:31.659127 + : pb-IF4VVG8gNQ== ip: azo~zi~~heaiex, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-29 15:17:36.674507 + : pb-IF4SVFkaCQ== ip: a~l~~jbaia~vbv, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-05-29 15:17:43.702229 + : pb-IF4VVG8gNQ== ip: azo~zi~~heaiex, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-29 15:18:22.822557 + : pb-IF4SVFkaCQ== ip: a~l~~jbaia~vbv, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-05-29 15:22:37.766912 + : pb-IF4UVUwcBg== ip: dvvcxvazj~~nf, Device id: c5af80bd44834cd0d9a3b12af61f40dd2e4f9756 -2023-05-29 15:43:23.571249 + : pb-IF4nUnBdNg== ip: a}j~~nbaidzva{k, Device id: 12c5ef4f3635e09675c5bf9d080e806eebef8bea -2023-05-29 15:47:19.525659 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-29 15:47:30.248777 + : pb-IF4nUnBdNg== started kick vote for pb-IF4nUxE4Nw==. -2023-05-29 15:48:00.254266 + : Kick vote End -2023-05-29 15:49:26.811183 + : banned Luckybhai -2023-05-29 15:49:26.811306 + : kicked Luckybhai -2023-05-29 15:55:03.270841 + : pb-IF5UUxU7Ag== ip: an~}j`ajdwvax`, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-05-29 15:55:36.399753 + : pb-IF4LU1guKQ== ip: an~~aeakeanb, Device id: 5354fbeb00d4c730b4ea6696fbe8b458c605766c -2023-05-29 15:55:40.414373 + : pb-IF4nUnBdNg== | kicked > reason:Banned account -2023-05-29 15:56:56.676574 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~oe, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-29 15:57:59.927109 + : pb-IF5UUxU7Ag== ip: an~}j`ajdwvax`, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-05-29 15:58:07.955505 + : pb-IF4LU1guKQ== ip: an~~aeakeanb, Device id: 5354fbeb00d4c730b4ea6696fbe8b458c605766c -2023-05-29 15:58:41.077025 + : pb-IF5UUxU7Ag== ip: an~}j`ajdwvax`, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-05-29 15:59:01.130001 + : pb-IF5UUxU7Ag== ip: an~}j`ajdwvax`, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-05-29 16:00:54.555136 + : pb-IF5UUxU7Ag== ip: an~}j`ajdwvax`, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-05-29 16:01:05.001772 + : pb-IF4uUGg8Ew==|| kicked > new account -2023-05-29 16:01:12.625519 + : pb-IF5UUxU7Ag== ip: an~}j`ajdwvax`, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-05-29 16:01:41.725369 + : pb-IF5UUxU7Ag== ip: an~}j`ajdwvax`, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-05-29 16:02:17.870874 + : pb-IF4LU1guKQ== ip: an~~aeakeanb, Device id: 5354fbeb00d4c730b4ea6696fbe8b458c605766c -2023-05-29 16:03:11.071977 + : pb-IF4LU1guKQ== ip: an~~aeakeanb, Device id: 5354fbeb00d4c730b4ea6696fbe8b458c605766c -2023-05-29 16:09:02.424939 + : pb-IF4FU1daUA== ip: b}k~}khajaxvez, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-29 16:13:30.610248 + : pb-IF5UUxU7Ag== started kick vote for pb-IF4AUBIRAw==. -2023-05-29 16:13:37.101501 + : Kick vote End -2023-05-29 16:14:14.545854 + : pb-IF41U2scIg== ip: ak~}hhaniaib|, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-29 16:14:29.592639 + : pb-IF5UUxU7Ag== ip: an~}j`ajdwvax`, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-05-29 16:15:46.841143 + : pb-IF5UUxU7Ag== ip: an~}j`ajdwvax`, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-05-29 16:16:31.962430 + : pb-IF5UUxU7Ag== ip: an~}j`ajdwvax`, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-05-29 16:17:03.050815 + : pb-IF5UUxU7Ag== ip: an~}j`ajdwvax`, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-05-29 16:17:06.062880 + : pb-IF4LU1guKQ== ip: an~~aeakeanb, Device id: 5354fbeb00d4c730b4ea6696fbe8b458c605766c -2023-05-29 16:35:46.509533 + : pb-IF5XUGshAg==|| kicked > new account -2023-05-29 16:38:47.805112 + : pb-IF5dU3UiAw== ip: azo~{a~~mfa`b, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-29 16:45:00.105249 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-29 16:45:04.124626 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-29 16:51:02.506438 + : pb-IF4MUGUlEQ== ip: bj~~oiaadalb, Device id: ee8b2e2f100fd0b8bd4cc060bd1999f1c48ec64d -2023-05-29 16:51:33.622427 + : pb-IF40UBISLQ== ip: a~h~}jgamaaih, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-29 16:52:00.737671 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-29 16:54:00.174408 + : pb-IF4FU1daUA== ip: b}k~}khajaxvez, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-29 16:54:15.234773 + : pb-IF4cVGMHLA== ip: an~~adaj`yvb}`, Device id: b055fe844b57210943a3bba37a3a7be5abc140d9 -2023-05-29 16:55:00.347753 + : pb-IF4cUktZNg== ip: azj~z`~~mfald, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-29 16:55:48.632328 + : pb-IF5dU3UiAw== ip: azo~{a~~leand, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-29 16:57:22.957041 + : pb-IF4cUktZNg== ip: azj~z`~~mfald, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-29 16:58:05.115790 + : pb-IF4cUktZNg== ip: azj~z`~~mgaify, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-29 16:59:02.319395 + : pb-IF40UGg6LA== ip: aya~~liajc~vai, Device id: 4542aab9b2fa9c8b36111f5fa2955278354109c9 -2023-05-29 17:00:57.725753 + : pb-IF4xUxIvKw== ip: ak~~oeajdyvev, Device id: 3ec25bb9c2ea8fb83592981b86329c30388a5cdc -2023-05-29 17:02:00.932329 + : pb-IF41U1hbMQ== ip: a~m~vn~xo~~ab, Device id: 6bf82f1bc3f6e36ff156ce7af41d7ea8797d4fc1 -2023-05-29 17:03:04.152129 + : pb-IF5dU3UiAw== ip: azo~{a~~leand, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-29 17:04:33.482533 + : pb-IF4AUxYpIw== ip: dvvcxvb{k~~ie, Device id: 7ea05ccb4bce7444af2bf6f94b21f050f5d448a9 -2023-05-29 17:08:12.282179 + : pb-IF4cUBYfCg== ip: azo~{m~~lea`d, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-29 17:13:05.396887 + : pb-IF4sU0RbLQ== ip: azo~{n~}ibaia}, Device id: bdd596e1a861fd98c8775436be07e49fc7904a77 -2023-05-29 17:17:53.421399 + : pb-IF4OU2QjMQ== ip: an~}jaaidake, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-29 17:24:59.958559 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-29 17:25:40.115545 + : pb-IF4pU1U8VQ== ip: a~i~vj~xm~}ka, Device id: 10c5129130345ffd919d3546c3dc1729aa6ba63f -2023-05-29 17:26:44.350262 + : pb-IF4UVRRfNw== ip: b}k~~`baje{va}m, Device id: 22338eac02bdee1ba8b06a9fc0ecf9926b2cf226 -2023-05-29 17:28:51.739761 + : pb-IF4VU3laVA== ip: ak~~naaid{vawk, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-29 17:29:23.853051 + : pb-IF4OU2QjMQ== ip: an~}jaaidake, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-29 17:34:56.082908 + : pb-IF5WU28fFg== ip: b~j~~hdajbvva~j, Device id: aadabfea6f6ee563e34ec6689daff15a5ad594aa -2023-05-29 17:46:06.595883 + : pb-IF4dU1IOKQ== ip: bxvevvivi|, Device id: 0ea8bbe6ad0e9c005407166ad37923d1f241be41 -2023-05-29 17:52:48.038189 + : pb-IF4WUBJcVQ== ip: ak~}maamiaa, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-29 17:54:48.479676 + : pb-IF49I04z ip: a~m~vo~vvbn, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-29 17:56:24.825790 + : pb-IF49I04z ip: a~m~vo~vvbn, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-29 18:06:19.958922 + : pb-IF4TUxEoKg== ip: an~~acai`{va`, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-29 18:07:58.375074 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-29 18:15:52.074407 + : pb-IF4TUxEoKg== ip: an~~acai`{va`, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-29 18:16:02.104750 + : pb-IF4vM0Nd ip: a~o~vo~}haaje}, Device id: 99e138110e043c0db3bf1e51c3506ff4213780ee -2023-05-29 18:17:29.386188 + : pb-IF4cUktZNg== ip: azj~z`~~mdaih|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-29 18:17:45.444480 + : pb-IF4SVFkaCQ== ip: a~l~~jbai`{vaxh, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-05-29 18:18:31.597756 + : pb-IF4vM0Nd ip: a~o~vo~}haaje}, Device id: 99e138110e043c0db3bf1e51c3506ff4213780ee -2023-05-29 18:18:46.662625 + : pb-IF4WUBJcVQ== ip: ak~}maamiaa, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-29 18:20:26.048452 + : pb-IF4WUBJcVQ== ip: ak~}maamiaa, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-29 18:21:17.227204 + : pb-IF4FU1daUA== ip: b}k~}khajaxvez, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-29 18:23:02.605925 + : pb-IF4TUGEIDQ== ip: a~h~}jdaihwvan, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-29 18:26:43.388973 + : pb-IF4OU2QjMQ== ip: an~}jaaidake, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-29 18:27:53.663188 + : pb-IF49VFdbEQ== ip: an~}hfaj`zva{h, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-29 18:28:02.689729 + : pb-IF49VFdbEQ== ip: an~}hfaj`zva{h, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-29 18:28:36.805091 + : pb-IF4VVG8gNQ== ip: azo~zi~~jdaif|, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-29 18:31:34.393058 + : pb-IF4VVG8gNQ== ip: azo~zi~~jdaif|, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-29 18:32:19.541954 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-29 18:32:25.568468 + : pb-IF49I04z ip: a~h~}jda`haif~, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-29 18:35:42.244879 + : pb-IF4LU0wKIw== ip: azj~zo~}i`aoi, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-29 18:36:01.305681 + : pb-IF4oUlE_Vg== ip: an~}ifaje{vazn, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-29 18:36:22.381861 + : pb-IF5RUxUmIw== ip: azj~zo~vm~zm, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-29 18:36:40.797831 + : pb-IF4LUGggCQ==|| kicked > new account -2023-05-29 18:37:22.587299 + : pb-IF4HU0VcCA== ip: d~vava~~khaof, Device id: 0048b280144da2caaeb58a3dd845b91cdf4d29b8 -2023-05-29 18:38:08.788636 + : pb-IF5RUxUmIw== ip: azj~zo~vm~zm, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-29 18:38:11.798753 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-29 18:38:33.877425 + : pb-IF4zUBUlNg== ip: d}vam~}kgakd, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-29 18:39:29.229650 + : pb-IF4oUlE_Vg== ip: an~}ifaje{vazn, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-29 18:39:56.341974 + : pb-IF4OU3E4NA== ip: a~h~}jeaoaajbv, Device id: a95c24cffdb10f382dc1eb9d917b4dd23d57e344 -2023-05-29 18:41:26.724647 + : pb-IF4VVG8gNQ== started kick vote for pb-IF40UncaLg==. -2023-05-29 18:41:56.725928 + : Kick vote End -2023-05-29 18:42:01.761442 + : pb-IF5WUGFcIQ== ip: an~~afaacald, Device id: 46e4f784a06b63e09f8c60eba4317e15f799474d -2023-05-29 18:42:53.919349 + : pb-IF4VUlcBVQ== ip: azj~z`~~`dalf, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-05-29 18:49:16.439780 + : pb-IF4VUlcBVQ== ip: dxviaa`aiaz, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-05-29 18:49:17.447805 + : pb-IF4sAGcj ip: a~o~va~~nhaja|, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-29 18:50:48.807685 + : pb-IF49UBQSFA== ip: azo~|j~~jcajcx, Device id: 8d75d902cc3a63a5d74a42b2853e1cf9d188ccfa -2023-05-29 18:51:11.110624 + : pb-IF4LU0wKIw== started kick vote for pb-IF4QUBNTPA==. -2023-05-29 18:51:41.113618 + : Kick vote End -2023-05-29 18:53:14.290962 + : pb-IF4oUlE_Vg== ip: an~}ifaje{vazn, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-29 18:53:47.416492 + : pb-IF5RUxUmIw== ip: azj~zo~vm~zm, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-29 18:53:48.423323 + : pb-IF4VUlcBVQ== ip: dxviaa`aiaz, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-05-29 18:54:18.538482 + : pb-IF5RUxUmIw== ip: azj~zo~vm~zm, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-29 18:54:33.576203 + : pb-IF4uUBIvFA== ip: a~o~vo~}hcaj`v, Device id: a73b6fdd9e054dbc60c1bf0088704392b4897aaa -2023-05-29 18:58:17.418678 + : pb-IF4VVG8gNQ== ip: azo~zi~~jdaif|, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-29 19:08:18.593008 + : pb-IF5RUxUmIw== ip: azj~zo~vm~zm, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-29 19:10:09.985563 + : pb-IF4CUGMfXA== | kicked > reason:Banned account -2023-05-29 19:11:16.411865 + : pb-IF4VVG8gNQ== ip: azo~zi~~jdaif|, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-29 19:11:26.444884 + : pb-IF5RUxUmIw== ip: azj~zo~vm~zm, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-29 19:11:33.469056 + : pb-IF4VU3laVA== ip: ak~~`dajcvvb}n, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-29 19:16:09.538896 + : pb-IF4xUnQNVA== ip: dvvc{vai~~mh, Device id: 477a46d48ec2c3a3ed0c4fb1e42c2d889ad8233f -2023-05-29 19:16:21.577328 + : pb-IF4OU2QjMQ== ip: an~}j`aig{vc, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-29 19:17:35.843224 + : pb-IF4QV2hdFg== ip: d|vb{i~~lfane, Device id: 29081d0d71a0eb4b27ceb3c5bd9ace869eb5225e -2023-05-29 19:25:35.969710 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4VU3laVA==. -2023-05-29 19:26:05.974153 + : Kick vote End -2023-05-29 19:28:35.565400 + : pb-IF4LU0wKIw== ip: azj~zo~}i`aoi, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-29 19:38:07.814047 + : pb-IF4jF1NY ip: ak~~aeaj`}vd}, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-29 19:40:37.364864 + : pb-IF4cUktZNg== ip: azj~z`~~mfaja|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-29 19:40:59.435041 + : pb-IF4BU0EsIg== ip: azj~z`~}ihaih, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-05-29 19:45:18.010880 + : pb-IF5WUGo5Ew==|| kicked > new account -2023-05-29 19:46:51.998884 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-29 19:48:25.416551 + : pb-IF4sAGcj ip: a~o~va~~nhaja|, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-29 19:52:04.273709 + : pb-IF4OU2QjMQ== ip: an~}j`aig{vc, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-29 19:53:53.692524 + : pb-IF4TUGEIDQ== ip: a~h~}jdaii~vbo, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-29 19:54:33.859384 + : pb-IF5WU0gIUQ== ip: azj~z`~}idaa, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-29 19:54:40.874907 + : pb-IF4OUGMqDw== ip: an~}ifajd|val, Device id: 3066fe9ff9c76897e690cdf09de763805ea19f7c -2023-05-29 19:54:42.881104 + : pb-IF4sBHNb ip: a~h~}keajc|va~n, Device id: 4ef58d2fa8c203f983fea3f91fee20fc5f7022c3 -2023-05-29 19:54:56.923077 + : pb-IF4OUGMqDw== ip: an~}ifajd|val, Device id: 3066fe9ff9c76897e690cdf09de763805ea19f7c -2023-05-29 19:57:35.731514 + : pb-IF4sAGcj ip: a~o~va~~nhaja|, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-29 19:59:36.164618 + : pb-IF4cUktZNg== ip: azj~z`~~mfaiex, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-29 20:01:51.683745 + : pb-IF49VFdbEQ== ip: an~}hfaj`zva{h, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-29 20:02:19.806020 + : pb-IF4sAGcj ip: a~o~va~~nhaja|, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-29 20:03:31.070769 + : pb-IF4cUktZNg== ip: azj~z`~~mfaiex, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-29 20:07:02.881118 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-29 20:16:05.999859 + : pb-IF40UBISLQ== ip: a~h~}jgameale, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-29 20:20:28.140143 + : pb-IF4WUBJcVQ== ip: an~}icaj`vvh{, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-29 20:21:05.275138 + : pb-IF4LU0wKIw== ip: azj~zo~}i`aoi, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-29 20:21:16.387338 + : pb-IF4WUBJcVQ== ip: an~}icaj`vvh{, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-29 20:23:00.752843 + : pb-IF4MUBMHKA== ip: azj~z`~~n~}md, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-29 20:26:55.819673 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-29 20:27:14.898477 + : pb-IF5VUGoJLA== ip: an~}jbaagai, Device id: ec2c8d0759449d786957c33e91f30f2272b513f1 -2023-05-29 20:30:15.565241 + : pb-IF4xUGQfNg== ip: an~}j`aig{vc, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-05-29 20:32:29.069600 + : pb-IF5XV3cjJw== ip: azj~zo~|vb|n, Device id: 1bd2bbc3ebd540c6e08744735eb062b34f5f31af -2023-05-29 20:33:34.290279 + : pb-IF4zUBUlNg== ip: an~}hfaievb}l, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-29 20:33:56.353806 + : pb-JiNJARBaUUFDXFtIEUBUVlFGGEBaQlVF ip: bxveyvaaj`}, Device id: fcf62de6d5ca9678a7ce189b56133d6bef45c150 -2023-05-29 20:33:58.364054 + : pb-IF4zUBUlNg== ip: an~}hfaievb}l, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-29 20:36:40.264318 + : pb-IF4TV3RbDA== ip: axi~zh~}jiai`, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-29 20:36:56.985629 + : pb-IF5cUBZdVg== started kick vote for pb-JiNJARBaUUFDXFtIEUBUVlFGGEBaQlVF. -2023-05-29 20:37:26.988361 + : Kick vote End -2023-05-29 20:41:07.387121 + : pb-JiNJARBTXEJDWF5EF0JUUFFAFkVaRVFD ip: a}j~~oaaigani, Device id: 98531cef6f891f81b5ba2dfb172f8150597b0df6 -2023-05-29 20:43:37.270053 + : Server started -2023-05-29 20:45:32.700311 + : pb-IF4rUGctLw== ip: azj~zo~~nbai`x, Device id: 28f97f2e4d4802bdda09fd1c869756c61288a11b -2023-05-29 20:45:47.752777 + : pb-IF4eU1MHNQ== ip: an~~aham~wh, Device id: 53e48929c811c3d3cf24b2d0e334806042a7ca33 -2023-05-29 20:48:44.444329 + : pb-IF4pU1U8VQ== ip: a~i~vj~xm~}ka, Device id: 10c5129130345ffd919d3546c3dc1729aa6ba63f -2023-05-29 20:49:31.598377 + : pb-IF49VFQlPA== ip: azo~{m~yj~wj, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-05-29 20:49:41.640739 + : pb-IF4xUGQfNg== ip: an~}j`aig{vc, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-05-29 20:49:52.669423 + : pb-IF4TV3RbDA== ip: axi~zh~}jiai`, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-29 20:51:07.943809 + : pb-IF4xUGQfNg== ip: an~}j`aig{vc, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-05-29 20:52:03.139995 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-29 20:52:14.191050 + : pb-IF4OU2QjMQ== ip: an~}j`aig{vc, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-29 20:52:19.207201 + : pb-IF4-AGI7 ip: a~h~}jgamdaif|, Device id: 30044689eb8e24c858cb1d029b58e40e866f2cfb -2023-05-29 20:53:38.496469 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-29 20:54:29.703066 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-29 20:54:33.723355 + : pb-IF4OU2QjMQ== ip: an~}j`aig{vc, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-29 20:55:02.862974 + : pb-IF4OU2QjMQ== ip: an~}j`aig{vc, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-29 20:55:48.406652 + : pb-IF4-AGI7 started kick vote for pb-IF49VFQlPA==. -2023-05-29 20:56:18.414061 + : Kick vote End -2023-05-29 20:56:28.163095 + : pb-IF4-AGI7 ip: a~h~}jgamdaif|, Device id: 30044689eb8e24c858cb1d029b58e40e866f2cfb -2023-05-29 20:56:57.294582 + : pb-IF4OU2QjMQ== ip: an~}j`aig{vc, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-29 20:57:35.428008 + : pb-IF4OU2QjMQ== ip: an~}j`aig{vc, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-29 20:57:52.497037 + : pb-IF4HU0VcCA== ip: d~vava~~khaof, Device id: 0048b280144da2caaeb58a3dd845b91cdf4d29b8 -2023-05-29 20:59:03.754492 + : pb-IF4HU0VcCA== ip: d~vava~~khaof, Device id: 0048b280144da2caaeb58a3dd845b91cdf4d29b8 -2023-05-29 20:59:45.872380 + : pb-IF4HU0VcCA== ip: d~vava~~khaof, Device id: 0048b280144da2caaeb58a3dd845b91cdf4d29b8 -2023-05-29 21:01:13.214210 + : pb-IF4pU1U8VQ== ip: a~i~vj~xm~}ka, Device id: 10c5129130345ffd919d3546c3dc1729aa6ba63f -2023-05-29 21:01:45.296535 + : pb-IF4HU0VcCA== ip: d~vava~~khaof, Device id: 0048b280144da2caaeb58a3dd845b91cdf4d29b8 -2023-05-29 21:02:45.241568 + : pb-IF4HU0VcCA== started kick vote for pb-IF4OU2QjMQ==. -2023-05-29 21:03:15.248709 + : Kick vote End -2023-05-29 21:04:51.998797 + : pb-IF4OU2QjMQ== ip: an~}j`aig{vc, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-29 21:09:09.923098 + : pb-IF40UBISLQ== ip: a~h~}jgam`ale, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-29 21:12:29.609242 + : pb-IF4uUBIvFA== ip: a~o~vo~}hcaj`v, Device id: a73b6fdd9e054dbc60c1bf0088704392b4897aaa -2023-05-29 21:14:46.156415 + : pb-IF4dU1IOKQ== ip: bxvf|vb{l~~ka, Device id: 0ea8bbe6ad0e9c005407166ad37923d1f241be41 -2023-05-29 21:15:43.364777 + : pb-IF49I04z ip: a~h~}jda`eaif~, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-29 21:16:53.618614 + : pb-IF49VFdbEQ== ip: an~}hfaii{va{h, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-29 21:18:22.968599 + : pb-IF40UBISLQ== ip: a~h~}jgam`ale, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-29 21:20:31.435944 + : pb-IF4TV3RbDA== ip: axi~zh~}jiai`, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-29 21:21:04.578593 + : pb-IF4IVVoGIg== ip: a~o~va~~abaidy, Device id: aa4b4a32891e3f85f031ef65cb7ffa053ef0217f -2023-05-29 21:21:17.626751 + : pb-IF5RUBkiKA== ip: a}j~~oaaiiaae, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-05-29 21:23:42.119037 + : pb-IF5WUGMONg== ip: azj~z`~|a~~mg, Device id: 12a7280a292a10e7ab4bee76d0aa207a58393d61 -2023-05-29 21:25:46.556944 + : pb-IF4cUBYfCg== ip: azo~zh~|o~yj, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-29 21:26:17.640029 + : pb-IF4OPhMg ip: an~}jbai`aie|, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-29 21:27:08.801548 + : pb-IF4OPhMg ip: an~}jbai`aie|, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-29 21:27:52.950366 + : pb-IF4IVVoGIg== ip: a~o~va~~abaidy, Device id: aa4b4a32891e3f85f031ef65cb7ffa053ef0217f -2023-05-29 21:31:28.862399 + : pb-IF4OPhMg ip: an~}jbai`aie|, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-29 21:34:00.463584 + : pb-IF49I04z ip: a~h~}jda`haif~, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-29 21:38:29.471304 + : pb-IF4TUGEIDQ== ip: a~h~}jdaih{va~i, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-29 21:39:03.833079 + : pb-IF49I04z started kick vote for pb-IF4TUGEIDQ==. -2023-05-29 21:39:12.657397 + : pb-IF4OU1IZVg== ip: azo~{l~~lgaj`v, Device id: 541973653043d7f242ff3b1078194e8678f82921 -2023-05-29 21:39:33.837435 + : Kick vote End -2023-05-29 21:40:58.643247 + : pb-IF4OPhMg started kick vote for pb-IF4TV3RbDA==. -2023-05-29 21:41:15.086385 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-29 21:41:28.644984 + : Kick vote End -2023-05-29 21:42:19.637811 + : pb-IF5VUGtdNg==|| kicked > new account -2023-05-29 21:42:53.481474 + : pb-IF41U2scIg== ip: ak~}hhaniaib|, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-29 21:44:58.924032 + : pb-IF4sAGcj ip: a~o~va~~nhaja|, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-29 21:46:19.038516 + : pb-IF4TUGEIDQ== started kick vote for pb-IF4SUkEAHQ==. -2023-05-29 21:46:22.234992 + : pb-IF41U2scIg== ip: ak~}hhanialc, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-29 21:46:34.745598 + : Kick vote End -2023-05-29 21:47:14.421653 + : pb-IF4VU3laVA== ip: ak~~n`aii{vavi, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-29 21:49:05.838510 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-29 21:49:28.903394 + : pb-IF4OU2QjMQ== ip: an~~aeaidaibw, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-29 21:50:58.231256 + : pb-IF4VU3laVA== ip: ak~~n`aii{vavi, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-29 21:53:32.769583 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-29 21:53:46.117085 + : pb-IF4GUGldDA==|| kicked > new account -2023-05-29 21:56:15.353125 + : pb-IF4yU1oxUg== ip: azh~~jiaj`vaw, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-29 21:56:22.378693 + : pb-IF4yU1oxUg== ip: azh~~jiaj`vaw, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-29 21:56:39.450193 + : pb-IF4sAGcj ip: a~o~va~~nhaja|, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-29 21:58:32.866402 + : pb-IF4wU1MPEg== ip: awj~ya~~``aj`, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-29 21:59:14.039812 + : pb-IF4sAGcj ip: a~o~va~~nhaja|, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-29 21:59:34.130894 + : pb-IF4sAGcj ip: a~o~va~~nhaja|, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-29 22:04:23.118794 + : pb-IF4FUxUuKQ== started kick vote for pb-IF4wU1MPEg==. -2023-05-29 22:04:23.435862 + : Kick vote End -2023-05-29 22:04:48.451008 + : pb-IF4yU1oxUg== ip: azh~~jiaj`vaw, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-05-29 22:07:31.073544 + : pb-IF4wU1MPEg== ip: awj~ya~~``aj`, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-29 22:08:35.306582 + : pb-IF41U2scIg== ip: ak~za~xl~~me, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-29 22:11:43.172649 + : pb-IF4jF1NY ip: ak~~aeaj`}vd}, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-29 22:12:55.436701 + : pb-IF4VU3laVA== ip: ak~~n`aii{vavi, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-29 22:16:46.881552 + : pb-IF4WUGkvNA==|| kicked > new account -2023-05-29 22:17:31.447466 + : pb-IF4TUxEoKg== ip: an~~acai`{va`, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-29 22:21:30.570236 + : pb-IF4FU1daUA== ip: b}k~}khajaxvez, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-29 22:21:34.588260 + : pb-IF41U1YxHA== ip: b}k~~ofamealc, Device id: 53e64e57e171c01305dd14f67c8b608f72c21c6b -2023-05-29 22:22:15.738988 + : pb-IF49VFdbEQ== ip: a~o~va~}keaid{, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-29 22:23:05.063550 + : pb-IF4VU3laVA== | kicked for chat spam -2023-05-29 22:26:15.694898 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~~ia, Device id: 84e8c68a67793414f4f9ba929c4417de1a04f4b0 -2023-05-29 22:27:25.945754 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~~ia, Device id: 84e8c68a67793414f4f9ba929c4417de1a04f4b0 -2023-05-29 22:29:17.322801 + : pb-IF49VFdbEQ== ip: an~}hfaj`yvhv, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-29 22:32:51.090641 + : pb-IF4mVFQtVQ== ip: a~o~vo~~nfajbw, Device id: 5c2a9586f320d9fb796d03810e16803c3ac3dcce -2023-05-29 22:34:23.408318 + : pb-IF4sAGcj ip: a~o~va~~nhaja|, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-29 22:34:40.461907 + : pb-IF4sAGcj ip: a~o~va~~nhaja|, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-29 22:34:53.514124 + : pb-IF4sAGcj ip: a~o~va~~nhaja|, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-29 22:35:50.814298 + : pb-IF4mVFQtVQ== ip: a~o~vo~~nfajbw, Device id: 5c2a9586f320d9fb796d03810e16803c3ac3dcce -2023-05-29 22:38:08.307531 + : pb-IF4yU0hYEw== ip: awj~ya~~ogaib|, Device id: 052bbfd43b91c5bc01d4ba79df1c076697418a48 -2023-05-29 22:40:42.904483 + : pb-IF5RUBkiKA== ip: a}j~~oaaiiaae, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-05-29 22:41:33.715531 + : pb-IF4yU0hYEw== started kick vote for pb-IF4mVFQtVQ==. -2023-05-29 22:41:48.189681 + : pb-IF4xUnQNVA== ip: dvvc{vb~i~~ib, Device id: 477a46d48ec2c3a3ed0c4fb1e42c2d889ad8233f -2023-05-29 22:42:03.722004 + : Kick vote End -2023-05-29 22:42:10.273782 + : pb-IF4QU2ZeAw== ip: dvvc{vaya~}lh, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-29 22:47:15.513460 + : pb-IF5RUBkiKA== ip: a}j~~oaaiiaae, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-05-29 22:50:49.221247 + : pb-IF4jUGIiUw== ip: a~o~}jcanhaiay, Device id: 34b41356132a1e04681f51144b29213458a0ecf1 -2023-05-29 23:02:19.898009 + : pb-IF4eVUciNQ== ip: b}k~~`gaiaxva{`, Device id: 44193b1ab3d1ecdb668e695fcc6ff6d35b4a5c06 -2023-05-29 23:06:33.950974 + : pb-IF5XV3cjJw== ip: azj~zo~vvb}`, Device id: 1bd2bbc3ebd540c6e08744735eb062b34f5f31af -2023-05-29 23:06:37.964541 + : pb-IF41U2scIg== ip: ak~}hhaniai`w, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-29 23:09:11.503937 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-29 23:24:19.173030 + : pb-IF4oUlE_Vg== ip: an~}ifajdxvay, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-29 23:24:21.180383 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~~ia, Device id: 84e8c68a67793414f4f9ba929c4417de1a04f4b0 -2023-05-29 23:29:40.348849 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-29 23:30:39.552995 + : pb-IF49I04z ip: dvvd|vbzi~}jh, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-29 23:32:57.127597 + : pb-IF4VVG8gNQ== ip: azo~zi~v`~~na, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-29 23:34:00.034977 + : pb-IF4VVG8gNQ== started kick vote for pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG. -2023-05-29 23:34:30.040211 + : Kick vote End -2023-05-29 23:37:42.397600 + : pb-IF49I04z ip: dvvd|vbzi~}jh, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-29 23:40:54.865873 + : pb-IF49I04z started kick vote for pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG. -2023-05-29 23:41:24.869134 + : Kick vote End -2023-05-29 23:41:29.239174 + : pb-IF4FU1daUA== ip: b}k~}khaja}vgx, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-29 23:42:50.720029 + : pb-IF4xUnQNVA== ip: dvvc{vb~i~~ib, Device id: 477a46d48ec2c3a3ed0c4fb1e42c2d889ad8233f -2023-05-29 23:44:45.101315 + : pb-IF4VVG8gNQ== ip: azo~zi~v`~~na, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-29 23:44:59.159347 + : pb-IF4xUnQNVA== ip: dvvc{vb~i~~ib, Device id: 477a46d48ec2c3a3ed0c4fb1e42c2d889ad8233f -2023-05-29 23:46:26.532582 + : pb-IF4FU1daUA== ip: b}k~}khaja}vgx, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-29 23:46:26.534540 + : pb-IF4yUGYzAQ== ip: dvva{va{m~~a, Device id: 4a6a06a02b2db0c99b7ff8f415be891697893113 -2023-05-29 23:46:56.384417 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG started kick vote for pb-IF4-U1gOIQ==. -2023-05-29 23:47:26.391852 + : Kick vote End -2023-05-29 23:48:39.118579 + : pb-IF4VU3laVA== ip: ak~~n`aii{vavi, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-29 23:55:23.581611 + : pb-IF4cUkM4KA== ip: axi~zh~~l`ajg, Device id: 9bc7a3f5775e72da256f5f41eab0f446aaadc746 -2023-05-29 23:57:11.980103 + : pb-IF4VVG8gNQ== ip: azo~zi~v`~~na, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-29 23:59:47.966557 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4yUGYzAQ==. -2023-05-30 00:00:17.966604 + : Kick vote End -2023-05-30 00:02:15.076589 + : pb-JiNJARBZU0FIVFxFGUdUVFBBFEFfRFBB ip: dvvcxvbh~}li, Device id: 98ae8937ff38c7314435db1d35a2c6f2451ec233 -2023-05-30 00:03:25.294149 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG ip: an~~aean~~j, Device id: 822adb43af454f4ce0fdec16028787c26c151d5f -2023-05-30 00:04:09.601488 + : pb-IF4FU1daUA== ip: b}k~}khaja}vgx, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-30 00:04:09.601945 + : pb-IF4cUkM4KA== ip: axi~zh~~l`ajg, Device id: 9bc7a3f5775e72da256f5f41eab0f446aaadc746 -2023-05-30 00:09:32.752402 + : pb-IF4FU1daUA== ip: b}k~}khaja}vgx, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-30 00:13:21.780525 + : pb-IF4vUkRaEg== ip: azo~{i~}lca`c, Device id: 6394b4f26b00e3f44dd52eaaa8b9d296c742e56a -2023-05-30 00:21:57.900922 + : pb-IF49VFdbEQ== ip: an~}hfaj`yvhv, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 00:26:36.013213 + : pb-IF49VFdbEQ== ip: an~}hfaj`yvhv, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 00:30:27.825246 + : pb-IF41U2scIg== ip: ak~}hhaniaif|, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-30 00:31:22.565824 + : pb-IF4dVWkxVA== | kicked for chat spam -2023-05-30 00:38:10.754170 + : pb-IF4VU3laVA== | kicked for chat spam -2023-05-30 00:49:35.830297 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-30 00:50:57.109799 + : pb-IF5cU2haHA== ip: dvvcxvbzh~~n, Device id: 922d5ce64b39c2e7d1d6fc4072dcb8a28d5eafe3 -2023-05-30 01:08:22.120612 + : pb-IF4TV3RbDA== ip: axi~zh~}jiai`, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-30 01:09:14.888567 + : pb-IF43UGgSUw==|| kicked > new account -2023-05-30 01:14:15.565796 + : pb-IF49VFdbEQ== ip: an~}hfaj`yvhv, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 01:38:05.509882 + : pb-IF4OPhMg ip: bxvf~va|n~zh, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-30 02:01:43.508706 + : pb-IF49VFdbEQ== ip: an~}hfaj`yvhv, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 02:02:15.633826 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-30 03:43:40.933621 + : Server started -2023-05-30 04:08:52.694838 + : pb-IF4DUGkpJw==|| kicked > new account -2023-05-30 08:12:52.533676 + : pb-IF5UUxgjIA== ip: evvhvvgvvaxk, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-05-30 08:25:20.512586 + : pb-IF4FU1daUA== ip: b}k~}khaii|va|j, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-30 08:29:41.429104 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-30 08:30:53.669340 + : pb-IF4-Uk4mEA== ip: dvvcxvg{vbl, Device id: b1920ab07bd50671fd0897a7c4ccab774e5adc53 -2023-05-30 08:34:03.443624 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-30 08:37:15.457491 + : pb-IF5QVFMCUg== ip: azo~{n~~ifaii|, Device id: 3b483075b2023edb95e323dc2cc0d8dc516cae08 -2023-05-30 08:48:14.160492 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-30 08:49:11.522954 + : pb-IF5QU3AaLg== ip: dvvc{vb~j~}k, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-30 08:53:59.509266 + : pb-IF5QU1EMXA== ip: bxvf~vgzvdv, Device id: 756e17bc52d6f3915f82e19e4ec066b70b0e0718 -2023-05-30 08:54:28.594384 + : pb-IF5QU1EMXA== ip: bxvf~vgzvdv, Device id: 756e17bc52d6f3915f82e19e4ec066b70b0e0718 -2023-05-30 09:07:14.736597 + : pb-IF42UGgAFg==|| kicked > new account -2023-05-30 09:09:48.012379 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-30 09:20:30.583132 + : pb-IF5VEEYJ ip: ak~~hiaaeaie|, Device id: 7e1b964a004f68a46b495e2bb775453b5ea77f52 -2023-05-30 09:25:10.622538 + : pb-IF4FU1daUA== ip: b}k~}khaii|va|j, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-30 09:29:34.707929 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-30 09:49:49.431216 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-30 10:05:36.687366 + : Server started -2023-05-30 10:05:38.694029 + : pb-IF5XU0YhKg== ip: azo~{m~~oeald, Device id: 009307dd452aa63a0473545aea930364bd26abb4 -2023-05-30 10:06:34.197144 + : pb-IF49UGgzEQ==|| kicked > new account -2023-05-30 10:10:53.816624 + : pb-IF4jUBMiCg== ip: azh~~jiai`}vf|, Device id: c21d9f9c46d65881ac92a1086df09766b67eba14 -2023-05-30 10:11:19.907224 + : pb-IF4TUxEoKg== ip: an~}j`aif{vaym, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-30 10:15:45.953604 + : pb-IF49UBEhJA== ip: azo~|j~|k~ym, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-30 10:37:51.062428 + : pb-IF4NUBUsFQ== ip: a|o~vo~wi~y`, Device id: bd9801548066408953b1b56a8d8f14a44be7fc76 -2023-05-30 10:47:34.251797 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-30 10:50:12.842222 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-30 10:51:09.024321 + : pb-IF4TUGEIDQ== ip: a~h~}jdaigvviy, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-30 11:03:33.867505 + : pb-IF4FU1daUA== ip: b}k~}khaii|va|j, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-30 11:03:44.910508 + : pb-IF4TUxEoKg== ip: an~}j`aif{vaym, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-30 11:05:04.201176 + : pb-IF4OU2QjMQ== ip: an~~acajdva{, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-30 11:05:52.377005 + : pb-IF4OU2QjMQ== ip: an~~acajdva{, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-30 11:06:08.423795 + : pb-IF5UUxU7Ag== ip: b}k~~`baj`|va}i, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-05-30 11:06:26.492683 + : pb-IF5RUxUmIw== ip: azj~zo~~`baae, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-30 11:09:43.223641 + : pb-IF4OU2QjMQ== ip: an~~acajdva{, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-30 11:10:53.470778 + : pb-IF4nUGE7KA== ip: b}k~~`aaaiajcy, Device id: 13a1d48885d496e0b6ecebef433118d164ffa331 -2023-05-30 11:13:17.057011 + : pb-IF4oUlE_Vg== ip: an~}ifajdxvc{, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-30 11:15:09.431198 + : pb-IF4gUksyMQ== ip: b}k~}kiamgajc{, Device id: b0ef821c8b60e5fcf4bad99d322e2a9451de48ac -2023-05-30 11:16:25.694462 + : pb-IF5RUxUmIw== ip: azj~zo~~`baae, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-30 11:19:08.608739 + : pb-IF4oUlE_Vg== started kick vote for pb-IF4OU2QjMQ==. -2023-05-30 11:19:38.621117 + : Kick vote End -2023-05-30 11:21:18.761711 + : pb-IF5RUxUmIw== ip: azj~zo~~`baae, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-30 11:21:39.822735 + : pb-IF4oUlE_Vg== ip: an~}ifajdxvc{, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-30 11:23:52.324987 + : pb-IF4VVG8gNQ== ip: azo~zi~v`~~`i, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 11:25:24.770400 + : pb-IF5RUxUmIw== ip: azj~zo~~`baae, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-30 11:25:57.909323 + : pb-IF4OU1IZVg== ip: a|o~vo~~hgaih, Device id: 541973653043d7f242ff3b1078194e8678f82921 -2023-05-30 11:26:03.277765 + : pb-IF4DUGldLQ==|| kicked > new account -2023-05-30 11:27:11.170142 + : pb-IF4OU2QjMQ== ip: an~~acajdva{, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-30 11:27:15.193897 + : pb-IF4pU1oqVg== ip: a|j~~mdalhaja~, Device id: 7ee71d578344c9f3f3ba95c6c87390e91fdfd2da -2023-05-30 11:27:49.336510 + : pb-IF4OU2QjMQ== ip: an~~acajdva{, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-30 11:27:50.468950 + : pb-IF4oUlE_Vg== started kick vote for pb-IF4iUGJcLg==. -2023-05-30 11:28:02.370363 + : pb-IF4PVWMxUw== ip: dvvcyvh}va{m, Device id: c597344fdb26e34d7f7b20e9471e0f6bae22dd50 -2023-05-30 11:28:20.474733 + : Kick vote End -2023-05-30 11:28:36.497313 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-30 11:29:27.148050 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4iUGJcLg==. -2023-05-30 11:29:39.709731 + : pb-JiNJARBTVkdCW1ZIEkRVVlVGGUFcRVRG ip: an~}icaje}vfv, Device id: fa80f10e96ce8d4d238acdfc9ee0c089b0cf6c29 -2023-05-30 11:29:41.716518 + : pb-IF5QU1MGFw== ip: an~}iaajhaid}, Device id: 7200c52dda860844135f5560476c8dbc3e02b401 -2023-05-30 11:29:55.769450 + : pb-IF5WU2EINA== ip: ak~|n~wj~|l, Device id: 6f773577cdf5db224962c9a6cbbde3b0d89f7fe7 -2023-05-30 11:29:57.150789 + : Kick vote End -2023-05-30 11:33:20.624287 + : pb-IF5RUxUmIw== ip: azj~zo~~`baae, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-30 11:34:25.408600 + : pb-IF4oUlE_Vg== started kick vote for pb-IF4XU0gNJg==. -2023-05-30 11:34:55.413972 + : Kick vote End -2023-05-30 11:35:41.099169 + : pb-IF5RUxUmIw== ip: azj~zo~~`baae, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-30 11:37:08.466300 + : pb-IF4xUGQfNg== ip: an~}iaaibyvcw, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-05-30 11:39:04.900598 + : pb-IF5RUxUmIw== ip: azj~zo~~`baae, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-30 11:39:28.975363 + : pb-IF4VVG8gNQ== ip: azo~zi~v`~~`i, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 11:39:41.029819 + : pb-IF5RUxUmIw== ip: azj~zo~~`baae, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-30 11:39:51.060767 + : pb-IF5RUxUmIw== ip: azj~zo~~`baae, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-30 11:40:07.113464 + : pb-IF5RUxUmIw== ip: azj~zo~~`baae, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-30 11:49:24.036195 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-30 11:56:03.438477 + : pb-IF5UU1ZTLQ== ip: an~~aeai`xvb|k, Device id: 6bfc89e842d1425b8489e7c0b7a2b13643549e85 -2023-05-30 11:57:03.885097 + : pb-IF4VVG8gNQ== ip: azo~zi~v`~~`i, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 12:05:21.620676 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-30 12:06:18.807049 + : pb-IF5UU1ZTLQ== ip: an~~aeai`xvb|k, Device id: 6bfc89e842d1425b8489e7c0b7a2b13643549e85 -2023-05-30 12:07:31.086887 + : pb-IF4VVG8gNQ== ip: azo~zi~v`~~`i, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 12:09:02.431746 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-30 12:11:53.002397 + : pb-IF4-Um4_Lw== ip: azj~zo~v`~}l, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-05-30 12:18:00.287810 + : pb-IF5QU3AaLg== ip: dvvc{vavk~~hh, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-30 12:19:55.664289 + : pb-IF5QU3AaLg== ip: dvvc{vavk~~hh, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-30 12:22:12.185115 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-30 12:22:20.222388 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-30 12:25:17.849920 + : pb-IF5dU3UiAw== ip: azo~{a~~k`ajaz, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-30 12:28:07.525517 + : pb-IF4sU1EeAA== ip: an~}hgai`yvev, Device id: a4ccc2a4110c9b63a5fd073bee5f4d32900d0444 -2023-05-30 12:29:49.328897 + : pb-IF5cUGoGBg==|| kicked > new account -2023-05-30 12:31:46.487975 + : pb-IF4sU1EeAA== ip: an~}hgai`yvev, Device id: a4ccc2a4110c9b63a5fd073bee5f4d32900d0444 -2023-05-30 12:32:27.659479 + : pb-IF4HU2pTMQ== ip: axi~yi~{m~}id, Device id: 868b9648585b7a3d368b58b60409f524fa43e28f -2023-05-30 12:35:32.302471 + : pb-IF5dU3UiAw== ip: a~o~~acaj`a`h, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-30 12:35:38.325898 + : pb-IF4rUlMSVg== ip: b}k~~`fajcamc, Device id: b24354b531a587784d8f688ab0373bddda0837b7 -2023-05-30 12:36:21.457596 + : pb-JiNJARBSV0dDWV9FF0FTVFVDEEVeRlVG ip: dvvcxvb{`~}ib, Device id: 5dc722712e6160eecc68a4b7612929414e3aafd3 -2023-05-30 12:36:51.353244 + : pb-IF5dU3UiAw== started kick vote for pb-IF5QU3AaLg==. -2023-05-30 12:37:21.352992 + : Kick vote End -2023-05-30 12:37:50.800891 + : pb-IF4rUlMSVg== ip: b}k~~`fajcamc, Device id: b24354b531a587784d8f688ab0373bddda0837b7 -2023-05-30 12:38:26.912466 + : pb-IF5cUGoGBg== | kicked > reason:Banned account -2023-05-30 12:40:48.484883 + : pb-IF4VVG8gNQ== ip: azo~zi~~jbakc, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 12:45:45.659523 + : pb-IF49UBEhJA== ip: a~o~}jcanhaiay, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-30 12:46:00.705753 + : pb-IF49UBEhJA== ip: azo~|j~|k~ym, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-30 12:47:32.090401 + : pb-IF4gU0wxBw== ip: ak~za~xl~yh, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-30 12:47:54.162342 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-30 12:48:21.378749 + : pb-IF4nUkteVA== ip: a}j~zh~}hbaig, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-05-30 12:49:28.434310 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4uU28fVQ==. -2023-05-30 12:49:58.434900 + : Kick vote End -2023-05-30 12:52:09.263481 + : pb-IF4sU1EeAA== ip: an~}hgai`yvev, Device id: a4ccc2a4110c9b63a5fd073bee5f4d32900d0444 -2023-05-30 12:56:19.254549 + : pb-IF49VFdbEQ== ip: an~}hfaiiwva{a, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 12:56:52.370400 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jf, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-30 12:57:51.570652 + : pb-IF4IUGExHw== ip: ak~{`~ya~~jd, Device id: f7691dea6c35e9b72eb55bb69fa024eb1abf57e6 -2023-05-30 12:59:49.079720 + : pb-IF43U0o7Aw== ip: b}k~~`gaidzva}i, Device id: a09d01e25240174cea2612707e52e93b11f5da7e -2023-05-30 13:00:29.230058 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcw, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-30 13:02:31.671253 + : pb-IF4LM2kN ip: azj~z`~}k`amf, Device id: 50f2d13d2b70e744edcedb506895702c4c4baa9d -2023-05-30 13:02:38.703763 + : pb-IF4LM2kN ip: azj~z`~}k`amf, Device id: 50f2d13d2b70e744edcedb506895702c4c4baa9d -2023-05-30 13:05:07.235438 + : pb-IF4VVG8gNQ== ip: azo~zi~~jbakc, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 13:05:18.271583 + : pb-IF49VFdbEQ== ip: an~}hfaii|vb}j, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 13:05:55.392610 + : pb-IF4AUGdeJA== ip: b}k~~oha`bajdz, Device id: ca912e591f2451b14a1bff2a7fe62776ee08b6cc -2023-05-30 13:06:03.465818 + : pb-IF4gU0wxBw== ip: ak~za~xl~yh, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-30 13:07:58.158209 + : pb-IF4-UGgeVw==|| kicked > new account -2023-05-30 13:11:05.618622 + : pb-IF41U0YxAw== ip: a|o~vo~xo~~kg, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-05-30 13:11:30.885610 + : pb-IF41U0YxAw== ip: azo~{n~xk~xk, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-05-30 13:12:52.409137 + : pb-IF4nU0UJJg== started kick vote for pb-IF4uU28fVQ==. -2023-05-30 13:13:22.413073 + : Kick vote End -2023-05-30 13:14:54.605474 + : pb-IF5QU3AaLg== ip: dvvc{vavk~~hh, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-30 13:15:34.910425 + : pb-IF49VRQSVQ== ip: dvvcxvb~o~}jg, Device id: 97571afc6df6117c6495c2b45d05216838ebda8b -2023-05-30 13:16:09.020605 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcw, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-30 13:16:42.142695 + : pb-IF4AUGdeJA== ip: b}k~~oha`bajdz, Device id: ca912e591f2451b14a1bff2a7fe62776ee08b6cc -2023-05-30 13:18:10.462049 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-30 13:20:16.934716 + : pb-IF4VVG8gNQ== ip: azo~zi~~jbakc, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 13:20:27.964361 + : pb-IF4HV2MOVg== started kick vote for pb-IF4AUGdeJA==. -2023-05-30 13:20:57.968758 + : Kick vote End -2023-05-30 13:21:29.195776 + : pb-IF4-Um4_Lw== ip: azj~zo~~hdai`v, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-05-30 13:21:29.195977 + : pb-IF5QU3AaLg== ip: dvvc{vavk~~hh, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-30 13:21:50.285919 + : pb-IF5QU3AaLg== ip: dvvc{vavk~~hh, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-30 13:22:45.503827 + : pb-IF4TUXMJ ip: d}vao~yo~zk, Device id: 297acb7dcb3a3ea541d7b160584971c8ccbc325f -2023-05-30 13:22:49.518331 + : pb-IF4WUxElCQ== ip: azo~|k~}kfaja~, Device id: 3027b8375294a19e11d225fbc0111c031a59b2f8 -2023-05-30 13:25:37.206300 + : pb-IF4TV3RbDA== ip: an~}ibaiczva{j, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-30 13:25:37.208219 + : pb-IF4LU0wKIw== ip: azj~zo~}jcajc, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-30 13:28:22.840867 + : pb-IF40UGg9FQ== | kicked for chat spam -2023-05-30 13:29:52.365058 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-30 13:31:24.694501 + : pb-IF4VVG8gNQ== ip: azo~zi~~jbakc, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 13:31:47.777528 + : pb-IF4dVUwMKQ== ip: a|o~vo~~ifamd, Device id: 042adf53a235df6a5b9abacc091864fc5f0e0a68 -2023-05-30 13:32:03.851939 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-30 13:32:47.005451 + : pb-JiNJVxFfVEJIWVxFEUBXXFNLE0hXRFVD ip: dvvbo~}lbali, Device id: 569c6d5812b35ce92b109072e7b34df952bf7382 -2023-05-30 13:33:32.189921 + : pb-IF4LM2kN ip: azj~z`~}k`amf, Device id: 50f2d13d2b70e744edcedb506895702c4c4baa9d -2023-05-30 13:36:33.892370 + : pb-IF42UGcsAw== ip: ak~}hha``aicz, Device id: 291ca0161ac0e693d2dfc328de5fab8844655f73 -2023-05-30 13:37:52.815410 + : pb-IF4LU0wKIw== started kick vote for pb-IF4VVG8gNQ==. -2023-05-30 13:38:22.817618 + : Kick vote End -2023-05-30 13:38:29.276507 + : pb-IF4FU1daUA== ip: b}k~}khaii|va|j, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-30 13:42:11.306784 + : pb-IF5cUGoGBg== | kicked > reason:Banned account -2023-05-30 13:43:05.554038 + : pb-IF4OPhMg ip: bxvf~va|n~zh, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-30 13:44:36.797021 + : pb-IF4VVG8gNQ== ip: azo~zi~~jbakc, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 13:45:28.122423 + : pb-IF5QU0waKw== ip: azo~{l~~kfaic|, Device id: 5ab6dd3fd4e4e704d2af65ce9aba920c3f597751 -2023-05-30 13:45:55.282977 + : pb-IF4VVG8gNQ== started kick vote for pb-IF5QU0waKw==. -2023-05-30 13:46:25.287571 + : Kick vote End -2023-05-30 13:46:42.489964 + : pb-IF49VFQlPA== ip: azo~{m~zn~}mc, Device id: d043bc3eac9405dd49f306e5fe61846765dba91e -2023-05-30 13:47:15.836893 + : pb-IF41U0YxAw== ip: azo~{a~}jfa`g, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-05-30 13:47:25.912324 + : pb-IF4OPhMg started kick vote for pb-IF5QU0waKw==. -2023-05-30 13:47:42.719105 + : Kick vote End -2023-05-30 13:49:15.502827 + : pb-IF4OPhMg started kick vote for pb-IF4xVVcoUw==. -2023-05-30 13:49:45.504500 + : Kick vote End -2023-05-30 13:52:45.587298 + : pb-IF4OPhMg started kick vote for pb-IF4OUGgPUQ==. -2023-05-30 13:53:07.269536 + : pb-IF4hU3oPNg== ip: an~~aga`aaaf, Device id: 45887b95114c5386c14c9e68da21137cfd8b13f3 -2023-05-30 13:53:15.591475 + : Kick vote End -2023-05-30 13:54:01.463636 + : pb-IF4hU3oPNg== ip: an~~aga`aaaf, Device id: 45887b95114c5386c14c9e68da21137cfd8b13f3 -2023-05-30 13:54:20.527643 + : pb-IF4hU3oPNg== ip: an~~aga`aaaf, Device id: 45887b95114c5386c14c9e68da21137cfd8b13f3 -2023-05-30 13:56:39.064305 + : pb-IF4VUlcBVQ== ip: azj~z`~~mgajf, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-05-30 13:57:10.068344 + : pb-IF4OPhMg started kick vote for pb-IF4OUGgPUQ==. -2023-05-30 13:57:40.068414 + : Kick vote End -2023-05-30 13:59:50.954814 + : pb-IF4TUXMJ ip: dvvcyvewvd|, Device id: 297acb7dcb3a3ea541d7b160584971c8ccbc325f -2023-05-30 14:00:19.037623 + : pb-IF5QU0waKw== ip: azo~{l~~kfaic|, Device id: 5ab6dd3fd4e4e704d2af65ce9aba920c3f597751 -2023-05-30 14:01:37.752509 + : pb-IF4OPhMg started kick vote for pb-IF4OUGgPUQ==. -2023-05-30 14:02:07.754142 + : Kick vote End -2023-05-30 14:03:43.959299 + : pb-IF5VP0cq ip: a~n~xj~|vavk, Device id: f83246ecbce3c368deb9ee5929805cc6c7f53215 -2023-05-30 14:03:49.982537 + : pb-IF4AUGUtVw== ip: azj~z`~}kaai`, Device id: afd3bf3e3605656f81e9488eb589c137775d9c48 -2023-05-30 14:06:10.997638 + : pb-IF4OPhMg started kick vote for pb-IF4OUGgPUQ==. -2023-05-30 14:06:41.001539 + : Kick vote End -2023-05-30 14:12:50.138799 + : pb-IF4VVG8gNQ== ip: azo~zi~~jbakc, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 14:12:54.573484 + : pb-IF4OPhMg started kick vote for pb-IF41U0YxAw==. -2023-05-30 14:12:57.159160 + : Kick vote End -2023-05-30 14:13:54.347887 + : pb-IF5cUkwjDA== ip: dvvcyvb~l~}mc, Device id: 84e8c68a67793414f4f9ba929c4417de1a04f4b0 -2023-05-30 14:14:50.527140 + : pb-IF4VVG8gNQ== ip: azo~zi~~jbakc, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 14:15:32.988358 + : pb-IF4iVFBbDA== ip: dvvcxvbxva}k, Device id: c5ff228fc0955dbf46b079065a2fcb5955ad7f60 -2023-05-30 14:19:48.147193 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-30 14:20:47.359817 + : pb-IF4VU3laVA== ip: ak~~`ca`caii|, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-30 14:22:25.821168 + : pb-IF4VVG8gNQ== ip: azo~zi~~jbakc, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 14:22:50.900330 + : pb-IF4VU3laVA== ip: ak~~`ca`caii|, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-30 14:24:09.420608 + : pb-IF4SVVEgJw== ip: azo~|`~vk~~ag, Device id: c1b6fc6d998d060dfd11dd62a78ca6f7421d6f2d -2023-05-30 14:24:46.540339 + : pb-IF5dU3UiAw== ip: azo~zi~~ahaid~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-30 14:25:24.682790 + : pb-IF5WUBYzVw== ip: azo~{n~xa~}j, Device id: aaa1143d336e094effa4f8cc87d28d7e922773f2 -2023-05-30 14:28:04.245988 + : pb-IF4lUGYJAw== ip: b}k~}kaaja{vb}l, Device id: 6462ea24ac7cba1b5020b33be137d114b82ff5f6 -2023-05-30 14:28:08.264246 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcw, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-30 14:28:21.318362 + : pb-IF4lUGYJAw== ip: b}k~}kaaja{vb}l, Device id: 6462ea24ac7cba1b5020b33be137d114b82ff5f6 -2023-05-30 14:28:37.379357 + : pb-IF4lUGYJAw== ip: b}k~}kaaja{vb}l, Device id: 6462ea24ac7cba1b5020b33be137d114b82ff5f6 -2023-05-30 14:29:58.698815 + : pb-IF4hU1c7BA== ip: an~}jaan~~na, Device id: e63c1bcfdee1e40becd4d02f7fac17809bf5d6c1 -2023-05-30 14:32:05.888314 + : pb-IF4VU3laVA== started kick vote for pb-IF4hU1c7BA==. -2023-05-30 14:32:35.892223 + : Kick vote End -2023-05-30 14:35:39.852344 + : pb-IF4TV3RbDA== ip: an~}ibaiczva{j, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-30 14:38:18.534784 + : pb-IF49VFdbEQ== ip: an~}hfaj`{vb}j, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 14:38:26.004406 + : pb-IF4VVG8gNQ== started kick vote for pb-IF49VFdbEQ==. -2023-05-30 14:38:56.010049 + : Kick vote End -2023-05-30 14:40:21.098058 + : pb-IF5cUkwjDA== ip: dvvcyvb~l~}mc, Device id: 84e8c68a67793414f4f9ba929c4417de1a04f4b0 -2023-05-30 14:41:09.318604 + : pb-IF4CUhUlFg== ip: bxveyvewva|n, Device id: 7ff409e87c661733dd5ac8860f45e13b78990856 -2023-05-30 14:41:50.437194 + : pb-IF4nUkteVA== ip: a}j~zh~}hbaig, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-05-30 14:43:25.697041 + : pb-IF4CUhUlFg== started kick vote for pb-IF4VU3laVA==. -2023-05-30 14:43:55.702413 + : Kick vote End -2023-05-30 14:44:36.279155 + : pb-IF4-UGgHHw== ip: a|j~~mdaidvvb{m, Device id: 9c45d56adb9fd7e2a61659e9592fa8ae8e07ce4b -2023-05-30 14:44:44.299502 + : pb-IF5WUBYzVw== ip: azo~{n~xa~}j, Device id: aaa1143d336e094effa4f8cc87d28d7e922773f2 -2023-05-30 14:44:47.307368 + : pb-IF4xU3guPw== ip: hvdaia}vb~h, Device id: afc5f4c55151b0ca3d27c9809abc2fc204696076 -2023-05-30 14:45:19.423895 + : pb-IF4xUGQfNg== ip: an~}iaaibyvcw, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-05-30 14:45:50.540042 + : pb-IF5dU3UiAw== ip: azo~zi~~ahaid~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-30 14:46:21.644099 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcw, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-30 14:46:41.726630 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcw, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-30 14:47:17.854256 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcw, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-30 14:48:21.081263 + : pb-IF4VU3laVA== ip: ak~~`ca`caii|, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-30 14:48:49.341131 + : pb-IF40UncaLg== ip: dvvc|vb~j~}jf, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-30 14:49:00.378129 + : pb-IF40UncaLg== ip: dvvc|vb~j~}jf, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-30 14:51:42.996180 + : pb-IF4nUkteVA== ip: a}j~zh~}hbaig, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-05-30 14:52:09.085307 + : pb-IF4VU3laVA== ip: ak~~`ca`caii|, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-30 14:52:49.250821 + : pb-IF40UncaLg== started kick vote for pb-IF4DU09aAw==. -2023-05-30 14:53:19.256666 + : Kick vote End -2023-05-30 14:53:52.685430 + : pb-IF4sUGMeVA== ip: dvvcyvaa~v, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-05-30 14:53:56.693571 + : pb-IF49UBEhJA== ip: azo~|j~|k~~a`, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-30 14:54:47.878191 + : pb-IF4sUGMeVA== ip: dvvcyvaa~v, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-05-30 14:56:23.266850 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcw, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-30 14:57:22.545735 + : pb-IF4TV3RbDA== started kick vote for pb-IF41U2scIg==. -2023-05-30 14:57:50.940806 + : Kick vote End -2023-05-30 14:58:54.942966 + : pb-IF5XU0YhKg== ip: azo~{m~}meajb{, Device id: 009307dd452aa63a0473545aea930364bd26abb4 -2023-05-30 14:59:53.200452 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-30 15:00:25.311432 + : pb-IF40UncaLg== ip: dvvc|vb~j~}jf, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-30 15:02:03.639459 + : pb-IF4jF1NY ip: azj~z`~{a~xi, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-30 15:04:16.422767 + : pb-IF49UBEhJA== ip: azo~|j~|k~~a`, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-30 15:04:21.438869 + : pb-IF4SVFkaCQ== ip: a~l~~jba`daidx, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-05-30 15:06:18.891215 + : pb-IF4gU0wxBw== ip: ak~za~xl~yh, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-30 15:06:53.003721 + : pb-IF4yU0hYEw== ip: awj~ya~~ogaib|, Device id: 052bbfd43b91c5bc01d4ba79df1c076697418a48 -2023-05-30 15:08:50.432418 + : pb-IF4jF1NY started kick vote for pb-IF4TV3RbDA==. -2023-05-30 15:09:20.434739 + : Kick vote End -2023-05-30 15:10:42.864795 + : pb-IF49I04z ip: a~h~}jdaacaiey, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-30 15:13:31.477731 + : pb-IF4DUGRYKA== ip: azj~z`~}iaamb, Device id: 9d7b6f3a4670448fc2fe9d9c5585525df3ed9872 -2023-05-30 15:17:24.006893 + : pb-JiNJARFaVUNCVF9DF0JTV1VGGEJbRVBD ip: a~h~}jgajevb~a, Device id: 7ab4e0f256a7d1522a24b7936bcb926c7e6ef694 -2023-05-30 15:17:56.134065 + : pb-IF4IUGExHw== ip: ak~{`~ya~~jf, Device id: f7691dea6c35e9b72eb55bb69fa024eb1abf57e6 -2023-05-30 15:17:58.140681 + : pb-IF49VFdbEQ== ip: an~}hfaj`{vb}j, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 15:19:20.480594 + : pb-JiNJARBeV0BIXVdCFUVZUldDFEZeRVFK started kick vote for pb-IF5XU0YhKg==. -2023-05-30 15:19:50.487303 + : Kick vote End -2023-05-30 15:21:24.097858 + : pb-IF4hXhER ip: b}k~~`aaj`vvh{, Device id: 636ea1137aa5379758a373e8e89ef66ee45b4d85 -2023-05-30 15:21:56.216393 + : pb-IF4yU0hYEw== ip: awj~ya~~ogaib|, Device id: 052bbfd43b91c5bc01d4ba79df1c076697418a48 -2023-05-30 15:24:32.757486 + : pb-JiNJARBeV0BIXVdCFUVZUldDFEZeRVFK ip: dvvcyvc|va{i, Device id: b4bba64d343199bbea6c806ca0e6b13ed1402636 -2023-05-30 15:29:12.845487 + : pb-IF4IUGExHw== ip: ak~{`~ya~~jf, Device id: f7691dea6c35e9b72eb55bb69fa024eb1abf57e6 -2023-05-30 15:30:38.149826 + : pb-IF4TUGEIDQ== ip: a~h~}jdaigyvbx, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-30 15:33:07.679688 + : pb-IF49VFdbEQ== ip: an~}hfaj`zvb}j, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 15:33:28.747110 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-30 15:36:15.418946 + : pb-IF4pU1oqVg== ip: a|a~~ngaigyvc}, Device id: 7ee71d578344c9f3f3ba95c6c87390e91fdfd2da -2023-05-30 15:36:24.447796 + : pb-IF4cUBYfCg== ip: b}k~~`faj`vvg|, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-30 15:39:40.543903 + : pb-IF4VU3laVA== ip: ak~~`ca`caii|, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-30 15:39:51.589251 + : pb-IF40UBUjPw== ip: an~}h`ai`|vg}, Device id: 89648e159a6804148e08248496881e44ccea72ec -2023-05-30 15:40:15.686219 + : pb-IF4VU3laVA== ip: ak~~`ca`caii|, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-30 15:41:27.217458 + : pb-IF4SUGgGUg== ip: azj~z`~~o~~ai, Device id: 551e10bbe4d5ca58ff291b060bf00607dff9a399 -2023-05-30 15:41:28.222526 + : pb-IF4TV3RbDA== ip: bxvexvazh~~he, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-30 15:42:12.384765 + : pb-IF4VU3laVA== ip: ak~~`ca`caii|, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-30 15:42:14.392164 + : pb-IF4mUBcSNQ== ip: azj~z`~~a~|o, Device id: 04813a85716278e62069c80e53ffc0b79929387a -2023-05-30 15:43:42.354519 + : pb-IF4TV3RbDA== started kick vote for pb-JiNJARFbVkBAXV5AGE5WVVxKFkBfQlBG. -2023-05-30 15:43:51.816651 + : pb-IF4VU3laVA== ip: ak~~`ca`caii|, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-30 15:44:12.361577 + : Kick vote End -2023-05-30 15:46:21.276667 + : pb-IF4VU3laVA== started kick vote for pb-IF4TV3RbDA==. -2023-05-30 15:46:46.776187 + : pb-IF5dU3UiAw== ip: azo~zi~~ahaifv, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-30 15:46:51.278361 + : Kick vote End -2023-05-30 15:49:18.427668 + : pb-IF4mUBcSNQ== ip: azj~z`~~a~|o, Device id: 04813a85716278e62069c80e53ffc0b79929387a -2023-05-30 15:50:16.672137 + : pb-IF49VFdbEQ== ip: an~}hfaj`|vb}j, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 15:51:16.899644 + : pb-JiNJARFcUUZCW19DGEdQV1VAEkVYRFFF ip: a~h~}jdaia|vb~m, Device id: 62797d26a16e23e5bd0348480f002238abaa774e -2023-05-30 15:52:02.058492 + : pb-IF4VU3laVA== ip: ak~~n`ajc|vavk, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-30 15:59:31.584560 + : pb-IF4cUBYfCg== ip: azo~{m~yk~~i`, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-30 16:04:17.011210 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-30 16:06:52.515472 + : pb-IF4TV3RbDA== ip: bxvexvazh~~he, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-30 16:08:28.878403 + : pb-IF4mVFQtVQ== ip: a~o~vo~~nfajbw, Device id: 5c2a9586f320d9fb796d03810e16803c3ac3dcce -2023-05-30 16:10:03.218402 + : pb-IF4cUBYfCg== ip: azo~{m~yk~~i`, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-30 16:16:26.290196 + : Server started -2023-05-30 16:16:27.299427 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-30 16:16:27.299764 + : pb-IF5SVXcqEg== ip: an~}i`aigyv`, Device id: 075cefca9fe1e6f30eeea7ff72ab2b94b1f351d2 -2023-05-30 16:16:52.396739 + : pb-IF4AUxYpIw== ip: azo~{m~|k~}j`, Device id: 7ea05ccb4bce7444af2bf6f94b21f050f5d448a9 -2023-05-30 16:17:00.417409 + : pb-IF5SVXcqEg== ip: an~}i`aigyv`, Device id: 075cefca9fe1e6f30eeea7ff72ab2b94b1f351d2 -2023-05-30 16:18:14.677112 + : pb-JiNJARBeV0BIXVdCFUVZUldDFEZeRVFK ip: dvvcyvc|va{i, Device id: b4bba64d343199bbea6c806ca0e6b13ed1402636 -2023-05-30 16:21:28.112269 + : pb-JiNJARBeV0BIXVdCFUVZUldDFEZeRVFK started kick vote for pb-IF4lV1YSIA==. -2023-05-30 16:21:36.788155 + : Kick vote End -2023-05-30 16:21:55.476193 + : pb-IF49VFdbEQ== ip: an~}hfaiixvb}j, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 16:22:38.637734 + : pb-IF4cUBYfCg== ip: azo~{m~yk~~i`, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-30 16:25:18.138448 + : pb-IF4PV3UdLw== ip: awj~ya~~``ajb|, Device id: cd10fa340ff9b6a61371bea0ebac4bab56bbf67c -2023-05-30 16:27:18.777172 + : pb-IF40VVckCQ== started kick vote for pb-JiNJARBeV0BIXVdCFUVZUldDFEZeRVFK. -2023-05-30 16:27:48.783588 + : Kick vote End -2023-05-30 16:34:09.068286 + : pb-IF4jF1NY ip: azj~z`~{o~~lg, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-30 16:42:24.846098 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-30 16:48:35.118670 + : pb-IF4sUGMeVA== ip: dvvcyvaa~v, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-05-30 16:49:15.280894 + : pb-IF4VVG8gNQ== ip: azo~zi~~iiaig~, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 16:49:38.560793 + : pb-IF4JUkFfDQ== started kick vote for pb-IF4VVG8gNQ==. -2023-05-30 16:49:41.468011 + : Kick vote End -2023-05-30 16:49:47.377947 + : pb-IF4VVG8gNQ== ip: azo~zi~~iiaig~, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 16:49:54.862116 + : pb-IF4JUkFfDQ== started kick vote for pb-IF4VVG8gNQ==. -2023-05-30 16:49:58.254165 + : pb-IF4VVG8gNQ== kicked by kickvotes. -2023-05-30 16:50:23.495914 + : pb-IF4wU1MPEg== ip: awj~ya~~ohajdy, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-30 16:50:27.861261 + : pb-IF4JUkFfDQ== started kick vote for pb-IF4wU1MPEg==. -2023-05-30 16:50:35.340700 + : pb-IF4wU1MPEg== kicked by kickvotes. -2023-05-30 16:58:13.138631 + : pb-IF4yVEspVg== ip: azo~|a~~aiajax, Device id: 18804ca4703453b1b0df23973b98da9e7e589048 -2023-05-30 17:01:34.808874 + : pb-IF4dU1IOKQ== ip: b}k~}kaaihvazl, Device id: 0ea8bbe6ad0e9c005407166ad37923d1f241be41 -2023-05-30 17:03:09.516672 + : pb-IF4sUGMeVA== started kick vote for pb-IF4FUGdaNg==. -2023-05-30 17:03:39.518941 + : Kick vote End -2023-05-30 17:04:45.581882 + : pb-IF49VFQlPA== ip: azo~{m~zn~}mc, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-05-30 17:05:31.735483 + : pb-IF5QU3AaLg== ip: dvvc{vavl~|l, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-30 17:06:49.464412 + : pb-IF4sUGMeVA== started kick vote for pb-IF5QU3AaLg==. -2023-05-30 17:07:07.882604 + : Kick vote End -2023-05-30 17:08:07.321166 + : pb-IF4sUGMeVA== ip: dvvcyvaa~v, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-05-30 17:10:11.727641 + : pb-IF40UncaLg== ip: dvvc|vb}i~xo, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-30 17:10:54.865548 + : pb-IF4VVG8gNQ== ip: azo~zi~~iiaig~, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 17:10:59.744114 + : pb-IF4sUGMeVA== started kick vote for pb-IF5QU3AaLg==. -2023-05-30 17:11:29.744609 + : Kick vote End -2023-05-30 17:14:55.697797 + : pb-IF4FU1daUA== ip: b}k~}khaiivvawl, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-30 17:14:58.710977 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~ma, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-30 17:15:13.771317 + : pb-IF49VFdbEQ== ip: an~}hfaiixvb}j, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 17:16:17.417084 + : pb-IF4TUGJSMg== started kick vote for pb-IF4VVG8gNQ==. -2023-05-30 17:16:22.185389 + : Kick vote End -2023-05-30 17:16:26.029700 + : pb-IF4VVG8gNQ== ip: azo~zi~~iiaig~, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 17:16:26.030101 + : pb-IF4cUBYfCg== ip: azo~{m~{m~~j`, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-30 17:17:35.262094 + : pb-IF4VVG8gNQ== ip: azo~zi~~iiaig~, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 17:18:32.485854 + : pb-IF4WUBJcVQ== ip: ak~}maaiiali, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-30 17:18:51.543197 + : pb-IF4OPhMg ip: bxvf~va|n~zh, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-30 17:20:25.919987 + : pb-IF4CVE4gVQ== ip: an~~aealfaii, Device id: 5f801aba6b04c38fdf76452a7245c1bce33f51a5 -2023-05-30 17:21:57.254029 + : pb-IF4CVE4gVQ== ip: an~~aealfaii, Device id: 5f801aba6b04c38fdf76452a7245c1bce33f51a5 -2023-05-30 17:22:17.911976 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4OPhMg. -2023-05-30 17:22:47.915715 + : Kick vote End -2023-05-30 17:25:40.069031 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-30 17:26:34.249800 + : pb-IF4CVE4gVQ== ip: azo~{a~}leamc, Device id: 5f801aba6b04c38fdf76452a7245c1bce33f51a5 -2023-05-30 17:28:07.575339 + : pb-IF4RU1kZIQ== ip: bxvexvbzm~}kd, Device id: 6e23b27154c718ec5ae8253b9b1ef7ccb439d2a5 -2023-05-30 17:28:33.681188 + : pb-IF4cUBYfCg== ip: azo~{m~{m~~j`, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-30 17:35:35.259879 + : pb-IF5WUGFcIQ== ip: a~h~}jdaoeanf, Device id: 46e4f784a06b63e09f8c60eba4317e15f799474d -2023-05-30 17:36:30.490168 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-30 17:41:03.103500 + : pb-IF4pUGkvCA==|| kicked > new account -2023-05-30 17:42:35.009308 + : pb-IF4jF1NY ip: a~m~ya~}meakb, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-30 17:44:05.367899 + : pb-IF49VFdbEQ== ip: an~}hfaii{vb}j, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 17:45:57.793763 + : pb-IF49VFdbEQ== ip: an~}hfaii{vb}j, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 17:47:32.093646 + : pb-IF4cUBYfCg== ip: azo~{m~yj~xo, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-30 17:48:28.299033 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-30 17:48:55.401678 + : pb-IF4WUBJcVQ== ip: ak~}maaiiali, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-30 17:49:11.452553 + : pb-IF4WUBJcVQ== ip: ak~}maaiiali, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-30 17:49:41.531662 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-30 17:50:43.769589 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-30 17:51:54.049692 + : pb-IF49VFdbEQ== ip: an~}hfaii{vb}j, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 17:59:51.727090 + : pb-IF4sU3VSMg== ip: dvvc|vb|o~~mc, Device id: cb6dd8b1d356943cea4f7e54c07fc932a91971ec -2023-05-30 18:07:46.529994 + : pb-JiNJARBSV0dDWV9FF0FTVFVDEEVeRlVG ip: dvvcxvb{`~}ib, Device id: 5dc722712e6160eecc68a4b7612929414e3aafd3 -2023-05-30 18:08:56.806643 + : pb-IF49VFdbEQ== ip: an~}hfaii{vb}j, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 18:12:10.995561 + : pb-IF4jF1NY started kick vote for pb-JiNJARBSV0dDWV9FF0FTVFVDEEVeRlVG. -2023-05-30 18:12:16.052962 + : Kick vote End -2023-05-30 18:13:39.146825 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~ma, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-30 18:14:41.532646 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-30 18:15:12.632044 + : pb-IF4cUBYfCg== ip: azo~{m~za~}ia, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-30 18:15:17.643403 + : pb-IF49VFdbEQ== ip: an~}hfaii{vb}j, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 18:15:29.681648 + : pb-IF49VFdbEQ== ip: an~}hfaii{vb}j, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 18:19:04.495190 + : pb-IF4jF1NY ip: a~m~ya~}meakb, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-30 18:19:51.641615 + : pb-IF4cUBYfCg== ip: azo~{m~za~}ia, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-30 18:19:55.661913 + : pb-IF4IV08vJw== ip: an~~adaliaiex, Device id: 708a71889674c351bd588f000b7ef98f5ca405a4 -2023-05-30 18:20:36.875388 + : pb-IF4CUm4jHw== ip: awk~wo~|n~}m, Device id: 0c2f6241c570435a23eff32af93a7439749f5827 -2023-05-30 18:20:59.956358 + : pb-IF41U0YxAw== ip: a~n~y`~x`~}jc, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-05-30 18:21:04.983719 + : pb-IF4wV24HBw== ip: an~~acaiiwvg~, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-05-30 18:21:37.082410 + : pb-IF4WUBJcVQ== ip: ak~}maaiiali, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-30 18:23:41.816520 + : pb-IF4VUGgCIw==|| kicked > new account -2023-05-30 18:24:05.582606 + : pb-IF4TUGEIDQ== ip: a~h~}jdaifvaxm, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-30 18:33:19.707786 + : pb-IF4pUGgqBA== ip: a}j~~naamcaicx, Device id: 7460f9675741898c272c8af9a5260b5dd1dbf2bc -2023-05-30 18:36:34.413601 + : pb-IF49VFdbEQ== ip: an~}hfaii{vb}j, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 18:37:25.782799 + : pb-IF4cUBYfCg== ip: azo~{m~|a~~`b, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-30 18:40:25.430338 + : pb-IF4wU1MPEg== ip: awj~ya~~ohajdy, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-30 18:40:48.532949 + : pb-IF5RU1lfAQ== ip: b}k~}jhajcyvax, Device id: a6ebbd0c7acb2aec57ffe4b7fec625847473f863 -2023-05-30 18:51:16.793912 + : pb-IF41U0YxAw== started kick vote for pb-IF4dUBgcUQ==. -2023-05-30 18:51:46.797843 + : Kick vote End -2023-05-30 18:57:31.972276 + : pb-IF4wU1MPEg== ip: awj~ya~~ohajdy, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-30 19:01:22.730923 + : pb-IF4LU0wKIw== ip: an~}j`aidvvan, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-30 19:01:42.798774 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-30 19:02:20.929299 + : pb-IF4LU0wKIw== ip: an~}j`aidvvan, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-30 19:02:55.033642 + : pb-IF5QVFMCUg== ip: azo~{n~~igaib, Device id: 3b483075b2023edb95e323dc2cc0d8dc516cae08 -2023-05-30 19:03:35.757437 + : pb-IF4LU0wKIw== started kick vote for pb-IF4DVVcZMg==. -2023-05-30 19:03:46.473806 + : Kick vote End -2023-05-30 19:04:25.357075 + : pb-IF40VEocAw== ip: azj~z`~~o~zh, Device id: dea8a2e4532ed216766366c3f2709352f7b120a8 -2023-05-30 19:05:06.470306 + : pb-IF4OPhMg ip: bxvf~va|n~zh, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-30 19:05:14.501599 + : pb-IF4LKUxd ip: an~}jaajdaaa, Device id: 04c69d3ff3d95a365aa566c5bace3383db470726 -2023-05-30 19:05:44.614570 + : pb-IF4mUBcSNQ== ip: azj~z`~~`~|j, Device id: 04813a85716278e62069c80e53ffc0b79929387a -2023-05-30 19:06:32.888459 + : pb-IF4OU1IZVg== ip: a|o~vo~yl~}lb, Device id: 541973653043d7f242ff3b1078194e8678f82921 -2023-05-30 19:07:57.297287 + : pb-IF4MUBMHKA== ip: azj~z`~~o~wi, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-30 19:09:19.569334 + : pb-IF4mUBcSNQ== ip: azj~z`~~`~|j, Device id: 04813a85716278e62069c80e53ffc0b79929387a -2023-05-30 19:10:02.757190 + : pb-IF4yU0hYEw== ip: awj~ya~~ogaib|, Device id: 052bbfd43b91c5bc01d4ba79df1c076697418a48 -2023-05-30 19:11:24.015590 + : pb-IF4tUGMBCg== ip: ak~za~xl~yh, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-30 19:12:42.576574 + : pb-IF4LU0wKIw== started kick vote for pb-IF4yU0hYEw==. -2023-05-30 19:13:12.582143 + : Kick vote End -2023-05-30 19:14:12.602528 + : pb-IF4CUGIlKw== ip: azj~zo~}jaaiiv, Device id: 1a6ec7f2586d7d1c855ff646f3fd146823f5073b -2023-05-30 19:16:25.951825 + : pb-IF4LU0wKIw== started kick vote for pb-IF4CUGIlKw==. -2023-05-30 19:16:55.957413 + : Kick vote End -2023-05-30 19:18:28.776812 + : pb-IF4yU0hYEw== ip: awj~ya~~ogaib|, Device id: 052bbfd43b91c5bc01d4ba79df1c076697418a48 -2023-05-30 19:19:28.324784 + : pb-IF4tUGMBCg== started kick vote for pb-IF4LKUxd. -2023-05-30 19:19:58.326751 + : Kick vote End -2023-05-30 19:22:11.621472 + : pb-IF4mUBcSNQ== ip: azj~z`~~`~|j, Device id: 04813a85716278e62069c80e53ffc0b79929387a -2023-05-30 19:22:15.173818 + : pb-IF4nUxE4Nw== started kick vote for pb-IF4tUGMBCg==. -2023-05-30 19:22:45.180888 + : Kick vote End -2023-05-30 19:24:54.205778 + : pb-IF4cUBYfCg== ip: azo~{m~yh~y, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-30 19:26:46.618263 + : pb-IF4CUm4jHw== ip: awk~wo~|n~}m, Device id: 0c2f6241c570435a23eff32af93a7439749f5827 -2023-05-30 19:28:01.067693 + : pb-IF4VVG8gNQ== ip: azo~zi~~hgaid, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 19:29:51.503775 + : pb-IF4VVG8gNQ== ip: azo~zi~~hgaid, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 19:29:56.519827 + : pb-IF4zUGcSDQ== ip: evviyva}k~zl, Device id: 540a2715917a5e85e90dd72f486b6d5cedcfe3b2 -2023-05-30 19:30:33.636159 + : pb-IF5QU3AaLg== ip: dvvc{vb~k~~h, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-30 19:35:51.921659 + : pb-IF5RU2oJUA== ip: bxvf~vb~n~}h`, Device id: b52a0123a41243d56ed209aa5016622aec74d299 -2023-05-30 19:36:33.090321 + : pb-IF41UBQPXA== ip: a}l~~hfaicyvbv, Device id: 4053d4ecb6d73d755ad3c574aa4bd40384b30b43 -2023-05-30 19:36:38.261121 + : pb-IF5RU2oJUA== ip: bxvf~vb~n~}h`, Device id: b52a0123a41243d56ed209aa5016622aec74d299 -2023-05-30 19:36:57.357448 + : pb-IF49UBEhJA== ip: azo~|j~|k~ym, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-30 19:37:11.395009 + : pb-IF41UBQPXA== ip: a}l~~hfaicyvbv, Device id: 4053d4ecb6d73d755ad3c574aa4bd40384b30b43 -2023-05-30 19:39:49.164251 + : pb-IF41U0YxAw== ip: a~n~y`~x`~}jc, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-05-30 19:41:01.145845 + : pb-IF5RU2oJUA== started kick vote for pb-IF49U2wPMA==. -2023-05-30 19:41:31.152495 + : Kick vote End -2023-05-30 19:45:05.537627 + : pb-IF4WUBJcVQ== ip: ak~}maaiiali, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-30 19:45:10.471883 + : pb-JiNJARFTVkFDVFxIFkdWV1VEEUReQldD started kick vote for pb-IF5QU3AaLg==. -2023-05-30 19:45:40.473576 + : Kick vote End -2023-05-30 19:45:53.695545 + : pb-IF4VVG8gNQ== ip: azo~zi~~hgaid, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 19:46:55.074778 + : pb-IF4LUk0FCQ== started kick vote for pb-JiNJARFTVkFDVFxIFkdWV1VEEUReQldD. -2023-05-30 19:47:25.078737 + : Kick vote End -2023-05-30 19:48:43.252416 + : pb-JiNJARFTVkFDVFxIFkdWV1VEEUReQldD started kick vote for pb-IF4LUk0FCQ==. -2023-05-30 19:49:13.253978 + : Kick vote End -2023-05-30 19:52:14.335543 + : pb-IF4VU3laVA== ip: azo~{n~}ibaih, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-30 19:52:16.583378 + : pb-JiNJARFTVkFDVFxIFkdWV1VEEUReQldD started kick vote for pb-IF4LUk0FCQ==. -2023-05-30 19:52:46.588834 + : Kick vote End -2023-05-30 19:53:55.301813 + : pb-IF4LUk0FCQ== started kick vote for pb-IF49U2wPMA==. -2023-05-30 19:54:25.306415 + : Kick vote End -2023-05-30 19:55:11.916055 + : pb-IF4VU3laVA== ip: azo~{n~}ibaih, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-30 19:55:53.609869 + : pb-JiNJARFTVkFDVFxIFkdWV1VEEUReQldD started kick vote for pb-IF4LUk0FCQ==. -2023-05-30 19:55:58.079065 + : pb-IF4oUlE_Vg== ip: bxvexvb{n~~hh, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-30 19:56:23.614446 + : Kick vote End -2023-05-30 19:57:50.212112 + : pb-JiNJARFTVkFDVFxIFkdWV1VEEUReQldD | kicked for chat spam -2023-05-30 19:58:06.784853 + : pb-IF41U2scIg== ip: an~}i`ajc{va~n, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-30 19:58:48.192462 + : kicked SquareBul4 -2023-05-30 19:59:13.767802 + : pb-IF4oUlE_Vg== started kick vote for pb-IF4VU3laVA==. -2023-05-30 19:59:21.049323 + : pb-IF4MUBVeMQ== ip: b}k~~`iaj`va{a, Device id: bd8158b473696d433dc1f27858a22b099d6cebc1 -2023-05-30 19:59:43.776224 + : Kick vote End -2023-05-30 20:00:35.302029 + : pb-IF49UBEhJA== ip: a~o~~aealgajdv, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-30 20:00:52.394863 + : pb-IF49UBEhJA== ip: azo~|j~|k~}ha, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-30 20:03:07.869284 + : pb-IF4IV04ZKw== | kicked > reason:Banned account -2023-05-30 20:06:46.645711 + : pb-IF4yU0hYEw== ip: awj~ya~~ogaib|, Device id: 052bbfd43b91c5bc01d4ba79df1c076697418a48 -2023-05-30 20:08:11.971886 + : pb-IF5QU0waKw== ip: azo~{l~}hfai`~, Device id: 5ab6dd3fd4e4e704d2af65ce9aba920c3f597751 -2023-05-30 20:09:26.333761 + : pb-IF4MUBVeMQ== ip: b}k~~`iaj`va{a, Device id: bd8158b473696d433dc1f27858a22b099d6cebc1 -2023-05-30 20:10:47.594660 + : pb-IF49VFdbEQ== ip: an~}ifaia|vdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 20:12:12.035423 + : pb-IF4MUBVeMQ== ip: b}k~~`iaj`va{a, Device id: bd8158b473696d433dc1f27858a22b099d6cebc1 -2023-05-30 20:12:24.076096 + : pb-IF4VU3laVA== ip: ak~~lhaj`a`, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-30 20:13:20.378097 + : pb-IF4MUBVeMQ== ip: b}k~~`iaj`va{a, Device id: bd8158b473696d433dc1f27858a22b099d6cebc1 -2023-05-30 20:14:24.620408 + : pb-IF4MUBVeMQ== ip: b}k~~`iaj`va{a, Device id: bd8158b473696d433dc1f27858a22b099d6cebc1 -2023-05-30 20:15:24.823450 + : pb-IF4MUBVeMQ== ip: b}k~~`iaj`va{a, Device id: bd8158b473696d433dc1f27858a22b099d6cebc1 -2023-05-30 20:16:16.289656 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~ma, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-30 20:16:27.334444 + : pb-IF4MUBVeMQ== ip: b}k~~`iaj`va{a, Device id: bd8158b473696d433dc1f27858a22b099d6cebc1 -2023-05-30 20:16:39.388743 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jf, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-05-30 20:20:21.640039 + : pb-IF41U2scIg== ip: an~}i`ajc{va~n, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-30 20:22:45.207832 + : pb-IF4cUBYfCg== ip: azo~{m~{a~~`i, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-30 20:23:01.563665 + : pb-IF5cUGgeDQ==|| kicked > new account -2023-05-30 20:25:28.805000 + : pb-IF40UBISLQ== ip: bxvf}vb}m~y, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-30 20:27:23.231792 + : pb-IF4oUlE_Vg== ip: bxvexvb{n~~hh, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-30 20:35:20.327581 + : pb-IF4eU1gyCw== | kicked > reason:Banned account -2023-05-30 20:35:33.359431 + : pb-IF4qU1EJNw== ip: an~~aeai`~vaxi, Device id: 64088c6bd4e4148bc7ecf4a4169a2f3ef03fc9b6 -2023-05-30 20:38:00.060919 + : pb-IF4HVHpcFQ== ip: dvvcyviaifv, Device id: 722099821f2d7b77a509edac87bacc7f8a830939 -2023-05-30 20:39:34.677053 + : pb-IF4CUhUlFg== ip: b}k~}kaaiavh{, Device id: 7ff409e87c661733dd5ac8860f45e13b78990856 -2023-05-30 20:42:02.328247 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-30 20:42:03.327491 + : pb-IF5dU3UiAw== ip: azo~{a~vk~~mg, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-30 20:44:31.430139 + : pb-IF4lUBEuJg== started kick vote for pb-IF5dU3UiAw==. -2023-05-30 20:45:01.433856 + : Kick vote End -2023-05-30 20:46:12.598744 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-30 20:47:34.887003 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-30 20:48:03.547331 + : pb-IF4lUBEuJg== started kick vote for pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL. -2023-05-30 20:48:33.549939 + : Kick vote End -2023-05-30 20:50:06.378683 + : pb-IF4MVEwBCQ== started kick vote for pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL. -2023-05-30 20:50:13.193142 + : Kick vote End -2023-05-30 20:50:14.999292 + : pb-IF4MVEwBCQ== started kick vote for pb-IF41U2scIg==. -2023-05-30 20:50:40.260500 + : kicked Kroosh -2023-05-30 20:50:45.002927 + : Kick vote End -2023-05-30 20:51:33.157006 + : kicked CrystalIce -2023-05-30 20:55:49.947939 + : pb-IF40UBISLQ== ip: bxvf}vb}m~y, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-30 20:56:55.149678 + : pb-IF4iU3UtUg== ip: a~l~xa~}j~~he, Device id: 295bb1eb1e190071027d365d89aaaa16929b179e -2023-05-30 20:57:55.329659 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-30 21:02:23.689218 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-30 21:02:40.742483 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb{l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-30 21:02:54.122265 + : pb-IF4OUGksFw==|| kicked > new account -2023-05-30 21:03:31.893600 + : pb-IF4TV3RbDA== ip: azo~|l~~lfaof, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-30 21:04:35.567326 + : pb-IF40UBISLQ== started kick vote for pb-IF4TV3RbDA==. -2023-05-30 21:05:05.570912 + : Kick vote End -2023-05-30 21:07:23.387300 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-30 21:07:37.437565 + : pb-IF40UBISLQ== ip: bxvf}vb}m~y, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-30 21:09:54.326730 + : pb-IF4NUxFfEg== started kick vote for pb-IF4eUGNdKg==. -2023-05-30 21:10:15.112779 + : Kick vote End -2023-05-30 21:12:11.419271 + : pb-IF4MUk0CEg== ip: b}k~~ofamaajez, Device id: 7174b911724927259e55686521c8c22eddc6edbe -2023-05-30 21:13:57.762644 + : pb-IF5XUkoGDw== ip: dxviaidxvb}o, Device id: 28f13e74c66a938e7181be1e72c3c9f925f0833c -2023-05-30 21:14:49.927994 + : pb-IF5QU3AaLg== ip: dvvc{vb}h~~ne, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-30 21:18:14.954714 + : pb-IF4IU28qPA== ip: azo~{a~~ngaidz, Device id: 2b676771bfc1043a69989576d24e1194aec0a626 -2023-05-30 21:19:44.565009 + : pb-IF4QU2ZeAw== ip: azo~|j~~jbaje{, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-05-30 21:20:53.984606 + : pb-IF4HVHpcFQ== started kick vote for pb-IF4sVVgTAg==. -2023-05-30 21:21:18.712919 + : Kick vote End -2023-05-30 21:26:15.311648 + : pb-IF4VVG8gNQ== ip: azo~zi~~ibamb, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 21:30:06.206464 + : pb-IF4MUBVeMQ== ip: dxviai`zval, Device id: bd8158b473696d433dc1f27858a22b099d6cebc1 -2023-05-30 21:30:52.372952 + : pb-IF4sUGMeVA== ip: dvvcyvaa~v, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-05-30 21:32:40.550091 + : pb-IF4sUGMeVA== started kick vote for pb-JiNJARBbUkpBXVpAFEdRVldKFkdfQFhL. -2023-05-30 21:33:10.554899 + : Kick vote End -2023-05-30 21:33:18.962897 + : pb-IF4IUhMeFg== ip: a|o~vo~~jdaibw, Device id: df4c23617e32ad772632dbb878d1569e0e12d64d -2023-05-30 21:33:22.971757 + : pb-IF4IU28qPA== ip: azo~{a~~ngaidz, Device id: 2b676771bfc1043a69989576d24e1194aec0a626 -2023-05-30 21:34:17.448238 + : pb-IF4LU1RdUg== ip: azo~{m~}j`aiby, Device id: 013ebdc40cb805919e389d339fe790db1aeaa296 -2023-05-30 21:36:03.315828 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4IUhMeFg==. -2023-05-30 21:36:14.180578 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-30 21:36:33.316799 + : Kick vote End -2023-05-30 21:42:36.307920 + : pb-IF49UBEhJA== ip: azo~|j~|k~wh, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-30 21:42:45.340242 + : pb-IF49UBEhJA== ip: azo~|j~|k~wh, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-30 21:44:38.070360 + : pb-IF4OUBY-HA== ip: a|j~~mdalhajay, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-05-30 21:44:59.147171 + : pb-IF5WUGFcIQ== ip: a~h~}jdaoianf, Device id: 46e4f784a06b63e09f8c60eba4317e15f799474d -2023-05-30 21:45:31.298940 + : pb-IF4zUBUlNg== ip: a}j~~ogaj`vvby, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-30 21:45:49.358209 + : pb-IF5QU3AaLg== ip: dvvc{vb}h~~ne, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-30 21:47:38.050793 + : pb-IF4VVG8gNQ== started kick vote for pb-IF5WUGFcIQ==. -2023-05-30 21:47:40.723134 + : Kick vote End -2023-05-30 21:50:47.894992 + : pb-IF4IUhMeFg== ip: a|o~vo~~jdaibw, Device id: df4c23617e32ad772632dbb878d1569e0e12d64d -2023-05-30 21:52:45.822367 + : pb-IF4OUBExFA== ip: azo~{n~~haaj`}, Device id: 213dccb4a84c8f2ab7126106cc2ba6b9058cfbcd -2023-05-30 21:53:59.069221 + : pb-IF4VVG8gNQ== ip: azo~zi~~ibamb, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 21:53:59.069954 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-30 21:57:07.035250 + : pb-IF41VWJcLA== ip: b}k~}kca`cajc}, Device id: 622d7c2101c8beb358f52c1255e233b5b54eab40 -2023-05-30 21:57:23.092814 + : pb-IF5VVU4CKA== ip: a|j~~mdaihvvcx, Device id: d8e258714e814fda309a4d9a18f16b48d4080ddf -2023-05-30 21:57:43.062129 + : pb-IF4nUxE4Nw== started kick vote for pb-IF5QU3AaLg==. -2023-05-30 21:57:55.298503 + : Kick vote End -2023-05-30 21:57:59.233327 + : pb-IF4wU1MPEg== ip: awj~ya~~ohajdy, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-30 21:57:59.234554 + : pb-IF5UUxheIg== ip: azo~|a~}leaog, Device id: c6e45fd1c978810e560b5acf6165aaf8e789fb21 -2023-05-30 21:59:32.122267 + : pb-IF4wU1MPEg== started kick vote for pb-IF49UBEhJA==. -2023-05-30 21:59:46.575498 + : pb-IF41U1YxHA== ip: b}k~~ofamealc, Device id: 53e64e57e171c01305dd14f67c8b608f72c21c6b -2023-05-30 22:00:02.129990 + : Kick vote End -2023-05-30 22:00:41.252275 + : pb-IF49UBEhJA== ip: azo~|j~|k~wh, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-30 22:03:00.742738 + : pb-IF4wU1MPEg== ip: awj~ya~~ohajdy, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-30 22:03:13.782326 + : pb-IF4tUGMBCg== ip: ak~za~xl~yh, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-30 22:03:47.926894 + : pb-IF49VFdbEQ== ip: an~}ifaia|vdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 22:04:19.004371 + : pb-IF49VFdbEQ== ip: an~}hfaj`xva|, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 22:05:25.502193 + : pb-IF4VVG8gNQ== ip: azo~zi~~ibamb, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-30 22:08:53.221936 + : pb-IF4VVG8gNQ== started kick vote for pb-IF49UBEhJA==. -2023-05-30 22:09:23.226850 + : Kick vote End -2023-05-30 22:10:14.885264 + : pb-IF49VFdbEQ== ip: an~}hfaj`xva|, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 22:11:20.897852 + : pb-IF4tUGMBCg== started kick vote for pb-IF4yV20uUQ==. -2023-05-30 22:11:50.898476 + : Kick vote End -2023-05-30 22:15:42.553896 + : pb-IF4tUGMBCg== started kick vote for pb-IF4yV20uUQ==. -2023-05-30 22:16:12.557293 + : Kick vote End -2023-05-30 22:18:22.015383 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-30 22:19:25.269925 + : pb-IF5RUBkiKA== ip: a}j~~oaaj`aj`z, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-05-30 22:21:58.151866 + : Server started -2023-05-30 22:21:59.162490 + : pb-IF4wU1MPEg== ip: awj~ya~~ohajdy, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-30 22:22:00.163070 + : pb-IF49VFdbEQ== ip: an~}hfaj`xva|, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 22:22:05.182007 + : pb-IF5dVVU4AQ== ip: bk~~adai`xva|l, Device id: 91bcc19dd621005b987096a3be1f7d3c0552f8ad -2023-05-30 22:22:05.182229 + : pb-IF4eUGgGNA== ip: azo~{m~}meaiiz, Device id: 81d06705ba1ca875e4408ff95115f493de675472 -2023-05-30 22:23:03.395294 + : pb-IF49VFdbEQ== ip: an~}hfaj`xva|, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 22:23:12.427131 + : pb-IF4eUGgGNA== ip: azo~{m~}meaiiz, Device id: 81d06705ba1ca875e4408ff95115f493de675472 -2023-05-30 22:23:21.467775 + : pb-IF4tUGMBCg== ip: ak~za~xl~yh, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-30 22:24:18.672193 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-30 22:29:33.885427 + : pb-IF49VFdbEQ== ip: an~}hfaj`xva|, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 22:30:51.229215 + : pb-IF4JVEYJEA== ip: ak~~o`ameao`, Device id: 745fd29d5c9d6b54c2e8218d91bd2a88a87bc76c -2023-05-30 22:31:16.313073 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigvva~n, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-05-30 22:35:58.409940 + : pb-IF4yU0hYEw== ip: awj~ya~~ogaib|, Device id: 052bbfd43b91c5bc01d4ba79df1c076697418a48 -2023-05-30 22:36:46.262654 + : pb-IF4CUGlTBA==|| kicked > new account -2023-05-30 22:42:44.931111 + : pb-IF4qUxBfAw== ip: an~}haakgai`~, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-05-30 22:51:05.846907 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-30 22:52:52.242954 + : pb-IF4jF1NY ip: azj~z`~{a~}kh, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-30 22:53:30.409373 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-30 22:56:12.016276 + : pb-IF4cUBYfCg== ip: azo~{m~{l~zk, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-30 22:56:28.069884 + : pb-IF4qUxBfAw== ip: an~}haakgai`~, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-05-30 22:57:02.188551 + : pb-IF4XUkwbKQ== ip: an~}icangaif, Device id: 56c52a22f44677a8424476af52c088d00b14a484 -2023-05-30 23:00:49.988823 + : pb-IF4FU1daUA== ip: b}k~}khaii|vavo, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-30 23:15:31.143001 + : pb-IF4FU1daUA== ip: b}k~}khaii|vavo, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-30 23:15:55.226047 + : pb-IF4XVHBdIQ== ip: azj~z`~}hdaih, Device id: bb4a1622c7601f1a78263c6066c8e905a694ffb2 -2023-05-30 23:18:37.825927 + : pb-IF4qUxBfAw== ip: an~}haakgai`~, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-05-30 23:18:57.887332 + : pb-IF4LM2kN ip: dvvbm~|l~}`, Device id: 50f2d13d2b70e744edcedb506895702c4c4baa9d -2023-05-30 23:19:22.954236 + : pb-IF4LM2kN ip: dvvbm~|l~}`, Device id: 50f2d13d2b70e744edcedb506895702c4c4baa9d -2023-05-30 23:22:20.582678 + : pb-IF4oUlE_Vg== ip: a~h~}jga`~zj, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-30 23:25:02.250312 + : pb-IF4KUBYdPQ== ip: avh~vo~~`caid, Device id: 65ca653399802b5a56f43826b470895b17abf95b -2023-05-30 23:26:02.584769 + : pb-IF4oUlE_Vg== ip: a~h~}jga`~zj, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-30 23:26:16.651900 + : pb-IF4oUlE_Vg== ip: a~h~}jga`~zj, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-30 23:26:37.739822 + : pb-IF4FU1daUA== ip: b}k~}khaii|vavo, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-30 23:26:38.743327 + : pb-IF5RUxUmIw== ip: a~h~}jga`~zj, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-30 23:27:06.827927 + : pb-IF5RUxUmIw== ip: azj~zo~}i`aia{, Device id: 8f606021e6e2c034f30f51573de55be48ef08f1b -2023-05-30 23:27:39.957980 + : pb-IF4qUxBfAw== ip: an~}haakgai`~, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-05-30 23:28:04.046249 + : pb-IF4FU1daUA== ip: b}k~}khaii|vavo, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-30 23:29:03.313128 + : pb-IF42UGQnEg== ip: dxvb{o~}jaaab, Device id: 324d40432870845d370f3826a494efddb6d583ed -2023-05-30 23:32:25.194574 + : pb-IF42UGQnEg== ip: dxvb{o~}jaaab, Device id: 324d40432870845d370f3826a494efddb6d583ed -2023-05-30 23:37:54.498943 + : pb-IF4qUxBfAw== ip: an~}haakgai`~, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-05-30 23:38:03.531121 + : pb-IF49VFQlPA== ip: azo~{m~|m~}l, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-05-30 23:41:48.443183 + : pb-IF49VFQlPA== ip: azo~{m~|m~}l, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-05-30 23:45:22.347250 + : pb-IF4lUxQtAA== ip: an~}ifaj`{vcy, Device id: cf98ef69f091a2ae8c38b162cccb69cfcae9420d -2023-05-30 23:46:47.685215 + : pb-IF4OPhMg ip: bxvf~va|n~zh, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-30 23:52:54.076459 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-30 23:57:20.105408 + : pb-IF49VFdbEQ== ip: an~}hfaiiwva|, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-30 23:57:33.138943 + : pb-IF49VFdbEQ== ip: an~}hfaiiwva|, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 00:04:34.839427 + : pb-IF49VFdbEQ== ip: an~}hfaiiwva|, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 00:06:33.306192 + : pb-IF49VFdbEQ== ip: an~}hfaiiwva|, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 00:07:01.411782 + : pb-IF4WUBJcVQ== ip: ak~}maaiiali, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-31 00:10:50.254455 + : pb-IF49VFdbEQ== ip: an~}hfaiiwva|, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 00:13:23.804678 + : pb-IF4WUBJcVQ== ip: ak~}maaiiali, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-31 00:14:00.078089 + : pb-IF49VFdbEQ== ip: an~}hfaiiwva|, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 00:34:00.710003 + : pb-IF49VFdbEQ== ip: an~}hfaiiwva|, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 00:45:26.131047 + : pb-IF4cUktZNg== ip: azj~z`~~mgaja}, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-31 00:54:51.333919 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-31 01:12:25.268406 + : pb-IF40VXMlBA== ip: bk~~adaaiala, Device id: 2567dc394522ed525d920d39eecafdfd32621b4d -2023-05-31 01:15:17.004175 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-31 01:32:08.258568 + : pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB ip: ak~~`eaiaang, Device id: rikkolovescats :3 -2023-05-31 01:35:25.100813 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-31 01:56:32.907391 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-31 05:22:08.873916 + : Server started -2023-05-31 05:32:29.227882 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-31 06:14:35.767242 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-31 06:33:10.812463 + : pb-IF49VFdbEQ== ip: an~}hfaii}va}a, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 06:35:11.284344 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-31 06:56:06.938385 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-31 07:17:17.907781 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-31 08:19:30.031624 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-31 08:43:58.374907 + : pb-IF4lUBEuJg== ip: a~m~~keajhaiaz, Device id: 620c52393bc846015da4f116ca02207c98263d1f -2023-05-31 08:44:23.473599 + : pb-IF40UBISLQ== ip: bxveyvavn~vk, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-31 08:48:26.601234 + : pb-IF4VU3EjBg== ip: azj~z`~|l~}o, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-05-31 08:49:13.764774 + : pb-IF4SVFkaCQ== ip: a~l~~jbaiavawm, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-05-31 08:51:50.334488 + : pb-IF4wV24HBw== ip: an~~acaiiwvix, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-05-31 08:56:19.355993 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-31 08:58:44.949542 + : pb-IF49VFdbEQ== ip: an~}hfaj`}va}a, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 09:01:29.748984 + : pb-IF4VU3EjBg== ip: azj~z`~|l~}o, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-05-31 09:01:41.796617 + : pb-IF5XU0YhKg== ip: azo~{m~}jeaih, Device id: 009307dd452aa63a0473545aea930364bd26abb4 -2023-05-31 09:03:11.102150 + : pb-IF4LU0YmJg== ip: a~n~}hdajcve~, Device id: cc7a73e73dc94f28ec5dcdfe754d0c31478255a5 -2023-05-31 09:05:12.489507 + : pb-IF5XU0YhKg== ip: azo~{m~}jeaih, Device id: 009307dd452aa63a0473545aea930364bd26abb4 -2023-05-31 09:15:55.974480 + : pb-IF4OU2QjMQ== ip: a~h~}jgaidakb, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-31 09:21:29.124716 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-31 09:28:32.824268 + : pb-IF4OU2QjMQ== ip: a~h~}jgaidakb, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-31 09:41:53.050230 + : pb-IF40UnIxBw== ip: dvvcyva{l~~lh, Device id: 31caf3d019549c780a2920bf4bfcb91ad2cef4ad -2023-05-31 09:43:29.394437 + : pb-IF5QU1EMXA== ip: an~}hgakaala, Device id: 756e17bc52d6f3915f82e19e4ec066b70b0e0718 -2023-05-31 09:50:59.669957 + : pb-IF4OPhMg ip: an~}ifa`ea`f, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-31 09:51:18.736467 + : pb-IF5XU0YhKg== ip: azo~{m~}jeaih, Device id: 009307dd452aa63a0473545aea930364bd26abb4 -2023-05-31 09:54:40.529850 + : pb-IF4XVHBdIQ== ip: azj~z`~}ibajax, Device id: bb4a1622c7601f1a78263c6066c8e905a694ffb2 -2023-05-31 09:54:51.563132 + : pb-IF5SU0sFCg== ip: azj~zo~{`~~og, Device id: 821fad3357fd1f16f2643f4b817ec997fbadc1ec -2023-05-31 09:57:39.117780 + : pb-IF4OPhMg started kick vote for pb-IF4XVHBdIQ==. -2023-05-31 09:58:09.124924 + : Kick vote End -2023-05-31 09:59:43.610738 + : pb-IF4jUnNTPA== ip: ak~~naaid{vgw, Device id: b76bf56d79f5e26a30939a86af491e8a53fc1525 -2023-05-31 10:00:11.733431 + : pb-IF4WUBJcVQ== ip: ak~}maaiiali, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-31 10:07:08.185301 + : pb-IF5dU3UiAw== ip: azo~{a~vk~~mb, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-31 10:07:37.289843 + : pb-IF4iUlpbJg== ip: azo~{a~ym~~li, Device id: a10212c8e6284fe44f2c4795a0b75345c4ae8a26 -2023-05-31 10:07:57.013358 + : pb-IF4OPhMg started kick vote for pb-IF5QU1EMXA==. -2023-05-31 10:07:58.365680 + : pb-IF5QU3AaLg== ip: dvvc{vb~`~yj, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-31 10:08:09.390650 + : pb-IF4iUlpbJg== ip: azo~{a~ym~~li, Device id: a10212c8e6284fe44f2c4795a0b75345c4ae8a26 -2023-05-31 10:08:16.817602 + : Kick vote End -2023-05-31 10:08:51.092027 + : pb-IF4OPhMg started kick vote for pb-IF5QU3AaLg==. -2023-05-31 10:09:21.093086 + : Kick vote End -2023-05-31 10:13:17.571929 + : pb-IF5VUGo7FA== ip: azj~z`~yo~~oh, Device id: 180a49b1f820d5ea85226650ec2b50b5c910cb2e -2023-05-31 10:19:03.275355 + : pb-IF4XU0ddEA== ip: awj~ya~~``amg, Device id: 7b46a4b00db7f6fad2b9f32c6c878678662345be -2023-05-31 10:19:10.298746 + : pb-IF4OU2QjMQ== ip: a~h~}jgaidakb, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-31 10:20:01.473879 + : pb-IF4nUkteVA== ip: a}j~zh~}hbaie|, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-05-31 10:20:56.657143 + : pb-IF4yVEspVg== ip: azo~|a~~acaifv, Device id: 18804ca4703453b1b0df23973b98da9e7e589048 -2023-05-31 10:22:51.084365 + : pb-IF5VUBMtHQ== ip: a|o~vo~xi~~m`, Device id: 33f80a7b827c9cb3b23054410f5384407fb999d5 -2023-05-31 10:23:28.233796 + : pb-IF5dU3UiAw== ip: azo~{a~vk~~mb, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-31 10:24:06.385452 + : pb-IF4sU28eAg== ip: azh~~jiai`}vdz, Device id: 8d7d81f19ac4904855ab79a2ca6f22cefdf3f63f -2023-05-31 10:30:27.674936 + : pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA ip: an~~afaiiajbx, Device id: 936c205c0c65262d62300105d4329a28095c9790 -2023-05-31 10:37:25.032301 + : pb-IF4IV04ZKw== | kicked > reason:Banned account -2023-05-31 10:40:30.334557 + : pb-IF5RU3UzJA== ip: a~h~}jeaoia`e, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-05-31 10:52:35.893663 + : pb-IF49VFdbEQ== ip: an~}hfaj`va}a, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 10:52:57.965082 + : pb-IF49UBEhJA== ip: azo~|j~|k~~ob, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-31 10:56:44.290966 + : pb-IF4OU2QjMQ== ip: a~h~}jgaidakb, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-31 10:59:41.979049 + : pb-IF49VFdbEQ== ip: an~}hfaj`va}a, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 11:00:23.112445 + : pb-IF4SVFkaCQ== ip: a~l~~jbao`ani, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-05-31 11:00:23.112835 + : pb-IF4qUxBfAw== ip: an~}haakgai`~, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-05-31 11:03:51.887607 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-31 11:09:18.182130 + : pb-IF4jU2gAEg== ip: dvvbm~va~~aa, Device id: 8e2eb965578d7898efa86a0fed19362451c05bea -2023-05-31 11:17:00.147620 + : pb-IF4VU3laVA== ip: ak~~`baifxvayh, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-31 11:21:52.448762 + : pb-IF5dU3UiAw== ip: azo~{a~xl~~ah, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-31 11:23:50.959294 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-31 11:24:44.169010 + : pb-IF4SUGYAFA== ip: awh~~a`ai`vvb{o, Device id: 7387088e488c7c317c3df0278171f537b27e821c -2023-05-31 11:24:49.192285 + : pb-IF4SUGYAFA== ip: awh~~a`ai`vvb{o, Device id: 7387088e488c7c317c3df0278171f537b27e821c -2023-05-31 11:24:55.211441 + : pb-IF49VFdbEQ== ip: an~}hfaj`va}a, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 11:38:54.738339 + : pb-JiNJARFdXUBIW1tHEEJVXFJEEUFdQlVE ip: azo~|j~}ldai`v, Device id: f058e6eeb1a54f58ef7bfe92ded2dcb07e64ae5a -2023-05-31 11:42:09.632552 + : Server started -2023-05-31 11:42:10.640893 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-31 11:42:59.787021 + : pb-IF4oUlE_Vg== ip: an~}ifajdvva{l, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-31 11:43:29.890063 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-31 11:45:18.073542 + : pb-IF4WV1AGCA== started kick vote for pb-IF4oUlE_Vg==. -2023-05-31 11:45:48.078910 + : Kick vote End -2023-05-31 11:48:03.900680 + : pb-IF4HUGYaKg== ip: azj~zo~}heaia}, Device id: 6e79b8ac3198f57c69c9d1889e66493a0ebdffd9 -2023-05-31 11:48:20.966113 + : pb-IF4BU0EsIg== ip: azj~z`~}ihanf, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-05-31 11:48:29.001678 + : pb-IF4SVFkaCQ== ip: a~l~~jbaohaie|, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-05-31 11:49:21.715984 + : pb-IF4WV1AGCA== started kick vote for pb-IF4eUGU-FA==. -2023-05-31 11:49:33.145942 + : pb-IF4eUGU-FA== kicked by kickvotes. -2023-05-31 11:50:53.528694 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-31 11:54:50.479188 + : pb-IF4WUBJcVQ== ip: ak~}maaiiali, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-31 11:57:40.102189 + : pb-IF4BU0EsIg== ip: azj~z`~}ihanf, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-05-31 11:57:49.131123 + : pb-IF4TUGEIDQ== ip: a~h~}jdaifyvavo, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-31 11:58:04.177257 + : pb-IF4BU0EsIg== ip: azj~z`~}ihanf, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-05-31 11:58:50.684607 + : pb-IF4eUGk9Cg==|| kicked > new account -2023-05-31 12:00:11.690986 + : pb-IF4TUGEIDQ== ip: a~h~}jdaifyvavo, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-31 12:00:44.826717 + : pb-IF4wUGccFA== ip: an~~acaig}vai, Device id: 20076ad4d0910aebc02c6b8245c2986e64b4acbe -2023-05-31 12:01:19.946081 + : pb-IF4TV3RbDA== ip: an~}ibaid~vb{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-31 12:01:34.005285 + : pb-IF4VU3EjBg== ip: azj~z`~|n~{i, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-05-31 12:03:59.554012 + : pb-IF4WUBJcVQ== ip: ak~}maaiiali, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-31 12:04:26.717385 + : pb-IF4uU0QSHA== ip: azo~zh~{`~wa, Device id: 1d0ac388ad41d18552b9832ff74ffccc2bb1fe4c -2023-05-31 12:08:36.635766 + : pb-IF4BU0EsIg== ip: azj~z`~}ihanf, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-05-31 12:09:52.929855 + : pb-IF4VVG8gNQ== ip: azo~zi~~hbai`}, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-31 12:10:41.080289 + : pb-IF4VVG8gNQ== ip: azo~zi~~hbai`}, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-31 12:10:46.096404 + : pb-IF5cUxIRPA== ip: an~~aeakcaii}, Device id: ecb48f1cf833572d90202d373f716af86873e9eb -2023-05-31 12:11:08.168358 + : pb-IF4rU1g-HA== ip: an~~ahaiaxvbi, Device id: c21f07d1eab26e6742da5c1151d40f9a99f033ff -2023-05-31 12:12:03.414097 + : pb-IF49VFdbEQ== ip: an~}hfaj`va}a, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 12:14:32.933605 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-31 12:15:11.071550 + : pb-IF4HU2pTMQ== ip: axi~yi~{m~}id, Device id: 868b9648585b7a3d368b58b60409f524fa43e28f -2023-05-31 12:16:49.391213 + : pb-IF4TUGEIDQ== ip: a~h~}jdaif{vb{n, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-31 12:17:28.611965 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-31 12:18:03.746147 + : pb-IF4zUBUlNg== ip: b}k~~ogajazvi{, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-31 12:19:13.055273 + : pb-IF49VFdbEQ== ip: an~}hfaj`va}a, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 12:19:24.100226 + : pb-IF4AU08KHw== ip: an~}j`ajezvaxa, Device id: fa81f193a58db9d5602e85e2870f63d0c357b131 -2023-05-31 12:20:21.296839 + : pb-IF4vVRUFVA== | kicked > reason:Banned account -2023-05-31 12:21:03.425430 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB ip: b}k~~ohaja~vaxh, Device id: 78c06b4d948c8b6425fd95b584f9c5243e2bfa5b -2023-05-31 12:24:37.228830 + : pb-IF4OU1IZVg== ip: azo~{l~~nbajbz, Device id: 541973653043d7f242ff3b1078194e8678f82921 -2023-05-31 12:25:08.342080 + : pb-IF5dU3UiAw== ip: azo~{a~w`~~jg, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-31 12:25:55.136760 + : pb-IF4OU1IZVg== started kick vote for pb-IF4XU0gNJg==. -2023-05-31 12:26:25.137094 + : Kick vote End -2023-05-31 12:27:57.018169 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4AU08KHw==. -2023-05-31 12:28:27.022466 + : Kick vote End -2023-05-31 12:31:36.829038 + : pb-IF4OPhMg ip: an~}ifa`ea`f, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-31 12:33:22.838198 + : pb-IF4XU0gNJg== started kick vote for pb-IF4AU08KHw==. -2023-05-31 12:33:52.837196 + : Kick vote End -2023-05-31 12:34:51.471949 + : pb-IF4qUxBfAw== ip: an~}haakgai`~, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-05-31 12:36:01.702331 + : pb-IF4yUhgAAQ== ip: izva~m~~hiaka, Device id: dd15705f59c34196c1f141fb5619108def92d0fb -2023-05-31 12:37:03.938324 + : pb-IF4VVG8gNQ== ip: azo~zi~~hbai`}, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-31 12:38:02.133734 + : pb-IF4oUlE_Vg== ip: an~}ifajdvva{l, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-31 12:38:06.138997 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-31 12:39:01.342124 + : pb-IF4PIFQ9 ip: azj~z`~}heaji, Device id: 593a69858f539a0b1f234b1980113bb4060a87b5 -2023-05-31 12:39:35.469192 + : pb-IF4TUGEIDQ== ip: a~h~}jdaifyvix, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-31 12:40:46.965930 + : pb-IF4OPhMg started kick vote for pb-IF4TUGEIDQ==. -2023-05-31 12:41:16.972939 + : Kick vote End -2023-05-31 12:41:29.940793 + : pb-IF4rV3cFEg== ip: ak~~l~~jiaic, Device id: 8fc30db451300fc1018f625ac62e7aae76bd6f51 -2023-05-31 12:41:40.981675 + : pb-IF4-JUgB | kicked > reason:Banned account -2023-05-31 12:42:15.086009 + : pb-IF4TV2w6Bw== ip: azo~zi~za~|`, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-05-31 12:42:27.134309 + : pb-IF4TV2w6Bw== ip: azo~zi~za~|`, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-05-31 12:42:55.236990 + : pb-IF4TV2w6Bw== ip: azo~zi~za~|`, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-05-31 12:43:34.404427 + : pb-IF4TV2w6Bw== ip: azo~zi~za~|`, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-05-31 12:43:36.409267 + : pb-IF4WUBJcVQ== ip: ak~}maaiiali, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-31 12:44:21.551130 + : pb-IF4qUxBfAw== ip: an~}haakgai`~, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-05-31 12:44:36.600995 + : pb-IF5QU3AaLg== ip: dvvc{vb}h~}md, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-05-31 12:44:52.672441 + : pb-IF4TV2w6Bw== ip: azo~zi~za~|`, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-05-31 12:46:53.136425 + : pb-IF4TV2w6Bw== ip: azo~zi~xa~}j`, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-05-31 12:46:56.621082 + : pb-JiNJARFaXUdIVF9DEEBVV1NFEkFbRVJA started kick vote for pb-IF4PIFQ9. -2023-05-31 12:47:18.192635 + : pb-IF4TV2w6Bw== ip: azo~zi~xa~}j`, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-05-31 12:47:26.622803 + : Kick vote End -2023-05-31 12:48:12.339245 + : pb-IF5dU3UiAw== ip: azo~{a~w`~~jg, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-31 12:48:18.350499 + : pb-IF4TV2w6Bw== ip: azo~zi~xa~}j`, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-05-31 12:48:27.380579 + : pb-IF4qUxBfAw== ip: an~}haakgai`~, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-05-31 12:49:40.413653 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB started kick vote for pb-IF4OPhMg. -2023-05-31 12:50:10.414937 + : Kick vote End -2023-05-31 12:50:38.833217 + : pb-IF4sAGcj ip: bxvewva}i~~aa, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-31 12:50:41.847393 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-31 12:51:00.919258 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-31 12:51:04.936807 + : pb-IF49VFQlPA== ip: azo~{m~yi~}ke, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-05-31 12:51:27.006299 + : pb-IF49VFdbEQ== ip: an~}hfaj`va}a, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 12:52:02.495540 + : kicked Nakumrahul -2023-05-31 12:52:58.346541 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-31 12:53:56.552526 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-31 12:54:31.654362 + : pb-IF4TUGEIDQ== ip: a~h~}jdaifyvix, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-31 12:55:38.056350 + : pb-IF4sUGMeVA== ip: dvvcyvivva}`, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-05-31 12:56:40.793209 + : pb-IF4sUGMeVA== started kick vote for pb-IF4XU0gNJg==. -2023-05-31 12:56:55.345220 + : pb-IF4NVxAZDg== ip: dvvcyva~m~}ji, Device id: 9dda09fcf9a3701e0e8edddd357f35fc1813050f -2023-05-31 12:57:10.798339 + : Kick vote End -2023-05-31 12:57:22.472233 + : pb-IF4zUBUlNg== ip: a}j~~ogam~}m`, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-31 13:00:05.059916 + : pb-IF4vU0MENg== ip: a}j~~`aaibzvayk, Device id: 6382f3717c6ac3650740a14e9d6ab4b67728a26a -2023-05-31 13:02:26.555376 + : pb-IF4SUGYAFA== ip: awh~~a`ai`vvb{o, Device id: 7387088e488c7c317c3df0278171f537b27e821c -2023-05-31 13:02:31.568347 + : pb-IF4SUGYAFA== ip: awh~~a`ai`vvb{o, Device id: 7387088e488c7c317c3df0278171f537b27e821c -2023-05-31 13:03:01.693031 + : pb-IF41U2scIg== ip: an~}i`ajc{va~n, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-31 13:03:16.748319 + : pb-IF4tUGMBCg== ip: ak~za~xl~yh, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-31 13:06:33.512361 + : pb-IF4VU3laVA== ip: ak~~`baifxvayh, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-31 13:07:56.094120 + : pb-IF4VU3laVA== started kick vote for pb-IF4PV24yPA==. -2023-05-31 13:08:26.100195 + : Kick vote End -2023-05-31 13:09:39.151711 + : pb-IF49VFdbEQ== ip: an~}hfaj`va}a, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 13:10:05.242406 + : pb-IF49VFdbEQ== ip: an~}hfaj`va}a, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 13:11:03.553756 + : pb-IF49VFdbEQ== ip: an~}hfaj`va}a, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 13:13:56.061117 + : pb-IF4tUGMBCg== started kick vote for pb-IF4sAGcj. -2023-05-31 13:14:04.747140 + : Kick vote End -2023-05-31 13:15:04.413062 + : pb-IF5dU3UiAw== ip: azo~{a~w`~~jg, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-31 13:16:41.734533 + : pb-IF4sAGcj ip: bxvewva}i~~aa, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-31 13:17:29.904094 + : pb-IF4zUko6Jw== ip: ak~~neaifxvb~i, Device id: 3acd397263ec5ab66d15567cf0e98dfbbb915976 -2023-05-31 13:20:04.447106 + : pb-IF4VVG8gNQ== ip: azo~zi~v`~~`f, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-31 13:20:40.595195 + : pb-JiNJVxBdXERFW19IGUNZU11EFkFXRFRA ip: azj~zo~}i`aj`x, Device id: baad07beda908edb1a826234eb4ff2c5375c932a -2023-05-31 13:21:58.140176 + : pb-IF4uUGgbLA==|| kicked > new account -2023-05-31 13:22:57.056208 + : pb-IF4VVG8gNQ== ip: azo~zi~v`~~`f, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-31 13:23:35.206273 + : pb-IF4VVG8gNQ== ip: azo~zi~v`~~`f, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-31 13:25:29.610406 + : pb-IF4PUxM7Mg== ip: a|o~vo~~hia``, Device id: 2005d3932c1dcb0f796e811b13b5e3ce8549c984 -2023-05-31 13:28:10.180106 + : pb-IF4jF1NY ip: azj~z`~{o~vo, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-31 13:31:09.916583 + : pb-IF4vU0MENg== ip: a}j~~`aaibzvayk, Device id: 6382f3717c6ac3650740a14e9d6ab4b67728a26a -2023-05-31 13:32:33.222047 + : pb-IF41U0YxAw== ip: a|o~vo~~jcaoa, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-05-31 13:33:08.345472 + : pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB ip: ak~{`~~h`aje{, Device id: rikkolovescats :3 -2023-05-31 13:33:43.460384 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`wva{m, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-05-31 13:35:56.032739 + : pb-IF4zUBUlNg== ip: a}j~~ogam~}m`, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-31 13:36:18.110576 + : pb-IF4VU3EjBg== ip: azj~z`~|l~~nd, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-05-31 13:37:28.397328 + : pb-IF4OU2QjMQ== ip: a~h~}jgaidakb, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-31 13:37:51.484633 + : pb-IF4OU2QjMQ== ip: a~h~}jgaidakb, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-31 13:38:25.596705 + : pb-IF4PU2Y6VQ== ip: a~h~}jfaigvva~n, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-05-31 13:41:05.159402 + : pb-IF4VVG8gNQ== ip: azo~zi~v`~~`f, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-31 13:42:58.250500 + : pb-IF4tUGMBCg== started kick vote for pb-JiNJVxBdXERFW19IGUNZU11EFkFXRFRA. -2023-05-31 13:43:28.249294 + : Kick vote End -2023-05-31 13:46:31.452671 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~ma, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-31 13:47:21.650849 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~ma, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-31 13:51:47.597270 + : pb-IF4VU3EjBg== ip: azj~z`~|l~}hd, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-05-31 13:52:10.687991 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-31 13:53:23.976660 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhviy, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-31 13:53:45.051726 + : pb-IF4sUGYjUw== ip: axi~zh~~nbaj`w, Device id: 43c7aa0b8e6ca0df1dee0e297599665d9dd266a0 -2023-05-31 13:57:31.966145 + : pb-IF4TUGEIDQ== ip: a~h~}jdaifzvawj, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-31 14:01:01.736783 + : pb-IF4VVG8gNQ== ip: azo~zi~~hfajav, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-31 14:06:10.801830 + : pb-IF4VVG8gNQ== ip: azo~zi~~hfajav, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-31 14:09:33.473811 + : pb-IF5UUxgjIA== started kick vote for pb-IF4NVxAZDg==. -2023-05-31 14:09:45.647573 + : pb-IF5UUxU7Ag== ip: b}k~~`baj`|va}i, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-05-31 14:10:03.474105 + : Kick vote End -2023-05-31 14:10:17.770800 + : pb-IF5UUxU7Ag== ip: b}k~~`baj`|va}i, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-05-31 14:12:30.221534 + : pb-IF5dU3UiAw== ip: azo~{a~x`~}lg, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-31 14:14:21.853246 + : pb-IF4OPhMg ip: an~}ifa`ea`f, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-05-31 14:17:57.749435 + : pb-IF4TV3RbDA== ip: an~}ibaid~vb{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-31 14:21:24.757714 + : pb-IF4OPhMg started kick vote for pb-IF5dU3UiAw==. -2023-05-31 14:21:54.762510 + : Kick vote End -2023-05-31 14:22:07.864419 + : pb-IF4eU0s9Pw== ip: a~a~vl~yl~vo, Device id: 79ff602d98582d9885d769eec06b4ebd8aab0aad -2023-05-31 14:22:31.955973 + : pb-IF4TUXMJ ip: dvvcyvewvb}i, Device id: 297acb7dcb3a3ea541d7b160584971c8ccbc325f -2023-05-31 14:22:42.986647 + : pb-IF49VFQlPA== ip: azo~{m~yi~}ke, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-05-31 14:24:36.509703 + : pb-IF4sAGcj ip: bxvewva}i~~aa, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-31 14:25:05.603065 + : pb-IF4OUBY-HA== ip: a|j~~mdancamg, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-05-31 14:25:37.703335 + : pb-IF4cUBYfCg== ip: azo~{m~~`ha`d, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-31 14:27:16.250325 + : pb-IF4cUBYfCg== ip: azo~{m~~`ha`d, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-31 14:28:07.454370 + : pb-IF4cUBYfCg== ip: azo~{m~~`ha`d, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-31 14:31:23.180534 + : pb-IF4sAGcj ip: bxvewva}i~~aa, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-31 14:31:54.296642 + : pb-IF4sAGcj ip: bxvewva}i~~aa, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-31 14:35:43.780670 + : pb-IF4TUGlfMA==|| kicked > new account -2023-05-31 14:37:00.375617 + : pb-JiNJARBSV0dDWV9FF0FTVFVDEEVeRlVG ip: dvvcxvb{`~}lh, Device id: 5dc722712e6160eecc68a4b7612929414e3aafd3 -2023-05-31 14:37:49.540985 + : pb-IF4cUBYfCg== ip: azo~{m~wa~~ah, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-31 14:37:58.569541 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`wva{m, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-05-31 14:38:30.918288 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`wva{m, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-05-31 14:38:48.972848 + : pb-IF5UUxgjIA== ip: azj~z`~xk~~ke, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-05-31 14:39:06.041183 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-31 14:39:11.614869 + : pb-IF4OUBY-HA== started kick vote for pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB. -2023-05-31 14:39:41.622480 + : Kick vote End -2023-05-31 14:42:07.750358 + : pb-IF49VFdbEQ== ip: an~}hfaii|va~n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 14:42:28.822812 + : pb-IF4VVG8gNQ== ip: azo~zi~~ihajaz, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-31 14:42:45.885447 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`wva{m, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-05-31 14:45:31.629533 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~ma, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-05-31 14:47:18.197690 + : pb-IF5UUxheIg== ip: azo~|a~}k`aj`x, Device id: c6e45fd1c978810e560b5acf6165aaf8e789fb21 -2023-05-31 14:47:20.208016 + : pb-ND0oSxMPXEsVXFcRDU8FAFxfEUEKQExLBlURRgNLRlpcRBlEAwVTQw== ip: b}k~~`iaj`ake, Device id: 87eb16775765df9799ce169d5d215f34f55d3314 -2023-05-31 14:47:36.266070 + : pb-IF4TV3RbDA== ip: an~}ibaid~vb{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-31 14:54:49.120663 + : pb-IF4XUGI7Aw== ip: azj~z`~}m~~ia, Device id: 4d9a5d7925a267f0f2385f70a1f714be11ffc50f -2023-05-31 14:55:31.273300 + : pb-IF4MUBMHKA== ip: azj~z`~~o~}ii, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-31 14:57:00.623433 + : pb-IF5cUkwjDA== ip: dvvcyvb~l~}ic, Device id: 84e8c68a67793414f4f9ba929c4417de1a04f4b0 -2023-05-31 14:57:53.882772 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-31 14:58:53.101384 + : pb-IF4AUGEvFA== ip: axm~~mgaj`yvgw, Device id: 79b24b64b8e4d872448003810774c88978a20914 -2023-05-31 14:59:14.170604 + : pb-IF4VVG8gNQ== ip: azo~zi~~ihajaz, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-31 15:04:22.532925 + : pb-IF4OU2QjMQ== ip: a~h~}jgaidakb, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-31 15:05:31.747757 + : pb-IF4PU2Y6VQ== ip: a~h~}jfaigvva~n, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-05-31 15:09:03.773957 + : pb-JiNJARBSV0dDWV9FF0FTVFVDEEVeRlVG ip: dvvcxvb{`~}lh, Device id: 5dc722712e6160eecc68a4b7612929414e3aafd3 -2023-05-31 15:10:09.021269 + : pb-IF4yVEspVg== ip: azo~|a~}jcajdy, Device id: 18804ca4703453b1b0df23973b98da9e7e589048 -2023-05-31 15:10:48.161207 + : pb-IF4DUBlZUg== ip: azo~|j~~jband, Device id: 40ef570a51f0e5048e15170252cef791bd02461a -2023-05-31 15:11:00.258084 + : pb-IF4QUGcdUA== ip: dvvc{va~`~}kd, Device id: 889c1273c17d7d416f7ce0b14bca3c058eb703a6 -2023-05-31 15:11:33.374290 + : pb-IF4sAGcj ip: bxvewva}i~~aa, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-31 15:12:01.663407 + : pb-IF5UUxheIg== started kick vote for pb-IF4jMVIl. -2023-05-31 15:12:07.828632 + : Kick vote End -2023-05-31 15:12:48.626874 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-31 15:12:49.629065 + : pb-IF5XU0YhKg== ip: azo~zh~zl~~ah, Device id: 009307dd452aa63a0473545aea930364bd26abb4 -2023-05-31 15:15:16.149998 + : pb-IF4IUhMeFg== ip: azo~{l~}j`ai`, Device id: df4c23617e32ad772632dbb878d1569e0e12d64d -2023-05-31 15:16:50.459352 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-31 15:18:17.781084 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-31 15:20:17.189569 + : pb-IF4QUBQoBw== ip: dvvc{vbzk~}md, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-05-31 15:21:32.764885 + : pb-IF40UncaLg== started kick vote for pb-IF4GUmYSFw==. -2023-05-31 15:22:02.767095 + : Kick vote End -2023-05-31 15:26:13.873114 + : pb-IF4lUlBcCw== ip: dvvd|vd}vfv, Device id: c2eaf0fbd40a55ee44817b911bcb1124d8644b1f -2023-05-31 15:33:08.591471 + : pb-IF49UBEhJA== ip: azo~|j~|k~vn, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-31 15:34:47.905789 + : pb-IF4sUGMeVA== ip: dvvcyvivva}`, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-05-31 15:35:54.746311 + : pb-IF4sUGMeVA== started kick vote for pb-IF49UBEhJA==. -2023-05-31 15:36:24.749027 + : Kick vote End -2023-05-31 15:41:14.520451 + : pb-IF49UBEhJA== ip: azo~|j~|k~vn, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-31 15:42:56.927771 + : pb-JiNJVxFfVEJIWVxFEUBXXFNLE0hXRFVD ip: dvvbo~}lbali, Device id: 569c6d5812b35ce92b109072e7b34df952bf7382 -2023-05-31 15:43:52.133611 + : pb-IF49UBEhJA== ip: azo~|j~|k~vn, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-05-31 15:44:30.277822 + : pb-IF4-JUgB | kicked > reason:Banned account -2023-05-31 15:44:46.340444 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-31 15:44:54.359019 + : pb-IF4mUBcSNQ== ip: azj~z`~~n~~, Device id: 04813a85716278e62069c80e53ffc0b79929387a -2023-05-31 15:55:37.794883 + : pb-IF4sAGcj ip: bxvewva}i~~aa, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-31 15:56:09.911445 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-31 16:03:25.634118 + : pb-IF4IVFkKNA== ip: an~~adaoba`c, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-05-31 16:10:20.321427 + : pb-IF4sUGMeVA== ip: dvvcyvivva}`, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-05-31 16:14:31.268782 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-05-31 16:20:22.631961 + : pb-IF49VFdbEQ== ip: an~}hfaii|va~n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 16:20:38.693140 + : pb-IF49VFdbEQ== ip: an~}hfaii|va~n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 16:21:29.878208 + : pb-IF4FUGdaPw== ip: ak~~neaoaa`e, Device id: dc573c74329c1aeab807a04ee7f891c262e33b6b -2023-05-31 16:21:40.932337 + : pb-IF4FUGdaPw== ip: ak~~neaoaa`e, Device id: dc573c74329c1aeab807a04ee7f891c262e33b6b -2023-05-31 16:23:48.394464 + : pb-IF4VVG8gNQ== ip: azo~zi~~ihaidy, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-31 16:24:50.818701 + : pb-IF4FUGdaPw== ip: ak~~neaoaa`e, Device id: dc573c74329c1aeab807a04ee7f891c262e33b6b -2023-05-31 16:25:17.899300 + : pb-IF49VFdbEQ== ip: an~}hfaii|va~n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 16:26:36.369198 + : pb-IF4hVVVeHQ== ip: ak~}ifa``aiiw, Device id: d48264bb111e9406c995bd034461104ca7dd849f -2023-05-31 16:27:03.563885 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-05-31 16:27:26.171883 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4hVVVeHQ==. -2023-05-31 16:27:56.173402 + : Kick vote End -2023-05-31 16:28:43.140564 + : pb-IF4FUGdaPw== ip: ak~~neaoaa`e, Device id: dc573c74329c1aeab807a04ee7f891c262e33b6b -2023-05-31 16:29:21.311676 + : pb-IF5VP0cq ip: an~}heajdvvb~a, Device id: f83246ecbce3c368deb9ee5929805cc6c7f53215 -2023-05-31 16:32:04.196036 + : pb-IF4jUGkNIg==|| kicked > new account -2023-05-31 16:32:09.909463 + : pb-IF4LU0wKIw== ip: azj~zo~}ihaic~, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-31 16:33:31.358189 + : pb-IF4OUBY-HA== ip: a|j~~mdakgalg, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-05-31 16:34:30.599372 + : pb-IF41U0YxAw== ip: a|o~vo~va~}me, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-05-31 16:35:10.762888 + : pb-IF49VFdbEQ== ip: an~}hfaii|va~n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 16:35:26.615785 + : pb-IF4OUBY-HA== started kick vote for pb-IF4XU0gNJg==. -2023-05-31 16:35:42.065091 + : pb-IF4tUGMBCg== ip: ak~za~xl~yh, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-31 16:35:56.615672 + : Kick vote End -2023-05-31 16:37:43.849433 + : pb-IF4TV3RbDA== ip: an~}ibaid~vb{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-31 16:38:24.003883 + : pb-IF4wV24HBw== ip: an~~acaiiwvix, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-05-31 16:42:54.098059 + : pb-IF4nUGgiMg== ip: bxveyva~a~}he, Device id: 9c80fd00a0721393bbbd095368fc2ee255ac1fd0 -2023-05-31 16:43:03.122251 + : pb-IF49VFdbEQ== ip: an~}hfaii|va~n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 16:47:04.144613 + : pb-IF4XU0gNJg== started kick vote for pb-IF4TV3RbDA==. -2023-05-31 16:47:25.101171 + : pb-IF41U2scIg== ip: ak~za~xl~yh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-31 16:47:27.108402 + : pb-IF49UGgzEQ== ip: azo~|l~}lbai`x, Device id: dae3e33440bd882c5561ed6ddf65c3cc074a1a25 -2023-05-31 16:47:34.147967 + : Kick vote End -2023-05-31 16:49:14.508559 + : pb-IF4qUGldVw==|| kicked > new account -2023-05-31 16:49:31.918839 + : pb-IF40VXMlBA== ip: bk~~adaaiala, Device id: 2567dc394522ed525d920d39eecafdfd32621b4d -2023-05-31 16:50:05.033807 + : pb-IF4wU1MPEg== ip: awj~ya~~ohajdy, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-31 16:58:01.960294 + : pb-IF4IU28qPA== ip: azo~zi~~jfaih|, Device id: 2b676771bfc1043a69989576d24e1194aec0a626 -2023-05-31 16:58:03.966309 + : pb-IF4cUktZNg== ip: azj~z`~~mda``, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-31 16:58:59.152383 + : pb-IF49VFdbEQ== ip: an~}hfaii|va~n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 17:01:37.230415 + : pb-IF4-U1QlMA== ip: awh~~a`ai`vvb{o, Device id: b74b6ddb16fa72cc4281fba5ae988d957e6e5fa6 -2023-05-31 17:01:55.300431 + : pb-IF4LU0wKIw== ip: azj~zo~}ihaic~, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-31 17:11:19.888031 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`wva{m, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-05-31 17:13:12.288834 + : pb-IF5WU0gIUQ== ip: azj~z`~}idajg, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-31 17:13:46.424432 + : pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA ip: an~~afaigajbx, Device id: 936c205c0c65262d62300105d4329a28095c9790 -2023-05-31 17:13:49.426135 + : pb-IF5cUBZdVg== ip: ai~}vaxo~xj, Device id: e6ad9b14306ce5a4c7c98910dfd7d742e6877dcb -2023-05-31 17:17:53.054059 + : pb-IF5cUBZdVg== started kick vote for pb-IF5QUngkKg==. -2023-05-31 17:18:23.058861 + : Kick vote End -2023-05-31 17:19:15.653601 + : pb-IF4OUBY-HA== ip: a|j~~mdakgalg, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-05-31 17:20:31.224361 + : pb-IF4OUBY-HA== started kick vote for pb-IF5UUxgjIA==. -2023-05-31 17:21:01.231907 + : Kick vote End -2023-05-31 17:21:25.108033 + : pb-IF4wU1MPEg== ip: awj~ya~~ohajdy, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-31 17:21:37.158386 + : pb-IF4IUGVTMQ== ip: ak~vo~vn~|o, Device id: c122767b74fe0c99f1c70247ae0b7d6375493e1d -2023-05-31 17:22:46.971211 + : pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA started kick vote for pb-IF4qUGVYPA==. -2023-05-31 17:23:05.607140 + : pb-IF4gUksyMQ== ip: b}k~~`gajd|vdw, Device id: b0ef821c8b60e5fcf4bad99d322e2a9451de48ac -2023-05-31 17:23:16.975467 + : Kick vote End -2023-05-31 17:27:37.631711 + : pb-IF4IUGVTMQ== started kick vote for pb-IF4wU1MPEg==. -2023-05-31 17:28:07.633997 + : Kick vote End -2023-05-31 17:31:11.302837 + : pb-IF4VU3laVA== ip: ak~~`dajcvvazo, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-31 17:31:44.865612 + : pb-IF4IUGVTMQ== started kick vote for pb-IF4wU1MPEg==. -2023-05-31 17:32:14.869542 + : Kick vote End -2023-05-31 17:33:47.966895 + : pb-IF4VU3laVA== started kick vote for pb-IF5QUngkKg==. -2023-05-31 17:34:17.974913 + : Kick vote End -2023-05-31 17:35:20.419264 + : pb-JiNJARFYU0pGXVdCFU9TVVZEFkFaRFlL ip: b}k~~oha``aii, Device id: 467f14cbe5ba30968f361357842173e8c6db047e -2023-05-31 17:35:46.504802 + : pb-IF4VU3laVA== ip: ak~~`dajcvvazo, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-31 17:37:10.826818 + : pb-JiNJARBSV0dDWV9FF0FTVFVDEEVeRlVG ip: dvvcxvb{`~}lh, Device id: 5dc722712e6160eecc68a4b7612929414e3aafd3 -2023-05-31 17:40:10.969872 + : pb-IF4KU2IeUA== ip: a~k~~aiajcvavl, Device id: 451d83b4db7cc6df8e759baf64d0406d9b6b625a -2023-05-31 17:40:24.018717 + : pb-IF4wU1MPEg== ip: awj~ya~~ohajdy, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-31 17:45:55.228300 + : Server started -2023-05-31 17:45:56.236119 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`wva{m, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-05-31 17:47:52.638411 + : pb-IF4zUBUlNg== ip: a~o~va~~obaj`, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-31 17:48:35.791214 + : pb-IF4yVVEzDw== ip: azo~{a~~meaicx, Device id: 719c2c24f5906351fa7a9e44a9b4042bd66943b2 -2023-05-31 17:48:49.846658 + : pb-IF4hVVVeHQ== ip: ak~}ifa``aiiw, Device id: d48264bb111e9406c995bd034461104ca7dd849f -2023-05-31 17:52:25.610895 + : pb-IF5VUGcFEA== ip: azj~z`~~`~wl, Device id: a283bb95472ff68dcb88db74236f43014d0fce0a -2023-05-31 17:52:53.712374 + : pb-IF5dUxEdMw== ip: ak~~obaoba`c, Device id: 6f15cc4b1fd616b8c60afbd4c54f7a4c92d200dd -2023-05-31 17:53:53.944626 + : pb-IF4gUksyMQ== ip: b}k~~`gajd|vdw, Device id: b0ef821c8b60e5fcf4bad99d322e2a9451de48ac -2023-05-31 17:59:18.141507 + : pb-IF4zUBUlNg== ip: a~o~va~~obaj`, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-05-31 18:01:19.595858 + : pb-IF4VVG8gNQ== ip: azo~zi~~jeaj`z, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-31 18:06:34.620099 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4AUBgdFg==. -2023-05-31 18:06:55.789955 + : pb-IF49I04z ip: a~h~}jda`haic{, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-31 18:07:04.627051 + : Kick vote End -2023-05-31 18:11:10.800572 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4AUBgdFg==. -2023-05-31 18:11:19.787381 + : pb-IF4AUBgdFg== kicked by kickvotes. -2023-05-31 18:11:31.717565 + : pb-IF4TUGEIDQ== ip: a~h~}jdaigzvb{m, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-31 18:11:37.732855 + : pb-IF43U0o7Aw== ip: an~}jaajevaxa, Device id: a09d01e25240174cea2612707e52e93b11f5da7e -2023-05-31 18:12:59.001449 + : pb-IF43U0o7Aw== ip: an~}jaajevaxa, Device id: a09d01e25240174cea2612707e52e93b11f5da7e -2023-05-31 18:13:11.048928 + : pb-IF43U0o7Aw== ip: an~}jaajevaxa, Device id: a09d01e25240174cea2612707e52e93b11f5da7e -2023-05-31 18:14:38.370532 + : pb-IF4TUGEIDQ== ip: a~h~}jdaigzvb{m, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-31 18:15:14.487228 + : pb-IF4cUBYfCg== ip: azo~{m~xa~v, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-31 18:16:14.733657 + : pb-IF4cUBYfCg== ip: azo~{m~xa~v, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-31 18:18:46.300421 + : pb-IF4TUGEIDQ== ip: a~h~}jdaigzvb{m, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-05-31 18:19:42.554918 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-31 18:20:28.707635 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-05-31 18:20:42.777917 + : pb-IF4TV3RbDA== ip: an~}ibaid~vb{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-31 18:22:23.139059 + : pb-IF4VU3laVA== ip: ak~~naaid{va}k, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-31 18:26:55.143042 + : pb-IF4TV3RbDA== ip: an~}ibaid~vb{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-31 18:29:46.742478 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~~aa, Device id: 84e8c68a67793414f4f9ba929c4417de1a04f4b0 -2023-05-31 18:29:59.776148 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~~aa, Device id: 84e8c68a67793414f4f9ba929c4417de1a04f4b0 -2023-05-31 18:36:19.204515 + : pb-IF4jUBMiCg== ip: azh~~jiai`}vdw, Device id: c21d9f9c46d65881ac92a1086df09766b67eba14 -2023-05-31 18:37:12.416246 + : pb-IF4cUBYfCg== ip: azo~{m~xa~v, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-31 18:37:44.728049 + : pb-IF4TV3RbDA== started kick vote for pb-IF5XUhIpIw==. -2023-05-31 18:37:49.554173 + : pb-IF4OU2QjMQ== ip: a~h~}jgaidakb, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-31 18:38:14.732286 + : Kick vote End -2023-05-31 18:42:04.537054 + : pb-IF4cUBYfCg== ip: azo~{m~xa~v, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-31 18:42:36.662061 + : pb-IF4IVFkKNA== ip: an~~adaoba`c, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-05-31 18:43:57.961905 + : pb-IF4uUlkcUA== ip: ak~wj~xo~zk, Device id: fe9910ff324a87bea4f69081d1ef9efda85f4a73 -2023-05-31 18:45:25.268243 + : pb-IF4VU3laVA== ip: ak~~naaid{va}k, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-31 18:47:04.625574 + : pb-IF4hVUccIQ== | kicked > reason:Banned account -2023-05-31 18:48:39.428704 + : pb-IF5cUkwjDA== started kick vote for pb-IF4WUhgOXQ==. -2023-05-31 18:48:44.008164 + : pb-IF4VU3laVA== ip: ak~~naaid{va}k, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-31 18:49:09.429447 + : Kick vote End -2023-05-31 18:49:44.257208 + : pb-IF4cVEQgDw== ip: an~}jcaie~vf|, Device id: 7c428e55ffa8c21082c93a1e079304858f35cb3c -2023-05-31 18:50:36.466972 + : pb-IF4WUBJcVQ== ip: ak~}maaiiali, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-31 18:51:28.675820 + : pb-IF4VU3laVA== ip: ak~~naaid{va}k, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-31 18:54:49.434367 + : pb-IF4cUBYfCg== ip: azo~{m~yl~~ng, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-31 18:54:59.469994 + : pb-IF4LU0wKIw== ip: azj~zo~}ibai`y, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-05-31 18:55:45.616739 + : pb-IF4TUxEoKg== ip: an~}ifajdyvcw, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-31 18:56:19.735999 + : pb-IF4WUBJcVQ== ip: an~}icaj`vvaj, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-05-31 18:56:49.989613 + : pb-IF4LU0wKIw== started kick vote for pb-IF4cVEQgDw==. -2023-05-31 18:56:57.804050 + : Kick vote End -2023-05-31 18:57:14.682443 + : pb-IF4TV3RbDA== started kick vote for pb-IF5cUkwjDA==. -2023-05-31 18:57:19.067080 + : pb-IF4IVFkKNA== ip: an~~adaoba`c, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-05-31 18:57:44.686904 + : Kick vote End -2023-05-31 18:59:44.576334 + : pb-IF4FD1c8 ip: azo~{n~xj~~ic, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-05-31 19:01:47.990183 + : pb-IF4FVW1TBg== ip: azo~zi~~meajaz, Device id: a5431ccbfbdc4fd557d96bba5a26e987166ce597 -2023-05-31 19:06:00.021542 + : pb-IF4cUBYfCg== ip: azo~{m~yl~~ng, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-31 19:09:26.935052 + : pb-IF4VU3laVA== ip: ak~~naaid{va}k, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-31 19:09:45.998951 + : pb-IF4TV2w6Bw== ip: azj~z`~}ibakd, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-05-31 19:10:21.123228 + : pb-IF40UBISLQ== ip: bxveyvavn~vk, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-31 19:10:24.135105 + : pb-IF4TV2w6Bw== ip: azo~zi~|n~}ki, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-05-31 19:10:54.238963 + : pb-IF4TV2w6Bw== ip: azo~zi~|n~}ki, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-05-31 19:12:34.595182 + : pb-IF4tUGMBCg== ip: ak~za~xl~yh, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-31 19:14:03.867256 + : pb-IF4TV2w6Bw== ip: azo~zi~|n~}ki, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-05-31 19:14:36.974966 + : pb-IF40UBISLQ== ip: bxveyvavn~vk, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-31 19:15:32.166792 + : pb-IF4TV2w6Bw== ip: azo~zi~|n~}ki, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-05-31 19:15:55.314304 + : pb-IF4MUGUlEQ== ip: a~h~}jfaih}vcx, Device id: ee8b2e2f100fd0b8bd4cc060bd1999f1c48ec64d -2023-05-31 19:19:15.955717 + : pb-IF4VU3laVA== ip: ak~~naaid{va}k, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-31 19:20:34.233911 + : pb-IF4VU3laVA== ip: ak~~naaid{va}k, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-31 19:22:01.682373 + : pb-IF49VFdbEQ== ip: an~}ifaib{vawh, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 19:22:38.910661 + : pb-IF4PIFQ9 ip: azj~z`~}heaje~, Device id: 593a69858f539a0b1f234b1980113bb4060a87b5 -2023-05-31 19:23:59.196426 + : pb-IF4vUkRaEg== ip: azo~{i~}lea`b, Device id: 6394b4f26b00e3f44dd52eaaa8b9d296c742e56a -2023-05-31 19:24:47.791460 + : pb-IF4yUGgbPA==|| kicked > new account -2023-05-31 19:25:03.444405 + : pb-ND0oSxMPXEsVXFcRDU8FAFxfEUEKQExLBlURRgNLRlpcRBlEAwVTQw== ip: an~~adajbwvbl, Device id: 87eb16775765df9799ce169d5d215f34f55d3314 -2023-05-31 19:26:46.838885 + : pb-IF4PIFQ9 ip: azj~z`~}heaje~, Device id: 593a69858f539a0b1f234b1980113bb4060a87b5 -2023-05-31 19:27:28.000369 + : pb-IF4tUGMBCg== ip: ak~za~xl~~o`, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-05-31 19:27:42.040567 + : pb-IF4MUBMHKA== ip: azj~z`~~n~|a, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-05-31 19:30:35.621335 + : pb-IF4pU1oqVg== ip: a|a~~ngaigyvazm, Device id: 7ee71d578344c9f3f3ba95c6c87390e91fdfd2da -2023-05-31 19:30:39.637485 + : pb-IF5XUhIpIw== ip: azo~{l~~kaakb, Device id: d2d813a63d61b8bdb698574b266246ba6f000571 -2023-05-31 19:31:13.743849 + : pb-IF4TV2w6Bw== ip: azj~z`~}hdai`x, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-05-31 19:31:52.865381 + : pb-IF4PIFQ9 ip: azj~z`~}hdai`x, Device id: 593a69858f539a0b1f234b1980113bb4060a87b5 -2023-05-31 19:32:23.971240 + : pb-IF4yUGgbPA== | kicked > reason:Banned account -2023-05-31 19:33:11.160893 + : pb-IF4pU1oqVg== ip: a|a~~ngaigyvazm, Device id: 7ee71d578344c9f3f3ba95c6c87390e91fdfd2da -2023-05-31 19:38:15.644792 + : pb-IF4dU1IOKQ== ip: b}k~}kaaihva{i, Device id: 0ea8bbe6ad0e9c005407166ad37923d1f241be41 -2023-05-31 19:39:57.018560 + : pb-IF4-U1QlMA== ip: awh~~a`ai`vvb{o, Device id: b74b6ddb16fa72cc4281fba5ae988d957e6e5fa6 -2023-05-31 19:42:30.800350 + : pb-IF4oUlE_Vg== ip: an~}ifajdvva|i, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-05-31 19:43:56.135456 + : pb-IF4VVG8gNQ== ip: a~n~xk~~ngaib}, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-31 19:45:10.373224 + : pb-IF49I04z ip: a~h~}jda`baic{, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-31 19:46:10.587359 + : pb-IF40UBISLQ== ip: bxveyvavn~vk, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-31 19:47:13.958829 + : pb-IF40UBISLQ== ip: bxveyvavn~vk, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-05-31 19:48:32.672624 + : pb-IF40UBISLQ== started kick vote for pb-IF4hVWs_UA==. -2023-05-31 19:49:02.674603 + : Kick vote End -2023-05-31 19:51:33.019124 + : pb-IF4OUGgPUQ== ip: a~j~~kda`~zh, Device id: 9dbf024b7b80377bf0e53eaa28a39df3db472957 -2023-05-31 19:53:07.340804 + : pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB ip: ak~{`~~h`aje{, Device id: rikkolovescats :3 -2023-05-31 19:53:19.368744 + : pb-IF4cUxYIHw== ip: ak~~niajazvax, Device id: e35939a5a05156aed985c7d695addffc44e4728d -2023-05-31 20:00:38.977036 + : pb-IF4TUxEoKg== ip: an~}ifajdwvcw, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-31 20:01:46.213473 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh}va{j, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-31 20:02:22.351817 + : pb-IF4WUGMyEw== ip: azo~zi~~aiang, Device id: 8709d7bbc6bde87129794b8a2337a0daefde64ea -2023-05-31 20:10:55.304268 + : pb-IF49VFdbEQ== ip: an~}ifaib{vawh, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 20:11:24.423547 + : pb-IF49VFdbEQ== ip: an~}ifaib{vawh, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 20:16:24.595939 + : pb-IF49VFdbEQ== ip: an~}ifaib{vawh, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 20:17:52.918284 + : pb-IF49VFdbEQ== ip: an~}ifaib{vawh, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 20:23:32.190704 + : pb-IF4PU2Y6VQ== ip: a~h~}jfaigvva~n, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-05-31 20:25:44.685539 + : pb-IF4wU1MPEg== ip: awj~ya~~ohajdy, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-31 20:27:33.425713 + : pb-IF4VU3laVA== ip: ak~~naaid{va}k, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-31 20:28:07.566578 + : pb-IF4iU3UtUg== ip: a~l~xa~}h~}n, Device id: 295bb1eb1e190071027d365d89aaaa16929b179e -2023-05-31 20:28:11.581361 + : pb-IF4TUGQ5Ng== ip: dvvbo~}igajax, Device id: 3857f20cc88787e2306d1b5cfb2f6115c51da8ea -2023-05-31 20:28:15.596014 + : pb-IF49VFdbEQ== ip: an~}ifaib{vawh, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 20:28:25.624743 + : pb-IF4VU3laVA== ip: ak~~naaid{va}k, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-31 20:28:51.721300 + : pb-IF4wU1MPEg== ip: awj~ya~~ohajdy, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-31 20:32:47.644006 + : pb-IF4VUlcBVQ== ip: azj~z`~~mbal, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-05-31 20:34:39.211873 + : pb-IF4VU3laVA== ip: ak~~naaid{va}k, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-05-31 20:35:50.485705 + : pb-IF4FU1daUA== ip: b}k~}khajayva~a, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-31 20:36:07.553230 + : pb-IF4gUksyMQ== ip: b}k~~`gajd}vayn, Device id: b0ef821c8b60e5fcf4bad99d322e2a9451de48ac -2023-05-31 20:36:36.863856 + : pb-IF4FU1daUA== ip: b}k~}khajayva~a, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-05-31 20:36:56.927754 + : pb-IF5VUBMtHQ== ip: a|o~vo~vk~}jb, Device id: 33f80a7b827c9cb3b23054410f5384407fb999d5 -2023-05-31 20:37:55.187510 + : pb-IF4jF1NY ip: azj~z`~|va`, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-31 20:37:56.193731 + : pb-IF49VFdbEQ== ip: an~}ifaib{vawh, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 20:38:19.292652 + : pb-IF4TV3RbDA== ip: an~}ibaid~vb{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-05-31 20:39:35.614533 + : pb-IF4VU3laVA== started kick vote for pb-IF4KUkcKNg==. -2023-05-31 20:39:47.239315 + : pb-IF4KUkcKNg== kicked by kickvotes. -2023-05-31 20:40:47.852495 + : pb-IF4iU3UtUg== ip: a~l~xa~}h~}n, Device id: 295bb1eb1e190071027d365d89aaaa16929b179e -2023-05-31 20:42:32.232518 + : pb-IF4VUlcBVQ== ip: azj~z`~~`eajaw, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-05-31 20:44:50.935943 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh}va{j, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-05-31 20:48:08.684973 + : pb-IF4OU2QjMQ== ip: a~h~}jgaidakb, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-05-31 20:48:15.715196 + : pb-IF4VUlcBVQ== ip: azj~z`~~mgao, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-05-31 20:51:06.423263 + : pb-IF4yUxQyFw== ip: a~o~~adajeama, Device id: ee9086c27d124bc5707b2acbd3b0fbf132e88050 -2023-05-31 20:51:28.696432 + : pb-IF4jF1NY started kick vote for pb-IF4cLRhd. -2023-05-31 20:51:58.700213 + : Kick vote End -2023-05-31 20:52:25.739471 + : pb-JiNJARBTVkdCW1ZIEkRVVlVGGUFcRVRG ip: b}k~~`iao`alf, Device id: fa80f10e96ce8d4d238acdfc9ee0c089b0cf6c29 -2023-05-31 20:53:09.747423 + : pb-IF4VU3laVA== started kick vote for pb-IF4gUGMiDg==. -2023-05-31 20:53:25.956912 + : pb-IF4TUBkMUw== ip: azo~{a~~leaoi, Device id: c53234887640640445df616dcc653f7c90ae1be3 -2023-05-31 20:53:39.749209 + : Kick vote End -2023-05-31 20:55:15.352496 + : pb-IF4gU0wxBw== ip: an~}i`ajc{va~n, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-05-31 20:55:50.900672 + : pb-IF4TV3RbDA== started kick vote for pb-IF4VU3laVA==. -2023-05-31 20:56:20.908253 + : Kick vote End -2023-05-31 20:57:22.430309 + : pb-IF4VU3laVA== started kick vote for pb-IF4TV3RbDA==. -2023-05-31 20:57:38.870917 + : pb-IF4cUBYfCg== ip: azo~{m~x`~}h, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-31 20:57:52.436736 + : Kick vote End -2023-05-31 20:59:06.214759 + : pb-IF4jF1NY started kick vote for pb-JiNJARBTVkdCW1ZIEkRVVlVGGUFcRVRG. -2023-05-31 20:59:16.003709 + : Kick vote End -2023-05-31 20:59:19.455137 + : pb-JiNJARBTVkdCW1ZIEkRVVlVGGUFcRVRG ip: b}k~~`iao`alf, Device id: fa80f10e96ce8d4d238acdfc9ee0c089b0cf6c29 -2023-05-31 21:00:19.491963 + : pb-IF5QUGsEBA==|| kicked > new account -2023-05-31 21:00:30.958217 + : pb-IF4IU28qPA== ip: azo~zi~~icaie~, Device id: 2b676771bfc1043a69989576d24e1194aec0a626 -2023-05-31 21:01:16.129275 + : pb-IF49I04z ip: a~h~}jda`caic{, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-05-31 21:02:31.396362 + : pb-IF4VU3laVA== started kick vote for pb-IF5XUlIGCA==. -2023-05-31 21:03:01.400318 + : Kick vote End -2023-05-31 21:04:09.797172 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-31 21:04:12.445859 + : pb-IF49I04z started kick vote for pb-IF4cLRhd. -2023-05-31 21:04:42.451326 + : Kick vote End -2023-05-31 21:04:55.281779 + : pb-IF4hUGhcCw==|| kicked > new account -2023-05-31 21:06:00.135121 + : pb-IF4jF1NY started kick vote for pb-IF4cLRhd. -2023-05-31 21:06:21.276824 + : pb-IF4-U1QlMA== ip: awh~~a`ai`vvb{o, Device id: b74b6ddb16fa72cc4281fba5ae988d957e6e5fa6 -2023-05-31 21:06:30.140254 + : Kick vote End -2023-05-31 21:08:02.857830 + : pb-IF41U2scIg== ip: an~}i`ajc{va~n, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-31 21:14:34.270530 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-05-31 21:28:04.446897 + : pb-IF5WU0gIUQ== ip: azj~z`~}ieaiiy, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-05-31 21:34:57.073721 + : pb-IF5QU1EMXA== ip: an~}hgakaala, Device id: 756e17bc52d6f3915f82e19e4ec066b70b0e0718 -2023-05-31 21:40:13.431397 + : pb-IF4yUGYGAw== ip: b}k~}kaaid{vb~n, Device id: 7dc4e200f2f64ef666440b6a7a04ac9a843cd427 -2023-05-31 21:42:51.981938 + : pb-IF5QU1EMXA== ip: an~}hgakaala, Device id: 756e17bc52d6f3915f82e19e4ec066b70b0e0718 -2023-05-31 21:43:45.268337 + : pb-IF4IV04ZKw== | kicked > reason:Banned account -2023-05-31 21:45:21.860482 + : pb-IF40U1InIQ== ip: dxvc~vawn~}hd, Device id: 4e747c2fb0258366b72c5410b7d5600842522ad2 -2023-05-31 21:50:03.062054 + : pb-IF4sAGcj ip: bxvewva}i~~aa, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-05-31 21:51:04.266927 + : pb-IF40PkMh ip: aakhaif{vg{, Device id: a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e -2023-05-31 21:52:33.738637 + : pb-IF4IUGQRHw== ip: a|o~vo~~hdajdx, Device id: 75b42d0e6532c03c0a60bb7c5238043a93288156 -2023-05-31 21:54:22.471516 + : pb-IF4iVHhSKA== ip: azj~z`~}kbamh, Device id: 5f80a466d38c85cde3dc4c39e64f264b811e6658 -2023-05-31 22:02:34.621126 + : pb-IF4zUGcTFA== ip: an~~aeakfaibv, Device id: cd205ac77e5d1926a696ce534b1c717e410eaef6 -2023-05-31 22:03:05.745624 + : pb-IF4zUGcTFA== ip: an~~aeakfaibv, Device id: cd205ac77e5d1926a696ce534b1c717e410eaef6 -2023-05-31 22:11:54.145708 + : pb-IF4tNxUh ip: axn~~jhaihvbv, Device id: 60e4ad03622d0144201fd4c0feee6aa2b1f1aa6d -2023-05-31 22:20:27.317801 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-05-31 22:21:01.414179 + : pb-IF4wU1MPEg== ip: awj~ya~~ohajdy, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-31 22:22:29.676354 + : pb-IF4cUBYfCg== ip: azo~{m~ya~yl, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-05-31 22:24:36.088298 + : pb-IF49VFdbEQ== ip: an~}ifaib~vawh, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 22:25:04.203891 + : pb-IF4sU3VSMg== ip: dvvc|vbh~}kg, Device id: cb6dd8b1d356943cea4f7e54c07fc932a91971ec -2023-05-31 22:31:06.174150 + : pb-IF4TUxEoKg== ip: an~}ifajdwvcw, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-05-31 22:31:59.605589 + : pb-IF40Mmsn ip: dvvcxvb~a~}l`, Device id: 5969f9310c6e239b2aaea42ecbb847044cce01fc -2023-05-31 22:32:10.649261 + : pb-IF40Mmsn ip: dvvcxvb~a~}l`, Device id: 5969f9310c6e239b2aaea42ecbb847044cce01fc -2023-05-31 22:32:33.708314 + : pb-IF4qUGQ7Eg== ip: ak~~jaaobaifw, Device id: a479cf15d56489f769977be68b665897530ae129 -2023-05-31 22:34:17.101556 + : pb-IF4VVG8gNQ== ip: azo~zi~~haaif|, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-31 22:36:28.743453 + : pb-IF4jF1NY ip: azj~z`~|va}, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-05-31 22:36:35.770278 + : pb-IF4dVUwMKQ== ip: a|o~vo~~jaala, Device id: 042adf53a235df6a5b9abacc091864fc5f0e0a68 -2023-05-31 22:38:39.285392 + : pb-IF4yU0hYEw== ip: awj~ya~~ogaib|, Device id: 052bbfd43b91c5bc01d4ba79df1c076697418a48 -2023-05-31 22:41:39.933336 + : pb-IF4KUBYdPQ== ip: avh~vo~~`caid, Device id: 65ca653399802b5a56f43826b470895b17abf95b -2023-05-31 22:41:48.961611 + : pb-IF4NUGRcFQ== ip: b~h~}ibaicyvix, Device id: 1111f20f2cec656adad66f10af7d172b0b8c7a6f -2023-05-31 22:42:22.541160 + : pb-IF4TU0QCXQ== | kicked for chat spam -2023-05-31 22:45:04.723600 + : pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA ip: an~~afajeaidz, Device id: 936c205c0c65262d62300105d4329a28095c9790 -2023-05-31 22:45:06.731389 + : pb-IF5RUBkiKA== ip: a}j~~oaaifajc|, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-05-31 22:45:44.877050 + : pb-IF4TD1cf | kicked > reason:Banned account -2023-05-31 22:45:47.891667 + : pb-IF5dU3UiAw== ip: azo~{a~vj~}n, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-05-31 22:53:07.964979 + : pb-IF40U0URIw== ip: axi~xn~}i`ajbx, Device id: e8e9110e88541e2e7d27ad7485103b607725d402 -2023-05-31 22:53:42.088971 + : pb-IF49VFdbEQ== ip: an~}ifaibyvawh, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 22:55:58.649465 + : pb-IF49VFdbEQ== ip: an~}ifaibyvawh, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 22:57:41.006253 + : pb-IF49VFdbEQ== ip: an~}ifaibyvawh, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-05-31 22:58:52.568175 + : pb-IF4vVRYNMQ== ip: ak~~mgaibvvbj, Device id: 9b6783d5f98ab0a9c59027e16c9d0aabdaba305d -2023-05-31 22:59:15.661664 + : pb-IF4FD1c8 ip: azo~{n~~ihaj`, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-05-31 22:59:52.812258 + : pb-IF41U2scIg== ip: an~}i`ajc{va~n, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-31 23:06:10.428202 + : pb-IF4BU0EsIg== ip: azj~z`~}ihajg, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-05-31 23:07:08.601529 + : pb-IF4BU0EsIg== ip: azj~z`~}ihajg, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-05-31 23:10:04.882697 + : pb-IF4BU0EsIg== ip: azj~z`~}ihajg, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-05-31 23:10:25.964044 + : pb-IF4PU2Y6VQ== ip: a~h~}jfaigvva~n, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-05-31 23:11:00.078430 + : pb-IF4BU0EsIg== ip: azj~z`~}ihajg, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-05-31 23:15:37.101012 + : pb-IF41U2scIg== ip: an~}i`ajc{va~n, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-31 23:18:54.821666 + : pb-IF41U2scIg== ip: an~}i`ajc{va~n, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-31 23:19:16.886076 + : pb-IF4PU2Y6VQ== ip: a~h~}jfaigvva~n, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-05-31 23:19:28.931054 + : pb-IF5VUxYCUg== ip: azj~z`~~n~}la, Device id: 52d08b4055ddb7067887824be74c402e62730ed2 -2023-05-31 23:23:01.428670 + : pb-IF41U2scIg== ip: an~}i`ajc{va~n, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-05-31 23:25:04.156787 + : pb-IF4wU1MPEg== ip: awj~ya~~ohajdy, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-05-31 23:25:12.601721 + : pb-IF5VUxYCUg== ip: azj~z`~~n~}la, Device id: 52d08b4055ddb7067887824be74c402e62730ed2 -2023-05-31 23:27:53.826684 + : pb-IF4IVFkKNA== ip: an~~adaoba`c, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-05-31 23:28:49.052421 + : pb-IF4VVG8gNQ== ip: azo~zi~vn~~li, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-05-31 23:30:01.599462 + : pb-IF49VFQlPA== ip: azo~{m~yi~}ke, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-06-01 00:00:21.532794 + : pb-IF4OPhMg ip: a~o~va~yj~~nb, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-01 00:04:21.481910 + : pb-IF4nUnZfJg== ip: dvvc{vdvvd}, Device id: 4ba0df99dfeca7b3c40f7493f1c2420e1b54ed88 -2023-06-01 00:13:57.902971 + : pb-IF41U2scIg== ip: an~}i`ajc{va~n, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-01 00:30:26.639367 + : pb-IF4pU1U8VQ== ip: bj~~ndaicvbw, Device id: 10c5129130345ffd919d3546c3dc1729aa6ba63f -2023-06-01 00:42:25.652861 + : Server started -2023-06-01 00:42:26.660821 + : pb-IF5QU3AaLg== ip: azo~|j~~h~}jh, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-06-01 00:53:13.953466 + : pb-IF4TV3RbDA== ip: a}j~~oiaiavg}, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-06-01 00:53:52.101501 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-01 00:56:27.719932 + : pb-IF4iVHhSKA== ip: azo~zh~yk~yh, Device id: 5f80a466d38c85cde3dc4c39e64f264b811e6658 -2023-06-01 00:58:44.314725 + : pb-IF4TV3RbDA== started kick vote for pb-IF4iVHhSKA==. -2023-06-01 00:59:14.319140 + : Kick vote End -2023-06-01 01:12:16.078799 + : pb-IF49VFdbEQ== ip: an~}ifaib~vawh, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 01:25:22.997108 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-01 01:34:22.951288 + : pb-IF49VFdbEQ== ip: an~}ifaib~vawh, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 01:46:27.588115 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-01 01:48:43.090873 + : pb-IF4zU2MgJw== ip: dvvc}vb{a~~ja, Device id: 5b13413ad2a035b34073c5918da9363afe5b8217 -2023-06-01 02:33:16.989024 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-01 02:39:30.499174 + : pb-IF4TV3RbDA== ip: azo~|l~~kga`, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-06-01 02:54:10.154645 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-01 03:35:59.477039 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-01 04:17:11.788028 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-01 04:59:06.499298 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-01 05:19:35.938604 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-01 05:40:58.589337 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-01 05:41:13.640950 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-01 06:02:15.285337 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-01 06:27:04.735999 + : pb-IF4nUkteVA== ip: a}j~zh~}hbaie|, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-06-01 06:44:22.619033 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-01 07:42:27.464507 + : Server started -2023-06-01 07:47:19.522121 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-01 08:29:11.779382 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-01 08:49:04.161410 + : pb-IF40UBISLQ== ip: bxveyvavn~vk, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-06-01 09:09:40.754048 + : pb-IF40UBISLQ== ip: bxveyvavn~vk, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-06-01 09:11:30.146622 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-06-01 09:34:39.178036 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-01 09:55:20.597382 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-01 10:16:07.259025 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-01 10:17:03.463186 + : pb-IF4VVG8gNQ== ip: azo~zi~~hfai`~, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-01 10:21:39.625882 + : pb-IF5dU3UiAw== ip: azo~{a~wj~w`, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-01 10:35:20.719303 + : pb-IF5VUGo7FA== ip: azj~z`~yo~~aa, Device id: 180a49b1f820d5ea85226650ec2b50b5c910cb2e -2023-06-01 10:50:07.992462 + : pb-IF5cUkwjDA== ip: dvvcyvb~l~}mc, Device id: 84e8c68a67793414f4f9ba929c4417de1a04f4b0 -2023-06-01 10:52:59.657916 + : pb-IF4WUBJcVQ== ip: azh~~hgajd~vbi, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-06-01 10:56:02.420250 + : pb-IF4VU3laVA== ip: ak~~`ca`caja, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-01 10:57:31.794660 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-01 11:02:49.968326 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-01 11:03:26.084181 + : pb-IF5XU0YhKg== ip: azo~zh~{l~{l, Device id: 009307dd452aa63a0473545aea930364bd26abb4 -2023-06-01 11:03:29.097773 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-01 11:06:40.832147 + : pb-IF4HU2pTMQ== ip: axi~yi~{m~}id, Device id: 868b9648585b7a3d368b58b60409f524fa43e28f -2023-06-01 11:06:51.873345 + : pb-JiNJARFdXUdGW1pEE0JZV1JCEUVdQVdA ip: ak~~o~~i`a`d, Device id: d3c1b69f4abe0a30b187a9f76dd0bf2ec4316172 -2023-06-01 11:17:43.735981 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-01 11:19:33.192223 + : pb-IF4VVG8gNQ== ip: azo~zi~~ibajdz, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-01 11:24:48.369030 + : pb-IF49VFdbEQ== ip: an~}ifaibzva|n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 11:28:17.164675 + : pb-IF4rUGctLw== ip: azo~|k~}lhaihz, Device id: 28f97f2e4d4802bdda09fd1c869756c61288a11b -2023-06-01 11:47:05.396691 + : pb-IF4QUBQoBw== ip: azo~|j~~ihajbx, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-06-01 11:47:30.455559 + : pb-IF4QUBQoBw== ip: azo~|j~~ihajbx, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-06-01 11:47:46.510701 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-06-01 11:56:43.387346 + : pb-IF40UncaLg== ip: dvvc|vb~`~~ia, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-01 12:06:37.619720 + : pb-IF4VU3laVA== ip: ak~~`ca`caja, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-01 12:08:44.216653 + : pb-IF5cVXEyAA== ip: azo~zi~~`iajbz, Device id: e6b53718b2c1114495bc863e14c06b012d31bd72 -2023-06-01 12:09:32.394952 + : pb-IF5cVXEyAA== ip: azo~zi~~`iajbz, Device id: e6b53718b2c1114495bc863e14c06b012d31bd72 -2023-06-01 12:10:26.995903 + : pb-IF4SUGIfHQ== ip: bj~wk~~jdaj`{, Device id: e66fa363c4e40ed6ac8ec122b3a6d5c2e58b89dd -2023-06-01 12:11:50.305317 + : pb-IF4VU3laVA== ip: ak~~`ca`caja, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-01 12:13:46.736959 + : pb-IF4LUk0FCQ== ip: azj~zo~~aeaa`, Device id: a90ea705ab07ae71d76b1775b6c73cf2a51c5161 -2023-06-01 12:15:45.420101 + : pb-IF4LUk0FCQ== started kick vote for pb-IF4UVVRbKQ==. -2023-06-01 12:16:15.422425 + : Kick vote End -2023-06-01 12:17:10.541398 + : pb-IF41U2scIg== ip: an~}i`ajc{va~n, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-01 12:17:43.672291 + : pb-IF41U2scIg== ip: an~}i`ajc{va~n, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-01 12:19:07.972808 + : pb-IF4cUBYfCg== ip: azo~{m~wm~~kg, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-01 12:20:01.109356 + : pb-IF4LUk0FCQ== started kick vote for pb-IF4UVVRbKQ==. -2023-06-01 12:20:18.601690 + : pb-IF4UVVRbKQ== kicked by kickvotes. -2023-06-01 12:22:55.274743 + : pb-IF4sAGcj ip: a}j~~oiaofai`|, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-06-01 12:24:25.657730 + : pb-IF49VFdbEQ== ip: an~}ifaibzva|n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 12:24:31.099149 + : pb-IF4LUk0FCQ== started kick vote for pb-IF4DU1U8KQ==. -2023-06-01 12:25:01.100442 + : Kick vote End -2023-06-01 12:29:13.780345 + : pb-IF4LUk0FCQ== started kick vote for pb-IF49VFdbEQ==. -2023-06-01 12:29:43.783046 + : Kick vote End -2023-06-01 12:31:05.641841 + : pb-IF4DU1U8KQ== ip: dvvcxvgzva{m, Device id: b633286e05251d8d09995d20591d93a55471312d -2023-06-01 12:31:06.644789 + : pb-IF49VFdbEQ== ip: an~}ifaibzva|n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 12:31:45.778343 + : pb-IF4cUBYfCg== ip: azo~{m~wm~~kg, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-01 12:31:47.783833 + : pb-IF4cUlM-XQ== ip: dvvbm~}kfaiby, Device id: 6bda5f2f2f7c57d70ffc8e7e06fd370ba3b7ebca -2023-06-01 12:33:16.351209 + : pb-IF4UU3kcKg== ip: a{va|a~v`~~nd, Device id: fb5035d3daf10aeb21a4cbc1f0201fab2bc8f307 -2023-06-01 12:35:35.964609 + : pb-IF4LUk0FCQ== started kick vote for pb-IF49VFdbEQ==. -2023-06-01 12:36:05.972276 + : Kick vote End -2023-06-01 12:38:18.710249 + : pb-IF49VFdbEQ== ip: an~}ifaibzva|n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 12:39:05.887661 + : pb-IF4jUBMiCg== ip: azh~~jiai`}vdw, Device id: c21d9f9c46d65881ac92a1086df09766b67eba14 -2023-06-01 12:39:26.993752 + : pb-IF5VU1ckXQ== ip: dvvczvayl~~`d, Device id: 5faaeab4f279828c3623208186219e905750d820 -2023-06-01 12:41:01.689320 + : pb-IF4LUk0FCQ== | kicked for chat spam -2023-06-01 12:41:28.400825 + : pb-IF49VFdbEQ== ip: an~}ifaibzva|n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 12:41:51.484848 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-01 12:42:06.543468 + : pb-IF41U2scIg== ip: an~}i`ajc{va~n, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-01 12:42:58.743856 + : pb-IF4UU3kcKg== ip: a{va|a~v`~~nd, Device id: fb5035d3daf10aeb21a4cbc1f0201fab2bc8f307 -2023-06-01 12:44:49.149138 + : pb-IF4cUBYfCg== ip: azo~{m~wm~~kg, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-01 12:46:50.579116 + : pb-IF4nUmMRCw== ip: bxvevvc{vaw`, Device id: 7f22fb4b09eaa18898da7e6957c49f2169eff75d -2023-06-01 12:47:52.935742 + : pb-IF4jF1NY ip: azj~z`~{vb~m, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-01 12:48:31.062494 + : pb-IF4vU0MENg== ip: an~}icangaj`~, Device id: 6382f3717c6ac3650740a14e9d6ab4b67728a26a -2023-06-01 12:48:50.115479 + : pb-IF4nUkteVA== ip: a}j~zh~}hbaie|, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-06-01 12:50:25.438093 + : pb-IF5dU3UiAw== ip: a~o~}ieaibzvd~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-01 12:57:30.396575 + : pb-IF4VVG8gNQ== ip: azo~zi~~hfaihz, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-01 12:58:00.494483 + : pb-IF4IUGQRHw== ip: a|o~vo~~h`ajby, Device id: 75b42d0e6532c03c0a60bb7c5238043a93288156 -2023-06-01 13:00:23.306323 + : pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA ip: an~~afajda`c, Device id: 936c205c0c65262d62300105d4329a28095c9790 -2023-06-01 13:07:46.537048 + : pb-IF4VVEIIAQ== ip: azo~{a~~ocaah, Device id: 8c6c79338e11d56d764da5988a3f4c2cf6c8159b -2023-06-01 13:08:52.071808 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh}va{j, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-06-01 13:09:04.104529 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh}va{j, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-06-01 13:09:13.064378 + : pb-IF5VU1JZMw== started kick vote for pb-IF4IUGQRHw==. -2023-06-01 13:09:43.064885 + : Kick vote End -2023-06-01 13:09:55.405427 + : pb-IF4cUBYfCg== ip: azo~{m~wo~~oc, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-01 13:14:40.802593 + : pb-IF49VFdbEQ== ip: an~}ifaibzva|n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 13:21:54.738003 + : pb-IF4VVG8gNQ== ip: azo~zi~~hfaihz, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-01 13:22:22.836450 + : pb-IF4jF1NY ip: azj~z`~{vb~m, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-01 13:23:47.129622 + : pb-IF4PV24yPA== ip: an~}hgajcwva{`, Device id: 5bd1087e38783d3d08f01cfce5d36dfbf8440740 -2023-06-01 13:28:12.073001 + : pb-IF4cUBYfCg== ip: azo~{m~wo~~oc, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-01 13:30:40.702583 + : pb-IF48UGY4Bw== ip: a~h~}jeaadai`~, Device id: 73f08758e941b7d7486a8fbda46c528543f89e36 -2023-06-01 13:38:22.539921 + : pb-IF4hVUccIQ== | kicked > reason:Banned account -2023-06-01 13:38:26.564600 + : pb-IF49VFdbEQ== ip: an~}ifaibzva|n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 13:40:40.131862 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-01 13:53:24.076581 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazl~}ie, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-06-01 13:53:59.189418 + : pb-IEZJNk4= ip: a}j~~ncajcva~j, Device id: 160d860f0e64b794a816b192086116bbdd05da59 -2023-06-01 13:54:21.261407 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazl~}ie, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-06-01 13:54:47.370334 + : pb-IF5dU3UiAw== ip: azo~{a~vl~~me, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-01 13:57:04.897837 + : pb-IF49VFdbEQ== ip: an~}ifaibzva|n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 13:59:21.442635 + : pb-IF4rUBIeNQ== ip: azo~|`~}laama, Device id: b92189a15b5b855d7f95ffe94191a12647f1c11f -2023-06-01 13:59:52.554934 + : pb-IF41U0YxAw== ip: azo~{n~}ibaigy, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-01 14:03:14.891425 + : pb-IF49VFdbEQ== ip: an~}ifaibzva|n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 14:03:53.303162 + : pb-IF4TUGJSMg== ip: a}j~zh~}hhajf, Device id: 5b6366838a6db9145967641211c974ddd2beb449 -2023-06-01 14:06:47.022945 + : Server started -2023-06-01 14:06:48.031845 + : pb-IF41U0YxAw== ip: azo~{n~}ibaigy, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-01 14:10:26.848704 + : pb-IF5cU1EPJA== ip: bxvf}vcyvaxk, Device id: 915481e06524551a7d9a9a63039572b9cbba40f9 -2023-06-01 14:15:38.988137 + : pb-IF4TV3RbDA== ip: a}j~~ogamhaie, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-06-01 14:17:52.448993 + : pb-IF49I04z ip: dvvcxvb~a~}hh, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-01 14:19:53.873611 + : pb-IF40Mmsn ip: dvvcxvb~a~}l`, Device id: 5969f9310c6e239b2aaea42ecbb847044cce01fc -2023-06-01 14:23:48.469840 + : pb-IF49I04z started kick vote for pb-IF4VUlJYFg==. -2023-06-01 14:24:17.727479 + : Kick vote End -2023-06-01 14:24:22.793546 + : pb-IF49VFdbEQ== ip: an~}ifaibzva|n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 14:25:04.925831 + : pb-IF4VVG8gNQ== ip: azo~zi~~i`ajd}, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-01 14:27:21.402186 + : pb-IF4VVG8gNQ== ip: azo~zi~~i`ajd}, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-01 14:29:45.628834 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4TV3RbDA==. -2023-06-01 14:29:50.905966 + : pb-IF4TV3RbDA== kicked by kickvotes. -2023-06-01 14:31:06.234979 + : pb-IF49VFQlPA== ip: azo~{m~|l~~k, Device id: d043bc3eac9405dd49f306e5fe61846765dba91e -2023-06-01 14:38:04.739565 + : pb-IF49VFdbEQ== ip: an~}ifaibzva|n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 14:38:28.812448 + : pb-IF49VFdbEQ== ip: an~}ifaibzva|n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 14:40:22.220356 + : pb-IF49VFdbEQ== ip: an~}ifaibzva|n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 14:40:45.287181 + : pb-IF4VVG8gNQ== ip: azo~zi~~i`ajd}, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-01 14:42:27.663751 + : pb-IF4TV3RbDA== ip: a}j~~ogamhaie, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-06-01 14:47:10.727628 + : pb-IF4MUGUlEQ== ip: bj~~oiaadalb, Device id: ee8b2e2f100fd0b8bd4cc060bd1999f1c48ec64d -2023-06-01 14:53:41.226534 + : pb-IF4sAGcj ip: a}j~~oiaofai`|, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-06-01 14:56:18.805860 + : pb-IF4WUBJcVQ== ip: an~}icaj`vvh, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-06-01 14:57:19.014422 + : pb-IF4VU3laVA== ip: ak~~`ca`caja, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-01 15:02:52.253643 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-01 15:11:40.306997 + : pb-IF4BUBAqFQ== ip: a~h~}jda`caig}, Device id: 46fba5803310d98bf16d59cc137894bc5fdff19b -2023-06-01 15:14:49.975447 + : pb-IF4VVG8gNQ== ip: azo~zi~~ieaj`{, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-01 15:24:35.096472 + : pb-IF4oUGYGNA== ip: ak~}leai`zve, Device id: 5f94715e1ae59e2fa9d499799e47194888c6f7d9 -2023-06-01 15:26:35.581638 + : pb-IF41U2scIg== ip: ak~za~xl~~o`, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-01 15:28:09.934517 + : pb-IF4OPhMg ip: an~}jbalbaiex, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-01 15:29:23.167490 + : pb-IF4zUBUlNg== ip: a}j~~`baih{vai, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-01 15:29:54.133234 + : pb-IF4oU3MvAQ== started kick vote for pb-IF4OPhMg. -2023-06-01 15:30:24.133606 + : Kick vote End -2023-06-01 15:30:32.176660 + : pb-IF5UUGtYVA==|| kicked > new account -2023-06-01 15:31:38.923016 + : pb-IF42UGgAFg== ip: azo~|m~zj~ym, Device id: b1c4e980c66609a65682452ea72d2a30d8e94916 -2023-06-01 15:32:03.394870 + : pb-IF4OPhMg started kick vote for pb-IF4iUkUSLA==. -2023-06-01 15:32:33.395671 + : Kick vote End -2023-06-01 15:32:40.190590 + : pb-IF4BU0EsIg== ip: azj~z`~}ihajb, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-06-01 15:37:42.348524 + : pb-IF49VFdbEQ== ip: an~}ifaibzva|n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 15:38:42.565735 + : pb-IF4TUXMJ ip: d}vao~xk~}ia, Device id: 297acb7dcb3a3ea541d7b160584971c8ccbc325f -2023-06-01 15:38:53.613700 + : pb-IF5WUno7PQ== ip: azj~zo~~aeaid|, Device id: 6164a3526ba984be44e85dfeb8283d2a6a9f3534 -2023-06-01 15:41:49.315023 + : pb-IF4VVG8gNQ== ip: azo~zi~~jeam`, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-01 15:43:29.701778 + : pb-IF4cVXlaDQ== ip: ak~~j`aif{vfy, Device id: ce5e2f736e4e516430adfe856033f9b818cd17d6 -2023-06-01 15:44:34.915031 + : pb-IF4RU1kZIQ== ip: bxvexvbzm~}me, Device id: 6e23b27154c718ec5ae8253b9b1ef7ccb439d2a5 -2023-06-01 15:45:58.217423 + : pb-IF4VVG8gNQ== ip: azo~zi~~jeam`, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-01 15:48:46.402227 + : pb-IF4RUkVeDw==|| kicked , for using spoofed id SixtyNine -2023-06-01 15:52:54.060256 + : pb-IF4cVXlaDQ== started kick vote for pb-IF4VVG8gNQ==. -2023-06-01 15:52:54.738480 + : pb-IF5XUkoGDw== ip: dxviaie|vf}, Device id: 28f13e74c66a938e7181be1e72c3c9f925f0833c -2023-06-01 15:53:24.064140 + : Kick vote End -2023-06-01 15:55:24.445023 + : pb-IF4SVFkaCQ== ip: a~l~~jbao`aid, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-06-01 15:55:31.478499 + : pb-IF5QVFMCUg== ip: azo~zi~~acaah, Device id: 3b483075b2023edb95e323dc2cc0d8dc516cae08 -2023-06-01 15:58:29.129804 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-01 16:01:23.762907 + : pb-IF5UUxgjIA== ip: evvhvvgvvf{, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-06-01 16:02:24.582088 + : pb-IF5UUxgjIA== started kick vote for pb-IF4vUGdTVg==. -2023-06-01 16:02:24.987800 + : pb-IF4tNxUh ip: axn~~maambaiay, Device id: 60e4ad03622d0144201fd4c0feee6aa2b1f1aa6d -2023-06-01 16:02:54.588260 + : Kick vote End -2023-06-01 16:03:41.245061 + : pb-IF5UUxgjIA== ip: evvhvvgvvf{, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-06-01 16:04:01.330999 + : pb-IF4cUBYfCg== ip: azo~{m~y`~~hb, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-01 16:04:33.446244 + : pb-IF4MVWY8Jw== ip: a~h~}jdai`vgw, Device id: 9939d436895d3aa06f69d9def32ffa731aee51ab -2023-06-01 16:07:28.022752 + : pb-IF5VVUQkXQ== ip: bxvexvbzi~~kc, Device id: 0b0029880da2faa6bb1928adef7beb997ea45f14 -2023-06-01 16:07:41.057125 + : pb-IF4TV3RbDA== ip: a}j~~ogamhaie, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-06-01 16:09:29.471928 + : pb-IF4sAGcj ip: a}j~~oiaofai`|, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-06-01 16:10:41.694353 + : pb-IF49VFdbEQ== ip: an~}ifaibzva|n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 16:10:47.716187 + : pb-IF49VFdbEQ== ip: an~}ifaibzva|n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 16:12:36.107041 + : pb-IF4LU1gBKA== ip: a|i~vava~~kf, Device id: fdb55d616e3e2ee33266af3ae2e25688b3da0c88 -2023-06-01 16:13:46.398940 + : pb-IF49VFdbEQ== ip: an~}ifaibzva|n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 16:14:07.473760 + : pb-IF5UUxgjIA== ip: evvhvvgvvf{, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-06-01 16:14:32.553691 + : pb-IF5UUxgjIA== ip: evvhvvgvvf{, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-06-01 16:14:46.591636 + : pb-IF5UUxgjIA== ip: azj~z`~xk~}h`, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-06-01 16:16:37.982226 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-01 16:17:27.184290 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG ip: a~o~va~}liaiew, Device id: 822adb43af454f4ce0fdec16028787c26c151d5f -2023-06-01 16:20:32.807903 + : pb-IF5UUxgjIA== ip: evvhvvgvvf{, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-06-01 16:20:57.887535 + : pb-IF5UUxgjIA== ip: evvhvvgvvf{, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-06-01 16:21:20.964096 + : pb-IF5UUxgjIA== ip: azj~z`~xk~}h`, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-06-01 16:24:31.751888 + : pb-IF4NUxFfEg== ip: dvvcyvbxvb~l, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-06-01 16:28:08.589708 + : pb-IF4cUBYfCg== ip: azo~{m~y`~~hb, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-01 16:28:18.614794 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-01 16:28:55.094455 + : pb-IF4NUxFfEg== started kick vote for pb-IF4vUGdTVg==. -2023-06-01 16:29:20.972559 + : pb-IF4vUGdTVg== kicked by kickvotes. -2023-06-01 16:31:45.572546 + : pb-IF5UUxgjIA== ip: azj~z`~xj~{o, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-06-01 16:32:40.768664 + : pb-IF4sAGcj ip: a}j~~oiaofai`|, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-06-01 16:35:14.409762 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-06-01 16:36:21.674262 + : pb-IF4cUBYfCg== ip: azo~{m~y`~~hb, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-01 16:37:12.878924 + : pb-IF4gU0wxBw== ip: ak~za~xl~~o`, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-06-01 16:40:22.869588 + : pb-IF4wU1MPEg== started kick vote for pb-IF4rUGddCA==. -2023-06-01 16:40:52.870442 + : Kick vote End -2023-06-01 16:42:33.006831 + : pb-IF41U2scIg== ip: an~}i`ajc{va~n, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-01 16:44:33.443570 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG ip: a~o~va~}liaiew, Device id: 822adb43af454f4ce0fdec16028787c26c151d5f -2023-06-01 16:49:24.846595 + : pb-IF4hVUccIQ== | kicked > reason:Banned account -2023-06-01 16:52:30.547633 + : pb-IF5dU3UiAw== ip: azo~{a~wh~{, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-01 16:56:20.856542 + : pb-IF4gU0wxBw== started kick vote for pb-JiNJARBZVkVJXVxGFEZZVFNKEUBdQFJH. -2023-06-01 16:56:31.947671 + : pb-JiNJARBZVkVJXVxGFEZZVFNKEUBdQFJH kicked by kickvotes. -2023-06-01 16:57:28.253210 + : pb-IF5dUGglAw== started kick vote for pb-IF5UUxgjIA==. -2023-06-01 16:57:58.257402 + : Kick vote End -2023-06-01 16:59:07.638811 + : pb-IF5UUxheIg== ip: azo~|a~ya~wn, Device id: c6e45fd1c978810e560b5acf6165aaf8e789fb21 -2023-06-01 17:06:06.641569 + : pb-IF4OUBY-HA== ip: a|j~~mdam~}ic, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-06-01 17:06:13.668978 + : pb-IF4cUBYfCg== ip: azo~{m~w`~, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-01 17:10:15.607528 + : pb-IF4IUGQRHw== ip: azo~{n~~mgajcz, Device id: 75b42d0e6532c03c0a60bb7c5238043a93288156 -2023-06-01 17:13:51.634722 + : pb-IF49VFdbEQ== ip: an~}ifaibzva|n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 17:13:52.098656 + : pb-IF4OUBY-HA== started kick vote for pb-IF4IUGQRHw==. -2023-06-01 17:14:01.869772 + : Kick vote End -2023-06-01 17:19:30.044039 + : pb-IF5UUxgjIA== ip: evvhvvgvvf{, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-06-01 17:22:19.695587 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-01 17:23:51.047072 + : pb-IF4SVFkaCQ== ip: a~l~~jbai`zvcw, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-06-01 17:27:35.125989 + : pb-IF4MUk0CEg== ip: an~~afaidaoe, Device id: 7174b911724927259e55686521c8c22eddc6edbe -2023-06-01 17:31:04.002755 + : pb-IF4yUGYGAw== ip: b}k~}kaaid{vb~n, Device id: 7dc4e200f2f64ef666440b6a7a04ac9a843cd427 -2023-06-01 17:31:22.669179 + : pb-IF4DUGkyNQ==|| kicked > new account -2023-06-01 17:31:43.129194 + : pb-IF4qUBkYDg== ip: a}j~~nhaifwvb}j, Device id: 0566b8693fb2033765aa5987fdb4ddb6e70de446 -2023-06-01 17:41:57.539557 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG ip: a~o~va~}liaiew, Device id: 822adb43af454f4ce0fdec16028787c26c151d5f -2023-06-01 17:44:33.064672 + : pb-IF4SVFkaCQ== ip: a~l~~jbai`zvcw, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-06-01 17:44:59.159335 + : pb-IF5cVXEyAA== ip: azo~zi~~ofalg, Device id: e6b53718b2c1114495bc863e14c06b012d31bd72 -2023-06-01 17:45:34.310098 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-06-01 17:46:40.553901 + : pb-IF4cUBYfCg== ip: azo~{m~xk~vl, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-01 17:47:24.251089 + : pb-IF5cVXEyAA== started kick vote for pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG. -2023-06-01 17:47:54.252665 + : Kick vote End -2023-06-01 17:48:35.371732 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-06-01 17:48:47.408059 + : pb-IF4rV3cFEg== ip: ak~~l~~jiaic{, Device id: 8fc30db451300fc1018f625ac62e7aae76bd6f51 -2023-06-01 17:51:38.007043 + : pb-IF4cUBYfCg== ip: azo~{m~xk~vl, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-01 17:51:52.050200 + : pb-IF4BU0EsIg== ip: azj~z`~}ihame, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-06-01 17:52:15.136977 + : pb-IF41U2scIg== ip: an~}i`ajc{va~n, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-01 17:52:47.282978 + : pb-IF4BU0EsIg== ip: azj~z`~}ihame, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-06-01 17:56:56.244414 + : pb-IF4FUGdaPw== ip: ak~~neaoaang, Device id: dc573c74329c1aeab807a04ee7f891c262e33b6b -2023-06-01 17:59:34.846678 + : pb-IF4vU0MENg== ip: a~h~}jeai`{va|m, Device id: 6382f3717c6ac3650740a14e9d6ab4b67728a26a -2023-06-01 17:59:43.885357 + : pb-IF5UVWEBPw== ip: b}k~~`gaib|vg}, Device id: 0dd14e3f7f50647af8557d65a1b557e2174ba7fe -2023-06-01 18:04:15.024891 + : pb-IF4SVFkaCQ== ip: a~l~~jbai`zvcw, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-06-01 18:05:53.384171 + : pb-IF4SVFkaCQ== ip: a~l~~jbai`zvcw, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-06-01 18:06:02.417595 + : pb-IF4SVFkaCQ== ip: a~l~~jbai`zvcw, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-06-01 18:13:17.058601 + : pb-IF4OU1IqUA== ip: azo~{i~}meajbw, Device id: 590990a577c343db217ea3c90b59a42b89f2d118 -2023-06-01 18:14:55.452292 + : pb-IF41U2scIg== ip: an~}i`ajc{va~n, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-01 18:15:46.642177 + : pb-IF4WUGczMQ== ip: ak~~aeaj`}vazm, Device id: 220753c5a30bbc77c9dcec749d67d633217addb4 -2023-06-01 18:27:18.587988 + : pb-IF5QUngkKg== ip: b~h~~n~wm~~lb, Device id: 40e2fe92f55d08768534f7ebfdcc0c70d217fa97 -2023-06-01 18:28:13.806508 + : pb-IF4OU3E4NA== ip: an~}i`ai`vb|l, Device id: a95c24cffdb10f382dc1eb9d917b4dd23d57e344 -2023-06-01 18:28:23.838941 + : pb-IF4OU3E4NA== ip: an~}i`ai`vb|l, Device id: a95c24cffdb10f382dc1eb9d917b4dd23d57e344 -2023-06-01 18:28:28.860962 + : pb-IF49VFdbEQ== ip: an~}ifaiavva{`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 18:32:56.825030 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-01 18:37:14.428930 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-06-01 18:40:42.709482 + : pb-IF4PU2Y6VQ== ip: a~h~}jfaigvva~n, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-06-01 18:41:06.795769 + : pb-IF4LU0wKIw== ip: azj~zo~}hhaia~, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-06-01 18:42:27.079749 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-01 18:44:21.506868 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-01 18:46:28.874232 + : pb-IF4sAGcj ip: a}j~~oiaofai`|, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-06-01 18:49:07.759417 + : pb-IF4IU28qPA== ip: azo~zi~w`~wk, Device id: 2b676771bfc1043a69989576d24e1194aec0a626 -2023-06-01 18:56:28.112077 + : pb-IF49VFdbEQ== ip: an~}ifaiavva{`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 19:03:55.777986 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-01 19:04:11.842461 + : pb-IF49VFdbEQ== ip: an~}ifaiavva{`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 19:04:42.953737 + : pb-IF4VUlcBVQ== ip: azj~z`~~`eai`|, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-06-01 19:06:05.556050 + : pb-IF4VUlcBVQ== ip: azj~z`~~`eai`|, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-06-01 19:07:50.230359 + : pb-IF4TUXMJ ip: d}vao~xk~}ia, Device id: 297acb7dcb3a3ea541d7b160584971c8ccbc325f -2023-06-01 19:08:31.405135 + : pb-IF4oUlE_Vg== ip: an~}ifajd}vc|, Device id: 73923559526b6a85d9ccbd5c34e2684fead98327 -2023-06-01 19:13:43.487842 + : pb-IF4LU0wKIw== ip: azj~zo~}hhaia~, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-06-01 19:13:46.503932 + : pb-IF4WUBJcVQ== ip: ayk~zk~~oiaof, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-06-01 19:15:40.226982 + : pb-IF4WUGczMQ== ip: ak~~aeaj`}vazm, Device id: 220753c5a30bbc77c9dcec749d67d633217addb4 -2023-06-01 19:15:55.315879 + : pb-IF49VFdbEQ== ip: an~}hfaj`}vb`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-01 19:16:09.360980 + : pb-IF4IU28qPA== ip: azo~zi~w`~wk, Device id: 2b676771bfc1043a69989576d24e1194aec0a626 -2023-06-01 19:20:05.193351 + : pb-IF4VU3laVA== ip: ak~~`dajcwvb{k, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-01 19:20:20.251000 + : pb-IF49I04z ip: a~h~}jdaacaigw, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-01 19:20:34.286895 + : pb-IF4VU3laVA== ip: ak~~`dajcwvb{k, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-01 19:21:31.515410 + : pb-IF4VU3laVA== ip: ak~~`dajcwvb{k, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-01 19:21:32.521466 + : pb-IF4IV04ZKw== | kicked > reason:Banned account -2023-06-01 19:23:37.007223 + : pb-IF4VU3laVA== ip: ak~~`dajcwvb{k, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-01 19:23:58.101035 + : pb-IF4jU2gAEg== ip: dvvbm~va~~aa, Device id: 8e2eb965578d7898efa86a0fed19362451c05bea -2023-06-01 19:28:34.104680 + : pb-IF5UUGoPAA== ip: ak~~nbaiivvaxl, Device id: 4aa5340dc9298b6b607e20009ed1708f71faf53e -2023-06-01 19:29:38.334890 + : pb-IF5WU2EINA== ip: ak~|n~wj~, Device id: 6f773577cdf5db224962c9a6cbbde3b0d89f7fe7 -2023-06-01 19:31:11.686010 + : pb-IF4VU3laVA== ip: ak~~`dajcwvb{k, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-01 19:36:09.325125 + : pb-IF4lUxMSHw== ip: ak~~`dajcwvb{k, Device id: 9697e7eb450fece0abe0f3d8adce316e47d4153b -2023-06-01 19:36:10.014769 + : pb-IF4lUxMSHw==|| kicked , for using spoofed id dogee -2023-06-01 19:38:51.936165 + : pb-IF41U2scIg== ip: ak~za~xl~~o`, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-06-01 19:39:49.146986 + : pb-IF4gV1gyDw== ip: an~}j`aje|van, Device id: 34cdc0e86f97f5d780990111a14200613c5ffbbf -2023-06-01 19:39:53.553882 + : kicked Omiii15 -2023-06-01 19:43:39.313668 + : pb-IF49I04z started kick vote for pb-IF4DUGUuVg==. -2023-06-01 19:43:47.775497 + : pb-IF4DUGUuVg== kicked by kickvotes. -2023-06-01 19:45:08.878070 + : pb-IF5VU1JZMw== ip: an~}ica`fajc}, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-01 19:45:34.432098 + : pb-IF49I04z started kick vote for pb-IF5VU1JZMw==. -2023-06-01 19:45:37.301084 + : pb-IF5VU1JZMw== kicked by kickvotes. -2023-06-01 19:47:08.274816 + : pb-IF4VU3EjBg== ip: azj~z`~|l~~ob, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-06-01 19:47:17.817836 + : pb-IF49I04z started kick vote for pb-IF4VU3EjBg==. -2023-06-01 19:47:23.054997 + : pb-IF4VU3EjBg== kicked by kickvotes. -2023-06-01 19:48:49.276759 + : pb-IF4cUBYfCg== ip: azo~{m~xi~~hf, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-01 19:49:11.141475 + : pb-IF49I04z started kick vote for pb-IF4cUBYfCg==. -2023-06-01 19:49:15.574082 + : pb-IF4cUBYfCg== kicked by kickvotes. -2023-06-01 19:54:03.429406 + : pb-IF4tNxUh ip: axn~~maambaiay, Device id: 60e4ad03622d0144201fd4c0feee6aa2b1f1aa6d -2023-06-01 19:54:45.898312 + : pb-IF49I04z started kick vote for pb-IF4tNxUh. -2023-06-01 19:54:49.674231 + : pb-IF4LU00BBw== ip: dvvc}vay`~}kg, Device id: 9fede22d5000d60dc3f486fe9b07fc30abf5a125 -2023-06-01 19:55:15.898953 + : Kick vote End -2023-06-01 19:56:24.026244 + : pb-IF41U2scIg== ip: ak~za~xl~~o`, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-06-01 19:57:45.329134 + : pb-IF49VFQlPA== ip: azo~{m~yi~~ji, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-06-01 19:58:24.564626 + : pb-IF41U2scIg== ip: ak~za~xl~~o`, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-06-01 19:59:22.228717 + : pb-IF4LU00BBw== ip: dvvc}vay`~}kg, Device id: 9fede22d5000d60dc3f486fe9b07fc30abf5a125 -2023-06-01 20:01:11.667298 + : pb-IF4XUGMiVQ== ip: axi~{a~}jhajb}, Device id: 72fb8ed686d6298222d54620ed0c195da2a473c3 -2023-06-01 20:01:22.707504 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-01 20:04:01.284773 + : pb-IF40UBISLQ== ip: a~h~}jganbaie, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-06-01 20:04:28.376145 + : pb-IF49I04z ip: a~h~}jda`caigw, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-01 20:05:03.486985 + : pb-IF41U2scIg== ip: ak~za~xl~~o`, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-06-01 20:11:51.204665 + : Server started -2023-06-01 20:11:52.213300 + : pb-IF40UBISLQ== ip: a~h~}jganbaie, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-06-01 20:11:52.213423 + : pb-IF4rVUUjMg== ip: a~i~vj~wi~~`e, Device id: cc8f3b84fada81607e03723b7e60adb24422d6ef -2023-06-01 20:11:53.283930 + : pb-IF4KUklYNg== ip: a}j~zh~}hfajb, Device id: 1cd64da7fc033c517b750ac999935353bad56eb8 -2023-06-01 20:11:53.284033 + : pb-IF4cUBYfCg== ip: azo~{m~xk~}hc, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-01 20:12:20.304562 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-06-01 20:13:15.528534 + : pb-IF4cUBYfCg== ip: azo~{m~xk~}hc, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-01 20:17:08.343440 + : pb-IF4dU1IOKQ== ip: an~}ifajcvvb|h, Device id: 0ea8bbe6ad0e9c005407166ad37923d1f241be41 -2023-06-01 20:20:20.995425 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-06-01 20:22:03.335823 + : pb-IF4JUBEGVw== ip: a~o~}ica`gaiez, Device id: 212d9269cda0f167ca66af20d000a518872a892e -2023-06-01 20:22:16.377027 + : pb-IF4sAGcj ip: a}j~~oiaofai`|, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-06-01 20:22:19.394951 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh}va{j, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-06-01 20:23:37.748252 + : pb-IF4rVUUjMg== ip: a~i~vj~wi~~`e, Device id: cc8f3b84fada81607e03723b7e60adb24422d6ef -2023-06-01 20:24:12.861955 + : pb-IF4IUGQRHw== ip: azo~{n~~ldald, Device id: 75b42d0e6532c03c0a60bb7c5238043a93288156 -2023-06-01 20:25:36.184350 + : pb-IF4rVUoqVA== ip: ak~~ogaje}vao, Device id: d77239b78a9b623ee0e3792be0b3dd62ae182ca1 -2023-06-01 20:26:15.313832 + : pb-IF4vUkRaEg== ip: azo~{i~}leaj`}, Device id: 6394b4f26b00e3f44dd52eaaa8b9d296c742e56a -2023-06-01 20:26:24.353103 + : pb-IF4dVUwMKQ== ip: a|o~vo~~h`aif|, Device id: 042adf53a235df6a5b9abacc091864fc5f0e0a68 -2023-06-01 20:30:38.574035 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF4rVUoqVA==. -2023-06-01 20:30:44.254376 + : pb-IF4uU0YhHA== ip: azo~{m~}hcaj`v, Device id: 9a64711cf529ee878368683500782e8040c2b40b -2023-06-01 20:30:49.273413 + : pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA ip: an~~afajhaiix, Device id: 936c205c0c65262d62300105d4329a28095c9790 -2023-06-01 20:31:08.580001 + : Kick vote End -2023-06-01 20:31:54.497996 + : pb-IF49VFQlPA== ip: azo~{m~yi~~ji, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-06-01 20:32:56.745459 + : pb-IF5QU1EMXA== ip: an~}hgakaala, Device id: 756e17bc52d6f3915f82e19e4ec066b70b0e0718 -2023-06-01 20:37:59.056672 + : pb-IF4qUGkkCw==|| kicked > new account -2023-06-01 20:44:14.021628 + : pb-IF5QU1EMXA== ip: an~}hgakaala, Device id: 756e17bc52d6f3915f82e19e4ec066b70b0e0718 -2023-06-01 20:51:01.661545 + : pb-IF4sAGcj ip: a}j~~oiaofai`|, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-06-01 20:53:17.317405 + : pb-IF4sUGMeVA== ip: dvvcyvaa~{h, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-06-01 20:57:51.318563 + : pb-IF4lUxMSHw== ip: ak~~`dajcwvb{k, Device id: 9697e7eb450fece0abe0f3d8adce316e47d4153b -2023-06-01 20:58:19.456351 + : pb-IF4LUGYKPw== ip: a~n~}hfak`akg, Device id: 6afd5a128c0a5a36176d7b5d5cb6f2d966270775 -2023-06-01 21:01:39.217937 + : pb-IF49U0QJDw== ip: dvvcxva~o~}ha, Device id: 52e159e6debf4b869cb6bd30a26e268c72ceab36 -2023-06-01 21:04:10.757743 + : pb-IF4OU2QjMQ== ip: a~h~}jgaidamc, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-06-01 21:05:01.925754 + : pb-IF4OU2QjMQ== ip: a~h~}jgaidamc, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-06-01 21:06:17.217174 + : pb-IF5dUGglAw== ip: azo~|m~z`~~ka, Device id: 064c60d9855d30b53be59aeb5dc7fdb93aa962b3 -2023-06-01 21:07:23.519974 + : pb-IF4VU3EjBg== ip: azj~z`~|l~~ob, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-06-01 21:09:40.095080 + : pb-IF5dUGglAw== ip: azo~|m~z`~~ka, Device id: 064c60d9855d30b53be59aeb5dc7fdb93aa962b3 -2023-06-01 21:13:18.025271 + : pb-IF49UBEhJA== ip: azo~|j~|k~zi, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-06-01 21:16:42.888416 + : pb-IF5dUGglAw== ip: azo~|m~z`~~ka, Device id: 064c60d9855d30b53be59aeb5dc7fdb93aa962b3 -2023-06-01 21:23:28.491191 + : pb-IF4VVG8gNQ== ip: azo~zi~~jfaib{, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-01 21:23:42.538780 + : pb-IF41VWJcLA== ip: b}k~}kca`daad, Device id: 622d7c2101c8beb358f52c1255e233b5b54eab40 -2023-06-01 21:29:45.873183 + : pb-IF41VWJcLA== ip: b}k~}kca`daad, Device id: 622d7c2101c8beb358f52c1255e233b5b54eab40 -2023-06-01 21:32:55.585416 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB ip: b}k~~ohaja~vaxh, Device id: 78c06b4d948c8b6425fd95b584f9c5243e2bfa5b -2023-06-01 21:32:57.593875 + : pb-IF4TUxEoKg== ip: b}k~~ohaidwvey, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-06-01 21:33:05.635221 + : pb-IF5SUGYeMw== ip: b}k~~`faiavvb{n, Device id: ddec8b1ebe6d12553e57a5c80bf0a2a6edff1887 -2023-06-01 21:33:19.684701 + : pb-IF49UBEhJA== ip: azo~|j~|k~~ah, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-06-01 21:38:14.747475 + : pb-IF4IU28qPA== ip: azo~zi~ym~~ie, Device id: 2b676771bfc1043a69989576d24e1194aec0a626 -2023-06-01 21:39:54.124868 + : pb-IF4VVG8gNQ== ip: azo~zi~~jfaib{, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-01 21:42:35.842901 + : pb-IF4qUlNfEQ== ip: d~va`~~`gajby, Device id: 95696fe42d18b0811a5f71f461306f30baad87a9 -2023-06-01 21:42:36.850315 + : pb-IF4JU0oMKQ== ip: d~va`~~`gajby, Device id: 4839f84b673f52a5f58a6d73e5797e27172a0a6b -2023-06-01 21:42:47.891861 + : pb-IF4AVVAIUg== ip: ak~}keah~~a, Device id: d6c860d19037c73e01dd843ef300a37b6c7357bd -2023-06-01 21:44:53.696962 + : pb-IF4OUBY-HA== ip: a|j~~mdameaibw, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-06-01 21:45:49.913836 + : pb-IF4MUk0CEg== ip: b}k~}kgaia~va~`, Device id: 7174b911724927259e55686521c8c22eddc6edbe -2023-06-01 21:46:24.054588 + : pb-IF4MUk0CEg== ip: b}k~}kgaia~va~`, Device id: 7174b911724927259e55686521c8c22eddc6edbe -2023-06-01 21:46:45.121102 + : pb-IF4AVVAIUg== ip: ak~}keah~~a, Device id: d6c860d19037c73e01dd843ef300a37b6c7357bd -2023-06-01 21:47:35.296437 + : pb-IF4LU0wKIw== ip: azj~zo~}j`alh, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-06-01 21:48:23.489767 + : pb-IF4VU3laVA== ip: ak~~`dajcwvb{k, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-01 21:49:13.842055 + : pb-IF4MUk0CEg== ip: b}k~}kgaia~va~`, Device id: 7174b911724927259e55686521c8c22eddc6edbe -2023-06-01 21:49:26.890185 + : pb-IF4MUk0CEg== ip: b}k~}kgaia~va~`, Device id: 7174b911724927259e55686521c8c22eddc6edbe -2023-06-01 21:57:05.603290 + : pb-IF5WU1QJFA== ip: azo~|`~vl~~k, Device id: 4a8a384698658621fce88e219c1c5bd3c01f6e7a -2023-06-01 21:57:16.633175 + : pb-LV4FBEJZARZDVAtARUYDAl0WFw== ip: aajcaif{viw, Device id: 93445d06602f2e994c325788e09b460cc4ce96ad -2023-06-01 21:57:34.678733 + : pb-IF4VUlcBVQ== ip: azj~z`~~mdaie, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-06-01 21:58:59.951040 + : pb-IF40PkMh ip: aakhaifxvaz, Device id: a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e -2023-06-01 22:02:49.781034 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-06-01 22:06:58.764360 + : pb-IF5WU0oEVA== ip: b}k~~`faj`xva`, Device id: 7726761c74258fa202b5617c1c62d3c0b558d584 -2023-06-01 22:07:07.792000 + : pb-IF4IVFkKNA== ip: an~~adaoba``, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-01 22:07:15.813161 + : pb-IF5WU0oEVA== ip: b}k~~`faj`xva`, Device id: 7726761c74258fa202b5617c1c62d3c0b558d584 -2023-06-01 22:09:12.256966 + : pb-IF4gUksyMQ== ip: an~}iaaie{vc}, Device id: b0ef821c8b60e5fcf4bad99d322e2a9451de48ac -2023-06-01 22:10:04.572956 + : pb-IF4VU3laVA== started kick vote for pb-IF4HUkwY. -2023-06-01 22:10:17.397421 + : pb-IF4HUkwY kicked by kickvotes. -2023-06-01 22:10:27.559881 + : pb-IF40UGEgBw== ip: dvvc|vb}h~~k`, Device id: e140541d1f08b6936e96c7b2608318ec9b7107e3 -2023-06-01 22:12:12.916736 + : pb-IF5WU1QJFA== ip: azo~|`~vl~~k, Device id: 4a8a384698658621fce88e219c1c5bd3c01f6e7a -2023-06-01 22:13:48.234085 + : pb-IF4IVFkKNA== ip: an~~adaoba``, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-01 22:14:04.276736 + : pb-IF5WU1QJFA== ip: azo~|`~vl~~k, Device id: 4a8a384698658621fce88e219c1c5bd3c01f6e7a -2023-06-01 22:15:48.522298 + : pb-IF4VU3laVA== started kick vote for pb-IF40UGEgBw==. -2023-06-01 22:16:13.680949 + : pb-IF40UGEgBw== kicked by kickvotes. -2023-06-01 22:18:29.324293 + : pb-IF40PkMh ip: aakhaifxvaz, Device id: a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e -2023-06-01 22:19:16.480207 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh}va{j, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-06-01 22:20:05.626668 + : pb-IF40UncaLg== ip: bj~~kdaidvvb{n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-01 22:21:14.122208 + : pb-IF4VUlcBVQ== started kick vote for pb-IF40PkMh. -2023-06-01 22:21:44.124302 + : Kick vote End -2023-06-01 22:22:29.093365 + : pb-IF4FD1c8 ip: azo~{n~~jcaid, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-06-01 22:25:18.783083 + : pb-IF49VFQlPA== ip: azo~{m~yi~~ji, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-06-01 22:28:35.664959 + : pb-IF5QU1EMXA== ip: an~}hgakaala, Device id: 756e17bc52d6f3915f82e19e4ec066b70b0e0718 -2023-06-01 22:36:04.077124 + : pb-IF4gUksyMQ== ip: an~}iaaie{vc}, Device id: b0ef821c8b60e5fcf4bad99d322e2a9451de48ac -2023-06-01 22:40:20.416881 + : pb-IF4WUGQyPA== ip: ak~~oea`iai`w, Device id: 065cb87de02fe47b0ba32c0622eaefd3d8090768 -2023-06-01 22:40:22.420484 + : pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA ip: dvvbo~~aeai`w, Device id: 936c205c0c65262d62300105d4329a28095c9790 -2023-06-01 22:42:04.770855 + : pb-IF4VU3EjBg== ip: azj~z`~|l~~`g, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-06-01 22:44:09.417098 + : pb-IF4WUGQyPA== ip: ak~~oea`iai`w, Device id: 065cb87de02fe47b0ba32c0622eaefd3d8090768 -2023-06-01 22:49:29.590736 + : pb-IF4XU0gNJg== ip: ak~vh~~`aaigx, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-01 22:52:51.456844 + : pb-IF4LU1gBKA== ip: a|i~vava~{h, Device id: fdb55d616e3e2ee33266af3ae2e25688b3da0c88 -2023-06-01 22:54:11.706366 + : pb-JiNJARBZVkVJXVxGFEZZVFNKEUBdQFJH ip: cyvbzj~}ifaja{, Device id: 41e1a4148abb3ef79ed8f4f40a0f88751fbcf6ed -2023-06-01 22:57:01.295687 + : pb-IF40UncaLg== ip: bj~~kdaidvvb{n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-01 22:57:02.876705 + : pb-IF4VUGlSXA==|| kicked > new account -2023-06-01 22:57:09.206747 + : pb-IF4LU1gBKA== started kick vote for pb-IF4OUGU5LA==. -2023-06-01 22:57:33.087869 + : Kick vote End -2023-06-01 23:01:34.322702 + : pb-IF4XU0gNJg== ip: ak~vh~~`aaigx, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-01 23:03:27.714183 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh}va{j, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-06-01 23:09:20.536199 + : pb-IF4IVFkKNA== ip: an~~adaoba``, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-01 23:12:45.373177 + : pb-IF4IVFkKNA== ip: an~~adaoba``, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-01 23:15:41.173393 + : pb-IF4OPhMg ip: an~~adaniand, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-01 23:16:29.349266 + : pb-IF4HVHpcFQ== ip: dvvcyvavb}i, Device id: 722099821f2d7b77a509edac87bacc7f8a830939 -2023-06-01 23:16:36.371551 + : pb-IF4PU2Y6VQ== ip: a~h~}jfaigvva~n, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-06-01 23:21:21.823556 + : pb-IF4XU0gNJg== ip: ak~vh~~`aaigx, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-01 23:21:59.951217 + : pb-IF40UncaLg== ip: bj~~kdaidvvb{n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-01 23:22:30.080815 + : pb-IF4vVRUFVA== | kicked > reason:Banned account -2023-06-01 23:22:40.116678 + : pb-IF4VVG8gNQ== ip: azo~zi~~hgaia|, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-01 23:25:57.828700 + : pb-IF40UncaLg== ip: dvvc|vb~m~zk, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-01 23:26:03.060876 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB started kick vote for pb-IF4PU2Y6VQ==. -2023-06-01 23:26:10.892216 + : Kick vote End -2023-06-01 23:29:53.718434 + : pb-IF40UncaLg== ip: dvvc|vb~m~zk, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-01 23:39:23.213619 + : pb-IF4MU08lCQ== started kick vote for pb-JiNJARBZVkVJXVxGFEZZVFNKEUBdQFJH. -2023-06-01 23:39:53.218953 + : Kick vote End -2023-06-01 23:41:10.989478 + : pb-IF4XU0gNJg== ip: ak~vh~~`aaigx, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-01 23:45:52.352049 + : pb-IF4KUm0NMg== ip: azo~{a~~`gajb}, Device id: eedc2f3148aff557346effdd436cd5e750b20a6e -2023-06-01 23:49:33.238563 + : pb-IF4rUxU7Cg== ip: awk~wj~}heaii|, Device id: 8718c25d05ff0a9b6784cd4e384a2c85ce172283 -2023-06-01 23:53:38.160460 + : pb-IF4qUxBfAw== ip: dxviakdajcv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-01 23:54:38.375141 + : pb-IF4qUxBfAw== ip: dxviakdajcv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-01 23:57:01.251502 + : pb-IF4QU0IbNg== ip: dvvcxvb~m~{`, Device id: f2f972d5b08b11c21433fdc2935fcbdede9bad0c -2023-06-02 00:00:06.893016 + : pb-IF4qUxBfAw== ip: dxviakdajcv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 00:02:23.339385 + : pb-IF4qUxBfAw== ip: dxviakdajcv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 00:07:21.271772 + : pb-IF4qUxBfAw== ip: dxviakdajcv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 00:08:02.436642 + : pb-IF4OPhMg ip: an~~adaniaoe, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-02 00:10:46.037307 + : pb-IF4xUnQNVA== ip: dvvc{vavi~~j, Device id: 477a46d48ec2c3a3ed0c4fb1e42c2d889ad8233f -2023-06-02 00:22:19.125987 + : pb-IF4JUGEhIg== ip: ak~yn~}icak`, Device id: dd881e7318994157e7842ec63bf959e8efc4c846 -2023-06-02 00:23:29.429533 + : pb-JiNJARBeV0BIXVdCFUVZUldDFEZeRVFK ip: azo~|l~~mfakg, Device id: b4bba64d343199bbea6c806ca0e6b13ed1402636 -2023-06-02 00:23:33.453402 + : pb-IF5QU3AaLg== ip: azo~|j~~i~~hh, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-06-02 00:24:32.334584 + : pb-IF5QU3AaLg== ip: azo~|j~~i~~hh, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-06-02 00:25:47.597650 + : pb-IF5QU3AaLg== ip: dvvc{vfvvdy, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-06-02 00:30:06.741378 + : pb-IF4JUGEhIg== ip: ak~yn~}icak`, Device id: dd881e7318994157e7842ec63bf959e8efc4c846 -2023-06-02 00:34:44.437152 + : pb-IF4jF1NY ip: azj~z`~zl~}ka, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-02 00:53:13.399656 + : pb-IF4HUGEHDg== ip: a~i~~jeajbxvawn, Device id: ed40eb4dbcdfac94b35b84a7486d1a3c4b3ebec6 -2023-06-02 00:56:47.624667 + : pb-IF49VFQlPA== ip: azo~{m~yi~~ji, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-06-02 00:57:43.806214 + : pb-IF4LU1gBKA== ip: a|i~vava~{h, Device id: fdb55d616e3e2ee33266af3ae2e25688b3da0c88 -2023-06-02 00:58:17.932538 + : pb-IF41U2scIg== ip: an~}h`aiawvg, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-02 00:59:32.185249 + : pb-IF4mVU0oUw== ip: azj~z`~~o~~nh, Device id: 10439a1bbc0d71386990fa3344930533a157a138 -2023-06-02 01:04:31.220184 + : pb-IF5cPGsk ip: ak~xi~~adami, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-06-02 01:08:47.570895 + : pb-IF4HUGEHDg== ip: a~i~~jeajbxvawn, Device id: ed40eb4dbcdfac94b35b84a7486d1a3c4b3ebec6 -2023-06-02 01:09:17.917299 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB started kick vote for pb-IF4LU1gBKA==. -2023-06-02 01:09:47.918049 + : Kick vote End -2023-06-02 03:11:56.150803 + : Server started -2023-06-02 04:28:35.928153 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 04:49:46.844217 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 05:10:42.705254 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 05:31:53.650694 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 06:35:42.800539 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 07:38:28.547117 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 07:55:48.514872 + : pb-IF4wV24HBw== ip: an~~acaja{vay, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-06-02 08:10:27.886265 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-02 08:16:01.705216 + : pb-IF4WUBJcVQ== ip: ayk~zk~~oiaof, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-06-02 08:26:29.178742 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-02 08:36:46.443471 + : pb-IF4VVG8gNQ== ip: azo~zi~~hhaiax, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-02 08:39:04.937986 + : pb-IF4PU2Y6VQ== ip: a~h~}jfaigvva~n, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-06-02 08:39:16.198886 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4PU2Y6VQ==. -2023-06-02 08:39:38.381513 + : Kick vote End -2023-06-02 08:40:29.213994 + : pb-IF4PU2Y6VQ== ip: a~h~}jfaigvva~n, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-06-02 08:43:47.985164 + : pb-IF4cUBYfCg== ip: azo~{m~wk~}lh, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-02 08:44:21.119347 + : pb-IF4VVG8gNQ== ip: azo~zi~~hhaiax, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-02 08:48:37.000481 + : pb-IF49VFdbEQ== ip: an~}hfaj`yva}l, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 09:02:01.933271 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 09:03:53.397718 + : pb-IF4VVG8gNQ== ip: azo~zi~~hhaiax, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-02 09:10:51.950596 + : pb-IF4qUxBfAw== ip: dxviakdaoi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 09:22:45.699209 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 09:45:18.228280 + : pb-IF4jUGkeBg==|| kicked > new account -2023-06-02 10:10:56.849371 + : Server started -2023-06-02 10:17:50.333264 + : pb-IF5dU3UiAw== ip: azo~{a~vi~~oc, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-02 10:23:39.708838 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 10:36:54.513905 + : pb-IF5RVVMMIw== ip: b}k~~ofakbajb, Device id: 2f813377170f808596cad6fba67ecc73ae310b13 -2023-06-02 10:42:40.686831 + : pb-IF4qUxBfAw== ip: dxviakdajd, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 10:43:27.832953 + : pb-IF4qUxBfAw== ip: dxviakdajd, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 10:43:58.954854 + : pb-IF4vVRUFVA== | kicked > reason:Banned account -2023-06-02 10:44:17.022759 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 10:45:23.275419 + : pb-IF4OU2QjMQ== ip: a~h~}jgaidamc, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-06-02 10:49:03.071109 + : pb-IF49UBEhJA== ip: azo~|j~|k~~kh, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-06-02 10:52:26.948860 + : pb-IF4qUxBfAw== ip: dxviakdajd, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 10:52:34.971417 + : pb-IF4qUxBfAw== ip: dxviakdajd, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 10:55:58.796351 + : pb-IF4cUBYfCg== ip: azo~{m~wm~~jg, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-02 10:56:30.884220 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-02 10:56:32.885863 + : pb-IF4qUxBfAw== ip: dxviakdajd, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 10:57:08.056724 + : pb-IF4qUxBfAw== ip: dxviakdajd, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 11:00:34.865742 + : pb-IF4qUxBfAw== ip: dxviakdajd, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 11:00:53.932029 + : pb-IF4cUBYfCg== ip: azo~{m~wm~~jg, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-02 11:02:46.339467 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG ip: a~o~va~}lgaib, Device id: 822adb43af454f4ce0fdec16028787c26c151d5f -2023-06-02 11:04:46.796664 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 11:10:29.129776 + : pb-IF4LU1RdUg== ip: azo~{m~|o~}ji, Device id: 013ebdc40cb805919e389d339fe790db1aeaa296 -2023-06-02 11:13:52.858054 + : pb-IF40U1InIQ== ip: dxvc~vawo~}jc, Device id: 4e747c2fb0258366b72c5410b7d5600842522ad2 -2023-06-02 11:15:04.173559 + : pb-IF5dUGglAw== ip: azo~|m~~o~~kd, Device id: 064c60d9855d30b53be59aeb5dc7fdb93aa962b3 -2023-06-02 11:24:46.679430 + : pb-IF4qUGk_PA==|| kicked > new account -2023-06-02 11:29:52.610445 + : pb-IF4qUxBfAw== ip: dxviakdajd, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 11:34:27.594751 + : pb-IF4TV3RbDA== ip: a}j~~nhaj`vvb|o, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-06-02 11:35:26.766646 + : pb-IF4qUxBfAw== ip: dxviakdajd, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 11:35:31.791073 + : pb-IF40UBISLQ== ip: bxvf}vbzi~{h, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-06-02 11:36:34.066574 + : pb-IF40UBISLQ== ip: bxvf}vbzi~{h, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-06-02 11:37:51.356045 + : pb-IF4DUGUuVg== ip: aakhajayvbw, Device id: 12fc08d41327332f299de05336ce72c9b9747207 -2023-06-02 11:40:08.844731 + : pb-IF41U2scIg== ip: an~}h`aiawvg, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-02 11:40:51.003390 + : pb-IF4VVG8gNQ== ip: azo~zi~~hhakd, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-02 11:41:19.107250 + : pb-IF4sU2JSFA== ip: a~j~xa~~i`ajb}, Device id: e1bb6f4236e5d566e88d0867f1b0666be4a1419a -2023-06-02 11:41:48.203036 + : pb-IF4qUxBfAw== ip: dxviakdajd, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 11:42:17.297722 + : pb-IF4vVRUFVA== | kicked > reason:Banned account -2023-06-02 11:43:00.438218 + : pb-IF4sU2JSFA== ip: a~j~xa~~i`ajb}, Device id: e1bb6f4236e5d566e88d0867f1b0666be4a1419a -2023-06-02 11:45:10.910238 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 11:45:18.933315 + : pb-IF4VVG8gNQ== ip: azo~zi~~hhakd, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-02 11:47:49.495716 + : pb-IF4vVRUFVA== | kicked > reason:Banned account -2023-06-02 11:52:13.530853 + : pb-IF4VVG8gNQ== ip: azo~zi~~hhakd, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-02 11:53:31.866517 + : pb-IF4vVRUFVA== | kicked > reason:Banned account -2023-06-02 11:54:07.008481 + : pb-IF5VU1JZMw== ip: an~}ica`eaig, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-02 11:54:59.184176 + : pb-IF4WU2ctKA== ip: ak~{j~~agaicz, Device id: 0ac465153dc65b0a9570e9f27bc9192c7a86d43c -2023-06-02 11:55:08.204151 + : pb-IF4mVGZaCw== ip: dvvc|vb~i~~`d, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-06-02 11:56:39.657146 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4WU2ctKA==. -2023-06-02 11:57:09.660249 + : Kick vote End -2023-06-02 11:57:13.625384 + : pb-IF4OU2QjMQ== ip: a~h~}jgaidamc, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-06-02 11:57:26.682363 + : pb-IF4dU1IOKQ== ip: b}k~}kaaidwva|h, Device id: 0ea8bbe6ad0e9c005407166ad37923d1f241be41 -2023-06-02 11:59:42.248301 + : pb-IF4PV24yPA== ip: an~}hhaigyva}h, Device id: 5bd1087e38783d3d08f01cfce5d36dfbf8440740 -2023-06-02 12:00:04.327580 + : pb-IF4dU1IOKQ== ip: b}k~}kaaidwva|h, Device id: 0ea8bbe6ad0e9c005407166ad37923d1f241be41 -2023-06-02 12:01:15.590243 + : pb-IF4OU2QjMQ== ip: a~h~}jgaidamc, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-06-02 12:04:44.389372 + : pb-IF4zV1U4Bw== ip: azo~zi~~ldaki, Device id: d7f1afd682be35f1dc26e146a8e286c8e1470433 -2023-06-02 12:06:03.663767 + : pb-IF4OU2QjMQ== ip: a~h~}jgaidamc, Device id: 093291447dbdedf527365e7d71c3c01d030e89d5 -2023-06-02 12:17:21.324395 + : pb-IF4qUxBfAw== ip: dxviakdaia~, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 12:17:37.386634 + : pb-IF4OPhMg ip: an~~adaniaoe, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-02 12:21:00.133288 + : pb-IF5XUkoGDw== ip: dxviaicvawj, Device id: 28f13e74c66a938e7181be1e72c3c9f925f0833c -2023-06-02 12:32:53.297175 + : pb-IF5VUGo7FA== ip: azj~z`~yo~~ai, Device id: 180a49b1f820d5ea85226650ec2b50b5c910cb2e -2023-06-02 12:33:06.463643 + : pb-JiNJARFaXUZJVV5CE05RXFJLF0laT1ZB ip: azj~z`~}hiaje, Device id: 98ea9ecd5224c15357abafdab20f599cc4e24c0c -2023-06-02 12:39:31.880196 + : pb-IF4PUnhdAw== | kicked > reason:Banned account -2023-06-02 12:40:05.014985 + : pb-IF5XUkoGDw== ip: dxviaicvawj, Device id: 28f13e74c66a938e7181be1e72c3c9f925f0833c -2023-06-02 12:40:31.111493 + : pb-IF5XUkoGDw== ip: dxviaicvawj, Device id: 28f13e74c66a938e7181be1e72c3c9f925f0833c -2023-06-02 12:46:36.453046 + : pb-IF49VFdbEQ== ip: an~}hfaj`}va}l, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 12:51:24.539691 + : pb-IF5XUkoGDw== ip: dxviaicvawj, Device id: 28f13e74c66a938e7181be1e72c3c9f925f0833c -2023-06-02 12:51:30.570395 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-02 12:54:39.217185 + : pb-IF4QUlcOEw== ip: azl~}lcanaaa, Device id: 07bd1a7c30f3c71fad6a48863bf3e7b9c5102fce -2023-06-02 12:54:57.800390 + : pb-IF4mUGgTEA==|| kicked > new account -2023-06-02 12:55:18.428217 + : pb-IF4QUlcOEw== ip: azl~}lcanaaa, Device id: 07bd1a7c30f3c71fad6a48863bf3e7b9c5102fce -2023-06-02 12:55:42.499761 + : pb-IF4MUBMHKA== ip: azj~z`~~n~wh, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-06-02 12:57:29.855059 + : pb-IF4cUBYfCg== ip: azo~{m~yo~zn, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-02 13:00:05.446048 + : pb-IF5VUGo7FA== ip: azj~z`~yo~~ai, Device id: 180a49b1f820d5ea85226650ec2b50b5c910cb2e -2023-06-02 13:00:25.516831 + : pb-IF4qUxBfAw== ip: dxviakdaia~, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 13:01:34.753473 + : pb-IF4qUxBfAw== ip: dxviakdaia~, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 13:11:15.337848 + : pb-IF4qUxBfAw== ip: dxviakdaia~, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 13:11:25.370175 + : pb-IF4tUGMBCg== ip: ak~za~xl~~o`, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-06-02 13:11:53.468554 + : pb-IF4VVG8gNQ== ip: azo~zi~~icaie|, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-02 13:12:55.946236 + : pb-IF49VFdbEQ== ip: an~}hfaj`}va}l, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 13:17:07.473358 + : pb-IF4vVVACVg== ip: ak~}maajaxvby, Device id: bd8ebc3834efb37c00440b54cc490c815be38d5c -2023-06-02 13:20:14.337475 + : pb-IF4qUxBfAw== ip: dxviakdaia~, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 13:23:46.294314 + : pb-IF4gUksyMQ== ip: an~}iaaie{vc}, Device id: b0ef821c8b60e5fcf4bad99d322e2a9451de48ac -2023-06-02 13:24:19.418384 + : pb-IF4VVG8gNQ== ip: azo~zi~~icaie|, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-02 13:25:34.737699 + : pb-IF4-Um4_Lw== ip: azj~zo~}a~{o, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-06-02 13:26:00.809751 + : pb-IF4IUGQRHw== ip: azo~{n~~lbaia, Device id: 75b42d0e6532c03c0a60bb7c5238043a93288156 -2023-06-02 13:30:15.774478 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-06-02 13:32:48.346706 + : pb-IF4gUksyMQ== ip: an~}iaaie{vc}, Device id: b0ef821c8b60e5fcf4bad99d322e2a9451de48ac -2023-06-02 13:37:06.336325 + : pb-IF4qUxBfAw== ip: dxviakdai`|, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 13:37:13.357229 + : pb-IF4NVxAZDg== ip: dvvcyva~m~}ji, Device id: 9dda09fcf9a3701e0e8edddd357f35fc1813050f -2023-06-02 13:37:23.390789 + : pb-IF4hUBU_HQ== | kicked > reason:Banned account -2023-06-02 13:42:19.924638 + : pb-IF4nUnBdNg== | kicked > reason:Banned account -2023-06-02 13:43:58.434865 + : pb-IF49VFdbEQ== ip: an~}hfaj`}va}l, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 13:44:07.477006 + : pb-IF49VFdbEQ== ip: an~}hfaj`}va}l, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 13:44:50.596878 + : pb-IF4FU1daUA== ip: b}k~}khajayva}h, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-06-02 13:47:14.092335 + : pb-IF4OPhMg ip: an~~adaniaoe, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-02 13:48:03.715961 + : pb-IF4XUGkYCQ==|| kicked > new account -2023-06-02 13:50:06.686845 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG ip: a~o~va~}lfaib, Device id: 822adb43af454f4ce0fdec16028787c26c151d5f -2023-06-02 13:53:07.786449 + : pb-IF4yV20uUQ== ip: azo~{n~~o`aja~, Device id: e226bf43eb6342fb07dd7ee8f2d18b838534c838 -2023-06-02 13:54:36.113985 + : pb-IF4TUGEIDQ== ip: an~}hhaifwva~m, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-02 13:55:07.231371 + : pb-IF4UU2k7FQ== ip: avo~}iaamhaj`, Device id: fe5e73d8f02a525b055ec44991b6ac012ad8b12a -2023-06-02 13:59:56.450574 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-02 14:01:37.566907 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG started kick vote for pb-IF4CUGJeEw==. -2023-06-02 14:01:48.937128 + : pb-IF4qUxBfAw== ip: dxviakdajcz, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 14:02:07.569929 + : Kick vote End -2023-06-02 14:03:27.293538 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-02 14:04:07.441468 + : pb-IF4TV3RbDA== ip: a}j~~nhaj`vvb|o, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-06-02 14:06:03.519871 + : pb-IF4rUGkGXA==|| kicked > new account -2023-06-02 14:06:10.890101 + : pb-IF49I04z ip: b}k~~`gaia}vaxo, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-02 14:06:13.902889 + : pb-IF49VFdbEQ== ip: an~}hfaj`}va}l, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 14:06:57.067243 + : pb-IF4VU3laVA== ip: ak~~`dajcwvb, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-02 14:07:13.132429 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-02 14:08:10.327967 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-02 14:08:13.333575 + : pb-IF5dUGglAw== ip: azo~|m~xa~~oh, Device id: 064c60d9855d30b53be59aeb5dc7fdb93aa962b3 -2023-06-02 14:08:48.448566 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-02 14:10:52.633327 + : pb-IF5dUGglAw== started kick vote for pb-IF4OUBAqNQ==. -2023-06-02 14:11:04.950245 + : pb-IF4TV3RbDA== ip: a}j~~nhaj`vvb|o, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-06-02 14:11:22.640183 + : Kick vote End -2023-06-02 14:12:47.090279 + : pb-IF4VU3laVA== started kick vote for pb-IF4OUBAqNQ==. -2023-06-02 14:13:17.093913 + : Kick vote End -2023-06-02 14:14:27.688208 + : pb-IF5TUlZaUw== ip: a~o~va~~adaie, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-02 14:14:51.770369 + : pb-IF4WUBJcVQ== ip: ayk~zk~~oiaof, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-06-02 14:16:37.117492 + : pb-IF41U2scIg== ip: an~~aeak~vl, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-02 14:20:09.962752 + : pb-IF4DV2ItCQ== ip: ak~~`baifxvgv, Device id: 5bba8fcd2bdbd1349061cdcfb59066eec13d9afc -2023-06-02 14:22:14.406313 + : pb-IF4qUxBfAw== ip: dxviakdajcz, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-02 14:23:41.699369 + : pb-IF4FU1daUA== ip: b}k~}khajayva}h, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-06-02 14:25:27.182878 + : pb-IF4TUGEIDQ== ip: an~}hhaigvvc}, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-02 14:25:50.253410 + : pb-IF4BU1k4Bg== ip: azj~z`~~a~}ke, Device id: 8b30137661cab811019fc09a719a3a89817d82b3 -2023-06-02 14:26:00.330085 + : pb-IF4BU1k4Bg== ip: azj~z`~~a~}ke, Device id: 8b30137661cab811019fc09a719a3a89817d82b3 -2023-06-02 14:26:06.353863 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG ip: a~o~va~}lfaib, Device id: 822adb43af454f4ce0fdec16028787c26c151d5f -2023-06-02 14:27:22.858492 + : pb-IF4TUGEIDQ== ip: an~}hhaigvvc}, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-02 14:28:42.138474 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-02 14:30:38.553637 + : pb-IF4TUGEIDQ== ip: an~}hhaigvvc}, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-02 14:31:55.848588 + : pb-IF5dU3UiAw== ip: azo~{a~vh~}jh, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-02 14:33:07.249723 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG started kick vote for pb-IF4TUGEIDQ==. -2023-06-02 14:33:37.249569 + : Kick vote End -2023-06-02 14:35:43.825786 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-02 14:38:38.582632 + : pb-IF49I04z ip: b}k~~`gaia}vaxo, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-02 14:38:52.633652 + : pb-IF49UBEhJA== ip: azo~|j~|k~~kh, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-06-02 14:43:14.571716 + : pb-IF4jF1NY ip: azj~z`~{va{a, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-02 14:43:57.002996 + : pb-IF5SUGs7MQ==|| kicked > new account -2023-06-02 14:47:10.592163 + : pb-IF4IUGQRHw== ip: azo~{n~~leajaz, Device id: 75b42d0e6532c03c0a60bb7c5238043a93288156 -2023-06-02 14:48:04.815818 + : pb-IF49VFdbEQ== ip: an~}hfaj`}va}l, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 14:48:15.860808 + : pb-IF4zUBUlNg== ip: b}k~~`iaifvhy, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-02 14:51:35.951051 + : pb-IF4CUGJeEw== ip: a}j~~oba`fajc}, Device id: c9f528d7195d6911a320906a90e3bbfde07ba8a8 -2023-06-02 14:51:42.972748 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-02 14:55:33.871096 + : pb-IF4hUBddUA== ip: b}k~~`iajd}vavo, Device id: bfd69c3b6bfa313e00ee48165f732d2d4ae5979d -2023-06-02 14:58:02.438607 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 14:59:44.847408 + : pb-IF4DV2ItCQ== ip: ak~~`baifxvgv, Device id: 5bba8fcd2bdbd1349061cdcfb59066eec13d9afc -2023-06-02 15:01:04.170032 + : pb-IF4IUGQRHw== ip: azo~{n~~leajaz, Device id: 75b42d0e6532c03c0a60bb7c5238043a93288156 -2023-06-02 15:06:56.232623 + : pb-IF4VU3laVA== ip: ak~~`dajcwvb, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-02 15:08:00.508313 + : pb-IF41U2scIg== ip: an~}i`aig}vd~, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-02 15:11:00.210919 + : pb-IF4PUlFTKg== ip: i}vdvaxi~zj, Device id: 46433f4e3ebeab3a13b0c6db9ca4cabab67974e4 -2023-06-02 15:11:08.252036 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-02 15:11:36.373363 + : pb-JiNJARFaVUNCVF9DF0JTV1VGGEJbRVBD ip: a~h~}jgajevb~a, Device id: 7ab4e0f256a7d1522a24b7936bcb926c7e6ef694 -2023-06-02 15:13:43.023106 + : pb-JiNJARFaVUNCVF9DF0JTV1VGGEJbRVBD started kick vote for pb-IF4OUBAqNQ==. -2023-06-02 15:14:13.028887 + : Kick vote End -2023-06-02 15:16:18.480319 + : pb-IF4VVG8gNQ== ip: azo~zi~v`~~ob, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-02 15:16:31.517350 + : pb-IF4IV04ZKw== | kicked > reason:Banned account -2023-06-02 15:17:10.305129 + : pb-IF4PUlFTKg== started kick vote for pb-IF4VVG8gNQ==. -2023-06-02 15:17:12.605228 + : Kick vote End -2023-06-02 15:17:17.681902 + : pb-IF4VVG8gNQ== ip: azo~zi~v`~~ob, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-02 15:17:20.696433 + : pb-IF4jF1NY ip: azj~z`~zvaz`, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-02 15:17:59.091994 + : pb-IF4zUBUlNg== ip: b}k~~`iaifvhy, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-02 15:18:47.293645 + : pb-IF5RU2oJUA== ip: bxvf~vaxl~~hi, Device id: b52a0123a41243d56ed209aa5016622aec74d299 -2023-06-02 15:19:55.483016 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4PUlFTKg==. -2023-06-02 15:20:07.573052 + : pb-IF4VUlcBVQ== ip: azj~z`~~`dai`y, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-06-02 15:20:25.484830 + : Kick vote End -2023-06-02 15:20:47.133130 + : pb-IF4VU3EjBg== ip: azj~z`~|n~~nh, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-06-02 15:24:52.601834 + : pb-IF5RU1lfAQ== ip: b}k~~ofajba`g, Device id: a6ebbd0c7acb2aec57ffe4b7fec625847473f863 -2023-06-02 15:27:22.557333 + : pb-IF40UncaLg== ip: dvvc|vbi~{i, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-02 15:29:17.411150 + : pb-IF4jF1NY started kick vote for pb-IF5RU1lfAQ==. -2023-06-02 15:29:47.412163 + : Kick vote End -2023-06-02 15:30:06.401747 + : pb-IF4dVUwMKQ== ip: a|o~vo~~jdaig~, Device id: 042adf53a235df6a5b9abacc091864fc5f0e0a68 -2023-06-02 15:33:08.400668 + : pb-IF40UncaLg== ip: dvvc|vbi~{i, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-02 15:33:46.531805 + : pb-IF5TUlZaUw== ip: a~o~va~~adaie, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-02 15:34:27.676833 + : pb-IF40UncaLg== ip: dvvc|vbi~{i, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-02 15:35:28.009459 + : pb-IF41U2scIg== ip: an~}i`aig}vd~, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-02 15:36:15.893644 + : pb-IF4sUGYjUw== ip: axi~{a~~mdah, Device id: 43c7aa0b8e6ca0df1dee0e297599665d9dd266a0 -2023-06-02 15:38:59.477133 + : pb-IF41U2scIg== ip: an~}i`aig}vd~, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-02 15:54:11.509066 + : pb-IF4wUGccFA== ip: d|vb{k~}ibai`w, Device id: 20076ad4d0910aebc02c6b8245c2986e64b4acbe -2023-06-02 15:56:19.015961 + : pb-IF5cVRYTCQ== ip: an~}jaaibajav, Device id: be694006c26106519e4a116c55f3391b57b7caab -2023-06-02 15:59:23.096297 + : pb-IF4wUGccFA== ip: d|vb{k~}ibai`w, Device id: 20076ad4d0910aebc02c6b8245c2986e64b4acbe -2023-06-02 16:01:57.952762 + : pb-IF49U0MCCA== ip: ak~}n~{a~~nh, Device id: 9ea383f7480b8975143ccc19f4013e3081d1b7d7 -2023-06-02 16:02:07.988256 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-02 16:04:56.621374 + : pb-IF4OPhMg ip: an~~adaniaoe, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-02 16:08:37.438652 + : pb-IF4jF1NY ip: azj~z`~zi~~ih, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-02 16:10:25.867263 + : pb-IF4jF1NY ip: azj~z`~zi~~ih, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-02 16:10:50.255976 + : pb-IF5SUGskDA==|| kicked > new account -2023-06-02 16:16:18.342231 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-06-02 16:24:57.248713 + : pb-IF4jF1NY ip: azj~z`~zi~}hd, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-02 16:28:03.919468 + : pb-IF4VVG8gNQ== ip: azo~zi~~hcaiev, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-02 16:30:44.894032 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-06-02 16:42:24.569955 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 16:44:30.055035 + : pb-IF4LUGQ5Fw== ip: aya~~liajbxvbz, Device id: 8ebfad04480edf6f56cb852436b0fc337e1deb24 -2023-06-02 16:46:14.497643 + : pb-IF4-Uk4mEA== ip: dvvcxvg|viv, Device id: b1920ab07bd50671fd0897a7c4ccab774e5adc53 -2023-06-02 16:48:04.971587 + : pb-JiNJARFdXUdGW1pEE0JZV1JCEUVdQVdA ip: ak~~o~~i`aib, Device id: d3c1b69f4abe0a30b187a9f76dd0bf2ec4316172 -2023-06-02 16:48:26.051063 + : pb-JiNJARFdXUdGW1pEE0JZV1JCEUVdQVdA ip: ak~~o~~i`aib, Device id: d3c1b69f4abe0a30b187a9f76dd0bf2ec4316172 -2023-06-02 16:48:45.118260 + : pb-IF4DUGUuVg== ip: aakhajayvc{, Device id: 12fc08d41327332f299de05336ce72c9b9747207 -2023-06-02 16:48:57.150612 + : pb-IF4DUGUuVg== ip: aakhajayvc{, Device id: 12fc08d41327332f299de05336ce72c9b9747207 -2023-06-02 16:48:58.149549 + : pb-IF41U2scIg== ip: an~}i`aig}vd~, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-02 16:51:18.651962 + : pb-IF4UU2k7FQ== ip: avo~}iaamhaj`, Device id: fe5e73d8f02a525b055ec44991b6ac012ad8b12a -2023-06-02 16:54:24.377495 + : pb-IF4cUktZNg== ip: a~h~}keajcwva|, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-06-02 16:54:46.478175 + : pb-IF41U2scIg== ip: an~}i`aig}vd~, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-02 17:03:38.957097 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 17:05:23.345381 + : pb-IF4-Uk4mEA== ip: dvvcxvg|viv, Device id: b1920ab07bd50671fd0897a7c4ccab774e5adc53 -2023-06-02 17:05:32.379591 + : pb-IF4uUk4vMg== ip: b}k~}jfaie~vby, Device id: 6635c2af1bf357a9e95bbf3d6082a39d14dc3cdb -2023-06-02 17:06:26.604814 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-02 17:11:07.268920 + : Server started -2023-06-02 17:11:08.274615 + : pb-IF4XU0gNJg== ip: a}j~~naalhai`, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-02 17:11:08.274773 + : pb-IF4-Uk4mEA== ip: dvvcxvg|viv, Device id: b1920ab07bd50671fd0897a7c4ccab774e5adc53 -2023-06-02 17:11:08.274909 + : pb-IF4uUk4vMg== ip: b}k~}jfaie~vby, Device id: 6635c2af1bf357a9e95bbf3d6082a39d14dc3cdb -2023-06-02 17:12:50.639014 + : pb-IF4qVEkNLQ== ip: an~}jba`caoe, Device id: 3c64881f8c51f523cbd9c38e6b7e080b2f654647 -2023-06-02 17:12:52.647088 + : pb-JiNJARBSUkNEX11DGU5RUVFFFEFbT1dF ip: an~}heajbvvgz, Device id: 39a07841d11133b1dc369933ac278cc15349c690 -2023-06-02 17:15:02.644482 + : pb-IF4-Uk4mEA== started kick vote for pb-IF4XU0gNJg==. -2023-06-02 17:15:23.161380 + : pb-IF5dU3UiAw== ip: a~o~~acajcaigx, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-02 17:15:32.644849 + : Kick vote End -2023-06-02 17:16:15.352133 + : pb-IF5dU3UiAw== ip: azo~{a~wo~v, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-02 17:21:27.458438 + : pb-IF4AUxYpIw== ip: dvvcxvbk~}lb, Device id: 7ea05ccb4bce7444af2bf6f94b21f050f5d448a9 -2023-06-02 17:28:22.035317 + : pb-IF40UncaLg== ip: dvvc|vb}h~w, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-02 17:29:32.338755 + : pb-IF49U0MCCA== ip: ak~}n~{a~~nh, Device id: 9ea383f7480b8975143ccc19f4013e3081d1b7d7 -2023-06-02 17:59:15.060095 + : pb-IF4TV2w6Bw== ip: azo~zi~wh~}ja, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-06-02 18:00:22.312695 + : pb-IF5dU3UiAw== ip: azo~{a~wo~v, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-02 18:04:01.103063 + : pb-IF49VFQlPA== ip: azo~{m~yk~~j`, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-06-02 18:06:35.687791 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 18:11:59.875586 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va{m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 18:16:26.946630 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va{m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 18:19:09.521614 + : pb-IF4WUBJcVQ== ip: ayk~zk~~oiaof, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-06-02 18:24:33.800902 + : pb-IF4IUGQRHw== ip: azo~{n~~kiand, Device id: 75b42d0e6532c03c0a60bb7c5238043a93288156 -2023-06-02 18:26:57.424726 + : pb-IF5WU0gIUQ== ip: azj~z`~}idaicz, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-02 18:27:49.647806 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 18:35:01.320923 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-02 18:35:07.346431 + : pb-IF4XVUZfFA== ip: azh~~hgai`yvb{, Device id: 796c6e0013eee01a7508986e29b2cda6525e000a -2023-06-02 18:39:05.212878 + : pb-IF4OPhMg ip: an~~adaniaoe, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-02 18:40:14.456317 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va{m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 18:46:38.913861 + : pb-IF4XUGYaFQ== ip: a|j~~mdamfaic|, Device id: cea5ca751787a9aa358a197e56866072964ff0f0 -2023-06-02 18:46:39.914547 + : pb-IF4tUGMBCg== ip: ak~}hhaniaaf, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-06-02 18:47:08.040896 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va{m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 18:48:48.475830 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 18:51:23.076120 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-02 18:53:59.643839 + : pb-IF4yVVEzDw== ip: azo~{a~}kaaj`~, Device id: 719c2c24f5906351fa7a9e44a9b4042bd66943b2 -2023-06-02 18:54:54.852514 + : pb-IF4TV3RbDA== ip: a}j~~nhaj`vvb|o, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-06-02 18:57:16.430627 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va{m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 18:59:08.832668 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jc, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-02 19:09:23.888263 + : pb-IF4AUBEpCQ== started kick vote for pb-IF4OUBAqNQ==. -2023-06-02 19:09:25.216690 + : pb-IF4tUGMBCg== ip: ak~}hhaniaaf, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-06-02 19:09:31.382886 + : pb-IF4OUBAqNQ== kicked by kickvotes. -2023-06-02 19:15:03.406875 + : pb-IF4IU28qPA== ip: azo~zi~~ofaig, Device id: 2b676771bfc1043a69989576d24e1194aec0a626 -2023-06-02 19:22:38.124306 + : pb-IF4TV2w6Bw== ip: azo~zi~~a`ajb~, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-06-02 19:24:25.561044 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va{m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 19:28:59.748624 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va{m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 19:30:48.200834 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 19:30:54.223236 + : pb-IF4DUGk6Iw== ip: azo~zi~w`~~n`, Device id: 121cd6f45bc346a14c9d3fae491810d7cc5f2baf -2023-06-02 19:31:25.341538 + : pb-IF4DUGk6Iw== ip: azo~zi~w`~~n`, Device id: 121cd6f45bc346a14c9d3fae491810d7cc5f2baf -2023-06-02 19:31:54.431551 + : pb-IF4PIFQ9 ip: azj~z`~}jeajc}, Device id: 593a69858f539a0b1f234b1980113bb4060a87b5 -2023-06-02 19:34:02.897256 + : pb-IF4TUGQ5Ng== ip: dvvbo~}hgajby, Device id: 3857f20cc88787e2306d1b5cfb2f6115c51da8ea -2023-06-02 19:34:04.903140 + : pb-IF4IU28qPA== ip: azo~zi~~ofaig, Device id: 2b676771bfc1043a69989576d24e1194aec0a626 -2023-06-02 19:34:38.118465 + : pb-IF4TV3RbDA== ip: a}j~~nhaj`vvb|o, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-06-02 19:34:39.119628 + : pb-IF4PIFQ9 ip: azj~z`~}jeajc}, Device id: 593a69858f539a0b1f234b1980113bb4060a87b5 -2023-06-02 19:36:31.581515 + : pb-IF4TV2w6Bw== ip: azj~z`~}jgaib{, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-06-02 19:37:38.841591 + : pb-IF5VU1JZMw== ip: an~}ica`eaig, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-02 19:38:10.943257 + : pb-IF4HU0VcCA== ip: d~vaxn~}keaic~, Device id: 0048b280144da2caaeb58a3dd845b91cdf4d29b8 -2023-06-02 19:39:28.254979 + : pb-IF4rLkwp ip: a~j~~kdaja{vcw, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-06-02 19:40:38.477504 + : pb-IF4PIFQ9 ip: azo~zi~w`~~n`, Device id: 593a69858f539a0b1f234b1980113bb4060a87b5 -2023-06-02 19:43:07.031467 + : pb-IF5dU3UiAw== ip: azo~{a~vj~~id, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-02 19:43:37.159623 + : pb-IF4IUGQRHw== ip: azo~{n~~mdajh, Device id: 75b42d0e6532c03c0a60bb7c5238043a93288156 -2023-06-02 19:43:43.176979 + : pb-IF4MUk0CEg== ip: b}k~}kgaoiaiax, Device id: 7174b911724927259e55686521c8c22eddc6edbe -2023-06-02 19:44:05.267555 + : pb-IF40UBISLQ== ip: an~}hhaigzva}j, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-06-02 19:47:23.460874 + : pb-IF4TV2w6Bw== ip: azj~z`~}jgaib{, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-06-02 19:50:34.642757 + : pb-IF4TV3RbDA== started kick vote for pb-JiNJARFbXERIVVlDF0NQVlVEGEFcQ1VA. -2023-06-02 19:51:04.644542 + : Kick vote End -2023-06-02 19:51:45.501358 + : pb-IF49U0QJDw== ip: dvvcxva~o~}jb, Device id: 52e159e6debf4b869cb6bd30a26e268c72ceab36 -2023-06-02 19:52:05.095372 + : pb-IF5VU1JZMw== started kick vote for pb-JiNJARFbXERIVVlDF0NQVlVEGEFcQ1VA. -2023-06-02 19:52:35.101669 + : Kick vote End -2023-06-02 19:52:53.732765 + : pb-IF4tUGMBCg== ip: ak~}hhaniaaf, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-06-02 19:53:00.758455 + : pb-IF4zUBUlNg== ip: b}k~~`iaic}vawm, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-02 19:54:32.166013 + : pb-IF4IUGQRHw== ip: azo~{n~~mdajh, Device id: 75b42d0e6532c03c0a60bb7c5238043a93288156 -2023-06-02 19:56:00.475077 + : pb-IF4VU3laVA== ip: ak~~`dajcwva}, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-02 19:56:35.585618 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va{m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 19:57:10.708723 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va{m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 19:59:21.177398 + : pb-IF4VU3laVA== started kick vote for pb-IF4iUmkICg==. -2023-06-02 19:59:51.182446 + : Kick vote End -2023-06-02 20:00:13.357477 + : pb-IF40UBISLQ== ip: an~}hhaigzva}j, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-06-02 20:00:38.436460 + : pb-IF4zUBUlNg== ip: b}k~~`iaic}vawm, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-02 20:01:40.785192 + : pb-IF4iUmkICg== started kick vote for pb-IF4TV3RbDA==. -2023-06-02 20:02:10.788935 + : Kick vote End -2023-06-02 20:04:24.376263 + : pb-IF4VU3laVA== started kick vote for pb-IF4iUmkICg==. -2023-06-02 20:04:43.421694 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va{m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 20:04:54.379273 + : Kick vote End -2023-06-02 20:06:39.189945 + : pb-IF4iUmkICg== started kick vote for pb-IF5VU1JZMw==. -2023-06-02 20:07:09.194493 + : Kick vote End -2023-06-02 20:07:49.091845 + : pb-IF5dU3UiAw== ip: azo~{a~vj~~id, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-02 20:08:55.329784 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va{m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 20:12:48.492851 + : pb-IF5TUlZaUw== ip: a~o~va~~aiajb~, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-02 20:16:21.203515 + : pb-IF49VFdbEQ== ip: an~}hfaj`~va{m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 20:20:14.411614 + : pb-IF5dU2kTBg== ip: i|va{o~}lbaig~, Device id: 94a5043fcc6df6981ebabb39fc146b4aedaf96d7 -2023-06-02 20:23:44.143027 + : pb-IF5dU2kTBg== ip: i|va{o~}lbaig~, Device id: 94a5043fcc6df6981ebabb39fc146b4aedaf96d7 -2023-06-02 20:32:41.428672 + : pb-IF4rLkwp ip: a~j~~kdaja{vcw, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-06-02 20:33:35.615535 + : pb-IF40UBISLQ== ip: an~}hgajdyvg, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-06-02 20:35:55.146843 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 20:36:16.222348 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 20:41:04.383851 + : pb-IF5dU3UiAw== ip: azo~{a~xl~vi, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-02 20:41:05.387327 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvcv, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 20:41:40.526147 + : pb-IF4VUlcBVQ== ip: azj~z`~~mdaiiw, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-06-02 20:43:25.940285 + : pb-IF4gUGIyAQ== ip: avo~}h`aicvan, Device id: 4ec7624a7916f6dd965c86600f51480556663c0d -2023-06-02 20:43:46.035298 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvcv, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 20:46:48.804826 + : pb-IF40UkQYJg== ip: bm~}mcaib|vb|h, Device id: 90438114f0cf790c9e8d02845e16dc2650cbf255 -2023-06-02 20:48:08.091595 + : pb-IF4VU3laVA== ip: ak~~`dajcwva}, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-02 20:52:10.106382 + : pb-IF5TUlZaUw== ip: a~o~va~~agaicy, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-02 20:53:06.322244 + : pb-IF4tVVIRPQ== ip: awh~~a`ai`vvb{o, Device id: 7387088e488c7c317c3df0278171f537b27e821c -2023-06-02 20:57:12.219354 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-06-02 20:59:05.640313 + : pb-IF4rLkwp ip: a~j~~kdaja{vcw, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-06-02 21:00:18.849776 + : pb-IF4WU1UEUw== ip: dxvazv`ajd|, Device id: 25c20953eda6c18c67f72031bd4a76668d392040 -2023-06-02 21:00:52.966313 + : pb-IF4iU0QaEw== ip: dvvd|vazk~~ob, Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-02 21:01:21.078503 + : pb-IF4cVGMHLA== ip: ak~vo~vn~|h, Device id: b055fe844b57210943a3bba37a3a7be5abc140d9 -2023-06-02 21:01:24.093889 + : pb-IF4IUGVTMQ== ip: ak~vo~vn~|h, Device id: c122767b74fe0c99f1c70247ae0b7d6375493e1d -2023-06-02 21:02:29.331969 + : pb-IF4IUGVTMQ== ip: an~~acaievvam, Device id: c122767b74fe0c99f1c70247ae0b7d6375493e1d -2023-06-02 21:02:37.363442 + : pb-IF4TUGEIDQ== ip: an~}hgajdwvb~a, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-02 21:08:12.495246 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhvb, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-06-02 21:12:18.426452 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~ja, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-02 21:15:34.683932 + : pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB ip: azj~z`~zn~}jd, Device id: e30952bda624a1707c15cfb174e914d0a114370f -2023-06-02 21:20:23.972112 + : pb-IF4jU0MyVg== ip: bxvexvazvay`, Device id: e48974638a05ee882c0ddff15a738d1ede293179 -2023-06-02 21:21:32.209374 + : pb-IF4RUGkfAQ==|| kicked > new account -2023-06-02 21:21:56.999513 + : pb-IF4TUGEIDQ== ip: an~}hgajdwvb~a, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-02 21:22:09.048887 + : pb-IF4tNxUh ip: axn~~jhaihvbv, Device id: 60e4ad03622d0144201fd4c0feee6aa2b1f1aa6d -2023-06-02 21:23:31.529731 + : pb-IF5WU1QJFA== ip: azo~|`~wo~}ja, Device id: 4a8a384698658621fce88e219c1c5bd3c01f6e7a -2023-06-02 21:23:40.559780 + : pb-IF4gUksyMQ== ip: an~}iaaie{vc}, Device id: b0ef821c8b60e5fcf4bad99d322e2a9451de48ac -2023-06-02 21:25:54.175184 + : pb-IF4wVVk8Jg== ip: ak~~n`aii{vi|, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-06-02 21:27:11.655126 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvcv, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 21:28:51.961419 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvcv, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 21:34:24.576813 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvcv, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 21:34:24.578036 + : pb-IF4MU08lCQ== ip: dvvczva|k~~ib, Device id: 496f898c6f42806db0970bac3faaa29f196c9610 -2023-06-02 21:34:33.614098 + : pb-IF4OUBY-HA== ip: a|a~~ngaj`vvhx, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-06-02 21:35:28.789192 + : pb-IF4OUBY-HA== ip: a|a~~ngaj`vvhx, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-06-02 21:36:48.084622 + : pb-IF5WU1QJFA== ip: azo~|`~wo~}ja, Device id: 4a8a384698658621fce88e219c1c5bd3c01f6e7a -2023-06-02 21:37:42.793966 + : pb-IF4OUBY-HA== started kick vote for pb-IF5WU1QJFA==. -2023-06-02 21:37:48.346857 + : pb-IF5WU1QJFA== kicked by kickvotes. -2023-06-02 21:38:02.345229 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvcv, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 21:44:53.908675 + : pb-IF5WU1QJFA== ip: azo~|`~wo~}ja, Device id: 4a8a384698658621fce88e219c1c5bd3c01f6e7a -2023-06-02 21:47:45.607407 + : pb-IF4jU0MyVg== ip: bxvexvazvay`, Device id: e48974638a05ee882c0ddff15a738d1ede293179 -2023-06-02 21:59:25.253676 + : pb-IF4IVFkKNA== ip: an~}ifai`{vhz, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-02 21:59:59.382720 + : pb-IF4IVFkKNA== ip: an~}ifai`{vhz, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-02 22:00:17.439904 + : pb-IF4VVG8gNQ== ip: azo~zi~~hiaigz, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-02 22:00:48.565595 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 22:10:32.853089 + : pb-IF5dU3UiAw== ip: azo~{a~yl~~hh, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-02 22:21:41.338881 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 22:22:32.533489 + : pb-IF4-Uk4mEA== ip: dvvcxvg{vf~, Device id: b1920ab07bd50671fd0897a7c4ccab774e5adc53 -2023-06-02 22:24:54.485415 + : pb-IF4uUk4vMg== ip: b}k~}jfaie~vby, Device id: 6635c2af1bf357a9e95bbf3d6082a39d14dc3cdb -2023-06-02 22:27:00.946864 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~{k, Device id: 84e8c68a67793414f4f9ba929c4417de1a04f4b0 -2023-06-02 22:35:28.856409 + : pb-IF4TUlA9HA== ip: azo~|j~~i~}md, Device id: dc74cdb2efcfeea120f5a98661c0a08c7026fc26 -2023-06-02 22:36:49.212500 + : pb-IF40UncaLg== ip: dvvc|vavm~~hb, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-02 22:37:22.349040 + : pb-IF4TUGEIDQ== ip: bxvf}vbzh~~od, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-02 22:38:17.684574 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvcv, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 22:54:49.299349 + : pb-IF4sUGMeVA== ip: dvvcyva~i~zi, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-06-02 22:55:51.493956 + : pb-IF4wV24HBw== ip: an~~acaja{vay, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-06-02 22:59:23.772003 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvcv, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 23:00:32.031006 + : pb-IF49VFQlPA== ip: azo~{m~{`~{a, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-06-02 23:03:14.658477 + : pb-IF40UncaLg== ip: dvvc|vbk~~ai, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-02 23:07:30.883312 + : pb-IF4TUGEIDQ== ip: bxvf}vbzj~}kd, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-02 23:17:11.081157 + : pb-IF4TUGEIDQ== ip: bxvf}vbzj~}kd, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-02 23:17:22.350620 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvcv, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 23:19:12.769890 + : pb-IF4FD1c8 ip: azo~{a~}hiaj`, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-06-02 23:26:08.367893 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 23:41:26.937534 + : pb-IF4WUBJcVQ== ip: ayk~zk~~oiaof, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-06-02 23:43:31.710987 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvcv, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 23:45:10.102960 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvcv, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 23:47:28.642778 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-02 23:47:43.710531 + : pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB ip: ak~{`~~haajdv, Device id: rikkolovescats :3 -2023-06-02 23:55:25.502345 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvcv, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-02 23:55:51.586689 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvcv, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-03 00:11:17.526729 + : Server started -2023-06-03 00:28:05.240608 + : pb-IF4LU1gBKA== ip: a|i~vava~~nd, Device id: fdb55d616e3e2ee33266af3ae2e25688b3da0c88 -2023-06-03 00:38:19.365798 + : pb-IF40UGciNw== ip: awl~zo~}jfanh, Device id: 705a68e09584a42401a790b7da780cc38f6bff54 -2023-06-03 00:40:01.801414 + : pb-IF40UGciNw== ip: awl~zo~}jfanh, Device id: 705a68e09584a42401a790b7da780cc38f6bff54 -2023-06-03 01:55:03.820184 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 02:16:17.296713 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 02:58:54.218984 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 03:36:12.409566 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 03:40:35.412095 + : pb-IF40UGciNw== ip: awl~zo~}jfanh, Device id: 705a68e09584a42401a790b7da780cc38f6bff54 -2023-06-03 04:32:33.814860 + : pb-IF40UGciNw== ip: awl~zo~}jfanh, Device id: 705a68e09584a42401a790b7da780cc38f6bff54 -2023-06-03 04:33:00.910544 + : pb-IF40UGciNw== ip: awl~zo~}jfanh, Device id: 705a68e09584a42401a790b7da780cc38f6bff54 -2023-06-03 04:33:09.950414 + : pb-IF40UGciNw== ip: awl~zo~}jfanh, Device id: 705a68e09584a42401a790b7da780cc38f6bff54 -2023-06-03 05:22:58.049677 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 05:44:33.905798 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 06:05:15.544703 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 06:26:17.192239 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 06:47:55.249197 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 07:03:24.806340 + : pb-IF40UGciNw== ip: awl~zo~}jfanh, Device id: 705a68e09584a42401a790b7da780cc38f6bff54 -2023-06-03 07:08:40.082154 + : Server started -2023-06-03 07:08:41.086127 + : pb-IF40UGciNw== ip: awl~zo~}jfanh, Device id: 705a68e09584a42401a790b7da780cc38f6bff54 -2023-06-03 07:12:10.880537 + : pb-IF40UGciNw== ip: awl~zo~}jfanh, Device id: 705a68e09584a42401a790b7da780cc38f6bff54 -2023-06-03 07:17:41.058346 + : pb-IF40UGciNw== ip: awl~zo~}jfanh, Device id: 705a68e09584a42401a790b7da780cc38f6bff54 -2023-06-03 07:20:53.765397 + : pb-IF40UGciNw== ip: awl~zo~}jfanh, Device id: 705a68e09584a42401a790b7da780cc38f6bff54 -2023-06-03 07:27:27.221887 + : pb-IF4PU2Y6VQ== ip: ak~yvawm~~``, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-06-03 07:30:22.884315 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 07:34:49.936251 + : pb-IF40UGciNw== ip: awl~zo~}jfanh, Device id: 705a68e09584a42401a790b7da780cc38f6bff54 -2023-06-03 07:41:53.431427 + : pb-IF40UGciNw== ip: awl~zo~}jfanh, Device id: 705a68e09584a42401a790b7da780cc38f6bff54 -2023-06-03 07:46:18.436471 + : pb-IF4VUGEOPQ== ip: f~vb{m~~oaaib, Device id: 1766ca73bab688b3546acebd9cbb73fb31057596 -2023-06-03 07:59:04.083777 + : pb-IF5XU0YhKg== ip: azo~zh~{n~}hc, Device id: 009307dd452aa63a0473545aea930364bd26abb4 -2023-06-03 08:12:42.135993 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 08:33:26.415055 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 09:15:36.283121 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 09:36:16.834871 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 10:16:53.139578 + : pb-IF4xUnQNVA== ip: dvvc{vayk~xj, Device id: 477a46d48ec2c3a3ed0c4fb1e42c2d889ad8233f -2023-06-03 10:20:48.020518 + : pb-IF5RUBkiKA== ip: a}j~~oaaihan`, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-06-03 10:23:54.754595 + : pb-IF5RUBkiKA== ip: a}j~~oaaihan`, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-06-03 10:24:05.200371 + : pb-IF4JUBEGVw== started kick vote for pb-IF5RUBkiKA==. -2023-06-03 10:24:35.201591 + : Kick vote End -2023-06-03 10:27:01.405480 + : pb-IF4zUBUlNg== ip: b}k~~`iaidvvb}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-03 10:30:31.140874 + : pb-IF4MUBVeMQ== ip: an~~adajdaiew, Device id: bd8158b473696d433dc1f27858a22b099d6cebc1 -2023-06-03 10:31:49.613244 + : pb-IF4XU0gNJg== started kick vote for pb-IF4MUBVeMQ==. -2023-06-03 10:32:19.614382 + : Kick vote End -2023-06-03 10:34:22.001316 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-03 10:56:11.870368 + : pb-IF5XU0YhKg== ip: azo~zh~|`~}m`, Device id: 009307dd452aa63a0473545aea930364bd26abb4 -2023-06-03 10:57:52.041666 + : pb-IF4lUBEuJg== started kick vote for pb-IF5TVEsdEA==. -2023-06-03 10:57:58.226900 + : pb-IF4zUBUlNg== ip: b}k~~`iaidvvb}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-03 10:58:22.043917 + : Kick vote End -2023-06-03 11:06:08.091722 + : pb-IF4IUGQRHw== ip: azo~{n~~mhaigw, Device id: 75b42d0e6532c03c0a60bb7c5238043a93288156 -2023-06-03 11:06:47.239751 + : pb-IF4IUGQRHw== ip: azo~{n~~mhaigw, Device id: 75b42d0e6532c03c0a60bb7c5238043a93288156 -2023-06-03 11:08:17.566437 + : pb-IF4VU3laVA== ip: ak~~naaid{va~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-03 11:11:32.289103 + : pb-IF4VU3laVA== ip: ak~~naaid{va~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-03 11:18:14.654524 + : pb-IF5RUBkiKA== ip: a}j~~oaaihan`, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-06-03 11:20:51.240484 + : pb-IF4VU3laVA== ip: ak~~naaid{va~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-03 11:22:09.571583 + : pb-IF4VU3laVA== ip: ak~~naaid{va~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-03 11:22:49.715237 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-03 11:29:05.605191 + : pb-IF43UkRZVQ== started kick vote for pb-IF41U0YxAw==. -2023-06-03 11:29:35.606074 + : Kick vote End -2023-06-03 11:30:50.129552 + : pb-IF4XU0gNJg== started kick vote for pb-IF43UkRZVQ==. -2023-06-03 11:31:20.131371 + : Kick vote End -2023-06-03 11:32:44.517187 + : pb-IF4VU3laVA== started kick vote for pb-IF43UkRZVQ==. -2023-06-03 11:33:14.523034 + : Kick vote End -2023-06-03 11:34:15.234021 + : pb-IF43UkRZVQ== started kick vote for pb-IF4XU0gNJg==. -2023-06-03 11:34:45.236965 + : Kick vote End -2023-06-03 11:35:56.945410 + : pb-IF4XU0gNJg== started kick vote for pb-IF43UkRZVQ==. -2023-06-03 11:36:12.063405 + : Kick vote End -2023-06-03 11:36:17.706392 + : pb-IF43UkRZVQ== ip: bm~}mcakdamf, Device id: 4d1e8a08dd1406c2a9ecbb390a6c033dc7c7bdf3 -2023-06-03 11:37:16.574643 + : pb-IF43UkRZVQ== started kick vote for pb-IF4XU0gNJg==. -2023-06-03 11:37:46.580418 + : Kick vote End -2023-06-03 11:39:42.207696 + : pb-IF4XU0gNJg== started kick vote for pb-IF43UkRZVQ==. -2023-06-03 11:40:12.213776 + : Kick vote End -2023-06-03 11:41:50.891241 + : pb-IF4cUBYfCg== ip: azo~{m~xh~vi, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-03 11:41:57.925194 + : pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA ip: an~~afajgaoi, Device id: 936c205c0c65262d62300105d4329a28095c9790 -2023-06-03 11:43:56.775763 + : pb-IF4XU0gNJg== started kick vote for pb-IF43UkRZVQ==. -2023-06-03 11:44:26.781952 + : Kick vote End -2023-06-03 11:45:41.703950 + : pb-IF43UkRZVQ== started kick vote for pb-IF4XU0gNJg==. -2023-06-03 11:46:11.707006 + : Kick vote End -2023-06-03 11:47:08.069290 + : pb-IF43UkRZVQ== ip: bm~}mcakdamf, Device id: 4d1e8a08dd1406c2a9ecbb390a6c033dc7c7bdf3 -2023-06-03 11:48:28.921127 + : pb-IF4XU0gNJg== started kick vote for pb-IF43UkRZVQ==. -2023-06-03 11:48:58.922396 + : Kick vote End -2023-06-03 11:51:08.804813 + : pb-IF43UkRZVQ== started kick vote for pb-IF4XU0gNJg==. -2023-06-03 11:51:36.876052 + : Kick vote End -2023-06-03 11:52:45.703942 + : pb-IF43UkRZVQ== started kick vote for pb-IF4yU0QRUg==. -2023-06-03 11:53:15.706533 + : Kick vote End -2023-06-03 11:56:35.205517 + : pb-IF4cUBYfCg== ip: azo~{m~xh~vi, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-03 12:00:34.127892 + : pb-IF5dU3UiAw== ip: azo~{a~xn~~od, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-03 12:02:46.970370 + : pb-IF43UkRZVQ== started kick vote for pb-IF48UGY4Bw==. -2023-06-03 12:03:16.975229 + : Kick vote End -2023-06-03 12:08:06.754275 + : pb-IF4jV1U5Aw== ip: aakhaacaihx, Device id: 6d31f2e6c59ae1fabf27f3f452c224afed63e2b4 -2023-06-03 12:09:03.958500 + : pb-IF4BU0EsIg== ip: azj~z`~}haai, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-06-03 12:09:53.136692 + : pb-IF4jV1U5Aw== ip: aakhaacaihx, Device id: 6d31f2e6c59ae1fabf27f3f452c224afed63e2b4 -2023-06-03 12:19:47.481785 + : pb-IF4zUBUlNg== ip: b}k~~`iaidvvb}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-03 12:22:12.093678 + : pb-IF4zUBUlNg== ip: b}k~~`iaidvvb}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-03 12:22:27.139204 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-03 12:23:39.369059 + : pb-IF41U0YxAw== ip: a~n~y`~xo~}lg, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-03 12:25:26.716318 + : pb-IF5dU3UiAw== ip: azo~{a~xn~~od, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-03 12:33:40.559062 + : pb-IF4XU0gNJg== started kick vote for pb-IF4DUBlZUg==. -2023-06-03 12:34:10.562347 + : Kick vote End -2023-06-03 12:38:36.488223 + : pb-IF4jUGk-Mg== ip: azo~|k~vk~~`b, Device id: 0a02ab90b7ed8849a5d9749cb4c0463c406c3c70 -2023-06-03 12:43:25.601935 + : pb-IF4jUGk-Mg== ip: azo~|k~vk~~`b, Device id: 0a02ab90b7ed8849a5d9749cb4c0463c406c3c70 -2023-06-03 12:49:27.994101 + : pb-IF49VFdbEQ== ip: a~o~va~}jiamf, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-03 12:52:22.712484 + : pb-IF49VFdbEQ== ip: a~o~va~}jiamf, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-03 13:04:13.484541 + : pb-IF40UncaLg== ip: dvvc|vbm~{j, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-03 13:05:59.950976 + : pb-IF4VU3laVA== ip: ak~~`ca`bala, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-03 13:20:23.240128 + : pb-IF4zUBUlNg== ip: b}k~~`iaidvvb}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-03 13:35:36.853678 + : pb-IF4BUGYpXQ== ip: ak~vo~vn~~ih, Device id: bee529e5919516d06661ac599784f60a04e85ce5 -2023-06-03 13:46:35.373392 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-03 13:46:39.384424 + : pb-IF4zUBUlNg== ip: b}k~~`iaidvvb}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-03 13:54:48.374430 + : pb-IF49VFdbEQ== ip: a~o~va~}jiamf, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-03 14:02:46.766607 + : Server started -2023-06-03 14:02:47.772580 + : pb-IF4BUGYpXQ== ip: ak~vo~vn~~ih, Device id: bee529e5919516d06661ac599784f60a04e85ce5 -2023-06-03 14:42:50.056171 + : pb-IF4eU1MHNQ== ip: an~}j`ajdvb}a, Device id: 53e48929c811c3d3cf24b2d0e334806042a7ca33 -2023-06-03 15:02:43.638043 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 15:16:36.749891 + : pb-IF4nVW0_LQ== ip: b}k~}kaaihyvdy, Device id: 806b0c23668487da48d132da3807efb358a96935 -2023-06-03 15:16:37.753993 + : pb-IF4iVUUMPQ== ip: an~~agaj`}vfw, Device id: d0b911a95620a1b04eb43f31ffa9a81bbf85a04e -2023-06-03 15:18:32.370862 + : pb-IF41UBQPXA== started kick vote for pb-IF4iVUUMPQ==. -2023-06-03 15:19:02.372466 + : Kick vote End -2023-06-03 15:29:05.531215 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-03 15:29:54.710014 + : pb-IF4WUGczMQ== ip: dzva~a~|h~~mc, Device id: 220753c5a30bbc77c9dcec749d67d633217addb4 -2023-06-03 15:30:55.254370 + : pb-IF41UBQPXA== started kick vote for pb-IF4WUGczMQ==. -2023-06-03 15:31:14.024868 + : pb-IF4VU3laVA== ip: ak~~lhajaan, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-03 15:31:25.255842 + : Kick vote End -2023-06-03 15:35:55.028229 + : pb-IF40VXMlBA== ip: an~~acaihvvayn, Device id: 2567dc394522ed525d920d39eecafdfd32621b4d -2023-06-03 15:38:50.779023 + : pb-IF4cUktZNg== | kicked for chat spam -2023-06-03 15:44:23.902230 + : pb-IF4WUGQyPA== ip: ak~xh~|n~wa, Device id: 065cb87de02fe47b0ba32c0622eaefd3d8090768 -2023-06-03 15:45:54.260017 + : pb-IF5RUBkiKA== ip: bxvevva~m~xn, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-06-03 15:47:10.543520 + : pb-IF4WUGQyPA== ip: ak~xh~|n~wa, Device id: 065cb87de02fe47b0ba32c0622eaefd3d8090768 -2023-06-03 16:01:11.661028 + : pb-IF5dU3UiAw== ip: azo~{a~x`~}ia, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-03 16:03:38.202445 + : pb-IF49U0MCCA== ip: ak~}n~{a~}l, Device id: 9ea383f7480b8975143ccc19f4013e3081d1b7d7 -2023-06-03 16:05:01.476314 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 16:06:24.784977 + : pb-IF5dU3UiAw== ip: azo~{a~x`~}ia, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-03 16:07:46.108152 + : pb-IF5RUBkiKA== ip: a}j~~oaaihan`, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-06-03 16:21:37.236288 + : pb-IF49VFdbEQ== ip: a~o~va~}jiamf, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-03 16:25:36.113218 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 16:27:24.476236 + : pb-IF5dU3UiAw== ip: a~o~~acaj`ani, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-03 16:28:17.662090 + : pb-IF4cUBYfCg== ip: azo~zh~{m~}hb, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-03 16:37:08.734317 + : pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA ip: an~~afajdaie|, Device id: 936c205c0c65262d62300105d4329a28095c9790 -2023-06-03 16:39:59.391189 + : pb-IF49VFdbEQ== ip: a~o~va~}jiamf, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-03 16:51:42.036356 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-03 17:03:21.794076 + : pb-IF49VFdbEQ== ip: a~o~va~}jiamf, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-03 17:16:35.933650 + : pb-IF49VFdbEQ== ip: a~o~va~}jiamf, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-03 17:19:29.537188 + : pb-IF49VFdbEQ== ip: a~o~va~}jiamf, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-03 17:22:43.338953 + : pb-IF40UncaLg== ip: dvvc|vbm~~ma, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-03 17:22:51.375691 + : pb-IF41U2scIg== ip: an~}i`aig}vfv, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-03 17:28:38.688922 + : pb-IF4rLkwp ip: a~j~~kdaj`vvb~m, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-06-03 17:33:26.811511 + : pb-IF40UncaLg== ip: dvvc|vbm~~ma, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-03 17:34:47.125722 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-03 17:35:31.284393 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 17:38:54.095714 + : pb-IF4rLkwp ip: a~j~~kdaj`vvb~m, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-06-03 17:42:57.933519 + : pb-IF4rLkwp ip: a~j~~kdaj`vvb~m, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-06-03 17:43:16.013418 + : pb-IF4wV24HBw== ip: an~~acaja{vb}, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-06-03 17:48:47.279709 + : pb-IF40UncaLg== ip: dvvc|vbm~~ma, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-03 17:54:14.583696 + : pb-IF5RUBkiKA== ip: bxvevva~m~xn, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-06-03 17:56:09.050514 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 17:58:53.746234 + : pb-IF4IUGQRHw== ip: azo~{n~~mga`b, Device id: 75b42d0e6532c03c0a60bb7c5238043a93288156 -2023-06-03 18:08:41.127865 + : pb-IF4VVUk-CA== ip: b}k~~`aajdyvaxh, Device id: f5ada0ef13c9058742417d2cbd7305a2a8416d28 -2023-06-03 18:12:44.176116 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-03 18:16:29.078220 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 18:17:26.292682 + : pb-IF4wV24HBw== ip: an~~acaja{vb}, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-06-03 18:25:31.154945 + : pb-IF49VFdbEQ== ip: a~o~va~}jhamf, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-03 18:26:08.301774 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-06-03 18:37:27.811891 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 18:38:12.985274 + : pb-IF4LV20GMw== ip: bk~~ieaocaih}, Device id: 305f2513910ce5427877375161c5ae05dbf130aa -2023-06-03 19:13:40.978398 + : pb-IF5WU0gIUQ== ip: azj~z`~}idaii, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-03 19:14:15.095008 + : pb-IF5WU0gIUQ== ip: azj~z`~}idaii, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-03 19:14:57.242568 + : pb-IF49I04z ip: a~h~}jda``aiex, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-03 19:39:18.964222 + : pb-IF5dU3UiAw== ip: azo~{a~xh~|, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-03 20:01:17.778032 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 20:01:25.808315 + : pb-IF4IU28qPA== ip: azo~zi~zk~~kg, Device id: 2b676771bfc1043a69989576d24e1194aec0a626 -2023-06-03 20:12:18.126501 + : pb-IF5dU3UiAw== ip: azo~{a~xh~|, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-03 20:12:44.206653 + : pb-IF4rLkwp ip: a~j~~kdaj`vvb~m, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-06-03 20:21:16.146132 + : pb-IF4XVUZfFA== ip: bj~zi~xn~|n, Device id: 796c6e0013eee01a7508986e29b2cda6525e000a -2023-06-03 20:22:19.376164 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 20:30:15.104528 + : pb-IF43U0o7Aw== ip: an~}ifaibyvazo, Device id: a09d01e25240174cea2612707e52e93b11f5da7e -2023-06-03 20:37:34.899193 + : pb-IF4rLkwp ip: a~j~~kdaj`vvb~m, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-06-03 21:00:17.550786 + : Server started -2023-06-03 21:04:26.633584 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 21:10:47.100408 + : pb-IF49VFdbEQ== ip: a~o~va~}kaajcy, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-03 21:13:01.579673 + : pb-IF5WU1QJFA== ip: azo~|`~xk~zk, Device id: 4a8a384698658621fce88e219c1c5bd3c01f6e7a -2023-06-03 21:25:13.365664 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 21:33:20.213969 + : pb-IF5WU1QJFA== ip: azo~|`~xk~zk, Device id: 4a8a384698658621fce88e219c1c5bd3c01f6e7a -2023-06-03 21:37:49.249413 + : pb-IF5TUlZaUw== ip: a~o~va~}h`aid{, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-03 21:45:42.237516 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 21:50:49.377527 + : pb-IF4WUGQyPA== ip: ak~~oea`iai`, Device id: 065cb87de02fe47b0ba32c0622eaefd3d8090768 -2023-06-03 21:51:51.631374 + : pb-IF4KU0YOUw== ip: bj~~oiaogai`v, Device id: 7182b3803fd8f27e19100f098dd813ebd70e2b9f -2023-06-03 21:52:12.703639 + : pb-IF5TUlZaUw== ip: a~o~va~}h`aid{, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-03 21:53:53.032759 + : pb-IF4KU0YOUw== ip: bj~~oiaogai`v, Device id: 7182b3803fd8f27e19100f098dd813ebd70e2b9f -2023-06-03 21:54:10.079628 + : pb-IF4KU0YOUw== ip: bj~~oiaogai`v, Device id: 7182b3803fd8f27e19100f098dd813ebd70e2b9f -2023-06-03 22:01:47.711757 + : pb-IF4tUGMBCg== ip: ak~}hhaniaaf, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-06-03 22:07:29.979122 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 22:16:12.939660 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-03 22:16:31.001568 + : pb-IF5WU1QJFA== ip: azo~|`~xk~zk, Device id: 4a8a384698658621fce88e219c1c5bd3c01f6e7a -2023-06-03 22:16:47.055935 + : pb-IF5WU1QJFA== ip: azo~|`~xk~zk, Device id: 4a8a384698658621fce88e219c1c5bd3c01f6e7a -2023-06-03 22:28:31.714856 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 22:30:24.101932 + : pb-IF41UGcPNQ== ip: i~vayh~zh~|`, Device id: 7912aaeb116912fb8216874995084c198f22305d -2023-06-03 22:38:48.896712 + : pb-IF5SUBcsFQ== ip: b}k~~`iakhajc}, Device id: a3edf2d44c1ba4ef9262ee6d9191325fc46b4510 -2023-06-03 22:41:29.481527 + : pb-IF5SUBcsFQ== ip: b}k~~`iakhajc}, Device id: a3edf2d44c1ba4ef9262ee6d9191325fc46b4510 -2023-06-03 22:42:24.666954 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-03 22:47:44.915929 + : pb-IF40UncaLg== ip: dvvc|vb~k~~i, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-03 22:48:37.128908 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-03 22:49:04.257526 + : pb-IF5dUGojXQ== ip: ak~{`~ya~~jd, Device id: c8190be63dbdc034980d211da380877b420e652a -2023-06-03 23:07:43.638478 + : pb-IF4VVG8gNQ== ip: azo~zi~~idaie{, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-03 23:10:20.168334 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: aaihxvhxvd|, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-06-03 23:29:46.573868 + : pb-IF4jF1NY ip: azj~z`~{l~}i, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-03 23:36:47.140257 + : pb-IF40UGciNw== ip: awl~zo~}jfanh, Device id: 705a68e09584a42401a790b7da780cc38f6bff54 -2023-06-03 23:52:24.559265 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-03 23:57:45.809461 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: aaihxvhxvd|, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-06-04 00:10:54.779834 + : pb-IF4hU1c7BA== ip: an~}ifaje}vavn, Device id: e63c1bcfdee1e40becd4d02f7fac17809bf5d6c1 -2023-06-04 00:13:08.292630 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-04 00:41:12.578954 + : pb-IF4OPhMg ip: an~}jbai`aic~, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-04 01:58:51.491887 + : pb-IF5dU3UiAw== ip: azo~{a~xl~}jf, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-04 04:00:44.062011 + : Server started -2023-06-04 04:10:27.310569 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-04 04:52:31.886984 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-04 06:59:16.332989 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-04 07:08:59.484626 + : pb-IF4IU28qPA== ip: azo~zi~zk~ym, Device id: 2b676771bfc1043a69989576d24e1194aec0a626 -2023-06-04 08:18:20.520151 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-04 08:23:13.647645 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-04 08:27:44.518673 + : pb-IF4XVUZfFA== ip: bj~zi~xn~|n, Device id: 796c6e0013eee01a7508986e29b2cda6525e000a -2023-06-04 08:28:37.717359 + : pb-IF4XVUZfFA== ip: bj~zi~xn~|n, Device id: 796c6e0013eee01a7508986e29b2cda6525e000a -2023-06-04 08:28:47.748086 + : pb-IF4XVUZfFA== ip: bj~zi~xn~|n, Device id: 796c6e0013eee01a7508986e29b2cda6525e000a -2023-06-04 08:28:56.779724 + : pb-IF4IU28qPA== ip: azo~zi~zk~ym, Device id: 2b676771bfc1043a69989576d24e1194aec0a626 -2023-06-04 08:28:59.119797 + : pb-IF5SUGsDMQ==|| kicked > new account -2023-06-04 08:45:36.438915 + : pb-IF4zAUcy ip: dvvcxvavj~}la, Device id: 6a5ed16692cd7f0d8457a7e18b16f09a5cae5df7 -2023-06-04 08:48:17.399733 + : pb-IF4TUGJSMg== started kick vote for pb-IF4PXkIR. -2023-06-04 08:48:47.405850 + : Kick vote End -2023-06-04 08:48:56.175757 + : pb-IF4cUBYfCg== ip: azo~zh~zi~}ig, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-04 08:49:49.757605 + : pb-IF4PXkIR started kick vote for pb-IF4TUGJSMg==. -2023-06-04 08:50:15.430820 + : pb-IF4VVG8gNQ== ip: azo~zi~~icaigy, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-04 08:50:19.765559 + : Kick vote End -2023-06-04 08:50:35.514542 + : pb-IF4PXkIR ip: dvvc{vhxvb{`, Device id: 836f4656afbf757258cf8c2ba1cc4de3f434af84 -2023-06-04 08:52:43.111403 + : pb-IF4TUGJSMg== started kick vote for pb-IF4PXkIR. -2023-06-04 08:53:13.114852 + : Kick vote End -2023-06-04 08:54:46.451035 + : pb-IF4TUGJSMg== ip: a}j~zh~}hhajf, Device id: 5b6366838a6db9145967641211c974ddd2beb449 -2023-06-04 08:55:29.371599 + : pb-IF4cUBYfCg== started kick vote for pb-IF4TUGJSMg==. -2023-06-04 08:55:30.602123 + : pb-IF4VVG8gNQ== ip: azo~zi~~icaigy, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-04 08:55:59.377547 + : Kick vote End -2023-06-04 08:58:18.178668 + : pb-IF4TUGJSMg== started kick vote for pb-IF4VVG8gNQ==. -2023-06-04 08:58:48.184048 + : Kick vote End -2023-06-04 08:59:55.837408 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4OUBAqNQ==. -2023-06-04 09:00:14.837414 + : Kick vote End -2023-06-04 09:00:35.710680 + : pb-IF4TUGJSMg== ip: a}j~zh~}hhajf, Device id: 5b6366838a6db9145967641211c974ddd2beb449 -2023-06-04 09:01:39.931797 + : pb-IF4XVUZfFA== ip: bj~zi~xn~|n, Device id: 796c6e0013eee01a7508986e29b2cda6525e000a -2023-06-04 09:07:37.227865 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-04 09:12:31.355043 + : pb-IF4cUBYfCg== ip: azo~zh~zi~}ig, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-04 09:17:03.411688 + : pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA ip: dvvbo~~aeai`w, Device id: 936c205c0c65262d62300105d4329a28095c9790 -2023-06-04 09:18:36.733370 + : pb-IF4qUxBfAw== ip: a|j~~mdalhak, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-04 09:22:01.492552 + : pb-IF4cUBYfCg== ip: azo~zh~|a~~kf, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-04 09:33:40.073939 + : pb-IF5QU0waKw== ip: a|o~vo~vn~~ab, Device id: 5ab6dd3fd4e4e704d2af65ce9aba920c3f597751 -2023-06-04 09:35:55.518099 + : pb-IF4XVUZfFA== ip: bj~zi~xn~|n, Device id: 796c6e0013eee01a7508986e29b2cda6525e000a -2023-06-04 09:40:05.509482 + : pb-IF4cUktZNg== ip: a~h~}keajcwva}n, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-06-04 09:40:28.611237 + : pb-IF4VVG8gNQ== ip: azo~zi~~hdaic|, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-04 09:41:28.839858 + : pb-IF4yVXVYIw== ip: bxvc{vevawl, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-06-04 09:45:58.108148 + : pb-IF4cUktZNg== started kick vote for pb-IF4tU3olKg==. -2023-06-04 09:46:04.898126 + : pb-IF4qU2JZVA== ip: aya~~liajcve}, Device id: 3a70d7901c513e4594724ed96ee45577f43864e9 -2023-06-04 09:46:19.934605 + : pb-IF4XVUZfFA== ip: bj~zi~xn~|n, Device id: 796c6e0013eee01a7508986e29b2cda6525e000a -2023-06-04 09:46:28.114696 + : Kick vote End -2023-06-04 09:51:15.992053 + : pb-IF4VU3laVA== ip: ak~~`baifyvgy, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-04 09:51:45.075471 + : pb-IF4cUktZNg== started kick vote for pb-IF4tU3olKg==. -2023-06-04 10:03:17.269971 + : Server started -2023-06-04 10:04:09.480463 + : pb-IF4VVG8gNQ== ip: azo~zi~~hdaic|, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-04 10:07:37.853617 + : pb-IF5VUGsSUg==|| kicked > new account -2023-06-04 10:21:38.688593 + : pb-IF4uUBIvFA== ip: an~~adamiaj`v, Device id: a73b6fdd9e054dbc60c1bf0088704392b4897aaa -2023-06-04 10:23:01.038472 + : pb-IF4VU3laVA== ip: ak~~`dajcvvbo, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-04 10:24:38.432664 + : pb-IF4cUBYfCg== ip: azo~zh~{m~}ki, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-04 10:26:40.928509 + : pb-IF4VU3laVA== ip: ak~~`dajcvvbo, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-04 10:36:28.163175 + : pb-IF4cUBYfCg== ip: azo~zh~{m~}ki, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-04 10:37:16.325296 + : pb-IF4XU0gNJg== ip: ak~vh~~`aaigx, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-04 11:01:00.759361 + : pb-IF4XVHBdIQ== ip: azj~z`~}j`a`c, Device id: bb4a1622c7601f1a78263c6066c8e905a694ffb2 -2023-06-04 11:01:03.770207 + : pb-IF4XVHBdIQ== ip: azj~z`~}j`a`c, Device id: bb4a1622c7601f1a78263c6066c8e905a694ffb2 -2023-06-04 11:03:31.353075 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-04 11:31:00.397337 + : pb-IF4IU28qPA== ip: azo~zi~{m~}h, Device id: 2b676771bfc1043a69989576d24e1194aec0a626 -2023-06-04 11:33:24.969397 + : pb-IF49VFdbEQ== ip: a~o~va~}kha`f, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-04 11:41:34.743866 + : pb-IF4TUGEIDQ== ip: an~}hgajd~vey, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-04 11:41:45.790342 + : pb-IF4hVVVeHQ== ip: ak~}ifa``aj`}, Device id: d48264bb111e9406c995bd034461104ca7dd849f -2023-06-04 11:45:55.681789 + : pb-IF4SVFkaCQ== ip: a~l~~jbaiavaz, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-06-04 11:57:42.348530 + : pb-IF4jF1NY ip: azj~z`~zva|l, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-04 12:02:44.544933 + : pb-IF5RU1lfAQ== ip: an~}hganbaj`}, Device id: a6ebbd0c7acb2aec57ffe4b7fec625847473f863 -2023-06-04 12:03:08.633113 + : pb-IF5RU1lfAQ== ip: an~}hganbaj`}, Device id: a6ebbd0c7acb2aec57ffe4b7fec625847473f863 -2023-06-04 12:07:26.593964 + : pb-IF4jF1NY ip: azj~z`~{vgw, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-04 12:08:25.749389 + : pb-IF4GU1UdNQ== ip: a}h~}`~~kiajb|, Device id: 59d2818bdaf074a54bfc14e041ee875b2afff306 -2023-06-04 12:11:24.483765 + : pb-IF4dVUNTFw== ip: azo~{`~}hcaka, Device id: 454388770c402b63737cce2b3a7d99a74b923be7 -2023-06-04 12:15:36.457861 + : pb-IF4jF1NY ip: azj~z`~{vgw, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-04 12:18:42.119057 + : pb-IF4VU3laVA== ip: ak~~`dajcvvbo, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-04 12:18:54.163220 + : pb-IF4VU3laVA== ip: ak~~`dajcvvbo, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-04 12:18:54.163811 + : pb-IF4IU28qPA== ip: azo~zi~za~}md, Device id: 2b676771bfc1043a69989576d24e1194aec0a626 -2023-06-04 12:19:44.346005 + : pb-IF4VU3laVA== ip: ak~~`dajcvvbo, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-04 12:24:32.349933 + : pb-IF4IUhMeFg== ip: azo~{l~~ogaigx, Device id: df4c23617e32ad772632dbb878d1569e0e12d64d -2023-06-04 12:24:55.194045 + : pb-IF4VU3laVA== started kick vote for pb-IF4wUBMOVg==. -2023-06-04 12:25:25.196683 + : Kick vote End -2023-06-04 12:28:26.929443 + : pb-IF4VU3laVA== started kick vote for pb-IF4wUBMOVg==. -2023-06-04 12:28:56.937520 + : Kick vote End -2023-06-04 12:30:57.862836 + : pb-IF4SVFkaCQ== ip: a~l~~jbai`}ve~, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-06-04 12:31:56.091413 + : pb-IF43U0o7Aw== ip: an~}hgandaoi, Device id: a09d01e25240174cea2612707e52e93b11f5da7e -2023-06-04 12:31:57.519801 + : pb-IF4VU3laVA== started kick vote for pb-IF4wUBMOVg==. -2023-06-04 12:32:27.523057 + : Kick vote End -2023-06-04 12:32:32.218700 + : pb-IF4TUGEIDQ== ip: an~}hhaigvbzi, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-04 12:35:39.154436 + : pb-IF4VU3laVA== started kick vote for pb-IF4wUBMOVg==. -2023-06-04 12:36:09.160862 + : Kick vote End -2023-06-04 12:36:29.207123 + : pb-IF4jF1NY ip: azj~z`~{va}h, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-04 12:37:20.389028 + : pb-IF4TV2w6Bw== ip: azo~zi~|h~~o`, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-06-04 12:37:46.469597 + : pb-IF41U2scIg== ip: ak~}hhaniaaf, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-04 12:39:25.827416 + : pb-IF4TUGEIDQ== ip: an~}hhaigvbzi, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-04 12:40:32.040676 + : pb-IF4TV2w6Bw== ip: azo~{a~~aaaii{, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-06-04 12:41:49.312720 + : pb-IF4TV2w6Bw== ip: azo~{a~~aaaii{, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-06-04 12:44:58.907738 + : pb-IF4TUGEIDQ== started kick vote for pb-IF4wUBMOVg==. -2023-06-04 12:45:04.534062 + : Kick vote End -2023-06-04 12:46:16.282604 + : pb-IF4TV2w6Bw== ip: azo~zi~yvaxn, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-06-04 12:53:19.846801 + : pb-IF5VU1JZMw== ip: an~}ica`daia~, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-04 12:53:50.974306 + : pb-IF4TUGEIDQ== ip: an~}hhaigvbzi, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-04 12:55:29.843641 + : pb-IF4TUGEIDQ== started kick vote for pb-IF4yUGYGAw==. -2023-06-04 12:55:59.846428 + : Kick vote End -2023-06-04 12:57:53.904737 + : pb-IF41U2scIg== ip: ak~}hhaniaaf, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-04 13:02:52.017766 + : pb-IF5dU3UiAw== ip: azo~{a~xm~~ai, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-04 13:03:47.235632 + : pb-IF4TUGEIDQ== ip: an~}hhaigvbzi, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-04 13:05:36.608534 + : pb-IF4jF1NY ip: azj~z`~~vi}, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-04 13:15:01.733077 + : pb-IF4gUksyMQ== ip: an~}iaaie{vc}, Device id: b0ef821c8b60e5fcf4bad99d322e2a9451de48ac -2023-06-04 13:18:53.668698 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-06-04 13:19:45.830528 + : pb-IF5VU1JZMw== ip: an~}ica`daia~, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-04 13:23:07.512574 + : pb-IF4TUGEIDQ== ip: an~}hgajd{vayo, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-04 13:24:55.939621 + : pb-IF4TUGEIDQ== ip: an~}hgajd{vayo, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-04 13:28:25.730038 + : pb-IF5WU0gIUQ== ip: azj~z`~}icaj`w, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-04 13:28:39.770831 + : pb-IF5WU0gIUQ== ip: azj~z`~}icaj`w, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-04 13:30:50.249780 + : pb-IF5WU0gIUQ== ip: azj~z`~}icaj`w, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-04 13:40:55.415462 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-04 13:43:19.949665 + : pb-IF49I04z ip: dvvcxvbk~{`, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-04 13:50:39.497237 + : pb-IF5TUlZaUw== ip: a~o~va~~ahana, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-04 13:51:14.616138 + : pb-IF4FU0UkVw== ip: dvvbm~|k~yi, Device id: 20dae1bfd78a21a744a1f1c6938db9816f145909 -2023-06-04 13:57:09.905751 + : pb-IF4AU0IoCA== ip: bxvf}vb}h~xh, Device id: 5338c9f7857c9f234f68a894e2a295023d1af3d3 -2023-06-04 14:00:01.588722 + : pb-IF49I04z ip: dvvcxvbk~{`, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-04 14:06:31.167493 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-04 14:19:58.884017 + : pb-IF4IU28qPA== ip: azo~zi~yh~~j, Device id: 2b676771bfc1043a69989576d24e1194aec0a626 -2023-06-04 14:20:03.195228 + : pb-IF4HUGkSVw==|| kicked > new account -2023-06-04 14:23:12.622936 + : pb-IF4zUBUlNg== ip: b}k~}khaja}vawa, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-04 14:33:33.046915 + : pb-IF49I04z ip: dvvcxvbk~{`, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-04 14:42:25.279600 + : pb-IF4FU0UkVw== ip: dvvbm~|k~yi, Device id: 20dae1bfd78a21a744a1f1c6938db9816f145909 -2023-06-04 14:45:05.819034 + : pb-IF4WUGQyPA== ip: ak~~oeaicyvao, Device id: 065cb87de02fe47b0ba32c0622eaefd3d8090768 -2023-06-04 14:46:25.112711 + : pb-IF5TUlZaUw== ip: a~o~va~~ahana, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-04 14:51:30.289312 + : pb-IF5SU0oKLA== ip: a|o~vo~~idaii|, Device id: e5f0f502c7b9919be16ba8d8149a7dc1435c1841 -2023-06-04 14:52:05.446036 + : pb-IF5SU0oKLA== ip: a|o~vo~~idaii|, Device id: e5f0f502c7b9919be16ba8d8149a7dc1435c1841 -2023-06-04 14:52:51.651897 + : pb-IF4cUBYfCg== ip: azo~zh~zn~vk, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-04 14:53:01.690249 + : pb-IF4UUGdTJw== ip: axi~xa~~lgani, Device id: 0f28ccaf2f3a7b951c9c2665e4544595dbc61b1a -2023-06-04 14:59:51.276148 + : pb-IF4jF1NY ip: azj~z`~~vg, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-04 15:08:30.255146 + : pb-IF4dU1IOKQ== ip: b}k~}kaaidvf}, Device id: 9868901ff9c5ab0966f211890cc5095c8cf3e7eb -2023-06-04 15:10:24.940897 + : pb-IF4GUGpSVg==|| kicked > new account -2023-06-04 15:11:41.922971 + : pb-IF4cU20KEw== ip: azj~zo~|o~}jh, Device id: e8c3a734682b51d5302f82da0e2a4b7a65d1e22a -2023-06-04 15:12:55.168820 + : pb-IF4cUBYfCg== ip: azo~zh~zn~vk, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-04 15:13:23.264109 + : pb-IF4cU20KEw== ip: azj~zo~|o~}jh, Device id: e8c3a734682b51d5302f82da0e2a4b7a65d1e22a -2023-06-04 15:15:29.806983 + : pb-IF4cU20KEw== ip: azj~zo~|o~}jh, Device id: e8c3a734682b51d5302f82da0e2a4b7a65d1e22a -2023-06-04 15:17:33.215026 + : pb-IF4cU20KEw== ip: azj~zo~|o~}jh, Device id: e8c3a734682b51d5302f82da0e2a4b7a65d1e22a -2023-06-04 15:18:10.339958 + : pb-IF48UBgBCg== ip: b~h~zn~vn~wk, Device id: f7918eddd5595888330962178c9eac4ad690149d -2023-06-04 15:19:01.544940 + : pb-IF4cU20KEw== ip: azj~zo~|o~}jh, Device id: e8c3a734682b51d5302f82da0e2a4b7a65d1e22a -2023-06-04 15:22:04.236520 + : pb-IF4lUGUCFw== ip: ak~~neaj`ajb{, Device id: 1090f78bbce659b4b70c7d36615fa16e1034e60b -2023-06-04 15:22:27.316171 + : pb-IF4yU28dPQ== ip: azj~zo~zh~}h, Device id: 7b69a76a036e26281208ec5c60892714eb36333f -2023-06-04 15:22:42.256318 + : pb-IF4cU20KEw== started kick vote for pb-IF4lUGUCFw==. -2023-06-04 15:22:45.924915 + : pb-IF4lUGUCFw== kicked by kickvotes. -2023-06-04 15:23:35.523978 + : pb-IF4TUGEIDQ== ip: an~}hgajdzvby, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-04 15:23:48.205559 + : pb-IF4cU20KEw== started kick vote for pb-IF4TUGEIDQ==. -2023-06-04 15:23:51.143886 + : pb-IF4TUGEIDQ== kicked by kickvotes. -2023-06-04 15:28:59.866213 + : pb-IF41U2scIg== ip: ak~}hhaniaaf, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-04 15:31:41.496657 + : pb-IF4TUGEIDQ== ip: an~}hgajdzvby, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-04 15:32:53.813937 + : pb-IF4yU28dPQ== ip: azj~zo~zh~}h, Device id: 7b69a76a036e26281208ec5c60892714eb36333f -2023-06-04 15:41:09.845775 + : pb-IF4MUlYtUQ== ip: azo~{n~~leaidz, Device id: 8c66ad4b73db1af0504175c9f4d3b10298b04764 -2023-06-04 15:43:26.336440 + : pb-IF4MUlYtUQ== ip: azo~{n~~leaidz, Device id: 8c66ad4b73db1af0504175c9f4d3b10298b04764 -2023-06-04 15:43:35.363956 + : pb-IF5dU3UiAw== ip: azo~{a~wi~}he, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-04 15:43:41.381822 + : pb-IF4cVXlaDQ== ip: ak~~j`aif{vg, Device id: ce5e2f736e4e516430adfe856033f9b818cd17d6 -2023-06-04 15:44:09.506283 + : pb-IF40U3M9Iw== ip: ak~~lhaj`ajb, Device id: 3883806dd6267e8841d2eca75af93f435fb2d31f -2023-06-04 15:45:20.740506 + : pb-IF40U3M9Iw== ip: ak~~lhaj`ajb, Device id: 3883806dd6267e8841d2eca75af93f435fb2d31f -2023-06-04 15:46:25.961692 + : pb-IF48UGccBw== ip: ak~~j`aacaog, Device id: ef298906ebef708da13843d9630f1ee42dfe96e0 -2023-06-04 15:47:05.122086 + : pb-IF40VXMlBA== ip: an~~acaihvvazn, Device id: 2567dc394522ed525d920d39eecafdfd32621b4d -2023-06-04 16:00:43.548896 + : pb-IF5dU3UiAw== ip: azo~{a~wi~}he, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-04 16:02:57.052651 + : pb-IF4uUBIvFA== ip: an~~adamiaj`v, Device id: a73b6fdd9e054dbc60c1bf0088704392b4897aaa -2023-06-04 16:03:34.218413 + : pb-IF4VVG8gNQ== ip: azo~zi~~iiaje, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-04 16:07:04.977593 + : Server started -2023-06-04 16:07:05.984293 + : pb-IF4VVG8gNQ== ip: azo~zi~~iiaje, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-04 16:07:06.985080 + : pb-IF5dU3UiAw== ip: azo~{a~wi~}he, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-04 16:15:23.854324 + : pb-IF49VFdbEQ== ip: an~}hfaj`zva}i, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-04 16:27:36.742197 + : pb-IF4GUBc7AA== ip: b}k~}kaaih|vg, Device id: ef7261e7f53f2fd79626af05029ec7fbcc6a76ac -2023-06-04 16:30:46.561320 + : pb-IF4VU3laVA== ip: ak~~`dajcvvbo, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-04 16:30:55.584662 + : pb-IF4sUGMeVA== ip: dvvcyvivvb{o, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-06-04 16:33:54.241873 + : pb-IF41U2scIg== ip: ak~}hhaniaaf, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-04 16:39:46.495483 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-04 16:41:01.822418 + : pb-IF4cUBYfCg== ip: azo~zh~|k~}n, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-04 16:45:04.749147 + : pb-IF4VU3laVA== ip: ak~~`dajcvvbo, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-04 16:45:29.816585 + : pb-IF4VU3laVA== ip: ak~~`dajcvvbo, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-04 16:47:08.178814 + : pb-IF5WU0gIUQ== ip: azj~z`~}ica`e, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-04 16:47:58.382981 + : pb-IF4VU3laVA== ip: ak~~`dajcvvbo, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-04 16:48:00.389637 + : pb-IF5WU0gIUQ== ip: azj~z`~}ica`e, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-04 16:48:30.506140 + : pb-IF49VFdbEQ== ip: an~}hfaj`zva}i, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-04 16:49:19.685288 + : pb-IF4TV3RbDA== ip: b}k~~ogakfaj`z, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-06-04 16:50:51.986370 + : pb-IF4VU3laVA== started kick vote for pb-IF4TV3RbDA==. -2023-06-04 16:51:21.986329 + : Kick vote End -2023-06-04 16:53:00.530929 + : pb-IF4wV24HBw== ip: an~~acajbvb{h, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-06-04 16:57:20.467990 + : pb-IF5RUGInJg== ip: ax`~}lhaia{vi, Device id: e6a7402ea4ee5bd392f89840e4f70824c0c64def -2023-06-04 16:58:17.691028 + : pb-IF4cUBYfCg== ip: azo~zh~zo~}kc, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-04 17:02:37.601895 + : pb-IF4MU085LA== ip: b}k~~oha`caig, Device id: fc09720498a246ca809ec2149e0e97ed763a2cc2 -2023-06-04 17:09:31.090751 + : pb-IF4cUBYfCg== ip: azo~zh~zo~}kc, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-04 17:17:52.012848 + : pb-IF5VU1JZMw== ip: an~}ica`daia~, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-04 17:22:25.083565 + : pb-IF4cUktZNg== ip: a~h~}keajcwva}n, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-06-04 17:24:44.616193 + : pb-IF49VFdbEQ== ip: an~}hfaj`zva}i, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-04 17:25:21.737444 + : pb-IF49I04z ip: dvvcxvbk~{`, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-04 17:26:09.906112 + : pb-IF48UhEiEg== ip: a~m~v`~|`~}j, Device id: 33a8969f89cf728e65a2f6ff383ac3a2e126c4e2 -2023-06-04 17:26:39.080300 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jf, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-04 17:26:57.128266 + : pb-IF48UhEiEg== ip: a~m~v`~|`~}j, Device id: 33a8969f89cf728e65a2f6ff383ac3a2e126c4e2 -2023-06-04 17:30:00.838133 + : pb-IF4cUktZNg== ip: a~h~}keajcwva}n, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-06-04 17:31:13.130141 + : pb-IF4WUBJcVQ== ip: ak~}maamiaji, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-06-04 17:39:58.951542 + : pb-IF49VFdbEQ== ip: an~}hfaj`zva}i, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-04 17:41:23.267196 + : pb-IF48UhEiEg== ip: a~m~v`~|`~}j, Device id: 33a8969f89cf728e65a2f6ff383ac3a2e126c4e2 -2023-06-04 17:42:03.434854 + : pb-IF48UhEiEg== ip: a~m~v`~|`~}j, Device id: 33a8969f89cf728e65a2f6ff383ac3a2e126c4e2 -2023-06-04 17:42:18.490577 + : pb-IF4VUlcBVQ== ip: azj~z`~~mgaiew, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-06-04 17:47:39.749361 + : pb-IF4VUlcBVQ== ip: azj~z`~~mgaiew, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-06-04 17:48:09.857382 + : pb-IF4cUktZNg== ip: a~h~}keajcwva}n, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-06-04 17:53:24.937574 + : pb-IF5VU1JZMw== ip: an~}ica`daia~, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-04 17:54:06.086447 + : pb-IF4cUBYfCg== ip: azo~zh~zh~~ad, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-04 17:57:27.790311 + : pb-IF5TUlZaUw== ip: a~o~va~}heaiby, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-04 17:58:35.027727 + : pb-IF5TUlZaUw== ip: a~o~va~}heaiby, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-04 17:59:39.285054 + : pb-IF49I04z ip: dvvcxvbk~{`, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-04 18:02:28.936301 + : pb-IF4PU2Y6VQ== ip: a~h~}jfaih|vc, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-06-04 18:02:58.032551 + : pb-IF4PU2Y6VQ== ip: a~h~}jfaih|vc, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-06-04 18:03:18.110174 + : pb-IF49VFdbEQ== ip: an~}hfaj`zva}i, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-04 18:03:58.094059 + : pb-IF4PU2Y6VQ== started kick vote for pb-IF5TUlZaUw==. -2023-06-04 18:04:15.315075 + : pb-IF40UncaLg== ip: dvvc|vb~j~~`g, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-04 18:04:28.100371 + : Kick vote End -2023-06-04 18:04:47.433189 + : pb-IF4rV3cFEg== ip: ak~~l~~jiaicz, Device id: 8fc30db451300fc1018f625ac62e7aae76bd6f51 -2023-06-04 18:05:25.590779 + : pb-IF4rV3cFEg== ip: ak~~l~~jiaicz, Device id: 8fc30db451300fc1018f625ac62e7aae76bd6f51 -2023-06-04 18:07:07.956328 + : pb-IF4HU0VcCA== ip: azl~}kiaiezvb{j, Device id: 0048b280144da2caaeb58a3dd845b91cdf4d29b8 -2023-06-04 18:11:48.974431 + : pb-IF49VFdbEQ== ip: an~}hfaj`zva}i, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-04 18:16:50.148396 + : pb-IF49VFdbEQ== ip: an~}hfaj`zva}i, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-04 18:16:51.151309 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jf, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-04 18:21:18.160770 + : pb-IF4jF1NY ip: azj~z`~~vb{h, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-04 18:22:18.385187 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhva}l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-06-04 18:23:24.624384 + : pb-IF4yU28dPQ== ip: azj~zo~|o~~m, Device id: 7b69a76a036e26281208ec5c60892714eb36333f -2023-06-04 18:24:35.884188 + : pb-IF41U2scIg== ip: ak~}hhaniaaf, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-04 18:28:33.685142 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-04 18:30:18.271723 + : pb-IF4UU0wiKg== started kick vote for pb-IF4wU1MPEg==. -2023-06-04 18:30:48.273179 + : Kick vote End -2023-06-04 18:32:42.627094 + : pb-IF4OU0UyUA== ip: azl~}kiaiezvb{j, Device id: fb3fbf605df31d20de44aacf85159ae5a128f168 -2023-06-04 18:33:31.792608 + : pb-IF5TUlZaUw== ip: a~o~va~}heaiby, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-04 18:34:31.968380 + : pb-IF4WUGczMQ== ip: dzva}o~{m~|m, Device id: 220753c5a30bbc77c9dcec749d67d633217addb4 -2023-06-04 18:34:32.972243 + : pb-IF4jF1NY ip: azj~z`~vaxm, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-04 18:35:17.123083 + : pb-IF49VFdbEQ== ip: an~}hfaj`zva}i, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-04 18:38:52.903350 + : pb-IF5RUGInJg== ip: ax`~}lhaia{vi, Device id: e6a7402ea4ee5bd392f89840e4f70824c0c64def -2023-06-04 18:39:53.172658 + : pb-IF4cUBYfCg== ip: azo~zh~zh~~ad, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-04 18:41:17.505586 + : pb-IF5RUBkiKA== ip: a}j~~oaajcajc, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-06-04 18:41:19.507098 + : pb-IF4DUGRYKA== ip: azj~z`~}k`ai`}, Device id: 9d7b6f3a4670448fc2fe9d9c5585525df3ed9872 -2023-06-04 18:41:36.565808 + : pb-IF4LU0wKIw== ip: azj~zo~~agaih|, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-06-04 18:42:24.756560 + : pb-IF4jF1NY ip: azj~z`~vaxm, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-04 18:43:32.009220 + : pb-IF4TV3RbDA== ip: b}k~~ogakfaj`z, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-06-04 18:45:08.383080 + : pb-IF4DUGRYKA== ip: azj~z`~}k`ai`}, Device id: 9d7b6f3a4670448fc2fe9d9c5585525df3ed9872 -2023-06-04 18:46:46.755521 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhva}l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-06-04 18:49:01.264427 + : pb-IF5dU3UiAw== ip: azo~{a~wa~~l`, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-04 18:49:14.314456 + : pb-IF4jF1NY ip: azj~z`~vaxm, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-04 18:51:19.577538 + : pb-IF4jF1NY started kick vote for pb-IF5dU3UiAw==. -2023-06-04 18:51:49.584513 + : Kick vote End -2023-06-04 18:55:00.812691 + : pb-IF5WUBEBFg== started kick vote for pb-IF4wU1MPEg==. -2023-06-04 18:55:30.809780 + : Kick vote End -2023-06-04 18:57:27.260112 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhva}l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-06-04 18:58:19.463337 + : pb-IF5dU3UiAw== ip: azo~{a~wa~~l`, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-04 18:58:40.616988 + : pb-IF4jF1NY started kick vote for pb-IF5dU3UiAw==. -2023-06-04 18:59:10.622038 + : Kick vote End -2023-06-04 19:03:41.674069 + : pb-IF4PU2Y6VQ== ip: a~h~}jfaih|vc, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-06-04 19:07:43.581461 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-04 19:10:35.152139 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-04 19:11:01.250369 + : pb-IF49VFdbEQ== ip: an~}hfaj`zva}i, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-04 19:18:44.119652 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-04 19:25:43.671027 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-04 19:34:37.770632 + : pb-IF42UGgDCw== ip: ak~~lgaj`vva{j, Device id: 30120c4e06b22abd1dc138739178c3004ed4b37a -2023-06-04 19:38:52.733771 + : pb-IF5RUBkiKA== ip: a}j~~oaajcajc, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-06-04 19:45:35.310827 + : pb-IF49VFdbEQ== ip: an~}hfaj`}va}i, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-04 19:50:27.348218 + : pb-IF4wV24HBw== ip: an~~acajbvb{h, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-06-04 19:52:50.016310 + : pb-IF49VFdbEQ== ip: an~}hfaj`}va}i, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-04 19:55:34.654089 + : pb-IF49VFdbEQ== ip: an~}hfaj`}va}i, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-04 19:57:59.181596 + : pb-IF41UGcPNQ== ip: i~vayh~zh~|`, Device id: 7912aaeb116912fb8216874995084c198f22305d -2023-06-04 20:03:50.362031 + : pb-IF4hVHg7CA== ip: azo~|k~}hfaab, Device id: 44056c893a669391687e2197c88bd5699b4c785b -2023-06-04 20:04:56.587791 + : pb-IF4hVHg7CA== ip: azo~|k~}hfaab, Device id: 44056c893a669391687e2197c88bd5699b4c785b -2023-06-04 20:11:14.994862 + : pb-IF4jF1NY ip: azj~z`~zh~}o, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-04 20:11:48.092720 + : pb-IF49VFdbEQ== ip: an~}hfaj`}va}i, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-04 20:22:17.459250 + : pb-IF4OUBY-HA== ip: a|j~~mdakeajay, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-06-04 20:23:19.707381 + : pb-IF4qUBlTJg== ip: an~}hbaiivavo, Device id: df39427dfcf8c7bf8557360f56b36f938bd76932 -2023-06-04 20:28:48.932667 + : pb-IF4hVHg7CA== ip: azo~|k~}hfaab, Device id: 44056c893a669391687e2197c88bd5699b4c785b -2023-06-04 20:32:27.842947 + : pb-IF5RUGYFPA== ip: azo~|l~{m~vl, Device id: a6f8b8f546b075c2b5b996c172e832133a7e79cb -2023-06-04 20:37:27.896624 + : pb-IF40UncaLg== ip: a~i~~jeaj`wvb{`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-04 20:38:18.094863 + : pb-IF4TUGEIDQ== ip: an~}hhaig{vdx, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-04 20:40:01.477913 + : pb-IF5dU3UiAw== ip: azo~{a~y`~}hf, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-04 20:42:08.943834 + : pb-IF4cUBYfCg== ip: azo~zh~{j~|a, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-04 20:43:58.359937 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-04 20:46:41.937923 + : pb-IF5QU3AaLg== ip: dvvc{vh{vd, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-06-04 20:47:12.649455 + : pb-IF4BUGktJw==|| kicked > new account -2023-06-04 20:48:41.376794 + : pb-IF5VU1JZMw== ip: an~}ica`daia~, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-04 20:50:47.843239 + : pb-IF43A0ZS ip: dxvia`aaih{, Device id: d6082df172fcd00168fd24bcd92a7d488b5e02d4 -2023-06-04 20:53:29.462948 + : pb-IF5XVEQFFw== ip: azo~{n~~meaig~, Device id: 0e1631411da49abab97cf776e45447230798b50f -2023-06-04 20:53:30.469780 + : pb-IF43A0ZS ip: dxvia`aaih{, Device id: d6082df172fcd00168fd24bcd92a7d488b5e02d4 -2023-06-04 20:56:03.978554 + : pb-IF4VUlcBVQ== ip: azj~z`~~mbai`, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-06-04 20:57:13.219298 + : pb-IF4VUlcBVQ== ip: azj~z`~~mbai`, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-06-04 20:58:58.845545 + : pb-IF4KUGpYXQ==|| kicked > new account -2023-06-04 20:59:17.017366 + : pb-IF4HUGkZIA==|| kicked > new account -2023-06-04 21:02:59.796436 + : pb-IF5VU1JZMw== started kick vote for pb-JiNJARBfUURFX1lFFkBUVFBGE0hXQllA. -2023-06-04 21:03:08.787826 + : pb-JiNJARBfUURFX1lFFkBUVFBGE0hXQllA kicked by kickvotes. -2023-06-04 21:04:27.875955 + : pb-IF4CUhUlFg== ip: b}k~}kiaaiaka, Device id: 7ff409e87c661733dd5ac8860f45e13b78990856 -2023-06-04 21:04:49.372093 + : pb-IF5VU1JZMw== started kick vote for pb-IF4CUhUlFg==. -2023-06-04 21:04:58.464165 + : pb-IF4CUhUlFg== kicked by kickvotes. -2023-06-04 21:08:46.913241 + : pb-IF40UncaLg== ip: a~i~~jeaj`wvb{`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-04 21:12:00.558095 + : pb-IF41U0YxAw== ip: a~n~y`~x`~~hc, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-04 21:13:54.946807 + : pb-IF4VU3laVA== ip: ak~~`ca`baib, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-04 21:15:51.381662 + : pb-IF4TUGEIDQ== ip: an~}hgajdxvb~, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-04 21:18:43.053761 + : pb-IF4VU3laVA== ip: ak~~`ca`baib, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-04 21:22:33.874694 + : pb-IF4JUBICXA== ip: a|o~vo~wa~x, Device id: afbcc2be54038c709746560f3d68fccd8aca53c4 -2023-06-04 21:27:44.093780 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhva}l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-06-04 21:30:20.644547 + : pb-IF4VU3laVA== ip: ak~~`ca`baib, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-04 21:30:29.678488 + : pb-IF4VU3laVA== ip: ak~~`ca`baib, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-04 21:30:41.710764 + : pb-IF4VU3laVA== ip: ak~~`ca`baib, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-04 21:34:16.854640 + : pb-IF5dU3UiAw== ip: azo~{a~y`~}hf, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-04 21:36:57.494810 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-04 21:55:37.692459 + : pb-IF42U1MvNg== ip: eaa`ai`xva}n, Device id: 07007f2e0e6fdfb0d7925b5381e9b538574461d3 -2023-06-04 21:56:40.955997 + : pb-IF5WU0gIUQ== ip: azj~z`~}icami, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-04 21:58:01.247622 + : pb-IF42U1MvNg== ip: eaa`ai`xva}n, Device id: 07007f2e0e6fdfb0d7925b5381e9b538574461d3 -2023-06-04 22:02:40.319464 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-04 22:12:12.261264 + : Server started -2023-06-04 22:12:13.272384 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-04 22:14:24.782033 + : pb-IF4VUlcBVQ== ip: azj~z`~~jiajd|, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-06-04 22:15:28.011509 + : pb-IF4cUBYfCg== ip: azo~{m~~`eaihv, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-04 22:22:28.992252 + : pb-IF5VUGpdKg== started kick vote for pb-IF4OUBAqNQ==. -2023-06-04 22:22:58.998914 + : Kick vote End -2023-06-04 22:31:12.561729 + : pb-IF4cUktZNg== ip: a~h~}keajcwva}n, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-06-04 22:36:49.871787 + : pb-IF40UlUhJA== ip: ak~wj~~jeai, Device id: 7224714a470e3a14106d7f3f1a010d4a71ee0367 -2023-06-04 22:42:26.160957 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jf, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-04 22:44:33.598214 + : pb-IF49VFdbEQ== ip: an~}hfaj`}va}i, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-04 22:45:18.764033 + : pb-IF4NUmY5Nw== ip: ak~~maaihvvawm, Device id: 14f6c1a8e2da0f162e2f842c4655a9e8e8f3c3e9 -2023-06-04 22:46:14.965580 + : pb-IF4HVHpcFQ== ip: dvvcyva}k~~oc, Device id: 722099821f2d7b77a509edac87bacc7f8a830939 -2023-06-04 22:50:34.867862 + : pb-IF4OU2QjMQ== | kicked > reason:Banned account -2023-06-04 22:51:27.688979 + : pb-IF4iUGk5Aw==|| kicked > new account -2023-06-04 22:54:10.763180 + : pb-IF49VFdbEQ== ip: an~}hfaj`}va}i, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-04 22:54:15.786224 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~~lf, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-06-04 22:54:28.840339 + : pb-IF49VFdbEQ== ip: an~}hfaj`}va}i, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-04 23:07:32.972487 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-04 23:08:32.173836 + : pb-IF4IUGExHw== ip: ak~{`~ya~~jd, Device id: f7691dea6c35e9b72eb55bb69fa024eb1abf57e6 -2023-06-04 23:08:55.260136 + : pb-IF4PVVI4Dg== ip: azo~zi~~mfaja, Device id: 6a29727aad63a3fe69895447fa78c9d00140acab -2023-06-04 23:13:37.313314 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-04 23:15:02.628477 + : pb-IF4OPhMg ip: a~o~va~zk~yn, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-04 23:22:46.476113 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-04 23:24:16.829235 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-04 23:24:48.943904 + : pb-IF4IUGExHw== ip: ak~{`~ya~~jg, Device id: f7691dea6c35e9b72eb55bb69fa024eb1abf57e6 -2023-06-04 23:32:00.621175 + : pb-IF40UlUhJA== ip: dxvc~vavi~zi, Device id: 7224714a470e3a14106d7f3f1a010d4a71ee0367 -2023-06-04 23:32:53.815453 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~~ma, Device id: 84e8c68a67793414f4f9ba929c4417de1a04f4b0 -2023-06-04 23:33:55.026772 + : pb-IF49VFQlPA== ip: azo~zh~yn~yn, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-06-04 23:36:56.765093 + : pb-IF4TV3RbDA== ip: b}k~~ogakfaj`z, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-06-04 23:37:47.923637 + : pb-IF49VFdbEQ== ip: an~}hfaj`zva}i, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-04 23:45:15.440923 + : pb-IF4iU0QaEw== ip: dvvd|vazk~~lf, Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-04 23:47:15.860342 + : pb-IF4VUlcBVQ== ip: azj~z`~~`eajd{, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-06-04 23:47:44.955820 + : pb-IF41U2scIg== ip: ak~}hhaniaaf, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-04 23:50:08.494284 + : pb-IF49VFdbEQ== ip: an~}hfaj`zva}i, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-04 23:50:15.128329 + : pb-IF4AUGkaUQ==|| kicked > new account -2023-06-04 23:51:48.874098 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~~lf, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-06-04 23:52:28.353861 + : Server started -2023-06-04 23:52:39.399943 + : pb-IF41U2scIg== ip: ak~}hhaniaaf, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-04 23:53:41.649671 + : pb-IF49VFdbEQ== ip: an~}hfaj`zva}i, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-04 23:55:52.089252 + : pb-IF41U2scIg== ip: ak~}hhaniaaf, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-04 23:56:16.178771 + : pb-IF49VFdbEQ== ip: an~}hfaj`zva}i, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-04 23:56:48.297007 + : pb-IF41U2scIg== ip: ak~}hhaniaaf, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-04 23:59:56.961821 + : pb-IF49VFdbEQ== ip: an~}hfaj`zva}i, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 00:03:17.689708 + : pb-IF4HU0VcCA== ip: azl~}kiaiezvb{j, Device id: 0048b280144da2caaeb58a3dd845b91cdf4d29b8 -2023-06-05 00:05:32.172410 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvcy, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 00:08:14.782144 + : pb-IF41U0YxAw== ip: a~n~y`~x`~~hc, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-05 00:08:39.862943 + : pb-IF4cUktZNg== ip: a~h~}keajcwva}n, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-06-05 00:09:24.021020 + : pb-IF5WUBEBFg== ip: dvvcyva}k~~`d, Device id: 218d091b86cc9ed6276d93e8613c32207b3c6aac -2023-06-05 00:10:27.269967 + : pb-IF49VFQlPA== ip: azo~zh~yn~yn, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-06-05 00:14:52.239813 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~~lf, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-06-05 00:15:08.310320 + : pb-IF41U2scIg== ip: ak~}hhaniaaf, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-05 00:21:06.467314 + : pb-IF41U0YxAw== started kick vote for pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE. -2023-06-05 00:21:36.468732 + : Kick vote End -2023-06-05 00:26:16.801495 + : pb-IF4cVGMHLA== ip: a~h~}jdaibxvayh, Device id: bd8af6fbadf96a73e76ec28679585dd0bedfb332 -2023-06-05 00:29:44.670731 + : Server started -2023-06-05 00:29:45.675337 + : pb-IF4cVGMHLA== ip: a~h~}jdaibxvayh, Device id: bd8af6fbadf96a73e76ec28679585dd0bedfb332 -2023-06-05 00:29:45.675599 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvcy, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 00:29:45.676023 + : pb-IF4LVW5cMQ== ip: al~}`~~mfai`, Device id: 4872f6912c0df321761914266c0ff4d9df1d8e1c -2023-06-05 00:29:45.676263 + : pb-IF49VFQlPA== ip: azo~zh~yn~yn, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-06-05 00:29:45.676449 + : pb-IF4cUktZNg== ip: a~h~}keajcwva}n, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-06-05 00:39:56.056086 + : Server started -2023-06-05 00:39:57.065266 + : pb-IF49VFQlPA== ip: azo~zh~yn~yn, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-06-05 00:39:57.065511 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvcy, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 00:39:58.068981 + : pb-IF4LVW5cMQ== ip: al~}`~~mfai`, Device id: 4872f6912c0df321761914266c0ff4d9df1d8e1c -2023-06-05 00:40:06.097261 + : pb-IF4cVGMHLA== ip: a~h~}jdaibxvayh, Device id: bd8af6fbadf96a73e76ec28679585dd0bedfb332 -2023-06-05 00:40:47.244092 + : pb-IF41U2scIg== ip: ak~}hhaniaaf, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-05 00:43:43.863378 + : pb-IF49VFdbEQ== ip: an~}hfaiiyvcy, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 00:49:09.037567 + : pb-IF4LVW5cMQ== | kicked for chat spam -2023-06-05 00:55:17.409261 + : pb-IF4LVW5cMQ== ip: al~}`~~mfai`, Device id: 4872f6912c0df321761914266c0ff4d9df1d8e1c -2023-06-05 00:57:29.887459 + : pb-IF4cVGMHLA== ip: b}k~~`dajbvbz, Device id: b055fe844b57210943a3bba37a3a7be5abc140d9 -2023-06-05 00:59:15.238523 + : pb-IF4gUnozMg== ip: ayh~~oganaaihy, Device id: c87f80fdbfa52859de2a813d657598b0fd6df74e -2023-06-05 01:13:39.212396 + : pb-IF4IUGVTMQ== ip: an~~adajavayj, Device id: c122767b74fe0c99f1c70247ae0b7d6375493e1d -2023-06-05 01:18:22.312781 + : pb-IF40UGciNw== ip: awl~zo~}jfanh, Device id: 705a68e09584a42401a790b7da780cc38f6bff54 -2023-06-05 01:53:00.131073 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 02:23:28.195392 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 03:05:56.277394 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 03:26:31.566280 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 05:11:35.511912 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 05:32:38.388623 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 06:14:18.283321 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 06:34:43.891486 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 06:35:04.980703 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 06:55:19.622616 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 07:16:24.311972 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 07:39:58.674776 + : Server started -2023-06-05 07:58:20.830309 + : pb-IF40UGciNw== ip: awl~zo~}jfanh, Device id: 705a68e09584a42401a790b7da780cc38f6bff54 -2023-06-05 07:59:00.988931 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 08:14:30.437766 + : pb-IF4KUGpYXQ== | kicked > reason:Banned account -2023-06-05 08:57:28.918569 + : pb-IF4UUGpcAg==|| kicked > new account -2023-06-05 08:59:23.800391 + : pb-IF49VFdbEQ== ip: an~}hfaj`zvawi, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 09:01:18.284779 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 09:06:35.490951 + : pb-IF4cUBYfCg== ip: azo~{m~~oeaicv, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-05 09:07:19.652021 + : pb-IF4SVFkaCQ== ip: a~l~~jbaniak`, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-06-05 09:07:32.692970 + : pb-IF4SVFkaCQ== ip: a~l~~jbaniak`, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-06-05 09:34:36.140506 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-05 09:40:00.414160 + : pb-IF4OPhMg ip: bxvf~vb{i~~oa, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-05 09:44:24.424403 + : pb-IF4cUBYfCg== ip: azo~{m~~ncajc|, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-05 09:52:52.129132 + : pb-IF49VFdbEQ== ip: an~}hfaj`|vawi, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 09:53:51.352828 + : pb-IF4nUnZfJg== ip: b~a~vi~}icaih}, Device id: 4ba0df99dfeca7b3c40f7493f1c2420e1b54ed88 -2023-06-05 09:56:02.833642 + : pb-IF4nUnZfJg== ip: b~a~vi~}icaih}, Device id: 4ba0df99dfeca7b3c40f7493f1c2420e1b54ed88 -2023-06-05 09:56:09.864280 + : pb-IF49VFdbEQ== ip: an~}hfaj`|vawi, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 09:59:02.032455 + : pb-IF4OPhMg started kick vote for pb-IF5UVEMIIg==. -2023-06-05 09:59:32.036597 + : Kick vote End -2023-06-05 10:02:15.186690 + : pb-IF5VUGsSUg== ip: b}k~}khaiczvb~k, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-05 10:06:05.453348 + : pb-IF4OPhMg started kick vote for pb-IF5UVEMIIg==. -2023-06-05 10:06:35.454024 + : Kick vote End -2023-06-05 10:09:12.603036 + : pb-IF4sUGMeVA== ip: dvvcyvai~}lg, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-06-05 10:18:39.710647 + : pb-IF4sUGMeVA== ip: dvvcyvai~}lg, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-06-05 10:20:16.102056 + : pb-IF4zUBUlNg== ip: b}k~}khaiczvb~k, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-05 10:21:47.429630 + : pb-IF5UVEMIIg== ip: azo~|j~}laaoc, Device id: 787c0e5b9335d70682a4629f650dd827a524180f -2023-06-05 10:32:40.673817 + : pb-IF4VVG8gNQ== ip: azo~zi~~adaih}, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-05 10:32:59.743681 + : pb-IF4zUBUlNg== ip: b}k~}khaiczvb~k, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-05 10:40:52.441164 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 10:57:31.201531 + : pb-IF4-Uk4mEA== ip: dvvcxvg{vdx, Device id: b1920ab07bd50671fd0897a7c4ccab774e5adc53 -2023-06-05 11:04:38.837061 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-05 11:05:09.940568 + : pb-IF5UVEMIIg== ip: azo~|j~}liajb|, Device id: 787c0e5b9335d70682a4629f650dd827a524180f -2023-06-05 11:06:31.208898 + : pb-IF4hVVVeHQ== ip: ak~}ifa``aj`}, Device id: d48264bb111e9406c995bd034461104ca7dd849f -2023-06-05 11:07:14.347582 + : pb-IF4iUGk5Aw== | kicked > reason:Banned account -2023-06-05 11:07:27.157171 + : pb-IF4XU0gNJg== started kick vote for pb-IF5UVEMIIg==. -2023-06-05 11:07:57.157304 + : Kick vote End -2023-06-05 11:08:42.792411 + : pb-IF4nUnZfJg== ip: dvvc{vhxvav, Device id: 4ba0df99dfeca7b3c40f7493f1c2420e1b54ed88 -2023-06-05 11:11:55.495208 + : pb-IF4TUxEoKg== ip: bxvexvb{l~{a, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-06-05 11:12:12.009654 + : pb-IF4hVVVeHQ== started kick vote for pb-IF4TUxEoKg==. -2023-06-05 11:12:42.017525 + : Kick vote End -2023-06-05 11:13:43.427876 + : pb-IF4nUnZfJg== started kick vote for pb-IF5WUGsqEA==. -2023-06-05 11:14:13.442316 + : Kick vote End -2023-06-05 11:21:07.593454 + : pb-IF4nUnZfJg== ip: dvvc{vhxvav, Device id: 4ba0df99dfeca7b3c40f7493f1c2420e1b54ed88 -2023-06-05 11:24:25.418106 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-05 11:24:31.436669 + : pb-IF4jF1NY ip: azj~z`~va{`, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-05 11:28:01.893990 + : pb-IF4XU0gNJg== started kick vote for pb-IF4mU3IFMw==. -2023-06-05 11:28:31.898789 + : Kick vote End -2023-06-05 11:29:26.583158 + : pb-IF4gUksyMQ== ip: an~}iaaie{vc}, Device id: b0ef821c8b60e5fcf4bad99d322e2a9451de48ac -2023-06-05 11:30:29.419893 + : pb-IF4jF1NY started kick vote for pb-IF4mU3IFMw==. -2023-06-05 11:30:59.422519 + : Kick vote End -2023-06-05 11:32:46.283928 + : pb-IF4XU0gNJg== started kick vote for pb-IF4mU3IFMw==. -2023-06-05 11:33:16.288786 + : Kick vote End -2023-06-05 11:35:58.989140 + : pb-IF4VVG8gNQ== ip: azo~zi~~adaiaz, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-05 11:36:43.158665 + : pb-IF4MUBMHKA== ip: azj~z`~~n~xh, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-06-05 11:39:09.045080 + : pb-IF4jF1NY started kick vote for pb-IF4VVG8gNQ==. -2023-06-05 11:39:39.048970 + : Kick vote End -2023-06-05 11:40:24.003465 + : pb-IF4nUnZfJg== ip: dvvc{vhxvav, Device id: 4ba0df99dfeca7b3c40f7493f1c2420e1b54ed88 -2023-06-05 11:43:40.629596 + : pb-IF4jF1NY started kick vote for pb-IF4MUBMHKA==. -2023-06-05 11:44:10.635371 + : Kick vote End -2023-06-05 11:45:23.043703 + : pb-IF41U2scIg== ip: ak~}hhaniaaf, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-05 11:46:15.293797 + : pb-IF4OPhMg ip: bxvf~vb{i~~oa, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-05 11:58:34.125216 + : pb-IF4OU2QjMQ== | kicked > reason:Banned account -2023-06-05 12:04:15.611615 + : pb-IF5RUGxdLA== ip: a~h~}jdai`wvdz, Device id: c53329505d50b82632899f6e92e0f402d9550725 -2023-06-05 12:06:14.070746 + : pb-IF5VU1JZMw== ip: an~}ica`ea`d, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-05 12:07:14.276522 + : pb-IF4tUGMBCg== ip: ak~}hhaniaii}, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-06-05 12:08:06.440893 + : pb-IF49VFdbEQ== ip: an~}hfaj`|vawi, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 12:09:55.826539 + : pb-IF4WUBJcVQ== ip: ak~}maamiaji, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-06-05 12:13:56.828775 + : pb-IF49VFdbEQ== ip: an~}hfaj`|vawi, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 12:25:16.486424 + : pb-IF49VFdbEQ== ip: an~}hfaj`|vawi, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 12:25:29.530092 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-05 12:31:12.762710 + : pb-IF49VFdbEQ== ip: an~}hfaj`|vawi, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 12:34:19.859177 + : pb-IF4-UGIEXQ== ip: azo~{a~~`gaigw, Device id: b360f68b4959d171a06bd29cb63b86a0291d844d -2023-06-05 12:36:46.445563 + : pb-IF4-UGIEXQ== ip: azo~{a~~`gaigw, Device id: b360f68b4959d171a06bd29cb63b86a0291d844d -2023-06-05 12:41:46.550357 + : pb-IF4wV24HBw== ip: an~~acajbvbzh, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-06-05 12:44:12.102268 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-06-05 12:54:34.567956 + : pb-IF5VU1JZMw== ip: an~}ica`ea`d, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-05 12:56:52.248239 + : pb-IF4LUGYKPw== ip: a~n~}hfakhamd, Device id: 6afd5a128c0a5a36176d7b5d5cb6f2d966270775 -2023-06-05 12:56:55.260830 + : pb-IF4cVGMHLA== ip: b}k~~`daj`{vazo, Device id: b055fe844b57210943a3bba37a3a7be5abc140d9 -2023-06-05 13:06:24.899332 + : pb-IF4LUGYKPw== ip: a~n~}hfakhamd, Device id: 6afd5a128c0a5a36176d7b5d5cb6f2d966270775 -2023-06-05 13:06:38.952280 + : pb-IF4VVG8gNQ== ip: azo~zi~~adaac, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-05 13:10:32.050609 + : pb-IF4SVFkaCQ== ip: a~l~~jbaniaibv, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-06-05 13:16:45.710487 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~~`b, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-06-05 13:17:48.648747 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4cVGMHLA==. -2023-06-05 13:18:18.652858 + : Kick vote End -2023-06-05 13:22:44.141094 + : pb-IF5WUmVdDQ== ip: ak~~ncaii~vew, Device id: 6e77e4d6569489606b21c74613feb3498cce0cc9 -2023-06-05 13:32:26.298869 + : pb-IF4LUGYKPw== ip: a~n~}hfakhamd, Device id: 6afd5a128c0a5a36176d7b5d5cb6f2d966270775 -2023-06-05 13:45:34.423895 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-05 13:49:41.464002 + : pb-IF4LUGYKPw== ip: a~n~}hfakhamd, Device id: 6afd5a128c0a5a36176d7b5d5cb6f2d966270775 -2023-06-05 13:52:11.028755 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 13:53:43.408229 + : pb-IF49VFdbEQ== ip: an~}hfaj`{vb|`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 13:54:21.592805 + : pb-IF4cVGMHLA== ip: b}k~~`daj`}vazo, Device id: b055fe844b57210943a3bba37a3a7be5abc140d9 -2023-06-05 13:54:55.706267 + : pb-IF4IUGVTMQ== ip: ak~vo~vn~~jg, Device id: c122767b74fe0c99f1c70247ae0b7d6375493e1d -2023-06-05 13:55:52.900261 + : pb-IF4cVGMHLA== ip: b}k~~`daj`}vazo, Device id: b055fe844b57210943a3bba37a3a7be5abc140d9 -2023-06-05 13:57:33.591425 + : pb-IF4IUGVTMQ== started kick vote for pb-IF42UGg4Vw==. -2023-06-05 13:57:55.303389 + : pb-IF4LUGYKPw== ip: a~n~}hfakhamd, Device id: 6afd5a128c0a5a36176d7b5d5cb6f2d966270775 -2023-06-05 13:58:03.596477 + : Kick vote End -2023-06-05 14:01:05.475652 + : Server started -2023-06-05 14:01:06.484051 + : pb-IF4IUGVTMQ== ip: b}k~~`daja}vavh, Device id: c122767b74fe0c99f1c70247ae0b7d6375493e1d -2023-06-05 14:01:06.484183 + : pb-IF4cVGMHLA== ip: b}k~~`daj`}vazo, Device id: b055fe844b57210943a3bba37a3a7be5abc140d9 -2023-06-05 14:01:06.484255 + : pb-IF4OPhMg ip: bxvf~vb{i~~oa, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-05 14:01:10.497301 + : pb-IF4LUGYKPw== ip: a~n~}hfakhamd, Device id: 6afd5a128c0a5a36176d7b5d5cb6f2d966270775 -2023-06-05 14:03:48.911144 + : pb-IF4cVGMHLA== started kick vote for pb-IF4LUGYKPw==. -2023-06-05 14:04:18.917512 + : Kick vote End -2023-06-05 14:05:08.418204 + : pb-IF4LUGYKPw== ip: a~n~}hfakhamd, Device id: 6afd5a128c0a5a36176d7b5d5cb6f2d966270775 -2023-06-05 14:08:48.218414 + : pb-IF4IUGQRHw== ip: azo~{n~~jiajdv, Device id: 75b42d0e6532c03c0a60bb7c5238043a93288156 -2023-06-05 14:09:11.316821 + : pb-IF4LU0wKIw== ip: azj~zo~}hgai`}, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-06-05 14:10:11.315557 + : pb-IF4LU0wKIw== started kick vote for pb-IF4cVGMHLA==. -2023-06-05 14:10:41.323922 + : Kick vote End -2023-06-05 14:14:24.585975 + : pb-IF41U2scIg== ip: ak~}hhaniaii}, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-05 14:15:27.818298 + : pb-IF4cUkM4KA== ip: an~}idaig~vix, Device id: 9bc7a3f5775e72da256f5f41eab0f446aaadc746 -2023-06-05 14:15:33.840872 + : pb-IF4uUBIvFA== ip: dvva{vaym~~``, Device id: a73b6fdd9e054dbc60c1bf0088704392b4897aaa -2023-06-05 14:15:50.027896 + : pb-IF4IUGVTMQ== started kick vote for pb-JiNJARFTUUFDX11GF0JVU1ZKGUhYQ1BK. -2023-06-05 14:16:20.030723 + : Kick vote End -2023-06-05 14:18:56.607340 + : pb-IF4qUBlTJg== ip: awj~y`~~i~~kf, Device id: df39427dfcf8c7bf8557360f56b36f938bd76932 -2023-06-05 14:21:02.133277 + : pb-IF4MUBMHKA== ip: azj~z`~~n~}id, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-06-05 14:26:28.416328 + : pb-IF4LU0wKIw== ip: azj~zo~}hgai`}, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-06-05 14:28:17.824830 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-05 14:29:32.068775 + : pb-IF4hVFQJPA== | kicked > reason: Banned account -2023-06-05 14:35:09.310607 + : pb-IF5dU3UiAw== ip: azo~{a~}hbaje}, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-05 14:37:07.778127 + : pb-IF4VVG8gNQ== ip: azo~zi~~adaid~, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-05 14:40:38.865352 + : pb-IF4VVG8gNQ== started kick vote for pb-IF5UU1UmNQ==. -2023-06-05 14:40:45.251774 + : Kick vote End -2023-06-05 14:44:29.340894 + : pb-IF4XU0gNJg== started kick vote for pb-IF5SUGs7IQ==. -2023-06-05 14:44:50.445516 + : pb-IF5SUGs7IQ== kicked by kickvotes. -2023-06-05 14:44:54.520434 + : pb-IF4cUkM4KA== ip: an~}idaig~vix, Device id: 9bc7a3f5775e72da256f5f41eab0f446aaadc746 -2023-06-05 14:47:09.273415 + : pb-IF4LU0wKIw== started kick vote for pb-IF4VVG8gNQ==. -2023-06-05 14:47:39.282288 + : Kick vote End -2023-06-05 14:48:08.290798 + : pb-IF4VU3laVA== ip: ak~~`baifyve}, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-05 14:50:35.771143 + : pb-IF4jU2gAEg== ip: dvvbm~~haaiiz, Device id: 83c458b93ee2737e52f3702e528207927f0fc4fc -2023-06-05 14:53:09.355953 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB started kick vote for pb-IF4zUGMGBg==. -2023-06-05 14:53:36.425863 + : pb-IF41U0YxAw== ip: a~n~y`~x`~~hc, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-05 14:53:39.362733 + : Kick vote End -2023-06-05 14:55:09.728590 + : pb-IF4VU3laVA== ip: ak~~lhaj`aie, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-05 14:57:53.335845 + : pb-IF4MUBMHKA== ip: azj~z`~~n~~kb, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-06-05 15:00:49.973494 + : pb-IF4jU2gAEg== ip: dvvbm~~haaiiz, Device id: 8e2eb965578d7898efa86a0fed19362451c05bea -2023-06-05 15:02:10.897858 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB started kick vote for pb-IF4tVGtfDQ==. -2023-06-05 15:02:40.902350 + : Kick vote End -2023-06-05 15:06:27.330010 + : pb-IF5dU3UiAw== ip: azo~{a~}hbaje}, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-05 15:06:49.003496 + : pb-IF4jU2gAEg== started kick vote for pb-IF5TUlkMVg==. -2023-06-05 15:07:19.005976 + : Kick vote End -2023-06-05 15:09:25.931315 + : pb-IF41U2scIg== ip: ak~}hhaniaii}, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-05 15:10:17.144342 + : pb-IF41U2scIg== ip: ak~}hhaniaii}, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-05 15:14:29.047867 + : pb-IF4cUBYfCg== ip: azo~{m~~`caib{, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-05 15:22:36.987243 + : pb-IF41U0YxAw== ip: azo~{l~}h`ai`|, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-05 15:27:13.990998 + : pb-IF4jU2gAEg== ip: dvvbm~~haaiiz, Device id: 8e2eb965578d7898efa86a0fed19362451c05bea -2023-06-05 15:27:55.155653 + : pb-IF5SUmgtCA== ip: avm~}kdaib}vavh, Device id: 3896cef2537a53fb2de798bd27e2d073e25adaf6 -2023-06-05 15:36:10.087495 + : pb-IF43UBIIFQ== ip: dvvc{vaxl~~le, Device id: 43f025b93e7eb580fdce4a93aa338f5ed5556390 -2023-06-05 15:43:45.716790 + : pb-IF5TUGo6VQ== ip: dvvb{l~}kgaic, Device id: 8d3fe4543537d59a49571b4432ccf773907d5082 -2023-06-05 15:44:19.178558 + : pb-IF4qUGkeKw==|| kicked > new account -2023-06-05 15:49:49.128792 + : pb-IF4LV20GMw== ip: ai~ve{vc, Device id: 305f2513910ce5427877375161c5ae05dbf130aa -2023-06-05 15:54:12.109964 + : pb-IF4cVGMHLA== ip: ak~vo~vn~~jg, Device id: b055fe844b57210943a3bba37a3a7be5abc140d9 -2023-06-05 15:54:22.137537 + : pb-IF4IUGVTMQ== ip: b}k~~`dajazvb}, Device id: c122767b74fe0c99f1c70247ae0b7d6375493e1d -2023-06-05 15:54:50.244542 + : pb-IF4qUxBfAw== ip: a|j~~mdamaa``, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-05 16:03:45.914998 + : pb-IF4IUGVTMQ== started kick vote for pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG. -2023-06-05 16:04:15.920478 + : Kick vote End -2023-06-05 16:06:17.839745 + : pb-IF4lUlBcCw== ip: dvvd|vd~vaxm, Device id: c2eaf0fbd40a55ee44817b911bcb1124d8644b1f -2023-06-05 16:08:35.392862 + : pb-IF4cVGMHLA== started kick vote for pb-IF4IUGVTMQ==. -2023-06-05 16:09:05.397671 + : Kick vote End -2023-06-05 16:17:58.601605 + : pb-IF49UBEhJA== ip: azo~|j~|m~~oi, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-06-05 16:23:07.907869 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 16:44:05.798429 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 16:46:41.364221 + : pb-IF4HVVMKEQ== ip: an~}icaid{vaza, Device id: 3520ef70b75247a5bc7019d7245589c821a34168 -2023-06-05 17:04:43.568595 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 17:13:29.156576 + : pb-IF4jUGo5LA==|| kicked > new account -2023-06-05 17:23:34.098829 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-05 17:25:27.539225 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 17:32:15.140644 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-05 17:39:09.840467 + : pb-IF49VFQlPA== ip: azo~zh~yn~~na, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-06-05 17:41:10.539229 + : pb-IF4vUGpYNQ==|| kicked > new account -2023-06-05 17:41:37.339092 + : pb-IF4NUmY5Nw== ip: ak~~maaihvvawm, Device id: 14f6c1a8e2da0f162e2f842c4655a9e8e8f3c3e9 -2023-06-05 17:44:29.959571 + : pb-IF41U2scIg== ip: ak~za~xl~|h, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-05 17:45:59.507433 + : pb-IF4DUlIREQ== ip: an~~afaihak, Device id: bbeb374668af9986c834734e64be532aa2ef1e50 -2023-06-05 17:47:09.866209 + : pb-IF4MU08lCQ== ip: dvvczvazh~vm, Device id: 496f898c6f42806db0970bac3faaa29f196c9610 -2023-06-05 17:48:15.119383 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-05 17:48:23.160181 + : pb-JiNJARBYXUFBW1lBFEFQV11BF0FWQlFA ip: an~~afajhajc}, Device id: 936c205c0c65262d62300105d4329a28095c9790 -2023-06-05 17:50:00.954995 + : pb-IF4MU08lCQ== started kick vote for pb-IF4DUlIREQ==. -2023-06-05 17:50:30.962383 + : Kick vote End -2023-06-05 17:50:44.866696 + : pb-IF41U2scIg== ip: ak~za~xl~|h, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-05 17:55:00.028423 + : pb-IF4cUBYfCg== ip: azo~{m~~`haiix, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-05 17:57:04.710923 + : pb-IF4rLkwp ip: a~j~~kdaja{val, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-06-05 17:58:23.991114 + : pb-IF4rLkwp ip: a~j~~kdaja{val, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-06-05 18:03:18.993655 + : pb-IF4cUBYfCg== ip: azo~{m~~ngaie}, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-05 18:09:30.398808 + : pb-IF5VU1JZMw== ip: an~}ica`ea`d, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-05 18:11:27.804210 + : pb-IF4cUBYfCg== ip: azo~{m~}hiam`, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-05 18:13:31.106439 + : pb-IF4OUBAqNQ== started kick vote for pb-IF4rLkwp. -2023-06-05 18:14:01.106642 + : Kick vote End -2023-06-05 18:17:45.521680 + : pb-IF5VU1JZMw== ip: an~}ica`ea`d, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-05 18:18:22.706380 + : pb-IF4BU0EsIg== ip: azj~z`~}haaidx, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-06-05 18:18:39.744330 + : pb-IF4cUBYfCg== ip: azo~{m~}hiam`, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-05 18:19:52.077481 + : pb-IF4VU3laVA== ip: ak~~`baifxvb}l, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-05 18:19:55.092838 + : pb-IF4TUxEoKg== ip: bxvexvb{l~{a, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-06-05 18:32:26.253037 + : pb-IF4cUBYfCg== ip: azo~{m~}hiaj`, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-05 18:32:43.304140 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~~`b, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-06-05 18:34:08.675047 + : pb-IF49VFdbEQ== ip: an~}hfaj`}vaj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 18:34:47.814243 + : pb-IF4MU08lCQ== ip: dvvczvazh~vm, Device id: 496f898c6f42806db0970bac3faaa29f196c9610 -2023-06-05 18:34:53.832749 + : pb-IF41U0YxAw== ip: azo~{l~~aeaihy, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-05 18:37:58.471827 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-05 18:39:03.322497 + : pb-IF4wU1MPEg== started kick vote for pb-IF4MU08lCQ==. -2023-06-05 18:39:33.325684 + : Kick vote End -2023-06-05 18:47:16.608203 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-05 18:47:19.612979 + : pb-IF4MU08lCQ== ip: dvvczvazh~vm, Device id: 496f898c6f42806db0970bac3faaa29f196c9610 -2023-06-05 18:47:32.659380 + : pb-IF4MU08lCQ== ip: dvvczvazh~vm, Device id: 496f898c6f42806db0970bac3faaa29f196c9610 -2023-06-05 18:48:30.931073 + : pb-IF41U0YxAw== ip: a~n~y`~x`~~hc, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-05 18:48:46.997858 + : pb-IF4OU1IZVg== ip: a|o~vo~wl~}kc, Device id: 541973653043d7f242ff3b1078194e8678f82921 -2023-06-05 18:49:40.167967 + : pb-IF41U2scIg== ip: ak~za~xl~|h, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-05 18:50:55.434994 + : pb-IF49VFQlPA== ip: azo~zh~yn~~na, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-06-05 18:50:56.434918 + : pb-IF41U2scIg== ip: ak~za~xl~|h, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-05 18:53:38.152888 + : pb-IF4LU0wKIw== ip: azj~zo~~aca``, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-06-05 18:53:41.163385 + : pb-IF5QU3AaLg== ip: dvvc{vgvd, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-06-05 18:55:06.450613 + : pb-IF49VFQlPA== ip: azo~zh~yn~~na, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-06-05 18:55:23.520800 + : pb-IF4cUBYfCg== ip: azo~{m~}hiaj`, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-05 18:55:58.664983 + : pb-IF4MUGRfDQ== ip: ak~}lia`iajd, Device id: a154e84b754eff2dfa4f2ce30a3e74d840549d7d -2023-06-05 18:57:40.770702 + : pb-IF4wU1MPEg== started kick vote for pb-IF5dU2ZdPA==. -2023-06-05 18:58:10.775310 + : Kick vote End -2023-06-05 18:58:21.445983 + : pb-IF4MUGRfDQ== ip: ak~}lia`iajd, Device id: a154e84b754eff2dfa4f2ce30a3e74d840549d7d -2023-06-05 18:59:56.805262 + : pb-IF4MUGRfDQ== ip: azj~zo~}kiaia|, Device id: a154e84b754eff2dfa4f2ce30a3e74d840549d7d -2023-06-05 19:02:30.831931 + : pb-IF4uUGgkDA== started kick vote for pb-IF4MU08lCQ==. -2023-06-05 19:03:00.831681 + : Kick vote End -2023-06-05 19:03:53.696791 + : pb-IF5dU2ZdPA== ip: dvvcyvaxva~j, Device id: e391a4fdf45e69e758c5202e88891fe58c558d00 -2023-06-05 19:03:56.009072 + : pb-IF4LUGkjCw==|| kicked > new account -2023-06-05 19:08:12.817579 + : pb-IF49VFdbEQ== ip: an~}hfaj`}vaj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 19:11:45.599417 + : pb-IF41U2scIg== ip: ak~za~xl~|h, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-05 19:12:03.663962 + : pb-IF4mU24IHA== ip: ak~~kdajhajdv, Device id: dfd36173b41f75d5f24dd15f9424f76ecf76858d -2023-06-05 19:14:17.140495 + : pb-IF4dU0UGUA== ip: ak~wn~~a~~i, Device id: 967c36e4252192ad783fa3a009098c2ade7f7538 -2023-06-05 19:15:08.887714 + : pb-IF4MU08lCQ== started kick vote for pb-IF4rLkwp. -2023-06-05 19:15:38.891725 + : Kick vote End -2023-06-05 19:17:36.982243 + : pb-IF4vU0MENg== ip: azj~zo~zi~}i`, Device id: 6382f3717c6ac3650740a14e9d6ab4b67728a26a -2023-06-05 19:21:45.857816 + : pb-IF4HUxAgVA== ip: awk~wj~}hdaii{, Device id: 1c2e32b63009fc9f53d2a8a4e61c80f8bf62cfae -2023-06-05 19:29:47.782898 + : pb-IF4TUxEoKg== started kick vote for pb-IF4uUGUhAg==. -2023-06-05 19:29:56.256499 + : pb-IF4uUGUhAg== kicked by kickvotes. -2023-06-05 19:32:19.542282 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-05 19:33:27.274490 + : pb-IF4XU0gNJg== started kick vote for pb-IF41U0YxAw==. -2023-06-05 19:33:57.276948 + : Kick vote End -2023-06-05 19:35:01.100982 + : pb-IF49VFdbEQ== ip: an~}hfaj`}vaj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 19:35:35.218477 + : pb-IF4MUGRfDQ== ip: azj~zo~}kbaje{, Device id: a154e84b754eff2dfa4f2ce30a3e74d840549d7d -2023-06-05 19:36:18.365191 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB ip: b}k~~ohaja}vh|, Device id: 78c06b4d948c8b6425fd95b584f9c5243e2bfa5b -2023-06-05 19:38:09.947052 + : pb-IF4MUGRfDQ== ip: azj~zo~}kbaje{, Device id: a154e84b754eff2dfa4f2ce30a3e74d840549d7d -2023-06-05 19:39:05.298706 + : pb-IF49I04z ip: a~h~}jda`faj`z, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-05 19:40:45.697067 + : pb-IF4cUBYfCg== ip: azo~{m~}jaaoa, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-05 19:41:27.827566 + : pb-IF4OPhMg ip: bxvf~vb{i~~oa, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-05 19:45:53.071668 + : pb-IF4pU2ICCg== ip: azo~|j~}jeaibz, Device id: 8003a9b2cc7893c194deb4d708f9cde2b6e43b1e -2023-06-05 19:48:54.769051 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB ip: b}k~~ohaja}vh|, Device id: 78c06b4d948c8b6425fd95b584f9c5243e2bfa5b -2023-06-05 19:49:34.909020 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 19:49:35.914662 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB ip: b}k~~ohaja}vh|, Device id: 78c06b4d948c8b6425fd95b584f9c5243e2bfa5b -2023-06-05 19:49:40.939673 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB ip: b}k~~ohaja}vh|, Device id: 78c06b4d948c8b6425fd95b584f9c5243e2bfa5b -2023-06-05 19:52:31.539016 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jc, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-05 19:56:11.418979 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB ip: b}k~~ohaja}vh|, Device id: 78c06b4d948c8b6425fd95b584f9c5243e2bfa5b -2023-06-05 19:56:43.529823 + : pb-IF5VU1JZMw== ip: an~}ica`ea`d, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-05 19:57:52.764383 + : pb-IF4jF1NY ip: azj~z`~{va}o, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-05 19:59:45.115178 + : pb-IF5VU1JZMw== ip: an~}ica`ea`d, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-05 20:00:01.156662 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB ip: b}k~~ohaja}vh|, Device id: 78c06b4d948c8b6425fd95b584f9c5243e2bfa5b -2023-06-05 20:04:03.522937 + : pb-IF4hUGcPIg== started kick vote for pb-IF4CUGdaAw==. -2023-06-05 20:10:39.100259 + : Server started -2023-06-05 20:10:40.111784 + : pb-IF4KUGU4Ag== ip: axi~xn~wj~~a, Device id: ab062b2f56bf34617bc6536d54a99074e95c0353 -2023-06-05 20:10:40.111911 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB ip: b}k~~ohaja}vh|, Device id: 78c06b4d948c8b6425fd95b584f9c5243e2bfa5b -2023-06-05 20:10:40.111990 + : pb-IF4hUGcPIg== ip: dvvbm~wj~~jb, Device id: c18b43fba210f6bb007166612f882c3996de8af7 -2023-06-05 20:10:40.112099 + : pb-IF4VU3laVA== ip: ak~~`baifxvb}l, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-05 20:16:16.422968 + : pb-IF4IU28qPA== ip: azo~zi~~heajc}, Device id: 2b676771bfc1043a69989576d24e1194aec0a626 -2023-06-05 20:16:43.530726 + : pb-JiNJARFdVkZAWl5IFERTXFxGGENcT1lB ip: b}k~~ohaja}vh|, Device id: 78c06b4d948c8b6425fd95b584f9c5243e2bfa5b -2023-06-05 20:17:14.641785 + : pb-IF4IUGExHw== ip: ak~{`~ya~~jc, Device id: f7691dea6c35e9b72eb55bb69fa024eb1abf57e6 -2023-06-05 20:17:30.701294 + : pb-IF49VFdbEQ== ip: an~}hfaj`}vaj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 20:18:09.866881 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-05 20:18:28.940241 + : pb-IF4eU1gyCw== ip: a~m~vn~}igaig~, Device id: 489f0bee66d1dad5ce0c6a9be78e696fabba893d -2023-06-05 20:18:51.052989 + : pb-IF4hUGcPIg== started kick vote for pb-IF4NUGcvKA==. -2023-06-05 20:19:15.504664 + : Kick vote End -2023-06-05 20:21:20.570853 + : pb-IF5cUGYKMg== ip: b}k~}jgaiawva|, Device id: 6d6871c9c40104bba207db42744660421fd89b58 -2023-06-05 20:22:18.801027 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG ip: a~o~}jbaa`ai`}, Device id: 822adb43af454f4ce0fdec16028787c26c151d5f -2023-06-05 20:25:21.529797 + : pb-IF4cUktZNg== ip: a~h~}keajcwva}n, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-06-05 20:27:17.955468 + : pb-IF4OUBY-HA== ip: a|a~~ngaigviv, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-06-05 20:37:22.087212 + : pb-IF5RUBkiKA== ip: a}j~~oaaiiaihv, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-06-05 20:38:16.395279 + : pb-IF5dU3UiAw== ip: azo~{a~}hfaidy, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-05 20:38:20.406780 + : pb-IF4FUBkNKA== ip: an~~agaifa`h, Device id: f30012358ec0de133868baf5067fb664a4c67b54 -2023-06-05 20:39:06.880969 + : pb-IF48UGo6UQ==|| kicked > new account -2023-06-05 20:45:12.885365 + : pb-IF4pU2ICCg== ip: azo~|j~}jeaibz, Device id: 8003a9b2cc7893c194deb4d708f9cde2b6e43b1e -2023-06-05 20:45:54.017332 + : pb-IF49VFdbEQ== ip: an~}hfaj`}vaj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 20:50:14.992242 + : pb-IF5XVUpZLw== ip: ak~~hhah~y, Device id: 69b8d01e3fcd5aaeb058701366c29f1271e98638 -2023-06-05 20:50:34.057401 + : pb-IF4OUBY-HA== ip: a|a~~ngaigviv, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-06-05 20:52:27.541903 + : pb-IF49VFdbEQ== ip: an~}hfaj`}vaj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 20:54:43.018669 + : pb-IF5XVUpZLw== ip: ak~~hhah~y, Device id: 69b8d01e3fcd5aaeb058701366c29f1271e98638 -2023-06-05 20:59:24.044884 + : pb-IF4VUlcBVQ== ip: bk~wi~}lbajb, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-06-05 21:01:20.483412 + : pb-IF5dU3UiAw== ip: azo~{a~}hfaidy, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-05 21:02:43.792035 + : pb-IF5XVUpZLw== ip: ak~~hhah~y, Device id: 69b8d01e3fcd5aaeb058701366c29f1271e98638 -2023-06-05 21:05:23.330500 + : pb-IF5UU0M7Lw== ip: azo~|k~~ibaje{, Device id: fbd8b7f3cf73385e52f221663a97a9d327336552 -2023-06-05 21:08:09.882266 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG ip: an~~aeaicaih{, Device id: 822adb43af454f4ce0fdec16028787c26c151d5f -2023-06-05 21:08:46.123476 + : pb-IF5dU3UiAw== started kick vote for pb-IF5UU0M7Lw==. -2023-06-05 21:09:16.128349 + : Kick vote End -2023-06-05 21:09:19.153125 + : pb-IF5UU0M7Lw== ip: azo~|k~~ibaje{, Device id: fbd8b7f3cf73385e52f221663a97a9d327336552 -2023-06-05 21:11:33.660686 + : pb-IF5dU3UiAw== ip: azo~{a~}hfaidy, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-05 21:18:15.142966 + : pb-IF4qUBlTJg== ip: azo~|l~~m~}kd, Device id: df39427dfcf8c7bf8557360f56b36f938bd76932 -2023-06-05 21:18:40.215495 + : pb-IF5dU3UiAw== ip: azo~{a~}hfaidy, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-05 21:19:49.532244 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG ip: an~~aeaicaih{, Device id: 822adb43af454f4ce0fdec16028787c26c151d5f -2023-06-05 21:23:04.263246 + : pb-IF4qUBlTJg== ip: azo~|l~~m~}kd, Device id: df39427dfcf8c7bf8557360f56b36f938bd76932 -2023-06-05 21:24:32.095490 + : pb-IF4PUGkSNQ==|| kicked > new account -2023-06-05 21:34:27.714718 + : pb-IF5WU1QJFA== ip: azo~|`~}jiaje, Device id: 4a8a384698658621fce88e219c1c5bd3c01f6e7a -2023-06-05 21:35:22.944556 + : pb-IF5WU1QJFA== ip: azo~|`~}jiaje, Device id: 4a8a384698658621fce88e219c1c5bd3c01f6e7a -2023-06-05 21:43:04.725187 + : pb-IF5dU3UiAw== ip: azo~{a~}hfaidy, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-05 22:02:21.818224 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG ip: an~~aeam~~`d, Device id: 822adb43af454f4ce0fdec16028787c26c151d5f -2023-06-05 22:03:43.462897 + : pb-IF4sUGleCA==|| kicked > new account -2023-06-05 22:08:48.346564 + : pb-IF4CUhUlFg== ip: b}k~~oiaj`{vb~a, Device id: 7ff409e87c661733dd5ac8860f45e13b78990856 -2023-06-05 22:09:32.506522 + : pb-IF4OPhMg ip: bxvf~vb{i~~oa, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-05 22:12:56.201231 + : pb-IF4VVG8gNQ== ip: azo~zi~~adane, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-05 22:18:07.355774 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhva}l, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-06-05 22:20:45.969823 + : pb-IF4WUhgOXQ== ip: dvvcyviyvgz, Device id: 2cb9706ec32c8e947b67b9358667892f66bb272b -2023-06-05 22:21:20.075961 + : pb-IF4WUGczMQ== ip: dzva}o~{l~wj, Device id: 220753c5a30bbc77c9dcec749d67d633217addb4 -2023-06-05 22:26:34.327587 + : pb-IF4VU3laVA== ip: ak~~`baifxvb}l, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-05 22:27:05.454170 + : pb-IF49VFdbEQ== ip: an~}hfaj`{vaj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 22:27:10.476824 + : pb-IF41U2scIg== ip: ak~za~xl~|h, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-05 22:27:14.487868 + : pb-IF49VFdbEQ== ip: an~}hfaj`{vaj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 22:34:52.324345 + : pb-IF4-Uk4mEA== ip: dvvcxvg}v`, Device id: b1920ab07bd50671fd0897a7c4ccab774e5adc53 -2023-06-05 22:34:55.326043 + : pb-IF4uUk4vMg== ip: b}k~}jfaie~vby, Device id: 6635c2af1bf357a9e95bbf3d6082a39d14dc3cdb -2023-06-05 22:42:18.132095 + : pb-IF4sUGMeVA== ip: dvvcyvai~}lg, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-06-05 22:43:00.293426 + : pb-IF4uUk4vMg== ip: b}k~}jfaie~vby, Device id: 6635c2af1bf357a9e95bbf3d6082a39d14dc3cdb -2023-06-05 22:45:07.757174 + : pb-IF4pU2ICCg== ip: azo~|j~}lianb, Device id: 8003a9b2cc7893c194deb4d708f9cde2b6e43b1e -2023-06-05 22:48:08.479979 + : pb-IF4mUBFcUw== ip: an~~acaliaiay, Device id: 8759f152b99cfddd8c69e6a07a06adaec7e045f2 -2023-06-05 22:48:59.671231 + : pb-IF4pU2ICCg== ip: azo~|j~}lianb, Device id: 8003a9b2cc7893c194deb4d708f9cde2b6e43b1e -2023-06-05 22:54:59.961861 + : pb-IF4sUGMeVA== ip: dvvcyvai~}lg, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-06-05 22:59:16.909852 + : pb-IF4WUBJcVQ== ip: ak~}maamiaji, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-06-05 23:00:04.064581 + : pb-IF4lUxMSHw== ip: ak~~`baifxvb}l, Device id: 9697e7eb450fece0abe0f3d8adce316e47d4153b -2023-06-05 23:00:44.196023 + : pb-IF4lUxMSHw== ip: ak~~`baifxvb}l, Device id: 9697e7eb450fece0abe0f3d8adce316e47d4153b -2023-06-05 23:01:13.319761 + : pb-IF4uU28fVQ== ip: ak~~leaiiaid|, Device id: b4f2ce2e42c35bd790f4e81b2d365537d939c62a -2023-06-05 23:01:28.391858 + : pb-IF4VU3laVA== ip: ak~~`baifxvb}l, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-05 23:10:07.443196 + : pb-IF49VFdbEQ== ip: an~}hfaiiwvaj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 23:21:27.297965 + : pb-IF49VFdbEQ== ip: an~}hfaiiwvaj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 23:24:07.941549 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-05 23:24:10.954470 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 23:29:04.038918 + : pb-IF4wVVk8Jg== ip: ak~~n`ajc|vb, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-06-05 23:35:20.494146 + : pb-IF41U0YxAw== ip: a~n~y`~x`~~hc, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-05 23:35:30.528958 + : pb-IF49VFdbEQ== ip: an~}hfaiivvaj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 23:37:25.992577 + : pb-IF41U0YxAw== ip: a~n~y`~x`~~hc, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-05 23:40:41.917807 + : pb-IF4OPhMg ip: bxvf~vb{i~~oa, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-05 23:44:18.643642 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-05 23:44:46.765160 + : pb-IF4cUktZNg== ip: a~h~}keajcwva}n, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-06-05 23:46:10.073729 + : pb-IF4nUkteVA== ip: a}j~zh~}hbajbv, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-06-05 23:47:52.419107 + : pb-IF49VFdbEQ== ip: an~}hfaj`~ve~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 23:48:42.753778 + : pb-IF4rLkwp ip: a~j~~kdaja{val, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-06-05 23:49:59.246767 + : pb-IF49VFdbEQ== ip: an~}hfaj`~ve~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-05 23:52:53.869903 + : pb-IF49VFdbEQ== ip: an~}hfaj`~ve~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-06 00:05:23.594130 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 00:09:09.500321 + : pb-IF4rLkwp ip: a~j~~kdajavd~, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-06-06 00:09:15.519864 + : pb-IF4rLkwp ip: a~j~~kdajavd~, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-06-06 00:13:29.577824 + : pb-IF41UGcPNQ== ip: i~vayh~zh~|`, Device id: 7912aaeb116912fb8216874995084c198f22305d -2023-06-06 00:15:12.949044 + : pb-IF43Uxg4Kg== ip: azo~zi~~mbame, Device id: 8bbf1482daef9a08c3a1d13ae19ba9f1cbac8c20 -2023-06-06 00:26:16.413305 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 00:44:04.464003 + : pb-IF4rLkwp ip: a~j~~kdajavd~, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-06-06 00:47:36.219289 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 00:48:05.315327 + : pb-IF41UGcPNQ== ip: i~vayh~zh~|`, Device id: 7912aaeb116912fb8216874995084c198f22305d -2023-06-06 01:08:29.222386 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 01:12:02.055545 + : pb-IF4rLkwp ip: a~j~~kdajavd~, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-06-06 01:29:52.185810 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 01:38:54.185883 + : pb-IF41U2scIg== ip: an~}i`aig}vg|, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-06 01:50:41.843961 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 02:11:22.676852 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 02:11:37.729317 + : pb-IF4FUBkNKA== ip: an~~adakba`i, Device id: f30012358ec0de133868baf5067fb664a4c67b54 -2023-06-06 02:32:09.653883 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 03:11:10.660278 + : Server started -2023-06-06 03:13:25.158908 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 03:14:00.277404 + : pb-IF4pU1U8VQ== ip: a~i~vj~xl~}ji, Device id: 10c5129130345ffd919d3546c3dc1729aa6ba63f -2023-06-06 03:34:20.847656 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 05:18:25.180790 + : pb-IF4SUmwlVA== ip: dvvcyvd~vd}, Device id: a7bde29bcc4f211c7175919d725d3c80dd3be90f -2023-06-06 05:18:35.225440 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 05:39:45.815086 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 06:24:03.550690 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 06:45:17.390675 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 07:27:03.301746 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 07:47:40.978779 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 08:09:05.728934 + : pb-IF4MUlYtUQ== ip: a|o~vo~~i`anc, Device id: 8c66ad4b73db1af0504175c9f4d3b10298b04764 -2023-06-06 08:12:37.489137 + : pb-IF5dU3UiAw== ip: azo~{a~~acaigw, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-06 08:29:24.341343 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 08:29:45.424890 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 08:32:48.077146 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-06 08:36:25.204526 + : pb-IF5XUGYhDQ== ip: azo~{n~~jcaia{, Device id: b1aca8f0a101de39f68a0aa1b4c592d9c46fc9b0 -2023-06-06 08:39:13.852347 + : pb-IF4cUBYfCg== ip: azo~{m~}hiaiix, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-06 08:52:01.770961 + : pb-IF4XVHBdIQ== ip: azj~z`~}jbang, Device id: bb4a1622c7601f1a78263c6066c8e905a694ffb2 -2023-06-06 08:57:55.329508 + : pb-IF4LUxYbAA== ip: a~`~~oiaih~va{m, Device id: 5df05df7bd9535f430dc625fca5499b60eb434c3 -2023-06-06 08:59:25.628419 + : pb-IF4LUxYbAA== ip: a~`~~oiaih~va{m, Device id: 5df05df7bd9535f430dc625fca5499b60eb434c3 -2023-06-06 09:03:27.602795 + : pb-IF4OU2QjMQ== | kicked > reason:Banned account -2023-06-06 09:10:10.351967 + : pb-IF40UBISLQ== ip: bxvf}vb{k~~jd, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-06-06 09:32:21.295544 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 10:11:33.319050 + : Server started -2023-06-06 10:25:57.721841 + : pb-IF40UncaLg== ip: dvvc|vb~k~{h, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-06 10:29:08.444706 + : pb-IF4-UGIEXQ== ip: azo~{a~~nbai`v, Device id: b360f68b4959d171a06bd29cb63b86a0291d844d -2023-06-06 10:32:47.228621 + : pb-IF4WUBJcVQ== ip: ak~}maamiaji, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-06-06 10:33:52.516691 + : pb-IF4WUBJcVQ== ip: ak~}maamiaji, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-06-06 10:36:33.213977 + : pb-IF4JUBkxKw== ip: dvvd|vb~a~~`b, Device id: 744537108d53e730f1a041711ca9db3a11e5eb1a -2023-06-06 10:37:55.539667 + : pb-IF4SVFkaCQ== ip: a~l~~jbai`~vb~o, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-06-06 10:46:15.427126 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-06 10:46:38.500345 + : pb-IF4LUGkjCw== ip: a~o~v`~~kgaig, Device id: bc46108a5ff0ba5614730dacead95713a4d2f607 -2023-06-06 10:46:56.578428 + : pb-IF5dU3UiAw== ip: azo~{a~~afaifx, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-06 10:47:45.788965 + : pb-IF4hVFQJPA== | kicked > reason: Banned account -2023-06-06 10:54:16.226229 + : pb-IF4TUGEIDQ== ip: bxvf}vb{h~~hi, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-06 10:58:30.106629 + : pb-IF4PUGkSNQ== | kicked > reason:Banned account -2023-06-06 11:04:30.484958 + : pb-IF4TUGEIDQ== ip: bxvf}vb{h~~hi, Device id: 91e3ce447ee5451b00782def7f8823118f64bd4b -2023-06-06 11:07:30.566188 + : pb-IF48UGo9Kw==|| kicked > new account -2023-06-06 11:11:44.247867 + : pb-IF4OU2QjMQ== | kicked > reason:Banned account -2023-06-06 11:16:51.382155 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-06 11:18:30.044896 + : pb-IF4VUGkaUQ==|| kicked > new account -2023-06-06 11:21:23.271212 + : pb-IF48UhEiEg== ip: a~m~v`~yl~~n, Device id: 33a8969f89cf728e65a2f6ff383ac3a2e126c4e2 -2023-06-06 11:21:28.284348 + : pb-IF48UhEiEg== ip: a~m~v`~yl~~n, Device id: 33a8969f89cf728e65a2f6ff383ac3a2e126c4e2 -2023-06-06 11:25:30.178636 + : pb-IF4MUBMHKA== ip: azj~z`~~n~~`i, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-06-06 11:28:17.795283 + : pb-IF41UBQPXA== ip: a}l~~hfaid|vf, Device id: 4053d4ecb6d73d755ad3c574aa4bd40384b30b43 -2023-06-06 11:28:28.845690 + : pb-IF48UhEiEg== ip: a~m~v`~yl~~n, Device id: 33a8969f89cf728e65a2f6ff383ac3a2e126c4e2 -2023-06-06 11:31:26.504295 + : pb-IF4VVG8gNQ== ip: azo~zi~~adaiav, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-06 11:36:57.654094 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-06 11:39:22.472630 + : pb-IF5TUGxYBA==|| kicked > new account -2023-06-06 11:47:46.994802 + : pb-IF4BU0EsIg== ip: azj~z`~}haajc{, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-06-06 11:51:11.706120 + : pb-IF48UhEiEg== ip: a~m~v`~yl~~n, Device id: 33a8969f89cf728e65a2f6ff383ac3a2e126c4e2 -2023-06-06 11:55:15.657115 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 11:57:59.312852 + : pb-IF4BU0EsIg== ip: azj~z`~}haajc{, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-06-06 12:04:29.794474 + : pb-IF4MUBMHKA== ip: azj~z`~~`~~k, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-06-06 12:05:31.030781 + : pb-IF4MUBMHKA== ip: azj~z`~~`~~k, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-06-06 12:09:39.977337 + : pb-IF40UncaLg== ip: dvvc|vavo~yn, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-06 12:15:55.311734 + : pb-IF4VU3laVA== ip: ak~~n`aii{vam, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-06 12:16:01.332956 + : pb-IF4VU3laVA== ip: ak~~n`aii{vam, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-06 12:29:29.506921 + : pb-IF4BU0EsIg== ip: azj~z`~}haajc{, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-06-06 12:34:23.653167 + : pb-IF42U2wGFw== ip: a|o~vo~~jfaig, Device id: 99b10bfc42bcd3169a938d93dab3f5156feec7f4 -2023-06-06 12:43:27.757656 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jf, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-06 12:44:01.883810 + : pb-IF49VFdbEQ== ip: an~}hfaj`~vg~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-06 12:44:09.905435 + : pb-IF4cUBYfCg== ip: azo~{m~}haaid, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-06 12:54:33.394172 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-06 12:54:44.435356 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-06 12:56:08.808871 + : pb-IF4oUGlSCA== ip: an~}igaahaiiv, Device id: 4e66815b2907e8930e977faf50888774063b9bc8 -2023-06-06 12:57:54.193131 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-06 13:02:54.366735 + : pb-IF4qUxBfAw== ip: dxvazviaoe, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-06 13:07:56.574699 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-06 13:08:03.606469 + : pb-IF4qUxBfAw== ip: dxvazviaoe, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-06 13:08:25.678616 + : pb-IF4qUxBfAw== ip: dxvazviaoe, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-06 13:09:48.135255 + : pb-IF49VFdbEQ== ip: an~}hfaj`vg~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-06 13:13:16.953996 + : pb-IF4cUBYfCg== ip: azo~{m~}hdaif, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-06 13:16:33.663536 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jf, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-06 13:20:39.568754 + : pb-IF49VFdbEQ== ip: an~}hfaj`vg~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-06 13:21:28.771142 + : pb-IF4SVFkaCQ== ip: a~l~~jbai`vb{a, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-06-06 13:23:56.309413 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 13:25:23.667342 + : pb-IF49VFdbEQ== ip: an~}hfaj`vg~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-06 13:28:18.307580 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-06 13:43:57.883669 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 13:58:39.231894 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-06 14:00:06.484290 + : pb-IF49VFdbEQ== ip: an~}hfaj`vg~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-06 14:00:34.632108 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-06 14:00:35.633259 + : pb-IF48UhEiEg== ip: a~m~v`~yl~~n, Device id: 33a8969f89cf728e65a2f6ff383ac3a2e126c4e2 -2023-06-06 14:03:21.218275 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-06 14:04:56.587329 + : pb-IF49VFdbEQ== ip: an~}hfaj`vg~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-06 14:06:56.012406 + : pb-IF4MUk0CEg== ip: dvvcxve}vbn, Device id: 618fd7a62afdcfd000ff037b4ad7fece3396e9ce -2023-06-06 14:08:18.326255 + : pb-IF4qUBkYDg== ip: awj~xh~~ngaiiy, Device id: 0566b8693fb2033765aa5987fdb4ddb6e70de446 -2023-06-06 14:08:33.385552 + : pb-IF4qUBkYDg== ip: awj~xh~~ngaiiy, Device id: 0566b8693fb2033765aa5987fdb4ddb6e70de446 -2023-06-06 14:09:12.501327 + : pb-IF4cVXlaDQ== ip: ak~~j`aif{vf{, Device id: ce5e2f736e4e516430adfe856033f9b818cd17d6 -2023-06-06 14:11:33.025569 + : pb-IF4qUBkYDg== ip: awj~xh~~ngaiiy, Device id: 0566b8693fb2033765aa5987fdb4ddb6e70de446 -2023-06-06 14:17:27.214376 + : pb-IF41U0YxAw== ip: a|o~vo~~ifaidx, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-06 14:18:01.354746 + : pb-IF49VFdbEQ== ip: an~}hfaj`vg~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-06 14:21:28.294740 + : pb-IF4IUGQRHw== ip: azo~{n~~kfaaf, Device id: 75b42d0e6532c03c0a60bb7c5238043a93288156 -2023-06-06 14:26:03.743875 + : pb-IF49VFdbEQ== ip: an~}hfaj`vg~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-06 14:26:53.944485 + : pb-IF4sAGcj | kicked > reason:Banned account -2023-06-06 14:27:18.043574 + : pb-IF5dU3UiAw== ip: azo~{a~~agajg, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-06 14:43:32.809492 + : pb-IF4VU3laVA== ip: ak~~n`ajc|vazj, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-06 14:46:17.632672 + : pb-IF5SUno-Ug== ip: dxvbvvayo~~kc, Device id: 295db2233cc8d02e28fa0f2cf29ed63651e100d5 -2023-06-06 14:47:55.041342 + : pb-IF49VFdbEQ== ip: an~}hfaj`vg~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-06 14:53:58.474747 + : pb-IF49VFdbEQ== ip: an~}hfaj`vg~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-06 14:55:47.370827 + : pb-IF4WUGokPA==|| kicked > new account -2023-06-06 14:57:51.501928 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-06 15:06:29.542409 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 15:21:53.470066 + : pb-IF4cUBYfCg== ip: azo~{m~}ihai`x, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-06 15:22:36.673822 + : pb-IF48UhEiEg== ip: a~m~v`~yl~~n, Device id: 33a8969f89cf728e65a2f6ff383ac3a2e126c4e2 -2023-06-06 15:26:40.679298 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 15:29:44.359979 + : pb-IF5XUkoGDw== ip: dxvian~vm, Device id: 28f13e74c66a938e7181be1e72c3c9f925f0833c -2023-06-06 15:29:58.760126 + : pb-IF4AUGpeHQ==|| kicked > new account -2023-06-06 15:34:02.361025 + : pb-IF4wV24HBw== ip: an~~acajbvb|h, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-06-06 15:36:39.003343 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-06 15:39:24.890524 + : pb-IF4iUGkDCA==|| kicked > new account -2023-06-06 15:47:09.363259 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 15:48:40.724761 + : pb-IF4jF1NY ip: azj~z`~{vcz, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-06 15:49:22.894407 + : pb-IF49VFdbEQ== ip: an~}hfaiiwvg~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-06 15:54:56.464365 + : pb-IF4rU0kaUQ== ip: an~}ica``amd, Device id: 9b9d41038cc9cb808d1069e7e82240bcf330aa91 -2023-06-06 16:01:49.004816 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-06 16:05:50.990157 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-06 16:06:30.145374 + : pb-IF4dU1IOKQ== ip: an~}ifajbyva|m, Device id: 0ea8bbe6ad0e9c005407166ad37923d1f241be41 -2023-06-06 16:12:11.489975 + : pb-IF41U2scIg== ip: ak~}hhaoaaid~, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-06 16:32:45.296618 + : pb-IF4IUGQRHw== ip: azo~{n~~jiaib, Device id: 75b42d0e6532c03c0a60bb7c5238043a93288156 -2023-06-06 16:34:46.729815 + : pb-IF4sU3VSMg== ip: dvvc}vawo~}i, Device id: cb6dd8b1d356943cea4f7e54c07fc932a91971ec -2023-06-06 16:42:33.818182 + : pb-IF5TUGxZAg==|| kicked > new account -2023-06-06 16:48:53.022969 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-06 16:48:57.036244 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 17:11:36.405783 + : Server started -2023-06-06 17:11:52.453362 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-06 17:15:45.309181 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-06 17:17:15.670943 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-06 17:20:36.388998 + : pb-IF4OPhMg ip: bxvf~vb{i~~oa, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-06 17:20:45.422792 + : pb-IF4cUBYfCg== ip: azo~{m~}iaalg, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-06 17:20:46.423933 + : pb-IF4VUlJYFg== ip: dvvazvb}m~vk, Device id: 3b574b234f4984d8ab8cfbbca3a41987677635d0 -2023-06-06 17:22:11.698313 + : pb-IF4cUBYfCg== ip: azo~{m~}iaalg, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-06 17:22:33.788865 + : pb-IF4cUBYfCg== ip: azo~{m~}iaalg, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-06 17:22:53.847437 + : pb-IF4cUBYfCg== ip: azo~{m~}iaalg, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-06 17:27:38.908915 + : pb-IF49VFdbEQ== ip: an~}hfaiiwvg~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-06 17:36:13.937533 + : pb-IF4wU1MPEg== started kick vote for pb-IF4wVWoGMg==. -2023-06-06 17:36:43.942620 + : Kick vote End -2023-06-06 17:37:17.109669 + : pb-IF4HUmRfKw== ip: b}k~~`gaia{vavh, Device id: e3cfb7d6bfdd21cc19ecf5cd314b23ee982fbe5d -2023-06-06 17:37:33.162397 + : pb-IF49I04z ip: a~h~}jda`haiby, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-06 17:37:36.168699 + : pb-IF4HUmRfKw== ip: b}k~~`gaia{vavh, Device id: e3cfb7d6bfdd21cc19ecf5cd314b23ee982fbe5d -2023-06-06 17:39:55.066440 + : pb-IF4wU1MPEg== started kick vote for pb-IF4HUmRfKw==. -2023-06-06 17:40:25.073639 + : Kick vote End -2023-06-06 17:41:12.982993 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-06 17:41:31.045000 + : pb-IF4HUmRfKw== ip: b}k~~`gaia{vavh, Device id: e3cfb7d6bfdd21cc19ecf5cd314b23ee982fbe5d -2023-06-06 17:41:37.066929 + : pb-IF4HUmRfKw== ip: b}k~~`gaia{vavh, Device id: e3cfb7d6bfdd21cc19ecf5cd314b23ee982fbe5d -2023-06-06 17:41:57.131200 + : pb-IF4HUmRfKw== ip: b}k~~`gaia{vavh, Device id: e3cfb7d6bfdd21cc19ecf5cd314b23ee982fbe5d -2023-06-06 17:45:31.874791 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-06 17:48:11.654733 + : pb-IF4XU0gNJg== started kick vote for pb-IF4HUmRfKw==. -2023-06-06 17:48:41.654726 + : Kick vote End -2023-06-06 17:48:43.579787 + : pb-IF49I04z ip: a~h~}jda`haiby, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-06 17:50:29.961918 + : pb-IF5RU1lfAQ== ip: b}k~~a`aiezvaz, Device id: a6ebbd0c7acb2aec57ffe4b7fec625847473f863 -2023-06-06 17:57:57.543135 + : pb-IF4HUmRfKw== ip: b}k~~`gaia{vavh, Device id: e3cfb7d6bfdd21cc19ecf5cd314b23ee982fbe5d -2023-06-06 18:02:44.678892 + : pb-IF4rLkwp ip: a~j~~kdaja|vdw, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-06-06 18:03:03.357884 + : pb-IF4lU2caEg== started kick vote for pb-IF5RU1lfAQ==. -2023-06-06 18:03:33.363267 + : Kick vote End -2023-06-06 18:04:45.092762 + : pb-IF4rLkwp ip: a~j~~kdaja|vdw, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-06-06 18:08:14.884653 + : pb-IF4wV24HBw== ip: an~~acajbvb|h, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-06-06 18:09:13.103250 + : pb-IF49VFdbEQ== ip: an~}hfaj`~vg~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-06 18:14:38.303118 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-06 18:20:57.846628 + : pb-IF4VU3laVA== ip: ak~~`dajcwva}`, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-06 18:36:42.513223 + : pb-IF49U0MCCA== ip: ak~}n~{a~yl, Device id: 9ea383f7480b8975143ccc19f4013e3081d1b7d7 -2023-06-06 18:53:54.610697 + : pb-IF5WU0gIUQ== ip: azj~z`~}icajdw, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-06 18:55:30.952587 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-06 19:01:19.328780 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-06 19:06:44.650900 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-06 19:11:20.858163 + : pb-IF4hUGcPIg== ip: dvvbm~wj~~jb, Device id: c18b43fba210f6bb007166612f882c3996de8af7 -2023-06-06 19:18:56.678762 + : pb-IF5QVVAuJA== ip: an~}ifajd~vaxh, Device id: 4e34a5f6bcd8ff274cf352a98d121a0c3fcc6962 -2023-06-06 19:21:23.254858 + : pb-IF40UncaLg== ip: ak~~`aaa~}`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-06-06 19:24:10.844488 + : pb-IF5QVVAuJA== ip: an~}ifajd~vaxh, Device id: 4e34a5f6bcd8ff274cf352a98d121a0c3fcc6962 -2023-06-06 19:25:21.075688 + : pb-IF4IU28qPA== ip: azo~zi~~igajbv, Device id: 2b676771bfc1043a69989576d24e1194aec0a626 -2023-06-06 19:34:18.130860 + : pb-IF40VXMlBA== ip: an~~acaihvvazn, Device id: 2567dc394522ed525d920d39eecafdfd32621b4d -2023-06-06 19:37:48.881652 + : pb-IF49VFdbEQ== ip: an~}hfaj`~vg~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-06 19:46:30.012507 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG ip: a~o~va~}ldamc, Device id: 822adb43af454f4ce0fdec16028787c26c151d5f -2023-06-06 19:46:52.097551 + : pb-IF5dUGlcJA== ip: dvvc}va|k~}l, Device id: 234fb9f7627555d5496bb99f3102550c9f340d50 -2023-06-06 20:00:44.485479 + : pb-IF4VU3laVA== ip: ak~~`dajcwva}`, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-06 20:01:08.554656 + : pb-IF41U0YxAw== ip: a|o~vo~~heajaz, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-06 20:01:48.688747 + : pb-IF5WU0gIUQ== ip: azj~z`~}icajdw, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-06 20:02:06.743266 + : pb-IF5WU0gIUQ== ip: azj~z`~}icajdw, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-06 20:15:10.577581 + : pb-IF4GUnhdIg== ip: b}k~~`bajdvay, Device id: dc3a4d5eedf35f283390c78ea91ad84133640102 -2023-06-06 20:32:52.005289 + : pb-IF4BVFgaHw== started kick vote for pb-IF40VG4pMg==. -2023-06-06 20:32:56.125408 + : pb-IF40VG4pMg== kicked by kickvotes. -2023-06-06 20:33:15.432806 + : pb-IF5dU3UiAw== ip: azo~{a~}ieaaf, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-06 20:33:20.413975 + : pb-IF4BVFgaHw== started kick vote for pb-IF5dU3UiAw==. -2023-06-06 20:33:26.621692 + : pb-IF5dU3UiAw== kicked by kickvotes. -2023-06-06 20:35:29.985341 + : pb-IF41U2scIg== ip: ak~}hhaoaaid~, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-06 20:35:32.532309 + : kicked SureSale26 -2023-06-06 20:36:11.543501 + : kicked AquaticTor -2023-06-06 20:45:00.085703 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 20:46:40.478911 + : pb-IF4TV3RbDA== ip: azo~{m~~l`aj, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-06-06 20:52:52.785420 + : pb-IF5TUlZaUw== ip: a~o~va~}hgaib|, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-06 20:53:41.970608 + : pb-IF5WU0gIUQ== ip: azj~z`~}icajdw, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-06 20:53:51.926956 + : pb-IF4PU00xDw== started kick vote for pb-IF5WU0gIUQ==. -2023-06-06 20:53:58.251838 + : Kick vote End -2023-06-06 20:54:00.039082 + : pb-IF5WU0gIUQ== ip: azj~z`~}icajdw, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-06 20:55:39.386868 + : pb-IF4OPhMg ip: bxvf~vb{i~~oa, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-06 20:55:46.261280 + : pb-IF4PU00xDw== started kick vote for pb-IF4OPhMg. -2023-06-06 20:56:16.274517 + : Kick vote End -2023-06-06 20:57:44.816732 + : pb-IF4zUBUlNg== ip: an~}heaj`|vawn, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-06 20:59:55.288517 + : pb-IF4GU1AEIA== ip: aya~~liajb{vfy, Device id: 9fbe61bd0d39414b0f72fd952321a435896d6125 -2023-06-06 20:59:58.295253 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jb, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-06 21:00:02.305710 + : pb-IF4GU1AEIA== ip: aya~~liajb{vfy, Device id: 9fbe61bd0d39414b0f72fd952321a435896d6125 -2023-06-06 21:00:33.415945 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jb, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-06 21:01:01.537841 + : pb-IF4-UGIEXQ== ip: azo~{a~~nbaiav, Device id: b360f68b4959d171a06bd29cb63b86a0291d844d -2023-06-06 21:04:18.606796 + : pb-IF4OUBAqNQ== started kick vote for pb-IF4OU3YzNQ==. -2023-06-06 21:04:48.610833 + : Kick vote End -2023-06-06 21:05:59.735574 + : pb-IF4-UGIEXQ== ip: azo~{a~~nbaiav, Device id: b360f68b4959d171a06bd29cb63b86a0291d844d -2023-06-06 21:07:24.049109 + : pb-IF5XVUpZLw== ip: azj~z`~|o~~hg, Device id: 69b8d01e3fcd5aaeb058701366c29f1271e98638 -2023-06-06 21:08:30.294350 + : pb-IF5TUlZaUw== ip: a~o~va~~aiama, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-06 21:12:47.216160 + : pb-IF4GU1AEIA== ip: aya~~liajb{vfy, Device id: 9fbe61bd0d39414b0f72fd952321a435896d6125 -2023-06-06 21:15:31.984379 + : pb-IF49VFdbEQ== ip: an~}hfaiivvd, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-06 21:18:37.643403 + : pb-IF5XVEQFFw== ip: azo~{n~}iaaiey, Device id: 0e1631411da49abab97cf776e45447230798b50f -2023-06-06 21:27:25.669287 + : pb-IF4zUBUlNg== ip: an~}heaj`|vawn, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-06 21:35:42.555718 + : pb-IF4VVG8gNQ== ip: azo~zi~~adaji, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-06 21:51:52.390759 + : pb-IF4VUlcBVQ== ip: azj~z`~~jiajcz, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-06-06 21:55:24.121326 + : pb-IF4vU0MENg== ip: azj~zo~{a~~`d, Device id: 6382f3717c6ac3650740a14e9d6ab4b67728a26a -2023-06-06 22:01:47.619927 + : pb-IF4VU3laVA== ip: ak~~`dajcwva}`, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-06 22:03:03.889792 + : pb-IF5WU0gIUQ== ip: azj~z`~}icajcx, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-06 22:04:13.144603 + : pb-IF5QU3AaLg== ip: dvvc{vfzvaz`, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-06-06 22:06:10.554874 + : pb-IF5QU3AaLg== ip: dvvc{vfzvaz`, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-06-06 22:06:57.724512 + : pb-IF4WUBJcVQ== ip: ak~}maamiaji, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-06-06 22:11:36.935938 + : pb-IF4IUGQRHw== ip: azo~{n~~lba`g, Device id: 75b42d0e6532c03c0a60bb7c5238043a93288156 -2023-06-06 22:11:51.982552 + : pb-IF4IUGQRHw== ip: azo~{n~~lba`g, Device id: 75b42d0e6532c03c0a60bb7c5238043a93288156 -2023-06-06 22:12:03.028165 + : pb-IF4IUGQRHw== ip: azo~{n~~lba`g, Device id: 75b42d0e6532c03c0a60bb7c5238043a93288156 -2023-06-06 22:14:01.526912 + : pb-IF5WU0gIUQ== ip: azj~z`~}ibaih}, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-06 22:23:19.160149 + : pb-IF49VFdbEQ== ip: an~}hfaiivvd, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-06 22:25:56.905942 + : pb-IF4VVG8gNQ== ip: azo~zi~~adaji, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-06 22:31:19.154562 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-06 22:32:27.419285 + : pb-IF49VFdbEQ== ip: an~}hfaiivvd, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-06 23:16:35.702660 + : pb-IF4VU3laVA== ip: ak~~`dajcwva}`, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-06 23:33:24.626485 + : pb-IF4qUxBfAw== ip: dxvazva{va}h, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-06 23:42:52.760821 + : pb-IF4MUk0CEg== ip: dvvcxve}vbn, Device id: 618fd7a62afdcfd000ff037b4ad7fece3396e9ce -2023-06-06 23:56:15.968434 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 00:03:34.058947 + : Server started -2023-06-07 00:03:35.067678 + : pb-IF4cVGMHLA== ip: an~~adajevbv, Device id: b055fe844b57210943a3bba37a3a7be5abc140d9 -2023-06-07 00:03:41.085472 + : pb-IF4cVGMHLA== ip: an~~adajevbv, Device id: b055fe844b57210943a3bba37a3a7be5abc140d9 -2023-06-07 00:23:40.250087 + : pb-IF4IUGVTMQ== ip: b}k~~`dajbvva|o, Device id: c122767b74fe0c99f1c70247ae0b7d6375493e1d -2023-06-07 00:30:43.395713 + : pb-IF4JUGUvEQ==|| kicked , for using spoofed id Kingbrose9 -2023-06-07 00:39:22.690266 + : pb-IF4pU04jNg== ip: ewva{m~~aaajdz, Device id: 6d3365f7a16dcacdb546766a0eb65f2962cc5466 -2023-06-07 00:39:29.726286 + : pb-IF4pU04jNg== ip: ewva{m~~aaajdz, Device id: 6d3365f7a16dcacdb546766a0eb65f2962cc5466 -2023-06-07 00:56:34.136208 + : pb-IF43UGpSEA==|| kicked > new account -2023-06-07 01:01:17.836295 + : pb-IF41U2scIg== ip: ak~}hhaoaaid~, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-07 01:21:48.222813 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 02:05:27.619491 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 02:27:02.344474 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 02:48:08.242408 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 04:29:11.339892 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 04:50:25.056873 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 05:12:20.871868 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 05:33:40.626262 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 06:16:38.563653 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 07:04:04.482556 + : Server started -2023-06-07 07:20:32.155209 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 07:41:49.000392 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 07:59:58.172976 + : pb-IF40UGciNw== ip: awl~zo~}jfanh, Device id: 705a68e09584a42401a790b7da780cc38f6bff54 -2023-06-07 08:03:08.849288 + : pb-IF40UGciNw== ip: awl~zo~}jfanh, Device id: 705a68e09584a42401a790b7da780cc38f6bff54 -2023-06-07 08:25:30.712859 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 08:25:45.741028 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 08:47:05.421323 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 09:02:57.660725 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-07 09:05:23.178526 + : pb-IF5XUGYhDQ== ip: azo~{n~~ibai`z, Device id: b1aca8f0a101de39f68a0aa1b4c592d9c46fc9b0 -2023-06-07 09:14:09.343168 + : pb-IF4cUlhdVg== started kick vote for pb-IF4OUBAqNQ==. -2023-06-07 09:14:39.348187 + : Kick vote End -2023-06-07 09:51:02.552816 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 09:53:46.218821 + : pb-IF4eU0s9Pw== ip: a~a~vl~yl~vo, Device id: 79ff602d98582d9885d769eec06b4ebd8aab0aad -2023-06-07 10:00:41.795695 + : pb-IF4WUBJcVQ== ip: ak~}maamiaji, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-06-07 10:04:36.665529 + : pb-IF4cUBYfCg== ip: azo~{m~}ifaig|, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-07 10:16:06.264643 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-07 10:16:21.317818 + : pb-IF4dU1IOKQ== ip: an~}ifajcvd~, Device id: 0ea8bbe6ad0e9c005407166ad37923d1f241be41 -2023-06-07 10:17:55.642990 + : pb-IF4qUxBfAw== ip: dxviakbaif, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-07 10:20:48.367382 + : pb-IF4dU1IOKQ== ip: an~}ifajcvd~, Device id: 0ea8bbe6ad0e9c005407166ad37923d1f241be41 -2023-06-07 10:23:04.375922 + : pb-IF4IUGkEMw==|| kicked > new account -2023-06-07 10:25:21.373967 + : pb-IF4eU0s9Pw== ip: a~a~vl~yl~vo, Device id: 79ff602d98582d9885d769eec06b4ebd8aab0aad -2023-06-07 10:27:32.856188 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-07 10:31:44.802664 + : pb-IF4GUBc7AA== ip: bxvevva~k~z`, Device id: ef7261e7f53f2fd79626af05029ec7fbcc6a76ac -2023-06-07 10:33:21.345063 + : pb-IF4AUGUiDg== ip: b}k~~`gaih{vb}m, Device id: 462f04148f2ebb5d983d22a9b33292f343543284 -2023-06-07 10:36:47.412636 + : pb-IF4zUBUlNg== ip: an~}heaiiyva|n, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-07 10:38:45.867836 + : pb-IF4XUGMiVQ== ip: bxvevvb}i~~nb, Device id: 72fb8ed686d6298222d54620ed0c195da2a473c3 -2023-06-07 10:42:08.597225 + : pb-IF41U2scIg== ip: ak~}hhaoaaid~, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-07 10:48:45.187884 + : pb-IF4eU0s9Pw== ip: a~a~vl~yl~vo, Device id: 79ff602d98582d9885d769eec06b4ebd8aab0aad -2023-06-07 10:50:31.565542 + : pb-IF4mVGZaCw== ip: dvvc}va|a~}o, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-06-07 10:54:03.391796 + : pb-IF4cUktZNg== ip: azj~z`~~mbaki, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-06-07 10:56:13.890855 + : pb-IF49I04z ip: a~h~}jda`aaigv, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-07 11:07:39.446232 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 11:13:59.053745 + : pb-JiNJARFbVkBAXV5AGE5WVVxKFkBfQlBG ip: a}j~~ogaiizvbzh, Device id: 4bdfb7c511e32054dffaa70bd966bdfe9fe31ab2 -2023-06-07 11:18:25.183164 + : pb-IF49VFdbEQ== ip: an~}hfaj`xvb}m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-07 11:24:51.765844 + : pb-IF5WU0gIUQ== ip: azj~z`~}ibajb, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-07 11:27:44.478133 + : pb-IF41U2scIg== ip: ak~}hhaoaa`h, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-07 11:47:01.810224 + : pb-IF4OPhMg ip: bxvf~vb{i~~oa, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-07 11:47:57.365725 + : pb-IF5VU1JZMw== ip: an~}ica`caj`~, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-07 11:48:30.473338 + : pb-IF4VVG8gNQ== ip: azo~zi~~adajcw, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-07 11:50:09.186190 + : pb-IF4VVG8gNQ== started kick vote for pb-IF4LUGg4Fw==. -2023-06-07 11:50:39.175791 + : Kick vote End -2023-06-07 11:55:59.351205 + : pb-IF5VU1JZMw== ip: an~}ica`caj`~, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-07 12:02:28.903259 + : pb-IF5VU1JZMw== started kick vote for pb-IF4IUBA4IA==. -2023-06-07 12:02:58.906869 + : Kick vote End -2023-06-07 12:04:08.979570 + : pb-IF4JUBkxKw== ip: dvvd|vb~a~~`b, Device id: 744537108d53e730f1a041711ca9db3a11e5eb1a -2023-06-07 12:04:21.241569 + : pb-IF4OPhMg started kick vote for pb-IF4IUBA4IA==. -2023-06-07 12:04:51.248615 + : Kick vote End -2023-06-07 12:05:46.367632 + : pb-IF4nUxE4Nw== ip: a~h~}jfaih|vc, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-06-07 12:11:44.056673 + : pb-IF42VUMOFA== ip: dvvcyvexva|m, Device id: b2b5c541b3b32f7d9f93511a7f9184f12c345f35 -2023-06-07 12:12:04.135619 + : pb-IF4IUBA4IA== ip: dvvcyvixvb~m, Device id: 78eed585c25d2fb7364ae7771b17881cef15558a -2023-06-07 12:12:56.310417 + : pb-IF42VUMOFA== ip: dvvcyvexva|m, Device id: b2b5c541b3b32f7d9f93511a7f9184f12c345f35 -2023-06-07 12:14:12.750521 + : pb-IF4BU0EsIg== ip: azj~z`~}haald, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-06-07 12:15:32.987372 + : pb-IF4dU1IOKQ== ip: an~}ifajcxvd~, Device id: 0ea8bbe6ad0e9c005407166ad37923d1f241be41 -2023-06-07 12:15:52.056849 + : pb-IF4nUxE4Nw== ip: a~h~}jfaih|vc, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-06-07 12:17:40.498581 + : pb-IF5WU0gIUQ== ip: azj~z`~}icaje~, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-07 12:22:45.680388 + : pb-IF49VFdbEQ== ip: an~}hfaj`xvb}m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-07 12:31:25.639363 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 12:32:54.967301 + : pb-IF4qUxBfAw== ip: dxviakbaj`x, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-07 12:33:53.232503 + : pb-IF5dU3UiAw== ip: azo~{a~}iiaih~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-07 12:37:15.247919 + : pb-IF49VFdbEQ== ip: an~}hfaj`xvb}m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-07 12:39:08.672847 + : pb-IF4WU2ctKA== ip: ak~~nfajdzvbh, Device id: 0ac465153dc65b0a9570e9f27bc9192c7a86d43c -2023-06-07 12:52:09.926509 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 12:57:03.006143 + : pb-IF4BU0EsIg== ip: azj~z`~}haald, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-06-07 13:00:53.866258 + : pb-IF49VFdbEQ== ip: an~}hfaj`xvb}m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-07 13:13:30.754596 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 13:35:30.921661 + : Server started -2023-06-07 13:38:28.577631 + : pb-IF4RUhQyJg== ip: a|o~vo~vk~|n, Device id: 96f32a868b64ce9c633d8768ecb73991548ee8b6 -2023-06-07 13:39:00.696610 + : pb-IF41UGcPNQ== ip: i~vayh~zh~|`, Device id: 7912aaeb116912fb8216874995084c198f22305d -2023-06-07 13:39:29.809199 + : pb-IF41UGcPNQ== ip: i~vayh~zh~|`, Device id: 7912aaeb116912fb8216874995084c198f22305d -2023-06-07 13:40:47.132748 + : pb-IF5UUGhSIA== ip: i{vb|j~xa~yk, Device id: 35b9c1f3482f8d9b714c717bf462f9110fc49873 -2023-06-07 13:42:49.591844 + : pb-IF4qUxBfAw== ip: dxviakbaj`x, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-07 13:44:54.096200 + : pb-IF5VU1JZMw== ip: an~}ica`caj`~, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-07 13:45:31.248035 + : pb-IF4eU0s9Pw== ip: a~a~vl~xi~~na, Device id: 79ff602d98582d9885d769eec06b4ebd8aab0aad -2023-06-07 13:45:33.258626 + : pb-IF4IUGQRHw== ip: azo~{n~~kgaib|, Device id: 75b42d0e6532c03c0a60bb7c5238043a93288156 -2023-06-07 13:45:35.265862 + : pb-IF4PU2Y6VQ== ip: a~h~}jfaih|vc, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-06-07 13:46:05.355035 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-07 13:49:12.050060 + : pb-IF4TUxEoKg== ip: azj~zo~}i`aj`{, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-06-07 13:50:09.246718 + : pb-IF4OPhMg ip: bxvf~vb{i~~oa, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-07 13:52:00.651836 + : pb-IF4FUxMtPQ== ip: b}k~~`daihyvb{m, Device id: f71317314903841036b394e876c4df4bb46bf6ab -2023-06-07 13:52:30.341284 + : pb-IF4OPhMg started kick vote for pb-IF4CFmcg. -2023-06-07 13:53:00.343628 + : Kick vote End -2023-06-07 13:53:11.163759 + : pb-IF5WUGsdCA==|| kicked > new account -2023-06-07 13:59:23.061882 + : pb-IF4FUxMtPQ== started kick vote for pb-IF5VU1JZMw==. -2023-06-07 13:59:50.291255 + : pb-IF5VU1JZMw== kicked by kickvotes. -2023-06-07 14:00:23.840273 + : pb-IF4OPhMg started kick vote for pb-IF4eU0s9Pw==. -2023-06-07 14:00:53.842324 + : Kick vote End -2023-06-07 14:03:57.860426 + : pb-IF4OPhMg started kick vote for pb-IF4eU0s9Pw==. -2023-06-07 14:04:13.276852 + : pb-IF4tUGMBCg== ip: ak~}hhaoaa`h, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-06-07 14:04:27.862516 + : Kick vote End -2023-06-07 14:06:20.689100 + : pb-IF5VU1JZMw== ip: an~}ica`caj`~, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-07 14:08:56.226886 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-07 14:09:57.468321 + : pb-IF4VU3laVA== ip: ak~~`baifxvbl, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-07 14:10:55.576559 + : pb-IF4eU0s9Pw== started kick vote for pb-IF4VU3laVA==. -2023-06-07 14:11:12.729779 + : pb-IF4qUxBfAw== ip: dxviakbaj`x, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-07 14:11:25.579878 + : Kick vote End -2023-06-07 14:12:11.902893 + : pb-IF4SVFkaCQ== ip: a~l~~jbaia{va|h, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-06-07 14:12:36.733752 + : pb-IF4OUBAqNQ== started kick vote for pb-IF5VU1JZMw==. -2023-06-07 14:13:06.738699 + : Kick vote End -2023-06-07 14:13:47.221618 + : pb-IF4cUBYfCg== ip: azo~{m~~acajf, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-07 14:14:39.303341 + : pb-IF4eU0s9Pw== started kick vote for pb-IF4WUlBeUA==. -2023-06-07 14:14:55.472539 + : pb-IF4PU2Y6VQ== ip: a~h~}jfaih|vc, Device id: 4eb8860c217488d77476288d99816fa776d12c0c -2023-06-07 14:15:07.218793 + : Kick vote End -2023-06-07 14:15:52.712136 + : pb-IF4WUlBeUA== ip: an~}h`a`iaj`|, Device id: b06b71ee724e687976b1499de70937cf5dab9162 -2023-06-07 14:16:23.219002 + : pb-IF4eU0s9Pw== started kick vote for pb-IF5VU1JZMw==. -2023-06-07 14:16:50.945945 + : pb-IF4qUxBfAw== ip: dxviakbaj`x, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-07 14:16:53.223556 + : Kick vote End -2023-06-07 14:19:58.590049 + : pb-IF49VFdbEQ== ip: an~}hfaj`xvb}m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-07 14:20:09.976735 + : pb-IF4TUGpaAg==|| kicked > new account -2023-06-07 14:22:04.047924 + : pb-IF4xUhUoLQ== ip: azj~zo~~o`ajdv, Device id: 5127f3db98893e1be9651ab9e524b1cd1074ff0c -2023-06-07 14:22:29.132779 + : pb-IF41U2scIg== ip: ak~}hhaoaa`h, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-07 14:25:32.472297 + : pb-IF4xUhUoLQ== started kick vote for pb-IF4vVUNfEA==. -2023-06-07 14:26:02.477671 + : Kick vote End -2023-06-07 14:27:41.310852 + : pb-IF4xUhUoLQ== ip: azj~zo~~o`ajdv, Device id: 5127f3db98893e1be9651ab9e524b1cd1074ff0c -2023-06-07 14:30:16.877509 + : pb-IF4hU05dLg== ip: azo~{a~}jcaig, Device id: 66b9a539c2336161846fa0e39f961ee6a88bbc7c -2023-06-07 14:30:32.945465 + : pb-IF4cUBYfCg== ip: azo~{m~~aiajbv, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-07 14:31:19.141595 + : pb-IF4vVVczDg== ip: a~o~~acaii~va}n, Device id: f14885c6acd92186b8308f6b88352d1da5abcb11 -2023-06-07 14:32:38.440028 + : pb-IF5dVW4SPA== ip: dvvc|vbo~~ac, Device id: b11b52d7767f73423809e624a14aba8384b2f999 -2023-06-07 14:33:05.532165 + : pb-IF49I04z ip: a~h~}jda``ai`v, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-07 14:34:08.077221 + : pb-IF5dVW4SPA== started kick vote for pb-IF4vVUNfEA==. -2023-06-07 14:34:22.227168 + : Kick vote End -2023-06-07 14:37:40.654326 + : pb-IF4jF1NY ip: azj~z`~{m~~nd, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-07 14:45:14.410456 + : pb-IF4dU1IOKQ== ip: b}k~}kaaif{va|l, Device id: 0ea8bbe6ad0e9c005407166ad37923d1f241be41 -2023-06-07 14:46:09.591410 + : pb-IF41U2scIg== ip: ak~za~xl~~, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-07 14:46:21.647734 + : pb-IF4hVFQJPA== | kicked > reason: Banned account -2023-06-07 15:20:13.368467 + : pb-IF4NUxFfEg== ip: bxvf}vbi~ym, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-06-07 15:23:56.153089 + : pb-IF41U0YxAw== ip: azo~{n~~l`aj`v, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-07 15:27:00.891666 + : pb-IF5WU0gIUQ== ip: azj~z`~}icaiax, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-07 15:29:47.566609 + : pb-IF4yU0hYEw== ip: awj~ya~~ogao`, Device id: 052bbfd43b91c5bc01d4ba79df1c076697418a48 -2023-06-07 15:34:19.513817 + : pb-IF4rU0pbAQ== ip: dyvazl~vvb|, Device id: 4885736a7929e43b3afadaa9a8de3747ca021115 -2023-06-07 15:34:48.626717 + : pb-IF4jF1NY ip: azj~z`~vb{m, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-07 15:36:46.064454 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-07 15:41:06.043270 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 15:43:50.638675 + : pb-IF41U2scIg== ip: ak~za~xl~~, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-07 15:51:50.337444 + : pb-IF4UUBMBHA== ip: azj~z`~|m~}lf, Device id: ac16a99230d2d83318f44aa07143d3901a9ced44 -2023-06-07 15:54:45.961375 + : pb-IF4FVFUxVw== | kicked > reason:Banned account -2023-06-07 15:57:01.473948 + : pb-IF41U2scIg== ip: ak~za~xl~}i, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-07 16:02:08.580930 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 16:11:24.326467 + : pb-IF4UUGo-Lw==|| kicked > new account -2023-06-07 16:16:13.812371 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-07 16:18:04.225759 + : pb-IF4qUxBfAw== ip: dxviakbaifv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-07 16:23:16.451944 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 16:43:20.790061 + : pb-IF4nUxE4Nw== ip: a~h~}jfaih|vc, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-06-07 16:43:42.867942 + : pb-IF4nUxE4Nw== ip: a~h~}jfaih|vc, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-06-07 16:44:42.095657 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 16:51:25.627931 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-07 16:57:09.858847 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-07 16:59:12.482687 + : pb-IF4OPhMg ip: bxvf~vb{i~~ki, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-07 17:04:27.632690 + : pb-IF41U2scIg== ip: ak~za~xl~}i, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-07 17:08:38.708913 + : pb-IF49I04z ip: a~h~}jdaacai`v, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-07 17:11:17.403080 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-07 17:13:15.860126 + : pb-IF5VU1JZMw== ip: an~}ica`caj`~, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-07 17:14:33.847604 + : pb-IF4XU0gNJg== started kick vote for pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB. -2023-06-07 17:15:03.854416 + : Kick vote End -2023-06-07 17:17:18.756007 + : pb-IF49I04z ip: a~h~}jdaacai`v, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-07 17:21:06.698351 + : pb-IF4IUGVTMQ== ip: b}k~~`daidvaw, Device id: c122767b74fe0c99f1c70247ae0b7d6375493e1d -2023-06-07 17:22:09.076299 + : pb-IF4jU2wfVQ== ip: ak~wa~}keai`y, Device id: b001124a818ebd76cbf039c9fd1b3acce02937cc -2023-06-07 17:24:43.652958 + : pb-IF4XU0gNJg== started kick vote for pb-IF4OPhMg. -2023-06-07 17:24:43.980327 + : Kick vote End -2023-06-07 17:28:50.602632 + : pb-IF4XU0gNJg== started kick vote for pb-IF5SUGoKAA==. -2023-06-07 17:28:56.657144 + : pb-IF5SUGoKAA== kicked by kickvotes. -2023-06-07 17:32:53.753629 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-07 17:43:26.189714 + : pb-IF5dUGYuHw== ip: azj~z`~~`iaid, Device id: 874c403714e6060dbe7235bb3f44c8974130f59b -2023-06-07 17:45:44.673482 + : pb-IF4VUlcBVQ== ip: b}k~~`iajevb{k, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-06-07 17:46:39.892502 + : pb-IF4VUlcBVQ== ip: b}k~~`iajevb{k, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-06-07 17:47:59.257466 + : pb-IF4VVWIbDA== ip: bxvf|vb~`~~kc, Device id: cd28c01ba98a5e95ab3334337bb5e4c732e63f11 -2023-06-07 17:49:42.640786 + : pb-IF4JVFA6LQ== ip: azj~z`~~a~ym, Device id: f2739f56e5aff6d13c471c7e9c30137e9b789e2d -2023-06-07 17:53:48.466416 + : pb-IF4JVFA6LQ== ip: azj~z`~~a~ym, Device id: f2739f56e5aff6d13c471c7e9c30137e9b789e2d -2023-06-07 17:53:59.498318 + : pb-IF4VUlcBVQ== ip: b}k~~`iajevb{k, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-06-07 17:57:36.319225 + : pb-IF4jU2gAEg== ip: dvvbm~vn~~og, Device id: 83c458b93ee2737e52f3702e528207927f0fc4fc -2023-06-07 18:01:02.161977 + : pb-IF41U2scIg== ip: ak~za~xl~}i, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-07 18:01:37.291126 + : pb-IF4jU2gAEg== ip: dvvbm~vn~~og, Device id: 83c458b93ee2737e52f3702e528207927f0fc4fc -2023-06-07 18:07:42.693552 + : pb-IF5UUGkgNQ== ip: ak~~ndaiiyvdw, Device id: faf61e806e081dbfc50dee8962ae5843694c8ce8 -2023-06-07 18:09:30.131182 + : pb-IF4cUBYfCg== ip: azo~{m~~aiaicv, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-07 18:14:26.270723 + : pb-IF4wV24HBw== ip: an~~acajd{vb|l, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-06-07 18:16:54.822243 + : pb-IF4cUBYfCg== ip: azo~{m~}h`aj`}, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-07 18:18:01.370903 + : pb-IF5UUGxcIg==|| kicked > new account -2023-06-07 18:22:18.281927 + : pb-IF49I04z ip: a~h~}jdaacai`v, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-07 18:23:08.441764 + : pb-IF4WUBJcVQ== ip: ak~}maamiaji, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-06-07 18:25:23.946972 + : pb-IF4iUBElEA== ip: a~o~v`~~hdam`, Device id: e83f4298b0048cf959e8f1fe232b15af554f1270 -2023-06-07 18:27:41.587484 + : pb-IF4mU3IFMw== ip: ak~}i~~neajd}, Device id: 317d3f94f15c9f0fcc8e560f5fa6377a7227f862 -2023-06-07 18:28:34.016918 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-07 18:35:07.628763 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-07 18:40:11.741709 + : pb-IF4NUGcODw== ip: a~o~va~}mbajav, Device id: 8e222b5ae3b0de04712b410e8faf0a466938ad72 -2023-06-07 18:42:40.222208 + : pb-IF41U2scIg== ip: ak~za~xl~}i, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-07 18:50:04.926381 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 18:50:12.979786 + : pb-IF49VFdbEQ== ip: an~}hfaj`|vaxl, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-07 19:03:41.066558 + : pb-IF5VU1JZMw== ip: an~}ica`caj`~, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-07 19:06:18.891535 + : pb-IF4NUGcODw== ip: a~o~va~}mbajav, Device id: 8e222b5ae3b0de04712b410e8faf0a466938ad72 -2023-06-07 19:11:03.965091 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 19:11:13.005563 + : pb-IF49VFdbEQ== ip: an~}hfaj`|vaxl, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-07 19:23:34.948649 + : pb-IF4jU2gAEg== ip: dvvbm~vn~~og, Device id: 8e2eb965578d7898efa86a0fed19362451c05bea -2023-06-07 19:35:04.561449 + : pb-IF4tUGMBCg== ip: ak~za~xl~}i, Device id: 16bd8d2dabd2311ba549d52dff29bfa8c37935bf -2023-06-07 19:40:33.796156 + : pb-IF4JUGUvEQ== ip: avo~{k~vk~y, Device id: 87b326222f060f4c6c19669026fa20f57d71fbbd -2023-06-07 19:53:11.699090 + : pb-IF41U2scIg== ip: ak~za~xl~}i, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-07 19:54:20.988851 + : pb-IF49VFdbEQ== ip: an~}hfaj`|vaxl, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-07 19:54:33.019262 + : pb-IF49VFdbEQ== ip: an~}hfaj`|vaxl, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-07 19:56:09.379846 + : pb-IF4MUBMHKA== ip: azj~z`~~n~vl, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-06-07 19:59:02.966069 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhva{h, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-06-07 19:59:33.086382 + : pb-IF41U1U9BA== ip: ak~~n`ajcxvb}a, Device id: 447b2f34e6752d40d026da152470dcdab9192c75 -2023-06-07 19:59:38.106887 + : pb-IF49UBEhJA== ip: azo~|j~|m~xh, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-06-07 20:01:16.521734 + : pb-IF4JUGUvEQ== ip: avo~{k~vk~y, Device id: 87b326222f060f4c6c19669026fa20f57d71fbbd -2023-06-07 20:03:02.940324 + : pb-IF4JUGUvEQ== ip: avo~{k~vk~y, Device id: 87b326222f060f4c6c19669026fa20f57d71fbbd -2023-06-07 20:06:59.157029 + : pb-IF49VFdbEQ== ip: an~}hfaj`|vaxl, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-07 20:08:07.400765 + : pb-IF5TUlZaUw== ip: a~o~va~}h`akb, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-07 20:08:17.438274 + : pb-IF5TUlZaUw== ip: a~o~va~}h`akb, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-07 20:09:17.664906 + : pb-IF4OUBY-HA== ip: a|j~~mdajiaiez, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-06-07 20:14:07.748918 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 20:16:07.212667 + : pb-IF4JUGUvEQ== ip: avo~{k~vk~y, Device id: 87b326222f060f4c6c19669026fa20f57d71fbbd -2023-06-07 20:25:25.388890 + : pb-IF49VFdbEQ== ip: an~}hfaj`|vaxl, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-07 20:35:33.778501 + : Server started -2023-06-07 20:35:34.782810 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 20:37:49.694518 + : pb-IF4PUGosJw==|| kicked > new account -2023-06-07 20:39:55.815646 + : pb-IF49VFdbEQ== ip: an~}hfaj`|vaxl, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-07 20:45:17.057064 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~~l`, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-06-07 20:53:09.955373 + : pb-IF4yUmkuLw== ip: ak~vm~wi~~la, Device id: 115323723d0de932467f154cc8c1aea75c7b3f7c -2023-06-07 20:57:53.044690 + : pb-IF41U2scIg== ip: ak~za~xl~}i, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-07 21:03:50.391465 + : pb-IF5RUBkiKA== ip: bxvf|vbzk~~h`, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-06-07 21:11:21.005425 + : pb-IF49VFdbEQ== ip: an~}hfaj`|vaxl, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-07 21:12:46.342194 + : pb-IF49VFdbEQ== ip: an~}hfaj`|vaxl, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-07 21:18:34.683448 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 21:19:05.792424 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhva{h, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-06-07 21:22:15.560353 + : pb-IF4MUk0CEg== ip: b}k~~`gajdvva~h, Device id: 618fd7a62afdcfd000ff037b4ad7fece3396e9ce -2023-06-07 21:25:10.336262 + : pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB ip: ak~{`~~haai`x, Device id: rikkolovescats :3 -2023-06-07 21:32:57.075768 + : pb-IF4JUGUvEQ== ip: avo~{k~vk~y, Device id: 87b326222f060f4c6c19669026fa20f57d71fbbd -2023-06-07 21:38:33.378374 + : pb-IF4-Uk4mEA== ip: dvvcxvg{vdx, Device id: b1920ab07bd50671fd0897a7c4ccab774e5adc53 -2023-06-07 21:38:34.377128 + : pb-IF4uUk4vMg== ip: a~h~}jgaic~vb, Device id: 6635c2af1bf357a9e95bbf3d6082a39d14dc3cdb -2023-06-07 21:40:54.963823 + : pb-IF4OPhMg ip: bxvf~vb{i~~ki, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-07 21:42:00.210132 + : pb-IF4uUk4vMg== ip: a~h~}jgaic~vb, Device id: 6635c2af1bf357a9e95bbf3d6082a39d14dc3cdb -2023-06-07 21:42:04.220050 + : pb-IF4-Uk4mEA== ip: dvvcxvg{vdx, Device id: b1920ab07bd50671fd0897a7c4ccab774e5adc53 -2023-06-07 21:44:47.963301 + : pb-IF4VUlcBVQ== ip: b}k~}jeaje|vh, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-06-07 21:58:19.150619 + : pb-IF5XUxZYPQ== ip: azj~zo~}kea`h, Device id: 106fd9bcc2e71b23abc2a7eaaff570ef2f3a8c9c -2023-06-07 21:59:16.394877 + : pb-IF4-Uk4mEA== ip: dvvcxvg{vdx, Device id: b1920ab07bd50671fd0897a7c4ccab774e5adc53 -2023-06-07 22:02:12.114552 + : pb-IF4nUnZfJg== ip: azo~|j~}ldaic~, Device id: 4ba0df99dfeca7b3c40f7493f1c2420e1b54ed88 -2023-06-07 22:08:14.542567 + : pb-IF4OU2QjMQ== | kicked > reason:Banned account -2023-06-07 22:15:11.145461 + : pb-IF4OUBY-HA== ip: a|j~~mdaa~{o, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-06-07 22:31:08.675672 + : pb-IF49VFdbEQ== ip: an~}hfaj`|vaxl, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-07 22:47:00.310170 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 22:54:57.152866 + : pb-IF4uUk4vMg== ip: a~h~}jgaic~vb, Device id: 6635c2af1bf357a9e95bbf3d6082a39d14dc3cdb -2023-06-07 22:54:57.153461 + : pb-IF4-Uk4mEA== ip: dvvcxvg{vdx, Device id: b1920ab07bd50671fd0897a7c4ccab774e5adc53 -2023-06-07 23:01:24.692362 + : pb-IF4uUk4vMg== ip: a~h~}jgaic~vb, Device id: 6635c2af1bf357a9e95bbf3d6082a39d14dc3cdb -2023-06-07 23:09:17.463288 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 23:10:46.805716 + : pb-IF41U2scIg== ip: ak~}hhaoaaifw, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-07 23:13:20.706421 + : pb-IF4mUGkFJA==|| kicked > new account -2023-06-07 23:14:37.673830 + : pb-IF49VFQlPA== ip: azo~{m~ym~}me, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-06-07 23:24:04.843021 + : pb-IF4FUGkPHA== ip: azo~|k~}jbaki, Device id: 53f7638bd68dfe0d849d1c34f1b48c8d40fa261a -2023-06-07 23:30:37.348419 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-07 23:33:56.115795 + : pb-IF4OUGgPUQ== ip: a~j~~kdaida`h, Device id: d667718161b68488370fc681e609259b5f07aa2d -2023-06-07 23:35:57.522113 + : pb-IF4iU1RbLA== ip: dvvcyvavk~}if, Device id: 33e0374ff43270136cbf12d8cb479b59f912066a -2023-06-07 23:52:13.106746 + : pb-IF40UBNeFg== ip: aaihxvb~l~~k, Device id: 9cc6624173bef69fda79b5e1a6ceed20e9106d86 -2023-06-08 00:13:56.121984 + : pb-IF4OUGgPUQ== ip: a~j~~kdaida`h, Device id: d667718161b68488370fc681e609259b5f07aa2d -2023-06-08 00:33:56.892950 + : pb-IF4jF1NY ip: azj~z`~}vaxj, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-08 00:54:39.710414 + : pb-IF4OPhMg ip: bxvf~vb{i~~ki, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-08 00:55:58.042445 + : pb-IF4cVGMHLA== ip: b}k~~`baigva{n, Device id: b055fe844b57210943a3bba37a3a7be5abc140d9 -2023-06-08 00:56:25.112449 + : pb-IF4IUGVTMQ== ip: b}k~~`daicvvb|l, Device id: c122767b74fe0c99f1c70247ae0b7d6375493e1d -2023-06-08 01:18:46.539809 + : pb-IF4nUxE4Nw== ip: a~h~}jfaih|vc, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-06-08 02:57:09.544933 + : pb-IF4RU0xbFg== ip: i}va~a~yi~}o, Device id: 91e4f82667ecf0002c18d9d2b3030abeba922abb -2023-06-08 02:57:25.596373 + : pb-IF4RU0xbFg== ip: i}va~a~yi~}o, Device id: 91e4f82667ecf0002c18d9d2b3030abeba922abb -2023-06-08 03:36:00.651978 + : Server started -2023-06-08 05:48:46.749339 + : pb-IF4qUGokBg==|| kicked > new account -2023-06-08 07:10:06.973222 + : pb-IF4GU1UdNQ== ip: a}h~}`~vi~~ic, Device id: 59d2818bdaf074a54bfc14e041ee875b2afff306 -2023-06-08 07:25:21.260799 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-08 07:36:03.510964 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-08 07:46:56.952341 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-08 08:07:52.308552 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-08 08:27:11.502031 + : pb-IF4eU0s9Pw== ip: a~a~vl~xi~~na, Device id: 79ff602d98582d9885d769eec06b4ebd8aab0aad -2023-06-08 08:29:12.935559 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-08 08:50:45.480739 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-08 09:10:29.715092 + : pb-IF4-Uk4mEA== ip: dvvcxvg{vdx, Device id: b1920ab07bd50671fd0897a7c4ccab774e5adc53 -2023-06-08 09:10:43.767683 + : pb-IF4uUk4vMg== ip: a~h~}jgaic~vb, Device id: 6635c2af1bf357a9e95bbf3d6082a39d14dc3cdb -2023-06-08 09:13:49.378199 + : pb-IF41UBQPXA== ip: a}l~~hfaid|vf, Device id: 4053d4ecb6d73d755ad3c574aa4bd40384b30b43 -2023-06-08 09:14:38.537014 + : pb-IF4UUGo-Lw== | kicked > reason:Banned account -2023-06-08 09:20:43.831639 + : pb-IF4cUBYfCg== ip: azo~{m~}hfajg, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-08 09:23:15.494601 + : pb-IF4cUBYfCg== ip: azo~{m~}hfajg, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-08 09:23:24.526243 + : pb-IF4WUBJcVQ== ip: ak~}maaiiaj, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-06-08 09:26:04.295977 + : pb-IF4VU3laVA== ip: ak~~n`aii{ve~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-08 09:26:08.319571 + : pb-IF5QVFMCUg== ip: an~~agaic{vbw, Device id: 3b483075b2023edb95e323dc2cc0d8dc516cae08 -2023-06-08 09:33:01.147749 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-08 09:53:50.674151 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-08 09:59:52.981761 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-08 10:05:54.336723 + : pb-IF5WU0gIUQ== ip: azj~z`~}ibamf, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-08 10:08:21.818645 + : pb-IF5TUGxYBA== ip: b}k~}khajawvavj, Device id: eac366e03470b9f310a5cca7d26600eaabe3080e -2023-06-08 10:12:14.994699 + : Server started -2023-06-08 10:15:04.636238 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-08 10:21:38.191638 + : pb-IF4-Uk4mEA== ip: dvvcxvg{vdx, Device id: b1920ab07bd50671fd0897a7c4ccab774e5adc53 -2023-06-08 10:21:43.211354 + : pb-IF4uUk4vMg== ip: a~h~}jgaic~vb, Device id: 6635c2af1bf357a9e95bbf3d6082a39d14dc3cdb -2023-06-08 10:21:53.237648 + : pb-IF4uUk4vMg== ip: a~h~}jgaic~vb, Device id: 6635c2af1bf357a9e95bbf3d6082a39d14dc3cdb -2023-06-08 10:22:39.403759 + : pb-IF4-Uk4mEA== ip: dvvcxvg{vdx, Device id: b1920ab07bd50671fd0897a7c4ccab774e5adc53 -2023-06-08 10:23:07.488242 + : pb-IF4OPhMg ip: bxvf~vb{i~~ki, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-08 10:23:18.526962 + : pb-IF4qUxBfAw== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-08 10:24:08.694988 + : pb-IF5XU1kzXA== ip: aa~~naaja{va}m, Device id: 97cd2c58a5518cb3e4c005e75444883c021a4f5d -2023-06-08 10:25:08.898408 + : pb-IF4OPhMg ip: an~~adamca`b, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-08 10:30:17.240171 + : pb-IF4OPhMg started kick vote for pb-IF5XU1kzXA==. -2023-06-08 10:30:24.226928 + : Kick vote End -2023-06-08 10:32:43.719457 + : pb-IF4OPhMg started kick vote for pb-IF4KU1Q9Pw==. -2023-06-08 10:32:59.676853 + : pb-IF4KU1Q9Pw== kicked by kickvotes. -2023-06-08 10:33:35.090854 + : pb-IF4-Uk4mEA== started kick vote for pb-IF4OPhMg. -2023-06-08 10:33:40.791042 + : pb-IF4OPhMg kicked by kickvotes. -2023-06-08 10:38:02.756000 + : pb-IF4OUBExFA== ip: azo~{a~ya~~ke, Device id: 80e04de54ae983199886985edcc63ceddb5b9c93 -2023-06-08 10:38:43.880222 + : pb-IF4OUBExFA== ip: azo~{a~ya~~ke, Device id: 80e04de54ae983199886985edcc63ceddb5b9c93 -2023-06-08 10:39:23.047199 + : pb-IF4zUBUlNg== ip: an~}heaiivviz, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-08 10:41:38.520870 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-08 10:42:35.250869 + : pb-IF4-Uk4mEA== started kick vote for pb-IF4XU0gNJg==. -2023-06-08 10:42:38.949974 + : Kick vote End -2023-06-08 10:42:43.740426 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-08 10:43:08.144837 + : pb-IF4uUk4vMg== started kick vote for pb-IF4XU0gNJg==. -2023-06-08 10:43:09.994811 + : Kick vote End -2023-06-08 10:43:14.867922 + : pb-IF4XU0gNJg== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-08 10:43:22.143125 + : pb-IF4uUk4vMg== started kick vote for pb-IF4XU0gNJg==. -2023-06-08 10:43:22.865403 + : pb-IF4XU0gNJg== kicked by kickvotes. -2023-06-08 10:52:45.982815 + : pb-IF41U2scIg== ip: an~}i`ajbvfx, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-08 10:53:44.195297 + : pb-IF41U2scIg== ip: an~}i`ajbvfx, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-08 10:54:06.279068 + : pb-IF41U2scIg== ip: ak~}hhaoaaifw, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-08 10:55:30.905323 + : pb-IF5UUGwvJA==|| kicked > new account -2023-06-08 10:57:44.030411 + : pb-IF4WU0ItKg== ip: bj~zi~xn~}h`, Device id: 2eb1ab3363dce7fff90bdf144e5fe8f6906e35e1 -2023-06-08 10:59:27.397863 + : pb-IF4VU3laVA== ip: ak~~`ca`baig{, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-08 11:00:21.586643 + : pb-IF41U2scIg== ip: ak~}hhaoaaifw, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-08 11:03:20.182980 + : pb-IF4JUBkxKw== ip: dvvd|vb~`~}hi, Device id: 744537108d53e730f1a041711ca9db3a11e5eb1a -2023-06-08 11:05:04.557355 + : pb-IF4WUBJcVQ== ip: ak~}maaiiaj, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-06-08 11:07:04.969988 + : pb-IF4DUBlZUg== ip: dvvc{va|`~~l, Device id: 40ef570a51f0e5048e15170252cef791bd02461a -2023-06-08 11:08:36.268080 + : pb-IF5XU1kzXA== ip: aa~~naaja{va}m, Device id: 97cd2c58a5518cb3e4c005e75444883c021a4f5d -2023-06-08 11:09:47.565925 + : pb-IF5UUGwvJA== | kicked > reason:Banned account -2023-06-08 11:09:53.492296 + : pb-IF4VU3laVA== started kick vote for pb-IF5XU1kzXA==. -2023-06-08 11:09:56.069088 + : Kick vote End -2023-06-08 11:11:11.856461 + : pb-IF5XU1kzXA== ip: aa~~naaja{va}m, Device id: 97cd2c58a5518cb3e4c005e75444883c021a4f5d -2023-06-08 11:11:13.862948 + : pb-IF4zUBUlNg== ip: an~}heaiivviz, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-08 11:13:45.416929 + : pb-IF4eU0s9Pw== ip: a~a~vl~xi~~na, Device id: 79ff602d98582d9885d769eec06b4ebd8aab0aad -2023-06-08 11:14:25.022705 + : pb-IF5XU1kzXA== started kick vote for pb-IF4VU3laVA==. -2023-06-08 11:14:55.028707 + : Kick vote End -2023-06-08 11:16:29.984098 + : pb-IF4JUmwqLQ== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-08 11:16:58.163294 + : pb-IF4JUBkxKw== started kick vote for pb-IF41U2EmKA==. -2023-06-08 11:17:28.163788 + : Kick vote End -2023-06-08 11:18:10.335264 + : pb-IF4SVFkaCQ== ip: a~l~~jbaniaia}, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-06-08 11:18:28.322708 + : pb-IF4eU0s9Pw== started kick vote for pb-IF4VU3laVA==. -2023-06-08 11:18:58.329474 + : Kick vote End -2023-06-08 11:21:23.302251 + : pb-IF4zUBUlNg== started kick vote for pb-IF4eU0s9Pw==. -2023-06-08 11:21:53.306933 + : Kick vote End -2023-06-08 11:29:49.775049 + : pb-IF5dVUk5MA== ip: a~h~}jdaiavh{, Device id: e0f093fbd4b5bde1c4be1b9c87824be13350e62e -2023-06-08 11:31:25.155548 + : pb-IF4jF1NY ip: azj~z`~zk~~kb, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-08 11:45:38.000241 + : pb-IF4eU0s9Pw== started kick vote for pb-IF4BUmgKHQ==. -2023-06-08 11:45:57.489454 + : pb-IF5XU1kzXA== ip: aa~~naaja{va}m, Device id: 97cd2c58a5518cb3e4c005e75444883c021a4f5d -2023-06-08 11:46:08.005458 + : Kick vote End -2023-06-08 11:52:22.862343 + : pb-IF4VVG8gNQ== ip: azo~zi~~adaod, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-08 11:54:05.386107 + : pb-IF4WU2ctKA== ip: ak~~nfajdzvb~o, Device id: 0ac465153dc65b0a9570e9f27bc9192c7a86d43c -2023-06-08 11:57:00.033113 + : pb-IF4WU2ctKA== ip: ak~~nfajdzvb~o, Device id: 0ac465153dc65b0a9570e9f27bc9192c7a86d43c -2023-06-08 11:57:05.020776 + : pb-IF4WU2ctKA== ip: ak~~nfajdzvb~o, Device id: 0ac465153dc65b0a9570e9f27bc9192c7a86d43c -2023-06-08 12:00:13.677068 + : pb-IF4qUxBfAw== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-08 12:02:33.182410 + : pb-IF5VU1JZMw== ip: an~}ica`falh, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-08 12:03:16.349511 + : pb-IF4hU05dLg== ip: azo~{a~}hbamd, Device id: 66b9a539c2336161846fa0e39f961ee6a88bbc7c -2023-06-08 12:13:42.835160 + : pb-IF4zUBUlNg== ip: an~}heaiivviz, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-08 12:15:32.232773 + : pb-IF49VFdbEQ== ip: an~}hfaj`yvbzj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-08 12:16:11.389947 + : pb-IF5TUGo6VQ== ip: bxvc{vevaxh, Device id: 8d3fe4543537d59a49571b4432ccf773907d5082 -2023-06-08 12:18:54.988873 + : pb-IF4cUBYfCg== ip: azo~{m~~ahamg, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-08 12:22:00.712094 + : pb-IF4zUBUlNg== ip: an~}heaiivviz, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-08 12:40:48.853907 + : pb-IF4wVWMEBA== ip: b}k~}jeaahaoi, Device id: 607720f744178905896ed2d6e3407d910195b334 -2023-06-08 12:41:29.131421 + : pb-IF4eU0s9Pw== started kick vote for pb-IF40UGIxDA==. -2023-06-08 12:41:46.067996 + : pb-IF4eU0s9Pw== ip: a~a~vl~xi~~na, Device id: 79ff602d98582d9885d769eec06b4ebd8aab0aad -2023-06-08 12:41:51.104055 + : Kick vote End -2023-06-08 12:41:58.431606 + : pb-IF4iUGEPUQ== started kick vote for pb-IF4wVWMEBA==. -2023-06-08 12:42:01.146462 + : Kick vote End -2023-06-08 12:42:59.365249 + : pb-IF4CU1IzMQ== ip: avi~zj~}icajby, Device id: fb321c7caa0284554b3fe24a7108f15fbf3a670b -2023-06-08 12:44:32.695151 + : pb-IF4cUBYfCg== ip: azo~{m~}hhamf, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-08 12:48:00.441714 + : pb-IF4cUBYfCg== ip: azo~{m~}hhamf, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-08 12:50:12.940826 + : pb-IF4IVFkKNA== ip: bxvf~va}`~zj, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-08 12:53:36.618015 + : pb-IF4oV20xKA== ip: an~}ica`fajd{, Device id: 83e88be403ee6b0bbf72ae8736eebfbad93bfe99 -2023-06-08 13:01:17.399273 + : pb-IF4JUBkxKw== ip: dvvd|vb~`~}hi, Device id: 744537108d53e730f1a041711ca9db3a11e5eb1a -2023-06-08 13:03:44.021447 + : pb-IF5WU0gIUQ== ip: azj~z`~}icajf, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-08 13:08:30.465866 + : pb-IF4JUBkxKw== started kick vote for pb-IF4CU1IzMQ==. -2023-06-08 13:09:00.473412 + : Kick vote End -2023-06-08 13:46:06.036871 + : pb-IF5XUkoGDw== ip: dxvia`gakg, Device id: 28f13e74c66a938e7181be1e72c3c9f925f0833c -2023-06-08 13:51:08.256664 + : pb-IF49U0MCCA== ip: ak~}n~{a~~a`, Device id: 9ea383f7480b8975143ccc19f4013e3081d1b7d7 -2023-06-08 14:03:44.137019 + : pb-IF41U2scIg== ip: ak~}hhaoaaifw, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-08 14:07:14.917326 + : pb-IF4cUBYfCg== ip: azo~{m~}hbaiez, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-08 14:07:37.584939 + : pb-IF4gVFdbJA== started kick vote for pb-IF4cUBYfCg==. -2023-06-08 14:08:07.588198 + : Kick vote End -2023-06-08 14:11:54.046946 + : pb-IF4RUhQyJg== ip: a|o~vo~~ieaah, Device id: 96f32a868b64ce9c633d8768ecb73991548ee8b6 -2023-06-08 14:12:09.104023 + : pb-IF4qUxBfAw== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-08 14:19:25.836843 + : pb-IF4JUmwqLQ== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-08 14:19:56.974755 + : pb-IF4qUxBfAw== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-08 14:22:45.625538 + : pb-IF49U0MCCA== ip: ak~}n~{a~~a`, Device id: 9ea383f7480b8975143ccc19f4013e3081d1b7d7 -2023-06-08 14:26:39.582038 + : pb-IF4VU3laVA== ip: ak~~`ca`baih|, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-08 14:28:29.981525 + : pb-IF41U2scIg== ip: ak~}hhaoaaifw, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-08 14:31:23.608003 + : pb-IF49VFdbEQ== ip: an~}hfaj`yvbzj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-08 14:34:09.226253 + : pb-IF4qUxBfAw== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-08 14:34:34.319876 + : pb-IF4lUxMSHw== ip: azo~{n~}ibaiez, Device id: 9697e7eb450fece0abe0f3d8adce316e47d4153b -2023-06-08 14:45:25.779590 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-08 14:48:56.566023 + : pb-IF4LV20GMw== ip: ai~ve{vc, Device id: 305f2513910ce5427877375161c5ae05dbf130aa -2023-06-08 14:52:30.375801 + : pb-IF4-UxNTNA== ip: bk~~abajcvvew, Device id: 43dd6ff7f240bb395ffa964f474087f11fd0115a -2023-06-08 14:53:02.484031 + : pb-IF4vU0MENg== ip: an~}icaagaidx, Device id: 6382f3717c6ac3650740a14e9d6ab4b67728a26a -2023-06-08 15:05:41.259579 + : pb-IF49VFdbEQ== ip: an~}hfaj`yvbzj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-08 15:06:12.378073 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-08 15:06:59.534336 + : pb-IF49VFdbEQ== ip: an~}hfaj`yvbzj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-08 15:16:09.686139 + : pb-IF4jU2gAEg== ip: dvvbm~~hcaihw, Device id: 83c458b93ee2737e52f3702e528207927f0fc4fc -2023-06-08 15:17:02.893221 + : pb-IF4BU0EsIg== ip: azj~z`~}haa`d, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-06-08 15:17:12.925332 + : pb-IF4BU0EsIg== ip: azj~z`~}haa`d, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-06-08 15:26:03.041614 + : pb-IF4jVWsgNw== ip: a~o~}jhaohaic~, Device id: e87680f7ed1ca47a13478c5debb8dd3b814b8241 -2023-06-08 15:26:47.203821 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-08 15:27:25.346675 + : pb-IF4xUnQNVA== ip: azo~|j~~hbaih|, Device id: 477a46d48ec2c3a3ed0c4fb1e42c2d889ad8233f -2023-06-08 15:31:25.320570 + : pb-IF4hVHg7CA== ip: a~o~}iaaibyvb{m, Device id: 44056c893a669391687e2197c88bd5699b4c785b -2023-06-08 15:35:07.094769 + : pb-IF4hVHg7CA== ip: a~o~}iaaibyvb{m, Device id: 44056c893a669391687e2197c88bd5699b4c785b -2023-06-08 15:47:49.052807 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-08 15:54:11.475797 + : pb-IF49VFdbEQ== ip: an~}hfaj`yvbzj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-08 16:19:16.996788 + : Server started -2023-06-08 16:19:18.000479 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-08 16:24:57.336510 + : pb-IF5TUlZaUw== ip: azo~{o~yvawa, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-08 16:25:03.358557 + : pb-IF41U2scIg== ip: ak~}hhaoaaifw, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-08 16:25:09.393182 + : pb-IF42U2wGFw== ip: a|o~vo~v`~~oc, Device id: 99b10bfc42bcd3169a938d93dab3f5156feec7f4 -2023-06-08 16:25:24.451430 + : pb-IF5TUlZaUw== ip: azo~{o~yvawa, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-08 16:25:29.473156 + : pb-IF49VFdbEQ== ip: an~}hfaj`yvbzj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-08 16:32:42.037155 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-08 16:36:29.840274 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-08 16:38:35.304645 + : pb-IF5TUlZaUw== ip: azo~{o~yvawa, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-08 16:38:56.377552 + : pb-IF5TUlZaUw== ip: azo~{o~yvawa, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-08 16:39:03.399840 + : pb-IF5TUlZaUw== ip: azo~{o~yvawa, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-08 16:39:08.418925 + : pb-IF4TUGkAMQ== ip: dvvcyvb|`~va, Device id: 5e1020ff8ab40e7bae3e787857033964aeba20e8 -2023-06-08 16:39:41.529529 + : pb-IF5TUlZaUw== ip: azo~{o~yvawa, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-08 16:42:44.223164 + : pb-IF4SVFkaCQ== ip: a~l~~jbanhaj`z, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-06-08 16:50:10.000506 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-08 16:56:11.377708 + : pb-IF5TUlZaUw== ip: azo~{o~yvawa, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-08 16:56:17.409618 + : pb-IF41U2scIg== ip: ak~}hhaoaaifw, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-08 16:56:46.526574 + : pb-IF5TUlZaUw== ip: azo~{o~yvawa, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-08 16:57:11.610152 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazl~yn, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-06-08 17:04:06.195295 + : pb-IF49I04z ip: b}k~~`gaiawvazn, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-08 17:04:15.232224 + : pb-IF4tUGMBCg== ip: b}k~~ohaiewvcw, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-06-08 17:04:36.282541 + : pb-IF4tUGMBCg== ip: b}k~~ohaiewvcw, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-06-08 17:06:13.562539 + : pb-IF5dU3UiAw== ip: azo~{n~va~~mi, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-08 17:10:10.414970 + : pb-IF5dU3UiAw== ip: azo~{n~va~~mi, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-08 17:12:43.981167 + : pb-IF4IVXZcEA== ip: dvva{l~ym~}lf, Device id: 535c78d745316c4610377c5ba97896e5cf2ee1ab -2023-06-08 17:13:19.111799 + : pb-IF4IVXZcEA== ip: dvva{l~ym~}lf, Device id: 535c78d745316c4610377c5ba97896e5cf2ee1ab -2023-06-08 17:14:51.458451 + : pb-IF5WU0gIUQ== ip: azj~z`~}icajd{, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-08 17:16:42.867979 + : pb-IF4HVHpcFQ== ip: dvvcyva~m~~la, Device id: 722099821f2d7b77a509edac87bacc7f8a830939 -2023-06-08 17:21:22.323554 + : pb-IF4HVHpcFQ== started kick vote for pb-IF49Uk0HIw==. -2023-06-08 17:21:52.329555 + : Kick vote End -2023-06-08 17:25:30.177548 + : pb-IF4HVHpcFQ== started kick vote for pb-IF49Uk0HIw==. -2023-06-08 17:25:35.795945 + : pb-IF4TV3RbDA== ip: azo~{m~~mcaiaz, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-06-08 17:26:00.183485 + : Kick vote End -2023-06-08 17:28:28.430501 + : pb-IF4cUBYfCg== ip: azo~{m~}heajb, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-08 17:31:11.985833 + : pb-IF41U2scIg== ip: ak~}hhaoaaifw, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-08 17:32:55.387986 + : pb-IF48UBAPHQ== ip: azo~|j~|o~~mf, Device id: c06b3731349466420721d3745df38adf87232d40 -2023-06-08 17:33:23.502650 + : pb-IF48UBAPHQ== ip: azo~|j~|o~~mf, Device id: c06b3731349466420721d3745df38adf87232d40 -2023-06-08 17:33:36.555229 + : pb-IF48UBAPHQ== ip: azo~|j~|o~~mf, Device id: c06b3731349466420721d3745df38adf87232d40 -2023-06-08 17:33:48.665308 + : pb-IF48UBAPHQ== ip: azo~|j~|o~~mf, Device id: c06b3731349466420721d3745df38adf87232d40 -2023-06-08 17:34:18.748561 + : pb-IF4XVHBdIQ== ip: azj~z`~}jeaie~, Device id: bb4a1622c7601f1a78263c6066c8e905a694ffb2 -2023-06-08 17:34:25.790028 + : pb-IF48UBAPHQ== ip: azo~|j~|o~~mf, Device id: c06b3731349466420721d3745df38adf87232d40 -2023-06-08 17:35:18.272720 + : pb-IF4XVHBdIQ== started kick vote for pb-IF4TV3RbDA==. -2023-06-08 17:35:48.273986 + : Kick vote End -2023-06-08 17:39:55.083778 + : pb-IF4XVHBdIQ== ip: azj~z`~}jeaie~, Device id: bb4a1622c7601f1a78263c6066c8e905a694ffb2 -2023-06-08 17:40:04.123286 + : pb-IF4VU3laVA== ip: ak~~`dajcvva|i, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-08 17:45:35.318391 + : pb-IF4OPhMg ip: an~~adamca`b, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-08 17:48:27.956575 + : pb-IF4TV3RbDA== ip: azo~{m~~mcaiaz, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-06-08 17:54:36.321865 + : pb-IF49VVUHAw== ip: an~~afajaaof, Device id: 296e074e69ac7f55f3c8bb433d65d281a9a76da3 -2023-06-08 18:04:49.759729 + : pb-IF4TUBIxEw== ip: azo~{a~vl~xn, Device id: eb076fc5013fd8b4b55cd7f04b0b39dac7be954d -2023-06-08 18:06:15.084628 + : pb-IF5UUGwvJA== | kicked > reason:Banned account -2023-06-08 18:13:05.588681 + : pb-IF4jF1NY ip: azj~z`~zk~}ha, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-08 18:16:52.365381 + : pb-IF41U2scIg== ip: ak~}hhaoaaifw, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-08 18:17:47.584878 + : pb-IF4qUxBfAw== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-08 18:25:28.401833 + : pb-IF4IV04ZKw== | kicked > reason:Banned account -2023-06-08 18:25:38.446761 + : pb-IF5WU0gIUQ== ip: azj~z`~}icajax, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-08 18:27:06.852842 + : pb-IF5XUkoGDw== ip: dxvia`gakg, Device id: 28f13e74c66a938e7181be1e72c3c9f925f0833c -2023-06-08 18:27:08.862278 + : pb-IF5WU0gIUQ== ip: azj~z`~}icajax, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-08 18:27:14.877941 + : pb-IF5XUkoGDw== ip: dxvia`gakg, Device id: 28f13e74c66a938e7181be1e72c3c9f925f0833c -2023-06-08 18:34:58.607406 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-08 18:42:25.313487 + : pb-IF49I04z ip: b}k~~`gaiawvazn, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-08 18:42:57.537092 + : pb-IF4xVUMlFQ== ip: a~n~y`~wk~~o`, Device id: ed4a9a8875f4e87c9e5d27d4db1ae6e9877055d5 -2023-06-08 18:43:39.704519 + : pb-IF41U2scIg== ip: ak~}hhaoaaifw, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-08 18:46:28.402548 + : pb-IF5XVUFcJg== ip: an~~acaiava}l, Device id: 6be33b0e9d378948507f82a1fa1ba3d32ef93bd9 -2023-06-08 18:52:51.923547 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG | kicked > reason: Banned account -2023-06-08 19:00:40.656832 + : pb-IF4uV21ZEA== ip: azo~zi~~vdw, Device id: 7e3412b3e92bae57ff7007cd93dd057b6c080ca4 -2023-06-08 19:04:00.369281 + : pb-IF49VFdbEQ== ip: an~}hfaiiwvbzj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-08 19:17:08.185937 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-08 19:25:38.102853 + : pb-IF49UBEhJA== ip: azo~|j~|m~~hd, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-06-08 19:25:57.198482 + : pb-IF4BVVU_BA== ip: bxva{o~~n`ai`|, Device id: 05e455762d1075e521e842a06f572d2a230ef49d -2023-06-08 19:26:39.342985 + : pb-IF4WU2ctKA== ip: ak~~nfajdzvb~o, Device id: 0ac465153dc65b0a9570e9f27bc9192c7a86d43c -2023-06-08 19:26:43.346717 + : pb-IF49VFdbEQ== ip: an~}hfaiiwvbzj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-08 19:27:10.448826 + : pb-IF49VFdbEQ== ip: an~}hfaiiwvbzj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-08 19:27:12.453640 + : pb-IF49UBEhJA== ip: azo~|j~|m~~hd, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-06-08 19:29:24.052287 + : pb-IF41U2scIg== ip: ak~}hhaoaaifw, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-08 19:29:53.147046 + : pb-IF48UhEiEg== ip: bxvfamgaifw, Device id: 33a8969f89cf728e65a2f6ff383ac3a2e126c4e2 -2023-06-08 19:30:39.714855 + : pb-IF4dUGpbUA==|| kicked > new account -2023-06-08 19:35:10.395241 + : pb-IF49UBEhJA== ip: azo~|j~|m~~hd, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-06-08 19:35:51.555482 + : pb-IF5dUGlcJA== ip: dvvc|vb{j~~k, Device id: 234fb9f7627555d5496bb99f3102550c9f340d50 -2023-06-08 19:37:32.905507 + : pb-IF4GUnhdIg== ip: an~}hcaiazvaz, Device id: dc3a4d5eedf35f283390c78ea91ad84133640102 -2023-06-08 19:37:51.990304 + : pb-IF5dUGlcJA== ip: dvvc|vb{j~~k, Device id: 234fb9f7627555d5496bb99f3102550c9f340d50 -2023-06-08 19:38:12.063887 + : pb-IF41U2scIg== ip: ak~}hhaoaaifw, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-08 19:58:08.599686 + : pb-IF49VFdbEQ== ip: an~}hfaiiwvbzj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-08 20:20:43.534429 + : pb-IF5QU3AaLg== ip: dvvc{vivb}k, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-06-08 20:20:55.575351 + : pb-IF49VFdbEQ== ip: an~}hfaiiwvf, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-08 20:27:40.300506 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhva{h, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-06-08 20:28:58.574433 + : pb-IF4iVWlTBg== ip: an~}hhaje|vfw, Device id: b5ebec4d6c2df1e92e13796dcc05d669553bd3b8 -2023-06-08 20:29:00.585503 + : pb-IF4yVFgOVA== ip: ak~~`baifxvi}, Device id: d854623f8a8ec9715c4cf1e44f2a453d5344d791 -2023-06-08 20:36:18.541109 + : pb-IF4jF1NY ip: azj~z`~{o~~lf, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-08 20:38:33.081708 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jd, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-08 20:42:53.120006 + : pb-IF49VFdbEQ== ip: an~}hfaiiwvf, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-08 20:43:37.264796 + : pb-IF4HU0VcCA== ip: azl~}kiajavvcz, Device id: 0048b280144da2caaeb58a3dd845b91cdf4d29b8 -2023-06-08 20:46:22.871863 + : pb-IF49VFdbEQ== ip: an~}hfaiiwvf, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-08 20:53:49.723651 + : pb-IF4OPhMg ip: an~}ifa`eanf, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-08 20:54:56.982749 + : pb-IF41U1U9BA== ip: ak~~n`ajcxvb}a, Device id: 447b2f34e6752d40d026da152470dcdab9192c75 -2023-06-08 20:55:52.318355 + : pb-IF49VFdbEQ== ip: an~}hfaiiwvf, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-08 21:03:46.311887 + : pb-IF49VFdbEQ== ip: an~}hfaiiwvf, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-08 21:36:04.843932 + : pb-IF4MUk0CEg== ip: b}k~}kgaibxva}j, Device id: 618fd7a62afdcfd000ff037b4ad7fece3396e9ce -2023-06-08 21:36:10.871242 + : pb-IF4OUGM7FA== ip: b}k~}kaaie~vavi, Device id: b64ad23730bd8bcc0f481e571fe995e0194415a7 -2023-06-08 21:46:49.279031 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-08 21:51:59.548923 + : pb-IF4gU0wxBw== ip: ak~}hhaoaaifw, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-06-08 21:56:53.706582 + : pb-IF4IVFkKNA== ip: d}vam~w`~}lh, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-08 21:57:11.819704 + : pb-IF4IVFkKNA== ip: d}vam~w`~}lh, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-08 21:57:38.895272 + : pb-IF4IVFkKNA== ip: an~}ifai`{vh~, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-08 21:58:00.963016 + : pb-IF4IVFkKNA== ip: an~}ifai`{vh~, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-08 21:58:02.972241 + : pb-IF4vUmMbLg== ip: a}j~~oba`fajf, Device id: 49d8ce6132876b75db0c87b1ecb05d9834915af0 -2023-06-08 21:58:24.056860 + : pb-IF5XUkoGDw== ip: dxvia`iaid, Device id: 28f13e74c66a938e7181be1e72c3c9f925f0833c -2023-06-08 22:03:23.182068 + : pb-IF49VFdbEQ== ip: an~}hfaiiwvf, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-08 22:04:08.347683 + : pb-IF49VFdbEQ== ip: an~}hfaiiwvf, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-08 22:05:52.737327 + : pb-IF49VFdbEQ== ip: an~}hfaiiwvf, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-08 22:07:07.978011 + : pb-IF49VFdbEQ== ip: an~}hfaiiwvf, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-08 22:09:50.503802 + : pb-IF4IVFkKNA== ip: an~}ifai`{vh~, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-08 22:11:24.898987 + : pb-IF4gU0wxBw== ip: ak~}hhaoaaifw, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-06-08 22:12:14.088239 + : pb-IF4pUlkJKw== ip: ak~~jeaib}vb~j, Device id: 581d48549a30c496a6dc1cf7430730c2c27dcd17 -2023-06-08 22:20:31.316734 + : pb-IF49VFdbEQ== ip: an~}hfaiiwvf, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-08 22:29:20.439939 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-08 22:34:03.502375 + : pb-IF4XUBEqVA== ip: azl~~`baif}ve, Device id: 17b1814c2389c27101269c6ed07a1ecc84def2d9 -2023-06-08 22:35:45.895128 + : pb-IF4IVFkKNA== ip: dvvc{vb~h~va, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-08 22:36:08.976913 + : pb-IF4wVRkMAQ== ip: g|van~~`fald, Device id: 8550f1d0e398d1a336708c9d6f3cad0894ed14ba -2023-06-08 22:36:18.009473 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvhva{h, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-06-08 22:36:46.091220 + : pb-IF4wVRkMAQ== ip: g|van~~`fald, Device id: 8550f1d0e398d1a336708c9d6f3cad0894ed14ba -2023-06-08 22:41:17.220338 + : pb-IF4TUBIxEw== ip: azo~{a~vl~xn, Device id: eb076fc5013fd8b4b55cd7f04b0b39dac7be954d -2023-06-08 22:50:43.325016 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-08 23:03:26.245557 + : pb-IF41U2scIg== ip: ak~}hhaniaia|, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-08 23:03:37.278430 + : pb-IF4qUxBfAw== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-08 23:03:59.389420 + : pb-IF4qUxBfAw== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-08 23:10:02.275801 + : Server started -2023-06-08 23:10:03.279042 + : pb-IF4qUxBfAw== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-08 23:10:11.305348 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~}ifai`|vaw`, Device id: 47b8e02ead93f74965cd80f820c1e8c8bb3a59ef -2023-06-08 23:12:02.721951 + : pb-IF4gU0Y7AQ== ip: azo~{m~}jaao, Device id: 4d5a22b991ecbbf1566da5764d14d9957498f370 -2023-06-08 23:12:20.784719 + : pb-IF5UU3YxEA== ip: dvvd|vb{i~~, Device id: 983cf93eac8ac2f9ba1258a6f77298cc0b4cd77a -2023-06-08 23:12:33.547740 + : pb-IF4qUxBfAw== started kick vote for pb-IF5UU3YxEA==. -2023-06-08 23:12:42.871426 + : pb-IF4gU0Y7AQ== ip: azo~{m~}jaao, Device id: 4d5a22b991ecbbf1566da5764d14d9957498f370 -2023-06-08 23:13:03.550989 + : Kick vote End -2023-06-08 23:13:38.378811 + : pb-IF42UGooDA==|| kicked > new account -2023-06-08 23:14:04.144538 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~}ifai`|vaw`, Device id: 47b8e02ead93f74965cd80f820c1e8c8bb3a59ef -2023-06-08 23:14:15.182437 + : pb-IF4gU0Y7AQ== ip: azo~{m~}jaao, Device id: 4d5a22b991ecbbf1566da5764d14d9957498f370 -2023-06-08 23:14:46.307411 + : pb-IF4gU0Y7AQ== ip: azo~{m~}jaao, Device id: 4d5a22b991ecbbf1566da5764d14d9957498f370 -2023-06-08 23:16:12.621553 + : pb-IF4gU0Y7AQ== ip: azo~{m~~keai`x, Device id: 4d5a22b991ecbbf1566da5764d14d9957498f370 -2023-06-08 23:22:16.987093 + : pb-IF4wVRkMAQ== ip: g|van~~`fald, Device id: 8550f1d0e398d1a336708c9d6f3cad0894ed14ba -2023-06-08 23:22:44.068028 + : pb-IF4gU0Y7AQ== ip: azo~{m~~keai`x, Device id: 4d5a22b991ecbbf1566da5764d14d9957498f370 -2023-06-08 23:25:06.561915 + : pb-IF42UGooDA== | kicked > reason:Banned account -2023-06-08 23:26:25.843756 + : pb-IF4qUxBfAw== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-08 23:31:34.034841 + : pb-IF4UUGQuFw== ip: dvvd|vb{`~}, Device id: e3cc2deb8693d0f122a8c730e3fbf6fbcc8df2ea -2023-06-08 23:32:05.550052 + : pb-IF4zU2MgJw== | kicked for chat spam -2023-06-08 23:34:42.727565 + : pb-IF4xUnQNVA== ip: azo~|j~~haai`~, Device id: 477a46d48ec2c3a3ed0c4fb1e42c2d889ad8233f -2023-06-08 23:35:43.938989 + : pb-IF42UGooDA== | kicked > reason:Banned account -2023-06-08 23:37:19.281981 + : pb-IF4zU2MgJw== ip: a}l~~meaje{vayj, Device id: 5b13413ad2a035b34073c5918da9363afe5b8217 -2023-06-08 23:38:35.579360 + : pb-IF4zU2MgJw== | kicked for chat spam -2023-06-08 23:43:58.679222 + : pb-IF4zU2MgJw== ip: a}l~~meaje{vayj, Device id: 5b13413ad2a035b34073c5918da9363afe5b8217 -2023-06-08 23:53:09.023467 + : pb-IF4zU2MgJw== | kicked for chat spam -2023-06-08 23:58:23.862558 + : pb-IF4zU2MgJw== ip: a}l~~meaje{vayj, Device id: 5b13413ad2a035b34073c5918da9363afe5b8217 -2023-06-09 00:00:18.336706 + : pb-IF49VFQlPA== ip: azo~{m~wi~~i, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-06-09 00:02:51.940734 + : pb-IF4vVRUFVA== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 00:04:32.329179 + : pb-IF4vVRUFVA== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 00:07:17.967399 + : pb-IF49VFdbEQ== ip: b}k~}jhajd{val, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-09 00:08:02.155360 + : pb-IF49VFdbEQ== ip: b}k~}jhajd{val, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-09 00:10:45.756987 + : pb-IF49VFdbEQ== ip: b}k~}jhajd{val, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-09 00:13:02.797900 + : pb-IF4vVRUFVA== started kick vote for pb-JiNJARFZVEJCXVtDF09RU1NBGUVYQVBG. -2023-06-09 00:13:14.914422 + : pb-JiNJARFZVEJCXVtDF09RU1NBGUVYQVBG kicked by kickvotes. -2023-06-09 00:14:24.595854 + : pb-IF4vVRUFVA== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 00:15:13.770291 + : pb-IF4vVRUFVA== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 00:16:20.101346 + : pb-IF41UBQPXA== ip: a}l~~hfaid|vf, Device id: 4053d4ecb6d73d755ad3c574aa4bd40384b30b43 -2023-06-09 00:17:57.459877 + : pb-IF4wVRkMAQ== ip: g|van~~`fald, Device id: 8550f1d0e398d1a336708c9d6f3cad0894ed14ba -2023-06-09 00:19:25.755290 + : pb-IF4IV04ZKw== | kicked > reason:Banned account -2023-06-09 00:20:21.966719 + : pb-IF4qUxBfAw== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 00:21:01.092141 + : pb-IF49VFdbEQ== ip: b}k~}jhajd{val, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-09 00:24:51.894156 + : pb-IF49VFdbEQ== ip: b}k~}jhajd{val, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-09 00:31:04.271658 + : pb-IF4gU0Y7AQ== ip: azo~{m~~keai`x, Device id: 4d5a22b991ecbbf1566da5764d14d9957498f370 -2023-06-09 00:37:14.576866 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-09 00:39:07.986199 + : pb-IF49VFQlPA== ip: azo~{m~wi~~i, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-06-09 00:44:18.055646 + : pb-IF5UU3YxEA== ip: dvvd|vb{i~~, Device id: 983cf93eac8ac2f9ba1258a6f77298cc0b4cd77a -2023-06-09 01:01:20.989149 + : pb-IF4yUmkuLw== ip: ak~vm~wi~{j, Device id: 115323723d0de932467f154cc8c1aea75c7b3f7c -2023-06-09 01:04:15.616171 + : pb-IF4gU0Y7AQ== ip: azo~{m~~keai`x, Device id: 4d5a22b991ecbbf1566da5764d14d9957498f370 -2023-06-09 01:41:33.065146 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-09 02:02:28.765349 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-09 02:23:51.481566 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-09 03:06:19.687909 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-09 03:08:11.668381 + : pb-IF4iUGkcNw==|| kicked > new account -2023-06-09 03:27:27.237768 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-09 06:10:05.444624 + : Server started -2023-06-09 06:33:26.582646 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-09 06:36:14.187790 + : pb-IF49VFdbEQ== ip: b}k~}jhaje{vah, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-06-09 06:54:31.160048 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-09 07:16:17.916594 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-09 08:20:06.014998 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-09 08:41:43.887820 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-09 08:43:25.260658 + : pb-IF5RUGQCUQ== ip: ak~~kfai`xva|n, Device id: 97880cb99babad4bf9f6b8e24ceaaf6c75deb94f -2023-06-09 09:02:45.714127 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-09 09:05:13.249570 + : pb-IF4IVFkKNA== ip: an~}ifai`{vh|, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-09 09:06:55.609728 + : pb-IF5QVFMCUg== ip: an~}hcanbaicy, Device id: 3b483075b2023edb95e323dc2cc0d8dc516cae08 -2023-06-09 09:29:52.587925 + : pb-IF4zUBUlNg== ip: an~}heaiivvi{, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-09 09:44:22.639524 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-09 10:15:26.282995 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~j`, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-09 10:18:12.976266 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-09 10:19:49.507159 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~j`, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-09 10:25:51.842626 + : pb-IF4IV04ZKw== | kicked > reason:Banned account -2023-06-09 10:26:43.034192 + : pb-IF5UUGwvJA== | kicked > reason:Banned account -2023-06-09 10:30:19.798806 + : pb-IF4OPhMg ip: an~}jbaodaid}, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-09 10:47:39.933604 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-09 10:48:27.107344 + : pb-IF5UUGwvJA== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-09 10:56:39.893623 + : pb-IF4VU3laVA== ip: ak~~`ca`caihz, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-09 10:57:20.032216 + : pb-IF4VU3laVA== ip: ak~~`ca`caihz, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-09 11:27:28.835251 + : pb-IF4qUxBfAw== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 11:32:29.062828 + : pb-IF41U2scIg== ip: an~}i`ajbvhx, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-09 11:33:37.281537 + : pb-IF5UUGwvJA== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-09 11:57:35.840312 + : pb-IF4FUxMtPQ== ip: b}k~~`dajb{vbv, Device id: f71317314903841036b394e876c4df4bb46bf6ab -2023-06-09 12:00:17.414223 + : pb-IF4vUkRaEg== | kicked > reason:Banned account -2023-06-09 12:03:25.121656 + : pb-IF4SVFkaCQ== ip: a~l~~jbaoiamg, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-06-09 12:04:21.362311 + : pb-IF4gU0wxBw== ip: ak~}hhaniaib~, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-06-09 12:15:32.654496 + : Server started -2023-06-09 12:15:33.659400 + : pb-IF4IVFkKNA== ip: an~}ifai`{vh|, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-09 12:17:04.983219 + : pb-IF4IVFkKNA== ip: an~}ifai`{vh|, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-09 12:18:09.195986 + : pb-IF4qUxBfAw== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 12:21:40.994230 + : pb-IF4gUksyMQ== ip: b}k~}kialhajdx, Device id: b0ef821c8b60e5fcf4bad99d322e2a9451de48ac -2023-06-09 12:22:05.079577 + : pb-IF4gUksyMQ== ip: b}k~}kialhajdx, Device id: b0ef821c8b60e5fcf4bad99d322e2a9451de48ac -2023-06-09 12:27:55.452580 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-09 12:29:07.718401 + : pb-IF4MUBMHKA== ip: azj~z`~~o~}mb, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-06-09 12:33:12.614973 + : pb-IF5UUGwvJA== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-09 12:38:32.858822 + : pb-IF4jF1NY ip: azj~z`~vcw, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-09 12:39:53.164024 + : pb-IF4VUlJYFg== ip: dvva{va~l~x`, Device id: 3b574b234f4984d8ab8cfbbca3a41987677635d0 -2023-06-09 12:44:44.214720 + : pb-IF4qUxBfAw== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 12:48:18.934358 + : pb-IF4IVFkKNA== ip: an~}ifai`{vh|, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-09 13:03:05.102748 + : pb-IF41U2scIg== ip: ak~}hhaniaib~, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-09 13:03:34.200412 + : pb-IF4cUxYIHw== ip: azo~{l~~mhaiay, Device id: e35939a5a05156aed985c7d695addffc44e4728d -2023-06-09 13:05:32.586990 + : pb-IF48UhEiEg== ip: a~m~v`~zn~}ic, Device id: 33a8969f89cf728e65a2f6ff383ac3a2e126c4e2 -2023-06-09 13:05:57.690739 + : pb-IF4cUxYIHw== ip: azo~{l~~mhaiay, Device id: e35939a5a05156aed985c7d695addffc44e4728d -2023-06-09 13:06:32.831824 + : pb-IF4wVVk8Jg== ip: bj~~ndaicxvc, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-06-09 13:09:42.825058 + : pb-IF4PUGo9Hw==|| kicked > new account -2023-06-09 13:10:32.675554 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~vo, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-06-09 13:14:01.407153 + : pb-IF4MUk0CEg== ip: b}k~}kiambaihz, Device id: 618fd7a62afdcfd000ff037b4ad7fece3396e9ce -2023-06-09 13:16:22.932027 + : pb-IF4MU08lCQ== ip: azo~|l~~jaaj`{, Device id: 496f898c6f42806db0970bac3faaa29f196c9610 -2023-06-09 13:18:38.506009 + : pb-IF4RUhQyJg== ip: a|o~vo~vn~~``, Device id: 96f32a868b64ce9c633d8768ecb73991548ee8b6 -2023-06-09 13:19:47.176892 + : pb-IF4MU08lCQ== started kick vote for pb-IF4wVVk8Jg==. -2023-06-09 13:20:17.182702 + : Kick vote End -2023-06-09 13:20:23.848761 + : pb-IF4VU3laVA== ip: ak~~n`aii{vb~m, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-09 13:24:34.709012 + : pb-IF4FUBlYUA== ip: ak~}iaaidao, Device id: f6a33af708d980e6fc1c7efda397d73e6734762d -2023-06-09 13:24:57.716253 + : pb-IF4MU08lCQ== started kick vote for pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE. -2023-06-09 13:25:27.723653 + : Kick vote End -2023-06-09 13:25:45.976743 + : pb-IF4SVFkaCQ== ip: a~l~~jbai`}vb{o, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-06-09 13:26:13.057147 + : pb-IF4BUlQGCA== ip: a|o~vo~yo~zj, Device id: 50178cf5fe9867437c330f0541179b4ceb72eab3 -2023-06-09 13:26:17.066185 + : pb-IF4qUxBfAw== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 13:26:48.170950 + : pb-IF4tNxUh ip: axn~~jhaihvbv, Device id: 60e4ad03622d0144201fd4c0feee6aa2b1f1aa6d -2023-06-09 13:29:43.782391 + : pb-IF4NVxAZDg== ip: dvvcyva~m~{i, Device id: 9dda09fcf9a3701e0e8edddd357f35fc1813050f -2023-06-09 13:30:25.914862 + : pb-IF4wVVk8Jg== ip: bj~~ndaicxvc, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-06-09 13:40:14.026951 + : pb-IF4OPhMg ip: an~}jbaodaid}, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-09 13:41:29.310716 + : pb-IF4VU3laVA== ip: ak~~neaifxvbl, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-09 13:41:45.377157 + : pb-IF4zUBUlNg== ip: an~}heaii{vdz, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-09 13:42:59.699968 + : pb-IF4HVHpcFQ== ip: azj~z`~{n~{`, Device id: 722099821f2d7b77a509edac87bacc7f8a830939 -2023-06-09 13:46:18.450582 + : pb-IF4SVFkaCQ== ip: a~l~~jbaocaod, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-06-09 13:51:04.496336 + : pb-IF4VU3laVA== ip: ak~~`ca`ca`, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-09 14:00:39.650306 + : pb-IF4jF1NY ip: azj~z`~vaxl, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-09 14:04:19.417248 + : pb-IF4sCXI9 ip: a~o~va~zvi, Device id: 016005002c5e71bc4f41ba158f73d116d7bfdf63 -2023-06-09 14:06:36.919242 + : pb-IF5cPGsk ip: dvvc}vay`~~ob, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-06-09 14:10:08.648780 + : pb-IF4hUBIkPQ== ip: azo~{j~}vfv, Device id: f15763bad1c170a92aaaaef11dcac23c1e1f2dce -2023-06-09 14:10:34.745720 + : pb-IF4sCXI9 ip: a~o~va~zvi, Device id: 016005002c5e71bc4f41ba158f73d116d7bfdf63 -2023-06-09 14:10:35.749621 + : pb-JiNJARFcUUZCW19DGEdQV1VAEkVYRFFF ip: b}k~~`daj`wva}h, Device id: 62797d26a16e23e5bd0348480f002238abaa774e -2023-06-09 14:11:18.895180 + : pb-IF48UhEiEg== ip: a~m~v`~zn~}ic, Device id: 33a8969f89cf728e65a2f6ff383ac3a2e126c4e2 -2023-06-09 14:11:44.986401 + : pb-IF48UhEiEg== ip: a~m~v`~zn~}ic, Device id: 33a8969f89cf728e65a2f6ff383ac3a2e126c4e2 -2023-06-09 14:12:44.202780 + : pb-IF48UhEiEg== ip: a~m~v`~zn~}ic, Device id: 33a8969f89cf728e65a2f6ff383ac3a2e126c4e2 -2023-06-09 14:14:53.818436 + : pb-IF4IUGQRHw== ip: azo~{n~~mcaj`y, Device id: 75b42d0e6532c03c0a60bb7c5238043a93288156 -2023-06-09 14:17:56.461140 + : pb-IF41UBQPXA== ip: a}l~~hfaid|vf, Device id: 4053d4ecb6d73d755ad3c574aa4bd40384b30b43 -2023-06-09 14:19:33.776559 + : pb-IF4IVFkKNA== ip: an~}ifai`{vh|, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-09 14:20:57.103407 + : pb-IF4jF1NY ip: azj~z`~~vb|o, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-09 14:22:20.440146 + : pb-IF4jF1NY ip: azj~z`~{k~~ng, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-09 14:23:17.640978 + : pb-IF4IVFkKNA== ip: an~}ifai`{vh|, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-09 14:26:53.447287 + : pb-IF4NVxAZDg== ip: dvvcyva~m~{i, Device id: 9dda09fcf9a3701e0e8edddd357f35fc1813050f -2023-06-09 14:30:05.240696 + : pb-IF4iU1RbLA== ip: dvvcyvavk~}if, Device id: 33e0374ff43270136cbf12d8cb479b59f912066a -2023-06-09 14:33:06.909374 + : pb-IF5RU1lfAQ== ip: an~~aeaaaaia, Device id: a6ebbd0c7acb2aec57ffe4b7fec625847473f863 -2023-06-09 14:45:22.853339 + : pb-IF5WU0gIUQ== ip: azj~z`~}icai, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-09 14:48:29.509093 + : pb-IF5WU0gIUQ== ip: azj~z`~}icai, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-09 14:49:07.654247 + : pb-IF5WU0gIUQ== ip: azj~z`~}icai, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-06-09 14:49:19.696627 + : pb-IF5QVFMCUg== ip: an~}hcajgaoh, Device id: 3b483075b2023edb95e323dc2cc0d8dc516cae08 -2023-06-09 14:49:54.818906 + : pb-IF4wUlIYCg== ip: b}k~~`faj`}vb{k, Device id: c6af8801fa7f6be63cc6dcac571df1e3bd6b9161 -2023-06-09 14:50:09.896522 + : pb-IF4nUnZfJg== ip: azo~|j~}meai`v, Device id: 4ba0df99dfeca7b3c40f7493f1c2420e1b54ed88 -2023-06-09 14:52:05.322109 + : pb-IF4hU05dLg== ip: azo~{a~~aia`i, Device id: 66b9a539c2336161846fa0e39f961ee6a88bbc7c -2023-06-09 14:53:10.566920 + : pb-IF4OUBAqNQ== ip: ak~{`~ya~~jb, Device id: d80ceba120b2edcef7c1e81823e041b3d12291af -2023-06-09 14:53:45.706182 + : pb-IF4hU05dLg== ip: azo~{a~~aia`i, Device id: 66b9a539c2336161846fa0e39f961ee6a88bbc7c -2023-06-09 14:56:12.253773 + : pb-IF4LUGYKPw== ip: a~n~}hfak`amf, Device id: 6afd5a128c0a5a36176d7b5d5cb6f2d966270775 -2023-06-09 15:03:20.090484 + : pb-IF5TUGxYBA== ip: b}k~}khaja|vf{, Device id: eac366e03470b9f310a5cca7d26600eaabe3080e -2023-06-09 15:05:17.506148 + : pb-IF4qUxBfAw== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 15:07:10.960256 + : pb-IF5TUGxYBA== ip: b}k~}khaja|vf{, Device id: eac366e03470b9f310a5cca7d26600eaabe3080e -2023-06-09 15:07:26.019216 + : pb-IF4SVFkaCQ== ip: a~l~~jbai`xve}, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-06-09 15:07:52.127419 + : pb-IF5TUGxYBA== ip: b}k~}khaja|vf{, Device id: eac366e03470b9f310a5cca7d26600eaabe3080e -2023-06-09 15:09:29.463589 + : pb-IF41U2scIg== ip: ak~}hhaniaib~, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-09 15:11:38.038452 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: aaihxvb~a~{m, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-06-09 15:12:06.137341 + : pb-IF4jF1NY ip: azj~z`~{n~~`h, Device id: 3e3f8bc694c422e5c1908bda415c823213210a3a -2023-06-09 15:14:57.892435 + : pb-IF5XVWJSKw== ip: azo~zi~~h`alh, Device id: 39c9775ac96405666e705b5b6d50d9951a91aca0 -2023-06-09 15:17:19.493414 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-09 15:17:49.634887 + : pb-IF5dUGglAw== ip: azo~|m~zvazh, Device id: 064c60d9855d30b53be59aeb5dc7fdb93aa962b3 -2023-06-09 15:24:50.318377 + : pb-IF5UUGwvJA== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-09 15:27:11.945757 + : pb-IF4gU0wxBw== ip: ak~}hhanialc, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-06-09 15:38:06.634400 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-09 15:49:37.319185 + : pb-IF5UUGwvJA== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-09 15:49:54.395367 + : pb-IF5TUGo6VQ== ip: bxvc{vevayo, Device id: 8d3fe4543537d59a49571b4432ccf773907d5082 -2023-06-09 16:02:17.064133 + : pb-IF4JVXoILA== ip: azj~zo~xn~~ii, Device id: be091b0918336c235a84f4be7bfccdbfb726a1f7 -2023-06-09 16:02:29.108559 + : pb-IF4JVXoILA== ip: azj~zo~xn~~ii, Device id: be091b0918336c235a84f4be7bfccdbfb726a1f7 -2023-06-09 16:06:51.149791 + : pb-IF41U0YxAw== ip: a~n~y`~x`~~hc, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-09 16:06:58.179536 + : pb-IF4SVFkaCQ== ip: a~l~~jbaia~vb|j, Device id: cc48352b9d235d86cf6193d054b7a9ab9a13059a -2023-06-09 16:20:18.291494 + : pb-IF4IVFkKNA== ip: an~}ifai`{vh|, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-09 16:24:05.114980 + : pb-IF4qUxBfAw== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 16:24:38.225654 + : pb-IF5dU3UiAw== ip: a~o~}meaiawvayi, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-09 16:32:53.221176 + : pb-IF5UVW4NDA== ip: dvva}`~~nfaig|, Device id: ebde359cbb19a36b1eb4d9f212b84bee516a2a63 -2023-06-09 16:35:52.316647 + : pb-IF5VU1JZMw== ip: an~}ica`caid~, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-09 16:37:05.573010 + : pb-IF4sUGMeVA== ip: dvvcyvixva|`, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-06-09 16:37:58.862581 + : pb-IF4sUGMeVA== ip: dvvcyvixva|`, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-06-09 16:38:35.031150 + : pb-IF4sUGMeVA== ip: dvvcyvixva|`, Device id: ca54c08d6fc6365097bdf173ddbe14038cd3ce57 -2023-06-09 16:39:24.212417 + : pb-IF4qUxBfAw== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 16:40:40.520577 + : pb-IF41U0YxAw== ip: a~n~y`~x`~~hc, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-09 16:41:54.901081 + : pb-IF41U0YxAw== ip: a~n~y`~x`~~hc, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-09 16:42:47.097474 + : pb-IF41U0YxAw== ip: a~n~y`~x`~~hc, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-09 16:44:15.583931 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-09 16:44:29.648512 + : pb-IF5TUGo6VQ== ip: bxvc{vevayo, Device id: 8d3fe4543537d59a49571b4432ccf773907d5082 -2023-06-09 16:44:34.664607 + : pb-IF41U0YxAw== ip: a~n~y`~x`~~hc, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-09 16:45:52.908204 + : pb-IF41U0YxAw== ip: azo~{n~~ncaiaw, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-09 16:52:54.954792 + : pb-IF4TV3RbDA== ip: bk~~abajd{va|, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-06-09 16:54:45.736960 + : pb-IF4RUGocIw==|| kicked > new account -2023-06-09 16:55:08.456274 + : pb-IF5VU1JZMw== ip: an~}ica`caid~, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-06-09 16:55:55.605187 + : pb-IF4TV3RbDA== ip: bk~~abajd{va|, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-06-09 17:12:45.378074 + : pb-IF41U0YxAw== ip: azo~{n~~ncaiaw, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-09 17:16:03.125739 + : pb-IF5UVXIvNQ== ip: an~}ica`baia, Device id: 19cab23c5e27d40b623af49d1e26a3594d5358dc -2023-06-09 17:19:35.932459 + : pb-IF4FD1c8 ip: azo~{n~~idajcy, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-06-09 17:21:37.395481 + : pb-IF4vVUNfEA== ip: azj~z`~~o~}ic, Device id: 01e04b1ff025ad4db302102c93a87e771dec85f4 -2023-06-09 17:22:32.618194 + : pb-IF5UUGwvJA== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-09 17:22:36.635750 + : pb-IF4WUBJcVQ== ip: azh~~hgajd~vfv, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-06-09 17:25:23.298254 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-09 17:30:31.865176 + : pb-IF5WUmVdDQ== ip: ak~~ncaii~ve}, Device id: 6e77e4d6569489606b21c74613feb3498cce0cc9 -2023-06-09 17:33:11.479788 + : pb-IF4qUxBfAw== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 17:39:08.879124 + : pb-IF41U2scIg== ip: ak~}hhanialc, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-09 17:39:37.978377 + : pb-IF4HU04uVA== ip: azo~{a~~kgaibx, Device id: 4e640eec371acc5bb6ee7f6b6425e7bd747c7e97 -2023-06-09 17:40:21.151632 + : pb-IF4NUxFfEg== ip: an~}hhaih~vawh, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-06-09 17:40:48.255967 + : pb-IF4vUmMbLg== ip: a}j~~oba`fajf, Device id: 49d8ce6132876b75db0c87b1ecb05d9834915af0 -2023-06-09 17:44:41.415300 + : pb-IF4IUGExHw== ip: awj~ym~}lgaji, Device id: f7691dea6c35e9b72eb55bb69fa024eb1abf57e6 -2023-06-09 17:46:14.711507 + : pb-IF4VU3laVA== ip: ak~~`dajcwva|l, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-09 17:46:22.051064 + : pb-IF5cUGwgMw==|| kicked > new account -2023-06-09 17:50:03.070715 + : pb-IF4wV24HBw== ip: azo~|k~}lband, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-06-09 17:50:17.117190 + : pb-IF4VU3laVA== ip: ak~~`dajcwva|l, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-09 17:51:15.292697 + : pb-IF4IUGExHw== ip: awj~ym~}lgaji, Device id: f7691dea6c35e9b72eb55bb69fa024eb1abf57e6 -2023-06-09 18:04:55.335534 + : pb-IF4wV24HBw== ip: an~~acajdyvb, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-06-09 18:07:53.046961 + : pb-IF4wU2MhUg== ip: ak~~ogaje}vb{, Device id: 418cbea0e1158d2a200873aab37674ab735bdc97 -2023-06-09 18:14:22.462452 + : pb-IF4WUBJcVQ== ip: azh~~hgajd~vfv, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-06-09 18:15:01.573624 + : pb-IF4WUBJcVQ== ip: azh~~hgajd~vfv, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-06-09 18:16:14.853206 + : pb-IF4HVVMKEQ== ip: ak~wm~vva}n, Device id: 3520ef70b75247a5bc7019d7245589c821a34168 -2023-06-09 18:16:40.931048 + : pb-IF4qUxBfAw== ip: dxviakbaidv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 18:18:19.290268 + : pb-IF4WUBJcVQ== ip: azh~~hgajd~vfv, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-06-09 18:18:37.356238 + : pb-IF5WUGkeKA== ip: dvvc{vd~vav, Device id: 0ec746bbebbd7596f8c9a7887dff18de60322a94 -2023-06-09 18:25:21.856556 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-09 18:28:16.495403 + : pb-IF4cUBYfCg== ip: azo~{m~~adaj`y, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-09 18:56:44.943223 + : Server started -2023-06-09 18:56:45.947995 + : pb-IF4lUxMSHw== ip: ak~~`dajcwva|l, Device id: 9697e7eb450fece0abe0f3d8adce316e47d4153b -2023-06-09 18:58:20.299056 + : pb-IF4XUGI7Aw== ip: azj~z`~}n~yn, Device id: 4d9a5d7925a267f0f2385f70a1f714be11ffc50f -2023-06-09 18:58:50.425904 + : pb-IF4FVFUxVw== | kicked > reason:Banned account -2023-06-09 19:04:20.967644 + : pb-IF48UGoSFA==|| kicked > new account -2023-06-09 19:07:59.442511 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-09 20:29:14.556133 + : Server started -2023-06-09 20:32:46.313017 + : pb-IF4zUBUlNg== ip: an~}heaii|vb}`, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-09 20:33:18.424500 + : pb-IF49I04z ip: a~h~}jda``ajb{, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-09 20:51:10.544636 + : pb-IF4BU0EsIg== ip: azj~z`~}h`amc, Device id: c7cca8e357c852cfe6a2bb3899c1a2601c7f56dc -2023-06-09 21:05:37.853728 + : pb-IF4RUhQyJg== ip: a|o~vo~vn~}jc, Device id: 96f32a868b64ce9c633d8768ecb73991548ee8b6 -2023-06-09 21:24:01.009288 + : pb-IF5TUlZaUw== ip: azo~{`~~lhaicv, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-09 21:26:28.512959 + : pb-IF4IVFkKNA== ip: an~}ifai`{vh|, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-09 21:33:07.983394 + : pb-IF4IVFkKNA== ip: an~}ifai`{vh|, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-09 21:52:51.343078 + : pb-IF41UGcPNQ== ip: i~vayh~zh~|`, Device id: 7912aaeb116912fb8216874995084c198f22305d -2023-06-09 22:00:20.068051 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-09 22:03:08.707532 + : pb-IF41U2scIg== ip: ak~}hhanialc, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-09 22:12:08.673188 + : pb-IF4OPhMg ip: an~}jbaodaid}, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-09 22:33:00.306553 + : pb-IF4gU0wxBw== ip: ak~}hhanialc, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-06-09 22:36:43.260952 + : pb-IF41U0YxAw== ip: azo~{n~~neang, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-09 22:37:10.335197 + : pb-IF4FD1c8 ip: azo~{n~~i`aif{, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-06-09 22:40:09.970810 + : pb-IF41U2scIg== ip: ak~}hhanialc, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-09 22:45:47.188831 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-09 22:49:12.950201 + : pb-IF41U0YxAw== ip: a~n~y`~x`~~hc, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-09 22:50:58.375272 + : pb-IF49I04z ip: dvvd|vbzi~~`f, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-09 23:05:23.541584 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-09 23:08:10.089811 + : pb-IF4wU1MPEg== ip: awj~ya~~ofake, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-06-09 23:11:51.895732 + : pb-IF4qUxBfAw== ip: dxviakbaj, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 23:12:06.934140 + : pb-IF4wVRkMAQ== ip: g|van~~`fald, Device id: 8550f1d0e398d1a336708c9d6f3cad0894ed14ba -2023-06-09 23:14:17.400241 + : pb-IF41U2scIg== ip: ak~}hhanialc, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-09 23:14:32.445963 + : pb-IF41U2scIg== ip: ak~}hhanialc, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-09 23:16:46.979295 + : pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB ip: ak~~kbajbwvf}, Device id: rikkolovescats :3 -2023-06-09 23:16:50.998437 + : pb-IF4qUxBfAw== ip: dxviakbaj, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 23:20:39.781342 + : pb-IF41U2scIg== ip: ak~}hhanialc, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-09 23:20:43.791981 + : pb-IF4WU1I7DQ== ip: awj~ya~~ofake, Device id: 82380130761c222d96bcc497f42ae841e3474f89 -2023-06-09 23:22:03.123879 + : pb-IF4qUxBfAw== ip: dxviakbaj, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 23:22:11.159558 + : pb-IF4VVG8gNQ== ip: azo~zi~~adaif~, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-09 23:24:48.718937 + : pb-IF5RUBkiKA== ip: a}j~~oaaiiaia, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-06-09 23:25:32.881502 + : pb-IF5dU3UiAw== ip: azo~{a~vh~~ka, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-09 23:26:34.089281 + : pb-IF4qUxBfAw== ip: dxviakbaj, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 23:26:57.161922 + : pb-IF5dU3UiAw== ip: azo~{a~vh~~ka, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-06-09 23:29:46.336228 + : kicked Android55956875 -2023-06-09 23:30:23.020734 + : pb-IF4qUxBfAw== ip: dxviakbaj, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 23:31:47.327749 + : pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB ip: a~h~}jgancaih|, Device id: e30952bda624a1707c15cfb174e914d0a114370f -2023-06-09 23:32:48.568482 + : pb-IF4qUxBfAw== ip: dxviakbaj, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 23:34:41.976265 + : pb-IF4gU0Y7AQ== ip: azo~{m~}iaaih}, Device id: 4d5a22b991ecbbf1566da5764d14d9957498f370 -2023-06-09 23:35:12.085771 + : pb-IF4cUBYfCg== ip: azo~zh~|`~~i, Device id: 1c8cd1619da006e91ea3b5472fb0cdac0eea3942 -2023-06-09 23:35:50.227671 + : pb-IF4cVGMHLA== ip: an~~adajevbw, Device id: b055fe844b57210943a3bba37a3a7be5abc140d9 -2023-06-09 23:36:17.335492 + : pb-IF4CKhYn ip: dvvcyvb~l~}mc, Device id: f6e85920e9356ea8e7adfb6f8b800624962b0a9d -2023-06-09 23:36:22.352826 + : pb-IF4IUGVTMQ== ip: an~~adajevbw, Device id: c122767b74fe0c99f1c70247ae0b7d6375493e1d -2023-06-09 23:37:05.495967 + : pb-IF4pU1oqVg== ip: a|j~~mdamiaih, Device id: 7ee71d578344c9f3f3ba95c6c87390e91fdfd2da -2023-06-09 23:38:31.804880 + : pb-IF4qU2JZVA== ip: aya~~liajbxvaxn, Device id: 3a70d7901c513e4594724ed96ee45577f43864e9 -2023-06-09 23:43:26.986847 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG ip: an~~aeaa~vk, Device id: 822adb43af454f4ce0fdec16028787c26c151d5f -2023-06-09 23:45:34.443527 + : pb-IF4qUxBfAw== ip: dxviakbaj, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 23:47:24.144268 + : pb-IF4qUBYCLg== ip: azo~|l~wk~}ig, Device id: 9b5a9e6c39be53e7579a611f59b52aa02ed87225 -2023-06-09 23:49:00.098900 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG started kick vote for pb-IF4qU2JZVA==. -2023-06-09 23:49:30.101441 + : Kick vote End -2023-06-09 23:49:56.742807 + : pb-IF4wVRkMAQ== ip: g|van~~`fald, Device id: 8550f1d0e398d1a336708c9d6f3cad0894ed14ba -2023-06-09 23:55:42.196928 + : pb-IF4qUxBfAw== ip: dxviakbaj, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-09 23:59:05.070117 + : pb-IF4zU2MgJw== ip: a}l~~meaje{vayj, Device id: 5b13413ad2a035b34073c5918da9363afe5b8217 -2023-06-10 00:04:56.869233 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG started kick vote for pb-IF4qU2JZVA==. -2023-06-10 00:05:26.875139 + : Kick vote End -2023-06-10 00:18:36.899169 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG started kick vote for pb-IF4qU2JZVA==. -2023-06-10 00:19:06.903158 + : Kick vote End -2023-06-10 00:20:29.215191 + : pb-IF4qUxBfAw== ip: dxviakbaj, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-10 00:22:06.760598 + : pb-IF4qUxBfAw== ip: dxviakbaj, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-10 00:22:10.196331 + : pb-JiNJARBTVEtDXlpEFERVV1JDGUlaQVNG started kick vote for pb-IF4qU2JZVA==. -2023-06-10 00:22:40.200653 + : Kick vote End -2023-06-10 00:23:37.098256 + : pb-IF4qU2JZVA== ip: aya~~liajbxvaxn, Device id: 3a70d7901c513e4594724ed96ee45577f43864e9 -2023-06-10 00:26:40.756527 + : pb-IF4mUGkfUw== ip: a~h~}jfaigwvh|, Device id: 9465a95dd2a9253a3cfc5a668e93629fdfa79bb6 -2023-06-10 00:32:41.243441 + : pb-IF4JUBkxKw== ip: dvvd|vb~`~}hi, Device id: 744537108d53e730f1a041711ca9db3a11e5eb1a -2023-06-10 00:41:25.536800 + : pb-IF4mUGkfUw== | kicked for chat spam -2023-06-10 00:47:45.734776 + : pb-IF49VFQlPA== ip: azo~zh~}i~~lh, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-06-10 00:47:57.773622 + : pb-IF49VFQlPA== ip: azo~zh~}i~~lh, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-06-10 01:01:57.010135 + : pb-IF4mUGkfUw== ip: a~h~}jfaigwvh|, Device id: 9465a95dd2a9253a3cfc5a668e93629fdfa79bb6 -2023-06-10 01:05:15.020439 + : pb-IF4TV3RbDA== ip: azo~{m~~leaihv, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-06-10 01:06:24.478034 + : pb-IF49I04z ip: dvvd|vbzi~~`f, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-10 01:12:07.874794 + : pb-IF41U2scIg== ip: an~}i`ajbva}i, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-10 01:14:24.349141 + : pb-JiNJARFZVEJCXVtDF09RU1NBGUVYQVBG ip: b}k~}keaifvbw, Device id: 090638a88642d8a85c1d0a4563d0a05062ff4eed -2023-06-10 01:25:55.006459 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-10 01:47:35.810242 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-10 02:15:50.047145 + : pb-LV4FXxNdVEYUWQtHFEcCVlFAFQ== ip: ak~}hhaniaif~, Device id: 443cf4760f53b4d718f8e3df20de24c5a7f19897 -2023-06-10 02:52:42.335185 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-10 03:26:15.704462 + : pb-IF4CU1IzMQ== ip: avi~zj~}icajby, Device id: fb321c7caa0284554b3fe24a7108f15fbf3a670b -2023-06-10 03:30:13.398805 + : Server started -2023-06-10 03:35:52.730516 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-10 04:19:03.022969 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-10 04:40:38.650946 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-10 05:45:38.734660 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-10 05:55:57.015093 + : pb-IF4wVRkMAQ== ip: g|van~~`fald, Device id: 8550f1d0e398d1a336708c9d6f3cad0894ed14ba -2023-06-10 06:00:06.913984 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-10 07:05:35.342503 + : pb-IF4rLkwp ip: a~j~~kdaj`vvawm, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-06-10 07:06:59.620290 + : pb-IF4rLkwp ip: a~j~~kdaj`vvawm, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-06-10 07:16:22.494817 + : pb-IF4nUkteVA== ip: a}j~zh~}hbaia, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-06-10 07:22:44.875197 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-10 08:04:37.882044 + : pb-JiNJARFdXUdGW1pEE0JZV1JCEUVdQVdA ip: ak~~o~~i`ao`, Device id: d3c1b69f4abe0a30b187a9f76dd0bf2ec4316172 -2023-06-10 08:26:18.576675 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-10 08:47:14.186389 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-10 09:04:09.823204 + : pb-IF4LV20GMw== ip: ai~ve{vc, Device id: 305f2513910ce5427877375161c5ae05dbf130aa -2023-06-10 09:09:22.987143 + : pb-IF5TUlZaUw== ip: azo~{o~~jfa`a, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-10 09:10:09.165386 + : pb-IF5TUlZaUw== ip: azo~{o~~jfa`a, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-10 09:11:01.371831 + : pb-IF5QU3AaLg== ip: dvvc{vfzvb~h, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-06-10 09:13:24.889500 + : pb-IF4qUxBfAw== ip: dxviakbajdv, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-10 09:28:36.151975 + : pb-IF4MUBMHKA== ip: azj~z`~~a~xn, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-06-10 09:40:10.791956 + : pb-IF4eU0s9Pw== ip: a~a~vl~xi~~na, Device id: 79ff602d98582d9885d769eec06b4ebd8aab0aad -2023-06-10 09:51:15.140837 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-10 09:58:29.702970 + : pb-JiNJARFdXUdGW1pEE0JZV1JCEUVdQVdA ip: ak~~o~~i`ao`, Device id: d3c1b69f4abe0a30b187a9f76dd0bf2ec4316172 -2023-06-10 10:01:50.428836 + : pb-IF4eU0s9Pw== ip: a~a~vl~xi~~na, Device id: 79ff602d98582d9885d769eec06b4ebd8aab0aad -2023-06-10 10:30:15.941582 + : Server started -2023-06-10 10:32:12.396147 + : pb-IF4zUBUlNg== ip: an~}heaj`zviz, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-06-10 10:33:36.755413 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-10 10:54:45.719167 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-10 11:03:45.912765 + : pb-IF41U2scIg== ip: an~}i`ajbva}i, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-10 11:04:26.064393 + : pb-IF41U2scIg== ip: ak~}hhanialc, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-10 11:04:57.172627 + : pb-IF5RUBkiKA== ip: a}j~~oaaiiajd, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-06-10 11:05:50.392503 + : pb-IF4WU2ctKA== ip: ak~{j~~agamh, Device id: 0ac465153dc65b0a9570e9f27bc9192c7a86d43c -2023-06-10 11:07:45.808995 + : pb-IF5UUGwvJA== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-10 11:15:56.643696 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-10 11:19:02.343254 + : pb-IF4gU0wxBw== ip: ak~}hhanialc, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-06-10 11:19:46.483898 + : pb-IF4yVFgOVA== ip: ak~~`baifxvayo, Device id: d854623f8a8ec9715c4cf1e44f2a453d5344d791 -2023-06-10 11:31:39.312339 + : pb-IF4gU0wxBw== ip: ak~}hhanialc, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-06-10 11:42:13.903556 + : pb-IF4OPhMg ip: an~}jbaodaid}, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-06-10 11:43:09.112354 + : pb-IF4mUGkfUw== ip: a~h~}jfaigwvh|, Device id: 9465a95dd2a9253a3cfc5a668e93629fdfa79bb6 -2023-06-10 11:47:35.243960 + : pb-IF4gU0wxBw== ip: ak~}hhanialc, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-06-10 11:48:15.409045 + : pb-IF4UUGEkPA== ip: azo~|`~~kdajcy, Device id: 3f42e534a87a7a16023bf65ab2abd1c7d5a1d0d6 -2023-06-10 11:50:12.844999 + : pb-IF4UVRRfNw== ip: b}k~~ogaocaii}, Device id: 22338eac02bdee1ba8b06a9fc0ecf9926b2cf226 -2023-06-10 11:54:40.744286 + : pb-IF4qUxBfAw== ip: dxviakbajc|, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-06-10 11:55:55.127147 + : pb-IF4MUBMHKA== ip: azj~z`~~a~{i, Device id: 4f63c21eaecd994d958646328f5b18004feeb901 -2023-06-10 12:04:28.999469 + : pb-IF5UUGwvJA== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-10 12:08:58.054493 + : pb-IF4IVFkKNA== ip: an~}ifai`{vh|, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-10 12:09:22.142209 + : pb-IF4IVFkKNA== ip: an~}ifai`{vh|, Device id: 0081f092fad223a90172369b77c1aeaadc280914 -2023-06-10 12:16:58.794494 + : pb-IF4VU3laVA== ip: ak~~lhajaaiey, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-10 12:18:53.259286 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-10 12:19:37.406238 + : pb-IF4OU2QjMQ== | kicked > reason:Banned account -2023-06-10 12:27:02.124313 + : pb-IF4CKhYn ip: dvvcyvb~j~~ia, Device id: f6e85920e9356ea8e7adfb6f8b800624962b0a9d -2023-06-10 12:40:16.270469 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-10 12:48:13.112553 + : pb-IF4jVWsgNw== ip: a~o~}jhai`vvb}j, Device id: e87680f7ed1ca47a13478c5debb8dd3b814b8241 -2023-06-10 12:48:45.214006 + : pb-IF4lUxMSHw== ip: ak~~lhajaaiey, Device id: 9697e7eb450fece0abe0f3d8adce316e47d4153b -2023-06-10 12:53:01.203508 + : pb-IF4wV24HBw== ip: an~~acaii~vbo, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-06-10 12:55:10.678904 + : pb-IF5TUlZaUw== ip: azo~{o~~ihaie|, Device id: d637556c5e73b7945ab6162c495638d7ec9c7bf2 -2023-06-10 12:55:44.786986 + : pb-IF41U2scIg== ip: ak~}hhanialc, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-10 12:57:48.232179 + : pb-IF4HVHpcFQ== ip: dvvcyva}h~~m, Device id: 722099821f2d7b77a509edac87bacc7f8a830939 -2023-06-10 12:58:44.431158 + : pb-IF42U2wGFw== ip: a|o~vo~~igajc{, Device id: 99b10bfc42bcd3169a938d93dab3f5156feec7f4 -2023-06-10 13:03:06.420184 + : pb-IF4VVG8gNQ== ip: azo~zi~~adaka, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-10 13:05:21.948233 + : pb-IF4VVG8gNQ== ip: azo~zi~~adaka, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-10 13:05:32.175247 + : pb-IF4VVG8gNQ== | kicked for chat spam -2023-06-10 13:15:28.244381 + : pb-IF4NUxFfEg== ip: bxvf}vb{h~}o, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-06-10 13:22:43.930859 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-10 13:44:12.885038 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-10 13:49:19.099675 + : pb-IF4VU3laVA== ip: ak~~`ca`balb, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-10 13:51:09.575540 + : pb-IF4VU3laVA== ip: ak~~`ca`balb, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-06-10 13:52:23.844097 + : pb-IF4VUlcBVQ== ip: a~o~vn~~nhaiaz, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-06-10 14:11:46.317863 + : pb-IF4wVVk8Jg== ip: ak~~`baifyvgz, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-06-10 14:18:46.905067 + : pb-IF4CUhUlFg== ip: b}k~}kiangaih, Device id: 7ff409e87c661733dd5ac8860f45e13b78990856 -2023-06-10 14:21:16.465741 + : pb-IF49I04z ip: dvvd|vbzi~~`f, Device id: 6c27f72b5a46b673ee416a8d677432818c95f663 -2023-06-10 14:25:58.512396 + : pb-IF41U0YxAw== ip: azo~{l~~mgaob, Device id: 77f59489dc04b88bc5a3b44acb659fb7f222308b -2023-06-10 14:27:24.821608 + : pb-IF5RUBkiKA== ip: an~~agajdwvai, Device id: 877b93675e76cf2071129b0986e5bf39bbb7d2b0 -2023-06-10 14:29:03.309278 + : pb-IF4HVHpcFQ== ip: dvvcyva}h~~m, Device id: 722099821f2d7b77a509edac87bacc7f8a830939 -2023-06-10 14:29:28.588324 + : pb-IF42U2wGFw== ip: a|o~vo~~igajc{, Device id: 99b10bfc42bcd3169a938d93dab3f5156feec7f4 -2023-06-10 14:33:05.405674 + : pb-IF4zU20BFA== ip: azj~z`~}h`ajc{, Device id: 97d2c294c6bdf1af10cc3379f7dee2ef2cc4d752 -2023-06-10 14:34:49.013121 + : pb-IF4zU20BFA== ip: azj~z`~}h`aie|, Device id: 97d2c294c6bdf1af10cc3379f7dee2ef2cc4d752 -2023-06-10 14:36:13.322047 + : pb-IF4zU20BFA== ip: azj~z`~}haali, Device id: 97d2c294c6bdf1af10cc3379f7dee2ef2cc4d752 -2023-06-10 14:37:00.469602 + : pb-IF4VVG8gNQ== ip: azo~zi~~adajez, Device id: a5e3d553f606b7d284e04a9656b30ed571db2ee3 -2023-06-10 14:41:55.547921 + : pb-IF4jUhlSFw== ip: ak~~ogajgakb, Device id: dfa3fcaaa56e4735ac113b0cf8ea265e6682d45d -2023-06-10 14:42:10.614960 + : pb-IF4MUlU_EQ== ip: an~~adaoaaif, Device id: 4ea95d28a20f21781e6915b8f627b8ec1df02cf7 -2023-06-10 14:54:36.419621 + : pb-IF4LVUQhKg== ip: azo~|l~~jgai`v, Device id: e69588102d4315071f408aec798f9a1b100b6c5f -2023-06-10 14:55:33.643808 + : pb-IF4GU1AEIA== ip: awj~}kgaieyvdz, Device id: 9fbe61bd0d39414b0f72fd952321a435896d6125 -2023-06-10 14:55:58.764883 + : pb-IF4OU2QjMQ== | kicked > reason:Banned account -2023-06-10 15:01:25.124257 + : pb-IF4OU2QjMQ== | kicked > reason:Banned account -2023-06-10 15:06:36.318844 + : pb-IF4lUxMSHw== ip: ak~~`ca`balb, Device id: 9697e7eb450fece0abe0f3d8adce316e47d4153b -2023-06-10 15:09:45.019959 + : pb-IF4gU0wxBw== ip: ak~}hhaoaalb, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-06-10 15:28:30.253361 + : pb-IF4mUGkfUw== ip: a~h~}jfaigwvh|, Device id: 9465a95dd2a9253a3cfc5a668e93629fdfa79bb6 -2023-06-10 15:34:29.634058 + : pb-IF4OU2QjMQ== | kicked > reason:Banned account -2023-06-10 15:44:47.026955 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-10 15:45:31.185463 + : pb-IF4HVHpcFQ== ip: dvvcyva}h~~m, Device id: 722099821f2d7b77a509edac87bacc7f8a830939 -2023-06-10 16:22:38.407708 + : pb-IF4QU3YiKQ== ip: dzvfak`aifz, Device id: e9c73b267c25638dc07b30339cea6c3fb9b48788 -2023-06-10 16:24:43.374948 + : pb-JiNJARBbUkZFWVZIF05UVVxHGURcTlFH ip: awj~xh~~mbaih, Device id: 64f484df03b124c2f4804e121a2a6f253c945d39 -2023-06-10 16:26:52.038027 + : pb-IF4jVWsgNw== ip: a~o~}jhaoaaj`}, Device id: e87680f7ed1ca47a13478c5debb8dd3b814b8241 -2023-06-10 16:35:22.618441 + : pb-IF41U2scIg== ip: ak~}hhaoaalb, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-06-10 16:36:43.938171 + : pb-IF5UUGwvJA== ip: a}j~~naalia`c, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-06-10 16:43:49.976886 + : Server started -2023-06-10 16:49:02.178380 + : pb-IF40UBISLQ== ip: bxvf}vay`~~kc, Device id: 431ed78324897abf61fdf94bab7bf96939fc1e64 -2023-06-10 17:08:28.506818 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-06-10 17:09:06.634074 + : pb-IF4jVWsgNw== ip: a~o~}jhaoaaj`}, Device id: e87680f7ed1ca47a13478c5debb8dd3b814b8241 -2023-06-10 17:12:05.741564 + : pb-IF4HUGoBIw==|| kicked > new account -2023-06-10 17:12:25.328100 + : pb-IF41U2scIg== ip: ak~}hhaoaalb, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a diff --git a/dist/ba_root/mods/serverdata/logs.log2023-04-07 23%3A51%3A33.875558 b/dist/ba_root/mods/serverdata/logs.log2023-04-07 23%3A51%3A33.875558 deleted file mode 100644 index 9a51308..0000000 --- a/dist/ba_root/mods/serverdata/logs.log2023-04-07 23%3A51%3A33.875558 +++ /dev/null @@ -1,9216 +0,0 @@ -2023-03-26 13:21:30.654963 + : pb-IF4DU0IEJg== started kick vote for pb-IF4TV3RbDA==. -2023-03-26 13:22:00.655529 + : Kick vote End -2023-03-26 13:24:06.475997 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-26 13:25:20.248406 + : pb-IF4DU0IEJg== started kick vote for pb-IF4vVRUFVA==. -2023-03-26 13:25:50.249556 + : Kick vote End -2023-03-26 13:26:16.965754 + : pb-IF5cU2haHA== ip: dvvcxvb{`~~md, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-03-26 13:27:42.271998 + : pb-IF4cUBVbDA== ip: dxvbvvaym~~m`, Device id: d3490a81c1d338cfb95deb1d711d000980823c5f -2023-03-26 13:28:09.371169 + : pb-IF4QU0IbNg== ip: dvvcxvb~m~{`, Device id: f2f972d5b08b11c21433fdc2935fcbdede9bad0c -2023-03-26 13:29:29.917021 + : pb-IF4DU0IEJg== started kick vote for pb-IF5cU2haHA==. -2023-03-26 13:29:34.843986 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-26 13:29:59.918903 + : Kick vote End -2023-03-26 13:30:20.006589 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-26 13:30:23.021267 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-26 13:32:33.482993 + : pb-IF41U2scIg== ip: an~~acaii}vb~o, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-26 13:34:02.838007 + : pb-IF5UUxU7Ag== ip: a~h~}jda`cal`, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-03-26 13:35:10.258299 + : pb-IF4NU1MOBA== ip: azo~{a~~khaibx, Device id: 25ada8c2f05941d387cfe189425c853fa2849a3b -2023-03-26 13:35:54.419178 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-26 13:40:10.496538 + : pb-IF4IU1c6Ug== ip: azj~z`~|`~vl, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-26 13:41:11.700613 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-26 13:41:54.833731 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-26 13:44:17.816902 + : pb-IF4DU0IEJg== started kick vote for pb-IF4vVRUFVA==. -2023-03-26 13:44:47.816852 + : Kick vote End -2023-03-26 13:47:43.238342 + : pb-IF4JUBMZCA== ip: an~~ahaidajc, Device id: a1f6dc2f8f93ed728dfa5f8917f880300ab47b8e -2023-03-26 13:47:50.268860 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~~ag, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-26 13:47:55.294033 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-26 13:49:16.580214 + : pb-IF41U2scIg== ip: an~~acaii}vb~o, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-26 13:49:50.709246 + : pb-IF4JUBMZCA== ip: an~~ahaidajc, Device id: a1f6dc2f8f93ed728dfa5f8917f880300ab47b8e -2023-03-26 13:50:50.928857 + : pb-IF5UUxU7Ag== ip: a~h~}jda`cal`, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-03-26 13:50:54.943591 + : pb-IF5cU2haHA== ip: dvvcxvb{`~~md, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-03-26 13:51:53.145628 + : pb-IF4DU0IEJg== ip: b}k~~ohaja|vaya, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-26 13:52:26.267510 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-26 13:53:13.289162 + : pb-IF4DU0IEJg== started kick vote for pb-IF4vVRUFVA==. -2023-03-26 13:53:43.297665 + : Kick vote End -2023-03-26 13:54:56.829594 + : pb-IF5VU3lYDA== ip: azj~z`~~ofaib{, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-03-26 13:55:37.012645 + : pb-IF4JUBMZCA== ip: an~~ahaidajc, Device id: a1f6dc2f8f93ed728dfa5f8917f880300ab47b8e -2023-03-26 13:56:56.663898 + : pb-IF4DU0IEJg== started kick vote for pb-IF41U2scIg==. -2023-03-26 13:57:26.665172 + : Kick vote End -2023-03-26 13:59:13.856593 + : pb-IF5cU2haHA== started kick vote for pb-IF4DUlohJw==. -2023-03-26 13:59:43.862646 + : Kick vote End -2023-03-26 13:59:54.898807 + : pb-IF4FU1daUA== ip: a~h~}jdaifzvawm, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-26 14:01:12.194250 + : pb-IF4IU1c6Ug== ip: azj~z`~|`~vl, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-26 14:03:06.337252 + : pb-JiNJARBeXUBDXl5BGU5RUl1DEENbT1JD started kick vote for pb-IF41U2scIg==. -2023-03-26 14:03:36.337514 + : Kick vote End -2023-03-26 14:03:49.775945 + : pb-IF4IU1c6Ug== ip: azj~z`~|`~vl, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-26 14:04:08.842528 + : pb-IF4TV3RbDA== ip: azo~{m~}lbai`w, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-26 14:04:29.947165 + : pb-IF5cPGsk ip: azj~zo~~`baihw, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-26 14:07:23.564372 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-26 14:07:32.391395 + : pb-IF4TV3RbDA== started kick vote for pb-IF5RU0QoLA==. -2023-03-26 14:08:02.394910 + : Kick vote End -2023-03-26 14:11:45.118295 + : pb-IF4DU1I4CQ== ip: azj~z`~}jaaii~, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-26 14:11:57.150962 + : pb-IF49U0QJDw== ip: a}j~~ogaieyva{j, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-26 14:12:28.256937 + : pb-IF4VU3laVA== ip: ak~~naaid{vd~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-26 14:12:35.279918 + : pb-IF49U0QJDw== ip: a}j~~ogaieyva{j, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-26 14:12:39.300166 + : pb-IF49UnYRLQ== ip: dvvcyvb~i~~ji, Device id: 690c3f7ca525541fd6d368f95dd77e48836a2345 -2023-03-26 14:13:17.446178 + : pb-IF5cPGsk ip: azj~zo~~`baihw, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-26 14:13:55.569656 + : pb-IF4VU3laVA== ip: ak~~naaid{vd~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-26 14:14:41.742178 + : pb-IF41U3g5Vg== ip: azo~|l~wh~~kb, Device id: 2651e2430e70669c13cd0e297f2c21d684cec5bf -2023-03-26 14:15:22.896094 + : pb-IF4nUxE4Nw== ip: an~}hiajave|, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-26 14:17:57.518168 + : pb-IF4DU1I4CQ== ip: azj~z`~}jaaii~, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-26 14:18:03.533280 + : pb-IF5WUno7PQ== ip: azj~zo~}ifamh, Device id: 6164a3526ba984be44e85dfeb8283d2a6a9f3534 -2023-03-26 14:18:59.031425 + : pb-IF4KUBdfDQ==|| kicked > new account -2023-03-26 14:19:26.824269 + : pb-IF4iUmsSDw== ip: dxvc~vixva|, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-03-26 14:20:53.130867 + : pb-JiNJARBcUEJFW1tEEUNSUVJCEUFfRVJK ip: a}j~zh~}hdaie}, Device id: bf8c99071e696e2bcfb472317fd8470b924639fc -2023-03-26 14:21:16.209829 + : pb-IF48UBUzCg== ip: azj~zo~}ieami, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-03-26 14:29:48.493460 + : pb-IF4BDxEj ip: an~}ifaje}vayk, Device id: 6389a355e928f58d444d10a10713953d39c0c4a6 -2023-03-26 14:32:00.511142 + : pb-IF48UBUzCg== started kick vote for pb-IF4gU3QONA==. -2023-03-26 14:32:30.510044 + : Kick vote End -2023-03-26 14:32:49.146934 + : pb-IF4WU0wvVA== ip: dvvc}vb{j~~me, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-26 14:33:51.640380 + : pb-IF4-UBYKFw==|| kicked > new account -2023-03-26 14:34:07.405042 + : pb-IF5dU3UiAw== ip: azo~{a~}kaajb|, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-26 14:36:26.883514 + : pb-IF4TV3RbDA== ip: azo~{m~}kdajay, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-26 14:37:45.714021 + : pb-IF4gU3QONA== started kick vote for pb-IF4TV3RbDA==. -2023-03-26 14:38:15.715078 + : Kick vote End -2023-03-26 14:39:12.439663 + : pb-IF4KV04FIg== ip: dvvcxvf{vazm, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-26 14:40:36.037803 + : pb-IF5WUBg9Mw==|| kicked > new account -2023-03-26 14:40:55.781805 + : pb-IF5cPGsk ip: azj~zo~~`baihw, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-26 14:44:43.307513 + : pb-IF4eUxYkNg== started kick vote for pb-IF4WU0wvVA==. -2023-03-26 14:45:13.312396 + : Kick vote End -2023-03-26 14:46:23.578465 + : pb-IF4HV2MOVg== ip: azo~zi~~aeaie|, Device id: b00839bfd13006bdab99041a6c9cd737214594c1 -2023-03-26 14:46:39.852651 + : pb-IF5dU3UiAw== started kick vote for pb-IF4DU1I4CQ==. -2023-03-26 14:47:09.856585 + : Kick vote End -2023-03-26 14:47:50.111149 + : pb-IF5QU2gNXA== ip: a|o~vo~~ieaih, Device id: ce97551323d1a3eb8489dbd02cc5e2bde921e504 -2023-03-26 14:53:12.689336 + : pb-IF4nU1kREw== ip: b}k~~`daihzvayl, Device id: 6ca43418ac03eedc96628c9e8716ddc8153592f3 -2023-03-26 14:53:26.733455 + : pb-IF5TU1ddPA== ip: azj~z`~|l~}id, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-03-26 14:55:09.303395 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vi{, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-03-26 14:55:14.321380 + : pb-IF4WUBJcVQ== ip: ayk~zk~~oiaj`w, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-03-26 14:56:17.898656 + : pb-IF4WUBJcVQ== started kick vote for pb-IF4NU0wvUQ==. -2023-03-26 14:56:41.700549 + : pb-IF41U2scIg== ip: an~~acaii}vb~o, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-26 14:56:47.899381 + : Kick vote End -2023-03-26 14:56:56.753479 + : pb-IF5UUBI9MA== ip: azo~|j~}lfao`, Device id: 4381142d5e8cfc6ab20167b3a40f172ee10010f5 -2023-03-26 15:00:39.517950 + : pb-IF4KV04FIg== ip: dvvcxvf{vazm, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-26 15:01:29.709123 + : pb-IF41U2scIg== ip: ak~}hhanialh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-26 15:01:37.735457 + : pb-IF49U0QJDw== ip: a}j~~ogaieyva{j, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-26 15:03:07.545711 + : pb-IF41U2scIg== ip: ak~}hhanialh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-26 15:03:08.550786 + : pb-IF5TU1ddPA== ip: azj~z`~|l~}j, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-03-26 15:03:23.955139 + : pb-IF4WUBdeEQ==|| kicked > new account -2023-03-26 15:04:52.910378 + : pb-IF5cUBMdCQ== ip: an~}heajbxvawo, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-26 15:06:38.239034 + : pb-IF4rU1MeCA== ip: a}j~~ncaig}vb~n, Device id: 6f96a371256f103ff699feb904d45a43e2926807 -2023-03-26 15:07:28.391484 + : pb-JiNJARBeXUBDXl5BGU5RUl1DEENbT1JD ip: dvvcyvba~~ad, Device id: 5ea21c047b01fdb9ce1e86a71c0180fc1aacad5c -2023-03-26 15:09:07.762846 + : pb-IF5cPGsk ip: azj~zo~~`baihw, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-26 15:10:40.089830 + : pb-IF49U0QJDw== ip: a}j~~ogaieyva{j, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-26 15:11:20.238597 + : pb-IF4KV04FIg== ip: dvvcxvf{vazm, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-26 15:13:55.780725 + : pb-IF4nUxE4Nw== ip: an~}hiajave|, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-26 15:14:58.019332 + : pb-IF4OPhMg ip: a~o~vo~~agaae, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-03-26 15:15:36.424691 + : pb-IF4QUBY8CA==|| kicked > new account -2023-03-26 15:15:44.144116 + : pb-IF5SUno-Ug== ip: d}vam~~ofaa`, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-03-26 15:17:04.447192 + : pb-IF4zU0NSFA== ip: awk~~oaaib{vb~j, Device id: 8b30655361503b81863f4673a28e21c76563d623 -2023-03-26 15:19:23.061765 + : pb-IF4nUxE4Nw== started kick vote for pb-IF4OPhMg. -2023-03-26 15:19:53.065653 + : Kick vote End -2023-03-26 15:22:29.583330 + : pb-IF4eUxYkNg== ip: a|j~~mdaie|vavh, Device id: cf463c3e8e5177f63280992858c9206120cc78da -2023-03-26 15:23:28.079771 + : pb-IF4sUnRSNA== started kick vote for pb-IF4KV04FIg==. -2023-03-26 15:23:37.828525 + : pb-IF4eUlUkUQ== ip: an~}igakgajc{, Device id: d84615498435463010f02bce490dbe3b329b4790 -2023-03-26 15:23:58.082505 + : Kick vote End -2023-03-26 15:24:15.974302 + : pb-IF49U1NZKg== ip: azo~{l~~`can`, Device id: deae9540006d65c18d920400d85688604b861fa8 -2023-03-26 15:26:07.504569 + : pb-IF5XUBgADQ== ip: d}va~j~~mbak, Device id: 38b4d07c86f2356a07ab4e2f27930d585073c246 -2023-03-26 15:26:54.633843 + : pb-IF49U1NZKg== started kick vote for pb-IF4eUxYkNg==. -2023-03-26 15:27:24.634593 + : Kick vote End -2023-03-26 15:28:52.232742 + : pb-IF4mUmJZLw== started kick vote for pb-IF49U1NZKg==. -2023-03-26 15:29:22.236782 + : Kick vote End -2023-03-26 15:30:23.349538 + : pb-IF4sUnRSNA== started kick vote for pb-IF41U2scIg==. -2023-03-26 15:33:29.201180 + : pb-IF5cPGsk ip: azj~zo~~`baihw, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-26 15:33:29.201460 + : pb-IF4sUnRSNA== ip: azj~zo~}kaalc, Device id: bbfe8f36a42dd54e3ce9470c57394f000dadaf82 -2023-03-26 15:33:31.190867 + : pb-IF5TU04FLg== ip: dvvc}vaym~ym, Device id: e182900e3ffb74c42a5c1d55fd43ad53961cf9bd -2023-03-26 15:33:37.207346 + : pb-IF4WU0wvVA== ip: dvvc}vb{j~~me, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-26 15:34:07.311709 + : pb-IF41U2scIg== ip: ak~}hhanialh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-26 15:35:42.750465 + : pb-IF4sUnRSNA== started kick vote for pb-IF5TU04FLg==. -2023-03-26 15:36:09.680763 + : pb-IF5cPGsk ip: azj~zo~~`baihw, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-26 15:36:12.755600 + : Kick vote End -2023-03-26 15:37:32.954589 + : pb-IF5cPGsk ip: azj~zo~~`baihw, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-26 15:37:36.964437 + : pb-IF41U2scIg== ip: ak~}hhanialh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-26 15:38:23.117403 + : pb-IF4jF1NY ip: azj~z`~{j~zj, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-26 15:39:08.284157 + : pb-IF4DU1I4CQ== ip: azj~z`~}ieamf, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-26 15:40:08.448584 + : pb-IF4eUBdTVA==|| kicked > new account -2023-03-26 15:41:19.009803 + : pb-IF4DU1I4CQ== started kick vote for pb-IF4sUnRSNA==. -2023-03-26 15:41:23.773009 + : pb-IF40UncaLg== ip: a~i~~jeaj`wvb{`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-26 15:41:49.015169 + : Kick vote End -2023-03-26 15:41:51.790856 + : pb-IF4sUnRSNA== | kicked for chat spam -2023-03-26 15:43:08.146653 + : pb-IF40UncaLg== ip: dvvc}vb~l~}ji, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-26 15:44:47.522651 + : pb-JiNJARFdV0tEVF9FGERSUFVKF0RdRVJB ip: a~o~va~}l`aaa, Device id: 3c67d37cb3abcaab76472f82879fac3c33ad6000 -2023-03-26 15:45:37.685345 + : pb-IF41U2scIg== ip: ak~}hhanialh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-26 15:46:47.257657 + : pb-IF5VUBlZLA==|| kicked > new account -2023-03-26 15:48:14.263102 + : pb-IF4nA28F | kicked > reason: Banned account -2023-03-26 15:49:22.496118 + : pb-IF5dU3UiAw== ip: azo~{a~}kfa`i, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-26 15:49:59.915586 + : pb-IF5TUBgaNw==|| kicked > new account -2023-03-26 15:52:42.182294 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-26 15:55:23.779155 + : pb-IF5TU1ddPA== ip: azj~z`~|l~}j, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-03-26 15:56:20.375434 + : pb-IF43Um0yFA== | kicked for chat spam -2023-03-26 15:58:46.482651 + : pb-IF5QU3AaLg== ip: ak~}maamgaih}, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-03-26 16:01:02.335995 + : pb-IF4jF1NY started kick vote for pb-IF5TU1ddPA==. -2023-03-26 16:01:04.410112 + : pb-IF4rUBdTPA==|| kicked > new account -2023-03-26 16:01:32.336547 + : Kick vote End -2023-03-26 16:03:27.908924 + : pb-IF5TU1ddPA== started kick vote for pb-IF4jF1NY. -2023-03-26 16:03:47.590239 + : pb-IF4WUBJcVQ== ip: ayk~zk~~oiaj`w, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-03-26 16:03:57.916833 + : Kick vote End -2023-03-26 16:04:52.850426 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: ak~~liaievvdz, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-03-26 16:05:06.916370 + : pb-IF4cU1AjDw== ip: azo~{m~vn~}jd, Device id: 23d67137d6aa4be21a991ed949cf0b73dc376a7a -2023-03-26 16:05:17.784862 + : pb-IF4jF1NY started kick vote for pb-IF4WUBJcVQ==. -2023-03-26 16:05:47.789069 + : Kick vote End -2023-03-26 16:06:12.466616 + : pb-IF4sUBUfMw==|| kicked > new account -2023-03-26 16:06:35.211682 + : pb-IF49U0QJDw== ip: b}k~}khaja~vazo, Device id: 24495fd5ec013cdb163a3a3931b477b63894ef12 -2023-03-26 16:07:05.313729 + : pb-IF41U2scIg== ip: ak~}hhanialh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-26 16:07:25.395904 + : pb-IF4eU1MzFA== ip: a|j~~mdameajcv, Device id: 2845820fe40da27f3556ad26ddd441278459a01a -2023-03-26 16:12:26.494424 + : pb-IF4KV04FIg== ip: dvvcxvf{vazm, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-26 16:12:35.512720 + : pb-IF4KV04FIg== ip: dvvcxvf{vazm, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-26 16:14:48.003180 + : pb-IF41U2scIg== ip: ak~}hhanialh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-26 16:15:01.052420 + : pb-IF4KV04FIg== ip: dvvcxvf{vazm, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-26 16:15:59.313395 + : pb-IF49U0QJDw== ip: b}k~}khaja~vazo, Device id: 24495fd5ec013cdb163a3a3931b477b63894ef12 -2023-03-26 16:22:03.605560 + : pb-IF4GUxJfPw== ip: azj~z`~}kfaii{, Device id: 971e849b0f34e519b3cd07999dca7e71b5ff2d83 -2023-03-26 16:24:00.305041 + : pb-IF4iU1RaPA==|| kicked > new account -2023-03-26 16:25:24.286441 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-26 16:25:49.378861 + : pb-IF4cU1AjDw== ip: azo~{m~vn~}jd, Device id: 23d67137d6aa4be21a991ed949cf0b73dc376a7a -2023-03-26 16:31:29.603539 + : pb-IF4KV04FIg== ip: dvvcxvf{vazm, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-26 16:31:54.689674 + : pb-IF5UVRYYNw== ip: azj~zo~}j`aiez, Device id: 0b1d13eca1ec50cde8b2666fdfede7cf68928ec2 -2023-03-26 16:31:57.044798 + : pb-IF4vUkgKNQ== started kick vote for pb-IF5UVRYYNw==. -2023-03-26 16:32:27.043330 + : Kick vote End -2023-03-26 16:33:28.267109 + : pb-IF4JVVc4Vg== started kick vote for pb-IF5UVRYYNw==. -2023-03-26 16:33:36.032180 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-26 16:33:58.270456 + : Kick vote End -2023-03-26 16:34:07.129219 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-26 16:35:21.371117 + : pb-IF4WUBJcVQ== ip: ayk~zk~~oiaj`w, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-03-26 16:35:48.085535 + : pb-IF4vVRUFVA== started kick vote for pb-IF4JVVc4Vg==. -2023-03-26 16:36:18.089434 + : Kick vote End -2023-03-26 16:37:43.915502 + : pb-IF4vUkgKNQ== | kicked for chat spam -2023-03-26 16:39:14.220537 + : pb-IF4cU1g_VQ== ip: an~xo~vk~~og, Device id: 0bce36cc9eddc2871b10ca030556a1f1aeb1ba2f -2023-03-26 16:40:16.438240 + : pb-IF5TUkZSVA== ip: axn~~o`aiaam, Device id: 2a7a80db1ca688d12460e4a8899b9bd36a5fb736 -2023-03-26 16:40:49.564396 + : pb-IF49U0QJDw== ip: a}j~~ogaieyva{j, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-26 16:41:10.639302 + : pb-IF4uVEUDKw== ip: a~h~}jgaicaicy, Device id: 6123f53f5dd676c2b7635ac70cd4081b6346dcc0 -2023-03-26 16:42:31.124720 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-26 16:42:46.173998 + : pb-IF5RU3AjNA== ip: azo~zi~~igaj`w, Device id: cbfdfe924e116c9e077df6b122ca58243b2ab515 -2023-03-26 16:42:49.179735 + : pb-IF4CUkheBg== ip: b~k~~nba`aaj`z, Device id: 4cfb634aa40f8f56a2448050d7b6cc5f312ffd18 -2023-03-26 16:42:59.215853 + : pb-IF5dU3UiAw== ip: azo~{a~}jeaja}, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-26 16:43:02.226475 + : pb-IF49U0QJDw== ip: a}j~~ogaieyva{j, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-26 16:43:22.297222 + : pb-IF5cPGsk ip: azj~zo~~nbaic, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-26 16:44:44.566270 + : pb-IF40UncaLg== ip: a~i~~jeaj`wvb{`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-26 16:45:01.137928 + : pb-IF4SUBYaBw==|| kicked > new account -2023-03-26 16:45:12.689854 + : pb-IF4SVUYEPQ== ip: dvvc}vaxm~xh, Device id: 21f59c38f4379b67300402055b516558d8a192d9 -2023-03-26 16:45:21.719508 + : pb-IF5dU3UiAw== ip: azo~{a~}jeaja}, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-26 16:47:01.120136 + : pb-IF4jF1NY ip: a~j~xa~xj~~ii, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-26 16:48:52.581675 + : pb-IF41U0sYPA== ip: an~~aeai`aif}, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-03-26 16:49:38.753223 + : pb-IF5WU0cRAg== ip: d}va`~~afajd}, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-26 16:50:08.841176 + : pb-IF4OU1IZVg== ip: azo~{l~~lhaif|, Device id: 541973653043d7f242ff3b1078194e8678f82921 -2023-03-26 16:54:07.727431 + : pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL ip: dvvc{va|m~~mh, Device id: a61172de41bee6c6202d757a57288fd637e3ec13 -2023-03-26 16:55:42.572063 + : pb-IF5cPGsk started kick vote for pb-IF5RVXoCUw==. -2023-03-26 16:55:57.155200 + : pb-IF5TUkZSVA== ip: axn~~o`aiaam, Device id: 2a7a80db1ca688d12460e4a8899b9bd36a5fb736 -2023-03-26 16:56:12.575309 + : Kick vote End -2023-03-26 16:57:11.423036 + : pb-IF5dU3UiAw== ip: azo~{a~}jeaja}, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-26 16:57:20.461040 + : pb-IF4jF1NY ip: azj~z`~~vdx, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-26 16:58:04.636427 + : pb-IF4RU0ocBA== ip: a~o~}iiaif|vay, Device id: bd65a72fbda8f62ae4377647b73bfaa50958b12d -2023-03-26 16:58:43.769582 + : pb-IF4SVUYEPQ== ip: dvvcyva~m~~`d, Device id: 21f59c38f4379b67300402055b516558d8a192d9 -2023-03-26 16:58:50.783416 + : pb-IF5TUkZSVA== ip: axn~~o`aiaam, Device id: 2a7a80db1ca688d12460e4a8899b9bd36a5fb736 -2023-03-26 17:01:34.374971 + : pb-IF4tUnoFVA== ip: dvva{m~}jeaiiv, Device id: 6ae3c9aa05c31ff09988b70a30b83fbb1ecdaf46 -2023-03-26 17:02:37.606784 + : pb-IF5cPGsk ip: azj~zo~~nbaic, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-26 17:05:05.219358 + : pb-IF4gU0wxBw== ip: ak~}hhanialh, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-26 17:05:15.255399 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-26 17:06:42.532192 + : pb-IF5WU0cRAg== ip: d}va`~~afajd}, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-26 17:07:43.751910 + : pb-IF4IU0gmEA== ip: azo~{`~}jcaihx, Device id: a3ef0aa7b7d8c33d19aa581eb582ee44560dc90a -2023-03-26 17:08:21.901422 + : pb-IF4WUBJcVQ== ip: ayk~zk~~oiaj`w, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-03-26 17:11:08.322125 + : pb-IF5cPGsk started kick vote for pb-IF5RVXoCUw==. -2023-03-26 17:11:38.328552 + : Kick vote End -2023-03-26 17:11:51.650992 + : pb-IF4WUBJcVQ== ip: ayk~zk~~oiaj`w, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-03-26 17:12:50.890472 + : pb-IF5RVXoCUw== started kick vote for pb-IF4IU0gmEA==. -2023-03-26 17:13:17.446835 + : Kick vote End -2023-03-26 17:14:19.166295 + : pb-IF4jF1NY started kick vote for pb-IF5RU2YnDw==. -2023-03-26 17:14:26.287245 + : pb-IF40U3MyVQ== ip: b}k~}kcao`aiaw, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-26 17:14:49.173883 + : Kick vote End -2023-03-26 17:14:49.380771 + : pb-IF4yU1oxUg== ip: dvvc{vawi~wk, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-03-26 17:14:54.402144 + : pb-IF5cVRYTCQ== ip: an~}j`aig|va|j, Device id: be694006c26106519e4a116c55f3391b57b7caab -2023-03-26 17:15:07.452309 + : pb-IF4WUBJcVQ== ip: ayk~zk~~oiaj`w, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-03-26 17:19:17.272970 + : pb-IF4-JUgB ip: ak~~j`aje}vh, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-26 17:20:01.440328 + : pb-IF4FU2QiKQ== ip: an~}i`aii|va~o, Device id: 9aeaea5032ef8172cbd1a983cc17ea18a73e3466 -2023-03-26 17:20:51.653495 + : pb-JiNJARFcUUNFVVlHGUVZUFRDFUdeR1ZC ip: awj~ya~}jcaja}, Device id: 015a0cb7e587ab697743ad4583f22be93ef627fd -2023-03-26 17:21:43.266700 + : pb-IF5RU2YnDw== | kicked for chat spam -2023-03-26 17:22:48.071349 + : pb-IF4yU1oxUg== ip: dvvc{vawi~wk, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-03-26 17:22:55.094257 + : pb-IF4-JUgB ip: ak~~j`aje}vh, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-26 17:23:04.130189 + : pb-IF4FU2QiKQ== ip: an~}i`aii|va~o, Device id: 9aeaea5032ef8172cbd1a983cc17ea18a73e3466 -2023-03-26 17:27:49.247543 + : pb-IF5SUBMhAw== ip: dvvc}vb~a~~ma, Device id: 69d4513cb2686138887986bfc6a46d2d89fe2826 -2023-03-26 17:28:28.397802 + : pb-IF41U2scIg== ip: an~~acaii}vb~o, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-26 17:29:57.704557 + : pb-IF41U2scIg== ip: an~~acaii}vb~o, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-26 17:31:15.975894 + : pb-IF49VGoPJg== ip: axm~~ofa`gan`, Device id: c9f7e3cc35de2cae218ca2bfb1c32ade39ab71b3 -2023-03-26 17:31:19.992166 + : pb-IF49UnYRLQ== ip: dvvcyvb~i~~ji, Device id: 690c3f7ca525541fd6d368f95dd77e48836a2345 -2023-03-26 17:35:15.970242 + : pb-IF49UnYRLQ== started kick vote for pb-IF41U0sYPA==. -2023-03-26 17:35:32.941063 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-26 17:35:39.960548 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-26 17:35:45.973244 + : Kick vote End -2023-03-26 17:36:32.138762 + : pb-IF49VFQlPA== ip: azo~{m~~oeamf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-26 17:36:58.223987 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-26 17:37:13.272358 + : pb-IF5cUBMdCQ== ip: an~}heajbxvawo, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-26 17:37:41.359445 + : pb-IF4KV3YFPA== ip: bxva}m~}l`ang, Device id: 58839fe89f095ba613effd6d2f612ceb3beaa433 -2023-03-26 17:37:53.407027 + : pb-IF49VFQlPA== ip: azo~{m~~oeamf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-26 17:38:09.462772 + : pb-IF4WU0wvVA== ip: dvvc}vb{j~~me, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-26 17:38:59.629846 + : pb-IF4cU1AjDw== ip: azo~{m~~idand, Device id: 23d67137d6aa4be21a991ed949cf0b73dc376a7a -2023-03-26 17:39:10.670497 + : pb-IF49VFQlPA== ip: azo~{m~~oeamf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-26 17:40:08.877554 + : pb-IF4VU3laVA== ip: azo~{n~~oeaia}, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-26 17:41:32.186287 + : pb-IF4GUBMPFA== ip: azj~z`~}iaaje{, Device id: d80196558d9b89c8c7dc7dc8e9f787f49091c937 -2023-03-26 17:42:24.374660 + : pb-IF41U2scIg== ip: an~}ifaje~ve, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-26 17:43:57.677424 + : pb-IF4OU00jBA== ip: azj~z`~|o~}kf, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-03-26 17:45:59.116071 + : pb-IF4VU3laVA== ip: azo~{n~~oeaia}, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-26 17:46:46.288023 + : pb-IF5SUBMhAw== ip: dvvc}vb~a~~ma, Device id: 69d4513cb2686138887986bfc6a46d2d89fe2826 -2023-03-26 17:47:25.437546 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-26 17:50:23.051389 + : pb-IF4tUBU-NQ== ip: dvvcxva|i~~ha, Device id: 594714df3d623cdf9ae0df499a593ebac2d178fd -2023-03-26 17:51:00.792518 + : pb-IF4WUBdcDQ==|| kicked > new account -2023-03-26 17:51:35.298693 + : pb-IF4oU3oZNg== ip: azo~zi~~m~xj, Device id: 0dc18ce066c3a4df789c0f0c7c2297e0fa78a5e7 -2023-03-26 17:52:04.397508 + : pb-IF4zU1RSLQ== ip: ak~~mcai`zvfz, Device id: 6bc9b4ebe288e33d61cc3591693f470a96bc6661 -2023-03-26 17:52:19.455925 + : pb-IF49VFQlPA== ip: azo~{m~~oeamf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-26 17:52:23.474882 + : pb-IF41U2scIg== ip: ak~}hhanialh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-26 17:52:48.537684 + : pb-IF4SVUYEPQ== ip: dvvcyva~m~~`d, Device id: 21f59c38f4379b67300402055b516558d8a192d9 -2023-03-26 17:53:39.741015 + : pb-IF4sV1EbAw== ip: axi~xa~~lgaify, Device id: a44e4de087d1f01d0f7e169e537ee8957bea8069 -2023-03-26 17:55:10.225077 + : pb-IF4GUBMPFA== started kick vote for pb-IF49UnYRLQ==. -2023-03-26 17:55:39.145472 + : pb-IF4TU08qVQ== ip: azi~yh~vay`, Device id: ca78ade39ed1b9a8881dacdc9eb103745fa44505 -2023-03-26 17:55:40.232072 + : Kick vote End -2023-03-26 17:55:45.163377 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-26 17:55:59.220323 + : pb-IF4KU1Q9Pw== ip: bxvgandaj`y, Device id: 217799c313cf0a8fc57851c7c11d507bce2f3696 -2023-03-26 17:56:14.283350 + : pb-IF5cUBMdCQ== ip: an~}heajbxvawo, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-26 17:56:44.387564 + : pb-IF4WUBdcDQ== | kicked > reason:Banned account -2023-03-26 17:59:45.994890 + : pb-IF49VFQlPA== ip: azo~{m~~oeamf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-26 18:00:00.054983 + : pb-IF5cVRYTCQ== ip: an~}j`aig|va|j, Device id: be694006c26106519e4a116c55f3391b57b7caab -2023-03-26 18:00:36.168684 + : pb-IF5cU2haHA== ip: dvvcxvb{`~~md, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-03-26 18:00:53.232092 + : pb-IF4DU0IEJg== ip: b}k~~ohaja|vaya, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-26 18:02:35.623508 + : pb-IF49VFQlPA== ip: azo~{m~~oeamf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-26 18:05:48.270364 + : pb-IF5WU0cRAg== ip: d}va`~~afajd}, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-26 18:06:41.454206 + : pb-IF4GU3VZAA== ip: a~o~}k`aic|vcz, Device id: d8af9ff816bba78ceb389fc0ac1ff9f105d3b50f -2023-03-26 18:07:10.550065 + : pb-IF5WU0cRAg== ip: d}va`~~afajd}, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-26 18:09:33.020845 + : pb-IF4KV04FIg== ip: dvvcxvf{vazm, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-26 18:09:33.022139 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vi{, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-03-26 18:09:56.101221 + : pb-IF4KV04FIg== ip: dvvcxvf{vazm, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-26 18:10:29.213541 + : pb-IF4KV04FIg== ip: dvvcxvf{vazm, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-26 18:11:01.306139 + : pb-IF5cU2haHA== ip: dvvcxvb{`~~md, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-03-26 18:14:11.966034 + : pb-IF4-JUgB ip: ak~~j`aje}vh, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-26 18:14:44.900005 + : pb-IF41U2scIg== started kick vote for pb-IF5WU0cRAg==. -2023-03-26 18:15:14.900758 + : Kick vote End -2023-03-26 18:15:52.340210 + : pb-IF4VU3laVA== ip: azo~{n~~oeaia}, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-26 18:16:15.427685 + : pb-IF5WU0cRAg== ip: d}va`~~afajd}, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-26 18:17:27.741864 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-26 18:17:30.753895 + : pb-IF5WU0cRAg== ip: d}va`~~afajd}, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-26 18:17:57.835695 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vi{, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-03-26 18:20:12.586499 + : pb-IF4-JUgB ip: ak~~j`aje}vh, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-26 18:20:23.620883 + : pb-IF4KV04FIg== ip: dvvcxvf{vazm, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-26 18:20:31.643176 + : pb-IF5WU0cRAg== ip: aakhaifzvhw, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-26 18:20:37.666868 + : pb-IF5WU0cRAg== ip: aakhaifzvhw, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-26 18:24:42.658791 + : pb-IF4KV04FIg== ip: dvvcxvf{vazm, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-26 18:25:41.669323 + : pb-IF4-JUgB started kick vote for pb-IF4OU1IZVg==. -2023-03-26 18:26:11.670735 + : Kick vote End -2023-03-26 18:29:36.677146 + : pb-IF4IVW0MVw== ip: evviwvb|k~}hc, Device id: 0097d8138814c34ba1872bad50c053284743caec -2023-03-26 18:29:44.702034 + : pb-IF4FU1otBA== ip: dvvbl~}jga`c, Device id: c044f01ce8d50e49bbb3bb8f2f866ff46313d108 -2023-03-26 18:30:56.917839 + : pb-IF49VFQlPA== ip: azo~{m~~oeamf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-26 18:32:13.181024 + : pb-IF5WU0cRAg== ip: aakhaifzvhw, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-26 18:33:19.417773 + : pb-IF5cUBMdCQ== ip: an~}heajbxvawo, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-26 18:35:23.866828 + : pb-IF4rUBUdFg== ip: dvvcxvayh~~``, Device id: 8c67f0fa057b6f5a3fcaed52cf58617c2b305f12 -2023-03-26 18:35:46.942859 + : pb-IF4-JUgB ip: ak~~j`aje}vh, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-26 18:36:14.035512 + : pb-IF49VFQlPA== ip: azo~{m~~oeamf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-26 18:37:01.377298 + : pb-IF4jF1NY ip: azj~z`~vaxl, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-26 18:37:59.580175 + : pb-IF49VFQlPA== ip: azo~{m~~oeamf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-26 18:41:30.316841 + : pb-IF4KV04FIg== ip: dvvcxvf{vazm, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-26 18:43:19.747402 + : pb-IF5UUxgjIA== ip: evviwvb|k~}hc, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-26 18:46:37.703495 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-26 18:47:26.876650 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vi{, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-03-26 18:47:27.876425 + : pb-IF4OU00jBA== ip: azj~z`~|m~}j, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-03-26 18:49:43.341528 + : pb-IF5dVWEJMg== ip: azo~{n~yn~zk, Device id: 5ab7cb7a5f685d0d0dc98dafbdb2ce8610260d79 -2023-03-26 18:53:48.262096 + : pb-IF4OU00jBA== ip: azj~z`~|o~}kh, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-03-26 18:57:39.712386 + : pb-IF4VUBYJUA==|| kicked > new account -2023-03-26 18:58:26.793654 + : pb-IF4-JUgB ip: ak~~j`aje}vh, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-26 19:00:37.264041 + : pb-IF5XU0YhKg== ip: azo~{m~}leaii, Device id: 75ff7432c56d2b0a6ebcdf61a1cdd1675410cbdb -2023-03-26 19:03:46.871679 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vi{, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-03-26 19:04:21.986123 + : pb-IF5UUxgjIA== ip: evviwvb|k~}hc, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-26 19:04:39.053461 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-26 19:05:52.306153 + : pb-IF4TUlgePw== ip: an~~aeaoeaag, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-26 19:06:00.321622 + : pb-IF4TUlgePw== ip: an~~aeaoeaag, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-26 19:06:00.653969 + : pb-IF4MUBYJPw==|| kicked > new account -2023-03-26 19:06:29.418773 + : pb-IF4wV007Bg== ip: azo~{i~}jfajc, Device id: 8dad29e0684f20d26209bb4f357179d908a29102 -2023-03-26 19:06:39.466424 + : pb-IF4wV007Bg== ip: azo~{i~}jfajc, Device id: 8dad29e0684f20d26209bb4f357179d908a29102 -2023-03-26 19:06:50.493645 + : pb-IF4TUlgePw== ip: an~~aeaoeaag, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-26 19:07:21.144811 + : pb-IF4GU1MnUA== started kick vote for pb-IF5XU0YhKg==. -2023-03-26 19:07:51.149919 + : Kick vote End -2023-03-26 19:08:08.001008 + : pb-IF4GU1MnUA== | kicked for chat spam -2023-03-26 19:08:08.112988 + : pb-IF4dUBY4UA==|| kicked > new account -2023-03-26 19:09:42.150980 + : pb-IF4oUxAGPQ== ip: azj~zo~}l`ajaz, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-26 19:09:56.248772 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vi{, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-03-26 19:11:01.512288 + : pb-IF4TUlgePw== ip: an~~aeaoeaag, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-26 19:12:49.970342 + : pb-IF49VFQlPA== ip: azo~{m~~oeamf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-26 19:12:57.998646 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-26 19:15:13.661882 + : pb-IF4VU3EjBg== ip: azj~z`~|a~~if, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-03-26 19:15:16.670702 + : pb-IF4wBUUK ip: azj~z`~|n~~j`, Device id: 358a012da6dc4f5bf1a73e0563183e0a62af9e40 -2023-03-26 19:16:10.831182 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-03-26 19:16:54.971671 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-26 19:18:44.512239 + : pb-IF4gU0wxBw== ip: ak~}hhanialh, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-26 19:19:17.623213 + : pb-IF4qUBZdCA== ip: b}k~}jhaii~va~i, Device id: eb04141718aa6ca2004664b70054fba40c3e225b -2023-03-26 19:19:30.667231 + : pb-IF4VU3EjBg== ip: azj~z`~|a~~if, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-03-26 19:20:09.789069 + : pb-IF4VU3EjBg== ip: azj~z`~|m~{h, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-03-26 19:22:55.384514 + : pb-IF49UnYRLQ== ip: dvvcyvb~i~~ji, Device id: 690c3f7ca525541fd6d368f95dd77e48836a2345 -2023-03-26 19:23:35.541531 + : pb-IF4AVVAIUg== ip: ak~}keah~~i, Device id: d6c860d19037c73e01dd843ef300a37b6c7357bd -2023-03-26 19:24:13.690887 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-03-26 19:24:16.693663 + : pb-IF4VU3EjBg== ip: azj~z`~|m~{h, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-03-26 19:24:26.715246 + : pb-IF41U2scIg== ip: ak~}hhanialh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-26 19:25:08.905000 + : pb-IF4OU2QjMQ== ip: ak~}hhanialh, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-26 19:25:11.915788 + : pb-IF4VU3EjBg== ip: dvvcyviva~`, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-03-26 19:25:29.979639 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-26 19:25:41.021592 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-03-26 19:26:25.190142 + : pb-IF4VU3EjBg== ip: dvvcyviva~`, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-03-26 19:27:30.483986 + : pb-IF4IU1c6Ug== ip: azj~z`~|o~}hh, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-26 19:27:33.495509 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-26 19:28:58.790482 + : pb-IF4jF1NY ip: aakhaid~vb}`, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-26 19:29:44.960467 + : pb-IF4wBUUK ip: dvvcyviva~`, Device id: 358a012da6dc4f5bf1a73e0563183e0a62af9e40 -2023-03-26 19:29:50.995507 + : pb-IF4VU3EjBg== ip: dvvcyviva~`, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-03-26 19:30:21.088418 + : pb-IF4gU0wxBw== ip: ak~}hhanialh, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-26 19:31:10.443273 + : pb-IF4NUxFfEg== ip: an~}hgajb{vfy, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-03-26 19:31:29.522632 + : pb-IF4jF1NY ip: azj~z`~zh~~je, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-26 19:31:57.644873 + : pb-IF49UnYRLQ== ip: dvvcyvb~i~~ji, Device id: 690c3f7ca525541fd6d368f95dd77e48836a2345 -2023-03-26 19:32:35.777689 + : pb-IF4SVUYEPQ== ip: dvvcyva~m~~`d, Device id: 21f59c38f4379b67300402055b516558d8a192d9 -2023-03-26 19:36:40.657711 + : pb-IF4qUBZdCA== ip: b}k~}jhaii~va~i, Device id: eb04141718aa6ca2004664b70054fba40c3e225b -2023-03-26 19:39:35.488747 + : pb-IF4eUBMTKA== ip: ak~}hhanialh, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-26 19:39:55.553554 + : pb-IF4KU1Q9Pw== ip: a~m~vo~}k~}k`, Device id: 217799c313cf0a8fc57851c7c11d507bce2f3696 -2023-03-26 19:40:26.088804 + : pb-IF4nUxE4Nw== started kick vote for pb-IF49UnYRLQ==. -2023-03-26 19:40:32.703547 + : pb-IF4PIFQ9 ip: azo~zi~|va~k, Device id: 593a69858f539a0b1f234b1980113bb4060a87b5 -2023-03-26 19:40:45.775198 + : pb-IF4TV2w6Bw== ip: azo~zi~|va~k, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-03-26 19:40:56.089678 + : Kick vote End -2023-03-26 19:42:36.175944 + : pb-IF4OPhMg ip: a~o~vo~~agaae, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-03-26 19:42:42.205895 + : pb-IF48U1ITIA== ip: azo~zi~|n~~i, Device id: b05052cd6576ac8b297b5e87c0d91332dd2c2bb9 -2023-03-26 19:42:43.206197 + : pb-IF5cUBMdCQ== ip: an~}heajbxvawo, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-26 19:43:33.528627 + : pb-IF4LU0wKIw== ip: azj~zo~}ihaiix, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-03-26 19:43:44.026023 + : pb-IF4KU1Q9Pw== started kick vote for pb-IF4eUBMTKA==. -2023-03-26 19:43:45.855328 + : Kick vote End -2023-03-26 19:43:53.660955 + : pb-IF4jF1NY started kick vote for pb-IF4OPhMg. -2023-03-26 19:43:59.964914 + : pb-IF4OPhMg kicked by kickvotes. -2023-03-26 19:44:07.620816 + : pb-IF4sVFkqEw== ip: azo~{l~~`aaihy, Device id: ad1bd9a463e06d95060248e3e53e661fb639ccfe -2023-03-26 19:45:00.805431 + : pb-IF41U2scIg== ip: ak~}hhanialh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-26 19:48:00.578017 + : pb-IF5TU1ddPA== ip: azj~z`~|m~~he, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-03-26 19:48:28.678306 + : pb-IF40UncaLg== ip: dvvc}vb`~wj, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-26 19:52:07.794238 + : pb-IF4jF1NY ip: azj~z`~zh~~je, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-26 19:52:55.130668 + : pb-IF4KU1Q9Pw== started kick vote for pb-IF4sVFkqEw==. -2023-03-26 19:53:07.186928 + : Kick vote End -2023-03-26 19:53:15.029248 + : pb-IF4NUxFfEg== ip: an~}hgajb{vfy, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-03-26 19:53:44.139363 + : pb-IF4IU1c6Ug== ip: azj~z`~|o~xk, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-26 19:55:16.883496 + : pb-IF5TU1ddPA== started kick vote for pb-IF4IU1c6Ug==. -2023-03-26 19:55:46.888318 + : Kick vote End -2023-03-26 19:57:47.995216 + : pb-IF4oUxAGPQ== ip: azj~zo~}l`ajaz, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-26 19:59:15.334885 + : pb-IF4DU1I4CQ== ip: azj~z`~}icaifw, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-26 19:59:19.345825 + : pb-IF4wVXgqFA== ip: azj~zo~}m~~`e, Device id: 7f5352e18de688008fc4d6a07084cc307873fa4d -2023-03-26 20:00:50.159193 + : pb-IF5cU2haHA== ip: dvvcxvb{`~~md, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-03-26 20:02:46.736413 + : pb-IF4jF1NY started kick vote for pb-IF4oUxAGPQ==. -2023-03-26 20:03:16.744929 + : Kick vote End -2023-03-26 20:03:35.101492 + : pb-IF4cUktZNg== ip: a~h~}keajcwvf, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-03-26 20:03:40.112283 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-26 20:03:47.131828 + : pb-IF4DU1I4CQ== ip: azj~z`~}icajc|, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-26 20:03:49.142124 + : pb-IF5UUxgjIA== ip: evviwvb|k~}hc, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-26 20:06:27.686035 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-26 20:06:48.760394 + : pb-IF4SU1YeJA== ip: azo~zi~yo~}m, Device id: d6f5886cc86c1dedde8f4a359cdcf28bf73a0bea -2023-03-26 20:07:26.910749 + : pb-IF4jF1NY started kick vote for pb-IF4oUxAGPQ==. -2023-03-26 20:07:56.916555 + : Kick vote End -2023-03-26 20:09:24.313315 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~~ag, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-26 20:10:02.468338 + : pb-IF5QVVAuJA== ip: an~~aeaj~wo, Device id: 4e34a5f6bcd8ff274cf352a98d121a0c3fcc6962 -2023-03-26 20:13:00.059670 + : pb-IF41U2scIg== started kick vote for pb-IF4nUxE4Nw==. -2023-03-26 20:13:30.063170 + : Kick vote End -2023-03-26 20:15:35.615066 + : pb-IF4OPhMg ip: a~o~vo~~agaae, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-03-26 20:16:21.783168 + : pb-IF5TUm4DNg== ip: ak~}iaaigaigw, Device id: c9806c8ee7f04e5bf4128be81c5cd841d01101c7 -2023-03-26 20:16:47.867397 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~~ag, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-26 20:17:11.941186 + : pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL ip: dvvc{va|j~~ag, Device id: a61172de41bee6c6202d757a57288fd637e3ec13 -2023-03-26 20:18:24.160612 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~~ag, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-26 20:18:35.214959 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-26 20:24:01.921746 + : pb-IF4nUxE4Nw== started kick vote for pb-IF5UUxgjIA==. -2023-03-26 20:24:06.568348 + : pb-IF4SXhUa ip: azj~z`~xk~~ni, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-03-26 20:24:20.613062 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-26 20:24:31.922301 + : Kick vote End -2023-03-26 20:25:29.053969 + : pb-IF4cUmZcFw== ip: bk~~abaiizvb{`, Device id: f2e0b5fe43f7bc2229dc9b8a471cfd0d90e3b8dc -2023-03-26 20:26:10.203749 + : pb-IF41U2scIg== ip: ak~}hhanialh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-26 20:26:26.249219 + : pb-IF41U2scIg== ip: ak~}hhanialh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-26 20:29:22.287721 + : pb-IF4CUkheBg== ip: b~k~~nba`aaj`z, Device id: 4cfb634aa40f8f56a2448050d7b6cc5f312ffd18 -2023-03-26 20:29:32.321726 + : pb-IF5SUhQyXA== ip: dvvcxvb}m~}kh, Device id: 4ce498c771f5f889d4b4ca8bef8f23c17497a6b2 -2023-03-26 20:36:05.783551 + : pb-IF4wUBU4XQ== ip: an~~acai~yj, Device id: 4cddc20b89d8ed420832c64a4642dd7263bbe6ac -2023-03-26 20:36:29.867829 + : pb-IF4pU2IoDg== ip: ak~~ofaihzva}`, Device id: 2f6a950c3c941d77fc2e69d7b696ce64632690a8 -2023-03-26 20:40:51.757319 + : pb-IF4vUBUhUw== ip: azo~|k~~afakb, Device id: 3fe7416e77593a78e55532306e93b20c96c5fdfb -2023-03-26 20:45:27.803700 + : pb-IF4pU2IoDg== ip: ak~~ofaihzva}`, Device id: 2f6a950c3c941d77fc2e69d7b696ce64632690a8 -2023-03-26 20:45:32.822586 + : pb-IF4LU1RdUg== ip: azo~zh~{a~~`, Device id: 013ebdc40cb805919e389d339fe790db1aeaa296 -2023-03-26 20:47:19.546482 + : pb-IF4OPhMg started kick vote for pb-IF48U1IOLQ==. -2023-03-26 20:47:49.552860 + : Kick vote End -2023-03-26 20:49:08.896265 + : pb-IF4VU3laVA== ip: ak~~`baifyva{h, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-26 20:50:44.221217 + : pb-IF5UUxgjIA== ip: evviwvb|k~}hc, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-26 20:50:51.342212 + : pb-IF4jF1NY ip: aakhaidvfv, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-26 20:51:45.541227 + : pb-IF5cPGsk ip: dvvc}vawk~}lg, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-26 20:52:01.587319 + : pb-IF4wVXgqFA== ip: azj~zo~}m~~`e, Device id: 7f5352e18de688008fc4d6a07084cc307873fa4d -2023-03-26 20:52:25.296822 + : pb-IF4jF1NY started kick vote for pb-IF4wVXgqFA==. -2023-03-26 20:52:54.158264 + : pb-IF4gUBY4Eg==|| kicked > new account -2023-03-26 20:52:55.299844 + : Kick vote End -2023-03-26 20:55:52.266039 + : pb-IF4OPhMg started kick vote for pb-IF5cPGsk. -2023-03-26 20:56:05.475988 + : pb-IF5UUxU7Ag== ip: a~h~}jdaaaaib~, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-03-26 20:56:22.271060 + : Kick vote End -2023-03-26 20:56:54.649003 + : pb-IF4SU1YeJA== ip: azo~zi~yo~}m, Device id: d6f5886cc86c1dedde8f4a359cdcf28bf73a0bea -2023-03-26 20:58:15.924114 + : pb-IF4wUBU4XQ== ip: an~~acai~yj, Device id: 4cddc20b89d8ed420832c64a4642dd7263bbe6ac -2023-03-26 20:59:09.122257 + : pb-IF5cVRYTCQ== ip: an~}j`aig}va}j, Device id: be694006c26106519e4a116c55f3391b57b7caab -2023-03-26 21:01:07.552480 + : pb-IF4TUlgePw== ip: an~~aeandaag, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-26 21:01:59.740188 + : pb-IF4TUlgePw== ip: an~~aeandaag, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-26 21:02:47.929156 + : pb-IF4TUlgePw== ip: an~~aeandaag, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-26 21:08:18.274006 + : pb-IF4SU1YeJA== ip: azo~zi~yo~}m, Device id: d6f5886cc86c1dedde8f4a359cdcf28bf73a0bea -2023-03-26 21:09:46.564317 + : pb-IF4iU1RaPA== | kicked > reason:Banned account -2023-03-26 21:17:29.496521 + : pb-IF4TD1cf ip: dvvc}vaxa~}ia, Device id: f3af1d941719708fb2d6ed940c33f95bc772f822 -2023-03-26 21:18:32.725048 + : pb-IF40U3MyVQ== ip: b}k~}kcao`aiaw, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-26 21:18:50.794058 + : pb-IF4wUBU4XQ== ip: an~~acai~yj, Device id: 4cddc20b89d8ed420832c64a4642dd7263bbe6ac -2023-03-26 21:19:20.891670 + : pb-IF4cUktZNg== ip: a~h~}keajcwvf, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-03-26 21:21:33.602055 + : pb-IF4JU1oiDQ== ip: axa~zo~}kgai, Device id: 6a07b1a8d768502dcef6b3db8fcc84e3528fb4c2 -2023-03-26 21:24:03.179194 + : pb-IF4cUmZcFw== ip: bk~~abaiizvb{`, Device id: f2e0b5fe43f7bc2229dc9b8a471cfd0d90e3b8dc -2023-03-26 21:26:22.888875 + : pb-IF4xUkwKIA== ip: a~h~}jdaigajez, Device id: 29eafe60adf02ff0f8635b91072487f12411f5c5 -2023-03-26 21:27:38.166394 + : pb-IF4AVHQ9NQ== | kicked > reason:Banned account -2023-03-26 21:27:41.185878 + : pb-IF4qU1YhCA== ip: a~o~v`~~`ga`c, Device id: 2115d409178eb840eda1cd9c66efcef7a783a1dc -2023-03-26 21:34:44.002375 + : pb-IF4cUktZNg== ip: a~h~}keajcwvf, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-03-26 21:34:44.998025 + : pb-IF4nUkteVA== ip: an~}jaamaai`v, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-03-26 21:34:47.006655 + : pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL ip: dvvc{va}`~|a, Device id: a61172de41bee6c6202d757a57288fd637e3ec13 -2023-03-26 21:36:22.368476 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-26 21:38:59.945066 + : pb-IF4CV3JfVA== ip: ak~~k`aodaj`y, Device id: 2a345e6411b510fdcaeffe590a280a32c1bed981 -2023-03-26 21:41:27.492925 + : pb-IF4AVHQ9NQ== | kicked > reason:Banned account -2023-03-26 21:41:28.495065 + : pb-JiNJARBcV0NCXV5CEUdSVFNFF0JeQFFA ip: ak~~neajiaiay, Device id: 7b996a89a2e6145b00605af10e097c1e9d3ea3ed -2023-03-26 21:44:42.187284 + : pb-IF40PkMh ip: d}va`~~agajf, Device id: a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e -2023-03-26 21:46:22.541628 + : pb-IF4IU1c6Ug== ip: azj~z`~|`~xj, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-26 21:47:07.721380 + : pb-IF40U3MyVQ== ip: b}k~}kcao`aiaw, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-26 21:49:24.469418 + : pb-IF4nUxE4Nw== started kick vote for pb-IF40PkMh. -2023-03-26 21:49:54.476508 + : Kick vote End -2023-03-26 21:50:08.654392 + : pb-IF4LUBYjFA==|| kicked > new account -2023-03-26 21:51:26.618857 + : pb-IF4OPhMg ip: a~o~vo~~agaae, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-03-26 21:54:04.227803 + : pb-IF4wU0tYFg== ip: b}k~~ohaj`vvb~k, Device id: 43e2f807d9507bd99e67d976913e76e87295c3f7 -2023-03-26 21:54:39.350847 + : pb-IF4VU3laVA== ip: ak~~naaid{vaxm, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-26 21:55:26.528223 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-26 21:55:42.569182 + : pb-IF4wVVBdVw== ip: dvvcxvb`~}h`, Device id: 781d416387fb8622c6ab26afb3c7f62ab3439c24 -2023-03-26 21:58:11.105388 + : pb-IF4vU0MENg== ip: azo~|k~}`~}ih, Device id: 6382f3717c6ac3650740a14e9d6ab4b67728a26a -2023-03-26 22:00:45.673210 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-26 22:01:48.906705 + : pb-IF4tUlkRDw== ip: azj~zo~wo~{j, Device id: 4b90e79813fdb0259fc1d852d4f7ecff869da4b8 -2023-03-26 22:02:54.122404 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-26 22:03:25.247657 + : pb-IF4NUxFfEg== ip: an~}hgaja{vaw`, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-03-26 22:04:00.638259 + : pb-IF4nUxE4Nw== started kick vote for pb-IF4NUxFfEg==. -2023-03-26 22:04:30.640346 + : Kick vote End -2023-03-26 22:07:30.083617 + : pb-IF5cUBMdCQ== ip: an~}heajbxvawo, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-26 22:08:29.311096 + : pb-IF41U0sYPA== ip: an~~aeaicaif}, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-03-26 22:09:43.023430 + : pb-IF4vU0MENg== started kick vote for pb-IF4tUlkRDw==. -2023-03-26 22:10:13.031935 + : Kick vote End -2023-03-26 22:11:04.886678 + : pb-IF4jIVYI ip: a}j~~ohai`wvf~, Device id: 42debb0a8d6c51849f355914d33777f2690518bb -2023-03-26 22:12:05.126115 + : pb-IF5cUBMdCQ== ip: an~}heajbxvawo, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-26 22:12:35.247254 + : pb-IF40U3MyVQ== ip: b}k~}kcao`aiaw, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-26 22:14:28.700431 + : pb-IF4VU3laVA== ip: ak~~naaid{vaxm, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-26 22:15:17.891229 + : pb-IF5cU0kkKA== ip: an~}j`ajc~vb}, Device id: 21134c91a35ed88f5893ed72fdae3ef94c11d099 -2023-03-26 22:24:09.910183 + : pb-IF5VUBgPNQ== ip: azj~z`~}ibaicx, Device id: 5d9be131f99cfc8dae6a8dcdd2d769538914a0f1 -2023-03-26 22:26:58.490224 + : pb-IF42UBY4XA== ip: an~}j`a`falh, Device id: b5a077397cda4c52e0ce3401a35f58f0150bd61f -2023-03-26 22:27:32.613037 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-26 22:29:19.049661 + : pb-IF4SU1YeJA== ip: azo~zi~zl~}mc, Device id: d6f5886cc86c1dedde8f4a359cdcf28bf73a0bea -2023-03-26 22:29:53.177344 + : pb-IF4SU1YeJA== ip: azo~zi~zl~}mc, Device id: d6f5886cc86c1dedde8f4a359cdcf28bf73a0bea -2023-03-26 22:31:11.446452 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-26 22:31:53.420726 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF4tUlkRDw==. -2023-03-26 22:32:23.422863 + : Kick vote End -2023-03-26 22:32:47.777042 + : pb-IF5XKm9e ip: a}j~~naalialh, Device id: 828767106c1d714834e74d2f7e754ea8dff703dc -2023-03-26 22:33:30.606069 + : pb-IF4vVRUFVA== started kick vote for pb-IF4lU0pZLA==. -2023-03-26 22:33:41.955317 + : pb-IF4SUnMKEw== ip: aakhaif}va{, Device id: 6e8257dc74a0980eaba7afb2e0a07216e88e6214 -2023-03-26 22:34:00.611853 + : Kick vote End -2023-03-26 22:36:27.753652 + : pb-IF4tCRgv ip: ak~}iaaiea`i, Device id: 8c50b5e94f4fedbbbc30c1fd2d39bf3275ea8fc5 -2023-03-26 22:37:11.713681 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF4lU0pZLA==. -2023-03-26 22:37:41.715309 + : Kick vote End -2023-03-26 22:38:58.305906 + : pb-JiNJARFfU0pGWl5IEk9ZXVxGF0BWQllE started kick vote for pb-IF4lU0pZLA==. -2023-03-26 22:39:28.307679 + : Kick vote End -2023-03-26 22:40:43.215253 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF4lU0pZLA==. -2023-03-26 22:41:13.219095 + : Kick vote End -2023-03-26 22:41:26.834227 + : pb-IF5WU0olPA== ip: a~n~~acaid|vbw, Device id: cb88e151a4792befb19360f42f9a2e5285ae5b2e -2023-03-26 22:41:34.866407 + : pb-IF5XU2whDA== ip: hva~o~~jda`f, Device id: ac56b3495178d946f446cf15eef5c877052d09c1 -2023-03-26 22:41:37.872080 + : pb-IF4FU1daUA== ip: dvvczvazh~xl, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-26 22:41:59.956732 + : pb-IF5XU2whDA== ip: hva~o~~jda`f, Device id: ac56b3495178d946f446cf15eef5c877052d09c1 -2023-03-26 22:42:24.041209 + : pb-IF4hU3EgJA== ip: a|o~vo~~jgalg, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-03-26 22:43:41.375589 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-26 22:44:36.572167 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-26 22:44:45.609730 + : pb-IF5cPGsk ip: dvvc}vawk~}lg, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-26 22:45:09.709652 + : pb-IF5cPGsk ip: dvvc}vawk~}lg, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-26 22:46:55.098079 + : pb-IF41U2scIg== ip: ak~}hhanialh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-26 22:47:02.133574 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-26 22:48:11.337121 + : pb-IF4jF1NY ip: aakhaidvfv, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-26 22:48:17.362123 + : pb-IF4UUlENFQ== ip: azo~{m~~leaae, Device id: 4181f882c216c6a669f1509f1edc8b092ed7d12e -2023-03-26 22:49:19.565317 + : pb-IF4oUxAGPQ== ip: azj~zo~}laaiez, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-26 22:50:44.864998 + : pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL ip: dvvc{va{k~wi, Device id: a61172de41bee6c6202d757a57288fd637e3ec13 -2023-03-26 22:51:15.988512 + : pb-IF4IU09ZPA== ip: ewva{m~~`eajd, Device id: deea2c40db71b02d135cc5d2c81f3539d78f66e2 -2023-03-26 22:51:31.025721 + : pb-IF4UUlENFQ== ip: azo~{m~~leaae, Device id: 4181f882c216c6a669f1509f1edc8b092ed7d12e -2023-03-26 22:54:10.576575 + : pb-IF4tUBQZUw== ip: dvva{vayl~}kb, Device id: a01801d7e4d7e7399ae4dc23ba1eafeee5533610 -2023-03-26 22:54:26.616312 + : pb-IF4jF1NY ip: aakhaidvfv, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-26 23:02:38.396321 + : pb-IF40UncaLg== ip: dvvc}vbo~~, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-26 23:02:48.441512 + : pb-IF41U2scIg== ip: ak~}hhanialh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-26 23:04:18.841887 + : pb-IF4lU3cFFw== ip: an~}heajbxvawo, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-26 23:05:55.225870 + : pb-IF4wU0tYFg== ip: b}k~~ohaj`vvb~k, Device id: 43e2f807d9507bd99e67d976913e76e87295c3f7 -2023-03-26 23:07:12.462430 + : pb-IF5cPGsk ip: dvvc}vawk~}lg, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-26 23:07:33.511158 + : pb-IF4FU1daUA== ip: dvvczvazh~xl, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-26 23:08:16.663951 + : pb-IF5XKm9e ip: a}j~~naalialh, Device id: 828767106c1d714834e74d2f7e754ea8dff703dc -2023-03-26 23:09:11.849527 + : pb-IF4FU1daUA== ip: dvvczvazh~xl, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-26 23:11:01.264136 + : pb-IF5cUBMdCQ== ip: an~}heajbxvawo, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-26 23:12:14.495461 + : pb-IF4oUxAGPQ== ip: azj~zo~}l`ajd, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-26 23:12:18.517954 + : pb-IF42VXQbUw== ip: dvvbl~~lbaai, Device id: 137c5fd0a57a9dde2f8e57fbfd6987efac1836ab -2023-03-26 23:12:21.530591 + : pb-IF4FU1daUA== ip: dvvczvazh~xl, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-26 23:13:11.709345 + : pb-IF49U0QJDw== ip: dvvcxva~o~wh, Device id: c3810e11429b25a3849c4891a8d2d36e1dccc933 -2023-03-26 23:14:21.285797 + : pb-IF4dUBY9Vw==|| kicked > new account -2023-03-26 23:15:07.148906 + : pb-IF5cUBMdCQ== ip: an~}heajbxvawo, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-26 23:16:31.548997 + : pb-IF4KV04FIg== ip: dvvcxvf{vazm, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-26 23:19:37.246916 + : pb-IF4IU1c6Ug== ip: azj~z`~|a~~kb, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-26 23:19:41.278979 + : pb-IF4KV04FIg== ip: dvvcxvf{vazm, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-26 23:20:08.389443 + : pb-IF4KV04FIg== ip: dvvcxvf{vazm, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-26 23:20:32.473612 + : pb-IF49UnYRLQ== ip: dvvcyvb~i~~ji, Device id: 690c3f7ca525541fd6d368f95dd77e48836a2345 -2023-03-26 23:22:34.249900 + : pb-IF4PUBYYCg==|| kicked > new account -2023-03-26 23:24:27.432982 + : pb-IF4-UBQMMg== ip: dvvb}`~~kiald, Device id: a5d649bf9b8ac0586961e8d70ac774411d6d6202 -2023-03-26 23:26:57.341122 + : pb-IF4KV04FIg== started kick vote for pb-IF49UnYRLQ==. -2023-03-26 23:27:27.344012 + : Kick vote End -2023-03-26 23:30:11.685886 + : pb-IF4sU1EeAA== ip: a~h~}jdaahajdv, Device id: a4ccc2a4110c9b63a5fd073bee5f4d32900d0444 -2023-03-26 23:30:24.749475 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-26 23:30:27.764890 + : pb-IF48U2k5MQ== ip: ak~wm~~jgaic~, Device id: ffe6c42bad1bd600fd3b7c242afe5e21f6efe7cb -2023-03-26 23:30:35.789667 + : pb-IF4VUnZcNA== ip: azo~|a~xk~}ih, Device id: 3b545f8f98c25d09382d99a39ac74327a4bf79d8 -2023-03-26 23:33:39.558079 + : pb-IF4VUnZcNA== ip: azo~|a~xk~}ih, Device id: 3b545f8f98c25d09382d99a39ac74327a4bf79d8 -2023-03-26 23:34:30.722889 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~~adaoaaifz, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-03-26 23:35:45.010393 + : pb-IF5UVBMZEw== ip: bxvc{vc{vb, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-03-26 23:40:56.310698 + : pb-IF4KV04FIg== ip: dvvcxvf{vazm, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-26 23:41:10.351014 + : pb-IF5cUBMdCQ== ip: an~}heajbxvawo, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-26 23:42:31.655423 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-26 23:47:52.929892 + : pb-IF4VU3laVA== ip: ak~~naaid{vaxm, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-26 23:49:27.272327 + : pb-IF41U2scIg== ip: ak~}hhanialh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-26 23:50:22.470844 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-26 23:51:03.645274 + : pb-IF4gU0wxBw== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-26 23:51:05.650594 + : pb-IF4NV3oIFA== ip: azo~|j~~vg}, Device id: 5a97df8582391e7c2ee534d57ad3fcd265824bc2 -2023-03-26 23:51:32.773136 + : pb-IF4gU0wxBw== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-26 23:53:33.264409 + : pb-IF4NV3oIFA== ip: azo~|j~~vg}, Device id: 5a97df8582391e7c2ee534d57ad3fcd265824bc2 -2023-03-26 23:56:59.029429 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-26 23:57:35.154819 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-27 00:04:18.580023 + : pb-IF48U2k5MQ== ip: ak~wm~~jgaic~, Device id: ffe6c42bad1bd600fd3b7c242afe5e21f6efe7cb -2023-03-27 00:04:33.634444 + : pb-IF4SVUYEPQ== ip: dvvcyva~m~~`d, Device id: 21f59c38f4379b67300402055b516558d8a192d9 -2023-03-27 00:05:25.808915 + : pb-IF4JUBM5XA== ip: azj~zo~~ahaj`v, Device id: fa1513af674a8aab021f6fdb20e791aabbe98647 -2023-03-27 00:10:54.084743 + : pb-IF41U2scIg== ip: ak~}hhanialh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 00:12:56.511814 + : pb-IF4lUxcfKQ== ip: dzva~`~~miaid~, Device id: baafe53d4f32d043cb9210fbfc0d5dd65f9798c4 -2023-03-27 00:13:09.551154 + : pb-IF4CU0xfKA== ip: azj~z`~{a~~je, Device id: 8ab272d99f8e784e71f606d2e2e46ffb7daaa47d -2023-03-27 00:14:02.690012 + : pb-IF4TD1cf ip: dvvc}vb|m~ya, Device id: f3af1d941719708fb2d6ed940c33f95bc772f822 -2023-03-27 00:15:30.139820 + : pb-IF4gU0wxBw== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-27 00:15:32.149331 + : pb-IF5VU3lYDA== ip: azj~z`~~``aihx, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-03-27 00:15:51.214879 + : pb-IF4lUBUaUg== ip: ak~wh~yi~~kb, Device id: 5d966d724cdeb4abbbcbe3977ce143220265e899 -2023-03-27 00:22:37.923509 + : pb-IF4lU3cFFw== ip: d|vb{i~~lfai`w, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-27 00:22:56.985855 + : pb-IF4nVXUKVw== ip: an~}ifa`cajb, Device id: be418813b28c347b167b89a270154db493fdafcd -2023-03-27 00:23:00.023466 + : pb-IF5cUBMdCQ== ip: d|vb{i~~lfai`w, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-27 00:24:11.290669 + : pb-IF4nUkteVA== ip: an~}jaamaai`v, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-03-27 00:24:33.389284 + : pb-IF4IV04ZKw== ip: azj~z`~~heaab, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-03-27 00:29:17.474175 + : pb-IF4lUBUaUg== ip: ak~wh~yi~~kb, Device id: 5d966d724cdeb4abbbcbe3977ce143220265e899 -2023-03-27 00:33:40.453433 + : pb-IF41U2scIg== ip: an~~acajdzvayn, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 00:33:47.488446 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-27 00:36:23.091521 + : pb-IF4OPhMg ip: a~o~vo~~agaae, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-03-27 00:36:47.183215 + : pb-IF5cPGsk ip: dvvc}vawk~}lg, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-27 00:38:01.515959 + : pb-IF4jF1NY ip: aakhaidvfv, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 00:39:21.856440 + : pb-IF5dU3UiAw== ip: azo~{a~}jeaicx, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-27 00:39:52.976455 + : pb-IF4jF1NY ip: aakhaidvfv, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 00:40:45.189056 + : pb-IF4TD1cf ip: dvvc}vb|m~ya, Device id: f3af1d941719708fb2d6ed940c33f95bc772f822 -2023-03-27 00:46:15.516922 + : pb-IF4jF1NY ip: azj~z`~{`~~la, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 00:47:19.967498 + : pb-IF4OPhMg started kick vote for pb-IF5dU3UiAw==. -2023-03-27 00:47:49.972724 + : Kick vote End -2023-03-27 00:49:42.213243 + : pb-IF4jF1NY ip: azj~z`~{`~~la, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 00:50:03.282588 + : pb-IF4jF1NY ip: azj~z`~{`~~la, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 00:50:08.302505 + : pb-IF49UnYRLQ== ip: dvvcyvb~i~~ji, Device id: 690c3f7ca525541fd6d368f95dd77e48836a2345 -2023-03-27 00:51:13.572299 + : pb-IF4jF1NY ip: azj~z`~{`~~la, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 00:51:32.815079 + : pb-IF5cPGsk started kick vote for pb-IF4zU2MgJw==. -2023-03-27 00:52:02.816340 + : Kick vote End -2023-03-27 00:56:46.136531 + : pb-IF4SVUYEPQ== ip: dvvc}vawl~y`, Device id: 21f59c38f4379b67300402055b516558d8a192d9 -2023-03-27 00:57:31.276977 + : pb-IF4SVUYEPQ== ip: dvvc}vawl~y`, Device id: 21f59c38f4379b67300402055b516558d8a192d9 -2023-03-27 00:59:45.725047 + : pb-IF4NV3oIFA== ip: azo~|j~~vg}, Device id: 5a97df8582391e7c2ee534d57ad3fcd265824bc2 -2023-03-27 01:01:15.050468 + : pb-IF4FU1daUA== ip: a~h~}jgamiajdv, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-27 01:14:25.142754 + : pb-IF40UlUsVg== ip: azo~{n~}jbakg, Device id: 6ad9e1a23a1e86af066955f69f87824a44ebadda -2023-03-27 01:16:41.721134 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~~ag, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-27 01:17:41.923819 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~~ag, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-27 01:26:16.213867 + : pb-IF4IU2EOLw== ip: ak~z`~~mea`g, Device id: 1ae7db68444a41a3d724e038aaeaf79bcdc59099 -2023-03-27 01:32:05.055414 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 01:34:23.723936 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~~ag, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-27 01:41:30.091536 + : pb-IF4nUxE4Nw== started kick vote for pb-IF4NV3oIFA==. -2023-03-27 01:41:42.967531 + : Kick vote End -2023-03-27 01:42:14.667150 + : pb-IF4NV3oIFA== ip: azo~|j~~vg}, Device id: 5a97df8582391e7c2ee534d57ad3fcd265824bc2 -2023-03-27 01:46:09.525506 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~~ag, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-27 01:53:33.269099 + : pb-IF5RVWNZFw== ip: ayi~~h~~ldaji, Device id: 849ec655c1c6d3acc4d57fb59d17124dc81f22c2 -2023-03-27 02:10:23.153303 + : pb-IF5cPGsk ip: dvvc}vawk~}lg, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-27 02:10:38.198601 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-27 02:12:31.783452 + : pb-IF4UU2guAQ== started kick vote for pb-IF40UncaLg==. -2023-03-27 02:13:01.782978 + : Kick vote End -2023-03-27 02:16:07.807001 + : pb-IF49U08dJg== ip: dvvc}vb~l~}li, Device id: d40c9780c06ba7217568c4446af8a4e90a3d6fba -2023-03-27 02:16:23.871129 + : pb-IF5cPGsk ip: dvvc}vawk~}lg, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-27 02:38:28.842542 + : pb-IF4NV3oIFA== ip: azo~|j~~vg}, Device id: 5a97df8582391e7c2ee534d57ad3fcd265824bc2 -2023-03-27 02:39:57.161191 + : pb-IF4NV3oIFA== ip: azo~|j~~vg}, Device id: 5a97df8582391e7c2ee534d57ad3fcd265824bc2 -2023-03-27 02:42:03.875860 + : pb-IF4NV3oIFA== ip: azo~|j~~vg}, Device id: 5a97df8582391e7c2ee534d57ad3fcd265824bc2 -2023-03-27 02:44:34.383813 + : pb-IF4NV3oIFA== ip: azo~|j~~vg}, Device id: 5a97df8582391e7c2ee534d57ad3fcd265824bc2 -2023-03-27 02:45:41.618532 + : pb-IF4NV3oIFA== ip: azo~|j~~vg}, Device id: 5a97df8582391e7c2ee534d57ad3fcd265824bc2 -2023-03-27 02:47:00.928989 + : pb-IF4NV3oIFA== ip: azo~|j~~vg}, Device id: 5a97df8582391e7c2ee534d57ad3fcd265824bc2 -2023-03-27 02:52:50.163750 + : pb-IF4NV3oIFA== ip: azo~|j~~vg}, Device id: 5a97df8582391e7c2ee534d57ad3fcd265824bc2 -2023-03-27 02:53:39.333456 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-27 02:53:40.336827 + : pb-IF4NV3oIFA== ip: azo~|j~~vg}, Device id: 5a97df8582391e7c2ee534d57ad3fcd265824bc2 -2023-03-27 03:14:50.351099 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-27 03:36:07.087621 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-27 04:38:39.875825 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-27 04:59:44.478647 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-27 05:20:51.989724 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-27 05:27:57.591329 + : pb-IF4NV3oIFA== ip: azo~|j~~vg}, Device id: 5a97df8582391e7c2ee534d57ad3fcd265824bc2 -2023-03-27 05:31:24.346593 + : pb-IF4jVWlYCw== ip: azj~zo~}kaaj`y, Device id: fcafcc043f19b8b161a3258f2a4897cabf6aaf41 -2023-03-27 05:32:02.467265 + : pb-IF4NV3oIFA== ip: azo~|j~~vg}, Device id: 5a97df8582391e7c2ee534d57ad3fcd265824bc2 -2023-03-27 05:39:12.149919 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-27 05:39:33.223051 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-27 05:40:26.390562 + : pb-IF4jVWlYCw== ip: azj~zo~}kaaj`y, Device id: fcafcc043f19b8b161a3258f2a4897cabf6aaf41 -2023-03-27 05:40:40.455894 + : pb-IF4gU0wxBw== ip: an~~acajdzvayn, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-27 06:23:51.778550 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-27 06:44:47.275043 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-27 07:06:34.095972 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-27 07:16:47.406651 + : pb-IF4UU2EqPA== ip: an~}i`aih|va}i, Device id: c8dcd7799bbab36ed284714071c77ac9b440d5eb -2023-03-27 07:27:50.786532 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-27 07:32:49.849657 + : pb-IF5UUxgjIA== ip: evviwvb|j~}n, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-27 07:48:52.258921 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-27 08:09:09.437990 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-27 08:10:21.250227 + : pb-IF4wUBc6Eg==|| kicked > new account -2023-03-27 08:34:18.851971 + : pb-IF49U0QJDw== ip: a}j~~ogaieyva{j, Device id: 24495fd5ec013cdb163a3a3931b477b63894ef12 -2023-03-27 08:47:46.021040 + : pb-IF4WU0wvVA== ip: dvvc}vawn~w`, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-27 08:49:54.753083 + : pb-IF4DU1I4CQ== ip: azj~z`~}jeao`, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-27 08:58:13.427924 + : pb-IF4WU0wvVA== started kick vote for pb-IF40UhVdVA==. -2023-03-27 08:58:17.804588 + : pb-IF4eU0s9Pw== ip: a~a~vl~yl~vo, Device id: 79ff602d98582d9885d769eec06b4ebd8aab0aad -2023-03-27 08:58:43.432411 + : Kick vote End -2023-03-27 09:04:00.916820 + : pb-IF4WU0wvVA== started kick vote for pb-IF40UhVdVA==. -2023-03-27 09:04:30.918373 + : Kick vote End -2023-03-27 09:08:36.087505 + : pb-IF4WU0wvVA== started kick vote for pb-IF40UhVdVA==. -2023-03-27 09:09:06.094616 + : Kick vote End -2023-03-27 09:12:40.995304 + : pb-IF4yVFgOVA== ip: ak~~lhajaajaw, Device id: d854623f8a8ec9715c4cf1e44f2a453d5344d791 -2023-03-27 09:15:54.698063 + : pb-IF5cV044Jw== ip: a~o~v`~{vazm, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-03-27 09:17:46.734672 + : pb-IF5WUBgNJg==|| kicked > new account -2023-03-27 09:21:52.363040 + : pb-IF5VU3lYDA== ip: azj~z`~~``aicy, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-03-27 09:25:35.384010 + : pb-IF4oUnVaNg== ip: dvvd|vb{`~x, Device id: ea9e94a58d7b30a6aa34f61e1f2125a3e555fcda -2023-03-27 09:31:18.636574 + : pb-IF4oUnVaNg== ip: dvvd|vb{`~x, Device id: ea9e94a58d7b30a6aa34f61e1f2125a3e555fcda -2023-03-27 09:32:52.203154 + : pb-IF48UBUzCg== ip: azj~zo~}khaigx, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-03-27 09:32:56.217347 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-27 09:36:38.286981 + : pb-IF4WUxc9FA== ip: ak~}iaaibaify, Device id: 80557e241418bd0095d89ce02e67f739a4369766 -2023-03-27 09:42:05.107312 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 09:44:49.321675 + : pb-IF4GUBctCg==|| kicked > new account -2023-03-27 09:45:43.888289 + : pb-IF4qUxBfAw== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 09:45:50.920548 + : pb-IF4WUxc9FA== ip: ak~}iaaibaify, Device id: 80557e241418bd0095d89ce02e67f739a4369766 -2023-03-27 09:45:52.934055 + : pb-IF42UBY4XA== ip: an~}j`a`fan`, Device id: b5a077397cda4c52e0ce3401a35f58f0150bd61f -2023-03-27 09:46:14.032560 + : pb-IF4qUxBfAw== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 09:48:05.878939 + : pb-IF41UBQIDA== started kick vote for pb-IF40UBAIPw==. -2023-03-27 09:48:35.880717 + : Kick vote End -2023-03-27 09:49:17.666523 + : pb-IF4qUxBfAw== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 09:54:45.830049 + : pb-IF4qUxBfAw== started kick vote for pb-IF41UBQIDA==. -2023-03-27 09:55:15.834739 + : Kick vote End -2023-03-27 09:55:55.036634 + : pb-IF4oUnVaNg== ip: dvvd|vb{`~x, Device id: ea9e94a58d7b30a6aa34f61e1f2125a3e555fcda -2023-03-27 09:56:42.221407 + : pb-IF4tUlkRDw== ip: azo~|k~~jcan, Device id: 4b90e79813fdb0259fc1d852d4f7ecff869da4b8 -2023-03-27 09:58:44.848124 + : pb-IF4tUBQZUw== ip: dvva{vayn~~og, Device id: a01801d7e4d7e7399ae4dc23ba1eafeee5533610 -2023-03-27 09:59:04.923373 + : pb-IF4IVUYPKA== ip: an~}icaidaidw, Device id: e8d33b09733da5e9ef097f53191dbbcf1b3f34b4 -2023-03-27 09:59:44.078075 + : pb-IF40U3MyVQ== ip: b}k~}kcaniaog, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-27 09:59:46.085001 + : pb-IF4qUxBfAw== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 10:00:27.216364 + : pb-IF4IVUYPKA== started kick vote for pb-IF40U3MyVQ==. -2023-03-27 10:00:35.120930 + : pb-IF40UBAIPw== | kicked for chat spam -2023-03-27 10:00:57.222338 + : Kick vote End -2023-03-27 10:01:16.564176 + : pb-IF40U3MyVQ== ip: b}k~}kcaniaog, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-27 10:02:15.776035 + : pb-IF4AVVAIUg== ip: ak~}keah~}n, Device id: d6c860d19037c73e01dd843ef300a37b6c7357bd -2023-03-27 10:04:35.777989 + : pb-IF4IVUYPKA== started kick vote for pb-IF4qUxBfAw==. -2023-03-27 10:04:45.231265 + : Kick vote End -2023-03-27 10:05:19.383666 + : pb-IF4qUxBfAw== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 10:09:25.424440 + : pb-IF4IVUYPKA== started kick vote for pb-IF4rVxMNCg==. -2023-03-27 10:09:55.426333 + : Kick vote End -2023-03-27 10:09:58.412589 + : pb-IF4yU3EYVQ== ip: a~a~vl~va~~aa, Device id: 4f6e7108f56a96fa41b721a4e9abd43a5049c44e -2023-03-27 10:10:25.524920 + : pb-IF4vVUkeXA== ip: a}j~~naaohaiiz, Device id: 0095677e00d642566002c2900f234ad7491d7a78 -2023-03-27 10:10:48.586537 + : pb-IF4IVUYPKA== ip: an~}icaidaidw, Device id: e8d33b09733da5e9ef097f53191dbbcf1b3f34b4 -2023-03-27 10:12:37.946945 + : pb-IF40VRIbJg== ip: an~~afa`fajd, Device id: 95bba6725635b1bf3a3fbb6d7e87e2ea66bf19f6 -2023-03-27 10:14:08.513985 + : pb-IF4iUBQeEQ== ip: b}k~}jhajavayn, Device id: 3c4441d7a7b6b33806fff031db1d33a501ca2194 -2023-03-27 10:19:36.237465 + : pb-IF4tUBQZUw== ip: dvva{vayn~~og, Device id: a01801d7e4d7e7399ae4dc23ba1eafeee5533610 -2023-03-27 10:20:41.490337 + : pb-IF4WU0YoIg== ip: a|n~}jhaig{vb{l, Device id: 231f6d231dd8a3c7bf940927702ba659382ea16e -2023-03-27 10:32:06.730360 + : pb-IF4DUxcnDg== ip: azj~z`~yo~vo, Device id: ee095f7b8eb88ae8c8d26e73d824b8df78563d56 -2023-03-27 10:32:10.739810 + : pb-IF4DUxcnDg== ip: azj~z`~yo~vo, Device id: ee095f7b8eb88ae8c8d26e73d824b8df78563d56 -2023-03-27 10:42:58.160040 + : pb-IF4mVGZaCw== ip: dvvc}vayn~}ha, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-03-27 10:45:41.782476 + : pb-IF5cV044Jw== ip: a~o~v`~{vh|, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-03-27 10:46:18.924314 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-27 10:46:24.945797 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-27 10:51:13.948079 + : pb-IF40VRIbJg== ip: an~~afa`fajd, Device id: 95bba6725635b1bf3a3fbb6d7e87e2ea66bf19f6 -2023-03-27 10:53:54.577056 + : pb-IF4IU28qPA== ip: azo~zi~~l`anb, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-03-27 10:55:14.854849 + : pb-IF5RU3UzJA== ip: an~~adaib~va}m, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-03-27 10:55:53.008773 + : pb-IF5QU3AaLg== ip: ak~}m`aidzvawi, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-03-27 10:56:07.039149 + : pb-IF5QU3AaLg== ip: ak~}m`aidzvawi, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-03-27 11:00:51.065548 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-27 11:01:42.250684 + : pb-IF5cUhNfKw== ip: azo~zi~~nbai`z, Device id: f7c2220347f7ec7af91282f329ffdb9250917024 -2023-03-27 11:04:47.898384 + : pb-IF5WUxAJHw== ip: a~a~vk~}h`ajb, Device id: 15cc067ed39483489813b330e81a19ce630c3153 -2023-03-27 11:05:03.959629 + : pb-IF4mUlYRJA== ip: bxvf}vhzvba, Device id: 481b4a3c9b826427dd3cf6cc9865e989c4ce4f2e -2023-03-27 11:06:28.224082 + : pb-JiNJARBeXUBDXl5BGU5RUl1DEENbT1JD ip: a~o~v`~zl~}a, Device id: 5ea21c047b01fdb9ce1e86a71c0180fc1aacad5c -2023-03-27 11:06:36.253125 + : pb-JiNJARBeXUBDXl5BGU5RUl1DEENbT1JD ip: a~o~v`~zl~}a, Device id: 5ea21c047b01fdb9ce1e86a71c0180fc1aacad5c -2023-03-27 11:07:41.490193 + : pb-IF41U0sYPA== ip: an~~aeaieajb|, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-03-27 11:10:08.014754 + : pb-IF4mVGZaCw== ip: dvvc}vayn~}ha, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-03-27 11:13:04.837374 + : pb-IF41U0sYPA== started kick vote for pb-IF40U3QxIw==. -2023-03-27 11:13:34.839620 + : Kick vote End -2023-03-27 11:15:20.207807 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-27 11:16:49.581705 + : pb-IF4DU1I4CQ== ip: azj~z`~}jcaj`{, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-27 11:17:23.665748 + : pb-IF4-U1kpEQ== ip: dvvcxvavj~}lh, Device id: 928fbe92e5d31e258136337f212187c5f24471f1 -2023-03-27 11:18:09.830189 + : pb-IF4FUEY4 ip: bk~~adaaiajc{, Device id: 452bcd37350866efb1deb4f785c1364a1abde5d2 -2023-03-27 11:18:47.977412 + : pb-IF4FUEY4 ip: bk~~adaaiajc{, Device id: 452bcd37350866efb1deb4f785c1364a1abde5d2 -2023-03-27 11:19:23.069327 + : pb-IF5cU0QCHQ== ip: azo~{l~}ieaibv, Device id: cc9e0373f1a07b2409401d899d682a03cfd686f4 -2023-03-27 11:19:37.119850 + : pb-IF40U3QxIw== ip: dvvc{vb{a~~lg, Device id: e7e4bef78352a9f8fb24842d86658306f3e4edf8 -2023-03-27 11:19:45.135455 + : pb-IF4NVFMFKA== ip: an~~agajcak, Device id: aabd9efbef46b8de7aaf68b54f46fdaf95647575 -2023-03-27 11:20:39.586070 + : pb-IF4FUEY4 started kick vote for pb-IF40AHoO. -2023-03-27 11:20:46.359967 + : pb-IF40U3QxIw== ip: dvvc{vb{a~~lg, Device id: e7e4bef78352a9f8fb24842d86658306f3e4edf8 -2023-03-27 11:21:09.589247 + : Kick vote End -2023-03-27 11:21:37.545323 + : pb-IF4mVGZaCw== ip: dvvc}vayn~}ha, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-03-27 11:25:05.287128 + : pb-IF4jF1NY ip: azj~z`~{o~~jh, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 11:27:59.941204 + : pb-IF4gUloxKA== ip: al~}`~}iiaib}, Device id: c07ed77b24acb9388a1c0e09f55c4e33cdf9ae75 -2023-03-27 11:28:43.429111 + : pb-IF4zUBYTIQ==|| kicked > new account -2023-03-27 11:29:22.251180 + : pb-IF4WU0wvVA== ip: dvvc}vawn~w`, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-27 11:32:24.972123 + : pb-IF4FUEY4 ip: bk~~adaaiajc{, Device id: 452bcd37350866efb1deb4f785c1364a1abde5d2 -2023-03-27 11:32:44.036098 + : pb-IF41U0sYPA== ip: an~~aeaieajb|, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-03-27 11:33:54.395546 + : pb-IF4TU0dZMg== ip: dvvc{va~n~~`c, Device id: 66451437ae8308f5042de0bdee107934773a3cd4 -2023-03-27 11:36:33.927857 + : pb-IF4DU0IEJg== ip: b}k~~ohajavgz, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-27 11:37:05.062185 + : pb-IF4FU2QiKQ== ip: an~}i`ajcyvb|l, Device id: 9aeaea5032ef8172cbd1a983cc17ea18a73e3466 -2023-03-27 11:37:38.193609 + : pb-IF4FU2QiKQ== ip: an~}i`ajcyvb|l, Device id: 9aeaea5032ef8172cbd1a983cc17ea18a73e3466 -2023-03-27 11:38:37.418390 + : pb-IF4eU0s9Pw== ip: a~a~vl~yl~vo, Device id: 79ff602d98582d9885d769eec06b4ebd8aab0aad -2023-03-27 11:39:20.571176 + : pb-IF4vV0g8Mw== ip: dvvc{vdyvb}h, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-03-27 11:40:07.802737 + : pb-IF4WU0wvVA== started kick vote for pb-IF4DU0IEJg==. -2023-03-27 11:40:37.801754 + : Kick vote End -2023-03-27 11:41:28.095622 + : pb-IF4WU0wvVA== ip: dvvc}vawn~w`, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-27 11:41:43.620474 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4DU0IEJg==. -2023-03-27 11:42:13.629228 + : Kick vote End -2023-03-27 11:43:14.218590 + : pb-IF4DU0IEJg== started kick vote for pb-IF4vV0g8Mw==. -2023-03-27 11:43:44.222188 + : Kick vote End -2023-03-27 11:43:49.641974 + : pb-IF40U3MyVQ== ip: b}k~}kcaniaog, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-27 11:44:42.831536 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 11:45:17.957793 + : pb-IF40VRIbJg== ip: an~~afa`fajd, Device id: 95bba6725635b1bf3a3fbb6d7e87e2ea66bf19f6 -2023-03-27 11:45:57.057448 + : pb-IF4WU0wvVA== started kick vote for pb-IF4vV0g8Mw==. -2023-03-27 11:46:17.175299 + : pb-IF40AHoO ip: a}j~~ofaiivvbzm, Device id: 235579fe71c8a8661e3503b09daefaf675cc4853 -2023-03-27 11:46:27.064299 + : Kick vote End -2023-03-27 11:46:31.228970 + : pb-IF4DU0IEJg== ip: b}k~~ohajavgz, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-27 11:46:34.240175 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 11:46:42.265590 + : pb-IF4DU0IEJg== ip: b}k~~ohajavgz, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-27 11:48:04.280365 + : pb-IF4vV0g8Mw== | kicked for chat spam -2023-03-27 11:48:17.267243 + : pb-IF4DU0IEJg== started kick vote for pb-IF40AHoO. -2023-03-27 11:48:47.269517 + : Kick vote End -2023-03-27 11:50:34.115244 + : pb-IF5TVXomUQ== ip: ak~~miaj`~vaw, Device id: 287f01f4c03552aac765ba1551c15b8e25140fec -2023-03-27 11:50:39.137540 + : pb-IF40U3QxIw== ip: dvvc{vb{a~~lg, Device id: e7e4bef78352a9f8fb24842d86658306f3e4edf8 -2023-03-27 11:50:42.149052 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 11:51:22.314569 + : pb-IF4tCRgv ip: a}j~~naaogajcz, Device id: 8c50b5e94f4fedbbbc30c1fd2d39bf3275ea8fc5 -2023-03-27 11:51:34.467635 + : pb-IF4jF1NY started kick vote for pb-IF4DU0IEJg==. -2023-03-27 11:52:04.469485 + : Kick vote End -2023-03-27 11:52:20.492402 + : pb-IF4OEnof ip: dvvcyva|n~yi, Device id: f074ba1e4eb76e91fcc0f67ad95f35cea2be8b27 -2023-03-27 11:52:32.551145 + : pb-IF40U3QxIw== ip: dvvc{vb{a~~lg, Device id: e7e4bef78352a9f8fb24842d86658306f3e4edf8 -2023-03-27 11:54:00.886104 + : pb-IF41U0sYPA== started kick vote for pb-IF4DU0IEJg==. -2023-03-27 11:54:30.890757 + : Kick vote End -2023-03-27 11:56:02.766242 + : pb-IF4jF1NY started kick vote for pb-IF4DU0IEJg==. -2023-03-27 11:56:32.773116 + : Kick vote End -2023-03-27 11:57:37.630228 + : pb-IF4DU1I4CQ== ip: azj~z`~}jcaie{, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-27 11:59:05.954468 + : pb-IF4-JUgB ip: an~}hiaiizva|h, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-27 11:59:58.133084 + : pb-IF4gU0wxBw== ip: an~~acajdzvayn, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-27 12:00:06.829082 + : pb-IF4DU0IEJg== started kick vote for pb-IF40AHoO. -2023-03-27 12:00:07.295102 + : Kick vote End -2023-03-27 12:01:02.347546 + : pb-IF4VU3laVA== ip: ak~~`dajcwvc, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-27 12:01:53.524601 + : pb-IF4tCRgv ip: a}j~~naaogajcz, Device id: 8c50b5e94f4fedbbbc30c1fd2d39bf3275ea8fc5 -2023-03-27 12:02:01.911634 + : pb-IF4-JUgB started kick vote for pb-IF40U3QxIw==. -2023-03-27 12:02:31.911957 + : Kick vote End -2023-03-27 12:02:36.693083 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~~ma, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-27 12:05:38.211345 + : pb-IF4-JUgB started kick vote for pb-IF4tCRgv. -2023-03-27 12:05:56.392326 + : pb-IF42UBY4XA== ip: an~}j`a`fan`, Device id: b5a077397cda4c52e0ce3401a35f58f0150bd61f -2023-03-27 12:06:08.213120 + : Kick vote End -2023-03-27 12:07:15.352261 + : pb-IF4tCRgv started kick vote for pb-IF4DU0IEJg==. -2023-03-27 12:07:33.750163 + : pb-IF4NV3oIFA== ip: dvvc{va{o~{j, Device id: 5a97df8582391e7c2ee534d57ad3fcd265824bc2 -2023-03-27 12:07:35.752618 + : pb-IF5TVFI6Ng== ip: azo~{h~wo~~kd, Device id: 48395f04ef885f654521cbb49b504d682578e96c -2023-03-27 12:07:45.353080 + : Kick vote End -2023-03-27 12:08:39.028513 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-27 12:08:46.091750 + : pb-IF4DU0IEJg== started kick vote for pb-IF4nUxE4Nw==. -2023-03-27 12:08:57.096740 + : pb-IF4-JUgB ip: an~}hiaiizva|h, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-27 12:09:16.099176 + : Kick vote End -2023-03-27 12:10:18.441845 + : pb-IF42UBY4XA== ip: an~}j`a`fan`, Device id: b5a077397cda4c52e0ce3401a35f58f0150bd61f -2023-03-27 12:10:26.475690 + : pb-IF4DU0IEJg== ip: b}k~~ohajavgz, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-27 12:10:52.579231 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 12:13:33.166247 + : pb-IF4gU0wxBw== ip: an~~acajdzvayn, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-27 12:13:38.961282 + : pb-IF4DU0IEJg== started kick vote for pb-IF4NV3oIFA==. -2023-03-27 12:14:08.961090 + : Kick vote End -2023-03-27 12:14:19.308047 + : pb-IF4jF1NY ip: azj~z`~{j~~id, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 12:15:06.487356 + : pb-IF5RU3UzJA== ip: aajcamfa`, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-03-27 12:15:25.566020 + : pb-IF4gU0wxBw== ip: an~~acajdzvayn, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-27 12:15:35.597500 + : pb-IF4AV1QqEQ== ip: an~}ica`gaih{, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-03-27 12:15:44.636978 + : pb-IF4gU0wxBw== ip: ak~}hhania`b, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-27 12:16:36.814782 + : pb-IF49UnYRLQ== ip: dvvcyvba~~ke, Device id: 690c3f7ca525541fd6d368f95dd77e48836a2345 -2023-03-27 12:18:23.312080 + : pb-IF4DU0IEJg== ip: b}k~~ohajavgz, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-27 12:18:49.391013 + : pb-IF4vV0g8Mw== ip: dvvc{vdyvb}h, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-03-27 12:19:24.275687 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4nUxE4Nw==. -2023-03-27 12:19:54.279104 + : Kick vote End -2023-03-27 12:20:09.662490 + : pb-IF4LU20cEw== ip: a~o~va~}lgajcz, Device id: 4dc931cefdd3131eaa4546cd0cefbffb299ae055 -2023-03-27 12:20:11.671038 + : pb-IF4FU2QiKQ== ip: an~}i`ajcyvb|l, Device id: 9aeaea5032ef8172cbd1a983cc17ea18a73e3466 -2023-03-27 12:20:44.824392 + : pb-IF4FU2QiKQ== ip: an~}i`ajcyvb|l, Device id: 9aeaea5032ef8172cbd1a983cc17ea18a73e3466 -2023-03-27 12:23:00.442970 + : pb-IF4AV1QqEQ== ip: an~}ica`gaih{, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-03-27 12:23:01.449794 + : pb-IF4vV0g8Mw== ip: dvvc{vdyvb}h, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-03-27 12:23:06.463882 + : pb-IF4eU0s9Pw== ip: a~a~vl~yl~vo, Device id: 79ff602d98582d9885d769eec06b4ebd8aab0aad -2023-03-27 12:23:13.493689 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 12:23:51.610217 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~~ma, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-27 12:28:37.580284 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4DU0IEJg==. -2023-03-27 12:29:07.586417 + : Kick vote End -2023-03-27 12:29:12.696301 + : pb-IF4cU1gfEw== ip: azj~z`~|m~}le, Device id: 71cd19fd6e6a84c70ba73038e3c243b26bb31fd8 -2023-03-27 12:30:29.991257 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-27 12:33:21.623260 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-27 12:34:58.965434 + : pb-IF4gU2wxIg== ip: azo~|k~xo~zo, Device id: d5fcef28207c5a26ea8a9a0000ab24651e20aa81 -2023-03-27 12:35:01.973812 + : pb-IF5cU2haHA== ip: dvvcxvb{`~~md, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-03-27 12:35:26.089913 + : pb-IF4VU3laVA== ip: ak~~`dajcwvc, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-27 12:37:46.502093 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4DU0IEJg==. -2023-03-27 12:38:16.507428 + : Kick vote End -2023-03-27 12:38:52.791325 + : pb-IF4VU3laVA== ip: ak~~`dajcwvc, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-27 12:40:36.023114 + : pb-IF4DU0IEJg== started kick vote for pb-IF5cU2haHA==. -2023-03-27 12:41:06.024318 + : Kick vote End -2023-03-27 12:44:37.105399 + : pb-IF4iVxJYAA== started kick vote for pb-IF4DU0IEJg==. -2023-03-27 12:44:45.150215 + : pb-IF5VU3lYDA== ip: azj~z`~~`calg, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-03-27 12:45:07.107075 + : Kick vote End -2023-03-27 12:45:44.472578 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~~ma, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-27 12:46:25.143010 + : pb-IF4DU0IEJg== started kick vote for pb-IF4iVxJYAA==. -2023-03-27 12:46:55.150876 + : Kick vote End -2023-03-27 12:47:55.710133 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4iVxJYAA==. -2023-03-27 12:48:17.010355 + : pb-JiNJARBcV0NCXV5CEUdSVFNFF0JeQFFA ip: ak~~neajiaiay, Device id: 7b996a89a2e6145b00605af10e097c1e9d3ea3ed -2023-03-27 12:48:25.711975 + : Kick vote End -2023-03-27 12:49:39.254477 + : pb-IF4iVxJYAA== started kick vote for pb-IF4DU0IEJg==. -2023-03-27 12:50:09.258532 + : Kick vote End -2023-03-27 12:51:03.601981 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~~ma, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-27 12:52:40.564105 + : pb-IF4iVxJYAA== | kicked for chat spam -2023-03-27 12:56:45.630444 + : pb-JiNJARBcV0NCXV5CEUdSVFNFF0JeQFFA started kick vote for pb-IF41U2scIg==. -2023-03-27 12:57:15.629471 + : Kick vote End -2023-03-27 12:57:59.218344 + : pb-IF5XUBYyAg== ip: b}k~~`iaj`zvb~, Device id: a1808126b87053aa46396adb9de3e8e5d03a0556 -2023-03-27 12:58:11.264770 + : pb-IF5UUxgjIA== ip: dzvb{a~wn~~`a, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-27 13:01:33.407799 + : pb-IF4nUBcpNA==|| kicked > new account -2023-03-27 13:01:37.025181 + : pb-IF4DU1I4CQ== ip: b}k~~`bajdzvaxj, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-27 13:04:55.652155 + : pb-IF5RU3UzJA== ip: aajcamfa`, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-03-27 13:06:16.197166 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4FUBUPHA==. -2023-03-27 13:06:46.204349 + : Kick vote End -2023-03-27 13:07:30.465455 + : pb-IF4yU3RZEw== ip: ak~{j~~aga`f, Device id: bc5e48c8043538349b7f6853bb5b9e2b63d2fefd -2023-03-27 13:08:28.680637 + : pb-IF4sVxFaIQ== ip: dxvc~vawj~}lc, Device id: ac38eef52493d5e7c8b37b2b5175b3fa4ed83681 -2023-03-27 13:08:44.741103 + : pb-IF4WU0wvVA== ip: dvvc}vb~l~}k`, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-27 13:12:11.672038 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4WU0wvVA==. -2023-03-27 13:12:41.675559 + : Kick vote End -2023-03-27 13:12:43.554254 + : pb-IF4NUxFfEg== ip: an~}hgajaxva`, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-03-27 13:12:45.563040 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 13:13:11.646161 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 13:16:51.579379 + : pb-IF4jF1NY ip: aakhaidvfv, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 13:17:00.197457 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4WU0wvVA==. -2023-03-27 13:17:17.691660 + : pb-IF40U3MyVQ== ip: b}k~}kcaniaog, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-27 13:17:30.202372 + : Kick vote End -2023-03-27 13:17:38.762891 + : pb-IF4jF1NY ip: azj~z`~}`~~oc, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 13:19:31.296328 + : pb-IF4WU0wvVA== started kick vote for pb-IF4AV1QqEQ==. -2023-03-27 13:20:01.303151 + : Kick vote End -2023-03-27 13:20:21.525980 + : pb-IF4NU0ojAA== ip: azj~zo~~kiaib~, Device id: 3d647e7dac07fd7bb037d38317d7799c7a6d9b64 -2023-03-27 13:23:50.449703 + : pb-IF5UUkgAEQ== ip: a~o~vo~}liaja|, Device id: 06f5c112ac21c6e2695c043b42a095d986bd273c -2023-03-27 13:23:51.452904 + : pb-IF41U2scIg== ip: an~~acajdzvaz`, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 13:24:30.613864 + : pb-IF5UUkgAEQ== ip: a~o~vo~}liaja|, Device id: 06f5c112ac21c6e2695c043b42a095d986bd273c -2023-03-27 13:25:44.016961 + : pb-IF5cV044Jw== ip: ak~}o~vva~h, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-03-27 13:27:53.593298 + : pb-JiNJARFdV0tEVF9FGERSUFVKF0RdRVJB ip: a~o~va~}maaih|, Device id: 3c67d37cb3abcaab76472f82879fac3c33ad6000 -2023-03-27 13:28:38.316850 + : pb-IF4AV1QqEQ== started kick vote for pb-IF40U3MyVQ==. -2023-03-27 13:29:08.323987 + : Kick vote End -2023-03-27 13:29:09.921642 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~~aa, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-03-27 13:29:22.264685 + : pb-IF4zUBdYUw==|| kicked > new account -2023-03-27 13:29:59.093205 + : pb-IF4DU1I4CQ== ip: b}k~~`bajdzvaxj, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-27 13:30:02.105650 + : pb-IF48Xmgz ip: aakha`iaj`v, Device id: 392af6ab26625d491b89764dd284820caf2b470a -2023-03-27 13:31:26.403199 + : pb-IF5cV044Jw== ip: ak~}o~vva~h, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-03-27 13:33:20.830809 + : pb-JiNJARFdV0tEVF9FGERSUFVKF0RdRVJB ip: a~o~va~}maaih|, Device id: 3c67d37cb3abcaab76472f82879fac3c33ad6000 -2023-03-27 13:35:39.332969 + : pb-IF5cV044Jw== ip: ak~}o~vva~h, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-03-27 13:38:06.255516 + : pb-IF4sUBZeKQ==|| kicked > new account -2023-03-27 13:39:00.433036 + : pb-IF4cUBYfCg==|| kicked > new account -2023-03-27 13:43:11.689485 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-27 13:46:36.502901 + : pb-IF4-UxI7Mg== ip: d|vbzh~~mhaja, Device id: c9b75a67d7d77078ad188d740656d5436ebb454c -2023-03-27 13:47:18.671494 + : pb-IF4-UxI7Mg== ip: d|vbzh~~mhaja, Device id: c9b75a67d7d77078ad188d740656d5436ebb454c -2023-03-27 13:47:28.712665 + : pb-IF49UnYRLQ== ip: dvvcyvba~~ke, Device id: 690c3f7ca525541fd6d368f95dd77e48836a2345 -2023-03-27 13:47:30.715135 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-27 13:47:48.782437 + : pb-IF4DV2ItCQ== ip: ak~~n`aii{vaz, Device id: 5bba8fcd2bdbd1349061cdcfb59066eec13d9afc -2023-03-27 13:48:21.901004 + : pb-IF5RU3UzJA== ip: aajcamfa`, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-03-27 13:50:28.131301 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF49UnYRLQ==. -2023-03-27 13:50:41.666829 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`{vaz`, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-27 13:50:58.135082 + : Kick vote End -2023-03-27 13:51:27.828306 + : pb-IF5UUxgjIA== ip: azj~z`~xj~}kb, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-27 13:54:01.078986 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF49UnYRLQ==. -2023-03-27 13:54:18.145863 + : pb-IF49UnYRLQ== kicked by kickvotes. -2023-03-27 13:55:54.947735 + : pb-IF4sVRgsNQ== ip: evvazk~~n~~j, Device id: 4ab1c6130f4f06661acf82b51be1d90a50dbd7d8 -2023-03-27 13:58:12.477203 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-27 13:58:23.528338 + : pb-IF4DU3MiAQ== ip: azo~{a~~kbajb, Device id: fcd2664e72bb4529e96cd44087b9cfa52dc59a94 -2023-03-27 14:01:13.161977 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-27 14:02:03.327885 + : pb-IF41U2scIg== ip: an~~acajdzvaz`, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 14:02:17.387135 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-27 14:02:35.463969 + : pb-IF4vV0g8Mw== ip: dvvc{vdyvb}h, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-03-27 14:02:54.120592 + : pb-IF5SUBgBLw==|| kicked > new account -2023-03-27 14:03:12.046695 + : pb-IF4AUBdfCw==|| kicked > new account -2023-03-27 14:04:54.105332 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-27 14:06:04.342064 + : pb-IF4OPhMg ip: a~o~vo~~agaae, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-03-27 14:10:07.328096 + : pb-IF4OPhMg started kick vote for pb-IF4uU0cEPA==. -2023-03-27 14:10:37.334048 + : Kick vote End -2023-03-27 14:11:11.886756 + : pb-IF5RU3UzJA== ip: aajcamfa`, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-03-27 14:12:20.464443 + : pb-IF4eUBciAQ==|| kicked > new account -2023-03-27 14:14:04.027135 + : pb-IF4AUBYcPQ==|| kicked > new account -2023-03-27 14:14:12.110651 + : pb-IF4vV0g8Mw== | kicked for chat spam -2023-03-27 14:14:12.113198 + : pb-IF4vV0g8Mw== auto banned for spamming -2023-03-27 14:14:21.796684 + : pb-IF4lU3cFFw== ip: an~}heajbxvayl, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-27 14:15:43.228860 + : pb-IF5cUBUTDA== ip: ak~}ldaid|va~, Device id: 4aeb855e84ca3f6b51ef3eaec43164c9dbb4ca18 -2023-03-27 14:16:57.505802 + : pb-IF41U0sYPA== ip: an~~aeaiaajb|, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-03-27 14:21:03.386182 + : pb-IF5TVXkBLg== ip: a~h~}jgaibajaz, Device id: bb41942754a488df7a69cd275e8c5ed00ae1c2b8 -2023-03-27 14:21:20.432598 + : pb-IF5RU3UzJA== ip: aajcamfa`, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-03-27 14:23:02.782310 + : pb-IF4IHmcZ ip: ak~x`~~n~}hg, Device id: 1cc7121532d5db65d5a8b12cf5c56c961f428eb3 -2023-03-27 14:23:38.118564 + : pb-IF4gU0wxBw== ip: ak~}hhania`b, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-27 14:24:00.251520 + : pb-IF4-Um4_Lw==|| kicked , for using spoofed id NoNameD2439961 -2023-03-27 14:27:45.602186 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 14:28:58.877347 + : pb-IF5UU3ACJA== ip: an~}j`aic}vawl, Device id: 9262859eae3bd2a469c19a58ebecfbbeb3a8d16f -2023-03-27 14:29:46.048623 + : pb-IF4wU0tYFg== ip: b}k~~ohaja|vix, Device id: 43e2f807d9507bd99e67d976913e76e87295c3f7 -2023-03-27 14:29:48.058921 + : pb-IF4vV0g8Mw== | kicked > reason:Banned account -2023-03-27 14:30:39.535027 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 14:33:07.003109 + : pb-IF4DU1I4CQ== ip: b}k~~`bajdzva{l, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-27 14:34:21.258122 + : pb-IF4hBFgH ip: ak~}m~~niaihz, Device id: a6236484c5b3964fcd4361ad664b0232a039b16d -2023-03-27 14:35:03.405959 + : pb-IF4IU28qPA== ip: azo~zi~~mgaja{, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-03-27 14:35:05.408642 + : pb-IF4hBFgH ip: ak~}m~~niaihz, Device id: a6236484c5b3964fcd4361ad664b0232a039b16d -2023-03-27 14:35:09.415521 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 14:35:13.431324 + : pb-IF4sVRgsNQ== ip: evvazk~~n~~i, Device id: 4ab1c6130f4f06661acf82b51be1d90a50dbd7d8 -2023-03-27 14:36:03.963639 + : pb-IF4OPhMg started kick vote for pb-IF4IU28qPA==. -2023-03-27 14:36:33.965839 + : Kick vote End -2023-03-27 14:38:40.353144 + : pb-IF4jVWlYCw== ip: azj~zo~}jgai`v, Device id: fcafcc043f19b8b161a3258f2a4897cabf6aaf41 -2023-03-27 14:41:48.181862 + : pb-IF5QV2kTAw== ip: a}j~~oba`aajay, Device id: f4800b0bf8497601863abd9e37acb5f089c9034d -2023-03-27 14:44:00.664089 + : pb-IF4cU0kfUA== ip: hvd~vb~l~yn, Device id: df45720258668a73b6ad583cc0bf116ff953ea55 -2023-03-27 14:44:13.713605 + : pb-IF42UkYEXQ== ip: dvvcyval~~a, Device id: c02bcaa5284fffba6ccd2f64f02722f5482600c5 -2023-03-27 14:44:34.136678 + : pb-IF4DUBdSIg==|| kicked > new account -2023-03-27 14:45:52.198681 + : pb-IF41U0hYHA== ip: azo~zi~~aaajc, Device id: 9cf401484f09127122dbf06791904245e1cead83 -2023-03-27 14:46:34.369992 + : pb-IF4iUmsSDw== ip: a}j~~naambakf, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-03-27 14:48:13.716607 + : pb-IF4hBFgH ip: ak~}m~~niaihz, Device id: a6236484c5b3964fcd4361ad664b0232a039b16d -2023-03-27 14:50:15.118700 + : pb-IF4qU1MDVg== ip: a}j~~ofaiaak`, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-27 14:51:44.428860 + : pb-IF4uVRgMEA== ip: azo~{a~~ahaaa, Device id: 38bcea6c994e346c6c51b2b86b86195701f46af2 -2023-03-27 14:51:53.458930 + : pb-IF4TUlgePw== ip: an~}ifaii|va~i, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-27 14:51:57.470192 + : pb-IF4hBFgH ip: ak~}m~~niaihz, Device id: a6236484c5b3964fcd4361ad664b0232a039b16d -2023-03-27 14:53:21.920188 + : pb-IF4qU1MDVg== ip: a}j~~ofaiaak`, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-27 14:53:51.046570 + : pb-IF4cU0kfUA== ip: hvd~vb~l~yn, Device id: df45720258668a73b6ad583cc0bf116ff953ea55 -2023-03-27 14:53:55.153956 + : pb-IF4TUlgePw== started kick vote for pb-IF4uVRgMEA==. -2023-03-27 14:54:25.158738 + : Kick vote End -2023-03-27 14:54:58.298108 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 14:55:28.401365 + : pb-IF4iUmsSDw== ip: a}j~~naambakf, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-03-27 14:55:36.627483 + : pb-IF4gUBANJg== ip: b}k~}jhal`aid, Device id: 7437f70205f01b3429b2b7de3b9e4320d422d3c1 -2023-03-27 14:56:28.802925 + : pb-IF4TUlgePw== ip: an~}ifaii|va~i, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-27 14:57:07.977690 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 14:57:10.986123 + : pb-IF4hBFgH ip: ak~}m~~niaihz, Device id: a6236484c5b3964fcd4361ad664b0232a039b16d -2023-03-27 14:57:34.098692 + : pb-IF4hBFgH ip: ak~}m~~niaihz, Device id: a6236484c5b3964fcd4361ad664b0232a039b16d -2023-03-27 14:57:57.169323 + : pb-IF5SUkwMAg== ip: dvvcyval~~`f, Device id: a437c2a1793c75d0da48b9b93a0f30175d79dd89 -2023-03-27 14:58:02.186435 + : pb-IF4vU0MENg== ip: a~h~}jeai`vbv, Device id: 6382f3717c6ac3650740a14e9d6ab4b67728a26a -2023-03-27 14:58:35.269106 + : pb-IF4IU28qPA== ip: azo~zi~~mgaja{, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-03-27 14:58:42.285470 + : pb-IF4oUnVaNg== ip: dvvd|vb{`~x, Device id: ea9e94a58d7b30a6aa34f61e1f2125a3e555fcda -2023-03-27 15:00:11.504219 + : pb-IF4TUlgePw== started kick vote for pb-IF4oUnVaNg==. -2023-03-27 15:00:19.786678 + : pb-IF4sVxFaIQ== ip: dxvc~vaxh~}, Device id: ac38eef52493d5e7c8b37b2b5175b3fa4ed83681 -2023-03-27 15:00:41.507584 + : Kick vote End -2023-03-27 15:01:27.021007 + : pb-IF4vU0MENg== ip: a~h~}jeai`vbv, Device id: 6382f3717c6ac3650740a14e9d6ab4b67728a26a -2023-03-27 15:01:47.105145 + : pb-IF5dVWEJMg== ip: azo~{n~yo~}jh, Device id: 3939fc10737ad53f783649761bea48dc2b3522f7 -2023-03-27 15:02:30.474959 + : pb-IF4SUBZeMw== ip: axi~xn~wm~wj, Device id: 88de51cd2a24da03f1a26751f81c6ffed0527b26 -2023-03-27 15:03:48.732444 + : pb-IF4SVUYEPQ== ip: dvvc}vawk~xi, Device id: 21f59c38f4379b67300402055b516558d8a192d9 -2023-03-27 15:03:57.765426 + : pb-IF4jF1NY ip: azj~z`~zl~~id, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 15:07:37.203073 + : pb-IF4vU0MENg== started kick vote for pb-JiNJARBbXEtDX1xGEkRTXVVAGElfRFZK. -2023-03-27 15:08:07.207833 + : Kick vote End -2023-03-27 15:08:55.214632 + : pb-IF4iVRIvFA== ip: an~}jbaiezvay, Device id: 05bfe4d45bedbfe40b5df8367de40522be440a88 -2023-03-27 15:11:12.105229 + : pb-IF4lUBdbUg==|| kicked > new account -2023-03-27 15:12:22.217165 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 15:13:36.603803 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 15:14:11.740613 + : pb-IF4oUnVaNg== ip: dvvd|vb{`~x, Device id: ea9e94a58d7b30a6aa34f61e1f2125a3e555fcda -2023-03-27 15:14:17.756689 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 15:14:31.808934 + : pb-IF4oUnVaNg== ip: dvvd|vb{`~x, Device id: ea9e94a58d7b30a6aa34f61e1f2125a3e555fcda -2023-03-27 15:16:14.293458 + : pb-IF4TVGERAQ== ip: azo~{n~~hcaii{, Device id: 700bdda803bc4e2e1bef85fc113cd38a5eb2d5c2 -2023-03-27 15:16:15.758950 + : pb-IF4AUnAKPw== started kick vote for pb-IF4sVxFaIQ==. -2023-03-27 15:16:45.763079 + : Kick vote End -2023-03-27 15:17:19.768368 + : pb-IF4lUBdbUg== | kicked > reason:Banned account -2023-03-27 15:17:29.796135 + : pb-IF4WU0wvVA== ip: dvvc}vaza~vm, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-27 15:20:00.296253 + : pb-IF49U0QJDw== ip: dvvcxva~o~~n`, Device id: 52e159e6debf4b869cb6bd30a26e268c72ceab36 -2023-03-27 15:21:46.661220 + : pb-IF4LU1IyKQ== ip: azo~|l~~hbajav, Device id: 2ede757f9fff6fc003468ee68d31ebf4524fa167 -2023-03-27 15:23:41.167050 + : pb-IF5SUkwMAg== ip: dvvcyvan~~ab, Device id: a437c2a1793c75d0da48b9b93a0f30175d79dd89 -2023-03-27 15:26:37.858284 + : pb-IF5dVWEJMg== ip: azo~{n~yo~}jh, Device id: 3939fc10737ad53f783649761bea48dc2b3522f7 -2023-03-27 15:26:38.264236 + : pb-IF5dVWEJMg==|| kicked , for using spoofed id Jerald -2023-03-27 15:27:18.176532 + : pb-IF4DU1I4CQ== ip: azj~z`~}idajdv, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-27 15:27:56.922790 + : pb-IF4WUBcjLg==|| kicked > new account -2023-03-27 15:28:05.362294 + : pb-IF4lUBdbUg== | kicked > reason:Banned account -2023-03-27 15:28:42.509392 + : pb-IF4VU1oyKQ== ip: dvvbl~~o~~h, Device id: 5dad8451a918b1fb01a47f361da251dc7b2470da -2023-03-27 15:29:12.625763 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: azo~|j~}maajb, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-27 15:29:34.711543 + : pb-IF4jF1NY ip: azj~z`~~n~~kb, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 15:31:11.119923 + : pb-IF4DU1I4CQ== ip: azj~z`~}idajdv, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-27 15:33:33.635953 + : pb-IF4jF1NY ip: azj~z`~~n~~kb, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 15:34:17.802797 + : pb-IF4eUBMTKA== ip: ak~}hhania`b, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-27 15:35:33.100454 + : pb-IF4jF1NY ip: aakhaid~vb}`, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 15:38:26.008140 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 15:43:54.295017 + : pb-IF4UU1MMAA== started kick vote for pb-IF4vVRUFVA==. -2023-03-27 15:44:24.298272 + : Kick vote End -2023-03-27 15:44:57.976690 + : pb-IF4xUkwKIA== ip: ak~xo~~khaje, Device id: 29eafe60adf02ff0f8635b91072487f12411f5c5 -2023-03-27 15:45:08.019144 + : pb-IF4xUkwKIA== ip: ak~xo~~khaje, Device id: 29eafe60adf02ff0f8635b91072487f12411f5c5 -2023-03-27 15:45:18.055026 + : pb-IF4GU1MnUA== ip: a|j~~mdakiaicx, Device id: bbd76a203d670339b31286c5c8bbb5a4739730bf -2023-03-27 15:45:43.147235 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-27 15:45:50.170141 + : pb-IF4jF1NY ip: aakhaid~vb}`, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 15:47:56.945847 + : pb-IF48U2wpPA== ip: a~o~~aeaiavava, Device id: 82efdae0708f55af29ab987fbad7e588456735df -2023-03-27 15:49:29.632608 + : pb-IF4jF1NY ip: azj~z`~~o~~ah, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 15:49:31.639936 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~~ma, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-27 15:50:22.806757 + : pb-IF4jF1NY ip: azj~z`~~o~~ah, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 15:51:51.124885 + : pb-IF4jF1NY ip: azj~z`~~o~~mb, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 15:52:48.398461 + : pb-IF4vVRUFVA== started kick vote for pb-IF48U2wpPA==. -2023-03-27 15:52:54.339711 + : pb-IF4jF1NY ip: azj~z`~va~i, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 15:53:18.399597 + : Kick vote End -2023-03-27 15:53:59.826643 + : pb-IF4vVRUFVA== ip: a}j~~ofaicxva|`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 15:55:20.343359 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-27 15:55:31.381507 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-27 15:56:42.640460 + : pb-IF4SVUYEPQ== ip: dvvc}vawi~wo, Device id: 21f59c38f4379b67300402055b516558d8a192d9 -2023-03-27 15:58:25.060921 + : pb-IF40UncaLg== ip: dvvc}vbo~~hg, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-27 15:59:41.890063 + : pb-IF4GU1MnUA== ip: a|j~~mdakiaicx, Device id: bbd76a203d670339b31286c5c8bbb5a4739730bf -2023-03-27 16:02:59.799485 + : pb-IF43UBIHUQ== ip: azo~{n~}iiaify, Device id: 89264d40dea50234c209e093b6856275ca1babba -2023-03-27 16:03:18.871064 + : pb-IF4cU1AjDw== ip: azo~{m~~hgajd, Device id: 23d67137d6aa4be21a991ed949cf0b73dc376a7a -2023-03-27 16:06:03.452429 + : pb-IF4jF1NY ip: azj~z`~vb{o, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 16:07:57.870814 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 16:08:09.173838 + : pb-IF4cU1AjDw== started kick vote for pb-IF4vVRUFVA==. -2023-03-27 16:08:39.176325 + : Kick vote End -2023-03-27 16:10:00.503251 + : pb-IF5RVRI7Ag== ip: a|o~vo~~haajdx, Device id: 2cab00687f2026640e6ab32148f48ae2d7ecf25b -2023-03-27 16:13:16.304988 + : pb-IF4jVVoSEA== ip: azj~zo~}kcajd, Device id: 5c8b4844712f947e32875a692f7a6de54f4ffe68 -2023-03-27 16:14:17.553379 + : pb-IF4cUktZNg== ip: a~h~}keajcwvf, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-03-27 16:16:49.277344 + : pb-IF4DU1I4CQ== ip: azj~z`~}iea`a, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-27 16:21:03.368528 + : pb-IF4WUBJcVQ== ip: ayk~zk~~oiaj`w, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-03-27 16:21:10.398648 + : pb-IF4FD1c8 ip: azo~{n~xk~~`e, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-03-27 16:25:10.737798 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 16:25:47.869903 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`{vaz`, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-27 16:26:36.546467 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 16:26:57.168465 + : pb-IF4TV3RbDA== ip: azo~{m~~ocaj`}, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-27 16:36:36.327806 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`{vaz`, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-27 16:36:41.335395 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 16:36:52.368950 + : pb-IF4TV3RbDA== ip: azo~{m~~ocaj`}, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-27 16:37:04.428562 + : pb-IF4DU1I4CQ== ip: azj~z`~}iea`a, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-27 16:37:16.457682 + : pb-IF4FD1c8 ip: azo~{n~xk~~`e, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-03-27 16:37:42.556030 + : pb-IF48VUM_MA== ip: ak~~ogaje}vdy, Device id: a23b2dfb2bf0a0ad3365816b0b391ffce590418a -2023-03-27 16:37:51.564614 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 16:38:05.622298 + : pb-IF4vVVEFHw== ip: an~}jbamdaig{, Device id: 90a9a9f337ef39c51aba6643e801a8f1d434558b -2023-03-27 16:40:04.073125 + : pb-IF4VU3laVA== ip: ak~~lhajaaje, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-27 16:40:11.092266 + : pb-JiNJARBZVkVHXl1HF0ZTXVNHEUJfQlJB ip: azj~z`~~n~}ic, Device id: a339ea1ea5f14e84d570f9df718222d56de0140b -2023-03-27 16:42:04.487184 + : pb-IF4GU1MnUA== ip: a|j~~mdakiaicx, Device id: bbd76a203d670339b31286c5c8bbb5a4739730bf -2023-03-27 16:43:40.726824 + : pb-IF4TV3RbDA== started kick vote for pb-IF48VUM_MA==. -2023-03-27 16:44:10.729959 + : Kick vote End -2023-03-27 16:45:42.283718 + : pb-IF4jF1NY ip: azj~z`~vazl, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 16:45:45.294253 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 16:47:18.614139 + : pb-IF42UkYEXQ== ip: dvvcyval~~a, Device id: c02bcaa5284fffba6ccd2f64f02722f5482600c5 -2023-03-27 16:48:13.808568 + : pb-IF4-JUgB ip: ak~~j`aje}vfv, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-27 16:49:18.338248 + : pb-IF5cUBgGMQ==|| kicked > new account -2023-03-27 16:49:19.040945 + : pb-IF4LUBNTDA== ip: dvvcyvd}viw, Device id: 11e79e9150dcf2922f8ef423ced6ce0db602ccf8 -2023-03-27 16:51:05.570432 + : pb-IF4jF1NY started kick vote for pb-IF4TV3RbDA==. -2023-03-27 16:51:35.573657 + : Kick vote End -2023-03-27 16:52:38.790186 + : pb-IF4FD1c8 ip: azo~{n~xk~~`e, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-03-27 16:57:51.942434 + : pb-IF4mVGZaCw== ip: dvvc}vb|m~}jf, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-03-27 16:59:08.222016 + : pb-IF4BDxEj ip: a~h~}jgajbaif|, Device id: 6389a355e928f58d444d10a10713953d39c0c4a6 -2023-03-27 16:59:16.243520 + : pb-IF4WU0wvVA== ip: dvvc}va{k~~ob, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-27 16:59:41.311357 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-27 17:01:03.756072 + : pb-IF4-AGI7 started kick vote for pb-IF4vVVEFHw==. -2023-03-27 17:01:33.306897 + : Kick vote End -2023-03-27 17:02:51.019810 + : pb-IF43UBU9IQ== ip: a~h~}jdaadajcw, Device id: e9e7e8f01ebe0ee9a8819a1af5ae7af84613fc2c -2023-03-27 17:03:18.110482 + : pb-IF4WU0wvVA== ip: dvvc}va{k~~ob, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-27 17:04:37.899732 + : pb-IF4mVGZaCw== started kick vote for pb-IF4-AGI7. -2023-03-27 17:04:38.416883 + : pb-IF4pU1MJIw== ip: a|o~vo~~hgah, Device id: 980fcde0872cfae69d1a58d61a9917876d2a23b3 -2023-03-27 17:05:01.482227 + : pb-IF4BVGw7EA== ip: azo~{a~~lbaoc, Device id: 209280ab07f7691d330218b65ebbec6a060b43c3 -2023-03-27 17:05:07.901743 + : Kick vote End -2023-03-27 17:07:19.991575 + : pb-IF5XUBZSFw== ip: a~o~}lhalbaaf, Device id: 70d0cc8ddc40ae16689a5044573af7f7593bf08a -2023-03-27 17:10:37.393360 + : pb-IF4pU1MJIw== started kick vote for pb-IF5QUBk4Fw==. -2023-03-27 17:11:07.400240 + : Kick vote End -2023-03-27 17:14:58.596258 + : pb-IF4mVGZaCw== ip: dvvc}vb|m~}jf, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-03-27 17:15:04.615598 + : pb-IF5cUnclVg== ip: an~}hfajb}vaxh, Device id: dca96b148c8378aad47be1c61f251ba287061716 -2023-03-27 17:17:00.060091 + : pb-IF4-JUgB ip: ak~~j`aje}vfv, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-27 17:18:40.439946 + : pb-IF4-JUgB ip: ak~~j`aje}vfv, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-27 17:18:56.494856 + : pb-IF4DU1I4CQ== ip: azj~z`~}idajby, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-27 17:19:45.687805 + : pb-IF4mVGZaCw== ip: dvvc}vb|m~}jf, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-03-27 17:20:04.763635 + : pb-IF4sU1EeAA== ip: a~h~}jdai`{vazh, Device id: a4ccc2a4110c9b63a5fd073bee5f4d32900d0444 -2023-03-27 17:20:23.705519 + : pb-IF4BVGw7EA== started kick vote for pb-IF4mVGZaCw==. -2023-03-27 17:20:53.706922 + : Kick vote End -2023-03-27 17:22:19.319300 + : pb-IF4pU1AcEg== ip: bxvf|vb}o~}jc, Device id: 31dae11ca650b34bf222e8355676a68c5552446c -2023-03-27 17:22:27.354941 + : pb-IF4-JUgB ip: ak~~j`aje}vfv, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-27 17:25:59.129401 + : pb-JiNJARBbVUVGWVlBGENZXVRBF0FZRFVD ip: azj~z`~~o~~kh, Device id: c230c5574e6190088eeeffc9f639d394e85176fa -2023-03-27 17:28:18.629148 + : pb-IF5cV044Jw== ip: ak~}o~vva~h, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-03-27 17:28:20.502938 + : pb-IF4nUxE4Nw== started kick vote for pb-IF40VG4pMg==. -2023-03-27 17:28:41.467401 + : Kick vote End -2023-03-27 17:30:48.112439 + : pb-JiNJARFZUUpEWF5JFkdTXVdEEEVdQ1ZA ip: a~m~vn~}igaia}, Device id: 05b0802de607045fa8518861defbab03e56a739f -2023-03-27 17:32:22.685201 + : pb-IF4mVGZaCw== started kick vote for pb-JiNJARFZUUpEWF5JFkdTXVdEEEVdQ1ZA. -2023-03-27 17:32:52.691293 + : Kick vote End -2023-03-27 17:33:49.745755 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~~aa, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-03-27 17:34:35.927048 + : pb-IF4VU3laVA== ip: ak~~lhajaaje, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-27 17:35:16.076550 + : pb-JiNJARBbVUVGWVlBGENZXVRBF0FZRFVD ip: azj~z`~~o~~kh, Device id: c230c5574e6190088eeeffc9f639d394e85176fa -2023-03-27 17:36:16.262947 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 17:36:57.425426 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~~aa, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-03-27 17:37:28.525990 + : pb-IF5RU2oJUA== ip: an~}heaja|vb, Device id: b52a0123a41243d56ed209aa5016622aec74d299 -2023-03-27 17:39:16.993390 + : pb-JiNJARFcUUNFVVlHGUVZUFRDFUdeR1ZC ip: a~o~va~}m`aid{, Device id: 015a0cb7e587ab697743ad4583f22be93ef627fd -2023-03-27 17:39:52.142769 + : pb-IF4eUBMTKA== ip: an~~acajdzvayj, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-27 17:39:59.167325 + : pb-IF4DU1I4CQ== ip: azj~z`~}idajby, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-27 17:40:02.184135 + : pb-JiNJARFcUUNFVVlHGUVZUFRDFUdeR1ZC ip: an~}ida`iaj`w, Device id: 015a0cb7e587ab697743ad4583f22be93ef627fd -2023-03-27 17:41:50.289010 + : pb-IF4rUkFSLw== started kick vote for pb-IF4DU1I4CQ==. -2023-03-27 17:42:20.292011 + : Kick vote End -2023-03-27 17:44:27.224285 + : pb-IF4mVGZaCw== ip: dvvc}vb|m~}jf, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-03-27 17:44:43.288644 + : pb-IF4dUlQCHA== ip: azo~|j~|l~zm, Device id: 55ab61d7975f273896fcd9bed13fa0c40f7069e7 -2023-03-27 17:44:54.315126 + : pb-IF4OU00jBA== ip: azj~z`~|m~~ji, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-03-27 17:45:41.510809 + : pb-IF4OU00jBA== ip: azj~z`~|m~~ji, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-03-27 17:45:44.516732 + : pb-IF4mVGZaCw== ip: dvvc}vb|m~}jf, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-03-27 17:48:58.184409 + : pb-IF4vV0g8Mw== | kicked > reason:Banned account -2023-03-27 17:49:41.327682 + : pb-IF4OU00jBA== ip: azj~z`~|m~~ji, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-03-27 17:53:44.171497 + : pb-IF4gU0wxBw== ip: ak~}hhania`b, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-27 17:53:46.184105 + : pb-IF4tUlkRDw== ip: azo~|k~zm~~`h, Device id: 4b90e79813fdb0259fc1d852d4f7ecff869da4b8 -2023-03-27 17:54:31.362503 + : pb-IF5dVWEJMg== ip: a~o~}jbaieyvev, Device id: 5ab7cb7a5f685d0d0dc98dafbdb2ce8610260d79 -2023-03-27 17:54:31.791798 + : pb-IF5dVWEJMg==|| kicked , for using spoofed id Jerald -2023-03-27 17:54:44.497243 + : pb-JiNJARFcUUNFVVlHGUVZUFRDFUdeR1ZC started kick vote for pb-IF4vVRUFVA==. -2023-03-27 17:54:48.418238 + : pb-IF40U3MyVQ== ip: b}k~}kcaniaog, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-27 17:55:14.494601 + : Kick vote End -2023-03-27 17:56:22.731884 + : pb-IF4iUlUpAA== ip: an~}jbaoaaih|, Device id: 845fc3eb8a5e8166351a47ed1d7c7f3a0d8ea7c4 -2023-03-27 17:57:11.310989 + : pb-IF4tUlkRDw== started kick vote for pb-IF5cUkwjDA==. -2023-03-27 17:57:35.040200 + : pb-IF4mVGZaCw== ip: dvvc}vb|m~}jf, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-03-27 17:57:41.316915 + : Kick vote End -2023-03-27 17:59:50.637881 + : pb-IF4SU1gRLg== ip: a|a~~adakgaih|, Device id: 79a0ba9bfc75162399702770cdd4dbb435739109 -2023-03-27 18:00:09.785409 + : pb-IF4LVREuPw== ip: an~~aeaiazvb{k, Device id: 57598112c668072e731d175c9824c46f9e9c0326 -2023-03-27 18:00:56.969830 + : pb-IF5VU3lYDA== ip: azj~z`~~``ajez, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-03-27 18:02:04.203102 + : pb-IF4mVGZaCw== ip: dvvc}vbn~{h, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-03-27 18:02:38.300474 + : pb-IF48U2wpPA== ip: a~o~~aeaiavava, Device id: 82efdae0708f55af29ab987fbad7e588456735df -2023-03-27 18:06:31.413387 + : pb-IF5SUBgfKg==|| kicked > new account -2023-03-27 18:06:42.133122 + : pb-IF5cV044Jw== ip: ak~}o~vva~h, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-03-27 18:06:53.181653 + : pb-IF4zU0NSFA== ip: awk~~oaaihaii~, Device id: 8b30655361503b81863f4673a28e21c76563d623 -2023-03-27 18:07:12.278469 + : pb-IF4BU1gtAA== ip: a}j~~`aaia{ve}, Device id: 1f2a67f3540a90953f0d00eae021c1d40dc8c27c -2023-03-27 18:07:17.293020 + : pb-IF5cUBUTDA== ip: ak~}ldaid|va~, Device id: 4aeb855e84ca3f6b51ef3eaec43164c9dbb4ca18 -2023-03-27 18:07:20.301572 + : pb-IF5cV044Jw== ip: ak~}o~vva~h, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-03-27 18:07:38.380618 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 18:07:47.427017 + : pb-IF48U2wpPA== ip: a~o~~aeaiavava, Device id: 82efdae0708f55af29ab987fbad7e588456735df -2023-03-27 18:08:21.544270 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-27 18:08:54.660427 + : pb-IF4-JUgB ip: ak~~j`aje}vfv, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-27 18:09:58.884706 + : pb-IF4WU0wvVA== ip: dvvc}va{k~~ob, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-27 18:10:34.043484 + : pb-IF4GUBMPFA== ip: azj~z`~}iaaiex, Device id: d80196558d9b89c8c7dc7dc8e9f787f49091c937 -2023-03-27 18:10:55.101704 + : pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL ip: dvvc{vazk~{l, Device id: a61172de41bee6c6202d757a57288fd637e3ec13 -2023-03-27 18:11:16.178235 + : pb-IF4WU0wvVA== ip: dvvc}va{k~~ob, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-27 18:11:36.315845 + : pb-IF4tUlkRDw== ip: azo~|k~zm~~`h, Device id: 4b90e79813fdb0259fc1d852d4f7ecff869da4b8 -2023-03-27 18:14:03.984926 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-27 18:14:47.162451 + : pb-IF4cUmZcFw== ip: ak~z`~~meaj`w, Device id: f2e0b5fe43f7bc2229dc9b8a471cfd0d90e3b8dc -2023-03-27 18:14:48.162518 + : pb-IF4mVGZaCw== ip: dvvc}vbn~{h, Device id: 5443e8995950585d3d18b3f58b0e281b86b8d92b -2023-03-27 18:16:15.793628 + : pb-IF4oUBYSNw==|| kicked > new account -2023-03-27 18:18:38.151930 + : pb-IF4iUmsSDw== ip: a}j~~naambakf, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-03-27 18:18:53.254430 + : pb-IF4dUmsZLg== ip: a}j~}vak~}li, Device id: 73f9d845c1595c4be79b30fbe26fc60993a28d9e -2023-03-27 18:20:28.320869 + : pb-IF5dU2cMIA==|| kicked , for using spoofed id MentalLace -2023-03-27 18:21:00.728883 + : pb-IF4IU28qPA== ip: azo~zi~~haajcx, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-03-27 18:21:08.758087 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 18:23:36.339385 + : pb-IF4IU09ZPA== ip: ewva{m~~`dajc, Device id: deea2c40db71b02d135cc5d2c81f3539d78f66e2 -2023-03-27 18:24:06.428842 + : pb-IF4vVVEFHw== ip: an~}jbamdaig{, Device id: 90a9a9f337ef39c51aba6643e801a8f1d434558b -2023-03-27 18:25:19.193137 + : pb-IF4WU0wvVA== started kick vote for pb-IF4IU09ZPA==. -2023-03-27 18:25:41.738138 + : pb-IF4IU28qPA== ip: azo~zi~~haajcx, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-03-27 18:25:49.196324 + : Kick vote End -2023-03-27 18:28:37.401514 + : pb-IF4KUBEPBw== ip: dvvcyvbk~vh, Device id: 964d49f2a560e749bddc13396979278560be264b -2023-03-27 18:29:43.657049 + : pb-IF41UlgYIg== ip: a~n~xl~{`~~mf, Device id: 69ec021b557a5e198bacbb12daf6d853fc217a7e -2023-03-27 18:29:57.704711 + : pb-IF5cV044Jw== ip: ak~}o~vva~h, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-03-27 18:32:22.218162 + : pb-IF5cV044Jw== ip: a~o~v`~}n~xl, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-03-27 18:33:44.486779 + : pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL ip: dvvc{vazk~{l, Device id: a61172de41bee6c6202d757a57288fd637e3ec13 -2023-03-27 18:34:27.649793 + : pb-IF4CDVI4 ip: azo~zh~{vb|m, Device id: c19d0807fae7c9612f60a9db1f236b143acc52f8 -2023-03-27 18:34:43.708887 + : pb-JiNJARBSXUFIWl1CGUdZU1VEGEZcRFVL ip: azo~|k~~o~wk, Device id: bbe038db81f75dfbd848b16d315843b34cf7b375 -2023-03-27 18:35:01.776923 + : pb-IF4BU1gtAA== ip: a}j~~`aaia{ve}, Device id: 1f2a67f3540a90953f0d00eae021c1d40dc8c27c -2023-03-27 18:35:51.953836 + : pb-IF4tUlkRDw== ip: azo~|k~zm~~`h, Device id: 4b90e79813fdb0259fc1d852d4f7ecff869da4b8 -2023-03-27 18:37:10.242507 + : pb-IF4KVFkvCQ== ip: a~h~}jdangali, Device id: f9a760a43003b5468b6917cfc16e124618299154 -2023-03-27 18:38:16.804256 + : pb-IF4wUBc_DQ==|| kicked > new account -2023-03-27 18:38:37.568641 + : pb-IF4IU28qPA== ip: azo~{a~~nfaiiw, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-03-27 18:38:42.070075 + : pb-IF5cV044Jw== started kick vote for pb-IF41U2scIg==. -2023-03-27 18:39:12.076533 + : Kick vote End -2023-03-27 18:40:56.093710 + : pb-IF5cV044Jw== ip: a~o~v`~}n~xl, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-03-27 18:45:04.061858 + : pb-IF5XUBgADQ== ip: d}va~j~~mbak, Device id: 38b4d07c86f2356a07ab4e2f27930d585073c246 -2023-03-27 18:46:00.279865 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-03-27 18:46:58.468951 + : pb-IF4CDVI4 ip: azo~zh~{vb|m, Device id: c19d0807fae7c9612f60a9db1f236b143acc52f8 -2023-03-27 18:47:27.586016 + : pb-IF4qU1MDVg== ip: b}k~}khaii|vax, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-27 18:47:48.437240 + : pb-IF5cV044Jw== started kick vote for pb-IF4qU1YGIA==. -2023-03-27 18:48:18.439010 + : Kick vote End -2023-03-27 18:50:07.127157 + : pb-IF4qU1MDVg== ip: b}k~}khaii|vax, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-27 18:51:37.457395 + : pb-IF4OVXIaKA== ip: b}k~}kcaoeaja|, Device id: b03f131e0bee054ead1f5c39b7c5f9dd9f0284bb -2023-03-27 18:52:08.551799 + : pb-IF5XU0YhKg== ip: azo~{m~~mfaig}, Device id: 75ff7432c56d2b0a6ebcdf61a1cdd1675410cbdb -2023-03-27 18:52:43.683301 + : pb-IF4KUBEPBw== ip: dvvcyvbk~vh, Device id: 964d49f2a560e749bddc13396979278560be264b -2023-03-27 18:52:57.724469 + : pb-IF5XU0YhKg== ip: bk~~abaje|vaz, Device id: 75ff7432c56d2b0a6ebcdf61a1cdd1675410cbdb -2023-03-27 18:54:25.178935 + : pb-IF5XU0YhKg== ip: bk~~abaje|vaz, Device id: 75ff7432c56d2b0a6ebcdf61a1cdd1675410cbdb -2023-03-27 18:54:54.290978 + : pb-IF5XU0YhKg== ip: azo~{m~~obaig, Device id: 75ff7432c56d2b0a6ebcdf61a1cdd1675410cbdb -2023-03-27 18:55:43.485814 + : pb-IF4uU0YhHA== ip: azo~{m~~mcaac, Device id: 9a64711cf529ee878368683500782e8040c2b40b -2023-03-27 18:55:58.534420 + : pb-IF4vVUkeXA== ip: a}j~~naaohaiiz, Device id: 0095677e00d642566002c2900f234ad7491d7a78 -2023-03-27 18:58:12.025397 + : pb-IF48UBUzCg== ip: azj~zo~}jaaif{, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-03-27 18:58:21.055015 + : pb-IF5XUBZSFw== ip: a~o~}lhalbaaf, Device id: 70d0cc8ddc40ae16689a5044573af7f7593bf08a -2023-03-27 18:59:31.604326 + : pb-IF4SUBdeDg==|| kicked > new account -2023-03-27 18:59:40.351371 + : pb-IF4nVXUKVw== ip: an~}ifaaiaj`v, Device id: be418813b28c347b167b89a270154db493fdafcd -2023-03-27 19:00:08.453172 + : pb-IF4jF1NY ip: dzva}o~{l~yk, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 19:00:29.522480 + : pb-IF5XU0YhKg== ip: azo~{m~~obaig, Device id: 75ff7432c56d2b0a6ebcdf61a1cdd1675410cbdb -2023-03-27 19:01:53.816847 + : pb-IF4WUBJcVQ== ip: ayk~zk~~oiaj`w, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-03-27 19:02:08.867839 + : pb-IF4IVUgjBg== ip: ak~~obaocaie, Device id: 3af6c58f34cf3eda069c674ce366492955a89348 -2023-03-27 19:04:01.286448 + : pb-IF4DU1I4CQ== ip: azj~z`~}idajby, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-27 19:04:19.362298 + : pb-IF4OU00jBA== ip: azj~z`~|l~zh, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-03-27 19:04:37.612503 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~~aa, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-03-27 19:05:39.854077 + : pb-IF4OU00jBA== ip: azj~z`~|l~zh, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-03-27 19:05:54.910378 + : pb-IF4xUkwKIA== ip: ak~xo~~khaje, Device id: 29eafe60adf02ff0f8635b91072487f12411f5c5 -2023-03-27 19:07:13.224764 + : pb-IF5XU0YhKg== ip: azo~{m~~obaig, Device id: 75ff7432c56d2b0a6ebcdf61a1cdd1675410cbdb -2023-03-27 19:08:00.394198 + : pb-IF4jF1NY ip: dzva}o~{l~yk, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 19:09:49.008552 + : pb-IF43UBIHUQ== ip: azo~{n~~`bah, Device id: 89264d40dea50234c209e093b6856275ca1babba -2023-03-27 19:10:01.057203 + : pb-IF4jF1NY ip: azj~z`~~vb~`, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 19:10:32.217295 + : pb-IF5cPGsk ip: dvvc}vbzj~~aa, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-27 19:10:42.237493 + : pb-IF40UncaLg== ip: dvvc}vb`~}ia, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-27 19:12:10.560311 + : pb-IF4jF1NY ip: aakhaidvawa, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 19:13:25.811119 + : pb-JiNJVxFYUURFX1dBF0JZXV1FGUZfT1RG ip: bj~~o`aj`xvb{h, Device id: 9953171690662937f4f87b1890c1b80852bf9a65 -2023-03-27 19:13:46.931347 + : pb-IF4jF1NY ip: dzva}o~{l~yk, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 19:13:51.944363 + : pb-IF5WUBANKg== ip: azo~|o~~ofai`x, Device id: 7182a5703cfa13fbd43d887d4535a2f2e30b5b51 -2023-03-27 19:13:57.961276 + : pb-IF4iPhAi ip: dzva}o~{l~yk, Device id: 7fa9e2afc6180d479ab4a131ac39d785d6baa939 -2023-03-27 19:14:00.972940 + : pb-IF42U0VSCA== ip: azj~zo~~j`aif}, Device id: 97f56e82ff32ac3d7b7ab1ebb9b438973ea3593c -2023-03-27 19:14:36.097030 + : pb-IF5cU0kkKA== ip: an~}j`ajc~vb}, Device id: 21134c91a35ed88f5893ed72fdae3ef94c11d099 -2023-03-27 19:16:03.611305 + : pb-IF4IU1c6Ug== ip: azj~z`~|`~|n, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-27 19:16:05.618179 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 19:16:50.775269 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-27 19:18:59.248062 + : pb-IF4jF1NY ip: dzva}o~{l~yk, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 19:19:00.252578 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~~adaoaaihy, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-03-27 19:20:32.587369 + : pb-IF4jF1NY ip: dzva}o~{l~yk, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 19:20:38.207747 + : pb-IF4OU2QjMQ== started kick vote for pb-IF5cU0kkKA==. -2023-03-27 19:21:08.213420 + : Kick vote End -2023-03-27 19:22:15.178924 + : pb-IF4SXhUa ip: azj~z`~xj~~mc, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-03-27 19:22:42.037931 + : pb-IF4DU1I4CQ== started kick vote for pb-IF4IU1c6Ug==. -2023-03-27 19:23:12.046379 + : Kick vote End -2023-03-27 19:23:19.390174 + : pb-IF5UVRYYNw== ip: azj~zo~}idaicw, Device id: 0b1d13eca1ec50cde8b2666fdfede7cf68928ec2 -2023-03-27 19:25:03.806806 + : pb-IF48VUM_MA== ip: ak~~ogaje}vdy, Device id: a23b2dfb2bf0a0ad3365816b0b391ffce590418a -2023-03-27 19:25:15.848584 + : pb-IF4pU1AcEg== ip: bxvf|vb}o~}jc, Device id: 31dae11ca650b34bf222e8355676a68c5552446c -2023-03-27 19:27:38.820423 + : pb-JiNJVxFYUURFX1dBF0JZXV1FGUZfT1RG started kick vote for pb-IF41U2scIg==. -2023-03-27 19:28:08.823575 + : Kick vote End -2023-03-27 19:29:37.872218 + : pb-IF4iPhAi ip: dzva}o~{l~yk, Device id: 7fa9e2afc6180d479ab4a131ac39d785d6baa939 -2023-03-27 19:31:56.562081 + : pb-IF4oUxAGPQ== ip: azj~zo~}laaib}, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-27 19:33:06.820852 + : pb-IF4WU0wvVA== ip: dvvc}va{k~~ob, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-27 19:35:49.376538 + : pb-IF4WUBJcVQ== ip: ayk~zk~~oiaj`w, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-03-27 19:36:47.426519 + : pb-IF4OU2QjMQ== started kick vote for pb-IF5cU0kkKA==. -2023-03-27 19:37:04.704826 + : pb-IF4CUkheBg== ip: b~k~~nba`aajf, Device id: 4cfb634aa40f8f56a2448050d7b6cc5f312ffd18 -2023-03-27 19:37:17.429610 + : Kick vote End -2023-03-27 19:38:40.118896 + : pb-IF4jF1NY ip: azj~z`~vavi, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 19:39:55.377351 + : pb-IF4jF1NY ip: azj~z`~vavi, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 19:40:02.404309 + : pb-IF5RU3UzJA== ip: aajcamfa`, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-03-27 19:40:36.536378 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 19:40:39.543254 + : pb-IF4CUkheBg== ip: b~k~~nba`aajf, Device id: 4cfb634aa40f8f56a2448050d7b6cc5f312ffd18 -2023-03-27 19:41:16.906276 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-03-27 19:41:50.025509 + : pb-IF4VU3laVA== ip: ak~~lhajaaje, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-27 19:42:41.220214 + : pb-IF4OU00jBA== ip: azj~z`~|m~~ni, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-03-27 19:43:57.472287 + : pb-IF5dV3lfEQ== ip: azo~{a~~khaicz, Device id: 7b3665c1946c62ca7bc09f076335a32717638dcf -2023-03-27 19:43:58.474463 + : pb-IF5cPGsk ip: dzva}o~{l~yk, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-27 19:46:25.136162 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vavl, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-27 19:47:25.353051 + : pb-IF4CUkheBg== ip: b~k~~nba`aajf, Device id: 4cfb634aa40f8f56a2448050d7b6cc5f312ffd18 -2023-03-27 19:48:14.559390 + : pb-IF41VBMKLw== ip: an~~adaiavez, Device id: 1e5bae4cca6ecfa77db2e0ec939a70451ebb8ad9 -2023-03-27 19:48:54.700763 + : pb-IF5VUksPFw== ip: a~o~}hdaievvb}l, Device id: 5ac73f8162ada41148c549e333e933eb08cd7b70 -2023-03-27 19:49:11.900600 + : pb-IF5dV3lfEQ== ip: azo~{a~~khaicz, Device id: 7b3665c1946c62ca7bc09f076335a32717638dcf -2023-03-27 19:49:35.985273 + : pb-IF4CUkheBg== ip: b~k~~nba`aajf, Device id: 4cfb634aa40f8f56a2448050d7b6cc5f312ffd18 -2023-03-27 19:50:09.109298 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vavl, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-27 19:50:19.132112 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vavl, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-27 19:50:29.169992 + : pb-IF4pU0oGMA== ip: azj~zo~}jeaje{, Device id: 6867e1fa2d981548cb57977e21000e7598e34750 -2023-03-27 19:50:48.222966 + : pb-IF5dV3lfEQ== ip: azo~{a~~khaicz, Device id: 7b3665c1946c62ca7bc09f076335a32717638dcf -2023-03-27 19:52:58.648418 + : pb-IF48UBUzCg== ip: azj~zo~}ieaiiz, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-03-27 19:54:16.925137 + : pb-IF4OU00jBA== ip: azj~z`~|m~~ni, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-03-27 19:54:59.092209 + : pb-IF4gUBMZEw== ip: ak~~i`alhaib, Device id: 49046452e5d78460f54a87d649f1f98001dcd341 -2023-03-27 19:57:00.501761 + : pb-IF5dV3lfEQ== ip: azo~{a~~khaicz, Device id: 7b3665c1946c62ca7bc09f076335a32717638dcf -2023-03-27 19:59:41.172324 + : pb-IF5cU0kkKA== ip: an~}j`ajc~vb}, Device id: 21134c91a35ed88f5893ed72fdae3ef94c11d099 -2023-03-27 20:00:26.118462 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF5dV3lfEQ==. -2023-03-27 20:00:32.361555 + : pb-IF4oVU8CIQ== ip: azj~z`~~a~}la, Device id: 59ecfe35f0696cbb910c52c6531fb0903d382767 -2023-03-27 20:00:56.122965 + : Kick vote End -2023-03-27 20:02:14.711450 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 20:03:05.920230 + : pb-IF5TU1ddPA== ip: azj~z`~|m~~`a, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-03-27 20:03:11.982927 + : pb-IF4IUkIjLA== started kick vote for pb-IF5dV3lfEQ==. -2023-03-27 20:03:41.990108 + : Kick vote End -2023-03-27 20:04:33.502675 + : pb-IF4lU3cFFw== ip: d|vbzh~~mfam, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-27 20:06:38.924435 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-27 20:06:53.371359 + : pb-IF4IUkIjLA== started kick vote for pb-IF5dV3lfEQ==. -2023-03-27 20:07:23.379271 + : Kick vote End -2023-03-27 20:08:29.350504 + : pb-IF4yVFgOVA== ip: ak~~neaifxvawn, Device id: d854623f8a8ec9715c4cf1e44f2a453d5344d791 -2023-03-27 20:08:39.388816 + : pb-IF4lU3cFFw== ip: d|vbzh~~mfam, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-27 20:08:47.952879 + : pb-IF4vVRUFVA== started kick vote for pb-IF4lU3cFFw==. -2023-03-27 20:09:17.961317 + : Kick vote End -2023-03-27 20:09:49.616743 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 20:10:55.923775 + : pb-IF4sVGwYNw== ip: a}j~zh~}idajb|, Device id: 4200f1bbc2a336b3c4c6421b27c8df98d0c1ffba -2023-03-27 20:12:17.214405 + : pb-IF4yHk8o ip: azj~zo~~acak, Device id: 0fb72d4b17c7a6a50901d94b81f09c8749c02a73 -2023-03-27 20:13:18.453297 + : pb-IF4DU1I4CQ== ip: azj~z`~}idaih|, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-27 20:15:20.024448 + : pb-IF4OU00jBA== ip: azj~z`~|m~~ni, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-03-27 20:16:53.353793 + : pb-IF4WU0wvVA== ip: dvvc}va{k~~ob, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-27 20:18:22.690270 + : pb-IF4WUBJcVQ== ip: ayk~zk~~oiaj`w, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-03-27 20:21:07.437007 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 20:21:14.451716 + : pb-IF4HU1EGMw== ip: an~}jbai`ajcv, Device id: ef93e27351460c612a428ea541142f76f669e29b -2023-03-27 20:22:53.774071 + : pb-IF49U0QJDw== ip: dvvcxva~o~~n`, Device id: c3810e11429b25a3849c4891a8d2d36e1dccc933 -2023-03-27 20:23:10.827918 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 20:23:41.924347 + : pb-IF49U0QJDw== ip: dvvcxva~o~~n`, Device id: c3810e11429b25a3849c4891a8d2d36e1dccc933 -2023-03-27 20:26:46.664736 + : pb-IF5SUBUxHQ== ip: d|vb{a~~`daie{, Device id: d3292adf0378b145e8ba6ddff82083b64f22bf5b -2023-03-27 20:29:45.789942 + : pb-IF5UUxU7Ag== ip: an~~aealgajd~, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-03-27 20:30:25.920435 + : pb-IF4WUBJcVQ== ip: ayk~zk~~oiaj`w, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-03-27 20:31:17.099134 + : pb-IF5RU3UzJA== ip: aajcamfa`, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-03-27 20:33:26.691121 + : pb-IF4oUxAGPQ== started kick vote for pb-IF4WU0wvVA==. -2023-03-27 20:33:56.692131 + : Kick vote End -2023-03-27 20:35:12.830637 + : pb-IF4DU1I4CQ== started kick vote for pb-IF4oUxAGPQ==. -2023-03-27 20:35:42.836801 + : Kick vote End -2023-03-27 20:37:21.565098 + : pb-IF4WUBJcVQ== ip: ayk~zk~~oiaj`w, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-03-27 20:37:46.662793 + : pb-IF4-Um4_Lw== ip: azo~|k~|o~}jh, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-03-27 20:38:08.728221 + : pb-IF5dV3lfEQ== ip: azo~{a~~khaicz, Device id: 7b3665c1946c62ca7bc09f076335a32717638dcf -2023-03-27 20:40:02.119453 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 20:42:32.186076 + : pb-IF4rU1NSCQ== ip: ak~~lhaneajdx, Device id: b9c3352b2e95b39c37cd507d48b8af461fab17f8 -2023-03-27 20:43:09.313202 + : pb-IF5UUxU7Ag== ip: an~~aealgajd~, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-03-27 20:44:07.532323 + : pb-IF4SV3deVQ== ip: a~o~va~}jeajc, Device id: ee07dec6e3b29d684e154289a2281a3445652ee3 -2023-03-27 20:44:17.564382 + : pb-IF4CUBAeBw== ip: azj~z`~}iealh, Device id: b4af2a9bd8a078e211b1e706fa16cbe497f3a51f -2023-03-27 20:44:36.642028 + : pb-IF4qU1MDVg== ip: b}k~}khaiixva, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-27 20:45:49.886486 + : pb-IF4IU1c6Ug== ip: azj~z`~|l~za, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-27 20:46:56.119335 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 20:47:01.129252 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 20:47:08.440782 + : pb-IF4qU1MDVg== ip: b}k~}khaiixva, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-27 20:47:58.908249 + : pb-IF4xUBYIKA==|| kicked > new account -2023-03-27 20:48:56.619198 + : pb-IF4rU1NSCQ== started kick vote for pb-IF41U2scIg==. -2023-03-27 20:49:26.623133 + : Kick vote End -2023-03-27 20:49:50.087743 + : pb-IF4TUBY8MQ== ip: an~~acai`xvix, Device id: 63151cce945b0167aae78e15c3ef0d6bb61b1f59 -2023-03-27 20:52:07.555221 + : pb-IF4KU0UoDg== ip: ak~}khai`yvav, Device id: 9e7b3ba8324cadbd0164341f9d0f605efb43ecf0 -2023-03-27 20:53:07.397957 + : pb-IF4rU1NSCQ== started kick vote for pb-IF4lU0saLg==. -2023-03-27 20:53:37.405195 + : Kick vote End -2023-03-27 20:58:12.195765 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 20:58:41.301376 + : pb-IF5UVVEaUA== ip: evvi|va|n~yh, Device id: 3fd9c022ef811dbe2c1232f57fa6196af0374ab9 -2023-03-27 20:59:44.534154 + : pb-IF4qU1MDVg== ip: an~}heaj`zvhz, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-27 21:00:29.915979 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~~aa, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-03-27 21:01:09.023301 + : pb-IF5UUxU7Ag== ip: an~~aealgajd~, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-03-27 21:02:48.371849 + : pb-IF4OPhMg ip: a~o~vo~~agaae, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-03-27 21:06:00.576650 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 21:08:53.567722 + : pb-IF4oUxAGPQ== ip: azj~zo~}lcaiex, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-27 21:10:08.788601 + : pb-IF4qU1MDVg== ip: an~}heaj`zvhz, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-27 21:11:52.039944 + : pb-IF4oVFIMIQ== ip: azo~|k~}kbaigx, Device id: f61848e7b07e78e51461c5fd363de1814b43f1c4 -2023-03-27 21:12:01.063550 + : pb-IF40PkMh ip: d}va`~~afajc~, Device id: a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e -2023-03-27 21:14:18.893753 + : pb-IF4oUxAGPQ== started kick vote for pb-IF4-Um4_Lw==. -2023-03-27 21:14:48.896401 + : Kick vote End -2023-03-27 21:15:24.216999 + : pb-IF4eU004Ew== ip: azo~zi~{l~xi, Device id: 245153419ceac4a55cf9e92038ffdf3864e8a262 -2023-03-27 21:18:26.533752 + : pb-IF4WUBIfAA== ip: dvvczvaw`~}n, Device id: d705d2b607ddb7aee670ee8a6e3b6870193efbbb -2023-03-27 21:18:42.601127 + : pb-IF4OU00jBA== ip: azj~z`~|m~~ni, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-03-27 21:19:21.013521 + : pb-IF4JUBYYBw==|| kicked > new account -2023-03-27 21:22:39.503281 + : pb-IF4jF1NY ip: aakhaidvfx, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 21:22:59.589981 + : pb-IF4xU0kxNg== ip: avn~~aaaie}vax`, Device id: 036d001b5c12b43f710cad28a1b2ca0cfc5fb7f1 -2023-03-27 21:24:05.305608 + : pb-IF4OPhMg started kick vote for pb-IF5TUlMIFQ==. -2023-03-27 21:24:35.304883 + : Kick vote End -2023-03-27 21:26:19.918883 + : pb-IF4CUBdSCA==|| kicked > new account -2023-03-27 21:26:45.629328 + : pb-IF4jF1NY ip: azj~z`~vao, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 21:26:59.686893 + : pb-IF42U0VSCA== ip: azj~zo~~k~~kc, Device id: 97f56e82ff32ac3d7b7ab1ebb9b438973ea3593c -2023-03-27 21:28:23.953633 + : pb-IF4wVVkYIg== ip: aakhaifyva~, Device id: 62eeec9d9ed20df10e2ef17590735f5346df08de -2023-03-27 21:28:28.973150 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~~ma, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-27 21:29:06.097408 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vavl, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-27 21:29:29.174238 + : pb-IF40PkMh ip: d}va`~~afajc~, Device id: a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e -2023-03-27 21:31:05.510417 + : pb-IF4qU1MDVg== ip: an~}heaj`zvhz, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-27 21:34:28.289538 + : pb-IF4CUm4jHw== ip: awk~wo~|n~zl, Device id: ebecf3c32c3476872c21d9471ff6690d64f0b970 -2023-03-27 21:34:33.296496 + : pb-IF4IU1c6Ug== ip: azj~z`~|l~y, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-27 21:35:04.393192 + : pb-IF4SVUYEPQ== ip: dvvc}vbzh~}mc, Device id: 21f59c38f4379b67300402055b516558d8a192d9 -2023-03-27 21:35:54.555244 + : pb-IF4cUmZcFw== ip: bk~~abajd|vg}, Device id: f2e0b5fe43f7bc2229dc9b8a471cfd0d90e3b8dc -2023-03-27 21:37:34.500735 + : pb-IF4tCRgv ip: ak~}iaaiea`i, Device id: 8c50b5e94f4fedbbbc30c1fd2d39bf3275ea8fc5 -2023-03-27 21:38:14.647456 + : pb-IF4IU1c6Ug== ip: azj~z`~|l~y, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-27 21:39:27.913864 + : pb-IF4vU0MENg== ip: azj~zo~}`~~oh, Device id: 6382f3717c6ac3650740a14e9d6ab4b67728a26a -2023-03-27 21:41:26.425874 + : pb-IF4jF1NY ip: azj~z`~vao, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 21:41:39.467995 + : pb-IF4IU1c6Ug== ip: azj~z`~|l~y, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-27 21:42:07.580411 + : pb-IF5UUBI9MA== ip: azo~|j~}lhaif, Device id: 4381142d5e8cfc6ab20167b3a40f172ee10010f5 -2023-03-27 21:42:50.790214 + : pb-IF4vV0g8Mw== | kicked > reason:Banned account -2023-03-27 21:43:18.218566 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF4IU1c6Ug==. -2023-03-27 21:43:48.009808 + : pb-IF4vU0MENg== ip: azj~zo~}`~~oh, Device id: 6382f3717c6ac3650740a14e9d6ab4b67728a26a -2023-03-27 21:43:48.218603 + : Kick vote End -2023-03-27 21:44:00.063733 + : pb-IF42U0VSCA== ip: azj~zo~~k~~kc, Device id: 97f56e82ff32ac3d7b7ab1ebb9b438973ea3593c -2023-03-27 21:44:05.084491 + : pb-IF5WU0cRAg== ip: d}va`~~afa`b, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-27 21:44:34.185907 + : pb-IF5cU0kkKA== ip: an~}j`ajc~vb}, Device id: 21134c91a35ed88f5893ed72fdae3ef94c11d099 -2023-03-27 21:45:25.389345 + : pb-IF4gU0wxBw== ip: ak~}hhania`b, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-27 21:46:27.781084 + : pb-IF4cUmZcFw== ip: bk~~abajd|vg}, Device id: f2e0b5fe43f7bc2229dc9b8a471cfd0d90e3b8dc -2023-03-27 21:46:37.823837 + : pb-IF4CUBNYHQ== ip: b}k~}jeai`zvbv, Device id: 2a0733d8c17795ac13404a4d45e302b7b092b532 -2023-03-27 21:46:54.880853 + : pb-IF4CUBNYHQ== ip: b}k~}jeai`zvbv, Device id: 2a0733d8c17795ac13404a4d45e302b7b092b532 -2023-03-27 21:47:18.980957 + : pb-IF42U0VSCA== ip: azj~zo~~k~~kc, Device id: 97f56e82ff32ac3d7b7ab1ebb9b438973ea3593c -2023-03-27 21:47:44.055737 + : pb-IF4cUmZcFw== ip: bk~~abajd|vg}, Device id: f2e0b5fe43f7bc2229dc9b8a471cfd0d90e3b8dc -2023-03-27 21:48:33.254107 + : pb-IF4wVXYJHQ== ip: b}k~~ogakcaibz, Device id: 64fb7a315c4d2d75be81bfda1526b2ab3a28d870 -2023-03-27 21:50:42.759733 + : pb-IF5WU0cRAg== ip: d}va`~~afa`b, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-27 21:51:28.333348 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF5UUBI9MA==. -2023-03-27 21:51:36.193585 + : Kick vote End -2023-03-27 21:51:54.201091 + : pb-IF4gU0wxBw== ip: ak~}hhania`b, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-27 21:57:40.437806 + : pb-IF4oUxAGPQ== ip: azj~zo~}lbama, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-27 21:57:58.500015 + : pb-IF4yU3RZEw== ip: ak~{j~~aga`f, Device id: bc5e48c8043538349b7f6853bb5b9e2b63d2fefd -2023-03-27 21:58:14.539810 + : pb-IF4-Um4_Lw== ip: azo~|k~|o~}jh, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-03-27 21:58:33.592926 + : pb-IF4yU3RZEw== ip: ak~{j~~aga`f, Device id: bc5e48c8043538349b7f6853bb5b9e2b63d2fefd -2023-03-27 21:58:52.661968 + : pb-IF4cU1AjDw== ip: azo~{m~zl~~oh, Device id: 23d67137d6aa4be21a991ed949cf0b73dc376a7a -2023-03-27 21:59:27.184165 + : pb-IF4IU1c6Ug== started kick vote for pb-IF5cU0kkKA==. -2023-03-27 21:59:57.189601 + : Kick vote End -2023-03-27 22:02:24.900504 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF4cU1AjDw==. -2023-03-27 22:02:25.442069 + : pb-IF40UmUMEg== ip: azo~|l~}a~}ld, Device id: 7871fcf2cb1081a5de7b5b7b3bfc84148565e630 -2023-03-27 22:02:54.901697 + : Kick vote End -2023-03-27 22:03:23.813867 + : pb-IF5TU0ccDQ== ip: i{ve{vayvazk, Device id: 5e8155b729cf384942cb406fccdf2563a2e40651 -2023-03-27 22:04:32.054267 + : pb-IF5WU0cRAg== ip: d}va`~~aga`g, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-27 22:05:46.007532 + : pb-IF4cU1AjDw== started kick vote for pb-IF4IU1c6Ug==. -2023-03-27 22:05:53.773842 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-03-27 22:06:16.013315 + : Kick vote End -2023-03-27 22:07:16.724258 + : pb-IF4-Um4_Lw== started kick vote for pb-IF4IU1c6Ug==. -2023-03-27 22:07:46.728188 + : Kick vote End -2023-03-27 22:08:08.648914 + : pb-IF40PkMh ip: d}va`~~afajc~, Device id: a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e -2023-03-27 22:08:11.661689 + : pb-IF4DU0IEJg== ip: b}k~~ohajavgz, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-27 22:10:59.694804 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF40PkMh. -2023-03-27 22:11:28.555416 + : pb-IF4vUBM7Ng== ip: d|vb|i~}a~~k`, Device id: dd394f385f8aee7c409d27f62ded569934e984f8 -2023-03-27 22:11:29.694822 + : Kick vote End -2023-03-27 22:12:06.705311 + : pb-IF4jF1NY ip: azj~z`~~vao, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 22:12:30.226627 + : pb-IF4-Um4_Lw== started kick vote for pb-IF4IU1c6Ug==. -2023-03-27 22:12:52.853429 + : pb-IF4jF1NY ip: azj~z`~~vao, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 22:12:55.866835 + : pb-IF40PkMh ip: d}va`~~afajc~, Device id: a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e -2023-03-27 22:13:00.230160 + : Kick vote End -2023-03-27 22:15:03.744651 + : pb-IF4DU0IEJg== started kick vote for pb-IF4IU1c6Ug==. -2023-03-27 22:15:33.747949 + : Kick vote End -2023-03-27 22:16:06.886842 + : pb-IF4FD1c8 ip: azo~{n~wj~zo, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-03-27 22:16:54.064826 + : pb-IF4SUnMKEw== ip: d}va`~~afaif{, Device id: 6e8257dc74a0980eaba7afb2e0a07216e88e6214 -2023-03-27 22:18:53.520268 + : pb-IF4DU0IEJg== started kick vote for pb-IF4FD1c8. -2023-03-27 22:19:05.506232 + : Kick vote End -2023-03-27 22:19:44.814410 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~~aa, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-03-27 22:23:03.807828 + : pb-IF4cU1AjDw== started kick vote for pb-IF4-Um4_Lw==. -2023-03-27 22:23:33.812354 + : Kick vote End -2023-03-27 22:26:42.403975 + : pb-IF4FU1daUA== ip: a~h~}jdaiiva{j, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-27 22:38:16.344275 + : pb-IF4-Um4_Lw== ip: azo~|k~|o~}jh, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-03-27 22:43:34.415879 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`vvg, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-27 22:45:06.738290 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 22:48:53.619984 + : pb-IF4TV3RbDA== ip: azo~{m~~a`aib{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-27 22:49:28.755087 + : pb-IF4GU3VZAA== ip: a~o~}k`aibwve{, Device id: d8af9ff816bba78ceb389fc0ac1ff9f105d3b50f -2023-03-27 22:49:53.836470 + : pb-IF4DUmYmFg== ip: cxva~k~}khai`~, Device id: 109699ebc2412760fa57531885a7974df7e87d0e -2023-03-27 22:51:15.131050 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-27 22:54:29.779217 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 22:55:09.955714 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vavl, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-27 22:55:34.043978 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vavl, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-27 22:56:19.203393 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 22:56:37.262366 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vavl, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-27 22:57:14.400725 + : pb-IF4NUxFfEg== ip: an~}hgajc~vb{, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-03-27 22:57:42.541571 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 22:59:34.964148 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|k~}if, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-03-27 23:00:08.095030 + : pb-IF49UnYRLQ== ip: dxviaacajcy, Device id: 690c3f7ca525541fd6d368f95dd77e48836a2345 -2023-03-27 23:01:17.354561 + : pb-IF4FU1daUA== ip: a~h~}jganaaibv, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-27 23:02:03.500344 + : pb-IF4LU1IyKQ== ip: azo~|l~~jeajc|, Device id: 2ede757f9fff6fc003468ee68d31ebf4524fa167 -2023-03-27 23:05:35.287395 + : pb-IF4WU0wvVA== ip: dvvc}va{k~~ob, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-27 23:05:55.339784 + : pb-IF5TUkZSVA== ip: axn~~o`aiaam, Device id: 2a7a80db1ca688d12460e4a8899b9bd36a5fb736 -2023-03-27 23:08:39.918253 + : pb-IF4OPhMg ip: a~o~vo~~agaae, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-03-27 23:12:14.673952 + : pb-IF41U2scIg== ip: a~h~}jgaiaajf, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 23:12:48.788775 + : pb-IF41U2scIg== ip: a~h~}jgaiaajf, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 23:14:13.091099 + : pb-IF4eUBMTKA== ip: a~h~}jgaiaajf, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-27 23:15:03.810389 + : pb-IF4vVRUFVA== started kick vote for pb-IF4OPhMg. -2023-03-27 23:15:33.816855 + : Kick vote End -2023-03-27 23:15:51.425289 + : pb-IF40U3MyVQ== ip: b}k~}kcaniaog, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-27 23:17:45.839255 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 23:18:14.957390 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`vvg, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-27 23:19:51.353626 + : pb-JiNJARBfV0FGXVtAF0NQXFxGFkVYRFNC ip: azn~}hiambaii|, Device id: 6661fcb1eb8496fafaa3b5be59d5380760a3a934 -2023-03-27 23:20:15.008254 + : pb-IF4OPhMg started kick vote for pb-IF49UnYRLQ==. -2023-03-27 23:20:45.016323 + : Kick vote End -2023-03-27 23:21:05.584428 + : pb-IF4eUBMTKA== ip: a~h~}jgaiaajf, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-27 23:21:33.728296 + : pb-IF41U2scIg== ip: a~h~}jgaiaajf, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 23:21:43.753824 + : pb-IF4XUBciMQ== ip: an~}h`aofaji, Device id: 6d604eee8f621d1d07352366a3e7a8430465457b -2023-03-27 23:21:46.763566 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`vvg, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-27 23:22:01.826065 + : pb-IF4XUBciMQ== ip: an~}h`aofaji, Device id: 6d604eee8f621d1d07352366a3e7a8430465457b -2023-03-27 23:23:11.089223 + : pb-IF5TUkZSVA== ip: axn~~o`aiaam, Device id: 2a7a80db1ca688d12460e4a8899b9bd36a5fb736 -2023-03-27 23:24:14.291112 + : pb-IF41U2scIg== ip: a~h~}jgaiaajf, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-27 23:24:29.334934 + : pb-IF49VFQlPA== ip: azo~{m~~`eaia{, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-27 23:24:31.316808 + : pb-IF4OPhMg started kick vote for pb-IF49UnYRLQ==. -2023-03-27 23:24:39.371673 + : pb-IF49VFQlPA== ip: azo~{m~~`eaia{, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-27 23:25:01.319314 + : Kick vote End -2023-03-27 23:26:02.667308 + : pb-IF4MU1ohLA== ip: azo~{o~}n~~ja, Device id: 1149745f3fb33083fbc946feeecced88c7251ea9 -2023-03-27 23:26:16.935770 + : pb-IF4DU0IEJg== started kick vote for pb-IF49UnYRLQ==. -2023-03-27 23:26:31.759970 + : pb-IF5TUkZSVA== ip: axn~~o`aiaam, Device id: 2a7a80db1ca688d12460e4a8899b9bd36a5fb736 -2023-03-27 23:26:46.942821 + : Kick vote End -2023-03-27 23:27:37.969933 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~~ma, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-27 23:27:48.012653 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~~ma, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-27 23:28:48.249543 + : pb-IF4uU0cEPA== ip: azo~{n~wn~}hg, Device id: a1a3c36bb89507f8385f2a8ba1047555972b7f55 -2023-03-27 23:30:55.895385 + : pb-IF4DU0IEJg== started kick vote for pb-IF5TUkZSVA==. -2023-03-27 23:31:25.895546 + : Kick vote End -2023-03-27 23:32:03.939749 + : pb-IF4jF1NY ip: azj~z`~}vgv, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-27 23:33:01.826128 + : pb-IF4OPhMg started kick vote for pb-IF5TUkZSVA==. -2023-03-27 23:33:31.828517 + : Kick vote End -2023-03-27 23:34:59.661385 + : pb-IF4lU3cFFw== ip: d|vbzh~~mfam, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-27 23:38:00.258552 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vavl, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-27 23:38:09.290953 + : pb-IF49VFQlPA== ip: azo~{m~~`eaia{, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-27 23:38:28.361755 + : pb-IF4gU3QONA== ip: dvvcyva{l~~`d, Device id: 212b2d0502dc4f150744b3f7552abfe96d000e0c -2023-03-27 23:44:49.736189 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|k~}if, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-03-27 23:47:21.226890 + : pb-IF5dU3UiAw== ip: azo~{a~yo~~o`, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-27 23:48:59.596281 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-27 23:50:28.933188 + : pb-IF49U0QJDw== ip: dvvcxva~o~~n`, Device id: 52e159e6debf4b869cb6bd30a26e268c72ceab36 -2023-03-27 23:58:36.702294 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-27 23:59:13.534264 + : pb-IF4gU3QONA== started kick vote for pb-IF4DU0IEJg==. -2023-03-27 23:59:43.540092 + : Kick vote End -2023-03-28 00:01:06.673017 + : pb-IF4DU0IEJg== started kick vote for pb-IF4CUBJfFA==. -2023-03-28 00:01:36.674222 + : Kick vote End -2023-03-28 00:03:15.732438 + : pb-JiNJARBZVkVHXl1HF0ZTXVNHEUJfQlJB ip: azj~zo~}jhakd, Device id: a339ea1ea5f14e84d570f9df718222d56de0140b -2023-03-28 00:03:22.755994 + : pb-IF4VU3laVA== ip: ak~~lhajaaje, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-28 00:04:07.900313 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|k~}if, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-03-28 00:04:35.021891 + : pb-IF40UngHMw== ip: azj~zo~}jcajg, Device id: f4b3f9cf534f9f2bbe897ad441d21346c379cd8c -2023-03-28 00:05:37.977526 + : pb-IF4DU0IEJg== started kick vote for pb-IF49VFQlPA==. -2023-03-28 00:05:56.301664 + : pb-IF4cU0kfUA== ip: hvd~vb~l~yn, Device id: df45720258668a73b6ad583cc0bf116ff953ea55 -2023-03-28 00:06:07.979351 + : Kick vote End -2023-03-28 00:09:20.693311 + : pb-IF4DU0IEJg== started kick vote for pb-IF4nUxE4Nw==. -2023-03-28 00:09:50.697306 + : Kick vote End -2023-03-28 00:10:19.256144 + : pb-IF4nU1kREw== ip: an~~adajbxva}l, Device id: 6ca43418ac03eedc96628c9e8716ddc8153592f3 -2023-03-28 00:13:52.156694 + : pb-IF4cU0kfUA== ip: hvd~vb~l~yn, Device id: df45720258668a73b6ad583cc0bf116ff953ea55 -2023-03-28 00:15:04.431974 + : pb-IF4NUxFfEg== ip: an~}hgaja}vf, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-03-28 00:19:38.537238 + : pb-IF4FU1daUA== ip: a~h~}jgalhana, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-28 00:21:10.931101 + : pb-IF4MU0cyIA== ip: a~o~}maanbak`, Device id: 9d540b8a0c291edf8950f13dd8864d32426e80dd -2023-03-28 00:22:29.294455 + : pb-IF5QV2kTAw== ip: a}j~~oba`aajay, Device id: f4800b0bf8497601863abd9e37acb5f089c9034d -2023-03-28 00:22:40.331902 + : pb-IF5QV2kTAw== ip: a}j~~oba`aajay, Device id: f4800b0bf8497601863abd9e37acb5f089c9034d -2023-03-28 00:24:02.623453 + : pb-IF4xUkwKIA== ip: ak~xo~~khaiaw, Device id: 29eafe60adf02ff0f8635b91072487f12411f5c5 -2023-03-28 00:28:25.603381 + : pb-IF4TUkgaBw== ip: azo~{n~y`~~ne, Device id: 2497b0425854eae663e25289df35eaa34cfab04e -2023-03-28 00:29:23.850831 + : pb-IF40UngHMw== ip: azj~zo~}jcajg, Device id: f4b3f9cf534f9f2bbe897ad441d21346c379cd8c -2023-03-28 00:30:08.028332 + : pb-IF5QV2kTAw== ip: a}j~~oba`aajay, Device id: f4800b0bf8497601863abd9e37acb5f089c9034d -2023-03-28 00:35:07.162153 + : pb-IF5VU3lYDA== ip: azj~z`~~`aai`, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-03-28 00:36:18.445232 + : pb-IF4OUBY-HA== ip: a|j~~mdancaj`x, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-03-28 01:06:41.209836 + : pb-IF4SUmwlVA== ip: dvvcyvd}vb|o, Device id: 6a6fcb695e4e475315c16eff4a8191b6b4a2c54c -2023-03-28 01:10:03.901637 + : pb-IF49VFQlPA== ip: azo~{m~~`eaia{, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-28 01:18:11.628512 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-28 01:34:18.035966 + : pb-IF4wUkwlJg== ip: b}k~~jcai`ajh, Device id: 485401927d6373a184b21306a151c08929ea22d3 -2023-03-28 01:39:02.042775 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-28 01:39:25.123482 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-28 01:55:08.381894 + : pb-IF4TV3RbDA== ip: an~zi~}lbaja{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-28 02:12:22.276578 + : pb-IF5VUlYhJw== ip: azo~{m~x`~~kb, Device id: 49aba9148ddf7a23b2257abcdb8b9b0f0e4cddc9 -2023-03-28 02:21:23.255791 + : pb-IF4IV04ZKw== ip: azj~z`~~heaicv, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-03-28 02:29:39.129515 + : pb-IF4wUkwlJg== ip: b}k~~jcai`ajh, Device id: 485401927d6373a184b21306a151c08929ea22d3 -2023-03-28 02:40:34.439394 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-28 02:56:00.677745 + : pb-IF5VUlYhJw== ip: azo~{m~x`~~kb, Device id: 49aba9148ddf7a23b2257abcdb8b9b0f0e4cddc9 -2023-03-28 03:22:17.183143 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-28 03:23:53.506501 + : pb-IF4wUkwlJg== ip: b}k~~jcai`ajh, Device id: 485401927d6373a184b21306a151c08929ea22d3 -2023-03-28 03:33:18.511561 + : pb-IF4TV3RbDA== ip: azo~{m~~``amd, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-28 03:48:39.018415 + : pb-IF4gUBAeMQ== ip: ak~}laajb{va{l, Device id: 8641a0abf6c56e942e815ca47328d09a6375ee2e -2023-03-28 04:26:27.252262 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-28 04:47:31.836478 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-28 06:41:11.169661 + : pb-IF4SVUYEPQ== ip: dvvc}vb|m~zj, Device id: 21f59c38f4379b67300402055b516558d8a192d9 -2023-03-28 06:41:26.205509 + : pb-IF4SVUYEPQ== ip: dvvc}vb|m~zj, Device id: 21f59c38f4379b67300402055b516558d8a192d9 -2023-03-28 07:19:19.867034 + : pb-IF4DU1I4CQ== ip: azj~z`~}ibaj, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-28 07:22:36.572677 + : pb-IF5QM1Zb ip: a|o~vo~~igaigw, Device id: 9387483cf5f8ac6f91ead0605dd6e2f99d4a07b5 -2023-03-28 07:27:58.809784 + : pb-IF4DU1I4CQ== ip: azj~z`~}ibaj, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-28 07:30:05.222141 + : pb-IF40U006LA== ip: b~j~~hdajbvvc, Device id: 8152065735a1adcc2e41d2fac46308736bb5eb90 -2023-03-28 07:31:46.615080 + : pb-IF40U006LA== ip: b~j~~hdajbvvc, Device id: 8152065735a1adcc2e41d2fac46308736bb5eb90 -2023-03-28 07:49:25.268438 + : pb-IF4qU1UPNQ== ip: a~i~vj~xk~~``, Device id: be2c903941b1f1de9e8b43bd34845f2cad8eab0c -2023-03-28 07:58:09.357485 + : pb-IF4FUhY6Dg== ip: a{i~~nhajfaiiz, Device id: b75a458a72512e2e57772a7beb64061a8733a4da -2023-03-28 08:11:24.018573 + : pb-IF4WU0wvVA== ip: dvvc}va{l~}k`, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-28 08:14:10.916876 + : pb-IF5XU247Cg== ip: a~o~~aeaiavava, Device id: abf43405e7333160f868a46f6cf92073d8f36db9 -2023-03-28 08:14:40.020227 + : pb-IF5XU247Cg== ip: a~o~~aeaiavava, Device id: abf43405e7333160f868a46f6cf92073d8f36db9 -2023-03-28 08:18:43.195023 + : pb-IF4GU1MnUA== ip: a|j~~mdanaaja|, Device id: bbd76a203d670339b31286c5c8bbb5a4739730bf -2023-03-28 08:19:39.363903 + : pb-JiNJARFcUUNFVVlHGUVZUFRDFUdeR1ZC ip: a~o~va~}m`ale, Device id: 015a0cb7e587ab697743ad4583f22be93ef627fd -2023-03-28 08:30:01.815894 + : pb-IF5TUhIyJg== ip: bk~~`iaihzvey, Device id: 0b6cc5cecd4afe35c3ac3b08fafc9f434b3fd43d -2023-03-28 08:31:35.222163 + : pb-IF5QU3AaLg== ip: ak~}m`aidzva|k, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-03-28 08:33:35.641589 + : pb-IF5XU247Cg== ip: a~o~~aeaiavava, Device id: abf43405e7333160f868a46f6cf92073d8f36db9 -2023-03-28 08:38:23.759102 + : pb-IF5QU3AaLg== ip: ak~}m`aidzva|k, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-03-28 08:39:57.288026 + : pb-IF4MU1I-Ug== ip: an~}heajb~vbh, Device id: 0755030795525198affa9ba929d5f68c52d03ae9 -2023-03-28 08:42:49.277436 + : pb-IF5QU3AaLg== ip: ak~}m`aidzva|k, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-03-28 08:44:55.687452 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 08:46:42.086259 + : pb-IF4IU28qPA== ip: azo~zi~~ldaiiy, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-03-28 08:48:24.428058 + : pb-IF4SXhUa ip: azj~z`~xh~~j, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-03-28 08:51:09.019336 + : pb-IF4DU1I4CQ== ip: azj~z`~}icamc, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-28 08:51:40.192467 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 08:54:54.060729 + : pb-IF4DU1I4CQ== started kick vote for pb-IF4wV24HBw==. -2023-03-28 08:55:09.066363 + : pb-IF4cUmZcFw== ip: bk~~abajd|vg}, Device id: f2e0b5fe43f7bc2229dc9b8a471cfd0d90e3b8dc -2023-03-28 08:55:24.064431 + : Kick vote End -2023-03-28 08:57:30.535447 + : pb-IF4sUBUjDA== ip: dxvc~vba~xh, Device id: 99dcfd3c00f04da5e6a7d3a6adc5c69dae97a86e -2023-03-28 08:57:44.602067 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`vvg{, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-28 08:58:21.746647 + : pb-IF4CUBNYHQ== ip: b}k~}jeai`{vavo, Device id: 2a0733d8c17795ac13404a4d45e302b7b092b532 -2023-03-28 08:58:44.319346 + : pb-IF4DU0IEJg== started kick vote for pb-IF5QU3AaLg==. -2023-03-28 08:59:14.325885 + : Kick vote End -2023-03-28 09:01:03.385260 + : pb-IF4GVUgILA== ip: ak~~nfajdzvb|h, Device id: 6b1f63340755372dea12b3552bc7e2eaedb5c368 -2023-03-28 09:01:31.488132 + : pb-IF4cUmZcFw== ip: bk~~abajd|vg}, Device id: f2e0b5fe43f7bc2229dc9b8a471cfd0d90e3b8dc -2023-03-28 09:04:43.232605 + : pb-IF4FU2QiKQ== ip: an~}i`ajb~vd}, Device id: 9aeaea5032ef8172cbd1a983cc17ea18a73e3466 -2023-03-28 09:12:42.781089 + : pb-IF4yVFgOVA== ip: ak~~naaid{vb~, Device id: d854623f8a8ec9715c4cf1e44f2a453d5344d791 -2023-03-28 09:17:18.392616 + : pb-IF43UBdfJg==|| kicked > new account -2023-03-28 09:18:02.229489 + : pb-IF5VUBgPNQ== ip: azj~z`~}icaih~, Device id: 5d9be131f99cfc8dae6a8dcdd2d769538914a0f1 -2023-03-28 09:19:14.583191 + : pb-IF4wV24HBw== ip: a~o~va~~ahajc|, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 09:23:24.077908 + : pb-IF4nUBcnPQ==|| kicked > new account -2023-03-28 09:29:15.162519 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-03-28 09:32:13.075052 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`vvg{, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-28 09:33:20.185323 + : pb-IF4DU0IEJg== started kick vote for pb-IF4wV24HBw==. -2023-03-28 09:33:25.743453 + : pb-IF4wV24HBw== kicked by kickvotes. -2023-03-28 09:34:00.654662 + : pb-IF4SXhUa ip: azj~z`~xh~~j, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-03-28 09:34:24.752823 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`vvg{, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-28 09:39:50.983485 + : pb-IF5cUmoPHA== ip: am~}keaic~vh}, Device id: 56bff8edf781d7a409fdbcf2b31c4b0867f268a8 -2023-03-28 09:47:24.731940 + : pb-IF5dU3UiAw== ip: evvi}vbyvcy, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-28 09:47:27.740345 + : pb-IF5SUkwMAg== ip: dvvcyvah~~ki, Device id: a437c2a1793c75d0da48b9b93a0f30175d79dd89 -2023-03-28 09:48:06.897331 + : pb-IF4sU1NeEw== ip: azo~|`~}meaah, Device id: 4cf1746c2eedb7a84afe786c15803dd804dd5a3e -2023-03-28 09:48:49.260086 + : pb-IF5SUkwMAg== started kick vote for pb-IF4DU0IEJg==. -2023-03-28 09:49:19.266082 + : Kick vote End -2023-03-28 09:53:10.341317 + : pb-IF40U08OJg== ip: azj~z`~}l~~je, Device id: 73fb8906259f6a73deedd9d12ce5035ed5e173c4 -2023-03-28 10:01:19.593926 + : pb-IF4-JUgB ip: ak~~j`aje}vfv, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-28 10:01:41.688434 + : pb-IF4CUm4jHw== ip: awk~wo~|n~{k, Device id: ebecf3c32c3476872c21d9471ff6690d64f0b970 -2023-03-28 10:02:59.983967 + : pb-IF4-JUgB ip: ak~~j`aje}vfv, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-28 10:10:35.001913 + : pb-IF4-JUgB ip: ak~~j`aje}vfv, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-28 10:10:54.314942 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 10:11:48.494308 + : pb-IF4sUBUjDA== ip: azo~|o~}hbald, Device id: 99dcfd3c00f04da5e6a7d3a6adc5c69dae97a86e -2023-03-28 10:12:50.715585 + : pb-IF4GU1MnUA== ip: a|j~~mdanaajc}, Device id: bbd76a203d670339b31286c5c8bbb5a4739730bf -2023-03-28 10:14:13.988019 + : pb-IF4cUmZcFw== ip: bk~~abajcwva|n, Device id: f2e0b5fe43f7bc2229dc9b8a471cfd0d90e3b8dc -2023-03-28 10:18:58.986212 + : pb-IF4VU3laVA== ip: ak~~`dajcwve~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-28 10:22:25.695865 + : pb-IF4AVXgOUw== ip: azo~{`~~ibaii{, Device id: 2f2e18f9ec7d1f1fb2a3b8548ee3ab5ce9f90be6 -2023-03-28 10:24:37.312880 + : pb-IF4sVRAkEQ== ip: b}k~~ogajb~vaza, Device id: 6778d67d35aba416315727a0dfd5d4bcce7661a1 -2023-03-28 10:24:59.372998 + : pb-IF4oVFIMIQ== ip: azo~|k~}m`aiey, Device id: f61848e7b07e78e51461c5fd363de1814b43f1c4 -2023-03-28 10:25:22.433028 + : pb-IF4-U1YOKA== ip: azj~z`~}vazm, Device id: 4319f9ee1117e0eaee6173b416891eaad06d8a8c -2023-03-28 10:26:48.725852 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 10:28:11.013260 + : pb-IF4DU1I4CQ== ip: azj~z`~}icaiex, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-28 10:28:30.312882 + : pb-IF5SUkwMAg== started kick vote for pb-IF4oVFIMIQ==. -2023-03-28 10:29:00.317101 + : Kick vote End -2023-03-28 10:30:56.692181 + : pb-IF5cUkwjDA== ip: dvvcyvb~l~}ic, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-03-28 10:32:00.441746 + : pb-IF5SUkwMAg== started kick vote for pb-IF5cUkwjDA==. -2023-03-28 10:32:30.444406 + : Kick vote End -2023-03-28 10:33:59.350509 + : pb-IF5RU1Y4Bg== ip: azj~z`~}heai`w, Device id: ff18b05a90b05048a8f6bfeebc39ca19d22e6758 -2023-03-28 10:34:44.484876 + : pb-IF5RU1Y4Bg== ip: azj~z`~}heai`w, Device id: ff18b05a90b05048a8f6bfeebc39ca19d22e6758 -2023-03-28 10:35:06.585889 + : pb-IF5dVWEJMg== ip: azo~{a~xk~|j, Device id: 5ab7cb7a5f685d0d0dc98dafbdb2ce8610260d79 -2023-03-28 10:35:33.711819 + : pb-IF5QU3AaLg== ip: dvvc{vgzvgv, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-03-28 10:36:09.839870 + : pb-IF5QU3AaLg== ip: ak~}m`aidzva|k, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-03-28 10:36:42.962207 + : pb-IF4cIGYH ip: b}k~}jgamfao, Device id: 60bf2d3a03a5f6dc5b210298f02b4ae5c76ad121 -2023-03-28 10:36:44.964756 + : pb-IF5TUhIyJg== ip: bk~~`iaihzviw, Device id: 0b6cc5cecd4afe35c3ac3b08fafc9f434b3fd43d -2023-03-28 10:38:02.750005 + : pb-IF4cIGYH started kick vote for pb-IF5TUhIyJg==. -2023-03-28 10:38:32.752082 + : Kick vote End -2023-03-28 10:39:11.892467 + : pb-IF4cU1AjDw== ip: azo~{m~~odaa, Device id: 23d67137d6aa4be21a991ed949cf0b73dc376a7a -2023-03-28 10:39:37.980236 + : pb-IF40UmUMEg== ip: a}j~~nhajcyvayo, Device id: 7871fcf2cb1081a5de7b5b7b3bfc84148565e630 -2023-03-28 10:40:03.052173 + : pb-IF4SUmwlVA== ip: dvvcyvdvb}, Device id: 6a6fcb695e4e475315c16eff4a8191b6b4a2c54c -2023-03-28 10:41:47.735785 + : pb-IF5TUhIyJg== ip: bk~~`iaihzviw, Device id: 0b6cc5cecd4afe35c3ac3b08fafc9f434b3fd43d -2023-03-28 10:42:39.934448 + : pb-IF5TUhIyJg== ip: bk~~`iaihzviw, Device id: 0b6cc5cecd4afe35c3ac3b08fafc9f434b3fd43d -2023-03-28 10:42:44.947779 + : pb-IF5TUhIyJg== ip: bk~~`iaihzviw, Device id: 0b6cc5cecd4afe35c3ac3b08fafc9f434b3fd43d -2023-03-28 10:43:27.075932 + : pb-IF4FD1c8 ip: azo~{n~xa~}hi, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-03-28 10:43:32.106369 + : pb-IF4-U1kpEQ== ip: dvvcxvavk~~kd, Device id: 928fbe92e5d31e258136337f212187c5f24471f1 -2023-03-28 10:43:41.143396 + : pb-IF4dVVUtKw== ip: azo~{n~wa~zi, Device id: 8b02fce1d1907e68889a17157f87c32854efbda1 -2023-03-28 10:44:22.297825 + : pb-IF5TUhIyJg== ip: bk~~`iaihzviw, Device id: 0b6cc5cecd4afe35c3ac3b08fafc9f434b3fd43d -2023-03-28 10:44:29.324274 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 10:46:29.042618 + : pb-IF4DUBciJw==|| kicked > new account -2023-03-28 10:47:08.890926 + : pb-IF4DU1I4CQ== ip: azj~z`~}ica`b, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-28 10:47:51.027884 + : pb-IF4WU0wvVA== ip: dvvc}va{l~}k`, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-28 10:49:02.430456 + : pb-IF4FUlRfAg== ip: b}k~~afaii|vdv, Device id: aba5ff826ae810b393bf32d5a9009055e5984479 -2023-03-28 10:50:56.870432 + : pb-IF5WUBdTHQ== ip: an~}igaifxvaw, Device id: f37929008d528ebea1c08bac985c44fe81649fd1 -2023-03-28 10:51:51.082041 + : pb-IF4cU1AjDw== started kick vote for pb-IF4wV24HBw==. -2023-03-28 10:51:55.353086 + : pb-IF40VRIbJg== ip: an~~afa`fajez, Device id: 10bb61f2761dcc779f19f3263fa3407a620db0fe -2023-03-28 10:52:21.087584 + : Kick vote End -2023-03-28 10:53:31.852402 + : pb-IF40VRIbJg== started kick vote for pb-IF4SUmwlVA==. -2023-03-28 10:54:01.855158 + : Kick vote End -2023-03-28 10:58:16.017625 + : pb-IF4FU1daUA== ip: a~h~}jgamiaiey, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-28 10:58:16.600342 + : pb-IF40VRIbJg== started kick vote for pb-IF4FUlRfAg==. -2023-03-28 10:58:42.480852 + : pb-IF4FU1daUA== ip: a~h~}jgamiaiey, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-28 10:58:46.604330 + : Kick vote End -2023-03-28 10:58:51.514552 + : pb-IF4OU1IZVg== ip: a|o~vo~~iiaj`, Device id: 541973653043d7f242ff3b1078194e8678f82921 -2023-03-28 10:58:54.526361 + : pb-IF5TUhIyJg== ip: bk~~`iaihzviw, Device id: 0b6cc5cecd4afe35c3ac3b08fafc9f434b3fd43d -2023-03-28 11:00:10.814513 + : pb-IF4rU1NSCQ== ip: ak~~lhaneajdx, Device id: b9c3352b2e95b39c37cd507d48b8af461fab17f8 -2023-03-28 11:03:00.844641 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 11:04:31.233028 + : pb-IF4FUlRfAg== ip: b}k~~afaii|vdv, Device id: aba5ff826ae810b393bf32d5a9009055e5984479 -2023-03-28 11:04:58.568903 + : pb-IF4FUlRfAg== ip: b}k~~afaii|vdv, Device id: aba5ff826ae810b393bf32d5a9009055e5984479 -2023-03-28 11:05:07.595321 + : pb-IF40UhVdVA== ip: azo~{a~}jeaii}, Device id: be0d9bda405f8ebbd3828aea1038b0dce08e65fb -2023-03-28 11:05:12.897441 + : pb-IF4wV24HBw== started kick vote for pb-IF5TUhIyJg==. -2023-03-28 11:05:42.904597 + : Kick vote End -2023-03-28 11:07:27.258524 + : pb-IF5TUhIyJg== ip: bk~~`iaihzviw, Device id: 0b6cc5cecd4afe35c3ac3b08fafc9f434b3fd43d -2023-03-28 11:08:57.578423 + : pb-IF4GUBctCg== ip: azj~zo~}i~~`, Device id: d984982edcbbc276e8684193ba95a3eb9423ad2a -2023-03-28 11:10:33.916970 + : pb-IF5cV044Jw== ip: a~o~v`~}n~vo, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-03-28 11:11:02.002102 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 11:11:17.047015 + : pb-IF4wV24HBw== ip: a~o~va~~aiajc|, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 11:11:38.136512 + : pb-IF4RU3g9Lw== ip: ak~~j`aje}vfv, Device id: 573d51d73ee5bdbc9cd6ce321fb00cfe34f7acec -2023-03-28 11:13:47.849324 + : pb-IF4wV24HBw== ip: a~o~va~~aiajc|, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 11:16:35.643252 + : pb-IF4RU3g9Lw== ip: ak~~j`aje}vfv, Device id: 573d51d73ee5bdbc9cd6ce321fb00cfe34f7acec -2023-03-28 11:18:46.117577 + : pb-IF40U3MyVQ== ip: b}k~}kcaocajc~, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-28 11:21:09.592176 + : pb-IF40UhVdVA== started kick vote for pb-IF4RU3g9Lw==. -2023-03-28 11:21:17.758463 + : pb-IF4FUlRfAg== ip: b}k~~afaii|vdv, Device id: aba5ff826ae810b393bf32d5a9009055e5984479 -2023-03-28 11:21:31.141342 + : Kick vote End -2023-03-28 11:23:30.686991 + : pb-IF4GUBctCg== started kick vote for pb-IF4FUlRfAg==. -2023-03-28 11:24:00.692221 + : Kick vote End -2023-03-28 11:25:20.623967 + : pb-IF4qU1MDVg== ip: an~}heaj`yvg}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-28 11:25:38.670223 + : pb-IF4qU1MDVg== ip: an~}heaj`yvg}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-28 11:27:29.024117 + : pb-IF5WUBEqHw== ip: an~}hbai`vva{m, Device id: c3f216648bb3f8c6c9bc4164d352a554aa85f67e -2023-03-28 11:30:08.546929 + : pb-IF4vV0g8Mw== | kicked > reason:Banned account -2023-03-28 11:32:28.032893 + : pb-IF4wV24HBw== ip: a~o~va~~aiajc|, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 11:33:17.209410 + : pb-IF4qU1MDVg== ip: an~}heaj`yvg}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-28 11:34:28.456427 + : pb-IF4rU1NSCQ== ip: ak~~lhaneajdx, Device id: b9c3352b2e95b39c37cd507d48b8af461fab17f8 -2023-03-28 11:43:59.273178 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-28 11:43:59.273347 + : pb-IF4FUlRfAg== ip: b}k~~afaii|vdv, Device id: aba5ff826ae810b393bf32d5a9009055e5984479 -2023-03-28 11:44:04.272694 + : pb-IF4FUlRfAg== ip: b}k~~afaii|vdv, Device id: aba5ff826ae810b393bf32d5a9009055e5984479 -2023-03-28 11:44:27.350036 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-28 11:46:31.754027 + : pb-IF4eU0s9Pw== ip: a~a~vl~yl~vo, Device id: 79ff602d98582d9885d769eec06b4ebd8aab0aad -2023-03-28 11:46:58.861124 + : pb-IF4HU1EGMw== ip: an~}jbai`ajcv, Device id: ef93e27351460c612a428ea541142f76f669e29b -2023-03-28 11:50:28.549706 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-28 11:56:01.711919 + : pb-IF4cU1AjDw== ip: azo~{m~~niaif~, Device id: 23d67137d6aa4be21a991ed949cf0b73dc376a7a -2023-03-28 11:56:39.850364 + : pb-IF4oUnVaNg== ip: dvvcxvba~vi, Device id: ea9e94a58d7b30a6aa34f61e1f2125a3e555fcda -2023-03-28 11:57:24.008051 + : pb-IF4nUxE4Nw== ip: a~o~va~}lfaigz, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-28 11:58:51.335944 + : pb-IF4wV24HBw== ip: a~o~va~~aiajc|, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 12:06:32.931615 + : pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL ip: dvvc{vazn~zh, Device id: a61172de41bee6c6202d757a57288fd637e3ec13 -2023-03-28 12:07:19.107051 + : pb-IF4qU1MDVg== ip: an~}heaj`}vg}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-28 12:07:23.124016 + : pb-IF4pUxkdPA== ip: awk~wo~yj~vm, Device id: a25751ba0affdb4e5897f44e1293ea9aba3bbd47 -2023-03-28 12:17:32.464886 + : pb-IF4eUBc7IA==|| kicked > new account -2023-03-28 12:18:15.318597 + : pb-IF4qU1MDVg== ip: an~}heaj`}vg}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-28 12:18:31.388714 + : pb-IF4eVUJdDQ== ip: dzvf{vb~h~~nc, Device id: 00aea33cef73e6fdcd33dcd5bd7722328b8194f4 -2023-03-28 12:19:08.533429 + : pb-IF4SUnMKEw== ip: aakhaif{vavh, Device id: 6e8257dc74a0980eaba7afb2e0a07216e88e6214 -2023-03-28 12:19:45.643438 + : pb-IF41U2scIg== ip: a~h~}jgaiaaif, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-28 12:20:58.883851 + : pb-IF4qU1MDVg== ip: an~}heaj`}vg}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-28 12:23:49.795008 + : pb-IF4qU1MDVg== started kick vote for pb-IF4eVUJdDQ==. -2023-03-28 12:24:19.797611 + : Kick vote End -2023-03-28 12:24:48.715937 + : pb-IF4SUBUnHQ== ip: azo~{l~~`bajby, Device id: 8f97f11d05faeb362728307053096251d73ea97f -2023-03-28 12:25:28.860557 + : pb-IF4WUBJcVQ== ip: azo~|j~}heajaz, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-03-28 12:26:36.096087 + : pb-IF4WUBJcVQ== ip: azo~|j~}heajaz, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-03-28 12:27:54.397045 + : pb-IF4WUBJcVQ== ip: azo~|j~}heajaz, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-03-28 12:28:04.538225 + : pb-IF4eVUJdDQ== started kick vote for pb-JiNJARBcXENAW19GFURXVFxDEkNWQVRF. -2023-03-28 12:28:05.435674 + : pb-IF4oUnVaNg== ip: dvvcxvba~vi, Device id: ea9e94a58d7b30a6aa34f61e1f2125a3e555fcda -2023-03-28 12:28:34.542004 + : Kick vote End -2023-03-28 12:30:06.905423 + : pb-IF4DU3Y5IA== ip: dvvcxvba~vi, Device id: 9faf0db94c852577746af3c0c793e97f59e5e1d5 -2023-03-28 12:32:01.294610 + : pb-IF4qU1MDVg== started kick vote for pb-IF4eVUJdDQ==. -2023-03-28 12:32:31.296895 + : Kick vote End -2023-03-28 12:34:04.781034 + : pb-IF4qU1MDVg== ip: an~}heaj`}vg}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-28 12:34:06.786640 + : pb-IF4VU3laVA== ip: ak~~`dajcwve~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-28 12:37:28.547284 + : pb-IF41U2scIg== ip: ak~}hhaniane, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-28 12:38:48.811792 + : pb-JiNJARFZUUpEWF5JFkdTXVdEEEVdQ1ZA ip: a~m~vn~}igajd, Device id: 05b0802de607045fa8518861defbab03e56a739f -2023-03-28 12:40:19.108005 + : pb-IF4pU1MJIw== ip: azo~{n~~ngala, Device id: 980fcde0872cfae69d1a58d61a9917876d2a23b3 -2023-03-28 12:40:29.147944 + : pb-IF4pU0QzBg== ip: azj~z`~|a~}i, Device id: 06aa1e91d8bb19d850c1915e1e6fa814139a445e -2023-03-28 12:45:22.228542 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-03-28 12:50:24.281587 + : pb-IF4tCRgv ip: a}j~~naaogajcz, Device id: 8c50b5e94f4fedbbbc30c1fd2d39bf3275ea8fc5 -2023-03-28 12:53:17.208637 + : pb-IF4VUBYaCQ==|| kicked > new account -2023-03-28 13:00:45.522528 + : pb-IF4qU1MDVg== ip: an~}heaj`~vg}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-28 13:00:54.565305 + : pb-IF4qU1MDVg== ip: an~}heaj`~vg}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-28 13:02:36.954970 + : pb-IF5RU3AjNA== ip: azo~zi~~icaiix, Device id: cbfdfe924e116c9e077df6b122ca58243b2ab515 -2023-03-28 13:08:25.151772 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-03-28 13:09:38.425545 + : pb-IF4qU1MDVg== ip: an~}heaj`~vg}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-28 13:09:54.478517 + : pb-IF40U3MyVQ== ip: b}k~}kcaocajc~, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-28 13:10:57.720891 + : pb-IF5XU0IZAA== ip: an~~agalaaif~, Device id: ddb00bd5e7cc7f8e199e075b85259ba799bfdc4e -2023-03-28 13:11:35.342052 + : pb-IF4tCRgv started kick vote for pb-IF40U3MyVQ==. -2023-03-28 13:12:05.347084 + : Kick vote End -2023-03-28 13:12:10.017301 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 13:14:56.581263 + : pb-IF4VU3laVA== ip: ak~~`dajcwve~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-28 13:15:29.836938 + : pb-IF41U2scIg== ip: ak~}hhaniane, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-28 13:16:02.943090 + : pb-JiNJARFcUUpHVV9FEENUUFBFGUVWRVlG ip: azo~{n~wk~~`, Device id: 55e8c71cbc1356d191114f256e59af91cf994da1 -2023-03-28 13:16:06.956001 + : pb-IF4zU2MgJw== ip: a}l~~meajezva|j, Device id: 5b13413ad2a035b34073c5918da9363afe5b8217 -2023-03-28 13:18:33.415616 + : pb-IF4cUktZNg== ip: a~h~}keajcwva, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-03-28 13:18:54.478263 + : pb-IF41U2scIg== ip: ak~}hhaniane, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-28 13:19:56.712987 + : pb-IF4CUxMeFA== ip: a~o~}jbaj`yva{j, Device id: ef8e7f0d71e9ea7b8eb0fc99500c14c870a6a6af -2023-03-28 13:20:50.024061 + : pb-IF4tCRgv started kick vote for pb-IF4CUxMeFA==. -2023-03-28 13:21:20.028714 + : Kick vote End -2023-03-28 13:23:22.196876 + : pb-IF4qU1MDVg== started kick vote for pb-IF4CUxMeFA==. -2023-03-28 13:23:52.203888 + : Kick vote End -2023-03-28 13:24:50.857207 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-28 13:25:58.160945 + : pb-IF4FUBUxVA== ip: a|o~vo~~heanh, Device id: cee2d137fba82dc22b16cc307eb49fa29c7d2beb -2023-03-28 13:27:59.832929 + : pb-IF4qU1MDVg== started kick vote for pb-IF4CUxMeFA==. -2023-03-28 13:28:26.754076 + : pb-IF4VU3laVA== ip: ak~~`dajcwve~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-28 13:28:29.839827 + : Kick vote End -2023-03-28 13:30:05.126419 + : pb-IF4GUBMPFA== ip: azj~z`~}i`aid~, Device id: d80196558d9b89c8c7dc7dc8e9f787f49091c937 -2023-03-28 13:30:40.914980 + : pb-IF4cUktZNg== started kick vote for pb-IF4CUxMeFA==. -2023-03-28 13:31:10.917074 + : Kick vote End -2023-03-28 13:31:31.482704 + : pb-IF4jF1NY ip: a~j~xa~xj~}le, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-28 13:32:16.621447 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vavl, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-28 13:32:57.746653 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-03-28 13:35:06.097837 + : pb-IF4cUktZNg== started kick vote for pb-IF4GUBMPFA==. -2023-03-28 13:35:27.310063 + : pb-IF4GUBMPFA== kicked by kickvotes. -2023-03-28 13:35:40.329731 + : pb-IF4wV24HBw== ip: a~o~va~~aiajc|, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 13:35:51.349802 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 13:35:55.360748 + : pb-IF4TV3RbDA== ip: azo~{m~~a`akc, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-28 13:36:51.576592 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-03-28 13:38:06.990031 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-28 13:41:21.725887 + : pb-IF4VU3laVA== ip: ak~~`dajcwve~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-28 13:43:52.271225 + : pb-IF4OPhMg ip: a~o~vo~~aganh, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-03-28 13:44:13.362611 + : pb-IF40U3MyVQ== ip: b}k~}kcaocajc~, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-28 13:45:09.592962 + : pb-IF4hU3EgJA== ip: azo~{l~~kiaid, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-03-28 13:45:12.609739 + : pb-IF4XVXAcKg== ip: azo~|j~vj~~oi, Device id: 6fd760bd82d0d0621d454565c14e074498b43c14 -2023-03-28 13:46:28.882954 + : pb-IF5UU3AyNw== ip: an~}iaamfajcy, Device id: 0410dd8d0a6a40087042f6ce4f032ae36ea3a90d -2023-03-28 13:48:17.258148 + : pb-IF5UU3AyNw== ip: an~}iaamfajcy, Device id: 0410dd8d0a6a40087042f6ce4f032ae36ea3a90d -2023-03-28 13:48:40.337475 + : pb-IF49UnYRLQ== ip: dvvcyvba~zi, Device id: 690c3f7ca525541fd6d368f95dd77e48836a2345 -2023-03-28 13:52:49.094514 + : pb-IF49UnYRLQ== started kick vote for pb-IF5UU3AyNw==. -2023-03-28 13:53:19.098038 + : Kick vote End -2023-03-28 13:54:55.856895 + : pb-IF4FU1daUA== ip: azo~|l~|j~}ib, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-28 13:55:45.004298 + : pb-IF4FU1daUA== ip: azo~|l~|j~}ib, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-28 13:56:58.297847 + : pb-IF4LU1RdUg== ip: azo~{m~~hhaod, Device id: 013ebdc40cb805919e389d339fe790db1aeaa296 -2023-03-28 13:57:23.412939 + : pb-IF4TUBNTFw== ip: a~k~}iaaja~vbz, Device id: 6f7c0f79ceb5ca9ff331e6b47c7980fab79b99c2 -2023-03-28 13:57:38.646724 + : pb-IF4vVRUFVA== started kick vote for pb-IF49UnYRLQ==. -2023-03-28 13:58:08.652880 + : Kick vote End -2023-03-28 13:59:20.835538 + : pb-IF4FU1daUA== ip: a~h~}jgambaj`~, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-28 14:00:48.130862 + : pb-IF5QM1Zb ip: a|o~vo~~jaaifv, Device id: 9387483cf5f8ac6f91ead0605dd6e2f99d4a07b5 -2023-03-28 14:01:12.214630 + : pb-IF4MU1I-Ug== ip: an~}heajb~vbh, Device id: 0755030795525198affa9ba929d5f68c52d03ae9 -2023-03-28 14:01:40.320464 + : pb-IF4nU1kREw== ip: an~~acaifzvbl, Device id: 6ca43418ac03eedc96628c9e8716ddc8153592f3 -2023-03-28 14:02:08.403045 + : pb-IF42UBY4XA== ip: an~}j`a`famb, Device id: b5a077397cda4c52e0ce3401a35f58f0150bd61f -2023-03-28 14:04:45.902651 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 14:05:23.071297 + : pb-IF4SXhUa ip: azj~z`~xh~}ic, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-03-28 14:08:10.778145 + : pb-IF4OPhMg started kick vote for pb-IF4wV24HBw==. -2023-03-28 14:08:40.783078 + : Kick vote End -2023-03-28 14:08:48.839001 + : pb-IF4OU1IZVg== ip: azo~{l~}haajcv, Device id: 541973653043d7f242ff3b1078194e8678f82921 -2023-03-28 14:10:40.276871 + : pb-IF4qU1MDVg== ip: an~}heaiivvg}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-28 14:13:40.921820 + : pb-IF4vUBUhUw== ip: azj~zo~~kdaji, Device id: 3fe7416e77593a78e55532306e93b20c96c5fdfb -2023-03-28 14:14:52.205897 + : pb-IF4DU1I4CQ== ip: b}k~~`bajc~vayi, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-28 14:15:20.309076 + : pb-IF4LU0wKIw== ip: azj~zo~}hhajf, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-03-28 14:16:06.815628 + : pb-IF5RUBkEIQ==|| kicked > new account -2023-03-28 14:16:16.847054 + : pb-IF5RUBkEUg==|| kicked > new account -2023-03-28 14:17:43.824867 + : pb-IF4nU1kREw== ip: an~~acaifzvbl, Device id: 6ca43418ac03eedc96628c9e8716ddc8153592f3 -2023-03-28 14:20:44.778494 + : pb-IF4TV3RbDA== ip: azo~{m~~hfaj`z, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-28 14:22:41.192258 + : pb-IF4iUmsSDw== ip: a}j~~naambakf, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-03-28 14:24:10.603844 + : pb-IF4LU1RdUg== ip: azo~{m~~hhaod, Device id: 013ebdc40cb805919e389d339fe790db1aeaa296 -2023-03-28 14:25:30.143996 + : pb-IF5dVWEJMg== ip: a~o~}jbaieyvawk, Device id: 3939fc10737ad53f783649761bea48dc2b3522f7 -2023-03-28 14:27:28.045841 + : pb-IF4LU0wKIw== started kick vote for pb-IF4TV3RbDA==. -2023-03-28 14:27:51.815037 + : pb-IF4jF1NY ip: azj~z`~vah, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-28 14:27:58.046667 + : Kick vote End -2023-03-28 14:28:13.894878 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 14:28:54.183621 + : pb-IF4jF1NY ip: a~j~xa~xj~}le, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-28 14:30:17.746898 + : pb-IF4wV24HBw== started kick vote for pb-IF4TV3RbDA==. -2023-03-28 14:30:30.195155 + : pb-IF4TV3RbDA== kicked by kickvotes. -2023-03-28 14:31:10.624444 + : pb-IF4qU1MDVg== ip: an~}heaj`|vg}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-28 14:33:00.047080 + : pb-IF4OUBQTPQ== ip: dvvc}vb~m~|m, Device id: dfd8ecf8d9cbc88d01bd46d731f12860410ec198 -2023-03-28 14:33:28.193594 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-28 14:34:01.299684 + : pb-IF4jF1NY ip: a~j~xa~xj~}le, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-28 14:34:03.305287 + : pb-IF5cUBUTDA== ip: ak~}ldaid|va, Device id: 4aeb855e84ca3f6b51ef3eaec43164c9dbb4ca18 -2023-03-28 14:34:59.477290 + : pb-IF4NUxFfEg== ip: bxvf}vbzi~x`, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-03-28 14:36:10.898119 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-28 14:40:54.961006 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 14:41:21.069157 + : pb-IF41V0JSKw== ip: b}k~}kca`gand, Device id: 3c3d4437aa477e401130b78d51ed8012ba96c750 -2023-03-28 14:41:50.579521 + : pb-IF4vVRUFVA== started kick vote for pb-IF4NUxFfEg==. -2023-03-28 14:42:20.588710 + : Kick vote End -2023-03-28 14:44:06.109398 + : pb-IF4yU3RZEw== ip: ak~~nfajd{vd}, Device id: bc5e48c8043538349b7f6853bb5b9e2b63d2fefd -2023-03-28 14:44:56.304645 + : pb-IF4yU3RZEw== ip: ak~~nfajd{vd}, Device id: bc5e48c8043538349b7f6853bb5b9e2b63d2fefd -2023-03-28 14:45:45.702655 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-28 14:46:50.962126 + : pb-IF41U2scIg== ip: ak~}hhaniane, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-28 14:47:01.072008 + : pb-IF4AV1QqEQ== ip: an~}ica`gaia}, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-03-28 14:47:54.273488 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-28 14:49:08.536623 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-28 14:50:41.860831 + : pb-IF41U2scIg== ip: ak~}hhaniane, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-28 14:51:09.963808 + : pb-IF41U2scIg== ip: ak~}hhaniane, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-28 14:54:12.795176 + : pb-IF4IU1c6Ug== ip: azj~z`~|m~za, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-28 14:55:12.506819 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4MU1gsBg==. -2023-03-28 14:55:42.514876 + : Kick vote End -2023-03-28 14:58:48.806705 + : pb-IF4pU3EMUQ== ip: b}k~~`haliaia~, Device id: 97647d0d8df774d90bd3533f7df35bd9e542e319 -2023-03-28 14:59:39.963746 + : pb-IF4TUlgePw== ip: b}k~}jhai`va|l, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-28 15:01:14.543156 + : pb-IF4DV2ItCQ== ip: ak~~naaid{va~a, Device id: 5bba8fcd2bdbd1349061cdcfb59066eec13d9afc -2023-03-28 15:03:44.096828 + : pb-IF4lU3cFFw== ip: an~}icajd|vaxm, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-28 15:04:14.202192 + : pb-IF5cUBMdCQ== ip: an~}icajd|vaxm, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-28 15:04:42.318029 + : pb-IF5cUBMdCQ== ip: an~}icajd|vaxm, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-28 15:05:42.539595 + : pb-IF4TV3RbDA== ip: azo~{m~~jcaif}, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-28 15:06:33.611093 + : pb-IF4wV24HBw== started kick vote for pb-IF4TV3RbDA==. -2023-03-28 15:07:03.614810 + : Kick vote End -2023-03-28 15:07:05.107078 + : pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL ip: dvvc{vazj~~jb, Device id: a61172de41bee6c6202d757a57288fd637e3ec13 -2023-03-28 15:08:32.440753 + : pb-IF4sU1EeAA== ip: b}k~}kaajbvvbv, Device id: a4ccc2a4110c9b63a5fd073bee5f4d32900d0444 -2023-03-28 15:09:45.690161 + : pb-IF5UVRYYNw== ip: azj~zo~~afaiiz, Device id: 0b1d13eca1ec50cde8b2666fdfede7cf68928ec2 -2023-03-28 15:10:12.781232 + : pb-IF4JUBYjJA== ip: dvvcxvb}l~|l, Device id: b436e31eec9093312042edbc3cfebc8c65dd8e13 -2023-03-28 15:10:27.847407 + : pb-IF4SU1YeJA== ip: azo~zi~~`caig, Device id: d6f5886cc86c1dedde8f4a359cdcf28bf73a0bea -2023-03-28 15:10:43.887679 + : pb-IF4IVW0MVw== ip: evviwvb|n~zn, Device id: 0097d8138814c34ba1872bad50c053284743caec -2023-03-28 15:10:45.871786 + : pb-IF5cUBMdCQ== started kick vote for pb-IF4TV3RbDA==. -2023-03-28 15:11:15.874207 + : Kick vote End -2023-03-28 15:12:05.193106 + : pb-IF4KUBdfDQ== ip: azo~{o~xa~~of, Device id: e339480e7d27dc972494b5cff7f44466f9171972 -2023-03-28 15:12:31.301918 + : pb-IF41U2scIg== ip: ak~}hhaniane, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-28 15:13:44.554109 + : pb-IF4OU1IZVg== ip: azo~{l~}haajcv, Device id: 541973653043d7f242ff3b1078194e8678f82921 -2023-03-28 15:14:14.666277 + : pb-IF4IHmcZ ip: ak~x`~~n~}hg, Device id: 1cc7121532d5db65d5a8b12cf5c56c961f428eb3 -2023-03-28 15:14:35.751731 + : pb-IF5cUBMdCQ== started kick vote for pb-IF4TV3RbDA==. -2023-03-28 15:14:57.819072 + : pb-IF4LU20cEw== ip: a~o~va~}lfajax, Device id: 4dc931cefdd3131eaa4546cd0cefbffb299ae055 -2023-03-28 15:15:05.753273 + : Kick vote End -2023-03-28 15:15:31.930272 + : pb-IF4LU20cEw== ip: a~o~va~}lfajax, Device id: 4dc931cefdd3131eaa4546cd0cefbffb299ae055 -2023-03-28 15:17:04.277728 + : pb-IF40U3MyVQ== ip: b}k~}kcaocajc~, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-28 15:18:10.506288 + : pb-IF41U2scIg== ip: ak~}hhaniane, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-28 15:20:24.007125 + : pb-IF48UBUzCg== ip: azj~zo~}igamg, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-03-28 15:23:18.712539 + : pb-IF4sU1EeAA== ip: b}k~}kaajbvvbv, Device id: a4ccc2a4110c9b63a5fd073bee5f4d32900d0444 -2023-03-28 15:23:24.723923 + : pb-IF4sU1EeAA== ip: b}k~}kaajbvvbv, Device id: a4ccc2a4110c9b63a5fd073bee5f4d32900d0444 -2023-03-28 15:25:46.209950 + : pb-IF4wVVk8Jg== ip: dzva~m~vi~~m`, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-03-28 15:26:17.529123 + : pb-IF4IVW0MVw== ip: evviwvb|n~zn, Device id: 0097d8138814c34ba1872bad50c053284743caec -2023-03-28 15:27:57.896180 + : pb-IF4VU3laVA== ip: ak~~`dajcwve~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-28 15:28:36.081596 + : pb-IF4SA0Ye started kick vote for pb-IF41U2scIg==. -2023-03-28 15:28:49.049144 + : pb-IF4IVUYPKA== ip: an~}icaiganh, Device id: e8d33b09733da5e9ef097f53191dbbcf1b3f34b4 -2023-03-28 15:29:06.082605 + : Kick vote End -2023-03-28 15:29:25.171577 + : pb-IF4TV3RbDA== ip: azo~{m~~jfajd~, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-28 15:30:08.319576 + : pb-IF5cEEcx | kicked > reason:Banned account -2023-03-28 15:31:47.669660 + : pb-IF4hU04aKw== ip: ak~~idaaiak`, Device id: c22913cb5223b8d21a48862b84a5937084499f5b -2023-03-28 15:34:12.468296 + : pb-IF5UVRYYNw== ip: azj~zo~~afaiiz, Device id: 0b1d13eca1ec50cde8b2666fdfede7cf68928ec2 -2023-03-28 15:34:51.583172 + : pb-IF48UBUzCg== ip: azj~zo~}iaaih}, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-03-28 15:36:31.642379 + : pb-IF5cUBMdCQ== ip: an~}icajd|vaxm, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-28 15:36:34.659998 + : pb-IF5QM1Zb ip: ak~~`dajcvvgw, Device id: 9387483cf5f8ac6f91ead0605dd6e2f99d4a07b5 -2023-03-28 15:38:31.366401 + : pb-IF4OPhMg ip: a~o~vo~~aganh, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-03-28 15:40:08.122629 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5UVRYYNw==. -2023-03-28 15:40:38.123090 + : Kick vote End -2023-03-28 15:40:48.839666 + : pb-IF4AU1c_DA== ip: azo~|l~|m~xm, Device id: c9afabd569ca92ed9495db2cbdda9161b0e1fed2 -2023-03-28 15:41:24.092025 + : pb-IF4nUxE4Nw== ip: a~o~va~}laaigz, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-28 15:41:59.199918 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 15:47:48.646463 + : pb-IF4iDRhc ip: b}k~}kgaib|v`, Device id: e1ca34b2b0566d96684e6928d4c3e810beee4872 -2023-03-28 15:47:54.665092 + : pb-IF5VU0cyFg== ip: b}k~~`baiiwvg, Device id: f31146bc62d5792fe2910e4e990697b6a7bcbfa3 -2023-03-28 15:48:08.709263 + : pb-IF5TUBgIXQ== ip: azo~{j~}haajby, Device id: 39f7ed133c1275751e880d61b2a0acef8a158c3f -2023-03-28 15:48:43.880923 + : pb-IF4UU0k8Bg== ip: b}k~}kcaofaac, Device id: 8902dfce63903a0afedec25063775ad11f4ec491 -2023-03-28 15:49:22.011701 + : pb-IF5RUBgNIg== ip: azo~|j~~k~|i, Device id: 33e4884313f4cb96b056cf1454394cacd6e367e1 -2023-03-28 15:50:33.264026 + : pb-IF4sUhUGBA== ip: b}k~~`gaib}vfy, Device id: d30c3c5c96c7229b63875a4538eda07859bf6e55 -2023-03-28 15:51:22.751145 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-28 15:54:14.712312 + : pb-IF4iUmsSDw== ip: a}j~~naambakf, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-03-28 15:55:14.853489 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4wVVk8Jg==. -2023-03-28 15:55:35.306644 + : pb-IF4nUBQGKw== ip: dxvbvvdxvax`, Device id: bb9050a46ecd5383f4178ff2f1798da75260d445 -2023-03-28 15:55:44.856248 + : Kick vote End -2023-03-28 15:57:07.631968 + : pb-IF4vVRUFVA== ip: a~h~}jfai`zvazm, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-28 15:57:24.688325 + : pb-IF4PU0IpDA== ip: azo~{m~~leaii~, Device id: 4964cbbb7a37a2e1360efb6be26f14c89c61bd1d -2023-03-28 15:57:54.476152 + : pb-IF4VU3laVA== started kick vote for pb-IF4iUmsSDw==. -2023-03-28 15:58:24.481376 + : Kick vote End -2023-03-28 15:59:45.665515 + : pb-IF4AV1QqEQ== started kick vote for pb-IF48UBUzCg==. -2023-03-28 15:59:48.175843 + : pb-IF49U0QJDw== ip: dvvcxva~o~~n, Device id: 52e159e6debf4b869cb6bd30a26e268c72ceab36 -2023-03-28 16:00:13.249671 + : pb-IF5WU2M4AQ== ip: evviwvb|n~zn, Device id: cee73be41494abcb467381189be2a4a685a49254 -2023-03-28 16:00:15.666251 + : Kick vote End -2023-03-28 16:00:40.345824 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~~me, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-28 16:01:17.101254 + : pb-IF4wV24HBw== started kick vote for pb-IF4TV3RbDA==. -2023-03-28 16:01:47.102013 + : Kick vote End -2023-03-28 16:04:17.295012 + : pb-IF4OPhMg started kick vote for pb-IF5WU2M4AQ==. -2023-03-28 16:04:47.298858 + : Kick vote End -2023-03-28 16:06:35.622871 + : pb-IF5WU2M4AQ== ip: evviwvb|n~zn, Device id: cee73be41494abcb467381189be2a4a685a49254 -2023-03-28 16:08:01.968236 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 16:08:47.433937 + : pb-IF4TV3RbDA== started kick vote for pb-IF4wV24HBw==. -2023-03-28 16:09:17.437419 + : Kick vote End -2023-03-28 16:11:44.705829 + : pb-IF5WU2M4AQ== ip: azj~z`~xj~~of, Device id: cee73be41494abcb467381189be2a4a685a49254 -2023-03-28 16:12:08.778844 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~~me, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-28 16:12:54.920501 + : pb-IF5QVVAuJA== ip: an~}i`aidwvg{, Device id: 4e34a5f6bcd8ff274cf352a98d121a0c3fcc6962 -2023-03-28 16:14:14.511252 + : pb-IF4FU1IuMQ== ip: azo~zh~za~~lc, Device id: eed117997768760befc17edc471da5135ae48e98 -2023-03-28 16:15:30.763066 + : pb-IF4qU1MDVg== ip: bxvf|vizvb~m, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-28 16:15:53.202383 + : pb-IF4qU1MDVg== ip: bxvf|vizvb~m, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-28 16:16:40.400054 + : pb-IF4vU0MENg== ip: b}k~}keai~}hc, Device id: 6382f3717c6ac3650740a14e9d6ab4b67728a26a -2023-03-28 16:17:35.733882 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 16:18:15.822641 + : pb-IF40VEocAw== started kick vote for pb-IF4PU0IpDA==. -2023-03-28 16:18:34.949398 + : pb-IF41U2scIg== ip: ak~}hhaniane, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-28 16:18:45.822875 + : Kick vote End -2023-03-28 16:23:13.551945 + : pb-IF4CUBIvHw== ip: azj~z`~}ieaif|, Device id: 237f7e917094d2ae299a10a1b42491cc80e659a9 -2023-03-28 16:23:32.614561 + : pb-IF4oUxAGPQ== ip: azj~zo~}lcaif}, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-28 16:24:54.914789 + : pb-JiNJARFeVUZDW1xHFE9ZUldHGERfRlhA ip: azo~|k~yo~~o, Device id: 0132b0050e073ce9ad5b8198c4b2ebe49d28fce3 -2023-03-28 16:24:58.935256 + : pb-JiNJARFTVEREXV1CEkVQV1VKE0dfR1JD ip: dvvcyvb|`~|l, Device id: 72aff4d2e73250f0c96627f6c80bc24144e2601b -2023-03-28 16:25:01.948497 + : pb-IF4gU0wxBw== ip: ak~}hhaniane, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-28 16:25:28.055955 + : pb-JiNJARFTVEREXV1CEkVQV1VKE0dfR1JD ip: dvvcyvb|`~|l, Device id: 72aff4d2e73250f0c96627f6c80bc24144e2601b -2023-03-28 16:26:51.323223 + : pb-IF4yVUkSHw== ip: an~}hfaii{vawl, Device id: 6e08787b7ab8621940e8fd9665b2dba75d6806e6 -2023-03-28 16:28:29.699711 + : pb-IF4cUBYfCg== ip: azo~zh~{l~|i, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-28 16:31:26.818976 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 16:32:27.617664 + : pb-IF4qU1MDVg== ip: bxvf|vizvb~m, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-28 16:37:06.317777 + : pb-IF4IUBYAAQ==|| kicked > new account -2023-03-28 16:37:52.202860 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 16:41:12.097323 + : pb-IF4gU0wxBw== ip: ak~}hhaniane, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-28 16:44:40.233677 + : pb-IF4VUmEtMw== started kick vote for pb-IF5XVFUIXA==. -2023-03-28 16:45:10.239672 + : Kick vote End -2023-03-28 16:45:50.080766 + : pb-IF4iUBNYIA== ip: d}van~}igaoa, Device id: 9942a7ad9c1d5a79be0bf907ec44f8feaf206d88 -2023-03-28 16:46:39.244317 + : pb-IF5WU0cRAg== ip: d}va`~~afaad, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-28 16:50:15.497614 + : pb-IF5VUksPFw== ip: a~o~}hfaldaie, Device id: 5ac73f8162ada41148c549e333e933eb08cd7b70 -2023-03-28 16:55:07.548823 + : pb-IF5cUBUTDA== ip: ak~}ldaid|va, Device id: 4aeb855e84ca3f6b51ef3eaec43164c9dbb4ca18 -2023-03-28 16:57:50.333689 + : pb-IF4sU1EeAA== ip: b}k~}kaajbvvbv, Device id: a4ccc2a4110c9b63a5fd073bee5f4d32900d0444 -2023-03-28 17:00:21.135653 + : pb-IF4iDRhc ip: b}k~}kgaib|v`, Device id: e1ca34b2b0566d96684e6928d4c3e810beee4872 -2023-03-28 17:01:06.306654 + : pb-IF4sVE0cAw== ip: azj~zo~{ve|, Device id: f50cc129670019503f35dd05e28bf0a91caa6de0 -2023-03-28 17:01:15.331350 + : pb-IF4sVE0cAw== ip: azj~zo~{ve|, Device id: f50cc129670019503f35dd05e28bf0a91caa6de0 -2023-03-28 17:03:10.731882 + : pb-IF49U0QJDw== ip: an~}heaj`}vb}n, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-28 17:04:54.126787 + : pb-IF5WU2M4AQ== ip: evviwvb|n~zn, Device id: cee73be41494abcb467381189be2a4a685a49254 -2023-03-28 17:05:59.334345 + : pb-IF5WU2M4AQ== ip: evviwvb|n~zn, Device id: cee73be41494abcb467381189be2a4a685a49254 -2023-03-28 17:06:23.432250 + : pb-IF49U0QJDw== ip: an~}heaj`}vb}n, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-28 17:06:49.531955 + : pb-IF4oUxAGPQ== ip: azj~zo~}lcaif}, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-28 17:09:57.522795 + : pb-IF4sU1EeAA== ip: b}k~}kaajbvvbv, Device id: a4ccc2a4110c9b63a5fd073bee5f4d32900d0444 -2023-03-28 17:10:54.067156 + : pb-IF4sVE0cAw== ip: azj~zo~{ve|, Device id: f50cc129670019503f35dd05e28bf0a91caa6de0 -2023-03-28 17:11:09.134366 + : pb-IF5UUxgjIA== ip: evviwvb|n~zn, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-28 17:13:34.793849 + : pb-IF4iDRhc ip: b}k~}kgaib|v`, Device id: e1ca34b2b0566d96684e6928d4c3e810beee4872 -2023-03-28 17:17:32.844046 + : pb-IF4dVVUtKw== ip: an~}iaaiixvava, Device id: 8b02fce1d1907e68889a17157f87c32854efbda1 -2023-03-28 17:18:21.021878 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 17:18:35.056167 + : pb-IF4WU1MsAw== ip: a~o~~adaibvvayo, Device id: 5ac5157ecb98ca3f3937c32b838e6c2671aacae8 -2023-03-28 17:22:56.623383 + : pb-IF4XUBcPNw==|| kicked > new account -2023-03-28 17:23:22.062640 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-28 17:24:28.296429 + : pb-IF4dVVUtKw== ip: an~}iaaiixvava, Device id: 8b02fce1d1907e68889a17157f87c32854efbda1 -2023-03-28 17:26:04.623256 + : pb-IF4dVVUtKw== ip: an~}iaaiixvava, Device id: 8b02fce1d1907e68889a17157f87c32854efbda1 -2023-03-28 17:29:29.686541 + : pb-IF5XVEI_Kg== ip: axi~{`~~hfaig, Device id: de8020323ca5839a49a82bff2f4e8a476cee1e3f -2023-03-28 17:30:20.323507 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 17:30:22.333090 + : pb-IF4CVRIZLw== ip: a~a~{j~~miaid, Device id: 54064714651ee36c0b2a70ca9c8c87a52c3ba40a -2023-03-28 17:31:59.688531 + : pb-IF4TUxEoKg== ip: an~}j`anhamd, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-03-28 17:32:25.786278 + : pb-IF4vV0g8Mw== | kicked > reason:Banned account -2023-03-28 17:37:23.788076 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-28 17:37:38.847808 + : pb-IF4OU00jBA== ip: azj~z`~|l~}h`, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-03-28 17:37:53.905882 + : pb-IF43UBYDDw== ip: b}k~}jhaid|vdy, Device id: bac9a25ddfe04cc1839f7d731f3d2d56a6f09132 -2023-03-28 17:38:36.059639 + : pb-IF4wV3AmPQ== ip: dvvcxvayj~vh, Device id: 780ce7f2bbfc113065e30ea1b812050a66a4272b -2023-03-28 17:40:38.741561 + : pb-IF4CV0YT ip: avn~~m`aicwvfx, Device id: dd68f0a836aa910b9bdc8885cae05673f3705088 -2023-03-28 17:43:21.408807 + : pb-IF4SUBYYHA== ip: azo~zi~{`~}ke, Device id: 790c3758b76483ee3ee804520b9e0ee834760327 -2023-03-28 17:44:40.710214 + : pb-IF5UUxgjIA== ip: evviwvb|n~zn, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-28 17:44:42.720459 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-28 17:45:40.939154 + : pb-IF40UncaLg== ip: dvvc}vbn~~o`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-28 17:47:22.230995 + : pb-IF4SUBYYHA== ip: azo~zi~{`~}ke, Device id: 790c3758b76483ee3ee804520b9e0ee834760327 -2023-03-28 17:47:23.229896 + : pb-IF40UncaLg== ip: dvvc}vbn~~o`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-28 17:47:25.241225 + : pb-IF4TUxEoKg== ip: an~}j`anhamd, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-03-28 17:47:47.333984 + : pb-IF4iDRhc ip: b}k~}kgaib|v`, Device id: e1ca34b2b0566d96684e6928d4c3e810beee4872 -2023-03-28 17:47:50.345049 + : pb-IF43UBYDDw== ip: b}k~}jhaid|vdy, Device id: bac9a25ddfe04cc1839f7d731f3d2d56a6f09132 -2023-03-28 17:48:35.503836 + : pb-IF4TUxEoKg== ip: an~}j`anhamd, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-03-28 17:48:55.571923 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-28 17:49:05.611099 + : pb-IF49U0QJDw== ip: b}k~}khaj`vvb{`, Device id: 24495fd5ec013cdb163a3a3931b477b63894ef12 -2023-03-28 17:49:54.788109 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 17:49:56.793507 + : pb-IF4eU1MzFA== ip: a|a~~ngaif{vc, Device id: 2845820fe40da27f3556ad26ddd441278459a01a -2023-03-28 17:55:16.910967 + : pb-IF49VFQlPA== ip: azo~{m~~ohaiiv, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-28 17:56:17.791876 + : pb-IF43UBYDDw== started kick vote for pb-IF4TUxEoKg==. -2023-03-28 17:56:47.795903 + : Kick vote End -2023-03-28 17:57:23.378069 + : pb-IF5cU1FTBg== ip: ak~}hhaniane, Device id: 5f55a8326f119e5754e896b10948e097ad02780e -2023-03-28 17:58:41.248447 + : pb-IF49U0QJDw== started kick vote for pb-IF4wV24HBw==. -2023-03-28 17:59:11.254362 + : Kick vote End -2023-03-28 18:00:27.029515 + : pb-IF4oUxAGPQ== ip: azj~zo~}lcaif}, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-28 18:00:49.454321 + : pb-IF4nUBclVw==|| kicked > new account -2023-03-28 18:02:32.475042 + : pb-IF5WU0cRAg== ip: d}va`~~afaad, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-28 18:06:20.251187 + : pb-IF5cU1FTBg== started kick vote for pb-IF4wV24HBw==. -2023-03-28 18:06:50.257858 + : Kick vote End -2023-03-28 18:08:13.674903 + : pb-IF5UUxU7Ag== ip: an~~aeakbajb, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-03-28 18:08:50.828515 + : pb-IF5WU0cRAg== ip: d}va`~~afaad, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-28 18:12:03.510561 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-28 18:13:23.797314 + : pb-IF4AU1c_DA== ip: azo~|l~za~~le, Device id: c9afabd569ca92ed9495db2cbdda9161b0e1fed2 -2023-03-28 18:15:19.241132 + : pb-IF5WU0cRAg== ip: d}va`~~afaad, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-28 18:18:03.826988 + : pb-IF5WU0cRAg== ip: d}va`~~afaad, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-28 18:19:59.259986 + : pb-IF4GUBMPFA== ip: azj~z`~}iaaai, Device id: d80196558d9b89c8c7dc7dc8e9f787f49091c937 -2023-03-28 18:21:17.528647 + : pb-IF4oUhY6JA== ip: a}j~~nda`fajdz, Device id: b5e0f9dd4214fa51761889753988af753de478d8 -2023-03-28 18:24:07.143369 + : pb-IF4LUBNTDA== ip: dvvcyvd}viw, Device id: 11e79e9150dcf2922f8ef423ced6ce0db602ccf8 -2023-03-28 18:27:51.931110 + : pb-IF4oUxAGPQ== ip: azj~zo~}lcaif}, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-28 18:28:48.123314 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 18:32:58.035295 + : pb-IF4cUBYfCg== ip: azo~zh~yk~~j`, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-28 18:33:33.143133 + : pb-IF4VU3laVA== ip: ak~~`dajcwve~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-28 18:34:10.271925 + : pb-IF49VFQlPA== ip: azo~{m~~ohaiiv, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-28 18:35:33.566350 + : pb-IF4xUkwKIA== ip: ak~xo~~khaiaw, Device id: 29eafe60adf02ff0f8635b91072487f12411f5c5 -2023-03-28 18:35:41.591639 + : pb-IF5WU0NfCQ== ip: ak~xo~~khaiaw, Device id: 71744dab28a8c639ee9b03acd54a362bc53bebd1 -2023-03-28 18:37:34.976479 + : pb-IF4gU3QONA== ip: dvvcyva{l~~`d, Device id: 212b2d0502dc4f150744b3f7552abfe96d000e0c -2023-03-28 18:37:41.988386 + : pb-IF5WU0cRAg== ip: azh~~hgajd~vaxl, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-28 18:37:52.018624 + : pb-JiNJARBeXUBDXl5BGU5RUl1DEENbT1JD ip: dvvcyvba~~ad, Device id: a2ba45b3a7231f9f7cd1c495c0b6ab2e98e812e1 -2023-03-28 18:39:07.293337 + : pb-IF4SXhUa ip: azj~z`~xi~}ka, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-03-28 18:44:44.629380 + : pb-IF4pU1AcEg== ip: an~~agajgajd{, Device id: 31dae11ca650b34bf222e8355676a68c5552446c -2023-03-28 18:46:08.945989 + : pb-IF4SUnMKEw== ip: aakhaifyvax, Device id: 6e8257dc74a0980eaba7afb2e0a07216e88e6214 -2023-03-28 18:49:21.672873 + : pb-IF4OPhMg ip: ak~~kbajd~vay, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-03-28 18:50:45.953007 + : pb-IF4DU1I4CQ== ip: azj~z`~}jdaif, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-28 18:51:11.045016 + : pb-IF4OPhMg ip: a~o~vo~~aganh, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-03-28 18:51:33.105202 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 18:52:21.294291 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~~me, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-28 18:52:31.335162 + : pb-IF4TV3RbDA== ip: azo~{m~~iia`e, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-28 18:53:41.611612 + : pb-IF4VU3laVA== ip: ak~~`dajcwve~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-28 18:54:51.893423 + : pb-IF4eUxYkNg== ip: azo~|a~ya~{`, Device id: cf463c3e8e5177f63280992858c9206120cc78da -2023-03-28 18:58:35.442106 + : pb-IF5VUBUeJw== started kick vote for pb-IF4VU3laVA==. -2023-03-28 18:59:05.442306 + : Kick vote End -2023-03-28 18:59:57.976836 + : pb-IF4dVVUtKw== ip: an~~aealaaja|, Device id: 8b02fce1d1907e68889a17157f87c32854efbda1 -2023-03-28 19:00:05.999365 + : pb-IF5cU0kkKA== ip: an~}j`ajc~vb}, Device id: 21134c91a35ed88f5893ed72fdae3ef94c11d099 -2023-03-28 19:00:16.031281 + : pb-IF4OU00jBA== ip: azj~z`~|m~}hg, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-03-28 19:00:17.032337 + : pb-IF5cU1FTBg== ip: ak~}hhaniane, Device id: 5f55a8326f119e5754e896b10948e097ad02780e -2023-03-28 19:00:24.057017 + : pb-IF4eUxYkNg== ip: azo~|a~ya~{`, Device id: cf463c3e8e5177f63280992858c9206120cc78da -2023-03-28 19:00:33.104782 + : pb-IF42U0INNw== ip: azo~|k~}kaaibv, Device id: 4a67fdabdd99ca4f80fa1d96067ebd76bb7f9440 -2023-03-28 19:00:46.138438 + : pb-IF5cU1FTBg== ip: ak~}hhaniane, Device id: 5f55a8326f119e5754e896b10948e097ad02780e -2023-03-28 19:01:14.248711 + : pb-IF4vU0MENg== ip: azj~zo~~va~j, Device id: 6382f3717c6ac3650740a14e9d6ab4b67728a26a -2023-03-28 19:01:29.312238 + : pb-JiNJARBZVkVHXl1HF0ZTXVNHEUJfQlJB ip: azj~zo~}kiaia{, Device id: a339ea1ea5f14e84d570f9df718222d56de0140b -2023-03-28 19:02:40.546282 + : pb-IF5cUBMdCQ== ip: an~}icajd|vaxm, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-28 19:02:56.408590 + : pb-IF5cU1FTBg== started kick vote for pb-IF4wV24HBw==. -2023-03-28 19:03:11.640731 + : pb-IF4DU3kfXA== ip: azo~|j~}o~~hi, Device id: daf79cd53cd6fae49178a3019c6240631569483f -2023-03-28 19:03:26.413885 + : Kick vote End -2023-03-28 19:06:29.527241 + : pb-JiNJARBZVkVHXl1HF0ZTXVNHEUJfQlJB ip: a}h~~khai`xvh~, Device id: a339ea1ea5f14e84d570f9df718222d56de0140b -2023-03-28 19:07:06.665719 + : pb-IF5cUBMdCQ== ip: an~}icajd|vaxm, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-28 19:07:26.739299 + : pb-IF4eUxYkNg== ip: azo~|a~ya~{`, Device id: cf463c3e8e5177f63280992858c9206120cc78da -2023-03-28 19:08:36.096953 + : pb-IF4-UxI7Mg== ip: ak~}l`aifvva{h, Device id: c9b75a67d7d77078ad188d740656d5436ebb454c -2023-03-28 19:10:39.618942 + : pb-IF5cU0kkKA== ip: an~}j`ajc~vb}, Device id: 21134c91a35ed88f5893ed72fdae3ef94c11d099 -2023-03-28 19:11:50.009196 + : pb-IF4wV24HBw== ip: a~o~va~~abaiex, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 19:12:47.200185 + : pb-IF5RU3UzJA== ip: aajcamfakd, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-03-28 19:13:02.612588 + : pb-IF4zUBctEQ==|| kicked > new account -2023-03-28 19:16:21.946794 + : pb-IF5cU0kkKA== ip: an~}j`ajc~vb}, Device id: 21134c91a35ed88f5893ed72fdae3ef94c11d099 -2023-03-28 19:20:09.687767 + : pb-IF4NU0ojAA== ip: azj~zo~zvavm, Device id: 3d647e7dac07fd7bb037d38317d7799c7a6d9b64 -2023-03-28 19:21:57.114538 + : pb-IF41U2scIg== ip: ak~}hhaniane, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-28 19:24:13.644797 + : pb-IF5cUBMdCQ== ip: an~}icajd|vaxm, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-28 19:26:28.117095 + : pb-IF5QU3AaLg== ip: ak~}m`aidzva{h, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-03-28 19:27:22.294415 + : pb-IF41U2scIg== ip: ak~}hhaniane, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-28 19:28:51.662202 + : pb-IF4KU1Q9Pw== ip: dvvcxvb~a~~oa, Device id: 217799c313cf0a8fc57851c7c11d507bce2f3696 -2023-03-28 19:28:58.682338 + : pb-IF49UnYRLQ== ip: dvvcyvba~zi, Device id: 690c3f7ca525541fd6d368f95dd77e48836a2345 -2023-03-28 19:29:47.852491 + : pb-IF4cU1AjDw== ip: azo~{m~~n~|k, Device id: 23d67137d6aa4be21a991ed949cf0b73dc376a7a -2023-03-28 19:33:39.735567 + : pb-IF4dVVUtKw== ip: an~~aealaaja|, Device id: 8b02fce1d1907e68889a17157f87c32854efbda1 -2023-03-28 19:33:46.864950 + : pb-IF49UnYRLQ== started kick vote for pb-IF5QU3AaLg==. -2023-03-28 19:33:47.757099 + : pb-IF4dVVUtKw== ip: an~~aealaaja|, Device id: 8b02fce1d1907e68889a17157f87c32854efbda1 -2023-03-28 19:34:01.821873 + : pb-IF4CU1kbJg== ip: dvvczvawl~~hh, Device id: 8b5dfe6d110377ddbe62706b1d90e602281fd789 -2023-03-28 19:34:16.868124 + : Kick vote End -2023-03-28 19:35:56.264738 + : pb-IF5cUBMdCQ== ip: an~}icajd|vaxm, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-28 19:36:45.481807 + : pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL ip: dvvc{va}a~yj, Device id: a61172de41bee6c6202d757a57288fd637e3ec13 -2023-03-28 19:37:25.607632 + : pb-IF5WU0cRAg== ip: d}va`~~afaad, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-28 19:37:31.628047 + : pb-IF4SU1YeJA== ip: azo~zi~~`caig, Device id: d6f5886cc86c1dedde8f4a359cdcf28bf73a0bea -2023-03-28 19:38:08.162199 + : pb-IF5cUBMdCQ== started kick vote for pb-IF4dVVUtKw==. -2023-03-28 19:38:38.165820 + : Kick vote End -2023-03-28 19:38:39.876380 + : pb-IF4TV3RbDA== ip: azo~{m~~hcaicw, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-28 19:38:48.910954 + : pb-IF4tU2wbNg== ip: an~}ifajevb|l, Device id: 6de3fd2a1334123f5f15738b56aee50d02de8b0a -2023-03-28 19:42:32.757869 + : pb-IF4GU2UEIQ== ip: dxvbvvaxi~}ib, Device id: 34007a850da0e332ab7f228c705ec4e0589a6c3f -2023-03-28 19:43:41.361626 + : pb-IF4vUBcgLw==|| kicked > new account -2023-03-28 19:44:05.087321 + : pb-IF41U2scIg== ip: ak~}hhaniane, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-28 19:45:25.582753 + : pb-IF4SU1YeJA== started kick vote for pb-IF4tU2wbNg==. -2023-03-28 19:45:55.581945 + : Kick vote End -2023-03-28 19:46:39.727141 + : pb-IF4tU2wbNg== ip: an~}ifajevb|l, Device id: 6de3fd2a1334123f5f15738b56aee50d02de8b0a -2023-03-28 19:48:55.185314 + : pb-IF4LU0xS ip: ak~~o`aie|vc~, Device id: 40a6a57cdfaf2480edfa62ac641386f7edccb447 -2023-03-28 19:52:12.023168 + : pb-IF5VU2IOHA== ip: an~}heaj`vfw, Device id: 52cc071e6a1ff87046bcc2f8fe24a4baa76ba2b8 -2023-03-28 19:54:47.778660 + : pb-IF5VU2IOHA== ip: an~}heaj`vfw, Device id: 52cc071e6a1ff87046bcc2f8fe24a4baa76ba2b8 -2023-03-28 19:56:20.195205 + : pb-IF4DU1I4CQ== ip: azj~z`~}jdanf, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-28 19:56:49.614475 + : pb-IF41UBYFHA==|| kicked > new account -2023-03-28 19:59:43.906352 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 20:03:03.657880 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 20:03:52.019995 + : pb-IF4DU1I4CQ== ip: azj~z`~}jdanf, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-28 20:04:55.316813 + : pb-IF5cU0kkKA== ip: an~}j`ajc~vb}, Device id: 21134c91a35ed88f5893ed72fdae3ef94c11d099 -2023-03-28 20:05:01.341122 + : pb-IF4wV24HBw== ip: a~o~va~~afaiex, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 20:05:26.419056 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 20:07:14.804598 + : pb-IF4VU3laVA== ip: ak~~`dajcwve~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-28 20:08:17.012299 + : pb-IF5SUBcpFw== ip: azo~{h~~iaaa`, Device id: caf6d7ad15139ce5b06d6ae932ea6e767199a630 -2023-03-28 20:09:40.305766 + : pb-IF4SU1YeJA== ip: azo~zi~~`caig, Device id: d6f5886cc86c1dedde8f4a359cdcf28bf73a0bea -2023-03-28 20:10:34.653269 + : pb-IF5cU0kkKA== ip: an~}j`ajc~vb}, Device id: 21134c91a35ed88f5893ed72fdae3ef94c11d099 -2023-03-28 20:10:47.704132 + : pb-IF4IV04ZKw== ip: azj~z`~x`~}lf, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-03-28 20:11:21.824825 + : pb-IF40U3MyVQ== ip: b}k~}kcaocajc~, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-28 20:12:36.129497 + : pb-IF4cUBYfCg== ip: azo~zh~|k~~ja, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-28 20:13:59.575356 + : pb-IF4jUBY8Jg== ip: a~i~~iiaihxvf, Device id: 49ee6f07585ef47c048d21c42222489726d80ea6 -2023-03-28 20:14:22.644120 + : pb-IF4IUBUAIg== ip: a}k~}haaigzva~j, Device id: 3dab55998cf8752e2dd509760fe0c84165db23fb -2023-03-28 20:15:30.849546 + : pb-IF49U0QJDw== ip: an~}heaii{va|h, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-28 20:15:58.958324 + : pb-IF4TV3RbDA== ip: azo~{m~~hfaja{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-28 20:16:13.995440 + : pb-IF4cU1pZBA== ip: a|o~vo~xm~zj, Device id: 12307aaaaba6b0b162bb55c7a6bae6e7b8381d82 -2023-03-28 20:16:19.021747 + : pb-IF4wV24HBw== ip: a~o~va~~agaiex, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 20:16:24.035327 + : pb-IF49U0QJDw== ip: an~}heaii{va|h, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-28 20:18:37.255613 + : pb-IF4xUlccPA== | kicked for chat spam -2023-03-28 20:21:07.249082 + : pb-IF41U2scIg== ip: ak~}hhaniane, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-28 20:21:28.308453 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 20:21:32.317917 + : pb-IF42UkYEXQ== ip: dvvcyval~~a, Device id: c02bcaa5284fffba6ccd2f64f02722f5482600c5 -2023-03-28 20:21:39.998109 + : pb-IF4TV3RbDA== started kick vote for pb-IF5cU0kkKA==. -2023-03-28 20:22:10.003978 + : Kick vote End -2023-03-28 20:25:33.150378 + : pb-IF4TUlgePw== ip: b}k~}khaibaib}, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-28 20:27:01.349334 + : pb-IF40U3MyVQ== started kick vote for pb-IF4TV3RbDA==. -2023-03-28 20:27:31.355796 + : Kick vote End -2023-03-28 20:29:50.288101 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-28 20:32:15.805624 + : pb-IF4jF1NY ip: a~j~xa~xj~}le, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-28 20:32:19.810365 + : pb-IF5WU0cRAg== ip: d}va`~~afaad, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-28 20:32:33.868164 + : pb-IF4jF1NY ip: azj~z`~~vhw, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-28 20:35:32.673068 + : pb-IF4wV24HBw== ip: a~o~va~}h`aiex, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 20:38:06.208774 + : pb-IF4oUnVaNg== ip: dvvcxvba~vi, Device id: ea9e94a58d7b30a6aa34f61e1f2125a3e555fcda -2023-03-28 20:42:51.253450 + : pb-IF4OPhMg ip: a~o~vo~~aganh, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-03-28 20:43:15.357406 + : pb-IF48UBUzCg== ip: azj~zo~}hiajaz, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-03-28 20:43:35.420766 + : pb-IF4wVVk8Jg== ip: dzva~m~vi~~m`, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-03-28 20:46:02.925855 + : pb-IF40VG4pMg== ip: dvvcyva|n~~oc, Device id: 157fe612350fe34266a2acab3afa7f1a14469c0e -2023-03-28 20:46:51.093261 + : pb-IF4IU1c6Ug== ip: azj~z`~|a~~lf, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-28 20:48:06.368428 + : pb-IF4TD1cf ip: dvvc}vavm~v, Device id: f3af1d941719708fb2d6ed940c33f95bc772f822 -2023-03-28 20:49:36.176364 + : pb-IF4TD1cf started kick vote for pb-IF4sU0sDDw==. -2023-03-28 20:50:06.175221 + : Kick vote End -2023-03-28 20:50:21.898189 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 20:52:01.835154 + : pb-IF4jUBcHNQ==|| kicked > new account -2023-03-28 20:52:38.358261 + : pb-IF41U2scIg== ip: ak~}hhaniane, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-28 20:53:16.800330 + : pb-IF4TD1cf started kick vote for pb-IF4sU0sDDw==. -2023-03-28 20:53:46.805092 + : Kick vote End -2023-03-28 20:54:23.696995 + : pb-IF4TD1cf ip: dvvc}vavm~v, Device id: f3af1d941719708fb2d6ed940c33f95bc772f822 -2023-03-28 20:55:49.028000 + : pb-IF5cUkwjDA== ip: dvvcyvb~l~}ic, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-03-28 20:59:49.025014 + : pb-IF4oUnVaNg== ip: dvvcxvba~vi, Device id: ea9e94a58d7b30a6aa34f61e1f2125a3e555fcda -2023-03-28 21:00:03.076040 + : pb-IF4xUlccPA== ip: aai`ajevdz, Device id: 383551d62eeaff4c9867fc53298854ef89fe679f -2023-03-28 21:00:44.198554 + : pb-IF4TV3RbDA== ip: azo~{m~~jdame, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-28 21:02:49.613764 + : pb-IF4IU1c6Ug== ip: azj~z`~|a~vh, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-28 21:04:27.076080 + : pb-IF5UA1Ag ip: an~~adakdaigx, Device id: 1a24fcf12337e17795e8fe833a73e80bb31adf76 -2023-03-28 21:05:56.690861 + : pb-IF41VXk5PQ== ip: ak~wo~z`~~m`, Device id: e6111cf42574111f4a4279de2e701db9069fa8d0 -2023-03-28 21:09:27.395016 + : pb-IF4dU2FfFw== ip: bj~w`~}lhai`}, Device id: 5f0db9ed312935a1e919eaf7e5b355407f634bcf -2023-03-28 21:10:28.537730 + : pb-JiNJARBZUkJBX1ZAFE9ZUlVCFEZbR1BE started kick vote for pb-IF4IU1c6Ug==. -2023-03-28 21:10:58.539620 + : Kick vote End -2023-03-28 21:12:23.413986 + : pb-IF4sV1EbAw== ip: a~o~v`~vh~ym, Device id: a44e4de087d1f01d0f7e169e537ee8957bea8069 -2023-03-28 21:13:53.058568 + : pb-IF4PUkY4VA== ip: ak~~o~~i`aib}, Device id: c66de7cbf5df688d3c52c75560ee6036a1ede1a4 -2023-03-28 21:14:03.084414 + : pb-IF4BU1gtAA== ip: azj~zo~|`~}m, Device id: 1f2a67f3540a90953f0d00eae021c1d40dc8c27c -2023-03-28 21:14:10.841081 + : pb-IF4TV3RbDA== started kick vote for pb-IF4xUlccPA==. -2023-03-28 21:14:40.844919 + : Kick vote End -2023-03-28 21:15:23.447202 + : pb-IF49UnYRLQ== ip: dvvcyvba~zi, Device id: 690c3f7ca525541fd6d368f95dd77e48836a2345 -2023-03-28 21:16:21.266647 + : pb-JiNJARBZUkJBX1ZAFE9ZUlVCFEZbR1BE started kick vote for pb-IF4QVRQjNg==. -2023-03-28 21:16:51.269486 + : Kick vote End -2023-03-28 21:17:12.804916 + : pb-IF49UnYRLQ== ip: dxvia``aihz, Device id: 690c3f7ca525541fd6d368f95dd77e48836a2345 -2023-03-28 21:19:53.495645 + : pb-IF4eUBc7IA== | kicked > reason:Banned account -2023-03-28 21:21:08.067107 + : pb-IF4QU0IbNg== ip: dvvcxvb~m~}kf, Device id: f2f972d5b08b11c21433fdc2935fcbdede9bad0c -2023-03-28 21:23:51.015679 + : pb-IF49UnYRLQ== started kick vote for pb-IF4QU0IbNg==. -2023-03-28 21:24:21.017857 + : Kick vote End -2023-03-28 21:27:39.675083 + : pb-IF49UnYRLQ== started kick vote for pb-IF4QU0IbNg==. -2023-03-28 21:28:09.682356 + : Kick vote End -2023-03-28 21:30:13.995270 + : pb-IF4eVWgCFw== ip: azo~{a~~lba`c, Device id: e2b9e9ccead760824195b80a4a552b116c0f19ae -2023-03-28 21:30:47.109185 + : pb-IF4IU1c6Ug== ip: azj~z`~|a~~`i, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-28 21:31:03.163687 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-28 21:31:48.655534 + : pb-IF49UnYRLQ== started kick vote for pb-IF4QU0IbNg==. -2023-03-28 21:32:18.661450 + : Kick vote End -2023-03-28 21:35:10.967673 + : pb-IF4QU0IbNg== started kick vote for pb-IF49UnYRLQ==. -2023-03-28 21:35:15.475782 + : pb-IF4GVUgILA== ip: ak~~nfajd{vavh, Device id: 6b1f63340755372dea12b3552bc7e2eaedb5c368 -2023-03-28 21:35:40.969783 + : Kick vote End -2023-03-28 21:36:06.658543 + : pb-IF4-UxI7Mg== ip: ak~}l`aifvva{h, Device id: c9b75a67d7d77078ad188d740656d5436ebb454c -2023-03-28 21:37:30.417727 + : pb-IF4IUBUAIg== ip: an~xn~}ihajcx, Device id: 3dab55998cf8752e2dd509760fe0c84165db23fb -2023-03-28 21:38:03.528263 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: azo~|j~}hgajdx, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-28 21:38:32.652174 + : pb-IF4sUBUfMw== ip: azj~zo~~hcajc~, Device id: f33f50c5cbde96ea9e257ef08347038143ed1a0f -2023-03-28 21:38:54.724493 + : pb-IF4sUBUfMw== ip: azj~zo~~hcajc~, Device id: f33f50c5cbde96ea9e257ef08347038143ed1a0f -2023-03-28 21:39:02.763228 + : pb-IF4sUBUfMw== ip: azj~zo~~hcajc~, Device id: f33f50c5cbde96ea9e257ef08347038143ed1a0f -2023-03-28 21:39:12.799385 + : pb-IF41U2scIg== ip: ak~}hhaniane, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-28 21:40:17.024171 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-28 21:41:12.310048 + : pb-IF4jF1NY ip: azj~z`~~vbm, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-28 21:41:32.385486 + : pb-IF41U2scIg== ip: ak~}hhaniane, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-28 21:42:02.502222 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 21:43:17.833863 + : pb-IF4IUBUAIg== ip: an~xn~}ihajcx, Device id: 3dab55998cf8752e2dd509760fe0c84165db23fb -2023-03-28 21:44:07.018810 + : pb-IF4OPhMg ip: a~o~vo~~aganh, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-03-28 21:45:33.324034 + : pb-IF4xUlccPA== ip: aai`ajevdz, Device id: 383551d62eeaff4c9867fc53298854ef89fe679f -2023-03-28 21:45:45.710786 + : pb-IF4hUBURVg==|| kicked > new account -2023-03-28 21:48:00.932915 + : pb-IF4IU1c6Ug== ip: a}l~~jcaih~va|a, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-28 21:48:24.033342 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`vvg{, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-28 21:48:32.071617 + : pb-IF5cPGsk ip: ak~}i`aneaia, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-28 21:49:02.203546 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF4xUlccPA==. -2023-03-28 21:49:28.493588 + : Kick vote End -2023-03-28 21:49:32.630295 + : pb-IF40U3MyVQ== ip: b}k~}kcaocajc~, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-28 21:49:37.642771 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~~me, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-28 21:50:55.106287 + : pb-JiNJARBbVUVHXF9IFkZYXFBGGEVaT1RD ip: a~h~}jdaiazvb~i, Device id: 3faf6779ec143e5d8986a36addbf2f9691d13981 -2023-03-28 21:51:18.175961 + : pb-IF4vUlAcUw== ip: a~o~}icajeajd, Device id: 7ff27216fb27a0a6af4bb01cb5c3132c708e7a14 -2023-03-28 21:51:58.332644 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`vvg{, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-28 21:52:05.357135 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`vvg{, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-28 21:54:23.845043 + : pb-IF5cU1oIAQ== ip: azj~z`~}kbaic~, Device id: 0586105637f6e0fb7cbf77de4cc4025809399cda -2023-03-28 21:54:25.855613 + : pb-IF5QU1BcDA== ip: an~~aeakbamd, Device id: 0b8cb8c7384e2d9fe4bcbe89a1a551d3487d70f9 -2023-03-28 21:56:21.728462 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 21:57:13.104264 + : pb-IF4DU0IEJg== started kick vote for pb-IF5cPGsk. -2023-03-28 21:57:31.983156 + : pb-IF5cV044Jw== ip: a~o~v`~}n~xl, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-03-28 21:57:40.006275 + : pb-IF41U2scIg== ip: ak~}hhaoaaib|, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-28 21:57:43.110866 + : Kick vote End -2023-03-28 22:02:33.496324 + : pb-IF5cU0kkKA== ip: an~}j`ajc~vb}, Device id: 21134c91a35ed88f5893ed72fdae3ef94c11d099 -2023-03-28 22:02:51.563986 + : pb-JiNJARBSUkNBWFlGFk5VVFBBF0ReRFFB ip: an~~adaiayva}m, Device id: 0cf27f377fa84a57ae295eb58c311dde0ad212a2 -2023-03-28 22:03:42.755702 + : pb-IF48U1IOLQ== ip: dvvc}vbzh~yo, Device id: 09a393f64833ae0b55140136ed92324d1924cac9 -2023-03-28 22:04:52.012004 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~~me, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-28 22:05:12.101335 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 22:05:45.193755 + : pb-IF4VU3EjBg== ip: azj~z`~|o~xn, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-03-28 22:06:43.389033 + : pb-IF4-UxklVw== ip: an~}i`aj`xvak, Device id: 61f3ab800610707dfedcb39cf6e4f7dd8b60ccbf -2023-03-28 22:08:24.690509 + : pb-IF4sVE0cAw== ip: azj~zo~w`~~ae, Device id: f50cc129670019503f35dd05e28bf0a91caa6de0 -2023-03-28 22:08:41.756232 + : pb-IF4xVRkxVg== ip: aakiaofaihy, Device id: 30c7ebc175f41a9b02268eae121fd913ff0ec917 -2023-03-28 22:09:29.902238 + : pb-IF4xVRkxVg== ip: ak~~`dajcwvgw, Device id: 30c7ebc175f41a9b02268eae121fd913ff0ec917 -2023-03-28 22:11:28.343826 + : pb-IF5cUBMdCQ== ip: an~}icajd|vaxm, Device id: 0235ea0c1dde4d192be104a208f316cb22bc09dc -2023-03-28 22:12:12.499522 + : pb-IF41U2scIg== ip: ak~}hhaoaaib|, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-28 22:13:37.063804 + : pb-IF4DU0IEJg== started kick vote for pb-IF41U2scIg==. -2023-03-28 22:14:07.067196 + : Kick vote End -2023-03-28 22:15:23.799055 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-28 22:15:49.919476 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-28 22:16:24.019513 + : pb-IF5QU1BcDA== ip: an~~aeakbamd, Device id: 0b8cb8c7384e2d9fe4bcbe89a1a551d3487d70f9 -2023-03-28 22:16:40.091514 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-28 22:17:50.348315 + : pb-IF5cU0kkKA== ip: an~}j`ajc~vb}, Device id: 21134c91a35ed88f5893ed72fdae3ef94c11d099 -2023-03-28 22:17:57.382860 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-28 22:19:31.778008 + : pb-IF5XU2NcUQ== ip: azo~|m~vfw, Device id: 85f891ebc5076d5db0ed0a40f396e83688fb0a34 -2023-03-28 22:21:00.080901 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-28 22:22:31.403508 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 22:23:11.565645 + : pb-IF40PkMh ip: aakhaifxvavn, Device id: a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e -2023-03-28 22:23:25.623785 + : pb-IF4wVVkYIg== ip: d}va`~~afai`~, Device id: 62eeec9d9ed20df10e2ef17590735f5346df08de -2023-03-28 22:23:28.634085 + : pb-IF4nVEY-PA== ip: a~o~va~z`~vl, Device id: 274c0eb29438e37a9fd5de5c04997e31b078d217 -2023-03-28 22:24:42.890783 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 22:25:12.991249 + : pb-IF5cUBUvHw== ip: azo~zi~yvb{o, Device id: bb458946ce6f95ee0e8c178c924998666bcf13dc -2023-03-28 22:25:19.014020 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 22:25:53.113340 + : pb-IF4wV24HBw== ip: a~o~va~~aiaiex, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 22:26:41.272881 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 22:26:46.289520 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-28 22:28:05.711397 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcv, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-28 22:30:31.792317 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-28 22:30:52.875700 + : pb-IF5TU1ddPA== ip: azj~z`~|m~yh, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-03-28 22:31:06.926263 + : pb-IF40PkMh ip: aakhaifxvavn, Device id: a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e -2023-03-28 22:31:48.065372 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-28 22:31:58.118104 + : pb-IF5RVRI7Ag== ip: a|o~vo~~jfamc, Device id: 2cab00687f2026640e6ab32148f48ae2d7ecf25b -2023-03-28 22:33:18.652675 + : pb-IF5VU0cyFg== ip: b}k~~`baiiwvg, Device id: f31146bc62d5792fe2910e4e990697b6a7bcbfa3 -2023-03-28 22:34:48.285075 + : pb-IF5TU1ddPA== started kick vote for pb-IF4RUBYbCA==. -2023-03-28 22:35:14.429977 + : pb-IF4yUBYYBw==|| kicked > new account -2023-03-28 22:35:18.284743 + : Kick vote End -2023-03-28 22:35:45.778604 + : pb-IF5VU0cyFg== ip: b}k~~`baiiwvg, Device id: f31146bc62d5792fe2910e4e990697b6a7bcbfa3 -2023-03-28 22:38:55.436608 + : pb-IF4MUnc4Ag== ip: ak~~laaj`vbn, Device id: 92e063e3bd73b7ad1c293c935373998df5760dbe -2023-03-28 22:39:30.571688 + : pb-IF4sUnRSNA== ip: azj~zo~}kdaihw, Device id: bbfe8f36a42dd54e3ce9470c57394f000dadaf82 -2023-03-28 22:41:29.348162 + : pb-IF4QUBYfJA==|| kicked > new account -2023-03-28 22:41:38.079382 + : pb-IF41U2scIg== ip: ak~}hhaoaaib|, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-28 22:47:35.200899 + : pb-IF4lU3cFFw== | kicked > reason: Banned account -2023-03-28 22:54:05.943831 + : pb-IF4eU1MmDw== started kick vote for pb-IF4TVHhbAQ==. -2023-03-28 22:54:11.780870 + : pb-IF4TVHhbAQ== kicked by kickvotes. -2023-03-28 22:57:06.763915 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|l~~o`, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-03-28 22:59:52.321940 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vb}j, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-28 23:01:13.871258 + : pb-IF4eU1MmDw== started kick vote for pb-IF40U1hfVw==. -2023-03-28 23:01:43.727177 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~~adaoaaif}, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-03-28 23:01:43.872474 + : Kick vote End -2023-03-28 23:02:27.883620 + : pb-IF4IU1c6Ug== ip: a}l~~jcaih~va|a, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-28 23:03:06.389769 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-LV4FVxEOBxcUVQxERkNWUFFA. -2023-03-28 23:03:21.107065 + : pb-IF4iUBNYIA== ip: dvvc}vb~`~{a, Device id: 9942a7ad9c1d5a79be0bf907ec44f8feaf206d88 -2023-03-28 23:03:36.390740 + : Kick vote End -2023-03-28 23:04:14.298606 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-28 23:05:09.846464 + : pb-IF5cUkwjDA== ip: dvvcyvb~l~}ic, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-03-28 23:05:45.118409 + : pb-IF4iUBNYIA== ip: dvvc}vb~`~{a, Device id: 9942a7ad9c1d5a79be0bf907ec44f8feaf206d88 -2023-03-28 23:07:15.757917 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|l~~o`, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-03-28 23:07:54.954201 + : pb-IF4iUBNYIA== ip: dvvc}vb~`~{a, Device id: 9942a7ad9c1d5a79be0bf907ec44f8feaf206d88 -2023-03-28 23:10:09.079900 + : pb-IF4qUxBfAw== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-28 23:10:29.154535 + : pb-IF4eUBMTKA== ip: ak~}hhaoaaib|, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-28 23:11:29.575381 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG started kick vote for pb-JiNJVxBdXERFW19IGUNZU11EFkFXRFRA. -2023-03-28 23:11:39.680037 + : pb-JiNJVxBdXERFW19IGUNZU11EFkFXRFRA kicked by kickvotes. -2023-03-28 23:13:00.722199 + : pb-IF5TU0ccDQ== ip: i{ve{vayvazk, Device id: 5e8155b729cf384942cb406fccdf2563a2e40651 -2023-03-28 23:14:10.955301 + : pb-IF4-U08-HA== ip: an~~adajezvd|, Device id: fdc80cc0cd9271de97e3a07b7ccea3e228f019da -2023-03-28 23:15:01.107737 + : pb-IF41U2scIg== ip: ak~}hhaoaaib|, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-28 23:15:49.289503 + : pb-IF4IU1c6Ug== ip: a}l~~jcaih~va|a, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-28 23:18:30.839370 + : pb-IF4qUxBfAw== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-28 23:18:37.861954 + : pb-IF4eU1MmDw== ip: eaii|vb|o~~mg, Device id: 7aae7df846f940a125cd93656c1cc2ff54aa33e6 -2023-03-28 23:20:07.183030 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-28 23:23:08.164383 + : pb-IF4KU1Q9Pw== ip: a~m~vo~}k~}k`, Device id: 217799c313cf0a8fc57851c7c11d507bce2f3696 -2023-03-28 23:24:43.915219 + : pb-IF5cPGsk ip: ak~}i`aneaia, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-28 23:25:22.026882 + : pb-IF4KU1Q9Pw== ip: a~m~vo~}k~}k`, Device id: 217799c313cf0a8fc57851c7c11d507bce2f3696 -2023-03-28 23:25:59.145608 + : pb-IF4FD1c8 ip: azo~{n~vi~~oh, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-03-28 23:26:37.876945 + : pb-IF4-U08-HA== started kick vote for pb-IF4IU1c6Ug==. -2023-03-28 23:27:07.882971 + : Kick vote End -2023-03-28 23:27:56.201381 + : pb-IF4gUlo9CQ== ip: an~~acangai`{, Device id: 80cff291e94ab1442bb76b934b2ec45d3ac45b96 -2023-03-28 23:30:33.296287 + : pb-IF4hUBMqHQ== ip: dxvb{o~}jbaj`~, Device id: dbdf9c7b289f77d7c1be0faf7febf6dcfbc88ce8 -2023-03-28 23:33:40.346429 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-28 23:34:48.331991 + : pb-IF4eU1MmDw== ip: eaii|vb|o~~mg, Device id: 7aae7df846f940a125cd93656c1cc2ff54aa33e6 -2023-03-28 23:35:00.385878 + : pb-IF4QUxNcHA== ip: bxva~i~xm~|m, Device id: 64213a8465345fff68ccfe75125f58c0a78541a0 -2023-03-28 23:36:49.763116 + : pb-IF4wU0ogLw== ip: dvvc{vaxi~}kc, Device id: 0628cf6542ea6f8636623ec7a4456233daf1d91e -2023-03-28 23:37:04.816544 + : pb-IF5SUBMhAw== ip: dvvc|vavm~}li, Device id: 69d4513cb2686138887986bfc6a46d2d89fe2826 -2023-03-28 23:38:26.074492 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-28 23:39:33.297423 + : pb-IF5SUBMhAw== ip: dvvc|vavm~}li, Device id: 69d4513cb2686138887986bfc6a46d2d89fe2826 -2023-03-28 23:55:27.252489 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-29 00:03:06.913471 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-29 00:15:14.647405 + : pb-IF41U2scIg== ip: a~h~}jgaiaaii, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-29 00:21:14.933626 + : pb-IF5VU3lYDA== ip: azj~z`~~oia`g, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-03-29 00:24:56.701936 + : pb-IF43UlceUA== ip: ak~~hiamfaki, Device id: b62d570fb6930d0b140e029ab1afa81a44b55c1c -2023-03-29 00:31:50.144835 + : pb-IF5VU3lYDA== ip: azj~z`~~oia`g, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-03-29 00:33:29.563056 + : pb-IF41V1kEUw== started kick vote for pb-IF49VFQlPA==. -2023-03-29 00:33:59.568325 + : Kick vote End -2023-03-29 00:57:49.630261 + : pb-IF4wVVk8Jg== ip: dzva~m~vi~~m`, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-03-29 01:08:54.433935 + : pb-IF4-UBdcUw==|| kicked > new account -2023-03-29 01:13:37.220810 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-29 01:13:44.547147 + : pb-IF4wUBcDDQ==|| kicked > new account -2023-03-29 01:18:56.370900 + : pb-IF4-UBdcUw== | kicked > reason:Banned account -2023-03-29 01:36:17.075938 + : pb-IF4TD1cf ip: dvvc}vb{`~~`a, Device id: f3af1d941719708fb2d6ed940c33f95bc772f822 -2023-03-29 01:38:05.509650 + : pb-IF4TV3RbDA== ip: azo~{m~~jcaie}, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-29 01:43:55.223357 + : pb-IF4TD1cf | kicked for chat spam -2023-03-29 01:57:02.773637 + : pb-IF4mVU0oUw== started kick vote for pb-IF4IV04ZKw==. -2023-03-29 01:57:19.588209 + : pb-IF4TV3RbDA== ip: azo~{m~~jgaicy, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-29 01:57:32.778220 + : Kick vote End -2023-03-29 02:04:16.555340 + : pb-IF4nUxE4Nw== started kick vote for pb-IF4wVVk8Jg==. -2023-03-29 02:04:46.557999 + : Kick vote End -2023-03-29 02:06:47.771433 + : pb-IF4vU3kAIA== started kick vote for pb-IF5cU2haHA==. -2023-03-29 02:07:17.777366 + : Kick vote End -2023-03-29 02:08:42.976672 + : pb-IF4nUxE4Nw== started kick vote for pb-IF5cU2haHA==. -2023-03-29 02:09:12.982777 + : Kick vote End -2023-03-29 02:15:55.593295 + : pb-IF4TV3RbDA== ip: azo~{m~~hhaifw, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-29 02:44:53.734869 + : pb-IF5SUBMhAw== ip: dvvc|vb~j~vh, Device id: 69d4513cb2686138887986bfc6a46d2d89fe2826 -2023-03-29 02:51:39.184779 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-29 03:08:58.970426 + : pb-IF5SUBMhAw== ip: dvvc|vb~j~vh, Device id: 69d4513cb2686138887986bfc6a46d2d89fe2826 -2023-03-29 03:12:29.713071 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-29 03:54:57.732744 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-29 04:16:26.274858 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-29 04:37:42.925830 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-29 04:58:18.243473 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-29 05:19:58.871694 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-29 05:41:21.506274 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-29 07:06:56.621812 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-29 07:20:03.718931 + : pb-IF4IU28qPA== ip: azo~zi~~a`aiey, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-03-29 07:50:12.265776 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-29 08:11:25.871484 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-29 08:25:13.858209 + : pb-IF4sVRgsNQ== ip: evvazk~~n~~i, Device id: 4ab1c6130f4f06661acf82b51be1d90a50dbd7d8 -2023-03-29 08:46:25.453999 + : pb-IF5cV044Jw== ip: a~o~v`~~h~|h, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-03-29 08:55:27.395128 + : pb-IF4NVxAZDg== ip: dvvcyva~m~xl, Device id: 9dda09fcf9a3701e0e8edddd357f35fc1813050f -2023-03-29 09:05:26.441001 + : pb-IF5QU3AaLg== ip: ak~}maamgaihw, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-03-29 09:09:40.368328 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 09:16:37.863452 + : pb-IF4IU1c6Ug== ip: a}l~~jcaih{vb~, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-29 09:36:19.120868 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-29 09:54:19.931035 + : pb-IF4PUBdcXQ== ip: dvvcxvgzve|, Device id: a636ba2bd975f9eabc3b50f26d28fa2c96f4fa81 -2023-03-29 10:00:59.329193 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 10:01:23.414448 + : pb-IF4wV24HBw== ip: a~o~va~~aian, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 10:03:08.791629 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 10:06:02.406122 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 10:18:49.268089 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-29 10:22:09.013882 + : pb-IF4WU0wvVA== ip: dvvc}vb{a~z, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-29 10:24:17.563750 + : pb-IF4TUxEoKg== ip: an~~aca`dakg, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-03-29 10:28:52.599192 + : pb-IF4FUlRfAg== ip: b}k~~afaii|vdv, Device id: aba5ff826ae810b393bf32d5a9009055e5984479 -2023-03-29 10:38:16.642550 + : pb-IF5UUxgjIA== ip: azj~z`~xh~yi, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-29 10:38:59.794216 + : pb-IF4WUBYFJg== ip: azj~z`~}k`ajc}, Device id: 1b15b7fb9d8ca5070df38f90e4cb49f1e1d2fdfe -2023-03-29 10:42:27.768707 + : pb-IF5XU247Cg== started kick vote for pb-IF4FUlRfAg==. -2023-03-29 10:42:57.775012 + : Kick vote End -2023-03-29 10:43:50.888828 + : pb-IF4WU0wvVA== ip: dvvc}vb{a~z, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-29 10:44:42.053682 + : pb-IF5XU247Cg== ip: evvi{vavj~~k, Device id: abf43405e7333160f868a46f6cf92073d8f36db9 -2023-03-29 10:45:28.235618 + : pb-IF5XU247Cg== ip: evvi{vavj~~k, Device id: abf43405e7333160f868a46f6cf92073d8f36db9 -2023-03-29 10:45:46.297431 + : pb-IF4-JUgB ip: ak~~j`aje}vfv, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-29 10:46:29.998152 + : pb-IF5XU247Cg== started kick vote for pb-IF4FUlRfAg==. -2023-03-29 10:46:59.999211 + : Kick vote End -2023-03-29 11:01:11.541679 + : pb-IF4FUlRfAg== ip: b}k~~afaii|vdv, Device id: aba5ff826ae810b393bf32d5a9009055e5984479 -2023-03-29 11:05:55.579008 + : pb-IF4IU1c6Ug== ip: azj~z`~|`~~li, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-29 11:06:03.599740 + : pb-IF4uVWgSAQ== ip: b}k~~ohajavb|k, Device id: 038d0729491575413c8c20a4b121574cf1027969 -2023-03-29 11:06:12.639551 + : pb-IF4uVWgSAQ== ip: b}k~~ohajavb|k, Device id: 038d0729491575413c8c20a4b121574cf1027969 -2023-03-29 11:06:34.464305 + : pb-IF5QV2kTAw==|| kicked , for using spoofed id HEISENBEGR -2023-03-29 11:09:35.156915 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4lVVMmEA==. -2023-03-29 11:10:05.157154 + : Kick vote End -2023-03-29 11:13:41.306207 + : pb-IF4FUlRfAg== ip: b}k~~afaii|vdv, Device id: aba5ff826ae810b393bf32d5a9009055e5984479 -2023-03-29 11:13:49.335839 + : pb-IF4FUlRfAg== ip: b}k~~afaii|vdv, Device id: aba5ff826ae810b393bf32d5a9009055e5984479 -2023-03-29 11:15:07.662024 + : pb-IF4AV1QqEQ== ip: an~}ica`gaia}, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-03-29 11:16:51.958465 + : pb-IF5dUBVbCQ== started kick vote for pb-IF48U1AFFw==. -2023-03-29 11:16:59.551759 + : pb-IF48U1AFFw== kicked by kickvotes. -2023-03-29 11:17:36.153653 + : pb-IF5SU3UtCg== ip: an~}igaig|vbn, Device id: c5d0de258e53f56f5cdf3056dc61056663a3e8c0 -2023-03-29 11:17:45.184762 + : pb-IF5SU3UtCg== ip: an~}igaig|vbn, Device id: c5d0de258e53f56f5cdf3056dc61056663a3e8c0 -2023-03-29 11:18:16.292903 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 11:18:22.038565 + : pb-IF5dUBVbCQ== started kick vote for pb-IF4wV24HBw==. -2023-03-29 11:18:52.042382 + : Kick vote End -2023-03-29 11:21:37.969087 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-29 11:23:12.302161 + : pb-IF4jF1NY ip: a~j~xa~xj~}l`, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-29 11:24:13.503088 + : pb-IF40UncaLg== ip: dvvc}vb}j~zj, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-29 11:26:06.940578 + : pb-IF4AV1QqEQ== ip: an~}ica`gaia}, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-03-29 11:32:20.305173 + : pb-IF40UncaLg== ip: dvvc}vb}j~zj, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-29 11:33:23.548867 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 11:37:30.238984 + : pb-IF4AV1QqEQ== started kick vote for pb-JiNJARBSV0VJWVtDE0RSUldEE0ZZQFVL. -2023-03-29 11:38:00.242069 + : Kick vote End -2023-03-29 11:39:43.983675 + : pb-IF40UncaLg== ip: dvvc}vb}j~zj, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-29 11:40:21.126811 + : pb-IF4cUBYfCg== ip: azo~zh~{k~yh, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-29 11:42:14.505977 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5dU3UiAw==. -2023-03-29 11:42:44.511173 + : Kick vote End -2023-03-29 11:46:02.390776 + : pb-IF40UncaLg== ip: dvvc}vb}j~zj, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-29 11:48:56.015084 + : pb-IF4jF1NY ip: a~j~xa~xj~}l`, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-29 11:49:16.080905 + : pb-IF4jF1NY ip: azj~z`~~vb}o, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-29 11:49:57.241993 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 11:49:59.249279 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-29 11:51:58.670100 + : pb-IF4jF1NY ip: azj~z`~~vb}o, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-29 11:53:09.029966 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 12:01:03.769000 + : pb-IF4jF1NY ip: azj~z`~~vb}o, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-29 12:01:18.846702 + : pb-IF49U0QJDw== ip: b}k~}khaii|va{l, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-29 12:05:38.880711 + : pb-IF49U0QJDw== ip: b}k~}khaii|va{l, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-29 12:06:13.993833 + : pb-IF5QU3AaLg== ip: ak~}maamgaj`w, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-03-29 12:06:25.033074 + : pb-IF4eUBMTKA== ip: a~h~}jgaiaaii, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-29 12:08:01.308209 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5QU3AaLg==. -2023-03-29 12:08:30.486124 + : pb-IF40UncaLg== ip: dvvc}vb}j~zj, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-29 12:08:31.311369 + : Kick vote End -2023-03-29 12:09:03.614459 + : pb-IF49U0QJDw== ip: b}k~}khaii|va{l, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-29 12:09:22.683482 + : pb-IF5cV044Jw== ip: a~o~v`~~h~}i`, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-03-29 12:09:40.751563 + : pb-IF49UnYRLQ== ip: dvvcyvb~i~}kc, Device id: 690c3f7ca525541fd6d368f95dd77e48836a2345 -2023-03-29 12:12:17.272431 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-29 12:13:08.476967 + : pb-IF41U2scIg== ip: a~h~}jgaiaaii, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-29 12:14:14.690592 + : pb-IF41U2scIg== ip: ak~}hhaoaaib|, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-29 12:16:13.290808 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4OU1IZVg==. -2023-03-29 12:16:43.294907 + : Kick vote End -2023-03-29 12:18:55.590951 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 12:19:04.613255 + : pb-IF5SU3UtCg== ip: an~}igaig|vbn, Device id: c5d0de258e53f56f5cdf3056dc61056663a3e8c0 -2023-03-29 12:20:32.954521 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 12:26:00.493241 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5VU1JZMw==. -2023-03-29 12:26:24.155241 + : pb-IF4oUxAGPQ== ip: azj~zo~}l`aia|, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-29 12:26:30.496506 + : Kick vote End -2023-03-29 12:26:34.193202 + : pb-IF4WU0wvVA== ip: dvvc}vb|a~}`, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-29 12:27:34.401861 + : pb-IF4oUxAGPQ== ip: azj~zo~}l`aia|, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-29 12:29:01.684788 + : pb-IF4jF1NY ip: azj~z`~~vb}o, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-29 12:33:30.630466 + : pb-IF4VU3laVA== ip: ak~~`baifxva{m, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-29 12:34:26.545865 + : pb-IF4WU0wvVA== started kick vote for pb-IF4OU1IZVg==. -2023-03-29 12:34:40.869993 + : pb-IF49UnYRLQ== ip: dvvcyvb~i~}kc, Device id: 690c3f7ca525541fd6d368f95dd77e48836a2345 -2023-03-29 12:34:56.549281 + : Kick vote End -2023-03-29 12:35:57.141434 + : pb-IF4sU1EeAA== ip: b}k~}kaajbvvbv, Device id: a4ccc2a4110c9b63a5fd073bee5f4d32900d0444 -2023-03-29 12:36:20.977283 + : pb-IF4wV24HBw== started kick vote for pb-IF49UnYRLQ==. -2023-03-29 12:36:50.979187 + : Kick vote End -2023-03-29 12:39:22.897173 + : pb-IF4RUBYbCA== ip: azj~z`~~a~~hc, Device id: 171ca465a23bf276fa9fa078b32c1ac8b3c2cc2a -2023-03-29 12:44:56.331283 + : pb-IF4jF1NY started kick vote for pb-IF49UnYRLQ==. -2023-03-29 12:45:26.335038 + : Kick vote End -2023-03-29 12:46:27.363376 + : pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL started kick vote for pb-IF49UnYRLQ==. -2023-03-29 12:59:45.659632 + : pb-IF4jF1NY ip: azj~z`~~vb}o, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-29 12:59:48.667407 + : pb-IF4cUBYfCg== ip: azo~zh~|n~{n, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-29 13:02:42.305633 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 13:03:18.450366 + : pb-IF5dU3UiAw== ip: a~o~~acajgajc~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-29 13:04:55.813363 + : pb-IF41U2scIg== ip: ak~}hhaoaaib|, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-29 13:10:08.929642 + : pb-IF49UnYRLQ== | kicked > reason:Banned account -2023-03-29 13:10:47.055347 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-29 13:11:23.184070 + : pb-IF5dU3UiAw== ip: a~o~~acajgajc~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-29 13:13:04.931885 + : pb-IF4jF1NY started kick vote for pb-IF5dU3UiAw==. -2023-03-29 13:13:08.451099 + : pb-IF5dU3UiAw== kicked by kickvotes. -2023-03-29 13:15:13.982300 + : pb-IF4VU3laVA== ip: ak~~`dajcvv`, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-29 13:15:31.049461 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 13:21:38.332172 + : pb-IF5dU3UiAw== ip: a~o~~acajgajc~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-29 13:22:28.514034 + : pb-IF5QU3AaLg== ip: ak~}maamgaigz, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-03-29 13:22:43.572962 + : pb-IF4TC2Eb ip: ak~yo~~`ia`b, Device id: 4badf8467c0a110912d5396d06c12e5f33b49faf -2023-03-29 13:22:49.600140 + : pb-IF49UnYRLQ== | kicked > reason:Banned account -2023-03-29 13:23:47.820078 + : pb-IF4TC2Eb ip: ak~yo~~`ia`b, Device id: 4badf8467c0a110912d5396d06c12e5f33b49faf -2023-03-29 13:27:42.653705 + : pb-IF4JUBMZCA== ip: an~~ahaidajc, Device id: a1f6dc2f8f93ed728dfa5f8917f880300ab47b8e -2023-03-29 13:29:37.003427 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 13:29:51.055128 + : pb-IF40UncaLg== ip: dvvc}vb}j~zj, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-29 13:30:09.519320 + : pb-IF5UUBkoAA==|| kicked > new account -2023-03-29 13:30:42.221724 + : pb-IF4cUBYfCg== ip: azo~zh~|n~{n, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-29 13:33:30.858689 + : pb-JiNJARFdXUtEXF1DEUVWUVRCE0VcRFJE ip: ak~vo~vo~~ah, Device id: 46395f14c4815f4562d417739f212663e76c66ce -2023-03-29 13:35:14.234062 + : pb-IF40UncaLg== ip: dvvc}vb}j~zj, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-29 13:39:21.127164 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~~adaoaaif{, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-03-29 13:44:42.248907 + : pb-IF4JU2ozPQ== ip: azo~{n~~obani, Device id: dd405691e081300904dd60069adb0e51fd6f15ee -2023-03-29 13:45:28.439321 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-29 13:45:47.524818 + : pb-IF4sVRgsNQ== ip: evvazk~~n~~i, Device id: 4ab1c6130f4f06661acf82b51be1d90a50dbd7d8 -2023-03-29 13:46:55.781089 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 13:48:15.050076 + : pb-IF4WU0wvVA== ip: dvvc}vb{j~vm, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-29 13:49:52.373115 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 13:50:28.291143 + : pb-IF4WU0wvVA== started kick vote for pb-LV4FVxEOBxcUVQxERkNWUFFA. -2023-03-29 13:50:58.295019 + : Kick vote End -2023-03-29 13:52:03.839530 + : pb-IF49UnYRLQ== | kicked > reason:Banned account -2023-03-29 13:53:13.102569 + : pb-IF4JU2ozPQ== ip: a|o~vo~wn~~ac, Device id: dd405691e081300904dd60069adb0e51fd6f15ee -2023-03-29 13:54:38.391394 + : pb-IF4TV3RbDA== ip: an~zi~}lbaja{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-29 13:54:48.421340 + : pb-IF4WU0wvVA== ip: dvvc}vb{j~vm, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-29 13:57:29.024537 + : pb-IF4WU0wvVA== ip: dvvc}vb{j~vm, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-29 13:58:39.274326 + : pb-IF40UncaLg== ip: dvvc}vb~a~~lc, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-29 13:58:52.327692 + : pb-IF4JU2ozPQ== ip: a|o~vo~~icajd}, Device id: dd405691e081300904dd60069adb0e51fd6f15ee -2023-03-29 13:59:18.413433 + : pb-IF4zU2MgJw== ip: a}l~~meaje|vb{j, Device id: 5b13413ad2a035b34073c5918da9363afe5b8217 -2023-03-29 14:00:22.613535 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 14:02:18.004560 + : pb-IF4cUBYfCg== ip: azo~zh~zj~~n`, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-29 14:06:39.232392 + : pb-IF4uUBYGMw==|| kicked > new account -2023-03-29 14:07:05.045317 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-29 14:07:37.156957 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 14:08:41.343643 + : pb-IF4TV3RbDA== ip: azo~{m~~iaaa, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-29 14:10:16.674615 + : pb-IF4WU0wvVA== ip: dvvc}vb{j~vm, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-29 14:11:16.877188 + : pb-IF40U006LA== ip: b~j~~hdajbvvbk, Device id: 8152065735a1adcc2e41d2fac46308736bb5eb90 -2023-03-29 14:11:29.933158 + : pb-IF40U006LA== ip: b~j~~hdajbvvbk, Device id: 8152065735a1adcc2e41d2fac46308736bb5eb90 -2023-03-29 14:11:37.958079 + : pb-IF4jF1NY ip: azj~z`~~vb}o, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-29 14:14:57.685531 + : pb-IF43UBY-DA== ip: azo~{j~vaw`, Device id: d41099c1a4a4dfb8315d54b80d01ecfd55c61166 -2023-03-29 14:16:36.029707 + : pb-IF4TV3RbDA== ip: azo~{m~~j`aje}, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-29 14:16:43.062874 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-29 14:20:01.713431 + : pb-IF4vVRUFVA== started kick vote for pb-IF5WVUJcIg==. -2023-03-29 14:20:31.719269 + : Kick vote End -2023-03-29 14:21:16.968711 + : pb-IF5WVUJcIg== ip: an~~agaaaaid, Device id: b3de9ee7972370f42b4cf734f3c3e140c798dcc6 -2023-03-29 14:22:23.225836 + : pb-IF5WVUJcIg== ip: an~~agaaaaid, Device id: b3de9ee7972370f42b4cf734f3c3e140c798dcc6 -2023-03-29 14:24:25.663504 + : pb-IF5dU3UiAw== ip: a~o~~acajgajc~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-29 14:24:34.695922 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~~adaoaaif{, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-03-29 14:25:03.817474 + : pb-IF4TV3RbDA== started kick vote for pb-IF4OU2QjMQ==. -2023-03-29 14:25:33.821099 + : Kick vote End -2023-03-29 14:27:49.959649 + : pb-IF4jF1NY started kick vote for pb-IF5dU3UiAw==. -2023-03-29 14:28:08.553022 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 14:28:19.962484 + : Kick vote End -2023-03-29 14:33:04.643933 + : pb-IF5VU1JZMw== ip: an~}ica`fam`, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-03-29 14:34:27.930350 + : pb-IF41U2scIg== ip: ak~}hhaoaaib|, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-29 14:34:47.995950 + : pb-IF40U3MyVQ== ip: b}k~}kcaodaj`~, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-29 14:35:08.070581 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 14:38:15.791119 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 14:38:36.862965 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 14:38:42.208546 + : pb-IF4OPhMg started kick vote for pb-IF5cU0kkKA==. -2023-03-29 14:38:53.918364 + : pb-IF4SV0pbDw== ip: b}k~}kca`aajb, Device id: 5444889821830a75eb4398262074abf5bda68618 -2023-03-29 14:39:12.209451 + : Kick vote End -2023-03-29 14:40:38.283293 + : pb-IF5SU3U7Jg== ip: d~va{m~~adaii, Device id: cf0fcbc767194746b823e3c8c2d0b76fa5e2d9d4 -2023-03-29 14:41:29.857096 + : pb-IF4OU2QjMQ== started kick vote for pb-IF4TV3RbDA==. -2023-03-29 14:41:59.857845 + : Kick vote End -2023-03-29 14:42:00.569927 + : pb-IF4wV24HBw== ip: a~o~va~}hfaic~, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 14:46:23.535356 + : pb-IF43UBY-DA== ip: azo~{j~vavm, Device id: d41099c1a4a4dfb8315d54b80d01ecfd55c61166 -2023-03-29 14:47:46.176654 + : pb-IF4vVRUFVA== started kick vote for pb-IF4wV24HBw==. -2023-03-29 14:48:06.704267 + : Kick vote End -2023-03-29 14:49:55.214132 + : pb-IF4oUxAGPQ== ip: azj~zo~}l`ajav, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-29 14:51:34.551049 + : pb-IF4nUxE4Nw== ip: an~~acaih~vaxm, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-29 14:53:24.930813 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 14:54:15.130893 + : pb-IF43UBY-DA== ip: azo~{j~vavm, Device id: d41099c1a4a4dfb8315d54b80d01ecfd55c61166 -2023-03-29 14:54:22.160405 + : pb-IF4wV24HBw== ip: a~o~va~}hfaic~, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 14:55:11.335104 + : pb-IF4iUlUpAA== ip: an~~adamaaja, Device id: 845fc3eb8a5e8166351a47ed1d7c7f3a0d8ea7c4 -2023-03-29 14:56:20.609775 + : pb-IF49UnYRLQ== | kicked > reason:Banned account -2023-03-29 14:59:11.186850 + : pb-IF5cUkwjDA== ip: dvvcyvb~l~}m, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-03-29 15:03:25.053935 + : pb-IF5cU2haHA== ip: b}k~~`famaaja}, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-03-29 15:04:10.758079 + : pb-IF4OU2QjMQ== started kick vote for pb-IF4iUlUpAA==. -2023-03-29 15:04:40.761652 + : Kick vote End -2023-03-29 15:06:52.811422 + : pb-IF4wV24HBw== ip: a~o~va~}hfaic~, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 15:07:20.893512 + : pb-IF5dU3UiAw== ip: a~o~~acajgajc~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-29 15:10:09.501108 + : pb-IF43UBY-DA== ip: azo~{j~vavm, Device id: d41099c1a4a4dfb8315d54b80d01ecfd55c61166 -2023-03-29 15:10:14.523599 + : pb-IF4SU1QgKg== ip: ak~~`baniai`x, Device id: b88144a730d4a7035d6caaa7191e5034a2e4c57c -2023-03-29 15:15:01.501766 + : pb-IF4WU0wvVA== ip: dvvc}vb{j~vm, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-29 15:16:10.768315 + : pb-IF5VU3lYDA== ip: azj~z`~~`aajbz, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-03-29 15:19:19.624385 + : pb-IF4WU0wvVA== started kick vote for pb-IF4pUnVaNA==. -2023-03-29 15:19:38.166149 + : Kick vote End -2023-03-29 15:23:04.557650 + : pb-IF4zUkdTMQ==|| kicked > new account -2023-03-29 15:25:42.858337 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 15:26:28.597706 + : pb-IF4OU2QjMQ== started kick vote for pb-IF4tCRgv. -2023-03-29 15:26:58.597603 + : Kick vote End -2023-03-29 15:30:07.798343 + : pb-IF5dU3UiAw== ip: a~o~~acajgajc~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-29 15:31:33.134329 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-29 15:31:52.217277 + : pb-IF41U2scIg== ip: ak~}hhaoaaib|, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-29 15:35:52.089095 + : pb-IF4VU3laVA== ip: ak~~`dajcvv`, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-29 15:37:34.417644 + : pb-IF5QV2kTAw== ip: a}j~~oba`aajay, Device id: 0f930d330d32d6798357bc9cc2d102b30d48e95d -2023-03-29 15:38:36.644801 + : pb-IF4-Um4_Lw== ip: azo~|k~}kiajb, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-03-29 15:39:31.857611 + : pb-IF4cUBYfCg== ip: azo~zh~zo~ym, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-29 15:40:22.007113 + : pb-IF40UncaLg== ip: dvvc}vb~a~~lc, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-29 15:40:49.068224 + : pb-IF4VU3laVA== started kick vote for pb-IF4oUmM8KQ==. -2023-03-29 15:41:03.189611 + : pb-IF4TV3RbDA== ip: azo~{m~~jeaje{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-29 15:41:19.074263 + : Kick vote End -2023-03-29 15:44:19.609978 + : pb-IF4VU3laVA== started kick vote for pb-IF4oUmM8KQ==. -2023-03-29 15:44:49.615461 + : Kick vote End -2023-03-29 15:47:24.536249 + : pb-IF4AV1QqEQ== ip: an~}ica`gaia}, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-03-29 15:49:05.864038 + : pb-IF4jF1NY ip: a~j~xa~xj~}l`, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-29 15:49:21.961532 + : pb-IF4wV24HBw== ip: a~o~va~}hfaic~, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 15:49:39.013724 + : pb-IF4jF1NY ip: azj~z`~{vh~, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-29 15:56:03.369521 + : pb-IF4MU0lfUg== ip: azo~{m~~hiaii{, Device id: ddad25f2fa4276ca6170521192999f9f479215a8 -2023-03-29 16:00:22.672362 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4vVVYkEg==. -2023-03-29 16:00:52.674814 + : Kick vote End -2023-03-29 16:01:24.473969 + : pb-IF4cUBYfCg== ip: azo~zh~|`~{h, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-29 16:06:29.773449 + : pb-IF4AV1QqEQ== started kick vote for pb-IF48U2wpPA==. -2023-03-29 16:06:49.605070 + : pb-IF4NVxAZDg== ip: dvvcyva~m~xl, Device id: 9dda09fcf9a3701e0e8edddd357f35fc1813050f -2023-03-29 16:06:59.778610 + : Kick vote End -2023-03-29 16:07:21.685539 + : pb-IF4wV24HBw== ip: a~o~va~}hfaic~, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 16:07:31.727379 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~~adaoaaif{, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-03-29 16:08:02.938158 + : pb-IF5XU0YhKg== started kick vote for pb-IF4NU1gJUg==. -2023-03-29 16:08:32.939837 + : Kick vote End -2023-03-29 16:08:55.015190 + : pb-IF4TVU4xKw== ip: azj~z`~}iband, Device id: 9d7f411cef340ca34ebe7a3a3abb4605c65cbba2 -2023-03-29 16:09:32.149114 + : pb-IF4WU0wvVA== ip: dvvc}vavk~wn, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-29 16:11:24.929328 + : pb-IF4AV1QqEQ== started kick vote for pb-IF48U2wpPA==. -2023-03-29 16:11:48.767964 + : Kick vote End -2023-03-29 16:12:29.724856 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4MU0lfUg==. -2023-03-29 16:12:59.726779 + : Kick vote End -2023-03-29 16:14:59.251668 + : pb-IF4QUhYvVA== ip: azo~{l~}hda``, Device id: 65684cdc37e97284687c364b27a72d41e2a2fa77 -2023-03-29 16:15:06.275341 + : pb-IF4cU1AjDw== ip: azo~zh~yo~}kg, Device id: 23d67137d6aa4be21a991ed949cf0b73dc376a7a -2023-03-29 16:18:22.611240 + : pb-IF4jF1NY started kick vote for pb-IF5XU0YhKg==. -2023-03-29 16:18:52.618548 + : Kick vote End -2023-03-29 16:19:54.571835 + : pb-IF4vUBc9Hw==|| kicked > new account -2023-03-29 16:20:26.648464 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4WU0wvVA==. -2023-03-29 16:20:44.339369 + : Kick vote End -2023-03-29 16:21:08.461124 + : pb-IF41U2scIg== ip: ak~}hhaoaaib|, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-29 16:22:18.731218 + : pb-IF4TV3RbDA== ip: azo~{m~~igan, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-29 16:26:36.722695 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 16:29:24.490232 + : pb-IF4jF1NY started kick vote for pb-IF4NU1gJUg==. -2023-03-29 16:29:54.495082 + : Kick vote End -2023-03-29 16:31:20.672788 + : pb-IF49VFQlPA== ip: azo~{m~~`hajdz, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-29 16:32:05.850405 + : pb-IF49VFQlPA== ip: azo~{m~~`hajdz, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-29 16:32:27.913739 + : pb-IF4jUBMiCg== ip: azh~~jiai`}vi|, Device id: 110d204538538c5e9a37a58eb6c53fa6e365be08 -2023-03-29 16:32:38.974177 + : pb-IF49VFQlPA== ip: azo~{m~~`hajdz, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-29 16:33:05.075239 + : pb-IF49VFQlPA== ip: azo~{m~~`hajdz, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-29 16:33:40.853103 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5TUBEZUQ==. -2023-03-29 16:34:09.309936 + : pb-IF49VFQlPA== ip: azo~{m~~`hajdz, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-29 16:34:10.856630 + : Kick vote End -2023-03-29 16:34:34.405861 + : pb-IF49VFQlPA== ip: azo~{m~~`hajdz, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-29 16:34:51.474413 + : pb-IF49VFQlPA== ip: azo~{m~~`hajdz, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-29 16:37:45.099614 + : pb-IF41U2scIg== ip: ak~}hhaoaaib|, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-29 16:41:12.808916 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-29 16:41:13.876884 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4MU0lfUg==. -2023-03-29 16:41:43.879898 + : Kick vote End -2023-03-29 16:44:11.472631 + : pb-IF4WUBJcVQ== ip: ayk~zk~~oiaj`w, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-03-29 16:44:24.535456 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 16:48:17.529149 + : pb-IF4TV3RbDA== ip: azo~{m~~ieaif~, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-29 16:55:27.847607 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4WUBJcVQ==. -2023-03-29 16:55:57.850294 + : Kick vote End -2023-03-29 16:57:12.614744 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-29 16:58:10.802723 + : pb-IF4TV3RbDA== ip: azo~{m~~jbaia~, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-29 16:58:47.946663 + : pb-IF4SXhUa ip: azj~z`~xj~}ka, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-03-29 16:59:00.985748 + : pb-IF4WUBJcVQ== started kick vote for pb-IF4AV1QqEQ==. -2023-03-29 16:59:30.991042 + : Kick vote End -2023-03-29 17:03:05.901155 + : pb-IF4WUBJcVQ== ip: ayk~zk~~oiaj`w, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-03-29 17:04:16.688690 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4WUBJcVQ==. -2023-03-29 17:04:23.187926 + : pb-IF4dUlBSCw== ip: azo~|o~}iiaie{, Device id: 62d9378fcbbf71d42be6f707d298488a44febb0f -2023-03-29 17:04:46.691622 + : Kick vote End -2023-03-29 17:07:15.797204 + : pb-IF4WUBJcVQ== ip: ayk~zk~~oiaj`w, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-03-29 17:07:28.850424 + : pb-IF49U0QJDw== ip: b}k~}khaj`{ve|, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-29 17:08:49.316636 + : pb-IF4dUlBSCw== started kick vote for pb-IF4nUxE4Nw==. -2023-03-29 17:09:19.324703 + : Kick vote End -2023-03-29 17:10:39.807099 + : pb-IF5UUBkuIg==|| kicked > new account -2023-03-29 17:10:45.525170 + : pb-IF4dUlBSCw== ip: azo~|o~}iiaie{, Device id: 62d9378fcbbf71d42be6f707d298488a44febb0f -2023-03-29 17:13:57.241572 + : pb-IF4yU1oxUg== ip: azo~|j~vo~x, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-03-29 17:17:05.035067 + : pb-IF4-Um4_Lw== ip: azo~|k~}kiajb, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-03-29 17:17:32.140343 + : pb-IF5dU3UiAw== ip: a~o~~acajgajc~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-29 17:19:10.007639 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5dU3UiAw==. -2023-03-29 17:19:40.014645 + : Kick vote End -2023-03-29 17:24:12.568323 + : pb-IF49U0QJDw== ip: b}k~}khaj`{ve|, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-29 17:24:52.507181 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4IV3Q5CA==. -2023-03-29 17:25:12.705122 + : pb-IF4IV3Q5CA== kicked by kickvotes. -2023-03-29 17:28:46.651465 + : pb-IF41U2scIg== ip: a~h~}jgaiaaii, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-29 17:28:58.677228 + : pb-IF4SXhUa ip: azj~z`~xj~}ka, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-03-29 17:32:10.392015 + : pb-IF49VFQlPA== ip: azo~{m~~`hajdz, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-29 17:32:30.467240 + : pb-IF4dUlBSCw== ip: azo~|o~}iiaie{, Device id: 62d9378fcbbf71d42be6f707d298488a44febb0f -2023-03-29 17:34:25.910114 + : pb-IF5dU3UiAw== ip: a~o~~acajgajc~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-29 17:34:38.937149 + : pb-IF40U006LA== ip: b}k~}jdaifajb, Device id: 8152065735a1adcc2e41d2fac46308736bb5eb90 -2023-03-29 17:35:16.063735 + : pb-IF4dUlBSCw== ip: azo~|o~}iiaie{, Device id: 62d9378fcbbf71d42be6f707d298488a44febb0f -2023-03-29 17:36:28.338099 + : pb-IF4VU3laVA== ip: ak~~`ca`baj`v, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-29 17:36:30.348846 + : pb-IF43UBYDDw== ip: an~}ifaidvak, Device id: bac9a25ddfe04cc1839f7d731f3d2d56a6f09132 -2023-03-29 17:37:52.680461 + : pb-IF4lU0ldVA== ip: a~i~~jeaje}vi}, Device id: 58f9216f17d739c5e470643b87f7578570d8322f -2023-03-29 17:39:18.809976 + : pb-IF5dU3UiAw== started kick vote for pb-IF43UBYDDw==. -2023-03-29 17:39:45.567992 + : Kick vote End -2023-03-29 17:40:28.367313 + : pb-IF4dUlBSCw== ip: azo~|o~}iiaie{, Device id: 62d9378fcbbf71d42be6f707d298488a44febb0f -2023-03-29 17:41:42.696684 + : pb-IF4dUlBSCw== started kick vote for pb-IF5dU3UiAw==. -2023-03-29 17:42:12.698843 + : Kick vote End -2023-03-29 17:45:35.458625 + : pb-IF4DU1I4CQ== ip: azj~z`~}jcaicv, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-29 17:45:51.525836 + : pb-IF4qU1MDVg== ip: b}k~}khaj`{ve|, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-29 17:49:19.495188 + : pb-IF4VU3laVA== started kick vote for pb-IF4mU1cvEg==. -2023-03-29 17:49:49.498246 + : Kick vote End -2023-03-29 17:52:43.937165 + : pb-IF4cUBYfCg== ip: azo~zh~yk~~ib, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-29 17:54:32.321614 + : pb-IF5VU1JZMw== ip: an~}ica`fam`, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-03-29 17:54:45.354690 + : pb-IF4qU1MDVg== ip: b}k~}khaj`{ve|, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-29 17:56:21.698943 + : pb-IF4qU1MDVg== ip: b}k~}khaj`{ve|, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-29 17:58:03.985976 + : pb-IF4oAGFS started kick vote for pb-IF4yU0YDUw==. -2023-03-29 17:58:07.070423 + : pb-IF40VUkdLQ== ip: an~xn~}lgaigx, Device id: 9dc1e79859082154092b313e92af123bc0fab786 -2023-03-29 17:58:08.074375 + : pb-IF4PUxAMLQ== ip: d}vam~}kaaja, Device id: 8e7ef341385c1aebdacd3ab6a7e3b9b809040bce -2023-03-29 17:58:33.991161 + : Kick vote End -2023-03-29 17:59:12.292651 + : pb-IF4dUhM7Cg== ip: bj~~lbai`{vfz, Device id: 4d068113513c2bde4640dec587896d2b7ee5a281 -2023-03-29 18:01:19.890781 + : pb-IF4PUxAMLQ== ip: d}vam~}kaaja, Device id: 8e7ef341385c1aebdacd3ab6a7e3b9b809040bce -2023-03-29 18:03:19.879790 + : pb-IF4oAGFS started kick vote for pb-IF4yU0YDUw==. -2023-03-29 18:03:49.885637 + : Kick vote End -2023-03-29 18:03:51.570497 + : pb-IF4mU1cvEg== ip: azo~zh~zh~va, Device id: 1efbebcd0ac6c850063ce4b7339784c628ee57c4 -2023-03-29 18:04:47.901823 + : pb-IF4mU1cvEg== ip: azo~zh~zh~va, Device id: 1efbebcd0ac6c850063ce4b7339784c628ee57c4 -2023-03-29 18:05:27.045801 + : pb-IF5WU0cRAg== ip: d}va`~~afai`w, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-29 18:05:43.099964 + : pb-IF4MUnc4Ag== ip: ak~~laaj`vbk, Device id: 92e063e3bd73b7ad1c293c935373998df5760dbe -2023-03-29 18:05:56.143384 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~~adaoaaif{, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-03-29 18:06:06.167665 + : pb-IF4MUnc4Ag== ip: ak~~laaj`vbk, Device id: 92e063e3bd73b7ad1c293c935373998df5760dbe -2023-03-29 18:06:56.888346 + : pb-IF4DU1I4CQ== started kick vote for pb-LV4FVxEOBxcUVQxERkNWUFFA. -2023-03-29 18:07:26.890828 + : Kick vote End -2023-03-29 18:25:09.161416 + : pb-IF4yU0YDUw== ip: a~h~}jdaiazvazk, Device id: 1047ec0703ddd231b0668080e79608c8fd177409 -2023-03-29 18:27:31.690397 + : pb-IF41V2Q7Eg== ip: azj~zo~}jiaiew, Device id: 86db9bba7f159ba12f89b2a04db88598a85b5515 -2023-03-29 18:37:42.725005 + : pb-IF5cU0kkKA== ip: an~}ifajd}va|o, Device id: 21134c91a35ed88f5893ed72fdae3ef94c11d099 -2023-03-29 18:38:47.953849 + : pb-IF4vU0MENg== ip: azj~zo~|i~x, Device id: 6382f3717c6ac3650740a14e9d6ab4b67728a26a -2023-03-29 18:41:02.950584 + : pb-IF4AUBc7Dg==|| kicked > new account -2023-03-29 18:45:15.289678 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~~adaoaaif{, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-03-29 18:47:12.709487 + : pb-JiNJARBZVkVHXl1HF0ZTXVNHEUJfQlJB ip: a}h~~khai`xvh~, Device id: a339ea1ea5f14e84d570f9df718222d56de0140b -2023-03-29 18:49:01.750474 + : pb-IF40UBdcCw==|| kicked > new account -2023-03-29 18:51:42.316398 + : pb-IF4lUBchJw==|| kicked > new account -2023-03-29 18:51:59.732413 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-29 18:53:16.011036 + : pb-JiNJARBZVkVHXl1HF0ZTXVNHEUJfQlJB ip: a}h~~khai`xvh~, Device id: a339ea1ea5f14e84d570f9df718222d56de0140b -2023-03-29 18:54:18.246466 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-29 19:02:24.129728 + : pb-IF40U3MyVQ== ip: b}k~}kcanhai`z, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-29 19:02:29.147892 + : pb-IF40U3MyVQ== ip: b}k~}kcanhai`z, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-29 19:04:54.689837 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-29 19:06:05.981791 + : pb-IF5WU0cRAg== ip: d}va`~~afai`w, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-29 19:07:26.287118 + : pb-IF40U3MyVQ== ip: b}k~}kcanhai`z, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-29 19:08:09.436634 + : pb-IF4-Um4_Lw== ip: azj~zo~wi~}lg, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-03-29 19:10:03.515167 + : pb-IF4-Um4_Lw== started kick vote for pb-IF5WU2EINA==. -2023-03-29 19:10:09.869436 + : pb-IF5dVWEJMg== ip: a~o~}jbaie}vazm, Device id: 3939fc10737ad53f783649761bea48dc2b3522f7 -2023-03-29 19:10:33.518325 + : Kick vote End -2023-03-29 19:18:01.990661 + : pb-IF5UUxgjIA== ip: azj~z`~xi~~`d, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-29 19:18:11.017451 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-29 19:18:18.042014 + : pb-IF5dVFQeEw== ip: dvvc{va|a~~mh, Device id: 1598392744ee831860d1b2469a4cd8504df0373d -2023-03-29 19:18:29.079958 + : pb-IF4-Um4_Lw== ip: azj~zo~wi~}lg, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-03-29 19:20:00.700850 + : pb-IF4zUBckEQ==|| kicked > new account -2023-03-29 19:21:18.678527 + : pb-IF5QU3AaLg== ip: azo~|j~xvaza, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-03-29 19:22:38.914010 + : pb-IF4WUBYFJg== ip: azj~z`~}iaa`b, Device id: 1b15b7fb9d8ca5070df38f90e4cb49f1e1d2fdfe -2023-03-29 19:24:11.236805 + : pb-IF4hU3EgJA== ip: azo~{l~~khaj`{, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-03-29 19:24:13.243986 + : pb-IF5dVFQeEw== ip: dvvc{va|a~~mh, Device id: 1598392744ee831860d1b2469a4cd8504df0373d -2023-03-29 19:27:57.121740 + : pb-IF4eUBMTKA== ip: ak~}hhaoaaib|, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-29 19:28:57.335138 + : pb-IF4WUBYFJg== ip: azj~z`~}iaa`b, Device id: 1b15b7fb9d8ca5070df38f90e4cb49f1e1d2fdfe -2023-03-29 19:32:48.184909 + : pb-IF4TUBVePQ== ip: dvvc}vavn~zo, Device id: ec368a7f45bf79afd075b4c8e47f595b6ce139f5 -2023-03-29 19:36:22.944789 + : pb-IF5dU3UiAw== ip: azo~zi~wk~za, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-29 19:40:15.808302 + : pb-IF4gU0wxBw== ip: a~h~}jgaiaaii, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-29 19:44:17.733875 + : pb-IF41U2scIg== ip: ak~}hhaniaaa, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-29 19:52:36.467853 + : pb-IF5QU3AaLg== ip: azo~|j~xvaza, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-03-29 19:53:06.583048 + : pb-IF5QU3AaLg== ip: ak~}maamgaigz, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-03-29 19:55:33.090172 + : pb-IF5XU0YhKg== ip: azo~{m~zi~~mf, Device id: 75ff7432c56d2b0a6ebcdf61a1cdd1675410cbdb -2023-03-29 19:55:49.140595 + : pb-IF5VU3lYDA== ip: azj~z`~~``ai`z, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-03-29 19:56:30.278100 + : pb-IF5TUhE7Fw== ip: azj~z`~vf}, Device id: 504b46b10edcc58410496b3135625f95fa6a5da7 -2023-03-29 19:56:39.300324 + : pb-IF5TUhE7Fw== ip: azj~z`~vf}, Device id: 504b46b10edcc58410496b3135625f95fa6a5da7 -2023-03-29 19:57:49.572155 + : pb-IF4zU1RSLQ== ip: ak~~lgaj`wvavk, Device id: 6bc9b4ebe288e33d61cc3591693f470a96bc6661 -2023-03-29 20:05:09.174082 + : pb-IF41U2scIg== ip: ak~}hhaniaaa, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-29 20:07:43.751234 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 20:09:40.146206 + : pb-IF5cV044Jw== ip: a~o~v`~~h~~i`, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-03-29 20:10:39.365524 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~~je, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-29 20:10:46.379568 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 20:13:07.870936 + : pb-IF4TV3RbDA== ip: azo~{m~~iaakg, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-29 20:14:47.256201 + : pb-IF4XU0gINA== ip: an~}ifajbyvhx, Device id: 8cc61bc461d7364a906083a64c3d29ce58d27953 -2023-03-29 20:15:34.429272 + : pb-IF4wVVBdVw== ip: dvvcxvb`~~`d, Device id: 781d416387fb8622c6ab26afb3c7f62ab3439c24 -2023-03-29 20:15:40.445860 + : pb-IF4xVVMNMw== ip: dvvcxvb`~~`d, Device id: 72d01d0ef14ea66d4900465b29dce84f266d5749 -2023-03-29 20:16:28.604998 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 20:18:37.088639 + : pb-IF4vV0g8Mw== ip: azo~|j~}lcaidz, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-03-29 20:19:41.062959 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4XU0gINA==. -2023-03-29 20:20:11.069879 + : Kick vote End -2023-03-29 20:20:41.539524 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvva{va}a~wl, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-29 20:22:30.961870 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvva{va}a~wl, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-29 20:28:53.330411 + : pb-IF4DVUUaEA== ip: cxvb|o~xn~vl, Device id: e0439021b29f5d621e5e6118aa44182303b8ae8c -2023-03-29 20:29:04.371862 + : pb-IF5dU3UiAw== ip: azo~zi~wa~~ni, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-29 20:29:29.467414 + : pb-IF4DVUUaEA== ip: cxvb|o~xn~vl, Device id: e0439021b29f5d621e5e6118aa44182303b8ae8c -2023-03-29 20:30:09.121852 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4vVRUFVA==. -2023-03-29 20:30:13.267881 + : Kick vote End -2023-03-29 20:30:16.616449 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 20:30:24.650997 + : pb-IF4IV04ZKw== ip: azj~z`~x`~~kc, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-03-29 20:33:07.242331 + : pb-IF5SUkwMAg== ip: dvvcyvah~|, Device id: a437c2a1793c75d0da48b9b93a0f30175d79dd89 -2023-03-29 20:37:06.143142 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 20:38:17.889019 + : pb-IF4vVRUFVA== started kick vote for pb-IF4IV04ZKw==. -2023-03-29 20:38:44.220325 + : Kick vote End -2023-03-29 20:38:55.541488 + : pb-IF4nUxE4Nw== ip: an~~acaih~vazo, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-29 20:39:13.611055 + : pb-IF4IV04ZKw== ip: azj~z`~x`~~kc, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-03-29 20:39:22.639478 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 20:39:41.693757 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 20:40:37.769672 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG started kick vote for pb-IF41U2scIg==. -2023-03-29 20:41:07.772509 + : Kick vote End -2023-03-29 20:41:09.964910 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vax`, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-29 20:41:34.050043 + : pb-IF5RU1JcJw== ip: b}k~~`gaja|va~h, Device id: 9c959f99116c4fbe049a0badd6fd2b9ec10676e5 -2023-03-29 20:42:35.230679 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 20:43:00.362850 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF4cU1ceKw==. -2023-03-29 20:43:06.358357 + : pb-IF5UUxgjIA== ip: azj~z`~xj~xi, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-29 20:43:30.363954 + : Kick vote End -2023-03-29 20:44:30.975150 + : pb-IF5QUGFbAg==|| kicked > new account -2023-03-29 20:45:49.953124 + : pb-IF4-JUgB ip: ak~~j`aje}vfv, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-29 20:46:50.191964 + : pb-IF5UUxgjIA== ip: azj~z`~xj~xi, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-29 20:46:54.624750 + : pb-IF5VU2IOHA== started kick vote for pb-IF5dU3UiAw==. -2023-03-29 20:47:24.627259 + : Kick vote End -2023-03-29 20:47:55.727963 + : pb-IF4uUBYSIA==|| kicked > new account -2023-03-29 20:48:14.483587 + : pb-IF40U3MyVQ== ip: b}k~}kcanhai`z, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-29 20:50:21.900763 + : pb-IF5UUxgjIA== ip: azj~z`~xj~xi, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-29 20:52:32.410849 + : pb-IF5TU1cuBg== ip: azj~z`~}hca`f, Device id: 7db1cbe92f94d948510c9ea9dac8e7030940d5ec -2023-03-29 20:52:58.511214 + : pb-IF5TU1cuBg== ip: azj~z`~}hca`f, Device id: 7db1cbe92f94d948510c9ea9dac8e7030940d5ec -2023-03-29 20:54:27.851371 + : pb-IF5dU3UiAw== ip: azo~zi~wa~~ni, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-29 20:55:11.932782 + : pb-IF4vV0g8Mw== started kick vote for pb-IF40U3MyVQ==. -2023-03-29 20:55:41.938606 + : Kick vote End -2023-03-29 20:56:13.272782 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 20:56:19.294285 + : pb-IF5SUkwMAg== ip: dvvcyvah~|, Device id: a437c2a1793c75d0da48b9b93a0f30175d79dd89 -2023-03-29 20:56:27.330403 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vax`, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-29 20:56:43.386129 + : pb-IF4-UxI7Mg== ip: ak~}l`aifvva{h, Device id: c9b75a67d7d77078ad188d740656d5436ebb454c -2023-03-29 20:56:57.451593 + : pb-IF4-UxI7Mg== ip: ak~}l`aifvva{h, Device id: c9b75a67d7d77078ad188d740656d5436ebb454c -2023-03-29 20:57:03.484802 + : pb-IF4-UxI7Mg== ip: ak~}l`aifvva{h, Device id: c9b75a67d7d77078ad188d740656d5436ebb454c -2023-03-29 20:57:12.516874 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 20:57:18.535962 + : pb-IF4rUBUoVg== ip: azj~z`~}hbal`, Device id: 60b7216350eeabb112740965eb884d521c6c9427 -2023-03-29 20:58:01.684486 + : pb-IF4rUBUoVg== ip: azj~z`~}hbal`, Device id: 60b7216350eeabb112740965eb884d521c6c9427 -2023-03-29 20:58:42.806129 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 20:59:07.904042 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vax`, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-29 20:59:10.917501 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-29 20:59:16.940380 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vax`, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-29 21:02:12.563898 + : pb-IF41U2scIg== ip: ak~}hhaniaaa, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-29 21:02:25.609180 + : pb-IF5UUBI9MA== ip: azo~|j~}jgami, Device id: 4381142d5e8cfc6ab20167b3a40f172ee10010f5 -2023-03-29 21:06:58.572895 + : pb-IF4AV1QqEQ== ip: an~}ica`gaia}, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-03-29 21:08:39.947905 + : pb-IF4CU1MGVQ== ip: bk~~abajdzvazh, Device id: 2098c899ba108707a74842347aa70552d1904ee7 -2023-03-29 21:10:07.269879 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: ak~~o`ameajc, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-03-29 21:10:07.577701 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4rUBUoVg==. -2023-03-29 21:10:37.578623 + : Kick vote End -2023-03-29 21:13:03.889929 + : pb-IF5TU1cuBg== ip: azj~z`~}hca`f, Device id: 7db1cbe92f94d948510c9ea9dac8e7030940d5ec -2023-03-29 21:14:12.110925 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: ak~~o`ameajc, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-03-29 21:14:58.383183 + : pb-IF4AV1QqEQ== started kick vote for pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC. -2023-03-29 21:15:00.270836 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-29 21:15:28.383726 + : Kick vote End -2023-03-29 21:18:49.204478 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 21:20:25.228238 + : pb-IF5UUBMtUQ== started kick vote for pb-IF4AV1QqEQ==. -2023-03-29 21:20:55.237791 + : Kick vote End -2023-03-29 21:23:24.296198 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-29 21:24:25.531711 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-29 21:26:28.998023 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 21:26:57.107802 + : pb-IF5RUxkiVA== ip: gwvavh~~lfaiev, Device id: a4b01ca52d19830a29ea61207bfc102f0fa1b0c7 -2023-03-29 21:26:59.112068 + : pb-IF5cUkwjDA== ip: b}k~~`iajdwvaz, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-03-29 21:27:25.841863 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5TU1cuBg==. -2023-03-29 21:27:55.847779 + : Kick vote End -2023-03-29 21:29:02.528658 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-29 21:31:32.091524 + : pb-IF5RUxkiVA== ip: gwvavh~~lfaiev, Device id: a4b01ca52d19830a29ea61207bfc102f0fa1b0c7 -2023-03-29 21:31:51.178484 + : pb-IF49U0QJDw== ip: an~}heaj`~vavh, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-29 21:32:06.109606 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4rUBUoVg==. -2023-03-29 21:32:36.110533 + : Kick vote End -2023-03-29 21:32:39.375218 + : pb-IF40UncaLg== ip: dvvc}vb~m~~li, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-29 21:32:47.408766 + : pb-IF5RUxkiVA== ip: gwvavh~~lfaiev, Device id: a4b01ca52d19830a29ea61207bfc102f0fa1b0c7 -2023-03-29 21:35:08.257441 + : pb-IF40UncaLg== started kick vote for pb-IF5TU1cuBg==. -2023-03-29 21:35:38.263010 + : Kick vote End -2023-03-29 21:35:45.031273 + : pb-IF4vU0MENg== ip: azj~zo~~nbaai, Device id: 6382f3717c6ac3650740a14e9d6ab4b67728a26a -2023-03-29 21:35:54.070204 + : pb-IF42U0VSCA== ip: azj~zo~~nbaai, Device id: 97f56e82ff32ac3d7b7ab1ebb9b438973ea3593c -2023-03-29 21:40:09.007737 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-29 21:40:44.134307 + : pb-IF40PkMh ip: aakhaifzvf~, Device id: a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e -2023-03-29 21:41:06.203853 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 21:43:41.117090 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4CVUcPLw==. -2023-03-29 21:43:59.859812 + : Kick vote End -2023-03-29 21:45:07.086151 + : pb-IF4wVVBdVw== ip: dvvcxvb`~~`d, Device id: 781d416387fb8622c6ab26afb3c7f62ab3439c24 -2023-03-29 21:45:39.221656 + : pb-IF5cV044Jw== ip: a~o~v`~~h~~hd, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-03-29 21:46:20.383119 + : pb-IF4xVVMNMw== ip: dvvcxvb`~~`d, Device id: 72d01d0ef14ea66d4900465b29dce84f266d5749 -2023-03-29 21:46:31.252635 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4rUBUoVg==. -2023-03-29 21:47:01.258963 + : Kick vote End -2023-03-29 21:49:19.172129 + : pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL ip: azo~|j~vva{i, Device id: a61172de41bee6c6202d757a57288fd637e3ec13 -2023-03-29 21:49:24.189735 + : pb-IF4DU1I4CQ== ip: azj~z`~}j`aj`~, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-29 21:51:25.610251 + : pb-IF5RUxkiVA== ip: gwvavh~~lfaiev, Device id: a4b01ca52d19830a29ea61207bfc102f0fa1b0c7 -2023-03-29 21:52:48.553600 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4nVEY-PA==. -2023-03-29 21:53:18.557647 + : Kick vote End -2023-03-29 21:53:59.140778 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-29 21:55:28.483098 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-29 21:57:31.906224 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-29 21:57:38.929831 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 22:01:04.643948 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 22:01:21.696583 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 22:02:02.855343 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 22:07:38.108852 + : pb-IF4wVVk8Jg== ip: bj~~o`aj`xvaa, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-03-29 22:08:23.281129 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vax`, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-29 22:11:53.091722 + : pb-IF4CUkheBg== ip: b~k~~nba`aajf, Device id: 4cfb634aa40f8f56a2448050d7b6cc5f312ffd18 -2023-03-29 22:12:06.136252 + : pb-IF4CUkheBg== ip: b~k~~nba`aajf, Device id: 4cfb634aa40f8f56a2448050d7b6cc5f312ffd18 -2023-03-29 22:12:35.243570 + : pb-IF4wVVk8Jg== ip: bj~~o`aj`xvaa, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-03-29 22:14:38.704254 + : pb-IF4FD1c8 ip: azo~{n~xa~z`, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-03-29 22:14:49.742322 + : pb-IF49U0QJDw== ip: an~}heaj`~vavh, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-29 22:15:48.942548 + : pb-IF4rUBUoVg== ip: azj~z`~}hbal`, Device id: 60b7216350eeabb112740965eb884d521c6c9427 -2023-03-29 22:16:20.050067 + : pb-IF4rUBUoVg== ip: azj~z`~}hbal`, Device id: 60b7216350eeabb112740965eb884d521c6c9427 -2023-03-29 22:16:53.170306 + : pb-IF4rUBUoVg== ip: azj~z`~}hbal`, Device id: 60b7216350eeabb112740965eb884d521c6c9427 -2023-03-29 22:17:06.519288 + : pb-IF4nU3ZaUg== started kick vote for pb-IF5cUkwjDA==. -2023-03-29 22:17:36.524378 + : Kick vote End -2023-03-29 22:17:42.315871 + : pb-IF4rUBUoVg== ip: azj~z`~}hbal`, Device id: 60b7216350eeabb112740965eb884d521c6c9427 -2023-03-29 22:20:45.015635 + : pb-IF4FU1daUA== ip: a~h~}jgamcaie{, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-29 22:21:03.096103 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~~je, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-29 22:21:10.108720 + : pb-IF4FU1daUA== ip: a~h~}jgamcaie{, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-29 22:23:11.906264 + : pb-IF4KUBFYVA== started kick vote for pb-IF4tUlkRDw==. -2023-03-29 22:23:41.912922 + : Kick vote End -2023-03-29 22:24:45.259813 + : pb-IF4tUlkRDw== started kick vote for pb-IF4KUBFYVA==. -2023-03-29 22:25:15.261170 + : Kick vote End -2023-03-29 22:26:41.473509 + : pb-IF4nU3ZaUg== started kick vote for pb-IF5cUkwjDA==. -2023-03-29 22:26:44.826083 + : pb-IF4MUBdaDw==|| kicked > new account -2023-03-29 22:27:11.479340 + : Kick vote End -2023-03-29 22:27:54.781965 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 22:28:24.873373 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~~adaoaaif{, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-03-29 22:30:59.156188 + : pb-IF5TU1ddPA== started kick vote for pb-IF4nU3ZaUg==. -2023-03-29 22:31:29.159282 + : Kick vote End -2023-03-29 22:33:09.959907 + : pb-IF4MUBdaDw== | kicked > reason:Banned account -2023-03-29 22:33:33.040051 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 22:33:59.148595 + : pb-IF4FU1daUA== ip: a~h~}jdaih}va~, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-29 22:37:17.868988 + : pb-IF4nU3ZaUg== ip: an~~ahalfaif, Device id: 937bdd00f7f6d3b32890fa6a0bb80fecacd4e905 -2023-03-29 22:37:44.962555 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-29 22:38:16.096267 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-29 22:40:06.502188 + : pb-IF4IU1c6Ug== ip: azj~z`~|l~}ke, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-29 22:40:37.613776 + : pb-IF42U0INNw== ip: azj~zo~w`~xl, Device id: 4a67fdabdd99ca4f80fa1d96067ebd76bb7f9440 -2023-03-29 22:43:13.186519 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-29 22:44:35.494574 + : pb-IF5TU1ddPA== ip: azj~z`~|l~~`a, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-03-29 22:46:37.967106 + : pb-IF4OPhMg ip: an~}heajdzvh}, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-03-29 22:46:50.009152 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-29 22:47:02.053059 + : pb-IF4TV3RbDA== ip: azo~{m~~igaicx, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-29 22:49:29.552209 + : pb-IF4JU04DCQ== ip: a~j~xa~xj~~od, Device id: 64fe8f45d0cba627aa2b414afdd31b9ca037c8a1 -2023-03-29 22:50:18.037167 + : pb-IF4iUBYYVg==|| kicked > new account -2023-03-29 22:53:09.311777 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 22:55:52.951658 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 22:55:59.975149 + : pb-IF4MUmohCQ== ip: dzva~m~wa~xj, Device id: e29a47f89ada5c25871ec0f67758c32eae8db273 -2023-03-29 22:56:04.994414 + : pb-IF4hUxNYEw== ip: ak~za~xm~~lg, Device id: 76ae8952df1dc33a2edeb02ac754f36850df9227 -2023-03-29 22:56:40.119999 + : pb-IF4wVVk8Jg== ip: bj~~o`aj`xvaa, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-03-29 22:56:56.170277 + : pb-IF4-UmINEQ== ip: a}j~~naaoeakc, Device id: 57add358393e91cca1a4287e16222c226723557e -2023-03-29 22:58:47.561867 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 22:59:10.635665 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-29 23:06:41.297026 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-29 23:07:29.448042 + : pb-IF41U2scIg== ip: ak~}hhaniaaa, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-29 23:09:58.026347 + : pb-IF4iUBNYIA== ip: dvvc|vavj~|o, Device id: 9942a7ad9c1d5a79be0bf907ec44f8feaf206d88 -2023-03-29 23:10:22.115267 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-29 23:10:23.122231 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vax`, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-29 23:12:16.771108 + : pb-IF5UUBkvLQ==|| kicked > new account -2023-03-29 23:12:32.541529 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vax`, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-29 23:12:41.567774 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vax`, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-29 23:19:35.996418 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vax`, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-29 23:21:36.421519 + : pb-IF4IVEseUQ== ip: azo~{a~~mgaia|, Device id: 679c582b91689540ad3c22935c58a5e32bb318a9 -2023-03-29 23:24:31.256014 + : pb-IF4IVEseUQ== ip: azo~{a~~mgaia|, Device id: 679c582b91689540ad3c22935c58a5e32bb318a9 -2023-03-29 23:27:33.937937 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-29 23:30:11.503627 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 23:30:35.582548 + : pb-IF4wV24HBw== ip: a~o~va~}hfaiiw, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-29 23:33:16.218848 + : pb-IF5VU3lYDA== ip: azj~z`~~`aaje, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-03-29 23:35:06.673291 + : pb-IF4OPhMg ip: an~}heajdzvh}, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-03-29 23:36:19.952399 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-29 23:40:10.785357 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|l~~`d, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-03-29 23:48:11.525778 + : pb-IF41U2scIg== ip: ak~}hhaniaaa, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-29 23:50:17.295591 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG started kick vote for pb-IF4UUlENFQ==. -2023-03-29 23:50:47.218662 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~~adaoaaif{, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-03-29 23:50:47.298748 + : Kick vote End -2023-03-29 23:53:54.848151 + : pb-IF4CUkheBg== ip: b~k~~nba`aajf, Device id: 4cfb634aa40f8f56a2448050d7b6cc5f312ffd18 -2023-03-29 23:59:07.006430 + : pb-IF4hU1lcBA== ip: azj~z`~zj~zl, Device id: 5976241c19ab9614ad18e94c8bf7dd84a1731b55 -2023-03-30 00:00:58.395677 + : pb-IF42U0INNw== ip: azj~zo~xj~~hc, Device id: 4a67fdabdd99ca4f80fa1d96067ebd76bb7f9440 -2023-03-30 00:03:48.027846 + : pb-IF41U2scIg== ip: ak~}hhaniaaa, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 00:03:56.050368 + : pb-IF41U2scIg== ip: ak~}hhaniaaa, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 00:04:11.102340 + : pb-IF4IU1c6Ug== ip: a}l~~jcaigyva|k, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-30 00:10:28.449267 + : pb-IF4GVxIlHw== ip: azj~z`~}n~~ae, Device id: 4e788769f639a4101b8e2ab9d4de0dd0cc3b0317 -2023-03-30 00:11:16.629053 + : pb-IF42U0INNw== ip: azj~zo~xj~~hc, Device id: 4a67fdabdd99ca4f80fa1d96067ebd76bb7f9440 -2023-03-30 00:13:32.106167 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-30 00:14:20.254171 + : pb-IF4iUmsSDw== ip: ak~vh~~``aiiv, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-03-30 00:19:10.340957 + : pb-IF4wV24HBw== ip: a~o~va~~afaiiw, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-30 00:21:53.969389 + : pb-IF42U0INNw== ip: azj~zo~xj~~hc, Device id: 4a67fdabdd99ca4f80fa1d96067ebd76bb7f9440 -2023-03-30 00:27:11.987995 + : pb-IF5cU2haHA== ip: dvvcxvb{`~~md, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-03-30 00:28:26.242095 + : pb-IF42U0INNw== ip: azj~zo~xj~~hc, Device id: 4a67fdabdd99ca4f80fa1d96067ebd76bb7f9440 -2023-03-30 00:28:27.245174 + : pb-IF5UVBMZEw== ip: bxvc{vc{vazo, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-03-30 00:35:27.636214 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-30 00:37:06.007899 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-30 00:38:39.347398 + : pb-IF4yUBElCg== ip: an~}heajawvb|l, Device id: 08f82a2aeb797a2a2dc371d32962f9af31c491d1 -2023-03-30 00:48:53.637223 + : pb-IF41U2scIg== ip: a~h~}jgaiaaii, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 00:52:01.500650 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-30 00:53:19.897511 + : pb-IF4IV04ZKw== ip: azj~z`~x`~~ki, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-03-30 00:56:29.596328 + : pb-IF5cU2haHA== ip: dvvcxvb{`~~md, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-03-30 01:00:15.440279 + : pb-IF4nUxE4Nw== started kick vote for pb-IF41U2scIg==. -2023-03-30 01:00:16.401828 + : MRFUCKER||pb-IF4tVGsMIA==|| kicked by profanity check -2023-03-30 01:00:45.445161 + : Kick vote End -2023-03-30 01:02:18.808889 + : pb-IF41U2scIg== ip: a~h~}jgaiaaii, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 01:04:30.221740 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-30 01:05:41.037992 + : pb-IF5cUBkoVg==|| kicked > new account -2023-03-30 01:09:24.303609 + : pb-IF41U2scIg== ip: a~h~}jgaiaaii, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 01:09:51.413639 + : pb-IF5UVBMZEw== ip: bxvc{vc{vazo, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-03-30 01:13:56.305931 + : pb-IF4jF1NY ip: azj~z`~{vgz, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-30 01:15:52.685198 + : pb-IF5WU0NfCQ== ip: ak~xo~~khaiaw, Device id: 71744dab28a8c639ee9b03acd54a362bc53bebd1 -2023-03-30 01:21:26.980025 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-30 01:25:58.121359 + : pb-IF4IV04ZKw== ip: azj~z`~x`~~ki, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-03-30 01:26:07.147162 + : pb-IF4jF1NY ip: azj~z`~{vgz, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-30 01:26:14.172514 + : pb-IF5UVBMZEw== ip: bxvc{vc{vd, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-03-30 01:26:33.247303 + : pb-IF41U2scIg== ip: a~h~}jgaiaaii, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 01:26:47.297155 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-30 01:36:13.882929 + : pb-IF4RUBcNFg==|| kicked > new account -2023-03-30 01:48:49.140309 + : pb-IF4NU3IhKg== ip: bn~wl~}jiajdv, Device id: 447b2f34e6752d40d026da152470dcdab9192c75 -2023-03-30 01:51:08.610537 + : pb-IF4tUmgCMw== ip: bxvc{vc{vd, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-03-30 01:56:52.641018 + : pb-IF4jF1NY started kick vote for pb-IF4tUmgCMw==. -2023-03-30 01:57:11.794132 + : pb-IF4wV24HBw== ip: a~o~va~}hgaiiw, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-30 01:57:22.641542 + : Kick vote End -2023-03-30 02:09:44.165104 + : pb-IF4jF1NY started kick vote for pb-IF4IU1lSHA==. -2023-03-30 02:10:14.166152 + : Kick vote End -2023-03-30 02:14:38.397876 + : pb-IF42U0INNw== ip: azj~zo~wa~}kc, Device id: 4a67fdabdd99ca4f80fa1d96067ebd76bb7f9440 -2023-03-30 02:21:16.753561 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-30 02:24:33.474688 + : pb-IF4RUBcpIQ== ip: ak~}khai`wvazl, Device id: 08ee011a387c0a074ef5ef32dec9215b493dcff8 -2023-03-30 02:28:25.213580 + : pb-IF5UVBMZEw== ip: bxvc{vc{vd, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-03-30 02:41:37.963987 + : pb-IF42U0INNw== ip: azj~zo~y`~}kd, Device id: 4a67fdabdd99ca4f80fa1d96067ebd76bb7f9440 -2023-03-30 02:43:43.433006 + : pb-IF4WU0wvVA== ip: d}van~}hea`b, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-30 03:06:51.530131 + : pb-IF4TV3RbDA== ip: azo~{m~~h`aigw, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-30 03:25:36.644342 + : pb-IF4WU0wvVA== ip: d}van~}hea`b, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-30 03:26:54.942837 + : pb-JiNJARBTXEdAXF9HFkBSUFxGEUdWT1lL ip: b}k~~`fajevb}j, Device id: bc946739e2d8ec94588eb57ff91f90050bf85bff -2023-03-30 04:08:47.690691 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-30 05:13:59.362671 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-30 05:35:18.810985 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-30 05:57:12.178341 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-30 06:48:22.577256 + : pb-IF4dUlBSCw== ip: azo~|o~}iiaie{, Device id: 62d9378fcbbf71d42be6f707d298488a44febb0f -2023-03-30 07:14:19.222994 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-30 07:27:04.711524 + : pb-IF4VU3laVA== ip: ak~~`dajcvvb}, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-30 07:36:00.486133 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-30 07:57:27.994944 + : pb-IF4AU0IoCA== ip: an~~afajfaie}, Device id: 7e77758456905f2250e6815bf48baf9d39eeb3c2 -2023-03-30 07:57:59.088114 + : pb-IF4PV24yPA== ip: a~h~}jgamaajav, Device id: 5bd1087e38783d3d08f01cfce5d36dfbf8440740 -2023-03-30 08:18:10.285154 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-30 09:09:17.368612 + : pb-IF4mUBYcNg==|| kicked > new account -2023-03-30 09:16:06.402456 + : pb-IF49U0QJDw== ip: b}k~}khajbva~j, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-30 09:22:38.749277 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-30 09:29:42.246472 + : pb-IF5UUBI9MA== ip: azo~|j~~aeaibv, Device id: 4381142d5e8cfc6ab20167b3a40f172ee10010f5 -2023-03-30 09:34:27.237656 + : pb-IF4NVxAZDg== ip: dvvcyva~m~xl, Device id: 9dda09fcf9a3701e0e8edddd357f35fc1813050f -2023-03-30 09:39:42.218592 + : pb-IF49U0QJDw== ip: b}k~}khajbva~j, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-30 09:41:24.706260 + : pb-IF4SXhUa ip: azj~z`~xi~~od, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-03-30 09:49:42.499951 + : pb-IF4FUlRfAg== ip: b}k~~afaii}vawa, Device id: aba5ff826ae810b393bf32d5a9009055e5984479 -2023-03-30 09:51:18.883505 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`~vi, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-30 09:52:23.114597 + : pb-IF4FUlRfAg== ip: a~o~}lfai`xvi|, Device id: aba5ff826ae810b393bf32d5a9009055e5984479 -2023-03-30 10:02:21.410325 + : pb-IF5RUGFcDQ==|| kicked > new account -2023-03-30 10:05:20.708558 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-30 10:05:53.808969 + : pb-IF5dVWEJMg== ip: a~o~}jbaie}vb{a, Device id: 3939fc10737ad53f783649761bea48dc2b3522f7 -2023-03-30 10:07:33.146361 + : pb-IF5dVWEJMg== ip: a~o~}jbaie}vb{a, Device id: 3939fc10737ad53f783649761bea48dc2b3522f7 -2023-03-30 10:17:53.362027 + : pb-IF5UUBI9MA== ip: azo~|j~}ifaoc, Device id: 4381142d5e8cfc6ab20167b3a40f172ee10010f5 -2023-03-30 10:27:36.295363 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`~vi, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-30 10:31:11.981801 + : pb-IF4FUlRfAg== ip: b}k~~afaii}vawa, Device id: aba5ff826ae810b393bf32d5a9009055e5984479 -2023-03-30 10:32:05.147754 + : pb-IF4SXhUa ip: azj~z`~xi~}lc, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-03-30 10:33:23.424506 + : pb-IF4dUlBSCw== ip: azo~|o~}iiaie{, Device id: 62d9378fcbbf71d42be6f707d298488a44febb0f -2023-03-30 10:34:10.666960 + : pb-IF4SXhUa ip: azj~z`~xi~}lc, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-03-30 10:38:15.470209 + : pb-IF4SXhUa ip: azj~z`~xi~}lc, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-03-30 10:40:34.999426 + : pb-IF49UnYRLQ== | kicked > reason:Banned account -2023-03-30 10:40:46.042255 + : pb-IF4GU1MnUA== ip: a|j~~mdan`aaf, Device id: bbd76a203d670339b31286c5c8bbb5a4739730bf -2023-03-30 10:42:40.458087 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-30 10:42:43.472679 + : pb-IF4cUBYfCg== ip: azo~zh~zo~~ad, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-30 10:43:17.637820 + : pb-IF4FU2QiKQ== ip: an~}h`ai`~va{j, Device id: 9aeaea5032ef8172cbd1a983cc17ea18a73e3466 -2023-03-30 10:43:36.708356 + : pb-IF4tUxRaHQ== ip: a|j~~mdaig~vb|k, Device id: e22f7bd0d54493761c7eb26874b8e114e4e6af35 -2023-03-30 10:49:47.014310 + : pb-IF5cU2haHA== ip: dvvcxvb{`~~md, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-03-30 10:50:26.118042 + : pb-IF4tUxRaHQ== started kick vote for pb-IF4dUlBSCw==. -2023-03-30 10:50:56.124836 + : Kick vote End -2023-03-30 10:52:46.835428 + : pb-IF4dUlBSCw== started kick vote for pb-IF4cUBYfCg==. -2023-03-30 10:53:16.836366 + : Kick vote End -2023-03-30 10:53:52.924362 + : pb-IF4tUxRaHQ== ip: a|j~~mdaig~vb|k, Device id: e22f7bd0d54493761c7eb26874b8e114e4e6af35 -2023-03-30 10:55:30.516997 + : pb-IF4tUxRaHQ== started kick vote for pb-IF4zU0EyXQ==. -2023-03-30 10:56:00.523483 + : Kick vote End -2023-03-30 10:58:01.321577 + : pb-IF42UBciUQ==|| kicked > new account -2023-03-30 10:58:11.777541 + : pb-IF5cU2haHA== ip: dvvcxvb{`~~md, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-03-30 10:59:36.056498 + : pb-IF4-JUgB ip: ak~~j`aje}vfv, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-30 11:00:52.396074 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`~vi, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-30 11:01:55.687140 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`~vi, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-30 11:02:14.753231 + : pb-IF5UUxgjIA== ip: azj~z`~xh~}ha, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-30 11:02:52.903642 + : pb-JiNJARBeUUNEVFZCEEVZVVNCFUldTldF ip: azo~|k~~vb`, Device id: c3af3a9d7bc10aa271e3cb1724761a2806c051b7 -2023-03-30 11:04:13.168882 + : pb-IF4sAGcj ip: bxvewvaana, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-03-30 11:09:07.232011 + : pb-IF4LU20cEw== ip: a~o~va~}lcaicv, Device id: 4dc931cefdd3131eaa4546cd0cefbffb299ae055 -2023-03-30 11:12:25.903349 + : pb-IF5cU2haHA== ip: dvvcxvb{`~~md, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-03-30 11:14:00.283004 + : pb-IF4lVVMmEA== ip: an~~afa`fajax, Device id: 581814fda7b73459d51a90c3dea43969b31f64c3 -2023-03-30 11:21:10.995030 + : pb-IF40U3MyVQ== ip: b}k~}kcaodaih}, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-30 11:21:33.756609 + : pb-IF5cU2haHA== started kick vote for pb-IF49UBReMQ==. -2023-03-30 11:22:03.757107 + : Kick vote End -2023-03-30 11:25:07.895287 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-30 11:26:55.356412 + : pb-IF4SU1oDAA== ip: dzva~j~za~~la, Device id: b9a8b87c421c0e7dc0ad28d97fe63cb9d504466b -2023-03-30 11:28:39.720317 + : pb-IF5VU1JZMw== ip: an~}ica``ali, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-03-30 11:31:22.987032 + : pb-IF4wV24HBw== started kick vote for pb-IF5VU1JZMw==. -2023-03-30 11:31:45.697366 + : pb-IF4XUBceAA==|| kicked > new account -2023-03-30 11:31:52.989004 + : Kick vote End -2023-03-30 11:33:02.658304 + : pb-IF4sAGcj ip: bxvewvaana, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-03-30 11:33:45.840618 + : pb-IF4SXhUa ip: azj~z`~xi~}jh, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-03-30 11:34:06.916770 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavn, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-03-30 11:36:52.477404 + : pb-IF4FUEY4 ip: bk~~adaaiand, Device id: 452bcd37350866efb1deb4f785c1364a1abde5d2 -2023-03-30 11:39:08.992138 + : pb-IF41U2scIg== ip: a~h~}jgaiaaii, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 11:39:36.091659 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-30 11:41:38.557283 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-30 11:43:39.996078 + : pb-IF4hU3EgJA== ip: a|o~vo~wh~za, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-03-30 11:44:00.067302 + : pb-IF4iUmsSDw== ip: a}j~~naambakf, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-03-30 11:44:18.126769 + : pb-IF49U0QJDw== ip: b}k~}khaja}vb~o, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-30 11:45:59.618851 + : pb-IF5QU3AaLg== ip: ak~}m`aidzvazj, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-03-30 11:47:32.914355 + : pb-IF4wV24HBw== started kick vote for pb-IF4FUEY4. -2023-03-30 11:48:02.916817 + : Kick vote End -2023-03-30 11:49:21.336910 + : pb-IF4cUBYfCg== ip: azo~zh~|`~yo, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-30 11:49:44.437683 + : pb-IF49U0QJDw== ip: b}k~}khaj`|vavm, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-30 11:51:16.688205 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-30 11:54:05.295909 + : pb-IF4TUlgePw== ip: an~}ifaiivva}`, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-30 11:54:38.416312 + : pb-IF41U2scIg== ip: a~h~}jgaiaaii, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 11:54:44.434031 + : pb-IF4TUlgePw== ip: an~}ifaiivva}`, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-30 11:54:47.443198 + : pb-IF4cVVgpIQ== ip: azo~{o~}o~vi, Device id: e06c0eab948895c05a70a3f917d243471f4c6318 -2023-03-30 11:55:21.557179 + : pb-IF4AU0IoCA== ip: an~~afajbaie}, Device id: 7e77758456905f2250e6815bf48baf9d39eeb3c2 -2023-03-30 11:55:32.604834 + : pb-IF4OU00jBA== ip: azj~z`~|a~vn, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-03-30 11:56:50.888172 + : pb-IF4MU08lCQ== ip: azo~|l~~mfajcz, Device id: 496f898c6f42806db0970bac3faaa29f196c9610 -2023-03-30 11:59:40.550960 + : pb-IF4FU1daUA== ip: dvvczvayo~~me, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-30 12:01:13.264802 + : pb-IF4nUxE4Nw== started kick vote for pb-IF4sU04IFA==. -2023-03-30 12:01:14.856718 + : pb-IF41U2scIg== ip: ak~}hhaniamc, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 12:01:43.267238 + : Kick vote End -2023-03-30 12:02:51.181728 + : pb-IF4TUlgePw== ip: an~}ifaiivva}`, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-30 12:03:02.224811 + : pb-IF4sAGcj ip: bxvewvaana, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-03-30 12:03:55.396328 + : pb-IF4wV24HBw== started kick vote for pb-IF4sU04IFA==. -2023-03-30 12:04:25.397816 + : Kick vote End -2023-03-30 12:06:34.027103 + : pb-IF4-JUgB ip: ak~~j`aje}vfv, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-30 12:07:59.351394 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-30 12:10:10.573155 + : pb-IF4eU0s9Pw== started kick vote for pb-IF4AU0IoCA==. -2023-03-30 12:10:40.578055 + : Kick vote End -2023-03-30 12:11:49.252805 + : pb-IF4sAGcj ip: bxvewvaana, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-03-30 12:12:21.361233 + : pb-IF4tCRgv ip: a}j~~naaogajcz, Device id: 8c50b5e94f4fedbbbc30c1fd2d39bf3275ea8fc5 -2023-03-30 12:12:48.468746 + : pb-IF4DU1I4CQ== ip: azj~z`~}ibaah, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-30 12:12:56.430668 + : pb-IF4-JUgB started kick vote for pb-IF5UUBUHCA==. -2023-03-30 12:13:26.431347 + : Kick vote End -2023-03-30 12:13:47.688201 + : pb-IF4CUnoxKQ== ip: azo~{n~~kgamg, Device id: b92d5f0f20d136012a5d3f47cc76b8c02229342f -2023-03-30 12:14:09.750091 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-30 12:14:30.824884 + : pb-IF4AU0EGEA== ip: a}j~~`baih}vb}o, Device id: 55b7afaffa1114641c441b04edce2c4bb04fc26a -2023-03-30 12:14:55.913850 + : pb-IF4wV1g4DA== ip: bxvf|vba~~aa, Device id: cdb2ac76caf3c6387fe7837c3441cbf49a7fec32 -2023-03-30 12:15:00.057561 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-30 12:16:32.384704 + : pb-IF4wV1g4DA== ip: bxvf|vba~~aa, Device id: cdb2ac76caf3c6387fe7837c3441cbf49a7fec32 -2023-03-30 12:17:29.559266 + : pb-IF4wV1g4DA== ip: bxvf|vba~~aa, Device id: cdb2ac76caf3c6387fe7837c3441cbf49a7fec32 -2023-03-30 12:18:11.737084 + : pb-IF5WU0cRAg== ip: d}va`~~afai`w, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-30 12:18:15.752599 + : pb-IF4DU1I4CQ== ip: azj~z`~}ibaah, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-30 12:18:29.811713 + : pb-IF4KUBMvFg== ip: a~h~}jgao~z`, Device id: 368f291ad88637dd72fc81f7bfc15e3af333709d -2023-03-30 12:20:55.270474 + : pb-IF4wV1g4DA== ip: bxvf|vba~~aa, Device id: cdb2ac76caf3c6387fe7837c3441cbf49a7fec32 -2023-03-30 12:22:27.888138 + : pb-IF4OU00jBA== ip: azj~z`~|l~|n, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-03-30 12:23:01.006974 + : pb-IF41U0sYPA== ip: an~}ifajd{vd}, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-03-30 12:23:24.052389 + : pb-IF4wV24HBw== ip: a~o~va~~acaib}, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-30 12:24:22.264973 + : pb-IF4NU0wvUQ== ip: azj~z`~|l~|n, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-03-30 12:27:29.941070 + : pb-IF4HUBU4Fw== ip: an~~afalaaiiy, Device id: fa156884bb9131c2e6b24958fbe18dbb1be3dbbc -2023-03-30 12:31:54.915891 + : pb-IF4vV0g8Mw== ip: azo~|j~wl~}ii, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-03-30 12:33:58.399691 + : pb-IF4SU0c7DQ== ip: an~}hcam`aje~, Device id: 2207fe5dee0c5109be0e3e811a2598752084eb7b -2023-03-30 12:35:18.684014 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-30 12:36:21.902029 + : pb-IF4DU1I4CQ== ip: azj~z`~}icaif~, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-30 12:37:44.230545 + : pb-IF4TUlgePw== ip: an~}ifaiivva}`, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-30 12:38:43.445392 + : pb-IF41U2scIg== ip: ak~}hhaniamc, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 12:40:57.956053 + : pb-IF41U0sYPA== ip: an~}ifajd{vd}, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-03-30 12:41:27.080133 + : pb-IF4TUlgePw== ip: an~}ifaiivva}`, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-30 12:42:36.388229 + : pb-IF4vVVYkEg== ip: azj~zo~}k~}m, Device id: 7837b5f089541e2e5c667ed90281b5bd10c5271f -2023-03-30 12:43:02.484709 + : pb-IF5cPGsk ip: azo~|k~}k`a`b, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-30 12:44:46.934430 + : pb-IF4oUxAGPQ== ip: azj~zo~}lcaic, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-30 12:45:20.039318 + : pb-IF4lU3cFFw== | kicked > reason:Banned account -2023-03-30 12:46:12.261219 + : pb-IF5cPGsk ip: azo~|k~}k`a`b, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-30 12:49:47.980741 + : pb-IF5VU1JZMw== ip: an~}ica``ali, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-03-30 12:50:17.088856 + : pb-IF41U0sYPA== ip: an~}ifajd{vd}, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-03-30 12:51:45.403065 + : pb-IF5VU1JZMw== ip: an~}ica``ali, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-03-30 12:52:34.563277 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: b}k~}jgaia}vbzk, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-03-30 12:52:38.582573 + : pb-IF4cUBYfCg== ip: azo~zh~{k~}ib, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-30 12:53:15.709068 + : pb-IF4PV24yPA== ip: a~h~}jgameajav, Device id: 5bd1087e38783d3d08f01cfce5d36dfbf8440740 -2023-03-30 12:58:35.875565 + : pb-IF5RUBZZNA== ip: azo~{o~wo~~he, Device id: 2f94528772543fdf8da8252ba4105e3d59b00393 -2023-03-30 12:59:12.013459 + : pb-IF4NU3IhKg== ip: bn~wl~}jiajdv, Device id: 447b2f34e6752d40d026da152470dcdab9192c75 -2023-03-30 13:00:52.565855 + : pb-IF5WU0NfCQ== ip: ak~xo~~khaiaw, Device id: 71744dab28a8c639ee9b03acd54a362bc53bebd1 -2023-03-30 13:01:26.703133 + : pb-IF4sU3oABg== ip: ak~xo~~khaiaw, Device id: 2ad67d1f633170cb2e2cb73955fbde2c1c28d6dd -2023-03-30 13:01:28.709312 + : pb-IF5WU0NfCQ== ip: ak~xo~~khaiaw, Device id: 71744dab28a8c639ee9b03acd54a362bc53bebd1 -2023-03-30 13:01:54.799654 + : pb-IF4TUlgePw== ip: an~}ifaiivva}`, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-30 13:02:12.851562 + : pb-IF40U3MyVQ== ip: b}k~}kcaodaih}, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-30 13:02:24.237773 + : pb-IF4HUBcxFQ==|| kicked > new account -2023-03-30 13:05:03.653927 + : pb-IF4OUBY-HA== started kick vote for pb-IF4CVVUKFA==. -2023-03-30 13:05:11.673055 + : pb-IF4CVVUKFA== kicked by kickvotes. -2023-03-30 13:05:33.727852 + : pb-IF4qUxBfAw== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-30 13:07:28.757151 + : pb-IF5SUno-Ug== | kicked for chat spam -2023-03-30 13:07:32.163279 + : pb-IF5VU1JZMw== ip: an~}ica``ali, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-03-30 13:12:45.439448 + : pb-IF4WU0wvVA== ip: dvvc}vaz`~wn, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-30 13:13:12.538703 + : pb-JiNJARFYUkFHXl5AEEdXVVBCFElZRVNK ip: azj~z`~xj~{i, Device id: 3f489053b2e68d015bf9900c87f00bd234e7bb7b -2023-03-30 13:19:00.948808 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-30 13:22:26.677631 + : pb-IF5cV044Jw== ip: a~o~v`~~`~xa, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-03-30 13:23:19.855044 + : pb-IF4dUlBSCw== ip: azo~|o~}iiaie{, Device id: 62d9378fcbbf71d42be6f707d298488a44febb0f -2023-03-30 13:23:26.877710 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vavj, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-30 13:24:17.047699 + : pb-IF40U3MyVQ== ip: b}k~}kcaodaih}, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-30 13:26:15.012576 + : pb-IF4dUlBSCw== started kick vote for pb-IF5UVUggFw==. -2023-03-30 13:26:45.016369 + : Kick vote End -2023-03-30 13:27:26.978337 + : pb-IF5cV044Jw== ip: a~o~v`~~`~xa, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-03-30 13:28:40.243242 + : pb-IF4OPhMg ip: bxvf~vb{i~~ng, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-03-30 13:28:55.296650 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-03-30 13:29:41.449072 + : pb-IF4OPhMg started kick vote for pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL. -2023-03-30 13:30:11.450388 + : Kick vote End -2023-03-30 13:31:38.854432 + : pb-IF4oUxAGPQ== ip: azj~zo~}lcaic, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-30 13:31:45.887478 + : pb-IF4oUxAGPQ== ip: azj~zo~}lcaic, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-30 13:31:49.910830 + : pb-IF4VU3laVA== ip: ak~~`dajcwvi~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-30 13:31:57.987842 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF5dUnAINw==. -2023-03-30 13:32:27.995503 + : Kick vote End -2023-03-30 13:33:31.289733 + : pb-IF4VU3laVA== ip: ak~~`dajcwvi~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-30 13:33:49.369979 + : pb-IF4OPhMg started kick vote for pb-IF5dUnAINw==. -2023-03-30 13:34:19.370077 + : Kick vote End -2023-03-30 13:35:20.883651 + : pb-IF4TVxY5LA== started kick vote for pb-IF4AV1QqEQ==. -2023-03-30 13:35:32.066285 + : pb-IF5QUGFdHw==|| kicked > new account -2023-03-30 13:35:50.891486 + : Kick vote End -2023-03-30 13:36:45.012370 + : pb-IF4qUxBfAw== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-30 13:36:56.599263 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4TVxY5LA==. -2023-03-30 13:37:26.605113 + : Kick vote End -2023-03-30 13:39:22.964543 + : pb-IF5VU3lYDA== ip: azj~z`~~`baj, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-03-30 13:40:27.167101 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-30 13:41:39.416437 + : pb-IF5WU0gIUQ== ip: azj~z`~}j`amd, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-03-30 13:41:47.434832 + : pb-IF4pU3EMUQ== ip: b}k~~`haobaig, Device id: 97647d0d8df774d90bd3533f7df35bd9e542e319 -2023-03-30 13:42:11.518644 + : pb-IF4qUxBfAw== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-30 13:42:33.589210 + : pb-IF4sUBRcJA== ip: a|o~vo~~iga`i, Device id: cb0a66d9acf74581f20a7acb6a84f928cddd0bc4 -2023-03-30 13:44:09.942314 + : pb-IF4gUBYBKg== ip: azo~{l~~agao`, Device id: a20ae75b62a6868a9dd045a841978cb89728ad6f -2023-03-30 13:44:45.056542 + : pb-IF5RU3UzJA== ip: aajcaiaviv, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-03-30 13:46:54.828572 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-30 13:47:07.880745 + : pb-IF4sAGcj ip: bxvewvaana, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-03-30 13:51:21.871485 + : pb-IF5cVRYTCQ== ip: an~}j`aieyva{n, Device id: be694006c26106519e4a116c55f3391b57b7caab -2023-03-30 13:53:12.290484 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-30 13:54:26.587857 + : pb-IF4tCRgv ip: a}j~~naaogajcz, Device id: 8c50b5e94f4fedbbbc30c1fd2d39bf3275ea8fc5 -2023-03-30 13:55:00.712369 + : pb-IF49U0QJDw== ip: b}k~}khaj`xvg|, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-30 13:56:14.034468 + : pb-IF49U0QJDw== ip: b}k~}khaj`xvg|, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-30 13:57:21.668034 + : pb-IF4tCRgv started kick vote for pb-IF4AV1QqEQ==. -2023-03-30 13:57:51.673223 + : Kick vote End -2023-03-30 13:58:00.452912 + : pb-IF4SXhUa ip: azj~z`~xi~~k, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-03-30 13:58:16.938940 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-03-30 13:58:22.963125 + : pb-IF4SXhUa ip: azj~z`~xi~~k, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-03-30 13:58:26.968731 + : pb-IF4IU1c6Ug== ip: dvvbn~zn~}j, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-03-30 13:58:30.984112 + : pb-IF5RU3UzJA== ip: aajcaiaviv, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-03-30 13:58:46.053646 + : pb-IF4tCRgv ip: a}j~~naaogajcz, Device id: 8c50b5e94f4fedbbbc30c1fd2d39bf3275ea8fc5 -2023-03-30 13:58:56.080864 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-30 14:01:17.121441 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4tCRgv. -2023-03-30 14:01:30.692659 + : pb-IF4tCRgv kicked by kickvotes. -2023-03-30 14:02:32.992970 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5RU3UzJA==. -2023-03-30 14:03:02.996541 + : Kick vote End -2023-03-30 14:03:22.094285 + : pb-IF40UncaLg== ip: dvvc}vax`~{l, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-30 14:07:54.092161 + : pb-IF40UncaLg== ip: dvvc}vax`~{l, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-30 14:09:35.427682 + : pb-IF4-JUgB ip: ak~~j`aje}vfv, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-30 14:10:08.548207 + : pb-IF5TU1ddPA== ip: azj~z`~|m~}ii, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-03-30 14:10:10.553724 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-03-30 14:12:46.126071 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-30 14:12:49.135301 + : pb-IF5cV044Jw== ip: a~o~v`~~`~za, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-03-30 14:13:09.195974 + : pb-JiNJARBeUUNEVFZCEEVZVVNCFUldTldF ip: azo~|k~~ieana, Device id: c3af3a9d7bc10aa271e3cb1724761a2806c051b7 -2023-03-30 14:17:40.727789 + : pb-IF4IU1c6Ug== started kick vote for pb-IF48UBUzCg==. -2023-03-30 14:18:10.727623 + : Kick vote End -2023-03-30 14:18:21.332339 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-30 14:18:58.467715 + : pb-IF5XUBZSDg== ip: an~}hfaih{vbo, Device id: a6c5500f618256fc7b4f8ce5808b42f2e9a0d4af -2023-03-30 14:19:57.695439 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-30 14:20:33.800300 + : pb-IF4NUxFfEg== ip: bxvf}vb}`~~hd, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-03-30 14:20:40.139018 + : pb-IF4SUBckXQ==|| kicked > new account -2023-03-30 14:23:30.387428 + : pb-IF5UUxgjIA== ip: azj~z`~xi~~ka, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-30 14:26:57.325329 + : pb-IF48UBUzCg== started kick vote for pb-IF5UUxgjIA==. -2023-03-30 14:27:27.329901 + : Kick vote End -2023-03-30 14:27:39.270068 + : pb-IF4WUBJcVQ== ip: azo~|j~}hiaab, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-03-30 14:28:13.394274 + : pb-IF5cVRYTCQ== ip: an~}j`aieyva{n, Device id: be694006c26106519e4a116c55f3391b57b7caab -2023-03-30 14:30:01.766550 + : pb-IF4vVVEFHw== ip: an~}heajavvfz, Device id: 90a9a9f337ef39c51aba6643e801a8f1d434558b -2023-03-30 14:31:08.022595 + : pb-IF4WU0wvVA== ip: dvvc}vaz`~wn, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-30 14:31:14.056257 + : pb-IF4tCRgv ip: a}j~~naaogajcz, Device id: 8c50b5e94f4fedbbbc30c1fd2d39bf3275ea8fc5 -2023-03-30 14:32:59.414865 + : pb-IF4oUxAGPQ== ip: azj~zo~}lcaic, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-30 14:34:07.682920 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-30 14:34:14.711756 + : pb-IF4oUxAGPQ== ip: azj~zo~}lcaic, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-30 14:34:33.761411 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: bxvf~vawk~}le, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-03-30 14:35:07.900015 + : pb-IF4WUBJcVQ== ip: azo~|j~}hiaab, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-03-30 14:35:45.038994 + : pb-IF4oUxAGPQ== ip: azj~zo~}lcaic, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-30 14:37:13.363594 + : pb-IF5cVRYTCQ== ip: an~}j`aieyva{n, Device id: be694006c26106519e4a116c55f3391b57b7caab -2023-03-30 14:40:35.175607 + : pb-IF4NUxFfEg== ip: bxvf}vb}`~~hd, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-03-30 14:40:36.180636 + : pb-IF4TV3RbDA== ip: azo~{m~v`~~hh, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-30 14:42:45.633118 + : pb-IF4zU1RSLQ== ip: ak~~nhaj`~vc, Device id: 6bc9b4ebe288e33d61cc3591693f470a96bc6661 -2023-03-30 14:43:42.823235 + : pb-IF5RU3UzJA== ip: aajcaiaviv, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-03-30 14:44:39.320031 + : pb-IF4rUBcNUg==|| kicked > new account -2023-03-30 14:45:04.110463 + : pb-IF4WU0wvVA== ip: dvvc}vaz`~wn, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-30 14:45:45.262252 + : pb-IF5UUxgjIA== ip: azj~z`~xi~}i`, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-30 14:46:06.320205 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: bxvf~vawk~}le, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-03-30 14:46:15.345843 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-30 14:46:58.512604 + : pb-IF5dU3UiAw== ip: a~o~~acajcaiey, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-30 14:49:23.022228 + : pb-IF4-Um4_Lw== ip: azo~|k~}kbai`|, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-03-30 14:53:05.887587 + : pb-IF4vV0g8Mw== ip: azo~|j~wl~}ii, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-03-30 14:54:12.129789 + : pb-IF5dU3UiAw== ip: a~o~~acajcaiey, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-30 14:54:31.514036 + : pb-IF4JUBcsAQ==|| kicked > new account -2023-03-30 14:54:48.265454 + : pb-IF5dU3UiAw== ip: azo~zi~wj~}lf, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-30 14:55:10.344473 + : pb-IF4TV3RbDA== ip: azo~{m~v`~~hh, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-30 14:59:55.020115 + : pb-IF4TV3RbDA== started kick vote for pb-IF5UUxgjIA==. -2023-03-30 14:59:56.411617 + : pb-IF4OU1IZVg== ip: a|o~vo~va~~ne, Device id: 541973653043d7f242ff3b1078194e8678f82921 -2023-03-30 15:00:25.022515 + : Kick vote End -2023-03-30 15:01:23.682678 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-30 15:01:49.781441 + : pb-IF48UBUzCg== ip: azj~zo~}jhaje, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-03-30 15:02:12.271636 + : pb-IF4-Um4_Lw== started kick vote for pb-IF4vV0g8Mw==. -2023-03-30 15:02:42.272893 + : Kick vote End -2023-03-30 15:03:42.557097 + : pb-IF4TV3RbDA== started kick vote for pb-IF4vV0g8Mw==. -2023-03-30 15:04:12.558693 + : Kick vote End -2023-03-30 15:05:47.682238 + : pb-IF4DUxcnDg== ip: azj~z`~yn~va, Device id: ee095f7b8eb88ae8c8d26e73d824b8df78563d56 -2023-03-30 15:07:12.959667 + : pb-IF4TV3RbDA== started kick vote for pb-IF4vV0g8Mw==. -2023-03-30 15:07:42.960671 + : Kick vote End -2023-03-30 15:09:03.402262 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-30 15:09:22.493072 + : pb-IF4jF1NY ip: aakhaidvax`, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-30 15:09:30.369529 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4TV3RbDA==. -2023-03-30 15:09:34.537706 + : pb-IF4hU3EgJA== ip: a|o~vo~wh~vk, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-03-30 15:10:00.371400 + : Kick vote End -2023-03-30 15:11:43.041333 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: bxvf~vawk~}le, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-03-30 15:12:54.848887 + : pb-IF4TV3RbDA== started kick vote for pb-IF4PVWoTMQ==. -2023-03-30 15:12:56.299132 + : pb-IF4cUBZaHQ== ip: an~~adaiewvi}, Device id: 2390dbc9a91e8ba9009a11ff1f0e83c7d5b0eabe -2023-03-30 15:13:24.855639 + : Kick vote End -2023-03-30 15:14:26.235073 + : pb-IF4PVWoTMQ== started kick vote for pb-IF4vV0g8Mw==. -2023-03-30 15:14:56.241846 + : Kick vote End -2023-03-30 15:25:27.898880 + : pb-IF41U2scIg== ip: an~~acajc~vi}, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 15:26:09.039480 + : pb-IF4oUnVaNg== ip: dvvcxvb~m~}hd, Device id: ea9e94a58d7b30a6aa34f61e1f2125a3e555fcda -2023-03-30 15:26:31.120213 + : pb-IF41U2scIg== ip: an~~acajc~vi}, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 15:28:05.452473 + : pb-IF5dU3UiAw== ip: a~o~~acajcaiey, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-30 15:33:11.480814 + : pb-IF4iUBNYIA== ip: dvvc|vava~{j, Device id: 9942a7ad9c1d5a79be0bf907ec44f8feaf206d88 -2023-03-30 15:36:18.158208 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-30 15:36:40.243926 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-30 15:38:21.575527 + : pb-IF4hUngAVg== ip: b}k~}jhajc~vazi, Device id: 9b2ad036ad4db4a8edc2bff3b2f1f5f271d1c78c -2023-03-30 15:38:26.892160 + : pb-IF4nUBcFFw==|| kicked > new account -2023-03-30 15:38:42.655184 + : pb-IF5dUBclCw== ip: dvvcxvb{vawk, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-30 15:40:08.971867 + : pb-IF5dUBclCw== ip: dvvcxvb{vawk, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-30 15:40:10.983702 + : pb-IF49U0QJDw== ip: b}k~}khaja}vb~o, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-30 15:42:09.420642 + : pb-IF4cUBZaHQ== ip: an~~adaiewvi}, Device id: 2390dbc9a91e8ba9009a11ff1f0e83c7d5b0eabe -2023-03-30 15:42:19.445843 + : pb-IF5dUBclCw== ip: dvvcxvb{vawk, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-30 15:43:48.762637 + : pb-IF5cV044Jw== ip: a~o~v`~~`~za, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-03-30 15:52:54.579609 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-30 15:53:16.664679 + : pb-IF4-Um4_Lw== ip: azo~|k~}kbai`|, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-03-30 15:53:37.752150 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-30 15:55:39.196488 + : pb-IF49U0QJDw== ip: b}k~}khaja}vb~o, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-30 15:57:58.738309 + : pb-IF4gU0wxBw== ip: an~~acajc~vi}, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-30 15:59:29.033569 + : pb-IF4RU3g9Lw== ip: ak~~j`aje}vfv, Device id: 573d51d73ee5bdbc9cd6ce321fb00cfe34f7acec -2023-03-30 16:08:25.004394 + : pb-IF4cUBYfCg== ip: azo~zh~yi~}lc, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-30 16:10:43.511267 + : pb-IF5cU2haHA== ip: dvvcxvb{`~~md, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-03-30 16:15:21.486878 + : pb-IF48UBUzCg== ip: azj~zo~}kiaib, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-03-30 16:16:14.696417 + : pb-IF4KUxQ9Kw== ip: an~~acai`}vb{`, Device id: a31e23241b900d07690a19976dbbab49b8a7d430 -2023-03-30 16:16:56.857238 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~~jc, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-03-30 16:17:14.925379 + : pb-IF5QV2kTAw== ip: a}j~~oba`caje{, Device id: 0f930d330d32d6798357bc9cc2d102b30d48e95d -2023-03-30 16:20:50.878861 + : pb-IF49U0QJDw== ip: b}k~}khaja}vb~o, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-30 16:24:55.116533 + : pb-IF4oUBc5AA==|| kicked > new account -2023-03-30 16:25:45.939922 + : pb-IF49U0QJDw== ip: b}k~}khaja}vb~o, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-30 16:26:08.021916 + : pb-IF5SUno-Ug== ip: dxvbvvaxk~~ab, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-03-30 16:28:46.707945 + : pb-IF4OPhMg ip: an~}icajdzvgx, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-03-30 16:29:13.791101 + : pb-IF43UnAZLg== ip: azi~|i~~hiajaw, Device id: 0bac803591bb2394c8d8ed549e565c8af5b32efc -2023-03-30 16:32:23.497112 + : pb-IF40U3MyVQ== ip: b}k~}kcaogaoa, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-30 16:33:05.251436 + : pb-IF4OPhMg | kicked for chat spam -2023-03-30 16:33:53.792092 + : pb-IF40U3MyVQ== ip: b}k~}kcaogaoa, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-30 16:39:21.949396 + : pb-IF4TUlgePw== ip: an~~aeaohaiax, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-30 16:43:28.845859 + : pb-IF4lU1hdIg== ip: dyvb}k~}va~`, Device id: 7dfd477c4175b56f4105a7d458ac31ead1eb6c62 -2023-03-30 16:44:43.128501 + : pb-IF4jF1NY ip: azj~z`~{a~}lc, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-30 16:44:56.072269 + : pb-IF4lU1hdIg== started kick vote for pb-IF40U3MyVQ==. -2023-03-30 16:45:26.077026 + : Kick vote End -2023-03-30 16:46:45.565276 + : pb-IF49UnYRLQ== | kicked > reason:Banned account -2023-03-30 16:49:51.244268 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-30 16:52:29.838578 + : pb-IF41U2scIg== ip: an~~acajc~vi}, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 16:55:08.399548 + : pb-IF41U2scIg== ip: an~~acajc~vi}, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 16:56:24.904304 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-30 16:59:55.618045 + : pb-IF4jF1NY ip: aakhaicxvc{, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-30 17:01:25.060446 + : pb-IF4TV3RbDA== ip: azo~{m~~jfanb, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-30 17:04:04.597828 + : pb-IF4GU0FeFQ== ip: bxvf~vbzk~~jc, Device id: 88037ec404c87538bbe04e5b633696e4e7202170 -2023-03-30 17:04:37.001907 + : pb-IF4nUBcABA==|| kicked > new account -2023-03-30 17:06:06.039323 + : pb-IF4GU0FeFQ== ip: bxvf~vbzk~~jc, Device id: 88037ec404c87538bbe04e5b633696e4e7202170 -2023-03-30 17:07:58.411203 + : pb-IF41U2scIg== ip: an~~acajc~vi}, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 17:11:27.162315 + : pb-IF4jF1NY ip: azj~z`~zh~~j, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-30 17:11:40.207393 + : pb-IF4wV24HBw== ip: a~o~va~~abajc~, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-30 17:14:11.771139 + : pb-IF5WU0cRAg== ip: d}va`~~afai`w, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-30 17:15:54.114007 + : pb-IF49U0QJDw== ip: b}k~}khaii|vdv, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-30 17:15:59.131177 + : pb-IF4vV0g8Mw== ip: azo~|j~wl~}ii, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-03-30 17:20:46.432633 + : pb-IF4-Um4_Lw== ip: azo~|k~}kbai`|, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-03-30 17:21:04.498614 + : pb-IF4NUxFfEg== ip: bxvf}vb|n~wh, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-03-30 17:22:05.012079 + : pb-IF4jF1NY started kick vote for pb-IF4-Um4_Lw==. -2023-03-30 17:22:35.013061 + : Kick vote End -2023-03-30 17:23:29.370212 + : pb-IF4KUBcAKg==|| kicked > new account -2023-03-30 17:24:22.210212 + : pb-IF4hUngAVg== ip: b}k~}jhajc~vazi, Device id: 9b2ad036ad4db4a8edc2bff3b2f1f5f271d1c78c -2023-03-30 17:24:43.270916 + : pb-IF4hUngAVg== ip: b}k~}jhajc~vazi, Device id: 9b2ad036ad4db4a8edc2bff3b2f1f5f271d1c78c -2023-03-30 17:25:18.398383 + : pb-IF5WU0cRAg== ip: d}va`~~afai`w, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-03-30 17:26:03.550233 + : pb-IF4TUlgePw== ip: an~~aeaohaiax, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-30 17:26:36.667698 + : pb-IF5dU3UiAw== ip: a~o~~acajcaiey, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-30 17:27:36.881142 + : pb-IF5dU3UiAw== ip: azo~zi~yn~z, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-30 17:28:34.160739 + : pb-IF4jF1NY started kick vote for pb-IF4GU0FeFQ==. -2023-03-30 17:29:04.168957 + : Kick vote End -2023-03-30 17:29:33.258246 + : pb-IF4VUxYBJg== ip: an~~acaibajd, Device id: ece440a3bd6d0efaa694b4adf8fc2ad88500f054 -2023-03-30 17:32:52.977734 + : pb-IF49U0QJDw== ip: b}k~}khaj`|vb, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-30 17:35:16.435440 + : pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL ip: dvvc{vb~a~}id, Device id: a61172de41bee6c6202d757a57288fd637e3ec13 -2023-03-30 17:36:51.729283 + : pb-IF41U2scIg== ip: an~~acajc~vh{, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 17:38:29.180587 + : pb-IF4NUxFfEg== ip: bxvf}vb|n~wh, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-03-30 17:39:06.365126 + : pb-IF4VUBctPQ==|| kicked > new account -2023-03-30 17:39:19.368358 + : pb-IF41U2scIg== ip: an~~acajc~vh{, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 17:40:12.559374 + : pb-IF4NUxFfEg== ip: bxvf}vb|n~wh, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-03-30 17:41:28.047963 + : pb-IF4-Um4_Lw== started kick vote for pb-IF4jF1NY. -2023-03-30 17:41:58.053810 + : Kick vote End -2023-03-30 17:43:37.752822 + : pb-IF49U0QJDw== ip: b}k~}khaj`|vb, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-30 17:44:30.214862 + : pb-IF4WUBcHCg==|| kicked > new account -2023-03-30 17:44:44.960062 + : pb-IF4VUBctPQ== | kicked > reason:Banned account -2023-03-30 17:45:26.097487 + : pb-IF41U2scIg== ip: an~~acajc~vh{, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 17:46:32.323038 + : pb-IF4DUmYmFg== ip: i~vb{j~~a`ai`|, Device id: 109699ebc2412760fa57531885a7974df7e87d0e -2023-03-30 17:46:55.405529 + : pb-IF49U0QJDw== ip: b}k~}khaj`|vb, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-30 17:49:53.138279 + : pb-IF4cUBYfCg== ip: azo~zh~|o~~la, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-30 17:52:14.705848 + : pb-IF4eU004Ew== ip: azo~zi~~aaakb, Device id: 245153419ceac4a55cf9e92038ffdf3864e8a262 -2023-03-30 17:56:56.059549 + : pb-IF4CU1MGVQ== ip: bk~~abajdzvazh, Device id: 2098c899ba108707a74842347aa70552d1904ee7 -2023-03-30 17:57:07.130419 + : pb-IF5VUlYhJw== started kick vote for pb-IF4jU0hTBg==. -2023-03-30 17:57:37.132365 + : Kick vote End -2023-03-30 17:59:34.727020 + : pb-IF40U3MyVQ== ip: b}k~}kcaogaoa, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-30 18:00:59.052425 + : pb-IF5UUxgjIA== ip: azj~z`~xh~{n, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-30 18:02:40.405896 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`amh, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-03-30 18:04:16.737303 + : pb-IF4DU1I4CQ== ip: azj~z`~}icaja|, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-30 18:06:36.266765 + : pb-IF4dUkxeLQ== ip: an~}ica``ali, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-03-30 18:10:31.041115 + : pb-IF4GU0FeFQ== ip: d|vb}l~wva|k, Device id: 88037ec404c87538bbe04e5b633696e4e7202170 -2023-03-30 18:12:17.928149 + : pb-IF4CUBc4CQ==|| kicked > new account -2023-03-30 18:14:04.997597 + : pb-IF4mUloFPA== ip: azo~{l~}ihaah, Device id: 111b38e56123262b7b87041f5a3d9ef09e37b11e -2023-03-30 18:15:27.361217 + : pb-IF5SUBMhAw== ip: dvvc|vb~`~{, Device id: 69d4513cb2686138887986bfc6a46d2d89fe2826 -2023-03-30 18:16:16.565748 + : pb-IF4cUBYfCg== ip: azo~zh~|o~~oh, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-30 18:16:18.576367 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`amh, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-03-30 18:16:42.664325 + : pb-IF4DV2ItCQ== ip: ak~~`baifyvcy, Device id: 5bba8fcd2bdbd1349061cdcfb59066eec13d9afc -2023-03-30 18:16:53.698334 + : pb-IF4cUBYfCg== ip: azo~zh~|o~~oh, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-30 18:17:14.532155 + : pb-IF4dUkxeLQ== started kick vote for pb-IF4GU0FeFQ==. -2023-03-30 18:17:44.538046 + : Kick vote End -2023-03-30 18:19:40.267340 + : pb-IF4SXhUa ip: azj~z`~xi~~i`, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-03-30 18:21:23.671236 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`amh, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-03-30 18:22:35.901654 + : pb-IF41U2scIg== ip: ak~}hhaniamc, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 18:27:14.976145 + : pb-IF4jF1NY ip: azj~z`~zl~w`, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-30 18:30:05.578417 + : pb-IF4pU0sZPQ== ip: aj~{n~wo~}ke, Device id: ad5156641f2694351f38b8d6d71677469e0ee31e -2023-03-30 18:32:28.261906 + : pb-IF4vV0g8Mw== ip: azo~|j~wl~}ii, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-03-30 18:33:19.420984 + : pb-IF5VU3lYDA== ip: azj~z`~~ohaid|, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-03-30 18:38:13.861145 + : pb-IF4dUkxeLQ== ip: an~}ica``ali, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-03-30 18:40:52.444132 + : pb-IF4DU1I4CQ== ip: azj~z`~}ibaiey, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-30 18:42:17.880601 + : pb-IF41U2scIg== ip: ak~}hhaniamc, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 18:42:58.028305 + : pb-IF4SXhUa ip: azj~z`~xi~~i`, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-03-30 18:45:02.622828 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~~jc, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-03-30 18:48:04.492006 + : pb-IF4jF1NY started kick vote for pb-IF4yVUkSHw==. -2023-03-30 18:48:34.493843 + : Kick vote End -2023-03-30 18:48:40.425898 + : pb-IF4dUkxeLQ== ip: an~}ica``ali, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-03-30 18:51:06.880948 + : pb-IF4-Um4_Lw== ip: azj~zo~}hbaibw, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-03-30 18:51:46.014278 + : pb-IF4yVUkSHw== ip: b}k~}jhajcvvava, Device id: 6e08787b7ab8621940e8fd9665b2dba75d6806e6 -2023-03-30 18:53:50.411529 + : pb-IF4TUlgePw== ip: an~~aeaogaiax, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-30 18:56:02.859905 + : pb-IF4NUxFfEg== ip: bxvf}vbzm~~`e, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-03-30 18:56:35.964724 + : pb-IF40VRIbJg== ip: an~~afa`fajd~, Device id: 10bb61f2761dcc779f19f3263fa3407a620db0fe -2023-03-30 18:58:54.450246 + : pb-IF4eUkZcNQ== ip: ak~~jgak~}ki, Device id: e7f3fbcd2cc47d4e69208299f44a4aefe10a4ccf -2023-03-30 18:59:03.477182 + : pb-IF4BU1gtAA== ip: a~h~}jfa`cah, Device id: 1f2a67f3540a90953f0d00eae021c1d40dc8c27c -2023-03-30 19:00:24.737983 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-30 19:00:40.782369 + : pb-IF4wV24HBw== ip: a~o~va~}haajc~, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-30 19:02:15.145232 + : pb-IF5SUno-Ug== ip: dxvbvvaxl~~if, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-03-30 19:02:29.847110 + : pb-IF5cUkwjDA== started kick vote for pb-IF4IVEoHBA==. -2023-03-30 19:02:59.309918 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-30 19:02:59.851907 + : Kick vote End -2023-03-30 19:06:08.551912 + : pb-IF4-Um4_Lw== started kick vote for pb-IF5SUno-Ug==. -2023-03-30 19:06:38.557591 + : Kick vote End -2023-03-30 19:08:52.188795 + : pb-IF4MUBdTHA==|| kicked > new account -2023-03-30 19:11:02.341641 + : pb-IF4FUlRfAg== ip: b}k~~afaii}vawa, Device id: aba5ff826ae810b393bf32d5a9009055e5984479 -2023-03-30 19:12:05.776813 + : pb-IF4mUloFPA== ip: azo~{l~}jbami, Device id: 111b38e56123262b7b87041f5a3d9ef09e37b11e -2023-03-30 19:12:57.985003 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-30 19:13:27.088678 + : pb-IF4jF1NY ip: azj~z`~zl~w`, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-30 19:13:59.199210 + : pb-IF41U2scIg== ip: ak~}hhaniamc, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 19:16:06.790048 + : pb-IF41U2scIg== ip: ak~}hhaniamc, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 19:17:57.402751 + : pb-IF49U0QJDw== ip: b}k~}khaiivvb}`, Device id: 24495fd5ec013cdb163a3a3931b477b63894ef12 -2023-03-30 19:19:08.654857 + : pb-IF41U2scIg== ip: ak~}hhaniamc, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 19:19:33.737313 + : pb-IF4LU1IyKQ== ip: dvvczvayi~}ji, Device id: 2ede757f9fff6fc003468ee68d31ebf4524fa167 -2023-03-30 19:23:12.487836 + : pb-IF49U0QJDw== ip: b}k~}khaiivvb}`, Device id: 24495fd5ec013cdb163a3a3931b477b63894ef12 -2023-03-30 19:23:39.601658 + : pb-IF41U2scIg== ip: ak~}hhaniaii~, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 19:28:34.601136 + : pb-IF5SUkwMAg== ip: dvvcyvak~~je, Device id: a437c2a1793c75d0da48b9b93a0f30175d79dd89 -2023-03-30 19:29:16.748260 + : pb-IF4cUBYfCg== ip: azo~zh~yj~~hh, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-30 19:30:53.116715 + : pb-IF49U0QJDw== ip: a~o~v`~y`~}ib, Device id: 52cc071e6a1ff87046bcc2f8fe24a4baa76ba2b8 -2023-03-30 19:33:07.364975 + : pb-IF5XUBkiIg== ip: azo~zi~~jcajd}, Device id: 7f4e4ec67f48b58e684a38be7291e56fcf9704a4 -2023-03-30 19:33:15.388500 + : pb-IF4cUBYfCg== ip: azo~zh~yj~~hh, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-30 19:34:23.642786 + : pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL ip: dvvc{vb~o~yo, Device id: a61172de41bee6c6202d757a57288fd637e3ec13 -2023-03-30 19:38:12.811522 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`~vi, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-30 19:40:31.325047 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-30 19:41:25.489677 + : pb-IF5dU3UiAw== ip: azo~zi~wm~~ab, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-30 19:41:54.593925 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-03-30 19:43:02.871621 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-30 19:43:16.926328 + : pb-IF4JU04DCQ== ip: a~j~xa~xj~~od, Device id: 64fe8f45d0cba627aa2b414afdd31b9ca037c8a1 -2023-03-30 19:44:43.435434 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`~vi, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-30 19:47:13.664029 + : pb-IF43UBclJg==|| kicked > new account -2023-03-30 19:48:01.125497 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`~vi, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-30 19:49:59.730041 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-30 19:50:40.039762 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|l~vh, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-03-30 19:52:37.758896 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-30 19:53:16.894950 + : pb-IF4DU1I4CQ== ip: b}k~~`bajbvva~h, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-30 19:53:35.950204 + : pb-IF4OU1IZVg== ip: a|o~vo~~hbal, Device id: 541973653043d7f242ff3b1078194e8678f82921 -2023-03-30 19:53:51.987969 + : pb-IF5dU3UiAw== ip: azo~zi~vh~zj, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-30 19:57:22.246198 + : pb-IF4JU2ozPQ== ip: azo~{l~~`fal`, Device id: dd405691e081300904dd60069adb0e51fd6f15ee -2023-03-30 19:58:10.551629 + : pb-IF4jF1NY ip: azj~z`~zm~~k, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-30 19:59:16.788325 + : pb-IF4JU2ozPQ== ip: azo~{l~~`fal`, Device id: dd405691e081300904dd60069adb0e51fd6f15ee -2023-03-30 19:59:32.848027 + : pb-IF4JU2ozPQ== ip: azo~{l~~`fal`, Device id: dd405691e081300904dd60069adb0e51fd6f15ee -2023-03-30 20:01:38.382962 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-30 20:01:38.383086 + : pb-IF5dU3UiAw== ip: azo~zi~vh~zj, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-30 20:01:38.383171 + : pb-IF4JU2ozPQ== ip: azo~{l~~`fal`, Device id: dd405691e081300904dd60069adb0e51fd6f15ee -2023-03-30 20:02:40.608732 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-30 20:03:22.748603 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-30 20:04:23.953029 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-30 20:06:57.452807 + : pb-IF4JU2ozPQ== ip: azo~{l~~nca`h, Device id: dd405691e081300904dd60069adb0e51fd6f15ee -2023-03-30 20:08:11.742775 + : pb-IF4vVRUFVA== ip: a}j~~ncaicxvavn, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-30 20:08:17.751251 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-30 20:08:44.838394 + : pb-IF4TUlgePw== ip: an~~aeandaifx, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-30 20:09:06.920716 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`~vi, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-30 20:09:11.940030 + : pb-IF4TUlgePw== ip: an~~aeandaifx, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-03-30 20:12:40.621877 + : pb-IF4cUBYfCg== ip: azo~zh~zh~~kc, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-30 20:15:08.109685 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazl~wk, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-30 20:15:41.313310 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF4sUnRSNA==. -2023-03-30 20:16:11.320371 + : Kick vote End -2023-03-30 20:17:40.448244 + : pb-IF4vVRUFVA== started kick vote for pb-IF4sUnRSNA==. -2023-03-30 20:18:10.453025 + : Kick vote End -2023-03-30 20:19:25.015988 + : pb-IF4IU28qPA== ip: azo~zi~~jgaib~, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-03-30 20:22:54.789482 + : pb-IF4DUnYIFw== ip: ak~~nfajdzvaxi, Device id: 034ca926108494cfd61528e447d8763334003429 -2023-03-30 20:22:59.811043 + : pb-IF4SXhUa ip: azj~z`~xi~}ld, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-03-30 20:24:01.027613 + : pb-IF4DUnYIFw== ip: ak~~nfajdzvaxi, Device id: 034ca926108494cfd61528e447d8763334003429 -2023-03-30 20:24:57.285092 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-30 20:29:17.271345 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-30 20:31:06.661210 + : pb-IF4tCRgv ip: azj~z`~~ifaog, Device id: 8c50b5e94f4fedbbbc30c1fd2d39bf3275ea8fc5 -2023-03-30 20:31:34.747990 + : pb-IF5cPGsk ip: azo~|k~}mbai`z, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-30 20:32:56.001387 + : pb-IF4PU1gABw== ip: dxva~vbi~~ae, Device id: 992998ce6fa6a645d82b7d26a9d32cb8d6ca7245 -2023-03-30 20:35:42.614926 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-30 20:40:21.554011 + : pb-IF40U006LA== ip: f~vb{m~~naajay, Device id: 8152065735a1adcc2e41d2fac46308736bb5eb90 -2023-03-30 20:42:43.072424 + : pb-IF5dU3UiAw== ip: azo~zi~vh~zj, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-30 20:45:10.575917 + : pb-IF4dUkxeLQ== ip: an~}ica``ali, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-03-30 20:46:20.822804 + : pb-IF40U006LA== ip: f~vb{m~~naajay, Device id: 8152065735a1adcc2e41d2fac46308736bb5eb90 -2023-03-30 20:47:03.978668 + : pb-IF40U006LA== ip: f~vb{m~~naajay, Device id: 8152065735a1adcc2e41d2fac46308736bb5eb90 -2023-03-30 20:47:32.503344 + : pb-IF4GUBceMg==|| kicked > new account -2023-03-30 20:51:27.974479 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`~vi, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-30 20:52:42.425402 + : pb-IF4RU0snIg== started kick vote for pb-IF4dUkxeLQ==. -2023-03-30 20:53:12.427088 + : Kick vote End -2023-03-30 20:55:12.742923 + : pb-IF4PU1QCAg== ip: a~o~va~|i~zm, Device id: 5153d735950ac5ff9986497b6c8154dc566d421d -2023-03-30 20:56:51.467770 + : pb-IF4WUVY= started kick vote for pb-IF4dUkxeLQ==. -2023-03-30 20:57:21.471692 + : Kick vote End -2023-03-30 20:57:46.276905 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-30 20:59:07.578200 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-30 21:01:30.096655 + : pb-IF49UnYRLQ== | kicked > reason:Banned account -2023-03-30 21:01:42.143226 + : pb-IF4uU0cyFg== ip: azj~zo~}idan, Device id: c602f257bbe1532f17e9a7b25766cf7fb6d5ea31 -2023-03-30 21:01:54.174280 + : pb-IF4uU0cyFg== ip: azj~zo~}idan, Device id: c602f257bbe1532f17e9a7b25766cf7fb6d5ea31 -2023-03-30 21:04:14.677989 + : pb-IF5UUxgjIA== ip: azj~z`~xh~zo, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-30 21:06:46.204567 + : pb-IF4IU28qPA== ip: azo~zi~~`ealh, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-03-30 21:09:24.871889 + : pb-IF4NUxFfEg== ip: bxvf}vbzi~~`i, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-03-30 21:13:10.795445 + : pb-IF4NUxFfEg== ip: bxvf}vbzi~~`i, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-03-30 21:13:52.946471 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-30 21:14:02.987329 + : pb-IF48Xmgz ip: aakhaigxvb}a, Device id: 392af6ab26625d491b89764dd284820caf2b470a -2023-03-30 21:15:26.252091 + : pb-IF40U006LA== ip: f~vb{m~~naajay, Device id: 8152065735a1adcc2e41d2fac46308736bb5eb90 -2023-03-30 21:18:09.758699 + : pb-IF41U2scIg== ip: an~~acajc~vh}, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 21:18:12.771936 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-30 21:19:28.035589 + : pb-IF40PkMh ip: d}va`~~afaii, Device id: a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e -2023-03-30 21:23:18.920399 + : pb-IF4nVEY-PA== ip: bxvf~va{o~~`f, Device id: 274c0eb29438e37a9fd5de5c04997e31b078d217 -2023-03-30 21:26:18.552938 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-30 21:28:34.035706 + : pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL ip: dvvc{vb}h~zi, Device id: a61172de41bee6c6202d757a57288fd637e3ec13 -2023-03-30 21:29:16.153848 + : pb-IF4OU00jBA== ip: azo~|j~}ihali, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-03-30 21:29:53.262052 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF4nVEY-PA==. -2023-03-30 21:30:23.266193 + : Kick vote End -2023-03-30 21:30:40.430832 + : pb-IF4IV3Q5CA== ip: ak~xi~xo~yk, Device id: 48f217bbea2b98dd33867c510af5c93b154b1e2e -2023-03-30 21:34:02.130058 + : pb-IF4RUxQTPA== ip: an~}j`aje~vazm, Device id: 3c2f70861b1e09bad6e29dad32110fa5462894cd -2023-03-30 21:36:35.668324 + : pb-IF4wVVkYIg== ip: aakhaifzva}i, Device id: 62eeec9d9ed20df10e2ef17590735f5346df08de -2023-03-30 21:37:12.798319 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-30 21:37:42.887110 + : pb-IF4yU1oxUg== ip: azo~|j~~icake, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-03-30 21:40:05.490976 + : pb-IF4BVGw7EA== ip: azo~{a~~mdaiaw, Device id: 209280ab07f7691d330218b65ebbec6a060b43c3 -2023-03-30 21:42:34.096314 + : pb-IF4VU3EjBg== ip: azj~z`~|`~{, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-03-30 21:43:24.286192 + : pb-IF4eVWgCFw== ip: azo~{a~~lcaihv, Device id: e2b9e9ccead760824195b80a4a552b116c0f19ae -2023-03-30 21:45:23.741753 + : pb-IF4wUBc-Pw== ip: a~o~va~}n~~ma, Device id: 8b58c53a645af7ad2ad4db104d92a34f94c176b6 -2023-03-30 21:45:40.812206 + : pb-IF4PU1QCAg== ip: a~o~va~|i~zm, Device id: 5153d735950ac5ff9986497b6c8154dc566d421d -2023-03-30 21:45:45.827457 + : pb-IF4eUkZcNQ== ip: ak~~jgak~}kh, Device id: e7f3fbcd2cc47d4e69208299f44a4aefe10a4ccf -2023-03-30 21:46:10.939112 + : pb-IF4eUkZcNQ== ip: ak~~jgak~}kh, Device id: e7f3fbcd2cc47d4e69208299f44a4aefe10a4ccf -2023-03-30 21:48:46.506384 + : pb-IF41U2scIg== ip: an~~acajc~vh}, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 21:49:29.663747 + : pb-IF41U2scIg== ip: an~~acajc~vh}, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 21:49:41.708178 + : pb-IF4hU3EgJA== ip: a|o~vo~~ifaii{, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-03-30 21:50:09.802738 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-30 21:51:54.135398 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-30 21:53:06.380364 + : pb-IF4VU3EjBg== ip: azj~z`~|`~{, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-03-30 21:54:40.716679 + : pb-IF4IU2slBA== ip: azo~{a~~`eaif}, Device id: 49d08ce2fcf3cca38e66e9d6db20af0a4f9a183d -2023-03-30 21:55:16.844308 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~~jc, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-03-30 21:55:46.944319 + : pb-IF4OU00jBA== ip: azo~|j~}ihali, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-03-30 21:56:01.996633 + : pb-IF4wVVkYIg== ip: aakhaifzva}i, Device id: 62eeec9d9ed20df10e2ef17590735f5346df08de -2023-03-30 21:56:42.144172 + : pb-IF4wVVkYIg== ip: aakhaifzva}i, Device id: 62eeec9d9ed20df10e2ef17590735f5346df08de -2023-03-30 21:59:30.675049 + : pb-IF5dUBclCw== ip: dvvcxvb{vawk, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-30 22:00:29.975486 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-30 22:01:00.073636 + : pb-IF4PUxQiDQ== ip: a{n~}laa`ian, Device id: 3ecb66806216f84db55d04e719153686443d3441 -2023-03-30 22:02:11.883661 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF4eUxYkNg==. -2023-03-30 22:02:41.889986 + : Kick vote End -2023-03-30 22:03:41.661931 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-30 22:04:05.742478 + : pb-IF4IU2slBA== ip: azo~{a~~`eaif}, Device id: 49d08ce2fcf3cca38e66e9d6db20af0a4f9a183d -2023-03-30 22:04:58.659060 + : pb-IF5cUkwjDA== started kick vote for pb-IF4eUxYkNg==. -2023-03-30 22:05:28.666187 + : Kick vote End -2023-03-30 22:05:49.119557 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~~jc, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-03-30 22:07:16.477780 + : pb-IF4TV3RbDA== ip: azo~{m~va~~o, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-30 22:09:01.841096 + : pb-IF4QUhYvVA== ip: azo~{l~}jaaj`|, Device id: 65684cdc37e97284687c364b27a72d41e2a2fa77 -2023-03-30 22:09:28.916902 + : pb-IF4lUBchAw== ip: ak~}idan`ai`y, Device id: 86e63cd6b424696566cc3de6490d798d597f72f2 -2023-03-30 22:09:57.001761 + : pb-IF4vV0g8Mw== ip: azo~|j~wl~}ii, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-03-30 22:10:22.101951 + : pb-IF4OU00jBA== ip: azo~|j~}ihali, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-03-30 22:11:56.435537 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-03-30 22:15:31.246993 + : pb-IF4JUBMZCA== ip: an~~ahaidajc, Device id: a1f6dc2f8f93ed728dfa5f8917f880300ab47b8e -2023-03-30 22:17:35.877906 + : pb-IF4JU2ozPQ== ip: azo~{l~~niaibz, Device id: dd405691e081300904dd60069adb0e51fd6f15ee -2023-03-30 22:19:22.234232 + : pb-IF4vVRUFVA== ip: an~}hbaiewviy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-30 22:20:39.484186 + : pb-IF4PUxQiDQ== ip: a{n~}laa`ian, Device id: 3ecb66806216f84db55d04e719153686443d3441 -2023-03-30 22:21:21.712988 + : pb-IF4IV3Q5CA== ip: ak~xi~xo~yk, Device id: 48f217bbea2b98dd33867c510af5c93b154b1e2e -2023-03-30 22:21:39.783571 + : pb-IF4uU0cEPA== ip: azo~{n~wm~}ic, Device id: a1a3c36bb89507f8385f2a8ba1047555972b7f55 -2023-03-30 22:22:06.878874 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: bxvf~vawk~}le, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-03-30 22:22:27.953996 + : pb-IF4JU2ozPQ== ip: azo~{l~~niaibz, Device id: dd405691e081300904dd60069adb0e51fd6f15ee -2023-03-30 22:22:32.969224 + : pb-IF5dUBclCw== ip: dvvcxvb{vawk, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-30 22:22:43.328612 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4vVRUFVA==. -2023-03-30 22:23:13.333972 + : Kick vote End -2023-03-30 22:24:52.423862 + : pb-IF4QUhYvVA== ip: azo~{l~}jaaj`|, Device id: 65684cdc37e97284687c364b27a72d41e2a2fa77 -2023-03-30 22:26:17.751826 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-30 22:27:57.092081 + : pb-IF4PUxQiDQ== ip: a{n~}laa`ian, Device id: 3ecb66806216f84db55d04e719153686443d3441 -2023-03-30 22:28:00.099824 + : pb-IF4SUmwlVA== ip: dvvcyvc}vcy, Device id: 6a6fcb695e4e475315c16eff4a8191b6b4a2c54c -2023-03-30 22:28:46.468162 + : pb-IF4vV0g8Mw== started kick vote for pb-LV4FVxEOBxcUVQxERkNWUFFA. -2023-03-30 22:29:16.475593 + : Kick vote End -2023-03-30 22:30:33.730138 + : pb-IF4PUxQiDQ== ip: a{n~}laa`ian, Device id: 3ecb66806216f84db55d04e719153686443d3441 -2023-03-30 22:31:08.881073 + : pb-IF4cUBMqCA== ip: dvvc}vawk~~ig, Device id: 0c1100f7a7e1b4a7bb111d1f21df1327dafa7bed -2023-03-30 22:31:24.935052 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-30 22:33:13.326519 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-30 22:37:48.297210 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-30 22:38:04.355102 + : pb-IF5dUBclCw== ip: dvvcxvb{vawk, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-30 22:39:37.843447 + : pb-IF4yVFgOVA== ip: ak~~n`ajc|vavn, Device id: d854623f8a8ec9715c4cf1e44f2a453d5344d791 -2023-03-30 22:40:03.974368 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-30 22:42:34.483060 + : pb-IF5dUBclCw== ip: dvvcxvb{vawk, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-30 22:43:15.743884 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-30 22:45:11.187755 + : pb-IF40UBdcCw== ip: d|vb{k~}idaje, Device id: d5001ebdff8a19b54fd0e85dab9c3ca0bce409e1 -2023-03-30 22:45:29.250775 + : pb-IF4-UmINEQ== ip: a}j~~naaoeakc, Device id: 57add358393e91cca1a4287e16222c226723557e -2023-03-30 22:46:43.560632 + : pb-IF4-UmINEQ== started kick vote for pb-IF4KUBcKJA==. -2023-03-30 22:47:13.567006 + : Kick vote End -2023-03-30 22:48:38.933922 + : pb-IF40UBdcCw== ip: d|vb{k~}idaje, Device id: d5001ebdff8a19b54fd0e85dab9c3ca0bce409e1 -2023-03-30 22:52:39.032891 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazl~wk, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-30 22:53:31.215458 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-30 22:55:05.674244 + : pb-IF4IUBYIAw== ip: a~j~xa~yl~~nf, Device id: e1529657516c122526c890d4ade9e920a04183ad -2023-03-30 22:57:02.131672 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC started kick vote for pb-IF4KU1oAAA==. -2023-03-30 22:57:10.844683 + : pb-IF4KU1oAAA== kicked by kickvotes. -2023-03-30 22:59:11.898062 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC started kick vote for pb-IF40UBYuHw==. -2023-03-30 22:59:18.653151 + : pb-IF4TV3RbDA== ip: azo~{m~vo~~i`, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-30 22:59:41.901903 + : Kick vote End -2023-03-30 23:02:35.539441 + : pb-IF4KV04FIg== ip: dvvcxvb{vawk, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-30 23:02:52.608701 + : pb-IF5dUBclCw== ip: dvvcxvb{vawk, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-30 23:06:08.352368 + : pb-IF49VFQlPA== ip: azo~zh~zn~vh, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-30 23:09:14.983179 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazl~wk, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-30 23:09:16.996374 + : pb-IF5dUBclCw== ip: dvvcxvb{vawk, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-30 23:10:02.180209 + : pb-IF41U2scIg== ip: an~~acajc~vh}, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 23:10:24.265013 + : pb-IF4vVRUFVA== ip: an~}hbaiewviy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-30 23:10:30.721486 + : pb-IF5dUBclCw== started kick vote for pb-IF41U2scIg==. -2023-03-30 23:10:33.298229 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-30 23:10:36.314641 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-30 23:10:48.357174 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-30 23:11:00.723009 + : Kick vote End -2023-03-30 23:11:40.539038 + : pb-IF41U2scIg== ip: an~~acajc~vh}, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 23:13:43.149329 + : pb-IF4cUBYfCg== ip: azo~zh~zm~}ji, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-30 23:16:16.669380 + : pb-IF4HU0sgHA== ip: azo~|`~~abaja{, Device id: 654da5e0dae96fb0b48aba91cc2fb6134fa55a86 -2023-03-30 23:20:56.931414 + : pb-IF4vV0g8Mw== ip: azo~|j~wl~}ii, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-03-30 23:21:01.952769 + : pb-IF4DU1I4CQ== ip: b}k~~`bajbvvi{, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-30 23:22:16.388017 + : pb-IF41U2scIg== ip: a~h~}jgaiaan, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 23:22:58.526520 + : pb-IF4wVVk8Jg== ip: bj~wk~{i~zj, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-03-30 23:27:45.584876 + : pb-IF4vVRUFVA== ip: an~}hbaiewviy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-30 23:31:33.357786 + : pb-IF4eUkZcNQ== ip: ak~~jgak~}kh, Device id: e7f3fbcd2cc47d4e69208299f44a4aefe10a4ccf -2023-03-30 23:32:19.509631 + : pb-IF4vVRUFVA== ip: an~}hbaiewviy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-30 23:32:46.786173 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-30 23:32:49.799539 + : pb-IF4vVRUFVA== ip: an~}hbaiewviy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-30 23:33:18.901952 + : pb-IF4KU1Q9Pw== ip: a~m~vo~}k~}k`, Device id: 217799c313cf0a8fc57851c7c11d507bce2f3696 -2023-03-30 23:33:55.026063 + : pb-IF41U2scIg== ip: a~h~}jgaiaan, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 23:34:25.130462 + : pb-IF4wV24HBw== ip: a~o~va~~agaja}, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-30 23:36:01.511212 + : pb-IF4wV24HBw== ip: a~o~va~~agaja}, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-30 23:36:33.608034 + : pb-IF4zU2MgJw== ip: a}l~~meajezva{i, Device id: 5b13413ad2a035b34073c5918da9363afe5b8217 -2023-03-30 23:38:22.174542 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-30 23:38:24.179063 + : pb-IF4zU2MgJw== ip: a}l~~meajezva{i, Device id: 5b13413ad2a035b34073c5918da9363afe5b8217 -2023-03-30 23:43:26.250943 + : pb-IF49VFQlPA== ip: azo~zh~zn~vh, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-30 23:46:14.810926 + : pb-IF4wV24HBw== ip: a~o~va~~agaja}, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-30 23:46:29.860802 + : pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB ip: azj~z`~}l~|m, Device id: 1fd3c59cf1fc968b80ce5a6a63bd3fe5d3e13fac -2023-03-30 23:48:03.178493 + : pb-IF49VFQlPA== ip: azo~zh~zn~vh, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-30 23:48:52.341374 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~~jc, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-03-30 23:50:58.778533 + : pb-IF41U2scIg== ip: a~h~}jgaiaan, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-30 23:56:54.059731 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-31 00:08:50.690240 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-31 00:10:03.960793 + : pb-IF4TV3RbDA== ip: azo~{m~~iaai`y, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-31 00:11:39.694568 + : pb-IF5UVBMZEw== ip: bxvc{vc{va|k, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-03-31 00:12:01.756801 + : pb-IF4UUlENFQ== ip: azo~{m~~ogaii}, Device id: 4181f882c216c6a669f1509f1edc8b092ed7d12e -2023-03-31 00:25:28.667954 + : pb-JiNJARFYXEVCXVlDEkJYVV1KFUdbQVJL ip: azo~{a~}laaih, Device id: ccdab0370a8d467f88fd768504a9b46af9567d2a -2023-03-31 00:27:51.199561 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-31 00:33:51.443431 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-31 00:34:58.681130 + : pb-IF5cU2haHA== ip: dvvcxvaxh~}h`, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-03-31 00:35:57.933528 + : pb-IF4IV04ZKw== ip: azj~z`~x`~~`c, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-03-31 00:36:04.033305 + : pb-IF4wVVk8Jg== ip: bj~wk~{i~zj, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-03-31 00:41:42.134121 + : pb-IF5cU2haHA== started kick vote for pb-IF5XU08lNA==. -2023-03-31 00:42:12.139252 + : Kick vote End -2023-03-31 00:46:04.309441 + : pb-IF4SXhUa ip: azj~z`~xi~~mc, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-03-31 00:52:37.573277 + : pb-IF4IV04ZKw== started kick vote for pb-IF5XU08lNA==. -2023-03-31 00:53:07.575260 + : Kick vote End -2023-03-31 00:54:03.293447 + : pb-IF5WUBgGCQ== ip: avo~}h~~h~xl, Device id: ad6ef34d487d7eb53fcc57dbf83eb9687e7fd3fd -2023-03-31 00:55:32.609249 + : pb-IF41U2scIg== ip: a~h~}jgaiaan, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-31 00:56:13.739378 + : pb-IF5VUlYhJw== ip: azo~zh~~l~~ai, Device id: 49aba9148ddf7a23b2257abcdb8b9b0f0e4cddc9 -2023-03-31 00:57:23.988053 + : pb-IF5WUBgGCQ== ip: avo~}h~~h~xl, Device id: ad6ef34d487d7eb53fcc57dbf83eb9687e7fd3fd -2023-03-31 00:58:20.158105 + : pb-IF5VUlYhJw== ip: azo~zh~~l~~ai, Device id: 49aba9148ddf7a23b2257abcdb8b9b0f0e4cddc9 -2023-03-31 00:59:22.354310 + : pb-IF5VUlYhJw== started kick vote for pb-IF4SXhUa. -2023-03-31 00:59:52.354936 + : Kick vote End -2023-03-31 01:02:13.450629 + : pb-IF4TV3RbDA== ip: an~zi~}lbaja{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-31 01:03:46.187926 + : pb-IF4IV04ZKw== started kick vote for pb-IF40U1IbNw==. -2023-03-31 01:04:16.194298 + : Kick vote End -2023-03-31 01:04:26.889363 + : pb-IF4TV3RbDA== ip: azo~{m~~i`ang, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-31 01:07:27.727200 + : pb-IF49VFQlPA== ip: azo~zh~zn~vh, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-31 01:08:17.892124 + : pb-IF49VFQlPA== ip: azo~zh~zn~vh, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-31 01:11:20.810970 + : pb-IF5VUlYhJw== started kick vote for pb-IF4IV04ZKw==. -2023-03-31 01:11:50.817981 + : Kick vote End -2023-03-31 01:14:39.314468 + : pb-IF5cU2haHA== ip: dvvcxvb{`~}md, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-03-31 01:20:04.118293 + : pb-IF4wVVk8Jg== ip: bj~wk~{i~zj, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-03-31 01:20:36.210407 + : pb-IF4KV04FIg== ip: azo~|m~xm~}he, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-31 01:20:50.261098 + : pb-IF4vVRUFVA== ip: an~}hbaiewviy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-31 01:20:57.287187 + : pb-IF4KV04FIg== ip: azo~|m~xm~}he, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-31 01:21:15.359929 + : pb-IF4KV04FIg== ip: azo~|m~xm~}he, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-31 01:28:12.163030 + : pb-IF5VUlYhJw== | kicked for chat spam -2023-03-31 01:28:22.368422 + : pb-IF4wUkwlJg== ip: ak~}meal~z`, Device id: 485401927d6373a184b21306a151c08929ea22d3 -2023-03-31 01:29:31.650164 + : pb-IF4KV04FIg== ip: azo~|m~xm~}he, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-31 01:36:16.249245 + : pb-IF4tDUc8 ip: ak~~`aamcaif|, Device id: 367512ad531a03130a4d9996fb62a4873881aa77 -2023-03-31 01:36:16.970282 + : pb-IF4tDUc8|| kicked , for using spoofed id NakiriMeow -2023-03-31 01:41:30.473740 + : pb-IF4KV04FIg== ip: azo~|m~xk~xl, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-31 01:41:38.621619 + : pb-IF4KV04FIg== ip: azo~|m~xk~xl, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-31 02:03:19.904221 + : pb-IF4KV04FIg== ip: azo~|m~xk~xl, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-31 02:28:28.581274 + : pb-IF4KV04FIg== ip: azo~|m~xk~xl, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-31 02:28:31.590392 + : pb-IF49VFQlPA== ip: azo~zh~zn~vh, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-31 02:28:35.608910 + : pb-IF4IV04ZKw== ip: azj~z`~x`~~`c, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-03-31 02:40:38.023973 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-31 02:53:17.564232 + : pb-IF4TV3RbDA== ip: azo~{m~~ifaii}, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-31 03:02:01.388398 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-31 04:35:42.400563 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-31 04:57:02.633607 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-31 04:58:40.953553 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-31 05:40:21.587387 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-31 06:23:52.565845 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-31 06:48:44.545478 + : pb-IF5dVWEJMg== ip: azo~{a~vm~wm, Device id: 5ab7cb7a5f685d0d0dc98dafbdb2ce8610260d79 -2023-03-31 07:28:45.045940 + : pb-IF48UBUzCg== ip: azj~zo~}jfana, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-03-31 07:35:47.582415 + : pb-IF4FUEY4 ip: bk~~adaaiand, Device id: 452bcd37350866efb1deb4f785c1364a1abde5d2 -2023-03-31 08:04:35.350578 + : pb-IF5cU2haHA== ip: dvvcxvb{`~}md, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-03-31 08:06:37.080981 + : pb-IF5QUGEpMw==|| kicked > new account -2023-03-31 08:29:12.728449 + : pb-IF4WU0wvVA== ip: dvvc}vawk~}l`, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-31 08:29:33.782228 + : pb-IF4WU0wvVA== ip: dvvc}vawk~}l`, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-31 08:33:00.455703 + : pb-IF40UmUMEg== ip: an~}idao~~ag, Device id: 7871fcf2cb1081a5de7b5b7b3bfc84148565e630 -2023-03-31 08:33:01.459475 + : pb-IF4WU0wvVA== ip: dvvc}vawk~}l`, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-31 08:39:26.730194 + : pb-IF4VU3laVA== ip: ak~~`dajcwvi~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-31 08:43:42.644869 + : pb-IF49U0QJDw== ip: b}k~}khaiivv`, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 08:46:45.286412 + : pb-IF4hU3EgJA== ip: azo~{n~~kdaic}, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-03-31 08:49:52.017780 + : pb-IF48UBUzCg== ip: azj~zo~}kgajb~, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-03-31 08:50:31.152484 + : pb-IF48UBUzCg== ip: azj~zo~}kgajb~, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-03-31 09:09:59.501049 + : pb-IF4lU3cFFw== | kicked > reason:Banned account -2023-03-31 09:22:03.874017 + : pb-IF4jUBMiCg== ip: azh~~jiai`}vi|, Device id: 110d204538538c5e9a37a58eb6c53fa6e365be08 -2023-03-31 09:24:25.326592 + : pb-IF48UBUzCg== ip: azj~zo~}khajd, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-03-31 09:28:05.123540 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-03-31 09:32:39.006483 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-31 09:39:40.338874 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-31 09:41:32.716320 + : pb-IF4wV24HBw== ip: a~o~va~~aeaah, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-31 09:43:43.861777 + : pb-IF5SUBk7Bw==|| kicked > new account -2023-03-31 09:45:21.506229 + : pb-IF49U0QJDw== ip: b}k~}khaii{vbi, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 09:57:26.939380 + : pb-IF49U0QJDw== ip: b}k~}khaii{vbi, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 09:58:17.100818 + : pb-IF4GU0FeFQ== ip: d|vb}l~wvaxa, Device id: 88037ec404c87538bbe04e5b633696e4e7202170 -2023-03-31 09:58:55.254404 + : pb-IF49U0QJDw== ip: b}k~}khaii{vbi, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 10:00:51.726381 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-31 10:08:06.090423 + : pb-IF4vVRUFVA== ip: an~}hbaiewviy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-31 10:08:27.170777 + : pb-IF5UUBI9MA== ip: azo~|j~}liaic{, Device id: 4381142d5e8cfc6ab20167b3a40f172ee10010f5 -2023-03-31 10:09:57.469514 + : pb-IF4HU0sgHA== ip: azo~|`~~iaajaw, Device id: 654da5e0dae96fb0b48aba91cc2fb6134fa55a86 -2023-03-31 10:10:15.533167 + : pb-IF5UUBI9MA== ip: azo~|j~}liaic{, Device id: 4381142d5e8cfc6ab20167b3a40f172ee10010f5 -2023-03-31 10:13:40.187817 + : pb-IF4DU1I4CQ== ip: azj~z`~}icak`, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-31 10:14:26.352385 + : pb-IF4eU1kaKA== ip: azo~|`~}icane, Device id: 6b1d3092f72596decc71cab08ad894b08da41bac -2023-03-31 10:14:45.408491 + : pb-IF5UUBI9MA== ip: azo~|j~}liaic{, Device id: 4381142d5e8cfc6ab20167b3a40f172ee10010f5 -2023-03-31 10:19:19.431890 + : pb-IF49U0QJDw== ip: b}k~}khaii{vbi, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 10:19:39.522006 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-03-31 10:21:00.825007 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-31 10:23:59.433264 + : pb-IF5UUBI9MA== ip: azo~|j~}kfaj`w, Device id: 4381142d5e8cfc6ab20167b3a40f172ee10010f5 -2023-03-31 10:24:53.850381 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5UUBI9MA==. -2023-03-31 10:25:23.850466 + : Kick vote End -2023-03-31 10:27:39.209863 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~}ifa`gaig{, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-03-31 10:27:55.264480 + : pb-IF4VU3laVA== ip: ak~~`dajcwvi~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-31 10:28:59.715112 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4VU3laVA==. -2023-03-31 10:29:29.715838 + : Kick vote End -2023-03-31 10:30:31.418883 + : pb-IF4VU3laVA== started kick vote for pb-IF4AV1QqEQ==. -2023-03-31 10:31:01.425617 + : Kick vote End -2023-03-31 10:33:48.725294 + : pb-IF4zUkwZBw== ip: a}j~~nda`baja~, Device id: bc1327009f9944b141f04912712143c738d96727 -2023-03-31 10:35:27.112247 + : pb-IF4zUkwZBw== ip: a}j~~nda`baja~, Device id: bc1327009f9944b141f04912712143c738d96727 -2023-03-31 10:35:37.145020 + : pb-IF40UncaLg== ip: dvvc}vb~i~wa, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-31 10:38:27.813557 + : pb-JiNJARBbXUVGX1pJEENTXFZEFEBeQlNE ip: dvvd|vc|va~k, Device id: 8f1dbe53b88f4ba25d71ae6bc08117056a5a77a6 -2023-03-31 10:38:56.915803 + : pb-IF5UUBI9MA== ip: azo~|j~}lhaja, Device id: 4381142d5e8cfc6ab20167b3a40f172ee10010f5 -2023-03-31 10:40:03.166307 + : pb-IF5UUBI9MA== ip: azo~|j~}lhaja, Device id: 4381142d5e8cfc6ab20167b3a40f172ee10010f5 -2023-03-31 10:41:37.510285 + : pb-IF49U0QJDw== ip: b}k~}khaii{vbi, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 10:43:04.805528 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-03-31 10:43:29.681926 + : pb-IF49U1IiIA== started kick vote for pb-IF5UUxU7Ag==. -2023-03-31 10:43:55.992719 + : pb-IF4WUBYFJg== ip: azj~z`~}hhaib~, Device id: 1b15b7fb9d8ca5070df38f90e4cb49f1e1d2fdfe -2023-03-31 10:43:59.682049 + : Kick vote End -2023-03-31 10:44:10.032540 + : pb-IF4JU1YgLw== ip: azj~z`~}kaai`z, Device id: 6b7eaf976d87eb13c32ff8db1f3ebb161e851785 -2023-03-31 10:44:29.085513 + : pb-IF49U0QJDw== ip: b}k~}khaii{vbi, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 10:47:28.526175 + : pb-IF49U1IiIA== started kick vote for pb-IF5UUxU7Ag==. -2023-03-31 10:47:32.695518 + : pb-IF4WU0wvVA== ip: dvvc}vb|o~~jf, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-31 10:47:58.531224 + : Kick vote End -2023-03-31 10:51:06.427142 + : pb-IF4DU1I4CQ== ip: azj~z`~}icak`, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-31 10:51:44.549199 + : pb-IF4vVUkeXA== ip: a}j~~naangaidz, Device id: 0095677e00d642566002c2900f234ad7491d7a78 -2023-03-31 10:52:04.605169 + : pb-IF4zUkwZBw== ip: a}j~~nda`baja~, Device id: bc1327009f9944b141f04912712143c738d96727 -2023-03-31 10:52:37.744905 + : pb-IF4vVUkeXA== ip: a}j~~naangaidz, Device id: 0095677e00d642566002c2900f234ad7491d7a78 -2023-03-31 10:54:40.157449 + : pb-IF4vVUkeXA== started kick vote for pb-IF4DU1I4CQ==. -2023-03-31 10:55:10.162758 + : Kick vote End -2023-03-31 10:55:10.259663 + : pb-IF5WU0gIUQ== ip: azj~z`~}jdaif, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-03-31 10:56:54.589440 + : pb-IF4dUkxeLQ== ip: an~}ica`baid, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-03-31 10:58:56.007815 + : pb-IF5VU1JZMw== ip: an~}ica`baid, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-03-31 10:59:23.114433 + : pb-IF49U1IiIA== ip: azj~z`~}i`aia|, Device id: cab82c44dc8fe46868ca16d86e5ebbe8934766d9 -2023-03-31 11:00:08.300605 + : pb-IF5WUBEqHw== ip: a~o~vo~xm~~jh, Device id: c3f216648bb3f8c6c9bc4164d352a554aa85f67e -2023-03-31 11:00:17.263127 + : pb-IF4zUkwZBw== started kick vote for pb-IF4DU1I4CQ==. -2023-03-31 11:00:47.263384 + : Kick vote End -2023-03-31 11:03:24.040309 + : pb-IF4wV24HBw== ip: a~o~va~~aeaah, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-31 11:06:02.649166 + : pb-IF4lU3cFFw== | kicked > reason:Banned account -2023-03-31 11:06:08.670970 + : pb-IF5SUno-Ug== ip: dxvbvvaxl~}jg, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-03-31 11:07:14.905919 + : pb-IF4TV3RbDA== ip: azo~{m~~ieaje}, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-31 11:07:30.109499 + : pb-IF4wV24HBw== started kick vote for pb-IF4DU1I4CQ==. -2023-03-31 11:08:00.112938 + : Kick vote End -2023-03-31 11:10:24.624683 + : pb-IF5WUBEqHw== ip: a~o~vo~xm~~jh, Device id: c3f216648bb3f8c6c9bc4164d352a554aa85f67e -2023-03-31 11:14:18.129900 + : pb-IF4DU1I4CQ== started kick vote for pb-IF5SUno-Ug==. -2023-03-31 11:14:48.132967 + : Kick vote End -2023-03-31 11:15:56.847186 + : pb-IF4zUkwZBw== ip: a}j~~nda`baja~, Device id: bc1327009f9944b141f04912712143c738d96727 -2023-03-31 11:17:37.234066 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-31 11:21:00.978826 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-31 11:25:58.004166 + : pb-IF4vVRUFVA== ip: an~}hbaiewviy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-31 11:26:11.051290 + : pb-IF4vVRUFVA== ip: an~}hbaiewviy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-31 11:27:48.475203 + : pb-IF4TV3RbDA== ip: azo~{m~~jeaj`w, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-31 11:29:27.826045 + : pb-IF4tCRgv ip: a}j~~naaogajcz, Device id: 8c50b5e94f4fedbbbc30c1fd2d39bf3275ea8fc5 -2023-03-31 11:30:59.165513 + : pb-IF4oUxAGPQ== ip: azj~zo~}haaig}, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-31 11:33:46.763894 + : pb-IF5VU1JZMw== ip: an~}ica`baid, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-03-31 11:34:00.816661 + : pb-IF49U0QJDw== ip: b}k~}khaiixvcx, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 11:35:40.268378 + : pb-IF5RB2he ip: an~~agaj`aj`|, Device id: 128a0e5799aa97047c915ce45a5e4937d5066dff -2023-03-31 11:35:50.306246 + : pb-IF5RB2he ip: an~~agaj`aj`|, Device id: 128a0e5799aa97047c915ce45a5e4937d5066dff -2023-03-31 11:36:09.381176 + : pb-IF4yU3EYVQ== ip: a~a~vl~va~~aa, Device id: 4f6e7108f56a96fa41b721a4e9abd43a5049c44e -2023-03-31 11:36:35.463806 + : pb-IF5RB2he ip: an~~agaj`aj`|, Device id: 128a0e5799aa97047c915ce45a5e4937d5066dff -2023-03-31 11:37:21.630179 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-31 11:37:29.665262 + : pb-IF4PVVkeEg== ip: awj~xo~|j~~ah, Device id: 559008564f2b2f54829c1fe22966073b86dbfd69 -2023-03-31 11:38:58.990487 + : pb-IF40U3MyVQ== ip: b}k~}kcaneao, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-31 11:42:54.473494 + : pb-IF4TV3RbDA== started kick vote for pb-IF5VU1JZMw==. -2023-03-31 11:43:24.473311 + : Kick vote End -2023-03-31 11:46:38.746904 + : pb-IF5TAHQO ip: dvvcxvb{vb}l, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-31 11:49:19.281108 + : pb-IF4UUxVdMw== ip: dvvcyvawa~~kg, Device id: dc66a4ad0432bc2752e4255e9e86fb5ce4fdd039 -2023-03-31 11:52:06.604051 + : pb-IF4sUBYJCw==|| kicked > new account -2023-03-31 11:52:43.129147 + : pb-IF4VU3laVA== ip: ak~~`dajcwvi~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-31 11:53:04.204925 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-31 11:55:18.875235 + : pb-IF4AU0IoCA== ip: an~~afajdaia}, Device id: 7e77758456905f2250e6815bf48baf9d39eeb3c2 -2023-03-31 11:56:12.059109 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-31 11:56:38.164497 + : pb-IF5RU2oJUA== ip: bxvf~vaxl~~ke, Device id: b52a0123a41243d56ed209aa5016622aec74d299 -2023-03-31 11:57:20.320860 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-31 11:58:16.530949 + : pb-IF4-Um4_Lw== ip: azj~zo~zk~}ic, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-03-31 12:02:31.438506 + : pb-IF5TAHQO ip: dvvcxvb{vb}l, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-31 12:04:28.348973 + : pb-JiNJARBbXEFBVFdHE0dTVFJAE0lbQlZH started kick vote for pb-IF5TAHQO. -2023-03-31 12:04:58.350114 + : Kick vote End -2023-03-31 12:06:23.453461 + : pb-IF49U0QJDw== ip: b}k~}khaiivvc~, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 12:09:48.203591 + : pb-IF4tCRgv ip: a}j~~naaogajcz, Device id: 8c50b5e94f4fedbbbc30c1fd2d39bf3275ea8fc5 -2023-03-31 12:10:52.463423 + : pb-IF4QUhYvVA== ip: azo~{n~~kiali, Device id: 65684cdc37e97284687c364b27a72d41e2a2fa77 -2023-03-31 12:12:01.162099 + : pb-IF4tCRgv started kick vote for pb-IF4QUhYvVA==. -2023-03-31 12:12:05.720944 + : pb-IF4UUlENFQ== ip: azo~{m~~odaih|, Device id: 4181f882c216c6a669f1509f1edc8b092ed7d12e -2023-03-31 12:12:31.164970 + : Kick vote End -2023-03-31 12:14:12.326062 + : pb-IF4iVW4SEw== ip: dvvbn~~ieaiby, Device id: 8242bd6758e271a1ffdac2ad155019aeccbfef5a -2023-03-31 12:14:54.466312 + : pb-IF4QUhYvVA== ip: azo~{n~~kiali, Device id: 65684cdc37e97284687c364b27a72d41e2a2fa77 -2023-03-31 12:17:30.399802 + : pb-IF4tCRgv started kick vote for pb-IF4QUhYvVA==. -2023-03-31 12:18:00.405574 + : Kick vote End -2023-03-31 12:18:30.957350 + : pb-IF4QUhYvVA== | kicked for chat spam -2023-03-31 12:19:10.735821 + : pb-IF4AUBcCAQ==|| kicked > new account -2023-03-31 12:20:13.666192 + : pb-JiNJARBbXEFBVFdHE0dTVFJAE0lbQlZH ip: d|vbzi~~ogaib, Device id: 7bca8b55d75d9aad1f8d152e97bf4289883d3eab -2023-03-31 12:20:55.977213 + : pb-IF4UUlENFQ== ip: azo~{m~~odaih|, Device id: 4181f882c216c6a669f1509f1edc8b092ed7d12e -2023-03-31 12:21:17.059001 + : pb-IF4UUlENFQ== ip: azo~{m~~odaih|, Device id: 4181f882c216c6a669f1509f1edc8b092ed7d12e -2023-03-31 12:23:49.782101 + : pb-IF4NUxFfEg== ip: bxvf}vb}l~x`, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-03-31 12:24:11.853206 + : pb-IF4yU1oxUg== ip: dvvc{vaym~vi, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-03-31 12:25:35.110147 + : pb-IF4wV24HBw== ip: a~o~va~~aeaah, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-31 12:26:46.358512 + : pb-IF4oVVQbDg== ip: azo~|`~{`~yn, Device id: 4b0b97bef0f97ca3043f24eb65aa3b6de64ecd2c -2023-03-31 12:38:32.884857 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-31 12:38:46.935705 + : pb-IF4yU1oxUg== ip: dvvc{vaym~vi, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-03-31 12:38:51.949289 + : pb-IF40UncaLg== ip: dvvc}vavj~|k, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-31 12:39:02.981206 + : pb-IF4SU1olUw== ip: an~}ifai`vao, Device id: 5977afcc24357878b5a67ce1663f62b02384c734 -2023-03-31 12:40:51.358123 + : pb-IF4VU3laVA== ip: ak~~`dajcwvi~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-31 12:41:10.415158 + : pb-IF4WU0wvVA== ip: dvvc}vbzm~}hd, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-31 12:41:59.629656 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-03-31 12:42:06.661775 + : pb-IF4VU3laVA== ip: ak~~`dajcwvi~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-31 12:42:09.668345 + : pb-IF4oVVQbDg== ip: azo~|`~{`~yn, Device id: 4b0b97bef0f97ca3043f24eb65aa3b6de64ecd2c -2023-03-31 12:48:42.348832 + : pb-IF4PVVkeEg== ip: azo~|m~}j~~o`, Device id: 559008564f2b2f54829c1fe22966073b86dbfd69 -2023-03-31 12:50:15.780507 + : pb-IF4VU3laVA== ip: ak~~`dajcwvi~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-31 12:50:22.818898 + : pb-IF4yU1oxUg== ip: dvvc{vaym~vi, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-03-31 12:53:42.485813 + : pb-IF4vVRUFVA== ip: an~}hbaiewviy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-31 12:55:50.907584 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-03-31 12:56:02.949369 + : pb-IF4QUhYvVA== ip: azo~{n~~kiali, Device id: 65684cdc37e97284687c364b27a72d41e2a2fa77 -2023-03-31 12:59:45.509484 + : pb-IF4VU3laVA== started kick vote for pb-IF5cUxQ7Uw==. -2023-03-31 13:00:15.512753 + : Kick vote End -2023-03-31 13:00:29.961473 + : pb-IF4IV3Q5CA== ip: ak~xi~xo~}if, Device id: 48f217bbea2b98dd33867c510af5c93b154b1e2e -2023-03-31 13:03:16.279366 + : pb-IF4VU3laVA== started kick vote for pb-IF4hU3kSPA==. -2023-03-31 13:03:46.286130 + : Kick vote End -2023-03-31 13:08:24.745387 + : pb-IF4BU1gtAA== ip: azo~|k~zl~~oc, Device id: 1f2a67f3540a90953f0d00eae021c1d40dc8c27c -2023-03-31 13:10:18.100323 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`|vavi, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-31 13:12:03.962075 + : pb-IF48UBhYLw==|| kicked > new account -2023-03-31 13:13:02.632352 + : pb-IF5UUxgjIA== ip: azj~z`~xi~~oh, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-31 13:13:02.633844 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-31 13:19:14.026310 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-31 13:19:31.102915 + : pb-IF41U2scIg== ip: ak~}hhaniaii~, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-31 13:20:02.198785 + : pb-IF41U2scIg== ip: ak~}hhaniaii~, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-31 13:22:13.746812 + : pb-IF4xU0xYPQ== ip: azj~z`~}haaih|, Device id: c4454058514b7fa3b0c0a85161d50e47fe128194 -2023-03-31 13:27:10.063099 + : pb-IF4vVRUFVA== ip: an~}hbaiewviy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-31 13:27:29.130165 + : pb-IF5TUm4DNg== ip: azo~{m~~lhaiby, Device id: c9806c8ee7f04e5bf4128be81c5cd841d01101c7 -2023-03-31 13:29:27.690633 + : pb-IF5QV2kTAw== ip: a}j~~oba`gaii~, Device id: 0f930d330d32d6798357bc9cc2d102b30d48e95d -2023-03-31 13:31:42.183459 + : pb-IF48UBhYLw== | kicked > reason:Banned account -2023-03-31 13:41:10.668974 + : pb-IF4xU0xYPQ== | kicked for chat spam -2023-03-31 13:41:20.561697 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-31 13:41:26.580037 + : pb-IF4cUBZaHQ== ip: a~h~}jgamaali, Device id: 2390dbc9a91e8ba9009a11ff1f0e83c7d5b0eabe -2023-03-31 13:42:03.690044 + : pb-IF49VBQ4KQ== ip: dvvd|vb~a~{`, Device id: 54c2766ce3e8d0d77c7ba6898997d980df907294 -2023-03-31 13:43:59.104067 + : pb-JiNJARFZUUpEWF5JFkdTXVdEEEVdQ1ZA ip: a~m~vn~}iianb, Device id: 05b0802de607045fa8518861defbab03e56a739f -2023-03-31 13:48:12.024562 + : pb-IF40VRIbJg== ip: an~~afa`faje~, Device id: 10bb61f2761dcc779f19f3263fa3407a620db0fe -2023-03-31 13:48:22.055470 + : pb-IF41U2scIg== ip: a~h~}jgaiaan, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-31 13:49:27.313247 + : pb-IF40VRIbJg== ip: an~~afa`faje~, Device id: 10bb61f2761dcc779f19f3263fa3407a620db0fe -2023-03-31 13:50:00.440788 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-31 13:51:53.844280 + : pb-JiNJARFZUUpEWF5JFkdTXVdEEEVdQ1ZA ip: a~m~vn~}iianb, Device id: 05b0802de607045fa8518861defbab03e56a739f -2023-03-31 13:53:23.198745 + : pb-IF5SUno-Ug== ip: dxvbvvaxj~}h, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-03-31 13:55:06.801311 + : pb-IF4XVxEpEw== ip: ak~~nfajd{vb|, Device id: ec75baa19d1f65e1387c046a35b42bcca0c1f8b8 -2023-03-31 13:56:18.912065 + : pb-IF4qU2ouUw== started kick vote for pb-JiNJARFZUUpEWF5JFkdTXVdEEEVdQ1ZA. -2023-03-31 13:56:48.911896 + : Kick vote End -2023-03-31 13:57:29.297461 + : pb-IF4WU0wvVA== ip: dvvc}vbzm~}hd, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-31 13:58:12.449926 + : pb-JiNJARBeUUNEVFZCEEVZVVNCFUldTldF ip: azo~|k~}l`aicw, Device id: c3af3a9d7bc10aa271e3cb1724761a2806c051b7 -2023-03-31 14:00:05.495543 + : pb-IF5SUno-Ug== | kicked for chat spam -2023-03-31 14:01:56.681149 + : pb-IF4rUBcSHQ==|| kicked > new account -2023-03-31 14:04:07.854015 + : pb-IF5SVFdSFQ== ip: ak~vl~~kialh, Device id: 0302d1a2182602532d53942c0fbd299743749911 -2023-03-31 14:04:21.321938 + : pb-JiNJARBSXUFIWl1CGUdZU1VEGEZcRFVL started kick vote for pb-IF5SVFdSFQ==. -2023-03-31 14:04:51.326995 + : Kick vote End -2023-03-31 14:05:59.678117 + : pb-IF4sUBYAPw==|| kicked > new account -2023-03-31 14:06:08.410603 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-31 14:08:10.855555 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`|vavi, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-31 14:10:56.701281 + : pb-IF41U2scIg== ip: ak~}hhaniaii~, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-31 14:11:10.754344 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-31 14:11:33.462905 + : pb-JiNJARBSXUFIWl1CGUdZU1VEGEZcRFVL started kick vote for pb-IF4wV24HBw==. -2023-03-31 14:11:42.880887 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-03-31 14:12:03.464253 + : Kick vote End -2023-03-31 14:12:12.992983 + : pb-IF5SVFdSFQ== ip: ak~vl~~kialh, Device id: 0302d1a2182602532d53942c0fbd299743749911 -2023-03-31 14:14:10.486789 + : pb-LV4FBEJZARZDVAtARUYDAl0WFw== started kick vote for pb-IF4rVWsuUA==. -2023-03-31 14:14:26.475502 + : pb-IF4WUBYFJg== ip: azj~z`~}iaaid{, Device id: 1b15b7fb9d8ca5070df38f90e4cb49f1e1d2fdfe -2023-03-31 14:14:40.489346 + : Kick vote End -2023-03-31 14:16:10.832882 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-03-31 14:18:03.244244 + : pb-IF4UU2IIFg== ip: azo~{n~x`~ym, Device id: 6d5869f67f5cacd17c9048234245824a6d322243 -2023-03-31 14:19:39.825927 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-31 14:19:46.849698 + : pb-IF41U2scIg== ip: ak~}hhaniaii~, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-31 14:20:12.955095 + : pb-IF4vV0g8Mw== ip: azo~|j~vm~~ld, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-03-31 14:20:31.005260 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-31 14:30:23.084977 + : pb-IF5VU1JZMw== ip: an~}ica`baid, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-03-31 14:30:58.235389 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-03-31 14:31:08.016431 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4UU2IIFg==. -2023-03-31 14:31:38.017981 + : Kick vote End -2023-03-31 14:35:43.296339 + : pb-IF5TAHQO ip: dvvcxvb{vb}l, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-31 14:35:44.296743 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`|vavi, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-31 14:35:48.309566 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-03-31 14:35:53.316415 + : pb-IF4vV0g8Mw== ip: azo~|j~vm~~ld, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-03-31 14:35:54.318565 + : pb-IF5VU1JZMw== ip: an~}ica`baid, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-03-31 14:36:42.480361 + : pb-IF41U2scIg== ip: ak~za~xl~va, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-31 14:38:10.782064 + : pb-IF5SUno-Ug== ip: dxvbvvaxj~~ja, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-03-31 14:39:39.835353 + : pb-IF4vV0g8Mw== started kick vote for pb-IF5VU1JZMw==. -2023-03-31 14:40:09.837285 + : Kick vote End -2023-03-31 14:41:24.605807 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4vV0g8Mw==. -2023-03-31 14:41:36.598069 + : pb-IF5SUno-Ug== ip: dxvbvvaxj~~ja, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-03-31 14:41:54.610743 + : Kick vote End -2023-03-31 14:45:05.424942 + : pb-IF5VU1JZMw== ip: an~}ica`baid, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-03-31 14:45:09.436255 + : pb-IF49U0QJDw== ip: bxvf|va~h~}kb, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 14:45:40.785588 + : pb-IF4AV1QqEQ== started kick vote for pb-JiNJARFTVEREXV1CEkVQV1VKE0dfR1JD. -2023-03-31 14:46:10.790955 + : Kick vote End -2023-03-31 14:46:30.708313 + : pb-IF4yU3EYVQ== ip: a~a~vl~va~~aa, Device id: 4f6e7108f56a96fa41b721a4e9abd43a5049c44e -2023-03-31 14:47:20.879983 + : pb-IF4vVRUFVA== ip: an~}hbaiewviy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-31 14:49:31.366757 + : pb-IF4vVRUFVA== ip: an~}hbaiewviy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-31 14:53:17.155916 + : pb-IF4WU0wvVA== ip: dvvc}vbzm~}hd, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-31 14:55:01.521751 + : pb-IF4cUmE9Uw== ip: an~}hfajbve~, Device id: cb5e020aea79494c9d897c17edb72cc7d6f8a740 -2023-03-31 14:55:21.597411 + : pb-IF4IUlkMNg== ip: azj~z`~|o~xh, Device id: 81ae38faed5396bebddedae181158caecf1e4385 -2023-03-31 14:55:36.647506 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~}ka, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-03-31 14:56:08.760956 + : pb-IF4OPhMg ip: an~}icajdzvgx, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-03-31 14:56:18.802590 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-31 14:57:07.955191 + : pb-IF5XU0YhKg== ip: azo~zh~|o~}jh, Device id: 75ff7432c56d2b0a6ebcdf61a1cdd1675410cbdb -2023-03-31 14:58:48.289657 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-31 14:59:02.324663 + : pb-IF4NUxFfEg== ip: an~}hgajdvvh, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-03-31 14:59:41.892469 + : pb-IF4WU0wvVA== started kick vote for pb-IF5cUkwjDA==. -2023-03-31 15:00:11.893389 + : Kick vote End -2023-03-31 15:01:46.503591 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4cUmE9Uw==. -2023-03-31 15:02:02.030094 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-31 15:02:16.510864 + : Kick vote End -2023-03-31 15:05:42.849776 + : pb-IF40UmUMEg== ip: an~}idao~~ag, Device id: 7871fcf2cb1081a5de7b5b7b3bfc84148565e630 -2023-03-31 15:07:04.144250 + : pb-IF5dUBYAEw== ip: an~}ifaig~vb|j, Device id: 1ce1781cac432ad157c5d56ded5051e42cd3ebb6 -2023-03-31 15:07:35.264200 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-31 15:07:52.174374 + : pb-IF40UmUMEg== started kick vote for pb-IF4AV1QqEQ==. -2023-03-31 15:08:22.182611 + : Kick vote End -2023-03-31 15:09:23.625815 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-31 15:09:25.644863 + : pb-IF5XU0YhKg== started kick vote for pb-IF40UmUMEg==. -2023-03-31 15:09:55.648814 + : Kick vote End -2023-03-31 15:11:00.623170 + : pb-IF4AV1QqEQ== started kick vote for pb-IF40UmUMEg==. -2023-03-31 15:11:13.022247 + : pb-IF49U0QJDw== ip: an~}heaiiyvgy, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 15:11:30.624341 + : Kick vote End -2023-03-31 15:12:23.305803 + : pb-IF4-Um4_Lw== ip: azj~zo~}heaje, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-03-31 15:12:57.895516 + : pb-IF40UncaLg== started kick vote for pb-IF40UmUMEg==. -2023-03-31 15:13:27.896433 + : Kick vote End -2023-03-31 15:15:23.944129 + : pb-IF4IV3Q5CA== ip: ak~xi~xo~}if, Device id: 48f217bbea2b98dd33867c510af5c93b154b1e2e -2023-03-31 15:16:15.142923 + : pb-IF4AV1QqEQ== started kick vote for pb-IF40UmUMEg==. -2023-03-31 15:16:42.440633 + : pb-IF40UmUMEg== kicked by kickvotes. -2023-03-31 15:17:31.300174 + : pb-IF4-Um4_Lw== started kick vote for pb-IF40UncaLg==. -2023-03-31 15:18:01.305185 + : Kick vote End -2023-03-31 15:19:44.914332 + : pb-IF4LU1guKQ== ip: an~}hcalbaidv, Device id: 5354fbeb00d4c730b4ea6696fbe8b458c605766c -2023-03-31 15:21:33.264457 + : pb-IF4SXhUa ip: azj~z`~xh~}lc, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-03-31 15:22:32.249311 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5dUBYAEw==. -2023-03-31 15:23:02.251524 + : Kick vote End -2023-03-31 15:26:26.821575 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5dUBYAEw==. -2023-03-31 15:26:56.722675 + : Kick vote End -2023-03-31 15:27:15.421916 + : pb-IF4LU1guKQ== ip: an~}hcalbaidv, Device id: 5354fbeb00d4c730b4ea6696fbe8b458c605766c -2023-03-31 15:28:14.664976 + : pb-IF4eUncdPQ== ip: a|n~~mhalhaig}, Device id: 3de68ce71d14343f0b45135cb88ca63b1e1eb7a4 -2023-03-31 15:29:41.974457 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-31 15:30:02.410298 + : pb-IF4AV1QqEQ== started kick vote for pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC. -2023-03-31 15:30:32.416988 + : Kick vote End -2023-03-31 15:32:16.533176 + : pb-IF4LU1guKQ== ip: an~}hcalbaidv, Device id: 5354fbeb00d4c730b4ea6696fbe8b458c605766c -2023-03-31 15:32:20.269548 + : pb-IF4-Um4_Lw== started kick vote for pb-IF4AV1QqEQ==. -2023-03-31 15:32:50.275368 + : Kick vote End -2023-03-31 15:33:08.724891 + : pb-IF4LU1guKQ== ip: an~}hcalbaidv, Device id: 5354fbeb00d4c730b4ea6696fbe8b458c605766c -2023-03-31 15:34:23.019158 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`|vavi, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-31 15:35:49.631585 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4-Um4_Lw==. -2023-03-31 15:36:19.635277 + : Kick vote End -2023-03-31 15:37:03.594778 + : pb-IF5TAHQO ip: dvvcxvb{vb}l, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-31 15:37:42.729116 + : pb-IF49U0QJDw== ip: an~}heaiiyvgy, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 15:38:39.917945 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-03-31 15:39:23.801672 + : pb-IF4AV1QqEQ== started kick vote for pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC. -2023-03-31 15:39:53.284845 + : Kick vote End -2023-03-31 15:40:05.129590 + : pb-IF4-Um4_Lw== started kick vote for pb-IF5cUkwjDA==. -2023-03-31 15:40:35.133239 + : Kick vote End -2023-03-31 15:41:00.484643 + : pb-IF49U0QJDw== ip: an~}heaiiyvgy, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 15:43:08.042016 + : pb-IF4FU1daUA== ip: dvvczvaxn~~`f, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-31 15:43:57.891363 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5dU0RfNQ==. -2023-03-31 15:44:27.896337 + : Kick vote End -2023-03-31 15:46:34.814766 + : pb-IF4iVWEEIQ== ip: azo~{a~wn~~nf, Device id: 1702e884dc112c4c6415c8ba90a14ed8deae4bd7 -2023-03-31 15:48:07.169097 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`|vavi, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-31 15:48:50.553512 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4FU1daUA==. -2023-03-31 15:49:20.555932 + : Kick vote End -2023-03-31 15:49:56.133782 + : pb-IF4PUBcKBg==|| kicked > new account -2023-03-31 15:53:22.330934 + : pb-IF4FU1daUA== ip: dvvczvaxn~~`f, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-31 15:56:06.930355 + : pb-IF41U2scIg== ip: a~h~}jgaiaan, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-31 15:59:16.555129 + : pb-IF5WU2EINA== ip: axi~xo~~leaidz, Device id: 6bc9227301873019b41b5ac7389a9fba9f58acd0 -2023-03-31 16:00:34.818354 + : pb-IF40U3MyVQ== ip: b}k~}kcaneao, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-31 16:00:43.174203 + : pb-IF4IUBcuKw==|| kicked > new account -2023-03-31 16:00:54.880111 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-03-31 16:03:25.413270 + : pb-IF49U0QJDw== ip: an~}heaj`xvgy, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 16:05:33.953538 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4SUhcyFQ==. -2023-03-31 16:06:03.965412 + : Kick vote End -2023-03-31 16:07:14.186794 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-31 16:07:49.323831 + : pb-IF4SUhcyFQ== ip: an~~ahakiakb, Device id: 1343e35e5cb000e2253fa4031b7835cf1fb07a7a -2023-03-31 16:09:08.619235 + : pb-IF4FU1daUA== ip: dvvczvaxn~~`f, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-31 16:10:54.012196 + : pb-IF4WU0wvVA== ip: dvvc}vbzm~}hd, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-31 16:12:49.363624 + : pb-IF4VU3laVA== ip: ak~~`dajcwvi~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-31 16:14:01.706143 + : pb-IF5WU2EINA== started kick vote for pb-IF4AV1QqEQ==. -2023-03-31 16:14:27.513428 + : Kick vote End -2023-03-31 16:16:50.330764 + : pb-IF43MlIj ip: a~h~}jdaifvvez, Device id: 438d91005f3e5345e0f4d8bddbcbdb7b888c66d4 -2023-03-31 16:17:11.425200 + : pb-IF4cUBYfCg== ip: azo~zh~|j~}kc, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-31 16:17:37.385539 + : pb-IF40UncaLg== started kick vote for pb-IF5WU2EINA==. -2023-03-31 16:17:58.595310 + : pb-IF4WU0wvVA== ip: dvvc}vbzm~}hd, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-03-31 16:18:07.387970 + : Kick vote End -2023-03-31 16:18:12.649735 + : pb-IF5TU1ddPA== ip: azj~z`~|m~yh, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-03-31 16:18:33.719288 + : pb-IF49U0QJDw== ip: an~}heaj`xvgy, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 16:20:25.221363 + : pb-IF4jU1ggEw== ip: dvvcxvb|j~}lg, Device id: a64c100be999991469f0e1d353cf32082d8b6871 -2023-03-31 16:20:58.325653 + : pb-IF4-JUgB ip: ak~~j`aje}vfv, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-03-31 16:21:42.551065 + : pb-IF4pU1MJIw== ip: azo~{l~}haa`c, Device id: 980fcde0872cfae69d1a58d61a9917876d2a23b3 -2023-03-31 16:22:45.914998 + : pb-IF4pU1MJIw== ip: azo~{l~}haa`c, Device id: 980fcde0872cfae69d1a58d61a9917876d2a23b3 -2023-03-31 16:23:20.032934 + : pb-IF4nUxE4Nw== ip: b}k~~`daj`~vb{i, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-31 16:25:46.535542 + : pb-IF4VU3laVA== ip: ak~~`dajcwvi~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-31 16:28:24.191251 + : pb-IF4vV0g8Mw== ip: azo~|j~vm~~ld, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-03-31 16:30:20.919743 + : pb-IF4hUBYJUQ==|| kicked > new account -2023-03-31 16:32:15.012080 + : pb-IF4VU3laVA== ip: ak~~`dajcwvi~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-31 16:32:48.127039 + : pb-IF5dU3UiAw== ip: a~o~}ifai`~vfv, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-31 16:33:11.490035 + : pb-IF4hUBYJAA==|| kicked > new account -2023-03-31 16:34:13.402466 + : pb-IF5dU3UiAw== ip: azo~{a~~ohaic, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-31 16:35:18.865845 + : pb-IF4yU0hYEw== started kick vote for pb-IF5WU2EINA==. -2023-03-31 16:35:48.873218 + : Kick vote End -2023-03-31 16:36:13.810687 + : pb-IF4SUhcyFQ== ip: an~~ahakiakb, Device id: 1343e35e5cb000e2253fa4031b7835cf1fb07a7a -2023-03-31 16:37:55.204031 + : pb-IF40U1IbNw== ip: an~}h`ajfaki, Device id: 27e9074bf3206590334cbf16fa2b2625a11e8703 -2023-03-31 16:38:02.344093 + : pb-IF5WU0gIUQ== ip: azj~z`~}jdaic~, Device id: 7596ac03e3d2f58656b37560f47b1f7c5651c240 -2023-03-31 16:39:27.318087 + : pb-IF40U1IbNw== started kick vote for pb-IF5WU0gIUQ==. -2023-03-31 16:39:32.604758 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-03-31 16:39:55.697570 + : pb-IF4vUBM7Ng== ip: d|vb|i~}a~~k`, Device id: dd394f385f8aee7c409d27f62ded569934e984f8 -2023-03-31 16:39:57.317151 + : Kick vote End -2023-03-31 16:40:45.901993 + : pb-IF4jU1ggEw== ip: dvvcxvb|j~}lg, Device id: a64c100be999991469f0e1d353cf32082d8b6871 -2023-03-31 16:41:37.096454 + : pb-IF5dU3UiAw== ip: a~o~}ifai`~vfv, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-31 16:41:44.228839 + : pb-IF4vUBM7Ng== started kick vote for pb-IF5TU1ddPA==. -2023-03-31 16:42:14.234849 + : Kick vote End -2023-03-31 16:44:35.491085 + : pb-IF4NUBRdIA== started kick vote for pb-IF5WU0gIUQ==. -2023-03-31 16:45:05.494692 + : Kick vote End -2023-03-31 16:45:35.144927 + : pb-IF4jF1NY ip: aakhaidvd, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-31 16:47:38.563308 + : pb-IF4jU1ggEw== ip: dvvcxvb|j~}lg, Device id: 06984a49d12081c2493bb2c3f2e3ff6a10957cb1 -2023-03-31 16:47:54.639029 + : pb-IF4wV3AmPQ== ip: dvvcxvayj~~hb, Device id: 780ce7f2bbfc113065e30ea1b812050a66a4272b -2023-03-31 16:48:19.747081 + : pb-IF4vUBM7Ng== ip: d|vb|i~}a~~k`, Device id: dd394f385f8aee7c409d27f62ded569934e984f8 -2023-03-31 16:50:55.532730 + : pb-IF4vUBM7Ng== started kick vote for pb-IF5dU3UiAw==. -2023-03-31 16:51:25.533371 + : Kick vote End -2023-03-31 16:53:52.378862 + : pb-IF5dU3UiAw== started kick vote for pb-IF4vUBM7Ng==. -2023-03-31 16:53:56.115223 + : pb-JiNJARBSXUFIWl1CGUdZU1VEGEZcRFVL ip: azj~zo~~h`aje{, Device id: bbe038db81f75dfbd848b16d315843b34cf7b375 -2023-03-31 16:54:22.387435 + : Kick vote End -2023-03-31 16:55:38.512659 + : pb-IF49U0QJDw== ip: an~}heaj`vgy, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 16:56:07.607982 + : pb-IF5dU3UiAw== ip: a~o~}ifai`~vfv, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-03-31 16:57:43.986847 + : pb-IF5TAHQO ip: dvvcxvb{vb}l, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-31 16:57:44.994633 + : pb-IF4TV3RbDA== ip: azo~{m~~j`am`, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-31 17:00:07.561606 + : pb-IF4vVRUFVA== ip: an~}hbaiewviy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-31 17:01:42.566988 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5dU3UiAw==. -2023-03-31 17:02:12.570193 + : Kick vote End -2023-03-31 17:05:36.705882 + : pb-IF5VU3lYDA== ip: azj~z`~~`aaje}, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-03-31 17:05:49.106048 + : pb-IF5TAHQO started kick vote for pb-IF5VU3lYDA==. -2023-03-31 17:05:52.753214 + : pb-IF4yVXVYIw== ip: bxvc{vevaxm, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-03-31 17:05:55.762697 + : pb-IF4PVVkeEg== ip: b}k~}keajdvawa, Device id: 559008564f2b2f54829c1fe22966073b86dbfd69 -2023-03-31 17:06:10.090218 + : Kick vote End -2023-03-31 17:06:19.853783 + : pb-IF4JU3AzPQ== ip: a|o~vo~wo~{n, Device id: cb0ca4fabb0dfde4fe4dbfffc31becb2e28dff0a -2023-03-31 17:06:33.899403 + : pb-IF4iUlUpAA== ip: an~~adangajb|, Device id: 845fc3eb8a5e8166351a47ed1d7c7f3a0d8ea7c4 -2023-03-31 17:07:46.139175 + : pb-IF4oUxAGPQ== ip: azj~zo~}heaoe, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-03-31 17:10:05.595140 + : pb-JiNJARFZUUpEWF5JFkdTXVdEEEVdQ1ZA ip: a~m~vn~}iianb, Device id: 05b0802de607045fa8518861defbab03e56a739f -2023-03-31 17:10:16.699378 + : pb-IF4DU1I4CQ== ip: azj~z`~}ibaifv, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-03-31 17:10:27.736963 + : pb-IF4wV24HBw== ip: a~o~va~~abaibz, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-31 17:11:10.877548 + : pb-IF4vVRUFVA== ip: an~}hbaiewviy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-31 17:13:26.377772 + : pb-IF5QV2kTAw== ip: a}j~~oba`gaii~, Device id: 0f930d330d32d6798357bc9cc2d102b30d48e95d -2023-03-31 17:14:09.566868 + : pb-IF5cU0kkKA== ip: an~~aeaj~}me, Device id: 21134c91a35ed88f5893ed72fdae3ef94c11d099 -2023-03-31 17:14:21.610691 + : pb-IF4VU3laVA== ip: ak~~`dajcwvi~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-31 17:14:38.675937 + : pb-IF5cU0kkKA== ip: an~~aeaj~}me, Device id: 21134c91a35ed88f5893ed72fdae3ef94c11d099 -2023-03-31 17:17:24.282195 + : pb-IF4wU1MKMg== ip: azo~{l~}ieaia|, Device id: 2ebd211d6a9de531bc3ee46f3697865ae64e7140 -2023-03-31 17:25:44.092415 + : pb-IF5TUhIyJg== ip: f~vb{m~~o`ajdz, Device id: 0b6cc5cecd4afe35c3ac3b08fafc9f434b3fd43d -2023-03-31 17:25:50.107093 + : pb-IF4WUBYFJg== ip: azj~z`~}hhaja|, Device id: 1b15b7fb9d8ca5070df38f90e4cb49f1e1d2fdfe -2023-03-31 17:26:30.014991 + : pb-IF4VU3laVA== started kick vote for pb-IF5TUhIyJg==. -2023-03-31 17:27:00.018864 + : Kick vote End -2023-03-31 17:28:30.662642 + : pb-IF49U0QJDw== ip: an~}heaj`~vgy, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 17:28:39.707146 + : pb-IF4cVVIcNQ== ip: bk~~abajd~vg|, Device id: 94ad8e052bd398bce560ff734ad6a50a38d76a4a -2023-03-31 17:30:20.066091 + : pb-JiNJARBbXUVGX1pJEENTXFZEFEBeQlNE ip: dvvd|vc|va~k, Device id: 8f1dbe53b88f4ba25d71ae6bc08117056a5a77a6 -2023-03-31 17:30:48.174702 + : pb-IF41U2scIg== ip: a~h~}jgaiaan, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-31 17:30:58.598640 + : pb-IF4VU3laVA== started kick vote for pb-IF4cVVIcNQ==. -2023-03-31 17:31:20.907996 + : Kick vote End -2023-03-31 17:31:53.414342 + : pb-IF5cU0kkKA== ip: an~~aeaj~}me, Device id: 21134c91a35ed88f5893ed72fdae3ef94c11d099 -2023-03-31 17:32:11.492152 + : pb-IF5cU0kkKA== ip: an~~aeaj~}me, Device id: 21134c91a35ed88f5893ed72fdae3ef94c11d099 -2023-03-31 17:34:48.068630 + : pb-IF41U2scIg== ip: a~h~}jgaiaan, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-31 17:37:00.528328 + : pb-IF4wV24HBw== ip: a~o~va~~abaibz, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-31 17:38:27.906596 + : pb-IF5VU3lYDA== ip: azj~z`~~`aaje}, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-03-31 17:39:17.092915 + : pb-IF4LU1guKQ== ip: an~}hcaleam, Device id: 5354fbeb00d4c730b4ea6696fbe8b458c605766c -2023-03-31 17:40:28.449340 + : pb-IF4lU3cFFw== | kicked > reason:Banned account -2023-03-31 17:41:30.678106 + : pb-IF4cUBYfCg== ip: azo~zh~{n~}jb, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-31 17:46:39.128445 + : pb-IF4JU2ozPQ== ip: azo~{n~}igama, Device id: dd405691e081300904dd60069adb0e51fd6f15ee -2023-03-31 17:47:48.401343 + : pb-IF4LU1guKQ== ip: an~}hcaleam, Device id: 5354fbeb00d4c730b4ea6696fbe8b458c605766c -2023-03-31 17:51:43.872274 + : pb-IF4-UBcNJA==|| kicked > new account -2023-03-31 17:53:09.850227 + : pb-IF49UnYRLQ== | kicked > reason:Banned account -2023-03-31 17:57:42.861120 + : pb-IF40U006LA== ip: f~vb{m~~o`aic}, Device id: 8152065735a1adcc2e41d2fac46308736bb5eb90 -2023-03-31 17:58:45.082759 + : pb-IF5VU1JZMw== ip: an~}ica`baid, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-03-31 18:01:03.556182 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvazi, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-31 18:02:58.192621 + : pb-IF40U3MyVQ== ip: b}k~}kcaneao, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-03-31 18:03:41.332468 + : pb-JiNJARFdXUdGW1pEE0JZV1JCEUVdQVdA ip: ak~~o~~i`alg, Device id: d3c1b69f4abe0a30b187a9f76dd0bf2ec4316172 -2023-03-31 18:03:44.342217 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-03-31 18:04:27.483462 + : pb-IF5TUm4DNg== ip: azo~{m~~lfaifv, Device id: c9806c8ee7f04e5bf4128be81c5cd841d01101c7 -2023-03-31 18:04:38.520850 + : pb-IF5TUm4DNg== ip: azo~{m~~lfaifv, Device id: c9806c8ee7f04e5bf4128be81c5cd841d01101c7 -2023-03-31 18:05:11.478281 + : pb-IF4DU0IEJg== started kick vote for pb-IF5TUm4DNg==. -2023-03-31 18:05:41.483186 + : Kick vote End -2023-03-31 18:06:47.101081 + : pb-IF4GU0FeFQ== ip: bxvf~vbzk~~kg, Device id: 88037ec404c87538bbe04e5b633696e4e7202170 -2023-03-31 18:08:06.387392 + : pb-IF4yU1oxUg== ip: dvvc{vawo~}if, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-03-31 18:08:08.395237 + : pb-IF4SU1olUw== ip: an~}ifai`vao, Device id: 5977afcc24357878b5a67ce1663f62b02384c734 -2023-03-31 18:09:09.610143 + : pb-IF41U0sYPA== ip: a~o~va~}l`akg, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-03-31 18:09:11.696912 + : pb-IF4DU0IEJg== started kick vote for pb-IF5TUm4DNg==. -2023-03-31 18:09:41.699330 + : Kick vote End -2023-03-31 18:09:51.963130 + : pb-IF5cPGsk ip: azj~zo~}iiaif}, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-31 18:10:13.042792 + : pb-IF41U2scIg== ip: ak~za~xl~va, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-31 18:10:34.128184 + : pb-IF5cPGsk ip: azj~zo~}iiaif}, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-03-31 18:12:21.495132 + : pb-IF5TUm4DNg== ip: azo~{m~~lfaifv, Device id: c9806c8ee7f04e5bf4128be81c5cd841d01101c7 -2023-03-31 18:12:42.202244 + : pb-IF4DU0IEJg== started kick vote for pb-IF5TUm4DNg==. -2023-03-31 18:12:49.602835 + : pb-IF41U2scIg== ip: ak~za~xl~va, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-31 18:13:12.209785 + : Kick vote End -2023-03-31 18:13:52.846306 + : pb-IF4GU1MnUA== ip: a|j~~mdanaaih, Device id: bbd76a203d670339b31286c5c8bbb5a4739730bf -2023-03-31 18:15:52.262229 + : pb-IF4eU004Ew== ip: azo~zi~|k~~if, Device id: 245153419ceac4a55cf9e92038ffdf3864e8a262 -2023-03-31 18:15:59.291110 + : pb-IF4eU004Ew== ip: azo~zi~|k~~if, Device id: 245153419ceac4a55cf9e92038ffdf3864e8a262 -2023-03-31 18:16:08.451218 + : pb-IF5TUm4DNg== ip: azo~{m~~lfaifv, Device id: c9806c8ee7f04e5bf4128be81c5cd841d01101c7 -2023-03-31 18:16:58.622003 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`~vaw`, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-03-31 18:17:51.814339 + : pb-IF5VU1JZMw== ip: an~}ica`baid, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-03-31 18:18:59.358460 + : pb-IF4xUBcjEw==|| kicked > new account -2023-03-31 18:23:38.977663 + : pb-IF41U2scIg== ip: ak~}hhaniajd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-31 18:25:37.667659 + : pb-IF4wV24HBw== ip: a~o~va~~abaibz, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-31 18:25:56.746327 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-31 18:33:27.222186 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-31 18:35:06.552736 + : pb-IF49U0QJDw== ip: an~}heaii{vgy, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 18:38:57.356681 + : pb-IF40VRIbJg== ip: an~~afa`faje~, Device id: 10bb61f2761dcc779f19f3263fa3407a620db0fe -2023-03-31 18:40:08.242457 + : pb-IF5UUxgjIA== started kick vote for pb-IF4iUmsSDw==. -2023-03-31 18:40:38.244945 + : Kick vote End -2023-03-31 18:42:35.195690 + : pb-IF40VRIbJg== started kick vote for pb-IF4wV24HBw==. -2023-03-31 18:43:05.196670 + : Kick vote End -2023-03-31 18:43:39.318363 + : pb-IF49U0QJDw== ip: an~}heaii{vgy, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 18:45:52.875374 + : pb-IF5cPGsk started kick vote for pb-IF4wV24HBw==. -2023-03-31 18:46:22.893676 + : Kick vote End -2023-03-31 18:46:55.006096 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-03-31 18:47:23.110149 + : pb-IF5UVBMZEw== ip: bj~zi~ya~~id, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-03-31 18:51:21.947677 + : pb-IF4-UxI7Mg== ip: ak~}l`aifvva{h, Device id: c9b75a67d7d77078ad188d740656d5436ebb454c -2023-03-31 18:53:23.373451 + : pb-IF4IVEseUQ== ip: azo~zi~~ahana, Device id: 679c582b91689540ad3c22935c58a5e32bb318a9 -2023-03-31 18:55:56.923537 + : pb-IF4wVVk8Jg== ip: bj~~o`aj`xva{`, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-03-31 18:56:22.027168 + : pb-IF4JUBIAEw== ip: ak~}kcaaeaib{, Device id: d0195cba3dff1ca50105700cdded45ae62ffbbaa -2023-03-31 18:58:12.497125 + : pb-IF43UlceUA== ip: ak~~hiamfaki, Device id: b62d570fb6930d0b140e029ab1afa81a44b55c1c -2023-03-31 19:02:24.605854 + : pb-IF49U0QJDw== ip: bxvf|vaa~~kf, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 19:04:10.989539 + : pb-IF4NUxFfEg== ip: bxvf}vb}m~wl, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-03-31 19:04:40.075555 + : pb-IF49U0QJDw== ip: bxvf|vaa~~kf, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 19:04:41.319527 + : pb-IF43UBU9IQ== started kick vote for pb-IF4JUBIAEw==. -2023-03-31 19:04:56.144853 + : pb-IF4wV24HBw== ip: a~o~va~~abaibz, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-31 19:05:11.319530 + : Kick vote End -2023-03-31 19:05:43.314469 + : pb-IF4GU0FeFQ== ip: d|vb}l~wva|m, Device id: 88037ec404c87538bbe04e5b633696e4e7202170 -2023-03-31 19:06:40.823629 + : pb-IF4iVWlTBg== ip: bxvfvbzl~~`f, Device id: b5ebec4d6c2df1e92e13796dcc05d669553bd3b8 -2023-03-31 19:08:10.116174 + : pb-IF4cUBYfCg== ip: azo~zh~{n~{, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-31 19:09:15.333210 + : pb-IF49U0QJDw== ip: bxvf|vaa~~kf, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 19:09:52.487184 + : pb-IF4QUhYvVA== ip: azo~{n~~ldaia|, Device id: 65684cdc37e97284687c364b27a72d41e2a2fa77 -2023-03-31 19:13:03.085339 + : pb-IF4NUxFfEg== started kick vote for pb-IF4QUhYvVA==. -2023-03-31 19:13:23.337184 + : pb-IF4zU2pdLA== ip: azo~|j~}jcaiay, Device id: 2b64e09e48a5a20a202d332495356973aad28394 -2023-03-31 19:13:33.091144 + : Kick vote End -2023-03-31 19:16:12.106803 + : pb-IF4jF1NY ip: azj~z`~zj~~af, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-31 19:16:41.201301 + : pb-IF4cUBYfCg== ip: azo~zh~{n~{, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-31 19:16:51.227418 + : pb-IF4QUhYvVA== ip: azo~{n~~ldaia|, Device id: 65684cdc37e97284687c364b27a72d41e2a2fa77 -2023-03-31 19:18:26.195140 + : pb-IF4iVWlTBg== started kick vote for pb-IF4JUBIAEw==. -2023-03-31 19:18:56.200010 + : Kick vote End -2023-03-31 19:19:08.747311 + : pb-IF4jF1NY ip: aakhaicyvawn, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-31 19:21:02.232830 + : pb-IF4jF1NY ip: azj~z`~}a~}hh, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-31 19:26:34.391871 + : pb-IF41U2scIg== ip: ak~}hhaniajd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-31 19:26:47.442978 + : pb-IF4cUBYfCg== ip: azo~zh~{n~{, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-31 19:27:22.591219 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvazi, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-31 19:28:23.991517 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvazi, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-31 19:29:33.224077 + : pb-IF4PUBAaHw== ip: dvvbn~yi~~oc, Device id: b00a6048e0f094707b2cfe44d986cc5106fbae1f -2023-03-31 19:30:33.430805 + : pb-IF4JU04DCQ== ip: ak~~lhaicvvayh, Device id: 64fe8f45d0cba627aa2b414afdd31b9ca037c8a1 -2023-03-31 19:32:45.686667 + : pb-IF4DU0IEJg== started kick vote for pb-IF5QU2gNXA==. -2023-03-31 19:33:04.923930 + : pb-IF41U2scIg== ip: a~h~}jgaiaan, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-31 19:33:15.689687 + : Kick vote End -2023-03-31 19:33:38.041027 + : pb-IF4rUBUdFg== ip: dvvcxvayj~~hb, Device id: 8c67f0fa057b6f5a3fcaed52cf58617c2b305f12 -2023-03-31 19:34:21.209962 + : pb-IF4oVVQbDg== ip: azo~|`~|o~~n`, Device id: 4b0b97bef0f97ca3043f24eb65aa3b6de64ecd2c -2023-03-31 19:35:38.696214 + : pb-IF4pU1oxPQ== ip: ak~~`baifxvav, Device id: 88d925228d198044142dfd3bafd3fd2290b7c479 -2023-03-31 19:37:29.049282 + : pb-IF49U0QJDw== ip: an~}heaiizvgy, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-03-31 19:38:42.165412 + : pb-IF4DU0IEJg== started kick vote for pb-IF4JU04DCQ==. -2023-03-31 19:39:02.391266 + : pb-IF4VU3laVA== ip: ak~~`dajcwvi~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-31 19:39:12.165556 + : Kick vote End -2023-03-31 19:40:43.742134 + : pb-IF4nUxE4Nw== ip: b}k~~`daj`~vb{i, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-31 19:41:32.924057 + : pb-IF4wVVk8Jg== ip: bj~~o`aj`xva{`, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-03-31 19:42:17.101681 + : pb-IF4gU01aNQ== ip: awk~wo~~liaja|, Device id: f56de8d903692523cf8f2b1acaba52eed0ca310c -2023-03-31 19:42:27.138227 + : pb-IF5WUBEqHw== ip: a~o~vo~xm~~k`, Device id: c3f216648bb3f8c6c9bc4164d352a554aa85f67e -2023-03-31 19:42:36.162867 + : pb-IF4DU0IEJg== started kick vote for pb-IF4gU01aNQ==. -2023-03-31 19:43:06.165392 + : Kick vote End -2023-03-31 19:43:32.372007 + : pb-IF4pU1oxPQ== ip: ak~~`baifxvav, Device id: 88d925228d198044142dfd3bafd3fd2290b7c479 -2023-03-31 19:43:46.420169 + : pb-IF4TV3RbDA== ip: azo~{m~~hcaia}, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-31 19:44:07.503613 + : pb-IF4pU1oxPQ== ip: ak~~`baifxvav, Device id: 88d925228d198044142dfd3bafd3fd2290b7c479 -2023-03-31 19:44:13.524963 + : pb-IF4TV3RbDA== ip: azo~{m~~hcaia}, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-31 19:46:55.373694 + : pb-IF4nVG4JAw== ip: dvvc{va{i~~ah, Device id: bfd50e328d99de934879c7f3dc345688480b328a -2023-03-31 19:48:05.803490 + : pb-IF4DU0IEJg== started kick vote for pb-IF5WUBEqHw==. -2023-03-31 19:48:35.804072 + : Kick vote End -2023-03-31 19:49:31.485278 + : pb-IF4hUBYPPw==|| kicked > new account -2023-03-31 19:49:49.233877 + : pb-IF5TUhE7Fw== ip: azj~z`~zi~~h`, Device id: 504b46b10edcc58410496b3135625f95fa6a5da7 -2023-03-31 19:51:09.738774 + : pb-IF4TV3RbDA== started kick vote for pb-IF4DU0IEJg==. -2023-03-31 19:51:39.746439 + : Kick vote End -2023-03-31 19:52:35.217185 + : pb-IF4OU3QZBA== ip: azo~|l~zh~~nd, Device id: d3ae847e1bc3521b7e124ea7db7d386b72c845a3 -2023-03-31 19:53:00.319061 + : pb-IF4OU3QZBA== ip: azo~|l~zh~~nd, Device id: d3ae847e1bc3521b7e124ea7db7d386b72c845a3 -2023-03-31 19:53:32.437178 + : pb-IF4OU3QZBA== ip: azo~|l~zh~~nd, Device id: d3ae847e1bc3521b7e124ea7db7d386b72c845a3 -2023-03-31 19:53:41.484081 + : pb-IF4OU3QZBA== ip: azo~|l~zh~~nd, Device id: d3ae847e1bc3521b7e124ea7db7d386b72c845a3 -2023-03-31 19:53:50.522933 + : pb-IF4OU3QZBA== ip: azo~|l~zh~~nd, Device id: d3ae847e1bc3521b7e124ea7db7d386b72c845a3 -2023-03-31 19:53:56.541767 + : pb-IF4hUnMgDw== ip: azo~|`~}haaif|, Device id: 73cd412a8337ca38e507d5056db53578f4a0e13a -2023-03-31 19:54:54.734222 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-03-31 19:55:15.794999 + : pb-IF4mU2IvCg== ip: dvvcyvb}j~~h`, Device id: 96a09dd4d600bfba6c4678e0104bc4a465dfba0b -2023-03-31 19:55:34.531812 + : pb-IF4DU0IEJg== started kick vote for pb-IF4OU3QZBA==. -2023-03-31 19:56:04.530771 + : Kick vote End -2023-03-31 19:56:25.040209 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-03-31 20:00:01.067573 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5TE2M5. -2023-03-31 20:00:31.075585 + : Kick vote End -2023-03-31 20:00:33.942866 + : pb-IF4mU2IvCg== ip: dvvcyvb}j~~h`, Device id: 96a09dd4d600bfba6c4678e0104bc4a465dfba0b -2023-03-31 20:01:49.204261 + : pb-IF4dVVUtKw== ip: an~~aeakhajbx, Device id: 8b02fce1d1907e68889a17157f87c32854efbda1 -2023-03-31 20:03:45.916343 + : pb-IF4mVU8yBg== started kick vote for pb-IF4OU3QZBA==. -2023-03-31 20:04:15.923625 + : Kick vote End -2023-03-31 20:04:32.211581 + : pb-IF5TE2M5 ip: azo~{a~y`~y`, Device id: ad9c2d31ad2842068187a8f1dd5bfb222d148f18 -2023-03-31 20:05:28.412089 + : pb-IF4TV3RbDA== ip: an~zi~}lbaja{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-31 20:05:38.437497 + : pb-IF4dVVUtKw== ip: an~~aeakhajbx, Device id: 8b02fce1d1907e68889a17157f87c32854efbda1 -2023-03-31 20:06:36.650445 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-31 20:08:17.327115 + : pb-IF4wV24HBw== ip: a~o~va~}hbaibz, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-31 20:08:50.441087 + : pb-IF4cUBYfCg== ip: azo~zh~zi~va, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-31 20:12:47.267035 + : pb-IF5RU3UzJA== ip: a~k~~acajbviv, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-03-31 20:14:37.576632 + : pb-IF5RU3UzJA== started kick vote for pb-IF4gU3QONA==. -2023-03-31 20:15:07.580089 + : Kick vote End -2023-03-31 20:17:36.933832 + : pb-IF4jU0hTBg== ip: ak~~abaohaoi, Device id: 572da91ad53e5051787810ec01cd77595d656ff1 -2023-03-31 20:18:23.088964 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~}ka, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-03-31 20:22:58.203093 + : pb-IF4TV3RbDA== ip: an~zi~}lbaja{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-31 20:25:54.964757 + : pb-IF4hUBYPPw== | kicked > reason:Banned account -2023-03-31 20:27:47.960480 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-03-31 20:29:59.512875 + : pb-IF4rU3MbEA== ip: ak~~oaaj`vez, Device id: 26be8dc2a8de4d19760ddc0e6662e0b9f36fbc9a -2023-03-31 20:32:05.083846 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~}ka, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-03-31 20:33:46.545217 + : pb-IF4iVWlTBg== ip: an~}ifaodajb, Device id: 1d3602a563991f5afc4492e4cc8e4bdd91860188 -2023-03-31 20:33:50.570352 + : pb-IF5SUno-Ug== ip: dxvbvvaxj~}o, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-03-31 20:42:55.363572 + : pb-IF4TV3RbDA== ip: an~zi~}lbaja{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-31 20:42:57.369970 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vg{, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-31 20:46:02.036849 + : pb-IF4nUxE4Nw== ip: b}k~~`daj`~vb{i, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-31 20:47:24.343738 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vg{, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-31 20:48:10.491246 + : pb-IF5SUno-Ug== ip: dxvbvvaxj~}o, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-03-31 20:48:25.539622 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~}, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-03-31 20:49:28.750178 + : pb-IF4cUBYfCg== ip: azo~zh~zo~}lb, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-31 20:49:42.808933 + : pb-IF4OUBY-HA== ip: a|j~~mdakbaja}, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-03-31 20:49:50.845780 + : pb-IF5TAHQO ip: dvvcxvb{vb}l, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-31 20:49:53.855077 + : pb-IF4OUBY-HA== ip: a|j~~mdakbaja}, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-03-31 20:51:27.932251 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF4TV3RbDA==. -2023-03-31 20:51:50.836694 + : Kick vote End -2023-03-31 20:54:34.794771 + : pb-IF4JU1oiDQ== ip: axa~zo~}kgai, Device id: 6a07b1a8d768502dcef6b3db8fcc84e3528fb4c2 -2023-03-31 20:55:37.015187 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-31 20:59:44.914030 + : pb-IF4JU1oiDQ== ip: axa~zo~}kgai, Device id: 6a07b1a8d768502dcef6b3db8fcc84e3528fb4c2 -2023-03-31 20:59:46.921887 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vg{, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-31 21:06:27.282859 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-31 21:06:47.336416 + : pb-IF48UkZTCw== ip: dvvcyvawm~~lh, Device id: b3959a99d0029de9f20ab576db077cba79fd9761 -2023-03-31 21:07:03.407375 + : pb-IF4NUmQHLA== ip: ak~~`camdajd, Device id: 46fe52e6b804fb07a03b64d0d66cda297c976c03 -2023-03-31 21:09:01.765434 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-03-31 21:12:44.537992 + : pb-IF4TV3RbDA== ip: azo~{m~vb~h, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-03-31 21:24:50.958903 + : pb-IF5QUncABw== ip: azo~|k~}lcaigv, Device id: ca58bd4197df32cb8799a9e64265faf878722f37 -2023-03-31 21:29:12.923917 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-03-31 21:40:06.131406 + : pb-IF41U2scIg== ip: ak~}hhaniajd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-31 21:43:01.737682 + : pb-IF4PUxQiDQ== ip: a{n~}laa`ian, Device id: 3ecb66806216f84db55d04e719153686443d3441 -2023-03-31 21:43:21.803768 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-03-31 21:45:51.364451 + : pb-IF5TAHQO ip: dvvcxvb{vb}l, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-31 21:47:04.630872 + : pb-IF4oVVQbDg== ip: b}k~}khajavva{m, Device id: 8353f81853c9360a0068e049ac0439907a362f94 -2023-03-31 21:47:14.730090 + : pb-IF5TAHQO ip: dvvcxvb{vb}l, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-31 21:47:36.815158 + : pb-IF4SXhUa ip: azj~z`~xh~~ja, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-03-31 21:47:39.823824 + : pb-IF4nVEY-PA== ip: an~}jbaj`aicv, Device id: 274c0eb29438e37a9fd5de5c04997e31b078d217 -2023-03-31 21:47:43.842268 + : pb-IF4wVVkYIg== ip: d}va`~~aiaib}, Device id: 62eeec9d9ed20df10e2ef17590735f5346df08de -2023-03-31 21:48:59.196844 + : pb-IF40PkMh ip: d}va`~~aiaib}, Device id: a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e -2023-03-31 21:49:09.923315 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4nVEY-PA==. -2023-03-31 21:49:39.926800 + : Kick vote End -2023-03-31 21:50:24.550124 + : pb-IF4nVEY-PA== ip: an~}jbaj`aicv, Device id: 274c0eb29438e37a9fd5de5c04997e31b078d217 -2023-03-31 21:52:42.781219 + : pb-IF4AV1QqEQ== started kick vote for pb-IF40PkMh. -2023-03-31 21:53:12.784506 + : Kick vote End -2023-03-31 21:54:49.612757 + : pb-IF5TAHQO ip: dvvcxvb{vb}l, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-31 21:57:48.687450 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4nVEY-PA==. -2023-03-31 21:57:59.321662 + : pb-JiNJVxFYUURFX1dBF0JZXV1FGUZfT1RG ip: bj~~o`aj`xva}l, Device id: 9953171690662937f4f87b1890c1b80852bf9a65 -2023-03-31 21:58:18.692882 + : Kick vote End -2023-03-31 21:59:38.659176 + : pb-IF4tUlkRDw== ip: azj~zo~wm~|i, Device id: 4b90e79813fdb0259fc1d852d4f7ecff869da4b8 -2023-03-31 21:59:55.722871 + : pb-IF4tUlkRDw== ip: azj~zo~wm~|i, Device id: 4b90e79813fdb0259fc1d852d4f7ecff869da4b8 -2023-03-31 22:01:18.024220 + : pb-IF4wVVkYIg== ip: d}va`~~afaia{, Device id: 62eeec9d9ed20df10e2ef17590735f5346df08de -2023-03-31 22:01:20.031390 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-03-31 22:02:41.870306 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4nVEY-PA==. -2023-03-31 22:03:11.876863 + : Kick vote End -2023-03-31 22:03:34.543911 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-31 22:04:05.647307 + : pb-IF4vV0g8Mw== ip: dvvc{vawo~~j, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-03-31 22:06:11.078618 + : pb-IF4cUBYfCg== ip: azo~zh~{l~}j, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-31 22:06:22.107730 + : pb-IF4FU1daUA== ip: a~h~}jdaifyva|h, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-31 22:07:46.738737 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4nVEY-PA==. -2023-03-31 22:08:16.742512 + : Kick vote End -2023-03-31 22:08:59.699167 + : pb-IF4dU1EBUA== ip: an~}j`ajc|vb}k, Device id: 7dc10cb0f1e3c4df233aa300865a25faa99a2d42 -2023-03-31 22:09:42.859364 + : pb-IF48U1ITIA== ip: azo~zi~~i`aiez, Device id: b05052cd6576ac8b297b5e87c0d91332dd2c2bb9 -2023-03-31 22:10:03.960813 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvazi, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-31 22:10:15.997046 + : pb-IF4vVRUFVA== ip: an~}hbaiewviy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-31 22:10:58.159291 + : pb-IF4eU1MzFA== ip: a|a~~ngaifyvbi, Device id: 2845820fe40da27f3556ad26ddd441278459a01a -2023-03-31 22:13:21.661420 + : pb-IF4vVRUFVA== ip: an~}hbaiewviy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-31 22:15:11.062509 + : pb-IF4jF1NY ip: azj~z`~}`~~ia, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-31 22:15:26.655316 + : pb-IF4DU0IEJg== started kick vote for pb-JiNJVxFYUURFX1dBF0JZXV1FGUZfT1RG. -2023-03-31 22:15:56.656873 + : Kick vote End -2023-03-31 22:16:41.407415 + : pb-IF4xU0ZaBg== ip: ak~~nhaj`~vcw, Device id: 70078e64ad73d10fcf72386ce1b68dead2fe6adf -2023-03-31 22:20:15.185166 + : pb-IF5RU3UzJA== ip: a~k~~acajbviv, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-03-31 22:20:34.236598 + : pb-IF41U2scIg== ip: ak~}hhaniajd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-31 22:21:13.363538 + : pb-IF41U0sYPA== ip: a~o~va~}lhala, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-03-31 22:22:02.034137 + : pb-IF4vV0g8Mw== | kicked for chat spam -2023-03-31 22:24:37.159519 + : pb-IF4xU0ZaBg== ip: ak~~nhaj`~vcw, Device id: 70078e64ad73d10fcf72386ce1b68dead2fe6adf -2023-03-31 22:24:45.868483 + : pb-IF4AV1QqEQ== started kick vote for pb-IF41U0sYPA==. -2023-03-31 22:25:15.868542 + : Kick vote End -2023-03-31 22:25:20.330205 + : pb-IF4NU3IhKg== ip: bn~wl~}jiajdv, Device id: 447b2f34e6752d40d026da152470dcdab9192c75 -2023-03-31 22:26:39.627924 + : pb-IF4-UxI7Mg== ip: ak~}l`aifvva{h, Device id: c9b75a67d7d77078ad188d740656d5436ebb454c -2023-03-31 22:27:52.909123 + : pb-IF4hU3EgJA== ip: azo~{n~~m`alf, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-03-31 22:28:50.278618 + : pb-IF4AV1QqEQ== started kick vote for pb-IF41U0sYPA==. -2023-03-31 22:29:00.202760 + : Kick vote End -2023-03-31 22:29:48.426914 + : pb-IF4hU3EgJA== ip: azo~{n~~m`alf, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-03-31 22:30:07.510335 + : pb-IF5TUBEZUQ== ip: ak~}h`aadaia{, Device id: 08d6965068df98c61a8e7d2ab99a088537ef09be -2023-03-31 22:32:22.405917 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4mUmJZLw==. -2023-03-31 22:32:52.411385 + : Kick vote End -2023-03-31 22:33:34.388767 + : pb-IF4hU3EgJA== ip: azo~{n~~m`alf, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-03-31 22:33:43.435544 + : pb-IF4mUmJZLw== ip: b}k~}jfaldaiav, Device id: d039ac986e6a23180de7f629b46bce050179a53e -2023-03-31 22:33:56.488381 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: b}k~~`iangajb~, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-03-31 22:34:36.618972 + : pb-IF4-UxI7Mg== ip: ak~}l`aifvva{h, Device id: c9b75a67d7d77078ad188d740656d5436ebb454c -2023-03-31 22:35:09.735375 + : pb-IF41U2scIg== ip: ak~}hhaniajd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-31 22:35:43.863301 + : pb-IF4vVRUFVA== ip: an~}hbaiewviy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-31 22:36:17.591683 + : pb-IF4mUmJZLw== started kick vote for pb-IF49U1NZKg==. -2023-03-31 22:36:47.599460 + : Kick vote End -2023-03-31 22:39:44.761175 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvazi, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-31 22:39:59.802501 + : pb-IF5XU2whDA== ip: hva~o~~jda`f, Device id: ac56b3495178d946f446cf15eef5c877052d09c1 -2023-03-31 22:42:53.619363 + : pb-IF4jF1NY ip: azj~z`~}`~~ia, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-31 22:43:36.762319 + : pb-IF4qUBYCLg== ip: dvvczvaym~}i`, Device id: 9b5a9e6c39be53e7579a611f59b52aa02ed87225 -2023-03-31 22:45:08.095656 + : pb-IF41U2scIg== ip: ak~}hhaniajd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-31 22:47:38.642169 + : pb-IF4FU1daUA== ip: a~h~}jgamgajb, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-03-31 22:49:13.115414 + : pb-IF5dVWEJMg== ip: azo~{a~yn~wl, Device id: 3939fc10737ad53f783649761bea48dc2b3522f7 -2023-03-31 22:49:40.206759 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vew, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-03-31 22:51:09.593731 + : pb-JiNJVxFYUURFX1dBF0JZXV1FGUZfT1RG ip: bj~~o`aj`xva}l, Device id: 9953171690662937f4f87b1890c1b80852bf9a65 -2023-03-31 22:51:35.696153 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-31 22:53:45.188235 + : pb-JiNJARFdUkRHWV1JFkNXVVJDFUdfRlZD ip: ak~}hfaicyvbx, Device id: c6425fda5684891e28579fb7860b33f0cbbae370 -2023-03-31 22:56:02.442394 + : pb-JiNJVxFYUURFX1dBF0JZXV1FGUZfT1RG started kick vote for pb-IF4VU04yMw==. -2023-03-31 22:56:20.753717 + : pb-IF40UmUMEg== ip: an~}idao~~ag, Device id: 7871fcf2cb1081a5de7b5b7b3bfc84148565e630 -2023-03-31 22:56:32.445495 + : Kick vote End -2023-03-31 22:58:02.121677 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-31 23:03:23.407864 + : pb-IF4vVRUFVA== ip: an~}hbaiewviy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-31 23:03:38.452772 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvazi, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-31 23:03:49.503864 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvazi, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-31 23:06:44.175214 + : pb-IF4vVRUFVA== ip: an~}hbaiewviy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-31 23:08:06.483643 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-03-31 23:08:08.500408 + : pb-IF4JUBMZCA== ip: an~~ahaidajc, Device id: a1f6dc2f8f93ed728dfa5f8917f880300ab47b8e -2023-03-31 23:08:24.329380 + : pb-IF4DU0IEJg== started kick vote for pb-IF5UUBQMEQ==. -2023-03-31 23:08:54.335568 + : Kick vote End -2023-03-31 23:10:10.970920 + : pb-IF49VFQlPA== ip: azo~zh~zn~vh, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-31 23:10:50.109989 + : pb-IF41U2scIg== ip: a~h~}jgaiaan, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-03-31 23:11:23.241772 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvazi, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-03-31 23:11:41.311247 + : pb-IF49VFQlPA== ip: azo~zh~zn~vh, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-31 23:12:11.433517 + : pb-IF49VFQlPA== ip: azo~zh~zn~vh, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-31 23:12:28.492196 + : pb-IF49VFQlPA== ip: azo~zh~zn~vh, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-31 23:13:17.642497 + : pb-IF49VFQlPA== ip: azo~zh~zn~vh, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-31 23:14:21.861810 + : pb-IF49VFQlPA== ip: azo~zh~zn~vh, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-31 23:15:15.052310 + : pb-IF49VFQlPA== ip: azo~zh~zn~vh, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-03-31 23:15:37.126211 + : pb-IF4DV2ItCQ== ip: ak~~neaifxvey, Device id: 5bba8fcd2bdbd1349061cdcfb59066eec13d9afc -2023-03-31 23:19:17.922313 + : pb-IF4dU0wPIw== ip: axn~~o`aiaam, Device id: 13b2a7bb3cd6be27f7f9d35d588a4667992a86e4 -2023-03-31 23:20:38.045800 + : pb-IF4DU0IEJg== started kick vote for pb-IF49VFQlPA==. -2023-03-31 23:21:08.046074 + : Kick vote End -2023-03-31 23:24:30.262455 + : pb-IF4dU0wPIw== ip: axn~~o`aiaam, Device id: 13b2a7bb3cd6be27f7f9d35d588a4667992a86e4 -2023-03-31 23:24:50.675091 + : pb-IF4DU0IEJg== started kick vote for pb-IF4vVRUFVA==. -2023-03-31 23:25:15.416937 + : pb-IF4dU0wPIw== ip: axn~~o`aiaam, Device id: 13b2a7bb3cd6be27f7f9d35d588a4667992a86e4 -2023-03-31 23:25:20.676631 + : Kick vote End -2023-03-31 23:25:30.474336 + : pb-IF4dU0wPIw== ip: axn~~o`aiaam, Device id: 13b2a7bb3cd6be27f7f9d35d588a4667992a86e4 -2023-03-31 23:29:02.225807 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: b}k~~`iangajb~, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-03-31 23:34:12.470516 + : pb-IF4dU0wPIw== ip: axn~~o`aiaam, Device id: 13b2a7bb3cd6be27f7f9d35d588a4667992a86e4 -2023-03-31 23:39:11.517687 + : pb-IF4NU3IhKg== ip: bn~wl~}jiajdv, Device id: 447b2f34e6752d40d026da152470dcdab9192c75 -2023-03-31 23:39:34.601646 + : pb-IF4NU3IhKg== ip: bn~wl~}jiajdv, Device id: 447b2f34e6752d40d026da152470dcdab9192c75 -2023-03-31 23:40:33.816621 + : pb-IF4jF1NY ip: azj~z`~}`~~ia, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-03-31 23:41:19.990529 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-03-31 23:43:40.468387 + : pb-IF4RVBlbLw== ip: ak~}khaiava|, Device id: 43c8f697e19c9fcab02d28cdcc78ec61caf46d22 -2023-03-31 23:46:31.048277 + : pb-IF4VU3laVA== ip: ak~~`dajcwvi~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-03-31 23:47:33.397974 + : pb-IF4eUBMTKA== ip: a~h~}jgaiaan, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-03-31 23:51:21.348011 + : pb-IF4cUBYfCg== ip: azo~zh~|m~zn, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-03-31 23:52:18.557083 + : pb-IF4vVRUFVA== ip: an~}hbaiewviy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-03-31 23:52:46.666446 + : pb-IF4NU3IhKg== ip: bn~wl~}jiajdv, Device id: 447b2f34e6752d40d026da152470dcdab9192c75 -2023-03-31 23:52:47.674022 + : pb-IF5TAHQO ip: dvvcxvb{vb}l, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-03-31 23:57:01.562638 + : pb-IF4JUlg6Kw== ip: dzva~`~~miajd}, Device id: 231899416dce07c937fc9a4a5303f68286c3a420 -2023-04-01 00:04:52.156560 + : pb-IF5TAHQO ip: dvvcxvb{vb}l, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 00:16:57.506824 + : pb-IF4gU0wxBw== ip: a~h~}jgaiaan, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-01 00:23:56.857355 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-01 00:28:14.707300 + : pb-IF5QV2kTAw== ip: a}j~~oba`gaii~, Device id: 0f930d330d32d6798357bc9cc2d102b30d48e95d -2023-04-01 00:29:14.895388 + : pb-IF4oUxAGPQ== ip: azj~zo~}l`ai, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-01 00:30:12.091947 + : pb-IF4TV3RbDA== ip: an~zi~}lbaja{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-01 00:31:39.499812 + : pb-IF4nU1cSJg== started kick vote for pb-IF4sVRAkEQ==. -2023-04-01 00:31:44.691035 + : pb-IF4sVRAkEQ== kicked by kickvotes. -2023-04-01 00:33:30.857185 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-01 00:37:10.545635 + : pb-IF4sVRAkEQ== ip: a~o~va~~`eaig{, Device id: 1e6df6df45c2159d6b0dbccf48d6e58b5e0d530a -2023-04-01 00:44:58.295127 + : pb-IF4TV3RbDA== ip: an~zi~}lbaja{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-01 00:53:23.032378 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-01 01:01:57.832158 + : pb-IF4wU0IFFg== ip: bxvf|vavm~}ld, Device id: 1adc3c1c917f7e12ffadd35d862f9816d189e314 -2023-04-01 01:04:09.497165 + : pb-IF4vU0ggIg== ip: bxvfvak~~kc, Device id: 876ca0b507765d0f0e6a8f48a191ceae8d104241 -2023-04-01 01:09:02.673284 + : pb-IF4yUBElCg== ip: an~}heajevb|h, Device id: 08f82a2aeb797a2a2dc371d32962f9af31c491d1 -2023-04-01 01:09:19.716146 + : pb-IF4yUBElCg== ip: an~}heajevb|h, Device id: 08f82a2aeb797a2a2dc371d32962f9af31c491d1 -2023-04-01 01:13:03.760348 + : pb-IF4yUBElCg== ip: an~}heajevb|h, Device id: 08f82a2aeb797a2a2dc371d32962f9af31c491d1 -2023-04-01 01:15:21.256505 + : pb-IF40UncaLg== ip: dvvc}vb~i~}lb, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-01 01:16:05.420734 + : pb-IF4yU1oxUg== ip: dvvc{vavi~|n, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-01 01:16:07.425811 + : pb-IF4SU1olUw== ip: b}k~}khajbwvaj, Device id: 5977afcc24357878b5a67ce1663f62b02384c734 -2023-04-01 01:18:27.922092 + : pb-IF4rUBUdFg== ip: dvvcxvayj~~hb, Device id: 8c67f0fa057b6f5a3fcaed52cf58617c2b305f12 -2023-04-01 01:19:56.214427 + : pb-IF5cU2haHA== ip: dvvcxvb{`~}md, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-04-01 01:24:16.596712 + : pb-IF49U0QJDw== ip: b}k~~`iaihvi{, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 01:25:32.171323 + : pb-IF4IV04ZKw== ip: azj~z`~~hdalb, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-04-01 01:27:48.733550 + : pb-IF4TV3RbDA== ip: azo~{m~}o~}hg, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-01 01:30:19.410483 + : pb-IF5TAHQO ip: azo~{j~~vfx, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 01:33:46.107465 + : pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB ip: azj~z`~}l~~i, Device id: 1fd3c59cf1fc968b80ce5a6a63bd3fe5d3e13fac -2023-04-01 01:33:50.124664 + : pb-IF4SU2YPEQ== ip: dvvd|vb{k~}kc, Device id: bebaf834b137c9ba1ddc3c62b402e6bdf48b16f5 -2023-04-01 01:46:29.175337 + : pb-IF5TAHQO ip: azo~{j~~vfx, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 01:47:25.660502 + : pb-IF4BUBUZMw== ip: al~}`~~meamb, Device id: c981bf904f658611e30ce408ede1c4aeaa836523 -2023-04-01 01:54:53.315795 + : pb-IF4yU1oxUg== ip: dvvc{vavi~|n, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-01 01:55:52.616432 + : pb-IF4SU2YPEQ== started kick vote for pb-IF4SU1olUw==. -2023-04-01 01:56:22.622441 + : Kick vote End -2023-04-01 01:57:49.501973 + : pb-IF4wUkwlJg== ip: a~i~~iiaihxvex, Device id: 485401927d6373a184b21306a151c08929ea22d3 -2023-04-01 02:05:46.959813 + : pb-IF5RUxkiVA== ip: gwvavh~~lfaiev, Device id: a4b01ca52d19830a29ea61207bfc102f0fa1b0c7 -2023-04-01 02:15:32.417431 + : pb-IF4cU0kfUA== ip: hvd~vb~l~yn, Device id: df45720258668a73b6ad583cc0bf116ff953ea55 -2023-04-01 02:19:17.673236 + : pb-IF40UncaLg== ip: dvvc}vavk~~ha, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-01 02:46:21.564354 + : pb-IF4IV04ZKw== ip: azj~z`~~hdalb, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-04-01 02:46:21.564796 + : pb-IF4XUmwOKw== ip: dvvcyvc|vb|j, Device id: 2687007beb529d908494e29c723a9f22604e1005 -2023-04-01 03:00:13.536900 + : pb-IF5TAHQO ip: azo~{j~~vfx, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 03:01:21.778932 + : pb-IF5TAHQO ip: azo~{j~~vfx, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 03:10:13.783691 + : pb-IF49U0QJDw== ip: b}k~~`iaihvi{, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 03:18:21.514357 + : pb-IF4gU0Y7AQ== ip: azo~{m~}khajd, Device id: 4d5a22b991ecbbf1566da5764d14d9957498f370 -2023-04-01 03:19:41.834332 + : pb-IF4vU3kAIA== ip: an~}iaaibyvaza, Device id: 2ba7c14303f69ab6e2bfd5a9ea4e7b2bf6021571 -2023-04-01 03:26:58.458851 + : pb-IF4qU1MDVg== ip: an~}heaj`zvhv, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 03:28:53.861355 + : pb-IF4qU1MDVg== ip: an~}heaj`zvhv, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 03:32:05.539516 + : pb-IF4gU0Y7AQ== started kick vote for pb-IF4DU3gSVg==. -2023-04-01 03:32:10.927478 + : pb-IF4DU3gSVg== kicked by kickvotes. -2023-04-01 03:33:12.791057 + : pb-IF4wUkwlJg== ip: b}k~~jcambaig{, Device id: 485401927d6373a184b21306a151c08929ea22d3 -2023-04-01 03:33:28.709106 + : pb-IF4gU0Y7AQ== started kick vote for pb-IF4wUkwlJg==. -2023-04-01 03:33:58.711966 + : Kick vote End -2023-04-01 03:34:18.036300 + : pb-IF4JU1oiDQ== ip: axa~zo~}kgai, Device id: 6a07b1a8d768502dcef6b3db8fcc84e3528fb4c2 -2023-04-01 03:34:54.143699 + : pb-IF4JU1oiDQ== ip: axa~zo~}kgai, Device id: 6a07b1a8d768502dcef6b3db8fcc84e3528fb4c2 -2023-04-01 03:35:42.315764 + : pb-IF4JU1oiDQ== ip: axa~zo~}kgai, Device id: 6a07b1a8d768502dcef6b3db8fcc84e3528fb4c2 -2023-04-01 03:35:47.336871 + : pb-IF4wV24HBw== ip: a~o~va~~aha``, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-01 03:37:10.666010 + : pb-IF4gU0Y7AQ== ip: azo~{m~}khajd, Device id: 4d5a22b991ecbbf1566da5764d14d9957498f370 -2023-04-01 03:37:39.756639 + : pb-IF4wUkwlJg== ip: b}k~~jcambaig{, Device id: 485401927d6373a184b21306a151c08929ea22d3 -2023-04-01 03:42:37.881069 + : pb-IF4TU1cuKA== ip: a}j~zh~}hhaja, Device id: 90a8f137e1296725a47d580bec2e617745c3f393 -2023-04-01 03:44:34.989334 + : pb-IF4gU0Y7AQ== started kick vote for pb-IF4TU1cuKA==. -2023-04-01 03:45:04.995973 + : Kick vote End -2023-04-01 03:50:18.506481 + : pb-IF4yU0YDUw== ip: a~h~}jdaiayvazo, Device id: 1047ec0703ddd231b0668080e79608c8fd177409 -2023-04-01 03:51:08.334890 + : pb-IF4TU1cuKA== started kick vote for pb-IF4gU0Y7AQ==. -2023-04-01 03:51:38.341218 + : Kick vote End -2023-04-01 03:53:00.040523 + : pb-JiNJARBfUURGXltEEk9WV1JFGUFYQVlE ip: dvvc{vaxj~~hb, Device id: 90bd209e979a513f330a297dc25f94a190bf6758 -2023-04-01 03:57:57.146829 + : pb-IF4WU3I5XQ== ip: h|va~h~xm~y`, Device id: b233e9f034f8aa6c5dc755940c74640f0b6f3112 -2023-04-01 03:59:09.372491 + : pb-IF4TU1cuKA== started kick vote for pb-IF4gU0Y7AQ==. -2023-04-01 03:59:39.374464 + : Kick vote End -2023-04-01 04:08:27.366078 + : pb-IF4yU0YDUw== ip: a~h~}jdaiayvazo, Device id: 1047ec0703ddd231b0668080e79608c8fd177409 -2023-04-01 04:28:39.849341 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-01 04:50:00.037354 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-01 05:11:43.470881 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-01 05:54:11.608090 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-01 06:15:14.195416 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-01 07:24:04.065258 + : pb-IF4pU1oxPQ== ip: ak~~`baifxvav, Device id: 88d925228d198044142dfd3bafd3fd2290b7c479 -2023-04-01 07:41:59.778686 + : pb-IF4yVFgOVA== ip: ak~~n`ajc|vb, Device id: d854623f8a8ec9715c4cf1e44f2a453d5344d791 -2023-04-01 07:51:24.741091 + : pb-IF4FUEY4 ip: bk~~adaaiand, Device id: 452bcd37350866efb1deb4f785c1364a1abde5d2 -2023-04-01 07:52:34.085679 + : pb-IF4FUEY4 ip: bk~~adaaiand, Device id: 452bcd37350866efb1deb4f785c1364a1abde5d2 -2023-04-01 07:53:05.175516 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-01 07:57:33.066166 + : pb-IF4IVW49BA== ip: b}k~~`bajbzvg, Device id: cdbb3840f8731245c0413cd9dde6427f27ade452 -2023-04-01 07:58:52.319924 + : pb-IF4IVW49BA== ip: b}k~~`bajbzvg, Device id: cdbb3840f8731245c0413cd9dde6427f27ade452 -2023-04-01 08:01:24.823793 + : pb-IF4IVW49BA== ip: b}k~~`bajbzvg, Device id: cdbb3840f8731245c0413cd9dde6427f27ade452 -2023-04-01 08:23:11.567239 + : pb-IF4WU0wvVA== ip: dvvc}vawa~~kg, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-01 08:24:49.412783 + : pb-IF5WUBkIEQ==|| kicked > new account -2023-04-01 08:27:39.740575 + : pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB ip: azj~z`~}m~~nf, Device id: 1fd3c59cf1fc968b80ce5a6a63bd3fe5d3e13fac -2023-04-01 08:37:46.266705 + : pb-IF4eU0s9Pw== ip: a~a~vl~yl~vo, Device id: 79ff602d98582d9885d769eec06b4ebd8aab0aad -2023-04-01 08:41:59.835279 + : pb-IF4SXhUa ip: azj~z`~xi~~ob, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-01 08:43:16.109097 + : pb-IF4qVRY4Vg== ip: b}k~}kfan`aib, Device id: d041ba866757f85834a62ef606c034afb41fd757 -2023-04-01 08:48:00.084771 + : pb-IF4qVRY4Vg== ip: b}k~}kfan`aib, Device id: d041ba866757f85834a62ef606c034afb41fd757 -2023-04-01 08:52:05.911367 + : pb-IF5UUxgjIA== ip: azj~z`~xi~~m`, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-01 08:57:10.974260 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-01 08:59:09.783177 + : pb-IF5QU3AaLg== ip: ak~}m`aidzvazj, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-01 09:11:44.706324 + : pb-IF5QU3AaLg== ip: ak~}m`aidzvazj, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-01 09:11:44.706573 + : pb-IF4VU3laVA== ip: ak~~n`ajc|vb}a, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-01 09:16:31.748981 + : pb-IF4VU3laVA== ip: ak~~n`ajc|vb}a, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-01 09:19:22.321674 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`amf, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-01 09:21:05.647663 + : pb-IF49U0QJDw== ip: an~}heaiizve}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 09:31:29.868180 + : pb-IF49U0QJDw== ip: an~}heaiizve}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 09:35:20.618343 + : pb-IF49U0QJDw== ip: an~}heaiizve}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 09:40:26.600193 + : pb-IF40U3MyVQ== ip: b}k~}kcaogaigx, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-04-01 09:44:55.449643 + : pb-IF4cUBYfCg== ip: azo~zh~yk~}l, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-01 09:45:32.572027 + : pb-IF5cUkwjDA== ip: dvvcyvb~l~vk, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-04-01 09:53:42.369758 + : pb-IF49U0QJDw== ip: an~}heaiizve}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 10:00:32.833224 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-01 10:08:10.507946 + : pb-IF5QU3AaLg== ip: ak~}m`aidzvazj, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-01 10:08:37.608859 + : pb-IF40U3MyVQ== ip: b}k~}kcaogaigx, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-04-01 10:09:00.707641 + : pb-IF4-Um4_Lw== ip: azj~zo~~acai`z, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-04-01 10:10:02.940232 + : pb-IF5cUkwjDA== ip: dvvcyvb~l~vk, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-04-01 10:11:15.213234 + : pb-IF4SXhUa ip: azj~z`~xi~~ob, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-01 10:13:19.672337 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-01 10:16:41.375871 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|l~vh, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-04-01 10:17:51.656940 + : pb-IF4vVRUFVA== ip: an~}haaj`a``, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 10:20:48.326564 + : pb-IF4vVRUFVA== ip: an~}haaj`a``, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 10:29:30.419735 + : pb-IF4rUBIeNQ== ip: azo~|`~~kean`, Device id: b92189a15b5b855d7f95ffe94191a12647f1c11f -2023-04-01 10:30:40.665588 + : pb-IF5UUxgjIA== ip: azj~z`~xh~{j, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-01 10:33:09.327151 + : pb-IF5dU3UiAw== ip: azo~{a~~o`aiiv, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-01 10:34:47.646526 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|l~vh, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-04-01 10:34:48.652891 + : pb-IF49U0QJDw== ip: a~o~v`~vh~vi, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 10:44:13.740855 + : pb-IF41VWMZFA== ip: azo~zi~|m~}je, Device id: e0e1c5fa256835feda0f13996e09277c19610dac -2023-04-01 10:46:35.295406 + : pb-IF4DU0IEJg== ip: b}k~~ohaja}vb`, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-01 10:46:42.311826 + : pb-IF5QU3AaLg== ip: ak~}m`aidzvazj, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-01 10:48:08.209429 + : pb-IF4DU0IEJg== started kick vote for pb-IF4TUBYGEg==. -2023-04-01 10:48:10.636091 + : pb-IF4vV0g8Mw== ip: dvvc{vawm~}ie, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-01 10:48:38.211406 + : Kick vote End -2023-04-01 10:49:26.925706 + : pb-IF4SXhUa ip: azj~z`~xi~~ob, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-01 10:50:51.304651 + : pb-IF4vVRUFVA== ip: an~}haaj`a``, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 10:51:22.423526 + : pb-IF41VWMZFA== ip: azo~zi~|m~}je, Device id: e0e1c5fa256835feda0f13996e09277c19610dac -2023-04-01 10:51:46.151842 + : pb-IF4DU0IEJg== started kick vote for pb-IF4TUBYGEg==. -2023-04-01 10:51:51.520484 + : pb-IF4DU0IEJg== ip: b}k~~ohaja}vb`, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-01 10:52:16.152962 + : Kick vote End -2023-04-01 10:52:35.660176 + : pb-IF4WUBYFJg== ip: azj~z`~}k`ajav, Device id: 1b15b7fb9d8ca5070df38f90e4cb49f1e1d2fdfe -2023-04-01 10:53:50.934971 + : pb-IF4vVRUFVA== ip: an~}haaj`a``, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 10:54:02.975408 + : pb-IF4AU0IoCA== ip: azj~z`~}iaao, Device id: 7e77758456905f2250e6815bf48baf9d39eeb3c2 -2023-04-01 10:54:27.065710 + : pb-IF4AV1QqEQ== ip: an~}ica`dali, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-01 10:54:37.105955 + : pb-IF4AU0IoCA== ip: an~~afaihaibx, Device id: 7e77758456905f2250e6815bf48baf9d39eeb3c2 -2023-04-01 10:54:48.120182 + : pb-IF4-UxI7Mg== ip: ak~}l`aifvva{h, Device id: c9b75a67d7d77078ad188d740656d5436ebb454c -2023-04-01 10:55:13.924889 + : pb-IF4DU0IEJg== started kick vote for pb-IF4SXhUa. -2023-04-01 10:55:42.321060 + : pb-IF4OU1IZVg== ip: azo~{n~~oiaicy, Device id: 541973653043d7f242ff3b1078194e8678f82921 -2023-04-01 10:55:43.927548 + : Kick vote End -2023-04-01 10:57:14.977261 + : pb-IF4vV0g8Mw== started kick vote for pb-IF5QU3AaLg==. -2023-04-01 10:57:44.982360 + : Kick vote End -2023-04-01 10:57:59.805338 + : pb-IF5cU0kkKA== ip: an~~aea`~~`a, Device id: 21134c91a35ed88f5893ed72fdae3ef94c11d099 -2023-04-01 10:59:40.502912 + : pb-IF4qUBcIMA== started kick vote for pb-IF4OU1IZVg==. -2023-04-01 11:00:04.275497 + : pb-IF5cU0kkKA== ip: an~~aea`~~`a, Device id: 21134c91a35ed88f5893ed72fdae3ef94c11d099 -2023-04-01 11:00:10.508262 + : Kick vote End -2023-04-01 11:01:14.532773 + : pb-IF4VUm0RLw== ip: azo~{n~wi~w, Device id: 91fd524bda52b5c0981fc2d1b797cfc828ed698e -2023-04-01 11:01:45.638603 + : pb-IF4VU3laVA== ip: ak~~n`ajc|vb}a, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-01 11:01:55.958623 + : pb-IF4DU0IEJg== started kick vote for pb-IF5QU3AaLg==. -2023-04-01 11:02:25.967083 + : Kick vote End -2023-04-01 11:04:08.166688 + : pb-IF5XU0YhKg== ip: azo~{m~}iaaj, Device id: 75ff7432c56d2b0a6ebcdf61a1cdd1675410cbdb -2023-04-01 11:04:23.204884 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|l~vh, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-04-01 11:05:41.486271 + : pb-IF49U0QJDw== ip: an~}heaj`ve}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 11:06:21.648687 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|l~vh, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-04-01 11:07:58.102758 + : pb-IF4UVXgbCg== ip: a~m~vn~}ihaiaw, Device id: 99c135f63a1695d3b8cf22ac2e471b6a5a9919e8 -2023-04-01 11:08:30.235652 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|l~vh, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-04-01 11:08:46.266332 + : pb-IF4VU3laVA== started kick vote for pb-IF4jU1gKFA==. -2023-04-01 11:09:16.270858 + : Kick vote End -2023-04-01 11:11:05.792088 + : pb-IF40UmUMEg== ip: an~}idal~wl, Device id: 7871fcf2cb1081a5de7b5b7b3bfc84148565e630 -2023-04-01 11:11:21.833903 + : pb-IF4vV0g8Mw== ip: dvvc{vawm~}ie, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-01 11:12:27.177011 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4jU1gKFA==. -2023-04-01 11:12:57.180177 + : Kick vote End -2023-04-01 11:13:09.314306 + : pb-JiNJARBZVkVHXl1HF0ZTXVNHEUJfQlJB ip: azj~zo~}ifaiiy, Device id: a339ea1ea5f14e84d570f9df718222d56de0140b -2023-04-01 11:13:16.337414 + : pb-IF5QU3AaLg== ip: ak~}m`aidzvazj, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-01 11:15:07.689225 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-01 11:16:18.158768 + : pb-IF4DU0IEJg== started kick vote for pb-JiNJARBZVkVHXl1HF0ZTXVNHEUJfQlJB. -2023-04-01 11:16:48.160188 + : Kick vote End -2023-04-01 11:17:07.128784 + : pb-IF49U0QJDw== ip: an~}heaj`ve}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 11:17:58.303263 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-01 11:18:29.407738 + : pb-IF4SU1olUw== ip: an~}ifai`va~k, Device id: 5977afcc24357878b5a67ce1663f62b02384c734 -2023-04-01 11:18:37.438399 + : pb-IF4yU1oxUg== ip: azo~|j~xl~}j`, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-01 11:19:52.843238 + : pb-IF5UUxU7Ag== ip: an~}hcaniaiav, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-01 11:20:33.993583 + : pb-IF4yU1oxUg== ip: azo~|j~xl~}j`, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-01 11:20:43.020929 + : pb-IF4SU1olUw== ip: an~}ifai`va~k, Device id: 5977afcc24357878b5a67ce1663f62b02384c734 -2023-04-01 11:20:50.038767 + : pb-IF4wV24HBw== ip: a~o~va~}hba`i, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-01 11:21:26.168908 + : pb-IF4cUBYfCg== ip: azo~zh~zj~xj, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-01 11:21:38.222931 + : pb-IF4OVUkRIw== ip: bxvgaig~va{i, Device id: fa82210089b92dfc629756eae8e92b4ae8a0e219 -2023-04-01 11:22:02.282424 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4DU0IEJg==. -2023-04-01 11:22:13.366137 + : pb-IF5WUxAJHw== ip: awh~~a`akbali, Device id: 15cc067ed39483489813b330e81a19ce630c3153 -2023-04-01 11:22:32.286842 + : Kick vote End -2023-04-01 11:24:07.964981 + : pb-IF4DU0IEJg== started kick vote for pb-IF40UmUMEg==. -2023-04-01 11:24:14.924962 + : pb-IF4vVRUFVA== ip: an~}hcajbva|l, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 11:24:37.964997 + : Kick vote End -2023-04-01 11:24:43.020204 + : pb-IF4JUBMZCA== ip: an~~ahaidajc, Device id: a1f6dc2f8f93ed728dfa5f8917f880300ab47b8e -2023-04-01 11:25:08.108999 + : pb-IF4tUlkRDw== ip: azj~zo~~kbajc|, Device id: 4b90e79813fdb0259fc1d852d4f7ecff869da4b8 -2023-04-01 11:25:25.159429 + : pb-IF4tUlkRDw== ip: azj~zo~~kbajc|, Device id: 4b90e79813fdb0259fc1d852d4f7ecff869da4b8 -2023-04-01 11:25:54.267961 + : pb-IF4AU0IoCA== ip: an~~afaihaibx, Device id: 7e77758456905f2250e6815bf48baf9d39eeb3c2 -2023-04-01 11:26:06.310484 + : pb-IF4yU1oxUg== ip: azo~|j~xl~}j`, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-01 11:26:26.271885 + : pb-IF40UmUMEg== started kick vote for pb-IF4DU0IEJg==. -2023-04-01 11:26:40.437726 + : pb-IF41U2scIg== ip: a~h~}jgaiaan, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-01 11:26:56.271984 + : Kick vote End -2023-04-01 11:29:54.164280 + : pb-IF49U0QJDw== ip: an~}heaj`ve}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 11:30:34.008188 + : pb-IF4DU0IEJg== started kick vote for pb-IF40UmUMEg==. -2023-04-01 11:30:45.356217 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-01 11:31:04.014561 + : Kick vote End -2023-04-01 11:32:06.663782 + : pb-IF4hU3EgJA== ip: azo~{n~~kiaibv, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-01 11:32:30.753816 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-01 11:34:32.211468 + : pb-IF4hU3EgJA== ip: azo~{n~~kiaibv, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-01 11:34:45.270580 + : pb-IF5VU3lYDA== ip: azj~z`~~`aajby, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-04-01 11:35:25.426778 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|l~vh, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-04-01 11:35:35.454315 + : pb-JiNJARBSXUFIWl1CGUdZU1VEGEZcRFVL ip: azj~zo~yk~}if, Device id: bbe038db81f75dfbd848b16d315843b34cf7b375 -2023-04-01 11:39:46.061961 + : pb-IF4AV1QqEQ== started kick vote for pb-JiNJARBSXUFIWl1CGUdZU1VEGEZcRFVL. -2023-04-01 11:40:16.065887 + : Kick vote End -2023-04-01 11:40:43.533279 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-01 11:40:45.539190 + : pb-IF41U2scIg== ip: ak~}hhaniajd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-01 11:41:08.624111 + : pb-IF4AU0IoCA== ip: an~~afaihaibx, Device id: 7e77758456905f2250e6815bf48baf9d39eeb3c2 -2023-04-01 11:43:06.064108 + : pb-IF5dVWEJMg== ip: a~o~}jbaie{vayl, Device id: 3939fc10737ad53f783649761bea48dc2b3522f7 -2023-04-01 11:47:13.942484 + : pb-IF4JU2ozPQ== ip: azo~{n~}i`ai`}, Device id: dd405691e081300904dd60069adb0e51fd6f15ee -2023-04-01 11:47:48.093079 + : pb-IF4AU0IoCA== ip: an~~afaihaibx, Device id: 7e77758456905f2250e6815bf48baf9d39eeb3c2 -2023-04-01 11:47:55.115524 + : pb-IF5UUxU7Ag== ip: an~}hcaniaiav, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-01 11:48:03.111582 + : pb-IF4DU0IEJg== started kick vote for pb-IF40UmUMEg==. -2023-04-01 11:48:33.111777 + : Kick vote End -2023-04-01 11:48:43.287525 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-01 11:48:58.335272 + : pb-IF4-Um4_Lw== ip: azj~zo~~acai`z, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-04-01 11:52:13.031664 + : pb-IF4PUxM7Mg== ip: d}val~~leakc, Device id: 865142e2b1d586f51b93382f1d212e69cb1682d4 -2023-04-01 11:52:51.174069 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-04-01 11:53:39.923876 + : pb-IF4DU0IEJg== started kick vote for pb-IF5dVWEJMg==. -2023-04-01 11:54:04.432897 + : pb-IF4AU0IoCA== ip: an~~afaihaibx, Device id: 7e77758456905f2250e6815bf48baf9d39eeb3c2 -2023-04-01 11:54:09.923525 + : Kick vote End -2023-04-01 11:54:54.598155 + : pb-IF4VU3laVA== ip: ak~~n`ajc|vb}a, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-01 11:55:22.117900 + : pb-IF40UmUMEg== started kick vote for pb-IF4iUmsSDw==. -2023-04-01 11:55:52.121788 + : Kick vote End -2023-04-01 11:57:25.260367 + : pb-IF5WUBEqHw== ip: a~o~vo~xm~~lg, Device id: c3f216648bb3f8c6c9bc4164d352a554aa85f67e -2023-04-01 11:58:08.236915 + : pb-IF4OU2QjMQ== started kick vote for pb-IF4PUxM7Mg==. -2023-04-01 11:58:24.484489 + : pb-IF4VU3laVA== ip: ak~~n`ajc|vb}a, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-01 11:58:38.242932 + : Kick vote End -2023-04-01 12:00:29.092062 + : pb-IF4AU0IoCA== ip: an~~afaihaibx, Device id: 7e77758456905f2250e6815bf48baf9d39eeb3c2 -2023-04-01 12:00:34.098984 + : pb-IF4eU0s9Pw== ip: a~a~vl~yl~vo, Device id: 79ff602d98582d9885d769eec06b4ebd8aab0aad -2023-04-01 12:00:50.154723 + : pb-IF4WU0wvVA== ip: aakhajayvbh, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-01 12:01:50.354264 + : pb-IF4LU0wKIw== ip: azj~zo~}jeaaa, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-04-01 12:02:05.388053 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-01 12:02:33.488813 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-04-01 12:02:51.563408 + : pb-IF4WU0wvVA== ip: aakhajayvbh, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-01 12:04:12.324486 + : pb-IF41U2scIg== started kick vote for pb-IF4yU1oxUg==. -2023-04-01 12:04:42.325008 + : Kick vote End -2023-04-01 12:04:54.134259 + : pb-IF4WU0wvVA== ip: aakhajayvbh, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-01 12:05:09.186785 + : pb-IF4AU0IoCA== ip: an~~afaihaibx, Device id: 7e77758456905f2250e6815bf48baf9d39eeb3c2 -2023-04-01 12:05:28.260145 + : pb-IF49U0QJDw== ip: an~}heaiivve}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 12:06:36.722218 + : pb-IF40UmUMEg== started kick vote for pb-IF4WU0wvVA==. -2023-04-01 12:07:06.730620 + : Kick vote End -2023-04-01 12:07:40.726161 + : pb-IF4cUBYfCg== ip: azo~zh~yh~yk, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-01 12:08:30.434280 + : pb-IF4WU0wvVA== started kick vote for pb-IF4SU1olUw==. -2023-04-01 12:08:58.009327 + : pb-IF5WUBEqHw== ip: a~o~vo~xm~~lg, Device id: c3f216648bb3f8c6c9bc4164d352a554aa85f67e -2023-04-01 12:09:00.438965 + : Kick vote End -2023-04-01 12:09:01.031904 + : pb-IF4LU0wKIw== ip: azj~zo~}jeaaa, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-04-01 12:09:07.045891 + : pb-IF4vVRUFVA== ip: an~}hcajbva|l, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 12:10:07.426699 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|l~vh, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-04-01 12:10:16.458437 + : pb-IF49U0QJDw== ip: an~}heaiivve}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 12:10:33.523258 + : pb-IF4JUBMZCA== ip: an~~ahaidajc, Device id: a1f6dc2f8f93ed728dfa5f8917f880300ab47b8e -2023-04-01 12:11:28.730604 + : pb-IF4wV24HBw== ip: a~o~va~}hba`i, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-01 12:12:38.014885 + : pb-IF5TAHQO ip: azo~|m~~k~ym, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 12:15:08.518116 + : pb-IF4-Um4_Lw== ip: azj~zo~~acai`z, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-04-01 12:17:22.977957 + : pb-IF4cUBYfCg== ip: azo~zh~yh~yk, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-01 12:18:59.337832 + : pb-IF4wVVk8Jg== ip: dzva~m~vi~xj, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-04-01 12:20:51.773825 + : pb-IF4wVVk8Jg== ip: dzva~m~vi~xj, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-04-01 12:21:57.987569 + : pb-IF4yU1oxUg== ip: azo~|j~xl~}j`, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-01 12:23:03.320290 + : pb-IF4yU1oxUg== ip: azo~|j~xl~}j`, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-01 12:23:27.385527 + : pb-IF4DU0IEJg== started kick vote for pb-IF4AV1QqEQ==. -2023-04-01 12:23:56.495283 + : pb-IF49U0QJDw== ip: an~}heaiivve}, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 12:23:57.391809 + : Kick vote End -2023-04-01 12:25:05.977676 + : pb-IF5UUxU7Ag== ip: an~}hcaniaiav, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-01 12:25:44.282832 + : pb-IF4wV24HBw== ip: a~o~va~~aga`i, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-01 12:25:48.300003 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-01 12:26:39.468327 + : pb-IF4yU1oxUg== ip: azo~|j~xl~}j`, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-01 12:27:47.722923 + : pb-IF40U3MyVQ== ip: b}k~}kcaogaigx, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-04-01 12:31:27.751734 + : pb-IF4wV24HBw== ip: a~o~va~~aga`i, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-01 12:33:04.341345 + : pb-IF4LU0wKIw== started kick vote for pb-IF4yV0cbIw==. -2023-04-01 12:33:34.347180 + : Kick vote End -2023-04-01 12:37:03.319481 + : pb-IF5UUxU7Ag== ip: an~}hcaniaiav, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-01 12:37:51.704120 + : pb-IF5UUxU7Ag== ip: an~}hcaniaiav, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-01 12:38:54.913015 + : pb-IF4WU0wvVA== ip: dvvc}va{k~zl, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-01 12:38:55.917591 + : pb-IF4cUBYfCg== ip: azo~zh~yh~yk, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-01 12:39:27.034769 + : pb-IF5UUxU7Ag== ip: an~}hcaniaiav, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-01 12:40:18.206102 + : pb-IF4VU3laVA== ip: ak~~n`ajc|vb}a, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-01 12:42:44.734565 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-01 12:42:45.742176 + : pb-IF4qVRY4Vg== ip: b}k~}kfan`aib, Device id: d041ba866757f85834a62ef606c034afb41fd757 -2023-04-01 12:43:10.811524 + : pb-IF4vV0g8Mw== ip: dvvc{vawm~}ie, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-01 12:43:53.194808 + : pb-IF4UU1oGUg== ip: azo~zi~~icaid, Device id: bcdf6fe9c152fb6cae6847a5ee3266a8e5fc8a79 -2023-04-01 12:44:50.999584 + : pb-IF4DUBhaIQ==|| kicked > new account -2023-04-01 12:45:56.965635 + : pb-IF4CUnoxKQ== ip: azo~{l~}ieaie, Device id: b92d5f0f20d136012a5d3f47cc76b8c02229342f -2023-04-01 12:46:03.991780 + : pb-IF4IUBYIAw== ip: dvvc}vavo~~ib, Device id: e1529657516c122526c890d4ade9e920a04183ad -2023-04-01 12:46:18.311453 + : pb-IF4hU3EgJA== ip: azo~{n~~khaifx, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-01 12:47:16.852792 + : pb-IF4WU0wvVA== started kick vote for pb-IF4vV0g8Mw==. -2023-04-01 12:47:46.854589 + : Kick vote End -2023-04-01 12:47:51.705535 + : pb-IF4wV1g4DA== ip: bxvf|vba~~``, Device id: cdb2ac76caf3c6387fe7837c3441cbf49a7fec32 -2023-04-01 12:47:55.715492 + : pb-IF4vV0g8Mw== ip: dvvc{vawm~}ie, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-01 12:49:02.568166 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4IUBYIAw==. -2023-04-01 12:49:32.570842 + : Kick vote End -2023-04-01 12:50:56.393459 + : pb-IF4-Um4_Lw== ip: azj~zo~~acai`z, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-04-01 12:52:04.826694 + : pb-IF4cUBYfCg== ip: azo~zh~yh~yk, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-01 12:52:32.745759 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4IUBYIAw==. -2023-04-01 12:53:02.752363 + : Kick vote End -2023-04-01 12:53:33.184409 + : pb-IF4hU3EgJA== ip: azo~{n~~khaifx, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-01 12:54:40.420080 + : pb-IF4IUBYIAw== ip: dvvc}va{h~}ic, Device id: e1529657516c122526c890d4ade9e920a04183ad -2023-04-01 12:55:40.654911 + : pb-IF5cVRYTCQ== ip: dzva}k~vl~}lb, Device id: be694006c26106519e4a116c55f3391b57b7caab -2023-04-01 12:56:22.887313 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-01 12:56:33.915798 + : pb-IF5WU0cRAg== ip: d}va`~~abaif, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-01 12:57:30.015342 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4IUBYIAw==. -2023-04-01 12:58:00.028383 + : Kick vote End -2023-04-01 12:59:19.823420 + : pb-IF49UBYBBA== ip: bj~~kdaidaidy, Device id: cc3d1ff940f80f922d53e7dc6b86d09ecff5e25b -2023-04-01 13:00:42.441559 + : pb-IF4tUlkRDw== ip: azj~zo~~mia`h, Device id: 4b90e79813fdb0259fc1d852d4f7ecff869da4b8 -2023-04-01 13:00:45.456729 + : pb-IF4IUBYIAw== ip: dvvc}vb}i~~kd, Device id: e1529657516c122526c890d4ade9e920a04183ad -2023-04-01 13:01:03.829936 + : pb-IF4LU20cEw== ip: a~o~va~}leaoh, Device id: 4dc931cefdd3131eaa4546cd0cefbffb299ae055 -2023-04-01 13:01:33.249245 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4IUBYIAw==. -2023-04-01 13:02:03.255865 + : Kick vote End -2023-04-01 13:03:21.160928 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4IUBYIAw==. -2023-04-01 13:03:51.162612 + : Kick vote End -2023-04-01 13:04:42.425042 + : pb-IF4AU1c_DA== ip: azo~|l~}a~~lc, Device id: c9afabd569ca92ed9495db2cbdda9161b0e1fed2 -2023-04-01 13:04:51.095279 + : pb-IF4IUBYIAw== | kicked for chat spam -2023-04-01 13:06:06.240888 + : pb-IF4AV1QqEQ== started kick vote for pb-JiNJARBcXENAW19GFURXVFxDEkNWQVRF. -2023-04-01 13:06:36.247517 + : Kick vote End -2023-04-01 13:09:02.985948 + : pb-IF41U2scIg== ip: ak~}hhaniajd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-01 13:09:06.994572 + : pb-IF4OU1IZVg== ip: azo~{n~~`fai, Device id: 541973653043d7f242ff3b1078194e8678f82921 -2023-04-01 13:10:46.392402 + : pb-IF4DU0IEJg== ip: b}k~~ohaja}vb`, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-01 13:11:53.613127 + : pb-IF4NUxFfEg== ip: an~}hgajc}vbh, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-01 13:11:56.622565 + : pb-IF4DU0IEJg== ip: b}k~~ohaja}vb`, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-01 13:12:12.671673 + : pb-IF4IUBYIAw== ip: a~j~xa~ym~vi, Device id: e1529657516c122526c890d4ade9e920a04183ad -2023-04-01 13:12:18.699973 + : pb-IF49U0QJDw== ip: a~o~v`~vh~yn, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 13:12:37.780594 + : pb-IF49U0QJDw== ip: a~o~v`~vh~yn, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 13:12:40.789974 + : pb-IF4AU0IoCA== ip: an~~afajdaibx, Device id: 7e77758456905f2250e6815bf48baf9d39eeb3c2 -2023-04-01 13:13:08.871902 + : pb-IF4DU0IEJg== ip: b}k~~ohaja}vb`, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-01 13:14:35.822196 + : pb-IF4OU1IZVg== started kick vote for pb-IF4AV1QqEQ==. -2023-04-01 13:15:05.826987 + : Kick vote End -2023-04-01 13:16:13.675369 + : pb-IF4dUBc_IQ==|| kicked > new account -2023-04-01 13:16:50.189158 + : pb-IF4IUBYIAw== ip: a~j~xa~ym~vi, Device id: e1529657516c122526c890d4ade9e920a04183ad -2023-04-01 13:17:58.037929 + : pb-JiNJARBcXENAW19GFURXVFxDEkNWQVRF started kick vote for pb-IF4IUBYIAw==. -2023-04-01 13:18:28.039634 + : Kick vote End -2023-04-01 13:18:53.675127 + : pb-IF4dU0wPIw== ip: axn~~o`aiaam, Device id: 13b2a7bb3cd6be27f7f9d35d588a4667992a86e4 -2023-04-01 13:19:19.767798 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-01 13:19:28.802836 + : pb-IF4-U1kpEQ== ip: dvvcxvavm~~jf, Device id: 928fbe92e5d31e258136337f212187c5f24471f1 -2023-04-01 13:20:02.922794 + : pb-IF4IUBYIAw== ip: a~j~xa~ym~vi, Device id: e1529657516c122526c890d4ade9e920a04183ad -2023-04-01 13:20:28.013830 + : pb-IF4IUBYIAw== ip: a~j~xa~ym~vi, Device id: e1529657516c122526c890d4ade9e920a04183ad -2023-04-01 13:20:53.082397 + : pb-IF4IUBYIAw== ip: a~j~xa~ym~vi, Device id: e1529657516c122526c890d4ade9e920a04183ad -2023-04-01 13:21:03.437169 + : pb-IF4DU0IEJg== started kick vote for pb-IF4vV0g8Mw==. -2023-04-01 13:21:23.184936 + : pb-IF4IUBYIAw== ip: a~j~xa~ym~vi, Device id: e1529657516c122526c890d4ade9e920a04183ad -2023-04-01 13:21:33.441920 + : Kick vote End -2023-04-01 13:24:20.810818 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4DU0IEJg==. -2023-04-01 13:24:50.816866 + : Kick vote End -2023-04-01 13:26:45.960613 + : pb-IF4vV0g8Mw== started kick vote for pb-JiNJARBcXENAW19GFURXVFxDEkNWQVRF. -2023-04-01 13:27:11.374057 + : pb-IF49U0QJDw== ip: a~o~v`~vh~yn, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 13:27:15.387004 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vdy, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-01 13:27:15.963731 + : Kick vote End -2023-04-01 13:27:23.397485 + : pb-IF4IUBYIAw== ip: dvvc|vav`~~le, Device id: e1529657516c122526c890d4ade9e920a04183ad -2023-04-01 13:28:17.436220 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4dU0wPIw==. -2023-04-01 13:28:47.440014 + : Kick vote End -2023-04-01 13:29:10.797489 + : pb-IF4xU1IhKw== ip: dvvc{va~i~}lc, Device id: 2823691b6a87c1340d5c69b8fe964ef1fb789bc8 -2023-04-01 13:29:11.798056 + : pb-IF4xU1IhKw== ip: dvvc{va~i~}lc, Device id: 2823691b6a87c1340d5c69b8fe964ef1fb789bc8 -2023-04-01 13:30:46.134166 + : pb-IF4DU0IEJg== started kick vote for pb-IF4dU0wPIw==. -2023-04-01 13:31:11.472951 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-01 13:31:16.139133 + : Kick vote End -2023-04-01 13:32:54.009792 + : pb-IF4-Um4_Lw== ip: azj~zo~~acai`z, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-04-01 13:33:24.504233 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4-Um4_Lw==. -2023-04-01 13:33:34.165684 + : pb-JiNJARBcXENAW19GFURXVFxDEkNWQVRF ip: dvvd|vc{ve|, Device id: d0ae4038674a9b9f312376ac13b0e467cf26a4fd -2023-04-01 13:33:39.187774 + : pb-IF4WU0wvVA== ip: aakhajayvbh, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-01 13:33:54.510828 + : Kick vote End -2023-04-01 13:34:40.614674 + : pb-IF4dU0wPIw== ip: axn~~o`aiaam, Device id: 13b2a7bb3cd6be27f7f9d35d588a4667992a86e4 -2023-04-01 13:34:54.897577 + : pb-IF4DU0IEJg== started kick vote for pb-IF4AV1QqEQ==. -2023-04-01 13:35:24.899105 + : Kick vote End -2023-04-01 13:35:44.848893 + : pb-IF49U0QJDw== ip: a~o~v`~vh~yn, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 13:36:05.908352 + : pb-IF4dU0wPIw== ip: axn~~o`aiaam, Device id: 13b2a7bb3cd6be27f7f9d35d588a4667992a86e4 -2023-04-01 13:36:24.176507 + : pb-IF4dU0wPIw== ip: axn~~o`aiaam, Device id: 13b2a7bb3cd6be27f7f9d35d588a4667992a86e4 -2023-04-01 13:36:26.181144 + : pb-IF4VUBYtCw== ip: ak~~aiaj`}vaza, Device id: f3c5aac42125f81d249f5a767ea97c0bf3d3f495 -2023-04-01 13:37:17.889315 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4DU0IEJg==. -2023-04-01 13:37:36.423374 + : pb-IF4cU0kfUA== ip: hvd~vb~l~yn, Device id: df45720258668a73b6ad583cc0bf116ff953ea55 -2023-04-01 13:37:47.897188 + : Kick vote End -2023-04-01 13:39:16.773974 + : pb-IF4WUBJcVQ== ip: ak~}maamiajc{, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-04-01 13:40:25.389273 + : pb-IF4DU0IEJg== started kick vote for pb-IF4AV1QqEQ==. -2023-04-01 13:40:55.397719 + : Kick vote End -2023-04-01 13:41:28.348185 + : pb-IF4NUxFfEg== ip: an~}hgajc}vbh, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-01 13:41:56.436971 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4DU0IEJg==. -2023-04-01 13:42:26.443092 + : Kick vote End -2023-04-01 13:43:18.728297 + : pb-IF5VU3lYDA== ip: azj~z`~~oiajc, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-04-01 13:43:27.734582 + : pb-IF4oU3hbEQ== started kick vote for pb-IF4DU0IEJg==. -2023-04-01 13:43:49.829654 + : pb-IF4WU0wvVA== ip: dvvc}vawh~~od, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-01 13:43:57.740712 + : Kick vote End -2023-04-01 13:44:05.883899 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vdy, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-01 13:44:37.007984 + : pb-IF4dU0wPIw== ip: axn~~o`aiaam, Device id: 13b2a7bb3cd6be27f7f9d35d588a4667992a86e4 -2023-04-01 13:44:41.019958 + : pb-IF5VU3lYDA== ip: azj~z`~~oiajc, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-04-01 13:45:08.117953 + : pb-IF5TU1ddPA== ip: azj~z`~|a~yh, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-04-01 13:45:22.159453 + : pb-IF5TAHQO ip: azo~|m~~n~}jc, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 13:45:36.487905 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4DU0IEJg==. -2023-04-01 13:46:01.281022 + : pb-IF41U2scIg== ip: a~h~}jgaiaan, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-01 13:46:06.489993 + : Kick vote End -2023-04-01 13:47:14.560256 + : pb-IF4DU0IEJg== ip: b}k~~ohaja}vb`, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-01 13:47:21.594006 + : pb-IF4DU0IEJg== ip: b}k~~ohaja}vb`, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-01 13:48:05.773310 + : pb-IF4XVXAcKg== ip: dvvc{vgwvb|l, Device id: 6fd760bd82d0d0621d454565c14e074498b43c14 -2023-04-01 13:48:28.825983 + : pb-IF4hU3EgJA== ip: azo~{n~~kdai`~, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-01 13:49:18.984956 + : pb-IF4dU0wPIw== ip: axn~~o`aiaam, Device id: 13b2a7bb3cd6be27f7f9d35d588a4667992a86e4 -2023-04-01 13:53:31.223777 + : pb-IF4dU0wPIw== ip: axn~~o`aiaam, Device id: 13b2a7bb3cd6be27f7f9d35d588a4667992a86e4 -2023-04-01 13:55:59.018936 + : pb-IF4vVRUFVA== ip: an~}hcajbva|l, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 13:56:19.291149 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4hU3EgJA==. -2023-04-01 13:56:49.298310 + : Kick vote End -2023-04-01 13:59:00.912755 + : pb-IF4dU0wPIw== ip: axn~~o`aiaam, Device id: 13b2a7bb3cd6be27f7f9d35d588a4667992a86e4 -2023-04-01 13:59:14.975778 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-01 14:01:06.360217 + : pb-IF49U0QJDw== ip: a~o~v`~vh~yn, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 14:02:21.604329 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-01 14:02:32.641925 + : pb-IF4IU1c6Ug== ip: azj~z`~|m~vn, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-01 14:02:44.687640 + : pb-IF49U0QJDw== ip: a~o~v`~vh~yn, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 14:02:54.674844 + : pb-IF5XU1k7LQ== started kick vote for pb-IF4eU1MmDw==. -2023-04-01 14:03:24.680348 + : Kick vote End -2023-04-01 14:04:28.055391 + : pb-IF4vVRUFVA== ip: an~}hcajbva|l, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 14:05:40.294063 + : pb-IF4vVRUFVA== ip: an~}hcajbva|l, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 14:07:26.669731 + : pb-IF5TAHQO ip: azo~|m~}j~~n`, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 14:09:10.052591 + : pb-IF4NUxFfEg== ip: an~}hgajc}vbh, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-01 14:13:17.944309 + : pb-IF4vVRUFVA== ip: an~}hcajbva|l, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 14:13:27.682425 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4vVRUFVA==. -2023-04-01 14:13:57.685178 + : Kick vote End -2023-04-01 14:14:13.131361 + : pb-IF4DU1I4CQ== ip: azj~z`~}ieamd, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-04-01 14:15:58.525871 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-01 14:18:05.954435 + : pb-IF4eUBc7IA== ip: a~h~}jgamaaid, Device id: 578d76963d5e2fd3095571f98365c1d2f2575c71 -2023-04-01 14:18:14.974173 + : pb-IF4OPhMg ip: an~}icajdzvgx, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-04-01 14:24:59.475960 + : pb-IF4TV3RbDA== ip: azo~{m~}jgaie{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-01 14:25:03.485186 + : pb-IF4vVRUFVA== ip: an~}hcajbva|l, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 14:25:33.617697 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-01 14:27:14.003715 + : pb-IF4JUBMZCA== ip: an~~ahaidajc, Device id: a1f6dc2f8f93ed728dfa5f8917f880300ab47b8e -2023-04-01 14:27:15.012604 + : pb-IF4KU1Q9Pw== ip: a~m~vo~}k~}k`, Device id: 217799c313cf0a8fc57851c7c11d507bce2f3696 -2023-04-01 14:28:19.217809 + : pb-IF4OPhMg started kick vote for pb-IF4IU1c6Ug==. -2023-04-01 14:28:44.352505 + : pb-IF5VU3lYDA== ip: azj~z`~~ohamb, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-04-01 14:28:49.216994 + : Kick vote End -2023-04-01 14:29:25.512110 + : pb-IF4sUBYJCw== ip: a~h~}jdaih}vao, Device id: 493f1dcc64c1330bb3db80a376cdb38ba927244e -2023-04-01 14:29:54.387631 + : pb-IF4zU3I4MA== started kick vote for pb-IF4KU1Q9Pw==. -2023-04-01 14:30:24.389486 + : Kick vote End -2023-04-01 14:31:36.745070 + : pb-IF4TV3RbDA== started kick vote for pb-IF4OPhMg. -2023-04-01 14:32:06.752280 + : Kick vote End -2023-04-01 14:32:27.220844 + : pb-IF5TAHQO ip: azo~|m~}j~~n`, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 14:32:43.275322 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-01 14:32:49.282504 + : pb-IF4-Um4_Lw== ip: azj~zo~}hgaid}, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-04-01 14:37:05.303615 + : pb-IF4jU1ggEw== ip: dvvcxvb|j~}lg, Device id: a64c100be999991469f0e1d353cf32082d8b6871 -2023-04-01 14:37:13.326141 + : pb-IF4nU1EnIw== ip: an~~abaievvb|k, Device id: fd9f20d9f4f83ccea54cdb35ac502a0c1ffda540 -2023-04-01 14:38:34.308002 + : pb-IF4OPhMg started kick vote for pb-IF4IU1c6Ug==. -2023-04-01 14:38:47.652527 + : pb-IF5TUBEZUQ== ip: ak~}h`aadaia{, Device id: 08d6965068df98c61a8e7d2ab99a088537ef09be -2023-04-01 14:39:04.311208 + : Kick vote End -2023-04-01 14:39:19.756603 + : pb-IF41U2scIg== ip: a~h~}jgaiaan, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-01 14:39:29.800076 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 14:41:25.532599 + : pb-IF4KU1Q9Pw== started kick vote for pb-IF4iUmsSDw==. -2023-04-01 14:41:55.535936 + : Kick vote End -2023-04-01 14:41:57.303172 + : pb-IF4KU1Q9Pw== ip: a~m~vo~}k~}k`, Device id: 217799c313cf0a8fc57851c7c11d507bce2f3696 -2023-04-01 14:42:07.337301 + : pb-IF5dVWEJMg== ip: a~o~}jbaie{vayl, Device id: 3939fc10737ad53f783649761bea48dc2b3522f7 -2023-04-01 14:42:38.443684 + : pb-IF4vVRUFVA== ip: an~}hcajbva|l, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 14:46:24.193818 + : pb-IF5dU3UiAw== ip: f~vbakcaih{, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-01 14:46:52.309968 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 14:47:36.849540 + : pb-IF4gVWwFJg== started kick vote for pb-IF4vVRUFVA==. -2023-04-01 14:47:46.503213 + : pb-IF4eVUJdDQ== ip: a}h~w`~~ohaif, Device id: 00aea33cef73e6fdcd33dcd5bd7722328b8194f4 -2023-04-01 14:48:06.854388 + : Kick vote End -2023-04-01 14:50:22.093543 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 14:53:22.746963 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-01 14:53:27.768003 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 14:56:05.435796 + : pb-IF4VU3laVA== ip: ak~~n`ajc|vb}a, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-01 14:56:52.590118 + : pb-IF4VU3laVA== ip: ak~~n`ajc|vb}a, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-01 15:01:29.609770 + : pb-IF4eUxYkNg== ip: a|j~~mdaidzvb}o, Device id: cf463c3e8e5177f63280992858c9206120cc78da -2023-04-01 15:01:35.635541 + : pb-IF4oUxAGPQ== ip: azj~zo~}l`aidx, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-01 15:02:08.791820 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~}jbaieai`y, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-04-01 15:05:06.402065 + : pb-IF4nUxE4Nw== ip: axi~zi~}leaie~, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-01 15:05:31.488184 + : pb-IF49U0QJDw== ip: an~}heaii}vb|l, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 15:07:17.858306 + : pb-IF4vVRUFVA== ip: an~}hcajbva|l, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 15:08:43.131097 + : pb-IF5TAHQO ip: azo~|m~}j~~n`, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 15:09:03.188386 + : pb-IF5VU1JZMw== ip: an~}ica`ea`b, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-01 15:12:30.970852 + : pb-IF4VU3laVA== ip: ak~~n`ajc|vb}a, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-01 15:13:12.088859 + : pb-IF4OU3QZBA== ip: azo~|l~y`~~ni, Device id: d3ae847e1bc3521b7e124ea7db7d386b72c845a3 -2023-04-01 15:13:17.112569 + : pb-IF5XU0YhKg== ip: azo~{m~~h`ao, Device id: 75ff7432c56d2b0a6ebcdf61a1cdd1675410cbdb -2023-04-01 15:13:35.153302 + : pb-IF4OU3QZBA== ip: azo~|l~y`~~ni, Device id: d3ae847e1bc3521b7e124ea7db7d386b72c845a3 -2023-04-01 15:14:21.336791 + : pb-IF5QV2kTAw== ip: a}j~~oba`gaii~, Device id: 0f930d330d32d6798357bc9cc2d102b30d48e95d -2023-04-01 15:15:01.458636 + : pb-IF4eVUJdDQ== ip: bxva}k~}ihaif~, Device id: 00aea33cef73e6fdcd33dcd5bd7722328b8194f4 -2023-04-01 15:15:30.574984 + : pb-IF4FU1daUA== ip: a~h~}jgalhalg, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-04-01 15:16:07.700429 + : pb-IF4FU1daUA== ip: a~h~}jgalhalg, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-04-01 15:20:53.466366 + : pb-IF4VU3laVA== ip: ak~~n`ajc|vb}a, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-01 15:20:53.466617 + : pb-IF49U0QJDw== ip: an~}heaii}vb|l, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 15:21:01.480888 + : pb-IF4oUxAGPQ== ip: azj~zo~}l`aidx, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-01 15:21:02.486132 + : pb-IF4eVUJdDQ== ip: bxva}k~}ihaif~, Device id: 00aea33cef73e6fdcd33dcd5bd7722328b8194f4 -2023-04-01 15:22:01.691046 + : pb-IF5VU1JZMw== ip: an~}ica`ea`b, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-01 15:22:47.881357 + : pb-IF4FU1daUA== ip: a~h~}jgameaihy, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-04-01 15:22:54.902839 + : pb-IF4wV24HBw== ip: a~o~va~}h`a`i, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-01 15:25:02.327049 + : pb-IF41U1cJUA== ip: an~}ifaicvah, Device id: cd9421950cbe1141763c00575465cc83ce8d0f9e -2023-04-01 15:25:36.443645 + : pb-IF5TAHQO ip: azo~|m~}j~~n`, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 15:25:50.479713 + : pb-IF5TAHQO ip: azo~|m~}j~~n`, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 15:27:24.819802 + : pb-IF4OU3QZBA== ip: azo~|l~y`~~ni, Device id: d3ae847e1bc3521b7e124ea7db7d386b72c845a3 -2023-04-01 15:27:33.848440 + : pb-IF4OU3QZBA== ip: azo~|l~y`~~ni, Device id: d3ae847e1bc3521b7e124ea7db7d386b72c845a3 -2023-04-01 15:28:43.089105 + : pb-IF4vVRUFVA== ip: an~}hcajbva|l, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 15:28:49.540637 + : pb-IF4VU3laVA== started kick vote for pb-IF4oUxAGPQ==. -2023-04-01 15:29:09.206644 + : pb-IF41U2scIg== ip: ak~}hhaniajd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-01 15:29:19.540736 + : Kick vote End -2023-04-01 15:29:42.306170 + : pb-IF4jU1ggEw== ip: dvvcxvb|j~}lg, Device id: 06984a49d12081c2493bb2c3f2e3ff6a10957cb1 -2023-04-01 15:30:05.393793 + : pb-IF4TV3RbDA== ip: azo~{m~}lgaa, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-01 15:31:22.663125 + : pb-IF4IU28qPA== ip: azo~zi~~naaih, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-04-01 15:31:44.747422 + : pb-IF4NUxFfEg== ip: an~}hgajavavk, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-01 15:35:57.651507 + : pb-IF4vVRUFVA== ip: an~}hcajbva|l, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 15:36:51.885074 + : pb-IF4eU1MzFA== ip: a|a~~ngaii~vcz, Device id: 2845820fe40da27f3556ad26ddd441278459a01a -2023-04-01 15:36:59.918476 + : pb-IF4NUxFfEg== ip: an~}hgajavavk, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-01 15:39:10.380187 + : pb-IF5RU3UzJA== ip: a~k~~acajbvfy, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-04-01 15:45:45.875493 + : pb-IF49U0QJDw== ip: a~o~v`~vh~}hb, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 15:46:32.019132 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-04-01 15:47:03.113715 + : pb-IF4BU1gtAA== ip: an~}icaadaab, Device id: 1f2a67f3540a90953f0d00eae021c1d40dc8c27c -2023-04-01 15:47:30.211200 + : pb-IF40VG4pMg== ip: an~~aeanaand, Device id: 157fe612350fe34266a2acab3afa7f1a14469c0e -2023-04-01 15:48:52.514757 + : pb-IF4RU1YpCA== ip: an~}heaii{vaxk, Device id: b61671b06ad2db0ff85b3f41810ea2f2264acdc7 -2023-04-01 15:49:18.606253 + : pb-IF4vVRUFVA== ip: an~}hcajbva|l, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 15:49:30.668635 + : pb-IF49U0QJDw== ip: an~}heaii{vb|l, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 15:49:43.724056 + : pb-IF4qUBYCLg== ip: dvvczvayk~|l, Device id: 9b5a9e6c39be53e7579a611f59b52aa02ed87225 -2023-04-01 15:49:59.788396 + : pb-IF4vVRUFVA== ip: an~}hcajbva|l, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 15:51:25.110622 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-01 15:51:44.167655 + : pb-IF4NUxFfEg== ip: an~}hgajavavk, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-01 15:52:56.404097 + : pb-IF4IU28qPA== ip: azo~zi~~naaih, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-04-01 15:57:45.430757 + : pb-IF49U0QJDw== ip: an~}heaii{vb|l, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 15:58:35.636394 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 16:00:12.978765 + : pb-IF4IU28qPA== ip: azo~zi~~naaih, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-04-01 16:00:14.983711 + : pb-IF4oUxAGPQ== ip: azj~zo~}l`aidx, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-01 16:00:22.005695 + : pb-IF4IU28qPA== ip: azo~zi~~naaih, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-04-01 16:00:42.064887 + : pb-IF4oUxAGPQ== ip: azj~zo~}l`aidx, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-01 16:00:59.170768 + : pb-IF4IU28qPA== ip: azo~zi~~kfajcz, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-04-01 16:01:01.177205 + : pb-IF4jF1NY ip: azj~z`~{n~}he, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-01 16:01:23.254972 + : pb-IF4jF1NY ip: azj~z`~{n~}he, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-01 16:02:00.366576 + : pb-IF49U0QJDw== ip: an~}heaii{vb|l, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 16:04:03.765880 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~}jbaieai`y, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-04-01 16:04:43.903287 + : pb-IF4tUBQnAQ== ip: an~~aeaaia`i, Device id: 78d5bc0259876147b14106e04a9163c2f68b94e4 -2023-04-01 16:04:51.940564 + : pb-IF4FUlRfAg== ip: b}k~~afaii}vcx, Device id: aba5ff826ae810b393bf32d5a9009055e5984479 -2023-04-01 16:05:36.084292 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 16:06:01.168446 + : pb-IF4vUkRaEg== ip: azo~{i~~adaiew, Device id: 6394b4f26b00e3f44dd52eaaa8b9d296c742e56a -2023-04-01 16:12:40.720019 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`amf, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-01 16:13:22.865354 + : pb-IF4yU1oxUg== ip: dvvc{ve|va{i, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-01 16:14:24.089678 + : pb-IF4cUBYfCg== ip: azo~zh~{a~~ih, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-01 16:15:43.364054 + : pb-IF4JU1YgLw== ip: azj~z`~}kbalc, Device id: 6b7eaf976d87eb13c32ff8db1f3ebb161e851785 -2023-04-01 16:15:47.751528 + : pb-IF4OUBhZEg==|| kicked > new account -2023-04-01 16:16:49.587517 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 16:17:34.771288 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-01 16:18:32.990028 + : pb-IF4VU3laVA== ip: ak~~n`ajc|vb}a, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-01 16:18:52.080891 + : pb-IF4oUxAGPQ== ip: azj~zo~}l`aidx, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-01 16:19:05.127960 + : pb-IF49UnYRLQ== | kicked > reason:Banned account -2023-04-01 16:23:27.147231 + : pb-IF4yU0hYEw== ip: awj~ya~~``aiby, Device id: 052bbfd43b91c5bc01d4ba79df1c076697418a48 -2023-04-01 16:25:40.555949 + : pb-IF4yU0hYEw== started kick vote for pb-IF4TUxEoKg==. -2023-04-01 16:26:10.556644 + : Kick vote End -2023-04-01 16:28:17.153965 + : pb-IF4jU1ggEw== ip: dvvcxvb|j~}lg, Device id: 06984a49d12081c2493bb2c3f2e3ff6a10957cb1 -2023-04-01 16:29:21.386650 + : pb-IF4NUxFfEg== ip: an~}hgajc~va{j, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-01 16:33:47.348085 + : pb-IF4jU1ggEw== ip: dvvcxvb|j~}lg, Device id: 06984a49d12081c2493bb2c3f2e3ff6a10957cb1 -2023-04-01 16:34:55.576718 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`amf, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-01 16:38:13.221441 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-01 16:38:18.236722 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 16:38:55.356537 + : pb-IF4hU04aKw== ip: ak~~idaaiak`, Device id: c22913cb5223b8d21a48862b84a5937084499f5b -2023-04-01 16:39:37.272654 + : pb-IF4hU04aKw== | kicked for chat spam -2023-04-01 16:40:01.583391 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 16:40:21.667626 + : pb-IF4AVXINBg== ip: ak~~mgajd~vavh, Device id: 02cd7cf1182f0742fdaf2c18080f041f4ba1bde7 -2023-04-01 16:41:02.825411 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 16:41:54.025994 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-01 16:43:42.400535 + : pb-IF41U2scIg== ip: ak~}hhaniajd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-01 16:43:43.402938 + : pb-IF4cUBYfCg== ip: azo~zh~|l~~`d, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-01 16:49:52.723103 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 16:51:55.159569 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 16:54:02.640661 + : pb-IF41U2scIg== ip: ak~}hhaniajd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-01 16:54:07.665702 + : pb-IF4SXhUa ip: azj~z`~xj~~l, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-01 16:54:22.713346 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-01 16:54:28.843861 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 16:56:09.240934 + : pb-IF4yVXVYIw== ip: bxvc{vevaxm, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-04-01 16:58:02.619594 + : pb-IF4IU28qPA== ip: azo~zi~~kfajcz, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-04-01 17:00:10.250123 + : pb-IF5XU247Cg== ip: a~o~}icao~}li, Device id: abf43405e7333160f868a46f6cf92073d8f36db9 -2023-04-01 17:09:31.512800 + : pb-JiNJVxBeUEBJVF9DFkRZXVxEGEdbR1lB|| kicked , for using spoofed id SatellaReinhard -2023-04-01 17:10:43.707692 + : pb-IF4IU1c6Ug== ip: azj~z`~|m~~mb, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-01 17:10:57.771554 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~}jbaieai`y, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-04-01 17:15:33.797946 + : pb-IF4vVRUFVA== ip: an~}hcajbva|l, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 17:21:03.270829 + : pb-IF41U2scIg== ip: ak~}hhaniajd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-01 17:21:33.994860 + : pb-IF4nUBgqCw==|| kicked > new account -2023-04-01 17:22:19.539348 + : pb-IF41U2scIg== ip: ak~}hhaniajd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-01 17:25:28.259490 + : pb-IF49U0QJDw== ip: an~}heaii}vaz, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 17:28:07.840594 + : pb-IF4DU1I4CQ== ip: azj~z`~}icaje, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-04-01 17:29:04.118914 + : pb-IF41U2scIg== ip: a~h~}jgaiaan, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-01 17:29:23.188713 + : pb-IF49VFQlPA== ip: azo~zh~zk~}o, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-01 17:30:58.635118 + : pb-IF5TAHQO ip: azo~|m~}i~}ji, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 17:32:42.004713 + : pb-IF4NUmY5Nw== ip: ak~~lgaj`vvbn, Device id: 8e9ebff785492f6bab2575dc2009dd19acb25abf -2023-04-01 17:33:01.090929 + : pb-IF49VFQlPA== ip: azo~zh~zk~}o, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-01 17:36:26.170372 + : pb-IF49VFQlPA== ip: azo~zh~zk~}o, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-01 17:36:49.247951 + : pb-IF49VFQlPA== ip: azo~zh~zk~}o, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-01 17:36:50.250998 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-01 17:37:07.292321 + : pb-IF4vVRUFVA== ip: an~}hcajbva|l, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 17:37:16.896025 + : pb-IF4DU1I4CQ== started kick vote for pb-IF4MU1MiKA==. -2023-04-01 17:37:46.442864 + : pb-IF49VFQlPA== ip: azo~zh~zk~}o, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-01 17:37:46.899875 + : Kick vote End -2023-04-01 17:38:19.562119 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-01 17:38:25.591379 + : pb-IF49U0QJDw== ip: an~}heaj`zvaz, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 17:39:06.693377 + : pb-IF4oUxAGPQ== ip: azj~zo~}l`aidx, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-01 17:41:08.419912 + : pb-IF4vVRUFVA== ip: an~}hcajbva|l, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 17:43:00.848386 + : pb-IF41V1kEUw== ip: azo~{a~}keajd}, Device id: a063f66f2ea2225d0ccfe7522667ff1b3d2380f9 -2023-04-01 17:46:53.837028 + : pb-IF4pU3EMUQ== ip: a~o~v`~xh~wo, Device id: 97647d0d8df774d90bd3533f7df35bd9e542e319 -2023-04-01 17:47:48.994882 + : pb-IF40U3MyVQ== ip: b}k~}kcaogaigx, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-04-01 17:47:59.019965 + : pb-IF5cVRYTCQ== ip: an~}j`aifvvaxh, Device id: be694006c26106519e4a116c55f3391b57b7caab -2023-04-01 17:49:27.329262 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`amf, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-01 17:49:50.590433 + : pb-IF4gUksyMQ== ip: b}k~}kgaaeaj`, Device id: b0ef821c8b60e5fcf4bad99d322e2a9451de48ac -2023-04-01 17:50:22.684982 + : pb-IF5dVWEJMg== ip: azo~{a~yn~wl, Device id: 5ab7cb7a5f685d0d0dc98dafbdb2ce8610260d79 -2023-04-01 17:50:43.763996 + : pb-IF4DU1I4CQ== ip: azj~z`~}iba`i, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-04-01 17:51:23.908169 + : pb-IF5TU1ddPA== ip: azj~z`~|n~}hh, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-04-01 17:52:01.034637 + : pb-IF41U2scIg== ip: ak~}hhaniajd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-01 17:54:36.567391 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-01 17:55:08.687785 + : pb-IF4SMm4l ip: ewva{n~~jdaie~, Device id: c61f9baf498b00e70fa205065a46af06bf863ce1 -2023-04-01 17:55:28.771368 + : pb-IF4BU1gtAA== ip: an~}icaadaab, Device id: 1f2a67f3540a90953f0d00eae021c1d40dc8c27c -2023-04-01 17:55:59.889835 + : pb-IF4MU08lCQ== ip: azo~|l~~lbaki, Device id: 496f898c6f42806db0970bac3faaa29f196c9610 -2023-04-01 17:56:16.932834 + : pb-IF4nUBgqCw== | kicked > reason:Banned account -2023-04-01 17:59:33.608670 + : pb-IF42UkYEXQ== ip: dvvcyva~h~~ni, Device id: c02bcaa5284fffba6ccd2f64f02722f5482600c5 -2023-04-01 18:00:13.763006 + : pb-IF5RUxkiVA== ip: gwvavh~~lfaiev, Device id: a4b01ca52d19830a29ea61207bfc102f0fa1b0c7 -2023-04-01 18:00:41.871214 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvay`, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-01 18:01:29.047949 + : pb-IF4SMm4l ip: ewva{n~~jdaie~, Device id: c61f9baf498b00e70fa205065a46af06bf863ce1 -2023-04-01 18:01:31.053289 + : pb-IF4MU08lCQ== ip: azo~|l~~lbaki, Device id: 496f898c6f42806db0970bac3faaa29f196c9610 -2023-04-01 18:04:10.684621 + : pb-IF4vVRUFVA== ip: an~}hcajbva|l, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 18:11:53.308484 + : pb-IF40UmUMEg== ip: b}k~}keaafaif, Device id: 7871fcf2cb1081a5de7b5b7b3bfc84148565e630 -2023-04-01 18:13:43.684218 + : pb-IF49U0QJDw== ip: an~}heaj`zvaz, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 18:14:22.827065 + : pb-IF5UUBI9MA== ip: azo~|j~}kcaiey, Device id: 4381142d5e8cfc6ab20167b3a40f172ee10010f5 -2023-04-01 18:16:11.197426 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-01 18:16:31.368415 + : pb-IF4wV24HBw== ip: a~o~va~~adajcz, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-01 18:16:35.375400 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvay`, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-01 18:17:10.508853 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-01 18:18:46.002366 + : pb-IF4TU08qVQ== ip: azi~wi~~haaid, Device id: ca78ade39ed1b9a8881dacdc9eb103745fa44505 -2023-04-01 18:19:06.072725 + : pb-IF4xU0kxNg== ip: avn~~aaaie}vbh, Device id: 036d001b5c12b43f710cad28a1b2ca0cfc5fb7f1 -2023-04-01 18:19:45.531935 + : pb-IF4MU08lCQ== started kick vote for pb-IF4nUxE4Nw==. -2023-04-01 18:19:53.229851 + : pb-IF4yVXVYIw== ip: bxvc{vevaxm, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-04-01 18:20:15.531116 + : Kick vote End -2023-04-01 18:21:25.900736 + : pb-IF4sUBdbIQ==|| kicked > new account -2023-04-01 18:23:50.159779 + : pb-IF49U0QJDw== ip: an~}heaj`zvaz, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 18:26:24.093749 + : pb-IF4DU0IEJg== started kick vote for pb-IF4BU1gtAA==. -2023-04-01 18:26:54.100794 + : Kick vote End -2023-04-01 18:27:31.923861 + : pb-IF4-Um4_Lw== ip: azj~zo~}hgaid}, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-04-01 18:28:51.233051 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 18:30:16.816543 + : pb-IF5RUxYjDA==|| kicked > new account -2023-04-01 18:30:39.952628 + : pb-IF4MU08lCQ== started kick vote for pb-IF4TUxEoKg==. -2023-04-01 18:30:40.672102 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 18:30:43.683456 + : pb-IF4gU2wxIg== ip: azo~|k~~adaib}, Device id: d5fcef28207c5a26ea8a9a0000ab24651e20aa81 -2023-04-01 18:30:48.792169 + : Kick vote End -2023-04-01 18:31:29.892130 + : pb-IF4MU08lCQ== started kick vote for pb-IF4oUxAGPQ==. -2023-04-01 18:31:32.835784 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 18:31:59.893326 + : Kick vote End -2023-04-01 18:36:58.213145 + : pb-IF4cUBYfCg== ip: azo~zh~yj~ym, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-01 18:40:11.861744 + : pb-IF5WUno7PQ== ip: azj~zo~}kdaiey, Device id: 6164a3526ba984be44e85dfeb8283d2a6a9f3534 -2023-04-01 18:41:04.069680 + : pb-IF4qUBYKNw== ip: an~}heajd|vak, Device id: cc76ec71ccd927ef767245e57d53cae3ac130aec -2023-04-01 18:41:33.989891 + : pb-IF4DU0IEJg== started kick vote for pb-IF4nUxE4Nw==. -2023-04-01 18:42:03.990893 + : Kick vote End -2023-04-01 18:42:42.448836 + : pb-IF49U0QJDw== ip: an~}heaj`zvaz, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 18:42:45.461544 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 18:43:41.688787 + : pb-IF4OU00jBA== ip: azj~z`~|m~}m`, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-01 18:43:44.699839 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-04-01 18:44:32.853787 + : pb-IF5WU0cRAg== ip: azh~~hgajd~vaxl, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-01 18:44:57.575202 + : pb-IF4sUBdaUg==|| kicked > new account -2023-04-01 18:45:22.041759 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 18:45:51.129118 + : pb-IF5WU0cRAg== ip: azh~~hgajd~vaxl, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-01 18:49:53.168728 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 18:49:57.191883 + : pb-IF49U0QJDw== ip: an~}heaj`zvaz, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-01 18:50:45.379041 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 18:50:53.408950 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 18:51:59.647985 + : pb-IF4FU1daUA== ip: azo~|l~}k~~`a, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-04-01 18:52:29.761796 + : pb-IF4rUBUdFg== ip: azj~z`~}iaa`c, Device id: 8c67f0fa057b6f5a3fcaed52cf58617c2b305f12 -2023-04-01 18:53:33.016656 + : pb-IF4VUlcBVQ== ip: dxvazvdaiez, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-04-01 18:53:47.062012 + : pb-IF5WU0cRAg== ip: azh~~hgajd~vaxl, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-01 18:54:09.116959 + : pb-IF4VUlcBVQ== ip: dxvazvbk~|, Device id: 6016cf2b51eaa0c2b924cbe0d0872f3772657d01 -2023-04-01 18:54:55.309488 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 18:55:35.610863 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 18:57:14.219752 + : pb-IF4hU3EgJA== ip: azo~{n~~mcaki, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-01 18:57:21.241212 + : pb-IF4hU3EgJA== ip: azo~{n~~mcaki, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-01 18:59:57.789173 + : pb-IF42U0VSCA== ip: azj~zo~yk~}ic, Device id: 97f56e82ff32ac3d7b7ab1ebb9b438973ea3593c -2023-04-01 19:00:52.018974 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 19:01:02.051142 + : pb-IF4oVEgdUw== ip: a~o~v`~wvaw, Device id: 112566a76a2ec39c1599abf0672f5e50efcd8c13 -2023-04-01 19:01:39.186349 + : pb-IF4nU1EnIw== ip: an~~abaie|vawm, Device id: fd9f20d9f4f83ccea54cdb35ac502a0c1ffda540 -2023-04-01 19:02:39.391411 + : pb-IF4sUBYJCw== ip: a~h~}jdaihyvbw, Device id: 493f1dcc64c1330bb3db80a376cdb38ba927244e -2023-04-01 19:02:57.454287 + : pb-IF4yU0hYEw== ip: awj~ya~~``aiby, Device id: 052bbfd43b91c5bc01d4ba79df1c076697418a48 -2023-04-01 19:03:08.482106 + : pb-IF4hU3EgJA== ip: azo~{n~~mcaki, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-01 19:03:12.491987 + : pb-IF5SUno-Ug== ip: dxvbvvaxm~~hf, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-04-01 19:05:07.289640 + : pb-IF4cUBYfCg== ip: azo~zh~yj~ym, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-01 19:07:15.757808 + : pb-IF4SXhUa ip: azj~z`~xi~}ii, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-01 19:08:24.020854 + : pb-IF41U0sYPA== ip: an~}ifaje~vazh, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-01 19:08:36.380198 + : pb-IF4xUBc_VQ==|| kicked > new account -2023-04-01 19:09:23.239025 + : pb-IF4-Um4_Lw== ip: azj~zo~}hgaid}, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-04-01 19:09:28.244709 + : pb-IF4yU0hYEw== ip: awj~ya~~``aiby, Device id: 052bbfd43b91c5bc01d4ba79df1c076697418a48 -2023-04-01 19:09:52.343657 + : pb-IF41U0sYPA== ip: an~}ifaje~vazh, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-01 19:10:12.413970 + : pb-IF5TAHQO ip: azo~|m~~h~wh, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 19:10:31.497720 + : pb-IF5TAHQO ip: azo~|m~~h~wh, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 19:11:11.708714 + : pb-IF4OU00jBA== started kick vote for pb-IF5SUno-Ug==. -2023-04-01 19:11:15.667683 + : pb-IF5WU0cRAg== ip: d}va`~~afan, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-01 19:11:33.952081 + : pb-IF5WU0cRAg== ip: d}va`~~afan, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-01 19:11:41.712280 + : Kick vote End -2023-04-01 19:11:46.987736 + : pb-IF4OU00jBA== ip: azj~z`~|m~}m`, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-01 19:11:48.991363 + : pb-IF5TAHQO ip: dvvcxvgzviy, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 19:12:00.048413 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-04-01 19:12:20.114731 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-04-01 19:12:34.155792 + : pb-IF40U3MyVQ== ip: b}k~}kcaogaigx, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-04-01 19:12:41.179740 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-04-01 19:13:08.265484 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-04-01 19:14:45.605776 + : pb-IF5TAHQO ip: dvvcxvgzviy, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 19:16:12.934324 + : pb-IF5VU1JZMw== ip: an~}ica`ea`b, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-01 19:16:52.056317 + : pb-IF4nUBcnPQ== ip: a~o~}k`ai~~mh, Device id: 0e464477818dad0c39c0ab8a7e8f4ae8e1465d75 -2023-04-01 19:16:57.062983 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 19:17:15.132631 + : pb-IF4SXhUa ip: azj~z`~xi~}ii, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-01 19:17:44.242921 + : pb-IF4nU1EnIw== ip: an~~abaie|vawm, Device id: fd9f20d9f4f83ccea54cdb35ac502a0c1ffda540 -2023-04-01 19:18:34.428805 + : pb-IF4eU004Ew== ip: azo~zi~{`~}ji, Device id: 245153419ceac4a55cf9e92038ffdf3864e8a262 -2023-04-01 19:21:06.973171 + : pb-IF48UBUzCg== ip: azj~zo~}iiaja~, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-04-01 19:21:26.586031 + : pb-IF4nUnZfJg== started kick vote for pb-IF4BU1gtAA==. -2023-04-01 19:21:54.133385 + : pb-IF41U0sYPA== ip: an~}ifajdwvazh, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-01 19:21:56.589389 + : Kick vote End -2023-04-01 19:22:09.170828 + : pb-IF4cUBYfCg== ip: azo~zh~yj~ym, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-01 19:22:15.194585 + : pb-IF41U2scIg== ip: ak~}hhaniajd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-01 19:23:14.703035 + : pb-IF5SUno-Ug== ip: dxvbvvaxm~~hf, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-04-01 19:23:51.855447 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-01 19:25:26.164522 + : pb-IF4SU1olUw== ip: an~}ifai`va~k, Device id: 5977afcc24357878b5a67ce1663f62b02384c734 -2023-04-01 19:25:44.248287 + : pb-IF4yU1oxUg== ip: dvvc{ve~vb|i, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-01 19:26:41.777596 + : pb-JiNJARFZUUpEWF5JFkdTXVdEEEVdQ1ZA ip: a~m~vn~xo~~nb, Device id: 05b0802de607045fa8518861defbab03e56a739f -2023-04-01 19:29:26.295353 + : pb-IF4SU1olUw== ip: an~}ifai`va~k, Device id: 5977afcc24357878b5a67ce1663f62b02384c734 -2023-04-01 19:29:33.310228 + : pb-IF4OU00jBA== ip: azj~z`~|n~~me, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-01 19:29:49.472988 + : pb-IF4nUxE4Nw== started kick vote for pb-IF41U2scIg==. -2023-04-01 19:29:59.405027 + : pb-IF4yU1oxUg== ip: dvvc{ve~vb|i, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-01 19:30:11.450374 + : pb-IF4SU1olUw== ip: an~}ifai`va~k, Device id: 5977afcc24357878b5a67ce1663f62b02384c734 -2023-04-01 19:30:19.475850 + : Kick vote End -2023-04-01 19:30:33.513708 + : pb-IF4OU00jBA== ip: azj~z`~|a~~o`, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-01 19:30:44.558316 + : pb-IF4yU1oxUg== ip: dvvc{ve~vb|i, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-01 19:30:46.875023 + : pb-IF5TAHQO ip: dvvcxvgzviy, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 19:31:29.039420 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvay`, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-01 19:31:35.056689 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvay`, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-01 19:33:07.515427 + : pb-IF4DU0IEJg== started kick vote for pb-IF4NU0wvUQ==. -2023-04-01 19:33:37.519003 + : Kick vote End -2023-04-01 19:35:18.891499 + : pb-IF4vVRUFVA== ip: an~}hcajbva|l, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 19:36:44.201986 + : pb-IF4KU1Q9Pw== ip: a~m~vo~}k~}k`, Device id: 217799c313cf0a8fc57851c7c11d507bce2f3696 -2023-04-01 19:37:24.834918 + : pb-IF4DU0IEJg== started kick vote for pb-IF4vVRUFVA==. -2023-04-01 19:37:50.483200 + : pb-IF4yU0hYEw== ip: awj~ya~~``aiby, Device id: 052bbfd43b91c5bc01d4ba79df1c076697418a48 -2023-04-01 19:37:54.836836 + : Kick vote End -2023-04-01 19:38:10.546555 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vdy, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-01 19:41:35.584233 + : pb-IF4SUBccKw==|| kicked > new account -2023-04-01 19:41:40.286936 + : pb-IF41U2scIg== ip: ak~}hhaniajd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-01 19:43:26.954821 + : pb-IF41U0sYPA== started kick vote for pb-IF4DU0IEJg==. -2023-04-01 19:43:56.957271 + : Kick vote End -2023-04-01 19:44:32.892080 + : pb-IF5TAHQO ip: dvvcxvgzviy, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 19:46:04.471036 + : pb-IF4yU1oxUg== ip: dvvc{ve~vb|i, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-01 19:46:29.552326 + : pb-IF4SXhUa ip: azj~z`~xj~~oa, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-01 19:46:30.553628 + : pb-IF4SU1olUw== ip: an~}ifai`va~k, Device id: 5977afcc24357878b5a67ce1663f62b02384c734 -2023-04-01 19:46:47.915544 + : pb-IF4DU0IEJg== started kick vote for pb-IF4KU1Q9Pw==. -2023-04-01 19:47:17.918990 + : Kick vote End -2023-04-01 19:48:28.928771 + : pb-IF4IV04ZKw== ip: azj~z`~~heajd|, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-04-01 19:49:14.128131 + : pb-IF4yU1oxUg== ip: dvvc{ve~vb|i, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-01 19:49:38.283445 + : pb-IF41UxcMFw== ip: an~}h`aohajcw, Device id: 3b328eb2123feb4ba71ed72bde894c25e3f97c99 -2023-04-01 19:49:42.289617 + : pb-IF4cUBYfCg== ip: azo~zh~|`~~ji, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-01 19:50:02.354297 + : pb-JiNJARFdXUdGW1pEE0JZV1JCEUVdQVdA ip: ak~~o~~i`a`h, Device id: d3c1b69f4abe0a30b187a9f76dd0bf2ec4316172 -2023-04-01 19:55:06.479153 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~}jbaieai`y, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-04-01 19:59:46.814831 + : pb-IF4PIFQ9 ip: a}m~va~}iian`, Device id: 593a69858f539a0b1f234b1980113bb4060a87b5 -2023-04-01 20:00:21.958206 + : pb-IF4yU3EYVQ== ip: a~a~vl~va~~aa, Device id: 4f6e7108f56a96fa41b721a4e9abd43a5049c44e -2023-04-01 20:01:32.207827 + : pb-IF4PIFQ9 ip: a}m~va~}iian`, Device id: 593a69858f539a0b1f234b1980113bb4060a87b5 -2023-04-01 20:01:36.216214 + : pb-IF41UxcMFw== ip: an~}h`aohajcw, Device id: 3b328eb2123feb4ba71ed72bde894c25e3f97c99 -2023-04-01 20:02:05.325064 + : pb-IF4PIFQ9 ip: azj~z`~}jaaic}, Device id: 593a69858f539a0b1f234b1980113bb4060a87b5 -2023-04-01 20:02:41.476980 + : pb-IF4TV2w6Bw== ip: azo~zi~wj~~oc, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-04-01 20:04:49.290351 + : pb-IF4hU3EgJA== ip: a|o~vo~vl~~na, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-01 20:05:31.450330 + : pb-IF5VVHBTBA== ip: azo~|m~~h~}ic, Device id: 972d049805af04a4c00ead87cbe30656fd50cda9 -2023-04-01 20:05:55.546767 + : pb-IF4sCXI9 ip: bxvf|vaym~xh, Device id: 016005002c5e71bc4f41ba158f73d116d7bfdf63 -2023-04-01 20:06:17.699015 + : pb-IF4vVRUFVA== ip: an~}hcajbva|l, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 20:06:50.789662 + : pb-IF4SU1olUw== ip: an~}ifai`va~k, Device id: 5977afcc24357878b5a67ce1663f62b02384c734 -2023-04-01 20:09:36.383250 + : pb-IF4yU1oxUg== ip: dvvc{vc|vawh, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-01 20:12:32.820046 + : pb-IF4sCXI9 started kick vote for pb-IF4IV04ZKw==. -2023-04-01 20:13:02.826731 + : Kick vote End -2023-04-01 20:13:37.251510 + : pb-IF5cUkwjDA== ip: dvvcyvb~l~ym, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-04-01 20:13:44.271177 + : pb-IF4SU1olUw== ip: an~}ifai`va~k, Device id: 5977afcc24357878b5a67ce1663f62b02384c734 -2023-04-01 20:13:46.279459 + : pb-IF4VU3laVA== ip: ak~~n`ajc|vb}a, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-01 20:15:42.772626 + : pb-IF5UUxU7Ag== ip: an~~agaibvayn, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-01 20:15:54.056730 + : pb-IF4hU3EgJA== ip: a|o~vo~xn~~mf, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-01 20:17:05.320838 + : pb-IF5RU3UzJA== ip: a~k~~acajbvfy, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-04-01 20:17:13.345364 + : pb-IF5RU3UzJA== ip: a~k~~acajbvfy, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-04-01 20:17:13.345690 + : pb-IF5TAHQO ip: dvvcxvgzviy, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 20:18:28.094874 + : pb-IF4VU3laVA== started kick vote for pb-IF4IV04ZKw==. -2023-04-01 20:18:58.100724 + : Kick vote End -2023-04-01 20:20:00.049395 + : pb-IF5UUxU7Ag== ip: an~~agaibvayn, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-01 20:21:33.608932 + : pb-IF5UUxU7Ag== ip: an~~agaibvayn, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-01 20:22:03.708952 + : pb-IF5cUhNfKw== ip: azo~zi~wj~~oc, Device id: f7c2220347f7ec7af91282f329ffdb9250917024 -2023-04-01 20:22:05.713180 + : pb-IF5TAHQO ip: dvvcxvgzviy, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 20:24:11.357789 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~}ka, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-01 20:24:19.385865 + : pb-IF5TAHQO ip: dvvcxvgzviy, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 20:24:31.433752 + : pb-IF5cUhNfKw== ip: azo~zi~~hfaj`|, Device id: f7c2220347f7ec7af91282f329ffdb9250917024 -2023-04-01 20:27:05.978614 + : pb-IF4TV2w6Bw== ip: azo~zi~wj~~oc, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-04-01 20:27:22.025135 + : pb-IF48UBUzCg== ip: azj~zo~}jaaic, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-04-01 20:31:53.945953 + : pb-IF40UncaLg== ip: dvvc}vbl~wj, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-01 20:32:23.060905 + : pb-IF4oUxAGPQ== ip: azj~zo~}lbama, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-01 20:32:52.152227 + : pb-IF42UkYEXQ== ip: dvvcyva~h~~ni, Device id: c02bcaa5284fffba6ccd2f64f02722f5482600c5 -2023-04-01 20:33:04.208065 + : pb-IF5RU1Y4Bg== ip: an~}iaaii}vi, Device id: ff18b05a90b05048a8f6bfeebc39ca19d22e6758 -2023-04-01 20:33:34.323660 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 20:34:25.515876 + : pb-IF5VU1JZMw== ip: an~}ica`ea`b, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-01 20:35:09.667158 + : pb-IF5RUxkiVA== ip: gwvavh~~lfaiev, Device id: a4b01ca52d19830a29ea61207bfc102f0fa1b0c7 -2023-04-01 20:35:49.798894 + : pb-IF5VU1JZMw== ip: an~}ica`ea`b, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-01 20:36:28.957400 + : pb-IF4IUBYIAw== ip: dvvc|vb{i~~jb, Device id: e1529657516c122526c890d4ade9e920a04183ad -2023-04-01 20:37:27.150263 + : pb-IF5UUxU7Ag== ip: an~~agaibvayn, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-01 20:37:31.160990 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-01 20:38:31.282771 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4IUBYIAw==. -2023-04-01 20:38:54.470703 + : pb-IF40U3MyVQ== ip: b}k~}kcaogaigx, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-04-01 20:39:01.281649 + : Kick vote End -2023-04-01 20:42:18.236567 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4IUBYIAw==. -2023-04-01 20:42:48.237514 + : Kick vote End -2023-04-01 20:44:13.616254 + : pb-IF5cUkwjDA== started kick vote for pb-IF4DU3E5AQ==. -2023-04-01 20:44:43.617689 + : Kick vote End -2023-04-01 20:46:17.057149 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4DU3E5AQ==. -2023-04-01 20:46:47.059349 + : Kick vote End -2023-04-01 20:47:59.642905 + : pb-IF5TU1ddPA== ip: azj~z`~|n~}m`, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-04-01 20:48:10.897147 + : pb-IF4IUBYIAw== started kick vote for pb-IF4AV1QqEQ==. -2023-04-01 20:48:40.900684 + : Kick vote End -2023-04-01 20:49:09.292803 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 20:50:37.503708 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4IUBYIAw==. -2023-04-01 20:51:07.504254 + : Kick vote End -2023-04-01 20:51:16.246248 + : pb-IF4IUBYIAw== | kicked for chat spam -2023-04-01 20:57:51.452628 + : pb-IF5TU1ddPA== started kick vote for pb-IF40U3MyVQ==. -2023-04-01 20:58:21.456239 + : Kick vote End -2023-04-01 21:00:11.363450 + : pb-IF4TV3RbDA== ip: azo~{m~}k`aic{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-01 21:02:22.839403 + : pb-IF5UUxU7Ag== ip: an~~agaibvayn, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-01 21:04:38.028412 + : pb-IF41UBQ-CA== ip: awj~y`~zj~vl, Device id: 1b3797710d7d8c5fe296123ad3d6a7019bfcf0f5 -2023-04-01 21:07:58.729725 + : pb-IF4TV3RbDA== ip: azo~{m~}k`aic{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-01 21:08:27.826027 + : pb-IF4cUBYfCg== ip: azo~zh~yj~}i`, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-01 21:08:49.908993 + : pb-IF5UUxU7Ag== ip: an~~agaibvayn, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-01 21:09:44.111001 + : pb-IF4IV04ZKw== ip: azj~z`~~heajd|, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-04-01 21:10:11.488369 + : pb-IF41UBcJJA==|| kicked > new account -2023-04-01 21:12:29.969328 + : pb-IF5SU3AxDA== ip: b}k~}jiaidvvdy, Device id: 4557518e637aae755eda290aed37bd4679410f36 -2023-04-01 21:16:03.782337 + : pb-IF5cU1IILQ== ip: an~}h`a`iaiey, Device id: af63fbd1dea4c37e58b0f4977a28d24644aff921 -2023-04-01 21:16:52.981138 + : pb-IF43UBclJg== ip: ak~}haaie~vf~, Device id: 98a99fd55bbf324f955a19c2261fd840aef97d63 -2023-04-01 21:17:09.025148 + : pb-IF4xU0kxNg== ip: avn~~aaaie}vbh, Device id: 036d001b5c12b43f710cad28a1b2ca0cfc5fb7f1 -2023-04-01 21:17:48.178461 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 21:19:06.443606 + : pb-IF43UBclJg== ip: ak~}haaie~vf~, Device id: 98a99fd55bbf324f955a19c2261fd840aef97d63 -2023-04-01 21:19:21.497271 + : pb-IF41UBQ-CA== ip: awj~y`~zj~vl, Device id: 1b3797710d7d8c5fe296123ad3d6a7019bfcf0f5 -2023-04-01 21:22:53.227152 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-01 21:23:12.445216 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5cU1MRDg==. -2023-04-01 21:23:42.448106 + : Kick vote End -2023-04-01 21:24:31.593304 + : pb-IF4BU1gtAA== ip: azo~|k~{k~~`g, Device id: 1f2a67f3540a90953f0d00eae021c1d40dc8c27c -2023-04-01 21:25:12.740370 + : pb-IF4cUBYfCg== ip: azo~zh~{o~za, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-01 21:30:49.281920 + : pb-IF4TV3RbDA== ip: azo~{m~}mcaih|, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-01 21:32:27.610563 + : pb-IF4gUBANJg== ip: b}k~~`faifa``, Device id: 7437f70205f01b3429b2b7de3b9e4320d422d3c1 -2023-04-01 21:32:38.665636 + : pb-IF4gUBANJg== ip: b}k~~`faifa``, Device id: 7437f70205f01b3429b2b7de3b9e4320d422d3c1 -2023-04-01 21:32:46.706007 + : pb-IF4gUBANJg== ip: b}k~~`faifa``, Device id: 7437f70205f01b3429b2b7de3b9e4320d422d3c1 -2023-04-01 21:35:07.217096 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-04-01 21:36:23.481218 + : pb-IF5SUno-Ug== ip: dxvbvvaxk~~hb, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-04-01 21:37:23.682682 + : pb-IF4BU1gtAA== ip: azo~|k~{k~~`g, Device id: 1f2a67f3540a90953f0d00eae021c1d40dc8c27c -2023-04-01 21:37:47.767833 + : pb-IF4TUBY8MQ== ip: an~}iaai`~vayj, Device id: 63151cce945b0167aae78e15c3ef0d6bb61b1f59 -2023-04-01 21:39:20.075978 + : pb-IF4vV0g8Mw== ip: dvvc{vawm~}ie, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-01 21:42:27.829573 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-04-01 21:42:47.909021 + : pb-IF4FU1daUA== ip: azo~|l~}k~~ag, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-04-01 21:44:09.205260 + : pb-IF5UU2VZMg== ip: an~~ahaaeame, Device id: 33fb24992a6b78b46eff1c3fc18955d907b04952 -2023-04-01 21:47:47.055056 + : pb-IF4IU2slBA== ip: azo~{a~~l`aab, Device id: 49d08ce2fcf3cca38e66e9d6db20af0a4f9a183d -2023-04-01 21:51:00.797720 + : pb-IF4xU0kxNg== ip: avn~~aaaie}vbh, Device id: 036d001b5c12b43f710cad28a1b2ca0cfc5fb7f1 -2023-04-01 21:53:18.337429 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vdy, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-01 21:53:57.517794 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-04-01 21:54:50.725252 + : pb-IF4NUxFfEg== ip: an~}hgajcwvdx, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-01 21:54:54.407147 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF4BU1gtAA==. -2023-04-01 21:55:24.407877 + : Kick vote End -2023-04-01 21:56:24.465802 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4NUxFfEg==. -2023-04-01 21:56:54.468477 + : Kick vote End -2023-04-01 21:58:46.600148 + : pb-IF4eU004Ew== ip: azo~zi~|k~}i, Device id: 245153419ceac4a55cf9e92038ffdf3864e8a262 -2023-04-01 21:58:51.629565 + : pb-IF4CUkheBg== ip: b~k~~nba`aajf, Device id: 4cfb634aa40f8f56a2448050d7b6cc5f312ffd18 -2023-04-01 21:59:13.705508 + : pb-IF4wU1lTFw== ip: azo~{a~yn~}k`, Device id: 1c155c23710e075021064a9318cf38ce422abbb5 -2023-04-01 21:59:49.809465 + : pb-IF4hUnMgDw== ip: azo~|`~}haaif|, Device id: 73cd412a8337ca38e507d5056db53578f4a0e13a -2023-04-01 22:01:32.865799 + : pb-IF4vV0g8Mw== | kicked for chat spam -2023-04-01 22:02:17.322453 + : pb-IF42U0VSCA== ip: azj~zo~yk~}ic, Device id: 97f56e82ff32ac3d7b7ab1ebb9b438973ea3593c -2023-04-01 22:02:28.368508 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-01 22:02:38.406114 + : pb-IF4IU2slBA== ip: azo~{a~~l`aab, Device id: 49d08ce2fcf3cca38e66e9d6db20af0a4f9a183d -2023-04-01 22:03:47.671304 + : pb-IF4IU2slBA== ip: azo~{a~~l`aab, Device id: 49d08ce2fcf3cca38e66e9d6db20af0a4f9a183d -2023-04-01 22:04:17.771217 + : pb-IF4vU0MENg== ip: azj~zo~~idanh, Device id: 6382f3717c6ac3650740a14e9d6ab4b67728a26a -2023-04-01 22:04:48.887935 + : pb-IF41U2scIg== ip: a~h~}jgaiaan, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-01 22:05:46.169786 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5XU1ENMw==. -2023-04-01 22:06:16.170198 + : Kick vote End -2023-04-01 22:07:18.548479 + : pb-IF5cU2haHA== ip: dvvcxvb{`~}md, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-04-01 22:08:45.000875 + : pb-IF5cU0kkKA== ip: an~~aeaidaif, Device id: 21134c91a35ed88f5893ed72fdae3ef94c11d099 -2023-04-01 22:08:47.008574 + : pb-IF5cUkwjDA== ip: dvvcyvb~l~ym, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-04-01 22:09:14.013029 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF5cU2haHA==. -2023-04-01 22:09:44.016161 + : Kick vote End -2023-04-01 22:11:32.709742 + : pb-IF5TAHQO ip: dvvcxvgzviy, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 22:11:34.712746 + : pb-IF5TAHQO ip: dvvcxvgzviy, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 22:11:54.792477 + : pb-IF5TUm4DNg== ip: azo~{m~}liajd{, Device id: c9806c8ee7f04e5bf4128be81c5cd841d01101c7 -2023-04-01 22:12:37.949618 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4wU1lTFw==. -2023-04-01 22:12:52.732923 + : Kick vote End -2023-04-01 22:14:07.066491 + : pb-IF42U0VSCA== started kick vote for pb-IF4AV1QqEQ==. -2023-04-01 22:14:37.068454 + : Kick vote End -2023-04-01 22:15:53.658575 + : pb-IF4XVXAcKg== ip: dvvc{vazm~wn, Device id: 6fd760bd82d0d0621d454565c14e074498b43c14 -2023-04-01 22:16:05.637129 + : pb-IF4AV1QqEQ== started kick vote for pb-IF42U0VSCA==. -2023-04-01 22:16:18.043539 + : pb-IF4pUBgsFg==|| kicked > new account -2023-04-01 22:16:32.799039 + : pb-IF41U2scIg== ip: a~h~}jgaiaan, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-01 22:16:33.804207 + : pb-IF40VG4pMg== ip: dvvcyva|n~~oc, Device id: 157fe612350fe34266a2acab3afa7f1a14469c0e -2023-04-01 22:16:35.639827 + : Kick vote End -2023-04-01 22:19:06.378946 + : pb-IF5cU2haHA== ip: dvvcxvb{`~}md, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-04-01 22:23:01.427903 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4XU0oBLg==. -2023-04-01 22:23:31.428267 + : Kick vote End -2023-04-01 22:24:33.623138 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-01 22:26:12.962673 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vdy, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-01 22:29:07.481213 + : pb-IF5cU2haHA== started kick vote for pb-IF4XU0oBLg==. -2023-04-01 22:29:37.485478 + : Kick vote End -2023-04-01 22:30:08.836485 + : pb-IF4jU1ggEw== ip: dvvcxvb|l~~`h, Device id: a64c100be999991469f0e1d353cf32082d8b6871 -2023-04-01 22:31:36.283148 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF5TUm4DNg==. -2023-04-01 22:31:52.196281 + : pb-IF4XU0oBLg== ip: azo~|j~~abaia|, Device id: 61b9a45be8cc891d9bf5f5f1c6208d0faff1b01e -2023-04-01 22:31:58.207561 + : pb-IF4DU1I4CQ== ip: azj~z`~}ibai`}, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-04-01 22:32:02.218446 + : pb-IF41U2scIg== ip: a~h~}jgaiaan, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-01 22:32:06.287084 + : Kick vote End -2023-04-01 22:33:22.486151 + : pb-IF5SUkwMAg== ip: dvvcyva~i~~j, Device id: a437c2a1793c75d0da48b9b93a0f30175d79dd89 -2023-04-01 22:33:52.603792 + : pb-IF4dU1EBUA== ip: an~}ifaje|vbo, Device id: 7dc10cb0f1e3c4df233aa300865a25faa99a2d42 -2023-04-01 22:35:12.425354 + : pb-IF5SUkwMAg== started kick vote for pb-IF5cU2haHA==. -2023-04-01 22:35:42.433249 + : Kick vote End -2023-04-01 22:36:08.069718 + : pb-IF4wVVk8Jg== ip: dzva~m~vi~xj, Device id: 62530b9e52c0b6fdb4947cced368552fe14938cf -2023-04-01 22:38:43.643586 + : pb-IF4-UxI7Mg== ip: ak~}l`aifvva{h, Device id: c9b75a67d7d77078ad188d740656d5436ebb454c -2023-04-01 22:39:17.771735 + : pb-IF5VP0cq ip: dvvd|vc|vaxi, Device id: f83246ecbce3c368deb9ee5929805cc6c7f53215 -2023-04-01 22:40:06.949147 + : pb-IF4jU1ggEw== ip: dvvcxvb|l~~`h, Device id: 06984a49d12081c2493bb2c3f2e3ff6a10957cb1 -2023-04-01 22:40:42.075356 + : pb-IF4jU1ggEw== ip: dvvcxvb|l~~`h, Device id: a64c100be999991469f0e1d353cf32082d8b6871 -2023-04-01 22:42:19.422702 + : pb-IF5TAHQO ip: dvvcxvgzviy, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 22:42:50.543732 + : pb-IF4NUxFfEg== ip: an~}hgajcxvex, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-01 22:46:32.279665 + : pb-IF4VU3laVA== ip: ak~~n`ajc|vb}a, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-01 22:49:08.847512 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vdy, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-01 22:50:06.059222 + : pb-IF4vVRUFVA== ip: an~}hcajbva|l, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 22:51:04.302428 + : pb-IF4vVRUFVA== ip: an~}hcajbva|l, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 22:51:04.302603 + : pb-IF5TAHQO ip: dvvcxvgzviy, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-01 22:51:06.315886 + : pb-IF4hU04aKw== ip: ak~~idaaiak`, Device id: c22913cb5223b8d21a48862b84a5937084499f5b -2023-04-01 22:57:53.872793 + : pb-IF4vVRUFVA== ip: a}j~~`bajaxva{`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-01 22:59:20.186190 + : pb-IF4FD1c8 ip: azo~{a~}hhalg, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-04-01 22:59:40.271604 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vdy, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-01 23:02:54.036923 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-01 23:05:44.976874 + : pb-IF5UUBkfBg==|| kicked > new account -2023-04-01 23:06:29.809578 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-01 23:10:11.577209 + : pb-IF4iUBNYIA== ip: dvvc}vb{o~~m`, Device id: 9942a7ad9c1d5a79be0bf907ec44f8feaf206d88 -2023-04-01 23:11:17.852501 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vdy, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-01 23:14:46.634086 + : pb-IF4SXhUa ip: azj~z`~xj~~ji, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-01 23:14:55.928501 + : pb-IF4vVRUFVA== started kick vote for pb-IF4sVGhZMA==. -2023-04-01 23:15:25.931547 + : Kick vote End -2023-04-01 23:15:56.899461 + : pb-IF41U2scIg== ip: ak~}hhaniajd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-01 23:16:26.983474 + : pb-IF41U2scIg== ip: ak~}hhaniajd, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-01 23:16:57.083440 + : pb-IF4TV3RbDA== ip: azo~{m~}lcaif, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-01 23:17:16.154506 + : pb-IF4eVE5eLg== ip: a~i~vj~}k~}ka, Device id: a7d608ebe426e4dcbf2541d084e311d55ef794f5 -2023-04-01 23:18:32.388388 + : pb-IF4iUmsSDw== ip: dxvc~vivvaxn, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-01 23:19:16.506977 + : pb-IF4eVE5eLg== started kick vote for pb-IF4sVGhZMA==. -2023-04-01 23:19:46.513275 + : Kick vote End -2023-04-01 23:21:33.616074 + : pb-IF4nUxE4Nw== started kick vote for pb-IF4AUloCIw==. -2023-04-01 23:22:03.621049 + : Kick vote End -2023-04-01 23:24:44.155514 + : pb-IF41U2scIg== ip: ak~za~xl~~ih, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-01 23:25:04.220616 + : pb-IF4KU1Q9Pw== ip: a~m~vo~}k~}k`, Device id: 217799c313cf0a8fc57851c7c11d507bce2f3696 -2023-04-01 23:26:47.621984 + : pb-IF4IU1c6Ug== ip: azj~z`~|m~~oi, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-01 23:30:01.300171 + : pb-IF5UU3oaJw== ip: awj~{`~}lbajd~, Device id: 0783fae4da13b304d83791ac9f7b66c557f45946 -2023-04-01 23:33:14.136747 + : pb-IF41U2scIg== ip: ak~za~xl~~ih, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-01 23:35:08.566831 + : pb-IF4-VBEiBg== ip: b}k~~`ialhajcy, Device id: 5b1af5bd1a8a567df264c6215d172c7c2902434c -2023-04-01 23:41:54.235268 + : pb-JiNJARFeUkZDWFtBE05WVFxEEUVaR1BC ip: dvvcyva|n~~oc, Device id: e4f8b55826365df40977042908f3054ca4b9119b -2023-04-01 23:45:35.221486 + : pb-IF4GVWMtUw== ip: an~~agajbve, Device id: 4c4046e628d25fd38a9e51d629144bb9919c21e5 -2023-04-01 23:46:30.653597 + : pb-JiNJARFeUkZDWFtBE05WVFxEEUVaR1BC started kick vote for pb-IF4IU1c6Ug==. -2023-04-01 23:47:00.655965 + : Kick vote End -2023-04-01 23:48:16.852462 + : pb-JiNJARFeUkZDWFtBE05WVFxEEUVaR1BC ip: dvvcyva|n~~oc, Device id: e4f8b55826365df40977042908f3054ca4b9119b -2023-04-01 23:51:47.683151 + : pb-IF4RU2ECAg== ip: dvvd|vazm~}ka, Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-04-01 23:56:15.897707 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|l~vh, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-04-01 23:57:21.118458 + : pb-IF5dU3UiAw== ip: azo~{a~~`hajc, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-02 00:02:45.425162 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-02 00:03:20.539817 + : pb-IF5TAHQO ip: dvvcxvgzviy, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-02 00:08:25.581155 + : pb-IF49VFQlPA== ip: azo~zh~yj~~oc, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-02 00:11:32.449690 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~}ka, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-02 00:14:34.096027 + : pb-IF5dU3UiAw== started kick vote for pb-IF5RUBZZJg==. -2023-04-02 00:15:04.097307 + : Kick vote End -2023-04-02 00:15:12.293098 + : pb-IF4IV04ZKw== ip: azj~z`~~heaibz, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-04-02 00:19:18.229497 + : pb-IF4jF1NY ip: azj~z`~{n~~jh, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-02 00:21:51.591506 + : pb-IF5UUBkeMg==|| kicked > new account -2023-04-02 00:22:37.175609 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-02 00:24:23.620005 + : pb-IF41U2scIg== ip: a~h~}jgaiaan, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 00:26:38.353601 + : pb-IF42UBEfJA== ip: ak~~laaia}va~a, Device id: b6001bb84afc7763bc1e3a8cfb219d7072224488 -2023-04-02 00:29:15.051184 + : pb-IF5TAHQO ip: dvvcxvgzviy, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-02 00:29:57.940901 + : pb-IF4CUBhdJw==|| kicked > new account -2023-04-02 00:30:47.367356 + : pb-IF4dU1M4Mw== ip: an~}jbaib|va~`, Device id: 0ee30fa587bef96d88eca10584409f9ed0ad025f -2023-04-02 00:36:38.941969 + : pb-IF4IV04ZKw== ip: azj~z`~~heaibz, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-04-02 00:36:40.985407 + : pb-IF42UBEfJA== started kick vote for pb-IF4dU1M4Mw==. -2023-04-02 00:36:50.999797 + : pb-IF4UUlENFQ== ip: azo~{m~}hdaj`v, Device id: 4181f882c216c6a669f1509f1edc8b092ed7d12e -2023-04-02 00:37:10.985894 + : Kick vote End -2023-04-02 00:41:03.294169 + : pb-IF5TAHQO ip: dvvcxvgzviy, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-02 00:46:28.782400 + : pb-IF4iUmsSDw== ip: dxvc~vivvaxn, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-02 00:47:47.772055 + : pb-IF4UUlENFQ== started kick vote for pb-IF4dU1M4Mw==. -2023-04-02 00:48:17.775894 + : Kick vote End -2023-04-02 00:49:09.351784 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`amf, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-02 00:50:03.545583 + : pb-IF4LUBNTDA== ip: dvvcyvd}viw, Device id: 11e79e9150dcf2922f8ef423ced6ce0db602ccf8 -2023-04-02 00:57:23.210635 + : pb-IF5VUlYhJw== ip: azo~zh~}o~~hb, Device id: 49aba9148ddf7a23b2257abcdb8b9b0f0e4cddc9 -2023-04-02 00:59:34.010074 + : pb-IF41U2scIg== ip: a~h~}jgaiaan, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 01:06:08.873124 + : pb-IF41U2scIg== ip: a~h~}jgaiaan, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 01:12:09.124280 + : pb-IF5VUlYhJw== started kick vote for pb-IF4IV04ZKw==. -2023-04-02 01:12:39.127649 + : Kick vote End -2023-04-02 01:13:00.543180 + : pb-IF5VUlYhJw== | kicked for chat spam -2023-04-02 01:19:50.459653 + : pb-IF5TAHQO ip: dvvcxvgzviy, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-02 01:20:11.529338 + : pb-IF4iUmsSDw== ip: dxvc~vivvaxn, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-02 01:20:12.533694 + : pb-IF5TAHQO ip: dvvcxvgzviy, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-02 01:22:41.248410 + : pb-IF5TAHQO ip: dvvcxvgzviy, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-02 01:25:13.779879 + : pb-IF4wV3AmPQ== ip: bxvevvb~k~~mb, Device id: 780ce7f2bbfc113065e30ea1b812050a66a4272b -2023-04-02 01:28:22.754404 + : pb-IF5TAHQO ip: dvvcxvgzviy, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-02 01:28:24.766313 + : pb-IF4iUmsSDw== ip: dxvc~vivvaxn, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-02 01:30:03.126266 + : pb-IF4jF1NY ip: azj~z`~{n~~jh, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-02 01:32:07.575997 + : pb-IF49VFQlPA== ip: azo~zh~yj~~oc, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-02 01:34:00.156323 + : pb-IF4jF1NY ip: azj~z`~{n~~jh, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-02 01:36:45.396909 + : pb-IF4jF1NY started kick vote for pb-IF4QUBYzNw==. -2023-04-02 01:37:15.402459 + : Kick vote End -2023-04-02 01:42:28.685725 + : pb-IF4QUBYzNw== | kicked for chat spam -2023-04-02 01:51:21.456753 + : pb-IF4jF1NY started kick vote for pb-IF4AVRcvKQ==. -2023-04-02 01:51:51.455058 + : Kick vote End -2023-04-02 01:55:41.530482 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`amf, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-02 01:58:48.214854 + : pb-IF41U2scIg== ip: a~h~}jgaiaan, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 02:04:33.486971 + : pb-IF4XVHBdIQ== ip: azj~z`~}ibaih{, Device id: bb4a1622c7601f1a78263c6066c8e905a694ffb2 -2023-04-02 02:10:27.328651 + : pb-IF4vVRUFVA== ip: a}j~~`bajaxva{`, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 02:15:08.378439 + : pb-IF5TAHQO ip: dvvcxvgzviy, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-02 02:25:35.644079 + : pb-IF5TAHQO ip: dvvcxvgzviy, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-02 03:00:59.545866 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-02 03:15:31.574123 + : pb-IF5TAHQO ip: dvvcxvgzviy, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-02 03:23:04.199816 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-02 03:45:18.822382 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-02 04:06:44.127231 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-02 04:28:27.974416 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-02 05:13:42.927290 + : pb-IF5RUxkiVA== ip: gwvavh~~lfaiev, Device id: a4b01ca52d19830a29ea61207bfc102f0fa1b0c7 -2023-04-02 05:15:53.374466 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-02 05:30:11.357976 + : pb-IF4eUBMTKA== ip: ak~za~xl~vh, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-02 05:30:49.480854 + : pb-IF4eUBMTKA== ip: ak~za~xl~vh, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-02 06:20:52.864828 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-02 07:04:29.736545 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-02 07:25:44.262460 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-02 07:29:33.011845 + : pb-IF48UBUzCg== ip: azj~zo~}kaajav, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-04-02 07:31:21.705900 + : pb-IF4-AGI7 ip: bxvf}vb{l~~kg, Device id: 6a535b97c0878720163589854d02e6142d78131b -2023-04-02 07:39:42.527235 + : pb-IF4cU1gfEw== ip: azj~z`~|l~{`, Device id: 71cd19fd6e6a84c70ba73038e3c243b26bb31fd8 -2023-04-02 07:47:31.286080 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-02 08:00:30.412805 + : pb-IF4PUBhZDQ==|| kicked > new account -2023-04-02 08:16:12.681919 + : pb-IF4WU0wvVA== ip: d}van~}kfaaa, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-02 08:30:31.979258 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-02 08:35:06.060609 + : pb-IF4nUncOEA== ip: avo~~jaamfajbw, Device id: 6bab241b16cf8242849be6fbf896835279bf190d -2023-04-02 08:43:05.767186 + : pb-IF49U0QJDw== ip: an~}heaj`{vb|l, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-02 08:43:24.818226 + : pb-IF4SXhUa ip: azj~z`~xj~}ib, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-02 08:46:30.622568 + : pb-IF4SXhUa ip: azj~z`~xj~}ib, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-02 08:46:38.655014 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-02 08:53:34.176125 + : pb-IF4SXhUa ip: azj~z`~xj~}ib, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-02 08:55:57.681550 + : pb-IF49U0QJDw== ip: an~}heaj`{vb|l, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-02 08:57:19.955111 + : pb-IF4IU2slBA== ip: azo~{a~~jiaidx, Device id: 49d08ce2fcf3cca38e66e9d6db20af0a4f9a183d -2023-04-02 09:10:43.844640 + : pb-IF4iUmsSDw== ip: dxvc~vivva}l, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-02 09:13:47.942968 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`amf, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-02 09:15:37.329398 + : pb-IF5XU0YhKg== ip: azo~{m~wh~~kd, Device id: 009307dd452aa63a0473545aea930364bd26abb4 -2023-04-02 09:22:42.814006 + : pb-IF40U006LA== ip: a~j~~keanhajb}, Device id: 8152065735a1adcc2e41d2fac46308736bb5eb90 -2023-04-02 09:26:23.033620 + : pb-IF4yVFgOVA== ip: ak~~lhajaaiez, Device id: d854623f8a8ec9715c4cf1e44f2a453d5344d791 -2023-04-02 09:27:03.924529 + : pb-IF4iUmsSDw== started kick vote for pb-IF4yVFgOVA==. -2023-04-02 09:27:11.959933 + : Kick vote End -2023-04-02 09:31:45.451852 + : pb-IF4GU0FeFQ== ip: d|vb}l~wvawn, Device id: 88037ec404c87538bbe04e5b633696e4e7202170 -2023-04-02 09:32:34.629347 + : pb-IF4cUBYfCg== ip: azo~zh~zn~~me, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-02 09:33:57.901367 + : pb-IF4BU1gtAA== ip: awj~ya~~j~~li, Device id: 1f2a67f3540a90953f0d00eae021c1d40dc8c27c -2023-04-02 09:37:14.236699 + : pb-IF4PUBNfBw== started kick vote for pb-IF4iUmsSDw==. -2023-04-02 09:37:17.558599 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-02 09:37:44.244177 + : Kick vote End -2023-04-02 09:41:30.805401 + : pb-IF5SUno-Ug== ip: dxvbvvaxl~~a, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-04-02 09:43:09.778815 + : pb-IF4MUBcAAA==|| kicked > new account -2023-04-02 09:46:54.095982 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4OUBJaPw==. -2023-04-02 09:47:24.099648 + : Kick vote End -2023-04-02 09:50:52.991043 + : pb-IF5RU3UzJA== ip: a~k~~acaohajb, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-04-02 09:52:27.488386 + : pb-IF40UmUMEg== ip: b}k~}keaafaif, Device id: 7871fcf2cb1081a5de7b5b7b3bfc84148565e630 -2023-04-02 09:56:55.475057 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4BU1gtAA==. -2023-04-02 09:57:25.479968 + : Kick vote End -2023-04-02 09:57:41.788327 + : pb-IF4PV24yPA== ip: an~}hgajdwvbzk, Device id: 5bd1087e38783d3d08f01cfce5d36dfbf8440740 -2023-04-02 09:59:21.147978 + : pb-IF5RU3UzJA== ip: a~k~~acaohajb, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-04-02 10:00:45.929663 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4BU1gtAA==. -2023-04-02 10:01:15.929687 + : Kick vote End -2023-04-02 10:02:46.025368 + : pb-IF5cU2haHA== ip: bxvevvi~vhz, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-04-02 10:08:22.650077 + : pb-IF4OU3QZBA== ip: azo~|l~y`~{, Device id: d3ae847e1bc3521b7e124ea7db7d386b72c845a3 -2023-04-02 10:09:00.775833 + : pb-IF4LU0wKIw== ip: azj~zo~}kcaiay, Device id: d7fd941c19ccd83e645ac8b7c2db405f0af9c4ff -2023-04-02 10:09:18.291277 + : pb-IF5cU2haHA== started kick vote for pb-IF4QVUUeLg==. -2023-04-02 10:09:48.292667 + : Kick vote End -2023-04-02 10:11:08.275306 + : pb-IF4MUBcAAA== | kicked > reason:Banned account -2023-04-02 10:11:31.362602 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`amf, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-02 10:15:14.722244 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4BU1gtAA==. -2023-04-02 10:15:44.727148 + : Kick vote End -2023-04-02 10:19:18.908561 + : pb-IF4TUxEoKg== started kick vote for pb-JiNJARBSV0pEWFpGEEJVUlBLEEVWQ1dD. -2023-04-02 10:19:48.907000 + : Kick vote End -2023-04-02 10:21:55.178185 + : pb-IF4IU1c6Ug== ip: azj~z`~|o~|o, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-02 10:22:23.266990 + : pb-IF4jF1NY ip: a~j~xa~xj~}ib, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-02 10:22:44.338665 + : pb-IF4cUBYfCg== ip: azo~zh~|m~}kf, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-02 10:23:13.428907 + : pb-IF4jF1NY ip: azj~z`~{`~~kb, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-02 10:24:46.148490 + : pb-IF43UlceUA== ip: ak~~hiamfaki, Device id: b62d570fb6930d0b140e029ab1afa81a44b55c1c -2023-04-02 10:25:14.249372 + : pb-IF49U0QJDw== ip: b}k~~`ha`gamb, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-02 10:25:32.308799 + : pb-IF43UlceUA== ip: ak~~hiamfaki, Device id: b62d570fb6930d0b140e029ab1afa81a44b55c1c -2023-04-02 10:25:36.316502 + : pb-IF4HU1gjPQ== ip: azo~{n~~heajc|, Device id: b2007d48b5d149fc2bb865186877e0b72d7bb8cc -2023-04-02 10:26:22.601334 + : pb-IF4hU3EgJA== ip: azo~{l~~agaia~, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-02 10:28:16.208138 + : pb-IF4TUxEoKg== started kick vote for pb-IF4hU3EgJA==. -2023-04-02 10:28:46.213999 + : Kick vote End -2023-04-02 10:29:14.335673 + : pb-IF4jF1NY ip: azj~z`~{`~~kb, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-02 10:31:38.827905 + : pb-IF5SUkwMAg== ip: dvvcyvivvavo, Device id: a437c2a1793c75d0da48b9b93a0f30175d79dd89 -2023-04-02 10:36:18.813878 + : pb-IF5dVWEJMg== ip: azo~{n~~i`aib, Device id: 5ab7cb7a5f685d0d0dc98dafbdb2ce8610260d79 -2023-04-02 10:37:53.171563 + : pb-IF49U0QJDw== ip: b}k~~`ha`gamb, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-02 10:38:46.336498 + : pb-IF4HU1gjPQ== ip: azo~{n~~heajc|, Device id: b2007d48b5d149fc2bb865186877e0b72d7bb8cc -2023-04-02 10:39:10.451411 + : pb-IF4QVUUeLg== ip: a}j~~oaaibxvawh, Device id: e69b35a7de5aee49634903f5cef1401432616d4d -2023-04-02 10:41:18.909776 + : pb-IF4OU00jBA== ip: azj~z`~|l~wh, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-02 10:42:56.221231 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-02 10:43:13.318647 + : pb-IF5VU3lYDA== ip: azj~z`~~ogak, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-04-02 10:43:58.492564 + : pb-IF4SXhUa ip: azj~z`~xj~}ib, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-02 10:44:15.720295 + : pb-IF4AV1QqEQ== started kick vote for pb-JiNJARBSV0pEWFpGEEJVUlBLEEVWQ1dD. -2023-04-02 10:44:45.724089 + : Kick vote End -2023-04-02 10:45:02.771333 + : pb-IF4vVRUFVA== ip: bxveyvaxn~~he, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 10:45:07.789440 + : pb-IF4pU1MJIw== ip: a|o~vo~ya~~le, Device id: 980fcde0872cfae69d1a58d61a9917876d2a23b3 -2023-04-02 10:47:00.684103 + : pb-IF5RU3UzJA== ip: a~k~~acaohajb, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-04-02 10:48:19.791341 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`amf, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-02 10:48:19.791593 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-02 10:52:14.535388 + : pb-IF4cUBYfCg== ip: azo~zh~|j~yl, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-02 10:54:48.120839 + : pb-IF5dU3UiAw== ip: azo~{a~~n`aig~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-02 10:56:56.612411 + : pb-IF49U0QJDw== ip: b}k~~`ha`gamb, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-02 10:58:32.949821 + : pb-IF4VU3laVA== ip: ak~~n`ajc|vb}a, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-02 10:59:53.952017 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4wUBhSNQ==. -2023-04-02 11:00:17.345253 + : pb-IF4vVRUFVA== ip: bxveyvaxn~~he, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 11:00:23.956620 + : Kick vote End -2023-04-02 11:01:09.542053 + : pb-IF4cUBYfCg== ip: azo~zh~|j~yl, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-02 11:02:26.753413 + : pb-IF5dU3UiAw== started kick vote for pb-IF4vVRUFVA==. -2023-04-02 11:02:56.759128 + : Kick vote End -2023-04-02 11:03:29.411482 + : pb-IF4HUBgiNA==|| kicked > new account -2023-04-02 11:05:47.071153 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4-UBIoXA==. -2023-04-02 11:06:17.076340 + : Kick vote End -2023-04-02 11:06:43.853225 + : pb-IF40UmUMEg== ip: b}k~}keaafaif, Device id: 7871fcf2cb1081a5de7b5b7b3bfc84148565e630 -2023-04-02 11:07:36.057395 + : pb-IF4AU1daHQ== ip: dzva}n~~niaka, Device id: 4ecd784132b4e08d8b094304839983d5bf5f712e -2023-04-02 11:10:15.678649 + : pb-IF4IU1c6Ug== ip: azj~z`~|o~~jc, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-02 11:10:51.080347 + : pb-IF40UmUMEg== started kick vote for pb-IF4AV1QqEQ==. -2023-04-02 11:10:51.804656 + : pb-IF4OUBY-HA== ip: a|j~~mdakfamd, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-04-02 11:10:58.839488 + : pb-IF4wV1g4DA== ip: bxvf|vba~~oe, Device id: cdb2ac76caf3c6387fe7837c3441cbf49a7fec32 -2023-04-02 11:11:10.898414 + : pb-IF4CUnoxKQ== ip: a|o~vo~xk~xj, Device id: b92d5f0f20d136012a5d3f47cc76b8c02229342f -2023-04-02 11:11:16.918077 + : pb-IF4wV1g4DA== ip: bxvf|vba~~oe, Device id: cdb2ac76caf3c6387fe7837c3441cbf49a7fec32 -2023-04-02 11:11:21.084352 + : Kick vote End -2023-04-02 11:12:01.071798 + : pb-IF4cUBYfCg== ip: azo~zh~|j~yl, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-02 11:12:34.578696 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4mV2QoMA==. -2023-04-02 11:12:40.209521 + : pb-IF4iUmsSDw== ip: dxvc~viyvbw, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-02 11:13:04.584923 + : Kick vote End -2023-04-02 11:13:20.367572 + : pb-IF4VU3laVA== ip: ak~~n`ajc|vb}a, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-02 11:15:06.727703 + : pb-IF40U3MyVQ== ip: b}k~}kcandaidv, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-04-02 11:15:14.767228 + : pb-IF5UUBI9MA== ip: azo~|j~~adamc, Device id: 4381142d5e8cfc6ab20167b3a40f172ee10010f5 -2023-04-02 11:16:42.846658 + : pb-IF4AV1QqEQ== started kick vote for pb-IF40UmUMEg==. -2023-04-02 11:17:12.853180 + : Kick vote End -2023-04-02 11:19:57.902956 + : pb-IF5UUBI9MA== ip: azo~|j~~adamc, Device id: 4381142d5e8cfc6ab20167b3a40f172ee10010f5 -2023-04-02 11:20:28.012988 + : pb-IF4cUBYfCg== ip: azo~zh~|j~yl, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-02 11:20:47.999723 + : pb-IF40UmUMEg== | kicked for chat spam -2023-04-02 11:21:26.238965 + : pb-IF5dVWEJMg== ip: azo~{n~~i`aja, Device id: 5ab7cb7a5f685d0d0dc98dafbdb2ce8610260d79 -2023-04-02 11:21:44.297981 + : pb-IF5UUxU7Ag== ip: an~~aeal`aaa, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-02 11:21:44.785515 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4KUBUlIQ==. -2023-04-02 11:22:10.385830 + : pb-IF5UUxgjIA== ip: azj~z`~xh~~of, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-02 11:22:14.787983 + : Kick vote End -2023-04-02 11:24:16.737604 + : pb-IF4OUBY-HA== started kick vote for pb-IF40U3MyVQ==. -2023-04-02 11:24:46.744198 + : Kick vote End -2023-04-02 11:26:07.234029 + : pb-IF49U0QJDw== ip: an~}heaiixvb|l, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-02 11:27:30.505204 + : pb-IF5UUBI9MA== ip: azo~|j~}iea`g, Device id: 4381142d5e8cfc6ab20167b3a40f172ee10010f5 -2023-04-02 11:27:57.169100 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4IU1c6Ug==. -2023-04-02 11:28:06.604637 + : pb-IF4tUxRaHQ== ip: dvvd|vah~zl, Device id: e22f7bd0d54493761c7eb26874b8e114e4e6af35 -2023-04-02 11:28:27.174432 + : Kick vote End -2023-04-02 11:29:10.835147 + : pb-IF4BV2gDEA== ip: azo~{a~~``akh, Device id: 4e495003c3ee4760bccb997a6f3f8f2378e6c857 -2023-04-02 11:30:11.069752 + : pb-IF5dU3UiAw== ip: azo~{a~~n`aig~, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-02 11:32:33.614701 + : pb-IF4oUxAGPQ== ip: azj~zo~}l`ala, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-02 11:33:22.793582 + : pb-IF4cUBYfCg== ip: azo~zh~|l~~mc, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-02 11:33:29.825472 + : pb-IF4OU3QZBA== ip: azo~|l~wo~~ma, Device id: d3ae847e1bc3521b7e124ea7db7d386b72c845a3 -2023-04-02 11:34:59.148379 + : pb-IF4oUxAGPQ== ip: azj~zo~}l`ala, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-02 11:35:40.324989 + : pb-IF4yUBYcFg== ip: an~}hdaie~vbzk, Device id: bbeeaae3fa85e6d71fb6569f662047fd5a6e4fce -2023-04-02 11:38:37.939658 + : pb-IF4-UxI7Mg== ip: ak~}l`aifvva{h, Device id: c9b75a67d7d77078ad188d740656d5436ebb454c -2023-04-02 11:39:02.030073 + : pb-IF4iUmsSDw== ip: dxvc~viyvbw, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-02 11:39:08.050705 + : pb-IF49U0QJDw== ip: an~}heaiixvb|l, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-02 11:41:13.883955 + : pb-IF4oUxAGPQ== started kick vote for pb-IF4mV2QoMA==. -2023-04-02 11:41:43.885285 + : Kick vote End -2023-04-02 11:42:49.955439 + : pb-IF4cUBYfCg== ip: azo~zh~|l~~mc, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-02 11:43:55.271877 + : pb-IF4eU1MzFA== ip: a|a~~ngaigyvb}l, Device id: 2845820fe40da27f3556ad26ddd441278459a01a -2023-04-02 11:43:59.290063 + : pb-IF4MU08lCQ== ip: azo~|l~~lba`c, Device id: 496f898c6f42806db0970bac3faaa29f196c9610 -2023-04-02 11:44:12.331666 + : pb-IF5WU0cRAg== ip: azh~~hgajd~vaxl, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-02 11:44:46.467604 + : pb-IF4IV3Q5CA== ip: ak~xi~xo~}hd, Device id: 48f217bbea2b98dd33867c510af5c93b154b1e2e -2023-04-02 11:44:54.489115 + : pb-IF5WU0cRAg== ip: d}va`~~afan, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-02 11:45:38.576458 + : pb-IF41VXAhMg== started kick vote for pb-IF4oUxAGPQ==. -2023-04-02 11:46:08.580343 + : Kick vote End -2023-04-02 11:46:12.782652 + : pb-IF4WU0wvVA== ip: d}van~}kfaaa, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-02 11:46:55.931939 + : pb-IF4WU0wvVA== ip: dvvc}vawo~~ab, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-02 11:47:48.242115 + : pb-IF4eU1MzFA== ip: a|a~~ngaigyvb}l, Device id: 2845820fe40da27f3556ad26ddd441278459a01a -2023-04-02 11:48:00.287885 + : pb-IF4SUmwlVA== ip: an~~aean~|i, Device id: 6a6fcb695e4e475315c16eff4a8191b6b4a2c54c -2023-04-02 11:48:02.335847 + : pb-IF5UUxgjIA== started kick vote for pb-IF4IU1c6Ug==. -2023-04-02 11:48:32.341714 + : Kick vote End -2023-04-02 11:51:37.040527 + : pb-IF4OU00jBA== ip: azj~z`~|o~|j, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-02 11:53:33.443376 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-04-02 11:55:03.765765 + : pb-IF5VU1JZMw== ip: an~}ica`daifx, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-02 11:55:25.853224 + : pb-IF5VU1JZMw== ip: an~}ica`daifx, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-02 11:56:11.012311 + : pb-IF4sUnRSNA== ip: azj~zo~}kcajc~, Device id: bbfe8f36a42dd54e3ce9470c57394f000dadaf82 -2023-04-02 11:56:50.201495 + : pb-IF4LUkwZJw== ip: b}k~}jgamaaify, Device id: f28e90541026cc186f11d7f8bce8e3a816e88176 -2023-04-02 11:56:59.604932 + : pb-IF4WU0wvVA== started kick vote for pb-IF4iUmsSDw==. -2023-04-02 11:57:29.608569 + : Kick vote End -2023-04-02 11:58:32.664872 + : pb-IF4QU2ZeAw== ip: dvvc{vb}n~|o, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-04-02 11:59:02.767024 + : pb-IF49U0QJDw== ip: an~}heaiixvb|l, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-02 11:59:24.835443 + : pb-IF49U0QJDw== ip: an~}heaiixvb|l, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-02 12:10:09.269818 + : pb-JiNJARFcUUNFVVlHGUVZUFRDFUdeR1ZC ip: an~~aeaieaja{, Device id: 015a0cb7e587ab697743ad4583f22be93ef627fd -2023-04-02 12:12:25.886743 + : pb-IF4jF1NY ip: azj~z`~zi~~nb, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-02 12:15:06.428213 + : pb-IF4vUkgKNQ== started kick vote for pb-IF4KVUYhJA==. -2023-04-02 12:15:11.915161 + : pb-IF4KVUYhJA== kicked by kickvotes. -2023-04-02 12:15:28.528656 + : pb-IF5WU0cRAg== ip: d}va`~~afan, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-02 12:15:35.554990 + : pb-IF42UkYEXQ== ip: dvvcyval~yo, Device id: c02bcaa5284fffba6ccd2f64f02722f5482600c5 -2023-04-02 12:15:41.575051 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-02 12:16:31.665789 + : pb-IF4vUkgKNQ== started kick vote for pb-IF5WU0cRAg==. -2023-04-02 12:17:01.667765 + : Kick vote End -2023-04-02 12:17:13.915363 + : pb-IF4IV04ZKw== ip: azj~z`~xn~zn, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-04-02 12:18:31.185536 + : pb-IF40U3VYLg== ip: azo~|l~~i`aah, Device id: 1763dddbf9e2041d6c4ebbf465f4334e22a4e899 -2023-04-02 12:22:35.068089 + : pb-IF4OU3QZBA== ip: azo~|l~vk~{, Device id: d3ae847e1bc3521b7e124ea7db7d386b72c845a3 -2023-04-02 12:22:38.084763 + : pb-IF5VU1JZMw== ip: an~}ica`daifx, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-02 12:22:43.106691 + : pb-IF40U3VYLg== ip: azo~|l~~i`aah, Device id: 1763dddbf9e2041d6c4ebbf465f4334e22a4e899 -2023-04-02 12:24:02.497450 + : pb-IF4yVFgOVA== ip: ak~~lhajaaiez, Device id: d854623f8a8ec9715c4cf1e44f2a453d5344d791 -2023-04-02 12:25:52.464488 + : pb-IF5VU1JZMw== started kick vote for pb-IF4NV1UhUg==. -2023-04-02 12:26:13.974450 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`amf, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-02 12:26:22.464917 + : Kick vote End -2023-04-02 12:27:50.327310 + : pb-IF4OU1IZVg== ip: a|o~vo~yn~}ib, Device id: 541973653043d7f242ff3b1078194e8678f82921 -2023-04-02 12:28:38.488907 + : pb-IF4sUnRSNA== ip: azj~zo~}jfaaf, Device id: bbfe8f36a42dd54e3ce9470c57394f000dadaf82 -2023-04-02 12:29:55.767229 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-02 12:30:14.839252 + : pb-IF4IU2slBA== ip: azo~{a~~mfaia, Device id: 49d08ce2fcf3cca38e66e9d6db20af0a4f9a183d -2023-04-02 12:31:02.010026 + : pb-IF5SUno-Ug== ip: dxvbvvaxk~~od, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-04-02 12:32:34.364549 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 12:33:34.596470 + : pb-IF4vVRUFVA== ip: bxveyvaxn~~he, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 12:36:01.073522 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 12:36:36.197942 + : pb-IF4NUmQHLA== ip: ak~~`camdaag, Device id: 46fe52e6b804fb07a03b64d0d66cda297c976c03 -2023-04-02 12:46:09.414653 + : pb-IF4vVRUFVA== ip: bxveyvaxn~~he, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 12:48:32.357655 + : pb-IF4OU2QjMQ== started kick vote for pb-IF5XDEZf. -2023-04-02 12:49:02.361915 + : Kick vote End -2023-04-02 12:52:40.936026 + : pb-IF5SUno-Ug== ip: dxvbvvaxk~~od, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-04-02 12:52:54.992986 + : pb-IF5VU3lYDA== ip: azj~z`~~ofaig~, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-04-02 12:53:37.208895 + : pb-IF5TAHQO ip: dvvcxvg{vbw, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-02 12:54:03.300040 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-04-02 12:54:11.339504 + : pb-IF4vVRUFVA== ip: bxveyvaxn~~he, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 12:55:17.576298 + : pb-IF4oVVQbDg== ip: azo~|`~~ifajcw, Device id: 4b0b97bef0f97ca3043f24eb65aa3b6de64ecd2c -2023-04-02 12:55:51.695273 + : pb-IF5SUno-Ug== ip: dxvbvvaxk~~od, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-04-02 12:56:31.840375 + : pb-IF4NUxFfEg== ip: an~}hgajavb|, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-02 12:56:48.146328 + : pb-IF5SUno-Ug== | kicked for chat spam -2023-04-02 12:57:56.136211 + : pb-IF4IU1c6Ug== ip: azj~z`~|o~~nf, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-02 13:02:28.202864 + : pb-IF4OU00jBA== ip: azj~z`~|`~}jb, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-02 13:05:27.248429 + : pb-IF4lUBhcMA==|| kicked > new account -2023-04-02 13:05:53.942639 + : pb-IF4DU1I4CQ== ip: azj~z`~}ibaj`, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-04-02 13:08:28.647504 + : pb-IF4UUxVdMw== ip: dvvcyvavi~~ia, Device id: dc66a4ad0432bc2752e4255e9e86fb5ce4fdd039 -2023-04-02 13:09:16.112177 + : pb-IF4-UBcZUQ==|| kicked > new account -2023-04-02 13:10:28.040560 + : pb-IF5dUBlZMg== ip: an~}i`aifzvh, Device id: b3f9bbf01a51a5f27884a98c127b8b35d0b87037 -2023-04-02 13:11:23.228904 + : pb-IF4sU1lSVg== ip: a~j~}h`aig{va~`, Device id: 13e9c32088d6d7508a973b70d9a880575bb7a1e8 -2023-04-02 13:11:39.742750 + : pb-IF4DU1I4CQ== started kick vote for pb-IF4TUxEoKg==. -2023-04-02 13:12:09.745257 + : Kick vote End -2023-04-02 13:14:32.970073 + : pb-IF5VU1JZMw== ip: an~}ica`daifx, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-02 13:15:52.248152 + : pb-IF5cUkwjDA== ip: dvvcyvb~l~}je, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-04-02 13:16:38.380435 + : pb-IF4vVRUFVA== ip: bxvexvgvvaxi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 13:19:39.238653 + : pb-IF5QU3AaLg== ip: azo~|j~}o~ym, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-02 13:20:22.397400 + : pb-IF4VU3EjBg== ip: azj~z`~|a~~j`, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-04-02 13:20:26.414830 + : pb-IF4wBUUK ip: azj~z`~|n~~kc, Device id: 358a012da6dc4f5bf1a73e0563183e0a62af9e40 -2023-04-02 13:20:44.480371 + : pb-IF4VU3EjBg== ip: azj~z`~|a~~j`, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-04-02 13:23:24.030329 + : pb-IF4vVRUFVA== ip: bxvexvgvvaxi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 13:24:38.300810 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-02 13:27:36.106833 + : pb-IF40U3MyVQ== ip: b}k~}kcandaidv, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-04-02 13:28:47.333565 + : pb-IF5cUkwjDA== ip: dvvcyvb~l~}je, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-04-02 13:29:06.416157 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vax`, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-02 13:29:58.620322 + : pb-IF4WU0wvVA== ip: dvvc}vayh~}m, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-02 13:32:16.079751 + : pb-IF4-AGI7 ip: bxvf}vbzm~~i, Device id: 6a535b97c0878720163589854d02e6142d78131b -2023-04-02 13:33:45.393124 + : pb-IF5TU1ddPA== ip: azj~z`~|n~}n, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-04-02 13:35:13.693367 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vax`, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-02 13:36:25.997007 + : pb-IF4VU3EjBg== ip: azj~z`~|a~~j`, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-04-02 13:37:03.138682 + : pb-IF4rLkwp ip: a~j~~kdaja~vb, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-02 13:37:06.146126 + : pb-IF4oU3hbEQ== ip: b}k~}jgaibxva|o, Device id: 1c22b51e6e3b7cefd74efbd96700d8760d0c23f8 -2023-04-02 13:37:36.259455 + : pb-IF4qVRY4Vg== ip: b}k~}kfan`aib, Device id: d041ba866757f85834a62ef606c034afb41fd757 -2023-04-02 13:37:41.283345 + : pb-IF5VUlYhJw== ip: azo~zh~}o~~hb, Device id: 49aba9148ddf7a23b2257abcdb8b9b0f0e4cddc9 -2023-04-02 13:37:48.306925 + : pb-IF4VU3laVA== ip: ak~~n`ajc|vb}a, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-02 13:39:37.679490 + : pb-IF5VU1JZMw== ip: an~}ica`daifx, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-02 13:43:46.722057 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vb, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-02 13:48:47.081182 + : pb-IF5QU3AaLg== ip: azo~|j~}o~ym, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-02 13:48:48.723568 + : pb-IF4vVRUFVA== started kick vote for pb-IF4DU0IEJg==. -2023-04-02 13:49:18.723477 + : Kick vote End -2023-04-02 13:50:15.383657 + : pb-IF4NUxFfEg== ip: an~}hgajavax`, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-02 13:52:38.878515 + : pb-IF5cVEwDNA== ip: aakhai`vb|i, Device id: d32de0090f23346f62ef4d7ce7374d25f164196b -2023-04-02 13:52:43.436229 + : pb-IF4DU0IEJg== started kick vote for pb-IF4vVRUFVA==. -2023-04-02 13:52:43.886461 + : pb-IF5cVEwDNA== ip: aakhai`vb|i, Device id: d32de0090f23346f62ef4d7ce7374d25f164196b -2023-04-02 13:52:53.912334 + : pb-IF4vU0MENg== ip: awj~ya~}j`alg, Device id: 6382f3717c6ac3650740a14e9d6ab4b67728a26a -2023-04-02 13:52:59.922683 + : pb-IF5cVEwDNA== ip: aakhai`vb|i, Device id: d32de0090f23346f62ef4d7ce7374d25f164196b -2023-04-02 13:53:11.971628 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 13:53:13.438683 + : Kick vote End -2023-04-02 13:54:34.264937 + : pb-IF43UlceUA== ip: ak~~hiamfaki, Device id: b62d570fb6930d0b140e029ab1afa81a44b55c1c -2023-04-02 13:57:08.864508 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 13:58:43.226957 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-02 13:59:49.445170 + : pb-IF4vVRUFVA== ip: bxvexvgvvaxi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 14:00:14.743595 + : pb-IF4DU0IEJg== started kick vote for pb-IF5QU3AaLg==. -2023-04-02 14:00:44.745444 + : Kick vote End -2023-04-02 14:01:05.760427 + : pb-IF4nVEY-PA== ip: bxvf~vb|n~~ne, Device id: 274c0eb29438e37a9fd5de5c04997e31b078d217 -2023-04-02 14:01:12.782479 + : pb-IF5cU0MRMg== ip: a~o~}jhaifyvb, Device id: 70b142c0684db0d94827a46a457054c34bde1179 -2023-04-02 14:02:58.143817 + : pb-IF4pU0oGMA== ip: azj~zo~yvi{, Device id: 6867e1fa2d981548cb57977e21000e7598e34750 -2023-04-02 14:03:28.247564 + : pb-IF4NUxFfEg== ip: an~}hgajavax`, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-02 14:05:23.937724 + : pb-IF4hU3EgJA== ip: azo~{l~}ibajaw, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-02 14:05:46.005748 + : pb-IF4DU0IEJg== started kick vote for pb-IF5QU3AaLg==. -2023-04-02 14:05:54.041773 + : pb-IF5cV044Jw== ip: ak~}o~vvai, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-04-02 14:06:16.005353 + : Kick vote End -2023-04-02 14:06:32.170277 + : pb-IF4yU1oxUg== ip: dvvc{vcyvb}l, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-02 14:07:16.350257 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vb, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-02 14:09:03.724728 + : pb-IF4JVXoILA== ip: a~o~}jiaidvvavk, Device id: 279cbbe2cbac04f0523d82ac5654b2b681ae9839 -2023-04-02 14:09:17.781064 + : pb-IF4-UhMADA== ip: ak~xh~~o`amd, Device id: f24f537291eb696fedb07623d252ceff2775e1af -2023-04-02 14:12:36.532584 + : pb-IF4yU1oxUg== ip: dvvc{vcyvb}l, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-02 14:12:41.552964 + : pb-IF4wU1oHMw== ip: azj~z`~|n~xn, Device id: 107b132a649f1e1eb66fe2629804686228347c0d -2023-04-02 14:13:27.707087 + : pb-IF4wU1oHMw== ip: azj~z`~|n~xn, Device id: 107b132a649f1e1eb66fe2629804686228347c0d -2023-04-02 14:14:24.908774 + : pb-IF4hVVVeHQ== ip: ak~}ifa``aiix, Device id: d48264bb111e9406c995bd034461104ca7dd849f -2023-04-02 14:16:06.308831 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 14:16:56.291514 + : pb-IF4DU0IEJg== started kick vote for pb-IF4hVVVeHQ==. -2023-04-02 14:17:25.594392 + : pb-IF4IU1c6Ug== ip: azj~z`~|o~~ai, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-02 14:17:26.293993 + : Kick vote End -2023-04-02 14:18:39.866855 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-02 14:22:16.876582 + : pb-IF4hVVVeHQ== ip: ak~}ifa``aiix, Device id: d48264bb111e9406c995bd034461104ca7dd849f -2023-04-02 14:22:31.377782 + : pb-IF4DU0IEJg== started kick vote for pb-IF5VUlYhJw==. -2023-04-02 14:23:01.380249 + : Kick vote End -2023-04-02 14:23:24.075992 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-02 14:25:50.474118 + : pb-IF4HU0QPAw== started kick vote for pb-IF4IU1c6Ug==. -2023-04-02 14:26:20.475532 + : Kick vote End -2023-04-02 14:26:21.311945 + : pb-IF4zUBgpJg==|| kicked > new account -2023-04-02 14:34:11.941500 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-02 14:35:45.156007 + : pb-IF4DU0IEJg== started kick vote for pb-JiNJARBaXUtJXF9BEENXVlxEFUFYQlFD. -2023-04-02 14:36:15.162071 + : Kick vote End -2023-04-02 14:36:46.550107 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-02 14:42:52.218646 + : pb-IF43UlceUA== ip: ak~~hiamfaki, Device id: b62d570fb6930d0b140e029ab1afa81a44b55c1c -2023-04-02 14:43:36.373352 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-02 14:45:26.619269 + : pb-IF4IU1c6Ug== started kick vote for pb-IF4mU1MGMQ==. -2023-04-02 14:45:56.621225 + : Kick vote End -2023-04-02 14:46:47.062287 + : pb-IF4rLkwp ip: a~j~~kdaja~vb, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-02 14:48:24.395632 + : pb-JiNJARFdV0tEVF9FGERSUFVKF0RdRVJB ip: an~}j`ajbwva}l, Device id: 3c67d37cb3abcaab76472f82879fac3c33ad6000 -2023-04-02 14:48:35.001927 + : pb-IF4nUxE4Nw== started kick vote for pb-IF4vVUNfEA==. -2023-04-02 14:49:05.003655 + : Kick vote End -2023-04-02 14:49:59.243838 + : pb-IF4VU3laVA== ip: ak~~n`ajc|vb}a, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-02 14:50:06.012102 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4vVUNfEA==. -2023-04-02 14:50:36.019100 + : Kick vote End -2023-04-02 14:52:10.661312 + : pb-IF4SXhUa ip: azj~z`~xj~}jg, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-02 14:54:57.432287 + : pb-IF5VU1JZMw== ip: an~}ica`daifx, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-02 14:55:04.454287 + : pb-IF49U0QJDw== ip: an~}heaj`zvbx, Device id: 24495fd5ec013cdb163a3a3931b477b63894ef12 -2023-04-02 14:57:19.032309 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-04-02 14:58:11.566096 + : pb-IF5UU0wfAA== ip: ak~~n`ajaxvb`, Device id: 86b6aa1753015b6398739bc409dc32105225b1e2 -2023-04-02 15:02:01.321203 + : pb-IF4GUBA-CQ== ip: dvvc}vava~~me, Device id: 69ffdf3555afd910f4793df517e115487fe69dbf -2023-04-02 15:02:32.753318 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4MU085LA==. -2023-04-02 15:03:02.757258 + : Kick vote End -2023-04-02 15:03:34.692018 + : pb-IF5TUm4DNg== ip: ak~}iaaigaj`, Device id: c9806c8ee7f04e5bf4128be81c5cd841d01101c7 -2023-04-02 15:04:32.908027 + : pb-IF4nVEY-PA== ip: bxvf~vb|n~~ne, Device id: 274c0eb29438e37a9fd5de5c04997e31b078d217 -2023-04-02 15:06:33.378139 + : pb-IF49U0QJDw== ip: an~}heaj`zvbx, Device id: 24495fd5ec013cdb163a3a3931b477b63894ef12 -2023-04-02 15:08:01.268939 + : pb-IF4lUBQSLg== ip: dvvc|vb}i~~mi, Device id: 323e426aeed82d1723bfbf192307d0150d4b8fc1 -2023-04-02 15:09:37.570448 + : pb-IF5TU1ddPA== ip: azj~z`~|n~yo, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-04-02 15:10:04.649571 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vb, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-02 15:10:14.693642 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vb, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-02 15:10:24.725496 + : pb-IF5TAHQO ip: dvvcxvg{vbw, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-02 15:11:53.591897 + : pb-IF4DU0IEJg== started kick vote for pb-IF4vVUNfEA==. -2023-04-02 15:12:23.598605 + : Kick vote End -2023-04-02 15:15:57.909778 + : pb-IF49U0QJDw== ip: an~}heaj`zvbx, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-02 15:16:23.022670 + : pb-IF4DU0IEJg== started kick vote for pb-IF4MU085LA==. -2023-04-02 15:16:53.023471 + : Kick vote End -2023-04-02 15:18:11.694011 + : pb-IF49U0QJDw== ip: an~}heaj`~ve{, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-02 15:21:45.267779 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5TAHQO. -2023-04-02 15:22:01.371139 + : pb-IF4cUBcZFg==|| kicked > new account -2023-04-02 15:22:15.271659 + : Kick vote End -2023-04-02 15:23:17.668281 + : pb-IF4lUBcSNg==|| kicked > new account -2023-04-02 15:23:59.507474 + : pb-IF4eVUJdDQ== ip: dzvf{vb~h~ya, Device id: 00aea33cef73e6fdcd33dcd5bd7722328b8194f4 -2023-04-02 15:25:15.781835 + : pb-IF4QU2ZeAw== ip: azo~|j~~n~{i, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-04-02 15:26:32.045294 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 15:27:39.042777 + : pb-IF4QU2ZeAw== started kick vote for pb-IF5TU1ddPA==. -2023-04-02 15:28:09.049124 + : Kick vote End -2023-04-02 15:28:48.915446 + : pb-IF4QU2ZeAw== ip: azo~|j~~n~{i, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-04-02 15:29:48.155607 + : pb-IF4QU2ZeAw== ip: azo~|j~~n~{i, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-04-02 15:30:23.276642 + : pb-IF49U0QJDw== ip: an~}heaj`~ve{, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-02 15:31:26.740818 + : pb-IF4hU3EgJA== ip: azo~{l~}idaj`v, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-02 15:31:30.432283 + : pb-IF4QU2ZeAw== started kick vote for pb-IF4eVUJdDQ==. -2023-04-02 15:32:00.437032 + : Kick vote End -2023-04-02 15:32:58.052751 + : pb-IF4QU2ZeAw== ip: azo~|j~~n~{i, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-04-02 15:33:29.162582 + : pb-IF4QU2ZeAw== ip: azo~|j~~n~{i, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-04-02 15:34:41.310970 + : pb-IF4QU2ZeAw== started kick vote for pb-IF4vVUNfEA==. -2023-04-02 15:35:11.314570 + : Kick vote End -2023-04-02 15:36:02.001213 + : pb-IF49VFQlPA== ip: azo~zh~{o~xa, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-02 15:37:56.381225 + : pb-IF4eVUJdDQ== ip: dzvf{vb~h~ya, Device id: 00aea33cef73e6fdcd33dcd5bd7722328b8194f4 -2023-04-02 15:39:10.552011 + : pb-IF4QU2ZeAw== started kick vote for pb-IF5TAHQO. -2023-04-02 15:39:26.090400 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 15:39:40.558156 + : Kick vote End -2023-04-02 15:39:41.125468 + : pb-IF4TV3RbDA== ip: azo~{m~~obaiev, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-02 15:41:10.480359 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-02 15:42:26.303890 + : pb-IF5TU1ddPA== started kick vote for pb-IF4QU2ZeAw==. -2023-04-02 15:42:56.306074 + : Kick vote End -2023-04-02 15:45:36.510093 + : pb-IF49U0QJDw== ip: an~}heaj`~ve{, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-02 15:45:39.520976 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 15:45:41.522528 + : pb-IF4-Um4_Lw== ip: azo~|k~~i`aih, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-04-02 15:47:59.300827 + : pb-IF5VU3lYDA== ip: azj~z`~~ofaif~, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-04-02 15:48:56.501509 + : pb-IF5UUxU7Ag== ip: an~~aealeaaa, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-02 15:48:58.514937 + : pb-IF4oUxAGPQ== ip: azj~zo~}lba`c, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-02 15:52:52.685201 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC started kick vote for pb-IF5TUm4DNg==. -2023-04-02 15:53:05.424396 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 15:53:22.693680 + : Kick vote End -2023-04-02 15:53:35.769740 + : pb-IF4oUxAGPQ== ip: azj~zo~}lba`c, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-02 15:56:19.863189 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-02 15:56:56.007418 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 15:57:21.091307 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 15:59:57.706179 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 16:01:04.972304 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-02 16:01:48.139894 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-02 16:02:01.200332 + : pb-IF4TV3RbDA== ip: azo~{m~~obaiev, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-02 16:02:16.761367 + : pb-IF4IU2slBA== ip: azo~{a~~laaj`x, Device id: 49d08ce2fcf3cca38e66e9d6db20af0a4f9a183d -2023-04-02 16:02:41.846965 + : pb-IF4QU2ZeAw== ip: azo~|j~~n~{i, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-04-02 16:02:48.866656 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-02 16:04:28.539095 + : pb-IF49U0QJDw== ip: an~}heaj`~ve{, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-02 16:04:28.539897 + : pb-IF4QU2ZeAw== ip: azo~|j~~n~{i, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-04-02 16:04:49.613359 + : pb-IF4QU2ZeAw== ip: azo~|j~~n~{i, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-04-02 16:05:10.687538 + : pb-IF4QU2ZeAw== ip: azo~|j~~n~{i, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-04-02 16:07:04.339444 + : pb-IF4QU2ZeAw== ip: azo~|j~~n~{i, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-04-02 16:08:41.686456 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vb, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-02 16:08:48.717256 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vb, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-02 16:09:52.800003 + : pb-IF4DU0IEJg== started kick vote for pb-IF43UBcpVA==. -2023-04-02 16:09:58.989894 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 16:10:22.805564 + : Kick vote End -2023-04-02 16:12:19.730619 + : pb-IF4iUBNYIA== ip: ak~~oaaja~vaxm, Device id: 9942a7ad9c1d5a79be0bf907ec44f8feaf206d88 -2023-04-02 16:12:28.768513 + : pb-IF4yVXVYIw== ip: bxvc{vevaxi, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-04-02 16:15:29.855178 + : pb-IF5dUBYAEw== ip: an~}ifaig~vb}j, Device id: 1ce1781cac432ad157c5d56ded5051e42cd3ebb6 -2023-04-02 16:15:55.935758 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-02 16:24:47.278814 + : pb-IF5TAHQO | kicked for chat spam -2023-04-02 16:25:45.673729 + : pb-IF49U0QJDw== ip: an~}heaj`~ve{, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-02 16:27:38.458962 + : pb-IF4VU3laVA== ip: ak~~`baifyva{i, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-02 16:28:17.327609 + : pb-IF4DU0IEJg== started kick vote for pb-IF4VU3laVA==. -2023-04-02 16:28:47.332522 + : Kick vote End -2023-04-02 16:29:46.903570 + : pb-IF49U0QJDw== ip: an~}heaj`~ve{, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-02 16:30:52.305812 + : pb-IF42UBEfJA== ip: ak~~laaia}va~a, Device id: b6001bb84afc7763bc1e3a8cfb219d7072224488 -2023-04-02 16:31:53.553964 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vb, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-02 16:32:00.816346 + : pb-IF4VU3laVA== started kick vote for pb-IF4DU0IEJg==. -2023-04-02 16:32:30.823238 + : Kick vote End -2023-04-02 16:32:54.763965 + : pb-IF4-Um4_Lw== ip: azo~|k~~i`aih, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-04-02 16:33:43.963416 + : pb-JiNJARFbVkBAXV5AGE5WVVxKFkBfQlBG ip: azj~zo~}i`ao, Device id: 4bdfb7c511e32054dffaa70bd966bdfe9fe31ab2 -2023-04-02 16:33:45.977218 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 16:34:05.042504 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-02 16:34:14.075858 + : pb-IF49VFQlPA== ip: azo~zh~{o~xa, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-02 16:35:08.843132 + : pb-IF4DU0IEJg== started kick vote for pb-IF49VFQlPA==. -2023-04-02 16:35:36.681739 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 16:35:38.843418 + : Kick vote End -2023-04-02 16:36:10.935013 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 16:36:38.025936 + : pb-IF4vV0g8Mw== ip: dvvc{vaxk~|k, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-02 16:36:51.068915 + : pb-IF4KU1Q9Pw== ip: azo~zi~~i`ajf, Device id: 217799c313cf0a8fc57851c7c11d507bce2f3696 -2023-04-02 16:37:12.128806 + : pb-IF49VFdbEQ== ip: an~}hfaiivva|j, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-02 16:37:52.261469 + : pb-IF4TV3RbDA== ip: azo~{m~~ndakf, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-02 16:38:07.333494 + : pb-IF42UBEfJA== ip: ak~~laaia}va~a, Device id: b6001bb84afc7763bc1e3a8cfb219d7072224488 -2023-04-02 16:38:43.974832 + : pb-IF4DU0IEJg== started kick vote for pb-IF4-Um4_Lw==. -2023-04-02 16:39:13.974997 + : Kick vote End -2023-04-02 16:39:18.979706 + : pb-IF49UnYRLQ== | kicked > reason:Banned account -2023-04-02 16:40:32.763246 + : pb-IF4VU3laVA== started kick vote for pb-IF42UBEfJA==. -2023-04-02 16:41:02.767245 + : Kick vote End -2023-04-02 16:41:49.554469 + : pb-JiNJARBbXEFBVFdHE0dTVFJAE0lbQlZH ip: d|vbzi~~ogaib, Device id: 7bca8b55d75d9aad1f8d152e97bf4289883d3eab -2023-04-02 16:42:27.007459 + : pb-IF48UBghMA==|| kicked > new account -2023-04-02 16:42:33.841509 + : pb-IF4TV3RbDA== started kick vote for pb-IF49VFQlPA==. -2023-04-02 16:43:03.843874 + : Kick vote End -2023-04-02 16:44:22.436045 + : pb-IF4vV0g8Mw== ip: dvvc{vaxk~|k, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-02 16:45:19.630135 + : pb-IF5cU1MRDg== ip: a}j~~nda`baif~, Device id: cbf246fbadf4565304f14251f1360005f8292e46 -2023-04-02 16:45:39.693410 + : pb-IF5UUxU7Ag== ip: an~~aeakbaaa, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-02 16:45:45.711419 + : pb-IF4cUBYfCg== ip: azo~zh~|j~wa, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-02 16:48:02.407540 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4vV0g8Mw==. -2023-04-02 16:48:32.410477 + : Kick vote End -2023-04-02 16:50:23.910566 + : pb-IF4sUxNbNA== ip: b}k~~`aanfaidz, Device id: 0cf7681ebb983be0d37077adc2704bd742b5f86c -2023-04-02 16:51:21.119313 + : pb-IF4TV3RbDA== ip: azo~{m~~ndakf, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-02 16:51:21.119525 + : pb-IF49VFQlPA== ip: azo~zh~{o~xa, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-02 16:51:21.119682 + : pb-IF4sUxNbNA== ip: b}k~~`aanfaidz, Device id: 0cf7681ebb983be0d37077adc2704bd742b5f86c -2023-04-02 16:51:23.123961 + : pb-IF4vV0g8Mw== ip: dvvc{vaxk~|k, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-02 16:51:25.127754 + : pb-IF5UUxU7Ag== ip: an~~aeakbaaa, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-02 16:51:34.151961 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 16:51:39.185819 + : pb-IF4-Um4_Lw== ip: azo~|k~~i`aih, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-04-02 16:51:41.196113 + : pb-IF4MU08lCQ== ip: dvvczvayk~~kb, Device id: 496f898c6f42806db0970bac3faaa29f196c9610 -2023-04-02 16:54:34.806377 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-02 16:55:05.933118 + : pb-IF4SXhUa ip: azj~z`~xj~}ih, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-02 16:55:43.075890 + : pb-IF5VU1JZMw== ip: an~}ica`daifx, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-02 17:01:35.335296 + : pb-IF4pU3EMUQ== ip: a~o~v`~x`~~ma, Device id: 97647d0d8df774d90bd3533f7df35bd9e542e319 -2023-04-02 17:02:15.441098 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-02 17:02:24.468974 + : pb-IF4wV24HBw== ip: a~o~va~}hgajd, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-02 17:03:12.632108 + : pb-IF4OU1IZVg== ip: azo~{l~}iaajaw, Device id: 541973653043d7f242ff3b1078194e8678f82921 -2023-04-02 17:04:02.813673 + : pb-IF4MU08lCQ== ip: dvvczvayk~~kb, Device id: 496f898c6f42806db0970bac3faaa29f196c9610 -2023-04-02 17:05:39.163631 + : pb-IF5VU1JZMw== ip: an~}ica`daifx, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-02 17:06:22.325529 + : pb-IF5TAHQO ip: dvvcxvg{vbw, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-02 17:06:33.363163 + : pb-IF49U0QJDw== ip: an~}heaj`~ve{, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-02 17:07:13.501070 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-02 17:10:44.233253 + : pb-IF4MU08lCQ== ip: dvvczvayk~~kb, Device id: 496f898c6f42806db0970bac3faaa29f196c9610 -2023-04-02 17:12:23.607282 + : pb-IF4pU2IoDg== ip: ak~~nhaj`~vb|k, Device id: 2f6a950c3c941d77fc2e69d7b696ce64632690a8 -2023-04-02 17:13:28.845195 + : pb-IF5UUxU7Ag== ip: an~~aeakbaaa, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-02 17:14:30.029416 + : pb-IF43UBYDDw== ip: an~~agajdaj`x, Device id: bac9a25ddfe04cc1839f7d731f3d2d56a6f09132 -2023-04-02 17:14:47.056511 + : pb-IF4vV0g8Mw== started kick vote for pb-IF49VFQlPA==. -2023-04-02 17:14:59.135423 + : pb-IF43UBYDDw== ip: an~~agajdaj`x, Device id: bac9a25ddfe04cc1839f7d731f3d2d56a6f09132 -2023-04-02 17:15:03.148784 + : pb-IF4MU085LA== ip: b}k~~oha`eaod, Device id: fc09720498a246ca809ec2149e0e97ed763a2cc2 -2023-04-02 17:15:17.057606 + : Kick vote End -2023-04-02 17:15:41.251743 + : pb-IF4KU1Q9Pw== ip: azo~zi~ya~|`, Device id: 217799c313cf0a8fc57851c7c11d507bce2f3696 -2023-04-02 17:16:01.319385 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-02 17:16:25.408266 + : pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB ip: azj~z`~}n~~af, Device id: 1fd3c59cf1fc968b80ce5a6a63bd3fe5d3e13fac -2023-04-02 17:17:25.591194 + : pb-IF4sUxNbNA== ip: b}k~~`aanfaidz, Device id: 0cf7681ebb983be0d37077adc2704bd742b5f86c -2023-04-02 17:18:09.769776 + : pb-IF4OU1IZVg== ip: azo~{l~}iaajaw, Device id: 541973653043d7f242ff3b1078194e8678f82921 -2023-04-02 17:19:13.006806 + : pb-IF4wV24HBw== ip: a~o~va~}hgajd, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-02 17:19:24.050671 + : pb-IF4wU1oHMw== ip: dvvc{vcyvb}l, Device id: 107b132a649f1e1eb66fe2629804686228347c0d -2023-04-02 17:21:44.521125 + : pb-IF4SXhUa ip: azj~z`~xj~}ih, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-02 17:25:56.389355 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-02 17:26:15.468984 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vb, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-02 17:26:48.575844 + : pb-IF4TV3RbDA== ip: azo~{m~~naai`, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-02 17:27:51.803723 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vb, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-02 17:30:00.181498 + : pb-IF43UBYDDw== started kick vote for pb-IF4DU0IEJg==. -2023-04-02 17:30:30.181988 + : Kick vote End -2023-04-02 17:31:29.594225 + : pb-IF4MU085LA== ip: b}k~~oha`eaod, Device id: fc09720498a246ca809ec2149e0e97ed763a2cc2 -2023-04-02 17:31:47.657875 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 17:32:17.781902 + : pb-IF41UBIgUg== ip: a~j~}h`aig{va~`, Device id: 13e9c32088d6d7508a973b70d9a880575bb7a1e8 -2023-04-02 17:34:30.746805 + : pb-IF4wV24HBw== started kick vote for pb-IF4DU0IEJg==. -2023-04-02 17:35:00.754162 + : Kick vote End -2023-04-02 17:35:20.377540 + : pb-IF49U0QJDw== ip: an~}heaj`~ve{, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-02 17:38:06.946757 + : pb-IF4SXhUa ip: azj~z`~xj~}ih, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-02 17:38:46.074941 + : pb-IF41UBIgUg== ip: a~j~}h`aig{va~`, Device id: 13e9c32088d6d7508a973b70d9a880575bb7a1e8 -2023-04-02 17:39:44.310858 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 17:39:58.071283 + : pb-IF4OU2QjMQ== started kick vote for pb-IF4gU1EGCQ==. -2023-04-02 17:40:28.079912 + : Kick vote End -2023-04-02 17:41:06.603737 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 17:41:06.604697 + : pb-IF4-Um4_Lw== ip: azj~zo~~keaihv, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-04-02 17:41:15.649140 + : pb-IF4NUxFfEg== ip: an~}hgajc}vavm, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-02 17:42:11.853619 + : pb-IF4TV3RbDA== ip: azo~{m~~naai`, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-02 17:43:21.100230 + : pb-IF5TAHQO ip: dvvcxvg{vbw, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-02 17:43:34.145297 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 17:47:26.620114 + : pb-JiNJARFaV0JEXFdHEkJZVVJLFURfQVZG started kick vote for pb-IF5VUBEGAQ==. -2023-04-02 17:47:34.091259 + : pb-IF4yU1oxUg== ip: dvvc{vcyvb}l, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-02 17:47:34.217322 + : Kick vote End -2023-04-02 17:47:39.112568 + : pb-IF49VFQlPA== ip: azo~zh~{o~xa, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-02 17:47:39.113374 + : pb-IF4wU1oHMw== ip: azj~z`~|m~zh, Device id: 107b132a649f1e1eb66fe2629804686228347c0d -2023-04-02 17:48:19.263578 + : pb-IF4IUBQiCQ== ip: azj~z`~}idaie|, Device id: 10cb3b2467ab875c622b49a8e12837f8c13b91fe -2023-04-02 17:48:35.632682 + : pb-IF5dUBkJLQ==|| kicked > new account -2023-04-02 17:50:53.968272 + : pb-IF4wV24HBw== started kick vote for pb-IF4TV3RbDA==. -2023-04-02 17:51:23.973036 + : Kick vote End -2023-04-02 17:54:10.269338 + : pb-IF5TAHQO started kick vote for pb-IF4IUBQiCQ==. -2023-04-02 17:54:38.662484 + : pb-IF41V1kEUw== ip: azo~zi~~j~wn, Device id: a063f66f2ea2225d0ccfe7522667ff1b3d2380f9 -2023-04-02 17:54:40.270602 + : Kick vote End -2023-04-02 17:55:47.893466 + : pb-IF4eUxYkNg== ip: a|j~~mdaiezva~o, Device id: cf463c3e8e5177f63280992858c9206120cc78da -2023-04-02 17:56:13.987424 + : pb-IF4OU1IZVg== ip: azo~{l~}iaajaw, Device id: 541973653043d7f242ff3b1078194e8678f82921 -2023-04-02 17:56:31.047380 + : pb-IF4QU2ZeAw== ip: azo~|j~}n~}`, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-04-02 17:58:08.683929 + : pb-IF4AV1QqEQ== started kick vote for pb-IF49U0QJDw==. -2023-04-02 17:58:38.691155 + : Kick vote End -2023-04-02 17:58:53.570624 + : pb-IF4jF1NY ip: dzva~a~|h~~n, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-02 17:59:57.804025 + : pb-IF49U0QJDw== ip: an~}heaj`~ve{, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-02 18:01:11.176254 + : pb-IF4PIFQ9 ip: a}m~va~}iian`, Device id: 593a69858f539a0b1f234b1980113bb4060a87b5 -2023-04-02 18:01:43.308500 + : pb-IF4IU1c6Ug== ip: azj~z`~|o~}hh, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-02 18:02:11.426637 + : pb-IF4TV2w6Bw== ip: azo~zi~~ieaii|, Device id: 80a287f0d604941252beec3259f6ad0d60cccd4d -2023-04-02 18:02:56.581818 + : pb-IF48U1AiDg== ip: b}k~~a`aj~xm, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-02 18:04:01.897352 + : pb-IF4IU1c6Ug== ip: azj~z`~|o~}hh, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-02 18:05:06.106827 + : pb-IF4DU1I4CQ== ip: azj~z`~}ieaih|, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-04-02 18:06:22.371160 + : pb-IF4-Um4_Lw== ip: azj~zo~zi~~ka, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-04-02 18:09:13.973690 + : pb-IF4TV3RbDA== ip: azo~{m~~aaaidx, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-02 18:09:42.076573 + : pb-IF4IUBYIAw== ip: dvvc|vb~n~~of, Device id: e1529657516c122526c890d4ade9e920a04183ad -2023-04-02 18:11:58.610100 + : pb-IF4PIFQ9 ip: azj~z`~}jgaidx, Device id: 593a69858f539a0b1f234b1980113bb4060a87b5 -2023-04-02 18:12:00.156977 + : pb-IF4-Um4_Lw== started kick vote for pb-IF4IUBQiCQ==. -2023-04-02 18:12:10.661699 + : pb-IF5RU3UzJA== ip: a~k~~acaohajb, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-04-02 18:12:30.158882 + : Kick vote End -2023-04-02 18:13:43.777340 + : pb-IF4IU1c6Ug== started kick vote for pb-IF4PIFQ9. -2023-04-02 18:14:13.780707 + : Kick vote End -2023-04-02 18:15:17.319689 + : pb-IF4DU1I4CQ== started kick vote for pb-IF4IUBQiCQ==. -2023-04-02 18:15:47.326772 + : Kick vote End -2023-04-02 18:16:53.874127 + : pb-IF40U3MyVQ== ip: b}k~}kcandaidv, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-04-02 18:20:47.727303 + : pb-IF4OPhMg ip: an~}ifa`eaaa, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-04-02 18:21:11.810844 + : pb-IF5SUno-Ug== ip: dxvbvvaxk~~ai, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-04-02 18:21:46.945392 + : pb-IF40PkMh ip: a~n~xl~~kiaj`, Device id: a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e -2023-04-02 18:23:26.364758 + : pb-IF4IU1c6Ug== ip: azj~z`~|o~}hh, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-02 18:26:03.040012 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-02 18:26:42.177375 + : pb-IF4dU1EBUA== ip: an~}ifajd}vd|, Device id: 7dc10cb0f1e3c4df233aa300865a25faa99a2d42 -2023-04-02 18:28:47.622602 + : pb-IF4TV3RbDA== ip: azo~{m~~neaify, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-02 18:29:36.801144 + : pb-IF4yVFgOVA== ip: ak~~lhajaaiez, Device id: d854623f8a8ec9715c4cf1e44f2a453d5344d791 -2023-04-02 18:30:21.976231 + : pb-IF5TUm4DNg== ip: azo~{m~yl~}j, Device id: c9806c8ee7f04e5bf4128be81c5cd841d01101c7 -2023-04-02 18:30:50.082155 + : pb-IF4IU1c6Ug== ip: azj~z`~|o~}hh, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-02 18:32:46.496991 + : pb-IF5TUm4DNg== ip: azo~{m~yl~}j, Device id: c9806c8ee7f04e5bf4128be81c5cd841d01101c7 -2023-04-02 18:35:29.065702 + : pb-IF49U0QJDw== ip: an~}heaiiwve{, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-02 18:36:10.227178 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-02 18:41:15.259720 + : pb-IF49U0QJDw== ip: an~}heaiiwve{, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-02 18:43:29.752456 + : pb-IF49VFQlPA== ip: azo~zh~{o~xa, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-02 18:43:45.831904 + : pb-IF4wV24HBw== ip: a~o~va~}hgajd, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-02 18:46:07.000638 + : pb-IF4DU1I4CQ== started kick vote for pb-IF5TUm4DNg==. -2023-04-02 18:46:37.007214 + : Kick vote End -2023-04-02 18:47:31.641763 + : pb-IF4NU3IhKg== ip: bn~wl~}jiajdv, Device id: 447b2f34e6752d40d026da152470dcdab9192c75 -2023-04-02 18:49:04.852728 + : pb-IF4nUxE4Nw== started kick vote for pb-IF4IU1c6Ug==. -2023-04-02 18:49:34.859668 + : Kick vote End -2023-04-02 18:51:03.436165 + : pb-IF41VXk5PQ== ip: ak~wo~z`~~m`, Device id: e6111cf42574111f4a4279de2e701db9069fa8d0 -2023-04-02 18:54:40.271640 + : pb-IF4QVWYbFw== ip: ak~~odajd{va{, Device id: 4f0bbb11f61d8dd97d2d7252a473296450514a05 -2023-04-02 18:54:45.294798 + : pb-IF4LVWIpJA== ip: a}l~~jcaiivh, Device id: 972a16c317aa52a8610dcdf18c4f52959143defb -2023-04-02 18:55:18.406424 + : pb-IF49VFQlPA== ip: azo~zh~{o~xa, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-02 18:56:45.892846 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-02 19:00:02.653759 + : pb-IF4NUxFfEg== ip: an~}hgajbxva`, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-02 19:02:55.674476 + : pb-IF4NUxFfEg== started kick vote for pb-IF5TUm4DNg==. -2023-04-02 19:02:59.245290 + : Kick vote End -2023-04-02 19:05:07.014609 + : pb-IF4IU1c6Ug== ip: azj~z`~|o~~oe, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-02 19:05:41.136702 + : pb-IF5WU0olPA== ip: a~n~~acaid|vava, Device id: cb88e151a4792befb19360f42f9a2e5285ae5b2e -2023-04-02 19:06:37.342606 + : pb-IF5TUm4DNg== ip: azo~{m~yl~}j, Device id: c9806c8ee7f04e5bf4128be81c5cd841d01101c7 -2023-04-02 19:09:00.853915 + : pb-IF4oUxAGPQ== ip: azj~zo~}laaihv, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-02 19:09:14.898035 + : pb-IF4NUxFfEg== ip: an~}hgajbxva`, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-02 19:10:28.011917 + : pb-IF4oUxAGPQ== started kick vote for pb-IF5WU0olPA==. -2023-04-02 19:10:58.012558 + : Kick vote End -2023-04-02 19:13:32.023651 + : pb-IF4hU3EgJA== ip: azo~{l~~ahaic, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-02 19:14:53.306295 + : pb-IF4rLkwp ip: a~j~~kdaja}vawn, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-02 19:16:06.587414 + : pb-IF4rLkwp ip: a~j~~kdaja}vawn, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-02 19:16:50.755219 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-02 19:17:37.926629 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-02 19:24:17.381124 + : pb-IF5TU1ddPA== ip: azj~z`~|o~~he, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-04-02 19:29:54.579363 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-02 19:33:08.210082 + : pb-IF4-JUgB ip: ak~~j`aje}vfv, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-04-02 19:37:01.046564 + : pb-IF4cUBYfCg== ip: azo~zh~zj~~jh, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-02 19:37:35.167864 + : pb-IF5TAHQO ip: dvvcxvg{vbw, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-02 19:37:54.222044 + : pb-IF4VU3laVA== ip: ak~~`baifyva{i, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-02 19:38:04.251223 + : pb-IF5cUkwjDA== ip: dvvcyvb~l~}je, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-04-02 19:41:28.003388 + : pb-IF4jF1NY ip: aakhaidvavo, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-02 19:43:56.460313 + : pb-IF5TAHQO ip: dvvcxvg{vbw, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-02 19:44:40.605177 + : pb-IF5UUxU7Ag== ip: an~~aeakcaie|, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-02 19:45:26.928001 + : pb-IF5UUxU7Ag== ip: an~~aeakcaie|, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-02 19:47:52.422027 + : pb-IF4FU1daUA== ip: a~h~}jdaig|va~k, Device id: 854f118593ecdafb811e9cee76820ca80f592cfb -2023-04-02 19:55:06.277233 + : pb-IF4NUxFfEg== ip: an~}hgaja|vazk, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-02 19:55:45.557436 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 19:58:18.253204 + : pb-IF4rLkwp ip: a~j~~kdaja}vawn, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-02 19:58:34.493218 + : pb-IF4VU3laVA== ip: ak~~`baifyva{i, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-02 19:59:51.820282 + : pb-IF5WUk4xMQ== ip: d|vbzl~~ofai`, Device id: 748aa9dad9f34c15e223c353402f650ef3a97e93 -2023-04-02 20:01:31.187712 + : pb-IF5RU3UzJA== ip: a~k~~acaohajb, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-04-02 20:02:40.427510 + : pb-JiNJARBeUUNEVFZCEEVZVVNCFUldTldF ip: azj~zo~~agak, Device id: c3af3a9d7bc10aa271e3cb1724761a2806c051b7 -2023-04-02 20:03:55.773807 + : pb-IF40U3MyVQ== ip: b}k~}kcandaidv, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-04-02 20:05:43.129296 + : pb-IF4jUlUhMQ== ip: azo~|k~xm~wk, Device id: bcdc88c3811bcd2453c01a373cb7cc6b8ce4a04b -2023-04-02 20:08:39.993536 + : pb-IF4rLkwp ip: a~j~~kdaja}vawn, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-02 20:11:34.876699 + : pb-IF4NUxFfEg== ip: an~}hgaj`vvawk, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-02 20:14:07.666694 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vaxn, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-02 20:15:23.011080 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-JiNJARFbU0ZJVFZCEURVXFNBEEVeRFhE. -2023-04-02 20:15:53.013244 + : Kick vote End -2023-04-02 20:16:37.184343 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 20:17:42.415332 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 20:18:16.548956 + : pb-IF4SXhUa ip: azj~z`~xh~~j`, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-02 20:18:21.563604 + : pb-IF5VU1JZMw== ip: an~}ica`daifx, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-02 20:19:41.859532 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vaxn, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-02 20:25:59.664313 + : pb-IF4cUBYfCg== ip: azo~zh~zn~zh, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-02 20:26:43.801563 + : pb-IF4eU1MzFA== ip: a|a~~ngaifvvavm, Device id: 2845820fe40da27f3556ad26ddd441278459a01a -2023-04-02 20:26:59.860401 + : pb-IF4gU3QONA== ip: dvvcyva{l~~`d, Device id: 212b2d0502dc4f150744b3f7552abfe96d000e0c -2023-04-02 20:28:26.184794 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 20:30:03.614018 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vaxn, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-02 20:30:34.741060 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-02 20:41:26.632034 + : pb-IF4gU3QONA== started kick vote for pb-IF42U1YuEQ==. -2023-04-02 20:41:49.217958 + : pb-IF49VFdbEQ== ip: an~}hfaii}va~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-02 20:41:56.637758 + : Kick vote End -2023-04-02 20:42:02.254137 + : pb-IF4NUxFfEg== ip: an~}hhaifwvazl, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-02 20:47:10.638351 + : pb-IF49U0QJDw== ip: b}k~}khaj`yvhy, Device id: 52cc071e6a1ff87046bcc2f8fe24a4baa76ba2b8 -2023-04-02 20:49:58.283156 + : pb-IF4wV24HBw== ip: a~o~va~~ahajd, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-02 20:50:00.297493 + : pb-IF5VU1JZMw== ip: an~}ica`cajc, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-02 20:52:50.912158 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vb, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-02 20:54:54.494419 + : pb-IF4IU1c6Ug== ip: azj~z`~|o~~mc, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-02 20:55:01.515854 + : pb-IF4xU0kxNg== ip: avn~~aaaie}vbh, Device id: 036d001b5c12b43f710cad28a1b2ca0cfc5fb7f1 -2023-04-02 20:56:53.271122 + : pb-IF4DU0IEJg== started kick vote for pb-IF42U1YuEQ==. -2023-04-02 20:57:02.951093 + : pb-IF4DU1I4CQ== ip: azj~z`~}ieajbz, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-04-02 20:57:09.980031 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 20:57:23.272104 + : Kick vote End -2023-04-02 21:02:57.223273 + : pb-IF49U0QJDw== ip: b}k~}khaj`yvhy, Device id: 52cc071e6a1ff87046bcc2f8fe24a4baa76ba2b8 -2023-04-02 21:04:30.682405 + : pb-IF4DU0IEJg== started kick vote for pb-IF5VU1JZMw==. -2023-04-02 21:05:00.690399 + : Kick vote End -2023-04-02 21:08:14.686882 + : pb-IF49VFQlPA== ip: azo~zh~zk~vm, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-02 21:13:58.983128 + : pb-IF4rLkwp ip: a~j~~kdaja}vawn, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-02 21:15:20.285444 + : pb-IF4rLkwp ip: a~j~~kdaja}vawn, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-02 21:16:49.585583 + : pb-IF49VFQlPA== ip: azo~zh~zk~vm, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-02 21:17:57.854001 + : pb-IF4cUBYfCg== ip: azo~zh~{a~w, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-02 21:18:06.880168 + : pb-IF4rLkwp ip: a~j~~kdaja}vawn, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-02 21:18:08.882795 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 21:28:23.481283 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vb, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-02 21:29:01.648553 + : pb-IF49VFdbEQ== ip: an~}hfaii}va~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-02 21:29:24.716019 + : pb-IF49VFdbEQ== ip: an~}hfaii}va~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-02 21:29:56.819147 + : pb-IF49VFdbEQ== ip: an~}hfaii}va~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-02 21:30:23.917376 + : pb-IF4TV3RbDA== ip: azo~{m~~nfaj`z, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-02 21:40:13.009380 + : pb-IF48UBUzCg== ip: azj~zo~}jgaie, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-04-02 22:04:04.257878 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvva{va}`~yn, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-02 22:05:22.511829 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~}id, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-02 22:05:49.592537 + : pb-IF49VFdbEQ== ip: an~}hfaii}va~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-02 22:06:22.705971 + : pb-IF5cU2haHA== ip: dvvcxvbzh~yl, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-04-02 22:07:46.017891 + : pb-IF49VFQlPA== ip: azo~zh~zk~vm, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-02 22:10:34.577702 + : pb-IF4rLkwp ip: a~j~~kdajavaxh, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-02 22:12:29.983658 + : pb-IF4QU2ZeAw== ip: azo~|j~vfy, Device id: 601ed813ddf54bb1f87aa8acb8bf392b406861ac -2023-04-02 22:12:48.044165 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 22:13:01.086585 + : pb-IF49VFdbEQ== ip: an~}hfaii}va~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-02 22:13:07.115096 + : pb-IF49VFdbEQ== ip: an~}hfaii}va~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-02 22:14:14.375273 + : pb-IF4cUBYfCg== ip: azo~zh~yi~~ie, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-02 22:14:19.389736 + : pb-IF49VFQlPA== ip: azo~zh~zk~vm, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-02 22:19:33.028383 + : pb-IF49VFQlPA== ip: azo~zh~zk~vm, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-02 22:19:35.038181 + : pb-IF5cU2haHA== ip: dvvcxvbzh~yl, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-04-02 22:19:47.080849 + : pb-IF4rLkwp ip: a~j~~kdajavaxh, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-02 22:19:49.085417 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~}id, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-02 22:20:04.134159 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 22:20:58.331462 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vb, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-02 22:21:59.549972 + : pb-IF4oUxAGPQ== ip: azj~zo~}l`ak, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-02 22:22:14.607373 + : pb-IF49VFdbEQ== ip: an~}hfaii}va~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-02 22:22:25.634509 + : pb-IF49VFdbEQ== ip: an~}hfaii}va~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-02 22:23:06.811620 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 22:23:45.954110 + : pb-IF4vV0g8Mw== ip: dvvc{vaxk~|k, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-02 22:24:20.065785 + : pb-IF4pUBcZPQ== ip: a~o~}mdaiiaihy, Device id: 2555c2497e699bcccdf8c081d9834edcedaf0094 -2023-04-02 22:26:55.611257 + : pb-LV4FBEJZARZDVAtARUYDAl0WFw== ip: ak~}lhaj`|vai, Device id: 93445d06602f2e994c325788e09b460cc4ce96ad -2023-04-02 22:27:23.715800 + : pb-IF4oUxAGPQ== ip: azj~zo~}l`ak, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-02 22:28:13.874254 + : pb-IF4oUxAGPQ== ip: azj~zo~}laaifw, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-02 22:29:45.203081 + : pb-IF4TV3RbDA== ip: azo~{m~~`eai`z, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-02 22:30:20.339886 + : pb-IF4DU0IEJg== started kick vote for pb-IF4vV0g8Mw==. -2023-04-02 22:30:50.347968 + : Kick vote End -2023-04-02 22:33:50.042449 + : pb-IF4pUBcZPQ== ip: a~o~}mdaiiaihy, Device id: 2555c2497e699bcccdf8c081d9834edcedaf0094 -2023-04-02 22:34:58.287579 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~}id, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-02 22:38:36.085295 + : pb-IF4TV3RbDA== ip: azo~{m~~`eai`z, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-02 22:40:21.508223 + : pb-IF49VFdbEQ== ip: an~}hfaii}va~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-02 22:41:27.740046 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 22:44:06.350388 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 22:45:25.664463 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 22:48:28.298122 + : pb-IF5cUkwjDA== ip: dvvcyvb~l~}je, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-04-02 22:50:25.706200 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 22:52:27.183697 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-02 22:53:54.464966 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 22:54:24.867632 + : pb-IF4yUBcEAg==|| kicked > new account -2023-04-02 22:54:53.740289 + : pb-IF4SXhUa ip: azj~z`~xh~~j`, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-02 22:54:55.746442 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 22:54:58.754390 + : pb-IF4oUxAGPQ== ip: azj~zo~}laaifw, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-02 22:55:39.917163 + : pb-IF4oUxAGPQ== ip: azj~zo~}laaifw, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-02 22:56:00.090187 + : pb-IF4DU0IEJg== started kick vote for pb-IF4SXhUa. -2023-04-02 22:56:08.992494 + : pb-IF4oUxAGPQ== ip: azj~zo~}laaifw, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-02 22:56:30.167184 + : Kick vote End -2023-04-02 22:56:37.093704 + : pb-IF4oUxAGPQ== ip: azj~zo~}laaifw, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-02 22:58:05.429432 + : pb-IF49VFdbEQ== ip: an~}hfaii}va~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-02 22:58:19.484243 + : pb-IF5TU1ddPA== ip: azj~z`~|n~xh, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-04-02 22:58:31.533269 + : pb-IF4DU1I4CQ== ip: azj~z`~}ieale, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-04-02 22:58:43.585407 + : pb-IF4TV3RbDA== ip: azo~{m~~`aalc, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-02 22:59:18.712906 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vavj, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-02 22:59:54.854411 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vavj, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-02 23:00:03.127092 + : pb-IF4DU0IEJg== started kick vote for pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL. -2023-04-02 23:00:33.131362 + : Kick vote End -2023-04-02 23:02:00.317380 + : pb-IF49VFdbEQ== ip: an~}hfaii}va~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-02 23:03:58.721648 + : pb-IF49VFQlPA== ip: azo~zh~zk~vm, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-02 23:04:46.875864 + : pb-IF49VFQlPA== ip: azo~zh~zk~vm, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-02 23:05:27.045590 + : pb-IF4NUxFfEg== ip: an~}hhaifwvavn, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-02 23:06:01.137658 + : pb-IF49VFdbEQ== ip: an~}hfaii}va~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-02 23:07:57.515501 + : pb-IF4TV3RbDA== ip: azo~{m~~`aalc, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-02 23:08:15.569888 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`amf, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-02 23:09:15.763413 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-02 23:10:13.943139 + : pb-IF49VFdbEQ== ip: an~}hfaii}va~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-02 23:10:13.944618 + : pb-IF4CUnoxKQ== ip: a|o~vo~xi~~me, Device id: b92d5f0f20d136012a5d3f47cc76b8c02229342f -2023-04-02 23:12:11.398195 + : pb-IF4IUlRSCQ== ip: b}k~~`daiixvayn, Device id: ecd88bfc9f6762004295654ec8b24b1db68edfd7 -2023-04-02 23:16:43.324978 + : pb-IF4IUlRSCQ== ip: b}k~~`daiixvayn, Device id: ecd88bfc9f6762004295654ec8b24b1db68edfd7 -2023-04-02 23:18:32.762855 + : pb-IF49VFQlPA== ip: azo~zh~zk~vm, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-02 23:19:29.962938 + : pb-IF49VFQlPA== ip: azo~zh~zk~vm, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-02 23:20:34.224013 + : pb-IF49VFQlPA== ip: azo~zh~zk~vm, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-02 23:22:27.021714 + : pb-IF4DU0IEJg== started kick vote for pb-IF49VFQlPA==. -2023-04-02 23:22:57.026226 + : Kick vote End -2023-04-02 23:25:57.674897 + : pb-IF4DU0IEJg== started kick vote for pb-IF4vVRUFVA==. -2023-04-02 23:26:27.682960 + : Kick vote End -2023-04-02 23:31:03.454600 + : pb-IF4FD1c8 ip: azo~{n~~hgaiex, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-04-02 23:32:42.818449 + : pb-IF49VFQlPA== ip: azo~zh~zk~vm, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-02 23:34:33.327875 + : pb-IF5dU3UiAw== ip: azo~{a~~n`ajby, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-02 23:36:34.844674 + : pb-IF4IU1c6Ug== ip: azj~z`~|o~~id, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-02 23:37:03.939048 + : pb-IF49VFQlPA== ip: azo~zh~zk~vm, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-02 23:39:20.423991 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 23:39:39.508631 + : pb-IF4FUEY4 ip: ak~~h~}jdaja{, Device id: 452bcd37350866efb1deb4f785c1364a1abde5d2 -2023-04-02 23:39:56.567340 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 23:40:08.590886 + : pb-IF5TAHQO ip: dvvcxvg{vbw, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-02 23:40:12.605142 + : pb-IF4FUEY4 ip: ak~~h~}jdaja{, Device id: 452bcd37350866efb1deb4f785c1364a1abde5d2 -2023-04-02 23:40:58.766975 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 23:42:57.190768 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 23:45:04.695244 + : pb-IF4IU1c6Ug== ip: azj~z`~|o~~id, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-02 23:45:59.927077 + : pb-IF4FUEY4 ip: ak~~h~}jdaja{, Device id: 452bcd37350866efb1deb4f785c1364a1abde5d2 -2023-04-02 23:47:11.216176 + : pb-IF4DU1I4CQ== ip: azj~z`~}icaig}, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-04-02 23:47:19.241010 + : pb-IF49VFQlPA== ip: azo~zh~zk~vm, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-02 23:48:14.456015 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-02 23:49:13.677645 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-02 23:51:35.235197 + : pb-IF4-UxYEMQ== ip: a~h~}jeaaeaja, Device id: 0ccaac75560f7679a2854ef7202a5147a9eac04c -2023-04-02 23:53:28.626935 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF ip: an~}iean~~kg, Device id: 19cab23c5e27d40b623af49d1e26a3594d5358dc -2023-04-02 23:56:39.331281 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vb, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-02 23:57:46.573242 + : pb-IF5TAHQO ip: dvvcxvg{vbw, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-03 00:08:53.479218 + : pb-IF4JU1oiDQ== ip: axa~zo~}kgai, Device id: 6a07b1a8d768502dcef6b3db8fcc84e3528fb4c2 -2023-04-03 00:11:11.426501 + : pb-IF4JU1oiDQ== started kick vote for pb-IF41U2scIg==. -2023-04-03 00:11:41.428889 + : Kick vote End -2023-04-03 00:14:07.820948 + : pb-IF4OUBY-HA== ip: a|a~~ngaifva|i, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-04-03 00:14:51.991346 + : pb-IF4OUBY-HA== ip: a|a~~ngaifva|i, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-04-03 00:14:59.016250 + : pb-IF4OUBY-HA== ip: a|a~~ngaifva|i, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-04-03 00:17:38.566679 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF ip: an~}iean~~kg, Device id: 19cab23c5e27d40b623af49d1e26a3594d5358dc -2023-04-03 00:18:30.775878 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-03 00:31:16.588303 + : pb-IF4-UxYEMQ== ip: an~}i`ai`}vb{j, Device id: 0229d3e3883499d7ceb43789b414dd0b742bf7d4 -2023-04-03 00:33:34.098683 + : pb-IF5TAHQO ip: dvvcxvg{vbw, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-03 00:35:22.695480 + : pb-IF49VFdbEQ== ip: an~}hfaii}va~, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-03 00:38:36.376259 + : pb-IF4rLkwp ip: a~j~~kdajavaxh, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-03 00:47:39.387207 + : pb-JiNJARBdUUtBWFtGFkZWU1BHEENWQ1hK ip: ak~vo~}l`ajd}, Device id: c5048645404bc5042d43d417c4c9580104f87218 -2023-04-03 00:56:24.650223 + : pb-IF49VFQlPA== ip: azo~zh~zk~vm, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-03 00:59:24.358638 + : pb-IF4IU1c6Ug== ip: azj~z`~|o~~ka, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-03 01:00:53.651994 + : pb-IF4IU1c6Ug== ip: azj~z`~|o~~ka, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-03 01:02:16.954823 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF ip: an~}iean~~kg, Device id: 19cab23c5e27d40b623af49d1e26a3594d5358dc -2023-04-03 01:02:57.102166 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`amf, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-03 01:04:40.508717 + : pb-IF4IV04ZKw== ip: azj~z`~xa~|n, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-04-03 01:18:52.133266 + : pb-IF4cU1AjDw== ip: azo~{m~~kaaiiv, Device id: 23d67137d6aa4be21a991ed949cf0b73dc376a7a -2023-04-03 01:20:50.800863 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF | kicked for chat spam -2023-04-03 01:28:42.570340 + : pb-IF5TAHQO ip: dvvcxvg{vbw, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-03 01:29:48.817926 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF ip: an~}iean~~kg, Device id: 19cab23c5e27d40b623af49d1e26a3594d5358dc -2023-04-03 01:35:52.167461 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-03 01:38:58.796275 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 01:39:57.002043 + : pb-IF4JU1oiDQ== ip: axa~zo~}kgai, Device id: 6a07b1a8d768502dcef6b3db8fcc84e3528fb4c2 -2023-04-03 01:40:53.218352 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 01:43:54.091830 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 01:44:36.286858 + : pb-IF4lU0g4Vg== ip: azo~{o~vn~}hd, Device id: 7ca3fc9582acff48966e32641b77d7fc1d7621df -2023-04-03 01:55:08.987087 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-03 01:57:15.395214 + : pb-IF4NUxFfEg== ip: an~}hhaih|vb|l, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-03 02:03:19.691589 + : pb-IF4TV3RbDA== ip: azo~zh~zk~~nf, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-03 02:18:29.504023 + : pb-IF4IV04ZKw== ip: azj~z`~xa~|n, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-04-03 05:57:57.634187 + : pb-JiNJARBdUUtBWFtGFkZWU1BHEENWQ1hK ip: ak~vo~}l`ajd}, Device id: c5048645404bc5042d43d417c4c9580104f87218 -2023-04-03 06:03:30.771843 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-03 06:25:58.306262 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-03 06:48:45.156564 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-03 07:09:05.425448 + : pb-IF49VFdbEQ== ip: an~}hfaj`~vbzl, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-03 07:18:21.395778 + : pb-IF49VFdbEQ== ip: an~}hfaj`~vbzl, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-03 07:19:28.608158 + : pb-IF49VFdbEQ== ip: an~}hfaj`~vbzl, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-03 07:20:07.746963 + : pb-IF4cUBYfCg== ip: azo~zh~|n~}kh, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-03 07:26:02.965312 + : pb-IF5QU3AaLg== ip: azo~|j~}m~~aa, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-03 07:34:57.139120 + : pb-IF4FUEY4 ip: ak~~h~}jdaja{, Device id: 452bcd37350866efb1deb4f785c1364a1abde5d2 -2023-04-03 07:38:49.932677 + : pb-IF4dUBEnVQ== ip: cyvbzj~|i~}md, Device id: 3aa511a0d1463c1bfdf8b2ead7a0eb17a4aa5349 -2023-04-03 08:10:57.639528 + : pb-IF40UmUMEg== ip: awj~xh~~`iaja|, Device id: 7871fcf2cb1081a5de7b5b7b3bfc84148565e630 -2023-04-03 08:22:40.933422 + : pb-IF4cU1AjDw== ip: dvvbo~}hhajdy, Device id: 23d67137d6aa4be21a991ed949cf0b73dc376a7a -2023-04-03 08:54:19.533976 + : pb-IF4IVBgGUA== ip: azo~{a~}ifaiix, Device id: c15cea2e30ebe5581407ae777f37ed039cd39198 -2023-04-03 08:55:10.865580 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-03 09:00:33.969690 + : pb-IF49U0QJDw== ip: an~}heaiivvawh, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 09:05:05.840507 + : pb-IF5QU3AaLg== ip: ak~}m`aidzvazj, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-03 09:06:06.311094 + : pb-IF4eUxYkNg== ip: a|j~~mdaicvvayj, Device id: cf463c3e8e5177f63280992858c9206120cc78da -2023-04-03 09:10:17.179132 + : pb-IF4sUhk4JA== ip: bxvc{vbva}`, Device id: 37bb8a15b50f757a812ec76885dba10fb186b17d -2023-04-03 09:16:13.899440 + : pb-IF49U0QJDw== ip: an~}heaiivvawh, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 09:21:03.950074 + : pb-IF4TUBVePQ== ip: b}k~~`ia`~}if, Device id: ec368a7f45bf79afd075b4c8e47f595b6ce139f5 -2023-04-03 09:22:15.186142 + : pb-IF4NVxAZDg== ip: dvvcyva~m~}ji, Device id: 9dda09fcf9a3701e0e8edddd357f35fc1813050f -2023-04-03 09:22:38.273444 + : pb-JiNJARFcUUNFVVlHGUVZUFRDFUdeR1ZC ip: an~}icaahaib, Device id: 015a0cb7e587ab697743ad4583f22be93ef627fd -2023-04-03 09:29:21.047949 + : pb-IF4SUnMKEw== ip: aakhaifzvd, Device id: 6e8257dc74a0980eaba7afb2e0a07216e88e6214 -2023-04-03 09:46:40.732448 + : pb-IF49U0QJDw== ip: an~}heaiivvawh, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 09:50:36.592124 + : pb-IF4IU1c6Ug== ip: azj~z`~|o~~`g, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-03 09:50:59.675685 + : pb-IF4PV24yPA== ip: an~}hgajd}vd}, Device id: 5bd1087e38783d3d08f01cfce5d36dfbf8440740 -2023-04-03 10:01:44.126026 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-03 10:08:14.804204 + : pb-IF5dUBkGJA==|| kicked > new account -2023-04-03 10:08:39.559889 + : pb-IF4yU1oxUg== ip: dvvc{vaxa~}hg, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-03 10:10:42.029165 + : pb-IF4wU1oHMw== ip: dvvc{vb~`~w`, Device id: 107b132a649f1e1eb66fe2629804686228347c0d -2023-04-03 10:15:14.036391 + : pb-IF5QU3AaLg== ip: azo~|j~zvazh, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-03 10:15:37.110998 + : pb-IF5QU3AaLg== ip: ak~}m`aidzvazj, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-03 10:15:51.167213 + : pb-IF49U0QJDw== ip: an~}heaiivvawh, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 10:21:41.454697 + : pb-IF49U0QJDw== ip: a~o~v`~xl~~aa, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 10:22:17.570334 + : pb-IF5TU1ddPA== ip: azj~z`~|n~}ie, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-04-03 10:23:06.724543 + : pb-IF5dVWEJMg== ip: azo~{n~~jgaj`, Device id: 3939fc10737ad53f783649761bea48dc2b3522f7 -2023-04-03 10:23:26.799671 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 10:25:17.299126 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 10:28:48.074126 + : pb-IF5cU1IILQ== ip: bxvf|vb~o~~kc, Device id: af63fbd1dea4c37e58b0f4977a28d24644aff921 -2023-04-03 10:29:59.326605 + : pb-IF5WUxAJHw== ip: awh~~a`akbali, Device id: 15cc067ed39483489813b330e81a19ce630c3153 -2023-04-03 10:31:44.697466 + : pb-IF4TV3RbDA== ip: azo~zh~{j~~lb, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-03 10:31:48.712716 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 10:34:23.245452 + : pb-IF40UncaLg== ip: dvvc}vb~j~zj, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-03 10:35:39.549879 + : pb-IF4hU3EgJA== ip: azo~{l~~lhanh, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-03 10:36:20.697056 + : pb-IF4FU0tZAQ== ip: ak~wn~~`~~ne, Device id: b4213421da69dc2252f6178597f895d4330f4d52 -2023-04-03 10:37:32.974351 + : pb-IF4cUBYfCg== ip: azo~zh~{`~xi, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-03 10:38:46.458250 + : pb-IF5XUBgADQ== ip: d}va~j~~mbak, Device id: 38b4d07c86f2356a07ab4e2f27930d585073c246 -2023-04-03 10:40:10.746142 + : pb-IF4FU0tZAQ== ip: ak~wn~~`~~ne, Device id: b4213421da69dc2252f6178597f895d4330f4d52 -2023-04-03 10:41:42.342352 + : pb-IF49U0QJDw== ip: a~o~v`~xl~~aa, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 10:45:10.463060 + : pb-IF4TV3RbDA== ip: azo~zh~z`~~jh, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-03 10:48:19.400753 + : pb-IF4OU00jBA== ip: azj~z`~|`~xn, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-03 10:49:32.680982 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 10:51:11.432039 + : pb-IF4NU0ojAA== ip: azj~zo~}m~~`g, Device id: 3d647e7dac07fd7bb037d38317d7799c7a6d9b64 -2023-04-03 10:55:08.528482 + : pb-IF4cUBYfCg== ip: azo~zh~{`~xi, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-03 10:57:18.020423 + : pb-IF4qVRY4Vg== ip: b}k~}kfan`aib, Device id: d041ba866757f85834a62ef606c034afb41fd757 -2023-04-03 11:00:49.815464 + : pb-IF4OUBY-HA== ip: a|j~~mdamdakd, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-04-03 11:04:17.502022 + : pb-IF4yVXVYIw== ip: bxvc{vevavh, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-04-03 11:08:37.501123 + : pb-IF4TV3RbDA== ip: azo~zh~{i~xi, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-03 11:09:25.664307 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 11:10:53.423417 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 11:12:45.289287 + : pb-IF5cV044Jw== ip: ak~}o~vval, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-04-03 11:12:59.338689 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 11:16:11.660533 + : pb-IF5UUGEvCg==|| kicked > new account -2023-04-03 11:17:15.582682 + : pb-IF4-JUgB ip: ak~~j`aje}vfv, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-04-03 11:18:36.799224 + : pb-IF4-JUgB started kick vote for pb-IF5UUmI9DA==. -2023-04-03 11:21:37.107107 + : pb-IF4-JUgB ip: ak~~j`aje}vfv, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-04-03 11:21:48.138755 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 11:21:49.140817 + : pb-IF4VU3laVA== ip: ak~~lhaj`amf, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-03 11:22:41.314281 + : pb-IF5UUGEvCg== | kicked > reason:Banned account -2023-04-03 11:23:09.404906 + : pb-IF4yVXVYIw== ip: bxvc{vevavh, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-04-03 11:25:34.692869 + : pb-IF4-JUgB started kick vote for pb-IF4hUBJaIQ==. -2023-04-03 11:26:04.695744 + : Kick vote End -2023-04-03 11:32:03.339720 + : pb-IF4vVRUFVA== started kick vote for pb-IF4rU1g-HA==. -2023-04-03 11:32:33.346321 + : Kick vote End -2023-04-03 11:34:23.792938 + : pb-IF4MU085LA== ip: b}k~~oha`cajav, Device id: fc09720498a246ca809ec2149e0e97ed763a2cc2 -2023-04-03 11:36:48.372566 + : pb-IF4FUlRfAg== ip: b}k~~afaii}vba, Device id: aba5ff826ae810b393bf32d5a9009055e5984479 -2023-04-03 11:37:17.490643 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-03 11:38:27.733581 + : pb-IF4MU08lCQ== ip: azo~|l~~mcajdz, Device id: 496f898c6f42806db0970bac3faaa29f196c9610 -2023-04-03 11:39:48.896077 + : pb-IF4eU00YPA== | kicked for chat spam -2023-04-03 11:41:35.471795 + : pb-IF5SUno-Ug== ip: dxvbvvaxl~~`c, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-04-03 11:44:00.141793 + : pb-IF5SUno-Ug== | kicked for chat spam -2023-04-03 11:44:00.144745 + : pb-IF5SUno-Ug== auto banned for spamming -2023-04-03 11:46:30.472853 + : pb-IF4MU08lCQ== ip: azo~|l~~mcajdz, Device id: 496f898c6f42806db0970bac3faaa29f196c9610 -2023-04-03 11:47:05.574455 + : pb-JiNJARFfVEdHVVhAGE9YVVBLEElaRVJA ip: dvvcyvb|l~~ma, Device id: d14a97f1f0e082cf99f8c3bb083be2964653b43e -2023-04-03 11:49:27.044549 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-03 11:49:40.076071 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-03 11:51:13.380886 + : pb-IF4WU0wvVA== ip: dvvc}va|i~}md, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-03 11:53:27.883576 + : pb-IF4MU08lCQ== ip: azo~|l~~mcajdz, Device id: 496f898c6f42806db0970bac3faaa29f196c9610 -2023-04-03 11:53:53.977087 + : pb-IF4MU08lCQ== ip: azo~|l~~mcajdz, Device id: 496f898c6f42806db0970bac3faaa29f196c9610 -2023-04-03 11:53:57.993083 + : pb-JiNJARBbXEFBVFdHE0dTVFJAE0lbQlZH ip: d|vbzi~~ogaib, Device id: 7bca8b55d75d9aad1f8d152e97bf4289883d3eab -2023-04-03 11:54:33.142740 + : pb-IF4SXhUa ip: azj~z`~xj~~og, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-03 11:55:01.238508 + : pb-IF4VU3laVA== ip: ak~~lhaj`amf, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-03 11:55:08.266903 + : pb-IF49U0QJDw== ip: a~o~v`~xl~~kd, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 11:55:30.361918 + : pb-IF4UU1AkKA== ip: azo~{h~~iaaiex, Device id: ae940ef9a824606641c59a1e183f23ee1b7050eb -2023-04-03 11:56:50.320708 + : pb-IF4WU0wvVA== started kick vote for pb-IF4SXhUa. -2023-04-03 11:57:20.322321 + : Kick vote End -2023-04-03 11:59:12.177745 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 11:59:27.233024 + : pb-IF4cUBZaHQ== ip: a~h~}jgamfaj`|, Device id: 2390dbc9a91e8ba9009a11ff1f0e83c7d5b0eabe -2023-04-03 12:00:06.373936 + : pb-IF4IV04ZKw== ip: azj~z`~x`~}m`, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-04-03 12:01:37.849196 + : pb-JiNJARBbXEFBVFdHE0dTVFJAE0lbQlZH started kick vote for pb-IF4WU0wvVA==. -2023-04-03 12:01:49.805079 + : pb-IF4nU1EnIw== ip: aya~~liajbxvbzh, Device id: fd9f20d9f4f83ccea54cdb35ac502a0c1ffda540 -2023-04-03 12:02:07.852969 + : Kick vote End -2023-04-03 12:03:24.139750 + : pb-IF5UUxgjIA== ip: evviwvb|j~~od, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-03 12:04:19.348761 + : pb-IF4PUxM7Mg== ip: a|o~vo~~jdak`, Device id: 865142e2b1d586f51b93382f1d212e69cb1682d4 -2023-04-03 12:06:02.707668 + : pb-IF4uU0cEPA== ip: azo~{a~}iiaidy, Device id: a1a3c36bb89507f8385f2a8ba1047555972b7f55 -2023-04-03 12:06:06.719114 + : pb-IF4uVEUDKw== ip: an~}j`aifvg}, Device id: 6123f53f5dd676c2b7635ac70cd4081b6346dcc0 -2023-04-03 12:06:20.759662 + : pb-IF4uU0cEPA== ip: azo~{a~}iiaidy, Device id: a1a3c36bb89507f8385f2a8ba1047555972b7f55 -2023-04-03 12:07:17.949590 + : pb-IF4hU3EgJA== ip: azo~{l~~leai`x, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-03 12:07:37.026672 + : pb-IF4nUxE4Nw== ip: axi~zi~}leaie~, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-03 12:08:18.168270 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 12:10:16.974965 + : pb-IF5UUxgjIA== started kick vote for pb-IF49VVch. -2023-04-03 12:10:46.979624 + : Kick vote End -2023-04-03 12:12:28.073848 + : pb-IF4MU08lCQ== started kick vote for pb-IF4nUxE4Nw==. -2023-04-03 12:12:58.081461 + : Kick vote End -2023-04-03 12:15:22.742458 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 12:16:24.964302 + : pb-IF4gU0wxBw== ip: ak~za~xl~vh, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-03 12:19:48.823884 + : pb-JiNJVxFfVEJIWVxFEUBXXFNLE0hXRFVD ip: dvvbn~wvax`, Device id: 569c6d5812b35ce92b109072e7b34df952bf7382 -2023-04-03 12:21:41.208884 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 12:22:06.607270 + : pb-IF4lUBghVQ==|| kicked > new account -2023-04-03 12:22:12.024190 + : pb-IF5UUxgjIA== started kick vote for pb-IF4GU1k4UA==. -2023-04-03 12:22:28.380345 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 12:22:42.029878 + : Kick vote End -2023-04-03 12:24:59.930195 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 12:27:52.693889 + : pb-IF4gU0wxBw== ip: ak~za~xl~vh, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-03 12:29:00.954894 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 12:33:10.023146 + : pb-IF5cUkwjDA== ip: dvvcyvb~l~zk, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-04-03 12:33:23.076003 + : pb-IF4TVWEnIg== ip: ak~~nfajd{vb{a, Device id: 851bbb97220da3746ee7df2fe8f54720e92b4517 -2023-04-03 12:38:07.076997 + : pb-IF4-JUgB ip: ak~~j`aje}vfv, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-04-03 12:38:57.296097 + : pb-IF49U0QJDw== ip: a~o~v`~xl~~kd, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 12:40:54.696838 + : pb-IF4gUksyMQ== ip: b}k~~`gajdwvazh, Device id: b0ef821c8b60e5fcf4bad99d322e2a9451de48ac -2023-04-03 12:41:06.733960 + : pb-IF5TAHQO ip: dvvcxvgzva~`, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-03 12:41:47.896669 + : pb-IF49U0QJDw== ip: a~o~v`~xl~~kd, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 12:42:02.079603 + : pb-IF49U0QJDw== ip: a~o~v`~xl~~kd, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 12:43:08.322533 + : pb-IF4uUk4vMg== ip: a}j~~nbaagaid, Device id: 6635c2af1bf357a9e95bbf3d6082a39d14dc3cdb -2023-04-03 12:45:39.017242 + : pb-IF4sUBYkCw== ip: an~xn~w`~vh, Device id: 9c54d6f9aa1e8fcbf6be9a50f53de4917d8c633d -2023-04-03 12:47:08.332457 + : pb-IF49U0QJDw== ip: a~o~v`~xl~~kd, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 12:47:46.460884 + : pb-IF4gU0wxBw== ip: ak~za~xl~vh, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-03 12:49:12.787645 + : pb-IF4DU1I4CQ== ip: azj~z`~}icaic|, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-04-03 12:51:17.297773 + : pb-IF5VUBEGAQ== ip: an~~ahai`{vaxl, Device id: 2c444d9eb39f82aece90aaa1dddc956bbc8d16a0 -2023-04-03 12:51:48.418309 + : pb-IF5VUBEGAQ== ip: an~~ahai`{vaxl, Device id: 2c444d9eb39f82aece90aaa1dddc956bbc8d16a0 -2023-04-03 12:53:10.704746 + : pb-IF48U1AiDg== ip: a}j~~`aaafali, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-03 12:53:41.825718 + : pb-IF48U1AiDg== ip: a}j~~`aaafali, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-03 12:54:04.901467 + : pb-IF48U1AiDg== ip: a}j~~`aaafali, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-03 12:55:04.119976 + : pb-IF5TAHQO ip: dvvcxvgzva~`, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-03 12:59:09.923437 + : pb-IF4cUBYfCg== ip: azo~zh~{o~|k, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-03 13:02:27.613108 + : pb-IF5QU3AaLg== ip: ak~}m`aidzvazj, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-03 13:03:54.049165 + : pb-IF4gU0wxBw== ip: ak~za~xl~vh, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-03 13:06:38.822522 + : pb-IF5VU1JZMw== ip: an~}ica`baid|, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-03 13:06:40.825602 + : pb-IF4WU0wvVA== ip: dvvc}vavk~}la, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-03 13:08:33.241173 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 13:09:34.436768 + : pb-IF4sAGcj ip: a}j~~`aaafali, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-03 13:10:14.816565 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 13:15:22.001918 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 13:15:59.144522 + : pb-IF4sAGcj ip: a}j~~`aaafali, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-03 13:16:03.157555 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vey, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-03 13:17:57.604474 + : pb-IF4iUhAcFw== ip: an~}hfaifyvb`, Device id: b5b307886c21577390b63a457c819582d44176fe -2023-04-03 13:18:02.629511 + : pb-IF4iUhAcFw== ip: an~}hfaifyvb`, Device id: b5b307886c21577390b63a457c819582d44176fe -2023-04-03 13:18:38.793572 + : pb-IF5QUncTAQ== ip: dvvc{viva{`, Device id: b831eec6105356e3e1e6deefd6747d3c52d10d62 -2023-04-03 13:18:56.858951 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 13:18:59.864903 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vey, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-03 13:21:03.406140 + : pb-IF4WU0wvVA== started kick vote for pb-IF4sAGcj. -2023-04-03 13:21:33.410760 + : Kick vote End -2023-04-03 13:23:02.791554 + : pb-IF5UUk8NBw== ip: a~o~v`~~hhami, Device id: 77723e8d5fda1b3f727cf383d71479b60b14cdfb -2023-04-03 13:23:32.888918 + : pb-IF4SXhUa ip: azj~z`~xj~~md, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-03 13:23:42.921402 + : pb-IF4TV3RbDA== ip: azo~zh~|k~}j, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-03 13:25:34.278916 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF4sAGcj. -2023-04-03 13:26:04.282058 + : Kick vote End -2023-04-03 13:27:38.870846 + : pb-IF40UncaLg== ip: dvvc}vb~j~zj, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-03 13:28:06.985154 + : pb-IF4jVE8ZFA== ip: an~}h`akfaia{, Device id: 39150413f626a95407865bdc60840c2c3a7aaf47 -2023-04-03 13:29:10.209523 + : pb-IF5cV044Jw== ip: ak~}o~vval, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-04-03 13:30:33.518146 + : pb-IF4-UxI7Mg== ip: d|vb{j~~ifaje{, Device id: c9b75a67d7d77078ad188d740656d5436ebb454c -2023-04-03 13:31:33.711827 + : pb-IF4DU3MiAQ== ip: azo~{a~~maaie~, Device id: fcd2664e72bb4529e96cd44087b9cfa52dc59a94 -2023-04-03 13:31:41.738493 + : pb-IF4jVE8ZFA== ip: an~}h`akfaia{, Device id: 39150413f626a95407865bdc60840c2c3a7aaf47 -2023-04-03 13:33:07.081876 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 13:33:12.098361 + : pb-IF5cV044Jw== ip: ak~}o~vval, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-04-03 13:34:43.460128 + : pb-IF4DU3MiAQ== ip: azo~{a~~maaie~, Device id: fcd2664e72bb4529e96cd44087b9cfa52dc59a94 -2023-04-03 13:34:50.478545 + : pb-IF4DU1I4CQ== ip: azj~z`~}icaic|, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-04-03 13:35:13.557200 + : pb-IF4cVEQgDw== ip: a~h~}jgalcaicx, Device id: 7c428e55ffa8c21082c93a1e079304858f35cb3c -2023-04-03 13:36:58.933892 + : pb-IF4FUxQkCQ== ip: a|j~~mdaidxva`, Device id: 5ead24eac867541f66ae5d0806479fa592ad0646 -2023-04-03 13:37:35.045470 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 13:37:36.376611 + : pb-IF4zUBglEA==|| kicked > new account -2023-04-03 13:41:05.830425 + : pb-IF4cVEQgDw== ip: a~h~}jgalcaicx, Device id: 7c428e55ffa8c21082c93a1e079304858f35cb3c -2023-04-03 13:41:35.050563 + : pb-IF40UmUMEg== ip: b}k~}kfamgaiix, Device id: 7871fcf2cb1081a5de7b5b7b3bfc84148565e630 -2023-04-03 13:42:56.342485 + : pb-IF49U0QJDw== ip: bxvf|viyvb~m, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 13:47:43.633793 + : pb-IF5dU3UiAw== ip: a~o~}meaia}va{`, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-03 13:48:18.768233 + : pb-IF4TV3RbDA== ip: azo~zh~|k~}j, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-03 13:49:40.057942 + : pb-IF4hU3EgJA== ip: azo~{l~~kaaaf, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-03 13:49:41.060339 + : pb-IF5SUno-Ug== | kicked > reason:Banned account -2023-04-03 13:49:53.377200 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-03 13:51:17.751527 + : pb-IF4LU20cEw== ip: a~o~va~}maaif, Device id: 4dc931cefdd3131eaa4546cd0cefbffb299ae055 -2023-04-03 13:52:13.109870 + : pb-IF4rUnkSHQ== ip: a}j~~`aaafali, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-03 13:54:15.940895 + : pb-IF49U0QJDw== ip: bxvf|viyvb~m, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 13:54:46.032886 + : pb-IF4wU1oHMw== ip: dvvc{vavj~~ne, Device id: 107b132a649f1e1eb66fe2629804686228347c0d -2023-04-03 13:55:01.099416 + : pb-IF4yU1oxUg== ip: dvvc{vawk~~`a, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-03 13:55:34.221816 + : pb-IF40UncaLg== ip: dvvc}vbi~xi, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-03 13:56:09.360576 + : pb-IF4OPhMg ip: an~}ifa`ea``, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-04-03 13:56:20.403423 + : pb-IF4rUnkSHQ== ip: a}j~~`aaafali, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-03 13:57:10.879785 + : pb-IF4OPhMg started kick vote for pb-IF4LU20cEw==. -2023-04-03 13:57:40.886561 + : Kick vote End -2023-04-03 13:58:10.119009 + : pb-IF5cUBkeAg==|| kicked > new account -2023-04-03 14:01:26.517907 + : pb-IF4NUxFfEg== ip: bxvf}vbzh~~ih, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-03 14:01:29.520474 + : pb-IF4rUnkSHQ== ip: a}j~~`aaafali, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-03 14:05:38.395636 + : pb-IF4WU0wvVA== ip: dvvc}va{n~zm, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-03 14:05:58.453611 + : pb-IF49U0QJDw== ip: bxvf|viyvb~m, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 14:06:47.627168 + : pb-IF4KUBFYVA== ip: b}k~~ohaj`wvb~l, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-03 14:07:29.777119 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvb~l, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-03 14:09:31.549596 + : pb-IF5SUno-Ug== | kicked > reason:Banned account -2023-04-03 14:09:38.571570 + : pb-IF5XU0IZAA== ip: a~h~}jda``aid}, Device id: ddb00bd5e7cc7f8e199e075b85259ba799bfdc4e -2023-04-03 14:10:27.748191 + : pb-IF4wVVkYIg== ip: dvvcyvh}vh|, Device id: 62eeec9d9ed20df10e2ef17590735f5346df08de -2023-04-03 14:12:06.055877 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-03 14:12:48.749431 + : pb-IF4DU0IEJg== started kick vote for pb-IF43VG8eIw==. -2023-04-03 14:13:18.754549 + : Kick vote End -2023-04-03 14:14:40.358129 + : pb-IF4OPhMg started kick vote for pb-IF4WU0wvVA==. -2023-04-03 14:15:10.366222 + : Kick vote End -2023-04-03 14:15:44.010975 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 14:20:21.448485 + : pb-IF49U0QJDw== ip: bxvf|viyvb~m, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 14:20:46.551506 + : pb-IF4jUmM4HA== ip: a~o~}jbaifwvfw, Device id: 663a0e7da0be096429a742ac6e7dca231c48d521 -2023-04-03 14:27:48.107466 + : pb-IF4TV3RbDA== ip: azo~zh~|k~}j, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-03 14:28:10.203780 + : pb-IF4SXhUa ip: azj~z`~xj~~md, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-03 14:28:26.266122 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 14:28:51.348935 + : pb-IF4PUxM7Mg== ip: a|o~vo~va~yj, Device id: 865142e2b1d586f51b93382f1d212e69cb1682d4 -2023-04-03 14:29:36.583471 + : pb-IF4PUxM7Mg== ip: a|o~vo~va~yj, Device id: 865142e2b1d586f51b93382f1d212e69cb1682d4 -2023-04-03 14:30:32.775852 + : pb-IF4PUxM7Mg== ip: a|o~vo~va~yj, Device id: 865142e2b1d586f51b93382f1d212e69cb1682d4 -2023-04-03 14:31:11.941482 + : pb-IF43VG8eIw== ip: azo~zi~~jhaifz, Device id: 6e3c53db2c5259e1791defe944986c121c4af377 -2023-04-03 14:31:25.979050 + : pb-IF4PUxM7Mg== ip: a|o~vo~va~yj, Device id: 865142e2b1d586f51b93382f1d212e69cb1682d4 -2023-04-03 14:36:18.506841 + : pb-IF4NU0heUQ== ip: bxva}m~}lfajcz, Device id: a3a48e66d5a5081684ba4137b179cfc245696dba -2023-04-03 14:39:53.515308 + : pb-IF4wU1oHMw== ip: dvvc{vbl~|i, Device id: 107b132a649f1e1eb66fe2629804686228347c0d -2023-04-03 14:39:57.532222 + : pb-IF4yU1oxUg== ip: dvvc{vaxa~~ai, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-03 14:42:09.286009 + : pb-IF4WU0wvVA== ip: dvvc}va{n~zm, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-03 14:42:47.415604 + : pb-IF5cVRYTCQ== ip: dzva}k~vl~}ld, Device id: be694006c26106519e4a116c55f3391b57b7caab -2023-04-03 14:42:48.421001 + : pb-IF4wU1oHMw== ip: dvvc{vbl~|i, Device id: 107b132a649f1e1eb66fe2629804686228347c0d -2023-04-03 14:42:50.422319 + : pb-IF4yU1oxUg== ip: dvvc{vaxa~~ai, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-03 14:43:11.501151 + : pb-IF5XUhESBg== ip: azj~z`~}j`aicw, Device id: 846c7d978f54674db6bb0ba97234e43c65ab73dd -2023-04-03 14:43:59.680758 + : pb-IF4yU1oxUg== ip: an~}jbal`aja|, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-03 14:45:23.452646 + : pb-IF4pUBgIAQ==|| kicked > new account -2023-04-03 14:45:25.167483 + : pb-IF4SXhUa ip: azj~z`~xj~~md, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-03 14:45:32.207582 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvb~l, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-03 14:46:21.365524 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 14:46:53.473120 + : pb-IF4SU1olUw== ip: an~}jbal`aja|, Device id: 5977afcc24357878b5a67ce1663f62b02384c734 -2023-04-03 14:46:59.341631 + : pb-IF4WU0wvVA== started kick vote for pb-IF4AV1QqEQ==. -2023-04-03 14:47:29.348606 + : Kick vote End -2023-04-03 14:47:52.698227 + : pb-IF4DU1I4CQ== ip: azj~z`~}ibaiiy, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-04-03 14:48:29.479152 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4WU0wvVA==. -2023-04-03 14:48:59.480701 + : Kick vote End -2023-04-03 14:50:55.107674 + : pb-IF43VG8eIw== started kick vote for pb-IF4wU1oHMw==. -2023-04-03 14:51:12.328971 + : pb-IF49U0QJDw== ip: bxvf|viyvb~m, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 14:51:25.114267 + : Kick vote End -2023-04-03 14:51:40.422043 + : pb-IF4eVUJdDQ== ip: ak~}leai`zvb~i, Device id: 00aea33cef73e6fdcd33dcd5bd7722328b8194f4 -2023-04-03 14:52:15.561290 + : pb-IF4yVUkSHw== ip: bxvf~va~n~|i, Device id: 6e08787b7ab8621940e8fd9665b2dba75d6806e6 -2023-04-03 14:52:50.703594 + : pb-IF4SU1olUw== ip: an~}jbal`aja|, Device id: 5977afcc24357878b5a67ce1663f62b02384c734 -2023-04-03 14:53:26.819781 + : pb-IF4SU1olUw== ip: an~}jbal`aja|, Device id: 5977afcc24357878b5a67ce1663f62b02384c734 -2023-04-03 14:53:40.876173 + : pb-IF4SU1olUw== ip: an~}jbal`aja|, Device id: 5977afcc24357878b5a67ce1663f62b02384c734 -2023-04-03 14:54:06.009674 + : pb-IF5VU1JZMw== ip: an~}ica`baid|, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-03 14:57:12.601726 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5cVRYTCQ==. -2023-04-03 14:57:27.747886 + : pb-IF4SXhUa ip: azj~z`~xh~wj, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-03 14:57:29.752678 + : pb-IF5UUxU7Ag== ip: an~~aeakeaigx, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-03 14:57:35.765050 + : pb-IF5UUxU7Ag== ip: an~~aeakeaigx, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-03 14:57:42.601942 + : Kick vote End -2023-04-03 14:58:45.017547 + : pb-IF5VU1JZMw== ip: an~}ica`baid|, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-03 14:59:54.420082 + : pb-IF5TAHQO ip: azo~|m~~k~}jf, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-03 15:01:12.668276 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5VU1JZMw==. -2023-04-03 15:01:29.854307 + : pb-IF4hU1IMLw== ip: b}k~}khajb{vd~, Device id: b5f15ae3c82f9d0d7007961485029cc22c3a2767 -2023-04-03 15:01:42.672427 + : Kick vote End -2023-04-03 15:03:31.617232 + : pb-IF4VU3laVA== ip: ak~~lhaj`amf, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-03 15:03:56.711659 + : pb-IF5TAHQO ip: azo~|m~~k~}jf, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-03 15:04:35.172434 + : pb-IF4NU0heUQ== ip: bxva}m~}lfaiix, Device id: a3a48e66d5a5081684ba4137b179cfc245696dba -2023-04-03 15:04:38.190042 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-03 15:04:54.675703 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4DU1I4CQ==. -2023-04-03 15:05:24.681803 + : Kick vote End -2023-04-03 15:05:27.363596 + : pb-IF5cV044Jw== ip: a~o~v`~~h~w, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-04-03 15:05:53.466679 + : pb-JiNJARFfV0VDXFdDF0JSU1VAFEBfTlNC ip: a}j~~ocajhaifx, Device id: e0614d12aeabe2f2d8856866f48279898708dba9 -2023-04-03 15:06:17.574818 + : pb-IF5cVRYTCQ== ip: dzva}k~vl~}ld, Device id: be694006c26106519e4a116c55f3391b57b7caab -2023-04-03 15:09:09.845597 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4DU0IEJg==. -2023-04-03 15:09:39.852728 + : Kick vote End -2023-04-03 15:09:50.332966 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 15:11:10.610871 + : pb-IF4GU0FeFQ== ip: d|vb}l~wvayn, Device id: 88037ec404c87538bbe04e5b633696e4e7202170 -2023-04-03 15:11:53.771355 + : pb-IF40VXMlBA== ip: ak~z`~~mbajc{, Device id: 2567dc394522ed525d920d39eecafdfd32621b4d -2023-04-03 15:12:12.826910 + : pb-IF5UUxU7Ag== ip: an~~aeakeaigx, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-03 15:12:24.869396 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-03 15:13:18.048399 + : pb-IF40VXMlBA== ip: ak~z`~~mbajc{, Device id: 2567dc394522ed525d920d39eecafdfd32621b4d -2023-04-03 15:17:47.991356 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-03 15:18:16.087635 + : pb-IF5QUncTAQ== ip: dvvc{vhvvb{`, Device id: b831eec6105356e3e1e6deefd6747d3c52d10d62 -2023-04-03 15:18:57.185081 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4GU0FeFQ==. -2023-04-03 15:19:12.276583 + : pb-IF4cUBYfCg== ip: azo~zh~|m~{o, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-03 15:19:27.192116 + : Kick vote End -2023-04-03 15:21:11.027131 + : pb-IF4TV3RbDA== ip: azo~zh~|k~}j, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-03 15:21:56.182681 + : pb-IF5UUxU7Ag== ip: an~~aeakeaigx, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-03 15:22:01.204686 + : pb-IF5UUxU7Ag== ip: an~~aeakeaigx, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-03 15:22:19.272263 + : pb-IF49U0QJDw== ip: bxvf|vixvg~, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 15:22:49.381114 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5VU1JZMw==. -2023-04-03 15:23:19.384525 + : Kick vote End -2023-04-03 15:24:02.690705 + : pb-IF4cUBYfCg== ip: azo~zh~|m~{o, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-03 15:25:52.272365 + : pb-IF5cVRYTCQ== | kicked for chat spam -2023-04-03 15:27:44.542985 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 15:29:28.923106 + : pb-IF5UUxU7Ag== ip: an~~aeakeaigx, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-03 15:29:35.945402 + : pb-IF5UUxU7Ag== ip: an~~aeakeaigx, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-03 15:29:49.884547 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4DU1I4CQ==. -2023-04-03 15:30:19.888287 + : Kick vote End -2023-04-03 15:32:07.051991 + : pb-IF40UncaLg== ip: dvvc}vbm~vj, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-03 15:33:25.327314 + : pb-IF5UUxU7Ag== ip: an~~aeakeaigx, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-03 15:33:40.367370 + : pb-IF5UUxU7Ag== ip: an~~aeakeaigx, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-03 15:35:12.220219 + : pb-IF4eUnYeJA== started kick vote for pb-IF4vVRUFVA==. -2023-04-03 15:35:42.228368 + : Kick vote End -2023-04-03 15:37:19.169635 + : pb-IF5QUncTAQ== ip: dvvc{vhvvb{`, Device id: b831eec6105356e3e1e6deefd6747d3c52d10d62 -2023-04-03 15:40:15.103729 + : pb-IF49VFdbEQ== ip: an~}hfaii{va}n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-03 15:41:45.409587 + : pb-IF4IU1c6Ug== ip: azj~z`~|l~~`g, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-03 15:42:28.563713 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-03 15:42:45.635705 + : pb-IF4tUBJfUw== ip: azo~|`~~kbalh, Device id: e77984a7e9be6696dc769c2cd462a23a2478ae1c -2023-04-03 15:42:54.673032 + : pb-IF49U0QJDw== ip: dvvcxva~o~}l`, Device id: c3810e11429b25a3849c4891a8d2d36e1dccc933 -2023-04-03 15:43:13.733473 + : pb-IF5TAHQO ip: azo~|m~~k~}jf, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-03 15:43:27.779110 + : pb-IF49U0QJDw== ip: bxvf|vixvg~, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 15:43:37.820927 + : pb-IF41U0sYPA== ip: an~~aeaibaiiw, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-03 15:43:51.869946 + : pb-IF5cV044Jw== ip: a~o~v`~~h~~kf, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-04-03 15:46:24.425957 + : pb-IF4cUBYfCg== ip: azo~zh~yh~}hc, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-03 15:47:57.790307 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 15:49:10.873199 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4IU1c6Ug==. -2023-04-03 15:49:40.877579 + : Kick vote End -2023-04-03 15:50:58.746957 + : pb-IF5cV044Jw== ip: a~o~v`~~h~~kf, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-04-03 15:51:25.826659 + : pb-IF4sUxdTDg== ip: azo~{a~}lcaid|, Device id: 79228c0bb59f6df51e4b9e21056c8a259c4956af -2023-04-03 15:52:05.955266 + : pb-IF4vV0g8Mw== ip: dvvc{vayh~~je, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-03 15:56:24.304425 + : pb-IF4AV1QqEQ== | kicked for chat spam -2023-04-03 15:57:36.180695 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~}ifa`gaif|, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-04-03 15:58:16.799892 + : pb-IF5TAHQO started kick vote for pb-IF41U2scIg==. -2023-04-03 15:58:46.803427 + : Kick vote End -2023-04-03 16:00:28.836991 + : pb-IF5cV044Jw== ip: a~o~v`~~h~~kf, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-04-03 16:02:46.600792 + : pb-IF5dVWEJMg== ip: a~o~}jbaieyvawl, Device id: 3939fc10737ad53f783649761bea48dc2b3522f7 -2023-04-03 16:03:07.679401 + : pb-IF4DU1I4CQ== ip: azj~z`~}icajcx, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-04-03 16:07:01.521836 + : pb-IF4-Um4_Lw== ip: azo~|k~}lcame, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-04-03 16:08:03.897657 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-03 16:08:21.983140 + : pb-IF4TV3RbDA== ip: an~zi~}lbaja{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-03 16:19:01.883123 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF ip: an~}iean~~kg, Device id: 19cab23c5e27d40b623af49d1e26a3594d5358dc -2023-04-03 16:19:12.929015 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-03 16:19:38.018823 + : pb-IF4DU1I4CQ== ip: azj~z`~}ibaih~, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-04-03 16:20:25.176089 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 16:20:44.259479 + : pb-IF4wV24HBw== ip: a~o~va~}hgaii, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-03 16:21:14.368790 + : pb-IF4NUxFfEg== ip: an~}hgajavva}o, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-03 16:22:34.664560 + : pb-IF49U0QJDw== ip: bxvf|vixvg~, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 16:24:10.947522 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4-Um4_Lw==. -2023-04-03 16:24:15.051303 + : pb-IF5XUBYqFg== ip: ak~~kiajbvfy, Device id: 4015d51898c4a41c37b1bc9f8cf0550a6e31fb43 -2023-04-03 16:24:33.532900 + : Kick vote End -2023-04-03 16:25:10.286470 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 16:27:03.077050 + : pb-IF4WUBgKDg==|| kicked > new account -2023-04-03 16:29:43.127781 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5XUBYqFg==. -2023-04-03 16:30:13.128532 + : Kick vote End -2023-04-03 16:30:27.443535 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-03 16:31:22.181708 + : pb-IF4gUksyMQ== ip: b}k~~`gaje}v`, Device id: b0ef821c8b60e5fcf4bad99d322e2a9451de48ac -2023-04-03 16:33:39.876733 + : pb-IF4sCXI9 ip: an~}jcaj`}va|i, Device id: 016005002c5e71bc4f41ba158f73d116d7bfdf63 -2023-04-03 16:34:33.039408 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 16:35:34.279098 + : pb-IF49VFdbEQ== ip: an~}hfaii{va}n, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-03 16:35:37.286364 + : pb-IF5cVRYTCQ== ip: dzva}k~vl~}ld, Device id: be694006c26106519e4a116c55f3391b57b7caab -2023-04-03 16:36:43.941470 + : pb-IF5TU1ddPA== ip: azj~z`~|`~{, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-04-03 16:36:59.983828 + : pb-IF5TAHQO ip: dvvcxvg|va{o, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-03 16:40:56.056192 + : pb-IF4rUnkSHQ== ip: a}j~~`aaafali, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-03 16:55:38.228028 + : pb-IF4rUnkSHQ== ip: a}j~~`aaafali, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-03 17:07:44.838302 + : pb-IF4TV3RbDA== ip: azo~zh~{l~~ah, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-03 17:22:22.022435 + : pb-IF49U0QJDw== ip: a~o~v`~vl~{a, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 17:22:41.093543 + : pb-IF5VU1JZMw== ip: an~}ica`baid|, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-03 17:23:21.211906 + : pb-IF49U0QJDw== ip: a~o~v`~vl~{a, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 17:23:48.310846 + : pb-IF49U0QJDw== ip: a~o~v`~vl~{a, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 17:24:24.435561 + : pb-IF49U0QJDw== ip: a~o~v`~vl~{a, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 17:24:44.517284 + : pb-IF49U0QJDw== ip: a~o~v`~vl~{a, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 17:27:00.019743 + : pb-IF4qUxBfAw== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 17:27:43.163046 + : pb-IF4OUBY-LQ== ip: a~o~}igaiizvaym, Device id: 7f76ea9d0c56086db52850a63fcc56e87e532024 -2023-04-03 17:28:09.250259 + : pb-IF49U0QJDw== ip: a~o~v`~vl~{a, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 17:28:19.298123 + : pb-IF49U0QJDw== ip: a~o~v`~vl~{a, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 17:28:42.374788 + : pb-IF49U0QJDw== ip: a~o~v`~vl~{a, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-03 17:31:19.980699 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 17:31:46.751643 + : pb-IF4jF1NY started kick vote for pb-IF5VU1JZMw==. -2023-04-03 17:32:16.753342 + : Kick vote End -2023-04-03 17:37:31.331838 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 17:41:26.179290 + : pb-IF5TAHQO ip: dvvcxvg|va{o, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-03 17:44:34.802279 + : pb-IF5cV044Jw== ip: a~o~v`~~h~~le, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-04-03 17:48:15.595061 + : pb-IF4vVRUFVA== ip: b}k~}jfaj`|va~j, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 17:56:54.573376 + : pb-IF5dVFQeEw== ip: a~o~}jhakgam`, Device id: 1598392744ee831860d1b2469a4cd8504df0373d -2023-04-03 17:58:45.191476 + : pb-IF5dVFQeEw== started kick vote for pb-IF42UBEfJA==. -2023-04-03 17:58:51.620370 + : pb-IF42UBEfJA== kicked by kickvotes. -2023-04-03 17:59:06.015617 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 17:59:35.907316 + : pb-IF5WU2EINA== started kick vote for pb-IF41U2scIg==. -2023-04-03 17:59:40.264630 + : Kick vote End -2023-04-03 18:03:11.828305 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 18:12:47.977694 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 18:18:53.242927 + : pb-IF4BU1gtAA== ip: an~}icalfaie{, Device id: 1f2a67f3540a90953f0d00eae021c1d40dc8c27c -2023-04-03 18:27:48.122288 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvb~l, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-03 18:34:24.238157 + : pb-IF4DU0IEJg== started kick vote for pb-IF4BU1gtAA==. -2023-04-03 18:34:52.675900 + : pb-IF4jF1NY ip: azj~z`~{`~}kf, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-03 18:34:54.244657 + : Kick vote End -2023-04-03 18:38:27.174649 + : pb-IF4DU0IEJg== started kick vote for pb-IF4XU0MJMg==. -2023-04-03 18:38:57.178335 + : Kick vote End -2023-04-03 18:40:46.909692 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-03 18:40:50.918743 + : pb-IF41U0sYPA== ip: an~~aeaa~~ah, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-03 18:47:47.258158 + : pb-IF4cUBYfCg== ip: azo~zh~|k~~ob, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-03 18:48:09.344464 + : pb-IF41U0sYPA== ip: an~~aeaa~~ah, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-03 18:51:36.034353 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-03 18:52:33.253993 + : pb-IF4rLkwp ip: a{n~xh~|k~yi, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-03 18:53:27.457365 + : pb-IF4rLkwp ip: a~j~~kdaj`wvba, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-03 18:53:52.550293 + : pb-IF4rLkwp ip: a~j~~kdaj`wvba, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-03 18:55:11.806191 + : pb-IF40U3MyVQ== ip: b}k~}kcanfaii{, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-04-03 18:58:17.515623 + : pb-IF40U3MyVQ== ip: b}k~}kcanfaii{, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-04-03 19:02:42.878807 + : pb-IF4hUBcjCA==|| kicked > new account -2023-04-03 19:04:26.765023 + : pb-IF4VU3laVA== ip: ak~~`ca`caidw, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-03 19:06:07.120883 + : pb-IF4rLkwp ip: a~j~~kdaj`wvba, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-03 19:06:41.266947 + : pb-IF4vVRUFVA== ip: axi~xa~~haaiav, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 19:08:16.614397 + : pb-IF4hUBcjCA== | kicked > reason:Banned account -2023-04-03 19:08:34.664464 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-03 19:11:24.307747 + : pb-IF4TV3RbDA== ip: bk~~abaje|vb~n, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-03 19:15:22.199180 + : pb-IF5VU1JZMw== ip: an~}ica`baid|, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-03 19:16:07.496116 + : pb-IF4VU3laVA== started kick vote for pb-IF4vU0MENg==. -2023-04-03 19:16:37.498429 + : Kick vote End -2023-04-03 19:16:42.508524 + : pb-IF48UBUzCg== ip: azj~zo~}jbaih|, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-04-03 19:18:44.601012 + : pb-IF4wU1MPEg== started kick vote for pb-IF5VU1JZMw==. -2023-04-03 19:19:14.606007 + : Kick vote End -2023-04-03 19:24:31.130288 + : pb-IF4jF1NY ip: azj~z`~{a~~h, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-03 19:28:26.957611 + : pb-IF4cUBYfCg== ip: azo~zh~|l~~l, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-03 19:29:37.204315 + : pb-IF4TUlgePw== ip: an~}ifaii{vi}, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-04-03 19:29:52.265256 + : pb-IF4vVRUFVA== ip: axi~xa~~haaiav, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 19:32:58.939736 + : pb-IF4rUnkSHQ== ip: a}j~~`aaafali, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-03 19:34:51.378930 + : pb-IF4OU00jBA== ip: azj~z`~|l~~jf, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-03 19:35:00.415219 + : pb-IF4FVUwnDA== ip: azj~z`~}l~~hi, Device id: f90d53c5692acf65b66906f0b196d5c77740dfbd -2023-04-03 19:35:24.521078 + : pb-IF4OU00jBA== ip: azj~z`~|m~}lb, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-03 19:36:29.776865 + : pb-IF41VXk5PQ== ip: ak~wo~z`~{n, Device id: e6111cf42574111f4a4279de2e701db9069fa8d0 -2023-04-03 19:37:50.054963 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 19:38:31.221235 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 19:38:53.326000 + : pb-IF4vVRUFVA== ip: axi~xa~~haaiav, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 19:41:01.745973 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 19:41:32.848788 + : pb-IF4rLkwp ip: a~j~~kdaj`wvba, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-03 19:44:51.541733 + : pb-IF40UmUMEg== started kick vote for pb-IF5TUm4DNg==. -2023-04-03 19:45:21.548430 + : Kick vote End -2023-04-03 19:47:23.309112 + : pb-IF5VU3lYDA== started kick vote for pb-IF4vVRUFVA==. -2023-04-03 19:47:53.316855 + : Kick vote End -2023-04-03 19:48:15.349309 + : pb-IF5WU0cRAg== ip: d}va`~~afak`, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-03 19:48:53.479211 + : pb-IF5WU0cRAg== ip: d}va`~~afak`, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-03 19:50:12.743251 + : pb-IF5WU0cRAg== ip: d}va`~~aiak`, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-03 19:50:39.854335 + : pb-IF5WU0cRAg== ip: d}va`~~aiak`, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-03 19:51:21.975166 + : pb-IF5cVRYTCQ== ip: dzva}k~vl~}ld, Device id: be694006c26106519e4a116c55f3391b57b7caab -2023-04-03 19:51:56.089770 + : pb-IF4eUBMTKA== ip: ak~za~xl~vh, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-03 19:53:03.325187 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-03 19:58:30.505029 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-03 20:00:30.915687 + : pb-IF5UUxU7Ag== ip: an~~aealeaigx, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-03 20:00:42.956861 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-03 20:01:11.078618 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-03 20:01:20.120144 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-03 20:01:30.164339 + : pb-IF4vVRUFVA== ip: axi~xa~~haaiav, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 20:02:13.359245 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-03 20:03:04.539345 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-03 20:03:54.729509 + : pb-IF4eUBMTKA== ip: ak~za~xl~vh, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-03 20:04:02.748215 + : pb-IF4vVGEKPA== ip: ak~~i`aje}vd{, Device id: 332546eed0e61df209041c6d2f4b6f9265055798 -2023-04-03 20:05:49.120372 + : pb-IF4vVRUFVA== ip: axi~xa~~haaiav, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 20:05:53.135502 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-03 20:06:46.352039 + : pb-IF4vVGEKPA== ip: ak~~i`aje}vd{, Device id: 332546eed0e61df209041c6d2f4b6f9265055798 -2023-04-03 20:07:58.590277 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-03 20:07:59.595875 + : pb-IF4vVRUFVA== ip: axi~xa~~haaiav, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 20:09:07.821880 + : pb-IF4vVRUFVA== ip: axi~xa~~haaiav, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 20:10:43.155456 + : pb-IF4vVRUFVA== ip: axi~xa~~haaiav, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 20:11:00.217509 + : pb-IF4gU0wxBw== ip: ak~za~xl~vh, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-03 20:13:11.616537 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-03 20:13:19.636145 + : pb-IF4rLkwp ip: a~j~~kdaj`wvba, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-03 20:14:46.930778 + : pb-IF4gU0wxBw== ip: ak~za~xl~vh, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-03 20:16:13.188450 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-03 20:16:17.210535 + : pb-IF49U0QJDw== ip: dvvcxva~o~}l`, Device id: 52e159e6debf4b869cb6bd30a26e268c72ceab36 -2023-04-03 20:17:42.968219 + : pb-IF4XU2cfKQ== started kick vote for pb-IF5cVRYTCQ==. -2023-04-03 20:18:08.564259 + : pb-IF49U0QJDw== ip: b}k~}khaj`{vby, Device id: 52cc071e6a1ff87046bcc2f8fe24a4baa76ba2b8 -2023-04-03 20:18:12.975366 + : Kick vote End -2023-04-03 20:21:11.022027 + : pb-IF4gU0wxBw== started kick vote for pb-IF4XU2cfKQ==. -2023-04-03 20:21:41.028443 + : Kick vote End -2023-04-03 20:21:44.334041 + : pb-IF5UVW4FUQ== ip: b}k~~`aaia}vayn, Device id: 0cf7681ebb983be0d37077adc2704bd742b5f86c -2023-04-03 20:23:17.676110 + : pb-IF5cVRYTCQ== ip: an~}ifajevaj, Device id: be694006c26106519e4a116c55f3391b57b7caab -2023-04-03 20:26:28.406624 + : pb-IF4vVRUFVA== ip: axi~xa~~haaiav, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 20:32:13.551796 + : pb-IF48UBUzCg== ip: azj~zo~}hiaj`x, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-04-03 20:34:16.034128 + : pb-IF4IU1c6Ug== ip: a}l~~jcaifxvhy, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-03 20:35:42.360136 + : pb-IF4IU1c6Ug== ip: azj~z`~|a~~h`, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-03 20:36:57.429387 + : pb-IF5WV1UoIg== started kick vote for pb-IF4IU1c6Ug==. -2023-04-03 20:37:27.432029 + : Kick vote End -2023-04-03 20:38:37.211491 + : pb-IF4OU2QjMQ== started kick vote for pb-IF4IU1c6Ug==. -2023-04-03 20:39:07.219245 + : Kick vote End -2023-04-03 20:40:34.578544 + : pb-IF4JUBEcLA== ip: ak~~laaic{vdz, Device id: df1e52c392e01b8b91ebe5e1253907b65d8ccc97 -2023-04-03 20:42:14.484321 + : pb-IF4IU1c6Ug== started kick vote for pb-IF4OU2QjMQ==. -2023-04-03 20:42:44.490581 + : Kick vote End -2023-04-03 20:45:56.807846 + : pb-IF4vVRUFVA== ip: axi~xa~~haaiav, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 20:47:22.119410 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~~ma, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-04-03 20:48:08.212716 + : pb-IF4-JUgB started kick vote for pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL. -2023-04-03 20:48:38.219837 + : Kick vote End -2023-04-03 20:48:46.463672 + : pb-IF4vVRUFVA== ip: axi~xa~~haaiav, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 20:51:16.034547 + : pb-IF4NUxFfEg== ip: an~}hhaih~vb}a, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-03 20:56:24.175432 + : pb-IF5TAHQO ip: dvvcxvg|va{o, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-03 20:58:36.603486 + : pb-IF49VFQlPA== ip: azo~zh~{k~}h, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-03 20:59:46.862692 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vb, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-03 21:00:23.996623 + : pb-IF4IU1c6Ug== ip: azj~z`~|a~~mi, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-03 21:05:25.149263 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-03 21:15:08.108894 + : pb-IF5TAHQO ip: dvvcxvg|va{o, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-03 21:15:23.156815 + : pb-IF49VFQlPA== ip: azo~zh~{k~}h, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-03 21:15:28.167155 + : pb-IF49VFQlPA== ip: azo~zh~{k~}h, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-03 21:15:57.269154 + : pb-IF5cUkgbFw== ip: ak~~h~}jfaae, Device id: ed21f62286644aec603addfd37c6d4eb5b3ef87f -2023-04-03 21:16:25.378633 + : pb-IF4NUxFfEg== ip: an~}hhaih~vb}a, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-03 21:17:49.644599 + : pb-JiNJARFcUUNFVVlHGUVZUFRDFUdeR1ZC ip: an~}icaahaib, Device id: 015a0cb7e587ab697743ad4583f22be93ef627fd -2023-04-03 21:19:44.049735 + : pb-IF4VU3laVA== ip: ak~~`ca`caidw, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-03 21:21:26.387691 + : pb-IF5WUBEqHw== ip: b}k~}jgaaaaicw, Device id: c3f216648bb3f8c6c9bc4164d352a554aa85f67e -2023-04-03 21:23:01.759162 + : pb-IF4vVRUFVA== ip: axi~xa~~haaiav, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 21:23:28.857849 + : pb-IF4TV3RbDA== ip: an~zi~}lbaja{, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-03 21:24:00.980947 + : pb-IF4TV3RbDA== ip: azo~zh~{h~}m`, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-03 21:24:20.048458 + : pb-IF4cUBYfCg== ip: azo~zh~|`~~oe, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-03 21:27:38.716275 + : pb-IF48U1AiDg== ip: a}j~~`aaafali, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-03 21:28:03.794216 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-03 21:40:25.339352 + : pb-IF5TAHQO ip: dvvcxvg|va{o, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-03 21:42:43.839039 + : pb-IF5dVWESVA== ip: an~}i`aidvvf, Device id: 70355884538ced97689516a667fd5ef02d165240 -2023-04-03 21:44:47.295688 + : pb-IF5cU2haHA== ip: dvvcxvbzh~yl, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-04-03 21:44:55.314021 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 21:45:34.433054 + : pb-IF4eUxYkNg== ip: azo~|a~xk~~li, Device id: cf463c3e8e5177f63280992858c9206120cc78da -2023-04-03 21:46:09.545515 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 21:48:19.959166 + : pb-IF5UVBMZEw== ip: bxvc{vc{vf~, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-04-03 21:49:06.120964 + : pb-IF5UVBMZEw== ip: bxvc{vc{vf~, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-04-03 21:49:24.172617 + : pb-IF49VFQlPA== ip: azo~zh~{k~}h, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-03 21:53:21.630534 + : pb-IF5cU2haHA== started kick vote for pb-IF4wBUUK. -2023-04-03 21:53:51.630147 + : Kick vote End -2023-04-03 21:55:54.745737 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vb, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-03 21:57:26.803446 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4jU0hTBg==. -2023-04-03 21:57:32.093557 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 21:57:56.809924 + : Kick vote End -2023-04-03 21:59:31.501654 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vb, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-03 21:59:40.538366 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vb, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-03 21:59:43.542741 + : pb-IF49VFQlPA== ip: azo~zh~{k~}h, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-03 22:00:44.780807 + : pb-IF4gUBMZEw== ip: ak~~i`alhaih{, Device id: 49046452e5d78460f54a87d649f1f98001dcd341 -2023-04-03 22:01:17.878218 + : pb-IF4gUBMZEw== ip: ak~~i`alhaih{, Device id: 49046452e5d78460f54a87d649f1f98001dcd341 -2023-04-03 22:01:40.969557 + : pb-IF40PkMh ip: d}va`~~afala, Device id: a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e -2023-04-03 22:02:56.207147 + : pb-IF4VU3EjBg== ip: azj~z`~|m~~`a, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-04-03 22:04:46.604785 + : pb-IF4wBUUK ip: azj~z`~|`~}h`, Device id: 358a012da6dc4f5bf1a73e0563183e0a62af9e40 -2023-04-03 22:05:54.852829 + : pb-IF4cUBYfCg== ip: azo~zh~|n~~i`, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-03 22:06:24.957382 + : pb-IF4eUxYkNg== ip: azo~|a~xk~~li, Device id: cf463c3e8e5177f63280992858c9206120cc78da -2023-04-03 22:09:12.520302 + : pb-IF5TAHQO ip: dvvcxvg|va{o, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-03 22:11:30.323768 + : pb-IF4WUBgPAg==|| kicked > new account -2023-04-03 22:11:52.099411 + : pb-IF5TU1ddPA== ip: azj~z`~|m~{j, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-04-03 22:14:28.616374 + : pb-IF4hU3EgJA== ip: azo~{l~~mcali, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-03 22:14:33.639235 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 22:19:27.648739 + : pb-IF5TAHQO | kicked > reason:Banned account -2023-04-03 22:20:45.939554 + : pb-IF4vV0g8Mw== ip: dvvc{vgvav`, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-03 22:20:48.944469 + : pb-IF4yVFgOVA== ip: ak~~naaid{vb~k, Device id: d854623f8a8ec9715c4cf1e44f2a453d5344d791 -2023-04-03 22:23:13.412241 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 22:23:27.456272 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 22:23:43.498060 + : pb-IF4VU3laVA== ip: ak~~`ca`caidw, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-03 22:23:43.498312 + : pb-IF40PkMh ip: d}va`~~afala, Device id: a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e -2023-04-03 22:23:55.530755 + : pb-IF4vV0g8Mw== ip: dvvc{vgvav`, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-03 22:25:55.924243 + : pb-IF49VFQlPA== ip: azo~zh~{k~}h, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-03 22:26:49.116076 + : pb-IF4wV24HBw== ip: a~o~va~~afaihx, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-03 22:27:23.237558 + : pb-IF4wV24HBw== ip: a~o~va~~afaihx, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-03 22:28:37.488320 + : pb-IF4wV24HBw== ip: a~o~va~~afaihx, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-03 22:28:54.036090 + : pb-IF4VU3laVA== started kick vote for pb-IF4wBUUK. -2023-04-03 22:29:06.595290 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-03 22:29:24.036447 + : Kick vote End -2023-04-03 22:31:10.054574 + : pb-IF5UVBMZEw== ip: bxvc{vc{vf~, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-04-03 22:33:18.544242 + : pb-IF4qVRY4Vg== ip: b}k~}kfan`aib, Device id: d041ba866757f85834a62ef606c034afb41fd757 -2023-04-03 22:33:30.587001 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 22:34:36.841044 + : pb-IF4qVRY4Vg== ip: b}k~}kfan`aib, Device id: d041ba866757f85834a62ef606c034afb41fd757 -2023-04-03 22:35:35.045634 + : pb-IF4jUnQzVA== ip: azo~zi~~lcaja, Device id: f7bba25c7d00099cac0a597ef9e8d34676bd9713 -2023-04-03 22:37:08.380275 + : pb-IF49VFdbEQ== ip: an~}hfaj`|va{h, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-03 22:37:27.450933 + : pb-IF49VFdbEQ== ip: an~}hfaj`|va{h, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-03 22:37:43.516657 + : pb-IF4qVRY4Vg== ip: b}k~}kfan`aib, Device id: d041ba866757f85834a62ef606c034afb41fd757 -2023-04-03 22:38:42.752849 + : pb-IF49VFdbEQ== ip: an~}hfaj`|va{h, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-03 22:42:30.556807 + : pb-IF4eU004Ew== ip: azo~zi~xh~~ni, Device id: 245153419ceac4a55cf9e92038ffdf3864e8a262 -2023-04-03 22:42:45.590239 + : pb-IF49VFdbEQ== ip: an~}hfaj`|va{h, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-03 22:43:50.812407 + : pb-IF4rLkwp ip: a~j~~kdaj`wvba, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-03 22:45:32.237838 + : pb-IF4rLkwp ip: a~j~~kdaj`wvba, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-03 22:46:51.521260 + : pb-IF4rLkwp ip: a~j~~kdaj`wvba, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-03 22:50:32.303143 + : pb-IF4SXhUa ip: azj~z`~xh~}jc, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-03 22:52:16.710014 + : pb-IF41U2scIg== ip: ak~za~xl~vh, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 22:52:49.545231 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`amf, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-03 22:53:01.586535 + : pb-IF49VFQlPA== ip: azo~zh~{k~}h, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-03 22:53:30.671158 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`amf, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-03 22:53:59.782439 + : pb-IF49VFQlPA== ip: azo~zh~{k~}h, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-03 22:54:30.898111 + : pb-IF49VFQlPA== ip: azo~zh~{k~}h, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-03 22:55:47.193923 + : pb-IF4vVRUFVA== ip: axi~xa~~haaiav, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 22:58:49.815034 + : pb-IF49VFQlPA== ip: azo~zh~{k~}h, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-03 23:00:24.127476 + : pb-IF4DU0IEJg== ip: azo~|a~}laami, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-03 23:00:51.220942 + : pb-IF49VFdbEQ== ip: b}k~}jhajd}vaj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-03 23:01:27.376050 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~{o, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-03 23:01:40.451740 + : pb-IF5VVHBTBA== ip: azo~|m~}vavi, Device id: 972d049805af04a4c00ead87cbe30656fd50cda9 -2023-04-03 23:02:18.598495 + : pb-IF49VFQlPA== ip: azo~zh~{k~}h, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-03 23:02:43.698734 + : pb-IF49VFdbEQ== ip: b}k~}jhajd}vaj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-03 23:03:41.913965 + : pb-IF49VFQlPA== ip: azo~zh~{k~}h, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-03 23:04:33.094771 + : pb-IF4gU0wxBw== ip: ak~za~xl~vh, Device id: 3c3c4de399c13315ae6d36ec6975c03556250fec -2023-04-03 23:05:20.274676 + : pb-IF49VFdbEQ== ip: b}k~}jhajd}vaj, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-03 23:09:13.133982 + : pb-IF49VFQlPA== ip: azo~zh~{k~}h, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-03 23:12:42.926874 + : pb-IF4SXhUa ip: azj~z`~xh~}jc, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-03 23:16:33.776063 + : pb-IF4vVRUFVA== ip: axi~xa~~haaiav, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-03 23:16:48.827107 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~{o, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-03 23:23:17.167972 + : pb-IF49VFQlPA== ip: azo~zh~{k~}h, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-03 23:25:23.674603 + : pb-IF4hBFgH ip: ak~}m~~niaihz, Device id: a6236484c5b3964fcd4361ad664b0232a039b16d -2023-04-03 23:26:08.827234 + : pb-IF4NUxFfEg== ip: an~}hgajd|va|j, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-03 23:26:14.868329 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`amf, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-03 23:27:12.083871 + : pb-IF4LUBEnBA== | kicked > reason:Banned account -2023-04-03 23:28:28.324501 + : pb-IF4zU1QoUQ== ip: a|j~~mdambaj, Device id: 20c48a0ce5544f55d236a96abdf6d18062861f3c -2023-04-03 23:28:31.342829 + : pb-IF4wV24HBw== ip: a~o~va~}hdaihx, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-03 23:29:38.577563 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-03 23:36:05.842796 + : pb-IF4KU1Q9Pw== ip: a~m~vo~}k~}k`, Device id: 217799c313cf0a8fc57851c7c11d507bce2f3696 -2023-04-03 23:36:44.987575 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vb, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-03 23:37:43.198987 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vb, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-03 23:38:26.367546 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vb, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-03 23:38:29.346824 + : pb-IF4vVRUFVA== started kick vote for pb-IF4KU1Q9Pw==. -2023-04-03 23:38:49.454970 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vb, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-03 23:38:59.351095 + : Kick vote End -2023-04-03 23:39:53.664260 + : pb-IF4zU1QoUQ== ip: a|j~~mdambaj, Device id: 20c48a0ce5544f55d236a96abdf6d18062861f3c -2023-04-03 23:40:28.816410 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~{o, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-03 23:40:36.781924 + : pb-IF4TUxEoKg== started kick vote for pb-IF4zU1QoUQ==. -2023-04-03 23:40:53.925295 + : pb-IF4SXhUa ip: azj~z`~xh~}jc, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-03 23:41:06.786388 + : Kick vote End -2023-04-03 23:41:19.011023 + : pb-IF5cU2haHA== ip: dvvcxvbzh~yl, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-04-03 23:41:50.113822 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 23:42:37.300941 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-03 23:45:38.918232 + : pb-IF4BU1gtAA== ip: d|vb{n~~naajcw, Device id: 1f2a67f3540a90953f0d00eae021c1d40dc8c27c -2023-04-03 23:45:50.589494 + : pb-IF4zU1QoUQ== started kick vote for pb-IF4vVRUFVA==. -2023-04-03 23:46:20.597137 + : Kick vote End -2023-04-03 23:46:23.081643 + : pb-IF4sU1EeAA== ip: b}k~~`ga`eaia, Device id: a4ccc2a4110c9b63a5fd073bee5f4d32900d0444 -2023-04-03 23:47:23.326067 + : pb-IF49VFdbEQ== ip: b}k~}jhajd|vaz`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-03 23:50:33.001648 + : pb-IF4jU1ggEw== ip: dvvcxvb|k~}lc, Device id: 06984a49d12081c2493bb2c3f2e3ff6a10957cb1 -2023-04-03 23:55:31.185189 + : pb-IF49VFQlPA== ip: azo~zh~{k~}h, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-03 23:56:22.399475 + : pb-IF49VFQlPA== ip: azo~zh~{k~}h, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-03 23:57:13.576843 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|m~~aa, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-04-03 23:59:06.991717 + : pb-IF4rLkwp ip: a~j~~kdaj`wvba, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-04 00:05:02.348392 + : pb-LV4FB0JTA0VAWFYUEUdXBlNDFg== ip: dvvd|vdva}j, Device id: 9d487a72ae242a6c9432920f6c925273273addeb -2023-04-04 00:16:52.007476 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~{o, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-04 00:18:20.316487 + : pb-IF4-UhMADA== ip: ak~xh~~o`aid, Device id: f24f537291eb696fedb07623d252ceff2775e1af -2023-04-04 00:18:57.410412 + : pb-LV4FB0JTA0VAWFYUEUdXBlNDFg== ip: dvvd|vdva}j, Device id: 9d487a72ae242a6c9432920f6c925273273addeb -2023-04-04 00:21:09.933171 + : pb-IF5cUkgbFw== ip: ak~~h~}jfaae, Device id: ed21f62286644aec603addfd37c6d4eb5b3ef87f -2023-04-04 00:27:35.292017 + : pb-IF5UUxcSJg== ip: awi~~idaibzvaxa, Device id: b6824c7bb782dbf0f64820ee87d89aee64ee4c6b -2023-04-04 00:37:23.464850 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-04 00:38:54.805782 + : pb-IF4vVRUFVA== ip: axi~xa~~haaiav, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 00:41:37.441827 + : pb-IF4TV3RbDA== ip: azo~zh~zj~~ae, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-04 00:41:42.459593 + : pb-IF4yVXVYIw== ip: bxvc{vevaya, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-04-04 00:50:03.276794 + : pb-IF4yVXVYIw== ip: bxvc{vevaya, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-04-04 00:52:48.883300 + : pb-IF4BU0s5MQ== ip: awa~}ifajaaje|, Device id: cabce49d5d06fe7aebf08088eae818d999a929f8 -2023-04-04 00:54:43.264728 + : pb-IF4BU0s5MQ== ip: awa~}ifajaaje|, Device id: cabce49d5d06fe7aebf08088eae818d999a929f8 -2023-04-04 00:55:00.332330 + : pb-IF4BU0s5MQ== ip: awa~}ifajaaje|, Device id: cabce49d5d06fe7aebf08088eae818d999a929f8 -2023-04-04 00:56:04.572535 + : pb-IF4BU0s5MQ== ip: awa~}ifajaaje|, Device id: cabce49d5d06fe7aebf08088eae818d999a929f8 -2023-04-04 00:56:51.738880 + : pb-IF4BU0s5MQ== ip: awa~}ifajaaje|, Device id: cabce49d5d06fe7aebf08088eae818d999a929f8 -2023-04-04 01:01:57.812633 + : pb-IF49VFdbEQ== ip: b}k~}jhajbxvbx, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 01:08:38.292460 + : pb-IF4BU0s5MQ== ip: awa~}ifajaaje|, Device id: cabce49d5d06fe7aebf08088eae818d999a929f8 -2023-04-04 01:10:00.561391 + : pb-IF4NU0taEQ== ip: awa~}ifajaaje|, Device id: 8c1c69f8ab096ce85465bd023b049cb3e8a2898a -2023-04-04 01:13:14.245653 + : pb-IF4TV3RbDA== ip: azo~zh~zi~}jd, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-04 01:17:29.223500 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-04 01:17:35.240956 + : pb-IF5cV044Jw== ip: a~o~v`~~h~yh, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-04-04 01:26:19.235497 + : pb-IF49VFdbEQ== ip: b}k~}jhajbxvbx, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 01:39:50.253713 + : pb-IF49VFdbEQ== ip: b}k~}jhajbxvbx, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 01:44:46.309819 + : pb-IF5TAHQO | kicked > reason:Banned account -2023-04-04 01:47:42.950879 + : pb-IF49VFdbEQ== ip: b}k~}jhajbxvbx, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 01:48:32.152143 + : pb-IF49VFdbEQ== ip: b}k~}jhajbxvbx, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 01:48:33.156873 + : pb-IF4NUxFfEg== ip: an~}hgajdvdw, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-04 01:48:54.237890 + : pb-IF49VFdbEQ== ip: b}k~}jhajbxvbx, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 01:58:50.401431 + : pb-IF4CU0xfKA== ip: azj~z`~{a~}`, Device id: f1f34417f60d7537fb9cc1e9f1b496f53063f733 -2023-04-04 02:19:26.935974 + : pb-IF5VUlYhJw== ip: azo~zh~xvaxm, Device id: 49aba9148ddf7a23b2257abcdb8b9b0f0e4cddc9 -2023-04-04 02:22:35.624965 + : pb-IF5cV044Jw== ip: a~o~v`~~h~w, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-04-04 02:24:18.019309 + : pb-IF5cV044Jw== ip: a~o~v`~~n~{n, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-04-04 02:24:46.154275 + : pb-IF5VUlYhJw== ip: azo~zh~xvaxm, Device id: 49aba9148ddf7a23b2257abcdb8b9b0f0e4cddc9 -2023-04-04 02:30:00.319524 + : pb-IF5VUlYhJw== ip: azo~zh~xvaxm, Device id: 49aba9148ddf7a23b2257abcdb8b9b0f0e4cddc9 -2023-04-04 02:47:33.040267 + : pb-IF49U1IiIA== ip: azo~{m~vh~~hb, Device id: cab82c44dc8fe46868ca16d86e5ebbe8934766d9 -2023-04-04 02:53:07.214930 + : pb-IF4jUBYBBA== ip: a|o~vo~va~w`, Device id: cfb02df665c3fb573607e1b7f33653ba3e2f82c9 -2023-04-04 03:03:05.328024 + : pb-IF4jUBYBBA== ip: a|o~vo~va~w`, Device id: cfb02df665c3fb573607e1b7f33653ba3e2f82c9 -2023-04-04 03:03:11.350174 + : pb-IF4jUBYBBA== ip: a|o~vo~va~w`, Device id: cfb02df665c3fb573607e1b7f33653ba3e2f82c9 -2023-04-04 03:24:05.728683 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-04 04:07:24.318429 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-04 04:10:16.953566 + : pb-IF4cUBYfCg== ip: azo~zh~|l~w, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-04 04:11:04.138220 + : pb-IF42U0INNw== ip: azj~zo~~nbaoh, Device id: 4a67fdabdd99ca4f80fa1d96067ebd76bb7f9440 -2023-04-04 08:52:44.864666 + : pb-IF49VFdbEQ== ip: b}k~}jhajczvi}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 09:31:52.325426 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-04 09:32:29.876032 + : pb-IF4eVE5eLg== started kick vote for pb-IF4AV1QqEQ==. -2023-04-04 09:32:50.838184 + : pb-IF4QUBcSLw==|| kicked > new account -2023-04-04 09:32:52.675411 + : Kick vote End -2023-04-04 09:33:26.684411 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-04 09:33:35.398187 + : pb-IF4eVE5eLg== started kick vote for pb-IF4AV1QqEQ==. -2023-04-04 09:34:05.402951 + : Kick vote End -2023-04-04 09:35:06.044523 + : pb-IF49VFdbEQ== ip: b}k~}jhajczvi}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 09:35:20.812553 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4eVE5eLg==. -2023-04-04 09:35:21.100192 + : pb-IF49VFdbEQ== ip: b}k~}jhajczvi}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 09:35:24.533483 + : pb-IF4eVE5eLg== kicked by kickvotes. -2023-04-04 09:35:33.134363 + : pb-IF49VFdbEQ== ip: b}k~}jhajczvi}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 09:43:48.961393 + : pb-IF4cUBYfCg== ip: azo~zh~zl~~mg, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-04 09:47:55.050933 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4mUBUBIQ==. -2023-04-04 09:48:25.014846 + : pb-IF49U0QJDw== ip: b}k~}khaj`zva`, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-04 09:48:25.053257 + : Kick vote End -2023-04-04 09:51:18.643838 + : pb-IF4-JUgB ip: ak~~j`aje}vfv, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-04-04 09:54:27.316364 + : pb-IF4DU1I4CQ== ip: azj~z`~}idaiay, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-04-04 09:56:05.948984 + : pb-IF5RUGERIA==|| kicked > new account -2023-04-04 09:58:40.227280 + : pb-IF5dU3UiAw== ip: a~o~}meaia}va{`, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-04 10:02:16.872210 + : pb-IF4hU3EgJA== ip: azo~{l~~mcai`v, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-04 10:03:04.026630 + : pb-IF49VFdbEQ== ip: b}k~}jhajczvi}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 10:07:46.014086 + : pb-IF4QU1MqFQ== ip: azo~zh~}k~~m`, Device id: 906ed790f9a3c32842b6841cfa571c60f1bb08bb -2023-04-04 10:14:16.474984 + : pb-IF5dU3UiAw== ip: a~o~}meaia}va{`, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-04 10:14:40.560503 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`ake, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-04 10:14:56.691352 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-04-04 10:20:00.901107 + : pb-IF4FUEY4 ip: ak~{l~~hfamf, Device id: 452bcd37350866efb1deb4f785c1364a1abde5d2 -2023-04-04 10:21:42.222045 + : pb-IF4QVVlaLw== ip: azo~|j~|j~vh, Device id: 52b597e89fffafcfabd81f4f2d8d3df719148be9 -2023-04-04 10:22:39.420211 + : pb-IF4FUEY4 ip: ak~{l~~hfamf, Device id: 452bcd37350866efb1deb4f785c1364a1abde5d2 -2023-04-04 10:24:12.761855 + : pb-IF4zU1QoUQ== ip: a|j~~mdameamc, Device id: 20c48a0ce5544f55d236a96abdf6d18062861f3c -2023-04-04 10:24:54.926541 + : pb-IF4cUBYfCg== ip: azo~zh~zn~~me, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-04 10:25:36.119547 + : pb-IF4TUlgePw== ip: b}k~}khajfai`z, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-04-04 10:30:03.772517 + : pb-IF4rUBgGJA==|| kicked > new account -2023-04-04 10:33:07.788634 + : pb-IF4JUBYjPQ== ip: awk~wo~va~wn, Device id: 56e2046a007f10f23e72415a2f9b21816c6fd630 -2023-04-04 10:33:39.891513 + : pb-IF4JUBYjPQ== ip: awk~wo~va~wn, Device id: 56e2046a007f10f23e72415a2f9b21816c6fd630 -2023-04-04 10:33:53.953255 + : pb-IF4IVUgjBg== ip: ak~wo~{a~zn, Device id: 3af6c58f34cf3eda069c674ce366492955a89348 -2023-04-04 10:35:12.239381 + : pb-IF5RU3UzJA== ip: an~~adaib~va}k, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-04-04 10:38:43.000325 + : pb-IF5dU3UiAw== ip: f~vbakeaia, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-04 10:44:43.481336 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-04 10:45:43.729203 + : pb-IF4WU0wvVA== ip: d}van~}lhaifv, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-04 10:48:29.466514 + : pb-IF4vVRUFVA== ip: an~}hbajd}vdz, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 10:48:57.541020 + : pb-IF5dVWEJMg== ip: azo~{n~~j`aji, Device id: 5ab7cb7a5f685d0d0dc98dafbdb2ce8610260d79 -2023-04-04 10:49:15.594104 + : pb-IF4zU1QoUQ== ip: a|j~~mdamdaag, Device id: 20c48a0ce5544f55d236a96abdf6d18062861f3c -2023-04-04 10:50:35.903818 + : pb-IF4KU1Q9Pw== ip: a~m~vo~}k~}k`, Device id: 217799c313cf0a8fc57851c7c11d507bce2f3696 -2023-04-04 10:50:39.917161 + : pb-IF4zU1QoUQ== ip: a|j~~mdamdaag, Device id: 20c48a0ce5544f55d236a96abdf6d18062861f3c -2023-04-04 10:52:07.209800 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-04 10:54:58.925277 + : pb-IF49VFdbEQ== ip: b}k~}jhajc|vaxk, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 10:57:44.479014 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`ake, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-04 10:59:07.784282 + : pb-IF4GUBctCg== ip: azj~zo~~ohaj`|, Device id: d984982edcbbc276e8684193ba95a3eb9423ad2a -2023-04-04 11:00:12.029388 + : pb-IF4cUBYfCg== ip: azo~zh~{j~~o`, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-04 11:01:02.598053 + : pb-IF4KU1Q9Pw== started kick vote for pb-IF4dU1kMIA==. -2023-04-04 11:01:03.201448 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-04 11:01:32.603951 + : Kick vote End -2023-04-04 11:02:50.603330 + : pb-IF5RU3UzJA== ip: an~~adaib~va}k, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-04-04 11:03:21.308933 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4DU1I4CQ==. -2023-04-04 11:03:50.836802 + : pb-IF49VFdbEQ== ip: b}k~}jhajc|vaxk, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 11:03:51.311827 + : Kick vote End -2023-04-04 11:05:55.289427 + : pb-IF49VFdbEQ== ip: b}k~}jhajc|vaxk, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 11:06:41.442224 + : pb-IF4vV0g8Mw== ip: dvvc{vawj~}kh, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-04 11:06:45.501961 + : pb-IF4KU1Q9Pw== started kick vote for pb-IF4OU1IZVg==. -2023-04-04 11:07:02.520969 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-04 11:07:15.505781 + : Kick vote End -2023-04-04 11:08:49.945071 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4TUxEoKg==. -2023-04-04 11:09:17.028719 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~~ma, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-04-04 11:09:19.948425 + : Kick vote End -2023-04-04 11:10:08.194388 + : pb-IF4DU0IEJg== ip: azo~|a~xi~~`b, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-04 11:10:23.245518 + : pb-IF4DU0IEJg== ip: azo~|a~xi~~`b, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-04 11:11:30.208841 + : pb-IF4zU1QoUQ== started kick vote for pb-IF4wU1MPEg==. -2023-04-04 11:12:00.212392 + : Kick vote End -2023-04-04 11:12:43.758385 + : pb-IF4OU00jBA== ip: azj~z`~|l~ym, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-04 11:13:25.000725 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-04-04 11:15:50.197037 + : pb-IF4DU0IEJg== started kick vote for pb-IF4wU1MPEg==. -2023-04-04 11:16:01.208778 + : pb-IF4GUBgYUA==|| kicked > new account -2023-04-04 11:16:20.199666 + : Kick vote End -2023-04-04 11:17:14.818639 + : pb-IF4cUBYfCg== ip: azo~zh~{j~~o`, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-04 11:18:19.052790 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-04 11:18:22.064610 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-04 11:19:12.741758 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4OU00jBA==. -2023-04-04 11:19:42.744147 + : Kick vote End -2023-04-04 11:21:58.407648 + : pb-IF4DU0IEJg== started kick vote for pb-IF4cUBYfCg==. -2023-04-04 11:22:28.411593 + : Kick vote End -2023-04-04 11:26:28.708115 + : pb-IF4cUBYfCg== ip: azo~zh~{j~~o`, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-04 11:32:47.297518 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-04 11:35:27.833585 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-04 11:36:18.091789 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-04 11:38:28.531576 + : pb-IF5UUxU7Ag== ip: an~~aealga`c, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-04 11:39:18.693918 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-04 11:39:33.747649 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-04 11:40:41.067142 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-04 11:40:46.084991 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-04 11:40:49.100526 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-04 11:40:51.107839 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`ake, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-04 11:41:02.142128 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-04 11:41:04.151157 + : pb-IF4OU00jBA== ip: azj~z`~|l~ym, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-04 11:41:50.295678 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-04-04 11:42:25.419733 + : pb-IF4OU00jBA== ip: azj~z`~|l~ym, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-04 11:43:04.521873 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-04 11:43:17.572176 + : pb-IF5cV044Jw== ip: a~o~v`~~n~~oa, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-04-04 11:44:26.826665 + : pb-IF49U0QJDw== ip: bxvf|viwvb|a, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-04 11:45:33.085283 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-04 11:49:36.984656 + : pb-IF5WU0cRAg== ip: d}va`~~afaih, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-04 11:53:59.894356 + : pb-IF5WU0cRAg== ip: d}va`~~afaih, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-04 11:53:59.894600 + : pb-IF4OU00jBA== ip: azj~z`~|l~ym, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-04 11:54:21.959254 + : pb-IF5WU0cRAg== ip: d}va`~~afaih, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-04 11:54:28.984737 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-04 11:54:47.038313 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-04 11:54:57.075483 + : pb-IF4OU00jBA== ip: azj~z`~|l~ym, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-04 11:55:01.102884 + : pb-IF5WUBEqHw== ip: a~h~}jgalcaidx, Device id: c3f216648bb3f8c6c9bc4164d352a554aa85f67e -2023-04-04 11:55:18.177082 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-04-04 11:55:43.262040 + : pb-IF48UkZTCw== ip: dvvcyvawm~}li, Device id: b3959a99d0029de9f20ab576db077cba79fd9761 -2023-04-04 11:56:48.535353 + : pb-IF4cUBYfCg== ip: azo~zh~zk~~ma, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-04 11:56:56.862947 + : pb-IF5WUBEqHw== started kick vote for pb-IF48UkZTCw==. -2023-04-04 11:57:26.865465 + : Kick vote End -2023-04-04 11:57:45.753995 + : pb-IF5WU0cRAg== ip: d}va`~~afaih, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-04 11:58:19.858793 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-04-04 11:59:00.989319 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-04 11:59:19.068853 + : pb-IF4eVUJdDQ== ip: ak~}leai`zva{n, Device id: 00aea33cef73e6fdcd33dcd5bd7722328b8194f4 -2023-04-04 12:00:13.275494 + : pb-IF4VU3laVA== ip: ak~~n`aii{vd}, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-04 12:01:00.463515 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-04 12:01:01.762494 + : pb-IF5WUBEqHw== started kick vote for pb-IF48UkZTCw==. -2023-04-04 12:01:31.768628 + : Kick vote End -2023-04-04 12:01:36.594002 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-04 12:01:59.672623 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-04 12:02:34.424837 + : pb-IF4eVUJdDQ== started kick vote for pb-IF4OU2QjMQ==. -2023-04-04 12:03:02.959370 + : pb-IF5VP0cq ip: fvbzl~|m~~`e, Device id: f83246ecbce3c368deb9ee5929805cc6c7f53215 -2023-04-04 12:03:04.429296 + : Kick vote End -2023-04-04 12:03:40.091061 + : pb-IF5WUBEqHw== ip: a~h~}jgalcaidx, Device id: c3f216648bb3f8c6c9bc4164d352a554aa85f67e -2023-04-04 12:04:23.257970 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vev, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-04 12:05:20.355817 + : pb-IF5TV2MzCA== started kick vote for pb-IF4OU2QjMQ==. -2023-04-04 12:05:33.513544 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-04 12:05:50.358089 + : Kick vote End -2023-04-04 12:06:22.684369 + : pb-IF49U0QJDw== ip: an~}heaiivvd, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-04 12:06:44.139568 + : pb-IF4oUBg5Cg==|| kicked > new account -2023-04-04 12:06:56.866911 + : pb-IF4OU2QjMQ== started kick vote for pb-IF4iUmsSDw==. -2023-04-04 12:07:26.867453 + : Kick vote End -2023-04-04 12:10:19.834045 + : pb-IF4DU0IEJg== started kick vote for pb-IF4OU2QjMQ==. -2023-04-04 12:10:49.840051 + : Kick vote End -2023-04-04 12:12:08.901180 + : pb-IF5UUxU7Ag== ip: an~~agai`{vayn, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-04 12:12:50.033466 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-04 12:13:20.140703 + : pb-IF4VU3laVA== ip: ak~~n`aii{vd}, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-04 12:15:55.682307 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-04 12:16:47.851356 + : pb-IF4DU0IEJg== started kick vote for pb-IF5WU0cRAg==. -2023-04-04 12:17:17.854730 + : Kick vote End -2023-04-04 12:18:27.211605 + : pb-IF4VU3laVA== ip: ak~~n`aii{vd}, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-04 12:18:56.331161 + : pb-IF4VU3laVA== ip: ak~~n`aii{vd}, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-04 12:19:30.433597 + : pb-IF4oUBg5Cg== | kicked > reason:Banned account -2023-04-04 12:24:33.562812 + : pb-IF4vV0g8Mw== ip: dvvc{vawj~}kh, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-04 12:25:09.695918 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-04 12:26:30.980056 + : pb-IF4qVRY4Vg== ip: b}k~}kfan`aib, Device id: d041ba866757f85834a62ef606c034afb41fd757 -2023-04-04 12:28:14.324390 + : pb-IF4KUnJYAA== ip: a~o~}kgaj`vvbl, Device id: ebe79631b4b2632083bc497517d021f1d6d2668e -2023-04-04 12:32:59.302693 + : pb-IF49U0QJDw== ip: an~}heaiivvd, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-04 12:35:31.820644 + : pb-IF4DU3MiAQ== ip: azo~{a~~ohamh, Device id: fcd2664e72bb4529e96cd44087b9cfa52dc59a94 -2023-04-04 12:39:34.761222 + : pb-IF4IV3Q5CA== ip: ak~xi~xo~}hd, Device id: 48f217bbea2b98dd33867c510af5c93b154b1e2e -2023-04-04 12:41:23.223578 + : pb-IF41U0sYPA== ip: an~~aeai~|, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-04 12:42:55.480606 + : pb-IF41U0sYPA== ip: an~~aeai~|, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-04 12:43:28.606039 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-04 12:44:17.776205 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-04 12:50:47.209623 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-04 12:51:14.309888 + : pb-IF4vVRUFVA== ip: dxviakdaja{, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 12:52:49.694039 + : pb-IF41U0sYPA== ip: an~~aeai~|, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-04 12:53:18.789383 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-04 12:55:58.654189 + : pb-IF4GUBgYCw==|| kicked > new account -2023-04-04 12:56:39.272712 + : pb-IF4AV1QqEQ== started kick vote for pb-JiNJARFZUUpEWF5JFkdTXVdEEEVdQ1ZA. -2023-04-04 12:57:09.275281 + : Kick vote End -2023-04-04 12:59:51.937563 + : pb-JiNJARFZUUpEWF5JFkdTXVdEEEVdQ1ZA started kick vote for pb-IF4AV1QqEQ==. -2023-04-04 13:00:21.945723 + : Kick vote End -2023-04-04 13:00:24.208700 + : pb-IF4vVRUFVA== ip: b}k~}keajb~vgy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 13:00:27.215840 + : pb-IF4cUBYfCg== ip: azo~zh~zo~xk, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-04 13:00:58.322003 + : pb-IF4vVRUFVA== ip: b}k~}keajb~vgy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 13:01:40.510680 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-04 13:02:36.716230 + : pb-IF49VFdbEQ== ip: b}k~}jhajcxvbk, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 13:03:40.964066 + : pb-IF41U0sYPA== ip: an~~aeai~|, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-04 13:04:38.560356 + : pb-IF4AU0IoCA== started kick vote for pb-IF4dU0sjJg==. -2023-04-04 13:05:08.560988 + : Kick vote End -2023-04-04 13:05:39.381670 + : pb-IF49VFdbEQ== ip: b}k~}jhajcxvbk, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 13:08:45.355135 + : pb-IF41UBhcLA==|| kicked > new account -2023-04-04 13:08:47.061569 + : pb-IF42UBEfJA== ip: ak~~laaia}va~a, Device id: b6001bb84afc7763bc1e3a8cfb219d7072224488 -2023-04-04 13:09:06.159093 + : pb-IF49U0QJDw== ip: an~}heaiivvd, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-04 13:12:31.897660 + : pb-IF5SUno-Ug== ip: dxvbvvaxk~{k, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-04-04 13:12:36.904512 + : pb-IF5VU3lYDA== ip: azj~z`~~`baiaz, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-04-04 13:13:27.137228 + : pb-IF5UUxU7Ag== ip: an~~agai`{vayn, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-04 13:14:09.299853 + : pb-IF49VFdbEQ== ip: b}k~}jhajcxvbk, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 13:14:28.356783 + : pb-IF48U1AiDg== ip: b}k~}keaj`~vbk, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-04 13:16:36.876759 + : pb-IF5SUno-Ug== started kick vote for pb-IF4OUBY-HA==. -2023-04-04 13:16:46.877703 + : pb-IF4eUBMTKA== ip: a~h~}jgaiaah, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-04 13:17:06.878243 + : Kick vote End -2023-04-04 13:17:12.972204 + : pb-IF5RU3UzJA== ip: aajcaia~vb|o, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-04-04 13:17:40.047580 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vavl, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-04 13:21:04.074528 + : pb-IF4qUBYnLA== started kick vote for pb-IF48U1AiDg==. -2023-04-04 13:21:12.668841 + : Kick vote End -2023-04-04 13:21:36.891029 + : pb-IF4eUBMTKA== ip: a~h~}jgaiaah, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-04 13:21:59.979580 + : pb-IF4jF1NY ip: a~j~xa~xj~}ia, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-04 13:24:44.530598 + : pb-IF4qU2IFLw== ip: azo~{a~vk~xh, Device id: 21ca34290490e348fb7f3de213054deff4ac28d6 -2023-04-04 13:25:07.619490 + : pb-IF4BU1gtAA== ip: azj~zo~~`eaob, Device id: 1f2a67f3540a90953f0d00eae021c1d40dc8c27c -2023-04-04 13:25:12.634339 + : pb-IF4vVRUFVA== ip: b}k~}keajb~vgy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 13:26:43.812296 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF4BU1gtAA==. -2023-04-04 13:26:48.968015 + : pb-IF49U0QJDw== ip: an~}heaiivvd, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-04 13:26:49.971045 + : pb-IF5VU3lYDA== ip: azj~z`~~`baji, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-04-04 13:27:06.031912 + : pb-IF4vVRUFVA== ip: b}k~}keajb~vgy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 13:27:13.814408 + : Kick vote End -2023-04-04 13:29:52.139250 + : pb-IF41U0sYPA== started kick vote for pb-IF4qUBYnLA==. -2023-04-04 13:30:22.144209 + : Kick vote End -2023-04-04 13:32:55.207253 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-04 13:33:50.404552 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-04 13:36:21.957761 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vavl, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-04 13:38:34.380942 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-04 13:44:18.638819 + : pb-IF4QUBQoBw== ip: azo~|j~|m~~je, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-04-04 13:44:21.653298 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-04 13:46:07.107327 + : pb-IF48U1AiDg== ip: b}k~}keaj`~vbk, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-04 13:46:28.168682 + : pb-IF48U1AiDg== ip: b}k~}keaj`~vbk, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-04 13:47:04.300576 + : pb-IF4yU1oxUg== ip: azo~|j~|j~~mf, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-04 13:50:03.912824 + : pb-IF4WU0wvVA== ip: d}van~}lhaifv, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-04 13:50:19.975481 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-04 13:51:53.412343 + : pb-IF48U1AiDg== ip: b}k~}keaj`~vbk, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-04 13:53:57.919198 + : pb-IF4CUnoxKQ== ip: a|o~vo~xk~~hh, Device id: b92d5f0f20d136012a5d3f47cc76b8c02229342f -2023-04-04 13:54:33.908150 + : pb-IF4pU1MJIw== started kick vote for pb-IF4wV24HBw==. -2023-04-04 13:54:53.989959 + : Kick vote End -2023-04-04 13:56:30.537971 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-04 13:56:41.581261 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-04 13:56:54.633569 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-04 13:57:41.783521 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-04 13:57:45.162110 + : pb-IF40VXMlBA== started kick vote for pb-IF4QUBQoBw==. -2023-04-04 13:58:15.166779 + : Kick vote End -2023-04-04 13:59:28.203548 + : pb-IF4yU0hYEw== ip: azj~z`~~iha`c, Device id: 052bbfd43b91c5bc01d4ba79df1c076697418a48 -2023-04-04 13:59:34.229843 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-04 14:00:37.847525 + : pb-IF4yU0hYEw== started kick vote for pb-IF40VXMlBA==. -2023-04-04 14:01:07.849615 + : Kick vote End -2023-04-04 14:01:25.784238 + : pb-IF4QUBQoBw== ip: azo~|j~|m~~je, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-04-04 14:01:29.795929 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-04 14:05:23.578377 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-04-04 14:06:56.885671 + : pb-IF4cU0kfUA== ip: hvd~vb~l~yn, Device id: df45720258668a73b6ad583cc0bf116ff953ea55 -2023-04-04 14:07:04.909982 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vev, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-04 14:12:47.232057 + : pb-IF4DU1I4CQ== ip: azj~z`~}ieaicy, Device id: 716a8bff15871cc3add4668c7591b9b2968a5e0d -2023-04-04 14:13:07.862677 + : pb-IF4DU0IEJg== started kick vote for pb-IF4NU0wvUQ==. -2023-04-04 14:13:10.315168 + : pb-IF4vVRUFVA== ip: b}k~}keajb~vgy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 14:13:37.863294 + : Kick vote End -2023-04-04 14:14:37.656740 + : pb-IF4RU3g9Lw== ip: ak~~j`aje}vfv, Device id: 573d51d73ee5bdbc9cd6ce321fb00cfe34f7acec -2023-04-04 14:14:55.998791 + : pb-IF4wU1MPEg== started kick vote for pb-IF4DU0IEJg==. -2023-04-04 14:15:01.745664 + : pb-IF4cU0kfUA== ip: hvd~vb~l~yn, Device id: df45720258668a73b6ad583cc0bf116ff953ea55 -2023-04-04 14:15:04.758553 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-04 14:15:26.005572 + : Kick vote End -2023-04-04 14:15:41.871272 + : pb-IF49U0QJDw== ip: an~}heaiivvd, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-04 14:16:11.980888 + : pb-IF4NU0ojAA== ip: azj~zo~~l~}jc, Device id: 3d647e7dac07fd7bb037d38317d7799c7a6d9b64 -2023-04-04 14:20:20.836485 + : pb-IF4vVRUFVA== ip: b}k~}keajb~vgy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 14:21:10.091283 + : pb-IF4NU0ojAA== started kick vote for pb-IF4yU1oxUg==. -2023-04-04 14:21:20.057931 + : pb-IF4WU0wvVA== ip: dvvc}vavm~~nd, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-04 14:21:40.095630 + : Kick vote End -2023-04-04 14:23:11.482033 + : pb-IF4NUxFfEg== ip: an~}hgajdvbo, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-04 14:23:22.523546 + : pb-IF4NUxFfEg== ip: an~}hgajdvbo, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-04 14:23:42.589340 + : pb-IF4VU3laVA== ip: ak~~n`aii{vd}, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-04 14:27:06.254880 + : pb-IF41U2scIg== ip: ak~}hhaoaaiez, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-04 14:27:36.377205 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-04 14:29:32.073658 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC started kick vote for pb-IF4iUmsSDw==. -2023-04-04 14:30:02.078799 + : Kick vote End -2023-04-04 14:31:05.095063 + : pb-IF5cU2haHA== ip: dvvcxvbzh~yl, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-04-04 14:34:33.455281 + : pb-IF4NUxFfEg== started kick vote for pb-IF5VK0sD. -2023-04-04 14:35:03.456769 + : Kick vote End -2023-04-04 14:36:13.145389 + : pb-IF5SUno-Ug== ip: dxvbvvaxl~}m`, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-04-04 14:36:33.227288 + : pb-IF4eUBMTKA== ip: ak~}hhaoaaiez, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-04 14:37:37.908281 + : pb-IF4eUBMTKA== started kick vote for pb-IF5VK0sD. -2023-04-04 14:37:38.474057 + : pb-IF4NUxFfEg== ip: an~}hgajdvbo, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-04 14:38:07.909211 + : Kick vote End -2023-04-04 14:38:55.778193 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-04 14:39:14.979676 + : pb-IF4vVRUFVA== started kick vote for pb-IF5VK0sD. -2023-04-04 14:39:44.986396 + : Kick vote End -2023-04-04 14:42:31.227233 + : pb-IF4eUBMTKA== started kick vote for pb-IF5VK0sD. -2023-04-04 14:43:01.235006 + : Kick vote End -2023-04-04 14:44:58.516221 + : pb-IF4qUBgxUw==|| kicked > new account -2023-04-04 14:47:00.555489 + : pb-IF4eUBMTKA== ip: ak~}hhaoaaiez, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-04 14:47:58.740225 + : pb-IF4vVRUFVA== ip: b}k~}keajb~vgy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 14:48:19.958695 + : pb-IF4yVXVYIw== ip: bxvc{vevaya, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-04-04 14:48:22.970984 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-04 14:50:23.372868 + : pb-IF5SUno-Ug== ip: dxvbvvaxl~}m`, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-04-04 14:50:36.413267 + : pb-IF5VK0sD ip: dvvcxvavm~~j`, Device id: c9d1ae02c21bca4f961618db80b5913c4db1c1fa -2023-04-04 14:50:37.415916 + : pb-IF5SUno-Ug== ip: dxvbvvaxl~}m`, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-04-04 14:50:42.430068 + : pb-IF5dU3UiAw== ip: f~vbakeaia, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-04 14:52:14.739188 + : pb-IF4IV04ZKw== ip: azj~z`~xn~wk, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-04-04 14:52:40.848507 + : pb-IF4QVUUeLg== ip: a|n~~`eajayvew, Device id: e69b35a7de5aee49634903f5cef1401432616d4d -2023-04-04 14:53:36.057083 + : pb-IF41U2scIg== ip: ak~}hhaoaaiez, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-04 14:55:53.382861 + : pb-IF4QVUUeLg== started kick vote for pb-IF4IV04ZKw==. -2023-04-04 14:56:23.387483 + : Kick vote End -2023-04-04 14:58:53.114277 + : pb-IF5VK0sD ip: dvvcxvavm~~j`, Device id: c9d1ae02c21bca4f961618db80b5913c4db1c1fa -2023-04-04 15:03:40.135509 + : pb-IF5dU3UiAw== ip: f~vbakeaia, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-04 15:04:42.343288 + : pb-IF4vVRUFVA== ip: b}k~}keajb~vgy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 15:05:44.530104 + : pb-IF4jUBY8Jg== ip: b}k~~jcaleaid}, Device id: 49ee6f07585ef47c048d21c42222489726d80ea6 -2023-04-04 15:05:48.542839 + : pb-IF4FD1c8 ip: azo~{n~~jga`e, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-04-04 15:06:17.633154 + : pb-IF4jF1NY ip: ak~~aeaj`}ve, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-04 15:06:53.776595 + : pb-IF4wUkwlJg== ip: b}k~~jcaleaid}, Device id: 485401927d6373a184b21306a151c08929ea22d3 -2023-04-04 15:07:10.837641 + : pb-IF4wUkwlJg== ip: b}k~~jcaleaid}, Device id: 485401927d6373a184b21306a151c08929ea22d3 -2023-04-04 15:08:48.231285 + : pb-IF4LUBNTDA== ip: dvvcyvd}viw, Device id: 11e79e9150dcf2922f8ef423ced6ce0db602ccf8 -2023-04-04 15:08:56.255718 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-04 15:09:21.426411 + : pb-IF5dU3UiAw== ip: f~vbakeaia, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-04 15:09:32.460665 + : pb-IF49VFQlPA== ip: azo~zh~|l~}kd, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-04 15:10:53.745243 + : pb-IF4cUBYfCg== ip: azo~zh~|n~~oa, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-04 15:11:16.013314 + : pb-IF40U1IbNw== started kick vote for pb-IF4cUBYfCg==. -2023-04-04 15:11:26.867694 + : pb-IF4wV24HBw== ip: axm~~haaiaaoe, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-04 15:11:46.013892 + : Kick vote End -2023-04-04 15:12:14.034024 + : pb-IF4vVRUFVA== ip: b}k~}keajb~vgy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 15:15:04.697757 + : pb-IF4FD1c8 ip: azo~{n~~jga`e, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-04-04 15:16:01.893533 + : pb-IF4-UhMADA== ip: ak~xh~~o`ajd, Device id: f24f537291eb696fedb07623d252ceff2775e1af -2023-04-04 15:16:17.925699 + : pb-IF40UncaLg== ip: dvvc}vavn~}h, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-04 15:17:16.118001 + : pb-IF4rUBgGJA== | kicked > reason:Banned account -2023-04-04 15:17:58.271732 + : pb-IF4-UhMADA== ip: ak~xh~~o`ajd, Device id: f24f537291eb696fedb07623d252ceff2775e1af -2023-04-04 15:22:33.333787 + : pb-IF4eVUJdDQ== ip: ak~}leai`zva{n, Device id: 00aea33cef73e6fdcd33dcd5bd7722328b8194f4 -2023-04-04 15:23:37.554140 + : pb-IF4-Um4_Lw== ip: azj~zo~~mhalf, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-04-04 15:24:28.702862 + : pb-IF49U0QJDw== ip: an~}heaii{vd, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-04 15:27:40.484619 + : pb-IF5UUxU7Ag== ip: an~~agai`{vaym, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-04 15:36:31.454914 + : pb-IF48U1AiDg== ip: b}k~}keaj`~vbk, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-04 15:37:34.682689 + : pb-IF49U0QJDw== ip: an~}heaii{vd, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-04 15:38:09.810409 + : pb-IF4rUBgGJA== | kicked > reason:Banned account -2023-04-04 15:38:10.813234 + : pb-IF4jF1NY ip: ak~~aeaj`}ve, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-04 15:40:55.710074 + : pb-IF4oUBg_Ng==|| kicked > new account -2023-04-04 15:47:38.838546 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-04 15:49:17.169915 + : pb-IF4jF1NY ip: ak~~aeaj`}ve, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-04 15:49:29.208968 + : pb-IF4jF1NY ip: ak~~aeaj`}ve, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-04 15:57:49.146121 + : pb-IF49U0QJDw== ip: an~}heaii{vd, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-04 16:00:43.217835 + : pb-IF4tVXIbMQ== started kick vote for pb-IF5cUBkeAg==. -2023-04-04 16:00:48.794580 + : pb-IF5dU3UiAw== ip: azo~zi~wj~}h, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-04 16:00:57.423022 + : Kick vote End -2023-04-04 16:03:06.356962 + : pb-IF4TV3RbDA== ip: azo~zh~zm~|o, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-04 16:03:10.365225 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-04 16:04:53.031836 + : pb-IF5dU3UiAw== started kick vote for pb-IF5XUBAJDQ==. -2023-04-04 16:05:00.085167 + : pb-IF5XUBAJDQ== kicked by kickvotes. -2023-04-04 16:07:35.462402 + : pb-IF5cUBkeAg== ip: azo~zh~xvawl, Device id: bfd196cb658b2f0cbc37aa7ba3d626df7f46fd86 -2023-04-04 16:13:41.844558 + : pb-IF4TV3RbDA== ip: azo~zh~yj~yj, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-04 16:14:35.032813 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-04 16:17:11.713534 + : pb-IF49U0QJDw== ip: an~}heaii{vd, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-04 16:21:44.904951 + : pb-IF4oUBEbIw== ip: d}vam~~heajdx, Device id: 22d293e92b5004b32fc3846ef25add7869f58a9e -2023-04-04 16:24:34.407277 + : pb-IF4dUlBSCw== started kick vote for pb-IF4xVVMNMw==. -2023-04-04 16:24:41.485711 + : pb-IF4xVVMNMw== kicked by kickvotes. -2023-04-04 16:24:43.630962 + : pb-IF4-Um4_Lw== ip: azj~zo~~lcai`{, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-04-04 16:25:01.696260 + : pb-IF4tVXIbMQ== ip: an~}ifa`haig~, Device id: 8521228a12ad541c756ee3b428334adbf7033b56 -2023-04-04 16:25:50.322044 + : pb-IF4dUlBSCw== started kick vote for pb-IF5REVZf. -2023-04-04 16:26:20.329535 + : Kick vote End -2023-04-04 16:28:07.394076 + : pb-IF48U1AiDg== ip: b}k~}keaj`~vbk, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-04 16:29:19.692625 + : pb-IF48U1AiDg== ip: b}k~}keaj`~vbk, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-04 16:30:12.856332 + : pb-IF49U1IiIA== ip: azo~{m~xk~zj, Device id: cab82c44dc8fe46868ca16d86e5ebbe8934766d9 -2023-04-04 16:30:37.955599 + : pb-IF5UUxU7Ag== ip: an~~agai`{vaym, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-04 16:33:11.503092 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-04 16:34:23.761582 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-04 16:35:39.023414 + : pb-IF4eVUJdDQ== ip: ak~}leai`zva{n, Device id: 00aea33cef73e6fdcd33dcd5bd7722328b8194f4 -2023-04-04 16:37:30.498376 + : pb-IF5SUno-Ug== ip: dxvbvvaxj~y`, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-04-04 16:39:44.980148 + : pb-IF4KV3YFPA== ip: bxva}m~}lfaiix, Device id: 58839fe89f095ba613effd6d2f612ceb3beaa433 -2023-04-04 16:43:44.913955 + : pb-IF41U2scIg== ip: ak~}hhaoaaiez, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-04 16:43:48.770295 + : pb-IF40UncaLg== started kick vote for pb-IF5REVZf. -2023-04-04 16:43:56.973246 + : Kick vote End -2023-04-04 16:46:33.544982 + : pb-IF4nU1EnIw== ip: an~}heaigxve, Device id: fd9f20d9f4f83ccea54cdb35ac502a0c1ffda540 -2023-04-04 16:47:28.741866 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-04-04 16:49:06.156260 + : pb-IF4wUkwlJg== ip: b}k~~jcaleaid}, Device id: 485401927d6373a184b21306a151c08929ea22d3 -2023-04-04 17:00:34.586985 + : pb-IF4jF1NY ip: ak~~aeaj`}ve, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-04 17:03:02.009070 + : pb-IF4TVxY5LA== started kick vote for pb-IF4DUBcfAw==. -2023-04-04 17:03:32.011922 + : Kick vote End -2023-04-04 17:05:05.792098 + : pb-IF4gU0wxBw== ip: ak~}hhaoaaiez, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-04 17:05:22.844440 + : pb-IF4oU0UAUQ== ip: azo~{`~~k`ald, Device id: b48acc0b8109448dff898da351e46c6d37bdcc6f -2023-04-04 17:05:41.932401 + : pb-IF4gU0wxBw== ip: ak~}hhaoaaiez, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-04 17:09:53.997672 + : pb-IF4TVxY5LA== started kick vote for pb-IF4DUBcfAw==. -2023-04-04 17:10:24.000452 + : Kick vote End -2023-04-04 17:11:11.445554 + : pb-IF4NUBcODw==|| kicked > new account -2023-04-04 17:20:05.346599 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-04 17:21:15.613688 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~}ifa`gaihz, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-04-04 17:22:30.876275 + : pb-IF49VFdbEQ== ip: b}k~}jhajdva, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 17:22:33.889445 + : pb-IF5UUxU7Ag== ip: an~~agai`{vaym, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-04 17:22:55.963370 + : pb-IF4dUlBSCw== ip: dxvc~vazk~~lh, Device id: 62d9378fcbbf71d42be6f707d298488a44febb0f -2023-04-04 17:23:00.980355 + : pb-IF4oUBEbIw== ip: an~~adaiawva}n, Device id: 22d293e92b5004b32fc3846ef25add7869f58a9e -2023-04-04 17:23:44.115299 + : pb-IF49VFQlPA== ip: azo~zh~|l~}kd, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-04 17:23:53.138069 + : pb-IF5UUxU7Ag== ip: an~~agai`{vaym, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-04 17:24:45.254249 + : pb-IF4dUlBSCw== started kick vote for pb-LV4FVxEOBxcUVQxERkNWUFFA. -2023-04-04 17:25:15.259828 + : Kick vote End -2023-04-04 17:25:19.518911 + : pb-IF4vVRUFVA== ip: b}k~}keajb~vgy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 17:26:00.629452 + : pb-IF5dU3UiAw== ip: azo~zi~y`~wj, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-04 17:26:08.661445 + : pb-IF49U0QJDw== ip: an~}heaiiwvd, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-04 17:27:12.941347 + : pb-IF5dU3UiAw== ip: azo~zi~y`~wj, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-04 17:28:06.126566 + : pb-IF4oUBEbIw== ip: an~~adaiawva}n, Device id: 22d293e92b5004b32fc3846ef25add7869f58a9e -2023-04-04 17:28:31.062891 + : pb-IF4dUlBSCw== started kick vote for pb-IF5dU3UiAw==. -2023-04-04 17:28:31.212867 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-04 17:29:01.069234 + : Kick vote End -2023-04-04 17:32:00.198984 + : pb-IF4qUxBfAw== ip: b}k~}keajb~vgy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 17:32:08.240549 + : pb-IF4qUxBfAw== ip: b}k~}keajb~vgy, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 17:34:17.759946 + : pb-IF4SXhUa ip: azj~z`~xi~}hi, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-04 17:36:01.204524 + : pb-IF4rLkwp ip: a~j~~kdaj`wvg, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-04 17:36:25.292745 + : pb-IF4tU1MsEA== ip: azo~{m~~jfajbx, Device id: 01840b94034b9525b1daae863a3388136f0d6717 -2023-04-04 17:37:23.563806 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~}ifa`gaihz, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-04-04 17:39:15.997665 + : pb-IF42UBEfJA== ip: ak~~laaia}va~a, Device id: b6001bb84afc7763bc1e3a8cfb219d7072224488 -2023-04-04 17:43:33.958006 + : pb-IF4NUxFfEg== ip: an~}hhaigzvaxj, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-04 17:44:50.240031 + : pb-IF5VU3lYDA== ip: azj~z`~~`bajax, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-04-04 17:45:25.404620 + : pb-IF4NUxFfEg== started kick vote for pb-LV4FVxEOBxcUVQxERkNWUFFA. -2023-04-04 17:45:28.380186 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`ake, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-04 17:45:55.411839 + : Kick vote End -2023-04-04 17:49:25.265241 + : pb-IF5SUBcpFw== ip: azo~{h~~ndaihx, Device id: caf6d7ad15139ce5b06d6ae932ea6e767199a630 -2023-04-04 17:57:51.117987 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`ake, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-04 17:58:49.309840 + : pb-IF4SXhUa ip: azj~z`~xi~}hi, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-04 18:01:42.955691 + : pb-IF49VFdbEQ== ip: b}k~}jhajdva, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 18:01:53.003000 + : pb-IF49VFdbEQ== ip: b}k~}jhajdva, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 18:09:21.465063 + : pb-IF4TV3RbDA== ip: azo~zh~|l~~`e, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-04 18:11:13.870144 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vev, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-04 18:11:47.986195 + : pb-IF5QUncTAQ== ip: d}van~}h~~ac, Device id: b831eec6105356e3e1e6deefd6747d3c52d10d62 -2023-04-04 18:12:16.088794 + : pb-IF41U2scIg== ip: ak~}hhaoaaiez, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-04 18:13:56.439636 + : pb-IF49VFQlPA== ip: azo~zh~|l~}kd, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-04 18:15:45.133029 + : pb-IF4pUBgbAw==|| kicked > new account -2023-04-04 18:16:51.064694 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~}ifa`gaihz, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-04-04 18:22:34.230921 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~}ka, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-04-04 18:23:09.504089 + : pb-IF4DU0IEJg== started kick vote for pb-IF5QUncTAQ==. -2023-04-04 18:23:39.508681 + : Kick vote End -2023-04-04 18:26:53.110066 + : pb-IF5QUncTAQ== started kick vote for pb-IF41U2scIg==. -2023-04-04 18:27:23.110062 + : Kick vote End -2023-04-04 18:28:41.515138 + : pb-IF49VFdbEQ== ip: b}k~}jhajdva, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 18:31:52.162038 + : pb-IF49U0QJDw== ip: an~}heaiivvd, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-04 18:34:29.758477 + : pb-IF4qVRY4Vg== ip: b}k~}kfan`aib, Device id: d041ba866757f85834a62ef606c034afb41fd757 -2023-04-04 18:41:44.215065 + : pb-IF4DU0IEJg== started kick vote for pb-IF5QUncTAQ==. -2023-04-04 18:42:14.220935 + : Kick vote End -2023-04-04 18:42:50.514137 + : pb-IF4GUBMPFA== ip: azj~z`~}kbaih~, Device id: d80196558d9b89c8c7dc7dc8e9f787f49091c937 -2023-04-04 18:47:58.614366 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-04 18:48:34.770285 + : pb-IF49U0QJDw== ip: an~}heaiivvd, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-04 18:48:51.817080 + : pb-IF4GUBMPFA== ip: azj~z`~}kbaih~, Device id: d80196558d9b89c8c7dc7dc8e9f787f49091c937 -2023-04-04 18:49:10.236609 + : pb-IF4DU0IEJg== started kick vote for pb-IF4DVVgZJA==. -2023-04-04 18:49:40.240435 + : Kick vote End -2023-04-04 18:51:22.291276 + : pb-IF4DVVgZJA== started kick vote for pb-IF4DU0IEJg==. -2023-04-04 18:51:52.296639 + : Kick vote End -2023-04-04 18:52:10.546048 + : pb-IF4IV04ZKw== ip: azj~z`~xn~~ie, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-04-04 18:52:53.675590 + : pb-IF4DU0IEJg== started kick vote for pb-IF4CU3EZBw==. -2023-04-04 18:53:23.682167 + : Kick vote End -2023-04-04 18:54:01.991179 + : pb-IF5SUno-Ug== ip: dxvbvvaxk~~jg, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-04-04 18:54:29.807789 + : pb-JiNJARBbVUVBXVlAEUVQUVdLGUBWQVdK started kick vote for pb-IF4DU0IEJg==. -2023-04-04 18:54:59.812468 + : Kick vote End -2023-04-04 18:55:29.323210 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-04 18:58:29.937169 + : pb-IF4rLkwp ip: a~j~~kdaj`wvg, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-04 18:58:35.948650 + : pb-IF49VFdbEQ== ip: b}k~}jhajdva, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 19:02:34.781682 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-04 19:03:53.052488 + : pb-IF49VFdbEQ== ip: b}k~}jhajdva, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 19:05:34.149875 + : pb-IF4DU0IEJg== started kick vote for pb-IF4UUlENFQ==. -2023-04-04 19:05:47.446997 + : pb-IF4wV24HBw== ip: a~o~va~}hfaifz, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-04 19:06:04.150527 + : Kick vote End -2023-04-04 19:08:16.005311 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-04 19:08:40.116887 + : pb-IF5QU1QuEQ== ip: awk~wk~~lhaa, Device id: 9cbbe851d867ba36c504559a6550cb27f5a72f18 -2023-04-04 19:10:50.607040 + : pb-IF4cUBYfCg== ip: azo~zh~zn~}ji, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-04 19:11:31.297859 + : pb-IF5SUno-Ug== | kicked for chat spam -2023-04-04 19:13:45.189584 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-04 19:15:17.532067 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-04 19:17:51.057877 + : pb-IF42UBEfJA== ip: ak~~laaia}va~a, Device id: b6001bb84afc7763bc1e3a8cfb219d7072224488 -2023-04-04 19:18:55.278245 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-04 19:19:27.827885 + : pb-IF49UBgtLA==|| kicked > new account -2023-04-04 19:19:40.543250 + : pb-IF49VFdbEQ== ip: b}k~}jhajdva, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 19:20:24.699154 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-04 19:22:40.627125 + : pb-IF4DU0IEJg== started kick vote for pb-IF42UBEfJA==. -2023-04-04 19:23:10.627809 + : Kick vote End -2023-04-04 19:23:21.355134 + : pb-IF41U2scIg== ip: ak~}hhaoaaiez, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-04 19:23:25.372764 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-04 19:24:53.814506 + : pb-IF42UBEfJA== started kick vote for pb-IF4cUBYfCg==. -2023-04-04 19:25:12.526828 + : Kick vote End -2023-04-04 19:25:47.920430 + : pb-IF4SU1YAUA== ip: azo~zi~xl~}i, Device id: d08dc65e878f6a31fd2130495b9b9c03fb875d61 -2023-04-04 19:27:51.817595 + : pb-IF42UBEfJA== started kick vote for pb-IF49VFdbEQ==. -2023-04-04 19:28:13.549922 + : pb-IF4VU3laVA== ip: ak~~neaifxvf~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-04 19:28:21.824446 + : Kick vote End -2023-04-04 19:30:10.988146 + : pb-IF5SUno-Ug== ip: dxvbvvaxk~~jg, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-04-04 19:33:48.771560 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-04 19:37:06.474990 + : pb-IF49VFdbEQ== ip: b}k~}jhajdva, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 19:41:37.536947 + : pb-IF49VFdbEQ== ip: b}k~}jhajdva, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 19:46:32.705263 + : pb-IF40U3MyVQ== ip: b}k~}kcaogaiby, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-04-04 19:52:19.877553 + : pb-IF42UBEfJA== ip: ak~~laaia}va~a, Device id: b6001bb84afc7763bc1e3a8cfb219d7072224488 -2023-04-04 19:54:37.335880 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-04 19:56:21.716080 + : pb-IF41U2scIg== ip: ak~}hhaoaaiez, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-04 19:57:42.020412 + : pb-IF4SXhUa ip: azj~z`~xj~}hi, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-04 19:58:42.216947 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-04 20:00:39.009964 + : pb-IF42UBEfJA== started kick vote for pb-IF4SXhUa. -2023-04-04 20:01:09.015544 + : Kick vote End -2023-04-04 20:01:22.797404 + : pb-IF4iVRIvFA== ip: dvvcxva~n~ym, Device id: 05bfe4d45bedbfe40b5df8367de40522be440a88 -2023-04-04 20:02:01.953191 + : pb-IF49VFdbEQ== ip: b}k~}jhajdva, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 20:02:23.014985 + : pb-IF49VFdbEQ== ip: b}k~}jhajdva, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 20:04:14.404679 + : pb-IF42UBEfJA== started kick vote for pb-IF5RU1UZEw==. -2023-04-04 20:04:44.405239 + : Kick vote End -2023-04-04 20:06:30.902259 + : pb-IF4cUBYfCg== ip: azo~zh~{m~~ld, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-04 20:06:46.951235 + : pb-IF5QU2gNXA== ip: a|o~vo~~haaoh, Device id: ce97551323d1a3eb8489dbd02cc5e2bde921e504 -2023-04-04 20:08:11.252136 + : pb-IF4vVRUFVA== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 20:11:38.989011 + : pb-IF4NUxFfEg== ip: bxvf}vb|o~{n, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-04 20:13:26.743921 + : pb-IF4pUBgELw==|| kicked > new account -2023-04-04 20:14:11.505270 + : pb-IF41U2scIg== ip: ak~}hhaoaaiez, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-04 20:16:39.002656 + : pb-IF49VFdbEQ== ip: b}k~}jhajdva, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 20:20:11.815572 + : pb-IF4NUxFfEg== ip: bxvf}vb|o~{n, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-04 20:21:03.983667 + : pb-IF5dU3UiAw== ip: azo~zi~xl~}kd, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-04 20:23:34.559100 + : pb-IF5cV044Jw== ip: ak~}o~vva~h, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-04-04 20:23:35.557223 + : pb-IF4BUBcMNw== ip: d|vb}a~vh~~mc, Device id: 20fd6073e32e1a6a8128697168ec60f609549a6b -2023-04-04 20:28:37.654155 + : pb-IF4BUBcMNw== ip: d|vb}a~vh~~mc, Device id: 20fd6073e32e1a6a8128697168ec60f609549a6b -2023-04-04 20:31:27.265473 + : pb-IF4wV24HBw== ip: ak~~obaigvva{`, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-04 20:33:23.731225 + : pb-IF4vVRUFVA== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 20:34:08.892443 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-04 20:34:48.018116 + : pb-IF4BUBcMNw== ip: d|vb}a~vh~~mc, Device id: 20fd6073e32e1a6a8128697168ec60f609549a6b -2023-04-04 20:34:49.019139 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-04 20:35:02.070739 + : pb-IF4vVRUFVA== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 20:39:42.174360 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`ake, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-04 20:40:14.303282 + : pb-IF4vVRUFVA== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 20:42:04.707356 + : pb-IF4BUBcMNw== ip: d|vb}a~vh~~mc, Device id: 20fd6073e32e1a6a8128697168ec60f609549a6b -2023-04-04 20:42:39.849084 + : pb-IF5UUxgjIA== ip: azj~z`~xh~}ih, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-04 20:42:59.911070 + : pb-IF5dU3UiAw== ip: azo~zi~xl~}kd, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-04 20:44:58.401467 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`}va, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-04 20:45:33.524747 + : pb-IF5UUxgjIA== ip: azj~z`~xk~~me, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-04 20:48:10.073611 + : pb-IF49VFdbEQ== ip: b}k~}jhajdva, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 20:50:12.552726 + : pb-IF49VFdbEQ== ip: b}k~}jhajdva, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 20:51:22.806836 + : pb-IF4vVRUFVA== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 20:51:50.905715 + : pb-IF4BUBcMNw== ip: d|vb}a~vh~~mc, Device id: 20fd6073e32e1a6a8128697168ec60f609549a6b -2023-04-04 20:52:14.969543 + : pb-IF4gU0wxBw== ip: ak~}hhaoaaiez, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-04 20:53:58.320176 + : pb-IF5UUxgjIA== ip: azj~z`~xj~}jd, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-04 20:54:22.403890 + : pb-IF5dU3UiAw== ip: azo~zi~xl~}kd, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-04 20:57:14.988907 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vb, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-04 20:57:24.015504 + : pb-IF4vVRUFVA== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 20:58:14.181691 + : pb-IF5UUxgjIA== ip: azj~z`~xh~xi, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-04 21:04:41.705337 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vb, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-04 21:05:43.903975 + : pb-IF41U2scIg== ip: ak~}hhaoaaiez, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-04 21:06:55.177126 + : pb-IF5UUxU7Ag== ip: an~~agai`{vaym, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-04 21:06:59.186545 + : pb-IF4wBUUK ip: azj~z`~|a~~je, Device id: 358a012da6dc4f5bf1a73e0563183e0a62af9e40 -2023-04-04 21:07:06.221381 + : pb-IF5UUxU7Ag== ip: an~~agai`{vaym, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-04 21:07:29.302861 + : pb-IF4VU3EjBg== ip: azj~z`~|a~xh, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-04-04 21:09:52.783629 + : pb-IF4vV0g8Mw== ip: dvvc{vawj~}kh, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-04 21:12:49.540125 + : pb-IF4TV3RbDA== ip: azo~zh~|j~zn, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-04 21:17:36.536182 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~}j, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-04 21:17:48.577043 + : pb-IF4jF1NY ip: aakhaid~ve, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-04 21:18:12.673506 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~}j, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-04 21:19:09.879216 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~}j, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-04 21:21:03.299772 + : pb-IF4pV0wNXA== ip: a}j~~nbaidvve, Device id: 046f860e53b51e8f1765f5feddd9ac7486d223ce -2023-04-04 21:21:53.589162 + : pb-IF4VU3EjBg== ip: azj~z`~|a~xh, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-04-04 21:22:00.612947 + : pb-IF4wBUUK ip: azj~z`~|a~~hi, Device id: 358a012da6dc4f5bf1a73e0563183e0a62af9e40 -2023-04-04 21:22:24.706954 + : pb-IF4vV0g8Mw== ip: dvvc{vawj~}kh, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-04 21:24:39.275172 + : pb-IF4RVGci ip: ak~}jdakeaid, Device id: 1bbd5fcef7feb1f7293b1a2b99448b98adc3f0b1 -2023-04-04 21:26:08.649138 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`ake, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-04 21:26:10.655301 + : pb-IF49U0QJDw== ip: bxvf|vixviz, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-04 21:27:58.117803 + : pb-IF49VFdbEQ== ip: b}k~}jhajbxvb{, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 21:28:26.228993 + : pb-IF4rLkwp ip: a~j~~kdaj`wvg, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-04 21:29:22.683919 + : pb-IF43U2cIVw== started kick vote for pb-IF49VFdbEQ==. -2023-04-04 21:29:52.684352 + : Kick vote End -2023-04-04 21:30:57.793220 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`ake, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-04 21:31:54.023575 + : pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL ip: dvvc{vawm~}, Device id: a61172de41bee6c6202d757a57288fd637e3ec13 -2023-04-04 21:32:20.139889 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vb, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-04 21:32:31.180627 + : pb-IF4vVRUFVA== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 21:33:06.317035 + : pb-IF49VFdbEQ== ip: b}k~}jhajbxvb{, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 21:33:06.317735 + : pb-IF4hU3EgJA== ip: azo~{l~~mbaje|, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-04 21:34:04.543425 + : pb-IF4eU004Ew== ip: azo~zi~ya~~m, Device id: 245153419ceac4a55cf9e92038ffdf3864e8a262 -2023-04-04 21:34:27.596158 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvva{va~m~~ia, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-04 21:34:51.674344 + : pb-IF4TV3RbDA== ip: azo~zh~|j~zn, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-04 21:35:49.865216 + : pb-IF4hU04aKw== ip: ak~~idaaiak`, Device id: c22913cb5223b8d21a48862b84a5937084499f5b -2023-04-04 21:37:58.313325 + : pb-IF4hU3EgJA== ip: azo~{l~~mbaje|, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-04 21:38:54.495228 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-04 21:38:58.507168 + : pb-IF4hU04aKw== ip: ak~~idaaiak`, Device id: c22913cb5223b8d21a48862b84a5937084499f5b -2023-04-04 21:39:56.706692 + : pb-IF4PUkY4VA== ip: ak~~o~~i`alh, Device id: c66de7cbf5df688d3c52c75560ee6036a1ede1a4 -2023-04-04 21:40:44.870839 + : pb-IF4vV0g8Mw== ip: dvvc{vawj~}kh, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-04 21:41:27.020147 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vev, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-04 21:42:01.162038 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4rLkwp. -2023-04-04 21:42:31.164717 + : Kick vote End -2023-04-04 21:45:50.100965 + : pb-IF40PkMh ip: aakhaifyvb|h, Device id: a85e460e1d1518ccaaa3cd9a4f529bb187fbfb2e -2023-04-04 21:48:00.526876 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-04 21:48:22.686620 + : pb-IF4DU0IEJg== started kick vote for pb-IF4TUxEoKg==. -2023-04-04 21:48:52.692181 + : Kick vote End -2023-04-04 21:52:37.733374 + : pb-IF49VFdbEQ== ip: b}k~}jhajbxvb{, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 21:53:39.941145 + : pb-IF4nVEY-PA== ip: bxvf~vb|n~~kc, Device id: 274c0eb29438e37a9fd5de5c04997e31b078d217 -2023-04-04 21:54:22.101285 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-04 21:54:31.132031 + : pb-IF5UVW4FUQ== ip: an~~aeai`|vi~, Device id: 0cf7681ebb983be0d37077adc2704bd742b5f86c -2023-04-04 21:59:28.178189 + : pb-IF4vV0g8Mw== ip: dvvc{vawj~}kh, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-04 22:00:02.314522 + : pb-IF4hU04aKw== ip: ak~~idaaiak`, Device id: c22913cb5223b8d21a48862b84a5937084499f5b -2023-04-04 22:02:42.446320 + : pb-IF4DU0IEJg== started kick vote for pb-IF4pUBcZPQ==. -2023-04-04 22:03:03.939011 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vb, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-04 22:03:12.454845 + : Kick vote End -2023-04-04 22:06:02.627727 + : pb-IF49VFdbEQ== ip: b}k~}jhajbxvb{, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 22:07:38.954264 + : pb-IF49VFdbEQ== ip: b}k~}jhajbxvb{, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 22:09:13.488387 + : pb-IF4TUBUvUg== started kick vote for pb-IF4DU0IEJg==. -2023-04-04 22:09:43.495797 + : Kick vote End -2023-04-04 22:09:54.400530 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~}j, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-04 22:09:54.400738 + : pb-IF5UVBMZEw== ip: bxvc{vc{vb}`, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-04-04 22:11:27.851796 + : pb-IF41U0sYPA== ip: an~~aeai~yl, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-04 22:11:57.963989 + : pb-IF4xVVMNMw== ip: dvvcxvb`~zj, Device id: 72d01d0ef14ea66d4900465b29dce84f266d5749 -2023-04-04 22:12:32.066887 + : pb-IF4xVVMNMw== ip: dvvcxvb`~zj, Device id: 72d01d0ef14ea66d4900465b29dce84f266d5749 -2023-04-04 22:12:48.121882 + : pb-IF4vU0MENg== ip: azj~zo~zn~~jb, Device id: 6382f3717c6ac3650740a14e9d6ab4b67728a26a -2023-04-04 22:13:36.279172 + : pb-IF41U0sYPA== ip: an~~aeai~yl, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-04 22:14:48.520373 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vb, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-04 22:15:25.069780 + : pb-IF4TUBUvUg== started kick vote for pb-IF4DU0IEJg==. -2023-04-04 22:15:55.069907 + : Kick vote End -2023-04-04 22:17:03.035008 + : pb-IF49VFQlPA== ip: azo~zh~|l~}kd, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-04 22:18:15.379146 + : pb-IF4DU0IEJg== started kick vote for pb-IF5UVBMZEw==. -2023-04-04 22:18:16.302873 + : pb-IF5TU1ddPA== ip: azj~z`~|m~}jf, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-04-04 22:18:45.383029 + : Kick vote End -2023-04-04 22:20:23.728427 + : pb-IF4hU3EgJA== ip: azo~{l~~lbakc, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-04 22:23:34.479318 + : pb-IF49VFQlPA== ip: azo~zh~|l~}kd, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-04 22:26:34.237744 + : pb-IF4vU0MENg== ip: azj~zo~zn~~jb, Device id: 6382f3717c6ac3650740a14e9d6ab4b67728a26a -2023-04-04 22:26:40.257356 + : pb-IF4VU3laVA== ip: ak~~neaifxvf~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-04 22:27:58.555275 + : pb-IF4VU3laVA== ip: ak~~neaifxvf~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-04 22:30:49.227312 + : pb-IF5UVBMZEw== ip: bxvc{vc{vb}`, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-04-04 22:31:49.454272 + : pb-IF4eUBMTKA== ip: ak~}hhaoaaiez, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-04 22:36:33.522859 + : pb-IF5cU2haHA== ip: dvvcxvbzh~yl, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-04-04 22:37:43.796151 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`ake, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-04 22:39:25.166675 + : pb-IF4jF1NY ip: aakhaid~ve, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-04 22:44:32.283717 + : pb-IF4TV3RbDA== ip: azo~zh~|n~~hc, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-04 22:46:18.683659 + : pb-IF5dUBclCw== ip: dvvcxvgzvg{, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-04 22:48:30.139720 + : pb-IF5TAHQO | kicked > reason:Banned account -2023-04-04 22:50:00.417154 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`ake, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-04 22:50:28.519637 + : pb-IF4qUxBfAw== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 22:52:18.855389 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vev, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-04 22:53:50.152177 + : pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL ip: dvvc{vaxj~}jd, Device id: a61172de41bee6c6202d757a57288fd637e3ec13 -2023-04-04 22:57:38.287756 + : pb-IF49VFQlPA== ip: azo~zh~|l~}kd, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-04 22:57:41.294815 + : pb-IF4TV3RbDA== ip: azo~zh~za~za, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-04 22:59:17.629050 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vev, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-04 23:00:05.808845 + : pb-IF49VFdbEQ== ip: b}k~}jhajcva{o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 23:00:11.825178 + : pb-IF49VFQlPA== ip: azo~zh~|l~}kd, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-04 23:02:33.262051 + : pb-IF49VFdbEQ== ip: b}k~}jhajcva{o, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 23:02:35.270475 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vev, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-04 23:03:08.402101 + : pb-IF49VFQlPA== ip: azo~zh~|l~}kd, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-04 23:03:49.569188 + : pb-IF41VEYTJg== ip: bxvf|vb}l~}me, Device id: a9adb08bcbf1c2d7c44133844392bf32fdd3dd2d -2023-04-04 23:07:04.290332 + : pb-IF4cUktZNg== ip: a~h~}keajcwvc, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-04-04 23:07:58.623287 + : pb-IF4jF1NY ip: aakhaid~ve, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-04 23:09:59.188706 + : pb-IF4hBFgH ip: ak~}m~~niaihz, Device id: a6236484c5b3964fcd4361ad664b0232a039b16d -2023-04-04 23:10:16.247580 + : pb-IF5UVBMZEw== ip: bxvc{vc{vb}`, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-04-04 23:10:52.409608 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-04 23:12:47.831507 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-04 23:13:25.967070 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vev, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-04 23:13:53.090394 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-04 23:14:17.418954 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavk, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-04 23:14:29.588847 + : pb-IF4DU0IEJg== started kick vote for pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL. -2023-04-04 23:14:59.590541 + : Kick vote End -2023-04-04 23:19:36.770173 + : pb-IF49VFQlPA== ip: azo~zh~|l~}kd, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-04 23:19:44.810171 + : pb-IF4qUxBfAw== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-04 23:20:09.889124 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-04 23:20:23.925151 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-04 23:25:13.969596 + : pb-IF49VFdbEQ== ip: b}k~~`gaie~vbzl, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 23:27:50.546962 + : pb-LV4FB0JTA0VAWFYUEUdXBlNDFg== ip: azj~z`~}l~~jh, Device id: 9d487a72ae242a6c9432920f6c925273273addeb -2023-04-04 23:30:34.253611 + : pb-IF4jF1NY ip: aakhaidvavn, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-04 23:30:54.327020 + : pb-LV4FB0JTA0VAWFYUEUdXBlNDFg== ip: azj~z`~}l~~jh, Device id: 9d487a72ae242a6c9432920f6c925273273addeb -2023-04-04 23:31:47.598861 + : pb-IF5cPGsk ip: dvvc|vb}a~~oh, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-04-04 23:33:17.912490 + : pb-IF4QUBcuAw== ip: an~}ifaje}va|`, Device id: 1250ba19402c5370dfa685231865fd4e7e9c3c44 -2023-04-04 23:33:23.924745 + : pb-LV4FB0JTA0VAWFYUEUdXBlNDFg== ip: a~h~}jgalhaie~, Device id: 9d487a72ae242a6c9432920f6c925273273addeb -2023-04-04 23:34:02.070588 + : pb-IF4JUlUEBg== ip: a~o~}hganfakf, Device id: 0aa7ff88a6ead4dbb950eb6b02352fb9bf1dac9e -2023-04-04 23:34:24.151870 + : pb-LV4FB0JTA0VAWFYUEUdXBlNDFg== ip: azj~z`~}l~~jh, Device id: 9d487a72ae242a6c9432920f6c925273273addeb -2023-04-04 23:39:54.561462 + : pb-LV4FB0JTA0VAWFYUEUdXBlNDFg== ip: azj~z`~}l~~jh, Device id: 9d487a72ae242a6c9432920f6c925273273addeb -2023-04-04 23:41:09.842669 + : pb-LV4FB0JTA0VAWFYUEUdXBlNDFg== ip: azj~z`~}l~~jh, Device id: 9d487a72ae242a6c9432920f6c925273273addeb -2023-04-04 23:44:05.849833 + : pb-LV4FB0JTA0VAWFYUEUdXBlNDFg== ip: azj~z`~}l~~jh, Device id: 9d487a72ae242a6c9432920f6c925273273addeb -2023-04-04 23:45:32.184514 + : pb-LV4FB0JTA0VAWFYUEUdXBlNDFg== ip: dvvd|vdva}j, Device id: 9d487a72ae242a6c9432920f6c925273273addeb -2023-04-04 23:46:20.362134 + : pb-LV4FB0JTA0VAWFYUEUdXBlNDFg== ip: dvvd|vdva}j, Device id: 9d487a72ae242a6c9432920f6c925273273addeb -2023-04-04 23:48:37.865074 + : pb-LV4FB0JTA0VAWFYUEUdXBlNDFg== ip: azj~z`~}l~~`g, Device id: 9d487a72ae242a6c9432920f6c925273273addeb -2023-04-04 23:49:31.029254 + : pb-IF49VFQlPA== ip: azo~zh~|l~}kd, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-04 23:49:47.105175 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~vev, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-04 23:50:17.213161 + : pb-IF4OUBY-HA== ip: a|j~~mdameaif~, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-04-04 23:50:24.240683 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-04 23:52:41.766581 + : pb-IF4TV3RbDA== ip: azo~zh~|l~}k`, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-04 23:55:01.312838 + : pb-IF49VFdbEQ== ip: b}k~~`gaie~vbzl, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-04 23:55:05.326288 + : pb-IF49VFQlPA== ip: azo~zh~|l~}kd, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-05 00:04:22.621435 + : pb-IF4DU0IEJg== started kick vote for pb-IF41U2scIg==. -2023-04-05 00:08:54.697221 + : pb-IF49VFQlPA== ip: azo~zh~|l~}kd, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-05 00:08:54.697466 + : pb-IF49VFdbEQ== ip: b}k~~`gaie~vbzl, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 00:08:57.707799 + : pb-IF4OUBY-HA== ip: a|j~~mdameaif~, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-04-05 00:09:01.727354 + : pb-IF4NUxFfEg== ip: bxvf}vb{j~wa, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-05 00:09:06.746652 + : pb-IF4cUktZNg== ip: a~h~}keajcwvc, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-04-05 00:09:25.794044 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`ake, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-05 00:09:43.876673 + : pb-IF4TV3RbDA== ip: azo~zh~|l~}k`, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-05 00:09:49.905419 + : pb-IF4qUxBfAw== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 00:10:42.043955 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-05 00:12:47.525026 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~}j, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-05 00:13:42.712904 + : pb-IF4OUBY-HA== ip: a|j~~mdameaif~, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-04-05 00:14:44.947430 + : pb-IF4NU0taEQ== ip: awa~}ifajaaje|, Device id: 8c1c69f8ab096ce85465bd023b049cb3e8a2898a -2023-04-05 00:20:18.199636 + : pb-IF4qUxBfAw== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 00:27:55.870048 + : pb-IF4TU08qVQ== ip: azi~yh~vvb{j, Device id: ca78ade39ed1b9a8881dacdc9eb103745fa44505 -2023-04-05 00:28:00.881688 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-05 00:28:10.903481 + : pb-IF4TU08qVQ== ip: azi~yh~vvb{j, Device id: ca78ade39ed1b9a8881dacdc9eb103745fa44505 -2023-04-05 00:28:54.050430 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`ake, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-05 00:29:29.173101 + : pb-IF4OUBY-HA== ip: a|j~~mdameaif~, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-04-05 00:30:04.305584 + : pb-IF5VUlYhJw== ip: azo~zh~}o~~id, Device id: 49aba9148ddf7a23b2257abcdb8b9b0f0e4cddc9 -2023-04-05 00:30:42.446050 + : pb-IF4cUktZNg== ip: a~h~}keajcwvc, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-04-05 00:32:26.817338 + : pb-IF49VFQlPA== ip: azo~zh~|l~}kd, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-05 00:32:59.949478 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|j~~lh, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-04-05 00:33:04.971649 + : pb-IF5QV2kTAw== ip: a}j~~oba`gaii~, Device id: 0f930d330d32d6798357bc9cc2d102b30d48e95d -2023-04-05 00:33:48.145881 + : pb-IF4SUnMKEw== ip: d}va`~~afaigv, Device id: 6e8257dc74a0980eaba7afb2e0a07216e88e6214 -2023-04-05 00:37:15.955695 + : pb-IF5cPGsk ip: dvvc|vb{j~}ha, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-04-05 00:38:18.167134 + : pb-IF4OUBY-HA== ip: a|j~~mdameaif~, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-04-05 00:38:51.678788 + : pb-IF5QV2kTAw== started kick vote for pb-IF49VFQlPA==. -2023-04-05 00:39:21.683730 + : Kick vote End -2023-04-05 00:46:34.960890 + : pb-IF4OUBY-HA== ip: a|j~~mdameaif~, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-04-05 00:46:35.966657 + : pb-IF49VFQlPA== ip: azo~zh~|l~}kd, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-05 00:46:57.713949 + : pb-IF5QV2kTAw== started kick vote for pb-IF4gX2g-. -2023-04-05 00:47:27.715915 + : Kick vote End -2023-04-05 00:47:36.170104 + : pb-IF5cU2haHA== ip: dvvcxvbzh~yl, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-04-05 00:49:41.635282 + : pb-IF42UBEfJA== ip: ak~~laaia}va~a, Device id: b6001bb84afc7763bc1e3a8cfb219d7072224488 -2023-04-05 00:52:29.220479 + : pb-IF41U2scIg== ip: a~h~}jgaiaah, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-05 00:53:46.469334 + : pb-IF4OPhMg ip: an~}heajdzvhw, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-04-05 00:55:17.800205 + : pb-IF5QV2kTAw== started kick vote for pb-IF41U2scIg==. -2023-04-05 00:55:47.804836 + : Kick vote End -2023-04-05 00:57:09.150878 + : pb-IF49VFdbEQ== ip: b}k~~`gaie~vbzl, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 00:59:10.743568 + : pb-IF5QV2kTAw== started kick vote for pb-IF4gX2g-. -2023-04-05 00:59:20.591166 + : pb-IF49VFQlPA== ip: azo~zh~|l~}kd, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-05 00:59:40.744141 + : Kick vote End -2023-04-05 01:03:19.442467 + : pb-IF49VFdbEQ== ip: b}k~}jhajevba, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 01:03:52.485508 + : pb-IF5QV2kTAw== started kick vote for pb-IF4OPhMg. -2023-04-05 01:04:22.490792 + : Kick vote End -2023-04-05 01:07:33.277424 + : pb-IF5QV2kTAw== ip: a}j~~oba`gaii~, Device id: 0f930d330d32d6798357bc9cc2d102b30d48e95d -2023-04-05 01:11:21.149095 + : pb-IF49VFdbEQ== ip: b}k~}jhajevba, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 01:12:39.436093 + : pb-IF49VFdbEQ== ip: b}k~}jhajevba, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 01:13:16.572550 + : pb-IF49VFdbEQ== ip: b}k~}jhajevba, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 01:15:38.676862 + : pb-IF4wUBgTDg==|| kicked > new account -2023-04-05 01:18:01.580380 + : pb-IF49VFdbEQ== ip: b}k~}jhajevba, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 01:18:06.602636 + : pb-IF4eUBMTKA== ip: a~h~}jgaiaah, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 01:20:15.995636 + : pb-IF4lU0g4Vg== ip: a~h~}jeajcvvay, Device id: 7ca3fc9582acff48966e32641b77d7fc1d7621df -2023-04-05 01:20:32.455604 + : pb-IF5QV2kTAw== started kick vote for pb-IF4lU0g4Vg==. -2023-04-05 01:21:02.461284 + : Kick vote End -2023-04-05 01:22:10.357691 + : pb-IF49VFdbEQ== ip: b}k~}jhajevba, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 01:26:52.341370 + : pb-IF4mVU0oUw== ip: ak~~lfaiezvazh, Device id: 10439a1bbc0d71386990fa3344930533a157a138 -2023-04-05 01:28:04.639104 + : pb-IF49VFdbEQ== ip: b}k~}jhajevba, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 01:33:24.854136 + : pb-IF5cU2haHA== ip: dvvcxvbzh~yl, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-04-05 01:34:47.477190 + : pb-IF5QV2kTAw== started kick vote for pb-IF4mVU0oUw==. -2023-04-05 01:35:17.482358 + : Kick vote End -2023-04-05 01:45:23.414481 + : pb-IF49VFdbEQ== ip: b}k~}jhajevba, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 01:51:53.782561 + : pb-IF49VFdbEQ== ip: b}k~}jhajevba, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 01:57:18.871694 + : pb-IF4TV3RbDA== ip: azo~zh~zj~|i, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-05 02:34:29.581769 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-05 02:36:45.067638 + : pb-IF4NUxFfEg== ip: bxvf}vb}o~|l, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-05 03:00:29.120735 + : pb-IF4NUxFfEg== ip: bxvf}vb}o~|l, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-05 04:23:16.251778 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-05 04:44:50.933012 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-05 05:07:34.803439 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-05 05:29:18.514983 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-05 06:34:57.590979 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-05 07:19:12.940935 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-05 07:25:11.512782 + : pb-IF4NUBcOLg==|| kicked > new account -2023-04-05 07:33:36.006103 + : pb-IF4wV24HBw== ip: ak~~obaigvva{`, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-05 07:41:17.712585 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-05 08:24:51.893794 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-05 08:32:56.607642 + : pb-JiNJARFdXUdGW1pEE0JZV1JCEUVdQVdA ip: ak~~o~~i`a``, Device id: d3c1b69f4abe0a30b187a9f76dd0bf2ec4316172 -2023-04-05 08:54:23.325252 + : pb-JiNJARFdXUdGW1pEE0JZV1JCEUVdQVdA ip: ak~~o~~i`a``, Device id: d3c1b69f4abe0a30b187a9f76dd0bf2ec4316172 -2023-04-05 09:07:54.088976 + : pb-IF43VxEsUA== ip: b}k~~`gaiavva~n, Device id: e792d2e2edd5e637019806b40973a68af0500341 -2023-04-05 09:14:42.594020 + : pb-IF4cUBYfCg== ip: azo~zh~{i~~i, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-05 09:19:55.677075 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~~nb, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-05 09:48:55.747989 + : pb-IF4WU0wvVA== ip: aakhajayva}o, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-05 09:55:46.254010 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-05 09:57:36.625105 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-05 10:02:12.577260 + : pb-IF4AU0IoCA== ip: azj~z`~}hhaiiy, Device id: 7e77758456905f2250e6815bf48baf9d39eeb3c2 -2023-04-05 10:02:31.641236 + : pb-IF4AU0IoCA== ip: an~~afakaajb~, Device id: 7e77758456905f2250e6815bf48baf9d39eeb3c2 -2023-04-05 10:04:28.060037 + : pb-IF48VBZeAw== ip: awh~~a`ajdxvhy, Device id: 87367fae485fbc5a6459e2c1f226d057fe3428d7 -2023-04-05 10:10:57.645417 + : pb-IF41U0sYPA== ip: an~~acaibyva~, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-05 10:25:23.676308 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-05 10:25:24.677576 + : pb-IF40UncaLg== ip: dvvc}vav`~yo, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-05 10:27:41.160655 + : pb-IF4cUBYfCg== ip: azo~zh~{h~~o, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-05 10:29:39.597279 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`aki, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-05 10:29:43.608658 + : pb-IF4hU3EgJA== ip: azo~{l~~mhaig{, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-05 10:32:26.365755 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: b}k~}khajc~vayl, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-04-05 10:34:49.892460 + : pb-IF5WUBEqHw== ip: a~h~}jgalcaic|, Device id: c3f216648bb3f8c6c9bc4164d352a554aa85f67e -2023-04-05 10:36:30.279416 + : pb-IF4TV3RbDA== ip: azo~zh~|a~~ji, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-05 10:36:32.282517 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 10:37:04.416342 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`aki, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-05 10:40:55.406299 + : pb-IF4WU0wvVA== ip: aakhajayva}o, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-05 10:43:25.105346 + : pb-IF4QUlQ_Vg== ip: d}va`~~afakf, Device id: 9466510e0422cbbdfa2b848d1f6a89fc51ff8bb4 -2023-04-05 10:45:44.684843 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 10:45:58.715969 + : pb-IF4VU3laVA== ip: ak~~neaifxvf~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-05 10:49:41.548691 + : pb-IF4KU1Q9Pw== ip: a~m~vo~}k~}k`, Device id: 217799c313cf0a8fc57851c7c11d507bce2f3696 -2023-04-05 10:52:04.075230 + : pb-IF4QUBQoBw== ip: azo~|j~|l~~ib, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-04-05 10:55:50.930669 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`aki, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-05 10:58:11.547852 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`aki, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-05 10:58:23.592933 + : pb-IF4KVVUnJw== ip: an~}ifajdzvb|a, Device id: e0bb206d1003df8bc3e27e42a6d5aaea34e3a437 -2023-04-05 10:59:42.933384 + : pb-IF4cUktZNg== ip: a~h~}keajcwvc, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-04-05 11:00:45.173106 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`aki, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-05 11:01:06.607228 + : pb-IF5SUGElCw==|| kicked > new account -2023-04-05 11:05:24.383981 + : pb-IF4vV0g8Mw== ip: dvvc{vawl~yo, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-05 11:06:56.774143 + : pb-IF5dK3ZT ip: dvvc{vayk~yl, Device id: 3517ae698cc302821a88b00397499ccf9c4ff2e7 -2023-04-05 11:08:50.305755 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 11:09:36.483374 + : pb-IF4VU3laVA== ip: ak~~neaifxvf~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-05 11:10:40.691687 + : pb-IF4VU3laVA== ip: ak~~neaifxvf~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-05 11:13:03.283441 + : pb-IF4WU0wvVA== ip: aakhajayva}o, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-05 11:14:42.673761 + : pb-IF4pUBcZPQ== ip: a~o~}meanfaia~, Device id: 2555c2497e699bcccdf8c081d9834edcedaf0094 -2023-04-05 11:15:47.900963 + : pb-IF4eUBMTKA== ip: a~h~}jgaiaao, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 11:17:28.259292 + : pb-IF4NU0taEQ== ip: awa~}ifajaaje|, Device id: 8c1c69f8ab096ce85465bd023b049cb3e8a2898a -2023-04-05 11:18:05.398505 + : pb-IF4QVUUeLg== ip: a}j~~`aaliajaw, Device id: e69b35a7de5aee49634903f5cef1401432616d4d -2023-04-05 11:20:42.075917 + : pb-IF4NU0taEQ== ip: awa~}ifajaaje|, Device id: 8c1c69f8ab096ce85465bd023b049cb3e8a2898a -2023-04-05 11:20:50.108121 + : pb-IF4NU0taEQ== ip: awa~}ifajaaje|, Device id: 8c1c69f8ab096ce85465bd023b049cb3e8a2898a -2023-04-05 11:21:14.538812 + : pb-IF4WU0wvVA== started kick vote for pb-IF4VU3laVA==. -2023-04-05 11:21:23.884360 + : Kick vote End -2023-04-05 11:21:28.249467 + : pb-IF4VU3laVA== ip: ak~~neaifxvf~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-05 11:23:18.650418 + : pb-IF4cUBYfCg== ip: azo~zh~{o~zj, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-05 11:23:22.672083 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 11:25:05.051898 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 11:25:10.060033 + : pb-IF4eUBMTKA== ip: a~h~}jgaiaao, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 11:25:12.068761 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 11:25:24.111621 + : pb-IF4eUBMTKA== ip: a~h~}jgaiaao, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 11:27:09.472851 + : pb-IF4NVxAZDg== ip: dvvcyva~m~}ji, Device id: 9dda09fcf9a3701e0e8edddd357f35fc1813050f -2023-04-05 11:27:17.501120 + : pb-IF5UUxgjIA== ip: azj~z`~xj~}ji, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-05 11:27:34.571194 + : pb-IF4qUxBfAw== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 11:28:18.698634 + : pb-IF4vVRUFVA== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 11:29:01.857834 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-04-05 11:30:45.204594 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 11:32:13.088658 + : pb-IF4QVUUeLg== started kick vote for pb-IF4VU3laVA==. -2023-04-05 11:32:43.089621 + : Kick vote End -2023-04-05 11:36:11.368137 + : pb-IF4VU3laVA== ip: ak~~neaifxvf~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-05 11:42:25.146405 + : pb-IF4VU3laVA== started kick vote for pb-IF4LU20cEw==. -2023-04-05 11:42:55.153756 + : Kick vote End -2023-04-05 11:51:25.658401 + : pb-IF4vVRUFVA== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 11:53:09.112722 + : pb-IF4vVRUFVA== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 11:53:33.206169 + : pb-IF4cUBYfCg== ip: azo~zh~{h~yj, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-05 11:53:44.238781 + : pb-IF5UUxgjIA== ip: evvhvvgwvayl, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-05 11:54:03.319386 + : pb-IF5UUxgjIA== ip: azj~z`~xj~}ji, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-05 11:54:58.481549 + : pb-IF5cV044Jw== ip: a~o~v`~{vbw, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-04-05 11:55:43.621590 + : pb-IF4wV24HBw== ip: a~o~va~}h`aig, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-05 11:56:37.817799 + : pb-IF4wV24HBw== ip: a~o~va~}h`aig, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-05 11:57:52.185274 + : pb-IF4vVRUFVA== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 11:58:15.294201 + : pb-IF4vVRUFVA== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 11:58:45.390246 + : pb-IF4BUBcqJA== ip: b}k~}khajcvvaxn, Device id: 396eec2f28273d20448fef7499d83baccf297c3c -2023-04-05 11:59:12.481954 + : pb-IF4BUBcqJA== ip: b}k~}khajcvvaxn, Device id: 396eec2f28273d20448fef7499d83baccf297c3c -2023-04-05 12:01:40.066150 + : pb-IF4qUxBfAw== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 12:06:55.216559 + : pb-IF4sCXI9 started kick vote for pb-IF5UUxgjIA==. -2023-04-05 12:07:03.282145 + : pb-IF5cV044Jw== ip: a~o~v`~{vbw, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-04-05 12:07:25.219700 + : Kick vote End -2023-04-05 12:09:13.949200 + : pb-IF5cV044Jw== ip: a~o~v`~{vbw, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-04-05 12:10:03.096385 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-05 12:11:29.535312 + : pb-IF4qUxBfAw== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 12:17:23.853004 + : pb-IF4TV3RbDA== ip: azo~zh~{h~vn, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-05 12:18:26.044953 + : pb-IF5XU1QzAQ== ip: ak~~l`aj~~kf, Device id: d3c7b5f98b76b986f04329bed140fd35a82b17a1 -2023-04-05 12:20:35.473158 + : pb-IF5XU1QzAQ== ip: ak~~l`aj~~kf, Device id: d3c7b5f98b76b986f04329bed140fd35a82b17a1 -2023-04-05 12:27:20.922048 + : pb-IF4cUBYfCg== ip: azo~zh~|`~~``, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-05 12:29:12.319193 + : pb-IF4UU2k7FQ== ip: avo~}iaamhajg, Device id: fe5e73d8f02a525b055ec44991b6ac012ad8b12a -2023-04-05 12:30:14.529020 + : pb-IF4pU1MJIw== ip: a|o~vo~xi~}mb, Device id: 980fcde0872cfae69d1a58d61a9917876d2a23b3 -2023-04-05 12:31:49.847866 + : pb-IF4TUlgePw== ip: an~}ifaj`~vbm, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-04-05 12:38:45.344351 + : pb-IF4TUlgePw== ip: an~}ifaj`~vbm, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-04-05 12:39:33.493687 + : pb-IF4wV24HBw== ip: a~o~va~}h`aig, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-05 12:41:11.958181 + : pb-IF4jF1NY ip: azj~z`~}`~xm, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-05 12:42:19.182544 + : pb-IF4QUBYhPA== | kicked for chat spam -2023-04-05 12:42:19.182977 + : pb-IF4QUBYhPA== | kicked for chat spam -2023-04-05 12:42:20.195396 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~~nb, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-05 12:42:27.209989 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-05 12:43:11.363480 + : pb-IF4QUBQoBw== ip: azo~|j~|l~}id, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-04-05 12:46:37.287695 + : pb-IF4WU0wvVA== ip: aakhajayva}o, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-05 12:55:50.396675 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~~nb, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-05 12:58:50.033611 + : pb-IF4vVRUFVA== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 13:16:51.521356 + : pb-IF5dU3UiAw== ip: azo~{n~~hiane, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-05 13:16:51.521593 + : pb-IF40UncaLg== ip: dvvc}vava~zk, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-05 13:16:58.543028 + : pb-IF5dU3UiAw== ip: azo~{n~~hiane, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-05 13:19:05.963954 + : pb-IF4WU0wvVA== ip: aakhajayva}o, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-05 13:20:44.306140 + : pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL ip: dvvc{vayh~~ie, Device id: a61172de41bee6c6202d757a57288fd637e3ec13 -2023-04-05 13:21:59.177678 + : pb-IF4dUBhdDQ==|| kicked > new account -2023-04-05 13:23:07.776398 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-05 13:23:28.823642 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-05 13:25:37.210582 + : pb-IF4qUxBfAw== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 13:27:55.680886 + : pb-IF4qUxBfAw== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 13:28:11.747226 + : pb-IF4vVRUFVA== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 13:29:37.016115 + : pb-IF49NU0n ip: dvvc{vaxo~~`, Device id: 275b8abc98ea3cb466a95e7320b5bb874f49897b -2023-04-05 13:30:04.114618 + : pb-IF40UncaLg== ip: dvvc}vava~zk, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-05 13:35:23.262245 + : pb-IF4eUBMTKA== ip: a~h~}jgaiaao, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 13:37:03.655528 + : pb-IF40UncaLg== ip: dvvc}vava~zk, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-05 13:37:24.711008 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 13:39:21.109248 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 13:40:03.266305 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 13:41:23.579976 + : pb-IF40UncaLg== ip: dvvc}vava~zk, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-05 13:41:38.243244 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4LUBEsEA==. -2023-04-05 13:42:08.248493 + : Kick vote End -2023-04-05 13:42:38.871477 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 13:43:07.961031 + : pb-IF4DV3MCHQ== ip: ak~~niajazvbw, Device id: 0c06464047322db7f7caeaa037beae74df787275 -2023-04-05 13:44:10.192932 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: b}k~}khajc~vayl, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-04-05 13:45:43.554558 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-05 13:48:39.190747 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 13:48:58.266935 + : pb-IF40UncaLg== ip: dvvc}vava~zk, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-05 13:49:35.586471 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4vVRUFVA==. -2023-04-05 13:50:04.481340 + : pb-IF40UncaLg== ip: dvvc}vava~zk, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-05 13:50:05.585961 + : Kick vote End -2023-04-05 13:51:46.858097 + : pb-IF4pUBcZPQ== ip: a~o~}meanfaia~, Device id: 2555c2497e699bcccdf8c081d9834edcedaf0094 -2023-04-05 13:52:34.993364 + : pb-IF4WUBJcVQ== ip: azo~|j~}ieaj`{, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-04-05 13:53:40.206004 + : pb-IF4WUBJcVQ== ip: azo~|j~}ieaj`{, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-04-05 13:53:59.270796 + : pb-IF4WUBJcVQ== ip: azo~|j~}ieaj`{, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-04-05 13:54:57.461893 + : pb-IF4WUBJcVQ== ip: azo~|j~}ieaj`{, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-04-05 13:55:21.502417 + : pb-IF4AV1QqEQ== started kick vote for pb-LV4FVxEOBxcUVQxERkNWUFFA. -2023-04-05 13:55:26.564984 + : pb-IF4vVRUFVA== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 13:55:33.586020 + : pb-IF40U2UlLg== ip: axi~xo~~leaih, Device id: 9f57abf8cd3a9e906896dcf754a992f5674ecd39 -2023-04-05 13:55:51.507520 + : Kick vote End -2023-04-05 13:56:40.825638 + : pb-IF49U0QJDw== ip: b}k~}khaid}vaw, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-05 13:56:58.887482 + : pb-IF4eUBMTKA== ip: ak~}hhaoaaic~, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 13:58:14.271038 + : pb-IF4pUBcZPQ== | kicked for chat spam -2023-04-05 13:59:33.412845 + : pb-IF4-UxI7Mg== ip: ak~}liajc{vayh, Device id: c9b75a67d7d77078ad188d740656d5436ebb454c -2023-04-05 14:00:24.585579 + : pb-IF4nUkteVA== ip: a}j~zh~}hbaj, Device id: 9da057bbedb60ca5287580839d2b01b057184a1c -2023-04-05 14:02:00.911698 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vb, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-05 14:02:02.921447 + : pb-IF4OPhMg ip: ak~~kbajd~vay, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-04-05 14:02:22.993602 + : pb-IF4OPhMg ip: an~}jbai`aif{, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-04-05 14:03:06.132209 + : pb-IF4vVRUFVA== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 14:03:31.223325 + : pb-IF4vVRUFVA== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 14:05:11.665968 + : pb-IF41UBIJJw== ip: azo~{n~wk~x, Device id: ab0ccfb86de3757b03344d22499b06b3778f882c -2023-04-05 14:08:41.382838 + : pb-IF41UBIJJw== ip: azo~{n~wk~x, Device id: ab0ccfb86de3757b03344d22499b06b3778f882c -2023-04-05 14:09:03.453799 + : pb-IF4VU3laVA== ip: ak~~neaifxvf~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-05 14:10:18.130777 + : pb-IF4AV1QqEQ== started kick vote for pb-IF41UBIJJw==. -2023-04-05 14:10:38.819471 + : pb-IF4OPhMg ip: an~}jbai`aif{, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-04-05 14:10:48.134837 + : Kick vote End -2023-04-05 14:10:55.876042 + : pb-IF4vV0g8Mw== ip: dvvc{vawl~yo, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-05 14:12:56.274695 + : pb-IF4hU3EgJA== ip: azo~{l~~keamb, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-05 14:13:40.580951 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4SU0QdDQ==. -2023-04-05 14:14:10.585867 + : Kick vote End -2023-04-05 14:14:11.561076 + : pb-IF4qUxBfAw== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 14:14:21.588273 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~~nb, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-05 14:16:40.066476 + : pb-IF4hU3EgJA== ip: azo~{l~~keamb, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-05 14:17:41.292614 + : pb-IF5dVWEJMg== ip: a~o~}jbaieyvbo, Device id: 3939fc10737ad53f783649761bea48dc2b3522f7 -2023-04-05 14:18:18.177542 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4SU0QdDQ==. -2023-04-05 14:18:18.419553 + : pb-IF5dVWEJMg== ip: a~o~}jbaieyvbo, Device id: 3939fc10737ad53f783649761bea48dc2b3522f7 -2023-04-05 14:18:48.181862 + : Kick vote End -2023-04-05 14:21:55.125599 + : pb-IF40VXMlBA== ip: ak~z`~~mcam`, Device id: 2567dc394522ed525d920d39eecafdfd32621b4d -2023-04-05 14:23:04.100417 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4qUBYBAw==. -2023-04-05 14:23:34.107218 + : Kick vote End -2023-04-05 14:25:35.872374 + : pb-IF42UBEfJA== ip: ak~~laaia}va~a, Device id: b6001bb84afc7763bc1e3a8cfb219d7072224488 -2023-04-05 14:26:10.986101 + : pb-IF4JUmQ8Uw== ip: aya~~liajbxvf, Device id: d58c9cc03a6dd8121dd62921e74348cff6360e18 -2023-04-05 14:26:44.556719 + : pb-IF4OPhMg started kick vote for pb-IF4hU3EgJA==. -2023-04-05 14:27:14.563829 + : Kick vote End -2023-04-05 14:27:16.223639 + : pb-IF4cUBYfCg== ip: azo~zh~{h~}kb, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-05 14:27:44.332710 + : pb-IF49U0QJDw== ip: b}k~}khaid}vaw, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-05 14:28:59.699546 + : pb-IF42UBEfJA== | kicked for chat spam -2023-04-05 14:31:58.285666 + : pb-IF5UUxgjIA== ip: azj~z`~xk~ya, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-05 14:32:11.337643 + : pb-IF5dUBclCw== ip: dvvcxvg}vhx, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-05 14:33:13.516609 + : pb-IF5UUxgjIA== ip: a~o~}j`ai`vvb|n, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-05 14:34:16.736382 + : pb-IF4qUxBfAw== ip: an~}hcajb|vayi, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 14:35:05.997131 + : pb-IF4NUxFfEg== ip: an~}hgajdyvd}, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-05 14:36:50.394843 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-05 14:37:35.958933 + : pb-IF5dUBclCw== started kick vote for pb-IF4NUxFfEg==. -2023-04-05 14:38:05.961048 + : Kick vote End -2023-04-05 14:40:57.681953 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4NUxFfEg==. -2023-04-05 14:41:02.305619 + : pb-IF4hBFgH ip: ak~}m~~niaihz, Device id: a6236484c5b3964fcd4361ad664b0232a039b16d -2023-04-05 14:41:13.341052 + : pb-IF4qUxBfAw== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 14:41:27.687754 + : Kick vote End -2023-04-05 14:43:13.767840 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvgx, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-05 14:43:25.807254 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvgx, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-05 14:43:50.904282 + : pb-IF4qUxBfAw== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 14:43:59.421934 + : pb-IF4cUBYfCg== started kick vote for pb-IF4SU0QdDQ==. -2023-04-05 14:44:29.430431 + : Kick vote End -2023-04-05 14:45:11.298546 + : pb-IF4NUxFfEg== ip: an~}hgajdyvd}, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-05 14:46:22.864190 + : pb-IF5dUGEjVQ==|| kicked > new account -2023-04-05 14:47:18.080606 + : pb-IF5UUxgjIA== started kick vote for pb-IF4SU0QdDQ==. -2023-04-05 14:47:48.086182 + : Kick vote End -2023-04-05 14:55:12.563232 + : pb-IF41U0sYPA== ip: an~~acaibyva~, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-05 14:56:31.850301 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvgx, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-05 14:58:11.208128 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 14:58:52.594887 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4DU0IEJg==. -2023-04-05 14:59:22.600003 + : Kick vote End -2023-04-05 15:00:27.416949 + : pb-IF4DU0IEJg== started kick vote for pb-IF5UUxgjIA==. -2023-04-05 15:00:57.425583 + : Kick vote End -2023-04-05 15:02:01.876048 + : pb-IF4iUBgpIA==|| kicked > new account -2023-04-05 15:03:32.345420 + : pb-IF4NUxFfEg== ip: an~}hgajdyvd}, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-05 15:04:23.638768 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5dUBVbCQ==. -2023-04-05 15:04:53.641034 + : Kick vote End -2023-04-05 15:07:30.173377 + : pb-IF4cUBYfCg== ip: azo~zh~{h~}kb, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-05 15:08:03.526889 + : pb-IF5UUxgjIA== started kick vote for pb-IF4AV1QqEQ==. -2023-04-05 15:08:33.529074 + : Kick vote End -2023-04-05 15:09:22.636793 + : pb-JiNJARBeUUNEVFZCEEVZVVNCFUldTldF ip: azj~zo~}ihaidw, Device id: c3af3a9d7bc10aa271e3cb1724761a2806c051b7 -2023-04-05 15:09:36.681946 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 15:10:39.918419 + : pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL ip: dvvc{vhxva{i, Device id: a61172de41bee6c6202d757a57288fd637e3ec13 -2023-04-05 15:14:57.914951 + : pb-IF5cPGsk ip: azj~zo~~hiaif, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-04-05 15:15:51.538742 + : pb-IF4AV1QqEQ== started kick vote for pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL. -2023-04-05 15:16:21.543714 + : Kick vote End -2023-04-05 15:20:26.659986 + : pb-IF4OPhMg started kick vote for pb-IF4RU24pIA==. -2023-04-05 15:20:56.664194 + : Kick vote End -2023-04-05 15:22:33.643123 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 15:27:05.587783 + : pb-IF4wV24HBw== ip: a~o~va~}h`aig, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-05 15:27:47.734561 + : pb-IF41U0sYPA== ip: an~~acaibyva~, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-05 15:28:30.926496 + : pb-IF4wV24HBw== ip: a~o~va~}h`aig, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-05 15:28:35.941817 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 15:28:50.879350 + : pb-IF4AV1QqEQ== started kick vote for pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL. -2023-04-05 15:29:03.034786 + : pb-IF4WUBJcVQ== ip: aakhaifzvi, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-04-05 15:29:20.882937 + : Kick vote End -2023-04-05 15:36:35.402960 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4CUBUoLw==. -2023-04-05 15:37:05.407637 + : Kick vote End -2023-04-05 15:39:46.299892 + : pb-IF4OPhMg started kick vote for pb-IF41U0sYPA==. -2023-04-05 15:40:16.307360 + : Kick vote End -2023-04-05 15:40:45.628675 + : pb-IF4sUBRcJA== ip: an~}hfajaxvb{k, Device id: cb0a66d9acf74581f20a7acb6a84f928cddd0bc4 -2023-04-05 15:41:57.939200 + : pb-IF5cPGsk started kick vote for pb-IF4OPhMg. -2023-04-05 15:42:21.051390 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 15:42:27.948219 + : Kick vote End -2023-04-05 15:43:07.205219 + : pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL ip: dvvc{vhxva{i, Device id: a61172de41bee6c6202d757a57288fd637e3ec13 -2023-04-05 15:43:33.797949 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4NUxFfEg==. -2023-04-05 15:44:03.803906 + : Kick vote End -2023-04-05 15:45:22.656513 + : pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL ip: dvvc{vhxva{i, Device id: a61172de41bee6c6202d757a57288fd637e3ec13 -2023-04-05 15:45:40.739583 + : pb-IF4WU0wvVA== ip: aakhajayva}o, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-05 15:46:08.832829 + : pb-IF49U0QJDw== ip: b}k~}khaid}vaw, Device id: 24495fd5ec013cdb163a3a3931b477b63894ef12 -2023-04-05 15:46:11.842803 + : pb-IF4WUBJcVQ== ip: azo~|j~}h`ajc|, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-04-05 15:46:29.908414 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 15:49:39.769349 + : pb-IF4wV24HBw== ip: a~o~va~}h`aig, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-05 15:51:16.213113 + : pb-IF49VFdbEQ== ip: b}k~}jhajbyvhx, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 15:56:20.366196 + : pb-IF4eUBMTKA== ip: ak~}hhaoaaic~, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 15:58:00.767385 + : pb-IF41U0sYPA== ip: an~~acaibyva~, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-05 15:58:56.849594 + : pb-IF4WV2gHNA== started kick vote for pb-IF4rUBUBLw==. -2023-04-05 15:59:26.850548 + : Kick vote End -2023-04-05 15:59:57.221012 + : pb-IF49VFdbEQ== ip: b}k~}jhajbyvhx, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 16:03:41.027999 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 16:03:54.064473 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 16:06:36.813917 + : pb-IF41U0sYPA== ip: an~~acaibyva~, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-05 16:07:57.124696 + : pb-IF41U0sYPA== ip: an~~acaibyva~, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-05 16:14:25.456887 + : pb-IF4TU3A6Hw== ip: azj~z`~}jdaja, Device id: 75b99d35b9c360e0363ebcdaadb0de583fb18d28 -2023-04-05 16:21:06.863623 + : pb-IF4TU1olAA== ip: dvvc}vazm~}mc, Device id: 22171c256c61872473f933877fe7ac042a43a19b -2023-04-05 16:32:45.298034 + : pb-IF5WVVJbFQ== ip: a~o~}hdaie|vc{, Device id: 482109c1e9efee934132501621230a2ca6574a94 -2023-04-05 16:33:03.376565 + : pb-IF5UUxgjIA== ip: azj~z`~xk~~, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-05 16:33:28.443828 + : pb-IF4TU1olAA== started kick vote for pb-IF5UUxgjIA==. -2023-04-05 16:33:58.450889 + : Kick vote End -2023-04-05 16:35:04.109538 + : pb-IF5UUxgjIA== started kick vote for pb-IF4TU1olAA==. -2023-04-05 16:35:26.887572 + : pb-IF5UUxgjIA== ip: azj~z`~xk~~, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-05 16:35:34.116531 + : Kick vote End -2023-04-05 16:35:40.953028 + : pb-IF5QU3AaLg== ip: ak~}m`aidzvaxo, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-05 16:37:25.366668 + : pb-IF4MUBcAAA== ip: azo~|k~~vavi, Device id: f33f50c5cbde96ea9e257ef08347038143ed1a0f -2023-04-05 16:38:03.509140 + : pb-IF4pUBgbAw== | kicked > reason:Banned account -2023-04-05 16:39:09.742268 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 16:41:19.242847 + : pb-IF5UUxgjIA== ip: azj~z`~xk~~, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-05 16:41:44.472943 + : pb-IF5UVGYmBA== started kick vote for pb-IF4vVRUFVA==. -2023-04-05 16:42:14.473049 + : Kick vote End -2023-04-05 16:43:26.707082 + : pb-IF5UUxgjIA== ip: azj~z`~xk~~, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-05 16:44:19.872688 + : pb-IF41U0sYPA== ip: an~~acaibyva~, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-05 16:44:38.952132 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-05 16:45:54.242056 + : pb-IF49VFdbEQ== ip: b}k~}jhajbyvhx, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 16:45:57.259166 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 16:48:05.767116 + : pb-IF49VFdbEQ== ip: b}k~}jhajbyvhx, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 16:51:00.440430 + : pb-IF4eUBMTKA== ip: ak~}hhaoaaic~, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 16:52:54.031487 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 16:53:15.084234 + : pb-IF4gU0wxBw== ip: ak~}hhaoaaic~, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 16:53:44.202440 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-05 16:54:31.393241 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF ip: an~}iean~~kg, Device id: 19cab23c5e27d40b623af49d1e26a3594d5358dc -2023-04-05 16:55:32.607091 + : pb-IF4wV24HBw== ip: ak~~obaigvva{`, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-05 16:55:44.643539 + : pb-IF48UBUzCg== ip: azj~zo~}kfaic, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-04-05 16:56:42.824576 + : pb-IF4cUBYfCg== ip: azo~zh~yh~}hf, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-05 16:58:59.304766 + : pb-IF5UUxgjIA== ip: azj~z`~xk~~, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-05 16:59:40.463614 + : pb-IF5WU0cRAg== ip: dvva{va|m~~lg, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-05 17:03:23.214909 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`aki, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-05 17:04:04.573267 + : pb-IF4gU0wxBw== started kick vote for pb-IF48UBUzCg==. -2023-04-05 17:04:34.573999 + : Kick vote End -2023-04-05 17:08:21.246792 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-05 17:09:07.401321 + : pb-IF4TV3RbDA== ip: azo~zh~{n~~a, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-05 17:09:09.404952 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-05 17:11:01.778242 + : pb-IF5UUxU7Ag== ip: an~~agai`{vaym, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-05 17:11:09.803098 + : pb-IF5UUxU7Ag== ip: an~~agai`{vaym, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-05 17:11:24.857894 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 17:15:40.754659 + : pb-IF4jF1NY ip: azj~z`~{m~y, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-05 17:16:54.992327 + : pb-IF49VFdbEQ== ip: b}k~}jhajbyvhx, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 17:17:52.374664 + : pb-IF5VU1JZMw== ip: an~}ica`ealf, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-05 17:17:57.404083 + : pb-IF4yU0hYEw== ip: awj~ya~~ofaj`|, Device id: 052bbfd43b91c5bc01d4ba79df1c076697418a48 -2023-04-05 17:19:35.734306 + : pb-IF5QU3AaLg== ip: ak~}m`aidzvaxo, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-05 17:20:00.803440 + : pb-IF4yU0hYEw== started kick vote for pb-IF5VU1JZMw==. -2023-04-05 17:20:30.804956 + : Kick vote End -2023-04-05 17:21:08.066126 + : pb-IF5dU3UiAw== ip: azo~{n~~haaid{, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-05 17:23:52.700387 + : pb-IF4sUhk4JA== ip: bxvc{vbvawm, Device id: 37bb8a15b50f757a812ec76885dba10fb186b17d -2023-04-05 17:24:08.762272 + : pb-IF5cPGsk ip: azj~zo~~ibal`, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-04-05 17:24:12.771010 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 17:24:27.820558 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 17:25:11.976040 + : pb-IF49VFdbEQ== ip: b}k~}jhajbyvhx, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 17:26:16.380825 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-05 17:26:45.484572 + : pb-IF5QU3AaLg== ip: ak~}m`aidzvaxo, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-05 17:27:37.642151 + : pb-IF5QU3AaLg== ip: ak~}m`aidzvaxo, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-05 17:28:02.744269 + : pb-IF4yAnhZ ip: b}k~}jhaja|vf}, Device id: 58f6c38c7fca73be2f03db2f43d01cfc55466e9f -2023-04-05 17:28:38.864854 + : pb-IF5VU3lYDA== ip: azj~z`~~oiaihw, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-04-05 17:30:59.385068 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`aki, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-05 17:31:25.467040 + : pb-IF4gU0wxBw== ip: a~h~}jgaiaao, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 17:31:49.551005 + : pb-IF4TV3RbDA== ip: azo~zh~{m~}hf, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-05 17:36:43.612459 + : pb-IF4jF1NY ip: azj~z`~{m~y, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-05 17:37:54.996617 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 17:39:21.312848 + : pb-IF4SUnMKEw== ip: aakhaif{vi|, Device id: 6e8257dc74a0980eaba7afb2e0a07216e88e6214 -2023-04-05 17:40:23.531200 + : pb-IF5WU0cRAg== ip: dvva{va|m~~lg, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-05 17:40:34.570228 + : pb-IF4nU0UJJg== ip: ak~~ogaj`{vam, Device id: c7558f260c97b9103325228f0d4014d4bfe175ef -2023-04-05 17:40:38.116929 + : pb-IF4jF1NY started kick vote for pb-IF5QU3AaLg==. -2023-04-05 17:41:08.117667 + : Kick vote End -2023-04-05 17:41:11.700408 + : pb-IF4VU3laVA== ip: ak~~neaifxvf~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-05 17:43:35.224095 + : pb-IF5dU3UiAw== ip: azo~{n~~haaid{, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-05 17:43:42.252673 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 17:44:00.315805 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvgx, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-05 17:47:04.002973 + : pb-IF49VFdbEQ== ip: b}k~}jhajbyvhx, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 17:47:27.382326 + : pb-IF4DU0IEJg== started kick vote for pb-IF5WU0cRAg==. -2023-04-05 17:47:57.387585 + : Kick vote End -2023-04-05 17:48:04.203168 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-05 17:53:31.578297 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvgx, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-05 17:54:06.336022 + : pb-IF5cPGsk started kick vote for pb-IF4IU3gdMg==. -2023-04-05 17:54:36.344307 + : Kick vote End -2023-04-05 17:55:19.922480 + : pb-IF5WU0cRAg== ip: dvva{va|m~~lg, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-05 17:57:29.339306 + : pb-IF4IU3gdMg== ip: d~val~}k`ajd~, Device id: ee48831e48d1df142d60ec3def798463f1cc0fc4 -2023-04-05 17:57:38.386244 + : pb-IF5cPGsk ip: azj~zo~~ibal`, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-04-05 17:58:29.561625 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 18:01:26.352425 + : pb-IF4gU0wxBw== ip: ak~}hhaoaaic~, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 18:02:10.520818 + : pb-IF4IU3gdMg== ip: d~val~~l`and, Device id: ee48831e48d1df142d60ec3def798463f1cc0fc4 -2023-04-05 18:05:00.135216 + : pb-IF4VU3laVA== ip: ak~~neaifxvf~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-05 18:05:12.175997 + : pb-IF4VU3laVA== ip: ak~~neaifxvf~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-05 18:07:55.893254 + : pb-IF4AVE0hKg== ip: b}k~}jiaic}va}j, Device id: 80561bb95d52cc5120f79c05ee464c1d60b5b468 -2023-04-05 18:08:05.245799 + : pb-IF4VU3laVA== started kick vote for pb-IF4PUxM7Mg==. -2023-04-05 18:08:35.250484 + : Kick vote End -2023-04-05 18:09:07.153611 + : pb-IF4OU00jBA== ip: azj~z`~|m~~ld, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-05 18:14:41.741439 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF ip: an~}iean~~kg, Device id: 19cab23c5e27d40b623af49d1e26a3594d5358dc -2023-04-05 18:15:50.199401 + : pb-IF5cPGsk ip: azj~zo~~ibal`, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-04-05 18:16:55.697491 + : pb-IF49U0QJDw== ip: b}k~}khaid}vaw, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-05 18:19:48.292462 + : pb-IF4gU0wxBw== ip: ak~}hhaoaaic~, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 18:19:50.291908 + : pb-IF49U0QJDw== ip: b}k~}khaid}vaw, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-05 18:24:24.247908 + : pb-IF4hU3EgJA== ip: azo~{l~~ldajc, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-05 18:25:17.445193 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-05 18:27:14.083975 + : pb-IF4gU0wxBw== ip: ak~}hhaoaaic~, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 18:27:52.200418 + : pb-IF4gU0wxBw== ip: ak~}hhaoaaic~, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 18:29:45.614815 + : pb-IF4jF1NY ip: azj~z`~zvaz, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-05 18:30:04.673015 + : pb-IF4IU28qPA== ip: azo~zi~}h~xo, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-04-05 18:31:36.055914 + : pb-IF49VFdbEQ== ip: b}k~}jhaje|va{, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 18:32:19.190913 + : pb-IF5WU0cRAg== ip: dvva{va|m~~lg, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-05 18:32:37.398561 + : pb-IF4OU00jBA== ip: azj~z`~|n~~a`, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-05 18:32:49.099137 + : pb-IF4IU28qPA== started kick vote for pb-IF4jF1NY. -2023-04-05 18:33:09.706775 + : Kick vote End -2023-04-05 18:33:27.705509 + : pb-IF4jF1NY ip: azj~z`~zvaz, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-05 18:33:49.781272 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-04-05 18:34:08.835562 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: b}k~}khajc~vayl, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-04-05 18:37:14.599842 + : pb-IF5WU0cRAg== ip: dvva{va|m~~lg, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-05 18:38:55.933550 + : pb-IF49VFdbEQ== ip: b}k~}jhaje|va{, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 18:39:05.977963 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-05 18:39:19.011229 + : pb-IF40UmUMEg== ip: dxvb{o~}hcajcw, Device id: 7871fcf2cb1081a5de7b5b7b3bfc84148565e630 -2023-04-05 18:39:56.157501 + : pb-IF5SUkwMAg== ip: dvvcyva~i~}k, Device id: a437c2a1793c75d0da48b9b93a0f30175d79dd89 -2023-04-05 18:40:35.297348 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF ip: an~}iean~~kg, Device id: 19cab23c5e27d40b623af49d1e26a3594d5358dc -2023-04-05 18:41:42.518080 + : pb-IF4KV3YFPA== ip: bxva}m~}lbaidz, Device id: 58839fe89f095ba613effd6d2f612ceb3beaa433 -2023-04-05 18:42:30.689789 + : pb-IF49VFdbEQ== ip: b}k~}jhaje|va{, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 18:43:59.213386 + : pb-IF4VU3laVA== ip: ak~~neaifxvf~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-05 18:44:22.296952 + : pb-IF4-Um4_Lw== ip: azj~zo~{m~}ii, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-04-05 18:48:26.358963 + : pb-IF40UmUMEg== ip: dxvb{o~}hcajcw, Device id: 7871fcf2cb1081a5de7b5b7b3bfc84148565e630 -2023-04-05 18:49:56.688125 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-05 18:51:53.640790 + : pb-IF49VFdbEQ== ip: b}k~}jhaje|va{, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 18:57:25.841509 + : pb-IF4VU3laVA== | kicked for chat spam -2023-04-05 18:58:26.498298 + : pb-IF5VU1JZMw== ip: an~}ica`ealf, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-05 18:58:37.536516 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-05 19:00:40.969396 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-05 19:01:26.304609 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-05 19:02:37.538142 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-05 19:02:59.777646 + : pb-IF5VU1JZMw== started kick vote for pb-IF4JUBM7MA==. -2023-04-05 19:03:29.778015 + : Kick vote End -2023-04-05 19:03:58.859387 + : pb-IF49VFdbEQ== ip: b}k~}jhaje}va~m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 19:04:04.878876 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-05 19:04:09.899078 + : pb-IF49U0QJDw== ip: b}k~}khaid}vaw, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-05 19:05:24.336170 + : pb-IF49VFdbEQ== ip: b}k~}jhaje}va~m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 19:06:33.611233 + : pb-IF4FU1odKQ== ip: azj~z`~~kiajc|, Device id: 49c1d0d45ff6ee975bb8fed9aee81eaab6fa4882 -2023-04-05 19:07:05.726951 + : pb-IF4OU00jBA== ip: azj~z`~|n~~a`, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-05 19:07:07.791536 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-04-05 19:09:30.442514 + : pb-IF4oUBM6BA== ip: dvvcxvbzi~{, Device id: 1f97b30798db40a6723d9b6e3557a78b0d8177bc -2023-04-05 19:11:08.776943 + : pb-IF49U0QJDw== ip: b}k~}khaid}vaw, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-05 19:11:10.785697 + : pb-IF4yVXVYIw== ip: bxvc{vevavj, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-04-05 19:11:48.193995 + : pb-IF4NUxFfEg== ip: bxvf}vb}l~~nc, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-05 19:13:37.601416 + : pb-IF4gU0wxBw== ip: ak~}hhaoaaic~, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 19:14:06.717641 + : pb-IF4gU0wxBw== ip: ak~}hhaoaaic~, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 19:15:42.107737 + : pb-IF4AV1QqEQ== ip: an~}ica`daibw, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-05 19:25:09.069057 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-05 19:28:37.862882 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-05 19:31:06.379206 + : pb-IF4SXhUa ip: azj~z`~xh~~o, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-05 19:31:18.414900 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 19:31:30.456298 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvcx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-05 19:31:33.466872 + : pb-IF40UmUMEg== ip: dxvb{o~}hhaii|, Device id: 7871fcf2cb1081a5de7b5b7b3bfc84148565e630 -2023-04-05 19:31:39.493000 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 19:31:56.537444 + : pb-IF42UBEfJA== ip: ak~~laaia}va~a, Device id: b6001bb84afc7763bc1e3a8cfb219d7072224488 -2023-04-05 19:33:20.790380 + : pb-IF4gU0wxBw== ip: ak~}hhaoaaic~, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 19:36:04.357716 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 19:36:51.572105 + : pb-IF5dU3UiAw== ip: azo~{n~~hbaia{, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-05 19:47:03.757069 + : pb-IF5UUxgjIA== ip: evvhvvgxvd~, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-05 19:48:20.020248 + : pb-IF4OPhMg ip: an~}jbai`aif{, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-04-05 19:55:35.679130 + : pb-IF5cU2haHA== ip: dvvcxvbzh~yl, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-04-05 19:56:32.900762 + : pb-IF5UVBMZEw== ip: bxvc{vc{vaxa, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-04-05 19:56:58.995208 + : pb-IF5UUxgjIA== ip: evvhvvgxvd~, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-05 19:58:29.317662 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 19:58:49.358020 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 20:02:30.189466 + : pb-IF4yVFgOVA== ip: ak~~`dajcwvi~, Device id: d854623f8a8ec9715c4cf1e44f2a453d5344d791 -2023-04-05 20:04:29.697878 + : pb-IF4eUBMTKA== ip: ak~}hhaoaaic~, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 20:04:38.726221 + : pb-IF49VFdbEQ== ip: b}k~}jhaje}va~m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 20:06:44.124576 + : pb-IF4-Um4_Lw== ip: azj~zo~{m~}ii, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-04-05 20:08:21.448922 + : pb-IF4tUBVaLA== ip: a~o~va~}icao, Device id: d54b81f6ed09e5ef802fc3c1a64c64fe7416e472 -2023-04-05 20:08:36.512006 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-05 20:09:45.776692 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-05 20:09:51.786787 + : pb-IF49U0QJDw== ip: dvvcxva~o~{a, Device id: c3810e11429b25a3849c4891a8d2d36e1dccc933 -2023-04-05 20:10:36.914428 + : pb-IF5cU2oMAQ== ip: dvvc{vdwviy, Device id: 113e2c155d08dab93d83e6eb9b79c3182ab40b92 -2023-04-05 20:11:38.124565 + : pb-IF4IVW49BA== ip: an~~ahal~yk, Device id: cdbb3840f8731245c0413cd9dde6427f27ade452 -2023-04-05 20:11:39.123476 + : pb-IF4tUBVaLA== ip: a~o~va~}icao, Device id: d54b81f6ed09e5ef802fc3c1a64c64fe7416e472 -2023-04-05 20:14:42.765985 + : pb-IF5dU3UiAw== ip: azo~{n~~jeajc}, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-05 20:17:57.515123 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|viw, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-05 20:18:12.572137 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|viw, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-05 20:20:18.495255 + : pb-IF5dU3UiAw== started kick vote for pb-IF4IVW49BA==. -2023-04-05 20:20:28.011930 + : pb-IF4IVW49BA== kicked by kickvotes. -2023-04-05 20:20:38.104970 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-05 20:22:03.409045 + : pb-IF5VU1JZMw== ip: an~}ica`ealf, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-05 20:28:03.664648 + : pb-IF5cU2oMAQ== ip: dvvc{vdwviy, Device id: 113e2c155d08dab93d83e6eb9b79c3182ab40b92 -2023-04-05 20:28:10.697573 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-05 20:31:08.464017 + : pb-IF4IVW49BA== ip: an~~ahal~yk, Device id: cdbb3840f8731245c0413cd9dde6427f27ade452 -2023-04-05 20:31:16.489419 + : pb-IF5cU2oMAQ== ip: dvvc{vdwviy, Device id: 113e2c155d08dab93d83e6eb9b79c3182ab40b92 -2023-04-05 20:32:56.821614 + : pb-IF4zU20BBA== ip: b~j~~hdajcyvb}a, Device id: c18eafa08f3d23fc9533f8c23fa8146fcf9a02cc -2023-04-05 20:35:03.267133 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF ip: an~}iean~~kg, Device id: 19cab23c5e27d40b623af49d1e26a3594d5358dc -2023-04-05 20:36:21.554355 + : pb-IF49VFdbEQ== ip: b}k~}jhaje}va~m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 20:38:35.044155 + : pb-IF5cU2oMAQ== ip: dvvc{vdwviy, Device id: 113e2c155d08dab93d83e6eb9b79c3182ab40b92 -2023-04-05 20:38:59.110861 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|viw, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-05 20:39:25.191426 + : pb-IF49VFdbEQ== ip: b}k~}jhaje}va~m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 20:39:36.225403 + : pb-IF4GU1AEIA== ip: awk~wo~|i~}j, Device id: 9fbe61bd0d39414b0f72fd952321a435896d6125 -2023-04-05 20:39:52.276691 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 20:43:09.023320 + : pb-IF5QUncTAQ== ip: d}vam~~neak`, Device id: b831eec6105356e3e1e6deefd6747d3c52d10d62 -2023-04-05 20:44:25.353601 + : pb-IF4qVRY4Vg== ip: b}k~}kfan`aib, Device id: d041ba866757f85834a62ef606c034afb41fd757 -2023-04-05 20:45:22.585047 + : pb-IF4VU3laVA== ip: ak~~neaifxvf~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-05 20:46:01.730657 + : pb-IF4VU3laVA== ip: ak~~neaifxvf~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-05 20:46:30.848887 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazm~~nb, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-05 20:49:35.550430 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|viw, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-05 20:50:10.690886 + : pb-IF4uU1o-Pw== ip: d|vb|i~}iaaic|, Device id: f84e373b90064e97874a3197cfbd00ba09a0966b -2023-04-05 20:50:20.717458 + : pb-IF4GU1AEIA== ip: awk~wo~|i~}j, Device id: 9fbe61bd0d39414b0f72fd952321a435896d6125 -2023-04-05 20:51:19.949799 + : pb-IF40U3MyVQ== ip: b}k~}kcaneam, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-04-05 20:54:17.609938 + : pb-IF4qVRY4Vg== ip: b}k~}kfan`aib, Device id: d041ba866757f85834a62ef606c034afb41fd757 -2023-04-05 20:55:54.926907 + : pb-IF4GU1AEIA== ip: awk~wo~|i~}j, Device id: 9fbe61bd0d39414b0f72fd952321a435896d6125 -2023-04-05 21:05:05.000569 + : pb-IF4eUBMTKA== ip: ak~}hhaoaaic~, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 21:05:30.099165 + : pb-IF41U2scIg== ip: ak~}hhaoaaic~, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-05 21:06:42.383760 + : pb-IF4qVRY4Vg== ip: b}k~}kfan`aib, Device id: d041ba866757f85834a62ef606c034afb41fd757 -2023-04-05 21:06:53.412703 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|viw, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-05 21:09:44.084064 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|viw, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-05 21:11:24.443367 + : pb-IF4sCXI9 ip: an~}jcaj`}vaxo, Device id: 016005002c5e71bc4f41ba158f73d116d7bfdf63 -2023-04-05 21:12:47.783790 + : pb-IF4SUkhZMw== ip: ak~~`ca`bajb, Device id: 83416ff679c8f6861e3eb1bb612b7d15ca254b2a -2023-04-05 21:13:17.983972 + : pb-IF4wV24HBw== ip: ak~~obaigvva{`, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-05 21:18:48.263109 + : pb-IF4FUEY4 ip: ak~~`cameajdv, Device id: 452bcd37350866efb1deb4f785c1364a1abde5d2 -2023-04-05 21:19:47.488564 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-05 21:20:17.605792 + : pb-IF4wV24HBw== ip: a~o~va~~agaiiw, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-05 21:25:47.728229 + : pb-IF49VFQlPA== ip: azo~zh~|l~}ic, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-05 21:26:04.779956 + : pb-JiNJARBbXUVGX1pJEENTXFZEFEBeQlNE ip: dvvd|vc|va~k, Device id: 8f1dbe53b88f4ba25d71ae6bc08117056a5a77a6 -2023-04-05 21:27:47.146655 + : pb-IF49VFdbEQ== ip: b}k~}jhaje}va~m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 21:29:22.483477 + : pb-IF49U0QJDw== ip: dvvcxva~o~{a, Device id: 52e159e6debf4b869cb6bd30a26e268c72ceab36 -2023-04-05 21:29:39.534693 + : pb-JiNJARFdXENAVVtAE0RZUVRKFkZaQlRB ip: aj~~`eaigvbzl, Device id: 552a52a207e749d457900d565162566ca9893ca0 -2023-04-05 21:31:49.029173 + : pb-IF49U0QJDw== ip: dvvcxva~o~{a, Device id: 52e159e6debf4b869cb6bd30a26e268c72ceab36 -2023-04-05 21:37:08.277678 + : pb-IF4WU0wvVA== ip: dvvc}vawn~}ih, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-05 21:37:56.068554 + : pb-IF5UUGENVg==|| kicked > new account -2023-04-05 21:39:40.901953 + : pb-IF5cU2haHA== ip: dvvcxvbzh~yl, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-04-05 21:41:19.285061 + : pb-IF4TV3RbDA== ip: azo~zh~{j~{i, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-05 21:42:22.529096 + : pb-IF4IU1c6Ug== ip: azj~z`~|l~}lg, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-05 21:53:20.983331 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-05 21:55:42.498288 + : pb-IF49VFdbEQ== ip: b}k~}jhaje}va~m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 21:57:58.972542 + : pb-IF4eUBMTKA== ip: ak~}hhaoaaic~, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 22:06:10.822630 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-05 22:10:12.634537 + : pb-IF49VFQlPA== ip: azo~zh~|l~}ic, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-05 22:15:01.688012 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-05 22:15:29.828210 + : pb-IF49U0QJDw== ip: dvvcxva~o~{a, Device id: 52e159e6debf4b869cb6bd30a26e268c72ceab36 -2023-04-05 22:16:07.965692 + : pb-IF49U0QJDw== ip: dvvcxva~o~{a, Device id: 52e159e6debf4b869cb6bd30a26e268c72ceab36 -2023-04-05 22:16:41.112241 + : pb-IF5TU1ddPA== ip: azj~z`~|a~}k`, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-04-05 22:17:59.440625 + : pb-IF5TU1ddPA== ip: azj~z`~|a~}k`, Device id: 64ccda4a53a3968327261e2ae7e9d3679b7eac90 -2023-04-05 22:18:13.486591 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvgx, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-05 22:18:37.564017 + : pb-IF49U0QJDw== ip: dvvcxva~o~{a, Device id: 52e159e6debf4b869cb6bd30a26e268c72ceab36 -2023-04-05 22:26:46.335981 + : pb-IF4VU3laVA== ip: ak~~neaifxvf~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-05 22:29:56.058795 + : pb-IF4eUBMTKA== ip: ak~}hhaoaaic~, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 22:46:45.732746 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~}ifai`|vayl, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-04-05 22:57:45.134210 + : pb-IF4eUBMTKA== ip: a~h~}jgaiaao, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 22:58:41.334913 + : pb-IF4eUBMTKA== ip: a~h~}jgaiaao, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-05 22:58:43.337912 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|viw, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-05 22:59:39.501579 + : pb-IF48UBUzCg== ip: azj~zo~}kiakd, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-04-05 23:05:38.894019 + : pb-IF41U2scIg== ip: a~h~}jgaiaao, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-05 23:08:30.624782 + : pb-IF4FD1c8 ip: azo~{a~vm~}jd, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-04-05 23:09:03.726447 + : pb-IF41U2scIg== ip: a~h~}jgaiaao, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-05 23:09:37.824436 + : pb-IF5cPGsk ip: ak~xi~~aealb, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-04-05 23:14:37.991032 + : pb-IF41U2scIg== ip: a~h~}jgaiaao, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-05 23:32:39.243823 + : pb-IF41VVcdBg== ip: dxvc~vb}i~~`a, Device id: de9a85e5adf9eb482ee33e8cda8a9da4f1f9233d -2023-04-05 23:34:34.711294 + : pb-IF49VFdbEQ== ip: b}k~}jhaje}va~m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 23:36:12.045709 + : pb-IF4WVW0IEw== started kick vote for pb-IF41VVcdBg==. -2023-04-05 23:36:25.171993 + : pb-IF49VFdbEQ== ip: b}k~}jhaje}va~m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 23:36:42.048877 + : Kick vote End -2023-04-05 23:36:45.255760 + : pb-IF4rLkwp ip: a~j~~kdaja{v`, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-05 23:37:15.364503 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-05 23:37:20.373363 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvgx, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-05 23:37:22.379057 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-05 23:38:06.548711 + : pb-IF41U2scIg== ip: a~h~}jgaiaao, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-05 23:38:57.750011 + : pb-IF49VFdbEQ== ip: b}k~}jhaje}va~m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 23:40:31.121646 + : pb-IF41U2scIg== ip: a~h~}jgaiaao, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-05 23:43:18.911230 + : pb-IF49VFdbEQ== ip: b}k~}jhaje}va~m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-05 23:53:49.279774 + : pb-IF4hVVVeHQ== ip: ak~}ifa``aii|, Device id: d48264bb111e9406c995bd034461104ca7dd849f -2023-04-05 23:57:28.055624 + : pb-IF5RU0cFHA== ip: axi~yi~~kcai`, Device id: a4e499aeca232c0930a3b313329855ebdbc8c761 -2023-04-06 00:01:06.859344 + : pb-IF5dUBclCw== ip: dvvcxvbzvb}, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-06 00:09:52.683066 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`aki, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-06 00:12:33.306006 + : pb-IF5dUBclCw== ip: dvvcxvbzvb}, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-06 00:20:18.310919 + : pb-IF49VFQlPA== ip: azo~zh~|l~}ic, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-06 00:22:21.081889 + : pb-IF4qUxBfAw== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-06 00:23:09.254223 + : pb-IF4qUxBfAw== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-06 00:23:56.475538 + : pb-IF5dU3UiAw== ip: azo~{n~~ifaihy, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-06 00:25:43.008551 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`aki, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-06 00:28:18.554240 + : pb-IF49VFdbEQ== ip: b}k~}jhaje}va~m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 00:32:25.436712 + : pb-IF4eUBMTKA== ip: a~h~}jgaiaao, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-06 00:32:37.466477 + : pb-IF4eUBMTKA== ip: a~h~}jgaiaao, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-06 00:38:35.803471 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`aki, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-06 00:39:47.150754 + : pb-IF49VFdbEQ== ip: b}k~}jhaje}va~m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 00:39:52.158933 + : pb-IF49VFdbEQ== ip: b}k~}jhaje}va~m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 00:43:46.039076 + : pb-IF49VFdbEQ== ip: b}k~}jhaje}va~m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 00:44:47.280920 + : pb-IF49VFQlPA== ip: azo~zh~|l~}ic, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-06 00:46:16.568263 + : pb-IF49VFdbEQ== ip: b}k~}jhaje}va~m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 00:47:27.916677 + : pb-IF4eUBMTKA== ip: a~h~}jgaiaao, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-06 00:48:36.361945 + : pb-IF5dU3UiAw== started kick vote for pb-IF4-U1ISIw==. -2023-04-06 00:49:06.363676 + : Kick vote End -2023-04-06 00:54:51.552316 + : pb-IF49VFdbEQ== ip: b}k~}jhaje}va~m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 00:55:33.683716 + : pb-IF49VFdbEQ== ip: b}k~}jhaje}va~m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 00:56:13.838579 + : pb-IF4-U1ISIw== ip: g~vhyvawj~}ic, Device id: ecf98adb2fe0fe2474e00e7c5af7555cd924917d -2023-04-06 01:06:56.064280 + : pb-IF49VFdbEQ== ip: b}k~}jhaje}va~m, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 01:34:25.865937 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-06 01:43:56.979256 + : pb-IF49VFdbEQ== ip: a~o~va~}kfaic, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 01:44:56.193865 + : pb-IF49VFdbEQ== ip: a~o~va~}kfaic, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 01:51:43.589151 + : pb-IF4VU3laVA== ip: ak~~neaifxvf~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-06 01:56:27.726781 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-06 02:03:49.319746 + : pb-IF4rLkwp ip: a~j~~kdaja{v`, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-06 02:09:07.373603 + : pb-IF4rLkwp ip: a~j~~kdaja{v`, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-06 02:18:21.279156 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-06 02:31:19.981612 + : pb-IF5VUlYhJw== ip: azo~zh~~n~|a, Device id: 49aba9148ddf7a23b2257abcdb8b9b0f0e4cddc9 -2023-04-06 02:39:56.748295 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-06 02:43:33.510894 + : pb-IF4gX2g- ip: a~o~~acaiayvi|, Device id: cea2c90d1707b44acd504ba48e7dca37ab371c26 -2023-04-06 02:43:53.577433 + : pb-IF4rLkwp ip: a~j~~kdaja{v`, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-06 02:47:55.506877 + : pb-IF4iUBUoIA== ip: avo~{k~~hiaof, Device id: 87b326222f060f4c6c19669026fa20f57d71fbbd -2023-04-06 02:57:10.330679 + : pb-IF5cVRYTCQ== ip: an~}iaaib{vbh, Device id: be694006c26106519e4a116c55f3391b57b7caab -2023-04-06 04:07:19.116857 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-06 04:29:14.560616 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-06 04:51:51.217462 + : pb-IF5dU3UiAw== ip: azo~{n~~icaoi, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-06 05:11:48.337365 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-06 05:55:13.377034 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-06 06:14:50.605931 + : pb-IF49VFdbEQ== ip: a~o~va~}kaaif, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 06:17:10.104907 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-06 06:55:58.237839 + : pb-IF49VFdbEQ== ip: a~o~va~}jeaif, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 06:56:23.311094 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-06 07:19:06.979252 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-06 08:32:34.534501 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-06 08:35:00.021544 + : pb-IF4WU0wvVA== ip: dvvc}vavi~~la, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-06 08:36:37.357432 + : pb-IF4qUxBfAw== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-06 08:41:40.425863 + : pb-IF5WUBEqHw== ip: a~h~}jgalcaidx, Device id: c3f216648bb3f8c6c9bc4164d352a554aa85f67e -2023-04-06 08:41:59.504347 + : pb-IF5WUBEqHw== ip: a~h~}jgalcaidx, Device id: c3f216648bb3f8c6c9bc4164d352a554aa85f67e -2023-04-06 08:54:36.192742 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-06 09:05:04.549644 + : pb-IF5WUBEqHw== ip: a~h~}jgalcaidx, Device id: c3f216648bb3f8c6c9bc4164d352a554aa85f67e -2023-04-06 09:12:45.218427 + : pb-IF4TUlgePw== ip: a~o~va~}hbajcw, Device id: 5874d5cf398e659aee0c787fbafa6a4e7270760c -2023-04-06 09:19:07.720839 + : pb-IF42UBEfJA== ip: ak~~laaia}va~a, Device id: b6001bb84afc7763bc1e3a8cfb219d7072224488 -2023-04-06 09:25:39.075559 + : pb-IF4qUxBfAw== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-06 09:26:28.253019 + : pb-IF4qUxBfAw== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-06 09:26:49.315611 + : pb-JiNJVxBYVkNGWl1IEERVUlBAE0ZYR1dA ip: dvvcyva}h~~h, Device id: de1d6ed8ea9e7f9ddfcf97edec97cfc53c63337f -2023-04-06 09:30:59.188000 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`am`, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-06 09:33:01.666870 + : pb-IF4hU3EgJA== ip: azo~{l~~meaidy, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-06 09:37:55.738328 + : pb-IF4IU28qPA== ip: azo~zi~|`~|j, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-04-06 09:50:13.338647 + : pb-IF4qUxBfAw== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-06 09:53:39.140539 + : pb-IF4MUBcAAA== ip: azo~|k~wj~~a`, Device id: f33f50c5cbde96ea9e257ef08347038143ed1a0f -2023-04-06 09:54:51.408842 + : pb-IF4cUBYfCg== ip: azo~zh~{l~~jd, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-06 09:55:01.435015 + : pb-IF42UBEfJA== ip: ak~~laaia}va~a, Device id: b6001bb84afc7763bc1e3a8cfb219d7072224488 -2023-04-06 09:58:23.134689 + : pb-IF4MUBcAAA== ip: azo~|k~wj~~a`, Device id: f33f50c5cbde96ea9e257ef08347038143ed1a0f -2023-04-06 10:05:55.748492 + : pb-IF49U0QJDw== ip: b}k~}khaid~vb~h, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-06 10:07:08.995964 + : pb-IF48U1oMVQ== ip: azo~{m~}hhal, Device id: a7b9dbd546bc7d5706866184711c54176163de52 -2023-04-06 10:11:22.908724 + : pb-IF4vUkRaEg== ip: azo~{i~}jdaje}, Device id: 6394b4f26b00e3f44dd52eaaa8b9d296c742e56a -2023-04-06 10:14:02.490387 + : pb-IF4vUkRaEg== ip: azo~{i~}jdaje}, Device id: 6394b4f26b00e3f44dd52eaaa8b9d296c742e56a -2023-04-06 10:14:21.557898 + : pb-IF4vUkRaEg== ip: azo~{i~}jdaje}, Device id: 6394b4f26b00e3f44dd52eaaa8b9d296c742e56a -2023-04-06 10:20:40.820647 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-06 10:27:27.348190 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvavj, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-06 10:27:42.404409 + : pb-JiNJARFdXUdGW1pEE0JZV1JCEUVdQVdA ip: ak~~o~~i`aob, Device id: d3c1b69f4abe0a30b187a9f76dd0bf2ec4316172 -2023-04-06 10:36:42.311431 + : pb-IF4FD1c8 ip: azo~{n~~hfaigz, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-04-06 10:42:44.586112 + : pb-IF4IVVc6Ug== ip: bxvexvb{j~}kc, Device id: fc5de7184a10ad23045055c1149be9bd072a0d31 -2023-04-06 10:42:53.614739 + : pb-IF4IVVc6Ug== ip: bxvexvb{j~}kc, Device id: fc5de7184a10ad23045055c1149be9bd072a0d31 -2023-04-06 10:47:37.526763 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-06 10:49:37.918436 + : pb-JiNJARFdXUdGW1pEE0JZV1JCEUVdQVdA ip: ak~~o~~i`aob, Device id: d3c1b69f4abe0a30b187a9f76dd0bf2ec4316172 -2023-04-06 10:50:06.018506 + : pb-IF4qUxBfAw== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-06 10:57:20.509036 + : pb-IF4yVXVYIw== ip: bxvc{vevavj, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-04-06 10:58:01.641137 + : pb-IF4yVXVYIw== ip: bxvc{vevavj, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-04-06 11:23:26.406103 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-06 11:23:55.481509 + : pb-IF4wUBcMAA== ip: azo~{m~}meaiiv, Device id: 5f9f008afb67bad20d861c976fe86b6e4123dcb4 -2023-04-06 11:28:44.513581 + : pb-IF49U0QJDw== ip: b}k~}khaid~vb~h, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-06 11:29:02.569010 + : pb-IF49U0QJDw== ip: b}k~}khaid~vb~h, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-06 11:42:39.526262 + : pb-IF49U0QJDw== ip: b}k~}khaid~vb~h, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-06 11:44:27.929803 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-06 11:47:50.633089 + : pb-IF4KUlYsUw== ip: a~o~}hiakdane, Device id: 384c109c7d05a58dc5a73451a8f48d08632d4fc5 -2023-04-06 11:48:14.715313 + : pb-IF4yVFgOVA== ip: ak~~neaifxva}a, Device id: d854623f8a8ec9715c4cf1e44f2a453d5344d791 -2023-04-06 11:55:29.188392 + : pb-IF4cUBYfCg== ip: azo~zh~yj~~ac, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-06 12:02:17.634517 + : pb-IF4cUBYfCg== ip: azo~zh~yj~~ac, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-06 12:03:00.811645 + : pb-IF5VU1JZMw== ip: an~}ica`aaia|, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-06 12:04:02.063679 + : pb-IF40VRIbJg== ip: an~~afa`fajd, Device id: 10bb61f2761dcc779f19f3263fa3407a620db0fe -2023-04-06 12:15:43.482091 + : pb-IF4gU0wxBw== ip: a~h~}jgaiaao, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-06 12:17:58.959789 + : pb-IF4AV1QqEQ== ip: an~}ica`aaab, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-06 12:18:24.031757 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvdx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-06 12:22:18.241217 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4MUBQaNw==. -2023-04-06 12:22:25.196078 + : pb-IF4MUBQaNw== kicked by kickvotes. -2023-04-06 12:23:33.030818 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~{k, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-04-06 12:23:41.622352 + : pb-IF43UlceUA== started kick vote for pb-IF5cUkwjDA==. -2023-04-06 12:23:45.559592 + : pb-IF5cUkwjDA== kicked by kickvotes. -2023-04-06 12:24:04.238366 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvdx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-06 12:24:11.268475 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-06 12:25:02.453913 + : pb-IF4AV1QqEQ== ip: an~}ica`aaab, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-06 12:25:15.129481 + : pb-IF43UlceUA== started kick vote for pb-IF4nUxE4Nw==. -2023-04-06 12:25:45.132564 + : Kick vote End -2023-04-06 12:26:06.698524 + : pb-IF4AV1QqEQ== ip: an~}ica`aaab, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-06 12:26:37.808899 + : pb-IF4IU1c6Ug== ip: azj~z`~|m~~li, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-06 12:29:00.092803 + : pb-IF4nUxE4Nw== started kick vote for pb-IF43UlceUA==. -2023-04-06 12:29:30.096733 + : Kick vote End -2023-04-06 12:29:46.569326 + : pb-IF4TU1olAA== ip: dvvc}va|j~~mb, Device id: 22171c256c61872473f933877fe7ac042a43a19b -2023-04-06 12:30:37.754393 + : pb-IF4gU0wxBw== ip: ak~}hhaoaaid|, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-06 12:30:47.794929 + : pb-IF4AV1QqEQ== ip: an~}ica`aaab, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-06 12:31:01.842170 + : pb-IF49U0QJDw== ip: dvvcxva~o~xa, Device id: 52e159e6debf4b869cb6bd30a26e268c72ceab36 -2023-04-06 12:31:28.949758 + : pb-IF4yU0hYEw== ip: azj~z`~~ifai, Device id: 052bbfd43b91c5bc01d4ba79df1c076697418a48 -2023-04-06 12:33:15.329062 + : pb-IF5WUBkSMw== ip: ak~wh~zl~~l, Device id: 4d899f05393ac7ee78e9ae3bc2ac2a5e6da8a357 -2023-04-06 12:33:27.374404 + : pb-IF4IU28qPA== ip: azo~zi~{l~}kd, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-04-06 12:36:01.577480 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5WUBkSMw==. -2023-04-06 12:36:31.585904 + : Kick vote End -2023-04-06 12:37:03.487479 + : pb-IF4uUBg5CA==|| kicked > new account -2023-04-06 12:40:30.898104 + : pb-IF5VU1JZMw== ip: an~}ica`aaia|, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-06 12:43:00.929741 + : pb-IF4AV1QqEQ== started kick vote for pb-JiNJVxFfVEJIWVxFEUBXXFNLE0hXRFVD. -2023-04-06 12:43:30.933600 + : Kick vote End -2023-04-06 12:50:21.192092 + : pb-IF5VU1JZMw== started kick vote for pb-IF4UU0Y5IQ==. -2023-04-06 12:50:51.193330 + : Kick vote End -2023-04-06 12:53:48.110386 + : pb-IF4gU0wxBw== ip: ak~}hhaoaaid|, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-06 12:55:20.645329 + : pb-IF4UU0Y5IQ== ip: ak~~oiajc~vg|, Device id: 6271ae7bb161346c647203a534261c80b82d5e9f -2023-04-06 12:59:40.629933 + : pb-IF5VU1JZMw== ip: an~}ica`aaia|, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-06 13:01:24.774283 + : pb-IF4DUBgdHw==|| kicked > new account -2023-04-06 13:03:24.659660 + : pb-IF41U2scIg== ip: ak~}hhaoaaid|, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-06 13:07:31.560074 + : pb-IF41U0sYPA== ip: an~}ifajd{va~j, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-06 13:08:17.725797 + : pb-IF4-VWghUA== ip: an~}h`ai`zvh|, Device id: 8aadc25a6801ea58e20759682e7c63f8a1700068 -2023-04-06 13:10:38.352956 + : pb-IF5SUno-Ug== ip: dxvbvvaxj~~ab, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-04-06 13:20:32.522330 + : pb-IF49U0QJDw== ip: b}k~}khaid~vb~h, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-06 13:21:41.767264 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~{k, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-04-06 13:25:10.546799 + : pb-IF5UUxU7Ag== ip: an~~agakhala, Device id: a13355e6a59706d4eaf112db2b68fdcc23f3874f -2023-04-06 13:26:11.740907 + : pb-IF5XU0YhKg== ip: azo~{m~vh~}ka, Device id: 009307dd452aa63a0473545aea930364bd26abb4 -2023-04-06 13:34:51.741321 + : pb-IF4gU0wxBw== ip: a~h~}jgaiaao, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-06 13:43:27.841272 + : pb-IF4IU1c6Ug== ip: azj~z`~|m~}ia, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-06 13:43:43.917237 + : pb-IF4IU1c6Ug== ip: azj~z`~|m~}ia, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-06 13:43:57.978355 + : pb-IF4IU1c6Ug== ip: azj~z`~|m~}ia, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-06 13:45:17.263821 + : pb-IF4IU1c6Ug== ip: azj~z`~|m~}ia, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-06 13:45:18.270506 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh|vax`, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-06 13:49:46.199242 + : pb-IF49U1IiIA== ip: azo~{m~~jdaje, Device id: cab82c44dc8fe46868ca16d86e5ebbe8934766d9 -2023-04-06 13:50:25.322460 + : pb-IF49U0QJDw== ip: b}k~}khaid~vb~h, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-06 13:51:35.585905 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-06 13:51:47.228060 + : pb-IF5VUGJZVQ==|| kicked > new account -2023-04-06 14:00:24.997533 + : pb-IF4wUBMdVQ== ip: dvvcyvczvcx, Device id: f96c0f2dcdd6c38f308743ca8b724b13084d6c70 -2023-04-06 14:01:53.311671 + : pb-IF49U0QJDw== ip: b}k~}khaid~vb~h, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-06 14:02:04.364157 + : pb-IF49U0QJDw== ip: b}k~}khaid~vb~h, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-06 14:07:10.409486 + : pb-IF5UUGEBEg==|| kicked > new account -2023-04-06 14:07:22.845312 + : pb-IF40UncaLg== ip: dvvc}vbi~w`, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-06 14:12:47.041545 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~{k, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-04-06 14:21:57.000199 + : pb-IF49U0QJDw== ip: b}k~}khaid~vb~h, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-06 14:22:48.186487 + : pb-IF49U0QJDw== ip: b}k~}khaid~vb~h, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-06 14:24:58.309950 + : pb-IF41UBIJJw== ip: azo~{n~wi~{a, Device id: ab0ccfb86de3757b03344d22499b06b3778f882c -2023-04-06 14:25:24.407832 + : pb-IF4jF1NY ip: azj~z`~zva|a, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-06 14:25:39.460219 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvb~h, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-06 14:27:42.929270 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~wh, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-06 14:27:55.988747 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvb~h, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-06 14:28:23.259011 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~wh, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-06 14:28:57.407999 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvb~h, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-06 14:29:15.464339 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvb~h, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-06 14:31:34.982735 + : pb-IF4rUkQoDw== ip: dvvbl~~kdaiiz, Device id: 66db2405fa0aaf561b1414770e894d46929eba66 -2023-04-06 14:32:03.098842 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-06 14:32:53.197270 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-06 14:32:53.197528 + : pb-IF49U0QJDw== ip: b}k~}khaid~vb~h, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-06 14:39:28.570455 + : pb-IF49U0QJDw== ip: b}k~}khaid~vb~h, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-06 14:43:26.408184 + : pb-JiNJVxBfVkNIXVpCFUNVXVxAGERcRFlL ip: dvvcyvfzvgy, Device id: a61172de41bee6c6202d757a57288fd637e3ec13 -2023-04-06 14:44:03.551093 + : pb-IF5TUm44Ag== ip: azo~{a~vj~}ic, Device id: 2ff274acc310c12f545afaf5c3779afb8d9b8747 -2023-04-06 14:52:51.448128 + : pb-IF4gU0wxBw== ip: ak~}hhaoaaid|, Device id: 3c3c4de399c13315ae6d36ec6975c03556250fec -2023-04-06 14:53:53.007415 + : pb-IF5XUxIhKg==|| kicked > new account -2023-04-06 14:57:51.474238 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-06 14:57:53.477796 + : pb-JiNJARBbXUVGX1pJEENTXFZEFEBeQlNE ip: dvvd|vc|vc{, Device id: 8f1dbe53b88f4ba25d71ae6bc08117056a5a77a6 -2023-04-06 15:02:48.557746 + : pb-IF5UUxgjIA== ip: evvhvvgvvbzj, Device id: d03eaa5daac71ad2852e10e72a7e1a5ae863b7a3 -2023-04-06 15:13:55.024019 + : pb-IF4TV3RbDA== ip: azo~zh~za~}hd, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-06 15:14:18.102017 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-04-06 15:19:08.197815 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-06 15:26:26.704331 + : pb-IF4tU1MsEA== ip: azo~{m~}kbajcx, Device id: 01840b94034b9525b1daae863a3388136f0d6717 -2023-04-06 15:27:17.868129 + : pb-IF4RU2ECAg== ip: dvvd|vazk~wh, Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-04-06 15:31:40.847877 + : pb-IF4tU1MsEA== ip: azo~{m~}kbajcx, Device id: 01840b94034b9525b1daae863a3388136f0d6717 -2023-04-06 15:31:48.876697 + : pb-IF4wUBRSEQ== ip: an~~agaadajc}, Device id: 632ae552e6874ecc9047affebef875e24235ed31 -2023-04-06 15:34:38.440270 + : pb-IF4RU2ECAg== ip: dvvd|vazk~wh, Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-04-06 15:37:43.057478 + : pb-IF5dUBclCw== ip: azo~|m~{i~~of, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-06 15:39:14.391396 + : pb-IF5dUBclCw== ip: azo~|m~}k~~kf, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-06 15:40:15.611977 + : pb-IF4mU1g-FA== ip: axi~xn~|k~~o, Device id: a870f8e8766b3b5cba760cb1399df785eb61b343 -2023-04-06 15:47:34.187587 + : pb-IF4RU2ECAg== ip: dvvd|vazk~wh, Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-04-06 15:48:18.333786 + : pb-IF4RU2ECAg== ip: dvvd|vazk~wh, Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-04-06 15:50:08.823054 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-06 15:53:24.556984 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~wh, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-06 15:55:44.084334 + : pb-IF4gUloxKA== ip: azo~{n~}jaaiey, Device id: c07ed77b24acb9388a1c0e09f55c4e33cdf9ae75 -2023-04-06 15:58:08.607310 + : pb-IF5TUm4DNg== ip: azo~{m~~niaihz, Device id: c9806c8ee7f04e5bf4128be81c5cd841d01101c7 -2023-04-06 16:00:02.022857 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-06 16:04:46.022590 + : pb-IF4gUloxKA== ip: azo~{n~}jaaiey, Device id: c07ed77b24acb9388a1c0e09f55c4e33cdf9ae75 -2023-04-06 16:06:51.541107 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvdx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-06 16:13:44.006255 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvdx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-06 16:13:58.057690 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-06 16:14:38.208811 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-06 16:20:36.465658 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-06 16:22:27.869794 + : pb-IF4cUBYfCg== ip: azo~zh~|o~~`c, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-06 16:29:39.426894 + : pb-IF4TV3RbDA== ip: azo~{m~{k~}k`, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-06 16:34:10.371259 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~}ifai`|vay`, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-04-06 16:37:49.154921 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvdx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-06 16:42:01.039087 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-06 16:47:00.154009 + : pb-IF5VU1JZMw== ip: an~}ica`aaia|, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-06 16:47:17.215826 + : pb-IF5QU3AaLg== ip: ak~}m`aidzvax`, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-06 16:50:30.903160 + : pb-IF5VU1JZMw== ip: an~}ica`aaia|, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-06 16:52:49.429666 + : pb-IF4AV1QqEQ== ip: an~}ica`aaab, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-06 16:52:58.475991 + : pb-IF4AV1QqEQ== ip: an~}ica`aaab, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-06 16:54:30.882061 + : pb-IF40UxMtVA== ip: b}k~~`eajcwvdv, Device id: 5249987b6d86fe0cdddf9de8230e083b6eb056a0 -2023-04-06 16:54:48.264443 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4rU1NSCQ==. -2023-04-06 16:55:18.266318 + : Kick vote End -2023-04-06 16:55:27.489095 + : pb-IF4HUBgTIQ==|| kicked > new account -2023-04-06 16:58:18.334066 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4rU1NSCQ==. -2023-04-06 16:58:48.337703 + : Kick vote End -2023-04-06 16:58:51.870727 + : pb-IF5cPGsk ip: dvvc}vav`~~k, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-04-06 16:59:00.967453 + : pb-IF4NUxFfEg== ip: an~}hgajc|vb{j, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-06 16:59:13.009041 + : pb-IF4jF1NY ip: azj~z`~{vb|, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-06 17:00:32.315321 + : pb-IF4eUxYkNg== ip: azo~|a~}k`ai, Device id: cf463c3e8e5177f63280992858c9206120cc78da -2023-04-06 17:12:11.173469 + : pb-IF4NUxFfEg== ip: an~}hgajc|vb{j, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-06 17:12:35.270360 + : pb-IF5dU3UiAw== ip: a~o~}ieaib{vaxa, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-06 17:12:52.323247 + : pb-IF5dU3UiAw== ip: azo~{n~~i`aigy, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-06 17:13:31.465472 + : pb-IF5VU3lYDA== ip: azj~z`~~ohang, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-04-06 17:15:18.816902 + : pb-IF49VFdbEQ== ip: a~o~va~}jfal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 17:16:13.020061 + : pb-IF4vUkRaEg== ip: azo~{i~~aiaicy, Device id: 6394b4f26b00e3f44dd52eaaa8b9d296c742e56a -2023-04-06 17:18:47.566022 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5VU1JZMw==. -2023-04-06 17:19:13.737107 + : pb-IF4vUkRaEg== ip: azo~{i~~aiaicy, Device id: 6394b4f26b00e3f44dd52eaaa8b9d296c742e56a -2023-04-06 17:19:17.571283 + : Kick vote End -2023-04-06 17:20:05.916935 + : pb-IF4NUxFfEg== ip: an~}hgajc|vb{j, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-06 17:21:00.125224 + : pb-IF4qUxBfAw== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-06 17:22:34.434445 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-06 17:24:33.872317 + : pb-IF5cU1YbLQ== ip: a~o~}hgaj`{va}i, Device id: fe2c70bf6b21cf6c7ac726ec366d2820d891167d -2023-04-06 17:25:18.030766 + : pb-IF49U0QJDw== ip: b}k~}khaid~va|`, Device id: 24495fd5ec013cdb163a3a3931b477b63894ef12 -2023-04-06 17:27:49.578620 + : pb-IF4NUxFfEg== ip: an~}hgajc|vb{j, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-06 17:29:57.002236 + : pb-IF4eUBMTKA== ip: a~h~}jgaiaao, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-06 17:29:59.008285 + : pb-IF5cU1YbLQ== ip: a~o~}hgaj`{va}i, Device id: fe2c70bf6b21cf6c7ac726ec366d2820d891167d -2023-04-06 17:31:23.282198 + : pb-IF4RU0ocBA== ip: a~o~}leao~~ai, Device id: bd65a72fbda8f62ae4377647b73bfaa50958b12d -2023-04-06 17:32:15.484047 + : pb-IF5dU3UiAw== ip: azo~{n~va~za, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-06 17:33:48.850219 + : pb-IF4qUxBfAw== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-06 17:33:52.868673 + : pb-IF5TAHQO | kicked > reason:Banned account -2023-04-06 17:34:14.955033 + : pb-IF49U0QJDw== ip: b}k~}khaid~va|`, Device id: 24495fd5ec013cdb163a3a3931b477b63894ef12 -2023-04-06 17:34:27.005123 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-06 17:36:09.238761 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4vVRUFVA==. -2023-04-06 17:36:13.741474 + : Kick vote End -2023-04-06 17:36:18.473010 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-06 17:36:51.615722 + : pb-IF5cU2haHA== ip: dvvcxvbzh~yl, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-04-06 17:37:17.725400 + : pb-IF5dU3UiAw== ip: azo~{n~va~za, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-06 17:39:17.197337 + : pb-IF49U0QJDw== ip: b}k~}khaid~va|`, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-06 17:39:34.254331 + : pb-IF5VU1JZMw== ip: an~}ica`aaia|, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-06 17:41:04.562930 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-06 17:42:00.760561 + : pb-IF4eUBMTKA== ip: a~h~}jgaiaao, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-06 17:42:51.957250 + : pb-IF4pU3EMUQ== ip: a~o~v`~wl~}hb, Device id: 97647d0d8df774d90bd3533f7df35bd9e542e319 -2023-04-06 17:43:10.031654 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-06 17:43:44.176649 + : pb-IF40UmUMEg== ip: b}k~}kfak`amf, Device id: 7871fcf2cb1081a5de7b5b7b3bfc84148565e630 -2023-04-06 17:46:09.926204 + : pb-IF4AV1QqEQ== started kick vote for pb-IF40UmUMEg==. -2023-04-06 17:46:39.930622 + : Kick vote End -2023-04-06 17:47:29.047019 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-06 17:47:38.068718 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-06 17:48:58.539164 + : pb-IF4AV1QqEQ== ip: an~}ica`aaab, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-06 17:50:44.930999 + : pb-IF49U0QJDw== ip: b}k~}khaid~va|`, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-06 17:52:09.219045 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-06 17:53:41.534583 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~ve{, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-06 17:54:30.710870 + : pb-IF49VFdbEQ== ip: a~o~va~}jfal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 17:55:17.879350 + : pb-IF4LDngI ip: a}m~va~}h~~`c, Device id: 3e9a56609f9fb971aba1d4d800e79eb68d5b8e67 -2023-04-06 17:55:42.971580 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-06 17:55:51.008416 + : pb-IF40UmUMEg== ip: b}k~}kfak`amf, Device id: 7871fcf2cb1081a5de7b5b7b3bfc84148565e630 -2023-04-06 17:56:52.187650 + : pb-IF4DU0IEJg== started kick vote for pb-IF4AV1QqEQ==. -2023-04-06 17:57:02.002830 + : pb-IF4AV1QqEQ== kicked by kickvotes. -2023-04-06 18:01:32.207925 + : pb-IF4OU00jBA== ip: azj~z`~|`~|j, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-06 18:02:15.386786 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-06 18:04:00.306865 + : pb-IF4TUhMPKA== started kick vote for pb-IF4OU00jBA==. -2023-04-06 18:04:12.785429 + : pb-JiNJARFcUUpHVV9FEENUUFBFGUVWRVlG ip: azo~{n~~jdajb|, Device id: 55e8c71cbc1356d191114f256e59af91cf994da1 -2023-04-06 18:04:30.307326 + : Kick vote End -2023-04-06 18:05:48.140262 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-06 18:09:32.960993 + : pb-IF4eUxYkNg== ip: azo~|a~}k`ai, Device id: cf463c3e8e5177f63280992858c9206120cc78da -2023-04-06 18:10:42.950766 + : pb-IF4cUBgEPA==|| kicked > new account -2023-04-06 18:11:29.508035 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-06 18:13:55.085667 + : pb-IF5WU0cRAg== ip: d}va`~~agaii, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-06 18:15:25.738183 + : pb-IF40UncaLg== started kick vote for pb-IF4OU1AYBg==. -2023-04-06 18:15:55.739099 + : Kick vote End -2023-04-06 18:16:13.579907 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-06 18:16:18.600618 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-04-06 18:17:24.018703 + : pb-IF4BU1gtAA== ip: b}k~}kean~}h`, Device id: 1f2a67f3540a90953f0d00eae021c1d40dc8c27c -2023-04-06 18:17:49.125138 + : pb-IF4BU1gtAA== ip: b}k~}kean~}h`, Device id: 1f2a67f3540a90953f0d00eae021c1d40dc8c27c -2023-04-06 18:19:50.527365 + : pb-IF4eUBMTKA== ip: ak~}hhaniaag, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-06 18:23:10.173749 + : pb-IF5cUkwjDA== ip: dvvcyvb~l~~`e, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-04-06 18:26:17.076064 + : pb-IF5cU1FTBg== ip: a~o~va~}liajby, Device id: 5f55a8326f119e5754e896b10948e097ad02780e -2023-04-06 18:28:21.569787 + : pb-IF4VU3laVA== ip: ak~~neaifxvf~, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-06 18:29:05.720030 + : pb-IF4WU0wvVA== ip: dvvc}vb{k~vh, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-06 18:30:54.079284 + : pb-IF4jF1NY ip: azj~z`~|vcw, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-06 18:32:01.304607 + : pb-IF4rUnkSHQ== ip: awj~y`~~aaaify, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-06 18:32:56.512209 + : pb-IF5cU1FTBg== ip: a~o~va~}liajby, Device id: 5f55a8326f119e5754e896b10948e097ad02780e -2023-04-06 18:35:19.167390 + : pb-IF5TU04FLg== ip: dvvc|vbo~~ld, Device id: e182900e3ffb74c42a5c1d55fd43ad53961cf9bd -2023-04-06 18:35:28.196636 + : pb-IF49VFdbEQ== ip: a~o~va~}jfal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 18:38:24.887113 + : pb-IF41U0sYPA== ip: an~}ifaje|va{j, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-06 18:38:57.007102 + : pb-IF4eUBMTKA== ip: ak~}hhaniaag, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-06 18:39:34.150333 + : pb-IF41U0sYPA== ip: an~~aeaibaibz, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-06 18:39:58.249803 + : pb-IF4wV24HBw== ip: ak~~obaigvva{`, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-06 18:40:13.302894 + : pb-IF4OU00jBA== ip: azj~z`~|`~~ha, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-06 18:40:41.403833 + : pb-IF4OU00jBA== ip: azj~z`~|`~~ha, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-06 18:41:19.534888 + : pb-IF4OU00jBA== ip: azj~z`~|`~~ha, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-06 18:43:26.139929 + : pb-IF4OU00jBA== ip: azj~z`~|`~~ha, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-06 18:44:05.273621 + : pb-IF49VFdbEQ== ip: a~o~va~}jfal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 18:48:02.541126 + : pb-IF4WU0wvVA== started kick vote for pb-IF4MUBdaDw==. -2023-04-06 18:48:13.172694 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~wh, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-06 18:48:16.180498 + : pb-IF41U0sYPA== ip: an~~aeaibaibz, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-06 18:48:32.541463 + : Kick vote End -2023-04-06 18:48:55.323459 + : pb-IF4mVU0oUw== ip: ak~~lfaiezvazh, Device id: 10439a1bbc0d71386990fa3344930533a157a138 -2023-04-06 18:57:56.690226 + : pb-IF4rLkwp ip: a~j~~kdaj`vvhv, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-06 18:59:55.158577 + : pb-IF4iU2sIPw== ip: azo~{n~~lfajdx, Device id: f9f823eb080e6fb88b5eeb1f95fabb6285df426c -2023-04-06 19:02:14.645642 + : pb-IF4wV24HBw== ip: ak~~obaigvva{`, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-06 19:07:43.828592 + : pb-IF49VFQlPA== ip: azo~zh~zo~~lf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-06 19:08:03.077570 + : pb-IF4yU0hYEw== ip: awj~ya~~ofaj`|, Device id: 052bbfd43b91c5bc01d4ba79df1c076697418a48 -2023-04-06 19:09:47.465514 + : pb-IF4wV24HBw== ip: ak~~obaigvva{`, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-06 19:14:39.709504 + : pb-IF49VFdbEQ== ip: a~o~va~}jfal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 19:15:41.934919 + : pb-IF49VFdbEQ== ip: a~o~va~}jfal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 19:16:25.103076 + : pb-IF4eUBMTKA== ip: ak~}hhaniaag, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-06 19:17:16.221918 + : pb-IF4QU0YnHw== started kick vote for pb-IF4wV24HBw==. -2023-04-06 19:17:46.227122 + : Kick vote End -2023-04-06 19:19:29.783924 + : pb-IF5XUBgADQ== ip: d}va~k~~l`ai`}, Device id: 38b4d07c86f2356a07ab4e2f27930d585073c246 -2023-04-06 19:19:41.828951 + : pb-IF5VU1JZMw== ip: an~}ica`aaia|, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-06 19:20:28.973620 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-06 19:22:05.321097 + : pb-IF5QU3AaLg== ip: ak~}maamgaigv, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-06 19:25:05.972196 + : pb-IF5QV2kTAw== ip: a}j~~oba`gaii~, Device id: 0f930d330d32d6798357bc9cc2d102b30d48e95d -2023-04-06 19:25:22.616685 + : pb-IF4QU0YnHw== started kick vote for pb-IF41U0sYPA==. -2023-04-06 19:25:52.619752 + : Kick vote End -2023-04-06 19:27:07.146520 + : pb-IF5QV2kTAw== started kick vote for pb-IF4rLkwp. -2023-04-06 19:27:37.147877 + : Kick vote End -2023-04-06 19:28:10.627325 + : pb-IF4eUBMTKA== ip: ak~}hhaniaag, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-06 19:30:53.171487 + : pb-IF41U0sYPA== ip: an~~aeaibaibz, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-06 19:33:20.741746 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvdx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-06 19:34:14.950210 + : pb-IF41U0sYPA== ip: an~}ifaje|ve, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-06 19:34:24.984626 + : pb-IF5QV2kTAw== ip: a}j~~oba`gaii~, Device id: 0f930d330d32d6798357bc9cc2d102b30d48e95d -2023-04-06 19:37:16.863167 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-06 19:37:55.985652 + : pb-IF4gVUtaBA== ip: azo~{l~~kfaidx, Device id: e707f8ca2ef9b60f40277c758997e7634d8f7782 -2023-04-06 19:39:06.478824 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvb~h, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-06 19:42:13.729580 + : pb-IF4TV3RbDA== ip: azo~{m~zo~~ki, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-06 19:43:10.917675 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvdx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-06 19:47:46.966806 + : pb-IF5QV2kTAw== ip: a}j~~oba`gaii~, Device id: 0f930d330d32d6798357bc9cc2d102b30d48e95d -2023-04-06 19:48:57.920033 + : pb-IF5QV2kTAw== started kick vote for pb-IF4TV3RbDA==. -2023-04-06 19:49:27.923362 + : Kick vote End -2023-04-06 19:50:33.550167 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-06 19:51:37.006376 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 19:53:37.992103 + : pb-IF5QV2kTAw== started kick vote for pb-IF4TV3RbDA==. -2023-04-06 19:54:07.991993 + : Kick vote End -2023-04-06 19:55:26.089772 + : pb-IF4SF0Em ip: ak~xh~~agaih~, Device id: 6535cc0f0a9951d13201f371f723280a427b9aad -2023-04-06 19:55:56.198094 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvb~h, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-06 19:55:57.201051 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|m~~n`, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-04-06 19:56:46.099719 + : pb-IF4SF0Em started kick vote for pb-IF41U0sYPA==. -2023-04-06 19:57:16.102824 + : Kick vote End -2023-04-06 19:57:47.020302 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 19:57:59.076449 + : pb-IF4TV3RbDA== ip: azo~{m~zo~~ki, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-06 19:58:03.090247 + : pb-IF41U0sYPA== ip: an~}ifaje|ve, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-06 20:00:03.549981 + : pb-IF49VFQlPA== ip: azo~zh~zo~~lf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-06 20:02:13.016383 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|m~~n`, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-04-06 20:02:57.094520 + : pb-IF4TV3RbDA== started kick vote for pb-IF49VFdbEQ==. -2023-04-06 20:03:27.099090 + : Kick vote End -2023-04-06 20:06:03.032117 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG started kick vote for pb-IF4rLkwp. -2023-04-06 20:06:33.035882 + : Kick vote End -2023-04-06 20:07:50.426754 + : pb-IF49VRkvPQ== started kick vote for pb-IF4rLkwp. -2023-04-06 20:08:20.431942 + : Kick vote End -2023-04-06 20:09:04.823323 + : pb-IF4eUBMTKA== ip: ak~}hhaniaag, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-06 20:12:10.473119 + : pb-IF4IUBYIAw== ip: dvvc}vazj~xh, Device id: e1529657516c122526c890d4ade9e920a04183ad -2023-04-06 20:12:33.549119 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-06 20:13:54.898440 + : pb-IF49VRkvPQ== started kick vote for pb-IF4BK046. -2023-04-06 20:14:24.905825 + : Kick vote End -2023-04-06 20:14:57.538600 + : pb-IF4eUBMTKA== ip: ak~}hhaniaag, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-06 20:15:25.826675 + : pb-IF4BK046 started kick vote for pb-IF49VRkvPQ==. -2023-04-06 20:15:27.637188 + : pb-IF4gU0wxBw== ip: ak~}hhaniaag, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-06 20:15:40.683759 + : pb-IF4NUxFfEg== ip: an~}hgajbvva{, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-06 20:15:45.702963 + : pb-IF4pU1QfUQ== ip: ak~~ihaifxvb}i, Device id: fcee180da0fa01fb042b1ea4c79965c8b18bb6a4 -2023-04-06 20:15:55.834817 + : Kick vote End -2023-04-06 20:17:16.023343 + : pb-IF4IU28qPA== ip: azo~zi~|i~~mf, Device id: 76998b6a4509db44c269405026ea1a6a6c3a2899 -2023-04-06 20:21:48.437915 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~wh, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-06 20:22:13.736077 + : pb-IF4XVEoDXQ== ip: a~h~}jgambajcz, Device id: 3344801bf998269595cac9af7581a23cec253f18 -2023-04-06 20:25:30.433376 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 20:28:44.504218 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-06 20:34:00.841050 + : pb-IF4UVXgbCg== ip: a~m~vn~}igaja{, Device id: 99c135f63a1695d3b8cf22ac2e471b6a5a9919e8 -2023-04-06 20:35:41.147038 + : pb-IF4AV1QqEQ== ip: an~}ica`aaab, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-06 20:37:29.535245 + : pb-IF4PV24yPA== ip: an~~adaievix, Device id: 5bd1087e38783d3d08f01cfce5d36dfbf8440740 -2023-04-06 20:40:44.217922 + : pb-IF5SUkwMAg== ip: dvvcyvaa~~ji, Device id: a437c2a1793c75d0da48b9b93a0f30175d79dd89 -2023-04-06 20:45:22.701288 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~ve{, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-06 20:45:29.748423 + : pb-IF4AV1QqEQ== ip: an~}ica`aaab, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-06 20:46:05.908772 + : pb-IF49VFQlPA== ip: azo~zh~zo~~lf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-06 20:46:13.932833 + : pb-IF4-U2sdNA== ip: dxvbvvaya~~ki, Device id: d20fb7ec3bc37ffb12d7115829cfff709f60702d -2023-04-06 20:46:31.995924 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~wh, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-06 20:46:34.009286 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-06 20:46:40.035280 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~wh, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-06 20:46:44.048930 + : pb-IF4-JUgB ip: ak~~j`aje}vfv, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-04-06 20:47:01.097157 + : pb-IF4jF1NY ip: azj~z`~vb{i, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-06 20:48:16.219029 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4-JUgB. -2023-04-06 20:48:46.226940 + : Kick vote End -2023-04-06 20:49:05.552228 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-06 20:50:22.823031 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~ve{, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-06 20:53:29.467640 + : pb-IF4DV3MCHQ== ip: ak~~mdakfajdz, Device id: 0c06464047322db7f7caeaa037beae74df787275 -2023-04-06 20:57:05.249574 + : pb-IF5VU1JZMw== ip: an~}ica`aaia|, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-06 21:04:00.825509 + : pb-IF43UBhdMA== ip: a|o~vo~~hhaiez, Device id: 366272a036f1d510b58dd52acddc92b01a920ca2 -2023-04-06 21:05:50.250538 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 21:07:19.559407 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 21:10:10.176151 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 21:18:52.189638 + : pb-IF4MU0lfUg== ip: azo~{m~~iiajc, Device id: 75ff7432c56d2b0a6ebcdf61a1cdd1675410cbdb -2023-04-06 21:22:22.985661 + : pb-IF4wVVkYIg== ip: d}va`~~afaja|, Device id: 62eeec9d9ed20df10e2ef17590735f5346df08de -2023-04-06 21:24:18.424992 + : pb-IF4rLkwp ip: a~j~~kdaj`vvhv, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-06 21:25:11.596884 + : pb-IF4rLkwp ip: a~j~~kdaj`vvhv, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-06 21:26:15.823050 + : pb-IF4AV1QqEQ== ip: an~}ica`aaab, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-06 21:26:53.958912 + : pb-IF4TV3RbDA== ip: azo~{m~{o~vi, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-06 21:27:20.072086 + : pb-IF4QU1MqFQ== ip: azo~zh~{va}n, Device id: 906ed790f9a3c32842b6841cfa571c60f1bb08bb -2023-04-06 21:27:38.125123 + : pb-IF4jUhlSFw== ip: ak~~lfaigzvc{, Device id: dfa3fcaaa56e4735ac113b0cf8ea265e6682d45d -2023-04-06 21:28:26.299054 + : pb-IF5TAHQO | kicked > reason:Banned account -2023-04-06 21:28:56.595262 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4QU1MqFQ==. -2023-04-06 21:29:02.252519 + : pb-IF4QU1MqFQ== kicked by kickvotes. -2023-04-06 21:30:27.767571 + : pb-IF4eVUJdDQ== ip: ak~~n~|k~~m`, Device id: 00aea33cef73e6fdcd33dcd5bd7722328b8194f4 -2023-04-06 21:31:47.053626 + : pb-IF4eUBMTKA== ip: ak~}hhaniaag, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-06 21:32:26.180179 + : pb-IF4NUkMtMw== ip: a}h~w`~{j~}n, Device id: 2568e7ef02c0f1839b8890e8072e396f315e87ff -2023-04-06 21:32:45.222405 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-06 21:33:44.330997 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4NUkMtMw==. -2023-04-06 21:34:14.331378 + : Kick vote End -2023-04-06 21:36:45.170738 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-06 21:38:01.005662 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5SUBIGEw==. -2023-04-06 21:38:31.009797 + : Kick vote End -2023-04-06 21:41:28.220335 + : pb-IF4eUxYkNg== ip: azo~|a~}mbaii~, Device id: cf463c3e8e5177f63280992858c9206120cc78da -2023-04-06 21:41:55.740815 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4NUkMtMw==. -2023-04-06 21:42:17.403814 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: azo~|j~}jba`c, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-06 21:42:25.743153 + : Kick vote End -2023-04-06 21:43:31.303805 + : pb-IF4nUnZfJg== started kick vote for pb-IF4eUxYkNg==. -2023-04-06 21:44:01.304521 + : Kick vote End -2023-04-06 21:45:22.317655 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF4TV3RbDA==. -2023-04-06 21:45:52.320818 + : Kick vote End -2023-04-06 21:46:50.398019 + : pb-IF4IV3Q5CA== ip: ak~xi~xo~}hd, Device id: 48f217bbea2b98dd33867c510af5c93b154b1e2e -2023-04-06 21:47:35.545176 + : pb-IF4hUngAVg== ip: b}k~}jhajezvayn, Device id: 9b2ad036ad4db4a8edc2bff3b2f1f5f271d1c78c -2023-04-06 21:47:38.854399 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4eUxYkNg==. -2023-04-06 21:48:03.660276 + : pb-IF4vU0MENg== ip: azo~|k~yj~~af, Device id: 6382f3717c6ac3650740a14e9d6ab4b67728a26a -2023-04-06 21:48:06.671018 + : pb-IF42U0VSCA== ip: azo~|k~}hban`, Device id: 97f56e82ff32ac3d7b7ab1ebb9b438973ea3593c -2023-04-06 21:48:08.859994 + : Kick vote End -2023-04-06 21:48:50.818587 + : pb-IF4HUBgqAQ== ip: awi~}hiai`vvcz, Device id: dae2edba5c55b5f303bb8436e8a55a8fb0c42816 -2023-04-06 21:49:11.906566 + : pb-IF4jF1NY ip: azj~z`~vb{i, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-06 21:50:11.120687 + : pb-IF4HUBgqAQ== ip: awi~}hiai`vvcz, Device id: dae2edba5c55b5f303bb8436e8a55a8fb0c42816 -2023-04-06 21:51:03.282317 + : pb-IF4BU1gtAA== ip: d|vb{n~~naajcw, Device id: 1f2a67f3540a90953f0d00eae021c1d40dc8c27c -2023-04-06 21:51:39.380030 + : pb-IF4HUBgqAQ== ip: awi~}hiai`vvcz, Device id: dae2edba5c55b5f303bb8436e8a55a8fb0c42816 -2023-04-06 21:52:09.476905 + : pb-IF4IV3Q5CA== ip: ak~xi~xo~}hd, Device id: 48f217bbea2b98dd33867c510af5c93b154b1e2e -2023-04-06 21:52:31.548096 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 21:52:39.574108 + : pb-IF4HUBgqAQ== ip: awi~}hiai`vvcz, Device id: dae2edba5c55b5f303bb8436e8a55a8fb0c42816 -2023-04-06 21:53:34.090050 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4QUBIKBA==. -2023-04-06 21:54:04.096195 + : Kick vote End -2023-04-06 21:54:55.052327 + : pb-IF41U2scIg== ip: ak~}hhaniaag, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-06 21:55:25.377772 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF4BU1gtAA==. -2023-04-06 21:55:55.379217 + : Kick vote End -2023-04-06 21:56:26.389684 + : pb-IF4VU3laVA== ip: ak~~`ca`bai`x, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-06 21:56:58.508997 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-06 21:59:40.050905 + : pb-IF4NU3IhKg== ip: bn~wl~}jiaj`|, Device id: 447b2f34e6752d40d026da152470dcdab9192c75 -2023-04-06 22:00:40.287778 + : pb-IF4VU3EjBg== ip: azj~z`~|n~~ai, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-04-06 22:01:17.520916 + : pb-IF4jF1NY started kick vote for pb-IF4AV1QqEQ==. -2023-04-06 22:01:47.520833 + : Kick vote End -2023-04-06 22:02:51.759254 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 22:05:00.210703 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-06 22:05:05.570931 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4eUxYkNg==. -2023-04-06 22:05:15.260008 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 22:05:35.574783 + : Kick vote End -2023-04-06 22:09:43.259202 + : pb-IF4VU3EjBg== ip: azj~z`~|n~~ai, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-04-06 22:12:25.906251 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 22:14:23.459073 + : pb-IF41U2scIg== ip: ak~za~xl~~ke, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-06 22:15:48.752767 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-06 22:16:30.921977 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 22:19:24.516970 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvb~h, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-06 22:21:42.049123 + : pb-IF5QU3AaLg== ip: dvvc{vazh~ym, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-06 22:21:48.073898 + : pb-IF41U2scIg== ip: ak~za~xl~~ke, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-06 22:23:29.459793 + : pb-IF5QU3AaLg== ip: dvvc{vazh~ym, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-06 22:24:18.668991 + : pb-IF5QU3AaLg== ip: dvvc{vb}`~}hi, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-06 22:25:44.973490 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~ve{, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-06 22:28:21.494104 + : pb-IF4mVU0oUw== ip: ak~~lfaiezvazh, Device id: 10439a1bbc0d71386990fa3344930533a157a138 -2023-04-06 22:28:33.536660 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 22:28:37.547142 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: azo~|j~~afaof, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-06 22:28:40.563175 + : pb-IF4KU1Q9Pw== ip: azo~zi~xn~~lg, Device id: 217799c313cf0a8fc57851c7c11d507bce2f3696 -2023-04-06 22:28:50.270058 + : pb-IF4DU0IEJg== started kick vote for pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL. -2023-04-06 22:29:20.272757 + : Kick vote End -2023-04-06 22:29:34.786247 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 22:29:45.820512 + : pb-IF4cU1AjDw== ip: dvvbo~}jgajdy, Device id: 23d67137d6aa4be21a991ed949cf0b73dc376a7a -2023-04-06 22:30:47.019302 + : pb-IF4-U2sdNA== ip: dxvbvvay`~~hb, Device id: d20fb7ec3bc37ffb12d7115829cfff709f60702d -2023-04-06 22:32:44.481314 + : pb-IF4KU1Q9Pw== ip: a~m~vo~}k~}k`, Device id: 217799c313cf0a8fc57851c7c11d507bce2f3696 -2023-04-06 22:34:24.847814 + : pb-IF4KU1Q9Pw== ip: a~m~vo~}k~}k`, Device id: 217799c313cf0a8fc57851c7c11d507bce2f3696 -2023-04-06 22:34:45.284322 + : pb-IF4DU0IEJg== started kick vote for pb-IF4mVU0oUw==. -2023-04-06 22:35:14.022915 + : pb-IF4TV3RbDA== ip: azo~{m~|m~|n, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-06 22:35:15.285914 + : Kick vote End -2023-04-06 22:35:19.048950 + : pb-IF5QV2kTAw== ip: a}j~~oba`gaii~, Device id: 0f930d330d32d6798357bc9cc2d102b30d48e95d -2023-04-06 22:35:45.140172 + : pb-IF41U2scIg== ip: ak~za~xl~~ke, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-06 22:35:59.177001 + : pb-IF4cU1AjDw== ip: dvvbo~}jgajdy, Device id: 23d67137d6aa4be21a991ed949cf0b73dc376a7a -2023-04-06 22:36:09.224241 + : pb-IF4cU1AjDw== ip: dvvbo~}jgajdy, Device id: 23d67137d6aa4be21a991ed949cf0b73dc376a7a -2023-04-06 22:36:25.275367 + : pb-IF4KU1Q9Pw== ip: a~m~vo~}k~}k`, Device id: 217799c313cf0a8fc57851c7c11d507bce2f3696 -2023-04-06 22:38:49.826859 + : pb-IF4cU1AjDw== ip: dvvbo~}jgajdy, Device id: 23d67137d6aa4be21a991ed949cf0b73dc376a7a -2023-04-06 22:40:07.362116 + : pb-IF49VFQlPA== ip: azo~zh~zo~~lf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-06 22:40:22.053025 + : pb-IF5QV2kTAw== started kick vote for pb-IF4vUBgIFQ==. -2023-04-06 22:40:52.059918 + : Kick vote End -2023-04-06 22:41:12.579497 + : pb-IF4mVU0oUw== ip: ak~~lfaiezvazh, Device id: 10439a1bbc0d71386990fa3344930533a157a138 -2023-04-06 22:41:47.698740 + : pb-IF4mVU0oUw== ip: ak~~lfaiezvazh, Device id: 10439a1bbc0d71386990fa3344930533a157a138 -2023-04-06 22:45:22.501654 + : pb-IF5dVWEJMg== ip: azo~{n~~jaaiez, Device id: 5ab7cb7a5f685d0d0dc98dafbdb2ce8610260d79 -2023-04-06 22:47:55.075377 + : pb-IF49VFQlPA== ip: azo~zh~zo~~lf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-06 22:48:30.215169 + : pb-IF49VFQlPA== ip: azo~zh~zo~~lf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-06 22:50:39.765592 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`am`, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-06 22:50:57.841677 + : pb-IF49VFQlPA== ip: azo~zh~zo~~lf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-06 22:53:27.541872 + : pb-IF4lUBMJLg== ip: azo~{a~ya~}n, Device id: d7a207ac8da19994f166691070d57682f8791127 -2023-04-06 22:53:36.559398 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`am`, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-06 22:53:38.565934 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-06 22:57:10.374129 + : pb-IF4vUBgIFQ== ip: azj~zo~}haaja}, Device id: 4cf31e0f0c7e9e8252c9d3896a6b663e42ec410b -2023-04-06 22:59:12.821555 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vg}, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-06 22:59:49.959226 + : pb-IF4cU1AjDw== ip: dvvbo~}jgajdy, Device id: 23d67137d6aa4be21a991ed949cf0b73dc376a7a -2023-04-06 23:00:16.223192 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL started kick vote for pb-IF4iUBcaCw==. -2023-04-06 23:00:25.094220 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 23:00:46.229305 + : Kick vote End -2023-04-06 23:03:28.875637 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vg}, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-06 23:04:04.978140 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 23:05:18.251978 + : pb-IF4NUmY5Nw== ip: dvvazvbi~~md, Device id: 8e9ebff785492f6bab2575dc2009dd19acb25abf -2023-04-06 23:12:00.672226 + : pb-IF41U2scIg== ip: ak~za~xl~~ke, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-06 23:12:03.681213 + : pb-IF4jU1gKFA== ip: azj~z`~}icao`, Device id: e3e6db751d5b696c29668caa49a328969d8ba767 -2023-04-06 23:14:37.346949 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 23:14:53.397326 + : pb-IF4IV04ZKw== ip: azj~z`~x`~~ag, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-04-06 23:18:57.427384 + : pb-IF49VFQlPA== ip: azo~zh~zo~~lf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-06 23:18:58.428496 + : pb-IF4VU3laVA== ip: ak~~`ca`bai`x, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-06 23:18:58.430047 + : pb-IF4OPhMg ip: bxvf~vaxa~|a, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-04-06 23:19:08.472956 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal`, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 23:19:48.618123 + : pb-IF4OPhMg ip: bxvf~vaxa~|a, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-04-06 23:20:02.662693 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-06 23:20:13.706524 + : pb-IF4-UxklVw== ip: b}k~~ohaie}va}k, Device id: 61f3ab800610707dfedcb39cf6e4f7dd8b60ccbf -2023-04-06 23:23:57.499867 + : pb-IF4OUBY-HA== ip: a|a~~ngajavavh, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-04-06 23:24:06.532823 + : pb-IF4AUxYjBg== ip: bxvealcajd{, Device id: e207144c022dd0f7c0ffd8a54199f0537b2f4a28 -2023-04-06 23:25:16.863287 + : pb-IF4yVFgOVA== ip: ak~~naaid{vf~, Device id: d854623f8a8ec9715c4cf1e44f2a453d5344d791 -2023-04-06 23:25:53.489296 + : pb-IF4TU3EfNw== started kick vote for pb-IF4AUxYjBg==. -2023-04-06 23:26:23.495889 + : Kick vote End -2023-04-06 23:27:42.435450 + : pb-IF4TU3EfNw== ip: aaihxvhyvg~, Device id: 3d144c6888370dbc046caee8987b8202ec87f048 -2023-04-06 23:27:50.462092 + : pb-IF4OUBY-HA== ip: a|a~~ngajavavh, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-04-06 23:28:40.473737 + : pb-IF4AUxYjBg== started kick vote for pb-IF41U2scIg==. -2023-04-06 23:29:10.476808 + : Kick vote End -2023-04-06 23:29:30.802377 + : pb-IF40VXMlBA== ip: an~~acai`}vdw, Device id: 2567dc394522ed525d920d39eecafdfd32621b4d -2023-04-06 23:30:26.996159 + : pb-IF4NUxFfEg== ip: bxvf}vb{l~~mc, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-06 23:31:36.260320 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazk~wh, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-06 23:33:26.669072 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-06 23:36:36.618752 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 23:37:45.044488 + : pb-IF4HUBgqAQ== ip: awi~}hiai`vvcz, Device id: dae2edba5c55b5f303bb8436e8a55a8fb0c42816 -2023-04-06 23:38:39.237702 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-06 23:39:18.392341 + : pb-IF5TAHQO | kicked > reason:Banned account -2023-04-06 23:41:05.917671 + : pb-IF4QU1pTBA== ip: dvvd|vb~o~}i, Device id: cf26d4ca93d27886ad3c219772e1830d2416def6 -2023-04-06 23:41:16.954290 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 23:41:30.001646 + : pb-IF4jF1NY ip: azj~z`~{`~~`c, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-06 23:41:42.051330 + : pb-IF4QU1pTBA== ip: dvvd|vb~o~}i, Device id: cf26d4ca93d27886ad3c219772e1830d2416def6 -2023-04-06 23:41:57.101007 + : pb-IF4QU1pTBA== ip: dvvd|vb~o~}i, Device id: cf26d4ca93d27886ad3c219772e1830d2416def6 -2023-04-06 23:42:06.134587 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-06 23:42:56.397049 + : pb-IF4SUnMKEw== ip: dvvd|vczvb|k, Device id: 6e8257dc74a0980eaba7afb2e0a07216e88e6214 -2023-04-06 23:45:07.942079 + : pb-IF4BU1gtAA== ip: d|vb{n~~naajcw, Device id: 1f2a67f3540a90953f0d00eae021c1d40dc8c27c -2023-04-06 23:46:33.274043 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-06 23:47:56.602766 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|m~~n`, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-04-06 23:48:20.690036 + : pb-IF49VFQlPA== ip: azo~zh~zo~~lf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-06 23:49:16.886763 + : pb-IF4OUBY-HA== ip: a|a~~ngajavavh, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-04-06 23:51:31.413653 + : pb-IF49VFQlPA== ip: azo~zh~zo~~lf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-06 23:53:11.939577 + : pb-IF5QV2kTAw== ip: a}j~~oba`gaii~, Device id: 0f930d330d32d6798357bc9cc2d102b30d48e95d -2023-04-06 23:53:13.948734 + : pb-IF41U2scIg== ip: a~h~}jgaiaao, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-06 23:54:11.132297 + : pb-IF49VFQlPA== ip: azo~zh~zo~~lf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-06 23:57:45.928025 + : pb-IF5VU3lYDA== ip: azj~z`~~`baidy, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-04-06 23:57:46.828156 + : pb-IF5QV2kTAw== started kick vote for pb-IF4jF1NY. -2023-04-06 23:58:16.833512 + : Kick vote End -2023-04-06 23:58:57.211007 + : pb-IF4TV3RbDA== ip: azo~{m~{l~}ja, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-07 00:03:31.177176 + : pb-IF4wU1MPEg== ip: awj~ya~~ogaj`}, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-07 00:04:09.330910 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 00:06:45.875340 + : pb-IF4hU04aKw== ip: ak~~idaaiak`, Device id: c22913cb5223b8d21a48862b84a5937084499f5b -2023-04-07 00:08:16.987465 + : pb-IF5QV2kTAw== started kick vote for pb-IF4TV3RbDA==. -2023-04-07 00:08:46.990368 + : Kick vote End -2023-04-07 00:12:06.298606 + : pb-IF4NU3IhKg== ip: bn~wl~}jiaj`|, Device id: 447b2f34e6752d40d026da152470dcdab9192c75 -2023-04-07 00:18:45.968923 + : pb-IF5WVUJcIg== ip: an~~agaib|va|k, Device id: b3de9ee7972370f42b4cf734f3c3e140c798dcc6 -2023-04-07 00:19:11.386660 + : pb-IF4NU3IhKg== started kick vote for pb-IF4jF1NY. -2023-04-07 00:19:41.388590 + : Kick vote End -2023-04-07 00:20:48.482409 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 00:20:48.483619 + : pb-IF4LUBNTDA== ip: dvvcyvd}viw, Device id: 11e79e9150dcf2922f8ef423ced6ce0db602ccf8 -2023-04-07 00:22:23.822368 + : pb-IF4HUBgqAQ== ip: awi~}hiai`vvcz, Device id: dae2edba5c55b5f303bb8436e8a55a8fb0c42816 -2023-04-07 00:26:17.767813 + : pb-IF49VFQlPA== ip: azo~zh~zo~~lf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-07 00:27:02.053129 + : pb-IF4NUxFfEg== ip: bxvf}vb}m~}ib, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-07 00:27:56.217087 + : pb-IF5dUBclCw== ip: dvvcxvg|va{i, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-07 00:33:23.348212 + : pb-IF4jF1NY ip: azj~z`~{`~~`c, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-07 00:34:19.540188 + : pb-IF4lVBA5DA== ip: azj~z`~}jgaidw, Device id: 260a084cb3b6b338dbd1a9cfda37e650ee7960b2 -2023-04-07 00:34:49.043342 + : pb-IF5dUBclCw== started kick vote for pb-IF4jF1NY. -2023-04-07 00:35:19.046786 + : Kick vote End -2023-04-07 00:38:54.525692 + : pb-IF4HUBgqAQ== ip: awi~}hiai`vvcz, Device id: dae2edba5c55b5f303bb8436e8a55a8fb0c42816 -2023-04-07 00:53:25.668734 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 00:54:22.900103 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 00:54:25.904514 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 00:55:06.022467 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 01:04:24.545622 + : pb-IF4IU1c6Ug== ip: azj~z`~|a~zn, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-07 01:07:29.239027 + : pb-IF4KV04FIg== ip: dvvcxvg|va{i, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-07 01:09:15.591951 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 01:10:07.788003 + : pb-IF41U2scIg== ip: a~h~}jgaiaao, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 01:10:16.807119 + : pb-IF4IV04ZKw== ip: azj~z`~~heaic{, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-04-07 01:11:13.236471 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-07 01:11:38.326519 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-07 01:12:21.467818 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 01:17:09.444980 + : pb-JiNJARBeUkNAVFpCFERXVVxHGEFfQFFK ip: ak~}i`aidyvbw, Device id: 5e4d84b092d0857082ca154b0449ae0aed767125 -2023-04-07 01:18:19.665670 + : pb-IF4DU0IEJg== ip: b}k~~ohaja~ve{, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-07 01:23:20.707241 + : pb-IF4KV04FIg== ip: dvvcxvg|va{i, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-07 01:23:32.744471 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF ip: a}j~~`aaibyvb|`, Device id: 19cab23c5e27d40b623af49d1e26a3594d5358dc -2023-04-07 01:23:38.764778 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 01:25:15.171267 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 01:26:49.659324 + : pb-IF5cU2haHA== ip: dvvcxvbzh~yl, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-04-07 01:29:01.183827 + : pb-IF4KV04FIg== ip: dvvcxvg|va{i, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc -2023-04-07 01:29:36.527749 + : pb-IF5cU2haHA== ip: dvvcxvbzh~yl, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-04-07 01:30:35.731900 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 01:32:51.194765 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-07 01:36:18.004985 + : pb-IF49VFdbEQ== ip: a~o~va~}jhal, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 03:55:45.355996 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-07 04:37:09.918604 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-07 04:58:09.126328 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-07 05:19:40.868196 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-07 06:00:38.536778 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-07 06:21:16.074615 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-07 07:03:23.152071 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-07 07:23:39.535426 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-07 08:25:08.913708 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-07 08:36:01.384629 + : pb-IF4dVVUtKw== ip: an~}igam~}kd, Device id: 8b02fce1d1907e68889a17157f87c32854efbda1 -2023-04-07 08:45:34.309814 + : pb-IF4WU0wvVA== ip: dvvc}vavn~}l`, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-07 08:47:45.762943 + : pb-IF5TU04FLg== ip: dvvc}vb}j~~ie, Device id: e182900e3ffb74c42a5c1d55fd43ad53961cf9bd -2023-04-07 08:58:10.121922 + : pb-IF49U0QJDw== ip: b}k~}khaid|va|`, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-07 08:58:35.218567 + : pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB ip: azj~z`~}l~~m, Device id: 1fd3c59cf1fc968b80ce5a6a63bd3fe5d3e13fac -2023-04-07 09:00:35.630442 + : pb-IF5XUBgADQ== ip: d}va~k~~l`ai`}, Device id: 38b4d07c86f2356a07ab4e2f27930d585073c246 -2023-04-07 09:04:38.478759 + : pb-IF4dU1BeLA== ip: an~~ahajdaigy, Device id: 754697c0aa5744555b99fc048f70fa5434e0bfc1 -2023-04-07 09:05:56.731122 + : pb-IF4BU1gtAA== ip: azj~zo~yh~wn, Device id: 1f2a67f3540a90953f0d00eae021c1d40dc8c27c -2023-04-07 09:08:56.754971 + : pb-IF4QUBgCLg==|| kicked > new account -2023-04-07 09:10:53.856107 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvb~h, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-07 09:12:09.133290 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvb~h, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-07 09:13:56.457104 + : pb-IF5VUlYhJw== ip: azo~zh~~l~}`, Device id: 49aba9148ddf7a23b2257abcdb8b9b0f0e4cddc9 -2023-04-07 09:14:52.747601 + : pb-IF4NUmY5Nw== ip: ak~~maaihvvaxk, Device id: 8e9ebff785492f6bab2575dc2009dd19acb25abf -2023-04-07 09:47:34.650274 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-07 09:47:55.728080 + : pb-IF4jF1NY ip: a~j~xa~yl~}id, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-07 09:50:13.232904 + : pb-IF4cUBYfCg== ip: azo~zh~zn~~kf, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-07 09:51:04.447046 + : pb-IF49U0QJDw== ip: b}k~}khaid}vawn, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-07 09:51:35.557991 + : pb-IF4cUBYfCg== ip: azo~zh~zn~~kf, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-07 09:54:34.205570 + : pb-IF48UBUzCg== ip: azj~zo~}heaif, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-04-07 09:58:03.942558 + : pb-IF49U0QJDw== ip: b}k~}khaid}vawn, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-07 09:59:37.308722 + : pb-IF41U0sYPA== ip: an~}i`aie|vdx, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-07 10:03:15.113154 + : pb-IF49U0QJDw== ip: b}k~}khaid}vawn, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-07 10:03:15.113455 + : pb-IF41U0sYPA== ip: an~}i`aie|vdx, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-07 10:03:35.196672 + : pb-IF4QUnYCNA== ip: evviyvb{n~yo, Device id: 5ae95d0165e85d7be499968a10a49e8a5f1f6455 -2023-04-07 10:12:53.252927 + : pb-IF41U0sYPA== ip: an~}i`aie|vdx, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-07 10:20:56.948317 + : pb-IF49U0QJDw== ip: b}k~}khaid}vawn, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-07 10:22:54.367537 + : pb-IF4cU1AjDw== ip: dvvbo~}jgajdy, Device id: 23d67137d6aa4be21a991ed949cf0b73dc376a7a -2023-04-07 10:23:22.453737 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 10:23:37.521562 + : pb-IF5QV2kTAw== ip: a}j~~oba`gaii~, Device id: 0f930d330d32d6798357bc9cc2d102b30d48e95d -2023-04-07 10:29:58.936333 + : pb-IF4eUxYkNg== ip: azo~|a~y`~}hc, Device id: cf463c3e8e5177f63280992858c9206120cc78da -2023-04-07 10:30:34.056451 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvbzm, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-07 10:30:44.089336 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvbzm, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-07 10:31:49.285768 + : pb-IF4zUkwZBw== ip: a}j~~nda``aie, Device id: bc1327009f9944b141f04912712143c738d96727 -2023-04-07 10:32:37.511122 + : pb-IF4DU0IEJg== started kick vote for pb-IF4cU1AjDw==. -2023-04-07 10:32:48.484345 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF ip: an~}idajeaja|, Device id: 19cab23c5e27d40b623af49d1e26a3594d5358dc -2023-04-07 10:33:02.535201 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvb~h, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-07 10:33:07.515873 + : Kick vote End -2023-04-07 10:34:59.975034 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`akg, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-07 10:36:25.346736 + : pb-IF4eUxYkNg== ip: azo~|a~y`~}hc, Device id: cf463c3e8e5177f63280992858c9206120cc78da -2023-04-07 10:38:33.827728 + : pb-IF4VU3laVA== ip: ak~~`ca`bai`x, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-07 10:39:17.500766 + : pb-IF4zUkwZBw== started kick vote for pb-IF4DU0IEJg==. -2023-04-07 10:39:17.971085 + : pb-IF5XU0IZAA== ip: b}k~~`gaiazvawn, Device id: ddb00bd5e7cc7f8e199e075b85259ba799bfdc4e -2023-04-07 10:39:47.505758 + : Kick vote End -2023-04-07 10:41:07.413181 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvb~h, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-07 10:42:17.724262 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 10:43:09.899796 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvbzm, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-07 10:44:01.049750 + : pb-IF4rUnkSHQ== ip: an~}h`aj`zvew, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-07 10:46:02.464770 + : pb-IF4WU0wvVA== ip: d}va~i~v`~w, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-07 10:46:43.353976 + : pb-IF4DU0IEJg== started kick vote for pb-IF4WU0wvVA==. -2023-04-07 10:47:13.357049 + : Kick vote End -2023-04-07 10:48:45.033348 + : pb-IF4AUnAcDA== ip: dvvcxvayj~~`f, Device id: b8398ae521aece89065db5c2b770dcb5f37e7d40 -2023-04-07 10:50:10.336861 + : pb-IF4AV1QqEQ== ip: an~}ica`aaab, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-07 10:51:21.597048 + : pb-IF4NU3IhKg== ip: bn~wl~}jiaj`|, Device id: 447b2f34e6752d40d026da152470dcdab9192c75 -2023-04-07 10:51:34.631728 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 10:51:44.672386 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 10:55:14.431053 + : pb-IF4zUkwZBw== ip: a}j~~nda``aie, Device id: bc1327009f9944b141f04912712143c738d96727 -2023-04-07 10:56:43.733208 + : pb-IF4WUBJcVQ== ip: ak~}maaiia`g, Device id: c5359ea2230c101f3418aa0395a4ca7b53975d67 -2023-04-07 10:59:14.295597 + : pb-IF4rUnkSHQ== ip: an~}h`aj`zvew, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-07 11:00:36.699704 + : pb-IF4PUBM6LQ== started kick vote for pb-IF4WUBJcVQ==. -2023-04-07 11:01:06.701069 + : Kick vote End -2023-04-07 11:03:27.420045 + : pb-IF4wUBgZJA== ip: ak~vl~~kgaii~, Device id: 37dec3af4823bbb3f03cace921b29244d9357bd2 -2023-04-07 11:03:33.440987 + : pb-IF5cPGsk ip: dvvc}vax`~~je, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-04-07 11:03:35.449152 + : pb-IF4jF1NY ip: a~j~xa~yl~}id, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-07 11:03:48.494642 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`akg, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-07 11:05:10.728838 + : pb-IF5cPGsk ip: dvvc}vax`~~je, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-04-07 11:05:21.768863 + : pb-IF4jF1NY ip: azj~z`~zh~~ac, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-07 11:08:55.508549 + : pb-IF4jF1NY ip: a~j~xa~yl~}id, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-07 11:10:38.887531 + : pb-IF4jF1NY ip: azj~z`~{a~yj, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-07 11:12:23.261728 + : pb-IF4PU3oCNA== ip: ak~~obai`{va{k, Device id: b84f332e312f8acec72c58ee5235f56582e7cb15 -2023-04-07 11:13:58.632623 + : pb-IF4-Um4_Lw== ip: azj~zo~}iaaja}, Device id: eddff21cc05797db9f3567c7734dbec79756acdd -2023-04-07 11:14:46.833665 + : pb-IF4AV1QqEQ== ip: an~}ica`aaab, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-07 11:16:03.689674 + : pb-IF4jF1NY started kick vote for pb-IF4PU3oCNA==. -2023-04-07 11:16:33.692672 + : Kick vote End -2023-04-07 11:16:53.266230 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 11:17:46.452009 + : pb-IF4HUBgOPQ== ip: bj~{k~~j`aia, Device id: 3044379d7435313c63b2c0ce0dd3d965cf5e1a05 -2023-04-07 11:19:48.914314 + : pb-IF49U0QJDw== ip: b}k~}khaid}vawn, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-07 11:19:58.747241 + : pb-IF4HUBgOPQ== started kick vote for pb-IF4QUBEgJA==. -2023-04-07 11:20:28.752805 + : Kick vote End -2023-04-07 11:20:58.174409 + : pb-IF4jF1NY ip: a~j~xa~xj~|k, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-07 11:23:57.740456 + : pb-IF4VU3laVA== ip: ak~~`dajcwva|h, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-07 11:25:59.174103 + : pb-IF4yVFgOVA== ip: ak~~`ca`bai`, Device id: d854623f8a8ec9715c4cf1e44f2a453d5344d791 -2023-04-07 11:30:05.010733 + : pb-IF4jF1NY ip: azj~z`~{a~~i`, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-07 11:31:11.246431 + : pb-IF4HUBgOPQ== ip: bj~{k~~j`aia, Device id: 3044379d7435313c63b2c0ce0dd3d965cf5e1a05 -2023-04-07 11:31:51.407439 + : pb-IF4HUBgOPQ== ip: bj~{k~~j`aia, Device id: 3044379d7435313c63b2c0ce0dd3d965cf5e1a05 -2023-04-07 11:33:35.748612 + : pb-IF4HUBgOPQ== ip: bj~{k~~j`aia, Device id: 3044379d7435313c63b2c0ce0dd3d965cf5e1a05 -2023-04-07 11:34:17.881204 + : pb-IF4jUhlSFw== ip: ak~~lfaigzvc{, Device id: dfa3fcaaa56e4735ac113b0cf8ea265e6682d45d -2023-04-07 11:36:32.420893 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-04-07 11:40:30.262152 + : pb-IF40VRIbJg== ip: an~~afa`fajd{, Device id: 10bb61f2761dcc779f19f3263fa3407a620db0fe -2023-04-07 11:40:37.288913 + : pb-IF4qUxBfAw== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 11:41:19.414432 + : pb-IF4vUkRaEg== ip: azo~{i~~agaad, Device id: 6394b4f26b00e3f44dd52eaaa8b9d296c742e56a -2023-04-07 11:41:20.414012 + : pb-IF4yVFgOVA== ip: ak~~`ca`bai`, Device id: d854623f8a8ec9715c4cf1e44f2a453d5344d791 -2023-04-07 11:43:23.974953 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5dUnkiVA==. -2023-04-07 11:43:53.977279 + : Kick vote End -2023-04-07 11:44:30.167456 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 11:45:26.365159 + : pb-IF4cUBYfCg== ip: azo~zh~|n~vj, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-07 11:45:30.379160 + : pb-IF4WU1MvUA== ip: a~o~}idaihvvbzi, Device id: 2593a83678092e009fc64cda96ee211a67bc1261 -2023-04-07 11:47:23.204667 + : pb-IF4AV1QqEQ== started kick vote for pb-IF5dUnkiVA==. -2023-04-07 11:47:29.869269 + : Kick vote End -2023-04-07 11:48:36.990859 + : pb-IF4yVXVYIw== ip: bxvc{vevavj, Device id: 6bd8a5c411a70ba6cacedae88d706bb49c7afe85 -2023-04-07 11:50:43.417871 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvbzm, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-07 11:50:57.480558 + : pb-IF40UmUMEg== ip: axi~yi~~o~~na, Device id: 7871fcf2cb1081a5de7b5b7b3bfc84148565e630 -2023-04-07 11:55:03.368153 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 11:55:36.484875 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~vl, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-07 11:57:08.808900 + : pb-IF4jUhlSFw== ip: ak~~lfaigzvc{, Device id: dfa3fcaaa56e4735ac113b0cf8ea265e6682d45d -2023-04-07 11:58:21.676418 + : pb-IF4AV1QqEQ== started kick vote for pb-IF4vVRUFVA==. -2023-04-07 11:58:51.682021 + : Kick vote End -2023-04-07 11:59:51.422425 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-07 11:59:51.817178 + : pb-IF40UmUMEg== started kick vote for pb-IF4nUxE4Nw==. -2023-04-07 12:00:21.826861 + : Kick vote End -2023-04-07 12:00:51.733258 + : pb-IF4dU1kMIA== ip: azo~zi~}m~~of, Device id: 33be42231c879ca1c0b00801d921d1b26db6fb96 -2023-04-07 12:01:59.987687 + : pb-IF5VU1JZMw== ip: an~}ica`ealh, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-07 12:02:54.783459 + : pb-IF4DU0IEJg== started kick vote for pb-IF5VU1JZMw==. -2023-04-07 12:03:04.192336 + : pb-IF4cUBYfCg== ip: azo~zh~|`~}m`, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-07 12:03:24.784990 + : Kick vote End -2023-04-07 12:09:10.485537 + : pb-IF4eUBMTKA== ip: a~h~}jgaiaao, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-07 12:09:49.631303 + : pb-IF41U2scIg== ip: a~h~}jgaiaao, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 12:10:33.801169 + : pb-IF49U0QJDw== ip: b}k~}khaid}vawn, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-07 12:10:55.871755 + : pb-IF5RU3UzJA== ip: an~}hbaoiang, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-04-07 12:11:02.886991 + : pb-IF40UhVdVA== ip: azo~{a~}mdaifv, Device id: be0d9bda405f8ebbd3828aea1038b0dce08e65fb -2023-04-07 12:11:12.917502 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvb~h, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-07 12:11:26.959415 + : pb-IF4vVRUFVA== ip: axi~xn~~`camf, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 12:16:47.148909 + : pb-IF5RU3UzJA== ip: an~}hbaoiang, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-04-07 12:16:59.193009 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-07 12:17:18.266885 + : pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB ip: azj~z`~}l~~of, Device id: 1fd3c59cf1fc968b80ce5a6a63bd3fe5d3e13fac -2023-04-07 12:20:03.875116 + : pb-JiNJARFfV0VDXFdDF0JSU1VAFEBfTlNC ip: a}j~~ocajgaibw, Device id: e0614d12aeabe2f2d8856866f48279898708dba9 -2023-04-07 12:20:24.942816 + : pb-IF4vVRUFVA== ip: dxviakcaibz, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 12:21:10.114248 + : pb-IF4iUmsSDw== ip: a}j~~naam`aib}, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-07 12:21:36.197674 + : pb-IF49U0QJDw== ip: b}k~}khaid}vawn, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-07 12:22:35.414793 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvbzm, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-07 12:23:12.546358 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvbzm, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-07 12:25:02.935714 + : pb-IF4FD1c8 ip: azo~{n~wi~~ii, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-04-07 12:25:18.983468 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-04-07 12:25:29.026412 + : pb-IF4AV1QqEQ== ip: an~}ica`aaab, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-07 12:25:42.067810 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-07 12:27:00.353698 + : pb-IF4OUBY-HA== ip: a|a~~ngaii{vi{, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-04-07 12:27:03.364915 + : pb-IF41U2scIg== ip: ak~za~xl~~oa, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 12:27:38.483946 + : pb-IF4AV1QqEQ== ip: an~}ica`aaab, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-07 12:27:43.511554 + : pb-IF4vVRUFVA== ip: dxviakcaibz, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 12:28:04.582201 + : pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF ip: an~}idajeaja|, Device id: 19cab23c5e27d40b623af49d1e26a3594d5358dc -2023-04-07 12:30:32.060322 + : pb-IF41U2scIg== ip: ak~za~xl~~oa, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 12:30:41.082399 + : pb-IF5VU1JZMw== ip: an~}ica`ealh, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-07 12:30:49.111105 + : pb-IF5QV2kTAw== ip: a}j~~oba`gaii~, Device id: 0f930d330d32d6798357bc9cc2d102b30d48e95d -2023-04-07 12:30:50.751969 + : pb-IF4AV1QqEQ== started kick vote for pb-IF40UhVdVA==. -2023-04-07 12:31:20.753042 + : Kick vote End -2023-04-07 12:32:44.489889 + : pb-IF5cPGsk ip: dvvc}vawa~vm, Device id: ff809483fcc7e7ca5a19b18d674f26840835c81d -2023-04-07 12:32:56.530170 + : pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB ip: azj~z`~}l~~nh, Device id: 1fd3c59cf1fc968b80ce5a6a63bd3fe5d3e13fac -2023-04-07 12:33:52.719584 + : pb-IF5QV2kTAw== started kick vote for pb-JiNJARBTUUdEX15IEEFZU1FDGUNeQ1JF. -2023-04-07 12:34:22.727669 + : Kick vote End -2023-04-07 12:36:45.339573 + : pb-IF4vVRUFVA== ip: dxviakcaibz, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 12:37:34.496921 + : pb-IF4jUhlSFw== ip: ak~~lfaigzvc{, Device id: dfa3fcaaa56e4735ac113b0cf8ea265e6682d45d -2023-04-07 12:38:13.653054 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvbzm, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-07 12:40:05.008237 + : pb-IF4DU0IEJg== started kick vote for pb-IF41U2scIg==. -2023-04-07 12:40:06.029281 + : pb-IF4eVUJdDQ== ip: ak~}leai`zvayn, Device id: 00aea33cef73e6fdcd33dcd5bd7722328b8194f4 -2023-04-07 12:40:35.015712 + : Kick vote End -2023-04-07 12:41:41.366027 + : pb-IF49U0QJDw== ip: b}k~}khaid}vawn, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-07 12:41:58.800903 + : pb-IF5QV2kTAw== started kick vote for pb-IF4jUhlSFw==. -2023-04-07 12:42:28.801304 + : Kick vote End -2023-04-07 12:45:04.090735 + : pb-IF4AV1QqEQ== ip: an~}ica`aaab, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-07 12:46:20.602505 + : pb-IF5XUGI7Iw==|| kicked > new account -2023-04-07 12:46:34.385961 + : pb-JiNJARFdXUtEXF1DEUVWUVRCE0VcRFJE ip: azj~zo~}jeajd{, Device id: 46395f14c4815f4562d417739f212663e76c66ce -2023-04-07 12:47:54.719619 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`akg, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-07 12:50:43.288851 + : pb-IF49U0QJDw== ip: b}k~}khaid}vawn, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-07 12:52:06.811668 + : pb-IF4tCRgv started kick vote for pb-IF49U0QJDw==. -2023-04-07 12:52:36.818581 + : Kick vote End -2023-04-07 12:52:59.892314 + : pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB ip: azj~z`~}l~~nh, Device id: 1fd3c59cf1fc968b80ce5a6a63bd3fe5d3e13fac -2023-04-07 12:53:47.062268 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-04-07 12:55:26.392679 + : pb-IF4WU0wvVA== ip: dvvc|vb|l~~je, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-07 12:56:52.703088 + : pb-IF5TU04FLg== ip: dvvc}va|h~{k, Device id: e182900e3ffb74c42a5c1d55fd43ad53961cf9bd -2023-04-07 12:57:45.901211 + : pb-IF5TU04FLg== ip: dvvc}va|h~{k, Device id: e182900e3ffb74c42a5c1d55fd43ad53961cf9bd -2023-04-07 12:58:25.847870 + : pb-IF4WU0wvVA== started kick vote for pb-IF41U2scIg==. -2023-04-07 12:58:55.849387 + : Kick vote End -2023-04-07 13:00:34.576869 + : pb-IF5cU2haHA== ip: dvvcxvbzh~yl, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-04-07 13:00:53.633476 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-07 13:02:04.966976 + : pb-IF4WU0wvVA== started kick vote for pb-IF41U2scIg==. -2023-04-07 13:02:34.967273 + : Kick vote End -2023-04-07 13:02:57.052979 + : pb-IF4vVRUFVA== ip: dxviakcaie{, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 13:04:59.516386 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvdx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-07 13:05:45.689576 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 13:06:06.869118 + : pb-IF4cVEQgDw== ip: an~~aeai`xvazi, Device id: 7c428e55ffa8c21082c93a1e079304858f35cb3c -2023-04-07 13:07:16.554107 + : pb-IF4WU0wvVA== started kick vote for pb-IF41U2scIg==. -2023-04-07 13:07:46.558233 + : Kick vote End -2023-04-07 13:08:38.612712 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-07 13:10:53.088912 + : pb-IF5WU0cRAg== ip: d}va`~~agaii, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-07 13:13:20.602763 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-07 13:14:20.804700 + : pb-IF49U0QJDw== ip: b}k~}khaid}vawn, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-07 13:16:11.183554 + : pb-IF49VFdbEQ== ip: a~o~va~}kdajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 13:16:37.292499 + : pb-IF4gUloxKA== ip: azo~{l~~ldaj`y, Device id: c07ed77b24acb9388a1c0e09f55c4e33cdf9ae75 -2023-04-07 13:18:55.869587 + : pb-IF4QVUUeLg== ip: a}j~~oaakgajd{, Device id: e69b35a7de5aee49634903f5cef1401432616d4d -2023-04-07 13:19:34.003363 + : pb-IF5WU0cRAg== ip: d}va`~~agaii, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-07 13:21:09.348043 + : pb-IF5WU0cRAg== ip: d}va`~~agaii, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-07 13:21:22.376480 + : pb-JiNJVxFfVEJIWVxFEUBXXFNLE0hXRFVD ip: dvvbn~wvax`, Device id: 569c6d5812b35ce92b109072e7b34df952bf7382 -2023-04-07 13:21:40.966407 + : pb-IF4QVUUeLg== started kick vote for pb-IF41U2scIg==. -2023-04-07 13:22:10.968059 + : Kick vote End -2023-04-07 13:22:32.629487 + : pb-IF5SUno-Ug== ip: dxvbvvayl~~lf, Device id: d378ae62efd6cfd9778d6741f90dc0fef57726bb -2023-04-07 13:25:00.142318 + : pb-IF4pU1QfUQ== ip: a~h~}jda`baih|, Device id: fcee180da0fa01fb042b1ea4c79965c8b18bb6a4 -2023-04-07 13:27:14.761691 + : pb-IF4pU1QfUQ== ip: a~h~}jda`baih|, Device id: fcee180da0fa01fb042b1ea4c79965c8b18bb6a4 -2023-04-07 13:28:32.053122 + : pb-IF4LUBNTDA== ip: dvvcyvd}viw, Device id: 11e79e9150dcf2922f8ef423ced6ce0db602ccf8 -2023-04-07 13:30:52.554816 + : pb-IF4hU3EgJA== ip: azo~{l~~acaj`y, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-07 13:34:03.300984 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vg}, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-07 13:34:52.778296 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vg}, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-07 13:38:52.723412 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vg}, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-07 13:41:19.268501 + : pb-IF4jF1NY ip: azj~z`~{n~}kg, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-07 13:41:58.414293 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-07 13:42:12.471435 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vg}, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-07 13:42:29.535082 + : pb-IF49U0QJDw== ip: b}k~}khaid|vb~h, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-07 13:42:38.574288 + : pb-IF4RU0snIg== ip: dvvczvazm~~`h, Device id: 2f490d0b35b715f283774d93668b8d6b4ccee40f -2023-04-07 13:44:12.905647 + : pb-JiNJARFdXUdGW1pEE0JZV1JCEUVdQVdA ip: ak~~o~~i`ake, Device id: d3c1b69f4abe0a30b187a9f76dd0bf2ec4316172 -2023-04-07 13:52:42.755502 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvbzm, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-07 13:53:24.908837 + : pb-IF4eUBMTKA== ip: a~h~}jgaiaao, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-07 13:57:22.714606 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vg}, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-07 13:57:39.779783 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vg}, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-07 14:00:31.393031 + : pb-IF5QU3AaLg== ip: dvvc{vaxo~}je, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-07 14:01:06.490215 + : pb-IF5QU3AaLg== ip: dvvc{vaxo~}je, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-07 14:03:14.420906 + : pb-IF4cU1MbMw== | kicked for chat spam -2023-04-07 14:03:58.090449 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvbzm, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-07 14:04:19.167935 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvdx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-07 14:05:40.490271 + : pb-IF4OPhMg ip: bxvf~vaxa~|a, Device id: 1f959b8fe7791a2bac9762db2666f280a19946b6 -2023-04-07 14:08:57.273680 + : pb-IF42V1EBUA== ip: dvvcxvazm~~nf, Device id: 61d7f404b9d94f3ab22f5c38bc15b494be69800b -2023-04-07 14:11:19.049301 + : pb-IF5cV044Jw== ip: a~o~v`~}j~y, Device id: fb65d1f832746ab37df281e565ac4bfba2a77a95 -2023-04-07 14:11:42.141168 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvdx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-07 14:13:42.562616 + : pb-IF43UlIjPQ== ip: dvvc{va}m~~j`, Device id: 280b09494753fa60a300775b03970962a67fc325 -2023-04-07 14:15:32.998771 + : pb-IF4PV24yPA== ip: an~~adaieviv, Device id: 5bd1087e38783d3d08f01cfce5d36dfbf8440740 -2023-04-07 14:19:59.099460 + : pb-IF4vV0g8Mw== ip: dvvc{vbk~zo, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-07 14:22:08.659431 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`akg, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-07 14:23:21.937511 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~vg}, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-07 14:23:59.580886 + : pb-IF4PV24yPA== started kick vote for pb-IF4DU2FTPw==. -2023-04-07 14:24:29.580450 + : Kick vote End -2023-04-07 14:25:01.427908 + : pb-IF4hU3EgJA== ip: azo~{l~}ieaaa, Device id: 3e8a645e7ae0b14129741795bc38e6e684315d49 -2023-04-07 14:26:36.295748 + : pb-IF4OU2QjMQ== started kick vote for pb-IF4DU2FTPw==. -2023-04-07 14:26:53.679772 + : Kick vote End -2023-04-07 14:27:10.933179 + : pb-IF4DU2FTPw== ip: a~l~|i~~nhaia~, Device id: f7200e0bac8f6dd30c93f7a1f4bbd628660c8ee6 -2023-04-07 14:28:23.813567 + : pb-IF4DU2FTPw== started kick vote for pb-IF4PV24yPA==. -2023-04-07 14:28:36.229992 + : pb-IF4TUxEoKg== ip: a~h~}jgaj`akg, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-07 14:28:40.245864 + : pb-IF4cVVgpIQ== ip: azo~{o~{j~}hi, Device id: e06c0eab948895c05a70a3f917d243471f4c6318 -2023-04-07 14:28:53.821446 + : Kick vote End -2023-04-07 14:30:33.678425 + : pb-IF5WU0cRAg== ip: d}va`~~agaii, Device id: ccc1765b7e4ea22640ed187845ed589ab6fb4303 -2023-04-07 14:30:41.857948 + : pb-IF4NUxFfEg== ip: an~}hgaja}vb|h, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-07 14:31:33.155893 + : pb-IF4OU2QjMQ== started kick vote for pb-IF4DU2FTPw==. -2023-04-07 14:31:43.152470 + : Kick vote End -2023-04-07 14:32:09.383179 + : pb-IF41U2scIg== ip: ak~za~xl~~oa, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 14:34:48.135908 + : pb-IF4-U1kpEQ== ip: an~~ahaiavb~i, Device id: 928fbe92e5d31e258136337f212187c5f24471f1 -2023-04-07 14:36:38.449838 + : pb-IF4vV0g8Mw== started kick vote for pb-IF41U2scIg==. -2023-04-07 14:36:46.766871 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvb~h, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-07 14:37:08.451387 + : Kick vote End -2023-04-07 14:37:58.044927 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvbzm, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-07 14:43:08.236296 + : pb-IF4OU2QjMQ== started kick vote for pb-IF4WUmIBBA==. -2023-04-07 14:43:38.236887 + : Kick vote End -2023-04-07 14:45:37.202105 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvbzm, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-07 14:49:08.011218 + : pb-IF4OU2QjMQ== ip: an~}iaaibyvdx, Device id: 677677fac4cdd18de9b2f61d36d5dd3491dbca39 -2023-04-07 14:50:29.622546 + : pb-IF4jUBMiCg== ip: azh~~jiai`}vi|, Device id: 110d204538538c5e9a37a58eb6c53fa6e365be08 -2023-04-07 14:50:54.707461 + : pb-IF4WU0wvVA== ip: dvvc|vb|l~~je, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-07 14:50:55.708369 + : pb-IF4TV3RbDA== ip: azo~{m~{h~}i, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-07 14:52:03.870297 + : pb-IF41U2scIg== started kick vote for pb-IF4WU0wvVA==. -2023-04-07 14:52:13.973968 + : pb-IF48UBUzCg== ip: azj~zo~}hgaif}, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-04-07 14:52:33.877152 + : Kick vote End -2023-04-07 14:52:42.070908 + : pb-IF4XU0MJMg== ip: ak~~j`aabaj`x, Device id: e7a8c86732b6c3a5e2de6c1af9e283f1af9ccedb -2023-04-07 14:53:01.144770 + : pb-IF4WU0wvVA== ip: dvvc|vb|l~~je, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-07 14:53:08.169278 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvbzm, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-07 14:53:15.188465 + : pb-IF48UBUzCg== ip: azj~zo~}hgaif}, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-04-07 14:53:36.263660 + : pb-IF4NUxFfEg== ip: an~}hgaja}vb|h, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-07 14:57:46.473422 + : pb-IF4DU0IEJg== started kick vote for pb-IF4WU0wvVA==. -2023-04-07 14:58:16.479705 + : Kick vote End -2023-04-07 14:58:40.370992 + : pb-IF4dUmobVQ== ip: azo~|k~}mbaig, Device id: 943b48b99d4fdab754498bd1d9e3df7b5b151a31 -2023-04-07 14:59:04.470211 + : pb-IF4MU1IBMA== ip: dzva~j~z`~yi, Device id: 159d25663333d37ecc57a8549e1291a9f99ceb10 -2023-04-07 15:00:00.664405 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-07 15:00:09.714980 + : pb-IF5VU1JZMw== ip: an~}ica`ealh, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-07 15:03:06.428933 + : pb-IF48UBUzCg== started kick vote for pb-IF4WU0wvVA==. -2023-04-07 15:03:36.428867 + : Kick vote End -2023-04-07 15:04:27.891480 + : pb-IF40U3MyVQ== ip: b}k~}kcaogaoc, Device id: b6e7c18ccc4b78610481bceac92991147911f8d2 -2023-04-07 15:06:12.372369 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-07 15:06:52.564206 + : pb-IF48UBUzCg== ip: azj~zo~}hgaif}, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-04-07 15:07:40.759745 + : pb-IF5VU1JZMw== ip: an~}ica`ealh, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-07 15:09:10.339277 + : pb-IF5VU1JZMw== ip: an~}ica`ealh, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-07 15:17:09.121057 + : pb-IF4LUBEnBA== | kicked > reason:Banned account -2023-04-07 15:18:25.378229 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-07 15:19:01.518830 + : pb-IF4IU1c6Ug== ip: azj~z`~|a~~aa, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-07 15:19:04.530780 + : pb-IF4NUxFfEg== ip: an~}hgajb{ve, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-07 15:21:19.998741 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|m~~n`, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-04-07 15:23:53.527352 + : pb-IF4wV24HBw== ip: a~o~va~~acajb, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-07 15:27:17.558460 + : pb-IF5SU08MXA== started kick vote for pb-IF5VU1JZMw==. -2023-04-07 15:27:47.565593 + : Kick vote End -2023-04-07 15:28:35.481305 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 15:29:44.982046 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 15:30:38.173973 + : pb-IF4wU1MPEg== ip: awj~ya~~oiali, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-07 15:31:12.280771 + : pb-JiNJVxBYUEJBXFlHFkBWU1ZFEkhbQFdB ip: azj~z`~}o~}jh, Device id: 1fd3c59cf1fc968b80ce5a6a63bd3fe5d3e13fac -2023-04-07 15:38:42.383378 + : pb-JiNJARBbXUVGX1pJEENTXFZEFEBeQlNE ip: dvvd|vc|vc{, Device id: 8f1dbe53b88f4ba25d71ae6bc08117056a5a77a6 -2023-04-07 15:39:07.481153 + : pb-IF4wU1MPEg== ip: awj~ya~~oiali, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-07 15:39:53.991466 + : pb-JiNJARBbXUVGX1pJEENTXFZEFEBeQlNE started kick vote for pb-IF4gU2wbCQ==. -2023-04-07 15:40:23.995100 + : Kick vote End -2023-04-07 15:40:33.904118 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 15:40:59.318395 + : pb-IF4gU2wbCQ== ip: an~}ifajb{va}h, Device id: 1fb2f3ed01181f21a5041c2631163327900bd706 -2023-04-07 15:42:42.703351 + : pb-IF4wV24HBw== ip: a~o~va~}hcajb, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-07 15:44:44.122054 + : pb-IF4wV24HBw== ip: ak~~obaigvva{`, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-07 15:45:00.183574 + : pb-IF49VFdbEQ== ip: a~o~va~}kaajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 15:45:22.261841 + : pb-IF5UVBMZEw== ip: bxvc{vc{ve~, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-04-07 15:47:56.816002 + : pb-IF5WUBkSMw== ip: ak~wh~zl~~l, Device id: 4d899f05393ac7ee78e9ae3bc2ac2a5e6da8a357 -2023-04-07 15:53:53.428173 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 15:54:06.943380 + : pb-IF5VU1JZMw== started kick vote for pb-IF4wV24HBw==. -2023-04-07 15:54:30.787726 + : pb-IF4qUxBfAw== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 15:54:36.943625 + : Kick vote End -2023-04-07 15:54:46.853019 + : pb-IF4uU3ZbJw== ip: azo~|k~yl~{o, Device id: 31aee3747cf92120716b91142eaf85fd1c2ba728 -2023-04-07 15:54:52.874491 + : pb-IF5UVBMZEw== ip: bxvc{vc{vay`, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-04-07 15:55:09.925447 + : pb-IF4qUxBfAw== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 15:55:34.022645 + : pb-IF5UVBMZEw== ip: bxvc{vc{vaxo, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-04-07 15:57:04.358152 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-07 15:58:13.627330 + : pb-IF41U0sYPA== ip: an~}iaaibxvc, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-07 15:59:11.992860 + : pb-IF5UVBMZEw== ip: bxvc{vc{vaxo, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-04-07 16:00:05.183206 + : pb-IF5UVBMZEw== ip: bxvc{vc{vaxo, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-04-07 16:01:42.581594 + : pb-IF5UVBMZEw== ip: bxvc{vc{vaxo, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-04-07 16:04:00.031583 + : pb-IF41U0sYPA== ip: an~}iaaibxvc, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-07 16:04:08.053244 + : pb-IF4uU3ZbJw== ip: azo~|k~yl~{o, Device id: 31aee3747cf92120716b91142eaf85fd1c2ba728 -2023-04-07 16:04:19.088189 + : pb-IF5UVBMZEw== ip: bxvc{vc{vay`, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-04-07 16:04:42.195172 + : pb-IF5WUBkSMw== ip: ak~wh~zl~~l, Device id: 4d899f05393ac7ee78e9ae3bc2ac2a5e6da8a357 -2023-04-07 16:04:51.217907 + : pb-IF49VFdbEQ== ip: a~o~va~}kaajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 16:04:57.242059 + : pb-IF5VU1JZMw== ip: an~}ica`ealh, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-07 16:05:00.252856 + : pb-IF49VFdbEQ== ip: a~o~va~}kaajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 16:05:02.263532 + : pb-IF49VFdbEQ== ip: a~o~va~}kaajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 16:05:48.452590 + : pb-IF4qUxBfAw== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 16:06:22.591844 + : pb-IF4eVUJdDQ== ip: ak~}leai`zvayn, Device id: 00aea33cef73e6fdcd33dcd5bd7722328b8194f4 -2023-04-07 16:06:50.702342 + : pb-IF5UVBMZEw== ip: bxvc{vc{vaxo, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-04-07 16:07:08.755108 + : pb-IF4TV3RbDA== ip: azo~{m~|o~x, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-07 16:07:15.779869 + : pb-IF4uU3ZbJw== ip: azo~|k~yl~{o, Device id: 31aee3747cf92120716b91142eaf85fd1c2ba728 -2023-04-07 16:12:20.917641 + : pb-IF49UBEhJA== ip: azo~|j~|k~zl, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-04-07 16:12:33.982127 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 16:15:39.677556 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-07 16:17:36.102208 + : pb-IF4OU00jBA== ip: azj~z`~|a~|o, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-07 16:18:11.208298 + : pb-IF4OU00jBA== ip: azj~z`~|a~|o, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-07 16:19:06.394430 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-04-07 16:20:29.703199 + : pb-IF4OU00jBA== started kick vote for pb-IF4NU0wvUQ==. -2023-04-07 16:20:59.706072 + : Kick vote End -2023-04-07 16:26:40.109601 + : pb-IF4wV24HBw== ip: ak~~obaigvva{`, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-07 16:26:58.195676 + : pb-IF49UBEhJA== ip: azo~|j~|k~zl, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-04-07 16:30:15.941372 + : pb-IF49VFdbEQ== ip: a~o~va~}kaajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 16:30:38.018865 + : pb-LV4FVxEOBxcUVQxERkNWUFFA ip: an~}ifai`|vaxj, Device id: 23659f4a5185534e57d840c5df89bcb084fac66a -2023-04-07 16:30:57.081226 + : pb-IF5QU3AaLg== ip: ak~}m`aidzva|`, Device id: 67ca1700097a31623ecb8521a8c88e199829bedc -2023-04-07 16:31:23.171371 + : pb-IF49VFdbEQ== ip: a~o~va~}kaajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 16:31:44.251676 + : pb-IF4yU1oxUg== ip: azo~|j~|k~wi, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-07 16:33:01.530021 + : pb-IF4QUBQoBw== ip: azo~|j~|k~zl, Device id: ac9f78d44c3176fb8abcf40377c659b6b26db25e -2023-04-07 16:38:43.738896 + : pb-IF4KUxkEMA== ip: dvvcyvivv`, Device id: f652ed811bb166784ba4ab17373b7f94de258ac2 -2023-04-07 16:39:07.844564 + : pb-IF5UVBMZEw== ip: bxvc{vc{vaxo, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-04-07 16:40:45.211640 + : pb-IF5UVBMZEw== ip: bxvc{vc{vaxo, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-04-07 16:41:00.292673 + : pb-IF4wV24HBw== ip: ak~~obaigvva{`, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-07 16:42:49.721092 + : pb-IF4yU1oxUg== ip: azo~|j~|k~wi, Device id: 71b789d4076f7a34de5eef4d47b35864a345f0f4 -2023-04-07 16:43:17.808531 + : pb-IF41U2scIg== ip: ak~za~xl~~oa, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 16:43:22.831726 + : pb-IF4WU0wvVA== ip: dvvc}vbn~~jg, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-07 16:43:26.847348 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-07 16:43:47.935174 + : pb-IF41U2scIg== ip: ak~za~xl~~oa, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 16:44:03.992840 + : pb-IF4vV0g8Mw== ip: dvvc{vbk~zo, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-07 16:44:42.103943 + : pb-IF41U2scIg== ip: ak~za~xl~~oa, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 16:45:33.313228 + : pb-IF4WU0wvVA== ip: dvvc}vbn~~jg, Device id: b0e4a6cd20fc2a99cbda890ce6722c380bf4910e -2023-04-07 16:45:44.350406 + : pb-IF4vV0g8Mw== ip: dvvc{vbk~zo, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-07 16:48:04.818106 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-07 16:50:16.278230 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 16:51:30.537707 + : pb-IF5UVBMZEw== ip: bxvc{vc{vaxo, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-04-07 16:53:00.895727 + : pb-IF5UVBMZEw== ip: bxvc{vc{vaxo, Device id: 304a8c8d03d7d688008924cb324e1f5316babefb -2023-04-07 16:53:38.037954 + : pb-IF4sAGcj ip: an~}h`aj`zvew, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-07 16:53:38.951260 + : pb-IF4WU0wvVA== started kick vote for pb-IF41U2scIg==. -2023-04-07 16:54:08.955822 + : Kick vote End -2023-04-07 16:54:11.151744 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 16:55:24.400840 + : pb-IF4eVUJdDQ== ip: ak~}leai`zvayn, Device id: 00aea33cef73e6fdcd33dcd5bd7722328b8194f4 -2023-04-07 16:55:57.513875 + : pb-IF4yU0hYEw== ip: awj~ya~~ofaj`|, Device id: 052bbfd43b91c5bc01d4ba79df1c076697418a48 -2023-04-07 16:57:41.864927 + : pb-IF4wV24HBw== ip: ak~~obaigvva{`, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-07 16:59:36.332190 + : pb-IF4vVUkeXA== started kick vote for pb-IF4nUxE4Nw==. -2023-04-07 16:59:52.307773 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 17:00:06.339296 + : Kick vote End -2023-04-07 17:00:23.422000 + : pb-IF4wV24HBw== ip: ak~~obaigvva{`, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-07 17:01:13.625810 + : pb-IF5dU3UiAw== ip: azo~{n~~ifaig{, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-07 17:01:40.296903 + : pb-IF4yU0hYEw== started kick vote for pb-IF41U2scIg==. -2023-04-07 17:01:54.761194 + : pb-IF4-U2sdNA== ip: dxvbvvaya~~ld, Device id: d20fb7ec3bc37ffb12d7115829cfff709f60702d -2023-04-07 17:02:10.305825 + : Kick vote End -2023-04-07 17:02:44.932670 + : pb-IF41U2scIg== ip: ak~za~xl~~oa, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 17:03:58.070413 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4-U2sdNA==. -2023-04-07 17:03:59.643172 + : Kick vote End -2023-04-07 17:04:50.390447 + : pb-IF4vV0g8Mw== started kick vote for pb-IF5dU3UiAw==. -2023-04-07 17:05:20.390904 + : Kick vote End -2023-04-07 17:06:29.763781 + : pb-IF4yU0hYEw== started kick vote for pb-IF4CN20m. -2023-04-07 17:06:59.770073 + : Kick vote End -2023-04-07 17:08:01.251660 + : pb-IF4CN20m started kick vote for pb-IF4yU0hYEw==. -2023-04-07 17:08:06.542489 + : Kick vote End -2023-04-07 17:10:00.994115 + : pb-IF5dU3UiAw== started kick vote for pb-IF4nUBlcKw==. -2023-04-07 17:10:30.999216 + : Kick vote End -2023-04-07 17:10:32.051455 + : pb-IF4mUBg8Nw==|| kicked > new account -2023-04-07 17:12:01.042945 + : pb-IF5VU1JZMw== ip: an~}ica`ealh, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-07 17:12:17.113659 + : pb-IF49VFQlPA== ip: azo~zh~zo~~lf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-07 17:12:30.168326 + : pb-IF41UBIgUg== ip: a~j~}h`aig{va~`, Device id: 13e9c32088d6d7508a973b70d9a880575bb7a1e8 -2023-04-07 17:12:59.271775 + : pb-IF49VFQlPA== ip: azo~zh~zo~~lf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-07 17:13:06.294548 + : pb-IF4-JUgB ip: ak~~j`aje}vfv, Device id: 297ec86beb9d89b34c275f6de2aa72d320b20c50 -2023-04-07 17:13:17.330547 + : pb-IF49VFQlPA== ip: azo~zh~zo~~lf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-07 17:18:10.415537 + : pb-IF5TUm4DNg== ip: azo~{m~~aaaib{, Device id: c9806c8ee7f04e5bf4128be81c5cd841d01101c7 -2023-04-07 17:18:46.561830 + : pb-IF5TUm4DNg== ip: azo~{m~~aaaib{, Device id: c9806c8ee7f04e5bf4128be81c5cd841d01101c7 -2023-04-07 17:20:00.873428 + : pb-IF49UBEhJA== ip: azo~|j~|k~zl, Device id: a73760d72bdae57a9fa3725e8a485af6f4e5b7a4 -2023-04-07 17:21:45.251721 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 17:23:01.517547 + : pb-IF5TUm4DNg== ip: azo~{m~~`dajb|, Device id: c9806c8ee7f04e5bf4128be81c5cd841d01101c7 -2023-04-07 17:24:25.829506 + : pb-IF5TUm4DNg== ip: azo~{m~~`dajb|, Device id: c9806c8ee7f04e5bf4128be81c5cd841d01101c7 -2023-04-07 17:24:54.934556 + : pb-IF4cUBYfCg== ip: azo~zh~{j~~mg, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-07 17:27:35.643360 + : pb-IF5dU3UiAw== ip: azo~{n~~ifaig{, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-07 17:29:02.107326 + : pb-IF4tUBESDg== ip: an~}ifajbwvcx, Device id: 0c0301fa271044bcf8c150762b96200c6410bbad -2023-04-07 17:29:28.203358 + : pb-IF41U2scIg== ip: a~h~}jgaiaao, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 17:29:52.316981 + : pb-IF4cVEQgDw== ip: an~~aeai`xvazi, Device id: 7c428e55ffa8c21082c93a1e079304858f35cb3c -2023-04-07 17:32:47.917995 + : pb-IF4NUxFfEg== ip: an~}hgajbyva{, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-07 17:34:13.224414 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~{k, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-04-07 17:35:42.526333 + : pb-IF49VFdbEQ== ip: a~o~va~}kaajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 17:38:08.078449 + : pb-IF5dU3UiAw== ip: azo~{n~~ifaig{, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-07 17:41:11.765892 + : pb-IF48VxksEA== ip: dvvd|vazk~~kd, Device id: eeb1edc4d8f1b9fee634397da47ebb0f9f18c54e -2023-04-07 17:42:02.928450 + : pb-IF5dU3UiAw== ip: azo~{n~~ifaig{, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-07 17:43:52.645100 + : pb-IF5WUGECJg==|| kicked > new account -2023-04-07 17:45:53.762356 + : pb-IF41U2scIg== ip: ak~za~xl~~oa, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 17:45:56.777898 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~vl, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-07 17:46:43.952051 + : pb-IF5WVUJcIg== ip: an~~aeal`ajc, Device id: b3de9ee7972370f42b4cf734f3c3e140c798dcc6 -2023-04-07 17:46:50.975985 + : pb-IF4cVEQgDw== ip: an~~aeai`xvazi, Device id: 7c428e55ffa8c21082c93a1e079304858f35cb3c -2023-04-07 17:46:54.997872 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~vl, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-07 17:47:09.051266 + : pb-IF41U2scIg== ip: ak~za~xl~~oa, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 17:47:11.061516 + : pb-IF4cVEQgDw== ip: an~~aeai`xvazi, Device id: 7c428e55ffa8c21082c93a1e079304858f35cb3c -2023-04-07 17:47:14.934190 + : pb-IF5dU3UiAw== started kick vote for pb-IF4OU1oBDA==. -2023-04-07 17:47:44.935253 + : Kick vote End -2023-04-07 17:48:21.324250 + : pb-IF49VFdbEQ== ip: a~o~va~}kaajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 17:49:36.592479 + : pb-IF41U2scIg== ip: ak~za~xl~~oa, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 17:49:42.621733 + : pb-IF4NUxFfEg== ip: an~}hgajbyva{, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-07 17:51:36.998650 + : pb-IF4qVRY4Vg== ip: b}k~}kfan`aib, Device id: d041ba866757f85834a62ef606c034afb41fd757 -2023-04-07 17:52:25.154058 + : pb-IF4cVEQgDw== ip: an~~aeai`xvazi, Device id: 7c428e55ffa8c21082c93a1e079304858f35cb3c -2023-04-07 17:53:38.399392 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~vl, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-07 17:55:57.924349 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 17:56:45.098604 + : pb-IF4yVUkSHw== ip: an~}ifaibzvaya, Device id: 6e08787b7ab8621940e8fd9665b2dba75d6806e6 -2023-04-07 17:57:41.294438 + : pb-IF4QU1pTBA== ip: azo~{o~}n~~lb, Device id: cf26d4ca93d27886ad3c219772e1830d2416def6 -2023-04-07 17:59:07.599638 + : pb-IF4wV24HBw== ip: ak~~obaigvva{`, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-07 17:59:49.743652 + : pb-IF4vUkRaEg== ip: azo~{i~~ahaig|, Device id: 6394b4f26b00e3f44dd52eaaa8b9d296c742e56a -2023-04-07 18:00:23.853378 + : pb-IF49U0QJDw== ip: b}k~}khaid|va|`, Device id: 24495fd5ec013cdb163a3a3931b477b63894ef12 -2023-04-07 18:01:49.185966 + : pb-IF49VFdbEQ== ip: a~o~va~}kaajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 18:02:50.382177 + : pb-IF49U0QJDw== ip: b}k~}khaid|va|`, Device id: 24495fd5ec013cdb163a3a3931b477b63894ef12 -2023-04-07 18:03:32.553097 + : pb-IF4eUxYkNg== ip: azo~|a~y`~}me, Device id: cf463c3e8e5177f63280992858c9206120cc78da -2023-04-07 18:05:51.019161 + : pb-IF4UU2k7FQ== ip: avo~}iaamhajf, Device id: fe5e73d8f02a525b055ec44991b6ac012ad8b12a -2023-04-07 18:06:08.066569 + : pb-IF4cUktZNg== ip: a~h~}keajcwvc, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-04-07 18:07:02.274696 + : pb-IF4sAGcj ip: an~}h`aj`zvew, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-07 18:07:46.424795 + : pb-IF49VFdbEQ== ip: a~o~va~}kaajaz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 18:08:18.857790 + : pb-IF4cUktZNg== started kick vote for pb-IF4QU1pTBA==. -2023-04-07 18:08:48.862972 + : Kick vote End -2023-04-07 18:10:35.040629 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~vl, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-07 18:10:51.099950 + : pb-IF4cUktZNg== ip: a~h~}keajcwvc, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-04-07 18:11:06.155025 + : pb-IF4cUktZNg== ip: a~h~}keajcwvc, Device id: 9b723cfe17a46c050affce23d9fadbc9106309da -2023-04-07 18:12:02.372628 + : pb-IF4dU3FeVg== ip: azo~|o~~ncaig{, Device id: 2c586973d69fd30259230dc8e6f35d62778c67ed -2023-04-07 18:12:18.430753 + : pb-IF4wV24HBw== ip: ak~~obaigvva{`, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-07 18:25:37.263190 + : pb-IF5QM1Zb ip: a|o~vo~wo~}jd, Device id: 9387483cf5f8ac6f91ead0605dd6e2f99d4a07b5 -2023-04-07 18:26:40.448602 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 18:26:56.509014 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 18:32:31.713456 + : pb-IF4wV24HBw== ip: ak~~obaigvva{`, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-07 18:37:22.676630 + : pb-IF4dU3FeVg== ip: azo~|o~~ncaig{, Device id: 2c586973d69fd30259230dc8e6f35d62778c67ed -2023-04-07 18:37:24.681826 + : pb-IF4eUBMTKA== ip: ak~}hhania`b, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-07 18:37:34.717973 + : pb-IF5RU3UzJA== ip: aajcai`vvb{n, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-04-07 18:39:01.010145 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-07 18:39:35.124641 + : pb-IF5RU3UzJA== ip: aajcai`vvb{n, Device id: 952003926226a9c0a1a22df16dd40b3bbe1d1840 -2023-04-07 18:40:48.331540 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 18:43:59.016738 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvb~h, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-07 18:45:56.629491 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 18:46:31.753255 + : pb-IF4mUlYRJA== ip: an~}h`a`daja}, Device id: 481b4a3c9b826427dd3cf6cc9865e989c4ce4f2e -2023-04-07 18:51:08.846783 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-04-07 18:52:48.174183 + : pb-IF49U0QJDw== ip: b}k~}khaid|va|`, Device id: 859289bf71856de4196a0bbb1beaca24e35cfcb5 -2023-04-07 18:56:23.058936 + : pb-IF4wV24HBw== ip: ak~~obaigvva{`, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-07 18:57:32.431824 + : pb-IF4PIFQ9 ip: a}m~va~}iian`, Device id: 593a69858f539a0b1f234b1980113bb4060a87b5 -2023-04-07 19:00:35.238505 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-07 19:00:47.291328 + : pb-IF4zU20BBA== ip: d|vbzh~}lbam`, Device id: c18eafa08f3d23fc9533f8c23fa8146fcf9a02cc -2023-04-07 19:00:54.301816 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 19:02:03.522289 + : pb-IF4BU1gtAA== ip: an~}ida`gaic~, Device id: 1f2a67f3540a90953f0d00eae021c1d40dc8c27c -2023-04-07 19:03:33.859152 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-07 19:05:28.244332 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 19:07:43.746603 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 19:09:10.030518 + : pb-JiNJARFaU0tHVVxDEEZZXFVDGEhWQ1FC ip: b}k~}kfan`aib, Device id: 9cda7087369c2e90d666dbb77d68c1d5d344ef7c -2023-04-07 19:10:10.614831 + : pb-IF4gUlEPFw== started kick vote for pb-IF4BU1gtAA==. -2023-04-07 19:10:40.618931 + : Kick vote End -2023-04-07 19:11:06.421895 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-07 19:11:44.550451 + : pb-IF4eUBMTKA== ip: ak~}hhania`b, Device id: e3264f0eeff4f52989ca84c4566b2adc69fb0f57 -2023-04-07 19:11:55.192896 + : pb-IF5VU2kODA== started kick vote for pb-IF5UU2I_DQ==. -2023-04-07 19:12:25.198841 + : Kick vote End -2023-04-07 19:14:49.190470 + : pb-IF4FD1c8 ip: azo~{n~vm~y`, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-04-07 19:19:23.220659 + : pb-IF5VU2kODA== ip: b}k~~`gajd|va|n, Device id: 355fb2c27dec1d4858e38d1e3703b7e415e4ab5e -2023-04-07 19:21:32.700899 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 19:24:48.469306 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 19:28:27.424984 + : pb-IF5VU1JZMw== ip: an~}ica`ealh, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-07 19:32:44.393169 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 19:34:53.842191 + : pb-IF5VU1JZMw== ip: an~}ica`ealh, Device id: fe898eb5191e4d7bc705688432e5bb261f253dad -2023-04-07 19:35:38.160513 + : pb-IF48VxksEA== ip: dvvd|vazm~~ag, Device id: eeb1edc4d8f1b9fee634397da47ebb0f9f18c54e -2023-04-07 19:44:35.267320 + : pb-IF4iU0QaEw== ip: a{i~~lgajdaif}, Device id: 4da63e77c8e855d8d121f66e6efdb706c65f6e05 -2023-04-07 19:47:27.853360 + : pb-IF5cU2haHA== ip: dvvcxvbzh~yl, Device id: de5a3acb6b836f580efb7c21f1c3fba5014ade7b -2023-04-07 19:59:24.488939 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 20:00:27.698129 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvbzm, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-07 20:00:37.730618 + : pb-IF4NU0wvUQ== ip: dvvcyvi~vb|`, Device id: 32ffe222ce489b4eac846e513fa7566029982e4d -2023-04-07 20:01:03.819241 + : pb-IF4cUBYfCg== ip: azo~zh~yj~}ka, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-07 20:03:16.423547 + : pb-IF5RUGkp ip: ak~z`~~mcaia{, Device id: c75f8d871ddd1a8aab54eb9e19fc96892b88a6ba -2023-04-07 20:06:20.043218 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-07 20:07:06.197030 + : pb-IF5TUBUuKg== ip: azj~z`~~`~}o, Device id: 0b43168943304428c9ece22643ef2408deca5c46 -2023-04-07 20:07:14.227182 + : pb-IF4OUxEzMQ== ip: a|o~vo~vk~yl, Device id: ff2d50498ea7617fbb9b68c2410084693986f937 -2023-04-07 20:07:58.394400 + : pb-IF49VFQlPA== ip: azo~zh~zo~~lf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-07 20:10:06.863012 + : pb-IF40VRIbJg== ip: an~~afa`fajd{, Device id: 10bb61f2761dcc779f19f3263fa3407a620db0fe -2023-04-07 20:10:26.927618 + : pb-IF41U2scIg== ip: a~h~}jgaiaao, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 20:10:39.969039 + : pb-IF5dU3UiAw== ip: azo~{n~~jgaj`|, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-07 20:11:37.186265 + : pb-IF48UBUzCg== ip: azj~zo~~aiaag, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-04-07 20:12:14.334038 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvb~h, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-07 20:12:40.432480 + : pb-IF4NUxFfEg== ip: an~}hhaig{vb{j, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-07 20:13:25.594041 + : pb-IF41U2scIg== ip: a~h~}jgaiaao, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 20:13:27.361261 + : pb-IF5dU3UiAw== started kick vote for pb-IF4NUBcFEA==. -2023-04-07 20:13:34.623363 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 20:13:57.363815 + : Kick vote End -2023-04-07 20:14:32.267399 + : pb-IF4qUBleEw==|| kicked > new account -2023-04-07 20:16:47.447645 + : pb-IF5dU3UiAw== ip: azo~{n~~jgaj`|, Device id: 2075f74ce3988b96997b4c4082726cec0bfd3b36 -2023-04-07 20:18:20.920582 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~vl, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-07 20:19:54.295213 + : pb-IF4VU3EjBg== ip: azj~z`~|l~~k`, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-04-07 20:21:55.725069 + : pb-IF4NUxFfEg== ip: an~}hhaig{vb{j, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-07 20:24:27.429057 + : pb-IF41U2scIg== ip: a~h~}jgaiaao, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 20:25:37.698779 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 20:26:21.858842 + : pb-IF41U2scIg== ip: a~h~}jgaiaao, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 20:27:14.037327 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 20:27:59.407378 + : pb-IF4FD1c8 ip: azo~{n~vm~y`, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-04-07 20:28:45.753575 + : pb-IF4DVVgZJA== ip: ak~~mgaibvvb~h, Device id: a7166f0d947269d90c6f3f8e471e3e2868e62317 -2023-04-07 20:28:47.759316 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~va{h, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-07 20:30:58.410797 + : pb-IF5dU3UiAw== started kick vote for pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL. -2023-04-07 20:30:59.285444 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 20:30:59.917536 + : Kick vote End -2023-04-07 20:31:15.334822 + : pb-IF4jU1ggEw== ip: dvvcxvb|m~~nd, Device id: 06984a49d12081c2493bb2c3f2e3ff6a10957cb1 -2023-04-07 20:31:46.444472 + : pb-IF4cUBYfCg== ip: azo~zh~|j~~`h, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-07 20:32:13.532092 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 20:34:30.109703 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 20:37:20.897821 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 20:37:40.969394 + : pb-IF43MlIj ip: an~~adaibvva}, Device id: 438d91005f3e5345e0f4d8bddbcbdb7b888c66d4 -2023-04-07 20:42:38.045157 + : pb-IF48UBUzCg== ip: azj~zo~~adaibx, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-04-07 20:44:03.365145 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 20:49:55.672764 + : pb-IF4dUlBSCw== ip: dxvc~vazk~~hi, Device id: 62d9378fcbbf71d42be6f707d298488a44febb0f -2023-04-07 20:53:22.756915 + : pb-IF4eVUJdDQ== ip: ak~}leai`zvayn, Device id: 00aea33cef73e6fdcd33dcd5bd7722328b8194f4 -2023-04-07 20:54:42.035848 + : pb-IF4wV24HBw== ip: ak~~obaigvva{`, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-07 20:54:44.048362 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 20:56:19.433936 + : pb-IF40U28bBg== ip: dvvcxvb|m~~nd, Device id: 3dc3ecc10a2ba8b1cc3d1df218961831cc95668e -2023-04-07 20:56:32.469350 + : pb-IF4dUlBSCw== ip: dxvc~vazk~~hi, Device id: 62d9378fcbbf71d42be6f707d298488a44febb0f -2023-04-07 20:57:07.600149 + : pb-IF40U28bBg== ip: dvvcxvb|m~~nd, Device id: 3dc3ecc10a2ba8b1cc3d1df218961831cc95668e -2023-04-07 20:57:20.652898 + : pb-IF4UUxgJEg== ip: ak~~meaii{va{a, Device id: c1534d87f6f3f94dd4cf44fb3ebc5914d24ae529 -2023-04-07 20:57:36.433481 + : pb-IF4dUlBSCw== started kick vote for pb-IF4eVUJdDQ==. -2023-04-07 20:57:39.730486 + : pb-IF4jU1ggEw== ip: dvvcxvb|m~~nd, Device id: 06984a49d12081c2493bb2c3f2e3ff6a10957cb1 -2023-04-07 20:57:43.965046 + : Kick vote End -2023-04-07 20:58:21.977356 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 20:58:26.993096 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 20:59:35.235358 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvbzm, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-07 20:59:51.292101 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvbzm, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-07 21:08:41.139367 + : pb-IF4NUxFfEg== ip: an~}hgajd{vfy, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-07 21:08:57.336467 + : pb-IF4NUxFfEg== ip: an~}hgajd{vfy, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-07 21:10:11.605695 + : pb-IF4TV3RbDA== ip: azo~{m~za~yn, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-07 21:14:35.768589 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 21:16:35.184575 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvbzm, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-07 21:18:56.726148 + : pb-IF4cUBYfCg== ip: azo~zh~zm~}i`, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-07 21:19:44.931405 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-07 21:20:16.048900 + : pb-IF4NUxFfEg== ip: an~}hgajd{vfy, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-07 21:21:24.452523 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~va{h, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-07 21:23:30.918159 + : pb-IF41U0sYPA== ip: an~}iaaibxvc, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-07 21:25:10.568479 + : pb-IF4OUBksPA==|| kicked > new account -2023-04-07 21:25:57.493645 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~va{h, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-07 21:26:05.513517 + : pb-IF4KUxkEMA== ip: dvvcyvivv`, Device id: b64b7c5c0a23cb6207b006857c39bedcd62e5695 -2023-04-07 21:26:30.609744 + : pb-IF43MlIj ip: an~~adaibvva}, Device id: 438d91005f3e5345e0f4d8bddbcbdb7b888c66d4 -2023-04-07 21:26:32.619004 + : pb-IF4KUxkEMA== ip: dvvcyvivv`, Device id: b64b7c5c0a23cb6207b006857c39bedcd62e5695 -2023-04-07 21:26:41.650154 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 21:27:28.814030 + : pb-JiNJARBaXEFBVF9HFkNXXF1EF0ZaRlZE ip: dvvd|vazj~vl, Device id: 86a05bae5d4bc2f46d1e319a0f2fce821b7c3d12 -2023-04-07 21:28:55.155906 + : pb-IF5cUkwjDA== ip: dvvcyvb~j~{k, Device id: 0fabd04af3168dddaeebab3077e12bf6b1a65309 -2023-04-07 21:30:48.532525 + : pb-IF4cUBYfCg== ip: azo~zh~zm~}i`, Device id: 53240e364ebe9a3cdbb17351579b79bcf566a772 -2023-04-07 21:32:09.781722 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 21:32:28.079255 + : pb-IF4NUxFfEg== ip: an~}hgajd{vfy, Device id: 3170c5fa3beed01f99e0fe1b1de4de2ce1fdc30a -2023-04-07 21:32:57.180439 + : pb-IF4wV24HBw== ip: a~o~va~}hdajc}, Device id: 38e44d8557238faa80f05e016a255f906ea1f512 -2023-04-07 21:33:36.307567 + : pb-IF49VFdbEQ== ip: a~o~va~}kgajdz, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 21:33:36.308088 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 21:34:45.792735 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 21:35:07.868535 + : pb-IF49VFQlPA== ip: azo~zh~zo~~lf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-07 21:36:05.057174 + : pb-IF4rLkwp ip: a~j~~kdaja{vc{, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-07 21:36:19.097905 + : pb-IF4vV0g8Mw== ip: dvvc{vbk~zo, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-07 21:36:45.204113 + : pb-IF4IU1c6Ug== ip: azj~z`~|n~|n, Device id: 02d987a30ac1edb0630413af9dae845a32cbd676 -2023-04-07 21:37:34.382703 + : pb-IF4wVVkYIg== ip: d}va`~~afaii, Device id: 62eeec9d9ed20df10e2ef17590735f5346df08de -2023-04-07 21:39:17.763204 + : pb-IF4WVRUaAA== ip: dzva}`~|`~~kd, Device id: 73f5479da1b85f12316bec3a7cfd3d1b16e7f819 -2023-04-07 21:42:58.720148 + : pb-IF4SXhUa ip: azj~z`~xj~zk, Device id: 7b6da4e6c165343597899e959afb3925a683471d -2023-04-07 21:43:21.806691 + : pb-IF4OU00jBA== ip: azj~z`~|m~~mh, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-07 21:44:29.023175 + : pb-IF4TV3RbDA== ip: azo~{m~{n~~``, Device id: ef2c5605c6cefbb5ffa060987c2acd9fc6d54fd3 -2023-04-07 21:44:49.091134 + : pb-IF4OU00jBA== ip: azj~z`~|m~~mh, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-07 21:45:38.259372 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvbzm, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-07 21:45:45.289058 + : pb-IF4OU00jBA== ip: azj~z`~|m~~mh, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-07 21:46:22.403395 + : pb-IF4OU00jBA== ip: azj~z`~|m~~mh, Device id: fa0929eed191355c6eb76d0f8d516d8e1fa53b7b -2023-04-07 21:48:41.915065 + : pb-IF4hVVVeHQ== ip: ak~}ifa``aii|, Device id: d48264bb111e9406c995bd034461104ca7dd849f -2023-04-07 21:51:37.545305 + : pb-IF4KVxkhPQ== ip: hzvan~~icaje~, Device id: 08e58c702a80f55608756408b0b3737a0204984e -2023-04-07 21:54:42.441795 + : pb-IF4AV1QqEQ== ip: an~}ica`eajaz, Device id: 121bc31d20178304329d27c46688740f9c248ed9 -2023-04-07 22:02:32.734754 + : pb-IF4sAGcj ip: an~}h`aj`zvew, Device id: 0be41c5b1c70bfad08d9deb2e69f1eba75bfd64b -2023-04-07 22:03:59.239913 + : pb-IF4vV0g8Mw== started kick vote for pb-IF4hVVVeHQ==. -2023-04-07 22:04:29.243623 + : Kick vote End -2023-04-07 22:07:45.831481 + : pb-IF4rLkwp ip: a~j~~kdaja{vc{, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-07 22:09:14.150175 + : pb-IF4jF1NY ip: azj~z`~zk~}jb, Device id: d0a99a49f667c2adda450f4951559d6762e1f9b9 -2023-04-07 22:17:26.353765 + : pb-IF4wBUUK ip: azj~z`~|l~~nf, Device id: 358a012da6dc4f5bf1a73e0563183e0a62af9e40 -2023-04-07 22:17:41.417423 + : pb-IF4VU3EjBg== ip: azj~z`~|l~~k`, Device id: 62be8ce66fa900e9caae022605e05f40b58ebbc9 -2023-04-07 22:17:47.431167 + : pb-IF41U0sYPA== ip: an~}iaaibxvc, Device id: 470a10e16cb5df8f17f894fc12617cbc0aa57d07 -2023-04-07 22:17:52.453250 + : pb-IF4vV0g8Mw== ip: dvvc{vbk~zo, Device id: 53d057fe3189fa7aefd8ac600df81c2f0bcbe540 -2023-04-07 22:18:21.556164 + : pb-IF4IV04ZKw== ip: azj~z`~xa~x, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-04-07 22:20:15.929251 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvbzm, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-07 22:20:48.066136 + : pb-IF4rLkwp ip: a~j~~kdaja{vc{, Device id: df02d23ec2516218c1d7a1fe312ef348dafd8124 -2023-04-07 22:23:23.588646 + : pb-IF49VFdbEQ== ip: an~}hfaj`zvb}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 22:24:39.818657 + : pb-IF4wBUUK ip: azj~z`~|l~~nf, Device id: 358a012da6dc4f5bf1a73e0563183e0a62af9e40 -2023-04-07 22:26:21.181101 + : pb-IF49VFdbEQ== ip: an~}hfaj`zvb}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 22:27:02.343343 + : pb-IF4TUxEoKg== ip: an~}ifajdxvaxa, Device id: e7135d56b8cdb8e4ddab0d4612deaec02a824e5d -2023-04-07 22:27:23.415190 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvbzm, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-07 22:28:09.595482 + : pb-IF4FU09ZMA== ip: axi~zh~~``aid{, Device id: d5357dfb9763eeab7fb566688d73c03b3c10f9c5 -2023-04-07 22:31:29.316675 + : pb-IF4FD1c8 ip: azo~{a~xh~~lc, Device id: 3f163443b545b5ee5c0ed1039bfb94a67b489363 -2023-04-07 22:33:10.699638 + : pb-IF4wBUUK ip: azj~z`~|l~~nf, Device id: 358a012da6dc4f5bf1a73e0563183e0a62af9e40 -2023-04-07 22:33:26.756402 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-07 22:33:57.867009 + : pb-IF4wBUUK ip: azj~z`~|m~~ni, Device id: 358a012da6dc4f5bf1a73e0563183e0a62af9e40 -2023-04-07 22:35:33.250119 + : pb-IF49VFQlPA== ip: azo~zh~zo~~lf, Device id: 495a6864495ade412247de1824d348dfe1ca43d4 -2023-04-07 22:37:06.269767 + : pb-IF4DU0IEJg== started kick vote for pb-IF4IV04ZKw==. -2023-04-07 22:37:36.270794 + : Kick vote End -2023-04-07 22:39:52.209537 + : pb-IF4oUxAGPQ== ip: a~o~va~}ldamd, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-07 22:41:50.629914 + : pb-IF4oUxAGPQ== ip: a~o~va~}ldamd, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-07 22:42:27.753003 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 22:42:42.807889 + : pb-IF48UBUzCg== ip: azj~zo~}haa`a, Device id: b65d3535a2075a3dd3b113907ea53e0d6f14773d -2023-04-07 22:44:15.112419 + : pb-IF4oUxAGPQ== ip: azj~zo~}kfai`|, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-07 22:45:17.325366 + : pb-IF4oUxAGPQ== ip: a~o~va~}ldamd, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-07 22:47:45.840457 + : pb-IF4oUxAGPQ== ip: a~o~va~}ldamd, Device id: 155d0f88da10e514ccb7a19d307599f0ca22129c -2023-04-07 22:50:12.395212 + : pb-IF5VU3lYDA== ip: azj~z`~~``am, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-04-07 22:52:01.128487 + : pb-IF4DU0IEJg== started kick vote for pb-IF4IV04ZKw==. -2023-04-07 22:52:31.129842 + : Kick vote End -2023-04-07 22:53:49.109100 + : pb-JiNJARBYVUBBWV1GF09TVVZDE0hWQ1hL ip: dvvcyvh~va{h, Device id: 00620ec832d1781422f6039b958608ec3246b269 -2023-04-07 22:56:10.601778 + : pb-IF5TU24NKA== ip: dvvcyvawj~{`, Device id: 648d1aa6fbf2d419e6c9471739adec96da8e8d37 -2023-04-07 22:57:35.916970 + : pb-IF4GVWMtUw== ip: bxvevvh~vcy, Device id: 4c4046e628d25fd38a9e51d629144bb9919c21e5 -2023-04-07 23:00:06.510575 + : pb-JiNJARBaVkJDWVdAEkZWUl1AE0BeQVNG ip: dvvcxvb|m~~n`, Device id: 7522d5fe6c80b76482acc840631040599012ff9e -2023-04-07 23:01:32.829143 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 23:01:48.877709 + : pb-IF4IV04ZKw== ip: azj~z`~xa~x, Device id: 837792d99be742789307a4e5393657c411293d01 -2023-04-07 23:02:56.862185 + : pb-IF4IV04ZKw== started kick vote for pb-IF49VFQlPA==. -2023-04-07 23:03:26.868448 + : Kick vote End -2023-04-07 23:05:26.640761 + : pb-IF5VU3lYDA== ip: azj~z`~~``am, Device id: 876eaea95a39feacb9885c1f546497279a278301 -2023-04-07 23:06:59.967227 + : pb-IF5dU20MFg== ip: a}l~~jcai`xvaa, Device id: ad7c994a32a1b815e24f347ebd3510defa2dc099 -2023-04-07 23:07:23.050504 + : pb-IF49VFdbEQ== ip: an~}hfaj`zvb}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 23:15:07.759351 + : pb-IF4DV3MCHQ== ip: ak~~mdakfajdz, Device id: 0c06464047322db7f7caeaa037beae74df787275 -2023-04-07 23:16:52.155155 + : pb-IF4nUxE4Nw== ip: a~h~}jfaigxvaxl, Device id: b34231d68d2acdd703b3c18d81a8ae0006f6b512 -2023-04-07 23:18:50.584002 + : pb-IF4iUmsSDw== ip: dxvc~viyvfy, Device id: 6f3d0491d6910430abbc41303840d02f678632d3 -2023-04-07 23:18:55.600929 + : pb-IF49VFdbEQ== ip: an~}hfaj`zvb}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 23:20:41.960543 + : pb-IF4DU0IEJg== ip: b}k~~ohaj`wvbzm, Device id: 7d458447bc3ba85dd196060878d8fccb56d4f62a -2023-04-07 23:23:08.549282 + : pb-IF4VU3laVA== ip: ak~~naaid{va|, Device id: 96e150468c1fe469b1343b5ac745beb26a8fdf2f -2023-04-07 23:23:58.737053 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 23:25:40.074628 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 23:25:45.085641 + : pb-IF49VFdbEQ== ip: an~}hfaj`zvb}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 23:26:54.258581 + : pb-IF4DU0IEJg== started kick vote for pb-IF41U2scIg==. -2023-04-07 23:27:24.265415 + : Kick vote End -2023-04-07 23:28:30.730400 + : pb-IF4OUBY-HA== ip: a|a~~ngaiizvaym, Device id: 920b2722def0be678e51a3265ebda58396b9a250 -2023-04-07 23:28:56.836705 + : pb-IF49VFdbEQ== ip: an~}hfaj`zvb}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 23:30:01.794968 + : pb-IF4vVRUFVA== started kick vote for pb-IF4DU0IEJg==. -2023-04-07 23:30:31.799328 + : Kick vote End -2023-04-07 23:30:43.242156 + : pb-IF41U2scIg== ip: ak~}hhania`b, Device id: 6169051b9ce5b5c6655bc02f404234df6a23021a -2023-04-07 23:31:49.499416 + : pb-IF49VFdbEQ== ip: an~}hfaj`zvb}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 23:33:17.846688 + : pb-IF49VFdbEQ== ip: an~}hfaj`zvb}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 23:34:39.134877 + : pb-IF4wU1MPEg== ip: awj~ya~~`baicy, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-07 23:36:09.417296 + : pb-IF4wU1MPEg== ip: awj~ya~~`baicy, Device id: 0e4dfaee5e4dd1bc35566ef7de5193e1962ef968 -2023-04-07 23:37:18.647657 + : pb-IF40UncaLg== ip: ak~~`aaa~~n, Device id: 0845551c633f214c29c0814079b0e6f6f04dc907 -2023-04-07 23:39:17.066318 + : pb-IF4vVRUFVA== ip: axi~xn~~j~}ha, Device id: 00a2149d5e7bb409e844da5b609ae87ebaccaffc -2023-04-07 23:39:27.098439 + : pb-IF41VEYTJg== ip: bxvevvb}l~}kh, Device id: a9adb08bcbf1c2d7c44133844392bf32fdd3dd2d -2023-04-07 23:39:35.121921 + : pb-IF49VFdbEQ== ip: an~}hfaj`zvb}, Device id: fd892340b3c80c5d33d18531428ab2dbcc8aa598 -2023-04-07 23:40:15.269761 + : pb-IF5dUBclCw== ip: dvvcxvg|va{i, Device id: 731622025d22d48287eaac9c16b2571ff14d54cc diff --git a/dist/ba_root/mods/serverdata/systemlogs.log b/dist/ba_root/mods/serverdata/systemlogs.log deleted file mode 100644 index b4841e7..0000000 --- a/dist/ba_root/mods/serverdata/systemlogs.log +++ /dev/null @@ -1,4452 +0,0 @@ -2023-06-10 17:00:53 + : Server started -2023-06-10 17:01:51 + : CPU: 0.5% RAM: 6.9% Upload: 0.34 KB/s Download: 0.78 KB/s -2023-06-10 17:02:51 + : CPU: 0.5% RAM: 6.9% Upload: 0.22 KB/s Download: 0.32 KB/s -2023-06-10 17:03:51 + : CPU: 0.5% RAM: 6.9% Upload: 0.22 KB/s Download: 0.35 KB/s -2023-06-10 17:04:51 + : CPU: 0.5% RAM: 6.9% Upload: 0.22 KB/s Download: 0.32 KB/s -2023-06-10 17:05:51 + : CPU: 0.5% RAM: 6.9% Upload: 0.24 KB/s Download: 0.44 KB/s -2023-06-10 17:06:51 + : CPU: 0.5% RAM: 6.9% Upload: 0.22 KB/s Download: 0.32 KB/s -2023-06-10 17:07:51 + : CPU: 0.6% RAM: 6.9% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-10 17:08:15 + : None axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-10 17:08:16 + : pb-IF4iU0QaEw== axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-10 17:08:16 + : pb-IF4iU0QaEw== ip: axj~|i~~n`ai , Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-10 17:08:51 + : CPU: 0.6% RAM: 7.0% Upload: 3.24 KB/s Download: 0.62 KB/s -2023-06-10 17:09:51 + : CPU: 0.5% RAM: 7.0% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-10 17:10:52 + : CPU: 0.5% RAM: 7.0% Upload: 0.28 KB/s Download: 0.53 KB/s -2023-06-10 17:11:52 + : CPU: 0.5% RAM: 7.0% Upload: 0.29 KB/s Download: 0.56 KB/s -2023-06-10 17:12:52 + : CPU: 0.5% RAM: 7.0% Upload: 0.23 KB/s Download: 0.33 KB/s -2023-06-10 17:13:52 + : CPU: 0.6% RAM: 7.0% Upload: 0.23 KB/s Download: 0.35 KB/s -2023-06-10 17:14:52 + : CPU: 0.5% RAM: 7.0% Upload: 0.24 KB/s Download: 0.34 KB/s -2023-06-10 17:20:47 + : Server started -2023-06-10 17:21:47 + : CPU: 0.6% RAM: 6.9% Upload: 0.36 KB/s Download: 0.75 KB/s -2023-06-10 17:22:47 + : CPU: 0.6% RAM: 7.0% Upload: 0.23 KB/s Download: 0.32 KB/s -2023-06-10 17:23:47 + : CPU: 0.6% RAM: 7.0% Upload: 0.23 KB/s Download: 0.35 KB/s -2023-06-10 17:24:47 + : CPU: 0.5% RAM: 7.0% Upload: 0.39 KB/s Download: 0.33 KB/s -2023-06-10 17:25:47 + : CPU: 0.5% RAM: 7.0% Upload: 0.24 KB/s Download: 0.44 KB/s -2023-06-10 17:26:47 + : CPU: 0.6% RAM: 7.0% Upload: 0.22 KB/s Download: 0.32 KB/s -2023-06-10 17:27:47 + : CPU: 0.6% RAM: 7.0% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-10 17:28:47 + : CPU: 0.6% RAM: 7.0% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-10 17:29:47 + : CPU: 0.5% RAM: 7.0% Upload: 0.22 KB/s Download: 0.39 KB/s -2023-06-10 17:30:47 + : CPU: 0.5% RAM: 7.0% Upload: 0.99 KB/s Download: 0.65 KB/s -2023-06-10 17:31:47 + : CPU: 0.5% RAM: 7.0% Upload: 0.26 KB/s Download: 0.45 KB/s -2023-06-10 17:32:47 + : CPU: 0.6% RAM: 7.0% Upload: 0.22 KB/s Download: 0.32 KB/s -2023-06-10 17:33:47 + : CPU: 0.5% RAM: 7.0% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-10 17:34:47 + : CPU: 0.6% RAM: 7.0% Upload: 0.23 KB/s Download: 0.37 KB/s -2023-06-10 17:35:47 + : CPU: 0.5% RAM: 7.0% Upload: 0.24 KB/s Download: 0.44 KB/s -2023-06-10 17:36:47 + : CPU: 0.6% RAM: 7.0% Upload: 0.22 KB/s Download: 0.32 KB/s -2023-06-10 17:37:47 + : CPU: 0.5% RAM: 7.0% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-10 17:38:47 + : CPU: 0.6% RAM: 7.0% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-10 17:39:47 + : CPU: 0.5% RAM: 7.0% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-10 17:40:47 + : CPU: 0.6% RAM: 7.0% Upload: 0.27 KB/s Download: 0.53 KB/s -2023-06-10 17:41:48 + : CPU: 0.5% RAM: 7.0% Upload: 0.26 KB/s Download: 0.45 KB/s -2023-06-10 17:42:48 + : CPU: 0.5% RAM: 7.0% Upload: 0.22 KB/s Download: 0.32 KB/s -2023-06-10 17:43:48 + : CPU: 0.6% RAM: 7.0% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-10 17:44:48 + : CPU: 0.5% RAM: 7.0% Upload: 0.22 KB/s Download: 0.32 KB/s -2023-06-10 17:45:48 + : CPU: 0.5% RAM: 7.0% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-10 17:46:48 + : CPU: 0.6% RAM: 7.0% Upload: 0.25 KB/s Download: 0.42 KB/s -2023-06-10 17:47:48 + : CPU: 0.4% RAM: 7.0% Upload: 0.23 KB/s Download: 0.36 KB/s -2023-06-10 17:48:48 + : CPU: 0.5% RAM: 7.0% Upload: 0.18 KB/s Download: 0.30 KB/s -2023-06-10 17:49:48 + : CPU: 0.5% RAM: 7.0% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 17:50:48 + : CPU: 0.5% RAM: 7.0% Upload: 0.20 KB/s Download: 0.68 KB/s -2023-06-10 17:51:48 + : CPU: 0.5% RAM: 7.0% Upload: 0.10 KB/s Download: 0.39 KB/s -2023-06-10 17:52:48 + : CPU: 0.5% RAM: 7.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 17:53:48 + : CPU: 0.5% RAM: 7.0% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 17:54:48 + : CPU: 0.6% RAM: 7.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 17:55:48 + : CPU: 0.5% RAM: 7.0% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 17:56:48 + : CPU: 0.6% RAM: 7.0% Upload: 0.10 KB/s Download: 0.37 KB/s -2023-06-10 17:57:48 + : CPU: 0.5% RAM: 7.0% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 17:58:48 + : CPU: 0.5% RAM: 7.0% Upload: 0.05 KB/s Download: 0.14 KB/s -2023-06-10 17:59:48 + : CPU: 0.5% RAM: 7.0% Upload: 0.08 KB/s Download: 0.34 KB/s -2023-06-10 18:00:48 + : CPU: 0.5% RAM: 7.0% Upload: 0.13 KB/s Download: 0.47 KB/s -2023-06-10 18:01:48 + : CPU: 0.5% RAM: 7.0% Upload: 0.11 KB/s Download: 0.39 KB/s -2023-06-10 18:05:59 + : Server started -2023-06-10 18:06:57 + : CPU: 0.6% RAM: 6.9% Upload: 0.90 KB/s Download: 0.66 KB/s -2023-06-10 18:07:57 + : CPU: 0.5% RAM: 6.9% Upload: 0.15 KB/s Download: 0.30 KB/s -2023-06-10 18:08:57 + : CPU: 0.6% RAM: 7.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 18:09:57 + : CPU: 0.6% RAM: 7.0% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 18:10:57 + : CPU: 0.6% RAM: 7.0% Upload: 0.10 KB/s Download: 0.36 KB/s -2023-06-10 18:11:57 + : CPU: 0.5% RAM: 7.0% Upload: 0.07 KB/s Download: 0.28 KB/s -2023-06-10 18:12:57 + : CPU: 0.5% RAM: 7.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 18:13:57 + : CPU: 0.5% RAM: 7.0% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 18:14:58 + : CPU: 0.4% RAM: 7.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 18:15:58 + : CPU: 0.5% RAM: 7.0% Upload: 0.16 KB/s Download: 0.60 KB/s -2023-06-10 18:16:58 + : CPU: 0.6% RAM: 7.0% Upload: 0.12 KB/s Download: 0.37 KB/s -2023-06-10 18:22:15 + : Server started -2023-06-10 18:23:14 + : CPU: 0.6% RAM: 6.9% Upload: 0.22 KB/s Download: 0.67 KB/s -2023-06-10 18:24:14 + : CPU: 0.5% RAM: 6.9% Upload: 0.10 KB/s Download: 0.30 KB/s -2023-06-10 18:25:14 + : CPU: 0.4% RAM: 6.9% Upload: 0.07 KB/s Download: 0.26 KB/s -2023-06-10 18:26:14 + : CPU: 0.5% RAM: 6.9% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 18:27:14 + : CPU: 0.4% RAM: 6.9% Upload: 0.10 KB/s Download: 0.36 KB/s -2023-06-10 18:28:14 + : CPU: 0.5% RAM: 6.9% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 18:29:14 + : CPU: 0.5% RAM: 6.9% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 18:30:14 + : CPU: 0.5% RAM: 6.9% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 18:31:14 + : CPU: 0.5% RAM: 6.9% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-10 18:32:14 + : CPU: 0.4% RAM: 6.9% Upload: 0.13 KB/s Download: 0.50 KB/s -2023-06-10 18:33:14 + : CPU: 0.5% RAM: 6.9% Upload: 0.15 KB/s Download: 0.43 KB/s -2023-06-10 18:39:47 + : Server started -2023-06-10 18:40:46 + : CPU: 0.6% RAM: 6.9% Upload: 0.24 KB/s Download: 0.69 KB/s -2023-06-10 18:41:46 + : CPU: 0.5% RAM: 6.9% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 18:42:46 + : CPU: 0.5% RAM: 7.0% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-10 18:43:46 + : CPU: 0.5% RAM: 7.0% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 18:44:46 + : CPU: 0.5% RAM: 7.0% Upload: 0.14 KB/s Download: 0.38 KB/s -2023-06-10 18:45:46 + : CPU: 0.5% RAM: 7.0% Upload: 0.12 KB/s Download: 0.30 KB/s -2023-06-10 18:46:46 + : CPU: 0.5% RAM: 7.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 18:47:46 + : CPU: 0.4% RAM: 7.0% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 18:48:46 + : CPU: 0.4% RAM: 7.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 18:49:46 + : CPU: 0.6% RAM: 7.0% Upload: 0.16 KB/s Download: 0.60 KB/s -2023-06-10 18:50:46 + : CPU: 0.6% RAM: 7.0% Upload: 0.12 KB/s Download: 0.33 KB/s -2023-06-10 18:57:03 + : Server started -2023-06-10 18:58:02 + : CPU: 0.7% RAM: 6.9% Upload: 0.25 KB/s Download: 0.72 KB/s -2023-06-10 18:59:02 + : CPU: 0.6% RAM: 7.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 19:00:02 + : CPU: 0.5% RAM: 7.0% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 19:01:02 + : CPU: 0.6% RAM: 7.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 19:02:02 + : CPU: 0.5% RAM: 7.0% Upload: 0.10 KB/s Download: 0.38 KB/s -2023-06-10 19:03:02 + : CPU: 0.5% RAM: 7.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 19:04:02 + : CPU: 0.5% RAM: 7.0% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-10 19:05:02 + : CPU: 0.5% RAM: 7.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 19:06:02 + : CPU: 0.5% RAM: 7.1% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 19:07:02 + : CPU: 0.5% RAM: 7.1% Upload: 0.16 KB/s Download: 0.57 KB/s -2023-06-10 19:08:02 + : CPU: 0.6% RAM: 7.1% Upload: 0.12 KB/s Download: 0.40 KB/s -2023-06-10 19:09:02 + : CPU: 0.5% RAM: 7.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 19:10:02 + : CPU: 0.5% RAM: 7.1% Upload: 0.07 KB/s Download: 0.28 KB/s -2023-06-10 19:11:02 + : CPU: 0.4% RAM: 7.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 19:12:02 + : CPU: 0.5% RAM: 7.1% Upload: 0.10 KB/s Download: 0.38 KB/s -2023-06-10 19:13:02 + : CPU: 0.5% RAM: 7.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 19:14:02 + : CPU: 0.5% RAM: 7.2% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-10 19:15:02 + : CPU: 0.6% RAM: 7.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 19:16:02 + : CPU: 0.6% RAM: 7.2% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 19:17:02 + : CPU: 0.4% RAM: 7.2% Upload: 0.16 KB/s Download: 0.58 KB/s -2023-06-10 19:18:02 + : CPU: 0.6% RAM: 7.2% Upload: 0.09 KB/s Download: 0.34 KB/s -2023-06-10 19:19:02 + : CPU: 0.6% RAM: 7.2% Upload: 0.16 KB/s Download: 0.39 KB/s -2023-06-10 19:20:02 + : CPU: 0.6% RAM: 7.2% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 19:21:02 + : CPU: 0.6% RAM: 7.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 19:22:02 + : CPU: 0.6% RAM: 7.2% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-10 19:23:02 + : CPU: 0.5% RAM: 7.3% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 19:24:02 + : CPU: 0.5% RAM: 7.3% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-10 19:25:02 + : CPU: 0.6% RAM: 7.3% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 19:26:02 + : CPU: 0.7% RAM: 7.3% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 19:27:02 + : CPU: 0.6% RAM: 7.3% Upload: 0.23 KB/s Download: 0.78 KB/s -2023-06-10 19:28:02 + : CPU: 0.7% RAM: 7.3% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 19:29:02 + : CPU: 0.5% RAM: 7.3% Upload: 0.12 KB/s Download: 0.37 KB/s -2023-06-10 19:30:03 + : CPU: 0.6% RAM: 7.3% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 19:31:03 + : CPU: 0.6% RAM: 7.4% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 19:32:03 + : CPU: 0.7% RAM: 7.4% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 19:35:19 + : Server started -2023-06-10 19:36:17 + : CPU: 0.7% RAM: 7.0% Upload: 0.24 KB/s Download: 0.72 KB/s -2023-06-10 19:37:17 + : CPU: 0.6% RAM: 7.0% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-10 19:38:17 + : CPU: 0.6% RAM: 7.0% Upload: 0.11 KB/s Download: 0.31 KB/s -2023-06-10 19:39:17 + : CPU: 0.7% RAM: 7.0% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-10 20:40:06 + : CPU: 0.6% RAM: 7.1% Upload: 0.13 KB/s Download: 0.89 KB/s -2023-06-10 20:41:56 + : Server started -2023-06-10 20:42:55 + : CPU: 0.4% RAM: 6.9% Upload: 0.22 KB/s Download: 0.67 KB/s -2023-06-10 20:43:55 + : CPU: 0.4% RAM: 7.0% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 20:44:55 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 20:45:55 + : CPU: 0.4% RAM: 7.0% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-10 20:46:55 + : CPU: 0.3% RAM: 7.1% Upload: 0.61 KB/s Download: 0.37 KB/s -2023-06-10 20:47:55 + : CPU: 0.4% RAM: 7.1% Upload: 0.61 KB/s Download: 0.29 KB/s -2023-06-10 20:48:55 + : CPU: 0.3% RAM: 7.1% Upload: 6.50 KB/s Download: 0.29 KB/s -2023-06-10 20:49:55 + : CPU: 0.4% RAM: 7.1% Upload: 0.07 KB/s Download: 0.28 KB/s -2023-06-10 20:50:55 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 20:51:55 + : CPU: 0.3% RAM: 7.1% Upload: 0.14 KB/s Download: 0.50 KB/s -2023-06-10 20:52:56 + : CPU: 0.3% RAM: 7.2% Upload: 0.16 KB/s Download: 0.48 KB/s -2023-06-10 20:53:56 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-10 20:54:56 + : CPU: 0.3% RAM: 7.2% Upload: 0.10 KB/s Download: 0.34 KB/s -2023-06-10 20:55:56 + : CPU: 0.4% RAM: 7.2% Upload: 0.22 KB/s Download: 0.30 KB/s -2023-06-10 20:56:56 + : CPU: 0.4% RAM: 7.3% Upload: 7.02 KB/s Download: 0.29 KB/s -2023-06-10 20:57:56 + : CPU: 0.4% RAM: 7.3% Upload: 0.10 KB/s Download: 0.38 KB/s -2023-06-10 20:58:56 + : CPU: 0.4% RAM: 7.3% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-10 20:59:56 + : CPU: 0.3% RAM: 7.3% Upload: 0.07 KB/s Download: 0.28 KB/s -2023-06-10 21:00:56 + : CPU: 0.3% RAM: 7.3% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-10 21:01:56 + : CPU: 0.3% RAM: 7.3% Upload: 0.14 KB/s Download: 0.50 KB/s -2023-06-10 21:02:52 + : pb-IF4iU0QaEw== axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-10 21:02:52 + : pb-IF4iU0QaEw== ip: axj~|i~~n`ai , Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-10 21:02:56 + : CPU: 0.5% RAM: 7.3% Upload: 1.32 KB/s Download: 0.66 KB/s -2023-06-10 21:05:38 + : Server started -2023-06-10 21:06:29 + : None axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-10 21:06:30 + : pb-IF4iU0QaEw== axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-10 21:06:30 + : pb-IF4iU0QaEw== ip: axj~|i~~n`ai , Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-10 21:06:37 + : CPU: 0.4% RAM: 7.0% Upload: 2.48 KB/s Download: 0.96 KB/s -2023-06-10 21:07:37 + : CPU: 1.1% RAM: 7.0% Upload: 11.52 KB/s Download: 0.71 KB/s -2023-06-10 21:13:09 + : Server started -2023-06-10 21:13:23 + : None axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-10 21:13:24 + : pb-IF4iU0QaEw== axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-10 21:13:24 + : pb-IF4iU0QaEw== ip: axj~|i~~n`ai , Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-10 21:14:08 + : CPU: 0.8% RAM: 7.0% Upload: 7.69 KB/s Download: 1.18 KB/s -2023-06-10 21:15:08 + : CPU: 0.5% RAM: 7.0% Upload: 7.12 KB/s Download: 0.63 KB/s -2023-06-10 21:16:08 + : CPU: 0.3% RAM: 7.0% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 21:17:08 + : CPU: 0.3% RAM: 7.0% Upload: 0.20 KB/s Download: 0.30 KB/s -2023-06-10 21:18:08 + : CPU: 0.3% RAM: 7.0% Upload: 0.24 KB/s Download: 0.44 KB/s -2023-06-10 21:19:08 + : CPU: 0.3% RAM: 7.1% Upload: 0.21 KB/s Download: 0.32 KB/s -2023-06-10 21:20:08 + : CPU: 0.3% RAM: 7.1% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-10 21:21:08 + : CPU: 0.3% RAM: 7.1% Upload: 0.22 KB/s Download: 0.32 KB/s -2023-06-10 21:22:08 + : CPU: 0.3% RAM: 7.1% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-10 21:23:08 + : CPU: 0.3% RAM: 7.1% Upload: 0.29 KB/s Download: 0.63 KB/s -2023-06-10 21:24:08 + : CPU: 0.3% RAM: 7.1% Upload: 0.28 KB/s Download: 0.44 KB/s -2023-06-10 21:25:08 + : CPU: 0.3% RAM: 7.1% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-10 21:26:08 + : CPU: 0.3% RAM: 7.1% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 21:27:09 + : CPU: 0.3% RAM: 7.1% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-10 21:28:09 + : CPU: 0.3% RAM: 7.2% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-10 21:29:09 + : CPU: 0.2% RAM: 7.2% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-10 21:30:09 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 21:31:09 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-10 21:32:09 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 21:33:09 + : CPU: 0.3% RAM: 7.2% Upload: 0.27 KB/s Download: 0.52 KB/s -2023-06-10 21:34:09 + : CPU: 0.2% RAM: 7.2% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-10 21:35:09 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-10 21:36:09 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 21:37:09 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-10 21:38:09 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 21:39:09 + : CPU: 0.3% RAM: 7.3% Upload: 0.23 KB/s Download: 0.41 KB/s -2023-06-10 21:40:09 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 21:41:09 + : CPU: 0.2% RAM: 7.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-10 21:42:09 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 21:43:09 + : CPU: 0.3% RAM: 7.4% Upload: 0.33 KB/s Download: 0.72 KB/s -2023-06-10 21:44:09 + : CPU: 0.3% RAM: 7.4% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-10 21:45:09 + : CPU: 0.3% RAM: 7.4% Upload: 0.20 KB/s Download: 0.31 KB/s -2023-06-10 21:46:09 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 21:47:09 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.32 KB/s -2023-06-10 21:48:09 + : CPU: 0.4% RAM: 7.4% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 21:49:09 + : CPU: 0.4% RAM: 7.4% Upload: 0.24 KB/s Download: 0.39 KB/s -2023-06-10 21:50:09 + : CPU: 0.3% RAM: 7.4% Upload: 0.18 KB/s Download: 0.24 KB/s -2023-06-10 21:51:10 + : CPU: 0.4% RAM: 7.4% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-10 21:52:10 + : CPU: 0.3% RAM: 7.5% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-10 21:53:10 + : CPU: 0.4% RAM: 7.5% Upload: 0.27 KB/s Download: 0.53 KB/s -2023-06-10 21:54:10 + : CPU: 0.3% RAM: 7.5% Upload: 0.24 KB/s Download: 0.40 KB/s -2023-06-10 21:55:10 + : CPU: 0.3% RAM: 7.5% Upload: 0.21 KB/s Download: 0.27 KB/s -2023-06-10 21:56:10 + : CPU: 0.3% RAM: 7.5% Upload: 0.21 KB/s Download: 0.29 KB/s -2023-06-10 21:57:10 + : CPU: 0.3% RAM: 7.5% Upload: 0.21 KB/s Download: 0.27 KB/s -2023-06-10 21:58:10 + : CPU: 0.3% RAM: 7.5% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-10 21:59:10 + : CPU: 0.3% RAM: 7.6% Upload: 0.24 KB/s Download: 0.38 KB/s -2023-06-10 22:00:10 + : CPU: 0.3% RAM: 7.6% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-10 22:01:10 + : CPU: 0.3% RAM: 7.6% Upload: 0.21 KB/s Download: 0.27 KB/s -2023-06-10 22:02:10 + : CPU: 0.3% RAM: 7.6% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-10 22:03:10 + : CPU: 0.4% RAM: 7.6% Upload: 0.27 KB/s Download: 0.49 KB/s -2023-06-10 22:04:10 + : CPU: 0.3% RAM: 7.6% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-10 22:05:10 + : CPU: 0.3% RAM: 7.6% Upload: 0.21 KB/s Download: 0.32 KB/s -2023-06-10 22:06:10 + : CPU: 0.5% RAM: 7.6% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 22:07:10 + : CPU: 0.3% RAM: 7.6% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-10 22:08:10 + : CPU: 0.4% RAM: 7.7% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 22:09:10 + : CPU: 0.3% RAM: 7.7% Upload: 0.24 KB/s Download: 0.41 KB/s -2023-06-10 22:10:10 + : CPU: 0.3% RAM: 7.7% Upload: 0.22 KB/s Download: 0.38 KB/s -2023-06-10 22:11:10 + : CPU: 0.4% RAM: 7.7% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-10 22:12:10 + : CPU: 0.3% RAM: 7.7% Upload: 0.27 KB/s Download: 0.52 KB/s -2023-06-10 22:13:10 + : CPU: 0.3% RAM: 7.7% Upload: 0.28 KB/s Download: 0.54 KB/s -2023-06-10 22:14:10 + : CPU: 0.3% RAM: 7.7% Upload: 0.23 KB/s Download: 0.43 KB/s -2023-06-10 22:15:10 + : CPU: 0.5% RAM: 7.7% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-10 22:16:11 + : CPU: 0.4% RAM: 7.8% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 22:17:11 + : CPU: 0.3% RAM: 7.8% Upload: 0.20 KB/s Download: 0.31 KB/s -2023-06-10 22:18:11 + : CPU: 0.4% RAM: 7.8% Upload: 0.21 KB/s Download: 0.34 KB/s -2023-06-10 22:19:11 + : CPU: 0.3% RAM: 7.8% Upload: 0.24 KB/s Download: 0.41 KB/s -2023-06-10 22:20:11 + : CPU: 0.3% RAM: 7.8% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-10 22:21:11 + : CPU: 0.3% RAM: 7.8% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-10 22:22:11 + : CPU: 0.3% RAM: 7.8% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-10 22:23:11 + : CPU: 0.3% RAM: 7.8% Upload: 0.27 KB/s Download: 0.53 KB/s -2023-06-10 22:24:11 + : CPU: 0.3% RAM: 7.8% Upload: 0.25 KB/s Download: 0.44 KB/s -2023-06-10 22:25:11 + : CPU: 0.3% RAM: 7.8% Upload: 0.22 KB/s Download: 0.32 KB/s -2023-06-10 22:26:11 + : CPU: 0.3% RAM: 7.8% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-10 22:27:11 + : CPU: 0.3% RAM: 7.9% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-10 22:28:11 + : CPU: 0.3% RAM: 7.9% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-10 22:29:11 + : CPU: 0.4% RAM: 7.9% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-10 22:30:11 + : CPU: 0.3% RAM: 7.9% Upload: 0.21 KB/s Download: 0.38 KB/s -2023-06-10 22:31:11 + : CPU: 0.3% RAM: 7.9% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-10 22:32:11 + : CPU: 0.4% RAM: 7.9% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 22:33:11 + : CPU: 0.3% RAM: 7.9% Upload: 0.27 KB/s Download: 0.54 KB/s -2023-06-10 22:34:11 + : CPU: 0.3% RAM: 7.9% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-10 22:35:11 + : CPU: 0.3% RAM: 7.9% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-10 22:36:11 + : CPU: 0.3% RAM: 8.0% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 22:37:11 + : CPU: 0.3% RAM: 8.0% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-10 22:38:11 + : CPU: 0.3% RAM: 8.0% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 22:39:11 + : CPU: 0.4% RAM: 8.0% Upload: 0.25 KB/s Download: 0.41 KB/s -2023-06-10 22:40:11 + : CPU: 0.4% RAM: 8.0% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-10 22:41:11 + : CPU: 0.4% RAM: 8.0% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-10 22:42:11 + : CPU: 0.4% RAM: 8.0% Upload: 0.28 KB/s Download: 0.56 KB/s -2023-06-10 22:43:11 + : CPU: 0.3% RAM: 8.1% Upload: 0.26 KB/s Download: 0.52 KB/s -2023-06-10 22:44:12 + : CPU: 0.3% RAM: 8.1% Upload: 0.23 KB/s Download: 0.40 KB/s -2023-06-10 22:45:12 + : CPU: 0.4% RAM: 8.1% Upload: 0.21 KB/s Download: 0.28 KB/s -2023-06-10 22:46:12 + : CPU: 0.3% RAM: 8.1% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-10 22:47:12 + : CPU: 0.3% RAM: 8.1% Upload: 0.21 KB/s Download: 0.28 KB/s -2023-06-10 22:48:12 + : CPU: 0.4% RAM: 8.1% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-10 22:49:12 + : CPU: 0.4% RAM: 8.1% Upload: 0.23 KB/s Download: 0.38 KB/s -2023-06-10 22:50:12 + : CPU: 0.4% RAM: 8.2% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-10 22:51:12 + : CPU: 0.4% RAM: 8.2% Upload: 0.22 KB/s Download: 0.28 KB/s -2023-06-10 22:52:12 + : CPU: 0.3% RAM: 8.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-10 22:53:12 + : CPU: 0.3% RAM: 8.2% Upload: 0.27 KB/s Download: 0.49 KB/s -2023-06-10 22:54:12 + : CPU: 0.4% RAM: 8.2% Upload: 0.24 KB/s Download: 0.40 KB/s -2023-06-10 22:55:12 + : CPU: 0.3% RAM: 8.2% Upload: 0.21 KB/s Download: 0.27 KB/s -2023-06-10 22:56:12 + : CPU: 0.4% RAM: 8.2% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-10 22:57:12 + : CPU: 0.3% RAM: 8.2% Upload: 0.21 KB/s Download: 0.28 KB/s -2023-06-10 22:58:12 + : CPU: 0.4% RAM: 8.2% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-10 22:59:12 + : CPU: 0.4% RAM: 8.2% Upload: 0.24 KB/s Download: 0.38 KB/s -2023-06-10 23:00:12 + : CPU: 0.3% RAM: 8.3% Upload: 0.22 KB/s Download: 0.30 KB/s -2023-06-10 23:01:12 + : CPU: 0.4% RAM: 8.3% Upload: 0.22 KB/s Download: 0.28 KB/s -2023-06-10 23:02:12 + : CPU: 0.4% RAM: 8.3% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-10 23:03:12 + : CPU: 0.4% RAM: 8.3% Upload: 0.27 KB/s Download: 0.51 KB/s -2023-06-10 23:04:12 + : CPU: 0.3% RAM: 8.3% Upload: 0.24 KB/s Download: 0.44 KB/s -2023-06-10 23:05:12 + : CPU: 0.3% RAM: 8.3% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-10 23:06:12 + : CPU: 0.3% RAM: 8.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 23:07:12 + : CPU: 0.3% RAM: 8.3% Upload: 0.19 KB/s Download: 0.20 KB/s -2023-06-10 23:08:12 + : CPU: 0.4% RAM: 8.3% Upload: 0.19 KB/s Download: 0.32 KB/s -2023-06-10 23:09:12 + : CPU: 0.3% RAM: 8.4% Upload: 0.24 KB/s Download: 0.41 KB/s -2023-06-10 23:10:13 + : CPU: 0.4% RAM: 8.4% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 23:11:13 + : CPU: 0.4% RAM: 8.4% Upload: 0.27 KB/s Download: 0.50 KB/s -2023-06-10 23:12:13 + : CPU: 0.4% RAM: 8.4% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 23:13:13 + : CPU: 0.4% RAM: 8.4% Upload: 0.26 KB/s Download: 0.52 KB/s -2023-06-10 23:14:13 + : CPU: 0.3% RAM: 8.4% Upload: 0.24 KB/s Download: 0.49 KB/s -2023-06-10 23:15:13 + : CPU: 0.4% RAM: 8.4% Upload: 0.20 KB/s Download: 0.30 KB/s -2023-06-10 23:16:13 + : CPU: 0.4% RAM: 8.5% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 23:17:13 + : CPU: 0.4% RAM: 8.5% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-10 23:18:13 + : CPU: 0.4% RAM: 8.5% Upload: 0.21 KB/s Download: 0.34 KB/s -2023-06-10 23:19:13 + : CPU: 0.5% RAM: 8.5% Upload: 0.24 KB/s Download: 0.42 KB/s -2023-06-10 23:20:13 + : CPU: 0.3% RAM: 8.5% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 23:21:13 + : CPU: 0.3% RAM: 8.5% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-10 23:29:07 + : Server started -2023-06-10 23:30:07 + : CPU: 0.5% RAM: 7.1% Upload: 0.38 KB/s Download: 0.86 KB/s -2023-06-10 23:31:07 + : CPU: 0.4% RAM: 7.1% Upload: 0.20 KB/s Download: 0.31 KB/s -2023-06-10 23:32:07 + : CPU: 0.5% RAM: 7.1% Upload: 0.20 KB/s Download: 0.34 KB/s -2023-06-10 23:33:07 + : CPU: 0.4% RAM: 7.1% Upload: 0.20 KB/s Download: 0.31 KB/s -2023-06-10 23:34:07 + : CPU: 0.4% RAM: 7.1% Upload: 0.24 KB/s Download: 0.50 KB/s -2023-06-10 23:35:07 + : CPU: 0.4% RAM: 7.1% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-10 23:36:07 + : CPU: 0.4% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 23:37:07 + : CPU: 0.4% RAM: 7.2% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-10 23:38:07 + : CPU: 0.3% RAM: 7.2% Upload: 0.20 KB/s Download: 0.33 KB/s -2023-06-10 23:39:07 + : CPU: 0.4% RAM: 7.2% Upload: 0.29 KB/s Download: 0.62 KB/s -2023-06-10 23:40:07 + : CPU: 0.4% RAM: 7.2% Upload: 0.27 KB/s Download: 0.44 KB/s -2023-06-10 23:41:07 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-10 23:42:07 + : CPU: 0.4% RAM: 7.2% Upload: 0.22 KB/s Download: 0.35 KB/s -2023-06-10 23:43:07 + : CPU: 0.4% RAM: 7.2% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-10 23:44:07 + : CPU: 0.4% RAM: 7.3% Upload: 0.24 KB/s Download: 0.44 KB/s -2023-06-10 23:45:07 + : CPU: 0.4% RAM: 7.3% Upload: 0.20 KB/s Download: 0.31 KB/s -2023-06-10 23:46:07 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 23:47:07 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-10 23:48:07 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 23:49:07 + : CPU: 0.4% RAM: 7.3% Upload: 0.29 KB/s Download: 0.62 KB/s -2023-06-10 23:50:07 + : CPU: 0.4% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 23:51:07 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-10 23:52:08 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 23:53:08 + : CPU: 0.4% RAM: 7.4% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-10 23:54:08 + : CPU: 0.4% RAM: 7.4% Upload: 0.24 KB/s Download: 0.44 KB/s -2023-06-10 23:55:08 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-10 23:56:08 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 23:57:08 + : CPU: 0.3% RAM: 7.5% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-10 23:58:08 + : CPU: 0.4% RAM: 7.5% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-10 23:59:08 + : CPU: 0.4% RAM: 7.5% Upload: 0.36 KB/s Download: 0.85 KB/s -2023-06-11 00:00:08 + : CPU: 0.4% RAM: 7.5% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-11 00:01:08 + : CPU: 0.3% RAM: 7.5% Upload: 0.20 KB/s Download: 0.31 KB/s -2023-06-11 00:02:08 + : CPU: 0.5% RAM: 7.5% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 00:03:08 + : CPU: 0.4% RAM: 7.5% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 00:04:08 + : CPU: 0.4% RAM: 7.5% Upload: 0.24 KB/s Download: 0.44 KB/s -2023-06-11 00:05:08 + : CPU: 0.3% RAM: 7.5% Upload: 0.20 KB/s Download: 0.31 KB/s -2023-06-11 00:06:08 + : CPU: 0.6% RAM: 7.6% Upload: 0.18 KB/s Download: 0.21 KB/s -2023-06-11 00:07:08 + : CPU: 0.4% RAM: 7.6% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 00:08:08 + : CPU: 0.4% RAM: 7.6% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-11 00:09:08 + : CPU: 0.4% RAM: 7.6% Upload: 0.29 KB/s Download: 0.62 KB/s -2023-06-11 00:10:08 + : CPU: 0.5% RAM: 7.6% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-11 00:11:08 + : CPU: 0.4% RAM: 7.6% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-11 00:12:08 + : CPU: 0.4% RAM: 7.6% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-11 00:13:08 + : CPU: 0.4% RAM: 7.6% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-11 00:14:09 + : CPU: 0.4% RAM: 7.6% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-11 00:15:09 + : CPU: 0.5% RAM: 7.7% Upload: 0.24 KB/s Download: 0.41 KB/s -2023-06-11 00:16:09 + : CPU: 0.3% RAM: 7.7% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 00:17:09 + : CPU: 0.3% RAM: 7.7% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 00:18:09 + : CPU: 0.4% RAM: 7.7% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 00:19:09 + : CPU: 0.4% RAM: 7.7% Upload: 0.27 KB/s Download: 0.52 KB/s -2023-06-11 00:20:09 + : CPU: 0.4% RAM: 7.7% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-11 00:21:09 + : CPU: 0.4% RAM: 7.7% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 00:22:09 + : CPU: 0.3% RAM: 7.8% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 00:23:09 + : CPU: 0.4% RAM: 7.8% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 00:24:09 + : CPU: 0.4% RAM: 7.8% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 00:25:09 + : CPU: 0.5% RAM: 7.8% Upload: 0.24 KB/s Download: 0.41 KB/s -2023-06-11 00:26:09 + : CPU: 0.4% RAM: 7.8% Upload: 0.22 KB/s Download: 0.35 KB/s -2023-06-11 00:27:09 + : CPU: 0.4% RAM: 7.8% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 00:28:09 + : CPU: 0.4% RAM: 7.8% Upload: 0.27 KB/s Download: 0.54 KB/s -2023-06-11 00:29:09 + : CPU: 0.4% RAM: 7.8% Upload: 0.28 KB/s Download: 0.55 KB/s -2023-06-11 00:30:09 + : CPU: 0.3% RAM: 7.8% Upload: 0.23 KB/s Download: 0.43 KB/s -2023-06-11 00:31:09 + : CPU: 0.4% RAM: 7.9% Upload: 0.21 KB/s Download: 0.32 KB/s -2023-06-11 00:32:09 + : CPU: 0.3% RAM: 7.9% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 00:33:09 + : CPU: 0.3% RAM: 7.9% Upload: 0.22 KB/s Download: 0.32 KB/s -2023-06-11 00:34:09 + : CPU: 0.4% RAM: 7.9% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 00:35:09 + : CPU: 0.4% RAM: 7.9% Upload: 0.24 KB/s Download: 0.41 KB/s -2023-06-11 00:36:09 + : CPU: 0.6% RAM: 7.9% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 00:37:09 + : CPU: 0.4% RAM: 7.9% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-11 00:38:09 + : CPU: 0.4% RAM: 7.9% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 00:39:09 + : CPU: 0.5% RAM: 8.0% Upload: 0.27 KB/s Download: 0.52 KB/s -2023-06-11 00:40:09 + : CPU: 0.4% RAM: 8.0% Upload: 0.24 KB/s Download: 0.45 KB/s -2023-06-11 00:41:09 + : CPU: 0.4% RAM: 8.0% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 00:42:09 + : CPU: 0.4% RAM: 8.0% Upload: 0.24 KB/s Download: 0.40 KB/s -2023-06-11 00:43:10 + : CPU: 0.4% RAM: 8.0% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 00:44:10 + : CPU: 0.5% RAM: 8.0% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 00:45:10 + : CPU: 0.3% RAM: 8.0% Upload: 0.10 KB/s Download: 0.26 KB/s -2023-06-11 00:46:10 + : CPU: 0.4% RAM: 8.0% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-11 00:47:10 + : CPU: 0.4% RAM: 8.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-11 00:48:10 + : CPU: 0.4% RAM: 8.1% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-11 00:49:10 + : CPU: 0.3% RAM: 8.1% Upload: 0.14 KB/s Download: 0.48 KB/s -2023-06-11 00:50:10 + : CPU: 0.3% RAM: 8.1% Upload: 0.11 KB/s Download: 0.39 KB/s -2023-06-11 00:51:10 + : CPU: 0.3% RAM: 8.1% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-11 00:52:10 + : CPU: 0.4% RAM: 8.1% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-11 00:53:10 + : CPU: 0.3% RAM: 8.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-11 00:54:10 + : CPU: 0.2% RAM: 8.1% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-11 00:55:10 + : CPU: 0.3% RAM: 8.1% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-11 00:56:10 + : CPU: 0.3% RAM: 8.2% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-11 00:57:10 + : CPU: 0.3% RAM: 8.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-11 00:58:10 + : CPU: 0.3% RAM: 8.2% Upload: 0.15 KB/s Download: 0.48 KB/s -2023-06-11 00:59:10 + : CPU: 0.3% RAM: 8.2% Upload: 0.13 KB/s Download: 0.48 KB/s -2023-06-11 01:00:10 + : CPU: 0.3% RAM: 8.2% Upload: 0.11 KB/s Download: 0.40 KB/s -2023-06-11 01:01:10 + : CPU: 0.3% RAM: 8.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-11 01:02:10 + : CPU: 0.3% RAM: 8.2% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-11 01:03:10 + : CPU: 0.3% RAM: 8.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-11 01:04:11 + : CPU: 0.3% RAM: 8.3% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-11 01:05:11 + : CPU: 0.3% RAM: 8.3% Upload: 0.11 KB/s Download: 0.42 KB/s -2023-06-11 01:06:11 + : CPU: 0.3% RAM: 8.3% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-11 01:07:11 + : CPU: 0.4% RAM: 8.3% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-11 01:08:11 + : CPU: 0.3% RAM: 8.3% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-11 01:09:11 + : CPU: 0.3% RAM: 8.3% Upload: 0.14 KB/s Download: 0.47 KB/s -2023-06-11 01:10:11 + : CPU: 0.4% RAM: 8.3% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-11 01:11:11 + : CPU: 0.3% RAM: 8.3% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-11 01:12:11 + : CPU: 0.4% RAM: 8.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-11 01:13:11 + : CPU: 0.3% RAM: 8.4% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-11 01:14:11 + : CPU: 0.3% RAM: 8.4% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-11 01:15:11 + : CPU: 0.3% RAM: 8.4% Upload: 0.12 KB/s Download: 0.34 KB/s -2023-06-11 01:16:11 + : CPU: 0.3% RAM: 8.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-11 01:17:11 + : CPU: 0.3% RAM: 8.4% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-11 01:18:11 + : CPU: 0.3% RAM: 8.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-11 01:19:11 + : CPU: 0.3% RAM: 8.5% Upload: 0.14 KB/s Download: 0.46 KB/s -2023-06-11 01:20:11 + : CPU: 0.3% RAM: 8.5% Upload: 0.11 KB/s Download: 0.40 KB/s -2023-06-11 01:21:11 + : CPU: 0.3% RAM: 8.5% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-11 01:22:11 + : CPU: 0.5% RAM: 8.5% Upload: 0.36 KB/s Download: 0.33 KB/s -2023-06-11 01:25:48 + : Server started -2023-06-11 01:26:19 + : None axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-11 01:26:20 + : pb-IF4iU0QaEw== axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-11 01:26:20 + : pb-IF4iU0QaEw== ip: axj~|i~~n`ai , Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-11 01:26:48 + : CPU: 0.8% RAM: 7.0% Upload: 6.49 KB/s Download: 1.10 KB/s -2023-06-11 01:27:48 + : CPU: 1.1% RAM: 7.1% Upload: 11.02 KB/s Download: 0.79 KB/s -2023-06-11 01:28:00 + : pb-IF4iU0QaEw== axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-11 01:28:00 + : pb-IF4iU0QaEw== ip: axj~|i~~n`ai , Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-11 01:28:48 + : CPU: 1.2% RAM: 7.1% Upload: 11.51 KB/s Download: 0.88 KB/s -2023-06-11 01:29:48 + : CPU: 1.4% RAM: 7.1% Upload: 11.71 KB/s Download: 0.83 KB/s -2023-06-11 01:30:48 + : CPU: 1.2% RAM: 7.1% Upload: 11.82 KB/s Download: 0.88 KB/s -2023-06-11 01:31:48 + : CPU: 0.7% RAM: 7.2% Upload: 4.07 KB/s Download: 0.58 KB/s -2023-06-11 01:32:48 + : CPU: 0.5% RAM: 7.2% Upload: 0.26 KB/s Download: 0.35 KB/s -2023-06-11 01:33:48 + : CPU: 0.5% RAM: 7.2% Upload: 0.26 KB/s Download: 0.37 KB/s -2023-06-11 01:34:48 + : CPU: 0.6% RAM: 7.2% Upload: 0.26 KB/s Download: 0.35 KB/s -2023-06-11 01:35:48 + : CPU: 0.5% RAM: 7.2% Upload: 0.31 KB/s Download: 0.68 KB/s -2023-06-11 01:36:22 + : pb-IF4iU0QaEw== axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-11 01:36:22 + : pb-IF4iU0QaEw== ip: axj~|i~~n`ai , Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-11 01:36:48 + : CPU: 1.0% RAM: 7.2% Upload: 5.94 KB/s Download: 0.76 KB/s -2023-06-11 01:37:48 + : CPU: 1.4% RAM: 7.2% Upload: 11.14 KB/s Download: 0.73 KB/s -2023-06-11 01:38:48 + : CPU: 0.8% RAM: 7.2% Upload: 2.20 KB/s Download: 0.43 KB/s -2023-06-11 01:39:48 + : CPU: 0.8% RAM: 7.3% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-11 01:40:49 + : CPU: 0.7% RAM: 7.3% Upload: 0.26 KB/s Download: 0.45 KB/s -2023-06-11 01:41:49 + : CPU: 0.8% RAM: 7.3% Upload: 0.99 KB/s Download: 0.43 KB/s -2023-06-11 01:42:49 + : CPU: 0.6% RAM: 7.3% Upload: 0.30 KB/s Download: 0.38 KB/s -2023-06-11 01:43:49 + : CPU: 0.4% RAM: 7.3% Upload: 0.30 KB/s Download: 0.40 KB/s -2023-06-11 01:44:49 + : CPU: 0.6% RAM: 7.3% Upload: 0.29 KB/s Download: 0.37 KB/s -2023-06-11 01:45:49 + : CPU: 0.4% RAM: 7.3% Upload: 0.38 KB/s Download: 0.72 KB/s -2023-06-11 01:46:49 + : CPU: 0.5% RAM: 7.3% Upload: 0.31 KB/s Download: 0.39 KB/s -2023-06-11 01:47:49 + : CPU: 0.5% RAM: 7.4% Upload: 0.29 KB/s Download: 0.39 KB/s -2023-06-11 01:48:49 + : CPU: 0.5% RAM: 7.4% Upload: 0.30 KB/s Download: 0.38 KB/s -2023-06-11 01:49:49 + : CPU: 0.5% RAM: 7.4% Upload: 0.30 KB/s Download: 0.42 KB/s -2023-06-11 01:50:49 + : CPU: 0.5% RAM: 7.4% Upload: 0.25 KB/s Download: 0.42 KB/s -2023-06-11 01:51:49 + : CPU: 0.6% RAM: 7.4% Upload: 0.26 KB/s Download: 0.37 KB/s -2023-06-11 01:52:49 + : CPU: 0.5% RAM: 7.4% Upload: 0.30 KB/s Download: 0.38 KB/s -2023-06-11 01:53:49 + : CPU: 0.4% RAM: 7.4% Upload: 0.29 KB/s Download: 0.40 KB/s -2023-06-11 01:54:49 + : CPU: 0.6% RAM: 7.5% Upload: 1.71 KB/s Download: 0.46 KB/s -2023-06-11 01:55:49 + : CPU: 0.4% RAM: 7.5% Upload: 0.44 KB/s Download: 0.92 KB/s -2023-06-11 01:56:49 + : CPU: 0.4% RAM: 7.5% Upload: 0.29 KB/s Download: 0.39 KB/s -2023-06-11 01:57:49 + : CPU: 0.4% RAM: 7.5% Upload: 0.29 KB/s Download: 0.40 KB/s -2023-06-11 01:58:49 + : CPU: 0.3% RAM: 7.5% Upload: 0.30 KB/s Download: 0.39 KB/s -2023-06-11 01:59:49 + : CPU: 0.4% RAM: 7.5% Upload: 0.27 KB/s Download: 0.40 KB/s -2023-06-11 02:00:49 + : CPU: 0.4% RAM: 7.5% Upload: 0.14 KB/s Download: 0.30 KB/s -2023-06-11 02:01:49 + : CPU: 0.4% RAM: 7.5% Upload: 0.17 KB/s Download: 0.44 KB/s -2023-06-11 02:02:49 + : CPU: 0.4% RAM: 7.6% Upload: 0.14 KB/s Download: 0.31 KB/s -2023-06-11 02:03:49 + : CPU: 0.3% RAM: 7.6% Upload: 0.06 KB/s Download: 0.20 KB/s -2023-06-11 02:04:49 + : CPU: 0.4% RAM: 7.6% Upload: 0.13 KB/s Download: 0.31 KB/s -2023-06-11 02:05:49 + : CPU: 0.4% RAM: 7.6% Upload: 0.22 KB/s Download: 0.57 KB/s -2023-06-11 12:24:51 + : Server started -2023-06-11 12:25:47 + : CPU: 0.9% RAM: 7.0% Upload: 0.15 KB/s Download: 0.43 KB/s -2023-06-11 12:26:47 + : CPU: 0.6% RAM: 7.0% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-11 12:27:47 + : CPU: 0.7% RAM: 7.0% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-11 12:28:47 + : CPU: 0.6% RAM: 7.1% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-11 12:29:47 + : CPU: 0.5% RAM: 7.1% Upload: 0.19 KB/s Download: 0.30 KB/s -2023-06-11 12:30:47 + : CPU: 0.5% RAM: 7.1% Upload: 0.22 KB/s Download: 0.28 KB/s -2023-06-11 12:31:47 + : CPU: 0.5% RAM: 7.1% Upload: 0.24 KB/s Download: 0.32 KB/s -2023-06-11 12:32:47 + : CPU: 0.5% RAM: 7.1% Upload: 0.23 KB/s Download: 0.29 KB/s -2023-06-11 12:33:47 + : CPU: 0.5% RAM: 7.1% Upload: 0.31 KB/s Download: 0.63 KB/s -2023-06-11 12:34:47 + : CPU: 0.6% RAM: 7.1% Upload: 0.41 KB/s Download: 0.44 KB/s -2023-06-11 12:35:47 + : CPU: 0.7% RAM: 7.1% Upload: 0.23 KB/s Download: 0.34 KB/s -2023-06-11 12:36:47 + : CPU: 0.5% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 12:37:47 + : CPU: 0.6% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 12:38:47 + : CPU: 0.7% RAM: 7.2% Upload: 0.25 KB/s Download: 0.42 KB/s -2023-06-11 12:39:47 + : CPU: 0.7% RAM: 7.2% Upload: 0.22 KB/s Download: 0.36 KB/s -2023-06-11 12:40:47 + : CPU: 0.6% RAM: 7.2% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-11 12:41:47 + : CPU: 0.6% RAM: 7.2% Upload: 0.24 KB/s Download: 0.35 KB/s -2023-06-11 12:42:47 + : CPU: 0.6% RAM: 7.2% Upload: 0.22 KB/s Download: 0.32 KB/s -2023-06-11 12:43:47 + : CPU: 0.7% RAM: 7.2% Upload: 0.30 KB/s Download: 0.65 KB/s -2023-06-11 12:44:47 + : CPU: 0.6% RAM: 7.3% Upload: 0.27 KB/s Download: 0.40 KB/s -2023-06-11 12:45:47 + : CPU: 0.7% RAM: 7.3% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-11 12:46:47 + : CPU: 0.6% RAM: 7.3% Upload: 0.22 KB/s Download: 0.32 KB/s -2023-06-11 12:47:47 + : CPU: 0.6% RAM: 7.3% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-11 12:51:33 + : Server started -2023-06-11 12:51:57 + : None axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-11 12:51:58 + : pb-IF4iU0QaEw== axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-11 12:51:58 + : pb-IF4iU0QaEw== ip: axj~|i~~n`ai , Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-11 12:52:31 + : CPU: 1.6% RAM: 7.0% Upload: 7.88 KB/s Download: 0.90 KB/s -2023-06-11 12:53:31 + : CPU: 2.2% RAM: 7.1% Upload: 13.10 KB/s Download: 0.79 KB/s -2023-06-11 12:54:31 + : CPU: 2.1% RAM: 7.1% Upload: 12.47 KB/s Download: 0.79 KB/s -2023-06-11 12:55:31 + : CPU: 1.1% RAM: 7.1% Upload: 1.05 KB/s Download: 0.42 KB/s -2023-06-11 12:55:33 + : None axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-11 12:55:34 + : pb-IF4iU0QaEw== axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-11 12:55:34 + : pb-IF4iU0QaEw== ip: axj~|i~~n`ai , Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-11 12:56:31 + : CPU: 2.2% RAM: 7.1% Upload: 14.46 KB/s Download: 0.99 KB/s -2023-06-11 12:57:31 + : CPU: 1.3% RAM: 7.1% Upload: 3.63 KB/s Download: 0.54 KB/s -2023-06-11 12:57:59 + : pb-IF4iU0QaEw== axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-11 12:57:59 + : pb-IF4iU0QaEw== ip: axj~|i~~n`ai , Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-11 12:58:31 + : CPU: 1.9% RAM: 7.2% Upload: 8.10 KB/s Download: 0.92 KB/s -2023-06-11 12:59:31 + : CPU: 0.9% RAM: 7.2% Upload: 5.89 KB/s Download: 0.66 KB/s -2023-06-11 13:00:31 + : CPU: 0.6% RAM: 7.2% Upload: 0.31 KB/s Download: 0.42 KB/s -2023-06-11 13:01:31 + : CPU: 0.5% RAM: 7.2% Upload: 0.48 KB/s Download: 0.82 KB/s -2023-06-11 13:02:31 + : CPU: 0.5% RAM: 7.2% Upload: 0.31 KB/s Download: 0.41 KB/s -2023-06-11 13:03:31 + : CPU: 0.6% RAM: 7.2% Upload: 0.30 KB/s Download: 0.39 KB/s -2023-06-11 13:04:31 + : CPU: 0.6% RAM: 7.2% Upload: 0.29 KB/s Download: 0.40 KB/s -2023-06-11 13:05:31 + : CPU: 0.4% RAM: 7.2% Upload: 0.30 KB/s Download: 0.38 KB/s -2023-06-11 13:06:31 + : CPU: 0.5% RAM: 7.3% Upload: 0.33 KB/s Download: 0.51 KB/s -2023-06-11 13:07:31 + : CPU: 0.5% RAM: 7.3% Upload: 0.29 KB/s Download: 0.36 KB/s -2023-06-11 13:08:31 + : CPU: 0.5% RAM: 7.3% Upload: 0.30 KB/s Download: 0.41 KB/s -2023-06-11 13:09:32 + : CPU: 0.4% RAM: 7.3% Upload: 0.30 KB/s Download: 0.39 KB/s -2023-06-11 13:10:32 + : CPU: 0.5% RAM: 7.3% Upload: 0.29 KB/s Download: 0.40 KB/s -2023-06-11 13:11:32 + : CPU: 0.5% RAM: 7.3% Upload: 0.38 KB/s Download: 0.72 KB/s -2023-06-11 13:12:32 + : CPU: 0.5% RAM: 7.3% Upload: 0.30 KB/s Download: 0.41 KB/s -2023-06-11 13:13:32 + : CPU: 0.5% RAM: 7.3% Upload: 0.29 KB/s Download: 0.37 KB/s -2023-06-11 13:14:32 + : CPU: 0.4% RAM: 7.3% Upload: 0.30 KB/s Download: 0.41 KB/s -2023-06-11 13:15:32 + : CPU: 0.6% RAM: 7.4% Upload: 0.31 KB/s Download: 0.39 KB/s -2023-06-11 13:16:32 + : CPU: 0.4% RAM: 7.4% Upload: 0.32 KB/s Download: 0.51 KB/s -2023-06-11 13:17:32 + : CPU: 0.4% RAM: 7.4% Upload: 0.31 KB/s Download: 0.38 KB/s -2023-06-11 13:18:32 + : CPU: 0.5% RAM: 7.4% Upload: 0.31 KB/s Download: 0.42 KB/s -2023-06-11 13:20:12 + : Server started -2023-06-11 13:21:11 + : CPU: 0.5% RAM: 7.0% Upload: 0.37 KB/s Download: 0.67 KB/s -2023-06-11 13:22:11 + : CPU: 0.5% RAM: 7.1% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-11 13:23:11 + : CPU: 0.5% RAM: 7.1% Upload: 0.22 KB/s Download: 0.29 KB/s -2023-06-11 13:24:11 + : CPU: 0.5% RAM: 7.1% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 13:25:11 + : CPU: 0.6% RAM: 7.1% Upload: 0.29 KB/s Download: 0.43 KB/s -2023-06-11 13:26:11 + : CPU: 0.6% RAM: 7.1% Upload: 0.26 KB/s Download: 0.34 KB/s -2023-06-11 13:27:07 + : pb-IF4iU0QaEw== axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-11 13:27:07 + : pb-IF4iU0QaEw== ip: axj~|i~~n`ai , Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-11 13:27:11 + : CPU: 0.6% RAM: 7.1% Upload: 1.30 KB/s Download: 0.45 KB/s -2023-06-11 13:28:11 + : CPU: 2.7% RAM: 7.1% Upload: 15.46 KB/s Download: 0.76 KB/s -2023-06-11 13:29:11 + : CPU: 2.7% RAM: 7.1% Upload: 15.16 KB/s Download: 0.67 KB/s -2023-06-11 13:30:11 + : CPU: 2.3% RAM: 7.2% Upload: 15.17 KB/s Download: 1.04 KB/s -2023-06-11 13:31:11 + : CPU: 1.8% RAM: 7.2% Upload: 15.12 KB/s Download: 0.89 KB/s -2023-06-11 13:32:11 + : CPU: 1.8% RAM: 7.2% Upload: 15.16 KB/s Download: 0.79 KB/s -2023-06-11 13:33:11 + : CPU: 1.2% RAM: 7.2% Upload: 8.03 KB/s Download: 0.83 KB/s -2023-06-11 13:34:11 + : CPU: 1.2% RAM: 7.2% Upload: 8.87 KB/s Download: 0.86 KB/s -2023-06-11 13:35:11 + : CPU: 1.2% RAM: 7.2% Upload: 8.18 KB/s Download: 0.91 KB/s -2023-06-11 13:36:11 + : CPU: 0.9% RAM: 7.2% Upload: 8.15 KB/s Download: 0.83 KB/s -2023-06-11 13:37:11 + : CPU: 0.7% RAM: 7.3% Upload: 7.46 KB/s Download: 0.77 KB/s -2023-06-11 13:38:11 + : CPU: 1.2% RAM: 7.3% Upload: 8.15 KB/s Download: 0.81 KB/s -2023-06-11 13:39:11 + : CPU: 1.0% RAM: 7.3% Upload: 8.15 KB/s Download: 0.78 KB/s -2023-06-11 13:40:11 + : CPU: 1.3% RAM: 7.3% Upload: 8.94 KB/s Download: 1.17 KB/s -2023-06-11 13:41:11 + : CPU: 1.0% RAM: 7.3% Upload: 7.47 KB/s Download: 0.82 KB/s -2023-06-11 13:42:12 + : CPU: 1.2% RAM: 7.4% Upload: 8.82 KB/s Download: 0.80 KB/s -2023-06-11 13:43:12 + : CPU: 1.2% RAM: 7.4% Upload: 8.16 KB/s Download: 0.82 KB/s -2023-06-11 13:44:12 + : CPU: 1.2% RAM: 7.4% Upload: 7.44 KB/s Download: 0.79 KB/s -2023-06-11 13:45:12 + : CPU: 1.2% RAM: 7.4% Upload: 8.92 KB/s Download: 0.93 KB/s -2023-06-11 13:46:12 + : CPU: 1.1% RAM: 7.4% Upload: 8.15 KB/s Download: 0.81 KB/s -2023-06-11 13:47:12 + : CPU: 0.6% RAM: 7.4% Upload: 7.46 KB/s Download: 0.78 KB/s -2023-06-11 13:48:12 + : CPU: 0.8% RAM: 7.4% Upload: 7.45 KB/s Download: 0.80 KB/s -2023-06-11 13:49:12 + : CPU: 0.9% RAM: 7.4% Upload: 7.46 KB/s Download: 0.74 KB/s -2023-06-11 13:50:12 + : CPU: 0.8% RAM: 7.5% Upload: 7.53 KB/s Download: 1.30 KB/s -2023-06-11 13:51:12 + : CPU: 0.8% RAM: 7.5% Upload: 7.34 KB/s Download: 0.71 KB/s -2023-06-11 13:52:12 + : CPU: 0.8% RAM: 7.5% Upload: 7.32 KB/s Download: 0.73 KB/s -2023-06-11 13:53:12 + : CPU: 0.8% RAM: 7.5% Upload: 7.33 KB/s Download: 0.71 KB/s -2023-06-11 13:54:12 + : CPU: 0.8% RAM: 7.5% Upload: 7.38 KB/s Download: 0.75 KB/s -2023-06-11 13:55:12 + : CPU: 0.8% RAM: 7.5% Upload: 7.35 KB/s Download: 0.81 KB/s -2023-06-11 13:56:12 + : CPU: 0.8% RAM: 7.5% Upload: 7.31 KB/s Download: 0.61 KB/s -2023-06-11 13:57:12 + : CPU: 0.9% RAM: 7.5% Upload: 7.36 KB/s Download: 0.72 KB/s -2023-06-11 13:58:12 + : CPU: 0.8% RAM: 7.5% Upload: 8.02 KB/s Download: 0.76 KB/s -2023-06-11 13:59:12 + : CPU: 0.8% RAM: 7.6% Upload: 7.32 KB/s Download: 0.72 KB/s -2023-06-11 14:00:12 + : CPU: 0.8% RAM: 7.6% Upload: 7.39 KB/s Download: 1.03 KB/s -2023-06-11 14:01:12 + : CPU: 0.7% RAM: 7.6% Upload: 7.31 KB/s Download: 0.70 KB/s -2023-06-11 14:02:12 + : CPU: 0.7% RAM: 7.6% Upload: 8.02 KB/s Download: 0.75 KB/s -2023-06-11 14:03:12 + : CPU: 1.0% RAM: 7.6% Upload: 8.02 KB/s Download: 0.73 KB/s -2023-06-11 14:04:12 + : CPU: 0.9% RAM: 7.7% Upload: 8.03 KB/s Download: 0.77 KB/s -2023-06-11 14:05:12 + : CPU: 1.0% RAM: 7.7% Upload: 8.07 KB/s Download: 0.85 KB/s -2023-06-11 14:06:12 + : CPU: 0.8% RAM: 7.7% Upload: 7.40 KB/s Download: 0.72 KB/s -2023-06-11 14:07:12 + : CPU: 0.9% RAM: 7.7% Upload: 8.13 KB/s Download: 0.73 KB/s -2023-06-11 14:08:12 + : CPU: 0.7% RAM: 7.7% Upload: 8.12 KB/s Download: 0.75 KB/s -2023-06-11 14:09:12 + : CPU: 0.8% RAM: 7.7% Upload: 7.41 KB/s Download: 0.70 KB/s -2023-06-11 14:10:13 + : CPU: 0.9% RAM: 7.7% Upload: 7.51 KB/s Download: 1.04 KB/s -2023-06-11 14:11:13 + : CPU: 0.7% RAM: 7.7% Upload: 7.40 KB/s Download: 0.70 KB/s -2023-06-11 14:12:13 + : CPU: 0.9% RAM: 7.8% Upload: 8.12 KB/s Download: 0.76 KB/s -2023-06-11 14:13:13 + : CPU: 0.8% RAM: 7.8% Upload: 7.43 KB/s Download: 0.70 KB/s -2023-06-11 14:14:13 + : CPU: 0.8% RAM: 7.8% Upload: 8.13 KB/s Download: 0.77 KB/s -2023-06-11 14:15:13 + : CPU: 0.8% RAM: 7.8% Upload: 7.45 KB/s Download: 0.80 KB/s -2023-06-11 14:16:13 + : CPU: 0.8% RAM: 7.8% Upload: 8.13 KB/s Download: 0.75 KB/s -2023-06-11 14:17:13 + : CPU: 0.8% RAM: 7.8% Upload: 8.13 KB/s Download: 0.73 KB/s -2023-06-11 14:18:13 + : CPU: 0.7% RAM: 7.8% Upload: 7.40 KB/s Download: 0.72 KB/s -2023-06-11 14:19:13 + : CPU: 1.0% RAM: 7.8% Upload: 8.13 KB/s Download: 0.98 KB/s -2023-06-11 14:20:13 + : CPU: 0.8% RAM: 7.8% Upload: 8.21 KB/s Download: 1.07 KB/s -2023-06-11 14:21:13 + : CPU: 0.9% RAM: 7.8% Upload: 7.43 KB/s Download: 0.70 KB/s -2023-06-11 14:22:13 + : CPU: 0.8% RAM: 7.9% Upload: 7.43 KB/s Download: 0.73 KB/s -2023-06-11 14:23:13 + : CPU: 0.7% RAM: 7.9% Upload: 8.14 KB/s Download: 0.74 KB/s -2023-06-11 14:24:13 + : CPU: 0.7% RAM: 7.9% Upload: 7.43 KB/s Download: 0.74 KB/s -2023-06-11 14:25:13 + : CPU: 0.9% RAM: 7.9% Upload: 8.17 KB/s Download: 0.84 KB/s -2023-06-11 14:26:13 + : CPU: 0.8% RAM: 7.9% Upload: 8.13 KB/s Download: 0.76 KB/s -2023-06-11 14:27:13 + : CPU: 0.9% RAM: 7.9% Upload: 8.14 KB/s Download: 0.74 KB/s -2023-06-11 14:28:13 + : CPU: 0.8% RAM: 7.9% Upload: 7.40 KB/s Download: 0.72 KB/s -2023-06-11 14:29:13 + : CPU: 0.8% RAM: 7.9% Upload: 7.44 KB/s Download: 0.70 KB/s -2023-06-11 14:30:13 + : CPU: 0.8% RAM: 7.9% Upload: 7.49 KB/s Download: 0.94 KB/s -2023-06-11 14:31:14 + : CPU: 0.9% RAM: 8.0% Upload: 7.36 KB/s Download: 0.80 KB/s -2023-06-11 14:32:14 + : CPU: 0.9% RAM: 8.0% Upload: 8.72 KB/s Download: 0.77 KB/s -2023-06-11 14:33:14 + : CPU: 0.8% RAM: 8.0% Upload: 8.03 KB/s Download: 0.73 KB/s -2023-06-11 14:34:14 + : CPU: 0.9% RAM: 8.0% Upload: 8.03 KB/s Download: 0.77 KB/s -2023-06-11 14:35:14 + : CPU: 0.8% RAM: 8.0% Upload: 8.70 KB/s Download: 0.65 KB/s -2023-06-11 14:36:47 + : Server started -2023-06-11 14:37:45 + : CPU: 0.6% RAM: 7.0% Upload: 1.05 KB/s Download: 0.62 KB/s -2023-06-11 14:38:45 + : CPU: 0.4% RAM: 7.0% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 14:39:45 + : CPU: 0.5% RAM: 7.1% Upload: 0.20 KB/s Download: 0.29 KB/s -2023-06-11 14:40:45 + : CPU: 0.5% RAM: 7.1% Upload: 0.21 KB/s Download: 0.28 KB/s -2023-06-11 14:41:45 + : CPU: 0.4% RAM: 7.1% Upload: 0.23 KB/s Download: 0.40 KB/s -2023-06-11 14:42:45 + : CPU: 0.4% RAM: 7.1% Upload: 0.21 KB/s Download: 0.28 KB/s -2023-06-11 14:43:45 + : CPU: 0.4% RAM: 7.1% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 14:44:45 + : CPU: 0.4% RAM: 7.1% Upload: 0.21 KB/s Download: 0.27 KB/s -2023-06-11 14:45:45 + : CPU: 0.5% RAM: 7.2% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 14:46:45 + : CPU: 0.4% RAM: 7.2% Upload: 0.29 KB/s Download: 0.59 KB/s -2023-06-11 14:47:45 + : CPU: 0.4% RAM: 7.2% Upload: 0.25 KB/s Download: 0.44 KB/s -2023-06-11 14:48:45 + : CPU: 0.4% RAM: 7.2% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-11 14:49:45 + : CPU: 0.4% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 14:50:45 + : CPU: 0.4% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 14:51:45 + : CPU: 0.4% RAM: 7.2% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-11 14:52:45 + : CPU: 0.4% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 14:53:45 + : CPU: 0.4% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 14:54:45 + : CPU: 0.5% RAM: 7.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 14:55:45 + : CPU: 0.4% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 14:56:45 + : CPU: 0.5% RAM: 7.3% Upload: 1.00 KB/s Download: 0.66 KB/s -2023-06-11 14:57:45 + : CPU: 0.5% RAM: 7.3% Upload: 1.64 KB/s Download: 0.42 KB/s -2023-06-11 14:58:45 + : CPU: 0.4% RAM: 7.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 14:59:45 + : CPU: 0.4% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 15:00:45 + : CPU: 0.4% RAM: 7.3% Upload: 0.22 KB/s Download: 0.32 KB/s -2023-06-11 15:01:45 + : CPU: 0.4% RAM: 7.4% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-11 15:02:45 + : CPU: 0.5% RAM: 7.4% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 15:03:45 + : CPU: 0.5% RAM: 7.4% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-11 15:04:45 + : CPU: 0.4% RAM: 7.4% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-11 15:05:45 + : CPU: 0.4% RAM: 7.4% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-11 15:06:45 + : CPU: 0.4% RAM: 7.4% Upload: 0.36 KB/s Download: 0.83 KB/s -2023-06-11 15:07:45 + : CPU: 0.4% RAM: 7.4% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 15:08:45 + : CPU: 0.4% RAM: 7.4% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-11 15:09:45 + : CPU: 0.4% RAM: 7.5% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 15:10:46 + : CPU: 0.4% RAM: 7.5% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-11 15:11:46 + : CPU: 0.5% RAM: 7.5% Upload: 0.24 KB/s Download: 0.42 KB/s -2023-06-11 15:12:46 + : CPU: 0.4% RAM: 7.5% Upload: 0.18 KB/s Download: 0.22 KB/s -2023-06-11 15:13:46 + : CPU: 0.5% RAM: 7.5% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-11 15:14:46 + : CPU: 0.4% RAM: 7.5% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 15:15:46 + : CPU: 0.4% RAM: 7.5% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 15:16:46 + : CPU: 0.4% RAM: 7.6% Upload: 0.30 KB/s Download: 0.63 KB/s -2023-06-11 15:17:46 + : CPU: 0.4% RAM: 7.6% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-11 15:18:46 + : CPU: 0.4% RAM: 7.6% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 15:19:46 + : CPU: 0.4% RAM: 7.6% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 15:20:46 + : CPU: 0.4% RAM: 7.6% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 15:21:46 + : CPU: 0.4% RAM: 7.6% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-11 15:22:46 + : CPU: 0.3% RAM: 7.6% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 15:23:46 + : CPU: 0.4% RAM: 7.6% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 15:24:46 + : CPU: 0.4% RAM: 7.7% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 15:25:46 + : CPU: 0.4% RAM: 7.7% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 15:26:46 + : CPU: 0.4% RAM: 7.7% Upload: 0.29 KB/s Download: 0.62 KB/s -2023-06-11 15:27:46 + : CPU: 0.4% RAM: 7.7% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-11 15:28:46 + : CPU: 0.4% RAM: 7.7% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 15:29:46 + : CPU: 0.4% RAM: 7.7% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 15:30:46 + : CPU: 0.4% RAM: 7.7% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-11 15:31:46 + : CPU: 0.4% RAM: 7.7% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-11 15:32:46 + : CPU: 0.4% RAM: 7.7% Upload: 0.25 KB/s Download: 0.42 KB/s -2023-06-11 15:33:46 + : CPU: 0.4% RAM: 7.8% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-11 15:34:46 + : CPU: 0.4% RAM: 7.8% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-11 15:35:46 + : CPU: 0.4% RAM: 7.8% Upload: 0.28 KB/s Download: 0.53 KB/s -2023-06-11 15:36:46 + : CPU: 0.4% RAM: 7.8% Upload: 0.28 KB/s Download: 0.53 KB/s -2023-06-11 15:37:46 + : CPU: 0.4% RAM: 7.8% Upload: 0.24 KB/s Download: 0.44 KB/s -2023-06-11 15:38:46 + : CPU: 0.3% RAM: 7.8% Upload: 0.21 KB/s Download: 0.32 KB/s -2023-06-11 15:39:47 + : CPU: 0.4% RAM: 7.8% Upload: 0.20 KB/s Download: 0.33 KB/s -2023-06-11 15:40:47 + : CPU: 0.4% RAM: 7.8% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 15:41:47 + : CPU: 0.4% RAM: 7.8% Upload: 0.20 KB/s Download: 0.33 KB/s -2023-06-11 15:42:47 + : CPU: 0.5% RAM: 7.9% Upload: 0.23 KB/s Download: 0.41 KB/s -2023-06-11 15:43:47 + : CPU: 0.4% RAM: 7.9% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 15:44:47 + : CPU: 0.4% RAM: 7.9% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 15:45:47 + : CPU: 0.4% RAM: 7.9% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 15:46:47 + : CPU: 0.4% RAM: 7.9% Upload: 0.27 KB/s Download: 0.52 KB/s -2023-06-11 15:47:47 + : CPU: 0.4% RAM: 7.9% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-11 15:48:47 + : CPU: 0.4% RAM: 8.0% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 15:49:47 + : CPU: 0.4% RAM: 8.0% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 15:50:47 + : CPU: 0.4% RAM: 8.0% Upload: 0.20 KB/s Download: 0.28 KB/s -2023-06-11 15:51:47 + : CPU: 0.4% RAM: 8.0% Upload: 0.18 KB/s Download: 0.23 KB/s -2023-06-11 15:52:47 + : CPU: 0.4% RAM: 8.0% Upload: 0.24 KB/s Download: 0.41 KB/s -2023-06-11 15:53:47 + : CPU: 0.4% RAM: 8.0% Upload: 0.20 KB/s Download: 0.33 KB/s -2023-06-11 15:54:47 + : CPU: 0.5% RAM: 8.0% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 15:55:47 + : CPU: 0.4% RAM: 8.0% Upload: 0.92 KB/s Download: 0.38 KB/s -2023-06-11 15:56:47 + : CPU: 0.4% RAM: 8.0% Upload: 0.26 KB/s Download: 0.52 KB/s -2023-06-11 15:57:47 + : CPU: 0.5% RAM: 8.0% Upload: 0.23 KB/s Download: 0.43 KB/s -2023-06-11 15:58:47 + : CPU: 0.5% RAM: 8.1% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 15:59:47 + : CPU: 0.4% RAM: 8.1% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-11 16:00:47 + : CPU: 0.4% RAM: 8.1% Upload: 0.21 KB/s Download: 0.32 KB/s -2023-06-11 16:01:47 + : CPU: 0.5% RAM: 8.1% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 16:02:47 + : CPU: 0.4% RAM: 8.1% Upload: 0.24 KB/s Download: 0.46 KB/s -2023-06-11 16:03:47 + : CPU: 0.5% RAM: 8.1% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 16:04:47 + : CPU: 0.5% RAM: 8.1% Upload: 0.23 KB/s Download: 0.33 KB/s -2023-06-11 16:05:47 + : CPU: 0.5% RAM: 8.1% Upload: 0.29 KB/s Download: 0.55 KB/s -2023-06-11 16:06:47 + : CPU: 0.4% RAM: 8.1% Upload: 0.26 KB/s Download: 0.52 KB/s -2023-06-11 16:07:47 + : CPU: 0.5% RAM: 8.2% Upload: 0.94 KB/s Download: 0.47 KB/s -2023-06-11 16:08:47 + : CPU: 0.5% RAM: 8.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 16:09:47 + : CPU: 0.4% RAM: 8.2% Upload: 0.23 KB/s Download: 0.34 KB/s -2023-06-11 16:10:47 + : CPU: 0.5% RAM: 8.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 16:11:47 + : CPU: 0.5% RAM: 8.2% Upload: 0.94 KB/s Download: 0.39 KB/s -2023-06-11 16:12:47 + : CPU: 0.5% RAM: 8.2% Upload: 0.23 KB/s Download: 0.41 KB/s -2023-06-11 16:13:47 + : CPU: 0.5% RAM: 8.2% Upload: 1.63 KB/s Download: 0.41 KB/s -2023-06-11 16:14:47 + : CPU: 0.5% RAM: 8.2% Upload: 0.97 KB/s Download: 0.40 KB/s -2023-06-11 16:15:47 + : CPU: 0.5% RAM: 8.3% Upload: 0.92 KB/s Download: 0.37 KB/s -2023-06-11 16:16:47 + : CPU: 0.6% RAM: 8.3% Upload: 0.98 KB/s Download: 0.56 KB/s -2023-06-11 16:17:47 + : CPU: 0.5% RAM: 8.3% Upload: 0.26 KB/s Download: 0.46 KB/s -2023-06-11 16:18:30 + : Server started -2023-06-11 16:19:29 + : CPU: 0.6% RAM: 7.0% Upload: 0.36 KB/s Download: 0.72 KB/s -2023-06-11 16:20:29 + : CPU: 0.4% RAM: 7.1% Upload: 0.23 KB/s Download: 0.36 KB/s -2023-06-11 16:21:29 + : CPU: 0.6% RAM: 7.1% Upload: 0.21 KB/s Download: 0.32 KB/s -2023-06-11 16:22:29 + : CPU: 0.5% RAM: 7.1% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-11 16:23:29 + : CPU: 0.6% RAM: 7.2% Upload: 0.97 KB/s Download: 0.47 KB/s -2023-06-11 16:25:24 + : Server started -2023-06-11 16:26:23 + : CPU: 0.4% RAM: 7.0% Upload: 0.34 KB/s Download: 0.74 KB/s -2023-06-11 16:27:23 + : CPU: 0.4% RAM: 7.1% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 16:28:23 + : CPU: 0.4% RAM: 7.1% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 16:29:23 + : CPU: 0.4% RAM: 7.1% Upload: 0.20 KB/s Download: 0.30 KB/s -2023-06-11 16:30:24 + : CPU: 0.4% RAM: 7.1% Upload: 0.24 KB/s Download: 0.44 KB/s -2023-06-11 16:31:24 + : CPU: 0.4% RAM: 7.1% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 16:32:24 + : CPU: 0.4% RAM: 7.1% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 16:33:24 + : CPU: 0.4% RAM: 7.1% Upload: 0.20 KB/s Download: 0.30 KB/s -2023-06-11 16:34:24 + : CPU: 0.4% RAM: 7.1% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-11 16:35:24 + : CPU: 0.4% RAM: 7.2% Upload: 0.30 KB/s Download: 0.64 KB/s -2023-06-11 16:36:24 + : CPU: 0.4% RAM: 7.2% Upload: 0.24 KB/s Download: 0.44 KB/s -2023-06-11 16:37:24 + : CPU: 0.4% RAM: 7.2% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 16:38:24 + : CPU: 0.4% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 16:39:24 + : CPU: 0.4% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 16:40:24 + : CPU: 0.5% RAM: 7.2% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-11 16:41:24 + : CPU: 0.5% RAM: 7.2% Upload: 0.92 KB/s Download: 0.34 KB/s -2023-06-11 16:42:24 + : CPU: 0.5% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 16:43:24 + : CPU: 0.4% RAM: 7.3% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 16:44:24 + : CPU: 0.4% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 16:45:24 + : CPU: 0.5% RAM: 7.3% Upload: 0.30 KB/s Download: 0.62 KB/s -2023-06-11 16:46:24 + : CPU: 0.4% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 16:47:24 + : CPU: 0.4% RAM: 7.3% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 16:48:24 + : CPU: 0.5% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 16:49:24 + : CPU: 0.4% RAM: 7.3% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 16:50:24 + : CPU: 0.5% RAM: 7.3% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-11 16:51:25 + : CPU: 0.4% RAM: 7.3% Upload: 0.23 KB/s Download: 0.40 KB/s -2023-06-11 16:52:25 + : CPU: 0.4% RAM: 7.4% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 16:53:25 + : CPU: 0.4% RAM: 7.4% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 16:54:25 + : CPU: 0.4% RAM: 7.4% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 16:55:25 + : CPU: 0.5% RAM: 7.4% Upload: 0.33 KB/s Download: 0.72 KB/s -2023-06-11 16:56:25 + : CPU: 0.4% RAM: 7.4% Upload: 0.23 KB/s Download: 0.43 KB/s -2023-06-11 16:57:25 + : CPU: 0.4% RAM: 7.4% Upload: 0.20 KB/s Download: 0.30 KB/s -2023-06-11 16:58:25 + : CPU: 0.4% RAM: 7.4% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 16:59:25 + : CPU: 0.4% RAM: 7.5% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 17:00:25 + : CPU: 0.4% RAM: 7.5% Upload: 0.22 KB/s Download: 0.39 KB/s -2023-06-11 17:01:25 + : CPU: 0.4% RAM: 7.5% Upload: 0.23 KB/s Download: 0.41 KB/s -2023-06-11 17:02:25 + : CPU: 0.4% RAM: 7.5% Upload: 0.19 KB/s Download: 0.22 KB/s -2023-06-11 17:03:25 + : CPU: 0.5% RAM: 7.5% Upload: 0.90 KB/s Download: 0.33 KB/s -2023-06-11 17:04:25 + : CPU: 0.4% RAM: 7.5% Upload: 0.92 KB/s Download: 0.37 KB/s -2023-06-11 17:05:25 + : CPU: 0.3% RAM: 7.5% Upload: 0.26 KB/s Download: 0.52 KB/s -2023-06-11 17:06:25 + : CPU: 0.4% RAM: 7.5% Upload: 0.23 KB/s Download: 0.43 KB/s -2023-06-11 17:07:25 + : CPU: 0.6% RAM: 7.5% Upload: 2.36 KB/s Download: 0.45 KB/s -2023-06-11 17:08:25 + : CPU: 0.4% RAM: 7.6% Upload: 0.21 KB/s Download: 0.34 KB/s -2023-06-11 17:09:25 + : CPU: 0.4% RAM: 7.6% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-11 17:10:25 + : CPU: 0.4% RAM: 7.6% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-11 17:11:25 + : CPU: 0.4% RAM: 7.6% Upload: 0.24 KB/s Download: 0.41 KB/s -2023-06-11 17:12:26 + : CPU: 0.4% RAM: 7.6% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-11 17:13:26 + : CPU: 0.4% RAM: 7.7% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-11 17:14:26 + : CPU: 0.5% RAM: 7.7% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-11 17:15:26 + : CPU: 0.6% RAM: 7.7% Upload: 1.67 KB/s Download: 0.58 KB/s -2023-06-11 17:16:26 + : CPU: 0.4% RAM: 7.7% Upload: 0.24 KB/s Download: 0.44 KB/s -2023-06-11 17:17:26 + : CPU: 0.4% RAM: 7.7% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 17:18:26 + : CPU: 0.5% RAM: 7.7% Upload: 0.28 KB/s Download: 0.43 KB/s -2023-06-11 17:19:26 + : CPU: 0.6% RAM: 7.7% Upload: 1.61 KB/s Download: 0.37 KB/s -2023-06-11 17:20:26 + : CPU: 0.5% RAM: 7.8% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 17:21:26 + : CPU: 0.5% RAM: 7.8% Upload: 0.24 KB/s Download: 0.41 KB/s -2023-06-11 17:22:26 + : CPU: 0.5% RAM: 7.8% Upload: 1.70 KB/s Download: 0.47 KB/s -2023-06-11 17:23:26 + : CPU: 0.7% RAM: 7.8% Upload: 1.69 KB/s Download: 0.40 KB/s -2023-06-11 17:24:26 + : CPU: 0.5% RAM: 7.8% Upload: 0.27 KB/s Download: 0.53 KB/s -2023-06-11 17:25:26 + : CPU: 0.5% RAM: 7.8% Upload: 0.28 KB/s Download: 0.53 KB/s -2023-06-11 18:17:19 + : CPU: 0.5% RAM: 7.8% Upload: 0.24 KB/s Download: 0.47 KB/s -2023-06-11 18:18:19 + : CPU: 0.6% RAM: 7.8% Upload: 0.29 KB/s Download: 1.30 KB/s -2023-06-11 18:19:19 + : CPU: 0.6% RAM: 7.9% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-11 18:20:19 + : CPU: 0.7% RAM: 7.9% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 18:21:19 + : CPU: 0.5% RAM: 7.9% Upload: 1.69 KB/s Download: 0.38 KB/s -2023-06-11 18:22:19 + : CPU: 0.3% RAM: 7.9% Upload: 0.26 KB/s Download: 0.44 KB/s -2023-06-11 18:23:19 + : CPU: 0.4% RAM: 7.9% Upload: 0.36 KB/s Download: 0.44 KB/s -2023-06-11 18:24:19 + : CPU: 0.5% RAM: 7.9% Upload: 0.41 KB/s Download: 0.47 KB/s -2023-06-11 18:25:19 + : CPU: 0.4% RAM: 8.0% Upload: 1.81 KB/s Download: 0.50 KB/s -2023-06-11 18:26:19 + : CPU: 0.5% RAM: 8.0% Upload: 1.68 KB/s Download: 0.39 KB/s -2023-06-11 18:27:19 + : CPU: 0.4% RAM: 8.0% Upload: 0.29 KB/s Download: 0.59 KB/s -2023-06-11 18:28:19 + : CPU: 0.3% RAM: 8.0% Upload: 0.20 KB/s Download: 0.33 KB/s -2023-06-11 18:29:19 + : CPU: 0.3% RAM: 8.0% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 18:30:19 + : CPU: 0.3% RAM: 8.0% Upload: 0.18 KB/s Download: 0.21 KB/s -2023-06-11 18:31:20 + : CPU: 0.3% RAM: 8.0% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 18:32:20 + : CPU: 0.3% RAM: 8.0% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-11 18:33:20 + : CPU: 0.3% RAM: 8.0% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 18:34:20 + : CPU: 0.3% RAM: 8.1% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 18:35:20 + : CPU: 0.4% RAM: 8.1% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 18:36:20 + : CPU: 0.7% RAM: 8.1% Upload: 1.77 KB/s Download: 0.59 KB/s -2023-06-11 18:37:20 + : CPU: 0.6% RAM: 8.1% Upload: 0.37 KB/s Download: 0.87 KB/s -2023-06-11 18:38:20 + : CPU: 0.6% RAM: 8.1% Upload: 4.63 KB/s Download: 0.59 KB/s -2023-06-11 18:39:20 + : CPU: 0.4% RAM: 8.1% Upload: 1.69 KB/s Download: 0.42 KB/s -2023-06-11 18:40:20 + : CPU: 0.4% RAM: 8.1% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 18:41:20 + : CPU: 0.3% RAM: 8.1% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 18:42:20 + : CPU: 0.4% RAM: 8.1% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-11 18:43:20 + : CPU: 0.4% RAM: 8.1% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 18:44:20 + : CPU: 0.4% RAM: 8.2% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-11 18:45:20 + : CPU: 0.4% RAM: 8.2% Upload: 1.61 KB/s Download: 0.37 KB/s -2023-06-11 18:46:20 + : CPU: 0.3% RAM: 8.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 18:47:20 + : CPU: 0.4% RAM: 8.2% Upload: 0.30 KB/s Download: 0.62 KB/s -2023-06-11 18:48:20 + : CPU: 0.4% RAM: 8.2% Upload: 1.67 KB/s Download: 0.59 KB/s -2023-06-11 18:49:20 + : CPU: 0.4% RAM: 8.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 18:50:20 + : CPU: 0.5% RAM: 8.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 18:51:20 + : CPU: 0.5% RAM: 8.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 18:52:20 + : CPU: 0.5% RAM: 8.3% Upload: 1.66 KB/s Download: 0.52 KB/s -2023-06-11 18:53:20 + : CPU: 0.4% RAM: 8.3% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 18:54:20 + : CPU: 0.3% RAM: 8.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 18:55:20 + : CPU: 0.3% RAM: 8.3% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 18:56:20 + : CPU: 0.3% RAM: 8.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 18:57:20 + : CPU: 0.3% RAM: 8.3% Upload: 0.30 KB/s Download: 0.67 KB/s -2023-06-11 18:58:20 + : CPU: 0.3% RAM: 8.4% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 18:59:20 + : CPU: 0.3% RAM: 8.4% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 19:00:20 + : CPU: 0.4% RAM: 8.4% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 19:01:20 + : CPU: 0.3% RAM: 8.4% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 19:02:20 + : CPU: 0.4% RAM: 8.4% Upload: 0.24 KB/s Download: 0.45 KB/s -2023-06-11 19:03:20 + : CPU: 0.4% RAM: 8.4% Upload: 3.05 KB/s Download: 0.48 KB/s -2023-06-11 19:04:20 + : CPU: 0.3% RAM: 8.4% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 19:05:20 + : CPU: 0.4% RAM: 8.4% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 19:06:21 + : CPU: 0.3% RAM: 8.5% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 19:07:21 + : CPU: 0.3% RAM: 8.5% Upload: 0.29 KB/s Download: 0.64 KB/s -2023-06-11 19:08:21 + : CPU: 0.5% RAM: 8.5% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 19:09:21 + : CPU: 0.5% RAM: 8.5% Upload: 1.60 KB/s Download: 0.30 KB/s -2023-06-11 19:10:21 + : CPU: 0.4% RAM: 8.5% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 19:11:21 + : CPU: 0.5% RAM: 8.5% Upload: 1.63 KB/s Download: 0.39 KB/s -2023-06-11 19:12:21 + : CPU: 0.4% RAM: 8.5% Upload: 1.66 KB/s Download: 0.52 KB/s -2023-06-11 19:13:21 + : CPU: 0.4% RAM: 8.5% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 19:14:21 + : CPU: 0.4% RAM: 8.5% Upload: 1.63 KB/s Download: 0.45 KB/s -2023-06-11 19:15:21 + : CPU: 0.4% RAM: 8.6% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 19:16:21 + : CPU: 0.4% RAM: 8.6% Upload: 1.63 KB/s Download: 0.41 KB/s -2023-06-11 19:17:21 + : CPU: 0.4% RAM: 8.6% Upload: 1.77 KB/s Download: 0.91 KB/s -2023-06-11 19:18:21 + : CPU: 0.3% RAM: 8.6% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-11 19:19:21 + : CPU: 0.4% RAM: 8.6% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 19:20:21 + : CPU: 0.3% RAM: 8.6% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 19:21:21 + : CPU: 0.4% RAM: 8.6% Upload: 0.20 KB/s Download: 0.30 KB/s -2023-06-11 19:22:21 + : CPU: 0.4% RAM: 8.6% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-11 19:23:21 + : CPU: 0.5% RAM: 8.6% Upload: 3.05 KB/s Download: 0.48 KB/s -2023-06-11 19:24:21 + : CPU: 0.4% RAM: 8.7% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 19:25:21 + : CPU: 0.3% RAM: 8.7% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 19:26:21 + : CPU: 0.4% RAM: 8.7% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 19:27:21 + : CPU: 0.4% RAM: 8.7% Upload: 0.29 KB/s Download: 0.62 KB/s -2023-06-11 19:28:21 + : CPU: 0.4% RAM: 8.7% Upload: 1.71 KB/s Download: 0.48 KB/s -2023-06-11 21:25:42 + : CPU: 0.4% RAM: 8.7% Upload: 0.28 KB/s Download: 0.94 KB/s -2023-06-11 21:26:42 + : CPU: 0.4% RAM: 8.7% Upload: 0.32 KB/s Download: 0.67 KB/s -2023-06-11 21:27:42 + : CPU: 0.3% RAM: 8.7% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 21:28:42 + : CPU: 0.3% RAM: 8.8% Upload: 0.24 KB/s Download: 0.39 KB/s -2023-06-11 21:29:42 + : CPU: 0.4% RAM: 8.8% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 21:30:42 + : CPU: 0.3% RAM: 8.8% Upload: 0.21 KB/s Download: 0.27 KB/s -2023-06-11 21:31:42 + : CPU: 0.4% RAM: 8.8% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 21:32:42 + : CPU: 0.3% RAM: 8.8% Upload: 0.20 KB/s Download: 0.27 KB/s -2023-06-11 21:33:42 + : CPU: 0.4% RAM: 8.8% Upload: 0.24 KB/s Download: 0.40 KB/s -2023-06-11 21:34:42 + : CPU: 0.3% RAM: 8.8% Upload: 0.21 KB/s Download: 0.27 KB/s -2023-06-11 21:35:42 + : CPU: 0.4% RAM: 8.8% Upload: 0.27 KB/s Download: 0.53 KB/s -2023-06-11 21:36:42 + : CPU: 0.5% RAM: 8.8% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-11 21:37:42 + : CPU: 0.4% RAM: 8.9% Upload: 1.64 KB/s Download: 0.42 KB/s -2023-06-11 21:38:42 + : CPU: 0.4% RAM: 8.9% Upload: 1.67 KB/s Download: 0.50 KB/s -2023-06-11 21:39:42 + : CPU: 0.5% RAM: 8.9% Upload: 6.44 KB/s Download: 0.48 KB/s -2023-06-11 21:40:42 + : CPU: 0.4% RAM: 8.9% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-11 21:41:43 + : CPU: 0.3% RAM: 8.9% Upload: 0.22 KB/s Download: 0.32 KB/s -2023-06-11 21:42:43 + : CPU: 0.5% RAM: 8.9% Upload: 0.19 KB/s Download: 0.21 KB/s -2023-06-11 21:43:43 + : CPU: 0.3% RAM: 8.9% Upload: 0.24 KB/s Download: 0.44 KB/s -2023-06-11 21:44:43 + : CPU: 0.4% RAM: 8.9% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-11 21:45:43 + : CPU: 0.4% RAM: 8.9% Upload: 0.27 KB/s Download: 0.55 KB/s -2023-06-11 21:46:43 + : CPU: 0.5% RAM: 9.0% Upload: 1.64 KB/s Download: 0.40 KB/s -2023-06-11 21:47:43 + : CPU: 0.4% RAM: 9.0% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-11 21:48:43 + : CPU: 0.3% RAM: 9.0% Upload: 0.24 KB/s Download: 0.42 KB/s -2023-06-11 21:49:43 + : CPU: 0.3% RAM: 9.0% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-11 21:50:43 + : CPU: 0.3% RAM: 9.0% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-11 21:51:43 + : CPU: 0.4% RAM: 9.0% Upload: 0.22 KB/s Download: 0.35 KB/s -2023-06-11 21:52:43 + : CPU: 0.3% RAM: 9.0% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-11 21:53:43 + : CPU: 0.4% RAM: 9.1% Upload: 0.24 KB/s Download: 0.44 KB/s -2023-06-11 21:54:43 + : CPU: 0.3% RAM: 9.1% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 21:55:43 + : CPU: 0.4% RAM: 9.1% Upload: 0.27 KB/s Download: 0.54 KB/s -2023-06-11 21:56:43 + : CPU: 0.4% RAM: 9.1% Upload: 0.28 KB/s Download: 0.56 KB/s -2023-06-11 21:57:43 + : CPU: 0.3% RAM: 9.1% Upload: 0.20 KB/s Download: 0.33 KB/s -2023-06-11 21:58:43 + : CPU: 0.4% RAM: 9.1% Upload: 0.24 KB/s Download: 0.41 KB/s -2023-06-11 21:59:43 + : CPU: 0.4% RAM: 9.1% Upload: 0.20 KB/s Download: 0.33 KB/s -2023-06-11 22:00:43 + : CPU: 0.3% RAM: 9.1% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 22:01:43 + : CPU: 0.4% RAM: 9.1% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 22:02:43 + : CPU: 0.5% RAM: 9.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 22:03:43 + : CPU: 0.3% RAM: 9.2% Upload: 1.65 KB/s Download: 0.52 KB/s -2023-06-11 22:04:43 + : CPU: 0.5% RAM: 9.2% Upload: 1.71 KB/s Download: 0.46 KB/s -2023-06-11 22:05:43 + : CPU: 0.4% RAM: 9.2% Upload: 0.27 KB/s Download: 0.55 KB/s -2023-06-11 22:06:43 + : CPU: 0.4% RAM: 9.2% Upload: 1.68 KB/s Download: 0.44 KB/s -2023-06-11 22:07:43 + : CPU: 0.3% RAM: 9.2% Upload: 0.27 KB/s Download: 0.41 KB/s -2023-06-11 22:08:44 + : CPU: 0.5% RAM: 9.2% Upload: 0.30 KB/s Download: 0.48 KB/s -2023-06-11 22:09:44 + : CPU: 0.4% RAM: 9.2% Upload: 0.23 KB/s Download: 0.35 KB/s -2023-06-11 22:10:44 + : CPU: 0.3% RAM: 9.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 22:11:44 + : CPU: 0.3% RAM: 9.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 22:12:44 + : CPU: 0.3% RAM: 9.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 22:13:44 + : CPU: 0.3% RAM: 9.3% Upload: 0.28 KB/s Download: 0.48 KB/s -2023-06-11 22:14:44 + : CPU: 0.3% RAM: 9.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 22:15:44 + : CPU: 0.6% RAM: 9.3% Upload: 3.19 KB/s Download: 0.82 KB/s -2023-06-11 22:16:44 + : CPU: 0.3% RAM: 9.3% Upload: 0.26 KB/s Download: 0.35 KB/s -2023-06-11 22:17:44 + : CPU: 0.3% RAM: 9.3% Upload: 0.21 KB/s Download: 0.38 KB/s -2023-06-11 22:18:44 + : CPU: 0.3% RAM: 9.3% Upload: 0.24 KB/s Download: 0.41 KB/s -2023-06-11 22:19:44 + : CPU: 0.3% RAM: 9.4% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-11 22:20:44 + : CPU: 0.3% RAM: 9.4% Upload: 0.21 KB/s Download: 0.28 KB/s -2023-06-11 22:21:44 + : CPU: 0.2% RAM: 9.4% Upload: 0.18 KB/s Download: 0.23 KB/s -2023-06-11 22:22:44 + : CPU: 0.3% RAM: 9.4% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-11 22:23:44 + : CPU: 0.3% RAM: 9.4% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-11 22:24:44 + : CPU: 0.4% RAM: 9.4% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 22:25:44 + : CPU: 0.3% RAM: 9.4% Upload: 0.37 KB/s Download: 0.86 KB/s -2023-06-11 22:26:44 + : CPU: 0.3% RAM: 9.4% Upload: 0.21 KB/s Download: 0.28 KB/s -2023-06-11 22:27:44 + : CPU: 0.3% RAM: 9.5% Upload: 0.21 KB/s Download: 0.29 KB/s -2023-06-11 22:28:44 + : CPU: 0.3% RAM: 9.5% Upload: 0.23 KB/s Download: 0.38 KB/s -2023-06-11 22:29:44 + : CPU: 0.3% RAM: 9.5% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 22:30:44 + : CPU: 0.3% RAM: 9.5% Upload: 0.21 KB/s Download: 0.28 KB/s -2023-06-11 22:31:44 + : CPU: 0.3% RAM: 9.5% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-11 22:32:44 + : CPU: 0.4% RAM: 9.5% Upload: 0.20 KB/s Download: 0.27 KB/s -2023-06-11 22:33:44 + : CPU: 0.4% RAM: 9.5% Upload: 0.24 KB/s Download: 0.40 KB/s -2023-06-11 22:34:44 + : CPU: 0.4% RAM: 9.5% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-11 22:35:44 + : CPU: 0.3% RAM: 9.6% Upload: 0.14 KB/s Download: 0.48 KB/s -2023-06-11 22:36:44 + : CPU: 0.3% RAM: 9.6% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-11 22:37:44 + : CPU: 0.3% RAM: 9.6% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-11 22:38:44 + : CPU: 0.6% RAM: 9.6% Upload: 1.59 KB/s Download: 0.52 KB/s -2023-06-11 22:39:44 + : CPU: 0.4% RAM: 9.6% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-11 22:40:44 + : CPU: 0.3% RAM: 9.6% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-11 22:41:44 + : CPU: 0.3% RAM: 9.6% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-11 22:42:44 + : CPU: 0.4% RAM: 9.7% Upload: 1.56 KB/s Download: 0.40 KB/s -2023-06-11 22:43:44 + : CPU: 0.4% RAM: 9.7% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-11 22:44:44 + : CPU: 0.4% RAM: 9.7% Upload: 1.56 KB/s Download: 0.40 KB/s -2023-06-11 22:45:44 + : CPU: 0.3% RAM: 9.7% Upload: 0.14 KB/s Download: 0.48 KB/s -2023-06-11 22:46:44 + : CPU: 0.3% RAM: 9.7% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-11 22:47:45 + : CPU: 0.3% RAM: 9.7% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-11 22:48:45 + : CPU: 0.3% RAM: 9.8% Upload: 0.11 KB/s Download: 0.33 KB/s -2023-06-11 22:49:45 + : CPU: 0.4% RAM: 9.8% Upload: 1.51 KB/s Download: 0.34 KB/s -2023-06-11 22:50:45 + : CPU: 0.3% RAM: 9.8% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-11 22:51:45 + : CPU: 0.4% RAM: 9.8% Upload: 1.51 KB/s Download: 0.34 KB/s -2023-06-11 22:52:45 + : CPU: 0.3% RAM: 9.8% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-11 22:53:45 + : CPU: 0.3% RAM: 9.8% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-11 22:54:45 + : CPU: 0.3% RAM: 9.8% Upload: 0.09 KB/s Download: 0.24 KB/s -2023-06-11 22:55:45 + : CPU: 0.3% RAM: 9.8% Upload: 0.20 KB/s Download: 0.69 KB/s -2023-06-11 22:56:45 + : CPU: 0.3% RAM: 9.8% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-11 22:57:45 + : CPU: 0.3% RAM: 9.9% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-11 22:58:45 + : CPU: 0.3% RAM: 9.9% Upload: 0.10 KB/s Download: 0.34 KB/s -2023-06-11 22:59:45 + : CPU: 0.3% RAM: 9.9% Upload: 0.05 KB/s Download: 0.19 KB/s -2023-06-11 23:00:45 + : CPU: 0.4% RAM: 9.9% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-11 23:01:45 + : CPU: 0.3% RAM: 9.9% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-11 23:02:45 + : CPU: 0.4% RAM: 9.9% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-11 23:03:45 + : CPU: 0.3% RAM: 9.9% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-11 23:04:45 + : CPU: 0.4% RAM: 9.9% Upload: 1.51 KB/s Download: 0.35 KB/s -2023-06-11 23:05:45 + : CPU: 0.3% RAM: 9.9% Upload: 0.14 KB/s Download: 0.49 KB/s -2023-06-11 23:06:45 + : CPU: 0.4% RAM: 10.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-11 23:07:45 + : CPU: 0.3% RAM: 10.0% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-11 23:08:45 + : CPU: 0.4% RAM: 10.0% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-11 23:09:45 + : CPU: 0.3% RAM: 10.0% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-11 23:10:45 + : CPU: 0.3% RAM: 10.0% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-11 23:11:45 + : CPU: 0.4% RAM: 10.0% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-11 23:12:45 + : CPU: 0.4% RAM: 10.0% Upload: 1.50 KB/s Download: 0.35 KB/s -2023-06-11 23:13:45 + : CPU: 0.4% RAM: 10.0% Upload: 0.17 KB/s Download: 0.44 KB/s -2023-06-11 23:14:45 + : CPU: 0.4% RAM: 10.1% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-11 23:15:45 + : CPU: 0.5% RAM: 10.1% Upload: 3.04 KB/s Download: 0.72 KB/s -2023-06-11 23:16:45 + : CPU: 0.3% RAM: 10.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-11 23:17:45 + : CPU: 0.5% RAM: 10.1% Upload: 2.98 KB/s Download: 0.51 KB/s -2023-06-11 23:18:45 + : CPU: 0.4% RAM: 10.1% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-11 23:19:45 + : CPU: 0.4% RAM: 10.1% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-11 23:20:45 + : CPU: 0.5% RAM: 10.1% Upload: 1.51 KB/s Download: 0.35 KB/s -2023-06-11 23:21:46 + : CPU: 0.4% RAM: 10.1% Upload: 0.14 KB/s Download: 0.33 KB/s -2023-06-11 23:22:46 + : CPU: 0.4% RAM: 10.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-11 23:23:46 + : CPU: 0.5% RAM: 10.1% Upload: 1.58 KB/s Download: 0.52 KB/s -2023-06-11 23:25:32 + : Server started -2023-06-11 23:26:31 + : CPU: 0.4% RAM: 7.0% Upload: 0.22 KB/s Download: 0.68 KB/s -2023-06-11 23:27:31 + : CPU: 0.4% RAM: 7.1% Upload: 1.51 KB/s Download: 0.35 KB/s -2023-06-11 23:28:31 + : CPU: 0.4% RAM: 7.1% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-11 23:29:31 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-11 23:30:31 + : CPU: 0.3% RAM: 7.1% Upload: 0.11 KB/s Download: 0.39 KB/s -2023-06-11 23:31:31 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-11 23:32:31 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-11 23:33:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-11 23:34:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-11 23:35:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.17 KB/s Download: 0.63 KB/s -2023-06-11 23:36:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.12 KB/s Download: 0.40 KB/s -2023-06-11 23:37:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-11 23:38:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-11 23:39:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-11 23:40:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.12 KB/s Download: 0.39 KB/s -2023-06-11 23:41:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-11 23:42:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-11 23:43:31 + : CPU: 0.3% RAM: 7.3% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-11 23:44:31 + : CPU: 0.3% RAM: 7.3% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-11 23:45:31 + : CPU: 0.3% RAM: 7.3% Upload: 0.16 KB/s Download: 0.56 KB/s -2023-06-11 23:46:31 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-11 23:47:31 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-11 23:48:31 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-11 23:49:31 + : CPU: 0.3% RAM: 7.3% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-11 23:50:31 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-11 23:51:31 + : CPU: 0.3% RAM: 7.3% Upload: 0.12 KB/s Download: 0.39 KB/s -2023-06-11 23:52:31 + : CPU: 0.3% RAM: 7.4% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-11 23:53:31 + : CPU: 0.3% RAM: 7.4% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-11 23:54:31 + : CPU: 0.3% RAM: 7.4% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-11 23:55:31 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.74 KB/s -2023-06-11 23:56:31 + : CPU: 0.3% RAM: 7.4% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-11 23:57:31 + : CPU: 0.3% RAM: 7.4% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-11 23:58:31 + : CPU: 0.3% RAM: 7.4% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-11 23:59:32 + : CPU: 0.3% RAM: 7.5% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 00:00:32 + : CPU: 0.3% RAM: 7.5% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-12 00:01:32 + : CPU: 0.3% RAM: 7.5% Upload: 0.10 KB/s Download: 0.34 KB/s -2023-06-12 00:02:32 + : CPU: 0.3% RAM: 7.5% Upload: 0.05 KB/s Download: 0.19 KB/s -2023-06-12 00:03:32 + : CPU: 0.3% RAM: 7.5% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 00:04:32 + : CPU: 0.3% RAM: 7.5% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-12 00:05:32 + : CPU: 0.3% RAM: 7.5% Upload: 0.13 KB/s Download: 0.48 KB/s -2023-06-12 00:06:32 + : CPU: 0.3% RAM: 7.5% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-12 00:07:32 + : CPU: 0.3% RAM: 7.6% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-12 00:08:32 + : CPU: 0.3% RAM: 7.6% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 00:09:32 + : CPU: 0.3% RAM: 7.6% Upload: 0.09 KB/s Download: 0.24 KB/s -2023-06-12 00:10:32 + : CPU: 0.3% RAM: 7.6% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 00:11:32 + : CPU: 0.3% RAM: 7.6% Upload: 0.11 KB/s Download: 0.33 KB/s -2023-06-12 00:12:32 + : CPU: 0.3% RAM: 7.6% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 00:13:32 + : CPU: 0.3% RAM: 7.6% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-12 00:14:32 + : CPU: 0.3% RAM: 7.6% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 00:15:32 + : CPU: 0.4% RAM: 7.6% Upload: 0.14 KB/s Download: 0.45 KB/s -2023-06-12 00:16:32 + : CPU: 0.5% RAM: 7.7% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-12 00:17:32 + : CPU: 0.3% RAM: 7.7% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 00:18:32 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-12 00:19:32 + : CPU: 0.3% RAM: 7.7% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 00:20:32 + : CPU: 0.4% RAM: 7.7% Upload: 1.50 KB/s Download: 0.36 KB/s -2023-06-12 00:21:32 + : CPU: 0.4% RAM: 7.7% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-12 00:22:32 + : CPU: 0.4% RAM: 7.8% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-12 00:23:32 + : CPU: 0.3% RAM: 7.8% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 00:24:32 + : CPU: 0.3% RAM: 7.8% Upload: 0.14 KB/s Download: 0.47 KB/s -2023-06-12 00:25:32 + : CPU: 0.4% RAM: 7.8% Upload: 0.14 KB/s Download: 0.49 KB/s -2023-06-12 00:26:32 + : CPU: 0.3% RAM: 7.8% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-12 00:27:32 + : CPU: 0.4% RAM: 7.8% Upload: 1.50 KB/s Download: 0.36 KB/s -2023-06-12 00:28:32 + : CPU: 0.3% RAM: 7.8% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-12 00:29:32 + : CPU: 0.3% RAM: 7.9% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 00:30:32 + : CPU: 0.4% RAM: 7.9% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 00:31:32 + : CPU: 0.5% RAM: 7.9% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-12 00:32:32 + : CPU: 0.4% RAM: 7.9% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-12 00:33:32 + : CPU: 0.4% RAM: 7.9% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 00:34:32 + : CPU: 0.4% RAM: 7.9% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-12 00:35:32 + : CPU: 0.4% RAM: 7.9% Upload: 1.61 KB/s Download: 0.62 KB/s -2023-06-12 00:36:32 + : CPU: 0.4% RAM: 7.9% Upload: 0.11 KB/s Download: 0.43 KB/s -2023-06-12 00:37:32 + : CPU: 0.4% RAM: 7.9% Upload: 1.56 KB/s Download: 0.43 KB/s -2023-06-12 00:38:32 + : CPU: 0.4% RAM: 7.9% Upload: 1.55 KB/s Download: 0.41 KB/s -2023-06-12 00:39:32 + : CPU: 0.4% RAM: 7.9% Upload: 0.11 KB/s Download: 0.32 KB/s -2023-06-12 00:40:32 + : CPU: 0.4% RAM: 8.0% Upload: 1.54 KB/s Download: 0.31 KB/s -2023-06-12 00:40:42 + : None axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-12 00:40:43 + : pb-IF4iU0QaEw== axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-12 00:42:55 + : Server started -2023-06-12 00:43:54 + : CPU: 0.4% RAM: 7.1% Upload: 0.41 KB/s Download: 0.82 KB/s -2023-06-12 00:44:54 + : CPU: 0.3% RAM: 7.1% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-12 00:45:54 + : CPU: 0.4% RAM: 7.1% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-12 00:46:54 + : CPU: 0.4% RAM: 7.2% Upload: 1.71 KB/s Download: 0.47 KB/s -2023-06-12 00:47:54 + : CPU: 0.3% RAM: 7.2% Upload: 0.27 KB/s Download: 0.49 KB/s -2023-06-12 00:48:54 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-12 00:49:54 + : CPU: 0.4% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-12 00:50:54 + : CPU: 0.3% RAM: 7.2% Upload: 0.20 KB/s Download: 0.30 KB/s -2023-06-12 00:51:54 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-12 00:52:54 + : CPU: 0.4% RAM: 7.3% Upload: 0.28 KB/s Download: 0.62 KB/s -2023-06-12 00:53:54 + : CPU: 0.4% RAM: 7.3% Upload: 0.25 KB/s Download: 0.44 KB/s -2023-06-12 00:54:54 + : CPU: 0.4% RAM: 7.3% Upload: 1.63 KB/s Download: 0.39 KB/s -2023-06-12 00:55:54 + : CPU: 0.5% RAM: 7.3% Upload: 1.64 KB/s Download: 0.42 KB/s -2023-06-12 00:56:55 + : CPU: 0.5% RAM: 7.3% Upload: 1.63 KB/s Download: 0.39 KB/s -2023-06-12 00:57:31 + : pb-IF4iU0QaEw== axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-12 00:57:31 + : pb-IF4iU0QaEw== ip: axj~|i~~n`ai , Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-12 00:57:55 + : CPU: 0.9% RAM: 7.3% Upload: 6.03 KB/s Download: 0.87 KB/s -2023-06-12 00:58:55 + : CPU: 1.5% RAM: 7.3% Upload: 13.00 KB/s Download: 0.70 KB/s -2023-06-12 00:59:55 + : CPU: 1.8% RAM: 7.4% Upload: 13.00 KB/s Download: 0.72 KB/s -2023-06-12 01:00:55 + : CPU: 1.7% RAM: 7.4% Upload: 13.15 KB/s Download: 0.70 KB/s -2023-06-12 01:01:55 + : CPU: 1.5% RAM: 7.4% Upload: 12.98 KB/s Download: 0.71 KB/s -2023-06-12 01:02:55 + : CPU: 1.3% RAM: 7.4% Upload: 11.48 KB/s Download: 1.00 KB/s -2023-06-12 01:03:55 + : CPU: 0.7% RAM: 7.4% Upload: 7.35 KB/s Download: 0.84 KB/s -2023-06-12 01:04:55 + : CPU: 0.8% RAM: 7.4% Upload: 7.31 KB/s Download: 0.70 KB/s -2023-06-12 01:05:55 + : CPU: 0.7% RAM: 7.4% Upload: 7.31 KB/s Download: 0.74 KB/s -2023-06-12 01:06:55 + : CPU: 0.7% RAM: 7.4% Upload: 7.31 KB/s Download: 0.70 KB/s -2023-06-12 01:07:55 + : CPU: 0.7% RAM: 7.5% Upload: 6.89 KB/s Download: 0.70 KB/s -2023-06-12 01:08:55 + : CPU: 0.4% RAM: 7.5% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-12 01:09:55 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-12 01:10:55 + : CPU: 0.5% RAM: 7.5% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 01:11:55 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-12 01:12:55 + : CPU: 0.4% RAM: 7.5% Upload: 0.20 KB/s Download: 0.68 KB/s -2023-06-12 01:13:55 + : CPU: 0.4% RAM: 7.5% Upload: 0.11 KB/s Download: 0.39 KB/s -2023-06-12 01:14:55 + : CPU: 0.5% RAM: 7.5% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 01:15:55 + : CPU: 0.7% RAM: 7.5% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-12 01:16:55 + : CPU: 0.6% RAM: 7.5% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 01:17:55 + : CPU: 0.7% RAM: 7.6% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-12 01:18:55 + : CPU: 0.6% RAM: 7.6% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-12 01:19:55 + : CPU: 0.6% RAM: 7.6% Upload: 0.05 KB/s Download: 0.19 KB/s -2023-06-12 01:20:55 + : CPU: 0.7% RAM: 7.6% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 01:21:55 + : CPU: 0.7% RAM: 7.6% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-12 01:22:55 + : CPU: 0.5% RAM: 7.6% Upload: 0.14 KB/s Download: 0.47 KB/s -2023-06-12 01:23:56 + : CPU: 0.4% RAM: 7.6% Upload: 0.11 KB/s Download: 0.39 KB/s -2023-06-12 01:24:56 + : CPU: 0.5% RAM: 7.6% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 01:25:56 + : CPU: 0.5% RAM: 7.6% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-12 01:26:56 + : CPU: 0.5% RAM: 7.6% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 01:27:56 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-12 01:28:56 + : CPU: 0.4% RAM: 7.7% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-12 01:29:28 + : pb-IF4iU0QaEw== axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-12 01:29:28 + : pb-IF4iU0QaEw== ip: axj~|i~~n`ai , Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-12 01:29:56 + : CPU: 0.9% RAM: 7.7% Upload: 4.26 KB/s Download: 0.83 KB/s -2023-06-12 01:30:56 + : CPU: 0.5% RAM: 7.7% Upload: 1.63 KB/s Download: 0.39 KB/s -2023-06-12 01:31:56 + : CPU: 0.5% RAM: 7.7% Upload: 0.21 KB/s Download: 0.34 KB/s -2023-06-12 01:32:56 + : CPU: 0.4% RAM: 7.7% Upload: 0.26 KB/s Download: 0.52 KB/s -2023-06-12 01:33:56 + : CPU: 6.2% RAM: 7.9% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-12 01:34:56 + : CPU: 1.4% RAM: 7.9% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-12 01:35:56 + : CPU: 1.8% RAM: 7.9% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-12 01:36:56 + : CPU: 1.7% RAM: 7.9% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-12 01:37:56 + : CPU: 1.6% RAM: 7.9% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-12 20:28:54 + : Server started -2023-06-12 20:29:53 + : CPU: 0.3% RAM: 6.8% Upload: 0.20 KB/s Download: 0.58 KB/s -2023-06-12 20:30:53 + : CPU: 0.4% RAM: 6.8% Upload: 0.80 KB/s Download: 0.30 KB/s -2023-06-12 20:31:53 + : CPU: 0.4% RAM: 6.8% Upload: 0.15 KB/s Download: 0.33 KB/s -2023-06-12 20:32:53 + : CPU: 0.4% RAM: 6.9% Upload: 0.16 KB/s Download: 0.33 KB/s -2023-06-12 20:33:53 + : CPU: 0.4% RAM: 6.9% Upload: 0.19 KB/s Download: 0.46 KB/s -2023-06-12 20:34:53 + : CPU: 0.4% RAM: 6.9% Upload: 0.17 KB/s Download: 0.34 KB/s -2023-06-12 20:35:53 + : CPU: 0.3% RAM: 6.9% Upload: 0.24 KB/s Download: 0.46 KB/s -2023-06-12 20:36:53 + : CPU: 0.4% RAM: 7.0% Upload: 0.33 KB/s Download: 0.47 KB/s -2023-06-12 20:37:53 + : CPU: 0.4% RAM: 7.0% Upload: 0.40 KB/s Download: 0.61 KB/s -2023-06-12 20:38:53 + : CPU: 0.4% RAM: 7.0% Upload: 5.14 KB/s Download: 0.82 KB/s -2023-06-12 20:39:53 + : CPU: 0.4% RAM: 7.0% Upload: 0.37 KB/s Download: 0.62 KB/s -2023-06-12 20:40:53 + : CPU: 0.4% RAM: 7.0% Upload: 0.25 KB/s Download: 0.43 KB/s -2023-06-12 20:41:53 + : CPU: 0.4% RAM: 7.0% Upload: 0.30 KB/s Download: 0.50 KB/s -2023-06-12 20:42:53 + : CPU: 0.4% RAM: 7.0% Upload: 0.23 KB/s Download: 0.42 KB/s -2023-06-12 20:43:53 + : CPU: 0.5% RAM: 7.1% Upload: 8.71 KB/s Download: 0.50 KB/s -2023-06-12 20:44:53 + : CPU: 0.4% RAM: 7.1% Upload: 0.30 KB/s Download: 0.57 KB/s -2023-06-12 20:45:53 + : CPU: 0.4% RAM: 7.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 20:46:53 + : CPU: 0.4% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 20:47:53 + : CPU: 0.4% RAM: 7.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 20:48:53 + : CPU: 0.4% RAM: 7.1% Upload: 0.13 KB/s Download: 0.47 KB/s -2023-06-12 20:49:53 + : CPU: 0.3% RAM: 7.1% Upload: 0.11 KB/s Download: 0.44 KB/s -2023-06-12 20:50:53 + : CPU: 0.4% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-12 20:51:53 + : CPU: 0.4% RAM: 7.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 20:52:53 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 20:53:53 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 20:54:53 + : CPU: 0.4% RAM: 7.2% Upload: 0.10 KB/s Download: 0.37 KB/s -2023-06-12 20:55:53 + : CPU: 0.4% RAM: 7.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 20:56:53 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 20:57:53 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 20:58:53 + : CPU: 0.4% RAM: 7.2% Upload: 0.21 KB/s Download: 0.68 KB/s -2023-06-12 20:59:53 + : CPU: 0.4% RAM: 7.2% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-12 21:00:53 + : CPU: 0.4% RAM: 7.3% Upload: 1.48 KB/s Download: 0.32 KB/s -2023-06-12 21:01:53 + : CPU: 0.4% RAM: 7.3% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 21:02:54 + : CPU: 0.4% RAM: 7.3% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 21:03:54 + : CPU: 0.3% RAM: 7.3% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 21:04:54 + : CPU: 0.4% RAM: 7.3% Upload: 2.92 KB/s Download: 0.48 KB/s -2023-06-12 21:05:54 + : CPU: 0.4% RAM: 7.4% Upload: 1.47 KB/s Download: 0.26 KB/s -2023-06-12 21:06:54 + : CPU: 0.4% RAM: 7.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 21:07:54 + : CPU: 0.4% RAM: 7.4% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 21:08:54 + : CPU: 0.4% RAM: 7.4% Upload: 0.13 KB/s Download: 0.47 KB/s -2023-06-12 21:09:54 + : CPU: 0.4% RAM: 7.4% Upload: 0.10 KB/s Download: 0.37 KB/s -2023-06-12 21:10:54 + : CPU: 0.4% RAM: 7.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 21:11:54 + : CPU: 0.4% RAM: 7.4% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 21:12:54 + : CPU: 0.3% RAM: 7.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 21:13:54 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 21:14:54 + : CPU: 0.4% RAM: 7.5% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-12 21:15:54 + : CPU: 0.4% RAM: 7.5% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-12 21:16:54 + : CPU: 0.3% RAM: 7.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 21:17:54 + : CPU: 0.3% RAM: 7.5% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-12 21:18:54 + : CPU: 0.4% RAM: 7.5% Upload: 0.15 KB/s Download: 0.47 KB/s -2023-06-12 21:19:54 + : CPU: 0.4% RAM: 7.5% Upload: 0.12 KB/s Download: 0.39 KB/s -2023-06-12 21:20:54 + : CPU: 0.3% RAM: 7.5% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-12 21:21:54 + : CPU: 0.3% RAM: 7.5% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-12 21:22:54 + : CPU: 0.3% RAM: 7.6% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-12 21:23:54 + : CPU: 0.3% RAM: 7.6% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-12 21:24:54 + : CPU: 0.4% RAM: 7.6% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-12 21:25:54 + : CPU: 0.4% RAM: 7.6% Upload: 1.52 KB/s Download: 0.36 KB/s -2023-06-12 21:26:54 + : CPU: 0.4% RAM: 7.6% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-12 21:27:54 + : CPU: 0.5% RAM: 7.6% Upload: 0.15 KB/s Download: 0.47 KB/s -2023-06-12 21:28:54 + : CPU: 0.5% RAM: 7.6% Upload: 1.61 KB/s Download: 0.60 KB/s -2023-06-12 21:29:54 + : CPU: 0.4% RAM: 7.6% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-12 21:30:54 + : CPU: 0.5% RAM: 7.7% Upload: 0.10 KB/s Download: 0.28 KB/s -2023-06-12 21:31:54 + : CPU: 0.4% RAM: 7.7% Upload: 0.25 KB/s Download: 0.34 KB/s -2023-06-12 21:32:54 + : CPU: 0.3% RAM: 7.7% Upload: 1.49 KB/s Download: 0.34 KB/s -2023-06-12 21:33:54 + : CPU: 0.3% RAM: 7.7% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 21:34:54 + : CPU: 0.3% RAM: 7.7% Upload: 0.12 KB/s Download: 0.37 KB/s -2023-06-12 21:35:54 + : CPU: 0.4% RAM: 7.7% Upload: 0.10 KB/s Download: 0.33 KB/s -2023-06-12 21:36:54 + : CPU: 0.4% RAM: 7.7% Upload: 1.48 KB/s Download: 0.33 KB/s -2023-06-12 21:37:54 + : CPU: 0.4% RAM: 7.7% Upload: 1.54 KB/s Download: 0.39 KB/s -2023-06-12 21:38:54 + : CPU: 0.4% RAM: 7.7% Upload: 1.56 KB/s Download: 0.57 KB/s -2023-06-12 21:39:54 + : CPU: 0.3% RAM: 7.8% Upload: 0.10 KB/s Download: 0.26 KB/s -2023-06-12 21:40:54 + : CPU: 0.4% RAM: 7.8% Upload: 0.17 KB/s Download: 0.48 KB/s -2023-06-12 21:41:54 + : CPU: 0.4% RAM: 7.8% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-12 21:42:54 + : CPU: 0.4% RAM: 7.8% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-12 21:43:54 + : CPU: 0.4% RAM: 7.8% Upload: 2.92 KB/s Download: 0.46 KB/s -2023-06-12 21:44:54 + : CPU: 0.4% RAM: 7.9% Upload: 2.56 KB/s Download: 0.40 KB/s -2023-06-12 21:45:54 + : CPU: 0.4% RAM: 7.9% Upload: 1.52 KB/s Download: 0.38 KB/s -2023-06-12 21:46:54 + : CPU: 0.4% RAM: 7.9% Upload: 2.94 KB/s Download: 0.43 KB/s -2023-06-12 21:47:54 + : CPU: 0.4% RAM: 7.9% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-12 21:48:54 + : CPU: 0.4% RAM: 8.0% Upload: 4.03 KB/s Download: 0.65 KB/s -2023-06-12 21:49:55 + : CPU: 0.4% RAM: 8.0% Upload: 0.22 KB/s Download: 0.40 KB/s -2023-06-12 21:50:55 + : CPU: 0.4% RAM: 8.0% Upload: 13.10 KB/s Download: 0.38 KB/s -2023-06-12 21:51:55 + : CPU: 0.4% RAM: 8.0% Upload: 13.46 KB/s Download: 0.33 KB/s -2023-06-12 21:52:55 + : CPU: 0.4% RAM: 8.0% Upload: 0.18 KB/s Download: 0.32 KB/s -2023-06-12 21:53:55 + : CPU: 0.4% RAM: 8.1% Upload: 1.51 KB/s Download: 0.35 KB/s -2023-06-12 21:54:55 + : CPU: 0.3% RAM: 8.1% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-12 21:55:55 + : CPU: 0.3% RAM: 8.1% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-12 21:56:55 + : CPU: 0.4% RAM: 8.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 21:57:55 + : CPU: 0.4% RAM: 8.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 21:58:55 + : CPU: 0.4% RAM: 8.1% Upload: 0.14 KB/s Download: 0.47 KB/s -2023-06-12 21:59:55 + : CPU: 0.3% RAM: 8.1% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-12 22:00:55 + : CPU: 0.4% RAM: 8.1% Upload: 0.13 KB/s Download: 0.30 KB/s -2023-06-12 22:01:55 + : CPU: 0.3% RAM: 8.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 22:02:55 + : CPU: 0.3% RAM: 8.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 22:03:55 + : CPU: 0.3% RAM: 8.1% Upload: 0.05 KB/s Download: 0.15 KB/s -2023-06-12 22:04:55 + : CPU: 0.3% RAM: 8.2% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-12 22:05:55 + : CPU: 0.4% RAM: 8.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-12 22:06:55 + : CPU: 0.4% RAM: 8.2% Upload: 0.09 KB/s Download: 0.31 KB/s -2023-06-12 22:07:55 + : CPU: 0.3% RAM: 8.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 22:08:55 + : CPU: 0.3% RAM: 8.2% Upload: 0.14 KB/s Download: 0.46 KB/s -2023-06-12 22:09:55 + : CPU: 0.3% RAM: 8.2% Upload: 0.18 KB/s Download: 0.57 KB/s -2023-06-12 22:10:55 + : CPU: 0.3% RAM: 8.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 22:11:55 + : CPU: 0.3% RAM: 8.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 22:12:55 + : CPU: 0.3% RAM: 8.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 22:13:55 + : CPU: 0.3% RAM: 8.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 22:14:55 + : CPU: 0.3% RAM: 8.2% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-12 22:15:55 + : CPU: 0.3% RAM: 8.3% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 22:16:55 + : CPU: 0.3% RAM: 8.3% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 22:17:55 + : CPU: 0.4% RAM: 8.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-12 22:18:55 + : CPU: 0.3% RAM: 8.3% Upload: 0.14 KB/s Download: 0.46 KB/s -2023-06-12 22:19:55 + : CPU: 0.4% RAM: 8.3% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-12 22:20:55 + : CPU: 0.4% RAM: 8.3% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 22:21:55 + : CPU: 0.3% RAM: 8.3% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 22:22:55 + : CPU: 0.3% RAM: 8.3% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 22:23:55 + : CPU: 0.4% RAM: 8.4% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 22:24:55 + : CPU: 0.4% RAM: 8.4% Upload: 0.12 KB/s Download: 0.42 KB/s -2023-06-12 22:25:55 + : CPU: 0.4% RAM: 8.4% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 22:26:56 + : CPU: 0.4% RAM: 8.4% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-12 22:27:56 + : CPU: 0.4% RAM: 8.4% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 22:28:56 + : CPU: 0.4% RAM: 8.4% Upload: 0.14 KB/s Download: 0.47 KB/s -2023-06-12 22:29:56 + : CPU: 0.3% RAM: 8.4% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-12 22:30:56 + : CPU: 0.3% RAM: 8.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 22:31:56 + : CPU: 0.3% RAM: 8.5% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 22:32:56 + : CPU: 0.3% RAM: 8.5% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-12 22:33:56 + : CPU: 0.4% RAM: 8.5% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 22:34:56 + : CPU: 0.4% RAM: 8.5% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-12 22:35:56 + : CPU: 0.3% RAM: 8.5% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 22:36:56 + : CPU: 0.3% RAM: 8.5% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 22:37:56 + : CPU: 0.3% RAM: 8.5% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 22:38:56 + : CPU: 0.3% RAM: 8.5% Upload: 0.14 KB/s Download: 0.46 KB/s -2023-06-12 22:39:56 + : CPU: 0.4% RAM: 8.6% Upload: 0.17 KB/s Download: 0.57 KB/s -2023-06-12 22:40:56 + : CPU: 0.3% RAM: 8.6% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 22:41:56 + : CPU: 0.3% RAM: 8.6% Upload: 0.06 KB/s Download: 0.16 KB/s -2023-06-12 22:42:56 + : CPU: 0.3% RAM: 8.6% Upload: 0.06 KB/s Download: 0.24 KB/s -2023-06-12 22:43:56 + : CPU: 0.3% RAM: 8.6% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 22:44:56 + : CPU: 0.3% RAM: 8.6% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-12 22:45:56 + : CPU: 0.3% RAM: 8.6% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 22:46:56 + : CPU: 0.3% RAM: 8.6% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 22:47:56 + : CPU: 0.3% RAM: 8.6% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 22:48:56 + : CPU: 0.3% RAM: 8.7% Upload: 0.15 KB/s Download: 0.54 KB/s -2023-06-12 22:49:56 + : CPU: 0.4% RAM: 8.7% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-12 22:50:56 + : CPU: 0.4% RAM: 8.7% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-12 22:51:56 + : CPU: 0.3% RAM: 8.7% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-12 22:52:56 + : CPU: 0.3% RAM: 8.7% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-12 22:53:56 + : CPU: 0.3% RAM: 8.7% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-12 22:54:56 + : CPU: 0.3% RAM: 8.7% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-12 22:55:56 + : CPU: 0.3% RAM: 8.7% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 22:56:56 + : CPU: 0.3% RAM: 8.7% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 22:57:56 + : CPU: 0.3% RAM: 8.8% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 22:58:57 + : CPU: 0.3% RAM: 8.8% Upload: 0.14 KB/s Download: 0.46 KB/s -2023-06-12 22:59:57 + : CPU: 0.3% RAM: 8.8% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-12 23:00:57 + : CPU: 0.3% RAM: 8.8% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 23:01:57 + : CPU: 0.3% RAM: 8.8% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 23:02:57 + : CPU: 0.4% RAM: 8.8% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 23:03:57 + : CPU: 0.4% RAM: 8.8% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 23:04:57 + : CPU: 0.3% RAM: 8.8% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-12 23:05:57 + : CPU: 0.3% RAM: 8.8% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 23:06:57 + : CPU: 0.3% RAM: 8.9% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-12 23:07:57 + : CPU: 0.3% RAM: 8.9% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 23:08:57 + : CPU: 0.4% RAM: 8.9% Upload: 0.20 KB/s Download: 0.71 KB/s -2023-06-12 23:09:57 + : CPU: 0.3% RAM: 8.9% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-12 23:10:57 + : CPU: 0.4% RAM: 8.9% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 23:11:57 + : CPU: 0.3% RAM: 8.9% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-12 23:12:57 + : CPU: 0.3% RAM: 8.9% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 23:13:57 + : CPU: 0.3% RAM: 8.9% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-12 23:14:57 + : CPU: 0.3% RAM: 8.9% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-12 23:15:57 + : CPU: 0.4% RAM: 9.0% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-12 23:16:57 + : CPU: 0.3% RAM: 9.0% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-12 23:17:57 + : CPU: 0.4% RAM: 9.0% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-12 23:18:57 + : CPU: 0.3% RAM: 9.0% Upload: 0.14 KB/s Download: 0.47 KB/s -2023-06-12 23:19:57 + : CPU: 0.4% RAM: 9.0% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-12 23:20:57 + : CPU: 0.3% RAM: 9.0% Upload: 0.07 KB/s Download: 0.25 KB/s -2023-06-12 23:21:57 + : CPU: 0.3% RAM: 9.0% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-12 23:22:57 + : CPU: 0.4% RAM: 9.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 23:23:57 + : CPU: 0.4% RAM: 9.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 23:24:57 + : CPU: 0.4% RAM: 9.1% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-12 23:25:57 + : CPU: 0.4% RAM: 9.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-12 23:26:57 + : CPU: 0.4% RAM: 9.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-12 23:27:57 + : CPU: 0.4% RAM: 9.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-12 23:31:15 + : Server started -2023-06-12 23:32:13 + : CPU: 0.5% RAM: 6.8% Upload: 0.25 KB/s Download: 0.77 KB/s -2023-06-12 23:33:14 + : CPU: 0.4% RAM: 6.9% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-12 23:34:14 + : CPU: 0.4% RAM: 6.9% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-12 23:35:14 + : CPU: 0.4% RAM: 6.9% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-12 23:36:14 + : CPU: 0.4% RAM: 6.9% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-12 23:37:14 + : CPU: 0.4% RAM: 6.9% Upload: 0.10 KB/s Download: 0.28 KB/s -2023-06-12 23:38:14 + : CPU: 0.4% RAM: 6.9% Upload: 0.10 KB/s Download: 0.26 KB/s -2023-06-12 23:39:00 + : updating custom perks, request from web -2023-06-12 23:39:14 + : CPU: 0.4% RAM: 6.9% Upload: 0.12 KB/s Download: 0.32 KB/s -2023-06-12 23:40:14 + : CPU: 0.4% RAM: 6.9% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-12 23:41:14 + : CPU: 0.4% RAM: 7.0% Upload: 0.17 KB/s Download: 0.64 KB/s -2023-06-12 23:42:14 + : CPU: 0.4% RAM: 7.0% Upload: 0.14 KB/s Download: 0.37 KB/s -2023-06-12 23:43:14 + : CPU: 0.4% RAM: 7.0% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-12 23:44:14 + : CPU: 0.4% RAM: 7.0% Upload: 0.10 KB/s Download: 0.26 KB/s -2023-06-12 23:45:14 + : CPU: 0.4% RAM: 7.0% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-12 23:46:14 + : CPU: 0.4% RAM: 7.0% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-12 23:47:14 + : CPU: 0.4% RAM: 7.0% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-12 23:48:14 + : CPU: 0.4% RAM: 7.0% Upload: 0.10 KB/s Download: 0.26 KB/s -2023-06-12 23:49:14 + : CPU: 0.4% RAM: 7.0% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-12 23:50:14 + : CPU: 0.4% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-12 23:51:14 + : CPU: 0.4% RAM: 7.1% Upload: 0.15 KB/s Download: 0.51 KB/s -2023-06-12 23:52:14 + : CPU: 0.4% RAM: 7.1% Upload: 0.12 KB/s Download: 0.37 KB/s -2023-06-12 23:53:14 + : CPU: 0.4% RAM: 7.1% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-12 23:54:14 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-12 23:55:14 + : CPU: 0.4% RAM: 7.1% Upload: 0.10 KB/s Download: 0.31 KB/s -2023-06-12 23:56:14 + : CPU: 0.4% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-12 23:57:14 + : CPU: 0.4% RAM: 7.1% Upload: 0.12 KB/s Download: 0.39 KB/s -2023-06-12 23:58:14 + : CPU: 0.4% RAM: 7.2% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-12 23:59:14 + : CPU: 0.4% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 00:00:15 + : CPU: 0.4% RAM: 7.2% Upload: 0.10 KB/s Download: 0.26 KB/s -2023-06-13 00:01:15 + : CPU: 0.4% RAM: 7.2% Upload: 0.21 KB/s Download: 0.73 KB/s -2023-06-13 00:02:15 + : CPU: 0.3% RAM: 7.2% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-13 00:03:15 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-13 00:04:15 + : CPU: 0.4% RAM: 7.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-13 00:05:15 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 00:06:15 + : CPU: 0.4% RAM: 7.3% Upload: 0.15 KB/s Download: 0.38 KB/s -2023-06-13 00:07:15 + : CPU: 0.4% RAM: 7.3% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-13 00:08:15 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 00:09:15 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-13 00:10:15 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 00:11:15 + : CPU: 0.4% RAM: 7.3% Upload: 0.15 KB/s Download: 0.50 KB/s -2023-06-13 00:12:15 + : CPU: 0.4% RAM: 7.3% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-13 00:13:15 + : CPU: 0.4% RAM: 7.4% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-13 00:14:15 + : CPU: 0.4% RAM: 7.4% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-13 00:15:15 + : CPU: 0.4% RAM: 7.4% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-13 00:16:15 + : CPU: 0.4% RAM: 7.4% Upload: 0.14 KB/s Download: 0.39 KB/s -2023-06-13 00:17:15 + : CPU: 0.4% RAM: 7.4% Upload: 0.12 KB/s Download: 0.40 KB/s -2023-06-13 00:18:15 + : CPU: 0.4% RAM: 7.4% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-13 00:19:15 + : CPU: 0.4% RAM: 7.4% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-13 00:20:15 + : CPU: 0.4% RAM: 7.4% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-13 00:21:15 + : CPU: 0.4% RAM: 7.4% Upload: 0.14 KB/s Download: 0.51 KB/s -2023-06-13 00:22:16 + : CPU: 0.4% RAM: 7.5% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-13 00:23:16 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-13 00:24:16 + : CPU: 0.4% RAM: 7.5% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-13 00:25:16 + : CPU: 0.4% RAM: 7.5% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-13 00:26:16 + : CPU: 0.4% RAM: 7.5% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-13 00:27:16 + : CPU: 0.4% RAM: 7.5% Upload: 0.12 KB/s Download: 0.39 KB/s -2023-06-13 00:28:16 + : CPU: 0.5% RAM: 7.5% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 00:29:16 + : CPU: 0.4% RAM: 7.5% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 00:34:56 + : Server started -2023-06-13 00:35:55 + : CPU: 0.5% RAM: 6.8% Upload: 0.25 KB/s Download: 0.73 KB/s -2023-06-13 00:36:55 + : CPU: 0.4% RAM: 6.9% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-13 00:37:55 + : CPU: 0.4% RAM: 6.9% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 00:38:55 + : CPU: 0.4% RAM: 6.9% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-13 00:39:55 + : CPU: 0.3% RAM: 6.9% Upload: 0.12 KB/s Download: 0.40 KB/s -2023-06-13 00:40:55 + : CPU: 0.4% RAM: 6.9% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-13 00:41:55 + : CPU: 0.4% RAM: 6.9% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-13 00:42:55 + : CPU: 0.4% RAM: 7.0% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-13 00:43:55 + : CPU: 0.4% RAM: 7.0% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 00:44:55 + : CPU: 0.4% RAM: 7.0% Upload: 0.18 KB/s Download: 0.66 KB/s -2023-06-13 00:45:55 + : CPU: 0.4% RAM: 7.0% Upload: 0.15 KB/s Download: 0.44 KB/s -2023-06-13 00:46:55 + : CPU: 0.3% RAM: 7.0% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 00:47:55 + : CPU: 0.4% RAM: 7.0% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 00:48:55 + : CPU: 0.3% RAM: 7.0% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-13 00:49:55 + : CPU: 0.4% RAM: 7.0% Upload: 0.12 KB/s Download: 0.39 KB/s -2023-06-13 00:50:55 + : CPU: 0.4% RAM: 7.1% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-13 00:51:55 + : CPU: 0.4% RAM: 7.1% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-13 00:52:55 + : CPU: 0.4% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-13 00:53:55 + : CPU: 0.4% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 00:54:55 + : CPU: 0.4% RAM: 7.1% Upload: 0.18 KB/s Download: 0.61 KB/s -2023-06-13 00:55:55 + : CPU: 0.4% RAM: 7.1% Upload: 0.16 KB/s Download: 0.40 KB/s -2023-06-13 00:56:56 + : CPU: 0.4% RAM: 7.1% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-13 00:57:56 + : CPU: 0.4% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 00:58:56 + : CPU: 0.4% RAM: 7.2% Upload: 0.10 KB/s Download: 0.28 KB/s -2023-06-13 00:59:56 + : CPU: 0.4% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 01:00:56 + : CPU: 0.4% RAM: 7.2% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-13 01:01:56 + : CPU: 0.4% RAM: 7.2% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-13 01:02:56 + : CPU: 0.4% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 01:03:56 + : CPU: 0.4% RAM: 7.2% Upload: 0.10 KB/s Download: 0.28 KB/s -2023-06-13 01:04:56 + : CPU: 0.4% RAM: 7.2% Upload: 0.21 KB/s Download: 0.72 KB/s -2023-06-13 01:05:56 + : CPU: 0.4% RAM: 7.2% Upload: 0.19 KB/s Download: 0.49 KB/s -2023-06-13 01:06:56 + : CPU: 0.4% RAM: 7.2% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-13 01:07:56 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-13 01:08:56 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-13 01:09:56 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 01:10:56 + : CPU: 0.4% RAM: 7.3% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-13 01:11:56 + : CPU: 0.4% RAM: 7.3% Upload: 0.06 KB/s Download: 0.18 KB/s -2023-06-13 01:12:56 + : CPU: 0.5% RAM: 7.3% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-13 01:13:56 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-13 01:14:56 + : CPU: 0.5% RAM: 7.4% Upload: 0.15 KB/s Download: 0.49 KB/s -2023-06-13 01:15:56 + : CPU: 0.4% RAM: 7.4% Upload: 0.12 KB/s Download: 0.41 KB/s -2023-06-13 01:16:56 + : CPU: 0.4% RAM: 7.4% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-13 01:17:56 + : CPU: 0.4% RAM: 7.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 01:18:56 + : CPU: 0.5% RAM: 7.4% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-13 01:19:56 + : CPU: 0.5% RAM: 7.4% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-13 01:20:56 + : CPU: 0.4% RAM: 7.4% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-13 01:21:56 + : CPU: 0.4% RAM: 7.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 01:27:40 + : Server started -2023-06-13 01:28:39 + : CPU: 0.5% RAM: 6.8% Upload: 0.27 KB/s Download: 0.92 KB/s -2023-06-13 01:29:39 + : CPU: 0.4% RAM: 6.8% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-13 01:30:39 + : CPU: 0.4% RAM: 6.9% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-13 01:31:39 + : CPU: 0.4% RAM: 6.9% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-13 01:32:39 + : CPU: 0.4% RAM: 6.9% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-13 20:41:59 + : Server started -2023-06-13 20:42:58 + : CPU: 0.5% RAM: 6.8% Upload: 0.25 KB/s Download: 0.69 KB/s -2023-06-13 20:43:58 + : CPU: 0.6% RAM: 6.9% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-13 20:44:58 + : CPU: 0.6% RAM: 6.9% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-13 20:45:58 + : CPU: 0.6% RAM: 6.9% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-13 20:46:58 + : CPU: 0.5% RAM: 6.9% Upload: 0.10 KB/s Download: 0.35 KB/s -2023-06-13 20:47:58 + : CPU: 0.6% RAM: 6.9% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-13 20:48:58 + : CPU: 0.5% RAM: 7.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-13 20:49:58 + : CPU: 0.6% RAM: 7.0% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-13 20:50:58 + : CPU: 0.5% RAM: 7.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-13 20:51:58 + : CPU: 0.5% RAM: 7.0% Upload: 0.16 KB/s Download: 0.58 KB/s -2023-06-13 20:52:58 + : CPU: 0.5% RAM: 7.0% Upload: 0.13 KB/s Download: 0.38 KB/s -2023-06-13 20:53:58 + : CPU: 0.5% RAM: 7.1% Upload: 1.49 KB/s Download: 0.33 KB/s -2023-06-13 20:54:59 + : CPU: 0.5% RAM: 7.1% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-13 20:55:59 + : CPU: 0.5% RAM: 7.1% Upload: 1.53 KB/s Download: 0.37 KB/s -2023-06-13 20:56:59 + : CPU: 0.6% RAM: 7.1% Upload: 0.28 KB/s Download: 0.53 KB/s -2023-06-13 20:57:59 + : CPU: 0.5% RAM: 7.1% Upload: 0.25 KB/s Download: 0.44 KB/s -2023-06-13 20:58:59 + : CPU: 0.6% RAM: 7.1% Upload: 0.25 KB/s Download: 0.42 KB/s -2023-06-13 20:59:59 + : CPU: 0.5% RAM: 7.1% Upload: 0.23 KB/s Download: 0.41 KB/s -2023-06-13 21:00:59 + : CPU: 0.5% RAM: 7.1% Upload: 0.26 KB/s Download: 0.44 KB/s -2023-06-13 21:01:59 + : CPU: 0.5% RAM: 7.1% Upload: 1.66 KB/s Download: 0.75 KB/s -2023-06-13 21:02:59 + : CPU: 0.5% RAM: 7.2% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-13 21:03:59 + : CPU: 0.5% RAM: 7.2% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-13 21:04:59 + : CPU: 0.6% RAM: 7.2% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-13 21:05:59 + : CPU: 0.5% RAM: 7.2% Upload: 0.10 KB/s Download: 0.24 KB/s -2023-06-13 21:06:59 + : CPU: 0.5% RAM: 7.2% Upload: 0.11 KB/s Download: 0.33 KB/s -2023-06-13 21:07:59 + : CPU: 0.6% RAM: 7.2% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-13 21:08:59 + : CPU: 0.5% RAM: 7.2% Upload: 0.09 KB/s Download: 0.22 KB/s -2023-06-13 21:09:59 + : CPU: 0.5% RAM: 7.3% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-13 21:10:59 + : CPU: 0.6% RAM: 7.3% Upload: 0.08 KB/s Download: 0.22 KB/s -2023-06-13 21:11:59 + : CPU: 0.6% RAM: 7.3% Upload: 0.20 KB/s Download: 0.67 KB/s -2023-06-13 21:12:59 + : CPU: 0.6% RAM: 7.3% Upload: 0.10 KB/s Download: 0.36 KB/s -2023-06-13 21:13:59 + : CPU: 0.6% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 21:14:59 + : CPU: 0.5% RAM: 7.3% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-13 21:15:59 + : CPU: 0.6% RAM: 7.3% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-13 21:16:59 + : CPU: 0.7% RAM: 7.3% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-13 21:17:59 + : CPU: 0.6% RAM: 7.3% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-13 21:19:00 + : CPU: 0.6% RAM: 7.4% Upload: 0.06 KB/s Download: 0.16 KB/s -2023-06-13 21:20:00 + : CPU: 0.6% RAM: 7.4% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-13 21:21:00 + : CPU: 0.6% RAM: 7.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 21:22:00 + : CPU: 0.6% RAM: 7.4% Upload: 0.14 KB/s Download: 0.48 KB/s -2023-06-13 21:23:00 + : CPU: 0.5% RAM: 7.4% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-13 21:24:00 + : CPU: 0.6% RAM: 7.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 21:25:00 + : CPU: 0.5% RAM: 7.4% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-13 21:26:00 + : CPU: 0.5% RAM: 7.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 21:27:00 + : CPU: 0.6% RAM: 7.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-13 21:28:00 + : CPU: 0.5% RAM: 7.5% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-13 21:29:00 + : CPU: 0.5% RAM: 7.5% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 21:30:00 + : CPU: 0.5% RAM: 7.5% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 21:31:00 + : CPU: 0.6% RAM: 7.5% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-13 21:32:00 + : CPU: 0.5% RAM: 7.5% Upload: 0.14 KB/s Download: 0.48 KB/s -2023-06-13 21:33:00 + : CPU: 0.5% RAM: 7.5% Upload: 0.12 KB/s Download: 0.33 KB/s -2023-06-13 21:34:00 + : CPU: 0.6% RAM: 7.5% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-13 21:35:00 + : CPU: 0.5% RAM: 7.6% Upload: 0.08 KB/s Download: 0.22 KB/s -2023-06-13 21:36:00 + : CPU: 0.6% RAM: 7.6% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-13 21:37:00 + : CPU: 0.5% RAM: 7.6% Upload: 0.08 KB/s Download: 0.22 KB/s -2023-06-13 21:38:00 + : CPU: 0.6% RAM: 7.6% Upload: 0.11 KB/s Download: 0.34 KB/s -2023-06-13 21:39:01 + : CPU: 0.5% RAM: 7.6% Upload: 0.09 KB/s Download: 0.22 KB/s -2023-06-13 21:40:01 + : CPU: 0.5% RAM: 7.6% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-13 21:41:01 + : CPU: 0.5% RAM: 7.6% Upload: 0.14 KB/s Download: 0.42 KB/s -2023-06-13 21:42:01 + : CPU: 0.5% RAM: 7.6% Upload: 0.14 KB/s Download: 0.45 KB/s -2023-06-13 21:43:01 + : CPU: 0.5% RAM: 7.6% Upload: 0.10 KB/s Download: 0.32 KB/s -2023-06-13 21:44:01 + : CPU: 0.5% RAM: 7.7% Upload: 1.48 KB/s Download: 0.30 KB/s -2023-06-13 21:45:01 + : CPU: 0.5% RAM: 7.7% Upload: 1.57 KB/s Download: 0.33 KB/s -2023-06-13 21:46:01 + : CPU: 0.6% RAM: 7.7% Upload: 0.08 KB/s Download: 0.24 KB/s -2023-06-13 21:47:01 + : CPU: 0.6% RAM: 7.7% Upload: 0.08 KB/s Download: 0.22 KB/s -2023-06-13 21:48:01 + : CPU: 0.5% RAM: 7.7% Upload: 1.50 KB/s Download: 0.40 KB/s -2023-06-13 21:49:01 + : CPU: 0.6% RAM: 7.7% Upload: 1.48 KB/s Download: 0.29 KB/s -2023-06-13 21:50:01 + : CPU: 0.5% RAM: 7.7% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-13 21:51:01 + : CPU: 0.5% RAM: 7.7% Upload: 1.48 KB/s Download: 0.28 KB/s -2023-06-13 21:52:01 + : CPU: 0.6% RAM: 7.8% Upload: 0.13 KB/s Download: 0.46 KB/s -2023-06-13 21:53:01 + : CPU: 0.5% RAM: 7.8% Upload: 1.51 KB/s Download: 0.42 KB/s -2023-06-13 21:54:01 + : CPU: 0.5% RAM: 7.8% Upload: 1.48 KB/s Download: 0.33 KB/s -2023-06-13 21:55:01 + : CPU: 0.5% RAM: 7.8% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-13 21:56:01 + : CPU: 0.6% RAM: 7.8% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-13 21:57:01 + : CPU: 0.5% RAM: 7.8% Upload: 1.48 KB/s Download: 0.31 KB/s -2023-06-13 21:58:01 + : CPU: 0.5% RAM: 7.8% Upload: 2.88 KB/s Download: 0.38 KB/s -2023-06-13 21:59:01 + : CPU: 0.5% RAM: 7.8% Upload: 2.89 KB/s Download: 0.38 KB/s -2023-06-13 22:00:01 + : CPU: 0.5% RAM: 7.8% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 22:01:01 + : CPU: 0.5% RAM: 7.9% Upload: 0.14 KB/s Download: 0.31 KB/s -2023-06-13 22:02:01 + : CPU: 0.6% RAM: 7.9% Upload: 2.96 KB/s Download: 0.62 KB/s -2023-06-13 22:03:01 + : CPU: 0.5% RAM: 7.9% Upload: 2.91 KB/s Download: 0.49 KB/s -2023-06-13 22:04:01 + : CPU: 0.5% RAM: 7.9% Upload: 1.48 KB/s Download: 0.33 KB/s -2023-06-13 22:05:01 + : CPU: 0.5% RAM: 7.9% Upload: 0.22 KB/s Download: 0.41 KB/s -2023-06-13 22:06:01 + : CPU: 0.5% RAM: 7.9% Upload: 0.11 KB/s Download: 0.29 KB/s -2023-06-13 22:07:01 + : CPU: 0.5% RAM: 7.9% Upload: 1.48 KB/s Download: 0.32 KB/s -2023-06-13 22:08:01 + : CPU: 0.5% RAM: 8.0% Upload: 1.52 KB/s Download: 0.44 KB/s -2023-06-13 22:09:01 + : CPU: 0.5% RAM: 8.0% Upload: 2.88 KB/s Download: 0.38 KB/s -2023-06-13 22:10:01 + : CPU: 0.5% RAM: 8.0% Upload: 1.49 KB/s Download: 0.33 KB/s -2023-06-13 22:11:02 + : CPU: 0.5% RAM: 8.0% Upload: 1.55 KB/s Download: 0.57 KB/s -2023-06-13 22:12:02 + : CPU: 0.6% RAM: 8.0% Upload: 0.13 KB/s Download: 0.48 KB/s -2023-06-13 22:13:02 + : CPU: 0.5% RAM: 8.0% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-13 22:14:02 + : CPU: 0.5% RAM: 8.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-13 22:15:02 + : CPU: 0.4% RAM: 8.1% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-13 22:16:02 + : CPU: 0.3% RAM: 8.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 22:17:02 + : CPU: 0.3% RAM: 8.1% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-13 22:18:02 + : CPU: 0.4% RAM: 8.1% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-13 22:19:02 + : CPU: 0.4% RAM: 8.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-13 22:20:02 + : CPU: 0.3% RAM: 8.1% Upload: 1.49 KB/s Download: 0.33 KB/s -2023-06-13 22:21:02 + : CPU: 0.3% RAM: 8.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-13 22:22:02 + : CPU: 0.4% RAM: 8.2% Upload: 0.15 KB/s Download: 0.50 KB/s -2023-06-13 22:23:02 + : CPU: 0.4% RAM: 8.2% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-13 22:24:02 + : CPU: 0.4% RAM: 8.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 22:25:02 + : CPU: 0.4% RAM: 8.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-13 22:26:02 + : CPU: 0.4% RAM: 8.2% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-13 22:27:02 + : CPU: 0.3% RAM: 8.2% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-13 22:28:02 + : CPU: 0.4% RAM: 8.2% Upload: 0.12 KB/s Download: 0.39 KB/s -2023-06-13 22:29:02 + : CPU: 0.3% RAM: 8.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-13 22:30:02 + : CPU: 0.3% RAM: 8.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 22:31:02 + : CPU: 0.4% RAM: 8.3% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-13 22:32:02 + : CPU: 0.3% RAM: 8.3% Upload: 0.14 KB/s Download: 0.52 KB/s -2023-06-13 22:33:02 + : CPU: 0.4% RAM: 8.3% Upload: 0.11 KB/s Download: 0.32 KB/s -2023-06-13 22:34:02 + : CPU: 0.4% RAM: 8.3% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-13 22:35:02 + : CPU: 0.4% RAM: 8.3% Upload: 0.09 KB/s Download: 0.22 KB/s -2023-06-13 22:36:02 + : CPU: 0.4% RAM: 8.3% Upload: 0.05 KB/s Download: 0.13 KB/s -2023-06-13 22:37:02 + : CPU: 0.4% RAM: 8.4% Upload: 1.49 KB/s Download: 0.29 KB/s -2023-06-13 22:38:02 + : CPU: 0.3% RAM: 8.4% Upload: 0.11 KB/s Download: 0.34 KB/s -2023-06-13 22:39:02 + : CPU: 0.4% RAM: 8.4% Upload: 0.08 KB/s Download: 0.22 KB/s -2023-06-13 22:40:02 + : CPU: 0.4% RAM: 8.4% Upload: 0.15 KB/s Download: 0.44 KB/s -2023-06-13 22:41:02 + : CPU: 0.4% RAM: 8.4% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-13 22:42:02 + : CPU: 0.5% RAM: 8.4% Upload: 0.14 KB/s Download: 0.45 KB/s -2023-06-13 22:43:02 + : CPU: 0.4% RAM: 8.6% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-13 22:44:02 + : CPU: 0.4% RAM: 8.6% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 22:45:02 + : CPU: 0.3% RAM: 8.6% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-13 22:46:02 + : CPU: 0.3% RAM: 8.6% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 22:47:02 + : CPU: 0.3% RAM: 8.7% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 22:48:02 + : CPU: 0.4% RAM: 8.7% Upload: 1.51 KB/s Download: 0.44 KB/s -2023-06-13 22:49:02 + : CPU: 0.4% RAM: 8.7% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-13 22:50:02 + : CPU: 0.4% RAM: 8.7% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-13 22:51:02 + : CPU: 0.4% RAM: 8.7% Upload: 1.49 KB/s Download: 0.32 KB/s -2023-06-13 22:52:02 + : CPU: 0.4% RAM: 8.7% Upload: 1.55 KB/s Download: 0.55 KB/s -2023-06-13 22:53:03 + : CPU: 0.4% RAM: 8.7% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-13 22:54:03 + : CPU: 0.4% RAM: 8.8% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 22:55:03 + : CPU: 0.4% RAM: 8.8% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-13 22:56:03 + : CPU: 0.4% RAM: 8.8% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-13 22:57:03 + : CPU: 0.3% RAM: 8.8% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-13 22:58:03 + : CPU: 0.3% RAM: 8.8% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-13 22:59:03 + : CPU: 0.4% RAM: 8.8% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-13 23:00:03 + : CPU: 0.4% RAM: 8.8% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-13 23:01:03 + : CPU: 0.4% RAM: 8.8% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-13 23:02:03 + : CPU: 0.4% RAM: 8.8% Upload: 0.14 KB/s Download: 0.48 KB/s -2023-06-13 23:03:03 + : CPU: 0.4% RAM: 8.9% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-13 23:04:03 + : CPU: 0.4% RAM: 8.9% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 23:05:03 + : CPU: 0.3% RAM: 8.9% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-13 23:06:03 + : CPU: 0.4% RAM: 8.9% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 23:07:03 + : CPU: 0.4% RAM: 8.9% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-13 23:08:03 + : CPU: 0.3% RAM: 8.9% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-13 23:09:03 + : CPU: 0.4% RAM: 8.9% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-13 23:10:03 + : CPU: 0.3% RAM: 8.9% Upload: 0.15 KB/s Download: 0.47 KB/s -2023-06-13 23:11:03 + : CPU: 0.3% RAM: 8.9% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-13 23:12:03 + : CPU: 0.3% RAM: 9.0% Upload: 0.14 KB/s Download: 0.49 KB/s -2023-06-13 23:13:03 + : CPU: 0.4% RAM: 9.0% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-13 23:14:03 + : CPU: 0.3% RAM: 9.0% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-13 23:15:03 + : CPU: 0.4% RAM: 9.0% Upload: 0.05 KB/s Download: 0.15 KB/s -2023-06-13 23:16:03 + : CPU: 0.3% RAM: 9.0% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-13 23:17:03 + : CPU: 0.3% RAM: 9.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-13 23:18:03 + : CPU: 0.3% RAM: 9.0% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-13 23:19:03 + : CPU: 0.3% RAM: 9.0% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-13 23:20:03 + : CPU: 0.3% RAM: 9.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-13 23:21:03 + : CPU: 0.3% RAM: 9.1% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-13 23:22:03 + : CPU: 0.3% RAM: 9.1% Upload: 0.14 KB/s Download: 0.48 KB/s -2023-06-13 23:23:03 + : CPU: 0.3% RAM: 9.1% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-13 23:24:03 + : CPU: 0.4% RAM: 9.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 23:25:03 + : CPU: 0.3% RAM: 9.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-13 23:26:03 + : CPU: 0.3% RAM: 9.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-13 23:27:04 + : CPU: 0.4% RAM: 9.1% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-13 23:28:04 + : CPU: 0.4% RAM: 9.1% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-13 23:29:04 + : CPU: 0.4% RAM: 9.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-13 23:30:04 + : CPU: 0.4% RAM: 9.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 23:31:04 + : CPU: 0.4% RAM: 9.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-13 23:32:04 + : CPU: 0.4% RAM: 9.2% Upload: 0.15 KB/s Download: 0.50 KB/s -2023-06-13 23:33:04 + : CPU: 0.3% RAM: 9.2% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-13 23:34:04 + : CPU: 0.4% RAM: 9.2% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-13 23:35:04 + : CPU: 0.4% RAM: 9.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-13 23:36:04 + : CPU: 0.4% RAM: 9.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-13 23:37:04 + : CPU: 0.3% RAM: 9.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-13 23:38:04 + : CPU: 0.3% RAM: 9.3% Upload: 0.12 KB/s Download: 0.39 KB/s -2023-06-13 23:39:04 + : CPU: 0.4% RAM: 9.3% Upload: 0.15 KB/s Download: 0.45 KB/s -2023-06-13 23:40:04 + : CPU: 0.4% RAM: 9.3% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-13 23:41:04 + : CPU: 0.4% RAM: 9.3% Upload: 1.48 KB/s Download: 0.32 KB/s -2023-06-13 23:42:04 + : CPU: 0.4% RAM: 9.3% Upload: 1.54 KB/s Download: 0.55 KB/s -2023-06-13 23:43:04 + : CPU: 0.3% RAM: 9.3% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-13 23:44:04 + : CPU: 0.4% RAM: 9.3% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-13 23:45:04 + : CPU: 0.3% RAM: 9.4% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-13 23:46:04 + : CPU: 0.3% RAM: 9.4% Upload: 1.48 KB/s Download: 0.34 KB/s -2023-06-13 23:47:04 + : CPU: 0.4% RAM: 9.4% Upload: 1.48 KB/s Download: 0.32 KB/s -2023-06-13 23:48:04 + : CPU: 0.4% RAM: 9.4% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-13 23:49:04 + : CPU: 0.4% RAM: 9.4% Upload: 2.19 KB/s Download: 0.35 KB/s -2023-06-13 23:50:04 + : CPU: 0.4% RAM: 9.4% Upload: 0.78 KB/s Download: 0.29 KB/s -2023-06-13 23:51:04 + : CPU: 0.4% RAM: 9.4% Upload: 1.48 KB/s Download: 0.31 KB/s -2023-06-13 23:52:04 + : CPU: 0.4% RAM: 9.4% Upload: 0.14 KB/s Download: 0.50 KB/s -2023-06-13 23:53:04 + : CPU: 0.3% RAM: 9.4% Upload: 0.08 KB/s Download: 0.24 KB/s -2023-06-13 23:54:04 + : CPU: 0.4% RAM: 9.5% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-13 23:55:05 + : CPU: 0.4% RAM: 9.5% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-13 23:56:05 + : CPU: 0.4% RAM: 9.5% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-13 23:57:05 + : CPU: 0.4% RAM: 9.5% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-13 23:58:05 + : CPU: 0.4% RAM: 9.5% Upload: 1.52 KB/s Download: 0.44 KB/s -2023-06-13 23:59:05 + : CPU: 0.5% RAM: 9.5% Upload: 1.48 KB/s Download: 0.31 KB/s -2023-06-14 00:00:05 + : CPU: 0.4% RAM: 9.5% Upload: 1.49 KB/s Download: 0.33 KB/s -2023-06-14 00:01:05 + : CPU: 0.4% RAM: 9.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-14 00:02:05 + : CPU: 0.4% RAM: 9.5% Upload: 1.55 KB/s Download: 0.55 KB/s -2023-06-14 00:03:05 + : CPU: 0.4% RAM: 9.6% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-14 00:04:05 + : CPU: 0.4% RAM: 9.6% Upload: 2.89 KB/s Download: 0.42 KB/s -2023-06-14 00:05:05 + : CPU: 0.4% RAM: 9.6% Upload: 1.49 KB/s Download: 0.32 KB/s -2023-06-14 00:06:05 + : CPU: 0.4% RAM: 9.6% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-14 00:07:05 + : CPU: 0.4% RAM: 9.6% Upload: 1.48 KB/s Download: 0.31 KB/s -2023-06-14 00:08:05 + : CPU: 0.4% RAM: 9.6% Upload: 1.51 KB/s Download: 0.43 KB/s -2023-06-14 00:09:05 + : CPU: 0.3% RAM: 9.6% Upload: 0.15 KB/s Download: 0.45 KB/s -2023-06-14 00:10:05 + : CPU: 0.3% RAM: 9.6% Upload: 0.78 KB/s Download: 0.30 KB/s -2023-06-14 00:11:05 + : CPU: 0.4% RAM: 9.6% Upload: 2.17 KB/s Download: 0.34 KB/s -2023-06-14 00:12:05 + : CPU: 0.4% RAM: 9.6% Upload: 0.13 KB/s Download: 0.47 KB/s -2023-06-14 00:13:05 + : CPU: 0.4% RAM: 9.7% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-14 00:14:05 + : CPU: 0.4% RAM: 9.7% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-14 00:15:05 + : CPU: 0.3% RAM: 9.7% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-14 00:16:05 + : CPU: 0.4% RAM: 9.7% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-14 00:17:05 + : CPU: 0.4% RAM: 9.7% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-14 00:18:05 + : CPU: 0.4% RAM: 9.7% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-14 00:19:05 + : CPU: 0.3% RAM: 9.7% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-14 00:20:05 + : CPU: 0.4% RAM: 9.7% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-14 00:21:05 + : CPU: 0.4% RAM: 9.8% Upload: 1.48 KB/s Download: 0.31 KB/s -2023-06-14 00:22:05 + : CPU: 0.4% RAM: 9.8% Upload: 0.14 KB/s Download: 0.48 KB/s -2023-06-14 00:23:05 + : CPU: 0.4% RAM: 9.8% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-14 00:24:05 + : CPU: 0.4% RAM: 9.8% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-14 00:25:05 + : CPU: 0.3% RAM: 9.8% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-14 00:26:05 + : CPU: 0.4% RAM: 9.8% Upload: 0.09 KB/s Download: 0.32 KB/s -2023-06-14 00:27:06 + : CPU: 0.4% RAM: 9.8% Upload: 1.49 KB/s Download: 0.32 KB/s -2023-06-14 00:28:06 + : CPU: 0.4% RAM: 9.8% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-14 00:29:06 + : CPU: 0.4% RAM: 9.8% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-14 00:30:06 + : CPU: 0.4% RAM: 9.9% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-14 00:31:06 + : CPU: 0.4% RAM: 9.9% Upload: 0.06 KB/s Download: 0.14 KB/s -2023-06-14 00:32:06 + : CPU: 0.4% RAM: 9.9% Upload: 0.13 KB/s Download: 0.48 KB/s -2023-06-14 00:33:06 + : CPU: 0.4% RAM: 9.9% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-14 00:34:06 + : CPU: 0.4% RAM: 9.9% Upload: 0.10 KB/s Download: 0.30 KB/s -2023-06-14 00:35:06 + : CPU: 0.4% RAM: 9.9% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-14 00:36:06 + : CPU: 0.4% RAM: 9.9% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-14 00:37:06 + : CPU: 0.4% RAM: 9.9% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-14 00:38:06 + : CPU: 0.4% RAM: 9.9% Upload: 0.16 KB/s Download: 0.57 KB/s -2023-06-14 00:39:06 + : CPU: 0.5% RAM: 10.0% Upload: 0.11 KB/s Download: 0.28 KB/s -2023-06-14 00:40:06 + : CPU: 0.5% RAM: 10.0% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-14 00:41:06 + : CPU: 0.4% RAM: 10.0% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-14 00:42:06 + : CPU: 0.4% RAM: 10.0% Upload: 0.16 KB/s Download: 0.49 KB/s -2023-06-14 00:43:06 + : CPU: 0.4% RAM: 10.0% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-14 00:44:06 + : CPU: 0.4% RAM: 10.0% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-14 00:45:06 + : CPU: 0.4% RAM: 10.0% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-14 00:46:06 + : CPU: 0.5% RAM: 10.0% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-14 00:47:06 + : CPU: 0.4% RAM: 10.1% Upload: 0.09 KB/s Download: 0.31 KB/s -2023-06-14 00:48:06 + : CPU: 0.4% RAM: 10.1% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-14 00:49:06 + : CPU: 0.4% RAM: 10.1% Upload: 0.10 KB/s Download: 0.26 KB/s -2023-06-14 00:50:06 + : CPU: 0.4% RAM: 10.1% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-14 00:51:06 + : CPU: 0.4% RAM: 10.1% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-14 00:52:06 + : CPU: 0.5% RAM: 10.1% Upload: 0.15 KB/s Download: 0.50 KB/s -2023-06-14 00:53:06 + : CPU: 0.4% RAM: 10.1% Upload: 0.12 KB/s Download: 0.40 KB/s -2023-06-14 00:54:06 + : CPU: 0.4% RAM: 10.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-14 00:55:06 + : CPU: 0.4% RAM: 10.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-14 00:56:06 + : CPU: 0.4% RAM: 10.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-14 00:57:06 + : CPU: 0.4% RAM: 10.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-14 00:58:06 + : CPU: 0.4% RAM: 10.2% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-14 00:59:07 + : CPU: 0.4% RAM: 10.2% Upload: 0.10 KB/s Download: 0.26 KB/s -2023-06-14 01:00:07 + : CPU: 0.5% RAM: 10.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-14 01:01:07 + : CPU: 0.4% RAM: 10.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-14 01:02:07 + : CPU: 0.4% RAM: 10.2% Upload: 0.16 KB/s Download: 0.53 KB/s -2023-06-14 01:03:07 + : CPU: 0.5% RAM: 10.2% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-14 01:04:07 + : CPU: 0.4% RAM: 10.3% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-14 01:05:07 + : CPU: 0.4% RAM: 10.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-14 01:06:07 + : CPU: 0.4% RAM: 10.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-14 01:07:07 + : CPU: 0.4% RAM: 10.3% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-14 01:08:07 + : CPU: 0.4% RAM: 10.3% Upload: 0.18 KB/s Download: 0.58 KB/s -2023-06-14 01:09:07 + : CPU: 0.4% RAM: 10.3% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-14 01:10:07 + : CPU: 0.4% RAM: 10.3% Upload: 1.44 KB/s Download: 0.21 KB/s -2023-06-14 01:11:07 + : CPU: 0.4% RAM: 10.3% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-14 01:12:07 + : CPU: 0.4% RAM: 10.4% Upload: 0.13 KB/s Download: 0.48 KB/s -2023-06-14 01:13:07 + : CPU: 0.3% RAM: 10.4% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-14 01:14:07 + : CPU: 0.4% RAM: 10.4% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-14 01:15:07 + : CPU: 0.4% RAM: 10.4% Upload: 1.48 KB/s Download: 0.31 KB/s -2023-06-14 01:16:07 + : CPU: 0.4% RAM: 10.4% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-14 01:17:07 + : CPU: 0.4% RAM: 10.4% Upload: 1.48 KB/s Download: 0.32 KB/s -2023-06-14 01:18:07 + : CPU: 0.5% RAM: 10.4% Upload: 0.81 KB/s Download: 0.40 KB/s -2023-06-14 01:19:07 + : CPU: 0.4% RAM: 10.4% Upload: 0.78 KB/s Download: 0.33 KB/s -2023-06-14 01:20:07 + : CPU: 0.4% RAM: 10.4% Upload: 1.48 KB/s Download: 0.33 KB/s -2023-06-14 01:21:07 + : CPU: 0.4% RAM: 10.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-14 01:22:07 + : CPU: 0.4% RAM: 10.5% Upload: 0.14 KB/s Download: 0.48 KB/s -2023-06-14 01:23:07 + : CPU: 0.3% RAM: 10.5% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-14 01:24:07 + : CPU: 0.4% RAM: 10.5% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-14 01:25:07 + : CPU: 0.3% RAM: 10.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-14 01:26:07 + : CPU: 0.4% RAM: 10.5% Upload: 1.48 KB/s Download: 0.33 KB/s -2023-06-14 01:27:07 + : CPU: 0.3% RAM: 10.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-14 01:28:07 + : CPU: 0.4% RAM: 10.5% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-14 01:29:08 + : CPU: 0.4% RAM: 10.6% Upload: 1.48 KB/s Download: 0.32 KB/s -2023-06-14 01:30:08 + : CPU: 0.4% RAM: 10.6% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-14 01:31:08 + : CPU: 0.4% RAM: 10.6% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-14 01:32:08 + : CPU: 0.5% RAM: 10.6% Upload: 1.54 KB/s Download: 0.56 KB/s -2023-06-14 01:33:08 + : CPU: 0.4% RAM: 10.6% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-14 01:34:08 + : CPU: 0.5% RAM: 10.6% Upload: 1.51 KB/s Download: 0.43 KB/s -2023-06-14 01:35:08 + : CPU: 0.3% RAM: 10.6% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-14 01:36:08 + : CPU: 0.4% RAM: 10.6% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-14 01:37:08 + : CPU: 0.4% RAM: 10.6% Upload: 1.48 KB/s Download: 0.31 KB/s -2023-06-14 01:38:08 + : CPU: 0.4% RAM: 10.7% Upload: 0.15 KB/s Download: 0.53 KB/s -2023-06-14 01:39:08 + : CPU: 0.4% RAM: 10.7% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-14 01:40:08 + : CPU: 0.4% RAM: 10.7% Upload: 1.48 KB/s Download: 0.33 KB/s -2023-06-14 01:41:08 + : CPU: 0.3% RAM: 10.7% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-14 01:42:08 + : CPU: 0.4% RAM: 10.7% Upload: 0.13 KB/s Download: 0.48 KB/s -2023-06-14 01:43:08 + : CPU: 0.4% RAM: 10.7% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-14 01:44:08 + : CPU: 0.4% RAM: 10.8% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-14 01:45:08 + : CPU: 0.4% RAM: 10.8% Upload: 1.48 KB/s Download: 0.33 KB/s -2023-06-14 01:46:08 + : CPU: 0.4% RAM: 10.8% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-14 01:47:08 + : CPU: 0.4% RAM: 10.8% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-14 01:48:08 + : CPU: 0.4% RAM: 10.8% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-14 01:49:08 + : CPU: 0.4% RAM: 10.8% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-14 01:50:08 + : CPU: 0.4% RAM: 10.8% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-14 01:51:08 + : CPU: 0.4% RAM: 10.9% Upload: 1.49 KB/s Download: 0.32 KB/s -2023-06-14 01:52:08 + : CPU: 0.4% RAM: 10.9% Upload: 0.14 KB/s Download: 0.48 KB/s -2023-06-14 01:53:08 + : CPU: 0.4% RAM: 10.9% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-14 01:54:08 + : CPU: 0.4% RAM: 10.9% Upload: 1.51 KB/s Download: 0.44 KB/s -2023-06-14 01:55:08 + : CPU: 0.4% RAM: 10.9% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-14 01:56:09 + : CPU: 0.3% RAM: 10.9% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-14 01:57:09 + : CPU: 0.4% RAM: 10.9% Upload: 1.48 KB/s Download: 0.33 KB/s -2023-06-14 01:58:09 + : CPU: 0.4% RAM: 10.9% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-14 01:59:09 + : CPU: 0.4% RAM: 10.9% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-16 21:28:15 + : Server started -2023-06-16 21:29:14 + : CPU: 0.4% RAM: 7.0% Upload: 0.19 KB/s Download: 0.56 KB/s -2023-06-16 21:30:14 + : CPU: 0.4% RAM: 7.0% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-16 21:31:14 + : CPU: 0.5% RAM: 7.1% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-16 21:32:14 + : CPU: 0.6% RAM: 7.1% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-16 21:33:14 + : CPU: 0.5% RAM: 7.1% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-16 21:34:14 + : CPU: 0.4% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-16 21:35:14 + : CPU: 0.5% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-16 21:36:14 + : CPU: 0.4% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-16 21:37:14 + : CPU: 0.4% RAM: 7.1% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-16 21:38:14 + : CPU: 0.4% RAM: 7.1% Upload: 0.17 KB/s Download: 0.59 KB/s -2023-06-16 21:39:14 + : CPU: 0.4% RAM: 7.1% Upload: 0.13 KB/s Download: 0.39 KB/s -2023-06-16 21:40:14 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-16 21:41:14 + : CPU: 0.4% RAM: 7.2% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-16 21:42:14 + : CPU: 0.4% RAM: 7.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-16 21:43:14 + : CPU: 0.3% RAM: 7.2% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-16 21:44:14 + : CPU: 0.4% RAM: 7.2% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-16 21:45:14 + : CPU: 0.4% RAM: 7.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-16 21:46:14 + : CPU: 0.4% RAM: 7.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-16 21:47:15 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-16 21:48:15 + : CPU: 0.3% RAM: 7.3% Upload: 0.16 KB/s Download: 0.57 KB/s -2023-06-16 21:49:15 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-16 21:50:15 + : CPU: 0.4% RAM: 7.3% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-16 21:51:15 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-16 21:52:15 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-16 21:53:15 + : CPU: 0.4% RAM: 7.3% Upload: 0.12 KB/s Download: 0.37 KB/s -2023-06-16 21:54:15 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-16 21:55:15 + : CPU: 0.4% RAM: 7.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-16 21:56:15 + : CPU: 0.3% RAM: 7.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-16 21:57:15 + : CPU: 0.4% RAM: 7.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-16 21:58:15 + : CPU: 0.4% RAM: 7.4% Upload: 0.22 KB/s Download: 0.77 KB/s -2023-06-16 21:59:15 + : CPU: 0.4% RAM: 7.4% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-16 22:00:15 + : CPU: 0.4% RAM: 7.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-16 22:01:15 + : CPU: 0.4% RAM: 7.4% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-16 22:02:15 + : CPU: 0.4% RAM: 7.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-16 22:03:15 + : CPU: 0.4% RAM: 7.4% Upload: 0.10 KB/s Download: 0.37 KB/s -2023-06-16 22:04:15 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-16 22:05:15 + : CPU: 0.4% RAM: 7.5% Upload: 0.07 KB/s Download: 0.33 KB/s -2023-06-16 22:06:15 + : CPU: 0.4% RAM: 7.5% Upload: 0.05 KB/s Download: 0.16 KB/s -2023-06-16 22:07:15 + : CPU: 0.3% RAM: 7.5% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-16 22:08:15 + : CPU: 0.4% RAM: 7.5% Upload: 0.17 KB/s Download: 0.57 KB/s -2023-06-16 22:09:15 + : CPU: 0.4% RAM: 7.5% Upload: 0.09 KB/s Download: 0.24 KB/s -2023-06-16 22:10:15 + : CPU: 0.3% RAM: 7.5% Upload: 0.08 KB/s Download: 0.22 KB/s -2023-06-16 22:11:15 + : CPU: 0.4% RAM: 7.5% Upload: 0.09 KB/s Download: 0.24 KB/s -2023-06-16 22:12:15 + : CPU: 0.3% RAM: 7.6% Upload: 0.08 KB/s Download: 0.22 KB/s -2023-06-16 22:13:15 + : CPU: 0.4% RAM: 7.6% Upload: 1.51 KB/s Download: 0.41 KB/s -2023-06-16 22:14:15 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.22 KB/s -2023-06-16 22:15:15 + : CPU: 0.5% RAM: 7.6% Upload: 1.48 KB/s Download: 0.29 KB/s -2023-06-16 22:16:15 + : CPU: 0.5% RAM: 7.6% Upload: 1.49 KB/s Download: 0.29 KB/s -2023-06-16 22:17:15 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-16 22:18:15 + : CPU: 0.4% RAM: 7.7% Upload: 0.16 KB/s Download: 0.53 KB/s -2023-06-16 22:19:15 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-16 22:20:15 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.22 KB/s -2023-06-16 22:21:15 + : CPU: 0.4% RAM: 7.7% Upload: 0.10 KB/s Download: 0.24 KB/s -2023-06-16 22:22:16 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.22 KB/s -2023-06-16 22:23:16 + : CPU: 0.4% RAM: 7.7% Upload: 0.11 KB/s Download: 0.34 KB/s -2023-06-16 22:24:16 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.22 KB/s -2023-06-16 22:25:16 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-16 22:26:16 + : CPU: 0.4% RAM: 7.8% Upload: 2.88 KB/s Download: 0.35 KB/s -2023-06-16 22:27:16 + : CPU: 0.4% RAM: 7.8% Upload: 0.14 KB/s Download: 0.43 KB/s -2023-06-16 22:28:16 + : CPU: 0.4% RAM: 7.8% Upload: 0.17 KB/s Download: 0.56 KB/s -2023-06-16 22:29:16 + : CPU: 0.3% RAM: 7.8% Upload: 0.08 KB/s Download: 0.32 KB/s -2023-06-16 22:30:16 + : CPU: 0.3% RAM: 7.8% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-16 22:31:16 + : CPU: 0.3% RAM: 7.8% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-16 22:32:16 + : CPU: 0.3% RAM: 7.8% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-16 22:33:16 + : CPU: 0.4% RAM: 7.8% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-16 22:34:16 + : CPU: 0.4% RAM: 7.8% Upload: 0.10 KB/s Download: 0.36 KB/s -2023-06-16 22:35:16 + : CPU: 0.3% RAM: 7.9% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-16 22:36:16 + : CPU: 0.3% RAM: 7.9% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-16 22:37:16 + : CPU: 0.4% RAM: 7.9% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-16 22:38:16 + : CPU: 0.3% RAM: 7.9% Upload: 0.14 KB/s Download: 0.45 KB/s -2023-06-16 22:39:16 + : CPU: 0.4% RAM: 7.9% Upload: 0.11 KB/s Download: 0.34 KB/s -2023-06-16 22:40:16 + : CPU: 0.4% RAM: 7.9% Upload: 0.09 KB/s Download: 0.22 KB/s -2023-06-16 22:41:16 + : CPU: 0.4% RAM: 7.9% Upload: 0.09 KB/s Download: 0.24 KB/s -2023-06-16 22:42:16 + : CPU: 0.4% RAM: 7.9% Upload: 0.09 KB/s Download: 0.22 KB/s -2023-06-16 22:43:16 + : CPU: 0.4% RAM: 8.0% Upload: 0.10 KB/s Download: 0.24 KB/s -2023-06-16 22:44:16 + : CPU: 0.4% RAM: 8.0% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-16 22:45:16 + : CPU: 0.4% RAM: 8.0% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-16 22:46:16 + : CPU: 0.4% RAM: 8.0% Upload: 0.08 KB/s Download: 0.22 KB/s -2023-06-16 22:47:16 + : CPU: 0.4% RAM: 8.0% Upload: 0.09 KB/s Download: 0.24 KB/s -2023-06-16 22:48:16 + : CPU: 0.3% RAM: 8.0% Upload: 0.15 KB/s Download: 0.44 KB/s -2023-06-16 22:49:16 + : CPU: 0.4% RAM: 8.0% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-16 22:50:16 + : CPU: 0.4% RAM: 8.1% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-16 22:51:17 + : CPU: 0.4% RAM: 8.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-16 22:52:17 + : CPU: 0.3% RAM: 8.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-16 22:53:17 + : CPU: 0.3% RAM: 8.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-16 22:54:17 + : CPU: 0.4% RAM: 8.1% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-16 22:55:17 + : CPU: 0.4% RAM: 8.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-16 22:56:17 + : CPU: 0.4% RAM: 8.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-16 22:57:17 + : CPU: 0.3% RAM: 8.1% Upload: 0.15 KB/s Download: 0.49 KB/s -2023-06-16 22:58:17 + : CPU: 0.4% RAM: 8.2% Upload: 0.13 KB/s Download: 0.46 KB/s -2023-06-16 22:59:17 + : CPU: 0.3% RAM: 8.2% Upload: 0.10 KB/s Download: 0.39 KB/s -2023-06-16 23:00:17 + : CPU: 0.3% RAM: 8.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-16 23:01:17 + : CPU: 0.3% RAM: 8.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-16 23:02:17 + : CPU: 0.3% RAM: 8.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-16 23:03:17 + : CPU: 0.3% RAM: 8.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-16 23:04:17 + : CPU: 0.3% RAM: 8.2% Upload: 0.10 KB/s Download: 0.35 KB/s -2023-06-16 23:05:17 + : CPU: 0.3% RAM: 8.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-16 23:06:17 + : CPU: 0.4% RAM: 8.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-16 23:07:17 + : CPU: 0.3% RAM: 8.3% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-16 23:08:17 + : CPU: 0.4% RAM: 8.3% Upload: 0.15 KB/s Download: 0.49 KB/s -2023-06-16 23:09:17 + : CPU: 0.4% RAM: 8.3% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-16 23:10:17 + : CPU: 0.4% RAM: 8.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-16 23:11:17 + : CPU: 0.4% RAM: 8.3% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-16 23:12:17 + : CPU: 0.3% RAM: 8.3% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-16 23:13:17 + : CPU: 0.4% RAM: 8.3% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-16 23:14:17 + : CPU: 0.3% RAM: 8.3% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-16 23:15:17 + : CPU: 0.3% RAM: 8.4% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-16 23:16:17 + : CPU: 0.4% RAM: 8.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-16 23:17:17 + : CPU: 0.3% RAM: 8.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-16 23:18:17 + : CPU: 0.4% RAM: 8.4% Upload: 0.15 KB/s Download: 0.47 KB/s -2023-06-16 23:19:17 + : CPU: 0.3% RAM: 8.4% Upload: 0.11 KB/s Download: 0.39 KB/s -2023-06-16 23:20:17 + : CPU: 0.3% RAM: 8.4% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-16 23:21:18 + : CPU: 0.4% RAM: 8.4% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-16 23:22:18 + : CPU: 0.3% RAM: 8.5% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-16 23:23:18 + : CPU: 0.3% RAM: 8.5% Upload: 0.05 KB/s Download: 0.17 KB/s -2023-06-16 23:24:18 + : CPU: 0.3% RAM: 8.5% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-16 23:25:18 + : CPU: 0.3% RAM: 8.5% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-16 23:26:18 + : CPU: 0.3% RAM: 8.5% Upload: 0.14 KB/s Download: 0.47 KB/s -2023-06-16 23:27:18 + : CPU: 0.3% RAM: 8.5% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-16 23:28:18 + : CPU: 0.3% RAM: 8.5% Upload: 0.13 KB/s Download: 0.46 KB/s -2023-06-16 23:29:18 + : CPU: 0.3% RAM: 8.5% Upload: 0.10 KB/s Download: 0.37 KB/s -2023-06-16 23:30:18 + : CPU: 0.3% RAM: 8.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-16 23:31:18 + : CPU: 0.3% RAM: 8.5% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-16 23:32:18 + : CPU: 0.3% RAM: 8.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-16 23:33:18 + : CPU: 0.3% RAM: 8.5% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-16 23:34:18 + : CPU: 0.4% RAM: 8.6% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-16 23:35:18 + : CPU: 0.4% RAM: 8.6% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-16 23:36:18 + : CPU: 0.4% RAM: 8.6% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-16 23:37:18 + : CPU: 0.3% RAM: 8.6% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-16 23:38:18 + : CPU: 0.3% RAM: 8.6% Upload: 0.15 KB/s Download: 0.47 KB/s -2023-06-16 23:39:18 + : CPU: 0.3% RAM: 8.6% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-16 23:40:18 + : CPU: 0.4% RAM: 8.6% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-16 23:41:18 + : CPU: 0.3% RAM: 8.6% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-16 23:42:18 + : CPU: 0.3% RAM: 8.6% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-16 23:43:18 + : CPU: 0.3% RAM: 8.7% Upload: 0.10 KB/s Download: 0.33 KB/s -2023-06-16 23:44:18 + : CPU: 0.3% RAM: 8.7% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-16 23:45:18 + : CPU: 0.3% RAM: 8.7% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-16 23:46:18 + : CPU: 0.3% RAM: 8.7% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-16 23:47:19 + : CPU: 0.3% RAM: 8.7% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-16 23:48:19 + : CPU: 0.3% RAM: 8.7% Upload: 0.15 KB/s Download: 0.47 KB/s -2023-06-16 23:49:19 + : CPU: 0.3% RAM: 8.7% Upload: 0.12 KB/s Download: 0.37 KB/s -2023-06-16 23:50:19 + : CPU: 0.3% RAM: 8.7% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-16 23:51:19 + : CPU: 0.3% RAM: 8.7% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-16 23:52:19 + : CPU: 0.3% RAM: 8.8% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-16 23:53:19 + : CPU: 0.3% RAM: 8.8% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-16 23:54:19 + : CPU: 0.3% RAM: 8.8% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-16 23:55:19 + : CPU: 0.3% RAM: 8.8% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-16 23:56:19 + : CPU: 0.3% RAM: 8.8% Upload: 0.15 KB/s Download: 0.46 KB/s -2023-06-16 23:57:19 + : CPU: 0.3% RAM: 8.8% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-16 23:58:19 + : CPU: 0.3% RAM: 8.8% Upload: 0.13 KB/s Download: 0.48 KB/s -2023-06-16 23:59:19 + : CPU: 0.3% RAM: 8.8% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 00:00:19 + : CPU: 0.3% RAM: 8.8% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 00:01:19 + : CPU: 0.4% RAM: 8.9% Upload: 0.06 KB/s Download: 0.16 KB/s -2023-06-17 00:02:19 + : CPU: 0.3% RAM: 8.9% Upload: 0.07 KB/s Download: 0.25 KB/s -2023-06-17 00:03:19 + : CPU: 0.3% RAM: 8.9% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 00:04:19 + : CPU: 0.3% RAM: 8.9% Upload: 0.11 KB/s Download: 0.40 KB/s -2023-06-17 00:05:19 + : CPU: 0.3% RAM: 8.9% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 00:06:19 + : CPU: 0.4% RAM: 8.9% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 00:07:19 + : CPU: 0.3% RAM: 8.9% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 00:08:19 + : CPU: 0.4% RAM: 9.0% Upload: 0.13 KB/s Download: 0.46 KB/s -2023-06-17 00:09:19 + : CPU: 0.4% RAM: 9.0% Upload: 0.10 KB/s Download: 0.37 KB/s -2023-06-17 00:10:19 + : CPU: 0.3% RAM: 9.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 00:11:19 + : CPU: 0.3% RAM: 9.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 00:12:19 + : CPU: 0.3% RAM: 9.0% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 00:13:19 + : CPU: 0.4% RAM: 9.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 00:14:19 + : CPU: 0.4% RAM: 9.0% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-17 00:15:19 + : CPU: 0.4% RAM: 9.0% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 00:16:19 + : CPU: 0.4% RAM: 9.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 00:17:19 + : CPU: 0.3% RAM: 9.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 00:18:19 + : CPU: 0.3% RAM: 9.1% Upload: 0.14 KB/s Download: 0.47 KB/s -2023-06-17 00:19:19 + : CPU: 0.4% RAM: 9.1% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 00:20:19 + : CPU: 0.4% RAM: 9.1% Upload: 1.48 KB/s Download: 0.31 KB/s -2023-06-17 00:21:19 + : CPU: 0.4% RAM: 9.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 00:22:19 + : CPU: 0.4% RAM: 9.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 00:23:19 + : CPU: 0.4% RAM: 9.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 00:24:19 + : CPU: 0.4% RAM: 9.1% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-17 00:25:20 + : CPU: 0.4% RAM: 9.2% Upload: 0.14 KB/s Download: 0.46 KB/s -2023-06-17 00:26:20 + : CPU: 0.4% RAM: 9.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 00:27:20 + : CPU: 0.3% RAM: 9.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 00:28:20 + : CPU: 0.3% RAM: 9.2% Upload: 0.14 KB/s Download: 0.47 KB/s -2023-06-17 00:29:20 + : CPU: 0.3% RAM: 9.2% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-17 00:30:20 + : CPU: 0.3% RAM: 9.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 00:31:20 + : CPU: 0.4% RAM: 9.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 00:32:20 + : CPU: 0.4% RAM: 9.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 00:33:20 + : CPU: 0.4% RAM: 9.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 00:34:20 + : CPU: 0.3% RAM: 9.3% Upload: 0.10 KB/s Download: 0.35 KB/s -2023-06-17 00:35:20 + : CPU: 0.4% RAM: 9.3% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 00:36:20 + : CPU: 0.3% RAM: 9.3% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 00:37:20 + : CPU: 0.3% RAM: 9.3% Upload: 0.07 KB/s Download: 0.24 KB/s -2023-06-17 00:38:20 + : CPU: 0.4% RAM: 9.3% Upload: 0.13 KB/s Download: 0.49 KB/s -2023-06-17 00:39:20 + : CPU: 0.4% RAM: 9.3% Upload: 0.10 KB/s Download: 0.35 KB/s -2023-06-17 00:40:20 + : CPU: 0.3% RAM: 9.3% Upload: 0.05 KB/s Download: 0.15 KB/s -2023-06-17 00:41:20 + : CPU: 0.4% RAM: 9.4% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 00:42:20 + : CPU: 0.4% RAM: 9.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 00:43:20 + : CPU: 0.4% RAM: 9.4% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 00:44:20 + : CPU: 0.4% RAM: 9.4% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 00:45:20 + : CPU: 0.4% RAM: 9.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 00:46:20 + : CPU: 0.4% RAM: 9.4% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-17 00:47:20 + : CPU: 0.4% RAM: 9.4% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 00:48:20 + : CPU: 0.3% RAM: 9.4% Upload: 0.14 KB/s Download: 0.46 KB/s -2023-06-17 00:49:20 + : CPU: 0.4% RAM: 9.5% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 00:50:20 + : CPU: 0.3% RAM: 9.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 00:51:20 + : CPU: 0.4% RAM: 9.5% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 00:52:20 + : CPU: 0.4% RAM: 9.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 00:53:20 + : CPU: 0.4% RAM: 9.5% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 00:54:21 + : CPU: 0.4% RAM: 9.5% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-17 00:55:21 + : CPU: 0.3% RAM: 9.5% Upload: 0.15 KB/s Download: 0.49 KB/s -2023-06-17 00:56:21 + : CPU: 0.3% RAM: 9.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 00:57:21 + : CPU: 0.4% RAM: 9.5% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 00:58:21 + : CPU: 0.4% RAM: 9.6% Upload: 0.13 KB/s Download: 0.47 KB/s -2023-06-17 00:59:21 + : CPU: 0.3% RAM: 9.6% Upload: 0.10 KB/s Download: 0.37 KB/s -2023-06-17 01:00:21 + : CPU: 0.4% RAM: 9.6% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 01:01:21 + : CPU: 0.4% RAM: 9.6% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 01:02:21 + : CPU: 0.4% RAM: 9.6% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 01:03:21 + : CPU: 0.4% RAM: 9.6% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 01:04:21 + : CPU: 0.4% RAM: 9.6% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-17 01:05:21 + : CPU: 0.4% RAM: 9.6% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 01:06:21 + : CPU: 0.4% RAM: 9.6% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 01:07:21 + : CPU: 0.3% RAM: 9.6% Upload: 0.09 KB/s Download: 0.33 KB/s -2023-06-17 01:08:21 + : CPU: 0.4% RAM: 9.7% Upload: 0.14 KB/s Download: 0.47 KB/s -2023-06-17 01:09:21 + : CPU: 0.3% RAM: 9.7% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 01:10:21 + : CPU: 0.4% RAM: 9.7% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 01:11:21 + : CPU: 0.3% RAM: 9.7% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 01:12:21 + : CPU: 0.4% RAM: 9.7% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 01:13:21 + : CPU: 0.3% RAM: 9.8% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 01:14:21 + : CPU: 0.3% RAM: 9.8% Upload: 0.10 KB/s Download: 0.35 KB/s -2023-06-17 01:15:21 + : CPU: 0.4% RAM: 9.8% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 01:16:21 + : CPU: 0.4% RAM: 9.8% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 01:17:21 + : CPU: 0.3% RAM: 9.8% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 01:18:21 + : CPU: 0.3% RAM: 9.8% Upload: 0.14 KB/s Download: 0.44 KB/s -2023-06-17 01:19:21 + : CPU: 0.3% RAM: 9.8% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 01:20:21 + : CPU: 0.3% RAM: 9.8% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 01:21:21 + : CPU: 0.5% RAM: 9.8% Upload: 1.49 KB/s Download: 0.33 KB/s -2023-06-17 01:22:21 + : CPU: 0.3% RAM: 9.9% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-17 01:23:22 + : CPU: 0.3% RAM: 9.9% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 01:24:22 + : CPU: 0.3% RAM: 9.9% Upload: 0.16 KB/s Download: 0.55 KB/s -2023-06-17 01:25:22 + : CPU: 0.4% RAM: 9.9% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 01:26:22 + : CPU: 0.3% RAM: 9.9% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 01:27:22 + : CPU: 0.4% RAM: 9.9% Upload: 1.48 KB/s Download: 0.34 KB/s -2023-06-17 01:28:22 + : CPU: 0.4% RAM: 9.9% Upload: 1.54 KB/s Download: 0.58 KB/s -2023-06-17 01:29:22 + : CPU: 0.3% RAM: 9.9% Upload: 0.10 KB/s Download: 0.38 KB/s -2023-06-17 01:30:22 + : CPU: 0.4% RAM: 9.9% Upload: 1.48 KB/s Download: 0.32 KB/s -2023-06-17 01:31:22 + : CPU: 0.4% RAM: 10.0% Upload: 1.48 KB/s Download: 0.34 KB/s -2023-06-17 01:32:22 + : CPU: 0.3% RAM: 10.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 01:33:22 + : CPU: 0.4% RAM: 10.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 01:34:22 + : CPU: 0.3% RAM: 10.0% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-17 01:35:22 + : CPU: 0.4% RAM: 10.0% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 01:36:22 + : CPU: 0.3% RAM: 10.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 01:37:22 + : CPU: 0.3% RAM: 10.0% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 01:38:22 + : CPU: 0.4% RAM: 10.0% Upload: 1.54 KB/s Download: 0.52 KB/s -2023-06-17 01:39:22 + : CPU: 0.3% RAM: 10.0% Upload: 0.12 KB/s Download: 0.39 KB/s -2023-06-17 01:40:22 + : CPU: 0.3% RAM: 10.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 01:41:22 + : CPU: 0.3% RAM: 10.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 01:42:22 + : CPU: 0.3% RAM: 10.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 01:43:22 + : CPU: 0.3% RAM: 10.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 01:44:22 + : CPU: 0.3% RAM: 10.1% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-17 01:45:22 + : CPU: 0.4% RAM: 10.1% Upload: 1.48 KB/s Download: 0.33 KB/s -2023-06-17 01:46:22 + : CPU: 0.3% RAM: 10.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 01:47:22 + : CPU: 0.3% RAM: 10.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 01:48:22 + : CPU: 0.4% RAM: 10.2% Upload: 0.14 KB/s Download: 0.47 KB/s -2023-06-17 01:49:22 + : CPU: 0.3% RAM: 10.2% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-17 01:50:23 + : CPU: 0.4% RAM: 10.2% Upload: 1.48 KB/s Download: 0.31 KB/s -2023-06-17 01:51:23 + : CPU: 0.3% RAM: 10.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 01:52:23 + : CPU: 0.4% RAM: 10.2% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-17 01:53:23 + : CPU: 0.3% RAM: 10.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 01:54:23 + : CPU: 0.3% RAM: 10.2% Upload: 0.17 KB/s Download: 0.56 KB/s -2023-06-17 01:55:23 + : CPU: 0.3% RAM: 10.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 01:56:23 + : CPU: 0.3% RAM: 10.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 01:57:23 + : CPU: 0.4% RAM: 10.3% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-17 01:58:23 + : CPU: 0.3% RAM: 10.3% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 01:59:23 + : CPU: 0.3% RAM: 10.3% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 02:00:23 + : CPU: 0.3% RAM: 10.3% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-17 02:01:23 + : CPU: 0.4% RAM: 10.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 02:02:23 + : CPU: 0.3% RAM: 10.3% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-17 02:03:23 + : CPU: 0.3% RAM: 10.3% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 02:04:23 + : CPU: 0.3% RAM: 10.3% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-17 02:05:23 + : CPU: 0.3% RAM: 10.4% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 02:06:23 + : CPU: 0.3% RAM: 10.4% Upload: 0.09 KB/s Download: 0.32 KB/s -2023-06-17 02:07:23 + : CPU: 0.3% RAM: 10.4% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 02:08:23 + : CPU: 0.5% RAM: 10.4% Upload: 2.94 KB/s Download: 0.59 KB/s -2023-06-17 02:09:23 + : CPU: 0.4% RAM: 10.4% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 02:10:23 + : CPU: 0.4% RAM: 10.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 02:11:23 + : CPU: 0.4% RAM: 10.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 02:12:23 + : CPU: 0.4% RAM: 10.5% Upload: 1.48 KB/s Download: 0.31 KB/s -2023-06-17 02:13:23 + : CPU: 0.4% RAM: 10.5% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-17 02:14:23 + : CPU: 0.4% RAM: 10.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 02:15:23 + : CPU: 0.3% RAM: 10.5% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 02:16:23 + : CPU: 0.3% RAM: 10.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 02:17:23 + : CPU: 0.4% RAM: 10.5% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 02:18:23 + : CPU: 0.3% RAM: 10.5% Upload: 1.54 KB/s Download: 0.53 KB/s -2023-06-17 02:19:23 + : CPU: 0.4% RAM: 10.5% Upload: 1.49 KB/s Download: 0.33 KB/s -2023-06-17 02:20:23 + : CPU: 0.4% RAM: 10.5% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-17 02:21:23 + : CPU: 0.4% RAM: 10.6% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 02:22:23 + : CPU: 0.4% RAM: 10.6% Upload: 1.48 KB/s Download: 0.32 KB/s -2023-06-17 02:23:23 + : CPU: 0.4% RAM: 10.6% Upload: 0.14 KB/s Download: 0.47 KB/s -2023-06-17 02:24:23 + : CPU: 0.3% RAM: 10.6% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 02:25:23 + : CPU: 0.4% RAM: 10.6% Upload: 0.10 KB/s Download: 0.37 KB/s -2023-06-17 02:26:23 + : CPU: 0.3% RAM: 10.6% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-17 02:27:24 + : CPU: 0.3% RAM: 10.6% Upload: 1.48 KB/s Download: 0.33 KB/s -2023-06-17 02:28:24 + : CPU: 0.4% RAM: 10.6% Upload: 2.93 KB/s Download: 0.59 KB/s -2023-06-17 02:29:24 + : CPU: 0.3% RAM: 10.6% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 02:30:24 + : CPU: 0.4% RAM: 10.7% Upload: 1.50 KB/s Download: 0.42 KB/s -2023-06-17 02:31:24 + : CPU: 0.4% RAM: 10.7% Upload: 1.48 KB/s Download: 0.33 KB/s -2023-06-17 02:32:24 + : CPU: 0.4% RAM: 10.7% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 02:33:24 + : CPU: 0.3% RAM: 10.7% Upload: 0.08 KB/s Download: 0.24 KB/s -2023-06-17 02:34:24 + : CPU: 0.4% RAM: 10.7% Upload: 1.49 KB/s Download: 0.34 KB/s -2023-06-17 02:35:24 + : CPU: 0.4% RAM: 10.7% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-17 02:36:24 + : CPU: 0.3% RAM: 10.7% Upload: 0.05 KB/s Download: 0.16 KB/s -2023-06-17 02:37:24 + : CPU: 0.3% RAM: 10.7% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 02:38:24 + : CPU: 0.3% RAM: 10.8% Upload: 0.14 KB/s Download: 0.47 KB/s -2023-06-17 02:39:24 + : CPU: 0.4% RAM: 10.8% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 02:40:24 + : CPU: 0.4% RAM: 10.8% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-17 02:41:24 + : CPU: 0.4% RAM: 10.8% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 02:42:24 + : CPU: 0.3% RAM: 10.8% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 02:43:24 + : CPU: 0.3% RAM: 10.8% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 02:44:24 + : CPU: 0.3% RAM: 10.8% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 02:45:24 + : CPU: 0.4% RAM: 10.8% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 02:46:24 + : CPU: 0.4% RAM: 10.9% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 02:47:24 + : CPU: 0.3% RAM: 10.9% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 02:48:24 + : CPU: 0.3% RAM: 10.9% Upload: 0.14 KB/s Download: 0.46 KB/s -2023-06-17 02:49:24 + : CPU: 0.3% RAM: 10.9% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 02:50:24 + : CPU: 0.3% RAM: 10.9% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-17 02:51:24 + : CPU: 0.3% RAM: 10.9% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-17 02:52:24 + : CPU: 0.3% RAM: 10.9% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 02:53:24 + : CPU: 0.4% RAM: 10.9% Upload: 0.15 KB/s Download: 0.47 KB/s -2023-06-17 02:54:25 + : CPU: 0.3% RAM: 10.9% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 02:55:25 + : CPU: 0.4% RAM: 10.9% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 02:56:25 + : CPU: 0.3% RAM: 10.9% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 02:57:25 + : CPU: 0.4% RAM: 11.0% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 02:58:25 + : CPU: 0.3% RAM: 11.0% Upload: 0.13 KB/s Download: 0.46 KB/s -2023-06-17 02:59:25 + : CPU: 0.4% RAM: 11.0% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-17 03:00:25 + : CPU: 0.4% RAM: 11.0% Upload: 1.50 KB/s Download: 0.42 KB/s -2023-06-17 03:01:25 + : CPU: 0.4% RAM: 11.0% Upload: 2.18 KB/s Download: 0.37 KB/s -2023-06-17 03:02:25 + : CPU: 0.4% RAM: 11.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 03:03:25 + : CPU: 0.4% RAM: 11.1% Upload: 1.48 KB/s Download: 0.33 KB/s -2023-06-17 03:04:25 + : CPU: 0.4% RAM: 11.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 03:05:25 + : CPU: 0.4% RAM: 11.1% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 03:06:25 + : CPU: 0.4% RAM: 11.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 03:07:25 + : CPU: 0.4% RAM: 11.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 03:08:25 + : CPU: 0.4% RAM: 11.1% Upload: 0.14 KB/s Download: 0.46 KB/s -2023-06-17 03:09:25 + : CPU: 0.4% RAM: 11.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 12:05:55 + : Server started -2023-06-17 12:06:54 + : CPU: 0.4% RAM: 7.0% Upload: 0.19 KB/s Download: 0.49 KB/s -2023-06-17 12:07:54 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-17 12:08:54 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-17 12:09:54 + : CPU: 0.4% RAM: 7.1% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-17 12:10:54 + : CPU: 0.4% RAM: 7.1% Upload: 0.10 KB/s Download: 0.32 KB/s -2023-06-17 12:11:54 + : CPU: 0.4% RAM: 7.1% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-17 12:12:54 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-17 12:13:54 + : CPU: 0.4% RAM: 7.1% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-17 12:14:54 + : CPU: 0.4% RAM: 7.1% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-17 12:15:54 + : CPU: 0.4% RAM: 7.2% Upload: 1.57 KB/s Download: 0.63 KB/s -2023-06-17 12:16:54 + : CPU: 0.3% RAM: 7.2% Upload: 0.13 KB/s Download: 0.38 KB/s -2023-06-17 12:17:54 + : CPU: 0.3% RAM: 7.2% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-17 12:18:54 + : CPU: 0.4% RAM: 7.2% Upload: 0.10 KB/s Download: 0.28 KB/s -2023-06-17 12:19:54 + : CPU: 0.4% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 12:20:54 + : CPU: 0.4% RAM: 7.3% Upload: 1.52 KB/s Download: 0.42 KB/s -2023-06-17 12:21:54 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-17 12:22:54 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 12:23:54 + : CPU: 0.4% RAM: 7.3% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-17 12:24:54 + : CPU: 0.3% RAM: 7.3% Upload: 0.15 KB/s Download: 0.45 KB/s -2023-06-17 12:25:54 + : CPU: 0.4% RAM: 7.3% Upload: 0.18 KB/s Download: 0.59 KB/s -2023-06-17 12:26:54 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.24 KB/s -2023-06-17 12:27:54 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.24 KB/s -2023-06-17 12:28:54 + : CPU: 0.4% RAM: 7.4% Upload: 0.09 KB/s Download: 0.22 KB/s -2023-06-17 12:29:54 + : CPU: 0.4% RAM: 7.4% Upload: 0.09 KB/s Download: 0.24 KB/s -2023-06-17 12:30:54 + : CPU: 0.4% RAM: 7.4% Upload: 0.11 KB/s Download: 0.32 KB/s -2023-06-17 12:31:54 + : CPU: 0.3% RAM: 7.4% Upload: 0.09 KB/s Download: 0.24 KB/s -2023-06-17 12:32:54 + : CPU: 0.3% RAM: 7.4% Upload: 0.09 KB/s Download: 0.22 KB/s -2023-06-17 12:33:54 + : CPU: 0.3% RAM: 7.4% Upload: 0.09 KB/s Download: 0.24 KB/s -2023-06-17 12:34:54 + : CPU: 0.3% RAM: 7.4% Upload: 0.09 KB/s Download: 0.22 KB/s -2023-06-17 12:35:54 + : CPU: 0.4% RAM: 7.4% Upload: 0.17 KB/s Download: 0.55 KB/s -2023-06-17 12:36:55 + : CPU: 0.3% RAM: 7.4% Upload: 0.09 KB/s Download: 0.22 KB/s -2023-06-17 12:37:55 + : CPU: 0.4% RAM: 7.4% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-17 12:38:55 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-17 12:39:55 + : CPU: 0.3% RAM: 7.5% Upload: 0.09 KB/s Download: 0.24 KB/s -2023-06-17 12:40:55 + : CPU: 0.3% RAM: 7.5% Upload: 0.11 KB/s Download: 0.32 KB/s -2023-06-17 12:41:55 + : CPU: 0.3% RAM: 7.5% Upload: 0.09 KB/s Download: 0.24 KB/s -2023-06-17 12:42:55 + : CPU: 0.4% RAM: 7.5% Upload: 0.06 KB/s Download: 0.12 KB/s -2023-06-17 12:43:55 + : CPU: 0.4% RAM: 7.5% Upload: 0.07 KB/s Download: 0.22 KB/s -2023-06-17 12:44:55 + : CPU: 0.4% RAM: 7.5% Upload: 0.09 KB/s Download: 0.22 KB/s -2023-06-17 12:45:55 + : CPU: 0.3% RAM: 7.6% Upload: 0.17 KB/s Download: 0.56 KB/s -2023-06-17 12:46:55 + : CPU: 0.4% RAM: 7.6% Upload: 0.10 KB/s Download: 0.28 KB/s -2023-06-17 12:47:55 + : CPU: 0.3% RAM: 7.6% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-17 12:48:55 + : CPU: 0.4% RAM: 7.6% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 12:49:55 + : CPU: 0.3% RAM: 7.6% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-17 12:50:55 + : CPU: 0.3% RAM: 7.6% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-17 12:51:55 + : CPU: 0.4% RAM: 7.6% Upload: 1.50 KB/s Download: 0.36 KB/s -2023-06-17 12:52:55 + : CPU: 0.3% RAM: 7.7% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-17 12:53:55 + : CPU: 0.3% RAM: 7.7% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 12:54:55 + : CPU: 0.4% RAM: 7.7% Upload: 0.15 KB/s Download: 0.50 KB/s -2023-06-17 12:55:55 + : CPU: 0.3% RAM: 7.7% Upload: 0.17 KB/s Download: 0.57 KB/s -2023-06-17 12:56:55 + : CPU: 0.4% RAM: 7.7% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-17 12:57:55 + : CPU: 0.3% RAM: 7.7% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 12:58:55 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 12:59:55 + : CPU: 0.4% RAM: 7.8% Upload: 1.49 KB/s Download: 0.34 KB/s -2023-06-17 13:00:55 + : CPU: 0.4% RAM: 7.8% Upload: 0.10 KB/s Download: 0.26 KB/s -2023-06-17 13:01:55 + : CPU: 0.4% RAM: 7.8% Upload: 0.12 KB/s Download: 0.37 KB/s -2023-06-17 13:02:55 + : CPU: 0.3% RAM: 7.8% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 13:03:55 + : CPU: 0.4% RAM: 7.8% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 13:04:55 + : CPU: 0.3% RAM: 7.8% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 13:05:55 + : CPU: 0.4% RAM: 7.8% Upload: 0.15 KB/s Download: 0.48 KB/s -2023-06-17 13:06:55 + : CPU: 0.4% RAM: 7.8% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-17 13:07:55 + : CPU: 0.3% RAM: 7.9% Upload: 0.09 KB/s Download: 0.32 KB/s -2023-06-17 13:08:56 + : CPU: 0.3% RAM: 7.9% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 13:09:56 + : CPU: 0.3% RAM: 7.9% Upload: 0.10 KB/s Download: 0.28 KB/s -2023-06-17 13:10:56 + : CPU: 0.4% RAM: 7.9% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 13:11:56 + : CPU: 0.4% RAM: 7.9% Upload: 0.12 KB/s Download: 0.37 KB/s -2023-06-17 13:12:56 + : CPU: 0.3% RAM: 7.9% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-17 13:13:56 + : CPU: 0.3% RAM: 7.9% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 13:14:56 + : CPU: 0.3% RAM: 8.0% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-17 13:15:56 + : CPU: 0.3% RAM: 8.0% Upload: 0.14 KB/s Download: 0.48 KB/s -2023-06-17 13:16:56 + : CPU: 0.3% RAM: 8.0% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-17 13:17:56 + : CPU: 0.3% RAM: 8.0% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 13:18:56 + : CPU: 0.4% RAM: 8.0% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 13:19:56 + : CPU: 0.3% RAM: 8.0% Upload: 0.80 KB/s Download: 0.29 KB/s -2023-06-17 13:20:56 + : CPU: 0.4% RAM: 8.0% Upload: 2.18 KB/s Download: 0.35 KB/s -2023-06-17 13:21:56 + : CPU: 0.4% RAM: 8.0% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-17 13:22:56 + : CPU: 0.4% RAM: 8.0% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 13:23:56 + : CPU: 0.4% RAM: 8.0% Upload: 0.17 KB/s Download: 0.48 KB/s -2023-06-17 13:24:56 + : CPU: 0.4% RAM: 8.0% Upload: 0.10 KB/s Download: 0.26 KB/s -2023-06-17 13:25:56 + : CPU: 0.4% RAM: 8.1% Upload: 0.13 KB/s Download: 0.48 KB/s -2023-06-17 13:26:56 + : CPU: 0.3% RAM: 8.1% Upload: 0.12 KB/s Download: 0.40 KB/s -2023-06-17 13:27:56 + : CPU: 0.4% RAM: 8.1% Upload: 0.09 KB/s Download: 0.32 KB/s -2023-06-17 13:28:56 + : CPU: 0.4% RAM: 8.1% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-17 13:29:56 + : CPU: 0.4% RAM: 8.1% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-17 13:30:56 + : CPU: 0.4% RAM: 8.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 13:31:56 + : CPU: 0.3% RAM: 8.1% Upload: 0.12 KB/s Download: 0.39 KB/s -2023-06-17 13:32:56 + : CPU: 0.4% RAM: 8.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 14:43:38 + : CPU: 0.3% RAM: 8.2% Upload: 0.21 KB/s Download: 1.01 KB/s -2023-06-17 14:44:38 + : CPU: 0.3% RAM: 8.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 14:45:38 + : CPU: 0.3% RAM: 8.2% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-17 14:46:38 + : CPU: 0.3% RAM: 8.2% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-17 14:47:38 + : CPU: 0.3% RAM: 8.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 14:48:38 + : CPU: 0.3% RAM: 8.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 14:49:38 + : CPU: 0.3% RAM: 8.2% Upload: 1.49 KB/s Download: 0.34 KB/s -2023-06-17 14:50:38 + : CPU: 0.3% RAM: 8.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 14:51:38 + : CPU: 0.3% RAM: 8.2% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-17 14:52:38 + : CPU: 0.3% RAM: 8.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 14:53:38 + : CPU: 0.3% RAM: 8.3% Upload: 0.15 KB/s Download: 0.48 KB/s -2023-06-17 14:54:38 + : CPU: 0.3% RAM: 8.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 14:55:38 + : CPU: 0.3% RAM: 8.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 14:56:38 + : CPU: 0.3% RAM: 8.3% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 14:57:38 + : CPU: 0.4% RAM: 8.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 14:58:38 + : CPU: 0.3% RAM: 8.3% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-17 14:59:38 + : CPU: 0.3% RAM: 8.3% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 15:00:38 + : CPU: 0.3% RAM: 8.4% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-17 15:01:38 + : CPU: 0.3% RAM: 8.4% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 15:02:38 + : CPU: 0.3% RAM: 8.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 15:03:38 + : CPU: 0.3% RAM: 8.4% Upload: 0.14 KB/s Download: 0.51 KB/s -2023-06-17 15:04:38 + : CPU: 0.3% RAM: 8.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 15:05:38 + : CPU: 0.3% RAM: 8.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 15:06:38 + : CPU: 0.3% RAM: 8.4% Upload: 0.11 KB/s Download: 0.33 KB/s -2023-06-17 15:07:38 + : CPU: 0.3% RAM: 8.4% Upload: 0.05 KB/s Download: 0.17 KB/s -2023-06-17 15:08:38 + : CPU: 0.3% RAM: 8.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 15:09:38 + : CPU: 0.3% RAM: 8.5% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 15:10:38 + : CPU: 0.3% RAM: 8.5% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-17 15:11:38 + : CPU: 0.3% RAM: 8.5% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-17 15:12:38 + : CPU: 0.3% RAM: 8.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 15:13:38 + : CPU: 0.3% RAM: 8.5% Upload: 0.20 KB/s Download: 0.68 KB/s -2023-06-17 15:14:38 + : CPU: 0.3% RAM: 8.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 15:15:38 + : CPU: 0.3% RAM: 8.5% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 15:16:38 + : CPU: 0.3% RAM: 8.5% Upload: 0.10 KB/s Download: 0.35 KB/s -2023-06-17 15:17:38 + : CPU: 0.3% RAM: 8.5% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 15:18:38 + : CPU: 0.3% RAM: 8.6% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 15:19:38 + : CPU: 0.3% RAM: 8.6% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-17 15:20:39 + : CPU: 0.3% RAM: 8.6% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 15:21:39 + : CPU: 0.3% RAM: 8.6% Upload: 0.12 KB/s Download: 0.43 KB/s -2023-06-17 15:22:39 + : CPU: 0.3% RAM: 8.6% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 15:23:39 + : CPU: 0.3% RAM: 8.6% Upload: 0.13 KB/s Download: 0.48 KB/s -2023-06-17 15:24:39 + : CPU: 0.3% RAM: 8.6% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 15:25:39 + : CPU: 0.3% RAM: 8.6% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 15:26:39 + : CPU: 0.3% RAM: 8.6% Upload: 0.10 KB/s Download: 0.35 KB/s -2023-06-17 15:27:39 + : CPU: 0.3% RAM: 8.7% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 15:28:39 + : CPU: 0.3% RAM: 8.7% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 15:29:39 + : CPU: 0.3% RAM: 8.7% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 15:30:39 + : CPU: 0.3% RAM: 8.7% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 15:31:39 + : CPU: 0.2% RAM: 8.7% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 15:32:39 + : CPU: 0.3% RAM: 8.7% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 15:33:39 + : CPU: 0.3% RAM: 8.7% Upload: 0.15 KB/s Download: 0.50 KB/s -2023-06-17 15:34:39 + : CPU: 0.2% RAM: 8.8% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 15:35:39 + : CPU: 0.3% RAM: 8.8% Upload: 1.49 KB/s Download: 0.33 KB/s -2023-06-17 15:36:39 + : CPU: 0.3% RAM: 8.8% Upload: 0.12 KB/s Download: 0.40 KB/s -2023-06-17 15:37:39 + : CPU: 0.3% RAM: 8.8% Upload: 1.50 KB/s Download: 0.35 KB/s -2023-06-17 15:38:39 + : CPU: 0.4% RAM: 8.8% Upload: 2.89 KB/s Download: 0.39 KB/s -2023-06-17 15:39:39 + : CPU: 0.3% RAM: 8.8% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-17 15:40:39 + : CPU: 0.3% RAM: 8.8% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-17 15:41:39 + : CPU: 0.3% RAM: 8.8% Upload: 0.12 KB/s Download: 0.43 KB/s -2023-06-17 15:42:39 + : CPU: 0.3% RAM: 8.9% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-17 15:43:39 + : CPU: 0.3% RAM: 8.9% Upload: 0.18 KB/s Download: 0.64 KB/s -2023-06-17 15:44:39 + : CPU: 0.3% RAM: 8.9% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 15:45:39 + : CPU: 0.3% RAM: 8.9% Upload: 0.04 KB/s Download: 0.15 KB/s -2023-06-17 15:46:40 + : CPU: 0.3% RAM: 8.9% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-17 15:47:40 + : CPU: 0.3% RAM: 8.9% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 15:48:40 + : CPU: 0.3% RAM: 8.9% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 15:49:40 + : CPU: 0.3% RAM: 8.9% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-17 15:50:40 + : CPU: 0.2% RAM: 9.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 15:51:40 + : CPU: 0.3% RAM: 9.0% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 15:52:40 + : CPU: 0.3% RAM: 9.0% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-17 15:53:40 + : CPU: 0.3% RAM: 9.0% Upload: 1.55 KB/s Download: 0.55 KB/s -2023-06-17 15:54:40 + : CPU: 0.4% RAM: 9.0% Upload: 3.59 KB/s Download: 0.42 KB/s -2023-06-17 15:55:40 + : CPU: 0.3% RAM: 9.0% Upload: 1.49 KB/s Download: 0.33 KB/s -2023-06-17 15:56:40 + : CPU: 0.3% RAM: 9.0% Upload: 1.51 KB/s Download: 0.42 KB/s -2023-06-17 15:57:40 + : CPU: 0.3% RAM: 9.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 15:58:40 + : CPU: 0.3% RAM: 9.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 15:59:40 + : CPU: 0.3% RAM: 9.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 16:00:40 + : CPU: 0.3% RAM: 9.1% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-17 16:01:40 + : CPU: 0.3% RAM: 9.1% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 16:02:40 + : CPU: 0.3% RAM: 9.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 16:03:40 + : CPU: 0.3% RAM: 9.1% Upload: 0.14 KB/s Download: 0.48 KB/s -2023-06-17 16:04:40 + : CPU: 0.3% RAM: 9.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 16:05:40 + : CPU: 0.3% RAM: 9.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 16:06:40 + : CPU: 0.3% RAM: 9.1% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-17 16:07:40 + : CPU: 0.3% RAM: 9.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 16:08:40 + : CPU: 0.3% RAM: 9.2% Upload: 0.10 KB/s Download: 0.25 KB/s -2023-06-17 16:09:40 + : CPU: 0.3% RAM: 9.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 16:10:40 + : CPU: 0.3% RAM: 9.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 16:11:40 + : CPU: 0.3% RAM: 9.2% Upload: 0.12 KB/s Download: 0.41 KB/s -2023-06-17 16:12:40 + : CPU: 0.3% RAM: 9.2% Upload: 0.15 KB/s Download: 0.50 KB/s -2023-06-17 16:13:40 + : CPU: 0.3% RAM: 9.2% Upload: 0.14 KB/s Download: 0.49 KB/s -2023-06-17 16:14:40 + : CPU: 0.3% RAM: 9.2% Upload: 1.49 KB/s Download: 0.34 KB/s -2023-06-17 16:15:40 + : CPU: 0.3% RAM: 9.2% Upload: 1.49 KB/s Download: 0.34 KB/s -2023-06-17 16:16:40 + : CPU: 0.2% RAM: 9.3% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-17 16:17:41 + : CPU: 0.2% RAM: 9.3% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 16:18:41 + : CPU: 0.3% RAM: 9.3% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 16:19:41 + : CPU: 0.3% RAM: 9.3% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 16:20:41 + : CPU: 0.3% RAM: 9.3% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 16:21:41 + : CPU: 0.3% RAM: 9.3% Upload: 1.51 KB/s Download: 0.43 KB/s -2023-06-17 16:22:41 + : CPU: 0.3% RAM: 9.3% Upload: 0.80 KB/s Download: 0.29 KB/s -2023-06-17 16:23:41 + : CPU: 0.3% RAM: 9.3% Upload: 2.20 KB/s Download: 0.45 KB/s -2023-06-17 16:24:41 + : CPU: 0.3% RAM: 9.4% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 16:25:41 + : CPU: 0.3% RAM: 9.4% Upload: 1.49 KB/s Download: 0.34 KB/s -2023-06-17 16:26:41 + : CPU: 0.4% RAM: 9.4% Upload: 2.92 KB/s Download: 0.49 KB/s -2023-06-17 16:27:41 + : CPU: 0.3% RAM: 9.4% Upload: 1.49 KB/s Download: 0.33 KB/s -2023-06-17 16:28:41 + : CPU: 0.3% RAM: 9.4% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 16:29:41 + : CPU: 0.3% RAM: 9.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 16:30:41 + : CPU: 0.3% RAM: 9.4% Upload: 2.89 KB/s Download: 0.39 KB/s -2023-06-17 16:31:41 + : CPU: 0.3% RAM: 9.4% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 16:32:41 + : CPU: 0.3% RAM: 9.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 16:33:41 + : CPU: 0.3% RAM: 9.5% Upload: 1.54 KB/s Download: 0.54 KB/s -2023-06-17 16:34:41 + : CPU: 0.3% RAM: 9.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 16:35:41 + : CPU: 0.2% RAM: 9.5% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 16:36:41 + : CPU: 0.3% RAM: 9.5% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-17 16:37:41 + : CPU: 0.3% RAM: 9.5% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 16:38:41 + : CPU: 0.3% RAM: 9.5% Upload: 1.49 KB/s Download: 0.31 KB/s -2023-06-17 16:39:41 + : CPU: 0.3% RAM: 9.6% Upload: 1.49 KB/s Download: 0.33 KB/s -2023-06-17 16:40:41 + : CPU: 0.3% RAM: 9.6% Upload: 1.48 KB/s Download: 0.31 KB/s -2023-06-17 16:41:41 + : CPU: 0.3% RAM: 9.6% Upload: 1.51 KB/s Download: 0.43 KB/s -2023-06-17 16:42:41 + : CPU: 0.3% RAM: 9.6% Upload: 0.15 KB/s Download: 0.45 KB/s -2023-06-17 16:43:41 + : CPU: 0.2% RAM: 9.6% Upload: 0.13 KB/s Download: 0.48 KB/s -2023-06-17 16:44:41 + : CPU: 0.3% RAM: 9.6% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 16:45:41 + : CPU: 0.3% RAM: 9.6% Upload: 1.48 KB/s Download: 0.33 KB/s -2023-06-17 16:46:41 + : CPU: 0.3% RAM: 9.6% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-17 16:47:41 + : CPU: 0.3% RAM: 9.6% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 16:48:41 + : CPU: 0.3% RAM: 9.6% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 16:49:41 + : CPU: 0.3% RAM: 9.7% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-17 16:50:41 + : CPU: 0.3% RAM: 9.7% Upload: 1.48 KB/s Download: 0.31 KB/s -2023-06-17 16:51:41 + : CPU: 0.3% RAM: 9.7% Upload: 4.31 KB/s Download: 0.56 KB/s -2023-06-17 16:52:42 + : CPU: 0.3% RAM: 9.7% Upload: 4.28 KB/s Download: 0.44 KB/s -2023-06-17 16:53:42 + : CPU: 0.3% RAM: 9.7% Upload: 2.93 KB/s Download: 0.60 KB/s -2023-06-17 16:54:42 + : CPU: 0.3% RAM: 9.7% Upload: 0.78 KB/s Download: 0.29 KB/s -2023-06-17 16:55:42 + : CPU: 0.3% RAM: 9.7% Upload: 0.77 KB/s Download: 0.29 KB/s -2023-06-17 16:56:42 + : CPU: 0.3% RAM: 9.7% Upload: 0.12 KB/s Download: 0.37 KB/s -2023-06-17 16:57:42 + : CPU: 0.2% RAM: 9.8% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 16:58:42 + : CPU: 0.3% RAM: 9.8% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 16:59:42 + : CPU: 0.3% RAM: 9.8% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-17 17:00:42 + : CPU: 0.3% RAM: 9.8% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-17 17:01:42 + : CPU: 0.3% RAM: 9.8% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-17 17:02:42 + : CPU: 0.3% RAM: 9.8% Upload: 0.06 KB/s Download: 0.16 KB/s -2023-06-17 17:03:42 + : CPU: 0.3% RAM: 9.8% Upload: 0.14 KB/s Download: 0.48 KB/s -2023-06-17 17:04:42 + : CPU: 0.3% RAM: 9.8% Upload: 1.49 KB/s Download: 0.33 KB/s -2023-06-17 17:05:42 + : CPU: 0.3% RAM: 9.8% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 17:06:42 + : CPU: 0.3% RAM: 9.8% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-17 17:07:42 + : CPU: 0.2% RAM: 9.9% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 17:08:42 + : CPU: 0.3% RAM: 9.9% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 17:09:42 + : CPU: 0.3% RAM: 9.9% Upload: 1.49 KB/s Download: 0.33 KB/s -2023-06-17 17:10:42 + : CPU: 0.3% RAM: 9.9% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 17:11:42 + : CPU: 0.3% RAM: 9.9% Upload: 0.17 KB/s Download: 0.57 KB/s -2023-06-17 17:12:42 + : CPU: 0.3% RAM: 9.9% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 17:13:42 + : CPU: 0.3% RAM: 9.9% Upload: 0.14 KB/s Download: 0.48 KB/s -2023-06-17 17:14:42 + : CPU: 0.2% RAM: 9.9% Upload: 1.48 KB/s Download: 0.32 KB/s -2023-06-17 17:15:42 + : CPU: 0.3% RAM: 9.9% Upload: 1.48 KB/s Download: 0.33 KB/s -2023-06-17 17:16:42 + : CPU: 0.2% RAM: 10.0% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-17 17:17:42 + : CPU: 0.3% RAM: 10.0% Upload: 1.48 KB/s Download: 0.33 KB/s -2023-06-17 17:18:42 + : CPU: 0.3% RAM: 10.0% Upload: 1.48 KB/s Download: 0.32 KB/s -2023-06-17 17:19:42 + : CPU: 0.3% RAM: 10.0% Upload: 1.49 KB/s Download: 0.33 KB/s -2023-06-17 17:20:42 + : CPU: 0.3% RAM: 10.0% Upload: 1.48 KB/s Download: 0.33 KB/s -2023-06-17 17:21:42 + : CPU: 0.3% RAM: 10.0% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 17:22:42 + : CPU: 0.3% RAM: 10.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 17:23:42 + : CPU: 0.3% RAM: 10.1% Upload: 1.54 KB/s Download: 0.55 KB/s -2023-06-17 17:24:42 + : CPU: 0.3% RAM: 10.1% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 17:25:43 + : CPU: 0.3% RAM: 10.1% Upload: 0.08 KB/s Download: 0.32 KB/s -2023-06-17 17:26:43 + : CPU: 0.3% RAM: 10.1% Upload: 0.10 KB/s Download: 0.36 KB/s -2023-06-17 17:27:43 + : CPU: 0.3% RAM: 10.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 17:28:43 + : CPU: 0.3% RAM: 10.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 17:29:43 + : CPU: 0.3% RAM: 10.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 17:30:43 + : CPU: 0.3% RAM: 10.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 17:31:43 + : CPU: 0.2% RAM: 10.2% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 17:32:43 + : CPU: 0.3% RAM: 10.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 17:33:43 + : CPU: 0.3% RAM: 10.2% Upload: 0.14 KB/s Download: 0.45 KB/s -2023-06-17 17:34:43 + : CPU: 0.3% RAM: 10.2% Upload: 0.09 KB/s Download: 0.22 KB/s -2023-06-17 17:35:43 + : CPU: 0.3% RAM: 10.2% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-17 17:36:43 + : CPU: 0.3% RAM: 10.2% Upload: 0.11 KB/s Download: 0.32 KB/s -2023-06-17 17:37:43 + : CPU: 0.3% RAM: 10.2% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-17 17:38:43 + : CPU: 0.3% RAM: 10.2% Upload: 0.08 KB/s Download: 0.22 KB/s -2023-06-17 17:39:43 + : CPU: 0.3% RAM: 10.2% Upload: 0.09 KB/s Download: 0.22 KB/s -2023-06-17 17:40:43 + : CPU: 0.3% RAM: 10.3% Upload: 0.05 KB/s Download: 0.13 KB/s -2023-06-17 17:41:43 + : CPU: 0.3% RAM: 10.3% Upload: 0.18 KB/s Download: 0.54 KB/s -2023-06-17 17:42:43 + : CPU: 0.3% RAM: 10.3% Upload: 0.08 KB/s Download: 0.22 KB/s -2023-06-17 17:43:43 + : CPU: 0.3% RAM: 10.3% Upload: 0.14 KB/s Download: 0.46 KB/s -2023-06-17 17:44:43 + : CPU: 0.3% RAM: 10.3% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-17 17:45:43 + : CPU: 0.3% RAM: 10.3% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 17:46:43 + : CPU: 0.3% RAM: 10.3% Upload: 0.11 KB/s Download: 0.41 KB/s -2023-06-17 17:47:43 + : CPU: 0.3% RAM: 10.3% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 17:48:43 + : CPU: 0.3% RAM: 10.3% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-17 17:49:43 + : CPU: 0.3% RAM: 10.4% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 17:50:43 + : CPU: 0.3% RAM: 10.4% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-17 17:51:43 + : CPU: 0.3% RAM: 10.4% Upload: 0.12 KB/s Download: 0.37 KB/s -2023-06-17 17:52:43 + : CPU: 0.3% RAM: 10.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 17:53:43 + : CPU: 0.3% RAM: 10.4% Upload: 0.15 KB/s Download: 0.50 KB/s -2023-06-17 17:54:43 + : CPU: 0.3% RAM: 10.4% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-17 17:55:43 + : CPU: 0.3% RAM: 10.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 17:56:43 + : CPU: 0.3% RAM: 10.5% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-17 17:57:43 + : CPU: 0.3% RAM: 10.5% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 17:58:43 + : CPU: 0.3% RAM: 10.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 17:59:43 + : CPU: 0.3% RAM: 10.5% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 18:00:43 + : CPU: 0.3% RAM: 10.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 18:01:43 + : CPU: 0.3% RAM: 10.5% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 18:02:43 + : CPU: 0.3% RAM: 10.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 18:03:43 + : CPU: 0.3% RAM: 10.5% Upload: 0.14 KB/s Download: 0.49 KB/s -2023-06-17 18:04:43 + : CPU: 0.3% RAM: 10.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 18:05:43 + : CPU: 0.3% RAM: 10.6% Upload: 0.13 KB/s Download: 0.38 KB/s -2023-06-17 18:06:44 + : CPU: 0.3% RAM: 10.6% Upload: 1.51 KB/s Download: 0.42 KB/s -2023-06-17 18:07:44 + : CPU: 0.3% RAM: 10.6% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 18:08:44 + : CPU: 0.3% RAM: 10.6% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 18:09:44 + : CPU: 0.3% RAM: 10.6% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 18:10:44 + : CPU: 0.3% RAM: 10.6% Upload: 1.54 KB/s Download: 0.52 KB/s -2023-06-17 18:11:44 + : CPU: 0.4% RAM: 10.6% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 18:12:44 + : CPU: 0.3% RAM: 10.7% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-17 18:13:44 + : CPU: 0.3% RAM: 10.7% Upload: 0.13 KB/s Download: 0.48 KB/s -2023-06-17 18:14:44 + : CPU: 0.3% RAM: 10.7% Upload: 1.49 KB/s Download: 0.32 KB/s -2023-06-17 18:15:44 + : CPU: 0.2% RAM: 10.7% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-17 18:16:44 + : CPU: 0.3% RAM: 10.7% Upload: 1.48 KB/s Download: 0.32 KB/s -2023-06-17 18:17:44 + : CPU: 0.3% RAM: 10.7% Upload: 0.10 KB/s Download: 0.37 KB/s -2023-06-17 18:18:44 + : CPU: 0.3% RAM: 10.7% Upload: 0.08 KB/s Download: 0.24 KB/s -2023-06-17 18:19:44 + : CPU: 0.3% RAM: 10.7% Upload: 1.45 KB/s Download: 0.24 KB/s -2023-06-17 18:20:44 + : CPU: 0.3% RAM: 10.7% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-17 18:22:48 + : Server started -2023-06-17 18:23:47 + : CPU: 0.3% RAM: 7.0% Upload: 0.20 KB/s Download: 0.57 KB/s -2023-06-17 18:24:47 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 18:25:47 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 18:26:47 + : CPU: 0.2% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 18:27:47 + : CPU: 0.3% RAM: 7.1% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 18:28:47 + : CPU: 0.3% RAM: 7.1% Upload: 1.50 KB/s Download: 0.34 KB/s -2023-06-17 18:29:47 + : CPU: 0.3% RAM: 7.1% Upload: 1.51 KB/s Download: 0.36 KB/s -2023-06-17 18:30:47 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 18:31:47 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 18:32:47 + : CPU: 0.3% RAM: 7.2% Upload: 0.16 KB/s Download: 0.57 KB/s -2023-06-17 18:33:47 + : CPU: 0.3% RAM: 7.2% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-17 18:35:47 + : Server started -2023-06-17 18:36:47 + : CPU: 0.4% RAM: 7.0% Upload: 1.69 KB/s Download: 0.87 KB/s -2023-06-17 18:37:47 + : CPU: 0.3% RAM: 7.1% Upload: 1.50 KB/s Download: 0.35 KB/s -2023-06-17 18:38:47 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 18:39:47 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 18:40:47 + : CPU: 0.3% RAM: 7.2% Upload: 1.52 KB/s Download: 0.44 KB/s -2023-06-17 18:41:43 + : updating custom perks, request from web -2023-06-17 18:41:47 + : CPU: 0.3% RAM: 7.2% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-17 18:42:08 + : updating custom perks, request from web -2023-06-17 18:42:47 + : CPU: 0.3% RAM: 7.2% Upload: 0.13 KB/s Download: 0.32 KB/s -2023-06-17 18:43:47 + : CPU: 0.3% RAM: 7.2% Upload: 0.18 KB/s Download: 0.37 KB/s -2023-06-17 18:44:47 + : CPU: 0.3% RAM: 7.2% Upload: 1.65 KB/s Download: 0.49 KB/s -2023-06-17 18:45:47 + : CPU: 0.3% RAM: 7.2% Upload: 0.28 KB/s Download: 0.62 KB/s -2023-06-17 18:46:47 + : CPU: 0.3% RAM: 7.3% Upload: 0.32 KB/s Download: 0.64 KB/s -2023-06-17 18:47:47 + : CPU: 0.3% RAM: 7.3% Upload: 0.25 KB/s Download: 0.45 KB/s -2023-06-17 18:48:48 + : CPU: 0.3% RAM: 7.3% Upload: 0.22 KB/s Download: 0.39 KB/s -2023-06-17 18:49:48 + : CPU: 0.2% RAM: 7.3% Upload: 0.25 KB/s Download: 0.43 KB/s -2023-06-17 18:50:48 + : CPU: 0.3% RAM: 7.3% Upload: 0.24 KB/s Download: 0.41 KB/s -2023-06-17 18:51:48 + : CPU: 0.3% RAM: 7.3% Upload: 0.25 KB/s Download: 0.51 KB/s -2023-06-17 18:52:48 + : CPU: 0.3% RAM: 7.3% Upload: 0.25 KB/s Download: 0.42 KB/s -2023-06-17 18:53:48 + : CPU: 0.3% RAM: 7.4% Upload: 1.65 KB/s Download: 0.49 KB/s -2023-06-17 18:54:48 + : CPU: 0.3% RAM: 7.4% Upload: 0.13 KB/s Download: 0.30 KB/s -2023-06-17 18:55:48 + : CPU: 0.3% RAM: 7.4% Upload: 0.17 KB/s Download: 0.50 KB/s -2023-06-17 18:56:48 + : CPU: 0.3% RAM: 7.4% Upload: 0.13 KB/s Download: 0.38 KB/s -2023-06-17 18:57:48 + : CPU: 0.3% RAM: 7.4% Upload: 0.11 KB/s Download: 0.29 KB/s -2023-06-17 18:58:48 + : CPU: 0.3% RAM: 7.4% Upload: 0.11 KB/s Download: 0.27 KB/s -2023-06-17 18:59:48 + : CPU: 0.3% RAM: 7.4% Upload: 0.11 KB/s Download: 0.29 KB/s -2023-06-17 19:00:48 + : CPU: 0.3% RAM: 7.4% Upload: 0.11 KB/s Download: 0.27 KB/s -2023-06-17 19:01:48 + : CPU: 0.3% RAM: 7.5% Upload: 0.13 KB/s Download: 0.39 KB/s -2023-06-17 19:02:48 + : CPU: 0.3% RAM: 7.5% Upload: 0.11 KB/s Download: 0.29 KB/s -2023-06-17 19:03:48 + : CPU: 0.3% RAM: 7.5% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-17 19:04:48 + : CPU: 0.3% RAM: 7.5% Upload: 0.11 KB/s Download: 0.28 KB/s -2023-06-17 19:05:48 + : CPU: 0.3% RAM: 7.5% Upload: 0.22 KB/s Download: 0.70 KB/s -2023-06-17 19:06:48 + : CPU: 0.3% RAM: 7.5% Upload: 0.13 KB/s Download: 0.38 KB/s -2023-06-17 19:07:48 + : CPU: 0.3% RAM: 7.5% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-17 19:08:48 + : CPU: 0.3% RAM: 7.5% Upload: 0.11 KB/s Download: 0.29 KB/s -2023-06-17 19:09:48 + : CPU: 0.3% RAM: 7.5% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-17 19:10:49 + : CPU: 0.3% RAM: 7.6% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-17 19:11:49 + : CPU: 0.3% RAM: 7.6% Upload: 0.13 KB/s Download: 0.40 KB/s -2023-06-17 19:12:49 + : CPU: 0.3% RAM: 7.6% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-17 19:13:49 + : CPU: 0.3% RAM: 7.6% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-17 19:14:49 + : CPU: 0.3% RAM: 7.6% Upload: 0.07 KB/s Download: 0.18 KB/s -2023-06-17 19:15:49 + : CPU: 0.3% RAM: 7.6% Upload: 0.15 KB/s Download: 0.50 KB/s -2023-06-17 19:16:49 + : CPU: 0.3% RAM: 7.6% Upload: 0.13 KB/s Download: 0.38 KB/s -2023-06-17 19:17:49 + : CPU: 0.3% RAM: 7.6% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-17 19:18:49 + : CPU: 0.3% RAM: 7.6% Upload: 0.10 KB/s Download: 0.28 KB/s -2023-06-17 19:19:49 + : CPU: 0.3% RAM: 7.7% Upload: 0.11 KB/s Download: 0.30 KB/s -2023-06-17 19:20:49 + : CPU: 0.3% RAM: 7.7% Upload: 0.11 KB/s Download: 0.28 KB/s -2023-06-17 19:21:49 + : CPU: 0.3% RAM: 7.7% Upload: 0.14 KB/s Download: 0.40 KB/s -2023-06-17 19:22:49 + : CPU: 0.3% RAM: 7.7% Upload: 0.11 KB/s Download: 0.28 KB/s -2023-06-17 19:23:49 + : CPU: 0.3% RAM: 7.7% Upload: 0.11 KB/s Download: 0.30 KB/s -2023-06-17 19:24:49 + : CPU: 0.3% RAM: 7.7% Upload: 0.12 KB/s Download: 0.33 KB/s -2023-06-17 19:25:49 + : CPU: 0.3% RAM: 7.7% Upload: 0.16 KB/s Download: 0.50 KB/s -2023-06-17 19:26:49 + : CPU: 0.3% RAM: 7.7% Upload: 0.13 KB/s Download: 0.38 KB/s -2023-06-17 19:27:49 + : CPU: 0.3% RAM: 7.8% Upload: 0.11 KB/s Download: 0.29 KB/s -2023-06-17 19:28:49 + : CPU: 0.3% RAM: 7.7% Upload: 0.11 KB/s Download: 0.28 KB/s -2023-06-17 19:29:49 + : CPU: 0.3% RAM: 7.8% Upload: 0.11 KB/s Download: 0.30 KB/s -2023-06-17 19:30:49 + : CPU: 0.3% RAM: 7.8% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-17 19:31:49 + : CPU: 0.3% RAM: 7.8% Upload: 0.13 KB/s Download: 0.39 KB/s -2023-06-17 19:32:50 + : CPU: 0.3% RAM: 7.8% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-17 19:33:50 + : CPU: 0.3% RAM: 7.8% Upload: 0.11 KB/s Download: 0.29 KB/s -2023-06-17 19:34:50 + : CPU: 0.3% RAM: 7.8% Upload: 0.14 KB/s Download: 0.37 KB/s -2023-06-17 19:35:50 + : CPU: 0.3% RAM: 7.8% Upload: 0.20 KB/s Download: 0.62 KB/s -2023-06-17 19:36:50 + : CPU: 0.3% RAM: 7.8% Upload: 0.14 KB/s Download: 0.39 KB/s -2023-06-17 19:37:50 + : CPU: 0.3% RAM: 7.9% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-17 19:38:50 + : CPU: 0.3% RAM: 7.9% Upload: 0.11 KB/s Download: 0.28 KB/s -2023-06-17 19:39:50 + : CPU: 0.3% RAM: 7.9% Upload: 0.11 KB/s Download: 0.30 KB/s -2023-06-17 19:40:50 + : CPU: 0.3% RAM: 7.9% Upload: 0.11 KB/s Download: 0.27 KB/s -2023-06-17 19:41:50 + : CPU: 0.3% RAM: 7.9% Upload: 0.13 KB/s Download: 0.39 KB/s -2023-06-17 19:42:50 + : CPU: 0.3% RAM: 7.9% Upload: 0.11 KB/s Download: 0.27 KB/s -2023-06-17 19:43:50 + : CPU: 0.3% RAM: 7.9% Upload: 0.11 KB/s Download: 0.29 KB/s -2023-06-17 19:44:50 + : CPU: 0.3% RAM: 8.0% Upload: 0.11 KB/s Download: 0.32 KB/s -2023-06-17 19:45:50 + : CPU: 0.3% RAM: 8.0% Upload: 0.16 KB/s Download: 0.50 KB/s -2023-06-17 19:46:50 + : CPU: 0.3% RAM: 8.0% Upload: 0.14 KB/s Download: 0.38 KB/s -2023-06-17 19:47:50 + : CPU: 0.3% RAM: 8.0% Upload: 0.11 KB/s Download: 0.29 KB/s -2023-06-17 19:48:50 + : CPU: 0.3% RAM: 8.0% Upload: 0.11 KB/s Download: 0.27 KB/s -2023-06-17 19:49:50 + : CPU: 0.3% RAM: 8.0% Upload: 0.11 KB/s Download: 0.29 KB/s -2023-06-17 19:50:50 + : CPU: 0.3% RAM: 8.0% Upload: 0.11 KB/s Download: 0.28 KB/s -2023-06-17 19:51:50 + : CPU: 0.3% RAM: 8.0% Upload: 0.14 KB/s Download: 0.39 KB/s -2023-06-17 19:52:50 + : CPU: 0.3% RAM: 8.0% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-17 19:53:51 + : CPU: 0.3% RAM: 8.0% Upload: 0.07 KB/s Download: 0.17 KB/s -2023-06-17 19:54:51 + : CPU: 0.3% RAM: 8.1% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-17 19:55:51 + : CPU: 0.3% RAM: 8.1% Upload: 0.17 KB/s Download: 0.50 KB/s -2023-06-17 19:56:51 + : CPU: 0.3% RAM: 8.1% Upload: 0.14 KB/s Download: 0.38 KB/s -2023-06-17 19:57:51 + : CPU: 0.3% RAM: 8.1% Upload: 0.11 KB/s Download: 0.29 KB/s -2023-06-17 19:58:51 + : CPU: 0.3% RAM: 8.1% Upload: 0.11 KB/s Download: 0.28 KB/s -2023-06-17 19:59:51 + : CPU: 0.3% RAM: 8.2% Upload: 0.11 KB/s Download: 0.29 KB/s -2023-06-17 20:00:51 + : CPU: 0.3% RAM: 8.2% Upload: 0.12 KB/s Download: 0.28 KB/s -2023-06-17 20:01:51 + : CPU: 0.3% RAM: 8.2% Upload: 0.14 KB/s Download: 0.40 KB/s -2023-06-17 20:02:51 + : CPU: 0.3% RAM: 8.2% Upload: 0.11 KB/s Download: 0.28 KB/s -2023-06-17 20:03:51 + : CPU: 0.3% RAM: 8.2% Upload: 0.11 KB/s Download: 0.30 KB/s -2023-06-17 20:04:51 + : CPU: 0.3% RAM: 8.2% Upload: 0.17 KB/s Download: 0.48 KB/s -2023-06-17 20:05:51 + : CPU: 0.3% RAM: 8.2% Upload: 0.16 KB/s Download: 0.50 KB/s -2023-06-17 20:06:51 + : CPU: 0.3% RAM: 8.2% Upload: 0.13 KB/s Download: 0.38 KB/s -2023-06-17 20:07:51 + : CPU: 0.3% RAM: 8.2% Upload: 0.11 KB/s Download: 0.29 KB/s -2023-06-17 20:08:51 + : CPU: 0.3% RAM: 8.3% Upload: 0.10 KB/s Download: 0.28 KB/s -2023-06-17 20:09:51 + : CPU: 0.3% RAM: 8.3% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-17 20:10:51 + : CPU: 0.3% RAM: 8.3% Upload: 0.11 KB/s Download: 0.28 KB/s -2023-06-17 20:11:51 + : CPU: 0.3% RAM: 8.3% Upload: 0.14 KB/s Download: 0.40 KB/s -2023-06-17 20:12:51 + : CPU: 0.3% RAM: 8.3% Upload: 1.60 KB/s Download: 0.43 KB/s -2023-06-17 20:13:51 + : CPU: 0.3% RAM: 8.3% Upload: 0.23 KB/s Download: 0.42 KB/s -2023-06-17 20:14:52 + : CPU: 0.3% RAM: 8.3% Upload: 0.25 KB/s Download: 0.42 KB/s -2023-06-17 20:15:52 + : CPU: 0.3% RAM: 8.3% Upload: 0.30 KB/s Download: 0.64 KB/s -2023-06-17 20:16:52 + : CPU: 0.3% RAM: 8.4% Upload: 0.26 KB/s Download: 0.50 KB/s -2023-06-17 20:17:52 + : CPU: 0.3% RAM: 8.4% Upload: 0.26 KB/s Download: 0.47 KB/s -2023-06-17 20:18:52 + : CPU: 0.3% RAM: 8.4% Upload: 0.25 KB/s Download: 0.42 KB/s -2023-06-17 20:19:52 + : CPU: 0.2% RAM: 8.4% Upload: 0.13 KB/s Download: 0.31 KB/s -2023-06-17 20:20:52 + : CPU: 0.3% RAM: 8.4% Upload: 1.63 KB/s Download: 0.46 KB/s -2023-06-17 20:21:52 + : CPU: 0.3% RAM: 8.4% Upload: 0.13 KB/s Download: 0.39 KB/s -2023-06-17 20:22:52 + : CPU: 0.3% RAM: 8.5% Upload: 0.11 KB/s Download: 0.28 KB/s -2023-06-17 20:23:52 + : CPU: 0.3% RAM: 8.5% Upload: 0.11 KB/s Download: 0.29 KB/s -2023-06-17 20:24:52 + : CPU: 0.3% RAM: 8.5% Upload: 0.19 KB/s Download: 0.36 KB/s -2023-06-17 20:25:52 + : CPU: 0.3% RAM: 8.5% Upload: 0.31 KB/s Download: 0.65 KB/s -2023-06-17 20:52:11 + : CPU: 0.3% RAM: 8.5% Upload: 0.34 KB/s Download: 0.91 KB/s -2023-06-17 20:53:11 + : CPU: 0.4% RAM: 8.5% Upload: 1.78 KB/s Download: 1.07 KB/s -2023-06-17 20:54:11 + : CPU: 0.3% RAM: 8.5% Upload: 2.92 KB/s Download: 0.41 KB/s -2023-06-17 20:55:11 + : CPU: 0.3% RAM: 8.5% Upload: 0.11 KB/s Download: 0.29 KB/s -2023-06-17 20:56:11 + : CPU: 0.3% RAM: 8.5% Upload: 0.07 KB/s Download: 0.23 KB/s -2023-06-17 20:57:11 + : CPU: 0.3% RAM: 8.5% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-17 20:58:11 + : CPU: 0.3% RAM: 8.6% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 20:58:44 + : Server started -2023-06-17 20:59:44 + : CPU: 0.3% RAM: 7.0% Upload: 0.28 KB/s Download: 0.78 KB/s -2023-06-17 21:00:44 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 21:01:44 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 21:02:44 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 21:03:44 + : CPU: 0.3% RAM: 7.1% Upload: 0.10 KB/s Download: 0.35 KB/s -2023-06-17 21:36:26 + : Server started -2023-06-17 21:37:26 + : CPU: 0.4% RAM: 7.1% Upload: 0.27 KB/s Download: 0.83 KB/s -2023-06-17 21:38:26 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 21:39:26 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 21:40:26 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 21:41:26 + : CPU: 0.3% RAM: 7.1% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-17 21:42:26 + : CPU: 0.2% RAM: 7.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 21:43:26 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 21:44:26 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 22:18:48 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 22:19:48 + : CPU: 0.4% RAM: 7.2% Upload: 0.20 KB/s Download: 0.93 KB/s -2023-06-17 22:20:48 + : CPU: 0.2% RAM: 7.2% Upload: 0.28 KB/s Download: 0.54 KB/s -2023-06-17 22:20:48 + : disable pb-IF4iU0QaEw== , request from web -2023-06-17 22:21:48 + : CPU: 0.3% RAM: 7.2% Upload: 1.54 KB/s Download: 0.37 KB/s -2023-06-17 22:22:48 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-17 22:23:49 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.24 KB/s -2023-06-17 22:24:49 + : CPU: 0.2% RAM: 7.3% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-17 22:25:49 + : CPU: 0.3% RAM: 7.3% Upload: 0.12 KB/s Download: 0.34 KB/s -2023-06-17 22:30:27 + : Server started -2023-06-17 22:31:26 + : CPU: 0.3% RAM: 7.0% Upload: 0.31 KB/s Download: 0.99 KB/s -2023-06-17 22:32:26 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 22:33:26 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 22:34:26 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 22:35:26 + : CPU: 0.3% RAM: 7.1% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-17 22:36:27 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 22:37:27 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 22:38:27 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 22:39:27 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 22:40:27 + : CPU: 0.3% RAM: 7.2% Upload: 0.17 KB/s Download: 0.57 KB/s -2023-06-17 22:41:27 + : CPU: 0.2% RAM: 7.2% Upload: 0.14 KB/s Download: 0.38 KB/s -2023-06-17 22:47:21 + : Server started -2023-06-17 22:48:21 + : CPU: 0.4% RAM: 7.0% Upload: 0.32 KB/s Download: 0.96 KB/s -2023-06-17 22:49:21 + : CPU: 0.3% RAM: 7.1% Upload: 0.10 KB/s Download: 0.33 KB/s -2023-06-17 22:50:21 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 22:51:21 + : CPU: 0.2% RAM: 7.1% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-17 22:52:21 + : CPU: 0.3% RAM: 7.2% Upload: 0.12 KB/s Download: 0.37 KB/s -2023-06-17 22:56:16 + : Server started -2023-06-17 22:57:16 + : CPU: 0.3% RAM: 7.1% Upload: 0.32 KB/s Download: 0.97 KB/s -2023-06-17 22:58:16 + : CPU: 0.3% RAM: 7.1% Upload: 0.15 KB/s Download: 0.31 KB/s -2023-06-17 22:59:16 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 23:00:16 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 23:01:16 + : CPU: 0.3% RAM: 7.2% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 23:02:16 + : CPU: 0.3% RAM: 7.2% Upload: 1.51 KB/s Download: 0.34 KB/s -2023-06-17 23:03:16 + : CPU: 0.3% RAM: 7.2% Upload: 1.50 KB/s Download: 0.35 KB/s -2023-06-17 23:04:16 + : CPU: 0.3% RAM: 7.2% Upload: 1.53 KB/s Download: 0.37 KB/s -2023-06-17 23:04:58 + : muting pb-IF4iU0QaEw== , request from web -2023-06-17 23:05:16 + : CPU: 0.3% RAM: 7.2% Upload: 0.22 KB/s Download: 0.41 KB/s -2023-06-17 23:05:23 + : banning pb-IF4iU0QaEw== , request from web -2023-06-17 23:06:16 + : CPU: 0.3% RAM: 7.3% Upload: 0.19 KB/s Download: 0.52 KB/s -2023-06-17 23:06:28 + : unbanning pb-IF4iU0QaEw== , request from web -2023-06-17 23:06:33 + : unmuting pb-IF4iU0QaEw== , request from web -2023-06-17 23:06:35 + : enabling kick vote for pb-IF4iU0QaEw== , request from web -2023-06-17 23:06:52 + : muting pb-IF4iU0QaEw== , request from web -2023-06-17 23:07:16 + : CPU: 0.3% RAM: 7.3% Upload: 0.33 KB/s Download: 0.71 KB/s -2023-06-17 23:08:16 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-17 23:09:16 + : CPU: 0.2% RAM: 7.3% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 23:10:16 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.31 KB/s -2023-06-17 23:11:16 + : CPU: 0.3% RAM: 7.3% Upload: 2.91 KB/s Download: 0.42 KB/s -2023-06-17 23:12:16 + : CPU: 0.3% RAM: 7.3% Upload: 0.14 KB/s Download: 0.39 KB/s -2023-06-17 23:13:16 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 23:22:00 + : Server started -2023-06-17 23:23:00 + : CPU: 0.4% RAM: 7.1% Upload: 0.32 KB/s Download: 0.91 KB/s -2023-06-17 23:23:55 + : disable pb-IF4iU0QaEw== , request from web -2023-06-17 23:23:58 + : unmuting pb-IF4iU0QaEw== , request from web -2023-06-17 23:24:00 + : CPU: 0.3% RAM: 7.1% Upload: 1.60 KB/s Download: 0.46 KB/s -2023-06-17 23:24:00 + : unmuting pb-IF4iU0QaEw== , request from web -2023-06-17 23:25:31 + : Server started -2023-06-17 23:26:05 + : unmuting pb-IF4iU0QaEw== , request from web -2023-06-17 23:26:14 + : muting pb-IF4iU0QaEw== , request from web -2023-06-17 23:26:31 + : CPU: 0.4% RAM: 7.1% Upload: 0.33 KB/s Download: 0.92 KB/s -2023-06-17 23:27:31 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 23:28:12 + : muting pb-IF4iU0QaEw== , request from web -2023-06-17 23:30:26 + : Server started -2023-06-17 23:31:06 + : muting pb-IF4iU0QaEw== , request from web -2023-06-17 23:31:21 + : banning pb-IF4iU0QaEw== , request from web -2023-06-17 23:31:26 + : CPU: 0.4% RAM: 7.1% Upload: 0.36 KB/s Download: 0.96 KB/s -2023-06-17 23:31:39 + : unbanning pb-IF4iU0QaEw== , request from web -2023-06-17 23:31:48 + : unmuting pb-IF4iU0QaEw== , request from web -2023-06-17 23:32:26 + : CPU: 0.3% RAM: 7.2% Upload: 3.90 KB/s Download: 0.43 KB/s -2023-06-17 23:33:26 + : CPU: 0.3% RAM: 7.2% Upload: 0.34 KB/s Download: 0.41 KB/s -2023-06-17 23:34:26 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 23:35:26 + : CPU: 0.5% RAM: 7.3% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-17 23:36:26 + : CPU: 0.6% RAM: 7.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 23:37:26 + : CPU: 0.6% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 23:38:26 + : CPU: 0.6% RAM: 7.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 23:39:26 + : CPU: 0.6% RAM: 7.3% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 23:40:26 + : CPU: 0.6% RAM: 7.3% Upload: 0.14 KB/s Download: 0.46 KB/s -2023-06-17 23:41:26 + : CPU: 0.6% RAM: 7.3% Upload: 0.16 KB/s Download: 0.49 KB/s -2023-06-17 23:42:26 + : CPU: 0.6% RAM: 7.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 23:43:26 + : CPU: 0.6% RAM: 7.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 23:44:26 + : CPU: 0.5% RAM: 7.4% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 23:45:26 + : CPU: 0.6% RAM: 7.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 23:46:26 + : CPU: 0.6% RAM: 7.4% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-17 23:47:26 + : CPU: 0.6% RAM: 7.4% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-17 23:48:27 + : CPU: 0.5% RAM: 7.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 23:49:27 + : CPU: 0.3% RAM: 7.4% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-17 23:50:58 + : Server started -2023-06-17 23:51:57 + : CPU: 0.3% RAM: 7.0% Upload: 0.30 KB/s Download: 0.97 KB/s -2023-06-17 23:52:57 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 23:53:57 + : CPU: 0.2% RAM: 7.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-17 23:54:57 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-17 23:55:57 + : CPU: 0.3% RAM: 7.1% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-17 23:56:57 + : CPU: 0.2% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 23:57:57 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-17 23:58:57 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-17 23:59:57 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-18 00:00:57 + : CPU: 0.3% RAM: 7.2% Upload: 0.17 KB/s Download: 0.57 KB/s -2023-06-18 00:01:58 + : CPU: 0.3% RAM: 7.2% Upload: 0.14 KB/s Download: 0.40 KB/s -2023-06-18 00:02:58 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-18 00:03:58 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-18 00:04:58 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-18 00:05:58 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-18 00:06:58 + : CPU: 0.3% RAM: 7.3% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-18 00:07:58 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-18 00:11:33 + : Server started -2023-06-18 00:12:33 + : CPU: 0.4% RAM: 7.0% Upload: 0.30 KB/s Download: 0.94 KB/s -2023-06-18 00:13:33 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-18 00:14:33 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-18 00:15:33 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-18 00:16:33 + : CPU: 0.3% RAM: 7.1% Upload: 0.12 KB/s Download: 0.43 KB/s -2023-06-18 00:17:33 + : CPU: 0.3% RAM: 7.1% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-18 00:18:33 + : CPU: 0.3% RAM: 7.1% Upload: 0.10 KB/s Download: 0.26 KB/s -2023-06-18 00:19:33 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-18 00:20:33 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-18 00:21:33 + : CPU: 0.3% RAM: 7.2% Upload: 0.18 KB/s Download: 0.63 KB/s -2023-06-18 00:22:33 + : CPU: 0.4% RAM: 7.2% Upload: 0.14 KB/s Download: 0.38 KB/s -2023-06-18 00:23:33 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-18 00:24:33 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-18 00:25:33 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-18 00:26:33 + : CPU: 0.4% RAM: 7.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-18 00:27:33 + : CPU: 0.3% RAM: 7.2% Upload: 0.12 KB/s Download: 0.37 KB/s -2023-06-18 00:28:33 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-18 00:32:13 + : Server started -2023-06-18 00:33:12 + : CPU: 0.4% RAM: 7.0% Upload: 0.33 KB/s Download: 0.71 KB/s -2023-06-18 00:34:12 + : CPU: 0.4% RAM: 7.0% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-18 00:35:12 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-18 00:36:12 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-18 00:37:12 + : CPU: 0.3% RAM: 7.1% Upload: 0.12 KB/s Download: 0.37 KB/s -2023-06-18 00:38:12 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-18 00:39:12 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-18 00:40:12 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-18 00:41:12 + : CPU: 0.4% RAM: 7.1% Upload: 0.12 KB/s Download: 0.27 KB/s -2023-06-18 00:42:12 + : CPU: 0.2% RAM: 7.1% Upload: 0.20 KB/s Download: 0.57 KB/s -2023-06-18 00:43:12 + : CPU: 0.3% RAM: 7.1% Upload: 0.23 KB/s Download: 0.36 KB/s -2023-06-18 00:44:12 + : CPU: 0.3% RAM: 7.2% Upload: 0.10 KB/s Download: 0.24 KB/s -2023-06-18 00:45:12 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.24 KB/s -2023-06-18 00:46:12 + : CPU: 0.3% RAM: 7.2% Upload: 0.11 KB/s Download: 0.24 KB/s -2023-06-18 00:47:12 + : CPU: 0.2% RAM: 7.2% Upload: 0.11 KB/s Download: 0.26 KB/s -2023-06-18 00:48:12 + : CPU: 0.3% RAM: 7.2% Upload: 0.13 KB/s Download: 0.35 KB/s -2023-06-18 00:49:12 + : CPU: 0.3% RAM: 7.2% Upload: 0.10 KB/s Download: 0.25 KB/s -2023-06-18 00:52:48 + : Server started -2023-06-18 00:53:47 + : CPU: 0.3% RAM: 7.1% Upload: 0.34 KB/s Download: 1.03 KB/s -2023-06-18 00:54:47 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.22 KB/s -2023-06-18 00:55:47 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-18 00:56:47 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.22 KB/s -2023-06-18 00:57:47 + : CPU: 0.3% RAM: 7.1% Upload: 0.11 KB/s Download: 0.33 KB/s -2023-06-18 00:58:47 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.22 KB/s -2023-06-18 00:59:47 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-18 01:00:47 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.22 KB/s -2023-06-18 01:01:47 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-18 01:02:48 + : CPU: 0.3% RAM: 7.2% Upload: 0.14 KB/s Download: 0.43 KB/s -2023-06-18 01:03:48 + : CPU: 0.3% RAM: 7.2% Upload: 0.17 KB/s Download: 0.49 KB/s -2023-06-18 01:04:48 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-18 01:05:48 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-18 01:06:48 + : CPU: 0.3% RAM: 7.3% Upload: 0.12 KB/s Download: 0.26 KB/s -2023-06-18 01:07:48 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-18 01:08:48 + : CPU: 0.3% RAM: 7.3% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-18 01:09:48 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-18 01:13:24 + : Server started -2023-06-18 01:14:24 + : CPU: 0.3% RAM: 7.0% Upload: 0.35 KB/s Download: 1.26 KB/s -2023-06-18 01:15:24 + : CPU: 0.3% RAM: 7.0% Upload: 0.10 KB/s Download: 0.28 KB/s -2023-06-18 01:16:24 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-18 01:17:24 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-18 01:18:24 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-18 01:19:24 + : CPU: 0.4% RAM: 7.1% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-18 01:20:24 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-18 01:21:24 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-18 01:22:24 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-18 01:23:24 + : CPU: 0.3% RAM: 7.1% Upload: 0.14 KB/s Download: 0.48 KB/s -2023-06-18 01:24:24 + : CPU: 0.4% RAM: 7.2% Upload: 0.17 KB/s Download: 0.47 KB/s -2023-06-18 01:25:24 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-18 01:26:24 + : CPU: 0.3% RAM: 7.2% Upload: 0.10 KB/s Download: 0.28 KB/s -2023-06-18 01:27:24 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-18 01:28:24 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-18 01:29:24 + : CPU: 0.3% RAM: 7.2% Upload: 0.12 KB/s Download: 0.40 KB/s -2023-06-18 11:47:26 + : CPU: 0.2% RAM: 7.2% Upload: 0.06 KB/s Download: 0.13 KB/s -2023-06-18 11:48:29 + : Server started -2023-06-18 11:49:27 + : CPU: 0.6% RAM: 7.0% Upload: 0.24 KB/s Download: 0.80 KB/s -2023-06-18 11:50:28 + : CPU: 0.5% RAM: 7.1% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-18 11:51:28 + : CPU: 0.5% RAM: 7.1% Upload: 0.08 KB/s Download: 0.38 KB/s -2023-06-18 11:52:28 + : CPU: 0.4% RAM: 7.1% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-18 11:53:28 + : CPU: 0.5% RAM: 7.1% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-18 11:54:28 + : CPU: 0.4% RAM: 7.1% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-18 11:55:28 + : CPU: 0.4% RAM: 7.1% Upload: 0.10 KB/s Download: 0.35 KB/s -2023-06-18 11:56:28 + : CPU: 0.5% RAM: 7.1% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-18 11:57:28 + : CPU: 0.5% RAM: 7.2% Upload: 0.09 KB/s Download: 0.31 KB/s -2023-06-18 11:58:28 + : CPU: 0.5% RAM: 7.2% Upload: 0.31 KB/s Download: 0.69 KB/s -2023-06-18 11:59:28 + : CPU: 0.5% RAM: 7.2% Upload: 0.10 KB/s Download: 0.31 KB/s -2023-06-18 12:00:28 + : CPU: 0.5% RAM: 7.2% Upload: 0.10 KB/s Download: 0.31 KB/s -2023-06-18 12:01:28 + : CPU: 0.5% RAM: 7.2% Upload: 0.09 KB/s Download: 0.31 KB/s -2023-06-18 12:02:28 + : CPU: 0.5% RAM: 7.2% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-18 12:03:28 + : CPU: 0.5% RAM: 7.2% Upload: 0.14 KB/s Download: 0.44 KB/s -2023-06-18 12:04:28 + : CPU: 0.5% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-18 12:05:28 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-18 12:09:17 + : Server started -2023-06-18 12:10:13 + : CPU: 0.7% RAM: 7.1% Upload: 0.26 KB/s Download: 0.97 KB/s -2023-06-18 12:11:13 + : CPU: 0.4% RAM: 7.1% Upload: 0.14 KB/s Download: 0.41 KB/s -2023-06-18 12:12:13 + : CPU: 0.5% RAM: 7.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-18 12:13:13 + : CPU: 0.4% RAM: 7.2% Upload: 0.08 KB/s Download: 0.22 KB/s -2023-06-18 12:14:13 + : CPU: 0.5% RAM: 7.2% Upload: 1.51 KB/s Download: 0.44 KB/s -2023-06-18 12:15:13 + : CPU: 0.5% RAM: 7.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-18 12:16:13 + : CPU: 0.4% RAM: 7.2% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-18 12:17:13 + : CPU: 0.5% RAM: 7.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-18 12:18:14 + : CPU: 0.4% RAM: 7.3% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-18 12:19:14 + : CPU: 0.4% RAM: 7.3% Upload: 0.16 KB/s Download: 0.56 KB/s -2023-06-18 12:20:14 + : CPU: 0.5% RAM: 7.3% Upload: 0.15 KB/s Download: 0.44 KB/s -2023-06-18 12:21:14 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-18 12:22:14 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.31 KB/s -2023-06-18 12:23:14 + : CPU: 0.5% RAM: 7.3% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-18 12:24:14 + : CPU: 0.5% RAM: 7.3% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-18 12:25:14 + : CPU: 0.6% RAM: 7.3% Upload: 0.11 KB/s Download: 0.39 KB/s -2023-06-18 12:26:14 + : CPU: 0.5% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-18 12:30:05 + : Server started -2023-06-18 12:31:04 + : CPU: 0.5% RAM: 7.0% Upload: 0.28 KB/s Download: 0.91 KB/s -2023-06-18 12:32:04 + : CPU: 0.4% RAM: 7.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-18 12:33:04 + : CPU: 0.4% RAM: 7.1% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-18 12:34:04 + : CPU: 0.5% RAM: 7.1% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-18 12:35:04 + : CPU: 0.5% RAM: 7.2% Upload: 0.10 KB/s Download: 0.39 KB/s -2023-06-18 12:36:04 + : CPU: 0.5% RAM: 7.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-18 12:37:04 + : CPU: 0.4% RAM: 7.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-18 12:38:04 + : CPU: 0.4% RAM: 7.2% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-18 12:39:04 + : CPU: 0.4% RAM: 7.2% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-18 12:40:04 + : CPU: 0.5% RAM: 7.2% Upload: 0.16 KB/s Download: 0.64 KB/s -2023-06-18 12:41:04 + : CPU: 0.5% RAM: 7.2% Upload: 0.14 KB/s Download: 0.36 KB/s -2023-06-18 12:42:04 + : CPU: 0.4% RAM: 7.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-18 12:43:04 + : CPU: 0.4% RAM: 7.3% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-18 12:44:04 + : CPU: 0.4% RAM: 7.3% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-18 12:45:04 + : CPU: 0.5% RAM: 7.3% Upload: 1.61 KB/s Download: 0.47 KB/s -2023-06-18 12:46:04 + : CPU: 0.4% RAM: 7.3% Upload: 0.13 KB/s Download: 0.39 KB/s -2023-06-18 12:47:04 + : CPU: 0.4% RAM: 7.3% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-18 12:50:59 + : Server started -2023-06-18 12:51:58 + : CPU: 0.7% RAM: 7.1% Upload: 1.77 KB/s Download: 1.11 KB/s -2023-06-18 12:52:58 + : CPU: 0.5% RAM: 7.1% Upload: 0.16 KB/s Download: 0.37 KB/s -2023-06-18 12:53:58 + : CPU: 0.5% RAM: 7.1% Upload: 0.12 KB/s Download: 0.40 KB/s -2023-06-18 12:54:58 + : CPU: 0.6% RAM: 7.1% Upload: 0.17 KB/s Download: 0.52 KB/s -2023-06-18 12:55:59 + : CPU: 0.6% RAM: 7.2% Upload: 0.19 KB/s Download: 0.45 KB/s -2023-06-18 12:56:59 + : CPU: 0.6% RAM: 7.2% Upload: 1.54 KB/s Download: 0.38 KB/s -2023-06-18 12:57:59 + : CPU: 0.5% RAM: 7.2% Upload: 1.50 KB/s Download: 0.37 KB/s -2023-06-18 12:58:59 + : CPU: 0.5% RAM: 7.2% Upload: 1.49 KB/s Download: 0.35 KB/s -2023-06-18 12:59:59 + : CPU: 0.4% RAM: 7.2% Upload: 0.09 KB/s Download: 0.31 KB/s -2023-06-18 13:00:59 + : CPU: 0.4% RAM: 7.2% Upload: 0.17 KB/s Download: 0.57 KB/s -2023-06-18 13:01:59 + : CPU: 0.4% RAM: 7.2% Upload: 0.15 KB/s Download: 0.40 KB/s -2023-06-18 13:02:59 + : CPU: 0.4% RAM: 7.3% Upload: 1.50 KB/s Download: 0.38 KB/s -2023-06-18 13:03:59 + : CPU: 0.5% RAM: 7.3% Upload: 1.59 KB/s Download: 0.48 KB/s -2023-06-18 13:04:59 + : CPU: 0.4% RAM: 7.3% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-18 13:05:59 + : CPU: 0.5% RAM: 7.3% Upload: 0.30 KB/s Download: 0.54 KB/s -2023-06-18 13:06:59 + : CPU: 0.5% RAM: 7.3% Upload: 1.59 KB/s Download: 0.41 KB/s -2023-06-18 13:07:59 + : CPU: 0.5% RAM: 7.3% Upload: 2.98 KB/s Download: 0.53 KB/s -2023-06-18 13:11:53 + : Server started -2023-06-18 13:12:51 + : CPU: 0.4% RAM: 7.0% Upload: 0.15 KB/s Download: 0.21 KB/s -2023-06-18 13:13:51 + : CPU: 0.2% RAM: 7.0% Upload: 0.10 KB/s Download: 0.09 KB/s -2023-06-18 13:14:51 + : CPU: 0.1% RAM: 7.1% Upload: 0.10 KB/s Download: 0.20 KB/s -2023-06-18 13:15:51 + : CPU: 0.2% RAM: 7.1% Upload: 0.04 KB/s Download: 0.03 KB/s -2023-06-18 13:16:51 + : CPU: 0.1% RAM: 7.1% Upload: 0.03 KB/s Download: 0.04 KB/s -2023-06-18 13:17:51 + : CPU: 0.1% RAM: 7.1% Upload: 0.03 KB/s Download: 0.07 KB/s -2023-06-18 13:18:51 + : CPU: 0.1% RAM: 7.1% Upload: 0.03 KB/s Download: 0.08 KB/s -2023-06-18 13:19:51 + : CPU: 0.1% RAM: 7.1% Upload: 0.06 KB/s Download: 0.17 KB/s -2023-06-18 13:20:51 + : CPU: 0.1% RAM: 7.1% Upload: 0.02 KB/s Download: 0.04 KB/s -2023-06-18 13:21:51 + : CPU: 0.1% RAM: 7.1% Upload: 0.11 KB/s Download: 0.11 KB/s -2023-06-18 13:22:51 + : CPU: 0.1% RAM: 7.1% Upload: 1.52 KB/s Download: 0.23 KB/s -2023-06-18 13:23:51 + : CPU: 0.2% RAM: 7.2% Upload: 0.17 KB/s Download: 0.21 KB/s -2023-06-18 13:24:51 + : CPU: 0.2% RAM: 7.2% Upload: 0.17 KB/s Download: 0.30 KB/s -2023-06-18 13:25:51 + : CPU: 0.1% RAM: 7.2% Upload: 0.17 KB/s Download: 0.17 KB/s -2023-06-18 13:26:51 + : CPU: 0.1% RAM: 7.2% Upload: 0.12 KB/s Download: 0.13 KB/s -2023-06-18 13:27:51 + : CPU: 0.2% RAM: 7.2% Upload: 0.11 KB/s Download: 0.15 KB/s -2023-06-18 13:28:51 + : CPU: 0.1% RAM: 7.3% Upload: 0.17 KB/s Download: 0.22 KB/s -2023-06-18 13:29:51 + : CPU: 0.2% RAM: 7.3% Upload: 0.19 KB/s Download: 0.31 KB/s -2023-06-18 13:30:51 + : CPU: 0.1% RAM: 7.3% Upload: 0.14 KB/s Download: 0.16 KB/s -2023-06-18 13:31:51 + : CPU: 0.1% RAM: 7.3% Upload: 0.17 KB/s Download: 0.17 KB/s -2023-06-18 13:32:51 + : CPU: 0.1% RAM: 7.3% Upload: 0.10 KB/s Download: 0.15 KB/s -2023-06-18 13:33:52 + : CPU: 0.1% RAM: 7.3% Upload: 0.03 KB/s Download: 0.06 KB/s -2023-06-18 13:34:52 + : CPU: 0.1% RAM: 7.3% Upload: 0.06 KB/s Download: 0.19 KB/s -2023-06-18 13:35:52 + : CPU: 0.1% RAM: 7.3% Upload: 0.03 KB/s Download: 0.03 KB/s -2023-06-18 13:36:52 + : CPU: 0.1% RAM: 7.3% Upload: 0.03 KB/s Download: 0.04 KB/s -2023-06-18 13:37:52 + : CPU: 0.1% RAM: 7.4% Upload: 0.03 KB/s Download: 0.06 KB/s -2023-06-18 13:38:52 + : CPU: 0.1% RAM: 7.4% Upload: 0.03 KB/s Download: 0.08 KB/s -2023-06-18 13:39:52 + : CPU: 0.1% RAM: 7.4% Upload: 0.05 KB/s Download: 0.17 KB/s -2023-06-18 13:40:52 + : CPU: 0.2% RAM: 7.4% Upload: 0.03 KB/s Download: 0.04 KB/s -2023-06-18 13:41:52 + : CPU: 0.1% RAM: 7.4% Upload: 0.03 KB/s Download: 0.03 KB/s -2023-06-18 13:42:52 + : CPU: 0.1% RAM: 7.4% Upload: 0.03 KB/s Download: 0.08 KB/s -2023-06-18 13:43:52 + : CPU: 0.1% RAM: 7.4% Upload: 0.03 KB/s Download: 0.07 KB/s -2023-06-18 13:44:52 + : CPU: 0.2% RAM: 7.4% Upload: 1.52 KB/s Download: 0.32 KB/s -2023-06-18 13:45:52 + : CPU: 0.2% RAM: 7.5% Upload: 0.05 KB/s Download: 0.05 KB/s -2023-06-18 13:46:52 + : CPU: 0.1% RAM: 7.5% Upload: 0.03 KB/s Download: 0.04 KB/s -2023-06-18 13:47:52 + : CPU: 0.1% RAM: 7.5% Upload: 0.03 KB/s Download: 0.07 KB/s -2023-06-18 13:48:52 + : CPU: 0.1% RAM: 7.5% Upload: 0.03 KB/s Download: 0.08 KB/s -2023-06-18 13:49:52 + : CPU: 0.2% RAM: 7.5% Upload: 0.76 KB/s Download: 0.21 KB/s -2023-06-18 13:50:52 + : CPU: 0.2% RAM: 7.5% Upload: 2.19 KB/s Download: 0.20 KB/s -2023-06-18 13:51:52 + : CPU: 0.1% RAM: 7.5% Upload: 0.12 KB/s Download: 0.12 KB/s -2023-06-18 13:52:52 + : CPU: 0.1% RAM: 7.5% Upload: 0.03 KB/s Download: 0.08 KB/s -2023-06-18 13:53:52 + : CPU: 0.1% RAM: 7.5% Upload: 0.03 KB/s Download: 0.07 KB/s -2023-06-18 13:54:52 + : CPU: 0.1% RAM: 7.6% Upload: 0.05 KB/s Download: 0.18 KB/s -2023-06-18 13:55:52 + : CPU: 0.2% RAM: 7.6% Upload: 0.03 KB/s Download: 0.03 KB/s -2023-06-18 13:56:52 + : CPU: 0.1% RAM: 7.6% Upload: 0.03 KB/s Download: 0.04 KB/s -2023-06-18 13:57:52 + : CPU: 0.1% RAM: 7.6% Upload: 0.03 KB/s Download: 0.07 KB/s -2023-06-18 13:58:52 + : CPU: 0.1% RAM: 7.6% Upload: 0.03 KB/s Download: 0.08 KB/s -2023-06-18 13:59:52 + : CPU: 0.1% RAM: 7.6% Upload: 0.05 KB/s Download: 0.17 KB/s -2023-06-18 14:00:52 + : CPU: 0.1% RAM: 7.6% Upload: 0.03 KB/s Download: 0.05 KB/s -2023-06-18 14:01:52 + : CPU: 0.1% RAM: 7.6% Upload: 0.03 KB/s Download: 0.03 KB/s -2023-06-18 14:02:53 + : CPU: 0.1% RAM: 7.7% Upload: 0.03 KB/s Download: 0.08 KB/s -2023-06-18 14:03:53 + : CPU: 0.1% RAM: 7.7% Upload: 0.03 KB/s Download: 0.07 KB/s -2023-06-18 14:04:53 + : CPU: 0.1% RAM: 7.7% Upload: 0.06 KB/s Download: 0.19 KB/s -2023-06-18 14:05:53 + : CPU: 0.1% RAM: 7.7% Upload: 0.03 KB/s Download: 0.03 KB/s -2023-06-18 14:06:53 + : CPU: 0.1% RAM: 7.7% Upload: 0.03 KB/s Download: 0.04 KB/s -2023-06-18 14:07:53 + : CPU: 0.1% RAM: 7.7% Upload: 0.03 KB/s Download: 0.06 KB/s -2023-06-18 14:08:53 + : CPU: 0.1% RAM: 7.7% Upload: 0.03 KB/s Download: 0.08 KB/s -2023-06-18 14:09:53 + : CPU: 0.1% RAM: 7.7% Upload: 0.06 KB/s Download: 0.17 KB/s -2023-06-18 14:10:53 + : CPU: 0.1% RAM: 7.7% Upload: 0.03 KB/s Download: 0.04 KB/s -2023-06-18 14:11:53 + : CPU: 0.1% RAM: 7.8% Upload: 0.02 KB/s Download: 0.03 KB/s -2023-06-18 14:12:53 + : CPU: 0.1% RAM: 7.8% Upload: 0.02 KB/s Download: 0.08 KB/s -2023-06-18 14:13:53 + : CPU: 0.1% RAM: 7.8% Upload: 0.02 KB/s Download: 0.06 KB/s -2023-06-18 14:14:53 + : CPU: 0.1% RAM: 7.8% Upload: 0.05 KB/s Download: 0.18 KB/s -2023-06-18 14:15:53 + : CPU: 0.1% RAM: 7.8% Upload: 0.02 KB/s Download: 0.03 KB/s -2023-06-18 14:16:53 + : CPU: 0.1% RAM: 7.8% Upload: 0.03 KB/s Download: 0.04 KB/s -2023-06-18 14:17:53 + : CPU: 0.2% RAM: 7.8% Upload: 1.43 KB/s Download: 0.13 KB/s -2023-06-18 14:18:53 + : CPU: 0.1% RAM: 7.8% Upload: 0.15 KB/s Download: 0.20 KB/s -2023-06-18 14:19:53 + : CPU: 0.2% RAM: 7.9% Upload: 1.55 KB/s Download: 0.33 KB/s -2023-06-18 14:20:53 + : CPU: 0.1% RAM: 7.9% Upload: 0.17 KB/s Download: 0.19 KB/s -2023-06-18 14:21:53 + : CPU: 0.1% RAM: 7.9% Upload: 0.14 KB/s Download: 0.14 KB/s -2023-06-18 14:22:53 + : CPU: 0.1% RAM: 7.9% Upload: 0.16 KB/s Download: 0.22 KB/s -2023-06-18 14:23:53 + : CPU: 0.1% RAM: 7.9% Upload: 0.16 KB/s Download: 0.20 KB/s -2023-06-18 14:24:53 + : CPU: 0.1% RAM: 7.9% Upload: 0.17 KB/s Download: 0.30 KB/s -2023-06-18 14:25:53 + : CPU: 0.1% RAM: 7.9% Upload: 0.16 KB/s Download: 0.17 KB/s -2023-06-18 14:26:53 + : CPU: 0.2% RAM: 7.9% Upload: 0.16 KB/s Download: 0.18 KB/s -2023-06-18 14:27:53 + : CPU: 0.1% RAM: 8.0% Upload: 0.14 KB/s Download: 0.18 KB/s -2023-06-18 14:28:54 + : CPU: 0.2% RAM: 8.0% Upload: 0.16 KB/s Download: 0.22 KB/s -2023-06-18 14:29:54 + : CPU: 0.2% RAM: 8.0% Upload: 0.19 KB/s Download: 0.31 KB/s -2023-06-18 14:30:54 + : CPU: 0.1% RAM: 8.0% Upload: 0.14 KB/s Download: 0.16 KB/s -2023-06-18 14:31:54 + : CPU: 0.1% RAM: 8.0% Upload: 0.16 KB/s Download: 0.17 KB/s -2023-06-18 14:32:54 + : CPU: 0.1% RAM: 8.0% Upload: 0.16 KB/s Download: 0.22 KB/s -2023-06-18 14:33:54 + : CPU: 0.1% RAM: 8.0% Upload: 0.14 KB/s Download: 0.18 KB/s -2023-06-18 14:34:54 + : CPU: 0.2% RAM: 8.0% Upload: 0.19 KB/s Download: 0.32 KB/s -2023-06-18 14:35:54 + : CPU: 0.2% RAM: 8.1% Upload: 0.16 KB/s Download: 0.17 KB/s -2023-06-18 14:36:54 + : CPU: 0.2% RAM: 8.1% Upload: 0.14 KB/s Download: 0.16 KB/s -2023-06-18 14:37:54 + : CPU: 0.1% RAM: 8.1% Upload: 0.16 KB/s Download: 0.20 KB/s -2023-06-18 14:38:54 + : CPU: 0.2% RAM: 8.1% Upload: 0.16 KB/s Download: 0.22 KB/s -2023-06-18 14:39:54 + : CPU: 0.1% RAM: 8.1% Upload: 0.17 KB/s Download: 0.28 KB/s -2023-06-18 14:40:54 + : CPU: 0.2% RAM: 8.1% Upload: 0.16 KB/s Download: 0.18 KB/s -2023-06-18 14:41:55 + : Server started -2023-06-18 14:42:54 + : CPU: 0.4% RAM: 7.1% Upload: 0.53 KB/s Download: 1.06 KB/s -2023-06-18 14:43:54 + : CPU: 0.4% RAM: 7.2% Upload: 0.26 KB/s Download: 0.46 KB/s -2023-06-18 14:44:54 + : CPU: 0.4% RAM: 7.2% Upload: 0.26 KB/s Download: 0.47 KB/s -2023-06-18 14:45:54 + : CPU: 0.4% RAM: 7.2% Upload: 0.23 KB/s Download: 0.39 KB/s -2023-06-18 14:46:54 + : CPU: 0.4% RAM: 7.2% Upload: 0.29 KB/s Download: 0.54 KB/s -2023-06-18 14:47:54 + : CPU: 0.4% RAM: 7.2% Upload: 0.26 KB/s Download: 0.45 KB/s -2023-06-18 14:48:54 + : CPU: 0.4% RAM: 7.2% Upload: 0.23 KB/s Download: 0.45 KB/s -2023-06-18 14:49:54 + : CPU: 0.4% RAM: 7.3% Upload: 0.26 KB/s Download: 0.45 KB/s -2023-06-18 14:50:54 + : CPU: 0.4% RAM: 7.3% Upload: 0.26 KB/s Download: 0.43 KB/s -2023-06-18 14:51:54 + : CPU: 0.4% RAM: 7.3% Upload: 0.32 KB/s Download: 0.71 KB/s -2023-06-18 14:52:54 + : CPU: 0.4% RAM: 7.3% Upload: 0.40 KB/s Download: 0.59 KB/s -2023-06-18 14:53:54 + : CPU: 0.4% RAM: 7.3% Upload: 0.27 KB/s Download: 0.46 KB/s -2023-06-18 14:54:54 + : CPU: 0.5% RAM: 7.3% Upload: 0.24 KB/s Download: 0.45 KB/s -2023-06-18 14:55:54 + : CPU: 0.4% RAM: 7.4% Upload: 0.27 KB/s Download: 0.42 KB/s -2023-06-18 14:56:54 + : CPU: 0.4% RAM: 7.4% Upload: 0.30 KB/s Download: 0.55 KB/s -2023-06-18 14:57:54 + : CPU: 0.5% RAM: 7.4% Upload: 2.96 KB/s Download: 0.49 KB/s -2023-06-18 14:58:54 + : CPU: 0.4% RAM: 7.4% Upload: 0.95 KB/s Download: 0.49 KB/s -2023-06-18 15:02:42 + : Server started -2023-06-18 15:03:41 + : CPU: 0.5% RAM: 7.0% Upload: 0.43 KB/s Download: 1.02 KB/s -2023-06-18 15:04:41 + : CPU: 0.4% RAM: 7.1% Upload: 0.27 KB/s Download: 0.46 KB/s -2023-06-18 15:05:41 + : CPU: 0.4% RAM: 7.1% Upload: 0.24 KB/s Download: 0.41 KB/s -2023-06-18 15:06:41 + : CPU: 0.3% RAM: 7.1% Upload: 0.26 KB/s Download: 0.43 KB/s -2023-06-18 15:07:41 + : CPU: 0.4% RAM: 7.2% Upload: 0.29 KB/s Download: 0.56 KB/s -2023-06-18 15:08:41 + : CPU: 0.4% RAM: 7.2% Upload: 0.13 KB/s Download: 0.35 KB/s -2023-06-18 15:09:41 + : CPU: 0.4% RAM: 7.2% Upload: 2.91 KB/s Download: 0.43 KB/s -2023-06-18 15:10:41 + : CPU: 0.4% RAM: 7.2% Upload: 0.26 KB/s Download: 0.44 KB/s -2023-06-18 15:11:42 + : CPU: 0.4% RAM: 7.2% Upload: 0.14 KB/s Download: 0.30 KB/s -2023-06-18 15:12:42 + : CPU: 0.4% RAM: 7.2% Upload: 1.65 KB/s Download: 0.76 KB/s -2023-06-18 15:13:42 + : CPU: 0.4% RAM: 7.2% Upload: 0.28 KB/s Download: 0.53 KB/s -2023-06-18 15:14:42 + : CPU: 0.4% RAM: 7.3% Upload: 0.24 KB/s Download: 0.44 KB/s -2023-06-18 15:15:42 + : CPU: 0.4% RAM: 7.3% Upload: 0.95 KB/s Download: 0.45 KB/s -2023-06-18 15:16:42 + : CPU: 0.4% RAM: 7.3% Upload: 0.94 KB/s Download: 0.44 KB/s -2023-06-18 15:17:42 + : CPU: 0.4% RAM: 7.3% Upload: 0.30 KB/s Download: 0.57 KB/s -2023-06-18 15:18:42 + : CPU: 0.5% RAM: 7.3% Upload: 0.25 KB/s Download: 0.46 KB/s -2023-06-18 15:19:42 + : CPU: 0.6% RAM: 7.3% Upload: 0.27 KB/s Download: 0.45 KB/s -2023-06-18 15:23:29 + : Server started -2023-06-18 15:24:27 + : CPU: 0.7% RAM: 7.1% Upload: 0.45 KB/s Download: 1.03 KB/s -2023-06-18 15:25:28 + : CPU: 0.6% RAM: 7.1% Upload: 0.25 KB/s Download: 0.43 KB/s -2023-06-18 15:26:28 + : CPU: 0.6% RAM: 7.2% Upload: 0.27 KB/s Download: 0.43 KB/s -2023-06-18 15:27:28 + : CPU: 0.6% RAM: 7.2% Upload: 0.26 KB/s Download: 0.45 KB/s -2023-06-18 15:28:28 + : CPU: 0.6% RAM: 7.2% Upload: 0.28 KB/s Download: 0.56 KB/s -2023-06-18 15:29:28 + : CPU: 0.6% RAM: 7.2% Upload: 0.27 KB/s Download: 0.44 KB/s -2023-06-18 15:30:28 + : CPU: 0.4% RAM: 7.2% Upload: 0.27 KB/s Download: 0.48 KB/s -2023-06-18 15:31:28 + : CPU: 0.3% RAM: 7.3% Upload: 0.24 KB/s Download: 0.40 KB/s -2023-06-18 15:32:28 + : CPU: 0.5% RAM: 7.3% Upload: 1.62 KB/s Download: 0.49 KB/s -2023-06-18 15:33:28 + : CPU: 0.5% RAM: 7.3% Upload: 1.73 KB/s Download: 0.81 KB/s -2023-06-18 15:34:28 + : CPU: 0.4% RAM: 7.3% Upload: 0.29 KB/s Download: 0.55 KB/s -2023-06-18 15:35:28 + : CPU: 0.4% RAM: 7.3% Upload: 0.27 KB/s Download: 0.46 KB/s -2023-06-18 15:36:28 + : CPU: 0.4% RAM: 7.3% Upload: 0.21 KB/s Download: 0.37 KB/s -2023-06-18 15:37:28 + : CPU: 0.4% RAM: 7.3% Upload: 0.27 KB/s Download: 0.51 KB/s -2023-06-18 15:38:28 + : CPU: 0.4% RAM: 7.3% Upload: 0.28 KB/s Download: 0.48 KB/s -2023-06-18 15:39:28 + : CPU: 0.5% RAM: 7.4% Upload: 0.26 KB/s Download: 0.51 KB/s -2023-06-18 15:40:28 + : CPU: 0.4% RAM: 7.4% Upload: 0.27 KB/s Download: 0.47 KB/s -2023-06-18 15:45:01 + : Server started -2023-06-18 15:45:59 + : CPU: 0.6% RAM: 7.1% Upload: 1.94 KB/s Download: 1.21 KB/s -2023-06-18 15:47:00 + : CPU: 0.4% RAM: 7.1% Upload: 0.40 KB/s Download: 0.47 KB/s -2023-06-18 15:48:00 + : CPU: 0.4% RAM: 7.2% Upload: 0.39 KB/s Download: 0.54 KB/s -2023-06-18 15:49:00 + : CPU: 0.4% RAM: 7.2% Upload: 0.37 KB/s Download: 0.48 KB/s -2023-06-18 15:50:00 + : CPU: 0.4% RAM: 7.2% Upload: 0.42 KB/s Download: 0.62 KB/s -2023-06-18 15:51:00 + : CPU: 0.4% RAM: 7.2% Upload: 0.39 KB/s Download: 0.47 KB/s -2023-06-18 15:52:00 + : CPU: 0.4% RAM: 7.2% Upload: 0.37 KB/s Download: 0.46 KB/s -2023-06-18 15:53:00 + : CPU: 0.4% RAM: 7.2% Upload: 0.39 KB/s Download: 0.52 KB/s -2023-06-18 15:54:00 + : CPU: 0.4% RAM: 7.3% Upload: 0.39 KB/s Download: 0.51 KB/s -2023-06-18 15:55:00 + : CPU: 0.4% RAM: 7.3% Upload: 0.44 KB/s Download: 0.79 KB/s -2023-06-18 15:56:00 + : CPU: 0.4% RAM: 7.3% Upload: 0.44 KB/s Download: 0.59 KB/s -2023-06-18 15:57:00 + : CPU: 0.4% RAM: 7.3% Upload: 0.39 KB/s Download: 0.47 KB/s -2023-06-18 15:58:00 + : CPU: 0.4% RAM: 7.3% Upload: 0.36 KB/s Download: 0.54 KB/s -2023-06-18 15:59:00 + : CPU: 0.4% RAM: 7.3% Upload: 0.39 KB/s Download: 0.50 KB/s -2023-06-18 16:00:00 + : CPU: 0.4% RAM: 7.4% Upload: 0.42 KB/s Download: 0.62 KB/s -2023-06-18 16:01:00 + : CPU: 0.4% RAM: 7.4% Upload: 0.37 KB/s Download: 0.44 KB/s -2023-06-18 16:02:00 + : CPU: 0.4% RAM: 7.4% Upload: 0.39 KB/s Download: 0.48 KB/s -2023-06-18 16:05:45 + : Server started -2023-06-18 16:06:44 + : CPU: 0.4% RAM: 7.1% Upload: 0.60 KB/s Download: 1.18 KB/s -2023-06-18 16:07:44 + : CPU: 0.5% RAM: 7.1% Upload: 0.37 KB/s Download: 0.48 KB/s -2023-06-18 16:08:44 + : CPU: 0.5% RAM: 7.2% Upload: 0.39 KB/s Download: 0.52 KB/s -2023-06-18 16:09:44 + : CPU: 0.4% RAM: 7.2% Upload: 0.39 KB/s Download: 0.50 KB/s -2023-06-18 16:10:44 + : CPU: 0.4% RAM: 7.2% Upload: 0.40 KB/s Download: 0.56 KB/s -2023-06-18 16:11:45 + : CPU: 0.4% RAM: 7.2% Upload: 0.39 KB/s Download: 0.48 KB/s -2023-06-18 16:12:45 + : CPU: 0.4% RAM: 7.2% Upload: 0.41 KB/s Download: 0.53 KB/s -2023-06-18 16:13:45 + : CPU: 0.4% RAM: 7.2% Upload: 0.37 KB/s Download: 0.49 KB/s -2023-06-18 16:14:45 + : CPU: 0.4% RAM: 7.3% Upload: 0.40 KB/s Download: 0.52 KB/s -2023-06-18 16:15:45 + : CPU: 0.4% RAM: 7.3% Upload: 0.48 KB/s Download: 0.78 KB/s -2023-06-18 16:16:45 + : CPU: 0.4% RAM: 7.3% Upload: 0.42 KB/s Download: 0.57 KB/s -2023-06-18 16:17:45 + : CPU: 0.3% RAM: 7.3% Upload: 0.40 KB/s Download: 0.50 KB/s -2023-06-18 16:18:45 + : CPU: 0.4% RAM: 7.3% Upload: 0.39 KB/s Download: 0.51 KB/s -2023-06-18 16:19:45 + : CPU: 0.4% RAM: 7.3% Upload: 0.37 KB/s Download: 0.48 KB/s -2023-06-18 16:20:45 + : CPU: 0.4% RAM: 7.3% Upload: 0.43 KB/s Download: 0.60 KB/s -2023-06-18 16:21:45 + : CPU: 0.4% RAM: 7.3% Upload: 0.39 KB/s Download: 0.46 KB/s -2023-06-18 16:22:45 + : CPU: 0.4% RAM: 7.4% Upload: 0.38 KB/s Download: 0.50 KB/s -2023-06-18 16:26:31 + : Server started -2023-06-18 16:27:30 + : CPU: 0.5% RAM: 7.1% Upload: 0.59 KB/s Download: 1.21 KB/s -2023-06-18 16:28:30 + : CPU: 0.4% RAM: 7.2% Upload: 0.39 KB/s Download: 0.52 KB/s -2023-06-18 16:29:30 + : CPU: 0.4% RAM: 7.2% Upload: 0.37 KB/s Download: 0.44 KB/s -2023-06-18 16:30:30 + : CPU: 0.4% RAM: 7.2% Upload: 0.39 KB/s Download: 0.51 KB/s -2023-06-18 17:35:49 + : CPU: 0.6% RAM: 7.2% Upload: 1.82 KB/s Download: 1.24 KB/s -2023-06-18 17:36:49 + : CPU: 0.4% RAM: 7.3% Upload: 0.48 KB/s Download: 0.85 KB/s -2023-06-18 17:37:49 + : CPU: 0.3% RAM: 7.3% Upload: 0.40 KB/s Download: 0.50 KB/s -2023-06-18 17:38:49 + : CPU: 0.3% RAM: 7.3% Upload: 0.37 KB/s Download: 0.49 KB/s -2023-06-18 17:39:49 + : CPU: 0.3% RAM: 7.3% Upload: 0.40 KB/s Download: 0.46 KB/s -2023-06-18 17:40:49 + : CPU: 0.3% RAM: 7.3% Upload: 0.42 KB/s Download: 0.61 KB/s -2023-06-18 17:41:49 + : CPU: 0.3% RAM: 7.3% Upload: 0.43 KB/s Download: 0.56 KB/s -2023-06-18 17:42:49 + : CPU: 0.4% RAM: 7.3% Upload: 0.40 KB/s Download: 0.52 KB/s -2023-06-18 17:43:49 + : CPU: 0.4% RAM: 7.3% Upload: 0.40 KB/s Download: 0.50 KB/s -2023-06-18 17:44:39 + : None axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-18 17:44:40 + : pb-IF4iU0QaEw== axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-18 17:44:40 + : pb-IF4iU0QaEw== ip: axj~|i~~n`ai , Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-18 17:44:49 + : CPU: 0.5% RAM: 7.4% Upload: 4.02 KB/s Download: 0.78 KB/s -2023-06-18 17:47:35 + : Server started -2023-06-18 17:48:17 + : None axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-18 17:48:18 + : pb-IF4iU0QaEw== axj~|i~~n`ai 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-18 17:48:18 + : pb-IF4iU0QaEw== ip: axj~|i~~n`ai , Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-18 17:48:34 + : CPU: 0.5% RAM: 7.0% Upload: 3.14 KB/s Download: 1.51 KB/s -2023-06-18 17:49:34 + : CPU: 0.6% RAM: 7.1% Upload: 8.18 KB/s Download: 1.13 KB/s -2023-06-18 17:50:34 + : CPU: 0.6% RAM: 7.2% Upload: 7.74 KB/s Download: 0.88 KB/s -2023-06-18 17:51:34 + : CPU: 0.7% RAM: 7.2% Upload: 8.98 KB/s Download: 0.82 KB/s -2023-06-18 17:52:34 + : CPU: 0.6% RAM: 7.3% Upload: 9.04 KB/s Download: 1.01 KB/s -2023-06-18 17:53:35 + : CPU: 0.7% RAM: 7.3% Upload: 9.11 KB/s Download: 0.95 KB/s -2023-06-18 17:54:35 + : CPU: 0.5% RAM: 7.3% Upload: 7.50 KB/s Download: 0.70 KB/s -2023-06-18 17:55:35 + : CPU: 0.7% RAM: 7.3% Upload: 10.38 KB/s Download: 0.84 KB/s -2023-06-18 17:56:35 + : CPU: 0.8% RAM: 7.3% Upload: 7.58 KB/s Download: 0.76 KB/s -2023-06-18 17:57:35 + : CPU: 0.7% RAM: 7.3% Upload: 8.98 KB/s Download: 1.10 KB/s -2023-06-18 17:58:35 + : CPU: 0.6% RAM: 7.3% Upload: 7.56 KB/s Download: 0.86 KB/s -2023-06-18 17:59:35 + : CPU: 0.4% RAM: 7.3% Upload: 7.50 KB/s Download: 0.68 KB/s -2023-06-18 18:00:35 + : CPU: 0.7% RAM: 7.3% Upload: 10.53 KB/s Download: 0.92 KB/s -2023-06-18 18:01:35 + : CPU: 0.7% RAM: 7.4% Upload: 8.99 KB/s Download: 0.82 KB/s -2023-06-18 18:02:35 + : CPU: 0.7% RAM: 7.4% Upload: 11.93 KB/s Download: 1.02 KB/s -2023-06-18 18:03:35 + : CPU: 0.6% RAM: 7.4% Upload: 8.98 KB/s Download: 0.94 KB/s -2023-06-18 18:04:35 + : CPU: 0.4% RAM: 7.4% Upload: 7.52 KB/s Download: 0.70 KB/s -2023-06-18 18:05:35 + : CPU: 0.6% RAM: 7.4% Upload: 10.35 KB/s Download: 0.87 KB/s -2023-06-18 18:06:35 + : CPU: 0.6% RAM: 7.4% Upload: 8.99 KB/s Download: 0.90 KB/s -2023-06-18 18:07:35 + : CPU: 0.5% RAM: 7.4% Upload: 7.56 KB/s Download: 0.93 KB/s -2023-06-18 18:08:18 + : Server started -2023-06-18 18:09:18 + : CPU: 0.4% RAM: 7.2% Upload: 0.50 KB/s Download: 0.98 KB/s -2023-06-18 18:10:18 + : CPU: 0.4% RAM: 7.2% Upload: 1.67 KB/s Download: 0.42 KB/s -2023-06-18 18:11:18 + : CPU: 0.3% RAM: 7.3% Upload: 0.46 KB/s Download: 0.53 KB/s -2023-06-18 18:12:18 + : CPU: 0.3% RAM: 7.3% Upload: 0.38 KB/s Download: 0.51 KB/s -2023-06-18 18:13:18 + : CPU: 0.3% RAM: 7.3% Upload: 0.42 KB/s Download: 0.62 KB/s -2023-06-18 18:14:18 + : CPU: 0.4% RAM: 7.3% Upload: 0.36 KB/s Download: 0.46 KB/s -2023-06-18 18:15:18 + : CPU: 0.4% RAM: 7.3% Upload: 0.39 KB/s Download: 0.47 KB/s -2023-06-18 18:16:18 + : CPU: 0.3% RAM: 7.4% Upload: 0.39 KB/s Download: 0.53 KB/s -2023-06-18 18:17:18 + : CPU: 0.3% RAM: 7.4% Upload: 1.74 KB/s Download: 0.52 KB/s -2023-06-18 18:18:18 + : CPU: 0.4% RAM: 7.4% Upload: 3.09 KB/s Download: 0.80 KB/s -2023-06-18 18:19:18 + : CPU: 0.4% RAM: 7.4% Upload: 1.67 KB/s Download: 0.49 KB/s -2023-06-18 18:20:18 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.32 KB/s -2023-06-18 18:21:18 + : CPU: 0.3% RAM: 7.4% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-18 18:22:18 + : CPU: 0.4% RAM: 7.4% Upload: 0.23 KB/s Download: 0.36 KB/s -2023-06-18 18:23:18 + : CPU: 0.3% RAM: 7.4% Upload: 0.24 KB/s Download: 0.45 KB/s -2023-06-18 18:24:18 + : CPU: 0.4% RAM: 7.4% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-18 18:25:18 + : CPU: 0.4% RAM: 7.5% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-18 18:28:59 + : Server started -2023-06-18 18:29:59 + : CPU: 0.4% RAM: 7.0% Upload: 0.39 KB/s Download: 0.90 KB/s -2023-06-18 18:30:59 + : CPU: 0.3% RAM: 7.1% Upload: 0.21 KB/s Download: 0.34 KB/s -2023-06-18 18:31:59 + : CPU: 0.3% RAM: 7.1% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-18 18:32:59 + : CPU: 0.3% RAM: 7.1% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-18 18:33:59 + : CPU: 0.3% RAM: 7.1% Upload: 0.23 KB/s Download: 0.45 KB/s -2023-06-18 18:34:59 + : CPU: 0.3% RAM: 7.2% Upload: 0.20 KB/s Download: 0.30 KB/s -2023-06-18 18:35:59 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-18 18:36:59 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-18 18:37:59 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-18 18:38:59 + : CPU: 0.2% RAM: 7.2% Upload: 0.29 KB/s Download: 0.64 KB/s -2023-06-18 18:39:59 + : CPU: 0.3% RAM: 7.2% Upload: 0.26 KB/s Download: 0.44 KB/s -2023-06-18 18:40:59 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.34 KB/s -2023-06-18 18:41:59 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-18 18:42:59 + : CPU: 0.3% RAM: 7.3% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-18 18:43:59 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-18 18:44:59 + : CPU: 0.3% RAM: 7.3% Upload: 0.24 KB/s Download: 0.41 KB/s -2023-06-18 18:45:59 + : CPU: 0.3% RAM: 7.3% Upload: 0.22 KB/s Download: 0.36 KB/s -2023-06-18 19:23:55 + : Server started -2023-06-18 19:24:54 + : CPU: 0.5% RAM: 7.1% Upload: 1.84 KB/s Download: 0.97 KB/s -2023-06-18 19:25:54 + : CPU: 0.3% RAM: 7.1% Upload: 0.21 KB/s Download: 0.34 KB/s -2023-06-18 19:26:54 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.32 KB/s -2023-06-18 19:27:54 + : CPU: 0.4% RAM: 7.2% Upload: 1.65 KB/s Download: 0.43 KB/s -2023-06-18 19:28:54 + : CPU: 0.4% RAM: 7.2% Upload: 0.24 KB/s Download: 0.49 KB/s -2023-06-18 19:29:54 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-18 19:30:54 + : CPU: 0.4% RAM: 7.3% Upload: 1.65 KB/s Download: 0.44 KB/s -2023-06-18 19:31:54 + : CPU: 0.3% RAM: 7.3% Upload: 0.20 KB/s Download: 0.31 KB/s -2023-06-18 19:32:54 + : CPU: 0.2% RAM: 7.3% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-18 19:33:54 + : CPU: 0.4% RAM: 7.3% Upload: 1.72 KB/s Download: 0.68 KB/s -2023-06-18 19:34:54 + : CPU: 0.3% RAM: 7.3% Upload: 0.30 KB/s Download: 0.53 KB/s -2023-06-18 19:35:54 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.34 KB/s -2023-06-18 19:36:54 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.32 KB/s -2023-06-18 19:37:54 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-18 19:38:54 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-18 19:39:54 + : CPU: 0.3% RAM: 7.4% Upload: 0.24 KB/s Download: 0.41 KB/s -2023-06-18 19:40:54 + : CPU: 0.3% RAM: 7.4% Upload: 1.65 KB/s Download: 0.44 KB/s -2023-06-18 19:44:34 + : Server started -2023-06-18 19:44:47 + : muting pb-IF4iU0QaEw== , request from web -2023-06-18 19:45:33 + : CPU: 0.4% RAM: 7.1% Upload: 0.51 KB/s Download: 1.00 KB/s -2023-06-18 19:46:33 + : CPU: 0.3% RAM: 7.1% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-18 19:47:33 + : CPU: 0.3% RAM: 7.1% Upload: 0.24 KB/s Download: 0.36 KB/s -2023-06-18 19:48:33 + : CPU: 0.3% RAM: 7.1% Upload: 1.64 KB/s Download: 0.45 KB/s -2023-06-18 21:17:42 + : Server started -2023-06-18 21:18:41 + : CPU: 0.4% RAM: 7.1% Upload: 1.90 KB/s Download: 1.03 KB/s -2023-06-18 21:19:41 + : CPU: 0.3% RAM: 7.1% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-18 21:20:41 + : CPU: 0.4% RAM: 7.1% Upload: 1.69 KB/s Download: 0.41 KB/s -2023-06-18 21:21:41 + : CPU: 0.3% RAM: 7.1% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-18 21:22:41 + : CPU: 0.4% RAM: 7.2% Upload: 2.52 KB/s Download: 0.63 KB/s -2023-06-18 21:23:41 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-18 21:24:41 + : CPU: 0.4% RAM: 7.2% Upload: 0.21 KB/s Download: 0.32 KB/s -2023-06-18 21:25:42 + : CPU: 0.3% RAM: 7.2% Upload: 0.20 KB/s Download: 0.31 KB/s -2023-06-18 21:26:42 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.34 KB/s -2023-06-18 21:27:42 + : CPU: 0.3% RAM: 7.2% Upload: 0.26 KB/s Download: 0.56 KB/s -2023-06-18 21:28:42 + : CPU: 0.3% RAM: 7.3% Upload: 0.29 KB/s Download: 0.55 KB/s -2023-06-18 21:29:42 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-18 21:30:42 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-18 21:31:42 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-18 21:32:42 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-18 21:33:42 + : CPU: 0.3% RAM: 7.3% Upload: 0.24 KB/s Download: 0.46 KB/s -2023-06-18 21:34:42 + : CPU: 0.4% RAM: 7.3% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-18 21:38:17 + : Server started -2023-06-18 21:39:17 + : CPU: 0.4% RAM: 7.1% Upload: 0.41 KB/s Download: 0.95 KB/s -2023-06-18 21:40:17 + : CPU: 0.3% RAM: 7.1% Upload: 0.22 KB/s Download: 0.32 KB/s -2023-06-18 21:41:17 + : CPU: 0.3% RAM: 7.1% Upload: 0.21 KB/s Download: 0.34 KB/s -2023-06-18 21:42:17 + : CPU: 0.4% RAM: 7.1% Upload: 1.70 KB/s Download: 0.47 KB/s -2023-06-18 21:43:17 + : CPU: 0.4% RAM: 7.2% Upload: 1.73 KB/s Download: 0.49 KB/s -2023-06-18 21:44:17 + : CPU: 0.3% RAM: 7.2% Upload: 0.24 KB/s Download: 0.37 KB/s -2023-06-18 21:45:17 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-18 21:46:17 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-18 21:47:17 + : CPU: 0.3% RAM: 7.2% Upload: 1.70 KB/s Download: 0.44 KB/s -2023-06-18 21:48:17 + : CPU: 0.4% RAM: 7.2% Upload: 0.28 KB/s Download: 0.52 KB/s -2023-06-18 21:49:17 + : CPU: 0.4% RAM: 7.3% Upload: 1.78 KB/s Download: 0.66 KB/s -2023-06-18 21:50:17 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-18 21:51:17 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-18 21:52:17 + : CPU: 0.4% RAM: 7.3% Upload: 1.70 KB/s Download: 0.45 KB/s -2023-06-18 21:53:17 + : CPU: 0.4% RAM: 7.3% Upload: 1.70 KB/s Download: 0.40 KB/s -2023-06-18 21:54:17 + : CPU: 0.3% RAM: 7.3% Upload: 0.24 KB/s Download: 0.45 KB/s -2023-06-18 21:55:17 + : CPU: 0.3% RAM: 7.4% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-18 21:59:01 + : Server started -2023-06-18 22:00:00 + : CPU: 0.3% RAM: 7.1% Upload: 1.90 KB/s Download: 0.73 KB/s -2023-06-18 22:01:00 + : CPU: 0.3% RAM: 7.1% Upload: 0.21 KB/s Download: 0.34 KB/s -2023-06-18 22:02:00 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-18 22:03:00 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-18 22:04:00 + : CPU: 0.4% RAM: 7.2% Upload: 1.90 KB/s Download: 0.68 KB/s -2023-06-18 22:05:00 + : CPU: 0.3% RAM: 7.2% Upload: 0.36 KB/s Download: 0.44 KB/s -2023-06-18 22:06:00 + : CPU: 0.3% RAM: 7.2% Upload: 0.39 KB/s Download: 0.52 KB/s -2023-06-18 22:07:00 + : CPU: 0.3% RAM: 7.2% Upload: 3.18 KB/s Download: 0.50 KB/s -2023-06-18 22:08:00 + : CPU: 0.4% RAM: 7.3% Upload: 1.62 KB/s Download: 0.42 KB/s -2023-06-18 22:09:00 + : CPU: 0.3% RAM: 7.3% Upload: 1.83 KB/s Download: 0.80 KB/s -2023-06-18 22:10:00 + : CPU: 0.3% RAM: 7.3% Upload: 3.41 KB/s Download: 0.78 KB/s -2023-06-18 22:11:00 + : CPU: 0.3% RAM: 7.3% Upload: 3.27 KB/s Download: 0.68 KB/s -2023-06-18 22:12:00 + : CPU: 0.3% RAM: 7.3% Upload: 0.37 KB/s Download: 0.47 KB/s -2023-06-18 22:13:00 + : CPU: 0.3% RAM: 7.4% Upload: 3.10 KB/s Download: 0.56 KB/s -2023-06-18 22:14:00 + : CPU: 0.3% RAM: 7.4% Upload: 1.82 KB/s Download: 0.70 KB/s -2023-06-18 22:15:00 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-18 22:16:00 + : CPU: 0.3% RAM: 7.4% Upload: 1.72 KB/s Download: 0.53 KB/s -2023-06-18 22:19:39 + : Server started -2023-06-18 22:20:39 + : CPU: 0.4% RAM: 7.1% Upload: 0.61 KB/s Download: 1.11 KB/s -2023-06-18 22:21:39 + : CPU: 0.4% RAM: 7.1% Upload: 0.39 KB/s Download: 0.52 KB/s -2023-06-18 22:22:39 + : CPU: 0.3% RAM: 7.2% Upload: 3.01 KB/s Download: 0.46 KB/s -2023-06-18 22:23:39 + : CPU: 0.3% RAM: 7.2% Upload: 1.64 KB/s Download: 0.43 KB/s -2023-06-18 22:24:39 + : CPU: 0.3% RAM: 7.2% Upload: 1.99 KB/s Download: 0.75 KB/s -2023-06-18 22:25:39 + : CPU: 0.3% RAM: 7.2% Upload: 0.56 KB/s Download: 0.60 KB/s -2023-06-18 22:26:39 + : CPU: 0.4% RAM: 7.2% Upload: 0.70 KB/s Download: 0.73 KB/s -2023-06-18 22:27:39 + : CPU: 0.4% RAM: 7.3% Upload: 1.75 KB/s Download: 0.54 KB/s -2023-06-18 22:28:39 + : CPU: 0.3% RAM: 7.3% Upload: 1.09 KB/s Download: 0.55 KB/s -2023-06-18 22:29:39 + : CPU: 0.4% RAM: 7.3% Upload: 4.03 KB/s Download: 1.01 KB/s -2023-06-18 22:30:39 + : CPU: 0.3% RAM: 7.3% Upload: 0.50 KB/s Download: 0.58 KB/s -2023-06-18 22:31:39 + : CPU: 0.3% RAM: 7.3% Upload: 0.62 KB/s Download: 0.63 KB/s -2023-06-18 22:32:39 + : CPU: 0.3% RAM: 7.3% Upload: 1.89 KB/s Download: 0.57 KB/s -2023-06-18 22:33:39 + : CPU: 0.3% RAM: 7.3% Upload: 0.45 KB/s Download: 0.54 KB/s -2023-06-18 22:34:39 + : CPU: 0.3% RAM: 7.4% Upload: 0.41 KB/s Download: 0.53 KB/s -2023-06-18 22:35:39 + : CPU: 0.3% RAM: 7.4% Upload: 3.11 KB/s Download: 0.46 KB/s -2023-06-18 22:36:39 + : CPU: 0.3% RAM: 7.4% Upload: 1.67 KB/s Download: 0.42 KB/s -2023-06-18 22:40:14 + : Server started -2023-06-18 22:41:14 + : CPU: 0.3% RAM: 7.1% Upload: 0.47 KB/s Download: 1.14 KB/s -2023-06-18 22:42:14 + : CPU: 0.3% RAM: 7.1% Upload: 0.22 KB/s Download: 0.35 KB/s -2023-06-18 22:43:14 + : CPU: 0.2% RAM: 7.1% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-18 22:44:14 + : CPU: 0.3% RAM: 7.1% Upload: 0.96 KB/s Download: 0.42 KB/s -2023-06-18 22:45:14 + : CPU: 0.4% RAM: 7.1% Upload: 1.09 KB/s Download: 0.57 KB/s -2023-06-18 22:46:14 + : CPU: 0.3% RAM: 7.1% Upload: 1.67 KB/s Download: 0.47 KB/s -2023-06-18 22:47:14 + : CPU: 0.3% RAM: 7.2% Upload: 1.75 KB/s Download: 0.49 KB/s -2023-06-18 22:48:14 + : CPU: 0.4% RAM: 7.2% Upload: 1.86 KB/s Download: 0.58 KB/s -2023-06-18 22:49:14 + : CPU: 0.3% RAM: 7.2% Upload: 0.54 KB/s Download: 0.60 KB/s -2023-06-18 22:50:14 + : CPU: 0.3% RAM: 7.3% Upload: 0.66 KB/s Download: 0.84 KB/s -2023-06-18 22:51:14 + : CPU: 0.4% RAM: 7.3% Upload: 2.09 KB/s Download: 0.94 KB/s -2023-06-18 22:52:14 + : CPU: 0.3% RAM: 7.3% Upload: 3.22 KB/s Download: 0.64 KB/s -2023-06-18 22:53:14 + : CPU: 0.3% RAM: 7.3% Upload: 1.80 KB/s Download: 0.54 KB/s -2023-06-18 22:54:14 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-18 22:55:14 + : CPU: 0.3% RAM: 7.3% Upload: 1.63 KB/s Download: 0.38 KB/s -2023-06-18 22:56:14 + : CPU: 0.3% RAM: 7.3% Upload: 0.24 KB/s Download: 0.45 KB/s -2023-06-18 22:57:14 + : CPU: 0.4% RAM: 7.4% Upload: 1.63 KB/s Download: 0.43 KB/s -2023-06-18 23:00:49 + : Server started -2023-06-18 23:01:48 + : CPU: 0.4% RAM: 7.1% Upload: 4.89 KB/s Download: 1.34 KB/s -2023-06-18 23:02:48 + : CPU: 0.4% RAM: 7.2% Upload: 1.70 KB/s Download: 0.44 KB/s -2023-06-18 23:03:48 + : CPU: 0.4% RAM: 7.2% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-18 23:04:48 + : CPU: 0.3% RAM: 7.2% Upload: 0.22 KB/s Download: 0.30 KB/s -2023-06-18 23:05:48 + : CPU: 0.3% RAM: 7.2% Upload: 1.70 KB/s Download: 0.43 KB/s -2023-06-18 23:06:48 + : CPU: 0.3% RAM: 7.3% Upload: 0.24 KB/s Download: 0.46 KB/s -2023-06-18 23:07:48 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-18 23:08:48 + : CPU: 0.3% RAM: 7.3% Upload: 0.95 KB/s Download: 0.39 KB/s -2023-06-18 23:09:48 + : CPU: 0.3% RAM: 7.3% Upload: 0.41 KB/s Download: 0.49 KB/s -2023-06-18 23:10:48 + : CPU: 0.3% RAM: 7.3% Upload: 0.47 KB/s Download: 0.68 KB/s -2023-06-18 23:11:48 + : CPU: 0.2% RAM: 7.3% Upload: 0.30 KB/s Download: 0.58 KB/s -2023-06-18 23:12:48 + : CPU: 0.2% RAM: 7.3% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-18 23:13:48 + : CPU: 0.3% RAM: 7.3% Upload: 0.22 KB/s Download: 0.36 KB/s -2023-06-18 23:14:49 + : CPU: 0.3% RAM: 7.4% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-18 23:15:49 + : CPU: 0.3% RAM: 7.4% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-18 23:16:49 + : CPU: 0.3% RAM: 7.4% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-18 23:17:49 + : CPU: 0.3% RAM: 7.4% Upload: 0.22 KB/s Download: 0.40 KB/s -2023-06-18 23:21:32 + : Server started -2023-06-18 23:22:31 + : CPU: 0.4% RAM: 7.1% Upload: 0.40 KB/s Download: 0.92 KB/s -2023-06-18 23:23:31 + : CPU: 0.3% RAM: 7.1% Upload: 0.22 KB/s Download: 0.36 KB/s -2023-06-18 23:24:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-18 23:25:31 + : CPU: 0.2% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-18 23:26:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.24 KB/s Download: 0.44 KB/s -2023-06-18 23:27:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-18 23:28:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-18 23:29:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-18 23:30:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-18 23:31:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.30 KB/s Download: 0.67 KB/s -2023-06-18 23:32:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.27 KB/s Download: 0.45 KB/s -2023-06-18 23:33:31 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-18 23:34:31 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-18 23:35:31 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-18 23:36:31 + : CPU: 0.2% RAM: 7.3% Upload: 0.24 KB/s Download: 0.42 KB/s -2023-06-18 23:37:31 + : CPU: 0.3% RAM: 7.3% Upload: 1.72 KB/s Download: 0.48 KB/s -2023-06-18 23:38:32 + : CPU: 0.3% RAM: 7.3% Upload: 0.23 KB/s Download: 0.35 KB/s -2023-06-18 23:42:19 + : Server started -2023-06-18 23:43:19 + : CPU: 0.5% RAM: 7.0% Upload: 0.40 KB/s Download: 0.88 KB/s -2023-06-18 23:44:19 + : CPU: 0.3% RAM: 7.1% Upload: 0.22 KB/s Download: 0.35 KB/s -2023-06-18 23:45:19 + : CPU: 0.3% RAM: 7.1% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-18 23:46:19 + : CPU: 0.3% RAM: 7.1% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-18 23:47:19 + : CPU: 0.3% RAM: 7.1% Upload: 0.24 KB/s Download: 0.45 KB/s -2023-06-18 23:48:19 + : CPU: 0.4% RAM: 7.2% Upload: 0.21 KB/s Download: 0.32 KB/s -2023-06-18 23:49:19 + : CPU: 0.5% RAM: 7.2% Upload: 0.21 KB/s Download: 0.34 KB/s -2023-06-18 23:50:19 + : CPU: 0.4% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-18 23:51:19 + : CPU: 0.3% RAM: 7.2% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-18 23:52:19 + : CPU: 0.3% RAM: 7.2% Upload: 0.30 KB/s Download: 0.67 KB/s -2023-06-18 23:53:19 + : CPU: 0.3% RAM: 7.2% Upload: 0.27 KB/s Download: 0.43 KB/s -2023-06-18 23:54:19 + : CPU: 0.3% RAM: 7.2% Upload: 0.22 KB/s Download: 0.35 KB/s -2023-06-18 23:55:19 + : CPU: 0.8% RAM: 7.4% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-18 23:56:19 + : CPU: 1.3% RAM: 7.5% Upload: 0.81 KB/s Download: 22.90 KB/s -2023-06-18 23:57:19 + : CPU: 0.3% RAM: 7.5% Upload: 0.24 KB/s Download: 0.44 KB/s -2023-06-18 23:58:19 + : CPU: 0.3% RAM: 7.5% Upload: 0.21 KB/s Download: 0.32 KB/s -2023-06-18 23:59:19 + : CPU: 0.3% RAM: 7.5% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-19 00:13:43 + : Server started -2023-06-19 00:14:43 + : CPU: 0.6% RAM: 7.3% Upload: 0.44 KB/s Download: 1.00 KB/s -2023-06-19 00:15:43 + : CPU: 0.3% RAM: 7.4% Upload: 0.22 KB/s Download: 0.32 KB/s -2023-06-19 00:16:43 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-19 00:17:43 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-19 00:18:43 + : CPU: 0.3% RAM: 7.4% Upload: 0.23 KB/s Download: 0.44 KB/s -2023-06-19 00:26:43 + : Server started -2023-06-19 00:27:43 + : CPU: 0.6% RAM: 7.3% Upload: 0.44 KB/s Download: 1.06 KB/s -2023-06-19 00:28:43 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.34 KB/s -2023-06-19 00:29:43 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-19 00:30:43 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-19 00:31:43 + : CPU: 0.2% RAM: 7.4% Upload: 0.23 KB/s Download: 0.45 KB/s -2023-06-19 01:10:38 + : Server started -2023-06-19 01:11:37 + : CPU: 0.5% RAM: 7.3% Upload: 0.59 KB/s Download: 0.95 KB/s -2023-06-19 01:12:37 + : CPU: 0.4% RAM: 7.3% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-19 01:13:37 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.37 KB/s -2023-06-19 01:14:37 + : CPU: 0.3% RAM: 7.4% Upload: 0.22 KB/s Download: 0.27 KB/s -2023-06-19 01:15:37 + : CPU: 0.3% RAM: 7.4% Upload: 0.24 KB/s Download: 0.39 KB/s -2023-06-19 01:16:37 + : CPU: 0.2% RAM: 7.4% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-19 01:17:37 + : CPU: 0.3% RAM: 7.4% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-19 01:18:37 + : CPU: 0.3% RAM: 7.4% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-19 01:19:37 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.28 KB/s -2023-06-19 01:20:37 + : CPU: 0.4% RAM: 7.4% Upload: 0.28 KB/s Download: 0.58 KB/s -2023-06-19 01:21:37 + : CPU: 0.4% RAM: 7.5% Upload: 0.43 KB/s Download: 0.48 KB/s -2023-06-19 01:25:59 + : Server started -2023-06-19 01:26:59 + : CPU: 0.6% RAM: 7.3% Upload: 0.44 KB/s Download: 1.12 KB/s -2023-06-19 01:27:59 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-19 01:28:59 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-19 01:29:59 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-19 01:30:59 + : CPU: 0.3% RAM: 7.4% Upload: 0.24 KB/s Download: 0.44 KB/s -2023-06-19 01:31:59 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-19 01:32:59 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.34 KB/s -2023-06-19 01:33:59 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-19 01:34:59 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-19 01:35:59 + : CPU: 0.2% RAM: 7.5% Upload: 0.29 KB/s Download: 0.67 KB/s -2023-06-19 01:36:59 + : CPU: 0.3% RAM: 7.5% Upload: 0.26 KB/s Download: 0.41 KB/s -2023-06-19 01:37:59 + : CPU: 0.3% RAM: 7.5% Upload: 0.21 KB/s Download: 0.40 KB/s -2023-06-19 01:38:59 + : CPU: 0.2% RAM: 7.5% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-19 01:39:59 + : CPU: 0.3% RAM: 7.5% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-19 01:40:59 + : CPU: 0.3% RAM: 7.5% Upload: 0.23 KB/s Download: 0.43 KB/s -2023-06-19 01:41:59 + : CPU: 0.3% RAM: 7.5% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-19 01:43:00 + : CPU: 0.3% RAM: 7.5% Upload: 0.21 KB/s Download: 0.34 KB/s -2023-06-19 01:46:38 + : Server started -2023-06-19 01:47:38 + : CPU: 0.6% RAM: 7.3% Upload: 0.47 KB/s Download: 1.19 KB/s -2023-06-19 01:48:38 + : CPU: 0.2% RAM: 7.4% Upload: 0.21 KB/s Download: 0.35 KB/s -2023-06-19 01:49:38 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-19 01:50:38 + : CPU: 0.2% RAM: 7.4% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-19 01:51:38 + : CPU: 0.3% RAM: 7.4% Upload: 0.24 KB/s Download: 0.45 KB/s -2023-06-19 01:52:38 + : CPU: 0.3% RAM: 7.4% Upload: 0.15 KB/s Download: 0.32 KB/s -2023-06-19 01:53:38 + : CPU: 0.3% RAM: 7.4% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-19 01:54:38 + : CPU: 0.3% RAM: 7.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-19 01:55:38 + : CPU: 0.3% RAM: 7.5% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-19 01:56:38 + : CPU: 0.3% RAM: 7.5% Upload: 0.14 KB/s Download: 0.50 KB/s -2023-06-19 01:57:38 + : CPU: 0.3% RAM: 7.5% Upload: 0.15 KB/s Download: 0.52 KB/s -2023-06-19 01:58:38 + : CPU: 0.3% RAM: 7.5% Upload: 0.09 KB/s Download: 0.34 KB/s -2023-06-19 01:59:38 + : CPU: 0.3% RAM: 7.5% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-19 02:00:38 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-19 02:01:38 + : CPU: 0.3% RAM: 7.5% Upload: 0.08 KB/s Download: 0.31 KB/s -2023-06-19 02:02:38 + : CPU: 0.3% RAM: 7.5% Upload: 0.11 KB/s Download: 0.40 KB/s -2023-06-19 02:03:38 + : CPU: 0.3% RAM: 7.5% Upload: 0.08 KB/s Download: 0.31 KB/s -2023-06-19 02:07:26 + : Server started -2023-06-19 02:08:25 + : CPU: 0.6% RAM: 7.3% Upload: 0.30 KB/s Download: 0.61 KB/s -2023-06-19 02:09:25 + : CPU: 0.3% RAM: 7.3% Upload: 0.10 KB/s Download: 0.30 KB/s -2023-06-19 02:10:25 + : CPU: 0.3% RAM: 7.4% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-19 02:11:25 + : CPU: 0.3% RAM: 7.4% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-19 02:12:25 + : CPU: 0.3% RAM: 7.4% Upload: 0.11 KB/s Download: 0.39 KB/s -2023-06-19 02:13:25 + : CPU: 0.3% RAM: 7.4% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-19 02:14:25 + : CPU: 0.3% RAM: 7.4% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-19 02:15:25 + : CPU: 0.3% RAM: 7.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-19 02:16:25 + : CPU: 0.3% RAM: 7.4% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-19 02:17:25 + : CPU: 0.3% RAM: 7.5% Upload: 0.43 KB/s Download: 0.74 KB/s -2023-06-19 02:18:25 + : CPU: 0.3% RAM: 7.5% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-19 21:20:44 + : Server started -2023-06-19 21:21:42 + : CPU: 0.7% RAM: 7.6% Upload: 0.36 KB/s Download: 0.66 KB/s -2023-06-19 21:22:42 + : CPU: 0.5% RAM: 7.7% Upload: 0.17 KB/s Download: 0.37 KB/s -2023-06-19 21:23:42 + : CPU: 0.6% RAM: 7.7% Upload: 0.29 KB/s Download: 0.45 KB/s -2023-06-19 21:24:42 + : CPU: 0.6% RAM: 7.4% Upload: 0.24 KB/s Download: 0.53 KB/s -2023-06-19 21:25:42 + : CPU: 0.5% RAM: 7.4% Upload: 0.12 KB/s Download: 0.40 KB/s -2023-06-19 21:26:42 + : CPU: 0.5% RAM: 7.5% Upload: 0.09 KB/s Download: 0.36 KB/s -2023-06-19 21:27:42 + : CPU: 0.5% RAM: 7.5% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-19 21:28:42 + : CPU: 0.5% RAM: 7.5% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-19 21:29:42 + : CPU: 0.5% RAM: 7.5% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-19 21:30:42 + : CPU: 0.4% RAM: 7.5% Upload: 0.42 KB/s Download: 0.75 KB/s -2023-06-19 21:31:42 + : CPU: 0.6% RAM: 7.5% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-19 21:32:42 + : CPU: 0.5% RAM: 7.5% Upload: 0.09 KB/s Download: 0.31 KB/s -2023-06-19 21:33:42 + : CPU: 0.5% RAM: 7.5% Upload: 0.10 KB/s Download: 0.28 KB/s -2023-06-19 21:34:43 + : CPU: 0.5% RAM: 7.5% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-19 21:35:43 + : CPU: 0.5% RAM: 7.6% Upload: 0.11 KB/s Download: 0.41 KB/s -2023-06-19 21:36:43 + : CPU: 0.6% RAM: 7.6% Upload: 0.09 KB/s Download: 0.31 KB/s -2023-06-19 21:37:43 + : CPU: 0.5% RAM: 7.6% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-19 21:41:36 + : Server started -2023-06-19 21:42:35 + : CPU: 1.0% RAM: 7.4% Upload: 0.30 KB/s Download: 0.99 KB/s -2023-06-19 21:43:35 + : CPU: 0.6% RAM: 7.4% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-19 21:44:35 + : CPU: 0.5% RAM: 7.4% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-19 21:45:35 + : CPU: 0.5% RAM: 7.4% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-19 21:46:35 + : CPU: 0.5% RAM: 7.5% Upload: 0.11 KB/s Download: 0.41 KB/s -2023-06-19 21:47:35 + : CPU: 0.3% RAM: 7.5% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-19 21:48:35 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-19 21:49:35 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-19 21:50:35 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-19 21:51:35 + : CPU: 0.4% RAM: 7.5% Upload: 0.17 KB/s Download: 0.61 KB/s -2023-06-19 21:52:35 + : CPU: 0.4% RAM: 7.5% Upload: 0.27 KB/s Download: 0.40 KB/s -2023-06-19 21:53:35 + : CPU: 0.4% RAM: 7.5% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-19 21:54:35 + : CPU: 0.4% RAM: 7.5% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-19 21:55:35 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-19 21:56:35 + : CPU: 0.3% RAM: 7.6% Upload: 0.12 KB/s Download: 0.46 KB/s -2023-06-19 21:57:35 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-19 21:58:35 + : CPU: 0.3% RAM: 7.6% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-19 22:02:25 + : Server started -2023-06-19 22:03:25 + : CPU: 0.8% RAM: 7.4% Upload: 0.29 KB/s Download: 0.98 KB/s -2023-06-19 22:04:25 + : CPU: 0.4% RAM: 7.4% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-19 22:05:25 + : CPU: 0.4% RAM: 7.4% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-19 22:06:25 + : CPU: 0.4% RAM: 7.4% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-19 22:07:25 + : CPU: 0.4% RAM: 7.4% Upload: 0.10 KB/s Download: 0.37 KB/s -2023-06-19 22:08:25 + : CPU: 0.4% RAM: 7.4% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-19 22:09:25 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-19 22:10:25 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-19 22:11:25 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-19 22:12:25 + : CPU: 0.5% RAM: 7.5% Upload: 0.16 KB/s Download: 0.59 KB/s -2023-06-19 22:13:25 + : CPU: 0.3% RAM: 7.5% Upload: 0.13 KB/s Download: 0.41 KB/s -2023-06-19 22:14:25 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-19 22:15:25 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-19 22:16:25 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-19 22:17:25 + : CPU: 0.4% RAM: 7.6% Upload: 0.11 KB/s Download: 0.43 KB/s -2023-06-19 22:18:25 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-19 22:19:25 + : CPU: 0.4% RAM: 7.6% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-19 22:23:18 + : Server started -2023-06-19 22:24:16 + : CPU: 0.7% RAM: 7.4% Upload: 0.30 KB/s Download: 0.66 KB/s -2023-06-19 22:25:16 + : CPU: 0.4% RAM: 7.4% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-19 22:26:16 + : CPU: 0.3% RAM: 7.4% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-19 22:27:16 + : CPU: 0.4% RAM: 7.4% Upload: 0.08 KB/s Download: 0.31 KB/s -2023-06-19 22:28:16 + : CPU: 0.4% RAM: 7.4% Upload: 0.12 KB/s Download: 0.40 KB/s -2023-06-19 22:29:16 + : CPU: 0.6% RAM: 7.4% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-19 22:30:16 + : CPU: 0.4% RAM: 7.4% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-19 22:31:16 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-19 22:32:17 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-19 22:33:17 + : CPU: 0.5% RAM: 7.5% Upload: 0.40 KB/s Download: 0.76 KB/s -2023-06-19 22:34:17 + : CPU: 0.5% RAM: 7.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-19 22:35:17 + : CPU: 0.5% RAM: 7.5% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-19 22:36:17 + : CPU: 0.4% RAM: 7.5% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-19 22:37:17 + : CPU: 0.5% RAM: 7.6% Upload: 0.09 KB/s Download: 0.32 KB/s -2023-06-19 22:38:17 + : CPU: 0.4% RAM: 7.6% Upload: 0.11 KB/s Download: 0.40 KB/s -2023-06-19 22:39:17 + : CPU: 0.4% RAM: 7.6% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-19 22:40:17 + : CPU: 0.5% RAM: 7.6% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-19 22:44:09 + : Server started -2023-06-19 22:45:08 + : CPU: 0.8% RAM: 7.4% Upload: 0.32 KB/s Download: 1.10 KB/s -2023-06-19 22:46:08 + : CPU: 0.4% RAM: 7.4% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-19 22:47:08 + : CPU: 0.4% RAM: 7.4% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-19 22:48:08 + : CPU: 0.4% RAM: 7.4% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-19 22:49:08 + : CPU: 0.4% RAM: 7.4% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-19 22:50:08 + : CPU: 0.5% RAM: 7.4% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-19 22:51:08 + : CPU: 0.5% RAM: 7.6% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-19 22:52:08 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-19 22:53:08 + : CPU: 0.5% RAM: 7.7% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-19 22:54:08 + : CPU: 0.5% RAM: 7.8% Upload: 0.17 KB/s Download: 0.57 KB/s -2023-06-19 22:55:08 + : CPU: 0.4% RAM: 7.8% Upload: 0.14 KB/s Download: 0.40 KB/s -2023-06-19 22:56:08 + : CPU: 0.5% RAM: 7.8% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-19 22:57:08 + : CPU: 0.4% RAM: 7.8% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-19 22:58:08 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-19 22:59:08 + : CPU: 0.5% RAM: 7.7% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-19 23:00:08 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-19 23:01:08 + : CPU: 0.5% RAM: 7.7% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-19 23:04:59 + : Server started -2023-06-19 23:05:58 + : CPU: 0.9% RAM: 7.5% Upload: 0.31 KB/s Download: 0.97 KB/s -2023-06-19 23:06:58 + : CPU: 0.4% RAM: 7.5% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-19 23:07:59 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-19 23:08:59 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-19 23:09:59 + : CPU: 0.5% RAM: 7.5% Upload: 0.12 KB/s Download: 0.37 KB/s -2023-06-19 23:10:59 + : CPU: 0.5% RAM: 7.6% Upload: 0.09 KB/s Download: 0.32 KB/s -2023-06-19 23:11:59 + : CPU: 0.4% RAM: 7.6% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-19 23:12:59 + : CPU: 0.4% RAM: 7.6% Upload: 0.09 KB/s Download: 0.31 KB/s -2023-06-19 23:13:59 + : CPU: 0.4% RAM: 7.6% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-19 23:14:59 + : CPU: 0.5% RAM: 7.6% Upload: 0.18 KB/s Download: 0.61 KB/s -2023-06-19 23:15:59 + : CPU: 0.5% RAM: 7.6% Upload: 0.14 KB/s Download: 0.41 KB/s -2023-06-19 23:16:59 + : CPU: 0.4% RAM: 7.6% Upload: 0.09 KB/s Download: 0.31 KB/s -2023-06-19 23:17:59 + : CPU: 0.4% RAM: 7.6% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-19 23:18:59 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-19 23:19:59 + : CPU: 0.5% RAM: 7.7% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-19 23:20:59 + : CPU: 0.5% RAM: 7.7% Upload: 0.09 KB/s Download: 0.32 KB/s -2023-06-19 23:21:59 + : CPU: 0.5% RAM: 7.7% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-19 23:25:56 + : Server started -2023-06-19 23:26:55 + : CPU: 1.1% RAM: 7.5% Upload: 0.30 KB/s Download: 1.00 KB/s -2023-06-19 23:27:55 + : CPU: 0.5% RAM: 7.5% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-19 23:28:55 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-19 23:29:55 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-19 23:30:55 + : CPU: 0.5% RAM: 7.5% Upload: 0.11 KB/s Download: 0.41 KB/s -2023-06-19 23:31:55 + : CPU: 0.5% RAM: 7.6% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-19 23:32:55 + : CPU: 0.4% RAM: 7.6% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-19 23:33:55 + : CPU: 0.4% RAM: 7.6% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-19 23:34:55 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-19 23:35:55 + : CPU: 0.5% RAM: 7.6% Upload: 0.17 KB/s Download: 0.61 KB/s -2023-06-19 23:36:55 + : CPU: 0.5% RAM: 7.6% Upload: 0.25 KB/s Download: 0.42 KB/s -2023-06-19 23:37:55 + : CPU: 0.4% RAM: 7.6% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-19 23:38:55 + : CPU: 0.5% RAM: 7.6% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-19 23:39:55 + : CPU: 0.5% RAM: 7.7% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-19 23:40:55 + : CPU: 0.4% RAM: 7.7% Upload: 0.11 KB/s Download: 0.41 KB/s -2023-06-19 23:41:55 + : CPU: 0.5% RAM: 7.7% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-19 23:42:55 + : CPU: 0.4% RAM: 7.7% Upload: 0.10 KB/s Download: 0.35 KB/s -2023-06-19 23:47:00 + : Server started -2023-06-19 23:47:58 + : CPU: 0.9% RAM: 7.5% Upload: 0.40 KB/s Download: 0.94 KB/s -2023-06-19 23:48:58 + : CPU: 0.5% RAM: 7.5% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-19 23:49:58 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-19 23:50:58 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-19 23:51:58 + : CPU: 0.4% RAM: 7.6% Upload: 0.11 KB/s Download: 0.40 KB/s -2023-06-19 23:52:58 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-19 23:53:58 + : CPU: 0.3% RAM: 7.6% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-19 23:54:58 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-19 23:55:58 + : CPU: 0.5% RAM: 7.6% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-19 23:56:58 + : CPU: 0.4% RAM: 7.6% Upload: 0.17 KB/s Download: 0.62 KB/s -2023-06-19 23:57:58 + : CPU: 0.4% RAM: 7.6% Upload: 0.25 KB/s Download: 0.41 KB/s -2023-06-19 23:58:58 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-19 23:59:58 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-20 00:00:58 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-20 00:01:58 + : CPU: 0.4% RAM: 7.7% Upload: 0.11 KB/s Download: 0.39 KB/s -2023-06-20 00:02:58 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-20 00:03:58 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-20 00:07:49 + : Server started -2023-06-20 00:08:48 + : CPU: 0.8% RAM: 7.5% Upload: 0.30 KB/s Download: 0.95 KB/s -2023-06-20 00:09:48 + : CPU: 0.4% RAM: 7.5% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-20 00:10:48 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-20 00:11:48 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-20 00:12:48 + : CPU: 0.4% RAM: 7.6% Upload: 0.11 KB/s Download: 0.41 KB/s -2023-06-20 00:13:48 + : CPU: 0.3% RAM: 7.6% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-20 00:14:49 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-20 00:15:49 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-20 00:16:49 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-20 00:17:49 + : CPU: 0.4% RAM: 7.7% Upload: 0.17 KB/s Download: 0.62 KB/s -2023-06-20 00:18:49 + : CPU: 0.4% RAM: 7.7% Upload: 0.30 KB/s Download: 0.39 KB/s -2023-06-20 00:19:49 + : CPU: 0.3% RAM: 7.7% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-20 00:20:49 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-20 00:21:49 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-20 00:22:49 + : CPU: 0.4% RAM: 7.7% Upload: 0.11 KB/s Download: 0.41 KB/s -2023-06-20 00:23:49 + : CPU: 0.3% RAM: 7.7% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-20 00:24:49 + : CPU: 0.3% RAM: 7.7% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-20 00:28:38 + : Server started -2023-06-20 00:29:38 + : CPU: 0.7% RAM: 7.5% Upload: 0.31 KB/s Download: 0.95 KB/s -2023-06-20 00:30:38 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-20 00:31:38 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-20 00:32:38 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-20 00:33:38 + : CPU: 0.4% RAM: 7.6% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-20 00:34:38 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-20 00:35:38 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-20 00:36:38 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-20 00:37:38 + : CPU: 0.3% RAM: 7.6% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-20 00:38:38 + : CPU: 0.4% RAM: 7.6% Upload: 0.17 KB/s Download: 0.60 KB/s -2023-06-20 00:39:38 + : CPU: 0.4% RAM: 7.6% Upload: 0.24 KB/s Download: 0.37 KB/s -2023-06-20 00:40:38 + : CPU: 0.3% RAM: 7.6% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-20 00:41:38 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-20 00:42:38 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-20 00:43:38 + : CPU: 0.4% RAM: 7.7% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-20 00:44:38 + : CPU: 0.4% RAM: 7.7% Upload: 0.10 KB/s Download: 0.30 KB/s -2023-06-20 00:45:38 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-20 00:49:27 + : Server started -2023-06-20 00:50:27 + : CPU: 0.7% RAM: 7.5% Upload: 0.29 KB/s Download: 0.98 KB/s -2023-06-20 00:51:27 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-20 00:52:27 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-20 00:53:27 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-20 00:54:27 + : CPU: 0.4% RAM: 7.6% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-20 00:55:27 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-20 00:56:27 + : CPU: 0.3% RAM: 7.6% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-20 00:57:27 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-20 00:58:27 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-20 00:59:27 + : CPU: 0.4% RAM: 7.6% Upload: 0.16 KB/s Download: 0.57 KB/s -2023-06-20 01:00:27 + : CPU: 0.4% RAM: 7.7% Upload: 0.13 KB/s Download: 0.42 KB/s -2023-06-20 01:01:27 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-20 01:02:27 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-20 01:03:27 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-20 01:04:27 + : CPU: 0.5% RAM: 7.7% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-20 01:05:27 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-20 01:06:27 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-20 01:10:16 + : Server started -2023-06-20 01:11:15 + : CPU: 0.7% RAM: 7.5% Upload: 0.27 KB/s Download: 0.86 KB/s -2023-06-20 01:12:15 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-20 01:13:15 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-20 01:14:15 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-20 01:15:15 + : CPU: 0.4% RAM: 7.6% Upload: 0.11 KB/s Download: 0.41 KB/s -2023-06-20 01:16:15 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-20 01:17:15 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-20 01:18:15 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-20 01:19:15 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-20 01:20:15 + : CPU: 0.5% RAM: 7.6% Upload: 0.17 KB/s Download: 0.61 KB/s -2023-06-20 01:21:15 + : CPU: 0.4% RAM: 7.6% Upload: 0.13 KB/s Download: 0.38 KB/s -2023-06-20 01:22:15 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.34 KB/s -2023-06-20 01:23:15 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-20 01:24:15 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-20 01:25:15 + : CPU: 0.5% RAM: 7.7% Upload: 0.12 KB/s Download: 0.41 KB/s -2023-06-20 01:26:15 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-20 01:27:15 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.31 KB/s -2023-06-20 01:31:04 + : Server started -2023-06-20 01:32:04 + : CPU: 0.7% RAM: 7.5% Upload: 0.30 KB/s Download: 1.01 KB/s -2023-06-20 01:33:04 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.31 KB/s -2023-06-20 01:34:04 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-20 01:35:04 + : CPU: 0.3% RAM: 7.6% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-20 01:36:04 + : CPU: 0.3% RAM: 7.6% Upload: 0.11 KB/s Download: 0.40 KB/s -2023-06-20 01:37:04 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-20 01:38:04 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-20 01:39:04 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-20 01:40:04 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-20 01:41:04 + : CPU: 0.4% RAM: 7.6% Upload: 0.16 KB/s Download: 0.63 KB/s -2023-06-20 01:42:04 + : CPU: 0.4% RAM: 7.7% Upload: 0.14 KB/s Download: 0.40 KB/s -2023-06-20 01:43:04 + : CPU: 0.4% RAM: 7.7% Upload: 0.10 KB/s Download: 0.35 KB/s -2023-06-20 01:44:04 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-20 01:45:04 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-20 01:46:04 + : CPU: 0.4% RAM: 7.7% Upload: 0.11 KB/s Download: 0.39 KB/s -2023-06-20 01:47:04 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-20 01:48:04 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-20 01:51:54 + : Server started -2023-06-20 01:52:53 + : CPU: 0.7% RAM: 7.5% Upload: 0.31 KB/s Download: 1.01 KB/s -2023-06-20 01:53:53 + : CPU: 0.4% RAM: 7.5% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-20 01:54:53 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-20 01:55:53 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-20 01:56:53 + : CPU: 0.4% RAM: 7.6% Upload: 0.11 KB/s Download: 0.41 KB/s -2023-06-20 01:57:53 + : CPU: 0.3% RAM: 7.6% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-20 01:58:53 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-20 01:59:53 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-20 02:00:53 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-20 02:01:53 + : CPU: 0.4% RAM: 7.7% Upload: 0.17 KB/s Download: 0.61 KB/s -2023-06-20 02:02:53 + : CPU: 0.4% RAM: 7.7% Upload: 0.14 KB/s Download: 0.37 KB/s -2023-06-20 02:03:53 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.22 KB/s -2023-06-20 02:04:53 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-20 02:05:53 + : CPU: 0.5% RAM: 7.7% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-20 02:06:53 + : CPU: 0.4% RAM: 7.7% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-20 02:07:53 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-20 02:08:53 + : CPU: 0.5% RAM: 7.8% Upload: 0.09 KB/s Download: 0.24 KB/s -2023-06-20 21:35:50 + : Server started -2023-06-20 21:36:47 + : CPU: 1.1% RAM: 7.5% Upload: 0.40 KB/s Download: 0.96 KB/s -2023-06-20 21:37:47 + : CPU: 0.5% RAM: 7.6% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-20 21:38:47 + : CPU: 0.5% RAM: 7.6% Upload: 0.10 KB/s Download: 0.31 KB/s -2023-06-20 21:39:47 + : CPU: 0.5% RAM: 7.6% Upload: 0.10 KB/s Download: 0.30 KB/s -2023-06-20 21:40:47 + : CPU: 0.6% RAM: 7.6% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-20 21:41:47 + : CPU: 0.6% RAM: 7.6% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-20 21:42:47 + : CPU: 0.5% RAM: 7.6% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-20 21:43:47 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.31 KB/s -2023-06-20 21:44:47 + : CPU: 0.5% RAM: 7.7% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-20 21:45:47 + : CPU: 0.4% RAM: 7.7% Upload: 0.33 KB/s Download: 0.69 KB/s -2023-06-20 21:46:47 + : CPU: 0.5% RAM: 7.7% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-20 21:47:47 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-20 21:48:47 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-20 21:49:47 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-20 21:50:47 + : CPU: 0.4% RAM: 7.7% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-20 21:51:47 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-20 21:52:47 + : CPU: 0.5% RAM: 7.8% Upload: 0.09 KB/s Download: 0.31 KB/s -2023-06-20 21:56:56 + : Server started -2023-06-20 21:57:54 + : CPU: 0.8% RAM: 7.5% Upload: 0.30 KB/s Download: 0.63 KB/s -2023-06-20 21:58:54 + : CPU: 0.4% RAM: 7.5% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-20 21:59:54 + : CPU: 0.4% RAM: 7.5% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-20 22:00:54 + : CPU: 0.3% RAM: 7.5% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-20 22:01:54 + : CPU: 0.4% RAM: 7.6% Upload: 0.12 KB/s Download: 0.37 KB/s -2023-06-20 22:02:54 + : CPU: 0.5% RAM: 7.6% Upload: 0.10 KB/s Download: 0.30 KB/s -2023-06-20 22:03:54 + : CPU: 0.5% RAM: 7.6% Upload: 0.09 KB/s Download: 0.31 KB/s -2023-06-20 22:04:54 + : CPU: 0.4% RAM: 7.6% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-20 22:05:54 + : CPU: 0.4% RAM: 7.6% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-20 22:06:55 + : CPU: 0.4% RAM: 7.6% Upload: 0.42 KB/s Download: 0.69 KB/s -2023-06-20 22:07:55 + : CPU: 0.4% RAM: 7.6% Upload: 0.10 KB/s Download: 0.31 KB/s -2023-06-20 22:08:55 + : CPU: 0.4% RAM: 7.6% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-20 22:09:55 + : CPU: 0.4% RAM: 7.7% Upload: 0.10 KB/s Download: 0.31 KB/s -2023-06-20 22:10:55 + : CPU: 0.5% RAM: 7.7% Upload: 0.10 KB/s Download: 0.26 KB/s -2023-06-20 22:11:55 + : CPU: 0.5% RAM: 7.7% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-20 22:12:55 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-20 22:13:55 + : CPU: 0.5% RAM: 7.7% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-20 22:17:49 + : Server started -2023-06-20 22:18:49 + : CPU: 0.8% RAM: 7.5% Upload: 0.30 KB/s Download: 1.00 KB/s -2023-06-20 22:19:49 + : CPU: 0.4% RAM: 7.5% Upload: 0.12 KB/s Download: 0.37 KB/s -2023-06-20 22:20:49 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-20 22:21:49 + : CPU: 0.4% RAM: 7.6% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-20 22:22:49 + : CPU: 0.4% RAM: 7.6% Upload: 0.11 KB/s Download: 0.40 KB/s -2023-06-20 22:23:49 + : CPU: 0.5% RAM: 7.6% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-20 22:24:49 + : CPU: 0.5% RAM: 7.6% Upload: 0.08 KB/s Download: 0.30 KB/s -2023-06-20 22:25:49 + : CPU: 0.4% RAM: 7.6% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-20 22:26:49 + : CPU: 0.4% RAM: 7.6% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-20 22:27:49 + : CPU: 0.4% RAM: 7.6% Upload: 0.18 KB/s Download: 0.62 KB/s -2023-06-20 22:28:49 + : CPU: 0.3% RAM: 7.7% Upload: 0.29 KB/s Download: 0.42 KB/s -2023-06-20 22:29:49 + : CPU: 0.4% RAM: 7.7% Upload: 0.13 KB/s Download: 0.37 KB/s -2023-06-20 22:30:49 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-20 22:31:49 + : CPU: 0.4% RAM: 7.7% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-20 22:32:49 + : CPU: 0.4% RAM: 7.7% Upload: 0.11 KB/s Download: 0.40 KB/s -2023-06-20 22:33:49 + : CPU: 0.4% RAM: 7.7% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-20 22:34:49 + : CPU: 0.5% RAM: 7.7% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-22 00:48:17 + : Server started -2023-06-22 00:49:16 + : CPU: 0.5% RAM: 6.8% Upload: 0.31 KB/s Download: 1.00 KB/s -2023-06-22 00:50:16 + : CPU: 0.3% RAM: 6.8% Upload: 0.81 KB/s Download: 0.33 KB/s -2023-06-22 00:51:17 + : CPU: 0.3% RAM: 6.8% Upload: 0.23 KB/s Download: 0.42 KB/s -2023-06-22 00:52:17 + : CPU: 0.3% RAM: 6.9% Upload: 0.23 KB/s Download: 0.41 KB/s -2023-06-22 00:53:17 + : CPU: 0.3% RAM: 6.9% Upload: 0.29 KB/s Download: 0.55 KB/s -2023-06-22 00:54:17 + : CPU: 0.3% RAM: 6.9% Upload: 0.11 KB/s Download: 0.29 KB/s -2023-06-22 00:55:17 + : CPU: 0.3% RAM: 6.9% Upload: 0.11 KB/s Download: 0.31 KB/s -2023-06-22 00:56:17 + : CPU: 0.3% RAM: 6.9% Upload: 1.58 KB/s Download: 0.41 KB/s -2023-06-22 00:57:17 + : CPU: 0.3% RAM: 6.9% Upload: 0.26 KB/s Download: 0.45 KB/s -2023-06-22 00:58:17 + : CPU: 0.3% RAM: 7.0% Upload: 1.65 KB/s Download: 0.73 KB/s -2023-06-22 00:59:17 + : CPU: 0.3% RAM: 7.0% Upload: 1.66 KB/s Download: 0.48 KB/s -2023-06-22 01:00:17 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-22 01:01:17 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-22 01:02:17 + : CPU: 0.3% RAM: 7.0% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-22 01:03:17 + : CPU: 0.3% RAM: 7.0% Upload: 0.11 KB/s Download: 0.39 KB/s -2023-06-22 01:04:17 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-22 01:05:17 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-22 01:08:59 + : Server started -2023-06-22 01:09:59 + : CPU: 0.5% RAM: 6.8% Upload: 1.75 KB/s Download: 1.15 KB/s -2023-06-22 01:10:59 + : CPU: 0.3% RAM: 6.9% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-22 01:11:59 + : CPU: 0.3% RAM: 6.9% Upload: 1.50 KB/s Download: 0.34 KB/s -2023-06-22 01:12:59 + : CPU: 0.3% RAM: 6.9% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-22 01:13:59 + : CPU: 0.3% RAM: 6.9% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-22 01:14:59 + : CPU: 0.3% RAM: 7.0% Upload: 0.12 KB/s Download: 0.39 KB/s -2023-06-22 01:15:59 + : CPU: 0.3% RAM: 7.0% Upload: 1.50 KB/s Download: 0.35 KB/s -2023-06-22 01:16:59 + : CPU: 0.3% RAM: 7.0% Upload: 1.50 KB/s Download: 0.38 KB/s -2023-06-22 01:17:59 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-22 01:18:59 + : CPU: 0.3% RAM: 7.0% Upload: 0.14 KB/s Download: 0.51 KB/s -2023-06-22 01:19:59 + : CPU: 0.3% RAM: 7.0% Upload: 0.15 KB/s Download: 0.48 KB/s -2023-06-22 01:20:59 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-22 01:21:59 + : CPU: 0.3% RAM: 7.0% Upload: 1.59 KB/s Download: 0.43 KB/s -2023-06-22 01:22:59 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-22 01:23:59 + : CPU: 0.3% RAM: 7.1% Upload: 1.52 KB/s Download: 0.36 KB/s -2023-06-22 01:24:59 + : CPU: 0.3% RAM: 7.1% Upload: 0.11 KB/s Download: 0.39 KB/s -2023-06-22 01:25:59 + : CPU: 0.3% RAM: 7.1% Upload: 2.96 KB/s Download: 0.46 KB/s -2023-06-22 01:29:34 + : Server started -2023-06-22 01:30:34 + : CPU: 0.5% RAM: 6.8% Upload: 0.36 KB/s Download: 1.16 KB/s -2023-06-22 01:31:34 + : CPU: 0.3% RAM: 6.8% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-22 01:32:34 + : CPU: 0.3% RAM: 6.8% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-22 01:33:34 + : CPU: 0.3% RAM: 6.9% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-22 01:34:34 + : CPU: 0.3% RAM: 6.9% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-22 01:35:34 + : CPU: 0.4% RAM: 6.9% Upload: 2.95 KB/s Download: 0.48 KB/s -2023-06-22 01:36:34 + : CPU: 0.4% RAM: 6.9% Upload: 0.13 KB/s Download: 0.31 KB/s -2023-06-22 01:37:34 + : CPU: 0.3% RAM: 7.0% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-22 01:38:34 + : CPU: 0.3% RAM: 7.0% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-22 01:39:34 + : CPU: 0.3% RAM: 7.0% Upload: 0.21 KB/s Download: 0.64 KB/s -2023-06-22 01:40:34 + : CPU: 0.3% RAM: 7.0% Upload: 0.14 KB/s Download: 0.42 KB/s -2023-06-22 01:41:34 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-22 01:42:34 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-22 01:43:34 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-22 01:44:34 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-22 01:45:34 + : CPU: 0.2% RAM: 7.1% Upload: 0.10 KB/s Download: 0.38 KB/s -2023-06-22 01:46:35 + : CPU: 0.3% RAM: 7.1% Upload: 0.13 KB/s Download: 0.31 KB/s -2023-06-22 01:50:10 + : Server started -2023-06-22 01:51:09 + : CPU: 0.6% RAM: 6.9% Upload: 0.34 KB/s Download: 1.09 KB/s -2023-06-22 01:52:09 + : CPU: 0.3% RAM: 6.9% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-22 01:53:09 + : CPU: 0.3% RAM: 6.9% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-22 01:54:09 + : CPU: 0.3% RAM: 6.9% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-22 01:55:09 + : CPU: 0.3% RAM: 6.9% Upload: 0.10 KB/s Download: 0.38 KB/s -2023-06-22 01:56:09 + : CPU: 0.3% RAM: 6.9% Upload: 0.15 KB/s Download: 0.34 KB/s -2023-06-22 01:57:09 + : CPU: 0.2% RAM: 6.9% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-22 01:58:09 + : CPU: 0.3% RAM: 6.9% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-22 01:59:09 + : CPU: 0.3% RAM: 7.0% Upload: 0.14 KB/s Download: 0.33 KB/s -2023-06-22 02:00:09 + : CPU: 0.3% RAM: 7.0% Upload: 0.17 KB/s Download: 0.57 KB/s -2023-06-22 02:01:09 + : CPU: 0.3% RAM: 7.0% Upload: 0.20 KB/s Download: 0.46 KB/s -2023-06-23 21:06:47 + : Server started -2023-06-23 21:07:46 + : CPU: 0.9% RAM: 6.8% Upload: 0.25 KB/s Download: 0.85 KB/s -2023-06-23 21:08:46 + : CPU: 0.5% RAM: 6.9% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-23 21:09:46 + : CPU: 0.6% RAM: 6.9% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-23 21:10:46 + : CPU: 0.5% RAM: 6.9% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-23 21:11:46 + : CPU: 0.6% RAM: 6.9% Upload: 0.11 KB/s Download: 0.39 KB/s -2023-06-23 21:12:47 + : CPU: 0.5% RAM: 6.9% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-23 21:13:47 + : CPU: 0.5% RAM: 6.9% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-23 21:14:47 + : CPU: 0.5% RAM: 6.9% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-23 21:15:47 + : CPU: 0.5% RAM: 6.9% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-23 21:16:47 + : CPU: 0.5% RAM: 7.0% Upload: 0.18 KB/s Download: 0.60 KB/s -2023-06-23 21:17:47 + : CPU: 0.4% RAM: 7.0% Upload: 0.21 KB/s Download: 0.39 KB/s -2023-06-23 21:18:47 + : CPU: 0.4% RAM: 7.0% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-23 21:19:47 + : CPU: 0.5% RAM: 7.0% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-23 21:20:47 + : CPU: 0.5% RAM: 7.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-23 21:21:47 + : CPU: 0.5% RAM: 7.0% Upload: 0.11 KB/s Download: 0.39 KB/s -2023-06-23 21:22:47 + : CPU: 0.5% RAM: 7.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-23 21:23:47 + : CPU: 0.5% RAM: 7.0% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-23 21:27:46 + : Server started -2023-06-23 21:28:45 + : CPU: 0.8% RAM: 6.8% Upload: 0.34 KB/s Download: 0.61 KB/s -2023-06-23 21:29:45 + : CPU: 0.4% RAM: 6.8% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-23 21:30:45 + : CPU: 0.4% RAM: 6.9% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-23 21:31:45 + : CPU: 0.5% RAM: 6.9% Upload: 0.08 KB/s Download: 0.29 KB/s -2023-06-23 21:32:45 + : CPU: 0.4% RAM: 6.9% Upload: 0.19 KB/s Download: 0.39 KB/s -2023-06-23 21:33:45 + : CPU: 0.5% RAM: 6.9% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-23 21:34:45 + : CPU: 0.5% RAM: 6.9% Upload: 1.51 KB/s Download: 0.37 KB/s -2023-06-23 21:35:45 + : CPU: 0.5% RAM: 7.0% Upload: 0.15 KB/s Download: 0.31 KB/s -2023-06-23 21:36:45 + : CPU: 0.4% RAM: 7.0% Upload: 0.18 KB/s Download: 0.31 KB/s -2023-06-23 21:37:45 + : CPU: 0.4% RAM: 7.0% Upload: 0.42 KB/s Download: 0.72 KB/s -2023-06-23 21:38:45 + : CPU: 0.5% RAM: 7.0% Upload: 1.55 KB/s Download: 0.39 KB/s -2023-06-23 21:39:45 + : CPU: 0.5% RAM: 7.0% Upload: 0.26 KB/s Download: 0.45 KB/s -2023-06-23 21:40:46 + : CPU: 0.5% RAM: 7.0% Upload: 0.12 KB/s Download: 0.30 KB/s -2023-06-23 21:41:46 + : CPU: 0.5% RAM: 7.1% Upload: 0.11 KB/s Download: 0.31 KB/s -2023-06-23 21:42:46 + : CPU: 0.5% RAM: 7.1% Upload: 0.15 KB/s Download: 0.40 KB/s -2023-06-23 21:43:46 + : CPU: 0.5% RAM: 7.1% Upload: 0.12 KB/s Download: 0.31 KB/s -2023-06-23 21:44:46 + : CPU: 0.4% RAM: 7.1% Upload: 0.11 KB/s Download: 0.29 KB/s -2023-06-23 21:57:33 + : Server started -2023-06-23 21:58:31 + : CPU: 0.9% RAM: 6.9% Upload: 0.68 KB/s Download: 1.76 KB/s -2023-06-23 21:59:31 + : CPU: 0.3% RAM: 6.9% Upload: 0.27 KB/s Download: 0.43 KB/s -2023-06-23 22:00:31 + : CPU: 0.3% RAM: 6.9% Upload: 0.25 KB/s Download: 0.44 KB/s -2023-06-23 22:01:31 + : CPU: 0.3% RAM: 6.9% Upload: 0.26 KB/s Download: 0.43 KB/s -2023-06-23 22:02:31 + : CPU: 0.3% RAM: 7.0% Upload: 1.66 KB/s Download: 0.60 KB/s -2023-06-23 22:03:31 + : CPU: 0.3% RAM: 7.0% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-23 22:04:06 + : pb-IF4iU0QaEw== axj~}h~{`~~ 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-23 22:04:06 + : pb-IF4iU0QaEw== ip: axj~}h~{`~~ , Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-23 22:04:31 + : CPU: 0.4% RAM: 7.0% Upload: 5.51 KB/s Download: 0.66 KB/s -2023-06-23 22:05:31 + : CPU: 0.6% RAM: 7.0% Upload: 11.53 KB/s Download: 0.81 KB/s -2023-06-23 22:06:31 + : CPU: 0.8% RAM: 7.0% Upload: 14.32 KB/s Download: 1.00 KB/s -2023-06-23 22:07:31 + : CPU: 0.7% RAM: 7.0% Upload: 13.01 KB/s Download: 1.05 KB/s -2023-06-23 22:08:31 + : CPU: 0.7% RAM: 7.0% Upload: 11.62 KB/s Download: 1.22 KB/s -2023-06-23 22:09:31 + : CPU: 0.7% RAM: 7.1% Upload: 12.78 KB/s Download: 0.87 KB/s -2023-06-23 22:10:31 + : CPU: 0.7% RAM: 7.1% Upload: 12.72 KB/s Download: 0.81 KB/s -2023-06-23 22:11:31 + : CPU: 0.7% RAM: 7.1% Upload: 11.24 KB/s Download: 0.70 KB/s -2023-06-23 22:12:31 + : CPU: 0.7% RAM: 7.1% Upload: 11.30 KB/s Download: 0.82 KB/s -2023-06-23 22:13:31 + : CPU: 0.7% RAM: 7.1% Upload: 9.56 KB/s Download: 0.64 KB/s -2023-06-23 22:14:31 + : CPU: 0.5% RAM: 7.1% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-23 22:15:31 + : CPU: 0.5% RAM: 7.1% Upload: 0.19 KB/s Download: 0.36 KB/s -2023-06-23 22:16:31 + : CPU: 0.4% RAM: 7.2% Upload: 0.10 KB/s Download: 0.30 KB/s -2023-06-23 22:17:31 + : CPU: 0.4% RAM: 7.2% Upload: 0.13 KB/s Download: 0.37 KB/s -2023-06-23 22:18:31 + : CPU: 0.4% RAM: 7.2% Upload: 2.98 KB/s Download: 0.67 KB/s -2023-06-23 22:19:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-23 22:20:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.11 KB/s Download: 0.31 KB/s -2023-06-23 22:21:31 + : CPU: 0.4% RAM: 7.2% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-23 22:22:31 + : CPU: 0.4% RAM: 7.2% Upload: 0.13 KB/s Download: 0.41 KB/s -2023-06-23 22:23:31 + : CPU: 0.4% RAM: 7.2% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-23 22:24:32 + : CPU: 0.3% RAM: 7.3% Upload: 0.10 KB/s Download: 0.31 KB/s -2023-06-23 22:26:06 + : Server started -2023-06-23 22:27:06 + : CPU: 0.5% RAM: 6.8% Upload: 0.35 KB/s Download: 1.08 KB/s -2023-06-23 22:28:06 + : CPU: 0.3% RAM: 6.8% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-23 22:29:06 + : CPU: 0.3% RAM: 6.9% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-23 22:30:06 + : CPU: 0.3% RAM: 6.9% Upload: 0.09 KB/s Download: 0.31 KB/s -2023-06-23 22:31:06 + : CPU: 0.3% RAM: 6.9% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-23 22:32:06 + : CPU: 0.3% RAM: 6.9% Upload: 0.12 KB/s Download: 0.40 KB/s -2023-06-23 22:33:06 + : CPU: 0.3% RAM: 6.9% Upload: 0.10 KB/s Download: 0.28 KB/s -2023-06-23 22:34:06 + : CPU: 0.3% RAM: 6.9% Upload: 0.10 KB/s Download: 0.30 KB/s -2023-06-23 22:35:06 + : CPU: 0.3% RAM: 6.9% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-23 22:36:06 + : CPU: 0.3% RAM: 6.9% Upload: 0.15 KB/s Download: 0.56 KB/s -2023-06-23 22:37:06 + : CPU: 0.3% RAM: 6.9% Upload: 0.16 KB/s Download: 0.49 KB/s -2023-06-23 22:38:06 + : CPU: 0.3% RAM: 7.0% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-23 22:39:06 + : CPU: 0.3% RAM: 7.0% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-23 22:40:06 + : CPU: 0.3% RAM: 7.0% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-23 22:41:06 + : CPU: 0.3% RAM: 7.0% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-23 22:42:06 + : CPU: 0.3% RAM: 7.0% Upload: 0.12 KB/s Download: 0.40 KB/s -2023-06-23 22:43:06 + : CPU: 0.3% RAM: 7.0% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-23 22:46:44 + : Server started -2023-06-23 22:47:44 + : CPU: 0.6% RAM: 6.9% Upload: 0.32 KB/s Download: 1.00 KB/s -2023-06-23 22:48:44 + : CPU: 0.3% RAM: 6.9% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-23 22:49:44 + : CPU: 0.3% RAM: 6.9% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-23 22:50:44 + : CPU: 0.3% RAM: 6.9% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-23 22:51:44 + : CPU: 0.3% RAM: 7.0% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-23 22:52:44 + : CPU: 0.3% RAM: 7.0% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-23 22:53:44 + : CPU: 0.3% RAM: 7.0% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-23 22:54:44 + : CPU: 0.3% RAM: 7.0% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-23 22:55:44 + : CPU: 0.4% RAM: 7.2% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-23 22:56:44 + : CPU: 0.3% RAM: 7.2% Upload: 0.14 KB/s Download: 0.50 KB/s -2023-06-23 22:57:44 + : CPU: 0.3% RAM: 7.2% Upload: 0.17 KB/s Download: 0.52 KB/s -2023-06-23 22:58:44 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-23 22:59:44 + : CPU: 0.7% RAM: 7.2% Upload: 0.24 KB/s Download: 3.25 KB/s -2023-06-23 23:00:44 + : CPU: 0.3% RAM: 7.2% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-23 23:01:44 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-23 23:02:44 + : CPU: 0.3% RAM: 7.3% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-23 23:03:44 + : CPU: 0.3% RAM: 7.3% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-23 23:07:23 + : Server started -2023-06-23 23:08:22 + : CPU: 0.5% RAM: 7.0% Upload: 0.32 KB/s Download: 1.02 KB/s -2023-06-23 23:09:22 + : CPU: 0.3% RAM: 7.1% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-23 23:09:57 + : None axj~}h~{`~~ 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-23 23:09:58 + : pb-IF4iU0QaEw== axj~}h~{`~~ 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-23 23:09:58 + : pb-IF4iU0QaEw== ip: axj~}h~{`~~ , Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-23 23:10:22 + : CPU: 0.5% RAM: 7.1% Upload: 5.21 KB/s Download: 0.62 KB/s -2023-06-23 23:11:22 + : CPU: 0.6% RAM: 7.1% Upload: 8.66 KB/s Download: 0.79 KB/s -2023-06-23 23:12:22 + : CPU: 0.5% RAM: 7.1% Upload: 7.34 KB/s Download: 0.82 KB/s -2023-06-23 23:13:22 + : CPU: 0.6% RAM: 7.1% Upload: 7.30 KB/s Download: 0.69 KB/s -2023-06-23 23:14:23 + : CPU: 0.6% RAM: 7.2% Upload: 7.31 KB/s Download: 0.72 KB/s -2023-06-23 23:15:23 + : CPU: 0.6% RAM: 7.2% Upload: 7.31 KB/s Download: 0.69 KB/s -2023-06-23 23:16:23 + : CPU: 0.5% RAM: 7.2% Upload: 7.30 KB/s Download: 0.72 KB/s -2023-06-23 23:17:23 + : CPU: 0.5% RAM: 7.2% Upload: 7.36 KB/s Download: 0.91 KB/s -2023-06-23 23:18:23 + : CPU: 0.6% RAM: 7.2% Upload: 7.37 KB/s Download: 0.93 KB/s -2023-06-23 23:19:23 + : CPU: 0.5% RAM: 7.2% Upload: 7.30 KB/s Download: 0.75 KB/s -2023-06-23 23:20:23 + : CPU: 0.6% RAM: 7.2% Upload: 7.31 KB/s Download: 0.71 KB/s -2023-06-23 23:21:23 + : CPU: 0.5% RAM: 7.2% Upload: 7.31 KB/s Download: 0.70 KB/s -2023-06-23 23:41:17 + : Server started -2023-06-23 23:42:17 + : CPU: 0.5% RAM: 7.2% Upload: 1.91 KB/s Download: 1.24 KB/s -2023-06-23 23:43:17 + : CPU: 0.2% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-23 23:44:17 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.34 KB/s -2023-06-23 23:45:17 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-23 23:46:17 + : CPU: 0.3% RAM: 7.3% Upload: 0.23 KB/s Download: 0.42 KB/s -2023-06-23 23:47:17 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-23 23:48:17 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-23 23:49:17 + : CPU: 0.3% RAM: 7.3% Upload: 0.20 KB/s Download: 0.30 KB/s -2023-06-23 23:50:17 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-23 23:51:17 + : CPU: 0.3% RAM: 7.3% Upload: 0.26 KB/s Download: 0.52 KB/s -2023-06-23 23:52:17 + : CPU: 0.3% RAM: 7.3% Upload: 0.28 KB/s Download: 0.55 KB/s -2023-06-23 23:53:17 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-23 23:54:18 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-23 23:55:18 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-23 23:56:18 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.32 KB/s -2023-06-23 23:57:18 + : CPU: 0.3% RAM: 7.4% Upload: 0.25 KB/s Download: 0.42 KB/s -2023-06-23 23:58:18 + : CPU: 0.3% RAM: 7.4% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-24 00:01:56 + : Server started -2023-06-24 00:02:56 + : CPU: 0.5% RAM: 7.1% Upload: 0.46 KB/s Download: 1.12 KB/s -2023-06-24 00:03:56 + : CPU: 0.2% RAM: 7.1% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 00:04:56 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-24 00:05:56 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 00:06:56 + : CPU: 0.3% RAM: 7.2% Upload: 0.23 KB/s Download: 0.39 KB/s -2023-06-24 00:07:56 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.34 KB/s -2023-06-24 00:08:56 + : CPU: 0.3% RAM: 7.2% Upload: 0.93 KB/s Download: 0.37 KB/s -2023-06-24 00:09:56 + : CPU: 0.5% RAM: 7.3% Upload: 17.67 KB/s Download: 1.02 KB/s -2023-06-24 00:10:56 + : CPU: 0.2% RAM: 7.3% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-24 00:11:56 + : CPU: 0.3% RAM: 7.3% Upload: 0.30 KB/s Download: 0.65 KB/s -2023-06-24 00:12:56 + : CPU: 0.3% RAM: 7.3% Upload: 0.26 KB/s Download: 0.42 KB/s -2023-06-24 00:13:56 + : CPU: 0.3% RAM: 7.3% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-24 00:14:56 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 00:15:56 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 00:16:56 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-24 00:17:56 + : CPU: 0.3% RAM: 7.4% Upload: 0.25 KB/s Download: 0.43 KB/s -2023-06-24 00:18:56 + : CPU: 0.2% RAM: 7.4% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 00:22:34 + : Server started -2023-06-24 00:23:34 + : CPU: 0.5% RAM: 7.1% Upload: 0.47 KB/s Download: 1.11 KB/s -2023-06-24 00:24:34 + : CPU: 0.3% RAM: 7.1% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-24 00:25:34 + : CPU: 0.3% RAM: 7.2% Upload: 0.22 KB/s Download: 0.30 KB/s -2023-06-24 00:26:34 + : CPU: 0.3% RAM: 7.2% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-24 00:27:34 + : CPU: 0.3% RAM: 7.2% Upload: 0.24 KB/s Download: 0.40 KB/s -2023-06-24 00:28:34 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.34 KB/s -2023-06-24 00:29:34 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-24 00:30:34 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 00:31:34 + : CPU: 0.3% RAM: 7.3% Upload: 0.22 KB/s Download: 0.30 KB/s -2023-06-24 00:32:34 + : CPU: 0.3% RAM: 7.3% Upload: 0.27 KB/s Download: 0.56 KB/s -2023-06-24 00:33:34 + : CPU: 0.3% RAM: 7.3% Upload: 0.30 KB/s Download: 0.52 KB/s -2023-06-24 00:34:34 + : CPU: 0.2% RAM: 7.3% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-24 00:35:34 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-24 00:36:34 + : CPU: 0.3% RAM: 7.3% Upload: 0.22 KB/s Download: 0.35 KB/s -2023-06-24 00:37:34 + : CPU: 0.3% RAM: 7.3% Upload: 0.22 KB/s Download: 0.30 KB/s -2023-06-24 00:38:34 + : CPU: 0.3% RAM: 7.3% Upload: 0.24 KB/s Download: 0.44 KB/s -2023-06-24 00:39:34 + : CPU: 0.2% RAM: 7.3% Upload: 0.22 KB/s Download: 0.32 KB/s -2023-06-24 00:43:12 + : Server started -2023-06-24 00:44:12 + : CPU: 0.6% RAM: 7.1% Upload: 0.50 KB/s Download: 1.26 KB/s -2023-06-24 00:45:12 + : CPU: 0.3% RAM: 7.1% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 00:46:12 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 00:47:12 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 00:48:12 + : CPU: 0.3% RAM: 7.2% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-24 00:49:12 + : CPU: 0.3% RAM: 7.2% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-24 00:50:12 + : CPU: 0.3% RAM: 7.2% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-24 00:51:12 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-24 00:52:12 + : CPU: 0.3% RAM: 7.3% Upload: 0.22 KB/s Download: 0.35 KB/s -2023-06-24 00:53:12 + : CPU: 0.3% RAM: 7.3% Upload: 0.27 KB/s Download: 0.51 KB/s -2023-06-24 00:54:12 + : CPU: 0.3% RAM: 7.3% Upload: 0.30 KB/s Download: 0.55 KB/s -2023-06-24 00:55:12 + : CPU: 0.3% RAM: 7.3% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-24 00:56:12 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 00:57:12 + : CPU: 0.2% RAM: 7.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 00:58:12 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 00:59:12 + : CPU: 0.2% RAM: 7.3% Upload: 0.24 KB/s Download: 0.41 KB/s -2023-06-24 01:00:12 + : CPU: 0.3% RAM: 7.4% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 01:03:50 + : Server started -2023-06-24 01:04:50 + : CPU: 0.5% RAM: 7.2% Upload: 0.48 KB/s Download: 1.20 KB/s -2023-06-24 01:05:50 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 01:06:50 + : CPU: 0.2% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 01:07:50 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 01:08:50 + : CPU: 0.2% RAM: 7.2% Upload: 0.24 KB/s Download: 0.41 KB/s -2023-06-24 01:09:50 + : CPU: 0.3% RAM: 7.2% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-24 01:10:50 + : CPU: 0.2% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 01:11:50 + : CPU: 0.2% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 01:12:50 + : CPU: 0.2% RAM: 7.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 01:13:50 + : CPU: 0.3% RAM: 7.3% Upload: 0.27 KB/s Download: 0.54 KB/s -2023-06-24 01:14:50 + : CPU: 0.3% RAM: 7.3% Upload: 0.30 KB/s Download: 0.53 KB/s -2023-06-24 01:15:50 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 01:16:50 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 01:17:51 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 01:18:51 + : CPU: 0.2% RAM: 7.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 01:19:51 + : CPU: 0.3% RAM: 7.4% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-24 01:20:51 + : CPU: 0.3% RAM: 7.3% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-24 01:24:35 + : Server started -2023-06-24 01:25:34 + : CPU: 0.6% RAM: 7.1% Upload: 0.46 KB/s Download: 1.13 KB/s -2023-06-24 01:26:34 + : CPU: 0.2% RAM: 7.1% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 01:27:34 + : CPU: 0.3% RAM: 7.1% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-24 01:28:34 + : CPU: 0.3% RAM: 7.1% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 01:29:34 + : CPU: 0.3% RAM: 7.1% Upload: 0.24 KB/s Download: 0.40 KB/s -2023-06-24 01:30:34 + : CPU: 0.4% RAM: 7.1% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-24 01:31:34 + : CPU: 0.3% RAM: 7.2% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-24 01:32:34 + : CPU: 0.3% RAM: 7.2% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-24 01:33:34 + : CPU: 0.2% RAM: 7.2% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-24 01:34:34 + : CPU: 0.3% RAM: 7.2% Upload: 0.29 KB/s Download: 0.65 KB/s -2023-06-24 01:35:34 + : CPU: 0.2% RAM: 7.2% Upload: 0.26 KB/s Download: 0.37 KB/s -2023-06-24 01:36:34 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-24 01:37:34 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.27 KB/s -2023-06-24 01:38:34 + : CPU: 0.2% RAM: 7.2% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-24 01:39:34 + : CPU: 0.3% RAM: 7.2% Upload: 0.24 KB/s Download: 0.37 KB/s -2023-06-24 01:40:34 + : CPU: 0.3% RAM: 7.2% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-24 01:41:35 + : CPU: 0.2% RAM: 7.3% Upload: 0.22 KB/s Download: 0.28 KB/s -2023-06-24 01:45:17 + : Server started -2023-06-24 01:46:17 + : CPU: 0.7% RAM: 7.0% Upload: 0.44 KB/s Download: 1.03 KB/s -2023-06-24 01:47:17 + : CPU: 0.2% RAM: 7.1% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 01:48:17 + : CPU: 0.2% RAM: 7.1% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 01:49:17 + : CPU: 0.3% RAM: 7.1% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 01:50:17 + : CPU: 0.2% RAM: 7.1% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-24 01:51:17 + : CPU: 0.2% RAM: 7.2% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-24 01:52:17 + : CPU: 0.2% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 01:53:17 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 01:54:17 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 01:55:17 + : CPU: 0.3% RAM: 7.2% Upload: 0.29 KB/s Download: 0.62 KB/s -2023-06-24 01:56:17 + : CPU: 0.2% RAM: 7.2% Upload: 0.37 KB/s Download: 0.45 KB/s -2023-06-24 01:57:17 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 01:58:17 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.39 KB/s -2023-06-24 01:59:17 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 02:00:17 + : CPU: 0.3% RAM: 7.3% Upload: 0.24 KB/s Download: 0.42 KB/s -2023-06-24 02:01:17 + : CPU: 0.2% RAM: 7.3% Upload: 0.22 KB/s Download: 0.32 KB/s -2023-06-24 02:02:17 + : CPU: 0.3% RAM: 7.3% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 02:06:00 + : Server started -2023-06-24 02:07:00 + : CPU: 0.7% RAM: 7.0% Upload: 0.44 KB/s Download: 1.03 KB/s -2023-06-24 02:08:00 + : CPU: 0.2% RAM: 7.1% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 02:09:00 + : CPU: 0.2% RAM: 7.1% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 02:10:00 + : CPU: 0.3% RAM: 7.1% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-24 02:11:00 + : CPU: 0.3% RAM: 7.1% Upload: 0.24 KB/s Download: 0.42 KB/s -2023-06-24 02:12:00 + : CPU: 0.2% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 02:13:00 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 02:14:00 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 02:15:00 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 02:16:00 + : CPU: 0.3% RAM: 7.2% Upload: 0.29 KB/s Download: 0.64 KB/s -2023-06-24 02:17:00 + : CPU: 0.3% RAM: 7.2% Upload: 0.26 KB/s Download: 0.42 KB/s -2023-06-24 02:18:00 + : CPU: 0.3% RAM: 7.2% Upload: 0.22 KB/s Download: 0.38 KB/s -2023-06-24 02:19:00 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 02:20:00 + : CPU: 0.3% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 02:21:00 + : CPU: 0.3% RAM: 7.3% Upload: 0.23 KB/s Download: 0.40 KB/s -2023-06-24 02:22:00 + : CPU: 0.3% RAM: 7.3% Upload: 0.22 KB/s Download: 0.35 KB/s -2023-06-24 02:23:00 + : CPU: 0.2% RAM: 7.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 10:26:57 + : Server started -2023-06-24 10:27:55 + : CPU: 0.9% RAM: 7.0% Upload: 0.42 KB/s Download: 1.01 KB/s -2023-06-24 10:28:55 + : CPU: 0.5% RAM: 7.1% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 10:29:55 + : CPU: 0.5% RAM: 7.1% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 10:30:55 + : CPU: 0.6% RAM: 7.1% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 10:31:56 + : CPU: 0.6% RAM: 7.1% Upload: 0.24 KB/s Download: 0.42 KB/s -2023-06-24 10:32:56 + : CPU: 0.4% RAM: 7.2% Upload: 0.22 KB/s Download: 0.33 KB/s -2023-06-24 10:58:09 + : CPU: 0.5% RAM: 7.2% Upload: 0.22 KB/s Download: 0.45 KB/s -2023-06-24 10:59:09 + : CPU: 0.4% RAM: 7.2% Upload: 0.26 KB/s Download: 0.90 KB/s -2023-06-24 11:00:09 + : CPU: 0.5% RAM: 7.2% Upload: 0.21 KB/s Download: 0.28 KB/s -2023-06-24 11:01:09 + : CPU: 0.6% RAM: 7.2% Upload: 0.24 KB/s Download: 0.41 KB/s -2023-06-24 11:02:09 + : CPU: 0.5% RAM: 7.2% Upload: 0.36 KB/s Download: 0.38 KB/s -2023-06-24 11:03:09 + : CPU: 0.5% RAM: 7.3% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 11:04:09 + : CPU: 0.5% RAM: 7.3% Upload: 0.21 KB/s Download: 0.28 KB/s -2023-06-24 11:05:09 + : CPU: 0.5% RAM: 7.3% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-24 11:06:09 + : CPU: 0.5% RAM: 7.3% Upload: 0.24 KB/s Download: 0.38 KB/s -2023-06-24 11:07:09 + : CPU: 0.6% RAM: 7.3% Upload: 0.21 KB/s Download: 0.29 KB/s -2023-06-24 11:08:09 + : CPU: 0.7% RAM: 7.3% Upload: 0.27 KB/s Download: 0.49 KB/s -2023-06-24 11:12:08 + : Server started -2023-06-24 11:13:06 + : CPU: 0.9% RAM: 7.0% Upload: 0.41 KB/s Download: 0.63 KB/s -2023-06-24 11:14:06 + : CPU: 0.4% RAM: 7.1% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-24 11:15:06 + : CPU: 0.5% RAM: 7.1% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 11:16:06 + : CPU: 0.5% RAM: 7.1% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-24 11:17:06 + : CPU: 0.5% RAM: 7.1% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-24 11:18:06 + : CPU: 0.5% RAM: 7.1% Upload: 0.21 KB/s Download: 0.36 KB/s -2023-06-24 11:19:06 + : CPU: 0.6% RAM: 7.1% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 11:20:06 + : CPU: 0.5% RAM: 7.1% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 11:21:06 + : CPU: 0.5% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 11:22:06 + : CPU: 0.6% RAM: 7.2% Upload: 0.54 KB/s Download: 0.73 KB/s -2023-06-24 11:23:06 + : CPU: 0.6% RAM: 7.2% Upload: 0.22 KB/s Download: 0.30 KB/s -2023-06-24 11:24:06 + : CPU: 0.6% RAM: 7.2% Upload: 0.21 KB/s Download: 0.27 KB/s -2023-06-24 11:25:06 + : CPU: 0.6% RAM: 7.2% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-24 11:26:07 + : CPU: 0.5% RAM: 7.2% Upload: 0.21 KB/s Download: 0.27 KB/s -2023-06-24 11:27:07 + : CPU: 0.4% RAM: 7.2% Upload: 0.24 KB/s Download: 0.40 KB/s -2023-06-24 11:28:07 + : CPU: 0.6% RAM: 7.2% Upload: 0.21 KB/s Download: 0.27 KB/s -2023-06-24 11:29:07 + : CPU: 0.5% RAM: 7.2% Upload: 0.21 KB/s Download: 0.29 KB/s -2023-06-24 11:32:54 + : Server started -2023-06-24 11:33:53 + : CPU: 1.0% RAM: 7.0% Upload: 0.42 KB/s Download: 0.98 KB/s -2023-06-24 11:34:53 + : CPU: 0.6% RAM: 7.1% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 11:35:53 + : CPU: 0.6% RAM: 7.1% Upload: 0.21 KB/s Download: 0.30 KB/s -2023-06-24 11:36:53 + : CPU: 0.5% RAM: 7.1% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 11:37:53 + : CPU: 0.6% RAM: 7.1% Upload: 0.24 KB/s Download: 0.41 KB/s -2023-06-24 11:38:53 + : CPU: 0.5% RAM: 7.1% Upload: 0.21 KB/s Download: 0.39 KB/s -2023-06-24 11:39:53 + : CPU: 0.6% RAM: 7.1% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-24 11:40:53 + : CPU: 0.5% RAM: 7.1% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 11:41:53 + : CPU: 0.5% RAM: 7.1% Upload: 0.21 KB/s Download: 0.32 KB/s -2023-06-24 11:42:54 + : CPU: 0.5% RAM: 7.2% Upload: 0.30 KB/s Download: 0.64 KB/s -2023-06-24 11:43:54 + : CPU: 0.5% RAM: 7.2% Upload: 0.38 KB/s Download: 0.42 KB/s -2023-06-24 11:44:54 + : CPU: 0.5% RAM: 7.2% Upload: 0.21 KB/s Download: 0.33 KB/s -2023-06-24 11:45:54 + : CPU: 0.6% RAM: 7.2% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 11:46:54 + : CPU: 0.6% RAM: 7.2% Upload: 0.21 KB/s Download: 0.32 KB/s -2023-06-24 11:47:54 + : CPU: 0.6% RAM: 7.2% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-24 11:48:54 + : CPU: 0.6% RAM: 7.2% Upload: 0.24 KB/s Download: 0.43 KB/s -2023-06-24 11:49:54 + : CPU: 0.5% RAM: 7.2% Upload: 0.22 KB/s Download: 0.31 KB/s -2023-06-24 11:53:46 + : Server started -2023-06-24 11:54:45 + : CPU: 0.9% RAM: 7.0% Upload: 0.43 KB/s Download: 1.01 KB/s -2023-06-24 11:55:45 + : CPU: 0.7% RAM: 7.1% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 11:56:45 + : CPU: 0.7% RAM: 7.1% Upload: 0.22 KB/s Download: 0.34 KB/s -2023-06-24 11:57:45 + : CPU: 0.7% RAM: 7.1% Upload: 0.21 KB/s Download: 0.31 KB/s -2023-06-24 11:58:45 + : CPU: 0.6% RAM: 7.1% Upload: 0.24 KB/s Download: 0.44 KB/s -2023-06-24 16:12:33 + : Server started -2023-06-24 16:13:33 + : CPU: 0.5% RAM: 6.8% Upload: 0.32 KB/s Download: 1.06 KB/s -2023-06-24 16:14:33 + : CPU: 0.3% RAM: 6.8% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 16:15:33 + : CPU: 0.2% RAM: 6.8% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 16:16:33 + : CPU: 0.2% RAM: 6.8% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 16:17:33 + : CPU: 0.2% RAM: 6.8% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-24 16:43:57 + : Server started -2023-06-24 16:44:56 + : CPU: 0.6% RAM: 6.8% Upload: 0.31 KB/s Download: 1.02 KB/s -2023-06-24 16:45:56 + : CPU: 0.3% RAM: 6.8% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 16:46:56 + : CPU: 0.2% RAM: 6.8% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-24 16:47:56 + : CPU: 0.2% RAM: 6.9% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 16:48:56 + : CPU: 0.2% RAM: 6.9% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-24 16:53:23 + : Server started -2023-06-24 16:54:22 + : CPU: 0.7% RAM: 6.9% Upload: 0.34 KB/s Download: 1.02 KB/s -2023-06-24 16:55:22 + : CPU: 0.3% RAM: 6.9% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-24 16:56:22 + : CPU: 0.2% RAM: 6.9% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 16:57:22 + : CPU: 0.3% RAM: 6.9% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-24 16:58:22 + : CPU: 0.3% RAM: 7.0% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-24 16:59:22 + : CPU: 0.3% RAM: 7.0% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 17:00:22 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 17:01:22 + : CPU: 0.2% RAM: 7.0% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-24 17:02:22 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 17:03:22 + : CPU: 0.2% RAM: 7.0% Upload: 0.16 KB/s Download: 0.58 KB/s -2023-06-24 17:04:22 + : CPU: 0.3% RAM: 7.0% Upload: 0.16 KB/s Download: 0.37 KB/s -2023-06-24 17:05:22 + : CPU: 0.3% RAM: 7.1% Upload: 0.10 KB/s Download: 0.32 KB/s -2023-06-24 17:06:22 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 17:07:22 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 17:08:22 + : CPU: 0.2% RAM: 7.1% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-24 17:09:22 + : CPU: 0.3% RAM: 7.1% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-24 17:10:22 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-24 17:30:23 + : Server started -2023-06-24 17:31:23 + : CPU: 0.7% RAM: 6.9% Upload: 1.08 KB/s Download: 1.13 KB/s -2023-06-24 17:32:23 + : CPU: 0.5% RAM: 6.9% Upload: 7.98 KB/s Download: 0.78 KB/s -2023-06-24 17:33:23 + : CPU: 0.5% RAM: 7.0% Upload: 7.99 KB/s Download: 0.80 KB/s -2023-06-24 17:34:23 + : CPU: 0.3% RAM: 7.0% Upload: 0.10 KB/s Download: 0.26 KB/s -2023-06-24 17:35:23 + : CPU: 0.3% RAM: 7.0% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-24 17:36:23 + : CPU: 0.2% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 17:37:23 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-24 17:38:23 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 17:39:23 + : CPU: 0.4% RAM: 7.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-24 17:40:23 + : CPU: 0.4% RAM: 7.1% Upload: 0.17 KB/s Download: 0.57 KB/s -2023-06-24 17:41:23 + : CPU: 0.4% RAM: 7.1% Upload: 0.19 KB/s Download: 0.38 KB/s -2023-06-24 17:45:41 + : Server started -2023-06-24 17:46:41 + : CPU: 0.5% RAM: 6.9% Upload: 0.33 KB/s Download: 0.99 KB/s -2023-06-24 17:47:41 + : CPU: 0.2% RAM: 6.9% Upload: 0.10 KB/s Download: 0.26 KB/s -2023-06-24 17:48:41 + : CPU: 0.4% RAM: 6.9% Upload: 1.65 KB/s Download: 0.48 KB/s -2023-06-24 17:49:41 + : CPU: 0.4% RAM: 6.9% Upload: 0.12 KB/s Download: 0.29 KB/s -2023-06-24 17:50:41 + : CPU: 0.3% RAM: 6.9% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-24 17:51:41 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 17:52:41 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-24 17:53:41 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 17:54:41 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-24 17:55:41 + : CPU: 0.3% RAM: 7.1% Upload: 0.16 KB/s Download: 0.57 KB/s -2023-06-24 17:56:41 + : CPU: 0.3% RAM: 7.1% Upload: 0.13 KB/s Download: 0.38 KB/s -2023-06-24 17:57:41 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 17:58:41 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-24 17:59:41 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 18:00:41 + : CPU: 0.3% RAM: 7.1% Upload: 0.12 KB/s Download: 0.37 KB/s -2023-06-24 18:01:41 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-24 18:02:41 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 18:06:35 + : Server started -2023-06-24 18:07:35 + : CPU: 0.6% RAM: 6.9% Upload: 0.50 KB/s Download: 0.94 KB/s -2023-06-24 18:08:35 + : CPU: 0.3% RAM: 6.9% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-24 18:09:35 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 18:10:35 + : CPU: 0.3% RAM: 7.0% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 18:11:35 + : CPU: 0.3% RAM: 7.0% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-24 18:12:35 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-24 18:13:35 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 18:14:35 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-24 18:15:35 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-24 18:16:35 + : CPU: 0.3% RAM: 7.1% Upload: 0.16 KB/s Download: 0.58 KB/s -2023-06-24 18:17:35 + : CPU: 0.4% RAM: 7.1% Upload: 0.34 KB/s Download: 0.37 KB/s -2023-06-24 18:18:35 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-24 18:19:35 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 18:20:35 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 18:21:35 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-24 18:22:35 + : CPU: 0.3% RAM: 7.1% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-24 18:23:35 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-24 18:27:31 + : Server started -2023-06-24 18:28:31 + : CPU: 0.6% RAM: 6.9% Upload: 0.54 KB/s Download: 1.09 KB/s -2023-06-24 18:29:31 + : CPU: 0.3% RAM: 6.9% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-24 18:30:31 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-24 18:31:31 + : CPU: 0.3% RAM: 7.0% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-24 18:32:31 + : CPU: 0.3% RAM: 7.0% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-24 18:33:31 + : CPU: 0.3% RAM: 7.0% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-24 18:34:31 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 18:35:31 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-24 18:36:31 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 18:37:31 + : CPU: 0.3% RAM: 7.1% Upload: 0.14 KB/s Download: 0.46 KB/s -2023-06-24 18:38:31 + : CPU: 0.3% RAM: 7.1% Upload: 0.38 KB/s Download: 0.50 KB/s -2023-06-24 18:39:31 + : CPU: 0.3% RAM: 7.1% Upload: 0.10 KB/s Download: 0.28 KB/s -2023-06-24 18:40:31 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-24 18:41:31 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-24 18:42:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-24 18:43:31 + : CPU: 0.2% RAM: 7.2% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-24 18:44:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 18:48:27 + : Server started -2023-06-24 18:49:27 + : CPU: 0.5% RAM: 6.9% Upload: 0.49 KB/s Download: 0.88 KB/s -2023-06-24 18:50:27 + : CPU: 0.2% RAM: 6.9% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-24 18:51:27 + : CPU: 0.2% RAM: 7.0% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-24 18:52:27 + : CPU: 0.2% RAM: 7.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 18:53:27 + : CPU: 0.2% RAM: 7.0% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-24 18:54:27 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 18:55:27 + : CPU: 0.2% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 18:56:27 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 18:57:27 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-24 18:58:27 + : CPU: 0.3% RAM: 7.1% Upload: 0.14 KB/s Download: 0.47 KB/s -2023-06-24 18:59:27 + : CPU: 0.2% RAM: 7.1% Upload: 0.37 KB/s Download: 0.50 KB/s -2023-06-24 19:00:27 + : CPU: 0.3% RAM: 7.1% Upload: 0.10 KB/s Download: 0.26 KB/s -2023-06-24 19:01:27 + : CPU: 0.2% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 19:02:27 + : CPU: 0.3% RAM: 7.2% Upload: 0.10 KB/s Download: 0.26 KB/s -2023-06-24 19:03:27 + : CPU: 0.2% RAM: 7.2% Upload: 0.09 KB/s Download: 0.32 KB/s -2023-06-24 19:04:27 + : CPU: 0.3% RAM: 7.2% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-24 19:05:27 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 19:09:24 + : Server started -2023-06-24 19:10:23 + : CPU: 0.5% RAM: 7.0% Upload: 0.52 KB/s Download: 0.97 KB/s -2023-06-24 19:11:23 + : CPU: 0.3% RAM: 7.0% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 19:12:23 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 19:13:23 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-24 19:14:23 + : CPU: 0.3% RAM: 7.0% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-24 19:15:23 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-24 19:16:24 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 19:17:24 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-24 19:18:24 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 19:19:24 + : CPU: 0.3% RAM: 7.1% Upload: 0.13 KB/s Download: 0.47 KB/s -2023-06-24 19:20:24 + : CPU: 0.3% RAM: 7.1% Upload: 0.37 KB/s Download: 0.48 KB/s -2023-06-24 19:21:24 + : CPU: 0.2% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 19:22:24 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-24 19:23:24 + : CPU: 0.2% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 19:24:24 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 19:25:24 + : CPU: 0.3% RAM: 7.2% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-24 19:26:24 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 19:30:20 + : Server started -2023-06-24 19:31:20 + : CPU: 0.5% RAM: 6.9% Upload: 0.51 KB/s Download: 0.98 KB/s -2023-06-24 19:32:20 + : CPU: 0.3% RAM: 6.9% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 19:33:20 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-24 19:34:20 + : CPU: 0.2% RAM: 7.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 19:35:20 + : CPU: 0.3% RAM: 7.0% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-24 19:36:20 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 19:37:20 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-24 19:38:20 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 19:39:20 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-24 19:40:20 + : CPU: 0.3% RAM: 7.1% Upload: 0.17 KB/s Download: 0.57 KB/s -2023-06-24 19:41:20 + : CPU: 0.3% RAM: 7.1% Upload: 0.34 KB/s Download: 0.39 KB/s -2023-06-24 19:42:20 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 19:43:20 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-24 19:44:20 + : CPU: 0.4% RAM: 7.1% Upload: 0.10 KB/s Download: 0.25 KB/s -2023-06-24 19:45:20 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-24 19:46:20 + : CPU: 0.3% RAM: 7.1% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-24 19:47:20 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 19:51:32 + : Server started -2023-06-24 19:52:31 + : CPU: 0.8% RAM: 6.9% Upload: 0.53 KB/s Download: 1.07 KB/s -2023-06-24 19:53:31 + : CPU: 0.2% RAM: 6.9% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 19:54:31 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-24 19:55:31 + : CPU: 0.3% RAM: 7.0% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-24 19:56:31 + : CPU: 0.3% RAM: 7.0% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-24 19:57:31 + : CPU: 0.3% RAM: 7.0% Upload: 0.83 KB/s Download: 0.34 KB/s -2023-06-24 19:58:31 + : CPU: 0.3% RAM: 7.0% Upload: 0.12 KB/s Download: 0.30 KB/s -2023-06-24 19:59:31 + : CPU: 0.3% RAM: 7.1% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-24 20:00:31 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-24 20:01:31 + : CPU: 0.3% RAM: 7.1% Upload: 0.67 KB/s Download: 0.81 KB/s -2023-06-24 20:02:31 + : CPU: 0.3% RAM: 7.1% Upload: 10.94 KB/s Download: 0.51 KB/s -2023-06-24 20:03:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-24 20:04:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 20:05:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-24 20:06:31 + : CPU: 0.2% RAM: 7.2% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-24 20:07:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 20:08:31 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 20:12:36 + : Server started -2023-06-24 20:13:35 + : CPU: 0.7% RAM: 6.9% Upload: 0.32 KB/s Download: 1.11 KB/s -2023-06-24 20:14:35 + : CPU: 0.8% RAM: 7.0% Upload: 1.68 KB/s Download: 1.54 KB/s -2023-06-24 20:15:35 + : CPU: 0.5% RAM: 7.0% Upload: 1.55 KB/s Download: 0.38 KB/s -2023-06-24 20:16:35 + : CPU: 0.5% RAM: 7.1% Upload: 0.28 KB/s Download: 0.43 KB/s -2023-06-24 21:09:56 + : CPU: 0.8% RAM: 7.1% Upload: 0.26 KB/s Download: 1.05 KB/s -2023-06-24 21:10:56 + : CPU: 0.5% RAM: 7.1% Upload: 0.53 KB/s Download: 0.77 KB/s -2023-06-24 21:11:56 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-24 21:12:56 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-24 21:13:56 + : CPU: 0.2% RAM: 7.1% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-24 21:14:56 + : CPU: 0.3% RAM: 7.1% Upload: 0.29 KB/s Download: 0.54 KB/s -2023-06-24 21:15:56 + : CPU: 1.7% RAM: 7.4% Upload: 1.09 KB/s Download: 1.09 KB/s -2023-06-24 21:16:56 + : CPU: 0.4% RAM: 7.4% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-24 21:17:56 + : CPU: 0.4% RAM: 7.4% Upload: 0.49 KB/s Download: 0.60 KB/s -2023-06-24 21:18:57 + : CPU: 0.5% RAM: 7.5% Upload: 0.47 KB/s Download: 0.61 KB/s -2023-06-24 21:19:57 + : CPU: 0.3% RAM: 7.5% Upload: 0.44 KB/s Download: 0.81 KB/s -2023-06-24 21:20:57 + : CPU: 0.6% RAM: 7.5% Upload: 1.36 KB/s Download: 1.22 KB/s -2023-06-24 21:21:57 + : CPU: 0.6% RAM: 7.5% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-24 21:26:01 + : Server started -2023-06-24 21:27:01 + : CPU: 1.1% RAM: 7.2% Upload: 1.53 KB/s Download: 1.92 KB/s -2023-06-24 21:28:01 + : CPU: 0.6% RAM: 7.4% Upload: 6.41 KB/s Download: 0.46 KB/s -2023-06-24 21:29:01 + : CPU: 0.6% RAM: 7.4% Upload: 7.24 KB/s Download: 1.11 KB/s -2023-06-24 21:30:01 + : CPU: 0.5% RAM: 7.4% Upload: 0.10 KB/s Download: 0.31 KB/s -2023-06-24 21:31:01 + : CPU: 0.7% RAM: 7.5% Upload: 12.89 KB/s Download: 0.81 KB/s -2023-06-24 21:32:01 + : CPU: 0.5% RAM: 7.5% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-24 21:33:01 + : CPU: 0.6% RAM: 7.5% Upload: 6.50 KB/s Download: 0.52 KB/s -2023-06-24 21:34:01 + : CPU: 0.5% RAM: 7.5% Upload: 0.09 KB/s Download: 0.31 KB/s -2023-06-24 21:35:01 + : CPU: 0.4% RAM: 7.5% Upload: 4.98 KB/s Download: 0.41 KB/s -2023-06-24 21:36:01 + : CPU: 0.3% RAM: 7.5% Upload: 0.17 KB/s Download: 0.60 KB/s -2023-06-24 21:37:01 + : CPU: 0.3% RAM: 7.6% Upload: 0.26 KB/s Download: 0.37 KB/s -2023-06-24 21:38:01 + : CPU: 0.3% RAM: 7.6% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-24 21:39:01 + : CPU: 0.3% RAM: 7.6% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-24 21:40:01 + : CPU: 0.3% RAM: 7.6% Upload: 0.11 KB/s Download: 0.31 KB/s -2023-06-24 21:41:01 + : CPU: 0.3% RAM: 7.6% Upload: 0.18 KB/s Download: 0.42 KB/s -2023-06-24 21:42:01 + : CPU: 0.3% RAM: 7.6% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-24 21:43:01 + : CPU: 0.2% RAM: 7.6% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-24 21:47:03 + : Server started -2023-06-24 21:48:03 + : CPU: 0.5% RAM: 7.2% Upload: 0.34 KB/s Download: 1.12 KB/s -2023-06-24 21:49:03 + : CPU: 0.2% RAM: 7.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 21:50:03 + : CPU: 0.2% RAM: 7.3% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-24 21:51:03 + : CPU: 0.2% RAM: 7.3% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 21:52:03 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-24 21:53:03 + : CPU: 0.2% RAM: 7.3% Upload: 0.10 KB/s Download: 0.35 KB/s -2023-06-24 21:54:03 + : CPU: 0.2% RAM: 7.4% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-24 21:55:03 + : CPU: 0.2% RAM: 7.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 21:56:03 + : CPU: 0.3% RAM: 7.4% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-24 21:57:03 + : CPU: 0.3% RAM: 7.4% Upload: 0.14 KB/s Download: 0.47 KB/s -2023-06-24 21:58:03 + : CPU: 0.3% RAM: 7.4% Upload: 0.16 KB/s Download: 0.50 KB/s -2023-06-24 21:59:03 + : CPU: 0.2% RAM: 7.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 22:00:03 + : CPU: 0.3% RAM: 7.4% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-24 22:01:03 + : CPU: 0.2% RAM: 7.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 22:02:03 + : CPU: 0.2% RAM: 7.4% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-24 22:03:03 + : CPU: 0.3% RAM: 7.5% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-24 22:04:03 + : CPU: 0.3% RAM: 7.5% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-24 22:07:58 + : Server started -2023-06-24 22:08:58 + : CPU: 0.5% RAM: 7.2% Upload: 0.55 KB/s Download: 1.07 KB/s -2023-06-24 22:09:58 + : CPU: 0.2% RAM: 7.2% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-24 22:10:58 + : CPU: 0.2% RAM: 7.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-24 22:11:58 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-24 22:12:58 + : CPU: 0.2% RAM: 7.3% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-24 22:13:58 + : CPU: 0.2% RAM: 7.3% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-24 22:14:58 + : CPU: 0.3% RAM: 7.3% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 22:15:58 + : CPU: 0.3% RAM: 7.3% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-24 22:16:58 + : CPU: 0.3% RAM: 7.3% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 22:17:58 + : CPU: 0.3% RAM: 7.3% Upload: 0.14 KB/s Download: 0.49 KB/s -2023-06-24 22:18:58 + : CPU: 0.3% RAM: 7.3% Upload: 0.37 KB/s Download: 0.50 KB/s -2023-06-24 22:19:58 + : CPU: 0.3% RAM: 7.3% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-24 22:20:58 + : CPU: 0.3% RAM: 7.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 22:21:58 + : CPU: 0.3% RAM: 7.4% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-24 22:22:58 + : CPU: 0.2% RAM: 7.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 22:23:58 + : CPU: 0.3% RAM: 7.4% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-24 22:24:58 + : CPU: 0.2% RAM: 7.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 22:28:55 + : Server started -2023-06-24 22:29:54 + : CPU: 0.6% RAM: 7.2% Upload: 0.48 KB/s Download: 0.90 KB/s -2023-06-24 22:30:54 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-24 22:31:54 + : CPU: 0.2% RAM: 7.3% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-24 22:32:54 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-24 22:33:54 + : CPU: 0.2% RAM: 7.3% Upload: 0.11 KB/s Download: 0.38 KB/s -2023-06-24 22:34:54 + : CPU: 0.3% RAM: 7.3% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 22:35:54 + : CPU: 0.3% RAM: 7.4% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-24 22:36:54 + : CPU: 0.2% RAM: 7.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 22:37:54 + : CPU: 0.3% RAM: 7.4% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-24 22:38:54 + : CPU: 0.3% RAM: 7.4% Upload: 0.14 KB/s Download: 0.47 KB/s -2023-06-24 22:39:55 + : CPU: 0.3% RAM: 7.4% Upload: 1.84 KB/s Download: 0.63 KB/s -2023-06-24 22:40:55 + : CPU: 0.3% RAM: 7.4% Upload: 0.28 KB/s Download: 0.43 KB/s -2023-06-24 22:41:55 + : CPU: 0.3% RAM: 7.5% Upload: 0.25 KB/s Download: 0.43 KB/s -2023-06-24 22:42:55 + : CPU: 0.3% RAM: 7.5% Upload: 0.17 KB/s Download: 0.33 KB/s -2023-06-24 22:43:55 + : CPU: 0.3% RAM: 7.5% Upload: 0.22 KB/s Download: 0.39 KB/s -2023-06-24 22:44:55 + : CPU: 0.3% RAM: 7.5% Upload: 0.24 KB/s Download: 0.47 KB/s -2023-06-24 22:45:55 + : CPU: 0.3% RAM: 7.5% Upload: 0.15 KB/s Download: 0.34 KB/s -2023-06-24 22:49:53 + : Server started -2023-06-24 22:50:52 + : CPU: 0.7% RAM: 7.2% Upload: 0.52 KB/s Download: 1.00 KB/s -2023-06-24 22:51:53 + : CPU: 0.4% RAM: 7.2% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-24 22:52:53 + : CPU: 0.2% RAM: 7.3% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-24 22:53:53 + : CPU: 0.3% RAM: 7.3% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-24 22:54:53 + : CPU: 0.3% RAM: 7.3% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-24 22:55:53 + : CPU: 0.3% RAM: 7.3% Upload: 0.08 KB/s Download: 0.28 KB/s -2023-06-24 22:56:53 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-24 22:57:53 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-24 22:58:53 + : CPU: 0.5% RAM: 7.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-24 22:59:53 + : CPU: 0.4% RAM: 7.4% Upload: 0.17 KB/s Download: 0.62 KB/s -2023-06-24 23:00:53 + : CPU: 0.4% RAM: 7.4% Upload: 0.35 KB/s Download: 0.38 KB/s -2023-06-24 23:01:53 + : CPU: 0.5% RAM: 7.4% Upload: 0.09 KB/s Download: 0.31 KB/s -2023-06-24 23:02:53 + : CPU: 0.5% RAM: 7.4% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-24 23:03:53 + : CPU: 0.5% RAM: 7.4% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-24 23:04:53 + : CPU: 0.5% RAM: 7.4% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-24 23:05:53 + : CPU: 0.4% RAM: 7.4% Upload: 0.09 KB/s Download: 0.34 KB/s -2023-06-24 23:06:53 + : CPU: 0.5% RAM: 7.5% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-24 23:12:01 + : Server started -2023-06-24 23:12:58 + : CPU: 1.2% RAM: 7.3% Upload: 0.45 KB/s Download: 0.81 KB/s -2023-06-24 23:13:58 + : CPU: 0.5% RAM: 7.3% Upload: 0.10 KB/s Download: 0.28 KB/s -2023-06-24 23:14:58 + : CPU: 0.5% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 23:15:58 + : CPU: 0.5% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 23:16:58 + : CPU: 0.3% RAM: 7.3% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-24 23:17:58 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 23:18:58 + : CPU: 0.3% RAM: 7.3% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-24 23:19:58 + : CPU: 0.4% RAM: 7.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 23:20:58 + : CPU: 0.4% RAM: 7.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 23:21:59 + : CPU: 0.4% RAM: 7.4% Upload: 0.55 KB/s Download: 0.71 KB/s -2023-06-24 23:22:59 + : CPU: 0.5% RAM: 7.4% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-24 23:23:59 + : CPU: 0.5% RAM: 7.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 23:24:59 + : CPU: 0.5% RAM: 7.4% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-24 23:25:59 + : CPU: 0.4% RAM: 7.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 23:26:59 + : CPU: 0.3% RAM: 7.5% Upload: 0.12 KB/s Download: 0.42 KB/s -2023-06-24 23:27:59 + : CPU: 0.2% RAM: 7.5% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 23:28:59 + : CPU: 0.3% RAM: 7.5% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-24 23:33:18 + : Server started -2023-06-24 23:34:17 + : CPU: 0.6% RAM: 7.2% Upload: 0.31 KB/s Download: 0.97 KB/s -2023-06-24 23:35:17 + : CPU: 0.4% RAM: 7.3% Upload: 0.10 KB/s Download: 0.26 KB/s -2023-06-24 23:36:17 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-24 23:37:17 + : CPU: 0.3% RAM: 7.3% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-24 23:38:17 + : CPU: 0.4% RAM: 7.3% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-24 23:39:17 + : CPU: 0.4% RAM: 7.3% Upload: 0.10 KB/s Download: 0.30 KB/s -2023-06-24 23:40:17 + : CPU: 1.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 23:41:17 + : CPU: 0.4% RAM: 7.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-24 23:42:18 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-24 23:43:18 + : CPU: 0.4% RAM: 7.3% Upload: 0.19 KB/s Download: 0.60 KB/s -2023-06-24 23:44:18 + : CPU: 0.3% RAM: 7.3% Upload: 0.14 KB/s Download: 0.39 KB/s -2023-06-24 23:45:18 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-24 23:46:18 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 23:47:18 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-24 23:48:18 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 23:49:18 + : CPU: 0.3% RAM: 7.3% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-24 23:50:18 + : CPU: 0.2% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-24 23:54:23 + : Server started -2023-06-24 23:55:23 + : CPU: 0.6% RAM: 7.2% Upload: 0.48 KB/s Download: 0.85 KB/s -2023-06-24 23:56:23 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-24 23:57:23 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-24 23:58:23 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-24 23:59:23 + : CPU: 0.4% RAM: 7.2% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-25 00:00:23 + : CPU: 0.3% RAM: 7.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-25 00:01:23 + : CPU: 0.4% RAM: 7.3% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-25 00:02:23 + : CPU: 0.3% RAM: 7.3% Upload: 0.10 KB/s Download: 0.26 KB/s -2023-06-25 00:03:23 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 00:04:23 + : CPU: 0.3% RAM: 7.3% Upload: 0.17 KB/s Download: 0.57 KB/s -2023-06-25 00:05:23 + : CPU: 0.2% RAM: 7.3% Upload: 0.35 KB/s Download: 0.41 KB/s -2023-06-25 00:06:23 + : CPU: 0.2% RAM: 7.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-25 00:07:23 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 00:08:23 + : CPU: 0.2% RAM: 7.4% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-25 00:09:23 + : CPU: 0.5% RAM: 7.4% Upload: 0.12 KB/s Download: 0.40 KB/s -2023-06-25 00:10:23 + : CPU: 0.6% RAM: 7.4% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-25 00:11:23 + : CPU: 0.4% RAM: 7.4% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-25 00:15:32 + : Server started -2023-06-25 00:16:30 + : CPU: 0.7% RAM: 7.1% Upload: 0.52 KB/s Download: 0.71 KB/s -2023-06-25 00:17:30 + : CPU: 0.7% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 00:18:31 + : CPU: 0.5% RAM: 7.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-25 00:19:31 + : CPU: 0.4% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 00:20:31 + : CPU: 0.4% RAM: 7.2% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-25 00:21:31 + : CPU: 0.4% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 00:22:31 + : CPU: 0.4% RAM: 7.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-25 00:23:31 + : CPU: 0.6% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 00:24:31 + : CPU: 0.4% RAM: 7.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-25 00:25:31 + : CPU: 0.4% RAM: 7.2% Upload: 0.62 KB/s Download: 0.72 KB/s -2023-06-25 00:26:31 + : CPU: 0.5% RAM: 7.3% Upload: 0.10 KB/s Download: 0.31 KB/s -2023-06-25 00:27:31 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 00:28:31 + : CPU: 0.5% RAM: 7.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-25 00:29:31 + : CPU: 0.5% RAM: 7.3% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-25 00:30:31 + : CPU: 0.5% RAM: 7.3% Upload: 0.11 KB/s Download: 0.36 KB/s -2023-06-25 00:31:31 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 00:32:31 + : CPU: 0.6% RAM: 7.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-25 00:36:42 + : Server started -2023-06-25 00:37:41 + : CPU: 0.8% RAM: 7.1% Upload: 0.26 KB/s Download: 0.94 KB/s -2023-06-25 00:38:41 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-25 00:39:41 + : CPU: 0.5% RAM: 7.2% Upload: 0.08 KB/s Download: 0.27 KB/s -2023-06-25 00:40:41 + : CPU: 0.6% RAM: 7.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-25 00:41:41 + : CPU: 0.4% RAM: 7.2% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-25 00:42:41 + : CPU: 0.6% RAM: 7.2% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-25 00:43:41 + : CPU: 0.5% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 00:44:41 + : CPU: 0.5% RAM: 7.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-25 00:45:41 + : CPU: 0.5% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 00:46:41 + : CPU: 0.4% RAM: 7.3% Upload: 0.32 KB/s Download: 0.74 KB/s -2023-06-25 00:47:41 + : CPU: 0.6% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 00:48:41 + : CPU: 0.5% RAM: 7.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-25 00:49:41 + : CPU: 0.5% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 00:50:41 + : CPU: 0.5% RAM: 7.3% Upload: 0.10 KB/s Download: 0.28 KB/s -2023-06-25 00:51:41 + : CPU: 0.6% RAM: 7.3% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-25 00:52:41 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-25 00:53:41 + : CPU: 0.4% RAM: 7.4% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 00:58:18 + : Server started -2023-06-25 00:59:16 + : CPU: 1.5% RAM: 7.1% Upload: 0.28 KB/s Download: 0.95 KB/s -2023-06-25 01:00:16 + : CPU: 0.6% RAM: 7.1% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-25 01:01:16 + : CPU: 0.7% RAM: 7.1% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-25 01:02:16 + : CPU: 0.7% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 01:03:16 + : CPU: 0.5% RAM: 7.2% Upload: 0.12 KB/s Download: 0.36 KB/s -2023-06-25 01:04:16 + : CPU: 0.5% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 01:05:16 + : CPU: 0.6% RAM: 7.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-25 01:06:16 + : CPU: 0.7% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 01:07:16 + : CPU: 0.5% RAM: 7.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-25 01:08:16 + : CPU: 1.1% RAM: 7.2% Upload: 0.31 KB/s Download: 0.68 KB/s -2023-06-25 01:09:16 + : CPU: 1.0% RAM: 7.2% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-25 01:10:16 + : CPU: 0.6% RAM: 7.3% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-25 01:11:16 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.22 KB/s -2023-06-25 01:12:16 + : CPU: 1.0% RAM: 7.3% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-25 01:13:16 + : CPU: 1.0% RAM: 7.3% Upload: 0.11 KB/s Download: 0.32 KB/s -2023-06-25 01:14:16 + : CPU: 1.1% RAM: 7.3% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-25 01:15:16 + : CPU: 1.0% RAM: 7.3% Upload: 0.08 KB/s Download: 0.22 KB/s -2023-06-25 01:20:01 + : Server started -2023-06-25 01:21:00 + : CPU: 0.7% RAM: 7.1% Upload: 0.43 KB/s Download: 0.98 KB/s -2023-06-25 01:22:00 + : CPU: 0.4% RAM: 7.2% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-25 01:23:00 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 01:24:00 + : CPU: 0.4% RAM: 7.2% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-25 01:25:00 + : CPU: 0.4% RAM: 7.2% Upload: 0.13 KB/s Download: 0.36 KB/s -2023-06-25 01:26:00 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 01:27:00 + : CPU: 0.3% RAM: 7.2% Upload: 0.10 KB/s Download: 0.28 KB/s -2023-06-25 01:28:00 + : CPU: 0.3% RAM: 7.2% Upload: 0.10 KB/s Download: 0.27 KB/s -2023-06-25 01:29:00 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-25 01:30:00 + : CPU: 0.3% RAM: 7.3% Upload: 0.17 KB/s Download: 0.59 KB/s -2023-06-25 01:31:01 + : CPU: 0.3% RAM: 7.3% Upload: 0.25 KB/s Download: 0.39 KB/s -2023-06-25 01:32:01 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 01:33:01 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-25 01:34:01 + : CPU: 0.4% RAM: 7.3% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-25 01:35:01 + : CPU: 0.3% RAM: 7.3% Upload: 0.13 KB/s Download: 0.39 KB/s -2023-06-25 01:36:01 + : CPU: 0.3% RAM: 7.3% Upload: 0.10 KB/s Download: 0.28 KB/s -2023-06-25 01:37:01 + : CPU: 0.3% RAM: 7.4% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-25 01:41:09 + : Server started -2023-06-25 01:42:08 + : CPU: 0.5% RAM: 7.1% Upload: 0.32 KB/s Download: 0.63 KB/s -2023-06-25 01:43:08 + : CPU: 0.3% RAM: 7.1% Upload: 0.10 KB/s Download: 0.28 KB/s -2023-06-25 01:44:08 + : CPU: 0.2% RAM: 7.2% Upload: 0.09 KB/s Download: 0.28 KB/s -2023-06-25 01:45:08 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-25 01:46:08 + : CPU: 0.2% RAM: 7.2% Upload: 0.12 KB/s Download: 0.40 KB/s -2023-06-25 01:47:08 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-25 01:48:08 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-25 01:49:08 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-25 01:50:08 + : CPU: 0.2% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 01:51:08 + : CPU: 0.3% RAM: 7.2% Upload: 0.43 KB/s Download: 0.70 KB/s -2023-06-25 01:52:08 + : CPU: 0.2% RAM: 7.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-25 01:53:08 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.22 KB/s -2023-06-25 01:54:08 + : CPU: 0.3% RAM: 7.3% Upload: 0.10 KB/s Download: 0.24 KB/s -2023-06-25 01:55:08 + : CPU: 0.3% RAM: 7.3% Upload: 0.10 KB/s Download: 0.23 KB/s -2023-06-25 01:56:08 + : CPU: 0.2% RAM: 7.3% Upload: 0.12 KB/s Download: 0.35 KB/s -2023-06-25 01:57:08 + : CPU: 0.3% RAM: 7.3% Upload: 0.10 KB/s Download: 0.23 KB/s -2023-06-25 01:58:08 + : CPU: 0.2% RAM: 7.3% Upload: 0.09 KB/s Download: 0.24 KB/s -2023-06-25 02:02:10 + : Server started -2023-06-25 02:03:09 + : CPU: 0.5% RAM: 7.1% Upload: 0.36 KB/s Download: 0.90 KB/s -2023-06-25 02:04:09 + : CPU: 0.2% RAM: 7.2% Upload: 0.10 KB/s Download: 0.24 KB/s -2023-06-25 02:05:09 + : CPU: 0.3% RAM: 7.2% Upload: 0.10 KB/s Download: 0.30 KB/s -2023-06-25 02:06:09 + : CPU: 0.3% RAM: 7.2% Upload: 0.10 KB/s Download: 0.25 KB/s -2023-06-25 02:07:09 + : CPU: 0.3% RAM: 7.2% Upload: 0.12 KB/s Download: 0.34 KB/s -2023-06-25 02:08:09 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.24 KB/s -2023-06-25 02:09:09 + : CPU: 0.2% RAM: 7.2% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-25 02:10:09 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.29 KB/s -2023-06-25 02:11:09 + : CPU: 0.3% RAM: 7.3% Upload: 0.10 KB/s Download: 0.23 KB/s -2023-06-25 02:12:09 + : CPU: 0.3% RAM: 7.3% Upload: 0.17 KB/s Download: 0.54 KB/s -2023-06-25 02:13:09 + : CPU: 0.3% RAM: 7.3% Upload: 0.14 KB/s Download: 0.34 KB/s -2023-06-25 02:14:09 + : CPU: 0.2% RAM: 7.3% Upload: 0.10 KB/s Download: 0.25 KB/s -2023-06-25 02:15:09 + : CPU: 0.2% RAM: 7.3% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-25 02:16:09 + : CPU: 0.2% RAM: 7.3% Upload: 0.09 KB/s Download: 0.24 KB/s -2023-06-25 02:17:10 + : CPU: 0.2% RAM: 7.4% Upload: 0.10 KB/s Download: 0.24 KB/s -2023-06-25 02:18:10 + : CPU: 0.2% RAM: 7.4% Upload: 0.11 KB/s Download: 0.35 KB/s -2023-06-25 02:19:10 + : CPU: 0.2% RAM: 7.4% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-25 02:23:05 + : Server started -2023-06-25 02:24:05 + : CPU: 0.6% RAM: 7.1% Upload: 0.51 KB/s Download: 0.98 KB/s -2023-06-25 02:25:05 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-25 02:26:05 + : CPU: 0.3% RAM: 7.1% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-25 02:27:05 + : CPU: 0.3% RAM: 7.1% Upload: 0.11 KB/s Download: 0.26 KB/s -2023-06-25 02:28:05 + : CPU: 0.3% RAM: 7.2% Upload: 0.12 KB/s Download: 0.38 KB/s -2023-06-25 02:29:05 + : CPU: 0.3% RAM: 7.2% Upload: 0.10 KB/s Download: 0.26 KB/s -2023-06-25 02:30:05 + : CPU: 0.3% RAM: 7.2% Upload: 0.10 KB/s Download: 0.29 KB/s -2023-06-25 02:31:05 + : CPU: 0.4% RAM: 7.2% Upload: 0.09 KB/s Download: 0.30 KB/s -2023-06-25 02:32:05 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 02:33:05 + : CPU: 0.3% RAM: 7.2% Upload: 0.17 KB/s Download: 0.57 KB/s -2023-06-25 02:34:05 + : CPU: 0.3% RAM: 7.2% Upload: 0.36 KB/s Download: 0.40 KB/s -2023-06-25 02:35:05 + : CPU: 0.3% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 02:36:05 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-25 02:37:05 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 02:38:05 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-25 02:39:05 + : CPU: 0.3% RAM: 7.3% Upload: 0.12 KB/s Download: 0.37 KB/s -2023-06-25 02:40:05 + : CPU: 0.3% RAM: 7.3% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-25 18:28:12 + : Server started -2023-06-25 18:29:11 + : CPU: 1.4% RAM: 7.1% Upload: 0.29 KB/s Download: 1.00 KB/s -2023-06-25 18:30:11 + : CPU: 0.7% RAM: 7.1% Upload: 0.13 KB/s Download: 0.29 KB/s -2023-06-25 18:31:11 + : CPU: 0.5% RAM: 7.1% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 18:32:11 + : CPU: 0.5% RAM: 7.1% Upload: 0.10 KB/s Download: 0.32 KB/s -2023-06-25 18:33:11 + : CPU: 0.5% RAM: 7.2% Upload: 0.12 KB/s Download: 0.39 KB/s -2023-06-25 18:34:11 + : CPU: 0.5% RAM: 7.2% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-25 18:35:11 + : CPU: 0.6% RAM: 7.2% Upload: 0.08 KB/s Download: 0.26 KB/s -2023-06-25 18:36:11 + : CPU: 0.5% RAM: 7.2% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-25 18:37:11 + : CPU: 0.5% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 18:38:11 + : CPU: 0.5% RAM: 7.2% Upload: 0.34 KB/s Download: 0.70 KB/s -2023-06-25 18:39:11 + : CPU: 0.5% RAM: 7.2% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 18:40:11 + : CPU: 0.6% RAM: 7.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-25 18:41:11 + : CPU: 0.5% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 18:42:11 + : CPU: 0.5% RAM: 7.3% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-25 18:43:11 + : CPU: 0.5% RAM: 7.3% Upload: 0.11 KB/s Download: 0.37 KB/s -2023-06-25 18:44:11 + : CPU: 0.5% RAM: 7.3% Upload: 0.09 KB/s Download: 0.25 KB/s -2023-06-25 18:45:11 + : CPU: 0.5% RAM: 7.3% Upload: 0.09 KB/s Download: 0.26 KB/s -2023-06-25 18:49:33 + : Server started -2023-06-25 18:50:32 + : CPU: 0.9% RAM: 7.1% Upload: 0.30 KB/s Download: 0.62 KB/s -2023-06-25 18:51:32 + : CPU: 0.5% RAM: 7.1% Upload: 0.09 KB/s Download: 0.24 KB/s -2023-06-25 18:52:32 + : CPU: 0.5% RAM: 7.1% Upload: 0.09 KB/s Download: 0.23 KB/s -2023-06-25 18:53:32 + : CPU: 0.6% RAM: 7.1% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-25 18:54:32 + : CPU: 0.5% RAM: 7.2% Upload: 0.10 KB/s Download: 0.32 KB/s -2023-06-25 18:55:32 + : CPU: 0.6% RAM: 7.2% Upload: 0.08 KB/s Download: 0.24 KB/s -2023-06-25 18:56:32 + : CPU: 0.5% RAM: 7.2% Upload: 0.08 KB/s Download: 0.22 KB/s -2023-06-25 18:57:32 + : CPU: 0.5% RAM: 7.2% Upload: 0.08 KB/s Download: 0.23 KB/s -2023-06-25 18:58:32 + : CPU: 0.5% RAM: 7.2% Upload: 0.08 KB/s Download: 0.22 KB/s -2023-06-25 18:59:32 + : CPU: 0.5% RAM: 7.2% Upload: 0.40 KB/s Download: 0.69 KB/s -2023-06-25 19:00:32 + : CPU: 0.4% RAM: 7.2% Upload: 0.08 KB/s Download: 0.25 KB/s -2023-06-25 19:09:46 + : Server started -2023-06-25 19:10:45 + : CPU: 0.9% RAM: 7.3% Upload: 0.33 KB/s Download: 1.08 KB/s -2023-06-25 19:11:45 + : CPU: 0.6% RAM: 7.3% Upload: 0.09 KB/s Download: 0.27 KB/s -2023-06-25 19:12:03 + : pb-IF4iU0QaEw== axj~}h~{`~~ 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-25 19:12:03 + : pb-IF4iU0QaEw== ip: axj~}h~{`~~ , Device id: 794cde3b6d1a862addc825b3bd75d7dcddc379e0 -2023-06-25 19:12:45 + : CPU: 0.9% RAM: 7.4% Upload: 5.75 KB/s Download: 0.73 KB/s -2023-06-25 19:13:45 + : CPU: 0.9% RAM: 7.4% Upload: 7.56 KB/s Download: 0.77 KB/s -2023-06-25 19:14:45 + : CPU: 0.9% RAM: 7.4% Upload: 7.61 KB/s Download: 0.85 KB/s -2023-06-25 19:15:45 + : CPU: 0.8% RAM: 7.4% Upload: 7.53 KB/s Download: 0.70 KB/s -2023-06-25 19:16:45 + : CPU: 0.9% RAM: 7.4% Upload: 7.53 KB/s Download: 0.69 KB/s -2023-06-25 19:17:45 + : CPU: 0.8% RAM: 7.4% Upload: 7.52 KB/s Download: 0.71 KB/s -2023-06-25 19:18:45 + : CPU: 0.9% RAM: 7.4% Upload: 7.52 KB/s Download: 0.70 KB/s -2023-06-25 19:19:45 + : CPU: 0.9% RAM: 7.4% Upload: 7.61 KB/s Download: 1.03 KB/s -2023-06-25 19:20:46 + : CPU: 0.8% RAM: 7.5% Upload: 7.72 KB/s Download: 0.84 KB/s -2023-06-25 19:21:46 + : CPU: 0.9% RAM: 7.5% Upload: 7.50 KB/s Download: 0.70 KB/s -2023-06-25 19:22:46 + : CPU: 0.9% RAM: 7.5% Upload: 7.53 KB/s Download: 0.69 KB/s -2023-06-25 19:23:46 + : CPU: 0.8% RAM: 7.5% Upload: 7.51 KB/s Download: 0.76 KB/s -2023-06-25 19:24:46 + : CPU: 0.9% RAM: 7.6% Upload: 7.55 KB/s Download: 0.80 KB/s diff --git a/dist/ba_root/mods/setting.json b/dist/ba_root/mods/setting.json index e3a0be7..589df18 100644 --- a/dist/ba_root/mods/setting.json +++ b/dist/ba_root/mods/setting.json @@ -4,7 +4,7 @@ "BrodcastCommand": true }, "HostDeviceName": "v1.4", - "HostName": "BCS", + "HostName": "BCSv2", "KickVoteMsgType": "chat", "ScoreScreenAnnouncement": { "enable": true, @@ -36,8 +36,9 @@ }, "autoTeamBalance": true, "ballistica_web": { - "enable": false, - "server_password": "my_secerT_password_very_hard" + "enable": true, + "server_password": "my_secerT_password_very_hard", + "discord_link": "https://discord.gg/ucyaesh" }, "character_chooser": { "enable": true @@ -157,7 +158,7 @@ "sameCharacterForTeam": false, "statsResetAfterDays": 31, "textonmap": { - "bottom left watermark": "Owner : \nEditor : \nScripts : BCS1.7.13", + "bottom left watermark": "Owner : \nEditor : \nScripts : BCS1.7.41", "center highlights": { "color": [ 1, diff --git a/dist/ba_root/mods/setting.py b/dist/ba_root/mods/setting.py index 657c027..8d0c85f 100644 --- a/dist/ba_root/mods/setting.py +++ b/dist/ba_root/mods/setting.py @@ -1,6 +1,6 @@ """Module to update `setting.json`.""" -# ba_meta require api 8 +# ba_meta require api 9 # (see https://ballistica.net/wiki/meta-tag-system) from __future__ import annotations diff --git a/dist/ba_root/mods/spazmod/modifyspaz.py b/dist/ba_root/mods/spazmod/modifyspaz.py index 2190a66..2036e18 100644 --- a/dist/ba_root/mods/spazmod/modifyspaz.py +++ b/dist/ba_root/mods/spazmod/modifyspaz.py @@ -40,7 +40,7 @@ def main(spaz, node, player): spaz.equip_boxing_gloves() if _setting['playermod']['default_shield']: spaz.equip_shields() - spaz.bomb_type_default = _setting['playermod']['default_bomb'] + spaz.bomb_type = _setting['playermod']['default_bomb'] spaz.bomb_count = _setting['playermod']['default_bomb_count'] # update_name() will add threading here later . it was adding delay on game start diff --git a/dist/ba_root/mods/spazmod/spaz_effects.py b/dist/ba_root/mods/spazmod/spaz_effects.py index 7452d38..d2f80a0 100644 --- a/dist/ba_root/mods/spazmod/spaz_effects.py +++ b/dist/ba_root/mods/spazmod/spaz_effects.py @@ -128,6 +128,7 @@ class NewPlayerSpaz(PlayerSpaz): "splinter": self._add_splinter, "rainbow": self._add_rainbow, "fairydust": self._add_fairydust, + "firespark": self._add_firespark, "noeffect": lambda: None, } @@ -382,7 +383,15 @@ class NewPlayerSpaz(PlayerSpaz): spread=0.1, emit_type="fairydust", ) - + + @effect(repeat_interval=0.01) + def _add_firespark(self): + bs.emitfx( + position=self.node.position, + velocity=(0, 0, 0), + count=900, spread=0.7, + chunk_type='spark' + ) def apply() -> None: bascenev1lib.actor.playerspaz.PlayerSpaz = NewPlayerSpaz diff --git a/dist/ba_root/mods/spazmod/tag.py b/dist/ba_root/mods/spazmod/tag.py index 0761c9a..84679ce 100644 --- a/dist/ba_root/mods/spazmod/tag.py +++ b/dist/ba_root/mods/spazmod/tag.py @@ -25,7 +25,7 @@ def addtag(node, player): tag = roles[role]['tag'] col = ( 0.7, 0.7, 0.7) if 'tagcolor' not in roles[role] else \ - roles[role]['tagcolor'] + roles[role]['tagcolor'] break if tag: Tag(node, tag, col) @@ -48,8 +48,7 @@ def addhp(node, spaz): position=(0, 1.75, 0), shad=1.4) else: spaz.hptimer = None - - spaz.hptimer = bs.Timer(100, babase.Call( + spaz.hptimer = bs.Timer(2, babase.Call( showHP), repeat=True) @@ -165,5 +164,5 @@ class HitPoint(object): self._Text.delete() m.delete() - self.timer = bs.Timer(1.2, babase.Call( + self.timer = bs.Timer(2, babase.Call( a)) diff --git a/dist/ba_root/mods/stats/stats.json b/dist/ba_root/mods/stats/stats.json index a077ce4..17ac22c 100644 --- a/dist/ba_root/mods/stats/stats.json +++ b/dist/ba_root/mods/stats/stats.json @@ -1,8 +1,8 @@ { - "startDate": "06-08-2023", + "startDate": "06-04-2025", "stats": { "pb-IF4VAk4a": { - "rank": 2, + "rank": 1, "name": "pb-IF4VAk4a", "scores": 0, "total_damage": 0.0, @@ -14,18 +14,18 @@ "aid": "pb-IF4VAk4a", "last_seen": "2022-04-26 17:01:13.715014" }, - "pb-IF5RU3EcAg==": { - "rank": 1, - "name": "PC593100", - "scores": 115, + "pb-IF4CUGMfXA==": { + "rank": 2, + "name": "PC913901", + "scores": 0, "total_damage": 0.0, - "kills": 10, - "deaths": 22, - "games": 8, - "kd": 0.454, - "avg_score": 14.375, - "last_seen": "2023-08-19 01:10:49.857814", - "aid": "pb-IF5RU3EcAg==" + "kills": 0, + "deaths": 0, + "games": 1, + "kd": 0.0, + "avg_score": 0.0, + "last_seen": "2025-04-13 00:31:54.189609", + "aid": "pb-IF4CUGMfXA==" } } } \ No newline at end of file diff --git a/dist/ba_root/mods/stats/stats.json.backup b/dist/ba_root/mods/stats/stats.json.backup index a077ce4..17ac22c 100644 --- a/dist/ba_root/mods/stats/stats.json.backup +++ b/dist/ba_root/mods/stats/stats.json.backup @@ -1,8 +1,8 @@ { - "startDate": "06-08-2023", + "startDate": "06-04-2025", "stats": { "pb-IF4VAk4a": { - "rank": 2, + "rank": 1, "name": "pb-IF4VAk4a", "scores": 0, "total_damage": 0.0, @@ -14,18 +14,18 @@ "aid": "pb-IF4VAk4a", "last_seen": "2022-04-26 17:01:13.715014" }, - "pb-IF5RU3EcAg==": { - "rank": 1, - "name": "PC593100", - "scores": 115, + "pb-IF4CUGMfXA==": { + "rank": 2, + "name": "PC913901", + "scores": 0, "total_damage": 0.0, - "kills": 10, - "deaths": 22, - "games": 8, - "kd": 0.454, - "avg_score": 14.375, - "last_seen": "2023-08-19 01:10:49.857814", - "aid": "pb-IF5RU3EcAg==" + "kills": 0, + "deaths": 0, + "games": 1, + "kd": 0.0, + "avg_score": 0.0, + "last_seen": "2025-04-13 00:31:54.189609", + "aid": "pb-IF4CUGMfXA==" } } } \ No newline at end of file diff --git a/dist/ba_root/mods/tools/server_update.py b/dist/ba_root/mods/tools/server_update.py index e18ca14..0feed8a 100644 --- a/dist/ba_root/mods/tools/server_update.py +++ b/dist/ba_root/mods/tools/server_update.py @@ -10,13 +10,10 @@ import bascenev1 from efro.terminal import Clr from playersdata import pdata -VERSION = 80 +VERSION = 81 def check(): - print(babase.app.classic) - print(babase.app.classic.server) - _thread.start_new_thread(updateProfilesJson, ()) _thread.start_new_thread(checkChangelog, ()) diff --git a/dist/ba_root/mods/tools/servercheck.py b/dist/ba_root/mods/tools/servercheck.py index 2796f34..e7812e7 100644 --- a/dist/ba_root/mods/tools/servercheck.py +++ b/dist/ba_root/mods/tools/servercheck.py @@ -48,7 +48,7 @@ class checkserver(object): else: deviceClientMap[device_id].append(ros["client_id"]) if len(deviceClientMap[device_id]) >= settings[ - 'maxAccountPerIP']: + 'maxAccountPerIP']: bs.chatmessage( f"Only {settings['maxAccountPerIP']} player per IP allowed, disconnecting this device.", clients=[ @@ -74,7 +74,7 @@ class checkserver(object): continue newPlayers.append(ros['account_id']) if ros['account_id'] not in self.players and ros[ - 'client_id'] != -1: + 'client_id'] != -1: # new player joined lobby d_str = ros['display_string'] @@ -103,8 +103,8 @@ class checkserver(object): if settings["whitelist"] and ros["account_id"] is not None: if ros["account_id"] not in pdata.CacheData.whitelist: bs.broadcastmessage("Not in whitelist,contact admin", - color=(1, 0, 0), transient=True, - clients=[ros['client_id']]) + color=(1, 0, 0), transient=True, + clients=[ros['client_id']]) logger.log( f'{d_str} || {ros["account_id"]} | kicked > not in whitelist') bs.disconnect_client(ros['client_id']) @@ -141,9 +141,9 @@ def on_player_join_server(pbid, player_data, ip, device_id): joincount += 1 if joincount > 2: bs.broadcastmessage("Joining too fast , slow down dude", - # its not possible now tho, network layer will catch it before reaching here - color=(1, 0, 1), transient=True, - clients=[clid]) + # its not possible now tho, network layer will catch it before reaching here + color=(1, 0, 1), transient=True, + clients=[clid]) logger.log(f'{pbid} || kicked for joining too fast') bs.disconnect_client(clid) _thread.start_new_thread(reportSpam, (pbid,)) @@ -160,7 +160,7 @@ def on_player_join_server(pbid, player_data, ip, device_id): if player_data is not None: # player data is in serevrdata or in local.json cache serverdata.recents.append( - {"client_id": clid, "deviceId": device_string, "pbid": pbid}) + {"client_id": clid, "deviceId": device_string, "pbid": pbid, "ip": ip, "device_uuid": device_id}) serverdata.recents = serverdata.recents[-20:] if check_ban(ip, device_id, pbid): _babase.chatmessage( @@ -169,7 +169,7 @@ def on_player_join_server(pbid, player_data, ip, device_id): bs.disconnect_client(clid) return if get_account_age(player_data["accountAge"]) < \ - settings["minAgeToJoinInHours"]: + settings["minAgeToJoinInHours"]: for ros in bs.get_game_roster(): if ros['account_id'] == pbid: bs.broadcastmessage( @@ -191,9 +191,9 @@ def on_player_join_server(pbid, player_data, ip, device_id): serverdata.clients[pbid]["rejoincount"] = 1 serverdata.clients[pbid]["lastJoin"] = time.time() if pbid in blacklist[ - "kick-vote-disabled"] and current_time < datetime.strptime( - blacklist["kick-vote-disabled"][pbid]["till"], - "%Y-%m-%d %H:%M:%S"): + "kick-vote-disabled"] and current_time < datetime.strptime( + blacklist["kick-vote-disabled"][pbid]["till"], + "%Y-%m-%d %H:%M:%S"): _babase.disable_kickvote(pbid) serverdata.clients[pbid]["lastIP"] = ip @@ -235,15 +235,15 @@ def check_ban(ip, device_id, pbid, log=True): current_time = datetime.now() if ip in blacklist["ban"]['ips'] and current_time < datetime.strptime( - blacklist["ban"]["ips"][ip]["till"], "%Y-%m-%d %H:%M:%S"): + blacklist["ban"]["ips"][ip]["till"], "%Y-%m-%d %H:%M:%S"): msg = f' reason: matched IP | {blacklist["ban"]["ips"][ip]["reason"]} , Till : {blacklist["ban"]["ips"][ip]["till"]}' if log: logger.log(f'{pbid} | kicked > {msg}') return True return msg elif device_id in blacklist["ban"][ - "deviceids"] and current_time < datetime.strptime( - blacklist["ban"]["deviceids"][device_id]["till"], "%Y-%m-%d %H:%M:%S"): + "deviceids"] and current_time < datetime.strptime( + blacklist["ban"]["deviceids"][device_id]["till"], "%Y-%m-%d %H:%M:%S"): msg = f'reason: matched deviceId | {blacklist["ban"]["deviceids"][device_id]["reason"]}, Till : {blacklist["ban"]["deviceids"][device_id]["till"]}' if log: logger.log( @@ -251,7 +251,7 @@ def check_ban(ip, device_id, pbid, log=True): return True return msg elif pbid in blacklist["ban"]["ids"] and current_time < datetime.strptime( - blacklist["ban"]["ids"][pbid]["till"], "%Y-%m-%d %H:%M:%S"): + blacklist["ban"]["ids"][pbid]["till"], "%Y-%m-%d %H:%M:%S"): msg = f'reason: matched ID | {blacklist["ban"]["ids"][pbid]["reason"]} , Till : {blacklist["ban"]["ids"][pbid]["till"]}' if log: logger.log( @@ -401,7 +401,7 @@ def kick_by_pb_id(pb_id, msg): for ros in bs.get_game_roster(): if ros['account_id'] == pb_id: bs.broadcastmessage(msg, transient=True, - clients=[ros['client_id']]) + clients=[ros['client_id']]) bs.disconnect_client(ros['client_id']) diff --git a/dist/ba_root/mods/tools/servercontroller.py b/dist/ba_root/mods/tools/servercontroller.py index 2e9619c..f85b217 100644 --- a/dist/ba_root/mods/tools/servercontroller.py +++ b/dist/ba_root/mods/tools/servercontroller.py @@ -20,6 +20,9 @@ def _access_check_response(self, data) -> None: poststr = '' _babase.our_ip = addr _babase.our_port = port + print( + f'{Clr.BGRN}{Clr.WHT} Server started {addr}:{port} {Clr.RST}', + flush=True) if data['accessible']: # _fetch_public_servers() _babase.queue_chcker_timer = bs.AppTimer(8, babase.Call( @@ -45,7 +48,8 @@ def _access_check_response(self, data) -> None: f'{Clr.SRED}Master server access check of{addrstr}' f' udp port {port} failed.\n' f'Your server does not appear to be' - f' joinable from the internet. Please check your firewall or instance security group.{poststr}{Clr.RST}' + f' joinable from the internet. Please check your firewall or instance security group.{ + poststr}{Clr.RST}' ) @@ -106,7 +110,7 @@ def on_update_response(response): bs.set_public_party_queue_enabled(True) return if not allowed_to_join and len( - players_in_queue) > 1 and current_players < max_allowed_in_server: + players_in_queue) > 1 and current_players < max_allowed_in_server: # something is wrong , lets disable queue for some time bs.set_public_party_queue_enabled(False) diff --git a/dist/bombsquad_headless b/dist/bombsquad_headless index 282d177..1a9a317 100644 Binary files a/dist/bombsquad_headless and b/dist/bombsquad_headless differ diff --git a/dist/bombsquad_headless_aarch64 b/dist/bombsquad_headless_aarch64 index 339926e..0831dd9 100644 Binary files a/dist/bombsquad_headless_aarch64 and b/dist/bombsquad_headless_aarch64 differ diff --git a/dist/dummymodules/_babase.py b/dist/dummymodules/_babase.py index 02b15bc..27db5d2 100644 --- a/dist/dummymodules/_babase.py +++ b/dist/dummymodules/_babase.py @@ -27,19 +27,20 @@ NOTE: This file was autogenerated by batools.dummymodule; do not edit by hand. # pylint: disable=redefined-outer-name # pylint: disable=invalid-name # pylint: disable=no-value-for-parameter +# pylint: disable=unused-import +# pylint: disable=too-many-positional-arguments from __future__ import annotations -from typing import TYPE_CHECKING, overload, override, Sequence, TypeVar +from typing import TYPE_CHECKING, overload, override, Sequence if TYPE_CHECKING: from typing import Any, Callable + import bacommon.app from babase import App import babase -_T = TypeVar('_T') - app: App @@ -52,41 +53,42 @@ def _uninferrable() -> Any: class AppTimer: """Timers are used to run code at later points in time. - Category: **General Utility Classes** - This class encapsulates a timer based on app-time. The underlying timer will be destroyed when this object is no longer referenced. If you do not want to worry about keeping a reference to - your timer around, use the babase.apptimer() function instead to get a - one-off timer. + your timer around, use the :meth:`~babase.apptimer()` function instead + to get a one-off timer. - ##### Arguments - ###### time - > Length of time in seconds that the timer will wait before firing. + Args: - ###### call - > A callable Python object. Remember that the timer will retain a - strong reference to the callable for as long as it exists, so you - may want to look into concepts such as babase.WeakCall if that is not - desired. + time: + Length of time in seconds that the timer will wait before firing. - ###### repeat - > If True, the timer will fire repeatedly, with each successive - firing having the same delay as the first. + call: + A callable Python object. Remember that the timer will retain a + strong reference to the callable for as long as it exists, so you + may want to look into concepts such as :class:`~babase.WeakCall` + if that is not desired. - ##### Example + repeat: + If True, the timer will fire repeatedly, with each successive + firing having the same delay as the first. - Use a Timer object to print repeatedly for a few seconds: - ... def say_it(): - ... babase.screenmessage('BADGER!') - ... def stop_saying_it(): - ... global g_timer - ... g_timer = None - ... babase.screenmessage('MUSHROOM MUSHROOM!') - ... # Create our timer; it will run as long as we have the self.t ref. - ... g_timer = babase.AppTimer(0.3, say_it, repeat=True) - ... # Now fire off a one-shot timer to kill it. - ... babase.apptimer(3.89, stop_saying_it) + Example: Use a timer object to print repeatedly for a few seconds:: + + def say_it(): + babase.screenmessage('BADGER!') + + def stop_saying_it(): + global g_timer + g_timer = None + babase.screenmessage('MUSHROOM MUSHROOM!') + + # Create our timer; it will run as long as we keep its ref alive. + g_timer = babase.AppTimer(0.3, say_it, repeat=True) + + # Now fire off a one-shot timer to kill the ref. + babase.apptimer(3.89, stop_saying_it) """ def __init__( @@ -98,42 +100,41 @@ class AppTimer: class ContextCall: """A context-preserving callable. - Category: **General Utility Classes** - - A ContextCall wraps a callable object along with a reference - to the current context (see babase.ContextRef); it handles restoring - the context when run and automatically clears itself if the context - it belongs to dies. + This wraps a callable object along with a reference to the current + context (see :class:`~babase.ContextRef`); it handles restoring the + context when run and automatically clears itself if the context it + belongs to dies. Generally you should not need to use this directly; all standard Ballistica callbacks involved with timers, materials, UI functions, etc. handle this under-the-hood so you don't have to worry about it. The only time it may be necessary is if you are implementing your own callbacks, such as a worker thread that does some action and then - runs some game code when done. By wrapping said callback in one of + runs some engine code when done. By wrapping said callback in one of these, you can ensure that you will not inadvertently be keeping the current activity alive or running code in a torn-down (expired) - context_ref. + :class:`~babase.ContextRef`. - You can also use babase.WeakCall for similar functionality, but - ContextCall has the added bonus that it will not run during context_ref - shutdown, whereas babase.WeakCall simply looks at whether the target - object instance still exists. + You can also use :class:`~babase.WeakCall` for similar functionality, + but ContextCall has the added bonus that it will not run during + :class:`~babase.ContextRef` shutdown, whereas + :class:`~babase.WeakCall` simply looks at whether the target object + instance still exists. - ##### Examples - **Example A:** code like this can inadvertently prevent our activity + **Example A:** Code like this can inadvertently prevent our activity (self) from ending until the operation completes, since the bound method we're passing (self.dosomething) contains a strong-reference - to self). - >>> start_some_long_action(callback_when_done=self.dosomething) + to self):: - **Example B:** in this case our activity (self) can still die + start_some_long_action(callback_when_done=self.dosomething) + + **Example B:** In this case our activity (self) can still die properly; the callback will clear itself when the activity starts shutting down, becoming a harmless no-op and releasing the reference - to our activity. + to our activity:: - >>> start_long_action( - ... callback_when_done=babase.ContextCall(self.mycallback)) + start_long_action( + callback_when_done=babase.ContextCall(self.mycallback)) """ def __init__(self, call: Callable) -> None: @@ -145,17 +146,16 @@ class ContextCall: class ContextRef: - """Store or use a ballistica context. + """Store or use a Ballistica context. - Category: **General Utility Classes** - - Many operations such as bascenev1.newnode() or bascenev1.gettexture() - operate implicitly on a current 'context'. A context is some sort of - state that functionality can implicitly use. Context determines, for - example, which scene nodes or textures get added to without having to - specify it explicitly in the newnode()/gettexture() call. Contexts can - also affect object lifecycles; for example a babase.ContextCall will - become a no-op when the context it was created in is destroyed. + Many operations such as :meth:`bascenev1.newnode()` or + :meth:`bascenev1.gettexture()` operate implicitly on a current + 'context'. A context is some sort of state that functionality can + implicitly use. Context determines, for example, which scene new nodes + or textures get added to without having to specify that explicitly in + the newnode()/gettexture() call. Contexts can also affect object + lifecycles; for example a :class:`~babase.ContextCall` will instantly + become a no-op and release any references it is holding when the context it belongs to is destroyed. In general, if you are a modder, you should not need to worry about contexts; mod code should mostly be getting run in the correct @@ -164,23 +164,34 @@ class ContextRef: however, where you need to deal directly with contexts, and that is where this class comes in. - Creating a babase.ContextRef() will capture a reference to the current + Creating a context-ref will capture a reference to the current context. Other modules may provide ways to access their contexts; for - example a bascenev1.Activity instance has a 'context' attribute. You - can also use babase.ContextRef.empty() to create a reference to *no* - context. Some code such as UI calls may expect this and may complain - if you try to use them within a context. + example a :class:`bascenev1.Activity` instance has a + :attr:`~bascenev1.Activity.context` attribute. You can also use + the :meth:`~babase.ContextRef.empty()` classmethod to create a + reference to *no* context. Some code such as UI calls may expect + to be run with no context set and may complain if you try to use + them within a context. - ##### Usage - ContextRefs are generally used with the Python 'with' statement, which + Usage + ===== + + Context-refs are generally used with the Python ``with`` statement, which sets the context they point to as current on entry and resets it to the previous value on exit. - ##### Example - Explicitly create a few UI bits with no context set. - (UI stuff may complain if called within a context): - >>> with bui.ContextRef.empty(): - ... my_container = bui.containerwidget() + Example: Explicitly clear context while working with UI code from + gameplay (UI stuff may complain if called within a context):: + + import bauiv1 as bui + + def _callback_called_from_gameplay(): + + # We are probably called with a game context as current, but + # this makes UI stuff unhappy. So we clear the context while + # doing our thing. + with bui.ContextRef.empty(): + my_container = bui.containerwidget() """ def __init__( @@ -198,67 +209,74 @@ class ContextRef: @classmethod def empty(cls) -> ContextRef: - """Return a ContextRef pointing to no context. + """Return a context-ref pointing to no context. This is useful when code should be run free of a context. For example, UI code generally insists on being run this way. Otherwise, callbacks set on the UI could inadvertently stop working due to a game activity ending, which would be unintuitive behavior. """ + # This is a dummy stub; the actual implementation is native code. return ContextRef() def is_empty(self) -> bool: """Whether the context was created as empty.""" + # This is a dummy stub; the actual implementation is native code. return bool() def is_expired(self) -> bool: - """Whether the context has expired.""" + """Whether the context has expired. + + Returns False for refs created as empty. + """ + # This is a dummy stub; the actual implementation is native code. return bool() class DisplayTimer: """Timers are used to run code at later points in time. - Category: **General Utility Classes** - This class encapsulates a timer based on display-time. The underlying timer will be destroyed when this object is no longer referenced. If you do not want to worry about keeping a reference to - your timer around, use the babase.displaytimer() function instead to get a - one-off timer. + your timer around, use the :meth:`~babase.displaytimer()` function + instead to get a one-off timer. Display-time is a time value intended to be used for animation and other visual purposes. It will generally increment by a consistent amount each frame. It will pass at an overall similar rate to AppTime, but trades accuracy for smoothness. - ##### Arguments - ###### time - > Length of time in seconds that the timer will wait before firing. + Args: - ###### call - > A callable Python object. Remember that the timer will retain a - strong reference to the callable for as long as it exists, so you - may want to look into concepts such as babase.WeakCall if that is not - desired. + time: + Length of time in seconds that the timer will wait before firing. - ###### repeat - > If True, the timer will fire repeatedly, with each successive - firing having the same delay as the first. + call: + A callable Python object. Remember that the timer will retain a + strong reference to the callable for as long as it exists, so you + may want to look into concepts such as :class:`~babase.WeakCall` + if that is not desired. - ##### Example + repeat: + If True, the timer will fire repeatedly, with each successive + firing having the same delay as the first. - Use a Timer object to print repeatedly for a few seconds: - ... def say_it(): - ... babase.screenmessage('BADGER!') - ... def stop_saying_it(): - ... global g_timer - ... g_timer = None - ... babase.screenmessage('MUSHROOM MUSHROOM!') - ... # Create our timer; it will run as long as we have the self.t ref. - ... g_timer = babase.DisplayTimer(0.3, say_it, repeat=True) - ... # Now fire off a one-shot timer to kill it. - ... babase.displaytimer(3.89, stop_saying_it) + Example: Use a Timer object to print repeatedly for a few seconds:: + + def say_it(): + babase.screenmessage('BADGER!') + + def stop_saying_it(): + global g_timer + g_timer = None + babase.screenmessage('MUSHROOM MUSHROOM!') + + # Create our timer; it will run as long as we keep its ref alive. + g_timer = babase.DisplayTimer(0.3, say_it, repeat=True) + + # Now fire off a one-shot timer to kill the ref. + babase.displaytimer(3.89, stop_saying_it) """ def __init__( @@ -269,107 +287,126 @@ class DisplayTimer: class Env: """Unchanging values for the current running app instance. - Access the single shared instance of this class at `babase.app.env`. + Access the single shared instance of this class through the + :attr:`~babase.App.env` attr on the :class:`~babase.App` class. """ + #: Is this build targeting an Android based OS? android: bool - """Is this build targeting an Android based OS?""" + #: The app's api version. + #: + #: Only Python modules and packages associated with the current API + #: version number will be detected by the game (see the + #: :class:`babase.MetadataSubsystem`). This value will change whenever + #: substantial backward-incompatible changes are introduced to + #: Ballistica APIs. When that happens, modules/packages should be updated + #: accordingly and set to target the newer API version number. api_version: int - """The app's api version. - - Only Python modules and packages associated with the current API - version number will be detected by the game (see the ba_meta tag). - This value will change whenever substantial backward-incompatible - changes are introduced to Ballistica APIs. When that happens, - modules/packages should be updated accordingly and set to target - the newer API version number.""" + #: Whether the app is targeting an arcade-centric experience. arcade: bool - """Whether the app is targeting an arcade-centric experience.""" + #: Architecture we are running on. + arch: bacommon.app.AppArchitecture + + #: Where the app's config file is stored on disk. config_file_path: str - """Where the app's config file is stored on disk.""" + #: Where bundled static app data lives. data_directory: str - """Where bundled static app data lives.""" + #: Whether the app is running in debug mode. + #: + #: Debug builds generally run substantially slower than non-debug + #: builds due to compiler optimizations being disabled and extra + #: checks being run. debug: bool - """Whether the app is running in debug mode. - - Debug builds generally run substantially slower than non-debug - builds due to compiler optimizations being disabled and extra - checks being run.""" + #: Whether the app is targeting a demo experience. demo: bool - """Whether the app is targeting a demo experience.""" + #: Human readable name of the device running this app. device_name: str - """Human readable name of the device running this app.""" + #: Integer build number for the engine. + #: + #: This value increases by at least 1 with each release of the engine. + #: It is independent of the human readable `version` string. engine_build_number: int - """Integer build number for the engine. - - This value increases by at least 1 with each release of the engine. - It is independent of the human readable `version` string.""" + #: Human-readable version string for the engine; something like '1.3.24'. + #: + #: This should not be interpreted as a number; it may contain + #: string elements such as 'alpha', 'beta', 'test', etc. + #: If a numeric version is needed, use `build_number`. engine_version: str - """Human-readable version string for the engine; something like '1.3.24'. - - This should not be interpreted as a number; it may contain - string elements such as 'alpha', 'beta', 'test', etc. - If a numeric version is needed, use `build_number`.""" + #: Whether the app is running with a gui. + #: + #: This is the opposite of `headless`. gui: bool - """Whether the app is running with a gui. - - This is the opposite of `headless`.""" + #: Whether the app is running headlessly (without a gui). + #: + #: This is the opposite of `gui`. headless: bool - """Whether the app is running headlessly (without a gui). - This is the opposite of `gui`.""" + #: Locale tag for the current environment in BCP 47 or POSIX localization + #: string form; will be something like ``en-US`` or ``en_US.UTF-8``. + locale_tag: str + #: Platform-specific os version string provided by the native layer. + #: + #: Note that more detailed OS information may be available through + #: the Python :mod:`platform` module. + os_version: str + + #: Platform we are running on. + platform: bacommon.app.AppPlatform + + #: Path where the app expects its own bundled modules to live. + #: + #: Be aware that this value may be ``None`` if Ballistica is running in + #: a non-standard environment, and that python-path modifications may + #: cause modules to be loaded from other locations. python_directory_app: str | None - """Path where the app expects its bundled modules to live. - - Be aware that this value may be None if Ballistica is running in - a non-standard environment, and that python-path modifications may - cause modules to be loaded from other locations.""" + #: Path where the app expects its bundled third party modules to live. + #: + #: Be aware that this value may be ``None`` if Ballistica is running in + #: a non-standard environment, and that python-path modifications may + #: cause modules to be loaded from other locations. python_directory_app_site: str | None - """Path where the app expects its bundled pip modules to live. - - Be aware that this value may be None if Ballistica is running in - a non-standard environment, and that python-path modifications may - cause modules to be loaded from other locations.""" + #: Path where the app expects its user scripts (mods) to live. + #: + #: Be aware that this value may be ``None`` if Ballistica is running in + #: a non-standard environment, and that python-path modifications may + #: cause modules to be loaded from other locations. python_directory_user: str | None - """Path where the app expects its user scripts (mods) to live. - - Be aware that this value may be None if Ballistica is running in - a non-standard environment, and that python-path modifications may - cause modules to be loaded from other locations.""" + #: Whether the running app supports 'soft' quit options. + #: + #: This generally applies to mobile derived OSs, where an act of + #: 'quitting' may leave the app running in the background waiting + #: in case it is used again. supports_soft_quit: bool - """Whether the running app supports 'soft' quit options. - - This generally applies to mobile derived OSs, where an act of - 'quitting' may leave the app running in the background waiting - in case it is used again.""" + #: Whether the app is running in test mode. + #: + #: Test mode enables extra checks and features that are useful for + #: release testing but which do not slow the game down significantly. test: bool - """Whether the app is running in test mode. - - Test mode enables extra checks and features that are useful for - release testing but which do not slow the game down significantly.""" + #: Whether the app is targeting a TV-centric experience. tv: bool - """Whether the app is targeting a TV-centric experience.""" + #: App variant we are running. + variant: bacommon.app.AppVariant + + #: Whether the app is currently running in VR. vr: bool - """Whether the app is currently running in VR.""" - pass @@ -383,33 +420,34 @@ class SimpleSound: """A simple sound wrapper for internal use. Do not use for gameplay code as it will only play locally. + + :meta private: """ def play(self) -> None: """Play the sound locally.""" + # This is a dummy stub; the actual implementation is native code. return None class Vec3(Sequence[float]): """A vector of 3 floats. - Category: **General Utility Classes** - These can be created the following ways (checked in this order): - - with no args, all values are set to 0 - - with a single numeric arg, all values are set to that value - - with a single three-member sequence arg, sequence values are copied - - otherwise assumes individual x/y/z args (positional or keywords) + - With no args, all values are set to 0. + - With a single numeric arg, all values are set to that value. + - With a three-member sequence arg, sequence values are copied. + - Otherwise assumes individual x/y/z args (positional or keywords). """ + #: The vector's X component. x: float - """The vector's X component.""" + #: The vector's Y component. y: float - """The vector's Y component.""" + #: The vector's Z component. z: float - """The vector's Z component.""" # pylint: disable=function-redefined @@ -485,69 +523,79 @@ class Vec3(Sequence[float]): def cross(self, other: Vec3) -> Vec3: """Returns the cross product of this vector and another.""" + # This is a dummy stub; the actual implementation is native code. return Vec3() def dot(self, other: Vec3) -> float: """Returns the dot product of this vector and another.""" + # This is a dummy stub; the actual implementation is native code. return float() def length(self) -> float: """Returns the length of the vector.""" + # This is a dummy stub; the actual implementation is native code. return float() def normalized(self) -> Vec3: """Returns a normalized version of the vector.""" + # This is a dummy stub; the actual implementation is native code. return Vec3() def add_clean_frame_callback(call: Callable) -> None: - """(internal) + """Run code once the next non-progress-bar frame draws. - Provide an object to be called once the next non-progress-bar-frame has - been rendered. Useful for queueing things to load in the background - without elongating any current progress-bar-load. + Useful for queueing things to load in the background without elongating + any current progress-bar-load. + + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return None -def android_get_external_files_dir() -> str: - """(internal) +def allows_ticket_sales() -> bool: + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. + return bool() - Returns the android external storage path, or None if there is none on - this device + +def android_get_external_files_dir() -> str: + """Return the android external storage path, or None if there is none. + + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return str() def app_instance_uuid() -> str: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return str() def app_is_active() -> bool: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return bool() def appname() -> str: - """(internal)""" + """Return current app name (all lowercase).""" + # This is a dummy stub; the actual implementation is native code. return str() def appnameupper() -> str: - """(internal) - - Return whether this build of the game can display full unicode such as - Emoji, Asian languages, etc. - """ + """Return current app name with capitalized characters.""" + # This is a dummy stub; the actual implementation is native code. return str() def apptime() -> babase.AppTime: """Return the current app-time in seconds. - Category: **General Utility Functions** - App-time is a monotonic time value; it starts at 0.0 when the app launches and will never jump by large amounts or go backwards, even if the system time changes. Its progression will pause when the app is in @@ -557,6 +605,7 @@ def apptime() -> babase.AppTime: unique type in the type-checker's eyes to help prevent it from being accidentally used with time functionality expecting other time types. """ + # This is a dummy stub; the actual implementation is native code. import babase # pylint: disable=cyclic-import return babase.AppTime(0.0) @@ -565,131 +614,137 @@ def apptime() -> babase.AppTime: def apptimer(time: float, call: Callable[[], Any]) -> None: """Schedule a callable object to run based on app-time. - Category: **General Utility Functions** - This function creates a one-off timer which cannot be canceled or modified once created. If you require the ability to do so, or need a repeating timer, use the babase.AppTimer class instead. - ##### Arguments - ###### time (float) - > Length of time in seconds that the timer will wait before firing. + Args: + time: Length of time in seconds that the timer will wait before + firing. - ###### call (Callable[[], Any]) - > A callable Python object. Note that the timer will retain a - strong reference to the callable for as long as the timer exists, so you - may want to look into concepts such as babase.WeakCall if that is not - desired. + call: A callable Python object. Note that the timer will retain a + strong reference to the callable for as long as the timer + exists, so you may want to look into concepts such as + :class:`~babase.WeakCall` if that is not desired. - ##### Examples - Print some stuff through time: - >>> babase.screenmessage('hello from now!') - >>> babase.apptimer(1.0, babase.Call(babase.screenmessage, - 'hello from the future!')) - >>> babase.apptimer(2.0, babase.Call(babase.screenmessage, - ... 'hello from the future 2!')) + Example: Print some stuff through time:: + + import babase + + babase.screenmessage('hello from now!') + babase.apptimer(1.0, babase.Call(babase.screenmessage, + 'hello from the future!')) + babase.apptimer(2.0, babase.Call(babase.screenmessage, + 'hello from the future 2!')) """ + # This is a dummy stub; the actual implementation is native code. return None def asset_loads_allowed() -> bool: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return bool() def audio_shutdown_begin() -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def audio_shutdown_is_complete() -> bool: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return bool() -def can_display_full_unicode() -> bool: - """(internal)""" +def can_display_chars(text: str) -> bool: + """Is this build able to display all chars in the provided string? + + See also: :meth:`~babase.supports_unicode_display()`. + """ + # This is a dummy stub; the actual implementation is native code. return bool() def charstr(char_id: babase.SpecialChar) -> str: - """Get a unicode string representing a special character. - - Category: **General Utility Functions** + """Return a unicode string representing a special character. Note that these utilize the private-use block of unicode characters (U+E000-U+F8FF) and are specific to the game; exporting or rendering them elsewhere will be meaningless. - See babase.SpecialChar for the list of available characters. + See :class:`~babase.SpecialChar` for the list of available characters. """ + # This is a dummy stub; the actual implementation is native code. return str() def clipboard_get_text() -> str: """Return text currently on the system clipboard. - Category: **General Utility Functions** - - Ensure that babase.clipboard_has_text() returns True before calling - this function. + Ensure that :meth:`~babase.clipboard_has_text()` returns True before + calling this function. """ + # This is a dummy stub; the actual implementation is native code. return str() def clipboard_has_text() -> bool: """Return whether there is currently text on the clipboard. - Category: **General Utility Functions** - This will return False if no system clipboard is available; no need - to call babase.clipboard_is_supported() separately. + to call :meth:`~babase.clipboard_is_supported()` separately. """ + # This is a dummy stub; the actual implementation is native code. return bool() def clipboard_is_supported() -> bool: """Return whether this platform supports clipboard operations at all. - Category: **General Utility Functions** - If this returns False, UIs should not show 'copy to clipboard' buttons, etc. """ + # This is a dummy stub; the actual implementation is native code. return bool() def clipboard_set_text(value: str) -> None: """Copy a string to the system clipboard. - Category: **General Utility Functions** - - Ensure that babase.clipboard_is_supported() returns True before adding - buttons/etc. that make use of this functionality. + Ensure that :meth:`~babase.clipboard_is_supported()` returns True before + adding buttons/etc. that make use of this functionality. """ + # This is a dummy stub; the actual implementation is native code. return None def commit_config(config: str) -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def complete_shutdown() -> None: """Complete the shutdown process, triggering the app to exit.""" + # This is a dummy stub; the actual implementation is native code. return None def contains_python_dist() -> bool: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return bool() def debug_print_py_err() -> None: - """(internal) + """Debugging func for tracking leaked Python errors in the C++ layer. - Debugging func for tracking leaked Python errors in the C++ layer. + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return None @@ -704,13 +759,16 @@ def dev_console_add_button( label_scale: float, corner_radius: float, style: str, + disabled: bool, ) -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def dev_console_add_python_terminal() -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None @@ -723,57 +781,54 @@ def dev_console_add_text( v_align: str, scale: float, ) -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def dev_console_base_scale() -> float: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return float() def dev_console_input_adapter_finish() -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def dev_console_request_refresh() -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def dev_console_tab_height() -> float: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return float() def dev_console_tab_width() -> float: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return float() -def disable_custom_tint() -> None: - """(internal) - - Disable custom tint overrride. - """ - return None - - def displaytime() -> babase.DisplayTime: """Return the current display-time in seconds. - Category: **General Utility Functions** - Display-time is a time value intended to be used for animation and other visual purposes. It will generally increment by a consistent amount each - frame. It will pass at an overall similar rate to AppTime, but trades + frame. It will pass at an overall similar rate to app-time, but trades accuracy for smoothness. Note that the value returned here is simply a float; it just has a unique type in the type-checker's eyes to help prevent it from being accidentally used with time functionality expecting other time types. """ + # This is a dummy stub; the actual implementation is native code. import babase # pylint: disable=cyclic-import return babase.DisplayTime(0.0) @@ -782,118 +837,140 @@ def displaytime() -> babase.DisplayTime: def displaytimer(time: float, call: Callable[[], Any]) -> None: """Schedule a callable object to run based on display-time. - Category: **General Utility Functions** - This function creates a one-off timer which cannot be canceled or modified once created. If you require the ability to do so, or need - a repeating timer, use the babase.DisplayTimer class instead. + a repeating timer, use the :class:`~babase.DisplayTimer` class instead. Display-time is a time value intended to be used for animation and other visual purposes. It will generally increment by a consistent amount each - frame. It will pass at an overall similar rate to AppTime, but trades + frame. It will pass at an overall similar rate to app-time, but trades accuracy for smoothness. - ##### Arguments - ###### time (float) - > Length of time in seconds that the timer will wait before firing. + Args: - ###### call (Callable[[], Any]) - > A callable Python object. Note that the timer will retain a - strong reference to the callable for as long as the timer exists, so you - may want to look into concepts such as babase.WeakCall if that is not - desired. + time: + Length of time in seconds that the timer will wait before firing. - ##### Examples - Print some stuff through time: - >>> babase.screenmessage('hello from now!') - >>> babase.displaytimer(1.0, babase.Call(babase.screenmessage, - ... 'hello from the future!')) - >>> babase.displaytimer(2.0, babase.Call(babase.screenmessage, - ... 'hello from the future 2!')) + call: + A callable Python object. Note that the timer will retain a + strong reference to the callable for as long as the timer exists, so + you may want to look into concepts such as :class:`~babase.WeakCall` + if that is not desired. + + Example: Print some stuff through time:: + + babase.screenmessage('hello from now!') + babase.displaytimer(1.0, babase.Call(babase.screenmessage, + 'hello from the future!')) + babase.displaytimer(2.0, babase.Call(babase.screenmessage, + 'hello from the future 2!')) """ + # This is a dummy stub; the actual implementation is native code. return None def do_apply_app_config() -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def do_once() -> bool: """Return whether this is the first time running a line of code. - Category: **General Utility Functions** - - This is used by 'print_once()' type calls to keep from overflowing + This is used by ``print_once()`` type calls to keep from overflowing logs. The call functions by registering the filename and line where The call is made from. Returns True if this location has not been registered already, and False if it has. - ##### Example - This print will only fire for the first loop iteration: - >>> for i in range(10): - ... if babase.do_once(): - ... print('HelloWorld once from loop!') + Example: This print will only fire for the first loop iteration:: + + for i in range(10): + if babase.do_once(): + print('HelloWorld once from loop!') """ + # This is a dummy stub; the actual implementation is native code. return bool() def ehv() -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None -def emit_log(name: str, level: str, message: str) -> None: - """(internal) +def emit_log(name: str, level: str, timestamp: float, message: str) -> None: + """Sends a log message to the in-app console/etc. - Sends a log message to the in-app console and any per-platform - log destinations (Android log, etc.). This generally is not called - directly and should instead be fed Python logging output. + This also includes any per-platform log destinations (Android log, + etc.). This generally is not called directly and should instead be + fed Python logging output. + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return None -def empty_app_mode_handle_intent_default() -> None: - """(internal)""" +def empty_app_mode_activate() -> None: + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None -def empty_app_mode_handle_intent_exec(command: str) -> None: - """(internal)""" +def empty_app_mode_deactivate() -> None: + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. + return None + + +def empty_app_mode_handle_app_intent_default() -> None: + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. + return None + + +def empty_app_mode_handle_app_intent_exec(command: str) -> None: + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def env() -> dict: - """(internal) + """Return a dict containing general env info. - Returns a dict containing general info about the operating environment - such as version, platform, etc. - This info is now exposed through babase.App; refer to those docs for - info on specific elements. + This has been superseded by :class:`~babase.Env` for most purposes. + + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return dict() def evaluate_lstr(value: str) -> str: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return str() def exec_arg() -> str | None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return '' def fade_screen( to: int = 0, time: float = 0.25, endcall: Callable[[], None] | None = None ) -> None: - """(internal) + """Fade the screen in or out. Fade the local game screen in our out from black over a duration of - time. if "to" is 0, the screen will fade out to black. Otherwise it - will fade in from black. If endcall is provided, it will be run after a - completely faded frame is drawn. + time. if "to" is 0, the screen will fade out to black. Otherwise + it will fade in from black. If endcall is provided, it will be run after + a completely faded frame is drawn. + + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return None @@ -901,484 +978,580 @@ def fatal_error(message: str) -> None: """Trigger a fatal error. Use this in situations where it is not possible for the engine to continue on in a useful way. This can sometimes help provide more clear information at the exact source of a problem - as compared to raising an Exception. In the vast majority of cases, - however, Exceptions should be preferred. + as compared to raising an :class:`Exception`. In the vast majority of + cases, however, exceptions should be preferred. """ + # This is a dummy stub; the actual implementation is native code. return None def fullscreen_control_available() -> bool: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return bool() def fullscreen_control_get() -> bool: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return bool() def fullscreen_control_key_shortcut() -> str | None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return '' def fullscreen_control_set(val: bool) -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def get_appconfig_builtin_keys() -> list[str]: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return ['blah', 'blah2'] def get_appconfig_default_value(key: str) -> Any: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return _uninferrable() -def get_camera_position() -> tuple[float, ...]: - """(internal) +def get_camera_position() -> tuple[float, float, float]: + """Return current camera position. WARNING: these camera controls will not apply to network clients and may behave unpredictably in other ways. Use them only for tinkering. + + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return (0.0, 0.0, 0.0) -def get_camera_target() -> tuple[float, ...]: - """(internal) +def get_camera_target() -> tuple[float, float, float]: + """Return the current camera target point. WARNING: these camera controls will not apply to network clients and may behave unpredictably in other ways. Use them only for tinkering. + + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return (0.0, 0.0, 0.0) def get_dev_console_input_text() -> str: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return str() def get_display_resolution() -> tuple[int, int] | None: - """(internal) + """Return currently selected display resolution for fullscreen display. - Return the currently selected display resolution for fullscreen - display. Returns None if resolutions cannot be directly set. + Returns None if resolutions cannot be directly set. + + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return (0, 0) -def get_idle_time() -> int: - """(internal) +def get_draw_virtual_safe_area_bounds() -> bool: + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. + return bool() - Returns the amount of time since any game input has been received. + +def get_idle_time() -> int: + """Returns the amount of time since any game input has been received. + + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return int() def get_immediate_return_code() -> int | None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return 0 +def get_initial_app_config() -> dict: + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. + return dict() + + def get_input_idle_time() -> float: - """Return seconds since any local input occurred (touch, keypress, etc.).""" + """Return seconds since any local input occurred (touch, keypress, etc.). + + :meta private: + """ + # This is a dummy stub; the actual implementation is native code. return float() def get_low_level_config_value(key: str, default_value: int) -> int: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return int() def get_max_graphics_quality() -> str: - """(internal) + """Return the max graphics-quality supported on the current hardware. - Return the max graphics-quality supported on the current hardware. + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return str() def get_replays_dir() -> str: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return str() def get_string_height(string: str, suppress_warning: bool = False) -> float: - """(internal) + """Given a string, returns its height with the standard small app font. - Given a string, returns its height using the standard small app - font. + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return float() def get_string_width(string: str, suppress_warning: bool = False) -> float: - """(internal) + """Given a string, returns its width in the standard small app font. - Given a string, returns its width using the standard small app - font. + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return float() def get_thread_name() -> str: - """(internal) + """Return the name of the current thread. - Returns the name of the current thread. This may vary depending on platform and should not be used in logic; only for debugging. + + :meta private: """ + # This is a dummy stub; the actual implementation is native code. + return str() + + +def get_ui_scale() -> str: + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return str() def get_v1_cloud_log() -> str: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return str() def get_v1_cloud_log_file_path() -> str: - """(internal) + """Return the path to the app log file. - Return the path to the app log file. + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return str() -def get_volatile_data_directory() -> str: - """(internal) +def get_virtual_safe_area_size() -> tuple[float, float]: + """Return the size of the area on screen that will always be visible.""" + # This is a dummy stub; the actual implementation is native code. + return (0.0, 0.0) + + +def get_virtual_screen_size() -> tuple[float, float]: + """Return the current virtual size of the display.""" + # This is a dummy stub; the actual implementation is native code. + return (0.0, 0.0) + + +def get_volatile_data_directory() -> str: + """Return the path to the app volatile data directory. - Return the path to the app volatile data directory. This directory is for data generated by the app that does not need to be backed up and can be recreated if necessary. + + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return str() def getapp() -> babase.App: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. import babase # pylint: disable=cyclic-import return babase.App() def getsimplesound(name: str) -> SimpleSound: - """(internal).""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return SimpleSound() def graphics_shutdown_begin() -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def graphics_shutdown_is_complete() -> bool: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return bool() def has_user_run_commands() -> bool: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return bool() def hastouchscreen() -> bool: - """(internal) + """Return whether a touchscreen is present on the current device. - Return whether a touchscreen is present on the current device. + :meta private: """ - return bool() - - -def have_chars(text: str) -> bool: - """(internal)""" + # This is a dummy stub; the actual implementation is native code. return bool() def have_permission(permission: babase.Permission) -> bool: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return bool() def in_logic_thread() -> bool: - """(internal) + """Return whether the current thread is the logic thread. - Returns whether or not the current thread is the logic thread. + The logic thread is where a large amount of app code runs, and + various functionality expects to only be used from there. """ + # This is a dummy stub; the actual implementation is native code. + return bool() + + +def in_main_menu() -> bool: + """Are we currently in a main-menu (as opposed to gameplay)? + + :meta private: + """ + # This is a dummy stub; the actual implementation is native code. return bool() def increment_analytics_count(name: str, increment: int = 1) -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def increment_analytics_count_raw_2( name: str, uses_increment: bool = True, increment: int = 1 ) -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def increment_analytics_counts_raw(name: str, increment: int = 1) -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def invoke_main_menu() -> None: """High level call to bring up the main menu if it is not present. - This is essentially the same as pressing the menu button on a controller. + This is essentially the same as pressing the menu button on a + controller. + + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return None def is_log_full() -> bool: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return bool() def is_os_playing_music() -> bool: - """(internal) + """Return whether the OS is currently playing music of some sort. - Tells whether the OS is currently playing music of some sort. + Used to determine whether the app should avoid playing its own. - (Used to determine whether the app should avoid playing its own) + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return bool() def is_xcode_build() -> bool: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return bool() -def lifecyclelog(message: str) -> None: - """(internal)""" - return None - - def lock_all_input() -> None: - """(internal) + """Prevent all keyboard, mouse, and gamepad events from being processed. - Prevents all keyboard, mouse, and gamepad events from being processed. + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return None def login_adapter_back_end_active_change(login_type: str, active: bool) -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def login_adapter_get_sign_in_token(login_type: str, attempt_id: int) -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def mac_music_app_get_playlists() -> list[str]: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return ['blah', 'blah2'] def mac_music_app_get_volume() -> int: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return int() def mac_music_app_init() -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def mac_music_app_play_playlist(playlist: str) -> bool: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return bool() def mac_music_app_set_volume(volume: int) -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def mac_music_app_stop() -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def mark_log_sent() -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def music_player_play(files: Any) -> None: - """(internal) + """Start internal music file playback. - Starts internal music file playback (for internal use) + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return None def music_player_set_volume(volume: float) -> None: - """(internal) + """Set internal music player volume. - Sets internal music player volume (for internal use) + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return None def music_player_shutdown() -> None: - """(internal) + """Finalize internal music file playback. - Finalizes internal music file playback (for internal use) + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return None def music_player_stop() -> None: - """(internal) + """Stops internal music file playback. - Stops internal music file playback (for internal use) + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return None def native_review_request() -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def native_review_request_supported() -> bool: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return bool() def native_stack_trace() -> str | None: """Return a native stack trace as a string, or None if not available. - Category: **General Utility Functions** - Stack traces contain different data and formatting across platforms. Only use them for debugging. """ + # This is a dummy stub; the actual implementation is native code. return '' def on_app_running() -> None: - """(internal)""" - return None - - -def on_empty_app_mode_activate() -> None: - """(internal)""" - return None - - -def on_empty_app_mode_deactivate() -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def on_initial_app_mode_set() -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def open_dir_externally(path: str) -> None: - """(internal) + """Open the provided dir in the default external app. - Open the provided dir in the default external app. + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return None def open_file_externally(path: str) -> None: - """(internal) + """Open the provided file in the default external app. - Open the provided file in the default external app. + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return None def open_url(address: str, force_fallback: bool = False) -> None: """Open the provided URL. - Category: **General Utility Functions** - Attempts to open the provided url in a web-browser. If that is not - possible (or force_fallback is True), instead displays the url as + possible (or ``force_fallback`` is True), instead displays the url as a string and/or qrcode. """ + # This is a dummy stub; the actual implementation is native code. return None def overlay_web_browser_close() -> bool: """Close any open overlay web browser. - Category: **General Utility Functions** + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return bool() def overlay_web_browser_is_open() -> bool: """Return whether an overlay web browser is open currently. - Category: **General Utility Functions** + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return bool() def overlay_web_browser_is_supported() -> bool: """Return whether an overlay web browser is supported here. - Category: **General Utility Functions** - An overlay web browser is a small dialog that pops up over the top of the main engine window. It can be used for performing simple tasks such as sign-ins. + + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return bool() def overlay_web_browser_open_url(address: str) -> None: - """Open the provided URL in an overlayw web browser. - - Category: **General Utility Functions** + """Open the provided URL in an overlay web browser. An overlay web browser is a small dialog that pops up over the top of the main engine window. It can be used for performing simple tasks such as sign-ins. + + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return None def pre_env() -> dict: - """(internal) + """Return a dict containing general env info. - Returns a dict containing general info about the operating environment - such as version, platform, etc. - This info is now exposed through babase.App; refer to those docs for - info on specific elements. + This has been superseded by :class:`~babase.Env` for most purposes. + + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return dict() def print_context() -> None: - """(internal) + """Prints info about the current context state; for debugging. - Prints info about the current context_ref state; for debugging. + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return None def print_load_info() -> None: - """(internal) + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. + return None - Category: **General Utility Functions** - """ + +def push_back_press() -> None: + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None @@ -1389,19 +1562,18 @@ def pushcall( other_thread_use_fg_context: bool = False, raw: bool = False, ) -> None: - """Push a call to the logic event-loop. - Category: **General Utility Functions** + """Push a call to the logic-thread's event loop. - This call expects to be used in the logic thread, and will automatically - save and restore the babase.Context to behave seamlessly. + This function expects to be called from the logic thread, and will automatically save and restore the context to behave seamlessly. - If you want to push a call from outside of the logic thread, - however, you can pass 'from_other_thread' as True. In this case - the call will always run in the UI context_ref on the logic thread - or whichever context_ref is in the foreground if - other_thread_use_fg_context is True. - Passing raw=True will disable thread checks and context_ref sets/restores. + To push a call from outside of the logic thread, pass + ``from_other_thread=True``. In that case the call will run with no + context set. To instead run in whichever context is currently active + on the logic thread, pass ``other_thread_use_fg_context=True``. + Passing ``raw=True`` will skip thread checks and context + saves/restores altogether. """ + # This is a dummy stub; the actual implementation is native code. return None @@ -1411,13 +1583,12 @@ def quit( ) -> None: """Quit the app. - Category: **General Utility Functions** - - If 'confirm' is True, a confirm dialog will be presented if conditions + If ``confirm`` is True, a confirm dialog will be presented if conditions allow; otherwise the quit will still be immediate. - See docs for babase.QuitType for explanations of the optional - 'quit_type' arg. + See docs for :class:`~babase.QuitType` for explanations of the optional + ``quit_type`` arg. """ + # This is a dummy stub; the actual implementation is native code. return None @@ -1425,25 +1596,30 @@ def reached_end_of_babase() -> None: """A simple user-agent-string that should be used in any web requests made on behalf of the engine. """ + # This is a dummy stub; the actual implementation is native code. return None def reload_media() -> None: - """(internal) + """Reload all currently loaded game media. - Reload all currently loaded game media; useful for - development/debugging. + Mainly for development/debugging. + + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return None def request_permission(permission: babase.Permission) -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def resolve_appconfig_value(key: str) -> Any: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return _uninferrable() @@ -1453,6 +1629,7 @@ def run_app() -> None: Note that this only works on platforms/builds where ballistica manages its own event loop. """ + # This is a dummy stub; the actual implementation is native code. return None @@ -1461,11 +1638,10 @@ def safecolor( ) -> tuple[float, ...]: """Given a color tuple, return a color safe to display as text. - Category: **General Utility Functions** - Accepts tuples of length 3 or 4. This will slightly brighten very dark colors, etc. """ + # This is a dummy stub; the actual implementation is native code. return (0.0, 0.0, 0.0) @@ -1474,204 +1650,271 @@ def screenmessage( color: Sequence[float] | None = None, log: bool = False, ) -> None: - """Print a message to the local client's screen, in a given color. + """Print a message to the local client's screen in a given color. - Category: **General Utility Functions** - - Note that this version of the function is purely for local display. - To broadcast screen messages in network play, look for methods such as - broadcastmessage() provided by the scene-version packages. + Note that this function is purely for local display. To broadcast + screen-messages during gameplay, look for methods such as + :meth:`bascenev1.broadcastmessage()`. """ + # This is a dummy stub; the actual implementation is native code. return None def set_analytics_screen(screen: str) -> None: """Used for analytics to see where in the app players spend their time. - Category: **General Utility Functions** - Generally called when opening a new window or entering some UI. 'screen' should be a string description of an app location ('Main Menu', etc.) + + :meta private: """ + # This is a dummy stub; the actual implementation is native code. + return None + + +def set_app_config(config: dict) -> None: + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def set_camera_manual(value: bool) -> None: - """(internal) + """Set camera manual mode on or off. WARNING: these camera controls will not apply to network clients and may behave unpredictably in other ways. Use them only for tinkering. + + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return None def set_camera_position(x: float, y: float, z: float) -> None: - """(internal) + """Set camera position. WARNING: these camera controls will not apply to network clients and may behave unpredictably in other ways. Use them only for tinkering. + + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return None def set_camera_target(x: float, y: float, z: float) -> None: - """(internal) + """Set the camera target. WARNING: these camera controls will not apply to network clients and may behave unpredictably in other ways. Use them only for tinkering. + + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return None def set_dev_console_input_text(val: str) -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None -def set_global_tint(x: float, y: float, z: float) -> None: - """(internal) - - This will override any tint set by game in local or netplay - """ +def set_draw_virtual_safe_area_bounds(value: bool) -> None: + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def set_internal_language_keys( listobj: list[tuple[str, str]], random_names_list: list[tuple[str, str]] ) -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def set_low_level_config_value(key: str, value: int) -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def set_platform_misc_read_vals(mode: str) -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def set_thread_name(name: str) -> None: - """(internal) + """Set the name of the current thread (on platforms where available). - Sets the name of the current thread (on platforms where this is - available). EventLoop names are only for debugging and should - not be used in logic, as naming behavior can vary across platforms. + Thread names are only for debugging and should not be used in logic, + as naming behavior can vary across platforms. + + :meta private: """ + # This is a dummy stub; the actual implementation is native code. + return None + + +def set_ui_account_state(signed_in: bool, name: str | None = None) -> None: + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def set_ui_input_device(input_device_id: int | None) -> None: - """(internal) + """Sets the input-device that currently owns the user interface. - Sets the input-device that currently owns the user interface. + :meta private: """ + # This is a dummy stub; the actual implementation is native code. + return None + + +def set_ui_scale(scale: str) -> None: + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def setup_sigint() -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def show_progress_bar() -> None: - """(internal) - - Category: **General Utility Functions** - """ + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def shutdown_suppress_begin() -> bool: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return bool() def shutdown_suppress_count() -> int: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return int() def shutdown_suppress_end() -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def submit_analytics_counts() -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def supports_max_fps() -> bool: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return bool() def supports_open_dir_externally() -> bool: - """(internal) + """Return whether current app/platform supports opening dirs externally. - Return whether the current app/platform supports opening dirs externally - (in the Mac Finder, Windows Explorer, etc.). + (Via the Mac Finder, Windows Explorer, etc.) + + :meta private: """ + # This is a dummy stub; the actual implementation is native code. + return bool() + + +def supports_unicode_display() -> bool: + """Return whether we can display all unicode characters in the gui.""" + # This is a dummy stub; the actual implementation is native code. return bool() def supports_vsync() -> bool: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return bool() def temp_testing() -> bool: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return bool() def unlock_all_input() -> None: - """(internal) + """Resume normal keyboard, mouse, and gamepad event processing. - Resumes normal keyboard, mouse, and gamepad event processing. + :meta private: """ + # This is a dummy stub; the actual implementation is native code. + return None + + +def update_internal_logger_levels() -> None: + """Update the native layer to re-cache Python logger levels. + + The native layer caches logger levels so it can efficiently + avoid making Python log calls for disabled logger levels. If any + logger levels are changed at runtime, call this method after to + instruct the native layer to regenerate its cache so the change + is properly reflected in logs originating from the native layer. + + :meta private: + """ + # This is a dummy stub; the actual implementation is native code. return None def user_agent_string() -> str: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return str() def user_ran_commands() -> None: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return None def using_game_center() -> bool: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return bool() def using_google_play_game_services() -> bool: - """(internal)""" + """:meta private:""" + # This is a dummy stub; the actual implementation is native code. return bool() def v1_cloud_log(message: str) -> None: - """(internal) + """Push messages to the old v1 cloud log. - Push messages to the old v1 cloud log. + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return None def workspaces_in_use() -> bool: - """(internal) + """Return whether workspace functionality was ever enabled this run. - Returns whether workspaces functionality has been enabled at - any point this run. + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return bool() diff --git a/dist/dummymodules/_baclassic.py b/dist/dummymodules/_baclassic.py index 36691ae..1832b0f 100644 --- a/dist/dummymodules/_baclassic.py +++ b/dist/dummymodules/_baclassic.py @@ -27,28 +27,146 @@ NOTE: This file was autogenerated by batools.dummymodule; do not edit by hand. # pylint: disable=redefined-outer-name # pylint: disable=invalid-name # pylint: disable=no-value-for-parameter +# pylint: disable=unused-import +# pylint: disable=too-many-positional-arguments from __future__ import annotations -from typing import TYPE_CHECKING, override, TypeVar +from typing import TYPE_CHECKING, override if TYPE_CHECKING: from typing import Any, Callable -_T = TypeVar('_T') - - def _uninferrable() -> Any: """Get an "Any" in mypy and "uninferrable" in Pylint.""" # pylint: disable=undefined-variable return _not_a_real_variable # type: ignore +def animate_root_ui_chest_unlock_time( + *, + chestid: str, + duration: float, + startvalue: float, + endvalue: float, +) -> None: + """Animate the unlock time on a chest.""" + # This is a dummy stub; the actual implementation is native code. + return None + + +def animate_root_ui_tickets( + *, + duration: float, + startvalue: int, + endvalue: int, +) -> None: + """Animate the displayed tickets value.""" + # This is a dummy stub; the actual implementation is native code. + return None + + +def animate_root_ui_tokens( + *, + duration: float, + startvalue: int, + endvalue: int, +) -> None: + """Animate the displayed tokens value.""" + # This is a dummy stub; the actual implementation is native code. + return None + + +def classic_app_mode_activate() -> None: + """(internal)""" + # This is a dummy stub; the actual implementation is native code. + return None + + +def classic_app_mode_deactivate() -> None: + """(internal)""" + # This is a dummy stub; the actual implementation is native code. + return None + + +def classic_app_mode_handle_app_intent_default() -> None: + """(internal)""" + # This is a dummy stub; the actual implementation is native code. + return None + + +def classic_app_mode_handle_app_intent_exec(command: str) -> None: + """(internal)""" + # This is a dummy stub; the actual implementation is native code. + return None + + +def get_account_display_state() -> Any: + """(internal)""" + # This is a dummy stub; the actual implementation is native code. + return _uninferrable() + + +def set_account_display_state(vals: dict) -> None: + """(internal)""" + # This is a dummy stub; the actual implementation is native code. + return None + + +def set_have_live_account_values(have: bool) -> None: + """Inform the native layer whether we are being fed with live account + values from the server. + """ + # This is a dummy stub; the actual implementation is native code. + return None + + +def set_root_ui_account_values( + *, + tickets: int, + tokens: int, + league_type: str, + league_number: int, + league_rank: int, + achievements_percent_text: str, + level_text: str, + xp_text: str, + inbox_count: int, + inbox_count_is_max: bool, + inbox_announce_text: str, + gold_pass: bool, + chest_0_appearance: str, + chest_1_appearance: str, + chest_2_appearance: str, + chest_3_appearance: str, + chest_0_create_time: float, + chest_1_create_time: float, + chest_2_create_time: float, + chest_3_create_time: float, + chest_0_unlock_time: float, + chest_1_unlock_time: float, + chest_2_unlock_time: float, + chest_3_unlock_time: float, + chest_0_unlock_tokens: int, + chest_1_unlock_tokens: int, + chest_2_unlock_tokens: int, + chest_3_unlock_tokens: int, + chest_0_ad_allow_time: float, + chest_1_ad_allow_time: float, + chest_2_ad_allow_time: float, + chest_3_ad_allow_time: float, +) -> None: + """Pass values to the native layer for use in the root UI or elsewhere.""" + # This is a dummy stub; the actual implementation is native code. + return None + + def set_stress_testing( testing: bool, player_count: int, attract_mode: bool ) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None @@ -56,4 +174,5 @@ def value_test( arg: str, change: float | None = None, absolute: float | None = None ) -> float: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return float() diff --git a/dist/dummymodules/_baplus.py b/dist/dummymodules/_baplus.py index 5910d49..5333a7b 100644 --- a/dist/dummymodules/_baplus.py +++ b/dist/dummymodules/_baplus.py @@ -27,18 +27,17 @@ NOTE: This file was autogenerated by batools.dummymodule; do not edit by hand. # pylint: disable=redefined-outer-name # pylint: disable=invalid-name # pylint: disable=no-value-for-parameter +# pylint: disable=unused-import +# pylint: disable=too-many-positional-arguments from __future__ import annotations -from typing import TYPE_CHECKING, override, TypeVar +from typing import TYPE_CHECKING, override if TYPE_CHECKING: from typing import Any, Callable -_T = TypeVar('_T') - - def _uninferrable() -> Any: """Get an "Any" in mypy and "uninferrable" in Pylint.""" # pylint: disable=undefined-variable @@ -49,11 +48,13 @@ def add_v1_account_transaction( transaction: dict, callback: Callable | None = None ) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def can_show_ad() -> bool: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return bool() @@ -63,74 +64,88 @@ def game_service_has_leaderboard(game: str, config: str) -> bool: Given a game and config string, returns whether there is a leaderboard for it on the game service. """ + # This is a dummy stub; the actual implementation is native code. return bool() +def get_classic_news_show() -> str: + """(internal)""" + # This is a dummy stub; the actual implementation is native code. + return str() + + def get_master_server_address(source: int = -1, version: int = 1) -> str: """(internal) Return the address of the master server. """ - return str() - - -def get_news_show() -> str: - """(internal)""" + # This is a dummy stub; the actual implementation is native code. return str() def get_price(item: str) -> str | None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return '' -def get_purchased(item: str) -> bool: - """(internal)""" - return bool() - - -def get_purchases_state() -> int: - """(internal)""" - return int() - - def get_v1_account_display_string(full: bool = True) -> str: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return str() def get_v1_account_misc_read_val(name: str, default_value: Any) -> Any: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return _uninferrable() def get_v1_account_misc_read_val_2(name: str, default_value: Any) -> Any: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return _uninferrable() def get_v1_account_misc_val(name: str, default_value: Any) -> Any: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return _uninferrable() def get_v1_account_name() -> str: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return str() +def get_v1_account_product_purchased(item: str) -> bool: + """(internal)""" + # This is a dummy stub; the actual implementation is native code. + return bool() + + +def get_v1_account_product_purchases_state() -> int: + """(internal)""" + # This is a dummy stub; the actual implementation is native code. + return int() + + def get_v1_account_public_login_id() -> str | None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return '' def get_v1_account_state() -> str: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return str() def get_v1_account_state_num() -> int: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return int() @@ -139,84 +154,97 @@ def get_v1_account_ticket_count() -> int: Returns the number of tickets for the current account. """ + # This is a dummy stub; the actual implementation is native code. return int() def get_v1_account_type() -> str: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return str() def get_v2_fleet() -> str: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return str() def has_video_ads() -> bool: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return bool() def have_incentivized_ad() -> bool: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return bool() def have_outstanding_v1_account_transactions() -> bool: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return bool() def in_game_purchase(item: str, price: int) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def is_blessed() -> bool: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return bool() def mark_config_dirty() -> None: - """(internal) - - Category: General Utility Functions - """ + """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def on_app_loading() -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def power_ranking_query(callback: Callable, season: Any = None) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def purchase(item: str) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def report_achievement(achievement: str, pass_to_account: bool = True) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def reset_achievements() -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def restore_purchases() -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def run_v1_account_transactions() -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None @@ -224,6 +252,7 @@ def show_ad( purpose: str, on_completion_call: Callable[[], None] | None = None ) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None @@ -231,6 +260,7 @@ def show_ad_2( purpose: str, on_completion_call: Callable[[bool], None] | None = None ) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None @@ -240,22 +270,19 @@ def show_game_service_ui( game_version: str | None = None, ) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def sign_in_v1(account_type: str) -> None: - """(internal) - - Category: General Utility Functions - """ + """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def sign_out_v1(v2_embedded: bool = False) -> None: - """(internal) - - Category: General Utility Functions - """ + """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None @@ -278,11 +305,19 @@ def submit_score( to devote my time to improving the game instead of trying to make the score server more mischief-proof. """ + # This is a dummy stub; the actual implementation is native code. return None +def supports_purchases() -> bool: + """(internal)""" + # This is a dummy stub; the actual implementation is native code. + return bool() + + def tournament_query( callback: Callable[[dict | None], None], args: dict ) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None diff --git a/dist/dummymodules/_bascenev1.py b/dist/dummymodules/_bascenev1.py index 97166d6..01c6ce2 100644 --- a/dist/dummymodules/_bascenev1.py +++ b/dist/dummymodules/_bascenev1.py @@ -27,10 +27,12 @@ NOTE: This file was autogenerated by batools.dummymodule; do not edit by hand. # pylint: disable=redefined-outer-name # pylint: disable=invalid-name # pylint: disable=no-value-for-parameter +# pylint: disable=unused-import +# pylint: disable=too-many-positional-arguments from __future__ import annotations -from typing import TYPE_CHECKING, overload, override, TypeVar +from typing import TYPE_CHECKING, overload, override if TYPE_CHECKING: from typing import Any, Callable, Literal, Sequence @@ -38,9 +40,6 @@ if TYPE_CHECKING: import bascenev1 -_T = TypeVar('_T') - - def _uninferrable() -> Any: """Get an "Any" in mypy and "uninferrable" in Pylint.""" # pylint: disable=undefined-variable @@ -48,30 +47,38 @@ def _uninferrable() -> Any: class ActivityData: - """(internal)""" + """Internal; holds native data for the activity. + + :meta private: + """ def context(self) -> bascenev1.ContextRef: """Return a context-ref pointing to the activity.""" + # This is a dummy stub; the actual implementation is native code. import bascenev1 # pylint: disable=cyclic-import return bascenev1.ContextRef() def exists(self) -> bool: - """Returns whether the ActivityData still exists. + """Returns whether the activity-data still exists. Most functionality will fail on a nonexistent instance. """ + # This is a dummy stub; the actual implementation is native code. return bool() def expire(self) -> None: """Expires the internal data for the activity""" + # This is a dummy stub; the actual implementation is native code. return None def make_foreground(self) -> None: """Sets this activity as the foreground one in its session.""" + # This is a dummy stub; the actual implementation is native code. return None def start(self) -> None: """Begins the activity running""" + # This is a dummy stub; the actual implementation is native code. return None @@ -79,43 +86,49 @@ class ActivityData: class BaseTimer: """Timers are used to run code at later points in time. - Category: **General Utility Classes** - This class encapsulates a base-time timer in the current scene context. The underlying timer will be destroyed when either this object is - no longer referenced or when its Context (Activity, etc.) dies. If you + no longer referenced or when its context (activity, etc.) dies. If you do not want to worry about keeping a reference to your timer around, - you should use the bascenev1.basetimer() function instead. + you should use the :meth:`bascenev1.basetimer()` function instead. - ###### time (float) - > Length of time in seconds that the timer will wait - before firing. + Args: - ###### call (Callable[[], Any]) - > A callable Python object. Remember that the timer will retain a - strong reference to the callable for as long as it exists, so you - may want to look into concepts such as babase.WeakCall if that is not - desired. + time: + Length of time in seconds that the timer will wait + before firing. - ###### repeat (bool) - > If True, the timer will fire repeatedly, with each successive - firing having the same delay as the first. + call: + A callable Python object. Remember that the timer will retain a + strong reference to the callable for as long as it exists, so you + may want to look into concepts such as :class:`~babase.WeakCall` + if that is not desired. - ##### Example + repeat: + If True, the timer will fire repeatedly, with each successive + firing having the same delay as the first. - Use a BaseTimer object to print repeatedly for a few seconds: - >>> import bascenev1 as bs - ... def say_it(): - ... bs.screenmessage('BADGER!') - ... def stop_saying_it(): - ... global g_timer - ... g_timer = None - ... bs.screenmessage('MUSHROOM MUSHROOM!') - ... # Create our timer; it will run as long as we have the self.t ref. - ... g_timer = bs.BaseTimer(0.3, say_it, repeat=True) - ... # Now fire off a one-shot timer to kill it. - ... bs.basetimer(3.89, stop_saying_it) + Example + ------- + + Use a base-timer object to print repeatedly for a few seconds:: + + import bascenev1 as bs + + def say_it(): + bs.screenmessage('BADGER!') + + def stop_saying_it(): + global g_timer + g_timer = None + bs.screenmessage('MUSHROOM MUSHROOM!') + + # Create our timer; it will run as long as we keep its ref alive. + g_timer = bs.BaseTimer(0.3, say_it, repeat=True) + + # Now fire off a one-shot timer to kill the ref. + bs.basetimer(3.89, stop_saying_it) """ def __init__( @@ -127,9 +140,7 @@ class BaseTimer: class CollisionMesh: """A reference to a collision-mesh. - Category: **Asset Classes** - - Use bascenev1.getcollisionmesh() to instantiate one. + Use :meth:`bascenev1.getcollisionmesh()` to instantiate one. """ pass @@ -138,9 +149,7 @@ class CollisionMesh: class Data: """A reference to a data object. - Category: **Asset Classes** - - Use bascenev1.getdata() to instantiate one. + Use :meth:`bascenev1.getdata()` to instantiate one. """ def getvalue(self) -> Any: @@ -152,60 +161,58 @@ class Data: so it can be beneficial to plan a short bit of time between when the data object is requested and when it's value is accessed. """ + # This is a dummy stub; the actual implementation is native code. return _uninferrable() class InputDevice: - """An input-device such as a gamepad, touchscreen, or keyboard. - - Category: **Gameplay Classes** - """ + """An input-device such as a gamepad, touchscreen, or keyboard.""" + #: Whether the input-device can be configured in the app. allows_configuring: bool - """Whether the input-device can be configured in the app.""" + #: Whether the input-device can be configured in the system. + #: setings app. This can be used to redirect the user to go there + #: if they attempt to configure the device. allows_configuring_in_system_settings: bool - """Whether the input-device can be configured in the system. - setings app. This can be used to redirect the user to go there - if they attempt to configure the device.""" + #: Whether button names returned by this instance match labels + #: on the actual device. (Can be used to determine whether to show + #: them in controls-overlays, etc.). has_meaningful_button_names: bool - """Whether button names returned by this instance match labels - on the actual device. (Can be used to determine whether to show - them in controls-overlays, etc.).""" + #: The player associated with this input device. player: bascenev1.SessionPlayer | None - """The player associated with this input device.""" + #: The numeric client-id this device is associated with. + #: This is only meaningful for remote client inputs; for + #: all local devices this will be -1. client_id: int - """The numeric client-id this device is associated with. - This is only meaningful for remote client inputs; for - all local devices this will be -1.""" + #: The name of the device. name: str - """The name of the device.""" + #: A string that can be used to persistently identify the device, + #: even among other devices of the same type. Used for saving + #: prefs, etc. unique_identifier: str - """A string that can be used to persistently identify the device, - even among other devices of the same type. Used for saving - prefs, etc.""" + #: The unique numeric id of this device. id: int - """The unique numeric id of this device.""" + #: The number of this device among devices of the same type. instance_number: int - """The number of this device among devices of the same type.""" + #: Whether this input-device represents a locally-connected + #: controller-app. is_controller_app: bool - """Whether this input-device represents a locally-connected - controller-app.""" + #: Whether this input-device represents a remotely-connected + #: client. is_remote_client: bool - """Whether this input-device represents a remotely-connected - client.""" + #: Whether this input-device is a dummy device for testing. is_test_input: bool - """Whether this input-device is a dummy device for testing.""" def __bool__(self) -> bool: """Support for bool evaluation.""" @@ -216,12 +223,14 @@ class InputDevice: This applies both to local players and remote players. """ + # This is a dummy stub; the actual implementation is native code. return None def exists(self) -> bool: """Return whether the underlying device for this object is still present. """ + # This is a dummy stub; the actual implementation is native code. return bool() def get_axis_name(self, axis_id: int) -> str: @@ -229,6 +238,7 @@ class InputDevice: Can return an empty string if the value is not meaningful to humans. """ + # This is a dummy stub; the actual implementation is native code. return str() def get_button_name(self, button_id: int) -> babase.Lstr: @@ -236,6 +246,7 @@ class InputDevice: Can return an empty string if the value is not meaningful to humans. """ + # This is a dummy stub; the actual implementation is native code. import babase # pylint: disable=cyclic-import return babase.Lstr(value='') @@ -246,10 +257,12 @@ class InputDevice: Returns the default player name for this device. (used for the 'random' profile) """ + # This is a dummy stub; the actual implementation is native code. return str() def get_player_profiles(self) -> dict: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return dict() def get_v1_account_name(self, full: bool) -> str: @@ -257,6 +270,7 @@ class InputDevice: (can be used to get account names for remote players) """ + # This is a dummy stub; the actual implementation is native code. return str() def is_attached_to_player(self) -> bool: @@ -264,14 +278,13 @@ class InputDevice: This can mean either a local player or a remote player. """ + # This is a dummy stub; the actual implementation is native code. return bool() class Material: """An entity applied to game objects to modify collision behavior. - Category: **Gameplay Classes** - A material can affect physical characteristics, generate sounds, or trigger callback functions when collisions occur. @@ -284,176 +297,198 @@ class Material: to the various parts it creates. Use bascenev1.Material to instantiate a blank material, and then use - its babase.Material.add_actions() method to define what the material - does. + its :meth:`bascenev1.Material.add_actions()` method to define what the + material does. """ def __init__(self, label: str | None = None) -> None: pass + #: A label for the material; only used for debugging. label: str - """A label for the material; only used for debugging.""" def add_actions( self, actions: tuple, conditions: tuple | None = None ) -> None: """Add one or more actions to the material, optionally with conditions. - ##### Conditions - Conditions are provided as tuples which can be combined - to form boolean logic. A single condition might look like - `('condition_name', cond_arg)`, or a more complex nested one - might look like `(('some_condition', cond_arg), 'or', - ('another_condition', cond2_arg))`. + Conditions + ========== - `'and'`, `'or'`, and `'xor'` are available to chain - together 2 conditions, as seen above. + Conditions are provided as tuples which can be combined to form + boolean logic. A single condition might look like: - ##### Available Conditions - ###### `('they_have_material', material)` - > Does the part we're hitting have a given bascenev1.Material? + ``('condition_name', cond_arg)`` - ###### `('they_dont_have_material', material)` - > Does the part we're hitting not have a given bascenev1.Material? + Or a more complex nested one might look like: - ###### `('eval_colliding')` - > Is `'collide'` true at this point - in material evaluation? (see the `modify_part_collision` action) + ``(('condition1', cond_arg), 'or', ('condition2', cond2_arg))`` - ###### `('eval_not_colliding')` - > Is 'collide' false at this point - in material evaluation? (see the `modify_part_collision` action) + The strings ``'and'``, ``'or'``, and ``'xor'`` can chain together + two conditions, as seen above. - ###### `('we_are_younger_than', age)` - > Is our part younger than `age` (in milliseconds)? + Available Conditions + -------------------- + ``('they_have_material', material)`` + Does the part we're hitting have a given + :class:`bascenev1.Material`? - ###### `('we_are_older_than', age)` - > Is our part older than `age` (in milliseconds)? + ``('they_dont_have_material', material)`` + Does the part we're hitting not have a given + :class:`bascenev1.Material`? - ###### `('they_are_younger_than', age)` - > Is the part we're hitting younger than `age` (in milliseconds)? + ``('eval_colliding')`` + Is ``'collide'`` true at this point + in material evaluation? (see the ``modify_part_collision`` action) - ###### `('they_are_older_than', age)` - > Is the part we're hitting older than `age` (in milliseconds)? + ``('eval_not_colliding')`` + Is ``collide`` false at this point + in material evaluation? (see the ``modify_part_collision`` action) - ###### `('they_are_same_node_as_us')` - > Does the part we're hitting belong to the same bascenev1.Node as us? + ``('we_are_younger_than', age)`` + Is our part younger than ``age`` (in milliseconds)? - ###### `('they_are_different_node_than_us')` - > Does the part we're hitting belong to a different bascenev1.Node? + ``('we_are_older_than', age)`` + Is our part older than ``age`` (in milliseconds)? - ##### Actions - In a similar manner, actions are specified as tuples. - Multiple actions can be specified by providing a tuple - of tuples. + ``('they_are_younger_than', age)`` + Is the part we're hitting younger than ``age`` (in milliseconds)? - ##### Available Actions - ###### `('call', when, callable)` - > Calls the provided callable; - `when` can be either `'at_connect'` or `'at_disconnect'`. - `'at_connect'` means to fire - when the two parts first come in contact; `'at_disconnect'` - means to fire once they cease being in contact. + ``('they_are_older_than', age)`` + Is the part we're hitting older than ``age`` (in milliseconds)? - ###### `('message', who, when, message_obj)` - > Sends a message object; - `who` can be either `'our_node'` or `'their_node'`, `when` can be - `'at_connect'` or `'at_disconnect'`, and `message_obj` is the message - object to send. - This has the same effect as calling the node's - babase.Node.handlemessage() method. + ``('they_are_same_node_as_us')`` + Does the part we're hitting belong to the same + :class:`bascenev1.Node` + as us? - ###### `('modify_part_collision', attr, value)` - > Changes some - characteristic of the physical collision that will occur between - our part and their part. This change will remain in effect as - long as the two parts remain overlapping. This means if you have a - part with a material that turns `'collide'` off against parts - younger than 100ms, and it touches another part that is 50ms old, - it will continue to not collide with that part until they separate, - even if the 100ms threshold is passed. Options for attr/value are: - `'physical'` (boolean value; whether a *physical* response will - occur at all), `'friction'` (float value; how friction-y the - physical response will be), `'collide'` (boolean value; - whether *any* collision will occur at all, including non-physical - stuff like callbacks), `'use_node_collide'` - (boolean value; whether to honor modify_node_collision - overrides for this collision), `'stiffness'` (float value, - how springy the physical response is), `'damping'` (float - value, how damped the physical response is), `'bounce'` (float - value; how bouncy the physical response is). + ``('they_are_different_node_than_us')`` + Does the part we're hitting belong to a different + :class:`bascenev1.Node`? - ###### `('modify_node_collision', attr, value)` - > Similar to - `modify_part_collision`, but operates at a node-level. - collision attributes set here will remain in effect as long as - *anything* from our part's node and their part's node overlap. - A key use of this functionality is to prevent new nodes from - colliding with each other if they appear overlapped; - if `modify_part_collision` is used, only the individual - parts that were overlapping would avoid contact, but other parts - could still contact leaving the two nodes 'tangled up'. Using - `modify_node_collision` ensures that the nodes must completely - separate before they can start colliding. Currently the only attr - available here is `'collide'` (a boolean value). + Actions + ======= - ###### `('sound', sound, volume)` - > Plays a bascenev1.Sound when a collision - occurs, at a given volume, regardless of the collision speed/etc. + In a similar manner, actions are specified as tuples. Multiple + actions can be specified by providing a tuple of tuples. - ###### `('impact_sound', sound, targetImpulse, volume)` - > Plays a sound - when a collision occurs, based on the speed of impact. - Provide a bascenev1.Sound, a target-impulse, and a volume. + Available Actions + ----------------- - ###### `('skid_sound', sound, targetImpulse, volume)` - > Plays a sound - during a collision when parts are 'scraping' against each other. - Provide a bascenev1.Sound, a target-impulse, and a volume. + ``('call', when, callable)`` + Calls the provided callable; + ``when`` can be either ``'at_connect'`` or ``'at_disconnect'``. + ``'at_connect'`` means to fire when the two parts first come in + contact; ``'at_disconnect'`` means to fire once they cease being + in contact. - ###### `('roll_sound', sound, targetImpulse, volume)` - > Plays a sound - during a collision when parts are 'rolling' against each other. - Provide a bascenev1.Sound, a target-impulse, and a volume. + ``('message', who, when, message_obj)`` + Sends a message object; ``who`` can be either ``'our_node'`` or + ``'their_node'``, ``when`` can be ``'at_connect'`` or + ``'at_disconnect'``, and ``message_obj`` is the message object to + send. This has the same effect as calling the node's + :meth:`bascenev1.Node.handlemessage()` method. - ##### Examples - **Example 1:** create a material that lets us ignore + ``('modify_part_collision', attr, value)`` + Changes some characteristic of the physical collision that will + occur between our part and their part. This change will remain in + effect as long as the two parts remain overlapping. This means if + you have a part with a material that turns ``'collide'`` off + against parts younger than 100ms, and it touches another part that + is 50ms old, it will continue to not collide with that part until + they separate, even if the 100ms threshold is passed. Options for + attr/value are: + ``'physical'`` (boolean value; whether a *physical* response will + occur at all), ``'friction'`` (float value; how friction-y the + physical response will be), ``'collide'`` (boolean value; + whether *any* collision will occur at all, including non-physical + stuff like callbacks), ``'use_node_collide'`` + (boolean value; whether to honor modify_node_collision + overrides for this collision), ``'stiffness'`` (float value, + how springy the physical response is), ``'damping'`` (float + value, how damped the physical response is), ``'bounce'`` (float + value; how bouncy the physical response is). + + ``('modify_node_collision', attr, value)`` + Similar to ``modify_part_collision``, but operates at a + node-level. Collision attributes set here will remain in effect + as long as *anything* from our part's node and their part's node + overlap. A key use of this functionality is to prevent new nodes + from colliding with each other if they appear overlapped; + if ``modify_part_collision`` is used, only the individual + parts that were overlapping would avoid contact, but other parts + could still contact leaving the two nodes 'tangled up'. Using + ``modify_node_collision`` ensures that the nodes must completely + separate before they can start colliding. Currently the only attr + available here is ``'collide'`` (a boolean value). + + ``('sound', sound, volume)`` + Plays a :class:`bascenev1.Sound` when a collision occurs, at a + given volume, regardless of the collision speed/etc. + + ``('impact_sound', sound, target_impulse, volume)`` + Plays a sound when a collision occurs, based on the speed of + impact. Provide a :class:`bascenev1.Sound`, a target-impulse, + and a volume. + + ``('skid_sound', sound, target_impulse, volume)`` + Plays a sound during a collision when parts are 'scraping' + against each other. Provide a :class:`bascenev1.Sound`, + a target-impulse, and a volume. + + ``('roll_sound', sound, targetImpulse, volume)`` + Plays a sound during a collision when parts are 'rolling' + against each other. + Provide a :class:`bascenev1.Sound`, a target-impulse, and a + volume. + + Examples + ======== + + **Example 1:** Create a material that lets us ignore collisions against any nodes we touch in the first 100 ms of our existence; handy for preventing us from - exploding outward if we spawn on top of another object: - >>> m = bascenev1.Material() - ... m.add_actions( - ... conditions=(('we_are_younger_than', 100), - ... 'or', ('they_are_younger_than', 100)), - ... actions=('modify_node_collision', 'collide', False)) + exploding outward if we spawn on top of another object:: - **Example 2:** send a bascenev1.DieMessage to anything we touch, but - cause no physical response. This should cause any bascenev1.Actor to - drop dead: - >>> m = bascenev1.Material() - ... m.add_actions( - ... actions=(('modify_part_collision', 'physical', False), - ... ('message', 'their_node', 'at_connect', - ... bascenev1.DieMessage()))) + m = bascenev1.Material() + m.add_actions( + conditions=(('we_are_younger_than', 100), + 'or', ('they_are_younger_than', 100)), + actions=('modify_node_collision', 'collide', False)) - **Example 3:** play some sounds when we're contacting the ground: - >>> m = bascenev1.Material() - ... m.add_actions( - ... conditions=('they_have_material', shared.footing_material), - ... actions=( - ('impact_sound', bascenev1.getsound('metalHit'), 2, 5), - ('skid_sound', bascenev1.getsound('metalSkid'), 2, 5))) + **Example 2:** Send a :class:`bascenev1.DieMessage` to anything we + touch, but cause no physical response. This should cause any + :class:`bascenev1.Actor` to drop dead:: + + m = bascenev1.Material() + m.add_actions( + actions=( + ('modify_part_collision', 'physical', False), + ('message', 'their_node', 'at_connect', bascenev1.DieMessage()) + ) + ) + + **Example 3:** Play some sounds when we're contacting the + ground:: + + m = bascenev1.Material() + m.add_actions( + conditions=('they_have_material' shared.footing_material), + actions=( + ('impact_sound', bascenev1.getsound('metalHit'), 2, 5), + ('skid_sound', bascenev1.getsound('metalSkid'), 2, 5) + ) + ) """ + # This is a dummy stub; the actual implementation is native code. return None class Mesh: """A reference to a mesh. - Category: **Asset Classes** - Meshes are used for drawing. - Use bascenev1.getmesh() to instantiate one. + Use :meth:`bascenev1.getmesh()` to instantiate one. """ pass @@ -463,21 +498,19 @@ class Mesh: class Node: """Reference to a Node; the low level building block of a game. - Category: **Gameplay Classes** - At its core, a game is nothing more than a scene of Nodes with attributes getting interconnected or set over time. - A bascenev1.Node instance should be thought of as a weak-reference - to a game node; *not* the node itself. This means a Node's - lifecycle is completely independent of how many Python references - to it exist. To explicitly add a new node to the game, use - bascenev1.newnode(), and to explicitly delete one, - use bascenev1.Node.delete(). - babase.Node.exists() can be used to determine if a Node still points - to a live node in the game. + A :class:`bascenev1.Node` instance should be thought of as a + weak-reference to a game node; *not* the node itself. This means + a Node's lifecycle is completely independent of how many Python + references to it exist. To explicitly add a new node to the game, use + :meth:`bascenev1.newnode()`, and to explicitly delete one, use + :meth:`bascenev1.Node.delete()`. + :meth:`bascenev1.Node.exists()` can be used to determine if a Node + still points to a live node in the game. - You can use `ba.Node(None)` to instantiate an invalid + You can use ``bascenev1.Node(None)`` to instantiate an invalid Node reference (sometimes used as attr values/etc). """ @@ -544,32 +577,50 @@ class Node: bomb_pressed: bool = False fly_pressed: bool = False hold_position_pressed: bool = False + #: Available on spaz node. knockout: float = 0.0 invincible: bool = False stick_to_owner: bool = False damage: int = 0 + #: Available on spaz node. run: float = 0.0 + #: Available on spaz node. move_up_down: float = 0.0 + #: Available on spaz node. move_left_right: float = 0.0 curse_death_time: int = 0 boxing_gloves: bool = False hockey: bool = False use_fixed_vr_overlay: bool = False + #: Available on globals node. allow_kick_idle_players: bool = False music_continuous: bool = False music_count: int = 0 + #: Available on spaz node. hurt: float = 0.0 + #: On shield node. always_show_health_bar: bool = False + #: Available on spaz node. mini_billboard_1_texture: bascenev1.Texture | None = None + #: Available on spaz node. mini_billboard_1_start_time: int = 0 + #: Available on spaz node. mini_billboard_1_end_time: int = 0 + #: Available on spaz node. mini_billboard_2_texture: bascenev1.Texture | None = None + #: Available on spaz node. mini_billboard_2_start_time: int = 0 + #: Available on spaz node. mini_billboard_2_end_time: int = 0 + #: Available on spaz node. mini_billboard_3_texture: bascenev1.Texture | None = None + #: Available on spaz node. mini_billboard_3_start_time: int = 0 + #: Available on spaz node. mini_billboard_3_end_time: int = 0 + #: Available on spaz node. boxing_gloves_flashing: bool = False + #: Available on spaz node. dead: bool = False floor_reflection: bool = False debris_friction: float = 0.0 @@ -587,9 +638,13 @@ class Node: shadow_range: Sequence[float] = (0, 0, 0, 0) counter_text: str = '' counter_texture: bascenev1.Texture | None = None + #: Available on spaz node. shattered: int = 0 + #: Available on spaz node. billboard_texture: bascenev1.Texture | None = None + #: Available on spaz node. billboard_cross_out: bool = False + #: Available on spaz node. billboard_opacity: float = 0.0 slow_motion: bool = False music: str = '' @@ -608,10 +663,7 @@ class Node: """Add a callable object to be called upon this node's death. Note that these actions are run just after the node dies, not before. """ - return None - - def changerotation(self, x: int, y: int, z: int) -> None: - """added by smoothy""" + # This is a dummy stub; the actual implementation is native code. return None def connectattr(self, srcattr: str, dstnode: Node, dstattr: str) -> None: @@ -622,18 +674,20 @@ class Node: setting the target attribute to any value or connecting another node attribute to it. - ##### Example - Create a locator and attach a light to it: - >>> light = bascenev1.newnode('light') - ... loc = bascenev1.newnode('locator', attrs={'position': (0, 10, 0)}) - ... loc.connectattr('position', light, 'position') + Example: Create a locator and attach a light to it:: + + light = bascenev1.newnode('light') + loc = bascenev1.newnode('locator', attrs={'position': (0, 10, 0)}) + loc.connectattr('position', light, 'position') """ + # This is a dummy stub; the actual implementation is native code. return None def delete(self, ignore_missing: bool = True) -> None: """Delete the node. Ignores already-deleted nodes if `ignore_missing` - is True; otherwise a bascenev1.NodeNotFoundError is thrown. + is True; otherwise a :class:`babase.NodeNotFoundError` is thrown. """ + # This is a dummy stub; the actual implementation is native code. return None def exists(self) -> bool: @@ -645,16 +699,17 @@ class Node: functionality, so a statement such as "if mynode" will do the right thing both for Node objects and values of None. """ + # This is a dummy stub; the actual implementation is native code. return bool() # Show that ur return type varies based on "doraise" value: @overload - def getdelegate( - self, type: type[_T], doraise: Literal[False] = False - ) -> _T | None: ... + def getdelegate[T]( + self, type: type[T], doraise: Literal[False] = False + ) -> T | None: ... @overload - def getdelegate(self, type: type[_T], doraise: Literal[True]) -> _T: ... + def getdelegate[T](self, type: type[T], doraise: Literal[True]) -> T: ... def getdelegate(self, type: Any, doraise: bool = False) -> Any: """Return the node's current delegate object if it matches @@ -662,44 +717,50 @@ class Node: If the node has no delegate or it is not an instance of the passed type, then None will be returned. If 'doraise' is True, then an - babase.DelegateNotFoundError will be raised instead. + bascenev1.DelegateNotFoundError will be raised instead. """ return None def getname(self) -> str: """Return the name assigned to a Node; used mainly for debugging""" + # This is a dummy stub; the actual implementation is native code. return str() def getnodetype(self) -> str: - """Return the type of Node referenced by this object as a string. + """Return the internal type of node referenced by this object as a string. (Note this is different from the Python type which is always - bascenev1.Node) + :class:`bascenev1.Node`) """ + # This is a dummy stub; the actual implementation is native code. return str() def handlemessage(self, *args: Any) -> None: """General message handling; can be passed any message object. - All standard message objects are forwarded along to the - bascenev1.Node's delegate for handling (generally the bascenev1.Actor - that made the node). + All standard message objects are forwarded along to the node's + delegate for handling (generally the :class:`bascenev1.Actor` that + made the node). - bascenev1.Node-s are unique, however, in that they can be passed a - second form of message; 'node-messages'. These consist of a string - type-name as a first argument along with the args specific to that type - name as additional arguments. - Node-messages communicate directly with the low-level node layer - and are delivered simultaneously on all game clients, - acting as an alternative to setting node attributes. + Nodes also support a second form of message; 'node-messages'. + These consist of a string type-name as a first argument along with + the args specific to that type name as additional arguments. + Node-messages communicate directly with the low-level node + layer and are delivered simultaneously on all game clients, acting + as an alternative to setting node attributes. """ + # This is a dummy stub; the actual implementation is native code. return None class SessionData: - """(internal)""" + """Internal; holds native data for the session. + + :meta private: + """ def context(self) -> bascenev1.ContextRef: """Return a context-ref pointing to the session.""" + # This is a dummy stub; the actual implementation is native code. import bascenev1 # pylint: disable=cyclic-import return bascenev1.ContextRef() @@ -708,60 +769,61 @@ class SessionData: """Returns whether the SessionData still exists. Most functionality will fail on a nonexistent instance. """ + # This is a dummy stub; the actual implementation is native code. return bool() # noinspection PyShadowingBuiltins class SessionPlayer: - """A reference to a player in the bascenev1.Session. + """A reference to a player in a :class:`~bascenev1.Session`. - Category: **Gameplay Classes** - - These are created and managed internally and - provided to your bascenev1.Session/bascenev1.Activity instances. - Be aware that, like `ba.Node`s, bascenev1.SessionPlayer objects are - 'weak' references under-the-hood; a player can leave the game at - any point. For this reason, you should make judicious use of the - babase.SessionPlayer.exists() method (or boolean operator) to ensure - that a SessionPlayer is still present if retaining references to one - for any length of time. + These are created and managed internally and provided to your + :class:`~bascenev1.Session`/:class:`~bascenev1.Activity` + instances. Be aware that, like :class:`~bascenev1.Node` objects, + :class:`~bascenev1.SessionPlayer` objects are effectively 'weak' + references under-the-hood; a player can leave the game at any point. + For this reason, you should make judicious use of the + :meth:`bascenev1.SessionPlayer.exists()` method (or boolean operator) to + ensure that a :class:`SessionPlayer` is still present if retaining + references to one for any length of time. """ + #: The unique numeric id of the player. + #: + #: Note that you can also use the boolean operator for this same + #: functionality, so a statement such as ``if player:`` will do + #: the right thing both for :class:`~bascenev1.SessionPlayer` + #: objects as well as values of ``None``. id: int - """The unique numeric ID of the Player. - - Note that you can also use the boolean operator for this same - functionality, so a statement such as "if player" will do - the right thing both for Player objects and values of None.""" + #: This bool value will be True once the player has completed + #: any lobby character/team selection. in_game: bool - """This bool value will be True once the Player has completed - any lobby character/team selection.""" + #: The session-team this session-player is on. If the player is + #: still in its lobby selecting a team/etc. then a + #: :class:`~bascenev1.SessionTeamNotFoundError` will be raised. sessionteam: bascenev1.SessionTeam - """The bascenev1.SessionTeam this Player is on. If the - SessionPlayer is still in its lobby selecting a team/etc. - then a bascenev1.SessionTeamNotFoundError will be raised.""" + #: The input device associated with the player. inputdevice: bascenev1.InputDevice - """The input device associated with the player.""" + #: The base color for this player. + #: In team games this will match the team's + #: color. color: Sequence[float] - """The base color for this Player. - In team games this will match the bascenev1.SessionTeam's - color.""" + #: A secondary color for this player. + #: This is used for minor highlights and accents + #: to allow a player to stand apart from his teammates + #: who may all share the same team (primary) color. highlight: Sequence[float] - """A secondary color for this player. - This is used for minor highlights and accents - to allow a player to stand apart from his teammates - who may all share the same team (primary) color.""" + #: The character this player has selected in their profile. character: str - """The character this player has selected in their profile.""" + #: The current game-specific instance for this player. activityplayer: bascenev1.Player | None - """The current game-specific instance for this player.""" def __bool__(self) -> bool: """Support for bool evaluation.""" @@ -773,44 +835,55 @@ class SessionPlayer: call: Callable, ) -> None: """Set the python callable to be run for one or more types of input.""" + # This is a dummy stub; the actual implementation is native code. return None def exists(self) -> bool: """Return whether the underlying player is still in the game.""" + # This is a dummy stub; the actual implementation is native code. return bool() def get_icon(self) -> dict[str, Any]: - """Returns the character's icon (images, colors, etc contained + """Return the character's icon (images, colors, etc contained in a dict. """ + # This is a dummy stub; the actual implementation is native code. return {'foo': 'bar'} def get_icon_info(self) -> dict[str, Any]: - """(internal)""" + """(internal) + + :meta private: + """ + # This is a dummy stub; the actual implementation is native code. return {'foo': 'bar'} def get_v1_account_id(self) -> str: - """Return the V1 Account ID this player is signed in under, if + """Return the V1 account id this player is signed in under, if there is one and it can be determined with relative certainty. Returns None otherwise. Note that this may require an active internet connection (especially for network-connected players) and may return None for a short while after a player initially joins (while verification occurs). """ + # This is a dummy stub; the actual implementation is native code. return str() def getname(self, full: bool = False, icon: bool = True) -> str: - """Returns the player's name. If icon is True, the long version of the + """Returns the player's name. If ``icon`` is True, the long version of the name may include an icon. """ + # This is a dummy stub; the actual implementation is native code. return str() def remove_from_game(self) -> None: """Removes the player from the game.""" + # This is a dummy stub; the actual implementation is native code. return None def resetinput(self) -> None: """Clears out the player's assigned input actions.""" + # This is a dummy stub; the actual implementation is native code. return None def set_icon_info( @@ -820,11 +893,19 @@ class SessionPlayer: tint_color: Sequence[float], tint2_color: Sequence[float], ) -> None: - """(internal)""" + """(internal) + + :meta private: + """ + # This is a dummy stub; the actual implementation is native code. return None def setactivity(self, activity: bascenev1.Activity | None) -> None: - """(internal)""" + """(internal) + + :meta private: + """ + # This is a dummy stub; the actual implementation is native code. return None def setdata( @@ -835,6 +916,7 @@ class SessionPlayer: highlight: Sequence[float], ) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def setname( @@ -844,19 +926,22 @@ class SessionPlayer: A number will automatically be appended if the name is not unique from other players. """ + # This is a dummy stub; the actual implementation is native code. return None def setnode(self, node: bascenev1.Node | None) -> None: - """(internal)""" + """(internal) + + :meta private: + """ + # This is a dummy stub; the actual implementation is native code. return None class Sound: """A reference to a sound. - Category: **Asset Classes** - - Use bascenev1.getsound() to instantiate one. + Use :meth:`bascenev1.getsound()` to instantiate one. """ def play( @@ -867,20 +952,17 @@ class Sound: ) -> None: """Play the sound a single time. - Category: **Gameplay Functions** - If position is not provided, the sound will be at a constant volume everywhere. Position should be a float tuple of size 3. """ + # This is a dummy stub; the actual implementation is native code. return None class Texture: """A reference to a texture. - Category: **Asset Classes** - - Use bascenev1.gettexture() to instantiate one. + Use :meth:`bascenev1.gettexture()` to instantiate one. """ pass @@ -890,8 +972,6 @@ class Texture: class Timer: """Timers are used to run code at later points in time. - Category: **General Utility Classes** - This class encapsulates a scene-time timer in the current bascenev1.Context. The underlying timer will be destroyed when either this object is no longer referenced or when its Context (Activity, @@ -903,35 +983,40 @@ class Timer: bascenev1.Session Contexts. This means that it may progress slower in slow-motion play modes, stop when the game is paused, etc. - ###### time - > Length of time (in seconds by default) that the timer will wait - before firing. Note that the actual delay experienced may vary - depending on the timetype. (see below) + Args: - ###### call - > A callable Python object. Note that the timer will retain a - strong reference to the callable for as long as it exists, so you - may want to look into concepts such as babase.WeakCall if that is not - desired. + time: + Length of time (in seconds by default) that the timer will wait + before firing. Note that the actual delay experienced may vary + depending on the timetype. (see below) - ###### repeat - > If True, the timer will fire repeatedly, with each successive - firing having the same delay as the first. + call: + A callable Python object. Note that the timer will retain a + strong reference to the callable for as long as it exists, so you + may want to look into concepts such as :class:`~babase.WeakCall` + if that is not desired. - ##### Example + repeat: + If True, the timer will fire repeatedly, with each successive + firing having the same delay as the first. - Use a Timer object to print repeatedly for a few seconds: - >>> import bascenev1 as bs - ... def say_it(): - ... bs.screenmessage('BADGER!') - ... def stop_saying_it(): - ... global g_timer - ... g_timer = None - ... bs.screenmessage('MUSHROOM MUSHROOM!') - ... # Create our timer; it will run as long as we have the self.t ref. - ... g_timer = bs.Timer(0.3, say_it, repeat=True) - ... # Now fire off a one-shot timer to kill it. - ... bs.timer(3.89, stop_saying_it) + Example: Use a Timer object to print repeatedly for a few seconds:: + + import bascenev1 as bs + + def say_it(): + bs.screenmessage('BADGER!') + + def stop_saying_it(): + global g_timer + g_timer = None + bs.screenmessage('MUSHROOM MUSHROOM!') + + # Create our timer; it will run as long as we hold its ref. + g_timer = bs.Timer(0.3, say_it, repeat=True) + + # Now fire off a one-shot timer to kill the ref. + bs.timer(3.89, stop_saying_it) """ def __init__( @@ -940,16 +1025,9 @@ class Timer: pass -def append_owner_ip(ip: str) -> None: - """(internal)""" - return None - - def basetime() -> bascenev1.BaseTime: """Return the base-time in seconds for the current scene-v1 context. - Category: **General Utility Functions** - Base-time is a time value that progresses at a constant rate for a scene, even when the scene is sped up, slowed down, or paused. It may, however, speed up or slow down due to replay speed adjustments or may slow down @@ -958,6 +1036,7 @@ def basetime() -> bascenev1.BaseTime: unique type in the type-checker's eyes to help prevent it from being accidentally used with time functionality expecting other time types. """ + # This is a dummy stub; the actual implementation is native code. import bascenev1 # pylint: disable=cyclic-import return bascenev1.BaseTime(0.0) @@ -970,39 +1049,40 @@ def basetimer( ) -> None: """Schedule a call to run at a later point in scene base-time. Base-time is a value that progresses at a constant rate for a scene, - even when the scene is sped up, slowed down, or paused. It may, - however, speed up or slow down due to replay speed adjustments or may - slow down if the cpu is overloaded. - - Category: **General Utility Functions** + even when the scene is sped up, slowed down, or paused. It may, + however, speed up or slow down due to replay speed adjustments or may + slow down if the cpu is overloaded. This function adds a timer to the current scene context. This timer cannot be canceled or modified once created. If you - require the ability to do so, use the bascenev1.BaseTimer class - instead. + require the ability to do so, use the bascenev1.BaseTimer class + instead. - ##### Arguments - ###### time (float) - > Length of time in seconds that the timer will wait before firing. + Args: + time: + Length of time in seconds that the timer will wait before firing. - ###### call (Callable[[], Any]) - > A callable Python object. Remember that the timer will retain a - strong reference to the callable for the duration of the timer, so you - may want to look into concepts such as babase.WeakCall if that is not - desired. + call: + A callable Python object. Remember that the timer will retain a + strong reference to the callable for the duration of the timer, so + you may want to look into concepts such as :class:`~babase.WeakCall` + if that is not desired. - ###### repeat (bool) - > If True, the timer will fire repeatedly, with each successive - firing having the same delay as the first. + repeat: + If True, the timer will fire repeatedly, with each successive + firing having the same delay as the first. - ##### Examples - Print some stuff through time: - >>> import bascenev1 as bs - >>> bs.screenmessage('hello from now!') - >>> bs.basetimer(1.0, bs.Call(bs.screenmessage, 'hello from the future!')) - >>> bs.basetimer(2.0, bs.Call(bs.screenmessage, - ... 'hello from the future 2!')) + Example: Print some stuff through time:: + + import bascenev1 as bs + + bs.screenmessage('hello from now!') + bs.basetimer(1.0, bs.Call(bs.screenmessage, + 'hello from the future!')) + bs.basetimer(2.0, bs.Call(bs.screenmessage, + 'hello from the future 2!')) """ + # This is a dummy stub; the actual implementation is native code. return None @@ -1017,8 +1097,6 @@ def broadcastmessage( ) -> None: """Broadcast a screen-message to clients in the current session. - Category: **General Utility Functions** - If 'top' is True, the message will go to the top message area. For 'top' messages, 'image' must be a dict containing 'texture' and 'tint_texture' textures and 'tint_color' and 'tint2_color' @@ -1030,18 +1108,18 @@ def broadcastmessage( game-stream and thus will not show up when viewing replays. Currently the 'clients' option only works for transient messages. """ + # This is a dummy stub; the actual implementation is native code. return None def camerashake(intensity: float = 1.0) -> None: """Shake the camera. - Category: **Gameplay Functions** - Note that some cameras and/or platforms (such as VR) may not display camera-shake, so do not rely on this always being visible to the player as a gameplay cue. """ + # This is a dummy stub; the actual implementation is native code. return None @@ -1051,6 +1129,7 @@ def capture_gamepad_input(call: Callable[[dict], None]) -> None: Add a callable to be called for subsequent gamepad events. The method is passed a dict containing info about the event. """ + # This is a dummy stub; the actual implementation is native code. return None @@ -1060,6 +1139,7 @@ def capture_keyboard_input(call: Callable[[dict], None]) -> None: Add a callable to be called for subsequent keyboard-game-pad events. The method is passed a dict containing info about the event. """ + # This is a dummy stub; the actual implementation is native code. return None @@ -1069,11 +1149,13 @@ def chatmessage( sender_override: str | None = None, ) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def client_info_query_response(token: str, response: Any) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None @@ -1081,24 +1163,19 @@ def connect_to_party( address: str, port: int | None = None, print_progress: bool = True ) -> None: """(internal)""" - return None - - -def disable_kickvote(id: str) -> None: - """(internal)id: pb-id who cant start a kick vote to anyone""" + # This is a dummy stub; the actual implementation is native code. return None def disconnect_client(client_id: int, ban_time: int = 300) -> bool: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return bool() def disconnect_from_host() -> None: - """(internal) - - Category: General Utility Functions - """ + """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None @@ -1114,67 +1191,48 @@ def emitfx( ) -> None: """Emit particles, smoke, etc. into the fx sim layer. - Category: **Gameplay Functions** - The fx sim layer is a secondary dynamics simulation that runs in the background and just looks pretty; it does not affect gameplay. Note that the actual amount emitted may vary depending on graphics settings, exiting element counts, or other factors. """ + # This is a dummy stub; the actual implementation is native code. return None def end_host_scanning() -> None: - """(internal) - - Category: General Utility Functions - """ + """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def get_chat_messages() -> list[str]: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return ['blah', 'blah2'] -def get_client_device_uuid(client_id: float) -> str: - """(internal)""" - return str() - - -def get_client_ip(client_id: float) -> str: - """(internal)""" - return str() - - -def get_client_ping(client_id: float) -> str: - """(internal)""" - return str() - - def get_client_public_device_uuid(client_id: int) -> str | None: """(internal) - Category: General Utility Functions - Return a public device UUID for a client. If the client does not exist or is running a version older than 1.6.10, returns None. Public device UUID uniquely identifies the device the client is using in a semi-permanent way. The UUID value will change periodically with updates to the game or operating system. """ + # This is a dummy stub; the actual implementation is native code. return '' def get_collision_info(*args: Any) -> Any: """Return collision related values - Category: **Gameplay Functions** - Returns a single collision value or tuple of values such as location, depth, nodes involved, etc. Only call this in the handler of a collision-triggered callback or message """ + # This is a dummy stub; the actual implementation is native code. return _uninferrable() @@ -1184,16 +1242,19 @@ def get_configurable_game_pads() -> list: Returns a list of the currently connected gamepads that can be configured. """ + # This is a dummy stub; the actual implementation is native code. return list() def get_connection_to_host_info() -> dict: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return dict() def get_connection_to_host_info_2() -> bascenev1.HostInfo | None: """Return info about the host we are currently connected to.""" + # This is a dummy stub; the actual implementation is native code. import bascenev1 # pylint: disable=cyclic-import return bascenev1.HostInfo('dummyname', -1, 'dummy_addr', -1) @@ -1205,6 +1266,7 @@ def get_foreground_host_activity() -> bascenev1.Activity | None: Returns the bascenev1.Activity currently in the foreground, or None if there is none. """ + # This is a dummy stub; the actual implementation is native code. import bascenev1 # pylint: disable=cyclic-import return bascenev1.Activity(settings={}) @@ -1216,6 +1278,7 @@ def get_foreground_host_session() -> bascenev1.Session | None: Return the bascenev1.Session currently being displayed, or None if there is none. """ + # This is a dummy stub; the actual implementation is native code. import bascenev1 # pylint: disable=cyclic-import return bascenev1.Session([]) @@ -1226,16 +1289,19 @@ def get_game_port() -> int: Return the port ballistica is hosting on. """ + # This is a dummy stub; the actual implementation is native code. return int() def get_game_roster() -> list[dict[str, Any]]: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return [{'foo': 'bar'}] def get_local_active_input_devices_count() -> int: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return int() @@ -1243,6 +1309,7 @@ def get_package_collision_mesh( package: bascenev1.AssetPackage, name: str ) -> bascenev1.CollisionMesh: """(internal)""" + # This is a dummy stub; the actual implementation is native code. import bascenev1 # pylint: disable=cyclic-import return bascenev1.CollisionMesh() @@ -1252,6 +1319,7 @@ def get_package_data( package: bascenev1.AssetPackage, name: str ) -> bascenev1.Data: """(internal).""" + # This is a dummy stub; the actual implementation is native code. import bascenev1 # pylint: disable=cyclic-import return bascenev1.Data() @@ -1261,6 +1329,7 @@ def get_package_mesh( package: bascenev1.AssetPackage, name: str ) -> bascenev1.Mesh: """(internal)""" + # This is a dummy stub; the actual implementation is native code. import bascenev1 # pylint: disable=cyclic-import return bascenev1.Mesh() @@ -1270,6 +1339,7 @@ def get_package_sound( package: bascenev1.AssetPackage, name: str ) -> bascenev1.Sound: """(internal).""" + # This is a dummy stub; the actual implementation is native code. import bascenev1 # pylint: disable=cyclic-import return bascenev1.Sound() @@ -1279,6 +1349,7 @@ def get_package_texture( package: bascenev1.AssetPackage, name: str ) -> bascenev1.Texture: """(internal)""" + # This is a dummy stub; the actual implementation is native code. import bascenev1 # pylint: disable=cyclic-import return bascenev1.Texture() @@ -1286,11 +1357,13 @@ def get_package_texture( def get_public_party_enabled() -> bool: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return bool() def get_public_party_max_size() -> int: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return int() @@ -1299,6 +1372,7 @@ def get_random_names() -> list: Returns the random names used by the game. """ + # This is a dummy stub; the actual implementation is native code. return list() @@ -1307,6 +1381,7 @@ def get_replay_speed_exponent() -> int: Returns current replay speed value. Actual displayed speed is pow(2,speed). """ + # This is a dummy stub; the actual implementation is native code. return int() @@ -1316,6 +1391,7 @@ def get_ui_input_device() -> bascenev1.InputDevice | None: Returns the input-device that currently owns the user interface, or None if there is none. """ + # This is a dummy stub; the actual implementation is native code. return InputDevice() @@ -1331,8 +1407,6 @@ def getactivity(doraise: Literal[False]) -> bascenev1.Activity | None: ... def getactivity(doraise: bool = True) -> bascenev1.Activity | None: """Return the current bascenev1.Activity instance. - Category: **Gameplay Functions** - Note that this is based on context_ref; thus code run in a timer generated in Activity 'foo' will properly return 'foo' here, even if another Activity has since been created or is transitioning in. @@ -1345,16 +1419,16 @@ def getactivity(doraise: bool = True) -> bascenev1.Activity | None: def getcollisionmesh(name: str) -> bascenev1.CollisionMesh: """Return a collision-mesh, loading it if necessary. - Category: **Asset Functions** - Collision-meshes are used in physics calculations for such things as terrain. Note that this function returns immediately even if the asset has yet - to be loaded. To avoid hitches, instantiate your asset objects in - advance of when you will be using them, allowing time for them to - load in the background if necessary. + to be loaded. Loading will happen in the background or on-demand. To + avoid hitches, try to instantiate asset objects a bit earlier than + they are actually needed, giving them time to load gracefully + in the background. """ + # This is a dummy stub; the actual implementation is native code. import bascenev1 # pylint: disable=cyclic-import return bascenev1.CollisionMesh() @@ -1363,13 +1437,13 @@ def getcollisionmesh(name: str) -> bascenev1.CollisionMesh: def getdata(name: str) -> bascenev1.Data: """Return a data, loading it if necessary. - Category: **Asset Functions** - Note that this function returns immediately even if the asset has yet - to be loaded. To avoid hitches, instantiate your asset objects in - advance of when you will be using them, allowing time for them to - load in the background if necessary. + to be loaded. Loading will happen in the background or on-demand. To + avoid hitches, try to instantiate asset objects a bit earlier than + they are actually needed, giving them time to load gracefully + in the background. """ + # This is a dummy stub; the actual implementation is native code. import bascenev1 # pylint: disable=cyclic-import return bascenev1.Data() @@ -1401,23 +1475,21 @@ def getinputdevice(name: str, unique_id: str, doraise: bool = True) -> Any: def getmesh(name: str) -> bascenev1.Mesh: """Return a mesh, loading it if necessary. - Category: **Asset Functions** - Note that this function returns immediately even if the asset has yet - to be loaded. To avoid hitches, instantiate your asset objects in - advance of when you will be using them, allowing time for them to - load in the background if necessary. + to be loaded. Loading will happen in the background or on-demand. To + avoid hitches, try to instantiate asset objects a bit earlier than + they are actually needed, giving them time to load gracefully + in the background. """ + # This is a dummy stub; the actual implementation is native code. import bascenev1 # pylint: disable=cyclic-import return bascenev1.Mesh() def getnodes() -> list: - """Return all nodes in the current bascenev1.Context. - - Category: **Gameplay Functions** - """ + """Return all nodes in the current scene context.""" + # This is a dummy stub; the actual implementation is native code. return list() @@ -1431,13 +1503,9 @@ def getsession(doraise: Literal[False]) -> bascenev1.Session | None: ... def getsession(doraise: bool = True) -> bascenev1.Session | None: - """Category: **Gameplay Functions** - - Returns the current bascenev1.Session instance. - Note that this is based on context_ref; thus code being run in the UI - context will return the UI context_ref here even if a game Session also - exists, etc. If there is no current Session, an Exception is raised, or - if doraise is False then None is returned instead. + """Return the session associated with the current context. If there is + none, a :class:`~bascenev1.SessionNotFoundError` is raised (unless + ``doraise`` is False, in which case ``None`` is returned instead). """ return None @@ -1445,13 +1513,13 @@ def getsession(doraise: bool = True) -> bascenev1.Session | None: def getsound(name: str) -> bascenev1.Sound: """Return a sound, loading it if necessary. - Category: **Asset Functions** - Note that this function returns immediately even if the asset has yet - to be loaded. To avoid hitches, instantiate your asset objects in - advance of when you will be using them, allowing time for them to - load in the background if necessary. + to be loaded. Loading will happen in the background or on-demand. To + avoid hitches, try to instantiate asset objects a bit earlier than + they are actually needed, giving them time to load gracefully + in the background. """ + # This is a dummy stub; the actual implementation is native code. import bascenev1 # pylint: disable=cyclic-import return bascenev1.Sound() @@ -1460,56 +1528,48 @@ def getsound(name: str) -> bascenev1.Sound: def gettexture(name: str) -> bascenev1.Texture: """Return a texture, loading it if necessary. - Category: **Asset Functions** - Note that this function returns immediately even if the asset has yet - to be loaded. To avoid hitches, instantiate your asset objects in - advance of when you will be using them, allowing time for them to - load in the background if necessary. + to be loaded. Loading will happen in the background or on-demand. To + avoid hitches, try to instantiate asset objects a bit earlier than + they are actually needed, giving them time to load gracefully + in the background. """ + # This is a dummy stub; the actual implementation is native code. import bascenev1 # pylint: disable=cyclic-import return bascenev1.Texture() -def handle_app_intent_default() -> None: - """(internal)""" - return None - - -def handle_app_intent_exec(command: str) -> None: - """(internal)""" - return None - - def have_connected_clients() -> bool: """(internal) - Category: General Utility Functions + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return bool() def have_touchscreen_input() -> bool: - """(internal) + """Internal; Return whether or not a touch-screen input is present. - Returns whether or not a touch-screen input is present + :meta private: """ + # This is a dummy stub; the actual implementation is native code. return bool() -def hide_player_device_id(type: bool) -> None: - """(internal)hide player device spec from roster to clients""" - return None - - def host_scan_cycle() -> list: - """(internal)""" + """(internal) + + :meta private: + """ + # This is a dummy stub; the actual implementation is native code. return list() def is_in_replay() -> bool: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return bool() @@ -1518,28 +1578,27 @@ def is_replay_paused() -> bool: Returns if Replay is paused or not. """ + # This is a dummy stub; the actual implementation is native code. return bool() def ls_input_devices() -> None: """Print debugging info about game objects. - Category: **General Utility Functions** - This call only functions in debug builds of the game. It prints various info about the current object count, etc. """ + # This is a dummy stub; the actual implementation is native code. return None def ls_objects() -> None: """Log debugging info about C++ level objects. - Category: **General Utility Functions** - This call only functions in debug builds of the game. It prints various info about the current object count, etc. """ + # This is a dummy stub; the actual implementation is native code. return None @@ -1547,11 +1606,13 @@ def new_host_session( sessiontype: type[bascenev1.Session], benchmark_type: str | None = None ) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def new_replay_session(file_name: str) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None @@ -1560,11 +1621,10 @@ def newactivity( ) -> bascenev1.Activity: """Instantiates a bascenev1.Activity given a type object. - Category: **General Utility Functions** - Activities require special setup and thus cannot be directly instantiated; you must go through this function. """ + # This is a dummy stub; the actual implementation is native code. import bascenev1 # pylint: disable=cyclic-import return bascenev1.Activity(settings={}) @@ -1580,8 +1640,6 @@ def newnode( ) -> bascenev1.Node: """Add a node of the given type to the game. - Category: **Gameplay Functions** - If a dict is provided for 'attributes', the node's initial attributes will be set based on them. @@ -1596,44 +1654,36 @@ def newnode( if 'owner' is provided, the node will be automatically killed when that object dies. 'owner' can be another node or a bascenev1.Actor """ + # This is a dummy stub; the actual implementation is native code. import bascenev1 # pylint: disable=cyclic-import return bascenev1.Node() -def on_app_mode_activate() -> None: - """(internal)""" - return None - - -def on_app_mode_deactivate() -> None: - """(internal)""" - return None - - def pause_replay() -> None: """(internal) Pauses replay. """ + # This is a dummy stub; the actual implementation is native code. return None def printnodes() -> None: - """Print various info about existing nodes; useful for debugging. - - Category: **Gameplay Functions** - """ + """Print various info about existing nodes; useful for debugging.""" + # This is a dummy stub; the actual implementation is native code. return None def protocol_version() -> int: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return int() def register_activity(activity: bascenev1.Activity) -> bascenev1.ActivityData: """(internal)""" + # This is a dummy stub; the actual implementation is native code. import bascenev1 # pylint: disable=cyclic-import return bascenev1.ActivityData() @@ -1641,6 +1691,7 @@ def register_activity(activity: bascenev1.Activity) -> bascenev1.ActivityData: def register_session(session: bascenev1.Session) -> bascenev1.SessionData: """(internal)""" + # This is a dummy stub; the actual implementation is native code. import bascenev1 # pylint: disable=cyclic-import return bascenev1.SessionData() @@ -1651,6 +1702,7 @@ def release_gamepad_input() -> None: Resumes normal gamepad event processing. """ + # This is a dummy stub; the actual implementation is native code. return None @@ -1659,11 +1711,13 @@ def release_keyboard_input() -> None: Resumes normal keyboard event processing. """ + # This is a dummy stub; the actual implementation is native code. return None def reset_random_player_names() -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None @@ -1672,6 +1726,7 @@ def resume_replay() -> None: Resumes replay. """ + # This is a dummy stub; the actual implementation is native code. return None @@ -1680,16 +1735,19 @@ def seek_replay(delta: float) -> None: Rewind or fast-forward replay. """ + # This is a dummy stub; the actual implementation is native code. return None def set_admins(admins: list[str]) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def set_authenticate_clients(enable: bool) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None @@ -1698,19 +1756,13 @@ def set_debug_speed_exponent(speed: int) -> None: Sets the debug speed scale for the game. Actual speed is pow(2,speed). """ + # This is a dummy stub; the actual implementation is native code. return None def set_enable_default_kick_voting(enable: bool) -> None: """(internal)""" - return None - - -def set_game_speed(speed: int) -> None: - """(internal) - - Sets the speed scale for the game. - """ + # This is a dummy stub; the actual implementation is native code. return None @@ -1718,61 +1770,66 @@ def set_internal_music( music: babase.SimpleSound | None, volume: float = 1.0, loop: bool = True ) -> None: """(internal).""" - return None - - -def set_kickvote_msg_type(name: str) -> None: - """(internal)set chat to show msg in chat""" + # This is a dummy stub; the actual implementation is native code. return None def set_map_bounds( - bounds: tuple[float, float, float, float, float, float] + bounds: tuple[float, float, float, float, float, float], ) -> None: """(internal) Set map bounds. Generally nodes that go outside of this box are killed. """ + # This is a dummy stub; the actual implementation is native code. return None def set_master_server_source(source: int) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def set_public_party_enabled(enabled: bool) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def set_public_party_max_size(max_size: int) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def set_public_party_name(name: str) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def set_public_party_public_address_ipv4(address: str | None) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def set_public_party_public_address_ipv6(address: str | None) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def set_public_party_queue_enabled(max_size: bool) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None def set_public_party_stats_url(url: str | None) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None @@ -1781,29 +1838,19 @@ def set_replay_speed_exponent(speed: int) -> None: Set replay speed. Actual displayed speed is pow(2, speed). """ - return None - - -def set_server_name(name: str) -> None: - """(internal)set the host name""" + # This is a dummy stub; the actual implementation is native code. return None def set_touchscreen_editing(editing: bool) -> None: """(internal)""" - return None - - -def set_transparent_kickvote(type: bool) -> None: - """(internal)True to show kick vote starter name""" + # This is a dummy stub; the actual implementation is native code. return None def time() -> bascenev1.Time: """Return the current scene time in seconds. - Category: **General Utility Functions** - Scene time maps to local simulation time in bascenev1.Activity or bascenev1.Session Contexts. This means that it may progress slower in slow-motion play modes, stop when the game is paused, etc. @@ -1812,6 +1859,7 @@ def time() -> bascenev1.Time: unique type in the type-checker's eyes to help prevent it from being accidentally used with time functionality expecting other time types. """ + # This is a dummy stub; the actual implementation is native code. import bascenev1 # pylint: disable=cyclic-import return bascenev1.Time(0.0) @@ -1821,37 +1869,40 @@ def time() -> bascenev1.Time: def timer(time: float, call: Callable[[], Any], repeat: bool = False) -> None: """Schedule a call to run at a later point in time. - Category: **General Utility Functions** + This function adds a scene-time timer to the current + :class:`bascenev1.ContextRef`. This timer cannot be canceled or modified + once created. If you require the ability to do so, use the + :class:`bascenev1.Timer` class instead. - This function adds a scene-time timer to the current babase.Context. - This timer cannot be canceled or modified once created. If you - require the ability to do so, use the babase.Timer class instead. + Scene time maps to local simulation time in :class:`bascenev1.Activity` + or :class:`bascenev1.Session` Contexts. This means that it may progress + slower in slow-motion play modes, stop when the game is paused, etc. - Scene time maps to local simulation time in bascenev1.Activity or - bascenev1.Session Contexts. This means that it may progress slower - in slow-motion play modes, stop when the game is paused, etc. + Args: - ##### Arguments - ###### time (float) - > Length of scene time in seconds that the timer will wait - before firing. + time: + Length of scene time in seconds that the timer will wait + before firing. - ###### call (Callable[[], Any]) - > A callable Python object. Note that the timer will retain a - strong reference to the callable for as long as it exists, so you - may want to look into concepts such as babase.WeakCall if that is not - desired. + call: + A callable Python object. Note that the timer will retain a + strong reference to the callable for as long as it exists, so you + may want to look into concepts such as :class:`bascenev1.WeakCall` + if that is not desired. - ###### repeat (bool) - > If True, the timer will fire repeatedly, with each successive - firing having the same delay as the first. + repeat: + If True, the timer will fire repeatedly, with each successive + firing having the same delay as the first. - ##### Examples - Print some stuff through time: - >>> import bascenev1 as bs - >>> bs.screenmessage('hello from now!') - >>> bs.timer(1.0, bs.Call(bs.screenmessage, 'hello from the future!')) - >>> bs.timer(2.0, bs.Call(bs.screenmessage, - ... 'hello from the future 2!')) + Examples + ======== + + Print some stuff through time:: + + import bascenev1 as bs + bs.screenmessage('hello from now!') + bs.timer(1.0, bs.Call(bs.screenmessage, 'hello from the future!')) + bs.timer(2.0, bs.Call(bs.screenmessage, 'hello from the future 2!')) """ + # This is a dummy stub; the actual implementation is native code. return None diff --git a/dist/dummymodules/_batemplatefs.py b/dist/dummymodules/_batemplatefs.py index 33adb83..aefe43d 100644 --- a/dist/dummymodules/_batemplatefs.py +++ b/dist/dummymodules/_batemplatefs.py @@ -27,18 +27,17 @@ NOTE: This file was autogenerated by batools.dummymodule; do not edit by hand. # pylint: disable=redefined-outer-name # pylint: disable=invalid-name # pylint: disable=no-value-for-parameter +# pylint: disable=unused-import +# pylint: disable=too-many-positional-arguments from __future__ import annotations -from typing import TYPE_CHECKING, override, TypeVar +from typing import TYPE_CHECKING, override if TYPE_CHECKING: from typing import Any, Callable -_T = TypeVar('_T') - - def _uninferrable() -> Any: """Get an "Any" in mypy and "uninferrable" in Pylint.""" # pylint: disable=undefined-variable @@ -50,9 +49,11 @@ class Hello: def testmethod(self, val: int = 0) -> None: """Just testing.""" + # This is a dummy stub; the actual implementation is native code. return None def hello_again_world() -> None: """Another hello world print.""" + # This is a dummy stub; the actual implementation is native code. return None diff --git a/dist/dummymodules/_bauiv1.py b/dist/dummymodules/_bauiv1.py index 7ed50a3..f8f4526 100644 --- a/dist/dummymodules/_bauiv1.py +++ b/dist/dummymodules/_bauiv1.py @@ -27,10 +27,12 @@ NOTE: This file was autogenerated by batools.dummymodule; do not edit by hand. # pylint: disable=redefined-outer-name # pylint: disable=invalid-name # pylint: disable=no-value-for-parameter +# pylint: disable=unused-import +# pylint: disable=too-many-positional-arguments from __future__ import annotations -from typing import TYPE_CHECKING, override, TypeVar +from typing import TYPE_CHECKING, override if TYPE_CHECKING: from typing import Any, Callable, Literal, Sequence @@ -38,9 +40,6 @@ if TYPE_CHECKING: import bauiv1 -_T = TypeVar('_T') - - def _uninferrable() -> Any: """Get an "Any" in mypy and "uninferrable" in Pylint.""" # pylint: disable=undefined-variable @@ -48,25 +47,27 @@ def _uninferrable() -> Any: class Mesh: - """Category: **User Interface Classes**""" + """Mesh asset for local user interface purposes.""" pass class Sound: - """Category: **User Interface Classes**""" + """Sound asset for local user interface purposes.""" - def play(self) -> None: + def play(self, volume: float = 1.0) -> None: """Play the sound locally.""" + # This is a dummy stub; the actual implementation is native code. return None def stop(self) -> None: """Stop the sound if it is playing.""" + # This is a dummy stub; the actual implementation is native code. return None class Texture: - """Category: **User Interface Classes**""" + """Texture asset for local user interface purposes.""" pass @@ -74,19 +75,17 @@ class Texture: class Widget: """Internal type for low level UI elements; buttons, windows, etc. - Category: **User Interface Classes** - This class represents a weak reference to a widget object in the internal C++ layer. Currently, functions such as bauiv1.buttonwidget() must be used to instantiate or edit these. """ + #: Whether this widget is in the process of dying (read only). + #: + #: It can be useful to check this on a window's root widget to + #: prevent multiple window actions from firing simultaneously, + #: potentially leaving the UI in a broken state. transitioning_out: bool - """Whether this widget is in the process of dying (read only). - - It can be useful to check this on a window's root widget to - prevent multiple window actions from firing simultaneously, - potentially leaving the UI in a broken state.""" def __bool__(self) -> bool: """Support for bool evaluation.""" @@ -94,16 +93,19 @@ class Widget: def activate(self) -> None: """Activates a widget; the same as if it had been clicked.""" + # This is a dummy stub; the actual implementation is native code. return None def add_delete_callback(self, call: Callable) -> None: """Add a call to be run immediately after this widget is destroyed.""" + # This is a dummy stub; the actual implementation is native code. return None def delete(self, ignore_missing: bool = True) -> None: """Delete the Widget. Ignores already-deleted Widgets if ignore_missing is True; otherwise an Exception is thrown. """ + # This is a dummy stub; the actual implementation is native code. return None def exists(self) -> bool: @@ -114,10 +116,12 @@ class Widget: functionality, so a statement such as "if mywidget" will do the right thing both for Widget objects and values of None. """ + # This is a dummy stub; the actual implementation is native code. return bool() def get_children(self) -> list[bauiv1.Widget]: """Returns any child Widgets of this Widget.""" + # This is a dummy stub; the actual implementation is native code. import bauiv1 return [bauiv1.Widget()] @@ -127,10 +131,12 @@ class Widget: of the screen. This can be useful for placing pop-up windows and other special cases. """ + # This is a dummy stub; the actual implementation is native code. return (0.0, 0.0) def get_selected_child(self) -> bauiv1.Widget | None: """Returns the selected child Widget or None if nothing is selected.""" + # This is a dummy stub; the actual implementation is native code. import bauiv1 return bauiv1.Widget() @@ -140,17 +146,15 @@ class Widget: is different from the Python bauiv1.Widget type, which is the same for all widgets. """ + # This is a dummy stub; the actual implementation is native code. return str() -def back_press() -> None: - """(internal)""" - return None - - def buttonwidget( + *, edit: bauiv1.Widget | None = None, parent: bauiv1.Widget | None = None, + id: str | None = None, size: Sequence[float] | None = None, position: Sequence[float] | None = None, on_activate_call: Callable | None = None, @@ -189,18 +193,18 @@ def buttonwidget( ) -> bauiv1.Widget: """Create or edit a button widget. - Category: **User Interface Functions** - Pass a valid existing bauiv1.Widget as 'edit' to modify it; otherwise a new one is created and returned. Arguments that are not set to None are applied to the Widget. """ + # This is a dummy stub; the actual implementation is native code. import bauiv1 # pylint: disable=cyclic-import return bauiv1.Widget() def checkboxwidget( + *, edit: bauiv1.Widget | None = None, parent: bauiv1.Widget | None = None, size: Sequence[float] | None = None, @@ -219,18 +223,18 @@ def checkboxwidget( ) -> bauiv1.Widget: """Create or edit a check-box widget. - Category: **User Interface Functions** - Pass a valid existing bauiv1.Widget as 'edit' to modify it; otherwise a new one is created and returned. Arguments that are not set to None are applied to the Widget. """ + # This is a dummy stub; the actual implementation is native code. import bauiv1 # pylint: disable=cyclic-import return bauiv1.Widget() def columnwidget( + *, edit: bauiv1.Widget | None = None, parent: bauiv1.Widget | None = None, size: Sequence[float] | None = None, @@ -247,24 +251,24 @@ def columnwidget( border: float | None = None, margin: float | None = None, claims_left_right: bool | None = None, - claims_tab: bool | None = None, ) -> bauiv1.Widget: """Create or edit a column widget. - Category: **User Interface Functions** - Pass a valid existing bauiv1.Widget as 'edit' to modify it; otherwise a new one is created and returned. Arguments that are not set to None are applied to the Widget. """ + # This is a dummy stub; the actual implementation is native code. import bauiv1 # pylint: disable=cyclic-import return bauiv1.Widget() def containerwidget( + *, edit: bauiv1.Widget | None = None, parent: bauiv1.Widget | None = None, + id: str | None = None, size: Sequence[float] | None = None, position: Sequence[float] | None = None, background: bool | None = None, @@ -275,7 +279,6 @@ def containerwidget( root_selectable: bool | None = None, on_activate_call: Callable[[], None] | None = None, claims_left_right: bool | None = None, - claims_tab: bool | None = None, selection_loops: bool | None = None, selection_loops_to_parent: bool | None = None, scale: float | None = None, @@ -290,19 +293,33 @@ def containerwidget( always_highlight: bool | None = None, selectable: bool | None = None, scale_origin_stack_offset: Sequence[float] | None = None, - toolbar_visibility: str | None = None, + toolbar_visibility: ( + Literal[ + 'menu_minimal', + 'menu_minimal_no_back', + 'menu_full', + 'menu_full_no_back', + 'menu_store', + 'menu_store_no_back', + 'menu_in_game', + 'menu_tokens', + 'get_tokens', + 'no_menu_minimal', + 'inherit', + ] + | None + ) = None, on_select_call: Callable[[], None] | None = None, claim_outside_clicks: bool | None = None, claims_up_down: bool | None = None, ) -> bauiv1.Widget: """Create or edit a container widget. - Category: **User Interface Functions** - Pass a valid existing bauiv1.Widget as 'edit' to modify it; otherwise a new one is created and returned. Arguments that are not set to None are applied to the Widget. """ + # This is a dummy stub; the actual implementation is native code. import bauiv1 # pylint: disable=cyclic-import return bauiv1.Widget() @@ -313,13 +330,36 @@ def get_qrcode_texture(url: str) -> bauiv1.Texture: The provided url must be 64 bytes or less. """ + # This is a dummy stub; the actual implementation is native code. import bauiv1 # pylint: disable=cyclic-import return bauiv1.Texture() -def get_special_widget(name: str) -> bauiv1.Widget: +def get_special_widget( + name: Literal[ + 'squad_button', + 'back_button', + 'account_button', + 'achievements_button', + 'settings_button', + 'inbox_button', + 'store_button', + 'get_tokens_button', + 'inventory_button', + 'tickets_meter', + 'tokens_meter', + 'trophy_meter', + 'level_meter', + 'overlay_stack', + 'chest_0_button', + 'chest_1_button', + 'chest_2_button', + 'chest_3_button', + ], +) -> bauiv1.Widget: """(internal)""" + # This is a dummy stub; the actual implementation is native code. import bauiv1 # pylint: disable=cyclic-import return bauiv1.Widget() @@ -327,6 +367,7 @@ def get_special_widget(name: str) -> bauiv1.Widget: def getmesh(name: str) -> bauiv1.Mesh: """Load a mesh for use solely in the local user interface.""" + # This is a dummy stub; the actual implementation is native code. import bauiv1 # pylint: disable=cyclic-import return bauiv1.Mesh() @@ -334,6 +375,7 @@ def getmesh(name: str) -> bauiv1.Mesh: def getsound(name: str) -> bauiv1.Sound: """Load a sound for use in the ui.""" + # This is a dummy stub; the actual implementation is native code. import bauiv1 # pylint: disable=cyclic-import return bauiv1.Sound() @@ -341,12 +383,14 @@ def getsound(name: str) -> bauiv1.Sound: def gettexture(name: str) -> bauiv1.Texture: """Load a texture for use in the ui.""" + # This is a dummy stub; the actual implementation is native code. import bauiv1 # pylint: disable=cyclic-import return bauiv1.Texture() def hscrollwidget( + *, edit: bauiv1.Widget | None = None, parent: bauiv1.Widget | None = None, size: Sequence[float] | None = None, @@ -362,22 +406,21 @@ def hscrollwidget( simple_culling_h: float | None = None, claims_left_right: bool | None = None, claims_up_down: bool | None = None, - claims_tab: bool | None = None, ) -> bauiv1.Widget: """Create or edit a horizontal scroll widget. - Category: **User Interface Functions** - Pass a valid existing bauiv1.Widget as 'edit' to modify it; otherwise a new one is created and returned. Arguments that are not set to None are applied to the Widget. """ + # This is a dummy stub; the actual implementation is native code. import bauiv1 # pylint: disable=cyclic-import return bauiv1.Widget() def imagewidget( + *, edit: bauiv1.Widget | None = None, parent: bauiv1.Widget | None = None, size: Sequence[float] | None = None, @@ -396,15 +439,15 @@ def imagewidget( tilt_scale: float | None = None, mask_texture: bauiv1.Texture | None = None, radial_amount: float | None = None, + draw_controller_mult: float | None = None, ) -> bauiv1.Widget: """Create or edit an image widget. - Category: **User Interface Functions** - Pass a valid existing bauiv1.Widget as 'edit' to modify it; otherwise a new one is created and returned. Arguments that are not set to None are applied to the Widget. """ + # This is a dummy stub; the actual implementation is native code. import bauiv1 # pylint: disable=cyclic-import return bauiv1.Widget() @@ -412,12 +455,35 @@ def imagewidget( def is_available() -> bool: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return bool() -def is_party_icon_visible() -> bool: +def on_ui_scale_change() -> None: """(internal)""" - return bool() + # This is a dummy stub; the actual implementation is native code. + return None + + +def root_ui_back_press() -> None: + """(internal)""" + # This is a dummy stub; the actual implementation is native code. + return None + + +def root_ui_pause_updates() -> None: + """Temporarily pause updates to the root ui for animation purposes. + Make sure that each call to this is matched by a call to + root_ui_resume_updates(). + """ + # This is a dummy stub; the actual implementation is native code. + return None + + +def root_ui_resume_updates() -> None: + """Resume paused updates to the root ui for animation purposes.""" + # This is a dummy stub; the actual implementation is native code. + return None def rowwidget( @@ -429,23 +495,22 @@ def rowwidget( selected_child: bauiv1.Widget | None = None, visible_child: bauiv1.Widget | None = None, claims_left_right: bool | None = None, - claims_tab: bool | None = None, selection_loops_to_parent: bool | None = None, ) -> bauiv1.Widget: """Create or edit a row widget. - Category: **User Interface Functions** - Pass a valid existing bauiv1.Widget as 'edit' to modify it; otherwise a new one is created and returned. Arguments that are not set to None are applied to the Widget. """ + # This is a dummy stub; the actual implementation is native code. import bauiv1 # pylint: disable=cyclic-import return bauiv1.Widget() def scrollwidget( + *, edit: bauiv1.Widget | None = None, parent: bauiv1.Widget | None = None, size: Sequence[float] | None = None, @@ -455,6 +520,7 @@ def scrollwidget( capture_arrows: bool = False, on_select_call: Callable | None = None, center_small_content: bool | None = None, + center_small_content_horizontally: bool | None = None, color: Sequence[float] | None = None, highlight: bool | None = None, border_opacity: float | None = None, @@ -462,33 +528,49 @@ def scrollwidget( selection_loops_to_parent: bool | None = None, claims_left_right: bool | None = None, claims_up_down: bool | None = None, - claims_tab: bool | None = None, autoselect: bool | None = None, ) -> bauiv1.Widget: """Create or edit a scroll widget. - Category: **User Interface Functions** - Pass a valid existing bauiv1.Widget as 'edit' to modify it; otherwise a new one is created and returned. Arguments that are not set to None are applied to the Widget. """ + # This is a dummy stub; the actual implementation is native code. import bauiv1 # pylint: disable=cyclic-import return bauiv1.Widget() -def set_party_icon_always_visible(value: bool) -> None: - """(internal)""" - return None - - def set_party_window_open(value: bool) -> None: """(internal)""" + # This is a dummy stub; the actual implementation is native code. return None +def spinnerwidget( + *, + edit: bauiv1.Widget | None = None, + parent: bauiv1.Widget | None = None, + size: float | None = None, + position: Sequence[float] | None = None, + style: Literal['bomb', 'simple'] | None = None, + visible: bool | None = None, +) -> bauiv1.Widget: + """Create or edit a spinner widget. + + Pass a valid existing bauiv1.Widget as 'edit' to modify it; otherwise + a new one is created and returned. Arguments that are not set to None + are applied to the Widget. + """ + # This is a dummy stub; the actual implementation is native code. + import bauiv1 # pylint: disable=cyclic-import + + return bauiv1.Widget() + + def textwidget( + *, edit: bauiv1.Widget | None = None, parent: bauiv1.Widget | None = None, size: Sequence[float] | None = None, @@ -532,22 +614,16 @@ def textwidget( ) -> bauiv1.Widget: """Create or edit a text widget. - Category: **User Interface Functions** - Pass a valid existing bauiv1.Widget as 'edit' to modify it; otherwise a new one is created and returned. Arguments that are not set to None are applied to the Widget. """ + # This is a dummy stub; the actual implementation is native code. import bauiv1 # pylint: disable=cyclic-import return bauiv1.Widget() -def toolbar_test() -> bool: - """(internal)""" - return bool() - - def uibounds() -> tuple[float, float, float, float]: """(internal) @@ -556,11 +632,13 @@ def uibounds() -> tuple[float, float, float, float]: bauiv1.ContainerWidget's stack_offset value while guaranteeing that its center remains onscreen. """ + # This is a dummy stub; the actual implementation is native code. return (0.0, 0.0, 0.0, 0.0) def widget( - edit: bauiv1.Widget | None = None, + *, + edit: bauiv1.Widget, up_widget: bauiv1.Widget | None = None, down_widget: bauiv1.Widget | None = None, left_widget: bauiv1.Widget | None = None, @@ -569,12 +647,12 @@ def widget( show_buffer_bottom: float | None = None, show_buffer_left: float | None = None, show_buffer_right: float | None = None, + depth_range: tuple[float, float] | None = None, autoselect: bool | None = None, ) -> None: """Edit common attributes of any widget. - Category: **User Interface Functions** - Unlike other UI calls, this can only be used to edit, not to create. """ + # This is a dummy stub; the actual implementation is native code. return None